rx.c 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. /*
  2. * Copyright (C) 2007-2012 Siemens AG
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2
  6. * as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * Written by:
  14. * Pavel Smolenskiy <pavel.smolenskiy@gmail.com>
  15. * Maxim Gorbachyov <maxim.gorbachev@siemens.com>
  16. * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
  17. * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
  18. */
  19. #include <linux/kernel.h>
  20. #include <linux/module.h>
  21. #include <linux/netdevice.h>
  22. #include <linux/crc-ccitt.h>
  23. #include <asm/unaligned.h>
  24. #include <net/mac802154.h>
  25. #include <net/ieee802154_netdev.h>
  26. #include <net/nl802154.h>
  27. #include "ieee802154_i.h"
  28. static int ieee802154_deliver_skb(struct sk_buff *skb)
  29. {
  30. skb->ip_summed = CHECKSUM_UNNECESSARY;
  31. skb->protocol = htons(ETH_P_IEEE802154);
  32. return netif_receive_skb(skb);
  33. }
  34. static int
  35. ieee802154_subif_frame(struct ieee802154_sub_if_data *sdata,
  36. struct sk_buff *skb, const struct ieee802154_hdr *hdr)
  37. {
  38. struct wpan_dev *wpan_dev = &sdata->wpan_dev;
  39. __le16 span, sshort;
  40. int rc;
  41. pr_debug("getting packet via slave interface %s\n", sdata->dev->name);
  42. spin_lock_bh(&sdata->mib_lock);
  43. span = wpan_dev->pan_id;
  44. sshort = wpan_dev->short_addr;
  45. switch (mac_cb(skb)->dest.mode) {
  46. case IEEE802154_ADDR_NONE:
  47. if (mac_cb(skb)->dest.mode != IEEE802154_ADDR_NONE)
  48. /* FIXME: check if we are PAN coordinator */
  49. skb->pkt_type = PACKET_OTHERHOST;
  50. else
  51. /* ACK comes with both addresses empty */
  52. skb->pkt_type = PACKET_HOST;
  53. break;
  54. case IEEE802154_ADDR_LONG:
  55. if (mac_cb(skb)->dest.pan_id != span &&
  56. mac_cb(skb)->dest.pan_id != cpu_to_le16(IEEE802154_PANID_BROADCAST))
  57. skb->pkt_type = PACKET_OTHERHOST;
  58. else if (mac_cb(skb)->dest.extended_addr == wpan_dev->extended_addr)
  59. skb->pkt_type = PACKET_HOST;
  60. else
  61. skb->pkt_type = PACKET_OTHERHOST;
  62. break;
  63. case IEEE802154_ADDR_SHORT:
  64. if (mac_cb(skb)->dest.pan_id != span &&
  65. mac_cb(skb)->dest.pan_id != cpu_to_le16(IEEE802154_PANID_BROADCAST))
  66. skb->pkt_type = PACKET_OTHERHOST;
  67. else if (mac_cb(skb)->dest.short_addr == sshort)
  68. skb->pkt_type = PACKET_HOST;
  69. else if (mac_cb(skb)->dest.short_addr ==
  70. cpu_to_le16(IEEE802154_ADDR_BROADCAST))
  71. skb->pkt_type = PACKET_BROADCAST;
  72. else
  73. skb->pkt_type = PACKET_OTHERHOST;
  74. break;
  75. default:
  76. spin_unlock_bh(&sdata->mib_lock);
  77. pr_debug("invalid dest mode\n");
  78. goto fail;
  79. }
  80. spin_unlock_bh(&sdata->mib_lock);
  81. skb->dev = sdata->dev;
  82. rc = mac802154_llsec_decrypt(&sdata->sec, skb);
  83. if (rc) {
  84. pr_debug("decryption failed: %i\n", rc);
  85. goto fail;
  86. }
  87. sdata->dev->stats.rx_packets++;
  88. sdata->dev->stats.rx_bytes += skb->len;
  89. switch (mac_cb(skb)->type) {
  90. case IEEE802154_FC_TYPE_DATA:
  91. return ieee802154_deliver_skb(skb);
  92. default:
  93. pr_warn("ieee802154: bad frame received (type = %d)\n",
  94. mac_cb(skb)->type);
  95. goto fail;
  96. }
  97. fail:
  98. kfree_skb(skb);
  99. return NET_RX_DROP;
  100. }
  101. static void
  102. ieee802154_print_addr(const char *name, const struct ieee802154_addr *addr)
  103. {
  104. if (addr->mode == IEEE802154_ADDR_NONE)
  105. pr_debug("%s not present\n", name);
  106. pr_debug("%s PAN ID: %04x\n", name, le16_to_cpu(addr->pan_id));
  107. if (addr->mode == IEEE802154_ADDR_SHORT) {
  108. pr_debug("%s is short: %04x\n", name,
  109. le16_to_cpu(addr->short_addr));
  110. } else {
  111. u64 hw = swab64((__force u64)addr->extended_addr);
  112. pr_debug("%s is hardware: %8phC\n", name, &hw);
  113. }
  114. }
  115. static int
  116. ieee802154_parse_frame_start(struct sk_buff *skb, struct ieee802154_hdr *hdr)
  117. {
  118. int hlen;
  119. struct ieee802154_mac_cb *cb = mac_cb_init(skb);
  120. skb_reset_mac_header(skb);
  121. hlen = ieee802154_hdr_pull(skb, hdr);
  122. if (hlen < 0)
  123. return -EINVAL;
  124. skb->mac_len = hlen;
  125. pr_debug("fc: %04x dsn: %02x\n", le16_to_cpup((__le16 *)&hdr->fc),
  126. hdr->seq);
  127. cb->type = hdr->fc.type;
  128. cb->ackreq = hdr->fc.ack_request;
  129. cb->secen = hdr->fc.security_enabled;
  130. ieee802154_print_addr("destination", &hdr->dest);
  131. ieee802154_print_addr("source", &hdr->source);
  132. cb->source = hdr->source;
  133. cb->dest = hdr->dest;
  134. if (hdr->fc.security_enabled) {
  135. u64 key;
  136. pr_debug("seclevel %i\n", hdr->sec.level);
  137. switch (hdr->sec.key_id_mode) {
  138. case IEEE802154_SCF_KEY_IMPLICIT:
  139. pr_debug("implicit key\n");
  140. break;
  141. case IEEE802154_SCF_KEY_INDEX:
  142. pr_debug("key %02x\n", hdr->sec.key_id);
  143. break;
  144. case IEEE802154_SCF_KEY_SHORT_INDEX:
  145. pr_debug("key %04x:%04x %02x\n",
  146. le32_to_cpu(hdr->sec.short_src) >> 16,
  147. le32_to_cpu(hdr->sec.short_src) & 0xffff,
  148. hdr->sec.key_id);
  149. break;
  150. case IEEE802154_SCF_KEY_HW_INDEX:
  151. key = swab64((__force u64)hdr->sec.extended_src);
  152. pr_debug("key source %8phC %02x\n", &key,
  153. hdr->sec.key_id);
  154. break;
  155. }
  156. }
  157. return 0;
  158. }
  159. static void
  160. __ieee802154_rx_handle_packet(struct ieee802154_local *local,
  161. struct sk_buff *skb)
  162. {
  163. int ret;
  164. struct ieee802154_sub_if_data *sdata;
  165. struct ieee802154_hdr hdr;
  166. ret = ieee802154_parse_frame_start(skb, &hdr);
  167. if (ret) {
  168. pr_debug("got invalid frame\n");
  169. kfree_skb(skb);
  170. return;
  171. }
  172. list_for_each_entry_rcu(sdata, &local->interfaces, list) {
  173. if (sdata->vif.type != NL802154_IFTYPE_NODE ||
  174. !netif_running(sdata->dev))
  175. continue;
  176. ieee802154_subif_frame(sdata, skb, &hdr);
  177. skb = NULL;
  178. break;
  179. }
  180. if (skb)
  181. kfree_skb(skb);
  182. }
  183. static void
  184. ieee802154_monitors_rx(struct ieee802154_local *local, struct sk_buff *skb)
  185. {
  186. struct sk_buff *skb2;
  187. struct ieee802154_sub_if_data *sdata;
  188. skb_reset_mac_header(skb);
  189. skb->ip_summed = CHECKSUM_UNNECESSARY;
  190. skb->pkt_type = PACKET_OTHERHOST;
  191. skb->protocol = htons(ETH_P_IEEE802154);
  192. list_for_each_entry_rcu(sdata, &local->interfaces, list) {
  193. if (sdata->vif.type != NL802154_IFTYPE_MONITOR)
  194. continue;
  195. if (!ieee802154_sdata_running(sdata))
  196. continue;
  197. skb2 = skb_clone(skb, GFP_ATOMIC);
  198. if (skb2) {
  199. skb2->dev = sdata->dev;
  200. ieee802154_deliver_skb(skb2);
  201. sdata->dev->stats.rx_packets++;
  202. sdata->dev->stats.rx_bytes += skb->len;
  203. }
  204. }
  205. }
  206. void ieee802154_rx(struct ieee802154_hw *hw, struct sk_buff *skb)
  207. {
  208. struct ieee802154_local *local = hw_to_local(hw);
  209. u16 crc;
  210. WARN_ON_ONCE(softirq_count() == 0);
  211. /* TODO: When a transceiver omits the checksum here, we
  212. * add an own calculated one. This is currently an ugly
  213. * solution because the monitor needs a crc here.
  214. */
  215. if (local->hw.flags & IEEE802154_HW_RX_OMIT_CKSUM) {
  216. crc = crc_ccitt(0, skb->data, skb->len);
  217. put_unaligned_le16(crc, skb_put(skb, 2));
  218. }
  219. rcu_read_lock();
  220. ieee802154_monitors_rx(local, skb);
  221. /* Check if transceiver doesn't validate the checksum.
  222. * If not we validate the checksum here.
  223. */
  224. if (local->hw.flags & IEEE802154_HW_RX_DROP_BAD_CKSUM) {
  225. crc = crc_ccitt(0, skb->data, skb->len);
  226. if (crc) {
  227. rcu_read_unlock();
  228. kfree_skb(skb);
  229. return;
  230. }
  231. }
  232. /* remove crc */
  233. skb_trim(skb, skb->len - 2);
  234. __ieee802154_rx_handle_packet(local, skb);
  235. rcu_read_unlock();
  236. }
  237. EXPORT_SYMBOL(ieee802154_rx);
  238. void
  239. ieee802154_rx_irqsafe(struct ieee802154_hw *hw, struct sk_buff *skb, u8 lqi)
  240. {
  241. struct ieee802154_local *local = hw_to_local(hw);
  242. mac_cb(skb)->lqi = lqi;
  243. skb->pkt_type = IEEE802154_RX_MSG;
  244. skb_queue_tail(&local->skb_queue, skb);
  245. tasklet_schedule(&local->tasklet);
  246. }
  247. EXPORT_SYMBOL(ieee802154_rx_irqsafe);