vlan.c 17.0 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

E
Eric Dumazet 已提交
115
	grp = rtnl_dereference(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 (ops->ndo_vlan_rx_register)
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_FILTER) &&
160
	    (!ops->ndo_vlan_rx_add_vid || !ops->ndo_vlan_rx_kill_vid)) {
161
		pr_info("8021q: Device %s has buggy VLAN hw accel\n", name);
P
Patrick McHardy 已提交
162
		return -EOPNOTSUPP;
L
Linus Torvalds 已提交
163 164
	}

165
	if (vlan_find_dev(real_dev, vlan_id) != NULL)
P
Patrick McHardy 已提交
166
		return -EEXIST;
L
Linus Torvalds 已提交
167

P
Patrick McHardy 已提交
168 169 170
	return 0;
}

P
Patrick McHardy 已提交
171
int register_vlan_dev(struct net_device *dev)
172
{
173
	struct vlan_dev_info *vlan = vlan_dev_info(dev);
174
	struct net_device *real_dev = vlan->real_dev;
175
	const struct net_device_ops *ops = real_dev->netdev_ops;
176
	u16 vlan_id = vlan->vlan_id;
177 178 179
	struct vlan_group *grp, *ngrp = NULL;
	int err;

E
Eric Dumazet 已提交
180
	grp = rtnl_dereference(real_dev->vlgrp);
181
	if (!grp) {
182
		ngrp = grp = vlan_group_alloc(real_dev);
183 184
		if (!grp)
			return -ENOBUFS;
P
Patrick McHardy 已提交
185 186 187
		err = vlan_gvrp_init_applicant(real_dev);
		if (err < 0)
			goto out_free_group;
188 189
	}

190 191
	err = vlan_group_prealloc_vid(grp, vlan_id);
	if (err < 0)
P
Patrick McHardy 已提交
192
		goto out_uninit_applicant;
193

194 195
	err = register_netdevice(dev);
	if (err < 0)
P
Patrick McHardy 已提交
196
		goto out_uninit_applicant;
197 198 199 200

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

201
	netif_stacked_transfer_operstate(real_dev, dev);
202 203 204 205 206 207
	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);
208 209
	grp->nr_vlans++;

210
	if (ngrp) {
211
		if (ops->ndo_vlan_rx_register)
212 213 214
			ops->ndo_vlan_rx_register(real_dev, ngrp);
		rcu_assign_pointer(real_dev->vlgrp, ngrp);
	}
215
	if (real_dev->features & NETIF_F_HW_VLAN_FILTER)
216
		ops->ndo_vlan_rx_add_vid(real_dev, vlan_id);
217 218 219

	return 0;

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

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

242
	if (vlan_id >= VLAN_VID_MASK)
243
		return -ERANGE;
P
Patrick McHardy 已提交
244

245
	err = vlan_check_real_dev(real_dev, vlan_id);
246 247
	if (err < 0)
		return err;
P
Patrick McHardy 已提交
248

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

E
Eric Dumazet 已提交
275
	new_dev = alloc_netdev(sizeof(struct vlan_dev_info), name, vlan_setup);
276

L
Linus Torvalds 已提交
277
	if (new_dev == NULL)
278
		return -ENOBUFS;
L
Linus Torvalds 已提交
279

280
	dev_net_set(new_dev, net);
L
Linus Torvalds 已提交
281 282 283 284 285
	/* need 4 bytes for extra VLAN header info,
	 * hope the underlying device can handle it.
	 */
	new_dev->mtu = real_dev->mtu;

286
	vlan_dev_info(new_dev)->vlan_id = vlan_id;
287 288 289
	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 已提交
290

P
Patrick McHardy 已提交
291
	new_dev->rtnl_link_ops = &vlan_link_ops;
292 293
	err = register_vlan_dev(new_dev);
	if (err < 0)
294
		goto out_free_newdev;
L
Linus Torvalds 已提交
295

296
	return 0;
L
Linus Torvalds 已提交
297 298 299

out_free_newdev:
	free_netdev(new_dev);
