netdev.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:6k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* 
  2.    BNEP implementation for Linux Bluetooth stack (BlueZ).
  3.    Copyright (C) 2001-2002 Inventel Systemes
  4.    Written 2001-2002 by
  5. Cl閙ent Moreau <clement.moreau@inventel.fr>
  6. David Libault  <david.libault@inventel.fr>
  7.    Copyright (C) 2002 Maxim Krasnyanskiy <maxk@qualcomm.com>
  8.    This program is free software; you can redistribute it and/or modify
  9.    it under the terms of the GNU General Public License version 2 as
  10.    published by the Free Software Foundation;
  11.    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  12.    OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13.    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
  14.    IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
  15.    CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES 
  16.    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 
  17.    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 
  18.    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  19.    ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, 
  20.    COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS 
  21.    SOFTWARE IS DISCLAIMED.
  22. */
  23. /*
  24.  * $Id: netdev.c,v 1.7 2002/07/14 05:39:26 maxk Exp $
  25.  */ 
  26. #include <linux/config.h>
  27. #include <linux/module.h>
  28. #include <linux/socket.h>
  29. #include <linux/netdevice.h>
  30. #include <linux/etherdevice.h>
  31. #include <linux/skbuff.h>
  32. #include <linux/wait.h>
  33. #include <asm/unaligned.h>
  34. #include <net/bluetooth/bluetooth.h>
  35. #include <net/bluetooth/hci_core.h>
  36. #include <net/bluetooth/l2cap.h>
  37. #include "bnep.h"
  38. #ifndef CONFIG_BNEP_DEBUG
  39. #undef  BT_DBG
  40. #define BT_DBG( A... )
  41. #endif
  42. #define BNEP_TX_QUEUE_LEN 20
  43. static int bnep_net_open(struct net_device *dev)
  44. {
  45. netif_start_queue(dev);
  46. return 0;
  47. }
  48. static int bnep_net_close(struct net_device *dev)
  49. {
  50. netif_stop_queue(dev);
  51. return 0;
  52. }
  53. static struct net_device_stats *bnep_net_get_stats(struct net_device *dev)
  54. {
  55. struct bnep_session *s = dev->priv;
  56. return &s->stats;
  57. }
  58. static void bnep_net_set_mc_list(struct net_device *dev)
  59. {
  60. #ifdef CONFIG_BNEP_MC_FILTER
  61. struct bnep_session *s = dev->priv;
  62. struct sock *sk = s->sock->sk;
  63. struct bnep_set_filter_req *r;
  64. struct sk_buff *skb;
  65. int size;
  66. BT_DBG("%s mc_count %d", dev->name, dev->mc_count);
  67. size = sizeof(*r) + (BNEP_MAX_MULTICAST_FILTERS + 1) * ETH_ALEN * 2;
  68. skb  = alloc_skb(size, GFP_ATOMIC);
  69. if (!skb) {
  70. BT_ERR("%s Multicast list allocation failed", dev->name);
  71. return;
  72. }
  73. r = (void *) skb->data;
  74. __skb_put(skb, sizeof(*r));
  75. r->type = BNEP_CONTROL;
  76. r->ctrl = BNEP_FILTER_MULTI_ADDR_SET;
  77.         if (dev->flags & (IFF_PROMISC | IFF_ALLMULTI)) {
  78. u8 start[ETH_ALEN] = { 0x01 };
  79. /* Request all addresses */
  80. memcpy(__skb_put(skb, ETH_ALEN), start, ETH_ALEN);
  81. memcpy(__skb_put(skb, ETH_ALEN), dev->broadcast, ETH_ALEN);
  82. r->len = htons(ETH_ALEN * 2);
  83. } else {
  84.                 struct dev_mc_list *dmi = dev->mc_list;
  85. int i, len = skb->len;
  86. if (dev->flags & IFF_BROADCAST) {
  87. memcpy(__skb_put(skb, ETH_ALEN), dev->broadcast, ETH_ALEN);
  88. memcpy(__skb_put(skb, ETH_ALEN), dev->broadcast, ETH_ALEN);
  89. }
  90. /* FIXME: We should group addresses here. */
  91. for (i = 0; i < dev->mc_count && i < BNEP_MAX_MULTICAST_FILTERS; i++) {
  92. memcpy(__skb_put(skb, ETH_ALEN), dmi->dmi_addr, ETH_ALEN);
  93. memcpy(__skb_put(skb, ETH_ALEN), dmi->dmi_addr, ETH_ALEN);
  94. dmi = dmi->next;
  95. }
  96. r->len = htons(skb->len - len);
  97. }
  98. skb_queue_tail(&sk->write_queue, skb);
  99. wake_up_interruptible(sk->sleep);
  100. #endif
  101. }
  102. static int bnep_net_set_mac_addr(struct net_device *dev, void *arg)
  103. {
  104. BT_DBG("%s", dev->name);
  105. return 0;
  106. }
  107. static void bnep_net_timeout(struct net_device *dev)
  108. {
  109. BT_DBG("net_timeout");
  110. netif_wake_queue(dev);
  111. }
  112. static int bnep_net_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
  113. {
  114. return -EINVAL;
  115. }
  116. #ifdef CONFIG_BNEP_MC_FILTER
  117. static inline int bnep_net_mc_filter(struct sk_buff *skb, struct bnep_session *s)
  118. {
  119. struct ethhdr *eh = (void *) skb->data;
  120. if ((eh->h_dest[0] & 1) && !test_bit(bnep_mc_hash(eh->h_dest), &s->mc_filter))
  121. return 1;
  122. return 0;
  123. }
  124. #endif
  125. #ifdef CONFIG_BNEP_PROTO_FILTER
  126. /* Determine ether protocol. Based on eth_type_trans. */
  127. static inline __u16 bnep_net_eth_proto(struct sk_buff *skb)
  128. {
  129. struct ethhdr *eh = (void *) skb->data;
  130. if (ntohs(eh->h_proto) >= 1536)
  131. return eh->h_proto;
  132. if (get_unaligned((__u16 *) skb->data) == 0xFFFF)
  133. return htons(ETH_P_802_3);
  134. return htons(ETH_P_802_2);
  135. }
  136. static inline int bnep_net_proto_filter(struct sk_buff *skb, struct bnep_session *s)
  137. {
  138. __u16 proto = bnep_net_eth_proto(skb);
  139. struct bnep_proto_filter *f = s->proto_filter;
  140. int i;
  141. for (i = 0; i < BNEP_MAX_PROTO_FILTERS && f[i].end; i++) {
  142. if (proto >= f[i].start && proto <= f[i].end)
  143. return 0;
  144. }
  145. BT_DBG("BNEP: filtered skb %p, proto 0x%.4x", skb, proto);
  146. return 1;
  147. }
  148. #endif
  149. static int bnep_net_xmit(struct sk_buff *skb, struct net_device *dev)
  150. {
  151. struct bnep_session *s = dev->priv;
  152. struct sock *sk = s->sock->sk;
  153. BT_DBG("skb %p, dev %p", skb, dev);
  154. #ifdef CONFIG_BNEP_MC_FILTER
  155. if (bnep_net_mc_filter(skb, s)) {
  156. kfree_skb(skb);
  157. return 0;
  158. }
  159. #endif
  160. #ifdef CONFIG_BNEP_PROTO_FILTER
  161. if (bnep_net_proto_filter(skb, s)) {
  162. kfree_skb(skb);
  163. return 0;
  164. }
  165. #endif
  166. /*
  167.  * We cannot send L2CAP packets from here as we are potentially in a bh.
  168.  * So we have to queue them and wake up session thread which is sleeping
  169.  * on the sk->sleep.
  170.  */
  171. dev->trans_start = jiffies;
  172. skb_queue_tail(&sk->write_queue, skb);
  173. wake_up_interruptible(sk->sleep);
  174. if (skb_queue_len(&sk->write_queue) >= BNEP_TX_QUEUE_LEN) {
  175. BT_DBG("tx queue is full");
  176. /* Stop queuing.
  177.  * Session thread will do netif_wake_queue() */
  178. netif_stop_queue(dev);
  179. }
  180. return 0;
  181. }
  182. int bnep_net_init(struct net_device *dev)
  183. {
  184. struct bnep_session *s = dev->priv;
  185. memcpy(dev->dev_addr, s->eh.h_dest, ETH_ALEN);
  186. dev->addr_len = ETH_ALEN;
  187. ether_setup(dev);
  188. dev->open            = bnep_net_open;
  189. dev->stop            = bnep_net_close;
  190. dev->hard_start_xmit = bnep_net_xmit;
  191. dev->get_stats       = bnep_net_get_stats;
  192. dev->do_ioctl        = bnep_net_ioctl;
  193. dev->set_mac_address = bnep_net_set_mac_addr;
  194. dev->set_multicast_list = bnep_net_set_mc_list;
  195. dev->watchdog_timeo  = HZ * 2;
  196. dev->tx_timeout      = bnep_net_timeout;
  197. return 0;
  198. }