pn_dev.c 7.2 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 28 29
/*
 * 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>
#include <linux/netdevice.h>
#include <linux/phonet.h>
D
David S. Miller 已提交
30
#include <linux/proc_fs.h>
31
#include <linux/if_arp.h>
32
#include <net/sock.h>
33
#include <net/netns/generic.h>
34 35
#include <net/phonet/pn_dev.h>

36 37
struct phonet_net {
	struct phonet_device_list pndevs;
38 39
};

40 41 42 43 44 45 46 47
int phonet_net_id;

struct phonet_device_list *phonet_device_list(struct net *net)
{
	struct phonet_net *pnn = net_generic(net, phonet_net_id);
	return &pnn->pndevs;
}

48 49 50
/* Allocate new Phonet device. */
static struct phonet_device *__phonet_device_alloc(struct net_device *dev)
{
51
	struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
52 53 54 55 56 57
	struct phonet_device *pnd = kmalloc(sizeof(*pnd), GFP_ATOMIC);
	if (pnd == NULL)
		return NULL;
	pnd->netdev = dev;
	bitmap_zero(pnd->addrs, 64);

58
	list_add(&pnd->list, &pndevs->list);
59 60 61 62 63
	return pnd;
}

static struct phonet_device *__phonet_get(struct net_device *dev)
{
64
	struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
65 66
	struct phonet_device *pnd;

67
	list_for_each_entry(pnd, &pndevs->list, list) {
68 69 70 71 72 73
		if (pnd->netdev == dev)
			return pnd;
	}
	return NULL;
}

74
static void phonet_device_destroy(struct net_device *dev)
75
{
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
	struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
	struct phonet_device *pnd;

	ASSERT_RTNL();

	spin_lock_bh(&pndevs->lock);
	pnd = __phonet_get(dev);
	if (pnd)
		list_del(&pnd->list);
	spin_unlock_bh(&pndevs->lock);

	if (pnd) {
		u8 addr;

		for (addr = find_first_bit(pnd->addrs, 64); addr < 64;
			addr = find_next_bit(pnd->addrs, 64, 1+addr))
			phonet_address_notify(RTM_DELADDR, dev, addr);
		kfree(pnd);
	}
95 96 97 98
}

struct net_device *phonet_device_get(struct net *net)
{
99
	struct phonet_device_list *pndevs = phonet_device_list(net);
100
	struct phonet_device *pnd;
E
Eric Dumazet 已提交
101
	struct net_device *dev = NULL;
102

103 104
	spin_lock_bh(&pndevs->lock);
	list_for_each_entry(pnd, &pndevs->list, list) {
105 106 107
		dev = pnd->netdev;
		BUG_ON(!dev);

108
		if ((dev->reg_state == NETREG_REGISTERED) &&
109 110 111 112 113 114
			((pnd->netdev->flags & IFF_UP)) == IFF_UP)
			break;
		dev = NULL;
	}
	if (dev)
		dev_hold(dev);
115
	spin_unlock_bh(&pndevs->lock);
116 117 118 119 120
	return dev;
}

