cregit-Linux how code gets into the kernel

Release 4.8 net/irda/irlan/irlan_client.c

Directory: net/irda/irlan
/*********************************************************************
 *
 * Filename:      irlan_client.c
 * Version:       0.9
 * Description:   IrDA LAN Access Protocol (IrLAN) Client
 * Status:        Experimental.
 * Author:        Dag Brattli <dagb@cs.uit.no>
 * Created at:    Sun Aug 31 20:14:37 1997
 * Modified at:   Tue Dec 14 15:47:02 1999
 * Modified by:   Dag Brattli <dagb@cs.uit.no>
 * Sources:       skeleton.c by Donald Becker <becker@CESDIS.gsfc.nasa.gov>
 *                slip.c by Laurence Culhane, <loz@holmes.demon.co.uk>
 *                          Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
 *
 *     Copyright (c) 1998-1999 Dag Brattli <dagb@cs.uit.no>,
 *     All Rights Reserved.
 *
 *     This program is free software; you can redistribute it and/or
 *     modify it under the terms of the GNU General Public License as
 *     published by the Free Software Foundation; either version 2 of
 *     the License, or (at your option) any later version.
 *
 *     Neither Dag Brattli nor University of Tromsø admit liability nor
 *     provide warranty for any of this software. This material is
 *     provided "AS-IS" and at no charge.
 *
 ********************************************************************/

#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/slab.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/if_arp.h>
#include <linux/bitops.h>
#include <net/arp.h>

#include <asm/byteorder.h>

#include <net/irda/irda.h>
#include <net/irda/irttp.h>
#include <net/irda/irlmp.h>
#include <net/irda/irias_object.h>
#include <net/irda/iriap.h>
#include <net/irda/timer.h>

#include <net/irda/irlan_common.h>
#include <net/irda/irlan_event.h>
#include <net/irda/irlan_eth.h>
#include <net/irda/irlan_provider.h>
#include <net/irda/irlan_client.h>


#undef CONFIG_IRLAN_GRATUITOUS_ARP

static void irlan_client_ctrl_disconnect_indication(void *instance, void *sap,
						    LM_REASON reason,
						    struct sk_buff *);
static int irlan_client_ctrl_data_indication(void *instance, void *sap,
					     struct sk_buff *skb);
static void irlan_client_ctrl_connect_confirm(void *instance, void *sap,
					      struct qos_info *qos,
					      __u32 max_sdu_size,
					      __u8 max_header_size,
					      struct sk_buff *);
static void irlan_check_response_param(struct irlan_cb *self, char *param,
				       char *value, int val_len);
static void irlan_client_open_ctrl_tsap(struct irlan_cb *self);


static void irlan_client_kick_timer_expired(void *data) { struct irlan_cb *self = (struct irlan_cb *) data; IRDA_ASSERT(self != NULL, return;); IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;); /* * If we are in peer mode, the client may not have got the discovery * indication it needs to make progress. If the client is still in * IDLE state, we must kick it to, but only if the provider is not IDLE */ if ((self->provider.access_type == ACCESS_PEER) && (self->client.state == IRLAN_IDLE) && (self->provider.state != IRLAN_IDLE)) { irlan_client_wakeup(self, self->saddr, self->daddr); } }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git8196.43%466.67%
jean tourrilhesjean tourrilhes22.38%116.67%
hideaki yoshifujihideaki yoshifuji11.19%116.67%
Total84100.00%6100.00%


static void irlan_client_start_kick_timer(struct irlan_cb *self, int timeout) { irda_start_timer(&self->client.kick_timer, timeout, (void *) self, irlan_client_kick_timer_expired); }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git3397.06%375.00%
adrian bunkadrian bunk12.94%125.00%
Total34100.00%4100.00%

