vlan.c 17.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
/*
 * INET		802.1Q VLAN
 *		Ethernet-type device handling.
 *
 * Authors:	Ben Greear <greearb@candelatech.com>
P
Patrick McHardy 已提交
6
 *              Please send support related email to: netdev@vger.kernel.org
L
Linus Torvalds 已提交
7
 *              VLAN Home Page: http://www.candelatech.com/~greear/vlan.html
8
 *
L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17 18 19 20
 * Fixes:
 *              Fix for packet capture - Nick Eggleston <nick@dccinc.com>;
 *		Add HW acceleration hooks - David S. Miller <davem@redhat.com>;
 *		Correct all the locking - David S. Miller <davem@redhat.com>;
 *		Use hash table for VLAN groups - David S. Miller <davem@redhat.com>
 *
 *		This program is free software; you can redistribute it and/or
 *		modify it under the terms of the GNU General Public License
 *		as published by the Free Software Foundation; either version
 *		2 of the License, or (at your option) any later version.
 */

21
#include <linux/capability.h>
L
Linus Torvalds 已提交
22 23 24
#include <linux/module.h>
#include <linux/netdevice.h>
#include <linux/skbuff.h>
25
#include <linux/slab.h>
L
Linus Torvalds 已提交
26
#include <linux/init.h>
27
#include <linux/rculist.h>
L
Linus Torvalds 已提交
28 29 30 31
#include <net/p8022.h>
#include <net/arp.h>
#include <linux/rtnetlink.h>
#include <linux/notifier.h>
32
#include <net/rtnetlink.h>
33
#include <net/net_namespace.h>
34
#include <net/netns/generic.h>
35
#include <asm/uaccess.h>
L
Linus Torvalds 已提交
36 37 38 39 40 41 42 43 44

#include <linux/if_vlan.h>
#include "vlan.h"
#include "vlanproc.h"

#define DRV_VERSION "1.8"

/* Global VLAN variables */

45
int vlan_net_id __read_mostly;
46

47 48 49 50
const char vlan_fullname[] = "802.1Q VLAN Support";
const char vlan_version[] = DRV_VERSION;
static const char vlan_copyright[] = "Ben Greear <greearb@candelatech.com>";
static const char vlan_buggyright[] = "David S. Miller <davem@redhat.com>";
L
Linus Torvalds 已提交
51

52
static struct packet_type vlan_packet_type __read_mostly = {
53
	.type = cpu_to_be16(ETH_P_8021Q),
L
Linus Torvalds 已提交
54 55 56 57 58
	.func = vlan_skb_recv, /* VLAN receive method */
};

/* End of global variables definitions. */

D
Dan Aloni 已提交
59 60 61 62
static void vlan_group_free(struct vlan_group *grp)
{
	int i;

P
Patrick McHardy 已提交
63
	for (i = 0; i < VLAN_GROUP_ARRAY_SPLIT_PARTS; i++)
D
Dan Aloni 已提交
64 65 66 67
		kfree(grp->vlan_devices_arrays[i]);
	kfree(grp);
}

68
static struct vlan_group *vlan_group_alloc(struct net_device *real_dev)
69 70 71 72 73 74 75
{
	struct vlan_group *grp;

	grp = kzalloc(sizeof(struct vlan_group), GFP_KERNEL);
	if (!grp)
		return NULL;

76
	grp->real_dev = real_dev;
77
	return grp;
78
}
79

80
static int vlan_group_prealloc_vid(struct vlan_group *vg, u16 vlan_id)
81 82 83 84 85 86
{
	struct net_device **array;
	unsigned int size;

	ASSERT_RTNL();

87
	array = vg->vlan_devices_arrays[vlan_id / VLAN_GROUP_ARRAY_PART_LEN];
88 89 90 91 92 93 94 95
	if (array != NULL)
		return 0;

	size = sizeof(struct net_device *) * VLAN_GROUP_ARRAY_PART_LEN;
	array = kzalloc(size, GFP_KERNEL);
	if (array == NULL)
		return -ENOBUFS;

96
	vg->vlan_devices_arrays[vlan_id / VLAN_GROUP_ARRAY_PART_LEN] = array;
97
	return 0;
98 99
}