300
	return err;
L
Linus Torvalds 已提交
301 302
}

303 304 305
static void vlan_sync_address(struct net_device *dev,
			      struct net_device *vlandev)
{
306
	struct vlan_dev_info *vlan = vlan_dev_info(vlandev);
307 308 309 310 311 312 313 314 315

	/* 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))
316
		dev_uc_del(dev, vlandev->dev_addr);
317 318 319 320 321

	/* 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))
322
		dev_uc_add(dev, vlandev->dev_addr);
323 324 325 326

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

327 328 329
static void vlan_transfer_features(struct net_device *dev,
				   struct net_device *vlandev)
{
330
	u32 old_features = vlandev->features;
331

332 333
	vlandev->features &= ~dev->vlan_features;
	vlandev->features |= dev->features & dev->vlan_features;
334
	vlandev->gso_max_size = dev->gso_max_size;
335 336 337 338 339 340

	if (dev->features & NETIF_F_HW_VLAN_TX)
		vlandev->hard_header_len = dev->hard_header_len;
	else
		vlandev->hard_header_len = dev->hard_header_len + VLAN_HLEN;

341 342 343
#if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
	vlandev->fcoe_ddp_xid = dev->fcoe_ddp_xid;
#endif
344 345 346 347
	if (old_features != vlandev->features)
		netdev_features_change(vlandev);
}

348 349 350 351 352 353 354 355 356
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;
357 358 359 360 361 362 363 364
	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;
365 366 367
	}
}

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

378
	if (is_vlan_dev(dev))
379 380
		__vlan_device_event(dev, event);

381 382 383 384 385 386 387 388
	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);
	}

E
Eric Dumazet 已提交
389
	grp = rtnl_dereference(dev->vlgrp);
L
Linus Torvalds 已提交
390 391 392 393 394 395 396 397 398 399
	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 */
400
		for (i = 0; i < VLAN_N_VID; i++) {
D
Dan Aloni 已提交
401
			vlandev = vlan_group_get_device(grp, i);
L
Linus Torvalds 已提交
402 403 404
			if (!vlandev)
				continue;

405
			netif_stacked_transfer_operstate(dev, vlandev);
L
Linus Torvalds 已提交
406 407 408
		}
		break;

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

416 417 418 419
			flgs = vlandev->flags;
			if (!(flgs & IFF_UP))
				continue;

420 421
			vlan_sync_address(dev, vlandev);
		}
422 423 424
		break;

	case NETDEV_CHANGEMTU:
425
		for (i = 0; i < VLAN_N_VID; i++) {
426 427 428 429 430 431 432 433 434
			vlandev = vlan_group_get_device(grp, i);
			if (!vlandev)
				continue;

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

			dev_set_mtu(vlandev, dev->mtu);
		}
435 436
		break;

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

			vlan_transfer_features(dev, vlandev);
		}

		break;

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

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

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

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

L
Linus Torvalds 已提交
474 475 476 477
			flgs = vlandev->flags;
			if (flgs & IFF_UP)
				continue;

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

L
Linus Torvalds 已提交
485
	case NETDEV_UNREGISTER:
486 487 488 489
		/* twiddle thumbs on netns device moves */
		if (dev->reg_state != NETREG_UNREGISTERING)
			break;

490 491 492
		/* Delete all VLANs for this dev. */
		grp->killall = 1;

493
		for (i = 0; i < VLAN_N_VID; i++) {
494 495 496 497 498 499 500
			vlandev = vlan_group_get_device(grp, i);
			if (!vlandev)
				continue;

			/* unregistration of last vlan destroys group, abort
			 * afterwards */
			if (grp->nr_vlans == 1)
501
				i = VLAN_N_VID;
502 503 504 505

			unregister_vlan_dev(vlandev, &list);
		}
		unregister_netdevice_many(&list);
L
Linus Torvalds 已提交
506
		break;
507 508 509 510

	case NETDEV_PRE_TYPE_CHANGE:
		/* Forbid underlaying device to change its type. */
		return NOTIFY_BAD;
