blob: 69a9e0207b13092280912b2de487a9c98f397877 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INET 802.1Q VLAN
3 * Ethernet-type device handling.
4 *
5 * Authors: Ben Greear <greearb@candelatech.com>
6 * Please send support related email to: vlan@scry.wanfear.com
7 * VLAN Home Page: http://www.candelatech.com/~greear/vlan.html
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +09008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Fixes:
10 * Fix for packet capture - Nick Eggleston <nick@dccinc.com>;
11 * Add HW acceleration hooks - David S. Miller <davem@redhat.com>;
12 * Correct all the locking - David S. Miller <davem@redhat.com>;
13 * Use hash table for VLAN groups - David S. Miller <davem@redhat.com>
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
19 */
20
21#include <asm/uaccess.h> /* for copy_from_user */
Randy Dunlap4fc268d2006-01-11 12:17:47 -080022#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/module.h>
24#include <linux/netdevice.h>
25#include <linux/skbuff.h>
26#include <net/datalink.h>
27#include <linux/mm.h>
28#include <linux/in.h>
29#include <linux/init.h>
30#include <net/p8022.h>
31#include <net/arp.h>
32#include <linux/rtnetlink.h>
33#include <linux/notifier.h>
Eric W. Biedermane9dc8652007-09-12 13:02:17 +020034#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36#include <linux/if_vlan.h>
37#include "vlan.h"
38#include "vlanproc.h"
39
40#define DRV_VERSION "1.8"
41
42/* Global VLAN variables */
43
44/* Our listing of VLAN group(s) */
45static struct hlist_head vlan_group_hash[VLAN_GRP_HASH_SIZE];
46#define vlan_grp_hashfn(IDX) ((((IDX) >> VLAN_GRP_HASH_SHIFT) ^ (IDX)) & VLAN_GRP_HASH_MASK)
47
48static char vlan_fullname[] = "802.1Q VLAN Support";
49static char vlan_version[] = DRV_VERSION;
50static char vlan_copyright[] = "Ben Greear <greearb@candelatech.com>";
51static char vlan_buggyright[] = "David S. Miller <davem@redhat.com>";
52
53static int vlan_device_event(struct notifier_block *, unsigned long, void *);
Eric W. Biederman881d9662007-09-17 11:56:21 -070054static int vlan_ioctl_handler(struct net *net, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055static int unregister_vlan_dev(struct net_device *, unsigned short );
56
57static struct notifier_block vlan_notifier_block = {
58 .notifier_call = vlan_device_event,
59};
60
61/* These may be changed at run-time through IOCTLs */
62
63/* Determines interface naming scheme. */
64unsigned short vlan_name_type = VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD;
65
66static struct packet_type vlan_packet_type = {
67 .type = __constant_htons(ETH_P_8021Q),
68 .func = vlan_skb_recv, /* VLAN receive method */
69};
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/* End of global variables definitions. */
72
73/*
74 * Function vlan_proto_init (pro)
75 *
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +090076 * Initialize VLAN protocol layer,
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 *
78 */
79static int __init vlan_proto_init(void)
80{
81 int err;
82
Patrick McHardy40f98e12008-01-21 00:24:30 -080083 pr_info("%s v%s %s\n", vlan_fullname, vlan_version, vlan_copyright);
84 pr_info("All bugs added by %s\n", vlan_buggyright);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86 /* proc file system initialization */
87 err = vlan_proc_init();
88 if (err < 0) {
Patrick McHardy40f98e12008-01-21 00:24:30 -080089 pr_err("%s: can't create entry in proc filesystem!\n",
Patrick McHardyb7a4a832008-01-21 00:19:16 -080090 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 return err;
92 }
93
94 dev_add_pack(&vlan_packet_type);
95
96 /* Register us to receive netdevice events */
97 err = register_netdevice_notifier(&vlan_notifier_block);
Patrick McHardy07b5b172007-06-13 12:07:54 -070098 if (err < 0)
99 goto err1;
100
101 err = vlan_netlink_init();
102 if (err < 0)
103 goto err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105 vlan_ioctl_set(vlan_ioctl_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return 0;
Patrick McHardy07b5b172007-06-13 12:07:54 -0700107
108err2:
109 unregister_netdevice_notifier(&vlan_notifier_block);
110err1:
111 vlan_proc_cleanup();
112 dev_remove_pack(&vlan_packet_type);
113 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116/*
117 * Module 'remove' entry point.
118 * o delete /proc/net/router directory and static entries.
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900119 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120static void __exit vlan_cleanup_module(void)
121{
122 int i;
123
124 vlan_ioctl_set(NULL);
Pavel Emelyanov3f03e382007-12-11 02:41:25 -0800125 vlan_netlink_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 /* Un-register us from receiving netdevice events */
128 unregister_netdevice_notifier(&vlan_notifier_block);
129
130 dev_remove_pack(&vlan_packet_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 /* This table must be empty if there are no module
133 * references left.
134 */
135 for (i = 0; i < VLAN_GRP_HASH_SIZE; i++) {
136 BUG_ON(!hlist_empty(&vlan_group_hash[i]));
137 }
138 vlan_proc_cleanup();
139
140 synchronize_net();
141}
142
143module_init(vlan_proto_init);
144module_exit(vlan_cleanup_module);
145
146/* Must be invoked with RCU read lock (no preempt) */
147static struct vlan_group *__vlan_find_group(int real_dev_ifindex)
148{
149 struct vlan_group *grp;
150 struct hlist_node *n;
151 int hash = vlan_grp_hashfn(real_dev_ifindex);
152
153 hlist_for_each_entry_rcu(grp, n, &vlan_group_hash[hash], hlist) {
154 if (grp->real_dev_ifindex == real_dev_ifindex)
155 return grp;
156 }
157
158 return NULL;
159}
160
161/* Find the protocol handler. Assumes VID < VLAN_VID_MASK.
162 *
163 * Must be invoked with RCU read lock (no preempt)
164 */
165struct net_device *__find_vlan_dev(struct net_device *real_dev,
166 unsigned short VID)
167{
168 struct vlan_group *grp = __vlan_find_group(real_dev->ifindex);
169
170 if (grp)
Dan Aloni5c15bde2007-03-02 20:44:51 -0800171 return vlan_group_get_device(grp, VID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 return NULL;
174}
175
Dan Aloni5c15bde2007-03-02 20:44:51 -0800176static void vlan_group_free(struct vlan_group *grp)
177{
178 int i;
179
180 for (i=0; i < VLAN_GROUP_ARRAY_SPLIT_PARTS; i++)
181 kfree(grp->vlan_devices_arrays[i]);
182 kfree(grp);
183}
184
Patrick McHardy42429aa2007-06-13 12:05:59 -0700185static struct vlan_group *vlan_group_alloc(int ifindex)
186{
187 struct vlan_group *grp;
188 unsigned int size;
189 unsigned int i;
190
191 grp = kzalloc(sizeof(struct vlan_group), GFP_KERNEL);
192 if (!grp)
193 return NULL;
194
195 size = sizeof(struct net_device *) * VLAN_GROUP_ARRAY_PART_LEN;
196
197 for (i = 0; i < VLAN_GROUP_ARRAY_SPLIT_PARTS; i++) {
198 grp->vlan_devices_arrays[i] = kzalloc(size, GFP_KERNEL);
199 if (!grp->vlan_devices_arrays[i])
200 goto err;
201 }
202
203 grp->real_dev_ifindex = ifindex;
204 hlist_add_head_rcu(&grp->hlist,
205 &vlan_group_hash[vlan_grp_hashfn(ifindex)]);
206 return grp;
207
208err:
209 vlan_group_free(grp);
210 return NULL;
211}
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213static void vlan_rcu_free(struct rcu_head *rcu)
214{
Dan Aloni5c15bde2007-03-02 20:44:51 -0800215 vlan_group_free(container_of(rcu, struct vlan_group, rcu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
218
219/* This returns 0 if everything went fine.
220 * It will return 1 if the group was killed as a result.
221 * A negative return indicates failure.
222 *
223 * The RTNL lock must be held.
224 */
225static int unregister_vlan_dev(struct net_device *real_dev,
226 unsigned short vlan_id)
227{
228 struct net_device *dev = NULL;
229 int real_dev_ifindex = real_dev->ifindex;
230 struct vlan_group *grp;
231 int i, ret;
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 /* sanity check */
234 if (vlan_id >= VLAN_VID_MASK)
235 return -EINVAL;
236
237 ASSERT_RTNL();
238 grp = __vlan_find_group(real_dev_ifindex);
239
240 ret = 0;
241
242 if (grp) {
Dan Aloni5c15bde2007-03-02 20:44:51 -0800243 dev = vlan_group_get_device(grp, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (dev) {
245 /* Remove proc entry */
246 vlan_proc_rem_dev(dev);
247
248 /* Take it out of our own structures, but be sure to
249 * interlock with HW accelerating devices or SW vlan
250 * input packet processing.
251 */
Stephen Hemmingerd2d1acd2007-06-01 09:43:57 -0700252 if (real_dev->features & NETIF_F_HW_VLAN_FILTER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 real_dev->vlan_rx_kill_vid(real_dev, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Dan Aloni5c15bde2007-03-02 20:44:51 -0800255 vlan_group_set_device(grp, vlan_id, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 synchronize_net();
257
258
259 /* Caller unregisters (and if necessary, puts)
260 * VLAN device, but we get rid of the reference to
261 * real_dev here.
262 */
263 dev_put(real_dev);
264
265 /* If the group is now empty, kill off the
266 * group.
267 */
268 for (i = 0; i < VLAN_VID_MASK; i++)
Dan Aloni5c15bde2007-03-02 20:44:51 -0800269 if (vlan_group_get_device(grp, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 break;
271
272 if (i == VLAN_VID_MASK) {
273 if (real_dev->features & NETIF_F_HW_VLAN_RX)
274 real_dev->vlan_rx_register(real_dev, NULL);
275
276 hlist_del_rcu(&grp->hlist);
277
278 /* Free the group, after all cpu's are done. */
279 call_rcu(&grp->rcu, vlan_rcu_free);
280
281 grp = NULL;
282 ret = 1;
283 }
284 }
285 }
286
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900287 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
Patrick McHardy07b5b172007-06-13 12:07:54 -0700290int unregister_vlan_device(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 int ret;
293
Patrick McHardyc17d8872007-06-13 12:05:22 -0700294 ret = unregister_vlan_dev(VLAN_DEV_INFO(dev)->real_dev,
295 VLAN_DEV_INFO(dev)->vlan_id);
296 unregister_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Patrick McHardyc17d8872007-06-13 12:05:22 -0700298 if (ret == 1)
299 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 return ret;
301}
302
Stefan Rompfddd7bf92006-03-20 17:11:41 -0800303static void vlan_transfer_operstate(const struct net_device *dev, struct net_device *vlandev)
304{
305 /* Have to respect userspace enforced dormant state
306 * of real device, also must allow supplicant running
307 * on VLAN device
308 */
309 if (dev->operstate == IF_OPER_DORMANT)
310 netif_dormant_on(vlandev);
311 else
312 netif_dormant_off(vlandev);
313
314 if (netif_carrier_ok(dev)) {
315 if (!netif_carrier_ok(vlandev))
316 netif_carrier_on(vlandev);
317 } else {
318 if (netif_carrier_ok(vlandev))
319 netif_carrier_off(vlandev);
320 }
321}
322
Patrick McHardy07b5b172007-06-13 12:07:54 -0700323int vlan_check_real_dev(struct net_device *real_dev, unsigned short vlan_id)
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700324{
Patrick McHardy40f98e12008-01-21 00:24:30 -0800325 char *name = real_dev->name;
326
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700327 if (real_dev->features & NETIF_F_VLAN_CHALLENGED) {
Patrick McHardy40f98e12008-01-21 00:24:30 -0800328 pr_info("8021q: VLANs not supported on %s\n", name);
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700329 return -EOPNOTSUPP;
330 }
331
332 if ((real_dev->features & NETIF_F_HW_VLAN_RX) &&
333 !real_dev->vlan_rx_register) {
Patrick McHardy40f98e12008-01-21 00:24:30 -0800334 pr_info("8021q: device %s has buggy VLAN hw accel\n", name);
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700335 return -EOPNOTSUPP;
336 }
337
338 if ((real_dev->features & NETIF_F_HW_VLAN_FILTER) &&
339 (!real_dev->vlan_rx_add_vid || !real_dev->vlan_rx_kill_vid)) {
Patrick McHardy40f98e12008-01-21 00:24:30 -0800340 pr_info("8021q: Device %s has buggy VLAN hw accel\n", name);
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700341 return -EOPNOTSUPP;
342 }
343
344 /* The real device must be up and operating in order to
345 * assosciate a VLAN device with it.
346 */
347 if (!(real_dev->flags & IFF_UP))
348 return -ENETDOWN;
349
Patrick McHardy40f98e12008-01-21 00:24:30 -0800350 if (__find_vlan_dev(real_dev, vlan_id) != NULL)
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700351 return -EEXIST;
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700352
353 return 0;
354}
355
Patrick McHardy07b5b172007-06-13 12:07:54 -0700356int register_vlan_dev(struct net_device *dev)
Patrick McHardye89fe422007-06-13 12:06:29 -0700357{
358 struct vlan_dev_info *vlan = VLAN_DEV_INFO(dev);
359 struct net_device *real_dev = vlan->real_dev;
360 unsigned short vlan_id = vlan->vlan_id;
361 struct vlan_group *grp, *ngrp = NULL;
362 int err;
363
364 grp = __vlan_find_group(real_dev->ifindex);
365 if (!grp) {
366 ngrp = grp = vlan_group_alloc(real_dev->ifindex);
367 if (!grp)
368 return -ENOBUFS;
369 }
370
371 err = register_netdevice(dev);
372 if (err < 0)
373 goto out_free_group;
374
375 /* Account for reference in struct vlan_dev_info */
376 dev_hold(real_dev);
377
378 vlan_transfer_operstate(real_dev, dev);
379 linkwatch_fire_event(dev); /* _MUST_ call rfc2863_policy() */
380
381 /* So, got the sucker initialized, now lets place
382 * it into our local structure.
383 */
384 vlan_group_set_device(grp, vlan_id, dev);
385 if (ngrp && real_dev->features & NETIF_F_HW_VLAN_RX)
386 real_dev->vlan_rx_register(real_dev, ngrp);
387 if (real_dev->features & NETIF_F_HW_VLAN_FILTER)
388 real_dev->vlan_rx_add_vid(real_dev, vlan_id);
389
390 if (vlan_proc_add_dev(dev) < 0)
Patrick McHardy40f98e12008-01-21 00:24:30 -0800391 pr_warning("8021q: failed to add proc entry for %s\n",
392 dev->name);
Patrick McHardye89fe422007-06-13 12:06:29 -0700393 return 0;
394
395out_free_group:
396 if (ngrp)
397 vlan_group_free(ngrp);
398 return err;
399}
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401/* Attach a VLAN device to a mac address (ie Ethernet Card).
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700402 * Returns 0 if the device was created or a negative error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 */
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700404static int register_vlan_device(struct net_device *real_dev,
405 unsigned short VLAN_ID)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 struct net_device *new_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 char name[IFNAMSIZ];
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700409 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 if (VLAN_ID >= VLAN_VID_MASK)
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700412 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700414 err = vlan_check_real_dev(real_dev, VLAN_ID);
415 if (err < 0)
416 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 /* Gotta set up the fields for the device. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 switch (vlan_name_type) {
420 case VLAN_NAME_TYPE_RAW_PLUS_VID:
421 /* name will look like: eth1.0005 */
422 snprintf(name, IFNAMSIZ, "%s.%.4i", real_dev->name, VLAN_ID);
423 break;
424 case VLAN_NAME_TYPE_PLUS_VID_NO_PAD:
425 /* Put our vlan.VID in the name.
426 * Name will look like: vlan5
427 */
428 snprintf(name, IFNAMSIZ, "vlan%i", VLAN_ID);
429 break;
430 case VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD:
431 /* Put our vlan.VID in the name.
432 * Name will look like: eth0.5
433 */
434 snprintf(name, IFNAMSIZ, "%s.%i", real_dev->name, VLAN_ID);
435 break;
436 case VLAN_NAME_TYPE_PLUS_VID:
437 /* Put our vlan.VID in the name.
438 * Name will look like: vlan0005
439 */
440 default:
441 snprintf(name, IFNAMSIZ, "vlan%.4i", VLAN_ID);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700442 }
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 new_dev = alloc_netdev(sizeof(struct vlan_dev_info), name,
445 vlan_setup);
Arjan van de Ven5dd8d1e2006-07-03 00:25:33 -0700446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (new_dev == NULL)
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700448 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 /* need 4 bytes for extra VLAN header info,
451 * hope the underlying device can handle it.
452 */
453 new_dev->mtu = real_dev->mtu;
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 VLAN_DEV_INFO(new_dev)->vlan_id = VLAN_ID; /* 1 through VLAN_VID_MASK */
456 VLAN_DEV_INFO(new_dev)->real_dev = real_dev;
457 VLAN_DEV_INFO(new_dev)->dent = NULL;
Patrick McHardya4bf3af42007-06-13 12:07:37 -0700458 VLAN_DEV_INFO(new_dev)->flags = VLAN_FLAG_REORDER_HDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Patrick McHardy07b5b172007-06-13 12:07:54 -0700460 new_dev->rtnl_link_ops = &vlan_link_ops;
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700461 err = register_vlan_dev(new_dev);
462 if (err < 0)
Patrick McHardye89fe422007-06-13 12:06:29 -0700463 goto out_free_newdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700465 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467out_free_newdev:
468 free_netdev(new_dev);
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700469 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
Patrick McHardy8c979c22007-07-11 19:45:24 -0700472static void vlan_sync_address(struct net_device *dev,
473 struct net_device *vlandev)
474{
475 struct vlan_dev_info *vlan = VLAN_DEV_INFO(vlandev);
476
477 /* May be called without an actual change */
478 if (!compare_ether_addr(vlan->real_dev_addr, dev->dev_addr))
479 return;
480
481 /* vlan address was different from the old address and is equal to
482 * the new address */
483 if (compare_ether_addr(vlandev->dev_addr, vlan->real_dev_addr) &&
484 !compare_ether_addr(vlandev->dev_addr, dev->dev_addr))
485 dev_unicast_delete(dev, vlandev->dev_addr, ETH_ALEN);
486
487 /* vlan address was equal to the old address and is different from
488 * the new address */
489 if (!compare_ether_addr(vlandev->dev_addr, vlan->real_dev_addr) &&
490 compare_ether_addr(vlandev->dev_addr, dev->dev_addr))
491 dev_unicast_add(dev, vlandev->dev_addr, ETH_ALEN);
492
493 memcpy(vlan->real_dev_addr, dev->dev_addr, ETH_ALEN);
494}
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496static int vlan_device_event(struct notifier_block *unused, unsigned long event, void *ptr)
497{
498 struct net_device *dev = ptr;
499 struct vlan_group *grp = __vlan_find_group(dev->ifindex);
500 int i, flgs;
501 struct net_device *vlandev;
502
Eric W. Biedermane9dc8652007-09-12 13:02:17 +0200503 if (dev->nd_net != &init_net)
504 return NOTIFY_DONE;
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (!grp)
507 goto out;
508
509 /* It is OK that we do not hold the group lock right now,
510 * as we run under the RTNL lock.
511 */
512
513 switch (event) {
514 case NETDEV_CHANGE:
515 /* Propagate real device state to vlan devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 for (i = 0; i < VLAN_GROUP_ARRAY_LEN; i++) {
Dan Aloni5c15bde2007-03-02 20:44:51 -0800517 vlandev = vlan_group_get_device(grp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (!vlandev)
519 continue;
520
Stefan Rompfddd7bf92006-03-20 17:11:41 -0800521 vlan_transfer_operstate(dev, vlandev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
523 break;
524
Patrick McHardy8c979c22007-07-11 19:45:24 -0700525 case NETDEV_CHANGEADDR:
526 /* Adjust unicast filters on underlying device */
527 for (i = 0; i < VLAN_GROUP_ARRAY_LEN; i++) {
528 vlandev = vlan_group_get_device(grp, i);
529 if (!vlandev)
530 continue;
531
Patrick McHardyd932e042007-11-10 21:51:40 -0800532 flgs = vlandev->flags;
533 if (!(flgs & IFF_UP))
534 continue;
535
Patrick McHardy8c979c22007-07-11 19:45:24 -0700536 vlan_sync_address(dev, vlandev);
537 }
538 break;
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 case NETDEV_DOWN:
541 /* Put all VLANs for this dev in the down state too. */
542 for (i = 0; i < VLAN_GROUP_ARRAY_LEN; i++) {
Dan Aloni5c15bde2007-03-02 20:44:51 -0800543 vlandev = vlan_group_get_device(grp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (!vlandev)
545 continue;
546
547 flgs = vlandev->flags;
548 if (!(flgs & IFF_UP))
549 continue;
550
551 dev_change_flags(vlandev, flgs & ~IFF_UP);
552 }
553 break;
554
555 case NETDEV_UP:
556 /* Put all VLANs for this dev in the up state too. */
557 for (i = 0; i < VLAN_GROUP_ARRAY_LEN; i++) {
Dan Aloni5c15bde2007-03-02 20:44:51 -0800558 vlandev = vlan_group_get_device(grp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (!vlandev)
560 continue;
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 flgs = vlandev->flags;
563 if (flgs & IFF_UP)
564 continue;
565
566 dev_change_flags(vlandev, flgs | IFF_UP);
567 }
568 break;
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 case NETDEV_UNREGISTER:
571 /* Delete all VLANs for this dev. */
572 for (i = 0; i < VLAN_GROUP_ARRAY_LEN; i++) {
573 int ret;
574
Dan Aloni5c15bde2007-03-02 20:44:51 -0800575 vlandev = vlan_group_get_device(grp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 if (!vlandev)
577 continue;
578
579 ret = unregister_vlan_dev(dev,
580 VLAN_DEV_INFO(vlandev)->vlan_id);
581
582 unregister_netdevice(vlandev);
583
584 /* Group was destroyed? */
585 if (ret == 1)
586 break;
587 }
588 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591out:
592 return NOTIFY_DONE;
593}
594
595/*
596 * VLAN IOCTL handler.
597 * o execute requested action or pass command to the device driver
598 * arg is really a struct vlan_ioctl_args __user *.
599 */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700600static int vlan_ioctl_handler(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
Patrick McHardyc17d8872007-06-13 12:05:22 -0700602 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 unsigned short vid = 0;
604 struct vlan_ioctl_args args;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700605 struct net_device *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 if (copy_from_user(&args, arg, sizeof(struct vlan_ioctl_args)))
608 return -EFAULT;
609
610 /* Null terminate this sucker, just in case. */
611 args.device1[23] = 0;
612 args.u.device2[23] = 0;
613
Patrick McHardyc17d8872007-06-13 12:05:22 -0700614 rtnl_lock();
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 switch (args.cmd) {
617 case SET_VLAN_INGRESS_PRIORITY_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700618 case SET_VLAN_EGRESS_PRIORITY_CMD:
619 case SET_VLAN_FLAG_CMD:
620 case ADD_VLAN_CMD:
621 case DEL_VLAN_CMD:
622 case GET_VLAN_REALDEV_NAME_CMD:
623 case GET_VLAN_VID_CMD:
624 err = -ENODEV;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700625 dev = __dev_get_by_name(&init_net, args.device1);
Patrick McHardyc17d8872007-06-13 12:05:22 -0700626 if (!dev)
627 goto out;
628
629 err = -EINVAL;
630 if (args.cmd != ADD_VLAN_CMD &&
631 !(dev->priv_flags & IFF_802_1Q_VLAN))
632 goto out;
633 }
634
635 switch (args.cmd) {
636 case SET_VLAN_INGRESS_PRIORITY_CMD:
637 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 if (!capable(CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700639 break;
640 vlan_dev_set_ingress_priority(dev,
641 args.u.skb_priority,
642 args.vlan_qos);
Patrick McHardyfffe4702007-11-07 01:31:32 -0800643 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 break;
645
646 case SET_VLAN_EGRESS_PRIORITY_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700647 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (!capable(CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700649 break;
650 err = vlan_dev_set_egress_priority(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 args.u.skb_priority,
652 args.vlan_qos);
653 break;
654
655 case SET_VLAN_FLAG_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700656 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 if (!capable(CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700658 break;
659 err = vlan_dev_set_vlan_flag(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 args.u.flag,
661 args.vlan_qos);
662 break;
663
664 case SET_VLAN_NAME_TYPE_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700665 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (!capable(CAP_NET_ADMIN))
Pavel Emelyanove35de022007-12-06 22:52:16 -0800667 break;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700668 if ((args.u.name_type >= 0) &&
669 (args.u.name_type < VLAN_NAME_TYPE_HIGHEST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 vlan_name_type = args.u.name_type;
671 err = 0;
672 } else {
673 err = -EINVAL;
674 }
675 break;
676
677 case ADD_VLAN_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700678 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 if (!capable(CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700680 break;
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700681 err = register_vlan_device(dev, args.u.VID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 break;
683
684 case DEL_VLAN_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700685 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 if (!capable(CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700687 break;
688 err = unregister_vlan_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 break;
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 case GET_VLAN_REALDEV_NAME_CMD:
Andrew Morton3f5f4342007-07-24 15:37:11 -0700692 err = 0;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700693 vlan_dev_get_realdev_name(dev, args.u.device2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 if (copy_to_user(arg, &args,
695 sizeof(struct vlan_ioctl_args))) {
696 err = -EFAULT;
697 }
698 break;
699
700 case GET_VLAN_VID_CMD:
Andrew Morton3f5f4342007-07-24 15:37:11 -0700701 err = 0;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700702 vlan_dev_get_vid(dev, &vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 args.u.VID = vid;
704 if (copy_to_user(arg, &args,
705 sizeof(struct vlan_ioctl_args))) {
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900706 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 }
708 break;
709
710 default:
Patrick McHardy198a2912008-01-21 00:24:59 -0800711 err = -EOPNOTSUPP;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700712 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700713 }
Mika Kukkonen7eb1b3d2005-12-21 18:39:49 -0800714out:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700715 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 return err;
717}
718
719MODULE_LICENSE("GPL");
720MODULE_VERSION(DRV_VERSION);