irlan_eth.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  1. /*********************************************************************
  2. *
  3. * Filename: irlan_eth.c
  4. * Version:
  5. * Description:
  6. * Status: Experimental.
  7. * Author: Dag Brattli <dagb@cs.uit.no>
  8. * Created at: Thu Oct 15 08:37:58 1998
  9. * Modified at: Tue Mar 21 09:06:41 2000
  10. * Modified by: Dag Brattli <dagb@cs.uit.no>
  11. * Sources: skeleton.c by Donald Becker <becker@CESDIS.gsfc.nasa.gov>
  12. * slip.c by Laurence Culhane, <loz@holmes.demon.co.uk>
  13. * Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
  14. *
  15. * Copyright (c) 1998-2000 Dag Brattli, All Rights Reserved.
  16. *
  17. * This program is free software; you can redistribute it and/or
  18. * modify it under the terms of the GNU General Public License as
  19. * published by the Free Software Foundation; either version 2 of
  20. * the License, or (at your option) any later version.
  21. *
  22. * Neither Dag Brattli nor University of Tromsø admit liability nor
  23. * provide warranty for any of this software. This material is
  24. * provided "AS-IS" and at no charge.
  25. *
  26. ********************************************************************/
  27. #include <linux/netdevice.h>
  28. #include <linux/etherdevice.h>
  29. #include <linux/inetdevice.h>
  30. #include <linux/if_arp.h>
  31. #include <linux/module.h>
  32. #include <net/arp.h>
  33. #include <net/irda/irda.h>
  34. #include <net/irda/irmod.h>
  35. #include <net/irda/irlan_common.h>
  36. #include <net/irda/irlan_client.h>
  37. #include <net/irda/irlan_event.h>
  38. #include <net/irda/irlan_eth.h>
  39. static int irlan_eth_open(struct net_device *dev);
  40. static int irlan_eth_close(struct net_device *dev);
  41. static int irlan_eth_xmit(struct sk_buff *skb, struct net_device *dev);
  42. static void irlan_eth_set_multicast_list( struct net_device *dev);
  43. static struct net_device_stats *irlan_eth_get_stats(struct net_device *dev);
  44. /*
  45. * Function irlan_eth_setup (dev)
  46. *
  47. * The network device initialization function.
  48. *
  49. */
  50. static void irlan_eth_setup(struct net_device *dev)
  51. {
  52. dev->open = irlan_eth_open;
  53. dev->stop = irlan_eth_close;
  54. dev->hard_start_xmit = irlan_eth_xmit;
  55. dev->get_stats = irlan_eth_get_stats;
  56. dev->set_multicast_list = irlan_eth_set_multicast_list;
  57. dev->destructor = free_netdev;
  58. ether_setup(dev);
  59. /*
  60. * Lets do all queueing in IrTTP instead of this device driver.
  61. * Queueing here as well can introduce some strange latency
  62. * problems, which we will avoid by setting the queue size to 0.
  63. */
  64. /*
  65. * The bugs in IrTTP and IrLAN that created this latency issue
  66. * have now been fixed, and we can propagate flow control properly
  67. * to the network layer. However, this requires a minimal queue of
  68. * packets for the device.
  69. * Without flow control, the Tx Queue is 14 (ttp) + 0 (dev) = 14
  70. * With flow control, the Tx Queue is 7 (ttp) + 4 (dev) = 11
  71. * See irlan_eth_flow_indication()...
  72. * Note : this number was randomly selected and would need to
  73. * be adjusted.
  74. * Jean II */
  75. dev->tx_queue_len = 4;
  76. }
  77. /*
  78. * Function alloc_irlandev
  79. *
  80. * Allocate network device and control block
  81. *
  82. */
  83. struct net_device *alloc_irlandev(const char *name)
  84. {
  85. return alloc_netdev(sizeof(struct irlan_cb), name,
  86. irlan_eth_setup);
  87. }
  88. /*
  89. * Function irlan_eth_open (dev)
  90. *
  91. * Network device has been opened by user
  92. *
  93. */
  94. static int irlan_eth_open(struct net_device *dev)
  95. {
  96. struct irlan_cb *self = netdev_priv(dev);
  97. IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
  98. /* Ready to play! */
  99. netif_stop_queue(dev); /* Wait until data link is ready */
  100. /* We are now open, so time to do some work */
  101. self->disconnect_reason = 0;
  102. irlan_client_wakeup(self, self->saddr, self->daddr);
  103. /* Make sure we have a hardware address before we return,
  104. so DHCP clients gets happy */
  105. return wait_event_interruptible(self->open_wait,
  106. !self->tsap_data->connected);
  107. }
  108. /*
  109. * Function irlan_eth_close (dev)
  110. *
  111. * Stop the ether network device, his function will usually be called by
  112. * ifconfig down. We should now disconnect the link, We start the
  113. * close timer, so that the instance will be removed if we are unable
  114. * to discover the remote device after the disconnect.
  115. */
  116. static int irlan_eth_close(struct net_device *dev)
  117. {
  118. struct irlan_cb *self = netdev_priv(dev);
  119. IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
  120. /* Stop device */
  121. netif_stop_queue(dev);
  122. irlan_close_data_channel(self);
  123. irlan_close_tsaps(self);
  124. irlan_do_client_event(self, IRLAN_LMP_DISCONNECT, NULL);
  125. irlan_do_provider_event(self, IRLAN_LMP_DISCONNECT, NULL);
  126. /* Remove frames queued on the control channel */
  127. skb_queue_purge(&self->client.txq);
  128. self->client.tx_busy = 0;
  129. return 0;
  130. }
  131. /*
  132. * Function irlan_eth_tx (skb)
  133. *
  134. * Transmits ethernet frames over IrDA link.
  135. *
  136. */
  137. static int irlan_eth_xmit(struct sk_buff *skb, struct net_device *dev)
  138. {
  139. struct irlan_cb *self = netdev_priv(dev);
  140. int ret;
  141. /* skb headroom large enough to contain all IrDA-headers? */
  142. if ((skb_headroom(skb) < self->max_header_size) || (skb_shared(skb))) {
  143. struct sk_buff *new_skb =
  144. skb_realloc_headroom(skb, self->max_header_size);
  145. /* We have to free the original skb anyway */
  146. dev_kfree_skb(skb);
  147. /* Did the realloc succeed? */
  148. if (new_skb == NULL)
  149. return 0;
  150. /* Use the new skb instead */
  151. skb = new_skb;
  152. }
  153. dev->trans_start = jiffies;
  154. /* Now queue the packet in the transport layer */
  155. if (self->use_udata)
  156. ret = irttp_udata_request(self->tsap_data, skb);
  157. else
  158. ret = irttp_data_request(self->tsap_data, skb);
  159. if (ret < 0) {
  160. /*
  161. * IrTTPs tx queue is full, so we just have to
  162. * drop the frame! You might think that we should
  163. * just return -1 and don't deallocate the frame,
  164. * but that is dangerous since it's possible that
  165. * we have replaced the original skb with a new
  166. * one with larger headroom, and that would really
  167. * confuse do_dev_queue_xmit() in dev.c! I have
  168. * tried :-) DB
  169. */
  170. /* irttp_data_request already free the packet */
  171. self->stats.tx_dropped++;
  172. } else {
  173. self->stats.tx_packets++;
  174. self->stats.tx_bytes += skb->len;
  175. }
  176. return 0;
  177. }
  178. /*
  179. * Function irlan_eth_receive (handle, skb)
  180. *
  181. * This function gets the data that is received on the data channel
  182. *
  183. */
  184. int irlan_eth_receive(void *instance, void *sap, struct sk_buff *skb)
  185. {
  186. struct irlan_cb *self = instance;
  187. if (skb == NULL) {
  188. ++self->stats.rx_dropped;
  189. return 0;
  190. }
  191. if (skb->len < ETH_HLEN) {
  192. IRDA_DEBUG(0, "%s() : IrLAN frame too short (%d)\n",
  193. __FUNCTION__, skb->len);
  194. ++self->stats.rx_dropped;
  195. dev_kfree_skb(skb);
  196. return 0;
  197. }
  198. /*
  199. * Adopt this frame! Important to set all these fields since they
  200. * might have been previously set by the low level IrDA network
  201. * device driver
  202. */
  203. skb->protocol = eth_type_trans(skb, self->dev); /* Remove eth header */
  204. self->stats.rx_packets++;
  205. self->stats.rx_bytes += skb->len;
  206. netif_rx(skb); /* Eat it! */
  207. return 0;
  208. }
  209. /*
  210. * Function irlan_eth_flow (status)
  211. *
  212. * Do flow control between IP/Ethernet and IrLAN/IrTTP. This is done by
  213. * controlling the queue stop/start.
  214. *
  215. * The IrDA link layer has the advantage to have flow control, and
  216. * IrTTP now properly handles that. Flow controlling the higher layers
  217. * prevent us to drop Tx packets in here (up to 15% for a TCP socket,
  218. * more for UDP socket).
  219. * Also, this allow us to reduce the overall transmit queue, which means
  220. * less latency in case of mixed traffic.
  221. * Jean II
  222. */
  223. void irlan_eth_flow_indication(void *instance, void *sap, LOCAL_FLOW flow)
  224. {
  225. struct irlan_cb *self;
  226. struct net_device *dev;
  227. self = (struct irlan_cb *) instance;
  228. IRDA_ASSERT(self != NULL, return;);
  229. IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;);
  230. dev = self->dev;
  231. IRDA_ASSERT(dev != NULL, return;);
  232. IRDA_DEBUG(0, "%s() : flow %s ; running %d\n", __FUNCTION__,
  233. flow == FLOW_STOP ? "FLOW_STOP" : "FLOW_START",
  234. netif_running(dev));
  235. switch (flow) {
  236. case FLOW_STOP:
  237. /* IrTTP is full, stop higher layers */
  238. netif_stop_queue(dev);
  239. break;
  240. case FLOW_START:
  241. default:
  242. /* Tell upper layers that its time to transmit frames again */
  243. /* Schedule network layer */
  244. netif_wake_queue(dev);
  245. break;
  246. }
  247. }
  248. /*
  249. * Function irlan_etc_send_gratuitous_arp (dev)
  250. *
  251. * Send gratuitous ARP to announce that we have changed
  252. * hardware address, so that all peers updates their ARP tables
  253. */
  254. void irlan_eth_send_gratuitous_arp(struct net_device *dev)
  255. {
  256. struct in_device *in_dev;
  257. /*
  258. * When we get a new MAC address do a gratuitous ARP. This
  259. * is useful if we have changed access points on the same
  260. * subnet.
  261. */
  262. #ifdef CONFIG_INET
  263. IRDA_DEBUG(4, "IrLAN: Sending gratuitous ARP\n");
  264. rcu_read_lock();
  265. in_dev = __in_dev_get_rcu(dev);
  266. if (in_dev == NULL)
  267. goto out;
  268. if (in_dev->ifa_list)
  269. arp_send(ARPOP_REQUEST, ETH_P_ARP,
  270. in_dev->ifa_list->ifa_address,
  271. dev,
  272. in_dev->ifa_list->ifa_address,
  273. NULL, dev->dev_addr, NULL);
  274. out:
  275. rcu_read_unlock();
  276. #endif /* CONFIG_INET */
  277. }
  278. /*
  279. * Function set_multicast_list (dev)
  280. *
  281. * Configure the filtering of the device
  282. *
  283. */
  284. #define HW_MAX_ADDRS 4 /* Must query to get it! */
  285. static void irlan_eth_set_multicast_list(struct net_device *dev)
  286. {
  287. struct irlan_cb *self = netdev_priv(dev);
  288. IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
  289. /* Check if data channel has been connected yet */
  290. if (self->client.state != IRLAN_DATA) {
  291. IRDA_DEBUG(1, "%s(), delaying!\n", __FUNCTION__ );
  292. return;
  293. }
  294. if (dev->flags & IFF_PROMISC) {
  295. /* Enable promiscuous mode */
  296. IRDA_WARNING("Promiscous mode not implemented by IrLAN!\n");
  297. }
  298. else if ((dev->flags & IFF_ALLMULTI) || dev->mc_count > HW_MAX_ADDRS) {
  299. /* Disable promiscuous mode, use normal mode. */
  300. IRDA_DEBUG(4, "%s(), Setting multicast filter\n", __FUNCTION__ );
  301. /* hardware_set_filter(NULL); */
  302. irlan_set_multicast_filter(self, TRUE);
  303. }
  304. else if (dev->mc_count) {
  305. IRDA_DEBUG(4, "%s(), Setting multicast filter\n", __FUNCTION__ );
  306. /* Walk the address list, and load the filter */
  307. /* hardware_set_filter(dev->mc_list); */
  308. irlan_set_multicast_filter(self, TRUE);
  309. }
  310. else {
  311. IRDA_DEBUG(4, "%s(), Clearing multicast filter\n", __FUNCTION__ );
  312. irlan_set_multicast_filter(self, FALSE);
  313. }
  314. if (dev->flags & IFF_BROADCAST)
  315. irlan_set_broadcast_filter(self, TRUE);
  316. else
  317. irlan_set_broadcast_filter(self, FALSE);
  318. }
  319. /*
  320. * Function irlan_get_stats (dev)
  321. *
  322. * Get the current statistics for this device
  323. *
  324. */
  325. static struct net_device_stats *irlan_eth_get_stats(struct net_device *dev)
  326. {
  327. struct irlan_cb *self = netdev_priv(dev);
  328. return &self->stats;
  329. }