iface.c 10.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * Copyright 2007-2012 Siemens AG
 *
 * 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.
 *
 * Written by:
 * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
 * Sergey Lapin <slapin@ossfans.org>
 * Maxim Gorbachyov <maxim.gorbachev@siemens.com>
 * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
 */

#include <linux/netdevice.h>
#include <linux/module.h>
#include <linux/if_arp.h>
23
#include <linux/ieee802154.h>
24 25 26 27 28 29

#include <net/rtnetlink.h>
#include <linux/nl802154.h>
#include <net/af_ieee802154.h>
#include <net/mac802154.h>
#include <net/ieee802154_netdev.h>
30
#include <net/cfg802154.h>
31

32
#include "ieee802154_i.h"
33

34 35
static int mac802154_wpan_update_llsec(struct net_device *dev)
{
36
	struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
37 38 39 40 41 42 43
	struct ieee802154_mlme_ops *ops = ieee802154_mlme_ops(dev);
	int rc = 0;

	if (ops->llsec) {
		struct ieee802154_llsec_params params;
		int changed = 0;

44
		params.pan_id = sdata->pan_id;
45 46
		changed |= IEEE802154_LLSEC_PARAM_PAN_ID;

47
		params.hwaddr = sdata->extended_addr;
48 49 50 51 52 53 54 55
		changed |= IEEE802154_LLSEC_PARAM_HWADDR;

		rc = ops->llsec->set_params(dev, &params, changed);
	}

	return rc;
}

56 57 58
static int
mac802154_wpan_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
{
59
	struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
60 61 62 63
	struct sockaddr_ieee802154 *sa =
		(struct sockaddr_ieee802154 *)&ifr->ifr_addr;
	int err = -ENOIOCTLCMD;

64
	spin_lock_bh(&sdata->mib_lock);
65 66 67

	switch (cmd) {
	case SIOCGIFADDR:
68 69 70
	{
		u16 pan_id, short_addr;

71 72
		pan_id = le16_to_cpu(sdata->pan_id);
		short_addr = le16_to_cpu(sdata->short_addr);
73 74
		if (pan_id == IEEE802154_PANID_BROADCAST ||
		    short_addr == IEEE802154_ADDR_BROADCAST) {
75 76 77 78 79 80
			err = -EADDRNOTAVAIL;
			break;
		}

		sa->family = AF_IEEE802154;
		sa->addr.addr_type = IEEE802154_ADDR_SHORT;
81 82
		sa->addr.pan_id = pan_id;
		sa->addr.short_addr = short_addr;
83 84 85

		err = 0;
		break;
86
	}
87 88
	case SIOCSIFADDR:
		dev_warn(&dev->dev,
M
Masanari Iida 已提交
89
			 "Using DEBUGing ioctl SIOCSIFADDR isn't recommended!\n");
90 91 92 93 94 95 96 97 98
		if (sa->family != AF_IEEE802154 ||
		    sa->addr.addr_type != IEEE802154_ADDR_SHORT ||
		    sa->addr.pan_id == IEEE802154_PANID_BROADCAST ||
		    sa->addr.short_addr == IEEE802154_ADDR_BROADCAST ||
		    sa->addr.short_addr == IEEE802154_ADDR_UNDEF) {
			err = -EINVAL;
			break;
		}

99 100
		sdata->pan_id = cpu_to_le16(sa->addr.pan_id);
		sdata->short_addr = cpu_to_le16(sa->addr.short_addr);
101

102
		err = mac802154_wpan_update_llsec(dev);
103 104 105
		break;
	}

106
	spin_unlock_bh(&sdata->mib_lock);
107 108 109 110 111 112 113 114 115 116 117 118 119
	return err;
}

static int mac802154_wpan_mac_addr(struct net_device *dev, void *p)
{
	struct sockaddr *addr = p;

	if (netif_running(dev))
		return -EBUSY;

	/* FIXME: validate addr */
	memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
	mac802154_dev_set_ieee_addr(dev);
120
	return mac802154_wpan_update_llsec(dev);
121 122
}

123 124 125
int mac802154_set_mac_params(struct net_device *dev,
			     const struct ieee802154_mac_params *params)
{
126
	struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
127

128
	mutex_lock(&sdata->local->iflist_mtx);
129
	sdata->mac_params = *params;
130
	mutex_unlock(&sdata->local->iflist_mtx);
131 132 133 134 135 136 137

	return 0;
}

void mac802154_get_mac_params(struct net_device *dev,
			      struct ieee802154_mac_params *params)
{
138
	struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
139

140
	mutex_lock(&sdata->local->iflist_mtx);
141
	*params = sdata->mac_params;
142
	mutex_unlock(&sdata->local->iflist_mtx);
143 144
}