L
Linus Torvalds 已提交
100 101
static void vlan_rcu_free(struct rcu_head *rcu)
{
D
Dan Aloni 已提交
102
	vlan_group_free(container_of(rcu, struct vlan_group, rcu));
L
Linus Torvalds 已提交
103 104
}

105
void unregister_vlan_dev(struct net_device *dev, struct list_head *head)
L
Linus Torvalds 已提交
106
{
107
	struct vlan_dev_info *vlan = vlan_dev_info(dev);
108
	struct net_device *real_dev = vlan->real_dev;
109
	const struct net_device_ops *ops = real_dev->netdev_ops;
L
Linus Torvalds 已提交
110
	struct vlan_group *grp;
111
	u16 vlan_id = vlan->vlan_id;
L
Linus Torvalds 已提交
112 113

	ASSERT_RTNL();
114

115
	grp = real_dev->vlgrp;
116
	BUG_ON(!grp);
117 118

	/* Take it out of our own structures, but be sure to interlock with
119 120
	 * HW accelerating devices or SW vlan input packet processing if
	 * VLAN is not 0 (leave it there for 802.1p).
121
	 */
122
	if (vlan_id && (real_dev->features & NETIF_F_HW_VLAN_FILTER))
123
		ops->ndo_vlan_rx_kill_vid(real_dev, vlan_id);
L
Linus Torvalds 已提交
124

125
	grp->nr_vlans--;
126

127 128
	vlan_group_set_device(grp, vlan_id, NULL);
	if (!grp->killall)
129
		synchronize_net();
130

131
	unregister_netdevice_queue(dev, head);
132

133
	/* If the group is now empty, kill off the group. */
134
	if (grp->nr_vlans == 0) {
P
Patrick McHardy 已提交
135 136
		vlan_gvrp_uninit_applicant(real_dev);

137
		rcu_assign_pointer(real_dev->vlgrp, NULL);
138
		if (real_dev->features & NETIF_F_HW_VLAN_RX)
139
			ops->ndo_vlan_rx_register(real_dev, NULL);
140 141 142

		/* Free the group, after all cpu's are done. */
		call_rcu(&grp->rcu, vlan_rcu_free);
L
Linus Torvalds 已提交
143 144
	}

145 146
	/* Get rid of the vlan's reference to real_dev */
	dev_put(real_dev);
L
Linus Torvalds 已提交
147 148
}

149
int vlan_check_real_dev(struct net_device *real_dev, u16 vlan_id)
L
Linus Torvalds 已提交
150
{
151 152
	const char *name = real_dev->name;
	const struct net_device_ops *ops = real_dev->netdev_ops;
153

L
Linus Torvalds 已提交
154
	if (real_dev->features & NETIF_F_VLAN_CHALLENGED) {
155
		pr_info("8021q: VLANs not supported on %s\n", name);
P
Patrick McHardy 已提交
156
		return -EOPNOTSUPP;
L
Linus Torvalds 已提交
157 158
	}

159
	if ((real_dev->features & NETIF_F_HW_VLAN_RX) && !ops->ndo_vlan_rx_register) {
160
		pr_info("8021q: device %s has buggy VLAN hw accel\n", name);
P
Patrick McHardy 已提交
161
		return -EOPNOTSUPP;
L
Linus Torvalds 已提交
162 163 164
	}

	if ((real_dev->features & NETIF_F_HW_VLAN_FILTER) &&
165
	    (!ops->ndo_vlan_rx_add_vid || !ops->ndo_vlan_rx_kill_vid)) {
166
		pr_info("8021q: Device %s has buggy VLAN hw accel\n", name);
P
Patrick McHardy 已提交
167
		return -EOPNOTSUPP;
L
Linus Torvalds 已提交
168 169
	}

170
	if (vlan_find_dev(real_dev, vlan_id) != NULL)
P
Patrick McHardy 已提交
171
		return -EEXIST;
L
Linus Torvalds 已提交
172

P
Patrick McHardy 已提交
173 174 175
	return 0;
}