/* * Function irlan_client_wakeup (self, saddr, daddr) * * Wake up client * */
void irlan_client_wakeup(struct irlan_cb *self, __u32 saddr, __u32 daddr) { IRDA_ASSERT(self != NULL, return;); IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;); /* * Check if we are already awake, or if we are a provider in direct * mode (in that case we must leave the client idle */ if ((self->client.state != IRLAN_IDLE) || (self->provider.access_type == ACCESS_DIRECT)) { pr_debug("%s(), already awake!\n", __func__); return; } /* Addresses may have changed! */ self->saddr = saddr; self->daddr = daddr; if (self->disconnect_reason == LM_USER_REQUEST) { pr_debug("%s(), still stopped by user\n", __func__); return; } /* Open TSAPs */ irlan_client_open_ctrl_tsap(self); irlan_open_data_tsap(self); irlan_do_client_event(self, IRLAN_DISCOVERY_INDICATION, NULL); /* Start kick timer */ irlan_client_start_kick_timer(self, 2*HZ); }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git10685.48%545.45%
linus torvaldslinus torvalds75.65%19.09%
jean tourrilhesjean tourrilhes64.84%218.18%
harvey harrisonharvey harrison21.61%19.09%
joe perchesjoe perches21.61%19.09%
hideaki yoshifujihideaki yoshifuji10.81%19.09%
Total124100.00%11100.00%

/* * Function irlan_discovery_indication (daddr) * * Remote device with IrLAN server support discovered * */
void irlan_client_discovery_indication(discinfo_t *discovery, DISCOVERY_MODE mode, void *priv) { struct irlan_cb *self; __u32 saddr, daddr; IRDA_ASSERT(discovery != NULL, return;); /* * I didn't check it, but I bet that IrLAN suffer from the same * deficiency as IrComm and doesn't handle two instances * simultaneously connecting to each other. * Same workaround, drop passive discoveries. * Jean II */ if(mode == DISCOVERY_PASSIVE) return; saddr = discovery->saddr; daddr = discovery->daddr; /* Find instance */ rcu_read_lock(); self = irlan_get_any(); if (self) { IRDA_ASSERT(self->magic == IRLAN_MAGIC, goto out;); pr_debug("%s(), Found instance (%08x)!\n", __func__ , daddr); irlan_client_wakeup(self, saddr, daddr); } IRDA_ASSERT_LABEL(out:) rcu_read_unlock(); }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git6969.00%433.33%
jean tourrilhesjean tourrilhes1616.00%433.33%
stephen hemmingerstephen hemminger88.00%18.33%
josh triplettjosh triplett55.00%18.33%
harvey harrisonharvey harrison11.00%18.33%
joe perchesjoe perches11.00%18.33%
Total100100.00%12100.00%

/* * Function irlan_client_data_indication (handle, skb) * * This function gets the data that is received on the control channel * */
static int irlan_client_ctrl_data_indication(void *instance, void *sap, struct sk_buff *skb) { struct irlan_cb *self; self = instance; IRDA_ASSERT(self != NULL, return -1;); IRDA_ASSERT(self->magic == IRLAN_MAGIC, return -1;); IRDA_ASSERT(skb != NULL, return -1;); irlan_do_client_event(self, IRLAN_DATA_INDICATION, skb); /* Ready for a new command */ pr_debug("%s(), clearing tx_busy\n", __func__); self->client.tx_busy = FALSE; /* Check if we have some queued commands waiting to be sent */ irlan_run_ctrl_tx_queue(self); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git8292.13%555.56%
jean tourrilhesjean tourrilhes55.62%222.22%
harvey harrisonharvey harrison11.12%111.11%
joe perchesjoe perches11.12%111.11%
Total89100.00%9100.00%


static void irlan_client_ctrl_disconnect_indication(void *instance, void *sap, LM_REASON reason, struct sk_buff *userdata) { struct irlan_cb *self; struct tsap_cb *tsap; struct sk_buff *skb; pr_debug("%s(), reason=%d\n", __func__ , reason); self = instance; tsap = sap; IRDA_ASSERT(self != NULL, return;); IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;); IRDA_ASSERT(tsap != NULL, return;); IRDA_ASSERT(tsap->magic == TTP_TSAP_MAGIC, return;); IRDA_ASSERT(tsap == self->client.tsap_ctrl, return;); /* Remove frames queued on the control channel */ while ((skb = skb_dequeue(&self->client.txq)) != NULL) { dev_kfree_skb(skb); } self->client.tx_busy = FALSE; irlan_do_client_event(self, IRLAN_LMP_DISCONNECT, NULL); }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git12191.67%337.50%
jean tourrilhesjean tourrilhes75.30%225.00%
andrew mortonandrew morton21.52%112.50%
joe perchesjoe perches10.76%112.50%
harvey harrisonharvey harrison10.76%112.50%
Total132100.00%8100.00%

