3 * Ethernet-type device handling.
5 * Authors: Ben Greear <greearb@candelatech.com>
6 * Please send support related email to: netdev@vger.kernel.org
7 * VLAN Home Page: http://www.candelatech.com/~greear/vlan.html
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>
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.
21 #include <linux/capability.h>
22 #include <linux/module.h>
23 #include <linux/netdevice.h>
24 #include <linux/skbuff.h>
25 #include <linux/slab.h>
26 #include <linux/init.h>
27 #include <linux/rculist.h>
28 #include <net/p8022.h>
30 #include <linux/rtnetlink.h>
31 #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>
37 #include <linux/if_vlan.h>
41 #define DRV_VERSION "1.8"
43 /* Global VLAN variables */
45 int vlan_net_id __read_mostly
;
47 const char vlan_fullname
[] = "802.1Q VLAN Support";
48 const char vlan_version
[] = DRV_VERSION
;
49 static const char vlan_copyright
[] = "Ben Greear <greearb@candelatech.com>";
50 static const char vlan_buggyright
[] = "David S. Miller <davem@redhat.com>";
52 /* End of global variables definitions. */
54 static void vlan_group_free(struct vlan_group
*grp
)
58 for (i
= 0; i
< VLAN_GROUP_ARRAY_SPLIT_PARTS
; i
++)
59 kfree(grp
->vlan_devices_arrays
[i
]);
63 static struct vlan_group
*vlan_group_alloc(struct net_device
*real_dev
)
65 struct vlan_group
*grp
;
67 grp
= kzalloc(sizeof(struct vlan_group
), GFP_KERNEL
);
71 grp
->real_dev
= real_dev
;
75 static int vlan_group_prealloc_vid(struct vlan_group
*vg
, u16 vlan_id
)
77 struct net_device
**array
;
82 array
= vg
->vlan_devices_arrays
[vlan_id
/ VLAN_GROUP_ARRAY_PART_LEN
];
86 size
= sizeof(struct net_device
*) * VLAN_GROUP_ARRAY_PART_LEN
;
87 array
= kzalloc(size
, GFP_KERNEL
);
91 vg
->vlan_devices_arrays
[vlan_id
/ VLAN_GROUP_ARRAY_PART_LEN
] = array
;
95 static void vlan_rcu_free(struct rcu_head
*rcu
)
97 vlan_group_free(container_of(rcu
, struct vlan_group
, rcu
));
100 void unregister_vlan_dev(struct net_device
*dev
, struct list_head
*head
)
102 struct vlan_dev_info
*vlan
= vlan_dev_info(dev
);
103 struct net_device
*real_dev
= vlan
->real_dev
;
104 const struct net_device_ops
*ops
= real_dev
->netdev_ops
;
105 struct vlan_group
*grp
;
106 u16 vlan_id
= vlan
->vlan_id
;
110 grp
= rtnl_dereference(real_dev
->vlgrp
);
113 /* Take it out of our own structures, but be sure to interlock with
114 * HW accelerating devices or SW vlan input packet processing if
115 * VLAN is not 0 (leave it there for 802.1p).
117 if (vlan_id
&& (real_dev
->features
& NETIF_F_HW_VLAN_FILTER
))
118 ops
->ndo_vlan_rx_kill_vid(real_dev
, vlan_id
);
122 vlan_group_set_device(grp
, vlan_id
, NULL
);
123 /* Because unregister_netdevice_queue() makes sure at least one rcu
124 * grace period is respected before device freeing,
125 * we dont need to call synchronize_net() here.
127 unregister_netdevice_queue(dev
, head
);
129 /* If the group is now empty, kill off the group. */
130 if (grp
->nr_vlans
== 0) {
131 vlan_gvrp_uninit_applicant(real_dev
);
133 rcu_assign_pointer(real_dev
->vlgrp
, NULL
);
134 if (ops
->ndo_vlan_rx_register
)
135 ops
->ndo_vlan_rx_register(real_dev
, NULL
);
137 /* Free the group, after all cpu's are done. */
138 call_rcu(&grp
->rcu
, vlan_rcu_free
);
141 /* Get rid of the vlan's reference to real_dev */
145 int vlan_check_real_dev(struct net_device
*real_dev
, u16 vlan_id
)
147 const char *name
= real_dev
->name
;
148 const struct net_device_ops
*ops
= real_dev
->netdev_ops
;
150 if (real_dev
->features
& NETIF_F_VLAN_CHALLENGED
) {
151 pr_info("8021q: VLANs not supported on %s\n", name
);
155 if ((real_dev
->features
& NETIF_F_HW_VLAN_FILTER
) &&
156 (!ops
->ndo_vlan_rx_add_vid
|| !ops
->ndo_vlan_rx_kill_vid
)) {
157 pr_info("8021q: Device %s has buggy VLAN hw accel\n", name
);
161 if (vlan_find_dev(real_dev
, vlan_id
) != NULL
)
167 int register_vlan_dev(struct net_device
*dev
)
169 struct vlan_dev_info
*vlan
= vlan_dev_info(dev
);
170 struct net_device
*real_dev
= vlan
->real_dev
;
171 const struct net_device_ops
*ops
= real_dev
->netdev_ops
;
172 u16 vlan_id
= vlan
->vlan_id
;
173 struct vlan_group
*grp
, *ngrp
= NULL
;
176 grp
= rtnl_dereference(real_dev
->vlgrp
);
178 ngrp
= grp
= vlan_group_alloc(real_dev
);
181 err
= vlan_gvrp_init_applicant(real_dev
);
186 err
= vlan_group_prealloc_vid(grp
, vlan_id
);
188 goto out_uninit_applicant
;
190 err
= register_netdevice(dev
);
192 goto out_uninit_applicant
;
194 /* Account for reference in struct vlan_dev_info */
197 netif_stacked_transfer_operstate(real_dev
, dev
);
198 linkwatch_fire_event(dev
); /* _MUST_ call rfc2863_policy() */
200 /* So, got the sucker initialized, now lets place
201 * it into our local structure.
203 vlan_group_set_device(grp
, vlan_id
, dev
);
207 if (ops
->ndo_vlan_rx_register
)
208 ops
->ndo_vlan_rx_register(real_dev
, ngrp
);
209 rcu_assign_pointer(real_dev
->vlgrp
, ngrp
);
211 if (real_dev
->features
& NETIF_F_HW_VLAN_FILTER
)
212 ops
->ndo_vlan_rx_add_vid(real_dev
, vlan_id
);
216 out_uninit_applicant
:
218 vlan_gvrp_uninit_applicant(real_dev
);
221 /* Free the group, after all cpu's are done. */
222 call_rcu(&ngrp
->rcu
, vlan_rcu_free
);
227 /* Attach a VLAN device to a mac address (ie Ethernet Card).
228 * Returns 0 if the device was created or a negative error code otherwise.
230 static int register_vlan_device(struct net_device
*real_dev
, u16 vlan_id
)
232 struct net_device
*new_dev
;
233 struct net
*net
= dev_net(real_dev
);
234 struct vlan_net
*vn
= net_generic(net
, vlan_net_id
);
238 if (vlan_id
>= VLAN_VID_MASK
)
241 err
= vlan_check_real_dev(real_dev
, vlan_id
);
245 /* Gotta set up the fields for the device. */
246 switch (vn
->name_type
) {
247 case VLAN_NAME_TYPE_RAW_PLUS_VID
:
248 /* name will look like: eth1.0005 */
249 snprintf(name
, IFNAMSIZ
, "%s.%.4i", real_dev
->name
, vlan_id
);
251 case VLAN_NAME_TYPE_PLUS_VID_NO_PAD
:
252 /* Put our vlan.VID in the name.
253 * Name will look like: vlan5
255 snprintf(name
, IFNAMSIZ
, "vlan%i", vlan_id
);
257 case VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD
:
258 /* Put our vlan.VID in the name.
259 * Name will look like: eth0.5
261 snprintf(name
, IFNAMSIZ
, "%s.%i", real_dev
->name
, vlan_id
);
263 case VLAN_NAME_TYPE_PLUS_VID
:
264 /* Put our vlan.VID in the name.
265 * Name will look like: vlan0005
268 snprintf(name
, IFNAMSIZ
, "vlan%.4i", vlan_id
);
271 new_dev
= alloc_netdev(sizeof(struct vlan_dev_info
), name
, vlan_setup
);
276 dev_net_set(new_dev
, net
);
277 /* need 4 bytes for extra VLAN header info,
278 * hope the underlying device can handle it.
280 new_dev
->mtu
= real_dev
->mtu
;
282 vlan_dev_info(new_dev
)->vlan_id
= vlan_id
;
283 vlan_dev_info(new_dev
)->real_dev
= real_dev
;
284 vlan_dev_info(new_dev
)->dent
= NULL
;
285 vlan_dev_info(new_dev
)->flags
= VLAN_FLAG_REORDER_HDR
;
287 new_dev
->rtnl_link_ops
= &vlan_link_ops
;
288 err
= register_vlan_dev(new_dev
);
290 goto out_free_newdev
;
295 free_netdev(new_dev
);
299 static void vlan_sync_address(struct net_device
*dev
,
300 struct net_device
*vlandev
)
302 struct vlan_dev_info
*vlan
= vlan_dev_info(vlandev
);
304 /* May be called without an actual change */
305 if (!compare_ether_addr(vlan
->real_dev_addr
, dev
->dev_addr
))
308 /* vlan address was different from the old address and is equal to
310 if (compare_ether_addr(vlandev
->dev_addr
, vlan
->real_dev_addr
) &&
311 !compare_ether_addr(vlandev
->dev_addr
, dev
->dev_addr
))
312 dev_uc_del(dev
, vlandev
->dev_addr
);
314 /* vlan address was equal to the old address and is different from
316 if (!compare_ether_addr(vlandev
->dev_addr
, vlan
->real_dev_addr
) &&
317 compare_ether_addr(vlandev
->dev_addr
, dev
->dev_addr
))
318 dev_uc_add(dev
, vlandev
->dev_addr
);
320 memcpy(vlan
->real_dev_addr
, dev
->dev_addr
, ETH_ALEN
);
323 static void vlan_transfer_features(struct net_device
*dev
,
324 struct net_device
*vlandev
)
326 vlandev
->gso_max_size
= dev
->gso_max_size
;
328 if (dev
->features
& NETIF_F_HW_VLAN_TX
)
329 vlandev
->hard_header_len
= dev
->hard_header_len
;
331 vlandev
->hard_header_len
= dev
->hard_header_len
+ VLAN_HLEN
;
333 #if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
334 vlandev
->fcoe_ddp_xid
= dev
->fcoe_ddp_xid
;
337 netdev_update_features(vlandev
);
340 static void __vlan_device_event(struct net_device
*dev
, unsigned long event
)
343 case NETDEV_CHANGENAME
:
344 vlan_proc_rem_dev(dev
);
345 if (vlan_proc_add_dev(dev
) < 0)
346 pr_warning("8021q: failed to change proc name for %s\n",
349 case NETDEV_REGISTER
:
350 if (vlan_proc_add_dev(dev
) < 0)
351 pr_warning("8021q: failed to add proc entry for %s\n",
354 case NETDEV_UNREGISTER
:
355 vlan_proc_rem_dev(dev
);
360 static int vlan_device_event(struct notifier_block
*unused
, unsigned long event
,
363 struct net_device
*dev
= ptr
;
364 struct vlan_group
*grp
;
366 struct net_device
*vlandev
;
367 struct vlan_dev_info
*vlan
;
370 if (is_vlan_dev(dev
))
371 __vlan_device_event(dev
, event
);
373 if ((event
== NETDEV_UP
) &&
374 (dev
->features
& NETIF_F_HW_VLAN_FILTER
) &&
375 dev
->netdev_ops
->ndo_vlan_rx_add_vid
) {
376 pr_info("8021q: adding VLAN 0 to HW filter on device %s\n",
378 dev
->netdev_ops
->ndo_vlan_rx_add_vid(dev
, 0);
381 grp
= rtnl_dereference(dev
->vlgrp
);
385 /* It is OK that we do not hold the group lock right now,
386 * as we run under the RTNL lock.
391 /* Propagate real device state to vlan devices */
392 for (i
= 0; i
< VLAN_N_VID
; i
++) {
393 vlandev
= vlan_group_get_device(grp
, i
);
397 netif_stacked_transfer_operstate(dev
, vlandev
);
401 case NETDEV_CHANGEADDR
:
402 /* Adjust unicast filters on underlying device */
403 for (i
= 0; i
< VLAN_N_VID
; i
++) {
404 vlandev
= vlan_group_get_device(grp
, i
);
408 flgs
= vlandev
->flags
;
409 if (!(flgs
& IFF_UP
))
412 vlan_sync_address(dev
, vlandev
);
416 case NETDEV_CHANGEMTU
:
417 for (i
= 0; i
< VLAN_N_VID
; i
++) {
418 vlandev
= vlan_group_get_device(grp
, i
);
422 if (vlandev
->mtu
<= dev
->mtu
)
425 dev_set_mtu(vlandev
, dev
->mtu
);
429 case NETDEV_FEAT_CHANGE
:
430 /* Propagate device features to underlying device */
431 for (i
= 0; i
< VLAN_N_VID
; i
++) {
432 vlandev
= vlan_group_get_device(grp
, i
);
436 vlan_transfer_features(dev
, vlandev
);
442 /* Put all VLANs for this dev in the down state too. */
443 for (i
= 0; i
< VLAN_N_VID
; i
++) {
444 vlandev
= vlan_group_get_device(grp
, i
);
448 flgs
= vlandev
->flags
;
449 if (!(flgs
& IFF_UP
))
452 vlan
= vlan_dev_info(vlandev
);
453 if (!(vlan
->flags
& VLAN_FLAG_LOOSE_BINDING
))
454 dev_change_flags(vlandev
, flgs
& ~IFF_UP
);
455 netif_stacked_transfer_operstate(dev
, vlandev
);
460 /* Put all VLANs for this dev in the up state too. */
461 for (i
= 0; i
< VLAN_N_VID
; i
++) {
462 vlandev
= vlan_group_get_device(grp
, i
);
466 flgs
= vlandev
->flags
;
470 vlan
= vlan_dev_info(vlandev
);
471 if (!(vlan
->flags
& VLAN_FLAG_LOOSE_BINDING
))
472 dev_change_flags(vlandev
, flgs
| IFF_UP
);
473 netif_stacked_transfer_operstate(dev
, vlandev
);
477 case NETDEV_UNREGISTER
:
478 /* twiddle thumbs on netns device moves */
479 if (dev
->reg_state
!= NETREG_UNREGISTERING
)
482 for (i
= 0; i
< VLAN_N_VID
; i
++) {
483 vlandev
= vlan_group_get_device(grp
, i
);
487 /* unregistration of last vlan destroys group, abort
489 if (grp
->nr_vlans
== 1)
492 unregister_vlan_dev(vlandev
, &list
);
494 unregister_netdevice_many(&list
);
497 case NETDEV_PRE_TYPE_CHANGE
:
498 /* Forbid underlaying device to change its type. */
501 case NETDEV_NOTIFY_PEERS
:
502 case NETDEV_BONDING_FAILOVER
:
503 /* Propagate to vlan devices */
504 for (i
= 0; i
< VLAN_N_VID
; i
++) {
505 vlandev
= vlan_group_get_device(grp
, i
);
509 call_netdevice_notifiers(event
, vlandev
);
518 static struct notifier_block vlan_notifier_block __read_mostly
= {
519 .notifier_call
= vlan_device_event
,
523 * VLAN IOCTL handler.
524 * o execute requested action or pass command to the device driver
525 * arg is really a struct vlan_ioctl_args __user *.
527 static int vlan_ioctl_handler(struct net
*net
, void __user
*arg
)
530 struct vlan_ioctl_args args
;
531 struct net_device
*dev
= NULL
;
533 if (copy_from_user(&args
, arg
, sizeof(struct vlan_ioctl_args
)))
536 /* Null terminate this sucker, just in case. */
537 args
.device1
[23] = 0;
538 args
.u
.device2
[23] = 0;
543 case SET_VLAN_INGRESS_PRIORITY_CMD
:
544 case SET_VLAN_EGRESS_PRIORITY_CMD
:
545 case SET_VLAN_FLAG_CMD
:
548 case GET_VLAN_REALDEV_NAME_CMD
:
549 case GET_VLAN_VID_CMD
:
551 dev
= __dev_get_by_name(net
, args
.device1
);
556 if (args
.cmd
!= ADD_VLAN_CMD
&& !is_vlan_dev(dev
))
561 case SET_VLAN_INGRESS_PRIORITY_CMD
:
563 if (!capable(CAP_NET_ADMIN
))
565 vlan_dev_set_ingress_priority(dev
,
571 case SET_VLAN_EGRESS_PRIORITY_CMD
:
573 if (!capable(CAP_NET_ADMIN
))
575 err
= vlan_dev_set_egress_priority(dev
,
580 case SET_VLAN_FLAG_CMD
:
582 if (!capable(CAP_NET_ADMIN
))
584 err
= vlan_dev_change_flags(dev
,
585 args
.vlan_qos
? args
.u
.flag
: 0,
589 case SET_VLAN_NAME_TYPE_CMD
:
591 if (!capable(CAP_NET_ADMIN
))
593 if ((args
.u
.name_type
>= 0) &&
594 (args
.u
.name_type
< VLAN_NAME_TYPE_HIGHEST
)) {
597 vn
= net_generic(net
, vlan_net_id
);
598 vn
->name_type
= args
.u
.name_type
;
607 if (!capable(CAP_NET_ADMIN
))
609 err
= register_vlan_device(dev
, args
.u
.VID
);
614 if (!capable(CAP_NET_ADMIN
))
616 unregister_vlan_dev(dev
, NULL
);
620 case GET_VLAN_REALDEV_NAME_CMD
:
622 vlan_dev_get_realdev_name(dev
, args
.u
.device2
);
623 if (copy_to_user(arg
, &args
,
624 sizeof(struct vlan_ioctl_args
)))
628 case GET_VLAN_VID_CMD
:
630 args
.u
.VID
= vlan_dev_vlan_id(dev
);
631 if (copy_to_user(arg
, &args
,
632 sizeof(struct vlan_ioctl_args
)))
645 static int __net_init
vlan_init_net(struct net
*net
)
647 struct vlan_net
*vn
= net_generic(net
, vlan_net_id
);
650 vn
->name_type
= VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD
;
652 err
= vlan_proc_init(net
);
657 static void __net_exit
vlan_exit_net(struct net
*net
)
659 vlan_proc_cleanup(net
);
662 static struct pernet_operations vlan_net_ops
= {
663 .init
= vlan_init_net
,
664 .exit
= vlan_exit_net
,
666 .size
= sizeof(struct vlan_net
),
669 static int __init
vlan_proto_init(void)
673 pr_info("%s v%s %s\n", vlan_fullname
, vlan_version
, vlan_copyright
);
674 pr_info("All bugs added by %s\n", vlan_buggyright
);
676 err
= register_pernet_subsys(&vlan_net_ops
);
680 err
= register_netdevice_notifier(&vlan_notifier_block
);
684 err
= vlan_gvrp_init();
688 err
= vlan_netlink_init();
692 vlan_ioctl_set(vlan_ioctl_handler
);
698 unregister_netdevice_notifier(&vlan_notifier_block
);
700 unregister_pernet_subsys(&vlan_net_ops
);
705 static void __exit
vlan_cleanup_module(void)
707 vlan_ioctl_set(NULL
);
710 unregister_netdevice_notifier(&vlan_notifier_block
);
712 unregister_pernet_subsys(&vlan_net_ops
);
713 rcu_barrier(); /* Wait for completion of call_rcu()'s */
718 module_init(vlan_proto_init
);
719 module_exit(vlan_cleanup_module
);
721 MODULE_LICENSE("GPL");
722 MODULE_VERSION(DRV_VERSION
);