pn_dev.c 10.4 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 23 24 25 26 27
/*
 * File: pn_dev.c
 *
 * Phonet network device
 *
 * Copyright (C) 2008 Nokia Corporation.
 *
 * Contact: Remi Denis-Courmont <remi.denis-courmont@nokia.com>
 * Original author: Sakari Ailus <sakari.ailus@nokia.com>
 *
 * 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.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA
 */

#include <linux/kernel.h>
#include <linux/net.h>
28
#include <linux/slab.h>
29 30
#include <linux/netdevice.h>
#include <linux/phonet.h>
D
David S. Miller 已提交
31
#include <linux/proc_fs.h>
32
#include <linux/if_arp.h>
33
#include <net/sock.h>
34
#include <net/netns/generic.h>
35 36
#include <net/phonet/pn_dev.h>

37
struct phonet_routes {
38
	struct mutex		lock;
39 40 41
	struct net_device	*table[64];
};

42 43
struct phonet_net {
	struct phonet_device_list pndevs;
44
	struct phonet_routes routes;
45 46
};

47
int phonet_net_id __read_mostly;
48

49 50 51 52 53 54 55
static struct phonet_net *phonet_pernet(struct net *net)
{
	BUG_ON(!net);

	return net_generic(net, phonet_net_id);
}

56 57
struct phonet_device_list *phonet_device_list(struct net *net)
{
58
	struct phonet_net *pnn = phonet_pernet(net);
59 60 61
	return &pnn->pndevs;
}

62 63 64
/* Allocate new Phonet device. */
static struct phonet_device *__phonet_device_alloc(struct net_device *dev)
{
65
	struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
66 67 68 69 70 71
	struct phonet_device *pnd = kmalloc(sizeof(*pnd), GFP_ATOMIC);
	if (pnd == NULL)
		return NULL;
	pnd->netdev = dev;
	bitmap_zero(pnd->addrs, 64);

72 73
	BUG_ON(!mutex_is_locked(&pndevs->lock));
	list_add_rcu(&pnd->list, &pndevs->list);
74 75 76 77 78
	return pnd;
}

static struct phonet_device *__phonet_get(struct net_device *dev)
{
79
	struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
80 81
	struct phonet_device *pnd;

82
	BUG_ON(!mutex_is_locked(&pndevs->lock));
83
	list_for_each_entry(pnd, &pndevs->list, list) {
84 85 86 87 88 89
		if (pnd->netdev == dev)
			return pnd;
	}
	return NULL;
}

90 91 92 93 94 95 96 97 98 99 100 101
static struct phonet_device *__phonet_get_rcu(struct net_device *dev)
{
	struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
	struct phonet_device *pnd;

	list_for_each_entry_rcu(pnd, &pndevs->list, list) {
		if (pnd->netdev == dev)
			return pnd;
	}
	return NULL;
}

102
static void phonet_device_destroy(struct net_device *dev)
103
{
104 105 106 107 108
	struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
	struct phonet_device *pnd;

	ASSERT_RTNL();

109
	mutex_lock(&pndevs->lock);
110 111
	pnd = __phonet_get(dev);
	if (pnd)
112 113
		list_del_rcu(&pnd->list);
	mutex_unlock(&pndevs->lock);
114 115 116 117

	if (pnd) {
		u8 addr;

A
Akinobu Mita 已提交
118
		for_each_set_bit(addr, pnd->addrs, 64)
119 120 121
			phonet_address_notify(RTM_DELADDR, dev, addr);
		kfree(pnd);
	}
122 123 124 125
}

struct net_device *phonet_device_get(struct net *net)
{
126
	struct phonet_device_list *pndevs = phonet_device_list(net);
127
	struct phonet_device *pnd;
E
Eric Dumazet 已提交
128
	struct net_device *dev = NULL;
129

130 131
	rcu_read_lock();
	list_for_each_entry_rcu(pnd, &pndevs->list, list) {
132 133 134
		dev = pnd->netdev;
		BUG_ON(!dev);

135
		if ((dev->reg_state == NETREG_REGISTERED) &&
136 137 138 139 140 141
			((pnd->netdev->flags & IFF_UP)) == IFF_UP)
			break;
		dev = NULL;
	}
	if (dev)
		dev_hold(dev);
142
	rcu_read_unlock();
143 144 145 146 147
	return dev;
}

int phonet_address_add(struct net_device *dev, u8 addr)
{
148
	struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
149 150 151
	struct phonet_device *pnd;
	int err = 0;

152
	mutex_lock(&pndevs->lock);
153 154 155 156 157 158 159 160
	/* Find or create Phonet-specific device data */
	pnd = __phonet_get(dev);
	if (pnd == NULL)
		pnd = __phonet_device_alloc(dev);
	if (unlikely(pnd == NULL))
		err = -ENOMEM;
	else if (test_and_set_bit(addr >> 2, pnd->addrs))
		err = -EEXIST;
161
	mutex_unlock(&pndevs->lock);
162 163 164
	return err;
}