/* * Function irlan_client_open_tsaps (self) * * Initialize callbacks and open IrTTP TSAPs * */
static void irlan_client_open_ctrl_tsap(struct irlan_cb *self) { struct tsap_cb *tsap; notify_t notify; IRDA_ASSERT(self != NULL, return;); IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;); /* Check if already open */ if (self->client.tsap_ctrl) return; irda_notify_init(&notify); /* Set up callbacks */ notify.data_indication = irlan_client_ctrl_data_indication; notify.connect_confirm = irlan_client_ctrl_connect_confirm; notify.disconnect_indication = irlan_client_ctrl_disconnect_indication; notify.instance = self; strlcpy(notify.name, "IrLAN ctrl (c)", sizeof(notify.name)); tsap = irttp_open_tsap(LSAP_ANY, DEFAULT_INITIAL_CREDIT, &notify); if (!tsap) { pr_debug("%s(), Got no tsap!\n", __func__); return; } self->client.tsap_ctrl = tsap; }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git11188.80%333.33%
ben collinsben collins75.60%111.11%
jean tourrilhesjean tourrilhes43.20%222.22%
harvey harrisonharvey harrison10.80%111.11%
adrian bunkadrian bunk10.80%111.11%
joe perchesjoe perches10.80%111.11%
Total125100.00%9100.00%

/* * Function irlan_client_connect_confirm (handle, skb) * * Connection to peer IrLAN laye confirmed * */
static void irlan_client_ctrl_connect_confirm(void *instance, void *sap, struct qos_info *qos, __u32 max_sdu_size, __u8 max_header_size, struct sk_buff *skb) { struct irlan_cb *self; self = instance; IRDA_ASSERT(self != NULL, return;); IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;); self->client.max_sdu_size = max_sdu_size; self->client.max_header_size = max_header_size; /* TODO: we could set the MTU depending on the max_sdu_size */ irlan_do_client_event(self, IRLAN_CONNECT_COMPLETE, NULL); }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git7797.47%480.00%
jean tourrilhesjean tourrilhes22.53%120.00%
Total79100.00%5100.00%

/* * Function print_ret_code (code) * * Print return code of request to peer IrLAN layer. * */
static void print_ret_code(__u8 code) { switch(code) { case 0: printk(KERN_INFO "Success\n"); break; case 1: net_warn_ratelimited("IrLAN: Insufficient resources\n"); break; case 2: net_warn_ratelimited("IrLAN: Invalid command format\n"); break; case 3: net_warn_ratelimited("IrLAN: Command not supported\n"); break; case 4: net_warn_ratelimited("IrLAN: Parameter not supported\n"); break; case 5: net_warn_ratelimited("IrLAN: Value not supported\n"); break; case 6: net_warn_ratelimited("IrLAN: Not open\n"); break; case 7: net_warn_ratelimited("IrLAN: Authentication required\n"); break; case 8: net_warn_ratelimited("IrLAN: Invalid password\n"); break; case 9: net_warn_ratelimited("IrLAN: Protocol error\n"); break; case 255: net_warn_ratelimited("IrLAN: Asynchronous status\n"); break; } }

Contributors

PersonTokensPropCommitsCommitProp
jean tourrilhesjean tourrilhes10591.30%150.00%
joe perchesjoe perches108.70%150.00%
Total115100.00%2100.00%