P
Patrick McHardy 已提交
176
int register_vlan_dev(struct net_device *dev)
177
{
178
	struct vlan_dev_info *vlan = vlan_dev_info(dev);
179
	struct net_device *real_dev = vlan->real_dev;
180
	const struct net_device_ops *ops = real_dev->netdev_ops;
181
	u16 vlan_id = vlan->vlan_id;
182 183 184
	struct vlan_group *grp, *ngrp = NULL;
	int err;

185
	grp = real_dev->vlgrp;
186
	if (!grp) {
187
		ngrp = grp = vlan_group_alloc(real_dev);
188 189
		if (!grp)
			return -ENOBUFS;
P
Patrick McHardy 已提交
190 191 192
		err = vlan_gvrp_init_applicant(real_dev);
		if (err < 0)
			goto out_free_group;
193 194
	}

195 196
	err = vlan_group_prealloc_vid(grp, vlan_id);
	if (err < 0)
P
Patrick McHardy 已提交
197
		goto out_uninit_applicant;
198

199 200
	err = register_netdevice(dev);
	if (err < 0)
P
Patrick McHardy 已提交
201
		goto out_uninit_applicant;
202 203 204 205

	/* Account for reference in struct vlan_dev_info */
	dev_hold(real_dev);

206
	netif_stacked_transfer_operstate(real_dev, dev);
207 208 209 210 211 212
	linkwatch_fire_event(dev); /* _MUST_ call rfc2863_policy() */

	/* So, got the sucker initialized, now lets place
	 * it into our local structure.
	 */
	vlan_group_set_device(grp, vlan_id, dev);
213 214
	grp->nr_vlans++;

215 216 217 218 219
	if (ngrp) {
		if (real_dev->features & NETIF_F_HW_VLAN_RX)
			ops->ndo_vlan_rx_register(real_dev, ngrp);
		rcu_assign_pointer(real_dev->vlgrp, ngrp);
	}
220
	if (real_dev->features & NETIF_F_HW_VLAN_FILTER)
221
		ops->ndo_vlan_rx_add_vid(real_dev, vlan_id);
222 223 224

	return 0;

P
Patrick McHardy 已提交
225 226 227
out_uninit_applicant:
	if (ngrp)
		vlan_gvrp_uninit_applicant(real_dev);
228
out_free_group:
229 230 231 232
	if (ngrp) {
		/* Free the group, after all cpu's are done. */
		call_rcu(&ngrp->rcu, vlan_rcu_free);
	}
233 234 235
	return err;
}

P
Patrick McHardy 已提交
236
/*  Attach a VLAN device to a mac address (ie Ethernet Card).
237
 *  Returns 0 if the device was created or a negative error code otherwise.
P
Patrick McHardy 已提交
238
 */