511
	}
L
Linus Torvalds 已提交
512 513 514 515 516

out:
	return NOTIFY_DONE;
}

517 518 519 520
static struct notifier_block vlan_notifier_block __read_mostly = {
	.notifier_call = vlan_device_event,
};

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

	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;

539 540
	rtnl_lock();

L
Linus Torvalds 已提交
541 542
	switch (args.cmd) {
	case SET_VLAN_INGRESS_PRIORITY_CMD:
543 544 545 546 547 548 549
	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;
550
		dev = __dev_get_by_name(net, args.device1);
551 552 553 554
		if (!dev)
			goto out;

		err = -EINVAL;
J
Joonwoo Park 已提交
555
		if (args.cmd != ADD_VLAN_CMD && !is_vlan_dev(dev))
556 557 558 559 560 561
			goto out;
	}

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

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

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

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

			vn = net_generic(net, vlan_net_id);
			vn->name_type = args.u.name_type;
L
Linus Torvalds 已提交
598 599 600 601 602 603 604
			err = 0;
		} else {
			err = -EINVAL;
		}
		break;

	case ADD_VLAN_CMD:
605
		err = -EPERM;
L
Linus Torvalds 已提交
606
		if (!capable(CAP_NET_ADMIN))
607
			break;
608
		err = register_vlan_device(dev, args.u.VID);
L
Linus Torvalds 已提交
609 610 611
		break;

	case DEL_VLAN_CMD:
612
		err = -EPERM;
L
Linus Torvalds 已提交
613
		if (!capable(CAP_NET_ADMIN))
614
			break;
615
		unregister_vlan_dev(dev, NULL);
616
		err = 0;
L
Linus Torvalds 已提交
617 618 619
		break;

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

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

	default:
636
		err = -EOPNOTSUPP;
637
		break;
638
	}
639
out:
640
	rtnl_unlock();
L
Linus Torvalds 已提交
641 642 643
	return err;
}

644
static int __net_init vlan_init_net(struct net *net)
645
{
646
	struct vlan_net *vn = net_generic(net, vlan_net_id);
647 648
	int err;

649 650
	vn->name_type = VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD;

651 652
	err = vlan_proc_init(net);

653 654 655
	return err;
}

656
static void __net_exit vlan_exit_net(struct net *net)
657
{
658
	vlan_proc_cleanup(net);
659 660 661 662 663
}

static struct pernet_operations vlan_net_ops = {
	.init = vlan_init_net,
	.exit = vlan_exit_net,
664 665
	.id   = &vlan_net_id,
	.size = sizeof(struct vlan_net),
666 667
};

668 669 670 671 672 673 674
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);

675
	err = register_pernet_subsys(&vlan_net_ops);
676 677 678
	if (err < 0)
		goto err0;

679 680 681 682
	err = register_netdevice_notifier(&vlan_notifier_block);
	if (err < 0)
		goto err2;

P
Patrick McHardy 已提交
683
	err = vlan_gvrp_init();
684 685 686
	if (err < 0)
		goto err3;

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

691 692 693 694
	dev_add_pack(&vlan_packet_type);
	vlan_ioctl_set(vlan_ioctl_handler);
	return 0;

P
Patrick McHardy 已提交
695 696
err4:
	vlan_gvrp_uninit();
697 698 699
err3:
	unregister_netdevice_notifier(&vlan_notifier_block);
err2:
700
	unregister_pernet_subsys(&vlan_net_ops);
701
err0:
702 703 704 705 706 707 708 709 710 711 712 713
	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);

714
	unregister_pernet_subsys(&vlan_net_ops);
715
	rcu_barrier(); /* Wait for completion of call_rcu()'s */
P
Patrick McHardy 已提交
716 717

	vlan_gvrp_uninit();
718 719 720 721 722
}

module_init(vlan_proto_init);
module_exit(vlan_cleanup_module);

L
Linus Torvalds 已提交
723 724
MODULE_LICENSE("GPL");
MODULE_VERSION(DRV_VERSION);