/* * Function irlan_client_parse_response (self, skb) * * Extract all parameters from received buffer, then feed them to * check_params for parsing */
void irlan_client_parse_response(struct irlan_cb *self, struct sk_buff *skb) { __u8 *frame; __u8 *ptr; int count; int ret; __u16 val_len; int i; char *name; char *value; IRDA_ASSERT(skb != NULL, return;); pr_debug("%s() skb->len=%d\n", __func__ , (int)skb->len); IRDA_ASSERT(self != NULL, return;); IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;); if (!skb) { net_err_ratelimited("%s(), Got NULL skb!\n", __func__); return; } frame = skb->data; /* * Check return code and print it if not success */ if (frame[0]) { print_ret_code(frame[0]); return; } name = kmalloc(255, GFP_ATOMIC); if (!name) return; value = kmalloc(1016, GFP_ATOMIC); if (!value) { kfree(name); return; } /* How many parameters? */ count = frame[1]; pr_debug("%s(), got %d parameters\n", __func__ , count); ptr = frame+2; /* For all parameters */ for (i=0; i<count;i++) { ret = irlan_extract_param(ptr, name, value, &val_len); if (ret < 0) { pr_debug("%s(), IrLAN, Error!\n", __func__); break; } ptr += ret; irlan_check_response_param(self, name, value, val_len); } /* Cleanup */ kfree(name); kfree(value); }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git23092.00%436.36%
jean tourrilhesjean tourrilhes93.60%218.18%
joe perchesjoe perches41.60%218.18%
harvey harrisonharvey harrison41.60%19.09%
jeff garzikjeff garzik20.80%19.09%
hideaki yoshifujihideaki yoshifuji10.40%19.09%
Total250100.00%11100.00%

/* * Function irlan_check_response_param (self, param, value, val_len) * * Check which parameter is received and update local variables * */
static void irlan_check_response_param(struct irlan_cb *self, char *param, char *value, int val_len) { __u16 tmp_cpu; /* Temporary value in host order */ __u8 *bytes; int i; pr_debug("%s(), parm=%s\n", __func__ , param); IRDA_ASSERT(self != NULL, return;); IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;); /* Media type */ if (strcmp(param, "MEDIA") == 0) { if (strcmp(value, "802.3") == 0) self->media = MEDIA_802_3; else self->media = MEDIA_802_5; return; } if (strcmp(param, "FILTER_TYPE") == 0) { if (strcmp(value, "DIRECTED") == 0) self->client.filter_type |= IRLAN_DIRECTED; else if (strcmp(value, "FUNCTIONAL") == 0) self->client.filter_type |= IRLAN_FUNCTIONAL; else if (strcmp(value, "GROUP") == 0) self->client.filter_type |= IRLAN_GROUP; else if (strcmp(value, "MAC_FRAME") == 0) self->client.filter_type |= IRLAN_MAC_FRAME; else if (strcmp(value, "MULTICAST") == 0) self->client.filter_type |= IRLAN_MULTICAST; else if (strcmp(value, "BROADCAST") == 0) self->client.filter_type |= IRLAN_BROADCAST; else if (strcmp(value, "IPX_SOCKET") == 0) self->client.filter_type |= IRLAN_IPX_SOCKET; } if (strcmp(param, "ACCESS_TYPE") == 0) { if (strcmp(value, "DIRECT") == 0) self->client.access_type = ACCESS_DIRECT; else if (strcmp(value, "PEER") == 0) self->client.access_type = ACCESS_PEER; else if (strcmp(value, "HOSTED") == 0) self->client.access_type = ACCESS_HOSTED; else { pr_debug("%s(), unknown access type!\n", __func__); } } /* IRLAN version */ if (strcmp(param, "IRLAN_VER") == 0) { pr_debug("IrLAN version %d.%d\n", (__u8)value[0], (__u8)value[1]); self->version[0] = value[0]; self->version[1] = value[1]; return; } /* Which remote TSAP to use for data channel */ if (strcmp(param, "DATA_CHAN") == 0) { self->dtsap_sel_data = value[0]; pr_debug("Data TSAP = %02x\n", self->dtsap_sel_data); return; } if (strcmp(param, "CON_ARB") == 0) { memcpy(&tmp_cpu, value, 2); /* Align value */ le16_to_cpus(&tmp_cpu); /* Convert to host order */ self->client.recv_arb_val = tmp_cpu; pr_debug("%s(), receive arb val=%d\n", __func__ , self->client.recv_arb_val); } if (strcmp(param, "MAX_FRAME") == 0) { memcpy(&tmp_cpu, value, 2); /* Align value */ le16_to_cpus(&tmp_cpu); /* Convert to host order */ self->client.max_frame = tmp_cpu; pr_debug("%s(), max frame=%d\n", __func__ , self->client.max_frame); } /* RECONNECT_KEY, in case the link goes down! */ if (strcmp(param, "RECONNECT_KEY") == 0) { pr_debug("Got reconnect key: "); /* for (i = 0; i < val_len; i++) */ /* printk("%02x", value[i]); */ memcpy(self->client.reconnect_key, value, val_len); self->client.key_len = val_len; pr_debug("\n"); } /* FILTER_ENTRY, have we got an ethernet address? */ if (strcmp(param, "FILTER_ENTRY") == 0) { bytes = value; pr_debug("Ethernet address = %pM\n", bytes); for (i = 0; i < 6; i++) self->dev->dev_addr[i] = bytes[i]; } }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git59995.84%541.67%
joe perchesjoe perches101.60%216.67%
jean tourrilhesjean tourrilhes101.60%216.67%
harvey harrisonharvey harrison40.64%18.33%
johannes bergjohannes berg10.16%18.33%
stephen hemmingerstephen hemminger10.16%18.33%
Total625100.00%12100.00%