145
static int mac802154_wpan_open(struct net_device *dev)
146 147
{
	int rc;
148
	struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
149
	struct wpan_phy *phy = sdata->local->phy;
150 151 152 153 154 155 156 157

	rc = mac802154_slave_open(dev);
	if (rc < 0)
		return rc;

	mutex_lock(&phy->pib_lock);

	if (phy->set_txpower) {
158
		rc = phy->set_txpower(phy, sdata->mac_params.transmit_power);
159 160 161 162 163
		if (rc < 0)
			goto out;
	}

	if (phy->set_lbt) {
164
		rc = phy->set_lbt(phy, sdata->mac_params.lbt);
165 166 167 168 169
		if (rc < 0)
			goto out;
	}

	if (phy->set_cca_mode) {
170
		rc = phy->set_cca_mode(phy, sdata->mac_params.cca_mode);
171 172 173 174 175
		if (rc < 0)
			goto out;
	}

	if (phy->set_cca_ed_level) {
176
		rc = phy->set_cca_ed_level(phy, sdata->mac_params.cca_ed_level);
177 178 179 180 181
		if (rc < 0)
			goto out;
	}

	if (phy->set_csma_params) {
182 183 184
		rc = phy->set_csma_params(phy, sdata->mac_params.min_be,
					  sdata->mac_params.max_be,
					  sdata->mac_params.csma_retries);
185 186 187 188 189 190
		if (rc < 0)
			goto out;
	}

	if (phy->set_frame_retries) {
		rc = phy->set_frame_retries(phy,
191
					    sdata->mac_params.frame_retries);
192 193 194 195 196 197 198 199 200 201 202 203
		if (rc < 0)
			goto out;
	}

	mutex_unlock(&phy->pib_lock);
	return 0;

out:
	mutex_unlock(&phy->pib_lock);
	return rc;
}

204
static int mac802154_set_header_security(struct ieee802154_sub_if_data *sdata,
205 206 207 208 209 210
					 struct ieee802154_hdr *hdr,
					 const struct ieee802154_mac_cb *cb)
{
	struct ieee802154_llsec_params params;
	u8 level;

211
	mac802154_llsec_get_params(&sdata->sec, &params);
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235

	if (!params.enabled && cb->secen_override && cb->secen)
		return -EINVAL;
	if (!params.enabled ||
	    (cb->secen_override && !cb->secen) ||
	    !params.out_level)
		return 0;
	if (cb->seclevel_override && !cb->seclevel)
		return -EINVAL;

	level = cb->seclevel_override ? cb->seclevel : params.out_level;

	hdr->fc.security_enabled = 1;
	hdr->sec.level = level;
	hdr->sec.key_id_mode = params.out_key.mode;
	if (params.out_key.mode == IEEE802154_SCF_KEY_SHORT_INDEX)
		hdr->sec.short_src = params.out_key.short_source;
	else if (params.out_key.mode == IEEE802154_SCF_KEY_HW_INDEX)
		hdr->sec.extended_src = params.out_key.extended_source;
	hdr->sec.key_id = params.out_key.id;

	return 0;
}

236 237 238
static int mac802154_header_create(struct sk_buff *skb,
				   struct net_device *dev,
				   unsigned short type,
239 240
				   const void *daddr,
				   const void *saddr,
241 242
				   unsigned len)
{
243
	struct ieee802154_hdr hdr;
244
	struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
245
	struct ieee802154_mac_cb *cb = mac_cb(skb);
246
	int hlen;
247 248 249 250

	if (!daddr)
		return -EINVAL;

251
	memset(&hdr.fc, 0, sizeof(hdr.fc));
252 253 254 255
	hdr.fc.type = cb->type;
	hdr.fc.security_enabled = cb->secen;
	hdr.fc.ack_request = cb->ackreq;
	hdr.seq = ieee802154_mlme_ops(dev)->get_dsn(dev);
256

257
	if (mac802154_set_header_security(sdata, &hdr, cb) < 0)
258 259
		return -EINVAL;

260
	if (!saddr) {
261
		spin_lock_bh(&sdata->mib_lock);
262

263 264 265
		if (sdata->short_addr == cpu_to_le16(IEEE802154_ADDR_BROADCAST) ||
		    sdata->short_addr == cpu_to_le16(IEEE802154_ADDR_UNDEF) ||
		    sdata->pan_id == cpu_to_le16(IEEE802154_PANID_BROADCAST)) {
266
			hdr.source.mode = IEEE802154_ADDR_LONG;
267
			hdr.source.extended_addr = sdata->extended_addr;
268
		} else {
269
			hdr.source.mode = IEEE802154_ADDR_SHORT;
270
			hdr.source.short_addr = sdata->short_addr;
271 272
		}

273
		hdr.source.pan_id = sdata->pan_id;
274

275
		spin_unlock_bh(&sdata->mib_lock);
276 277
	} else {
		hdr.source = *(const struct ieee802154_addr *)saddr;
278 279
	}

280
	hdr.dest = *(const struct ieee802154_addr *)daddr;
281

282 283 284
	hlen = ieee802154_hdr_push(skb, &hdr);
	if (hlen < 0)
		return -EINVAL;
285

286
	skb_reset_mac_header(skb);
287
	skb->mac_len = hlen;
288

289
	if (len > ieee802154_max_payload(&hdr))
290 291
		return -EMSGSIZE;

292
	return hlen;
293 294 295 296 297
}

