Alexander Aring | d57fec8 | 2014-02-28 07:32:48 +0100 | [diff] [blame] | 1 | /* Copyright 2011, Siemens AG |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 2 | * written by Alexander Smirnov <alex.bluesman.smirnov@gmail.com> |
| 3 | */ |
| 4 | |
Alexander Aring | d57fec8 | 2014-02-28 07:32:48 +0100 | [diff] [blame] | 5 | /* Based on patches from Jon Smirl <jonsmirl@gmail.com> |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 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. |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 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 | |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 47 | #include <linux/module.h> |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 48 | #include <linux/netdevice.h> |
Alexander Aring | 4ca24ac | 2014-10-25 09:41:04 +0200 | [diff] [blame] | 49 | #include <linux/ieee802154.h> |
Alexander Aring | 4dc315e | 2015-01-04 17:10:56 +0100 | [diff] [blame] | 50 | |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 51 | #include <net/ipv6.h> |
| 52 | |
Alexander Aring | 8691ee5 | 2015-01-04 17:10:54 +0100 | [diff] [blame] | 53 | #include "6lowpan_i.h" |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 54 | |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 55 | static struct header_ops lowpan_header_ops = { |
| 56 | .create = lowpan_header_create, |
| 57 | }; |
| 58 | |
Eric Dumazet | 20e7c4e8 | 2014-02-10 11:42:35 -0800 | [diff] [blame] | 59 | static struct lock_class_key lowpan_tx_busylock; |
| 60 | static struct lock_class_key lowpan_netdev_xmit_lock_key; |
| 61 | |
| 62 | static void lowpan_set_lockdep_class_one(struct net_device *dev, |
| 63 | struct netdev_queue *txq, |
| 64 | void *_unused) |
| 65 | { |
| 66 | lockdep_set_class(&txq->_xmit_lock, |
| 67 | &lowpan_netdev_xmit_lock_key); |
| 68 | } |
| 69 | |
Eric Dumazet | 20e7c4e8 | 2014-02-10 11:42:35 -0800 | [diff] [blame] | 70 | static int lowpan_dev_init(struct net_device *dev) |
| 71 | { |
| 72 | netdev_for_each_tx_queue(dev, lowpan_set_lockdep_class_one, NULL); |
| 73 | dev->qdisc_tx_busylock = &lowpan_tx_busylock; |
| 74 | return 0; |
| 75 | } |
| 76 | |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 77 | static const struct net_device_ops lowpan_netdev_ops = { |
Eric Dumazet | 20e7c4e8 | 2014-02-10 11:42:35 -0800 | [diff] [blame] | 78 | .ndo_init = lowpan_dev_init, |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 79 | .ndo_start_xmit = lowpan_xmit, |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 80 | }; |
| 81 | |
| 82 | static void lowpan_setup(struct net_device *dev) |
| 83 | { |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 84 | dev->addr_len = IEEE802154_ADDR_LEN; |
| 85 | memset(dev->broadcast, 0xff, IEEE802154_ADDR_LEN); |
Alexander Aring | 965e613 | 2015-03-02 15:10:03 +0100 | [diff] [blame] | 86 | dev->type = ARPHRD_6LOWPAN; |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 87 | /* Frame Control + Sequence Number + Address fields + Security Header */ |
| 88 | dev->hard_header_len = 2 + 1 + 20 + 14; |
| 89 | dev->needed_tailroom = 2; /* FCS */ |
Alexander Aring | 685d632 | 2014-08-19 19:03:31 +0200 | [diff] [blame] | 90 | dev->mtu = IPV6_MIN_MTU; |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 91 | dev->tx_queue_len = 0; |
alex.bluesman.smirnov@gmail.com | 4d039f6 | 2011-11-10 07:39:37 +0000 | [diff] [blame] | 92 | dev->flags = IFF_BROADCAST | IFF_MULTICAST; |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 93 | dev->watchdog_timeo = 0; |
| 94 | |
| 95 | dev->netdev_ops = &lowpan_netdev_ops; |
| 96 | dev->header_ops = &lowpan_header_ops; |
Alan Ott | a2dc375e | 2012-09-01 05:57:07 +0000 | [diff] [blame] | 97 | dev->destructor = free_netdev; |
Nicolas Dichtel | f9d1ce8 | 2015-02-05 18:21:30 +0100 | [diff] [blame] | 98 | dev->features |= NETIF_F_NETNS_LOCAL; |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | static int lowpan_validate(struct nlattr *tb[], struct nlattr *data[]) |
| 102 | { |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 103 | if (tb[IFLA_ADDRESS]) { |
| 104 | if (nla_len(tb[IFLA_ADDRESS]) != IEEE802154_ADDR_LEN) |
| 105 | return -EINVAL; |
| 106 | } |
| 107 | return 0; |
| 108 | } |
| 109 | |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 110 | static int lowpan_newlink(struct net *src_net, struct net_device *dev, |
| 111 | struct nlattr *tb[], struct nlattr *data[]) |
| 112 | { |
| 113 | struct net_device *real_dev; |
Alexander Aring | 1ae2605 | 2014-10-13 10:33:06 +0200 | [diff] [blame] | 114 | int ret; |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 115 | |
Alexander Aring | c37a810 | 2014-10-13 10:33:07 +0200 | [diff] [blame] | 116 | ASSERT_RTNL(); |
| 117 | |
alex.bluesman.smirnov@gmail.com | e71094f | 2012-06-25 03:49:03 +0000 | [diff] [blame] | 118 | pr_debug("adding new link\n"); |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 119 | |
Nicolas Dichtel | f9d1ce8 | 2015-02-05 18:21:30 +0100 | [diff] [blame] | 120 | if (!tb[IFLA_LINK] || |
| 121 | !net_eq(dev_net(dev), &init_net)) |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 122 | return -EINVAL; |
| 123 | /* find and hold real wpan device */ |
Nicolas Dichtel | f9d1ce8 | 2015-02-05 18:21:30 +0100 | [diff] [blame] | 124 | real_dev = dev_get_by_index(dev_net(dev), nla_get_u32(tb[IFLA_LINK])); |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 125 | if (!real_dev) |
| 126 | return -ENODEV; |
Dan Carpenter | 78032f9 | 2013-11-07 10:44:45 +0300 | [diff] [blame] | 127 | if (real_dev->type != ARPHRD_IEEE802154) { |
| 128 | dev_put(real_dev); |
Alan Ott | 7adac1e | 2013-10-05 23:15:18 -0400 | [diff] [blame] | 129 | return -EINVAL; |
Dan Carpenter | 78032f9 | 2013-11-07 10:44:45 +0300 | [diff] [blame] | 130 | } |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 131 | |
Alexander Aring | 51e0e5d | 2015-08-10 21:15:53 +0200 | [diff] [blame^] | 132 | if (real_dev->ieee802154_ptr->lowpan_dev) { |
Dan Carpenter | dc00fd4 | 2011-08-30 03:51:09 +0000 | [diff] [blame] | 133 | dev_put(real_dev); |
Alexander Aring | 51e0e5d | 2015-08-10 21:15:53 +0200 | [diff] [blame^] | 134 | return -EBUSY; |
Dan Carpenter | dc00fd4 | 2011-08-30 03:51:09 +0000 | [diff] [blame] | 135 | } |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 136 | |
Alexander Aring | 51e0e5d | 2015-08-10 21:15:53 +0200 | [diff] [blame^] | 137 | lowpan_dev_info(dev)->real_dev = real_dev; |
Varka Bhadram | 69bb631 | 2014-11-25 10:04:57 +0530 | [diff] [blame] | 138 | /* Set the lowpan hardware address to the wpan hardware address. */ |
Alan Ott | ab2d95d | 2013-10-05 23:15:19 -0400 | [diff] [blame] | 139 | memcpy(dev->dev_addr, real_dev->dev_addr, IEEE802154_ADDR_LEN); |
| 140 | |
Alexander Aring | 1ae2605 | 2014-10-13 10:33:06 +0200 | [diff] [blame] | 141 | ret = register_netdevice(dev); |
| 142 | if (ret >= 0) { |
Alexander Aring | 51e0e5d | 2015-08-10 21:15:53 +0200 | [diff] [blame^] | 143 | real_dev->ieee802154_ptr->lowpan_dev = dev; |
| 144 | lowpan_rx_init(); |
Alexander Aring | 1ae2605 | 2014-10-13 10:33:06 +0200 | [diff] [blame] | 145 | } |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 146 | |
Alexander Aring | 1ae2605 | 2014-10-13 10:33:06 +0200 | [diff] [blame] | 147 | return ret; |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 148 | } |
| 149 | |
| 150 | static void lowpan_dellink(struct net_device *dev, struct list_head *head) |
| 151 | { |
| 152 | struct lowpan_dev_info *lowpan_dev = lowpan_dev_info(dev); |
| 153 | struct net_device *real_dev = lowpan_dev->real_dev; |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 154 | |
| 155 | ASSERT_RTNL(); |
| 156 | |
Alexander Aring | 51e0e5d | 2015-08-10 21:15:53 +0200 | [diff] [blame^] | 157 | lowpan_rx_exit(); |
| 158 | real_dev->ieee802154_ptr->lowpan_dev = NULL; |
| 159 | unregister_netdevice(dev); |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 160 | dev_put(real_dev); |
| 161 | } |
| 162 | |
| 163 | static struct rtnl_link_ops lowpan_link_ops __read_mostly = { |
| 164 | .kind = "lowpan", |
| 165 | .priv_size = sizeof(struct lowpan_dev_info), |
| 166 | .setup = lowpan_setup, |
| 167 | .newlink = lowpan_newlink, |
| 168 | .dellink = lowpan_dellink, |
| 169 | .validate = lowpan_validate, |
| 170 | }; |
| 171 | |
| 172 | static inline int __init lowpan_netlink_init(void) |
| 173 | { |
| 174 | return rtnl_link_register(&lowpan_link_ops); |
| 175 | } |
| 176 | |
David S. Miller | a07fdce | 2013-02-06 15:54:38 -0500 | [diff] [blame] | 177 | static inline void lowpan_netlink_fini(void) |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 178 | { |
| 179 | rtnl_link_unregister(&lowpan_link_ops); |
| 180 | } |
| 181 | |
Alan Ott | a2dc375e | 2012-09-01 05:57:07 +0000 | [diff] [blame] | 182 | static int lowpan_device_event(struct notifier_block *unused, |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 183 | unsigned long event, void *ptr) |
Alan Ott | a2dc375e | 2012-09-01 05:57:07 +0000 | [diff] [blame] | 184 | { |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 185 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); |
Alan Ott | a2dc375e | 2012-09-01 05:57:07 +0000 | [diff] [blame] | 186 | |
| 187 | if (dev->type != ARPHRD_IEEE802154) |
| 188 | goto out; |
| 189 | |
Alexander Aring | 51e0e5d | 2015-08-10 21:15:53 +0200 | [diff] [blame^] | 190 | switch (event) { |
| 191 | case NETDEV_UNREGISTER: |
| 192 | /* Check if wpan interface is unregistered that we |
| 193 | * also delete possible lowpan interfaces which belongs |
| 194 | * to the wpan interface. |
| 195 | */ |
| 196 | if (dev->ieee802154_ptr && dev->ieee802154_ptr->lowpan_dev) |
| 197 | lowpan_dellink(dev->ieee802154_ptr->lowpan_dev, NULL); |
| 198 | break; |
| 199 | default: |
| 200 | break; |
Peter Senna Tschudin | 4c83501 | 2012-09-18 07:10:43 +0000 | [diff] [blame] | 201 | } |
Alan Ott | a2dc375e | 2012-09-01 05:57:07 +0000 | [diff] [blame] | 202 | |
| 203 | out: |
| 204 | return NOTIFY_DONE; |
| 205 | } |
| 206 | |
| 207 | static struct notifier_block lowpan_dev_notifier = { |
| 208 | .notifier_call = lowpan_device_event, |
| 209 | }; |
| 210 | |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 211 | static int __init lowpan_init_module(void) |
| 212 | { |
| 213 | int err = 0; |
| 214 | |
Alexander Aring | 7240cde | 2014-02-28 07:32:50 +0100 | [diff] [blame] | 215 | err = lowpan_net_frag_init(); |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 216 | if (err < 0) |
| 217 | goto out; |
| 218 | |
Alexander Aring | 7240cde | 2014-02-28 07:32:50 +0100 | [diff] [blame] | 219 | err = lowpan_netlink_init(); |
| 220 | if (err < 0) |
| 221 | goto out_frag; |
| 222 | |
Alan Ott | a2dc375e | 2012-09-01 05:57:07 +0000 | [diff] [blame] | 223 | err = register_netdevice_notifier(&lowpan_dev_notifier); |
Alexander Aring | 7240cde | 2014-02-28 07:32:50 +0100 | [diff] [blame] | 224 | if (err < 0) |
| 225 | goto out_pack; |
| 226 | |
| 227 | return 0; |
| 228 | |
| 229 | out_pack: |
Alexander Aring | 7240cde | 2014-02-28 07:32:50 +0100 | [diff] [blame] | 230 | lowpan_netlink_fini(); |
| 231 | out_frag: |
| 232 | lowpan_net_frag_exit(); |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 233 | out: |
| 234 | return err; |
| 235 | } |
| 236 | |
| 237 | static void __exit lowpan_cleanup_module(void) |
| 238 | { |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 239 | lowpan_netlink_fini(); |
| 240 | |
Alexander Aring | 7240cde | 2014-02-28 07:32:50 +0100 | [diff] [blame] | 241 | lowpan_net_frag_exit(); |
Alan Ott | a2dc375e | 2012-09-01 05:57:07 +0000 | [diff] [blame] | 242 | |
Alexander Aring | 7240cde | 2014-02-28 07:32:50 +0100 | [diff] [blame] | 243 | unregister_netdevice_notifier(&lowpan_dev_notifier); |
Alexander Smirnov | 44331fe | 2011-08-24 19:34:42 -0700 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | module_init(lowpan_init_module); |
| 247 | module_exit(lowpan_cleanup_module); |
| 248 | MODULE_LICENSE("GPL"); |
| 249 | MODULE_ALIAS_RTNL_LINK("lowpan"); |