/* * Function irlan_client_get_value_confirm (obj_id, value) * * Got results from remote LM-IAS * */
void irlan_client_get_value_confirm(int result, __u16 obj_id, struct ias_value *value, void *priv) { struct irlan_cb *self; IRDA_ASSERT(priv != NULL, return;); self = priv; IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;); /* We probably don't need to make any more queries */ iriap_close(self->client.iriap); self->client.iriap = NULL; /* Check if request succeeded */ if (result != IAS_SUCCESS) { pr_debug("%s(), got NULL value!\n", __func__); irlan_do_client_event(self, IRLAN_IAS_PROVIDER_NOT_AVAIL, NULL); return; } switch (value->type) { case IAS_INTEGER: self->dtsap_sel_ctrl = value->t.integer; if (value->t.integer != -1) { irlan_do_client_event(self, IRLAN_IAS_PROVIDER_AVAIL, NULL); return; } irias_delete_value(value); break; default: pr_debug("%s(), unknown type!\n", __func__); break; } irlan_do_client_event(self, IRLAN_IAS_PROVIDER_NOT_AVAIL, NULL); }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git14593.55%555.56%
jean tourrilhesjean tourrilhes63.87%222.22%
joe perchesjoe perches21.29%111.11%
harvey harrisonharvey harrison21.29%111.11%
Total155100.00%9100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git181286.78%1031.25%
jean tourrilhesjean tourrilhes1738.29%515.62%
joe perchesjoe perches321.53%39.38%
harvey harrisonharvey harrison160.77%13.12%
adrian bunkadrian bunk140.67%26.25%
stephen hemmingerstephen hemminger90.43%26.25%
linus torvaldslinus torvalds70.34%13.12%
ben collinsben collins70.34%13.12%
josh triplettjosh triplett50.24%13.12%
hideaki yoshifujihideaki yoshifuji40.19%13.12%
tejun heotejun heo30.14%13.12%
jeff garzikjeff garzik20.10%13.12%
andrew mortonandrew morton20.10%13.12%
johannes bergjohannes berg10.05%13.12%
jan engelhardtjan engelhardt10.05%13.12%
Total2088100.00%32100.00%
Directory: net/irda/irlan
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.