static int
mac802154_header_parse(const struct sk_buff *skb, unsigned char *haddr)
{
298 299
	struct ieee802154_hdr hdr;
	struct ieee802154_addr *addr = (struct ieee802154_addr *)haddr;
300

301 302 303
	if (ieee802154_hdr_peek_addrs(skb, &hdr) < 0) {
		pr_debug("malformed packet\n");
		return 0;
304 305
	}

306 307
	*addr = hdr.source;
	return sizeof(*addr);
308 309 310 311 312 313 314 315
}

static struct header_ops mac802154_header_ops = {
	.create		= mac802154_header_create,
	.parse		= mac802154_header_parse,
};

static const struct net_device_ops mac802154_wpan_ops = {
316
	.ndo_open		= mac802154_wpan_open,
317
	.ndo_stop		= mac802154_slave_close,
318
	.ndo_start_xmit		= ieee802154_subif_start_xmit,
319 320 321 322
	.ndo_do_ioctl		= mac802154_wpan_ioctl,
	.ndo_set_mac_address	= mac802154_wpan_mac_addr,
};

323 324 325 326 327 328
static const struct net_device_ops mac802154_monitor_ops = {
	.ndo_open		= mac802154_slave_open,
	.ndo_stop		= mac802154_slave_close,
	.ndo_start_xmit		= ieee802154_monitor_start_xmit,
};

329 330
static void mac802154_wpan_free(struct net_device *dev)
{
331
	struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
332

333
	mac802154_llsec_destroy(&sdata->sec);
334 335 336 337

	free_netdev(dev);
}

338 339
void mac802154_wpan_setup(struct net_device *dev)
{
340
	struct ieee802154_sub_if_data *sdata;
341 342 343 344 345 346

	dev->addr_len		= IEEE802154_ADDR_LEN;
	memset(dev->broadcast, 0xff, IEEE802154_ADDR_LEN);

	dev->hard_header_len	= MAC802154_FRAME_HARD_HEADER_LEN;
	dev->header_ops		= &mac802154_header_ops;
347
	dev->needed_tailroom	= 2 + 16; /* FCS + MIC */
348
	dev->mtu		= IEEE802154_MTU;
A
Alan Ott 已提交
349
	dev->tx_queue_len	= 300;
350 351 352 353
	dev->type		= ARPHRD_IEEE802154;
	dev->flags		= IFF_NOARP | IFF_BROADCAST;
	dev->watchdog_timeo	= 0;

354
	dev->destructor		= mac802154_wpan_free;
355 356 357
	dev->netdev_ops		= &mac802154_wpan_ops;
	dev->ml_priv		= &mac802154_mlme_wpan;

358
	sdata = IEEE802154_DEV_TO_SUB_IF(dev);
359
	sdata->type = IEEE802154_DEV_WPAN;
360

361 362
	sdata->chan = MAC802154_CHAN_NONE;
	sdata->page = 0;
363

364 365
	spin_lock_init(&sdata->mib_lock);
	mutex_init(&sdata->sec_mtx);
366

367 368
	get_random_bytes(&sdata->bsn, 1);
	get_random_bytes(&sdata->dsn, 1);
369

370
	/* defaults per 802.15.4-2011 */
371 372 373 374 375
	sdata->mac_params.min_be = 3;
	sdata->mac_params.max_be = 5;
	sdata->mac_params.csma_retries = 4;
	/* for compatibility, actual default is 3 */
	sdata->mac_params.frame_retries = -1;
376

377 378
	sdata->pan_id = cpu_to_le16(IEEE802154_PANID_BROADCAST);
	sdata->short_addr = cpu_to_le16(IEEE802154_ADDR_BROADCAST);
379

380
	mac802154_llsec_init(&sdata->sec);
381
}
382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405

void mac802154_monitor_setup(struct net_device *dev)
{
	struct ieee802154_sub_if_data *sdata;

	dev->addr_len		= 0;
	dev->hard_header_len	= 0;
	dev->needed_tailroom	= 2; /* room for FCS */
	dev->mtu		= IEEE802154_MTU;
	dev->tx_queue_len	= 10;
	dev->type		= ARPHRD_IEEE802154_MONITOR;
	dev->flags		= IFF_NOARP | IFF_BROADCAST;
	dev->watchdog_timeo	= 0;

	dev->destructor		= free_netdev;
	dev->netdev_ops		= &mac802154_monitor_ops;
	dev->ml_priv		= &mac802154_mlme_reduced;

	sdata = IEEE802154_DEV_TO_SUB_IF(dev);
	sdata->type = IEEE802154_DEV_MONITOR;

	sdata->chan = MAC802154_CHAN_NONE; /* not initialized */
	sdata->page = 0;
}