239
static int register_vlan_device(struct net_device *real_dev, u16 vlan_id)
P
Patrick McHardy 已提交
240 241
{
	struct net_device *new_dev;
242 243
	struct net *net = dev_net(real_dev);
	struct vlan_net *vn = net_generic(net, vlan_net_id);
P
Patrick McHardy 已提交
244
	char name[IFNAMSIZ];
245
	int err;
P
Patrick McHardy 已提交
246

247
	if (vlan_id >= VLAN_VID_MASK)
248
		return -ERANGE;
P
Patrick McHardy 已提交
249

250
	err = vlan_check_real_dev(real_dev, vlan_id);
251 252
	if (err < 0)
		return err;
P
Patrick McHardy 已提交
253

L
Linus Torvalds 已提交
254
	/* Gotta set up the fields for the device. */
255
	switch (vn->name_type) {
L
Linus Torvalds 已提交
256 257
	case VLAN_NAME_TYPE_RAW_PLUS_VID:
		/* name will look like:	 eth1.0005 */
258
		snprintf(name, IFNAMSIZ, "%s.%.4i", real_dev->name, vlan_id);
L
Linus Torvalds 已提交
259 260 261 262 263
		break;
	case VLAN_NAME_TYPE_PLUS_VID_NO_PAD:
		/* Put our vlan.VID in the name.
		 * Name will look like:	 vlan5
		 */
264
		snprintf(name, IFNAMSIZ, "vlan%i", vlan_id);
L
Linus Torvalds 已提交
265 266 267 268 269
		break;
	case VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD:
		/* Put our vlan.VID in the name.
		 * Name will look like:	 eth0.5
		 */
270
		snprintf(name, IFNAMSIZ, "%s.%i", real_dev->name, vlan_id);
L
Linus Torvalds 已提交
271 272 273 274 275 276
		break;
	case VLAN_NAME_TYPE_PLUS_VID:
		/* Put our vlan.VID in the name.
		 * Name will look like:	 vlan0005
		 */
	default:
277
		snprintf(name, IFNAMSIZ, "vlan%.4i", vlan_id);
278
	}
279

E
Eric Dumazet 已提交
280 281
	new_dev = alloc_netdev_mq(sizeof(struct vlan_dev_info), name,
				  vlan_setup, real_dev->num_tx_queues);
282

L
Linus Torvalds 已提交
283
	if (new_dev == NULL)
284
		return -ENOBUFS;
L
Linus Torvalds 已提交
285

286
	netif_copy_real_num_queues(new_dev, real_dev);
287
	dev_net_set(new_dev, net);
L
Linus Torvalds 已提交
288 289 290 291 292
	/* need 4 bytes for extra VLAN header info,
	 * hope the underlying device can handle it.
	 */
	new_dev->mtu = real_dev->mtu;

293
	vlan_dev_info(new_dev)->vlan_id = vlan_id;
294 295 296
	vlan_dev_info(new_dev)->real_dev = real_dev;
	vlan_dev_info(new_dev)->dent = NULL;
	vlan_dev_info(new_dev)->flags = VLAN_FLAG_REORDER_HDR;
L
Linus Torvalds 已提交
297

P
Patrick McHardy 已提交
298
	new_dev->rtnl_link_ops = &vlan_link_ops;
299 300
	err = register_vlan_dev(new_dev);
	if (err < 0)
301
		goto out_free_newdev;
L
Linus Torvalds 已提交
302

303
	return 0;
L
Linus Torvalds 已提交
304 305 306

out_free_newdev:
	free_netdev(new_dev);
307
	return err;
L
Linus Torvalds 已提交
308 309
}

310 311 312
static void vlan_sync_address(struct net_device *dev,
			      struct net_device *vlandev)
{
313
	struct vlan_dev_info *vlan = vlan_dev_info(vlandev);
314 315 316 317 318 319 320 321 322

	/* May be called without an actual change */
	if (!compare_ether_addr(vlan->real_dev_addr, dev->dev_addr))
		return;

	/* vlan address was different from the old address and is equal to
	 * the new address */
	if (compare_ether_addr(vlandev->dev_addr, vlan->real_dev_addr) &&
	    !compare_ether_addr(vlandev->dev_addr, dev->dev_addr))
323
		dev_uc_del(dev, vlandev->dev_addr);
324 325 326 327 328

	/* vlan address was equal to the old address and is different from
	 * the new address */
	if (!compare_ether_addr(vlandev->dev_addr, vlan->real_dev_addr) &&
	    compare_ether_addr(vlandev->dev_addr, dev->dev_addr))
329
		dev_uc_add(dev, vlandev->dev_addr);
330 331 332 333