165 166 167 168 169 170 171 172
static void phonet_device_rcu_free(struct rcu_head *head)
{
	struct phonet_device *pnd;

	pnd = container_of(head, struct phonet_device, rcu);
	kfree(pnd);
}

173 174
int phonet_address_del(struct net_device *dev, u8 addr)
{
175
	struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
176 177 178
	struct phonet_device *pnd;
	int err = 0;

179
	mutex_lock(&pndevs->lock);
180
	pnd = __phonet_get(dev);
181
	if (!pnd || !test_and_clear_bit(addr >> 2, pnd->addrs)) {
182
		err = -EADDRNOTAVAIL;
183 184 185 186 187 188 189
		pnd = NULL;
	} else if (bitmap_empty(pnd->addrs, 64))
		list_del_rcu(&pnd->list);
	else
		pnd = NULL;
	mutex_unlock(&pndevs->lock);

190 191 192
	if (pnd)
		call_rcu(&pnd->rcu, phonet_device_rcu_free);

193 194 195 196
	return err;
}

/* Gets a source address toward a destination, through a interface. */
197
u8 phonet_address_get(struct net_device *dev, u8 daddr)
198 199
{
	struct phonet_device *pnd;
200
	u8 saddr;
201

202 203
	rcu_read_lock();
	pnd = __phonet_get_rcu(dev);
204 205 206 207
	if (pnd) {
		BUG_ON(bitmap_empty(pnd->addrs, 64));

		/* Use same source address as destination, if possible */
208 209 210 211
		if (test_bit(daddr >> 2, pnd->addrs))
			saddr = daddr;
		else
			saddr = find_first_bit(pnd->addrs, 64) << 2;
212
	} else
213
		saddr = PN_NO_ADDR;
214
	rcu_read_unlock();
215 216 217 218 219 220 221 222 223 224 225 226 227

	if (saddr == PN_NO_ADDR) {
		/* Fallback to another device */
		struct net_device *def_dev;

		def_dev = phonet_device_get(dev_net(dev));
		if (def_dev) {
			if (def_dev != dev)
				saddr = phonet_address_get(def_dev, daddr);
			dev_put(def_dev);
		}
	}
	return saddr;
228 229
}

230
int phonet_address_lookup(struct net *net, u8 addr)
231
{
232
	struct phonet_device_list *pndevs = phonet_device_list(net);
233
	struct phonet_device *pnd;
234
	int err = -EADDRNOTAVAIL;
235

236 237
	rcu_read_lock();
	list_for_each_entry_rcu(pnd, &pndevs->list, list) {
238 239 240 241 242 243
		/* Don't allow unregistering devices! */
		if ((pnd->netdev->reg_state != NETREG_REGISTERED) ||
				((pnd->netdev->flags & IFF_UP)) != IFF_UP)
			continue;

		if (test_bit(addr >> 2, pnd->addrs)) {
244 245
			err = 0;
			goto found;
246 247
		}
	}
248
found:
249
	rcu_read_unlock();
250
	return err;
251 252
}

253 254 255 256 257 258 259 260 261 262 263 264 265
/* automatically configure a Phonet device, if supported */
static int phonet_device_autoconf(struct net_device *dev)
{
	struct if_phonet_req req;
	int ret;

	if (!dev->netdev_ops->ndo_do_ioctl)
		return -EOPNOTSUPP;

	ret = dev->netdev_ops->ndo_do_ioctl(dev, (struct ifreq *)&req,
						SIOCPNGAUTOCONF);
	if (ret < 0)
		return ret;
266 267 268 269 270 271 272 273

	ASSERT_RTNL();
	ret = phonet_address_add(dev, req.ifr_phonet_autoconf.device);
	if (ret)
		return ret;
	phonet_address_notify(RTM_NEWADDR, dev,
				req.ifr_phonet_autoconf.device);
	return 0;
274 275
}

276 277
static void phonet_route_autodel(struct net_device *dev)
{
278
	struct phonet_net *pnn = phonet_pernet(dev_net(dev));
279 280 281 282 283
	unsigned i;
	DECLARE_BITMAP(deleted, 64);

	/* Remove left-over Phonet routes */
	bitmap_zero(deleted, 64);
284
	mutex_lock(&pnn->routes.lock);
285 286
	for (i = 0; i < 64; i++)
		if (dev == pnn->routes.table[i]) {
287
			rcu_assign_pointer(pnn->routes.table[i], NULL);
288 289
			set_bit(i, deleted);
		}
290 291 292 293 294
	mutex_unlock(&pnn->routes.lock);

	if (bitmap_empty(deleted, 64))
		return; /* short-circuit RCU */
	synchronize_rcu();
A
Akinobu Mita 已提交
295
	for_each_set_bit(i, deleted, 64) {
296
		rtm_phonet_notify(RTM_DELROUTE, dev, i);
297 298
		dev_put(dev);
	}
299 300
}

