mac802154: tx: make worker information static
[deliverable/linux.git] / net / ieee802154 / 6lowpan_rtnl.c
CommitLineData
d57fec84 1/* Copyright 2011, Siemens AG
44331fe2
AS
2 * written by Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
3 */
4
d57fec84 5/* Based on patches from Jon Smirl <jonsmirl@gmail.com>
44331fe2
AS
6 * Copyright (c) 2011 Jon Smirl <jonsmirl@gmail.com>
7 *
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
10 * as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
44331fe2
AS
16 */
17
18/* Jon's code is based on 6lowpan implementation for Contiki which is:
19 * Copyright (c) 2008, Swedish Institute of Computer Science.
20 * All rights reserved.
21 *
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the above copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 * 3. Neither the name of the Institute nor the names of its contributors
31 * may be used to endorse or promote products derived from this software
32 * without specific prior written permission.
33 *
34 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
35 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
36 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
37 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
38 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
39 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
40 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
41 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
42 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
43 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
44 * SUCH DAMAGE.
45 */
46
44331fe2
AS
47#include <linux/bitops.h>
48#include <linux/if_arp.h>
49#include <linux/module.h>
50#include <linux/moduleparam.h>
51#include <linux/netdevice.h>
4ca24aca 52#include <linux/ieee802154.h>
44331fe2 53#include <net/af_ieee802154.h>
44331fe2 54#include <net/ieee802154_netdev.h>
cefc8c8a 55#include <net/6lowpan.h>
44331fe2
AS
56#include <net/ipv6.h>
57
7240cdec 58#include "reassembly.h"
44331fe2 59
44331fe2 60static LIST_HEAD(lowpan_devices);
1ae2605e 61static int lowpan_open_count;
44331fe2 62
44331fe2
AS
63/* private device info */
64struct lowpan_dev_info {
65 struct net_device *real_dev; /* real WPAN device ptr */
66 struct mutex dev_list_mtx; /* mutex for list ops */
cd97a713 67 u16 fragment_tag;
44331fe2
AS
68};
69
70struct lowpan_dev_record {
71 struct net_device *ldev;
72 struct list_head list;
73};
74
f19f4f95
SV
75/* don't save pan id, it's intra pan */
76struct lowpan_addr {
77 u8 mode;
78 union {
79 /* IPv6 needs big endian here */
80 __be64 extended_addr;
81 __be16 short_addr;
82 } u;
83};
84
85struct lowpan_addr_info {
86 struct lowpan_addr daddr;
87 struct lowpan_addr saddr;
88};
89
44331fe2
AS
90static inline struct
91lowpan_dev_info *lowpan_dev_info(const struct net_device *dev)
92{
93 return netdev_priv(dev);
94}
95
f19f4f95
SV
96static inline struct
97lowpan_addr_info *lowpan_skb_priv(const struct sk_buff *skb)
98{
99 WARN_ON_ONCE(skb_headroom(skb) < sizeof(struct lowpan_addr_info));
100 return (struct lowpan_addr_info *)(skb->data -
101 sizeof(struct lowpan_addr_info));
102}
103
4710d806
VB
104static int lowpan_header_create(struct sk_buff *skb, struct net_device *dev,
105 unsigned short type, const void *_daddr,
106 const void *_saddr, unsigned int len)
44331fe2 107{
44331fe2
AS
108 const u8 *saddr = _saddr;
109 const u8 *daddr = _daddr;
f19f4f95 110 struct lowpan_addr_info *info;
44331fe2 111
fc4e98db
AA
112 /* TODO:
113 * if this package isn't ipv6 one, where should it be routed?
114 */
44331fe2
AS
115 if (type != ETH_P_IPV6)
116 return 0;
44331fe2 117
44331fe2
AS
118 if (!saddr)
119 saddr = dev->dev_addr;
120
841a5ec7
AA
121 raw_dump_inline(__func__, "saddr", (unsigned char *)saddr, 8);
122 raw_dump_inline(__func__, "daddr", (unsigned char *)daddr, 8);
44331fe2 123
f19f4f95 124 info = lowpan_skb_priv(skb);
8df8c56a 125
f19f4f95
SV
126 /* TODO: Currently we only support extended_addr */
127 info->daddr.mode = IEEE802154_ADDR_LONG;
128 memcpy(&info->daddr.u.extended_addr, daddr,
129 sizeof(info->daddr.u.extended_addr));
130 info->saddr.mode = IEEE802154_ADDR_LONG;
131 memcpy(&info->saddr.u.extended_addr, saddr,
132 sizeof(info->daddr.u.extended_addr));
32edc40a 133
f19f4f95 134 return 0;
44331fe2
AS
135}
136
8df8c56a 137static int lowpan_give_skb_to_devices(struct sk_buff *skb,
4710d806 138 struct net_device *dev)
0c446212
AO
139{
140 struct lowpan_dev_record *entry;
141 struct sk_buff *skb_cp;
142 int stat = NET_RX_SUCCESS;
143
144 rcu_read_lock();
145 list_for_each_entry_rcu(entry, &lowpan_devices, list)
146 if (lowpan_dev_info(entry->ldev)->real_dev == skb->dev) {
147 skb_cp = skb_copy(skb, GFP_ATOMIC);
148 if (!skb_cp) {
149 stat = -ENOMEM;
150 break;
151 }
152
153 skb_cp->dev = entry->ldev;
154 stat = netif_rx(skb_cp);
155 }
156 rcu_read_unlock();
157
158 return stat;
159}
160
ae531b94 161static int process_data(struct sk_buff *skb, const struct ieee802154_hdr *hdr)
44331fe2 162{
8df8c56a 163 u8 iphc0, iphc1;
ae531b94
PB
164 struct ieee802154_addr_sa sa, da;
165 void *sap, *dap;
44331fe2 166
841a5ec7 167 raw_dump_table(__func__, "raw skb data dump", skb->data, skb->len);
44331fe2
AS
168 /* at least two bytes will be used for the encoding */
169 if (skb->len < 2)
170 goto drop;
c5d3687f 171
172 if (lowpan_fetch_skb_u8(skb, &iphc0))
173 goto drop;
719269af 174
c5d3687f 175 if (lowpan_fetch_skb_u8(skb, &iphc1))
176 goto drop;
44331fe2 177
ae531b94
PB
178 ieee802154_addr_to_sa(&sa, &hdr->source);
179 ieee802154_addr_to_sa(&da, &hdr->dest);
44331fe2 180
ae531b94
PB
181 if (sa.addr_type == IEEE802154_ADDR_SHORT)
182 sap = &sa.short_addr;
183 else
184 sap = &sa.hwaddr;
185
186 if (da.addr_type == IEEE802154_ADDR_SHORT)
187 dap = &da.short_addr;
188 else
189 dap = &da.hwaddr;
190
191 return lowpan_process_data(skb, skb->dev, sap, sa.addr_type,
192 IEEE802154_ADDR_LEN, dap, da.addr_type,
193 IEEE802154_ADDR_LEN, iphc0, iphc1,
194 lowpan_give_skb_to_devices);
719269af 195
44331fe2 196drop:
90d0963d 197 kfree_skb(skb);
44331fe2
AS
198 return -EINVAL;
199}
200
42c36295 201static int lowpan_set_address(struct net_device *dev, void *p)
202{
203 struct sockaddr *sa = p;
204
205 if (netif_running(dev))
206 return -EBUSY;
207
208 /* TODO: validate addr */
209 memcpy(dev->dev_addr, sa->sa_data, dev->addr_len);
210
211 return 0;
212}
213
d4b2816d
PB
214static struct sk_buff*
215lowpan_alloc_frag(struct sk_buff *skb, int size,
216 const struct ieee802154_hdr *master_hdr)
719269af 217{
d4b2816d 218 struct net_device *real_dev = lowpan_dev_info(skb->dev)->real_dev;
719269af 219 struct sk_buff *frag;
d4b2816d
PB
220 int rc;
221
222 frag = alloc_skb(real_dev->hard_header_len +
223 real_dev->needed_tailroom + size,
224 GFP_ATOMIC);
225
226 if (likely(frag)) {
227 frag->dev = real_dev;
228 frag->priority = skb->priority;
229 skb_reserve(frag, real_dev->hard_header_len);
230 skb_reset_network_header(frag);
231 *mac_cb(frag) = *mac_cb(skb);
232
233 rc = dev_hard_header(frag, real_dev, 0, &master_hdr->dest,
234 &master_hdr->source, size);
235 if (rc < 0) {
236 kfree_skb(frag);
c0bffc7d 237 return ERR_PTR(rc);
d4b2816d
PB
238 }
239 } else {
c4cb901a 240 frag = ERR_PTR(-ENOMEM);
d4b2816d 241 }
719269af 242
d4b2816d
PB
243 return frag;
244}
719269af 245
d4b2816d
PB
246static int
247lowpan_xmit_fragment(struct sk_buff *skb, const struct ieee802154_hdr *wpan_hdr,
248 u8 *frag_hdr, int frag_hdrlen,
249 int offset, int len)
250{
251 struct sk_buff *frag;
719269af 252
d4b2816d 253 raw_dump_inline(__func__, " fragment header", frag_hdr, frag_hdrlen);
719269af 254
d4b2816d
PB
255 frag = lowpan_alloc_frag(skb, frag_hdrlen + len, wpan_hdr);
256 if (IS_ERR(frag))
257 return -PTR_ERR(frag);
3582b900 258
d4b2816d
PB
259 memcpy(skb_put(frag, frag_hdrlen), frag_hdr, frag_hdrlen);
260 memcpy(skb_put(frag, len), skb_network_header(skb) + offset, len);
719269af 261
d4b2816d 262 raw_dump_table(__func__, " fragment dump", frag->data, frag->len);
719269af 263
545f3613 264 return dev_queue_xmit(frag);
719269af 265}
266
267static int
d4b2816d
PB
268lowpan_xmit_fragmented(struct sk_buff *skb, struct net_device *dev,
269 const struct ieee802154_hdr *wpan_hdr)
719269af 270{
d4b2816d
PB
271 u16 dgram_size, dgram_offset;
272 __be16 frag_tag;
273 u8 frag_hdr[5];
274 int frag_cap, frag_len, payload_cap, rc;
275 int skb_unprocessed, skb_offset;
276
96cb3eb7 277 dgram_size = lowpan_uncompress_size(skb, &dgram_offset) -
d4b2816d 278 skb->mac_len;
cd97a713
AA
279 frag_tag = htons(lowpan_dev_info(dev)->fragment_tag);
280 lowpan_dev_info(dev)->fragment_tag++;
719269af 281
d4b2816d
PB
282 frag_hdr[0] = LOWPAN_DISPATCH_FRAG1 | ((dgram_size >> 8) & 0x07);
283 frag_hdr[1] = dgram_size & 0xff;
284 memcpy(frag_hdr + 2, &frag_tag, sizeof(frag_tag));
719269af 285
d4b2816d 286 payload_cap = ieee802154_max_payload(wpan_hdr);
d991b98f 287
d4b2816d
PB
288 frag_len = round_down(payload_cap - LOWPAN_FRAG1_HEAD_SIZE -
289 skb_network_header_len(skb), 8);
719269af 290
d4b2816d
PB
291 skb_offset = skb_network_header_len(skb);
292 skb_unprocessed = skb->len - skb->mac_len - skb_offset;
719269af 293
d4b2816d
PB
294 rc = lowpan_xmit_fragment(skb, wpan_hdr, frag_hdr,
295 LOWPAN_FRAG1_HEAD_SIZE, 0,
296 frag_len + skb_network_header_len(skb));
297 if (rc) {
298 pr_debug("%s unable to send FRAG1 packet (tag: %d)",
cd97a713 299 __func__, ntohs(frag_tag));
d4b2816d
PB
300 goto err;
301 }
96cb3eb7 302
d4b2816d
PB
303 frag_hdr[0] &= ~LOWPAN_DISPATCH_FRAG1;
304 frag_hdr[0] |= LOWPAN_DISPATCH_FRAGN;
305 frag_cap = round_down(payload_cap - LOWPAN_FRAGN_HEAD_SIZE, 8);
719269af 306
51263fff 307 do {
d4b2816d
PB
308 dgram_offset += frag_len;
309 skb_offset += frag_len;
310 skb_unprocessed -= frag_len;
311 frag_len = min(frag_cap, skb_unprocessed);
719269af 312
d4b2816d 313 frag_hdr[4] = dgram_offset >> 3;
719269af 314
d4b2816d
PB
315 rc = lowpan_xmit_fragment(skb, wpan_hdr, frag_hdr,
316 LOWPAN_FRAGN_HEAD_SIZE, skb_offset,
317 frag_len);
318 if (rc) {
d57fec84 319 pr_debug("%s unable to send a FRAGN packet. (tag: %d, offset: %d)\n",
cd97a713 320 __func__, ntohs(frag_tag), skb_offset);
d4b2816d 321 goto err;
9da2924c 322 }
eb06481d 323 } while (skb_unprocessed > frag_cap);
719269af 324
d4b2816d
PB
325 consume_skb(skb);
326 return NET_XMIT_SUCCESS;
327
328err:
329 kfree_skb(skb);
330 return rc;
719269af 331}
332
f19f4f95
SV
333static int lowpan_header(struct sk_buff *skb, struct net_device *dev)
334{
335 struct ieee802154_addr sa, da;
336 struct ieee802154_mac_cb *cb = mac_cb_init(skb);
337 struct lowpan_addr_info info;
338 void *daddr, *saddr;
339
340 memcpy(&info, lowpan_skb_priv(skb), sizeof(info));
341
342 /* TODO: Currently we only support extended_addr */
343 daddr = &info.daddr.u.extended_addr;
344 saddr = &info.saddr.u.extended_addr;
345
346 lowpan_header_compress(skb, dev, ETH_P_IPV6, daddr, saddr, skb->len);
347
348 cb->type = IEEE802154_FC_TYPE_DATA;
349
350 /* prepare wpan address data */
351 sa.mode = IEEE802154_ADDR_LONG;
352 sa.pan_id = ieee802154_mlme_ops(dev)->get_pan_id(dev);
353 sa.extended_addr = ieee802154_devaddr_from_raw(saddr);
354
355 /* intra-PAN communications */
356 da.pan_id = sa.pan_id;
357
358 /* if the destination address is the broadcast address, use the
359 * corresponding short address
360 */
361 if (lowpan_is_addr_broadcast((const u8 *)daddr)) {
362 da.mode = IEEE802154_ADDR_SHORT;
363 da.short_addr = cpu_to_le16(IEEE802154_ADDR_BROADCAST);
364 cb->ackreq = false;
365 } else {
366 da.mode = IEEE802154_ADDR_LONG;
367 da.extended_addr = ieee802154_devaddr_from_raw(daddr);
368 cb->ackreq = true;
369 }
370
371 return dev_hard_header(skb, lowpan_dev_info(dev)->real_dev,
372 ETH_P_IPV6, (void *)&da, (void *)&sa, 0);
373}
374
44331fe2
AS
375static netdev_tx_t lowpan_xmit(struct sk_buff *skb, struct net_device *dev)
376{
d4b2816d 377 struct ieee802154_hdr wpan_hdr;
f19f4f95 378 int max_single, ret;
44331fe2 379
e71094f9 380 pr_debug("package xmit\n");
44331fe2 381
f19f4f95
SV
382 /* We must take a copy of the skb before we modify/replace the ipv6
383 * header as the header could be used elsewhere
384 */
385 skb = skb_unshare(skb, GFP_ATOMIC);
386 if (!skb)
387 return NET_XMIT_DROP;
388
389 ret = lowpan_header(skb, dev);
390 if (ret < 0) {
391 kfree_skb(skb);
392 return NET_XMIT_DROP;
393 }
394
d4b2816d
PB
395 if (ieee802154_hdr_peek(skb, &wpan_hdr) < 0) {
396 kfree_skb(skb);
397 return NET_XMIT_DROP;
719269af 398 }
399
d4b2816d 400 max_single = ieee802154_max_payload(&wpan_hdr);
719269af 401
d4b2816d
PB
402 if (skb_tail_pointer(skb) - skb_network_header(skb) <= max_single) {
403 skb->dev = lowpan_dev_info(dev)->real_dev;
404 return dev_queue_xmit(skb);
405 } else {
406 netdev_tx_t rc;
44331fe2 407
d4b2816d
PB
408 pr_debug("frame is too big, fragmentation is needed\n");
409 rc = lowpan_xmit_fragmented(skb, dev, &wpan_hdr);
410
411 return rc < 0 ? NET_XMIT_DROP : rc;
412 }
44331fe2
AS
413}
414
0848e404 415static struct wpan_phy *lowpan_get_phy(const struct net_device *dev)
416{
417 struct net_device *real_dev = lowpan_dev_info(dev)->real_dev;
4710d806 418
0848e404 419 return ieee802154_mlme_ops(real_dev)->get_phy(real_dev);
420}
421
b70ab2e8 422static __le16 lowpan_get_pan_id(const struct net_device *dev)
0848e404 423{
424 struct net_device *real_dev = lowpan_dev_info(dev)->real_dev;
4710d806 425
0848e404 426 return ieee802154_mlme_ops(real_dev)->get_pan_id(real_dev);
427}
428
b70ab2e8 429static __le16 lowpan_get_short_addr(const struct net_device *dev)
0848e404 430{
431 struct net_device *real_dev = lowpan_dev_info(dev)->real_dev;
4710d806 432
0848e404 433 return ieee802154_mlme_ops(real_dev)->get_short_addr(real_dev);
434}
435
c7d0ab28
TC
436static u8 lowpan_get_dsn(const struct net_device *dev)
437{
438 struct net_device *real_dev = lowpan_dev_info(dev)->real_dev;
4710d806 439
c7d0ab28
TC
440 return ieee802154_mlme_ops(real_dev)->get_dsn(real_dev);
441}
442
44331fe2
AS
443static struct header_ops lowpan_header_ops = {
444 .create = lowpan_header_create,
445};
446
20e7c4e8
ED
447static struct lock_class_key lowpan_tx_busylock;
448static struct lock_class_key lowpan_netdev_xmit_lock_key;
449
450static void lowpan_set_lockdep_class_one(struct net_device *dev,
451 struct netdev_queue *txq,
452 void *_unused)
453{
454 lockdep_set_class(&txq->_xmit_lock,
455 &lowpan_netdev_xmit_lock_key);
456}
457
458
459static int lowpan_dev_init(struct net_device *dev)
460{
461 netdev_for_each_tx_queue(dev, lowpan_set_lockdep_class_one, NULL);
462 dev->qdisc_tx_busylock = &lowpan_tx_busylock;
463 return 0;
464}
465
44331fe2 466static const struct net_device_ops lowpan_netdev_ops = {
20e7c4e8 467 .ndo_init = lowpan_dev_init,
44331fe2 468 .ndo_start_xmit = lowpan_xmit,
42c36295 469 .ndo_set_mac_address = lowpan_set_address,
44331fe2
AS
470};
471
0848e404 472static struct ieee802154_mlme_ops lowpan_mlme = {
473 .get_pan_id = lowpan_get_pan_id,
474 .get_phy = lowpan_get_phy,
475 .get_short_addr = lowpan_get_short_addr,
c7d0ab28 476 .get_dsn = lowpan_get_dsn,
0848e404 477};
478
44331fe2
AS
479static void lowpan_setup(struct net_device *dev)
480{
44331fe2
AS
481 dev->addr_len = IEEE802154_ADDR_LEN;
482 memset(dev->broadcast, 0xff, IEEE802154_ADDR_LEN);
483 dev->type = ARPHRD_IEEE802154;
44331fe2
AS
484 /* Frame Control + Sequence Number + Address fields + Security Header */
485 dev->hard_header_len = 2 + 1 + 20 + 14;
486 dev->needed_tailroom = 2; /* FCS */
685d6328 487 dev->mtu = IPV6_MIN_MTU;
44331fe2 488 dev->tx_queue_len = 0;
4d039f68 489 dev->flags = IFF_BROADCAST | IFF_MULTICAST;
44331fe2
AS
490 dev->watchdog_timeo = 0;
491
492 dev->netdev_ops = &lowpan_netdev_ops;
493 dev->header_ops = &lowpan_header_ops;
0848e404 494 dev->ml_priv = &lowpan_mlme;
a2dc375e 495 dev->destructor = free_netdev;
44331fe2
AS
496}
497
498static int lowpan_validate(struct nlattr *tb[], struct nlattr *data[])
499{
44331fe2
AS
500 if (tb[IFLA_ADDRESS]) {
501 if (nla_len(tb[IFLA_ADDRESS]) != IEEE802154_ADDR_LEN)
502 return -EINVAL;
503 }
504 return 0;
505}
506
507static int lowpan_rcv(struct sk_buff *skb, struct net_device *dev,
4710d806 508 struct packet_type *pt, struct net_device *orig_dev)
44331fe2 509{
ae531b94 510 struct ieee802154_hdr hdr;
7240cdec 511 int ret;
a437d274 512
8cfad496
PB
513 skb = skb_share_check(skb, GFP_ATOMIC);
514 if (!skb)
515 goto drop;
516
44331fe2 517 if (!netif_running(dev))
7240cdec 518 goto drop_skb;
44331fe2 519
39f6eb19
SV
520 if (skb->pkt_type == PACKET_OTHERHOST)
521 goto drop_skb;
522
44331fe2 523 if (dev->type != ARPHRD_IEEE802154)
7240cdec
AA
524 goto drop_skb;
525
ae531b94
PB
526 if (ieee802154_hdr_peek_addrs(skb, &hdr) < 0)
527 goto drop_skb;
528
44331fe2 529 /* check that it's our buffer */
ee21c7e0 530 if (skb->data[0] == LOWPAN_DISPATCH_IPV6) {
8cfad496
PB
531 skb->protocol = htons(ETH_P_IPV6);
532 skb->pkt_type = PACKET_HOST;
ee21c7e0
AO
533
534 /* Pull off the 1-byte of 6lowpan header. */
8cfad496 535 skb_pull(skb, 1);
ee21c7e0 536
8cfad496 537 ret = lowpan_give_skb_to_devices(skb, NULL);
7240cdec
AA
538 if (ret == NET_RX_DROP)
539 goto drop;
ee21c7e0
AO
540 } else {
541 switch (skb->data[0] & 0xe0) {
542 case LOWPAN_DISPATCH_IPHC: /* ipv6 datagram */
8cfad496 543 ret = process_data(skb, &hdr);
7240cdec
AA
544 if (ret == NET_RX_DROP)
545 goto drop;
546 break;
ee21c7e0 547 case LOWPAN_DISPATCH_FRAG1: /* first fragment header */
8cfad496 548 ret = lowpan_frag_rcv(skb, LOWPAN_DISPATCH_FRAG1);
7240cdec 549 if (ret == 1) {
8cfad496 550 ret = process_data(skb, &hdr);
7240cdec
AA
551 if (ret == NET_RX_DROP)
552 goto drop;
553 }
554 break;
ee21c7e0 555 case LOWPAN_DISPATCH_FRAGN: /* next fragments headers */
8cfad496 556 ret = lowpan_frag_rcv(skb, LOWPAN_DISPATCH_FRAGN);
7240cdec 557 if (ret == 1) {
8cfad496 558 ret = process_data(skb, &hdr);
7240cdec
AA
559 if (ret == NET_RX_DROP)
560 goto drop;
561 }
ee21c7e0
AO
562 break;
563 default:
564 break;
565 }
719269af 566 }
44331fe2
AS
567
568 return NET_RX_SUCCESS;
7240cdec 569drop_skb:
44331fe2 570 kfree_skb(skb);
7240cdec 571drop:
44331fe2
AS
572 return NET_RX_DROP;
573}
574
1ae2605e
AA
575static struct packet_type lowpan_packet_type = {
576 .type = htons(ETH_P_IEEE802154),
577 .func = lowpan_rcv,
578};
579
44331fe2
AS
580static int lowpan_newlink(struct net *src_net, struct net_device *dev,
581 struct nlattr *tb[], struct nlattr *data[])
582{
583 struct net_device *real_dev;
584 struct lowpan_dev_record *entry;
1ae2605e 585 int ret;
44331fe2 586
c37a8106
AA
587 ASSERT_RTNL();
588
e71094f9 589 pr_debug("adding new link\n");
44331fe2
AS
590
591 if (!tb[IFLA_LINK])
592 return -EINVAL;
593 /* find and hold real wpan device */
594 real_dev = dev_get_by_index(src_net, nla_get_u32(tb[IFLA_LINK]));
595 if (!real_dev)
596 return -ENODEV;
78032f9b
DC
597 if (real_dev->type != ARPHRD_IEEE802154) {
598 dev_put(real_dev);
7adac1ec 599 return -EINVAL;
78032f9b 600 }
44331fe2
AS
601
602 lowpan_dev_info(dev)->real_dev = real_dev;
603 mutex_init(&lowpan_dev_info(dev)->dev_list_mtx);
604
d57fec84 605 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
dc00fd44
DC
606 if (!entry) {
607 dev_put(real_dev);
608 lowpan_dev_info(dev)->real_dev = NULL;
44331fe2 609 return -ENOMEM;
dc00fd44 610 }
44331fe2
AS
611
612 entry->ldev = dev;
613
ab2d95df
AO
614 /* Set the lowpan harware address to the wpan hardware address. */
615 memcpy(dev->dev_addr, real_dev->dev_addr, IEEE802154_ADDR_LEN);
616
44331fe2
AS
617 mutex_lock(&lowpan_dev_info(dev)->dev_list_mtx);
618 INIT_LIST_HEAD(&entry->list);
619 list_add_tail(&entry->list, &lowpan_devices);
620 mutex_unlock(&lowpan_dev_info(dev)->dev_list_mtx);
621
1ae2605e
AA
622 ret = register_netdevice(dev);
623 if (ret >= 0) {
624 if (!lowpan_open_count)
625 dev_add_pack(&lowpan_packet_type);
626 lowpan_open_count++;
627 }
44331fe2 628
1ae2605e 629 return ret;
44331fe2
AS
630}
631
632static void lowpan_dellink(struct net_device *dev, struct list_head *head)
633{
634 struct lowpan_dev_info *lowpan_dev = lowpan_dev_info(dev);
635 struct net_device *real_dev = lowpan_dev->real_dev;
8deff4af 636 struct lowpan_dev_record *entry, *tmp;
44331fe2
AS
637
638 ASSERT_RTNL();
639
1ae2605e
AA
640 lowpan_open_count--;
641 if (!lowpan_open_count)
642 dev_remove_pack(&lowpan_packet_type);
643
44331fe2 644 mutex_lock(&lowpan_dev_info(dev)->dev_list_mtx);
aec9db35 645 list_for_each_entry_safe(entry, tmp, &lowpan_devices, list) {
44331fe2
AS
646 if (entry->ldev == dev) {
647 list_del(&entry->list);
648 kfree(entry);
649 }
aec9db35 650 }
44331fe2
AS
651 mutex_unlock(&lowpan_dev_info(dev)->dev_list_mtx);
652
653 mutex_destroy(&lowpan_dev_info(dev)->dev_list_mtx);
654
655 unregister_netdevice_queue(dev, head);
656
657 dev_put(real_dev);
658}
659
660static struct rtnl_link_ops lowpan_link_ops __read_mostly = {
661 .kind = "lowpan",
662 .priv_size = sizeof(struct lowpan_dev_info),
663 .setup = lowpan_setup,
664 .newlink = lowpan_newlink,
665 .dellink = lowpan_dellink,
666 .validate = lowpan_validate,
667};
668
669static inline int __init lowpan_netlink_init(void)
670{
671 return rtnl_link_register(&lowpan_link_ops);
672}
673
a07fdcec 674static inline void lowpan_netlink_fini(void)
44331fe2
AS
675{
676 rtnl_link_unregister(&lowpan_link_ops);
677}
678
a2dc375e 679static int lowpan_device_event(struct notifier_block *unused,
351638e7 680 unsigned long event, void *ptr)
a2dc375e 681{
351638e7 682 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
a2dc375e
AO
683 LIST_HEAD(del_list);
684 struct lowpan_dev_record *entry, *tmp;
685
686 if (dev->type != ARPHRD_IEEE802154)
687 goto out;
688
689 if (event == NETDEV_UNREGISTER) {
690 list_for_each_entry_safe(entry, tmp, &lowpan_devices, list) {
691 if (lowpan_dev_info(entry->ldev)->real_dev == dev)
692 lowpan_dellink(entry->ldev, &del_list);
693 }
694
695 unregister_netdevice_many(&del_list);
4c835019 696 }
a2dc375e
AO
697
698out:
699 return NOTIFY_DONE;
700}
701
702static struct notifier_block lowpan_dev_notifier = {
703 .notifier_call = lowpan_device_event,
704};
705
44331fe2
AS
706static int __init lowpan_init_module(void)
707{
708 int err = 0;
709
7240cdec 710 err = lowpan_net_frag_init();
44331fe2
AS
711 if (err < 0)
712 goto out;
713
7240cdec
AA
714 err = lowpan_netlink_init();
715 if (err < 0)
716 goto out_frag;
717
a2dc375e 718 err = register_netdevice_notifier(&lowpan_dev_notifier);
7240cdec
AA
719 if (err < 0)
720 goto out_pack;
721
722 return 0;
723
724out_pack:
7240cdec
AA
725 lowpan_netlink_fini();
726out_frag:
727 lowpan_net_frag_exit();
44331fe2
AS
728out:
729 return err;
730}
731
732static void __exit lowpan_cleanup_module(void)
733{
44331fe2
AS
734 lowpan_netlink_fini();
735
7240cdec 736 lowpan_net_frag_exit();
a2dc375e 737
7240cdec 738 unregister_netdevice_notifier(&lowpan_dev_notifier);
44331fe2
AS
739}
740
741module_init(lowpan_init_module);
742module_exit(lowpan_cleanup_module);
743MODULE_LICENSE("GPL");
744MODULE_ALIAS_RTNL_LINK("lowpan");
This page took 0.484039 seconds and 5 git commands to generate.