	memcpy(vlan->real_dev_addr, dev->dev_addr, ETH_ALEN);
}

334 335 336 337 338
static void vlan_transfer_features(struct net_device *dev,
				   struct net_device *vlandev)
{
	unsigned long old_features = vlandev->features;

339 340
	vlandev->features &= ~dev->vlan_features;
	vlandev->features |= dev->features & dev->vlan_features;
341
	vlandev->gso_max_size = dev->gso_max_size;
342 343 344
#if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
	vlandev->fcoe_ddp_xid = dev->fcoe_ddp_xid;
#endif
V
Vasu Dev 已提交
345 346
	vlandev->real_num_tx_queues = dev->real_num_tx_queues;
	BUG_ON(vlandev->real_num_tx_queues > vlandev->num_tx_queues);
347 348 349 350 351

	if (old_features != vlandev->features)
		netdev_features_change(vlandev);
}

352 353 354 355 356 357 358 359 360
static void __vlan_device_event(struct net_device *dev, unsigned long event)
{
	switch (event) {
	case NETDEV_CHANGENAME:
		vlan_proc_rem_dev(dev);
		if (vlan_proc_add_dev(dev) < 0)
			pr_warning("8021q: failed to change proc name for %s\n",
					dev->name);
		break;
361 362 363 364 365 366 367 368
	case NETDEV_REGISTER:
		if (vlan_proc_add_dev(dev) < 0)
			pr_warning("8021q: failed to add proc entry for %s\n",
					dev->name);
		break;
	case NETDEV_UNREGISTER:
		vlan_proc_rem_dev(dev);
		break;
369 370 371
	}
}

P
Patrick McHardy 已提交
372 373
static int vlan_device_event(struct notifier_block *unused, unsigned long event,
			     void *ptr)