int phonet_address_add(struct net_device *dev, u8 addr)
{
121
	struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
122 123 124
	struct phonet_device *pnd;
	int err = 0;

125
	spin_lock_bh(&pndevs->lock);
126 127 128 129 130 131 132 133
	/* 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;
134
	spin_unlock_bh(&pndevs->lock);
135 136 137 138 139
	return err;
}

int phonet_address_del(struct net_device *dev, u8 addr)
{
140
	struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
141 142 143
	struct phonet_device *pnd;
	int err = 0;

144
	spin_lock_bh(&pndevs->lock);
145 146 147
	pnd = __phonet_get(dev);
	if (!pnd || !test_and_clear_bit(addr >> 2, pnd->addrs))
		err = -EADDRNOTAVAIL;
148 149 150 151
	else if (bitmap_empty(pnd->addrs, 64)) {
		list_del(&pnd->list);
		kfree(pnd);
	}
152
	spin_unlock_bh(&pndevs->lock);
153 154 155 156 157 158
	return err;
}

/* Gets a source address toward a destination, through a interface. */
u8 phonet_address_get(struct net_device *dev, u8 addr)
{
159
	struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
160 161
	struct phonet_device *pnd;

162
	spin_lock_bh(&pndevs->lock);
163 164 165 166 167 168 169 170 171
	pnd = __phonet_get(dev);
	if (pnd) {
		BUG_ON(bitmap_empty(pnd->addrs, 64));

		/* Use same source address as destination, if possible */
		if (!test_bit(addr >> 2, pnd->addrs))
			addr = find_first_bit(pnd->addrs, 64) << 2;
	} else
		addr = PN_NO_ADDR;
172
	spin_unlock_bh(&pndevs->lock);
173 174 175
	return addr;
}

176
int phonet_address_lookup(struct net *net, u8 addr)
177
{
178
	struct phonet_device_list *pndevs = phonet_device_list(net);
179
	struct phonet_device *pnd;
180
	int err = -EADDRNOTAVAIL;
181

182 183
	spin_lock_bh(&pndevs->lock);
	list_for_each_entry(pnd, &pndevs->list, list) {
184 185 186 187 188 189
		/* 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)) {
190 191
			err = 0;
			goto found;
192 193
		}
	}
194 195 196
found:
	spin_unlock_bh(&pndevs->lock);
	return err;
197 198
}

199 200 201 202 203 204 205 206 207 208 209 210 211
/* 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;
212 213 214 215 216 217 218 219

	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;
220 221
}

222 223 224 225 226 227
/* notify Phonet of device events */
static int phonet_device_notify(struct notifier_block *me, unsigned long what,
				void *arg)
{
	struct net_device *dev = arg;

228 229 230 231 232 233
	switch (what) {
	case NETDEV_REGISTER:
		if (dev->type == ARPHRD_PHONET)
			phonet_device_autoconf(dev);
		break;
	case NETDEV_UNREGISTER:
234
		phonet_device_destroy(dev);
235 236
		break;
	}
237 238 239 240 241 242 243 244 245
	return 0;

}

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

246 247 248 249 250 251 252
/* Per-namespace Phonet devices handling */
static int phonet_init_net(struct net *net)
{
	struct phonet_net *pnn = kmalloc(sizeof(*pnn), GFP_KERNEL);
	if (!pnn)
		return -ENOMEM;

253 254 255 256 257
	if (!proc_net_fops_create(net, "phonet", 0, &pn_sock_seq_fops)) {
		kfree(pnn);
		return -ENOMEM;
	}

258 259 260 261 262 263 264 265 266
	INIT_LIST_HEAD(&pnn->pndevs.list);
	spin_lock_init(&pnn->pndevs.lock);
	net_assign_generic(net, phonet_net_id, pnn);
	return 0;
}

static void phonet_exit_net(struct net *net)
{
	struct phonet_net *pnn = net_generic(net, phonet_net_id);
267
	struct net_device *dev;
268

269 270 271 272
	rtnl_lock();
	for_each_netdev(net, dev)
		phonet_device_destroy(dev);
	rtnl_unlock();
273 274

	proc_net_remove(net, "phonet");
275 276 277 278 279 280 281 282
	kfree(pnn);
}

static struct pernet_operations phonet_net_ops = {
	.init = phonet_init_net,
	.exit = phonet_exit_net,
};

283
/* Initialize Phonet devices list */
284
int __init phonet_device_init(void)
285
{
286 287 288
	int err = register_pernet_gen_device(&phonet_net_id, &phonet_net_ops);
	if (err)
		return err;
289

290
	register_netdevice_notifier(&phonet_device_notifier);
291 292 293 294
	err = phonet_netlink_register();
	if (err)
		phonet_device_exit();
	return err;
295 296 297 298 299
}

void phonet_device_exit(void)
{
	rtnl_unregister_all(PF_PHONET);
300
	unregister_netdevice_notifier(&phonet_device_notifier);
301
	unregister_pernet_gen_device(phonet_net_id, &phonet_net_ops);
302
}