core.c 4.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/* This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * Authors:
 * (C) 2015 Pengutronix, Alexander Aring <aar@pengutronix.de>
 */

14 15
#include <linux/module.h>

16
#include <net/6lowpan.h>
17
#include <net/addrconf.h>
18

A
Alexander Aring 已提交
19 20
#include "6lowpan_i.h"

21 22
int lowpan_register_netdevice(struct net_device *dev,
			      enum lowpan_lltypes lltype)
23
{
24
	int i, ret;
A
Alexander Aring 已提交
25

26 27 28 29 30 31 32 33 34 35
	switch (lltype) {
	case LOWPAN_LLTYPE_IEEE802154:
		dev->addr_len = EUI64_ADDR_LEN;
		break;

	case LOWPAN_LLTYPE_BTLE:
		dev->addr_len = ETH_ALEN;
		break;
	}

36 37 38 39
	dev->type = ARPHRD_6LOWPAN;
	dev->mtu = IPV6_MIN_MTU;
	dev->priv_flags |= IFF_NO_QUEUE;

40
	lowpan_dev(dev)->lltype = lltype;
41

42
	spin_lock_init(&lowpan_dev(dev)->ctx.lock);
43
	for (i = 0; i < LOWPAN_IPHC_CTX_TABLE_SIZE; i++)
44
		lowpan_dev(dev)->ctx.table[i].id = i;
45

A
Alexander Aring 已提交
46 47
	dev->ndisc_ops = &lowpan_ndisc_ops;

48
	ret = register_netdevice(dev);
A
Alexander Aring 已提交
49 50 51
	if (ret < 0)
		return ret;

52
	ret = lowpan_dev_debugfs_init(dev);
A
Alexander Aring 已提交
53
	if (ret < 0)
54
		unregister_netdevice(dev);
A
Alexander Aring 已提交
55 56

	return ret;
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
}
EXPORT_SYMBOL(lowpan_register_netdevice);

int lowpan_register_netdev(struct net_device *dev,
			   enum lowpan_lltypes lltype)
{
	int ret;

	rtnl_lock();
	ret = lowpan_register_netdevice(dev, lltype);
	rtnl_unlock();
	return ret;
}
EXPORT_SYMBOL(lowpan_register_netdev);

void lowpan_unregister_netdevice(struct net_device *dev)
{
	unregister_netdevice(dev);
A
Alexander Aring 已提交
75
	lowpan_dev_debugfs_exit(dev);
76 77 78 79 80 81 82 83
}
EXPORT_SYMBOL(lowpan_unregister_netdevice);

void lowpan_unregister_netdev(struct net_device *dev)
{
	rtnl_lock();
	lowpan_unregister_netdevice(dev);
	rtnl_unlock();
84
}
85
EXPORT_SYMBOL(lowpan_unregister_netdev);
86

A
Alexander Aring 已提交
87
int addrconf_ifid_802154_6lowpan(u8 *eui, struct net_device *dev)
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
{
	struct wpan_dev *wpan_dev = lowpan_802154_dev(dev)->wdev->ieee802154_ptr;

	/* Set short_addr autoconfiguration if short_addr is present only */
	if (!lowpan_802154_is_valid_src_short_addr(wpan_dev->short_addr))
		return -1;

	/* For either address format, all zero addresses MUST NOT be used */
	if (wpan_dev->pan_id == cpu_to_le16(0x0000) &&
	    wpan_dev->short_addr == cpu_to_le16(0x0000))
		return -1;

	/* Alternatively, if no PAN ID is known, 16 zero bits may be used */
	if (wpan_dev->pan_id == cpu_to_le16(IEEE802154_PAN_ID_BROADCAST))
		memset(eui, 0, 2);
	else
		ieee802154_le16_to_be16(eui, &wpan_dev->pan_id);

	/* The "Universal/Local" (U/L) bit shall be set to zero */
	eui[0] &= ~2;
	eui[2] = 0;
	eui[3] = 0xFF;
	eui[4] = 0xFE;
	eui[5] = 0;
	ieee802154_le16_to_be16(&eui[6], &wpan_dev->short_addr);
	return 0;
}

116 117 118 119
static int lowpan_event(struct notifier_block *unused,
			unsigned long event, void *ptr)
{
	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
120 121
	struct inet6_dev *idev;
	struct in6_addr addr;
122 123 124 125 126
	int i;

	if (dev->type != ARPHRD_6LOWPAN)
		return NOTIFY_DONE;

127 128 129 130
	idev = __in6_dev_get(dev);
	if (!idev)
		return NOTIFY_DONE;

131
	switch (event) {
132 133 134 135 136 137 138 139 140 141
	case NETDEV_UP:
	case NETDEV_CHANGE:
		/* (802.15.4 6LoWPAN short address slaac handling */
		if (lowpan_is_ll(dev, LOWPAN_LLTYPE_IEEE802154) &&
		    addrconf_ifid_802154_6lowpan(addr.s6_addr + 8, dev) == 0) {
			__ipv6_addr_set_half(&addr.s6_addr32[0],
					     htonl(0xFE800000), 0);
			addrconf_add_linklocal(idev, &addr, 0);
		}
		break;
142 143 144
	case NETDEV_DOWN:
		for (i = 0; i < LOWPAN_IPHC_CTX_TABLE_SIZE; i++)
			clear_bit(LOWPAN_IPHC_CTX_FLAG_ACTIVE,
145
				  &lowpan_dev(dev)->ctx.table[i].flags);
146 147 148 149 150 151 152 153 154 155 156 157
		break;
	default:
		return NOTIFY_DONE;
	}

	return NOTIFY_OK;
}

static struct notifier_block lowpan_notifier = {
	.notifier_call = lowpan_event,
};

158 159
static int __init lowpan_module_init(void)
{
A
Alexander Aring 已提交
160 161 162 163 164 165
	int ret;

	ret = lowpan_debugfs_init();
	if (ret < 0)
		return ret;

166 167 168 169 170 171
	ret = register_netdevice_notifier(&lowpan_notifier);
	if (ret < 0) {
		lowpan_debugfs_exit();
		return ret;
	}

172 173 174 175 176 177 178 179 180 181
	request_module_nowait("nhc_dest");
	request_module_nowait("nhc_fragment");
	request_module_nowait("nhc_hop");
	request_module_nowait("nhc_ipv6");
	request_module_nowait("nhc_mobility");
	request_module_nowait("nhc_routing");
	request_module_nowait("nhc_udp");

	return 0;
}
A
Alexander Aring 已提交
182 183 184 185

static void __exit lowpan_module_exit(void)
{
	lowpan_debugfs_exit();
186
	unregister_netdevice_notifier(&lowpan_notifier);
A
Alexander Aring 已提交
187 188
}

189
module_init(lowpan_module_init);
A
Alexander Aring 已提交
190
module_exit(lowpan_module_exit);
191 192

MODULE_LICENSE("GPL");