L
Linus Torvalds 已提交
374 375
{
	struct net_device *dev = ptr;
376
	struct vlan_group *grp;
L
Linus Torvalds 已提交
377 378
	int i, flgs;
	struct net_device *vlandev;
379
	struct vlan_dev_info *vlan;
380
	LIST_HEAD(list);
L
Linus Torvalds 已提交
381

382
	if (is_vlan_dev(dev))
383 384
		__vlan_device_event(dev, event);

385 386 387 388 389 390 391 392
	if ((event == NETDEV_UP) &&
	    (dev->features & NETIF_F_HW_VLAN_FILTER) &&
	    dev->netdev_ops->ndo_vlan_rx_add_vid) {
		pr_info("8021q: adding VLAN 0 to HW filter on device %s\n",
			dev->name);
		dev->netdev_ops->ndo_vlan_rx_add_vid(dev, 0);
	}

393
	grp = dev->vlgrp;
L
Linus Torvalds 已提交
394 395 396 397 398 399 400 401 402 403
	if (!grp)
		goto out;

	/* It is OK that we do not hold the group lock right now,
	 * as we run under the RTNL lock.
	 */

	switch (event) {
	case NETDEV_CHANGE:
		/* Propagate real device state to vlan devices */
404
		for (i = 0; i < VLAN_N_VID; i++) {
D
Dan Aloni 已提交
405
			vlandev = vlan_group_get_device(grp, i);
L
Linus Torvalds 已提交
406 407 408
			if (!vlandev)
				continue;

409
			netif_stacked_transfer_operstate(dev, vlandev);
L
Linus Torvalds 已提交
410 411 412
		}
		break;

413 414
	case NETDEV_CHANGEADDR:
		/* Adjust unicast filters on underlying device */
415
		for (i = 0; i < VLAN_N_VID; i++) {
416 417 418 419
			vlandev = vlan_group_get_device(grp, i);
			if (!vlandev)
				continue;

420 421 422 423
			flgs = vlandev->flags;
			if (!(flgs & IFF_UP))
				continue;

424 425
			vlan_sync_address(dev, vlandev);
		}
426 427 428
		break;

	case NETDEV_CHANGEMTU:
429
		for (i = 0; i < VLAN_N_VID; i++) {
430 431 432 433 434 435 436 437 438
			vlandev = vlan_group_get_device(grp, i);
			if (!vlandev)
				continue;

			if (vlandev->mtu <= dev->mtu)
				continue;

			dev_set_mtu(vlandev, dev->mtu);
		}
439 440
		break;

441 442
	case NETDEV_FEAT_CHANGE:
		/* Propagate device features to underlying device */
443
		for (i = 0; i < VLAN_N_VID; i++) {
444 445 446 447 448 449 450 451 452
			vlandev = vlan_group_get_device(grp, i);
			if (!vlandev)
				continue;

			vlan_transfer_features(dev, vlandev);
		}

		break;

L
Linus Torvalds 已提交
453 454
	case NETDEV_DOWN:
		/* Put all VLANs for this dev in the down state too.  */
455
		for (i = 0; i < VLAN_N_VID; i++) {
D
Dan Aloni 已提交
456
			vlandev = vlan_group_get_device(grp, i);
L
Linus Torvalds 已提交
457 458 459 460 461 462 463
			if (!vlandev)
				continue;

			flgs = vlandev->flags;
			if (!(flgs & IFF_UP))
				continue;

464 465 466
			vlan = vlan_dev_info(vlandev);
			if (!(vlan->flags & VLAN_FLAG_LOOSE_BINDING))
				dev_change_flags(vlandev, flgs & ~IFF_UP);
467
			netif_stacked_transfer_operstate(dev, vlandev);
L
Linus Torvalds 已提交
468 469 470 471 472
		}
		break;

	case NETDEV_UP:
		/* Put all VLANs for this dev in the up state too.  */
473
		for (i = 0; i < VLAN_N_VID; i++) {
D
Dan Aloni 已提交
474
			vlandev = vlan_group_get_device(grp, i);
L
Linus Torvalds 已提交
475 476
			if (!vlandev)
				continue;
477

L
Linus Torvalds 已提交
478 479 480 481
			flgs = vlandev->flags;
			if (flgs & IFF_UP)
				continue;

482 483 484
			vlan = vlan_dev_info(vlandev);
			if (!(vlan->flags & VLAN_FLAG_LOOSE_BINDING))
				dev_change_flags(vlandev, flgs | IFF_UP);
485
			netif_stacked_transfer_operstate(dev, vlandev);
L
Linus Torvalds 已提交
486 487
		}
		break;
488

L
Linus Torvalds 已提交
489
	case NETDEV_UNREGISTER:
490 491 492 493
		/* twiddle thumbs on netns device moves */
		if (dev->reg_state != NETREG_UNREGISTERING)
			break;

494 495 496
		/* Delete all VLANs for this dev. */
		grp->killall = 1;

497
		for (i = 0; i < VLAN_N_VID; i++) {
498 499 500 501 502 503 504
			vlandev = vlan_group_get_device(grp, i);
			if (!vlandev)
				continue;

			/* unregistration of last vlan destroys group, abort
			 * afterwards */
			if (grp->nr_vlans == 1)
505
				i = VLAN_N_VID;
506 507 508 509

			unregister_vlan_dev(vlandev, &list);
		}
		unregister_netdevice_many(&list);
L
Linus Torvalds 已提交
510
		break;
511 512 513 514

	case NETDEV_PRE_TYPE_CHANGE:
		/* Forbid underlaying device to change its type. */
		return NOTIFY_BAD;
515
	}
L
Linus Torvalds 已提交
516 517 518 519 520

out:
	return NOTIFY_DONE;
}

521 522 523 524
static struct notifier_block vlan_notifier_block __read_mostly = {
	.notifier_call = vlan_device_event,
};

L
Linus Torvalds 已提交
525 526 527 528 529
/*
 *	VLAN IOCTL handler.
 *	o execute requested action or pass command to the device driver
 *   arg is really a struct vlan_ioctl_args __user *.
 */
