Alexander Aring | b72f6f5 | 2015-08-11 21:44:08 +0200 | [diff] [blame] | 1 | /* This program is free software; you can redistribute it and/or modify |
| 2 | * it under the terms of the GNU General Public License version 2 |
| 3 | * as published by the Free Software Foundation. |
| 4 | * |
| 5 | * This program is distributed in the hope that it will be useful, |
| 6 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 7 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 8 | * GNU General Public License for more details. |
| 9 | * |
| 10 | * Authors: |
| 11 | * (C) 2015 Pengutronix, Alexander Aring <aar@pengutronix.de> |
| 12 | */ |
| 13 | |
Alexander Aring | 4ae935c | 2015-08-11 21:44:09 +0200 | [diff] [blame] | 14 | #include <linux/module.h> |
| 15 | |
Alexander Aring | b72f6f5 | 2015-08-11 21:44:08 +0200 | [diff] [blame] | 16 | #include <net/6lowpan.h> |
| 17 | |
Alexander Aring | b1815fd | 2015-12-09 22:46:30 +0100 | [diff] [blame] | 18 | #include "6lowpan_i.h" |
| 19 | |
Alexander Aring | 00f5931 | 2015-12-09 22:46:29 +0100 | [diff] [blame] | 20 | int lowpan_register_netdevice(struct net_device *dev, |
| 21 | enum lowpan_lltypes lltype) |
Alexander Aring | b72f6f5 | 2015-08-11 21:44:08 +0200 | [diff] [blame] | 22 | { |
Alexander Aring | 5609c18 | 2016-02-22 09:13:54 +0100 | [diff] [blame] | 23 | int i, ret; |
Alexander Aring | b1815fd | 2015-12-09 22:46:30 +0100 | [diff] [blame] | 24 | |
Alexander Aring | 4d6a6ae | 2015-10-02 20:28:04 +0200 | [diff] [blame] | 25 | dev->addr_len = EUI64_ADDR_LEN; |
| 26 | dev->type = ARPHRD_6LOWPAN; |
| 27 | dev->mtu = IPV6_MIN_MTU; |
| 28 | dev->priv_flags |= IFF_NO_QUEUE; |
| 29 | |
Alexander Aring | 2e4d60c | 2016-04-11 11:04:18 +0200 | [diff] [blame] | 30 | lowpan_dev(dev)->lltype = lltype; |
Alexander Aring | 00f5931 | 2015-12-09 22:46:29 +0100 | [diff] [blame] | 31 | |
Alexander Aring | 2e4d60c | 2016-04-11 11:04:18 +0200 | [diff] [blame] | 32 | spin_lock_init(&lowpan_dev(dev)->ctx.lock); |
Alexander Aring | 5609c18 | 2016-02-22 09:13:54 +0100 | [diff] [blame] | 33 | for (i = 0; i < LOWPAN_IPHC_CTX_TABLE_SIZE; i++) |
Alexander Aring | 2e4d60c | 2016-04-11 11:04:18 +0200 | [diff] [blame] | 34 | lowpan_dev(dev)->ctx.table[i].id = i; |
Alexander Aring | 5609c18 | 2016-02-22 09:13:54 +0100 | [diff] [blame] | 35 | |
Alexander Aring | 92e17ee | 2015-12-15 12:25:35 +0100 | [diff] [blame] | 36 | ret = register_netdevice(dev); |
Alexander Aring | b1815fd | 2015-12-09 22:46:30 +0100 | [diff] [blame] | 37 | if (ret < 0) |
| 38 | return ret; |
| 39 | |
Alexander Aring | 92e17ee | 2015-12-15 12:25:35 +0100 | [diff] [blame] | 40 | ret = lowpan_dev_debugfs_init(dev); |
Alexander Aring | b1815fd | 2015-12-09 22:46:30 +0100 | [diff] [blame] | 41 | if (ret < 0) |
Alexander Aring | 92e17ee | 2015-12-15 12:25:35 +0100 | [diff] [blame] | 42 | unregister_netdevice(dev); |
Alexander Aring | b1815fd | 2015-12-09 22:46:30 +0100 | [diff] [blame] | 43 | |
| 44 | return ret; |
Alexander Aring | b72f6f5 | 2015-08-11 21:44:08 +0200 | [diff] [blame] | 45 | } |
Alexander Aring | 00f5931 | 2015-12-09 22:46:29 +0100 | [diff] [blame] | 46 | EXPORT_SYMBOL(lowpan_register_netdevice); |
| 47 | |
| 48 | int lowpan_register_netdev(struct net_device *dev, |
| 49 | enum lowpan_lltypes lltype) |
| 50 | { |
| 51 | int ret; |
| 52 | |
| 53 | rtnl_lock(); |
| 54 | ret = lowpan_register_netdevice(dev, lltype); |
| 55 | rtnl_unlock(); |
| 56 | return ret; |
| 57 | } |
| 58 | EXPORT_SYMBOL(lowpan_register_netdev); |
| 59 | |
| 60 | void lowpan_unregister_netdevice(struct net_device *dev) |
| 61 | { |
| 62 | unregister_netdevice(dev); |
Alexander Aring | b1815fd | 2015-12-09 22:46:30 +0100 | [diff] [blame] | 63 | lowpan_dev_debugfs_exit(dev); |
Alexander Aring | 00f5931 | 2015-12-09 22:46:29 +0100 | [diff] [blame] | 64 | } |
| 65 | EXPORT_SYMBOL(lowpan_unregister_netdevice); |
| 66 | |
| 67 | void lowpan_unregister_netdev(struct net_device *dev) |
| 68 | { |
| 69 | rtnl_lock(); |
| 70 | lowpan_unregister_netdevice(dev); |
| 71 | rtnl_unlock(); |
| 72 | } |
| 73 | EXPORT_SYMBOL(lowpan_unregister_netdev); |
Alexander Aring | 4ae935c | 2015-08-11 21:44:09 +0200 | [diff] [blame] | 74 | |
Alexander Aring | 5609c18 | 2016-02-22 09:13:54 +0100 | [diff] [blame] | 75 | static int lowpan_event(struct notifier_block *unused, |
| 76 | unsigned long event, void *ptr) |
| 77 | { |
| 78 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); |
| 79 | int i; |
| 80 | |
| 81 | if (dev->type != ARPHRD_6LOWPAN) |
| 82 | return NOTIFY_DONE; |
| 83 | |
| 84 | switch (event) { |
| 85 | case NETDEV_DOWN: |
| 86 | for (i = 0; i < LOWPAN_IPHC_CTX_TABLE_SIZE; i++) |
| 87 | clear_bit(LOWPAN_IPHC_CTX_FLAG_ACTIVE, |
Alexander Aring | 2e4d60c | 2016-04-11 11:04:18 +0200 | [diff] [blame] | 88 | &lowpan_dev(dev)->ctx.table[i].flags); |
Alexander Aring | 5609c18 | 2016-02-22 09:13:54 +0100 | [diff] [blame] | 89 | break; |
| 90 | default: |
| 91 | return NOTIFY_DONE; |
| 92 | } |
| 93 | |
| 94 | return NOTIFY_OK; |
| 95 | } |
| 96 | |
| 97 | static struct notifier_block lowpan_notifier = { |
| 98 | .notifier_call = lowpan_event, |
| 99 | }; |
| 100 | |
Alexander Aring | 4ae935c | 2015-08-11 21:44:09 +0200 | [diff] [blame] | 101 | static int __init lowpan_module_init(void) |
| 102 | { |
Alexander Aring | b1815fd | 2015-12-09 22:46:30 +0100 | [diff] [blame] | 103 | int ret; |
| 104 | |
| 105 | ret = lowpan_debugfs_init(); |
| 106 | if (ret < 0) |
| 107 | return ret; |
| 108 | |
Alexander Aring | 5609c18 | 2016-02-22 09:13:54 +0100 | [diff] [blame] | 109 | ret = register_netdevice_notifier(&lowpan_notifier); |
| 110 | if (ret < 0) { |
| 111 | lowpan_debugfs_exit(); |
| 112 | return ret; |
| 113 | } |
| 114 | |
Alexander Aring | 4ae935c | 2015-08-11 21:44:09 +0200 | [diff] [blame] | 115 | request_module_nowait("ipv6"); |
| 116 | |
| 117 | request_module_nowait("nhc_dest"); |
| 118 | request_module_nowait("nhc_fragment"); |
| 119 | request_module_nowait("nhc_hop"); |
| 120 | request_module_nowait("nhc_ipv6"); |
| 121 | request_module_nowait("nhc_mobility"); |
| 122 | request_module_nowait("nhc_routing"); |
| 123 | request_module_nowait("nhc_udp"); |
| 124 | |
| 125 | return 0; |
| 126 | } |
Alexander Aring | b1815fd | 2015-12-09 22:46:30 +0100 | [diff] [blame] | 127 | |
| 128 | static void __exit lowpan_module_exit(void) |
| 129 | { |
| 130 | lowpan_debugfs_exit(); |
Alexander Aring | 5609c18 | 2016-02-22 09:13:54 +0100 | [diff] [blame] | 131 | unregister_netdevice_notifier(&lowpan_notifier); |
Alexander Aring | b1815fd | 2015-12-09 22:46:30 +0100 | [diff] [blame] | 132 | } |
| 133 | |
Alexander Aring | 4ae935c | 2015-08-11 21:44:09 +0200 | [diff] [blame] | 134 | module_init(lowpan_module_init); |
Alexander Aring | b1815fd | 2015-12-09 22:46:30 +0100 | [diff] [blame] | 135 | module_exit(lowpan_module_exit); |
Alexander Aring | 4ae935c | 2015-08-11 21:44:09 +0200 | [diff] [blame] | 136 | |
| 137 | MODULE_LICENSE("GPL"); |