rx.c 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  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. span = wpan_dev->pan_id;
  43. sshort = wpan_dev->short_addr;
  44. switch (mac_cb(skb)->dest.mode) {
  45. case IEEE802154_ADDR_NONE:
  46. if (mac_cb(skb)->dest.mode != IEEE802154_ADDR_NONE)
  47. /* FIXME: check if we are PAN coordinator */
  48. skb->pkt_type = PACKET_OTHERHOST;
  49. else
  50. /* ACK comes with both addresses empty */
  51. skb->pkt_type = PACKET_HOST;
  52. break;
  53. case IEEE802154_ADDR_LONG:
  54. if (mac_cb(skb)->dest.pan_id != span &&
  55. mac_cb(skb)->dest.pan_id != cpu_to_le16(IEEE802154_PANID_BROADCAST))
  56. skb->pkt_type = PACKET_OTHERHOST;
  57. else if (mac_cb(skb)->dest.extended_addr == wpan_dev->extended_addr)
  58. skb->pkt_type = PACKET_HOST;
  59. else
  60. skb->pkt_type = PACKET_OTHERHOST;
  61. break;
  62. case IEEE802154_ADDR_SHORT:
  63. if (mac_cb(skb)->dest.pan_id != span &&
  64. mac_cb(skb)->dest.pan_id != cpu_to_le16(IEEE802154_PANID_BROADCAST))
  65. skb->pkt_type = PACKET_OTHERHOST;
  66. else if (mac_cb(skb)->dest.short_addr == sshort)
  67. skb->pkt_type = PACKET_HOST;
  68. else if (mac_cb(skb)->dest.short_addr ==
  69. cpu_to_le16(IEEE802154_ADDR_BROADCAST))
  70. skb->pkt_type = PACKET_BROADCAST;
  71. else
  72. skb->pkt_type = PACKET_OTHERHOST;
  73. break;
  74. default:
  75. pr_debug("invalid dest mode\n");
  76. goto fail;
  77. }
  78. skb->dev = sdata->dev;
  79. /* TODO this should be moved after netif_receive_skb call, otherwise
  80. * wireshark will show a mac header with security fields and the
  81. * payload is already decrypted.
  82. */
  83. rc = mac802154_llsec_decrypt(&sdata->sec, skb);
  84. if (rc) {
  85. pr_debug("decryption failed: %i\n", rc);
  86. goto fail;
  87. }
  88. sdata->dev->stats.rx_packets++;
  89. sdata->dev->stats.rx_bytes += skb->len;
  90. switch (mac_cb(skb)->type) {
  91. case IEEE802154_FC_TYPE_DATA:
  92. return ieee802154_deliver_skb(skb);
  93. default:
  94. pr_warn("ieee802154: bad frame received (type = %d)\n",
  95. mac_cb(skb)->type);
  96. goto fail;
  97. }
  98. fail:
  99. kfree_skb(skb);
  100. return NET_RX_DROP;
  101. }
  102. static void
  103. ieee802154_print_addr(const char *name, const struct ieee802154_addr *addr)
  104. {
  105. if (addr->mode == IEEE802154_ADDR_NONE)
  106. pr_debug("%s not present\n", name);
  107. pr_debug("%s PAN ID: %04x\n", name, le16_to_cpu(addr->pan_id));
  108. if (addr->mode == IEEE802154_ADDR_SHORT) {
  109. pr_debug("%s is short: %04x\n", name,
  110. le16_to_cpu(addr->short_addr));
  111. } else {
  112. u64 hw = swab64((__force u64)addr->extended_addr);
  113. pr_debug("%s is hardware: %8phC\n", name, &hw);
  114. }
  115. }
  116. static int
  117. ieee802154_parse_frame_start(struct sk_buff *skb, struct ieee802154_hdr *hdr)
  118. {
  119. int hlen;
  120. struct ieee802154_mac_cb *cb = mac_cb_init(skb);
  121. skb_reset_mac_header(skb);
  122. hlen = ieee802154_hdr_pull(skb, hdr);
  123. if (hlen < 0)
  124. return -EINVAL;
  125. skb->mac_len = hlen;
  126. pr_debug("fc: %04x dsn: %02x\n", le16_to_cpup((__le16 *)&hdr->fc),
  127. hdr->seq);
  128. cb->type = hdr->fc.type;
  129. cb->ackreq = hdr->fc.ack_request;
  130. cb->secen = hdr->fc.security_enabled;
  131. ieee802154_print_addr("destination", &hdr->dest);
  132. ieee802154_print_addr("source", &hdr->source);
  133. cb->source = hdr->source;
  134. cb->dest = hdr->dest;
  135. if (hdr->fc.security_enabled) {
  136. u64 key;
  137. pr_debug("seclevel %i\n", hdr->sec.level);
  138. switch (hdr->sec.key_id_mode) {
  139. case IEEE802154_SCF_KEY_IMPLICIT:
  140. pr_debug("implicit key\n");
  141. break;
  142. case IEEE802154_SCF_KEY_INDEX:
  143. pr_debug("key %02x\n", hdr->sec.key_id);
  144. break;
  145. case IEEE802154_SCF_KEY_SHORT_INDEX:
  146. pr_debug("key %04x:%04x %02x\n",
  147. le32_to_cpu(hdr->sec.short_src) >> 16,
  148. le32_to_cpu(hdr->sec.short_src) & 0xffff,
  149. hdr->sec.key_id);
  150. break;
  151. case IEEE802154_SCF_KEY_HW_INDEX:
  152. key = swab64((__force u64)hdr->sec.extended_src);
  153. pr_debug("key source %8phC %02x\n", &key,
  154. hdr->sec.key_id);
  155. break;
  156. }
  157. }
  158. return 0;
  159. }
  160. static void
  161. __ieee802154_rx_handle_packet(struct ieee802154_local *local,
  162. struct sk_buff *skb)
  163. {
  164. int ret;
  165. struct ieee802154_sub_if_data *sdata;
  166. struct ieee802154_hdr hdr;
  167. ret = ieee802154_parse_frame_start(skb, &hdr);
  168. if (ret) {
  169. pr_debug("got invalid frame\n");
  170. kfree_skb(skb);
  171. return;
  172. }
  173. list_for_each_entry_rcu(sdata, &local->interfaces, list) {
  174. if (sdata->wpan_dev.iftype != NL802154_IFTYPE_NODE)
  175. continue;
  176. if (!ieee802154_sdata_running(sdata))
  177. continue;
  178. ieee802154_subif_frame(sdata, skb, &hdr);
  179. skb = NULL;
  180. break;
  181. }
  182. if (skb)
  183. kfree_skb(skb);
  184. }
  185. static void
  186. ieee802154_monitors_rx(struct ieee802154_local *local, struct sk_buff *skb)
  187. {
  188. struct sk_buff *skb2;
  189. struct ieee802154_sub_if_data *sdata;
  190. skb_reset_mac_header(skb);
  191. skb->ip_summed = CHECKSUM_UNNECESSARY;
  192. skb->pkt_type = PACKET_OTHERHOST;
  193. skb->protocol = htons(ETH_P_IEEE802154);
  194. list_for_each_entry_rcu(sdata, &local->interfaces, list) {
  195. if (sdata->wpan_dev.iftype != NL802154_IFTYPE_MONITOR)
  196. continue;
  197. if (!ieee802154_sdata_running(sdata))
  198. continue;
  199. skb2 = skb_clone(skb, GFP_ATOMIC);
  200. if (skb2) {
  201. skb2->dev = sdata->dev;
  202. ieee802154_deliver_skb(skb2);
  203. sdata->dev->stats.rx_packets++;
  204. sdata->dev->stats.rx_bytes += skb->len;
  205. }
  206. }
  207. }
  208. void ieee802154_rx(struct ieee802154_local *local, struct sk_buff *skb)
  209. {
  210. u16 crc;
  211. WARN_ON_ONCE(softirq_count() == 0);
  212. if (local->suspended)
  213. goto drop;
  214. /* TODO: When a transceiver omits the checksum here, we
  215. * add an own calculated one. This is currently an ugly
  216. * solution because the monitor needs a crc here.
  217. */
  218. if (local->hw.flags & IEEE802154_HW_RX_OMIT_CKSUM) {
  219. crc = crc_ccitt(0, skb->data, skb->len);
  220. put_unaligned_le16(crc, skb_put(skb, 2));
  221. }
  222. rcu_read_lock();
  223. ieee802154_monitors_rx(local, skb);
  224. /* Check if transceiver doesn't validate the checksum.
  225. * If not we validate the checksum here.
  226. */
  227. if (local->hw.flags & IEEE802154_HW_RX_DROP_BAD_CKSUM) {
  228. crc = crc_ccitt(0, skb->data, skb->len);
  229. if (crc) {
  230. rcu_read_unlock();
  231. goto drop;
  232. }
  233. }
  234. /* remove crc */
  235. skb_trim(skb, skb->len - 2);
  236. __ieee802154_rx_handle_packet(local, skb);
  237. rcu_read_unlock();
  238. return;
  239. drop:
  240. kfree_skb(skb);
  241. }
  242. void
  243. ieee802154_rx_irqsafe(struct ieee802154_hw *hw, struct sk_buff *skb, u8 lqi)
  244. {
  245. struct ieee802154_local *local = hw_to_local(hw);
  246. mac_cb(skb)->lqi = lqi;
  247. skb->pkt_type = IEEE802154_RX_MSG;
  248. skb_queue_tail(&local->skb_queue, skb);
  249. tasklet_schedule(&local->tasklet);
  250. }
  251. EXPORT_SYMBOL(ieee802154_rx_irqsafe);