530
static int vlan_ioctl_handler(struct net *net, void __user *arg)
L
Linus Torvalds 已提交
531
{
532
	int err;
L
Linus Torvalds 已提交
533
	struct vlan_ioctl_args args;
534
	struct net_device *dev = NULL;
L
Linus Torvalds 已提交
535 536 537 538 539 540 541 542

	if (copy_from_user(&args, arg, sizeof(struct vlan_ioctl_args)))
		return -EFAULT;

	/* Null terminate this sucker, just in case. */
	args.device1[23] = 0;
	args.u.device2[23] = 0;

543 544
	rtnl_lock();

L
Linus Torvalds 已提交
545 546
	switch (args.cmd) {
	case SET_VLAN_INGRESS_PRIORITY_CMD:
547 548 549 550 551 552 553
	case SET_VLAN_EGRESS_PRIORITY_CMD:
	case SET_VLAN_FLAG_CMD:
	case ADD_VLAN_CMD:
	case DEL_VLAN_CMD:
	case GET_VLAN_REALDEV_NAME_CMD:
	case GET_VLAN_VID_CMD:
		err = -ENODEV;
554
		dev = __dev_get_by_name(net, args.device1);
555 556 557 558
		if (!dev)
			goto out;

		err = -EINVAL;
J
Joonwoo Park 已提交
559
		if (args.cmd != ADD_VLAN_CMD && !is_vlan_dev(dev))
560 561 562 563 564 565
			goto out;
	}

	switch (args.cmd) {
	case SET_VLAN_INGRESS_PRIORITY_CMD:
		err = -EPERM;
L
Linus Torvalds 已提交
566
		if (!capable(CAP_NET_ADMIN))
567 568 569 570
			break;
		vlan_dev_set_ingress_priority(dev,
					      args.u.skb_priority,
					      args.vlan_qos);
571
		err = 0;
L
Linus Torvalds 已提交
572 573 574
		break;

	case SET_VLAN_EGRESS_PRIORITY_CMD:
575
		err = -EPERM;
L
Linus Torvalds 已提交
576
		if (!capable(CAP_NET_ADMIN))
577 578
			break;
		err = vlan_dev_set_egress_priority(dev,
L
Linus Torvalds 已提交
579 580 581 582 583
						   args.u.skb_priority,
						   args.vlan_qos);
		break;

	case SET_VLAN_FLAG_CMD:
584
		err = -EPERM;
L
Linus Torvalds 已提交
585
		if (!capable(CAP_NET_ADMIN))
586
			break;
587 588 589
		err = vlan_dev_change_flags(dev,
					    args.vlan_qos ? args.u.flag : 0,
					    args.u.flag);
L
Linus Torvalds 已提交
590 591 592
		break;

	case SET_VLAN_NAME_TYPE_CMD:
593
		err = -EPERM;
L
Linus Torvalds 已提交
594
		if (!capable(CAP_NET_ADMIN))
595
			break;
596 597
		if ((args.u.name_type >= 0) &&
		    (args.u.name_type < VLAN_NAME_TYPE_HIGHEST)) {
598 599 600 601
			struct vlan_net *vn;

			vn = net_generic(net, vlan_net_id);
			vn->name_type = args.u.name_type;
L
Linus Torvalds 已提交
602 603 604 605 606 607 608
			err = 0;
		} else {
			err = -EINVAL;
		}
		break;

	case ADD_VLAN_CMD:
609
		err = -EPERM;
L
Linus Torvalds 已提交
610
		if (!capable(CAP_NET_ADMIN))
611
			break;
612
		err = register_vlan_device(dev, args.u.VID);
L
Linus Torvalds 已提交
613 614 615
		break;

	case DEL_VLAN_CMD:
616
		err = -EPERM;
L
Linus Torvalds 已提交
617
		if (!capable(CAP_NET_ADMIN))
618
			break;
619
		unregister_vlan_dev(dev, NULL);
620
		err = 0;
L
Linus Torvalds 已提交
621 622 623
		break;

	case GET_VLAN_REALDEV_NAME_CMD:
624
		err = 0;
625
		vlan_dev_get_realdev_name(dev, args.u.device2);
L
Linus Torvalds 已提交
626
		if (copy_to_user(arg, &args,
P
Patrick McHardy 已提交
627
				 sizeof(struct vlan_ioctl_args)))
L
Linus Torvalds 已提交
628 629 630 631
			err = -EFAULT;
		break;

	case GET_VLAN_VID_CMD:
632
		err = 0;
633
		args.u.VID = vlan_dev_vlan_id(dev);
L
Linus Torvalds 已提交
634
		if (copy_to_user(arg, &args,
P
Patrick McHardy 已提交
635
				 sizeof(struct vlan_ioctl_args)))
636
		      err = -EFAULT;
L
Linus Torvalds 已提交
637 638 639
		break;

	default:
640
		err = -EOPNOTSUPP;
641
		break;
642
	}
643
out:
644
	rtnl_unlock();
L
Linus Torvalds 已提交
645 646 647
	return err;
}