301 302 303 304 305 306
/* notify Phonet of device events */
static int phonet_device_notify(struct notifier_block *me, unsigned long what,
				void *arg)
{
	struct net_device *dev = arg;

307 308 309 310 311 312
	switch (what) {
	case NETDEV_REGISTER:
		if (dev->type == ARPHRD_PHONET)
			phonet_device_autoconf(dev);
		break;
	case NETDEV_UNREGISTER:
313
		phonet_device_destroy(dev);
314
		phonet_route_autodel(dev);
315 316
		break;
	}
317 318 319 320 321 322 323 324 325
	return 0;

}

static struct notifier_block phonet_device_notifier = {
	.notifier_call = phonet_device_notify,
	.priority = 0,
};

326
/* Per-namespace Phonet devices handling */
327
static int __net_init phonet_init_net(struct net *net)
328
{
329
	struct phonet_net *pnn = phonet_pernet(net);
330

331
	if (!proc_net_fops_create(net, "phonet", 0, &pn_sock_seq_fops))
332 333
		return -ENOMEM;

334
	INIT_LIST_HEAD(&pnn->pndevs.list);
335
	mutex_init(&pnn->pndevs.lock);
336
	mutex_init(&pnn->routes.lock);
337 338 339
	return 0;
}

340
static void __net_exit phonet_exit_net(struct net *net)
341
{
342
	struct phonet_net *pnn = phonet_pernet(net);
343
	struct net_device *dev;
344
	unsigned i;
345

346 347 348
	rtnl_lock();
	for_each_netdev(net, dev)
		phonet_device_destroy(dev);
349 350 351 352 353 354 355 356

	for (i = 0; i < 64; i++) {
		dev = pnn->routes.table[i];
		if (dev) {
			rtm_phonet_notify(RTM_DELROUTE, dev, i);
			dev_put(dev);
		}
	}
357
	rtnl_unlock();
358 359

	proc_net_remove(net, "phonet");
360 361 362 363 364
}

static struct pernet_operations phonet_net_ops = {
	.init = phonet_init_net,
	.exit = phonet_exit_net,
365 366
	.id   = &phonet_net_id,
	.size = sizeof(struct phonet_net),
367 368
};

369
/* Initialize Phonet devices list */
370
int __init phonet_device_init(void)
371
{
372
	int err = register_pernet_device(&phonet_net_ops);
373 374
	if (err)
		return err;
375

376
	proc_net_fops_create(&init_net, "pnresource", 0, &pn_res_seq_fops);
377
	register_netdevice_notifier(&phonet_device_notifier);
378 379 380 381
	err = phonet_netlink_register();
	if (err)
		phonet_device_exit();
	return err;
382 383 384 385 386
}

void phonet_device_exit(void)
{
	rtnl_unregister_all(PF_PHONET);
387
	unregister_netdevice_notifier(&phonet_device_notifier);
388
	unregister_pernet_device(&phonet_net_ops);
389
	proc_net_remove(&init_net, "pnresource");
390
}
391 392 393

int phonet_route_add(struct net_device *dev, u8 daddr)
{
394
	struct phonet_net *pnn = phonet_pernet(dev_net(dev));
395 396 397 398
	struct phonet_routes *routes = &pnn->routes;
	int err = -EEXIST;

	daddr = daddr >> 2;
399
	mutex_lock(&routes->lock);
400
	if (routes->table[daddr] == NULL) {
401
		rcu_assign_pointer(routes->table[daddr], dev);
402 403 404
		dev_hold(dev);
		err = 0;
	}
405
	mutex_unlock(&routes->lock);
406 407 408 409 410
	return err;
}

int phonet_route_del(struct net_device *dev, u8 daddr)
{
411
	struct phonet_net *pnn = phonet_pernet(dev_net(dev));
412 413 414
	struct phonet_routes *routes = &pnn->routes;

	daddr = daddr >> 2;
415 416 417 418 419 420 421 422 423 424 425 426
	mutex_lock(&routes->lock);
	if (dev == routes->table[daddr])
		rcu_assign_pointer(routes->table[daddr], NULL);
	else
		dev = NULL;
	mutex_unlock(&routes->lock);

	if (!dev)
		return -ENOENT;
	synchronize_rcu();
	dev_put(dev);
	return 0;
427 428
}

429
struct net_device *phonet_route_get_rcu(struct net *net, u8 daddr)
430
{
431
	struct phonet_net *pnn = phonet_pernet(net);
432 433 434 435
	struct phonet_routes *routes = &pnn->routes;
	struct net_device *dev;

	daddr >>= 2;
436
	dev = rcu_dereference(routes->table[daddr]);
437 438 439 440 441
	return dev;
}

struct net_device *phonet_route_output(struct net *net, u8 daddr)
{
442
	struct phonet_net *pnn = phonet_pernet(net);
443 444 445
	struct phonet_routes *routes = &pnn->routes;
	struct net_device *dev;

446 447 448
	daddr >>= 2;
	rcu_read_lock();
	dev = rcu_dereference(routes->table[daddr]);
449 450
	if (dev)
		dev_hold(dev);
451
	rcu_read_unlock();
452 453 454 455 456

	if (!dev)
		dev = phonet_device_get(net); /* Default route */
	return dev;
}