648
static int __net_init vlan_init_net(struct net *net)
649
{
650
	struct vlan_net *vn = net_generic(net, vlan_net_id);
651 652
	int err;

653 654
	vn->name_type = VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD;

655 656
	err = vlan_proc_init(net);

657 658 659
	return err;
}

660
static void __net_exit vlan_exit_net(struct net *net)
661
{
662
	vlan_proc_cleanup(net);
663 664 665 666 667
}

static struct pernet_operations vlan_net_ops = {
	.init = vlan_init_net,
	.exit = vlan_exit_net,
668 669
	.id   = &vlan_net_id,
	.size = sizeof(struct vlan_net),
670 671
};

672 673 674 675 676 677 678
static int __init vlan_proto_init(void)
{
	int err;

	pr_info("%s v%s %s\n", vlan_fullname, vlan_version, vlan_copyright);
	pr_info("All bugs added by %s\n", vlan_buggyright);

679
	err = register_pernet_subsys(&vlan_net_ops);
680 681 682
	if (err < 0)
		goto err0;

683 684 685 686
	err = register_netdevice_notifier(&vlan_notifier_block);
	if (err < 0)
		goto err2;

P
Patrick McHardy 已提交
687
	err = vlan_gvrp_init();
688 689 690
	if (err < 0)
		goto err3;

P
Patrick McHardy 已提交
691 692 693 694
	err = vlan_netlink_init();
	if (err < 0)
		goto err4;

695 696 697 698
	dev_add_pack(&vlan_packet_type);
	vlan_ioctl_set(vlan_ioctl_handler);
	return 0;

P
Patrick McHardy 已提交
699 700
err4:
	vlan_gvrp_uninit();
701 702 703
err3:
	unregister_netdevice_notifier(&vlan_notifier_block);
err2:
704
	unregister_pernet_subsys(&vlan_net_ops);
705
err0:
706 707 708 709 710 711 712 713 714 715 716 717
	return err;
}

static void __exit vlan_cleanup_module(void)
{
	vlan_ioctl_set(NULL);
	vlan_netlink_fini();

	unregister_netdevice_notifier(&vlan_notifier_block);

	dev_remove_pack(&vlan_packet_type);

718
	unregister_pernet_subsys(&vlan_net_ops);
719
	rcu_barrier(); /* Wait for completion of call_rcu()'s */
P
Patrick McHardy 已提交
720 721

	vlan_gvrp_uninit();
722 723 724 725 726
}

module_init(vlan_proto_init);
module_exit(vlan_cleanup_module);

L
Linus Torvalds 已提交
727 728
MODULE_LICENSE("GPL");
MODULE_VERSION(DRV_VERSION);