3 * Ethernet-type device handling.
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
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 <asm/uaccess.h> /* for copy_from_user */
22 #include <linux/capability.h>
23 #include <linux/module.h>
24 #include <linux/netdevice.h>
25 #include <linux/skbuff.h>
26 #include <net/datalink.h>
29 #include <linux/init.h>
30 #include <net/p8022.h>
32 #include <linux/rtnetlink.h>
33 #include <linux/notifier.h>
35 #include <linux/if_vlan.h>
39 #define DRV_VERSION "1.8"
41 /* Global VLAN variables */
43 /* Our listing of VLAN group(s) */
44 static struct hlist_head vlan_group_hash
[VLAN_GRP_HASH_SIZE
];
45 #define vlan_grp_hashfn(IDX) ((((IDX) >> VLAN_GRP_HASH_SHIFT) ^ (IDX)) & VLAN_GRP_HASH_MASK)
47 static char vlan_fullname
[] = "802.1Q VLAN Support";
48 static char vlan_version
[] = DRV_VERSION
;
49 static char vlan_copyright
[] = "Ben Greear <greearb@candelatech.com>";
50 static char vlan_buggyright
[] = "David S. Miller <davem@redhat.com>";
52 static int vlan_device_event(struct notifier_block
*, unsigned long, void *);
53 static int vlan_ioctl_handler(void __user
*);
54 static int unregister_vlan_dev(struct net_device
*, unsigned short );
56 static struct notifier_block vlan_notifier_block
= {
57 .notifier_call
= vlan_device_event
,
60 /* These may be changed at run-time through IOCTLs */
62 /* Determines interface naming scheme. */
63 unsigned short vlan_name_type
= VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD
;
65 static struct packet_type vlan_packet_type
= {
66 .type
= __constant_htons(ETH_P_8021Q
),
67 .func
= vlan_skb_recv
, /* VLAN receive method */
70 /* End of global variables definitions. */
73 * Function vlan_proto_init (pro)
75 * Initialize VLAN protocol layer,
78 static int __init
vlan_proto_init(void)
82 printk(VLAN_INF
"%s v%s %s\n",
83 vlan_fullname
, vlan_version
, vlan_copyright
);
84 printk(VLAN_INF
"All bugs added by %s\n",
87 /* proc file system initialization */
88 err
= vlan_proc_init();
91 "%s %s: can't create entry in proc filesystem!\n",
92 __FUNCTION__
, VLAN_NAME
);
96 dev_add_pack(&vlan_packet_type
);
98 /* Register us to receive netdevice events */
99 err
= register_netdevice_notifier(&vlan_notifier_block
);
101 dev_remove_pack(&vlan_packet_type
);
106 vlan_ioctl_set(vlan_ioctl_handler
);
111 /* Cleanup all vlan devices
112 * Note: devices that have been registered that but not
113 * brought up will exist but have no module ref count.
115 static void __exit
vlan_cleanup_devices(void)
117 struct net_device
*dev
, *nxt
;
120 for (dev
= dev_base
; dev
; dev
= nxt
) {
122 if (dev
->priv_flags
& IFF_802_1Q_VLAN
) {
123 unregister_vlan_dev(VLAN_DEV_INFO(dev
)->real_dev
,
124 VLAN_DEV_INFO(dev
)->vlan_id
);
126 unregister_netdevice(dev
);
133 * Module 'remove' entry point.
134 * o delete /proc/net/router directory and static entries.
136 static void __exit
vlan_cleanup_module(void)
140 vlan_ioctl_set(NULL
);
142 /* Un-register us from receiving netdevice events */
143 unregister_netdevice_notifier(&vlan_notifier_block
);
145 dev_remove_pack(&vlan_packet_type
);
146 vlan_cleanup_devices();
148 /* This table must be empty if there are no module
151 for (i
= 0; i
< VLAN_GRP_HASH_SIZE
; i
++) {
152 BUG_ON(!hlist_empty(&vlan_group_hash
[i
]));
159 module_init(vlan_proto_init
);
160 module_exit(vlan_cleanup_module
);
162 /* Must be invoked with RCU read lock (no preempt) */
163 static struct vlan_group
*__vlan_find_group(int real_dev_ifindex
)
165 struct vlan_group
*grp
;
166 struct hlist_node
*n
;
167 int hash
= vlan_grp_hashfn(real_dev_ifindex
);
169 hlist_for_each_entry_rcu(grp
, n
, &vlan_group_hash
[hash
], hlist
) {
170 if (grp
->real_dev_ifindex
== real_dev_ifindex
)
177 /* Find the protocol handler. Assumes VID < VLAN_VID_MASK.
179 * Must be invoked with RCU read lock (no preempt)
181 struct net_device
*__find_vlan_dev(struct net_device
*real_dev
,
184 struct vlan_group
*grp
= __vlan_find_group(real_dev
->ifindex
);
187 return vlan_group_get_device(grp
, VID
);
192 static void vlan_group_free(struct vlan_group
*grp
)
196 for (i
=0; i
< VLAN_GROUP_ARRAY_SPLIT_PARTS
; i
++)
197 kfree(grp
->vlan_devices_arrays
[i
]);
201 static void vlan_rcu_free(struct rcu_head
*rcu
)
203 vlan_group_free(container_of(rcu
, struct vlan_group
, rcu
));
207 /* This returns 0 if everything went fine.
208 * It will return 1 if the group was killed as a result.
209 * A negative return indicates failure.
211 * The RTNL lock must be held.
213 static int unregister_vlan_dev(struct net_device
*real_dev
,
214 unsigned short vlan_id
)
216 struct net_device
*dev
= NULL
;
217 int real_dev_ifindex
= real_dev
->ifindex
;
218 struct vlan_group
*grp
;
222 printk(VLAN_DBG
"%s: VID: %i\n", __FUNCTION__
, vlan_id
);
226 if (vlan_id
>= VLAN_VID_MASK
)
230 grp
= __vlan_find_group(real_dev_ifindex
);
235 dev
= vlan_group_get_device(grp
, vlan_id
);
237 /* Remove proc entry */
238 vlan_proc_rem_dev(dev
);
240 /* Take it out of our own structures, but be sure to
241 * interlock with HW accelerating devices or SW vlan
242 * input packet processing.
244 if (real_dev
->features
&
245 (NETIF_F_HW_VLAN_RX
| NETIF_F_HW_VLAN_FILTER
)) {
246 real_dev
->vlan_rx_kill_vid(real_dev
, vlan_id
);
249 vlan_group_set_device(grp
, vlan_id
, NULL
);
253 /* Caller unregisters (and if necessary, puts)
254 * VLAN device, but we get rid of the reference to
259 /* If the group is now empty, kill off the
262 for (i
= 0; i
< VLAN_VID_MASK
; i
++)
263 if (vlan_group_get_device(grp
, i
))
266 if (i
== VLAN_VID_MASK
) {
267 if (real_dev
->features
& NETIF_F_HW_VLAN_RX
)
268 real_dev
->vlan_rx_register(real_dev
, NULL
);
270 hlist_del_rcu(&grp
->hlist
);
272 /* Free the group, after all cpu's are done. */
273 call_rcu(&grp
->rcu
, vlan_rcu_free
);
284 static int unregister_vlan_device(const char *vlan_IF_name
)
286 struct net_device
*dev
= NULL
;
290 dev
= dev_get_by_name(vlan_IF_name
);
293 if (dev
->priv_flags
& IFF_802_1Q_VLAN
) {
296 ret
= unregister_vlan_dev(VLAN_DEV_INFO(dev
)->real_dev
,
297 VLAN_DEV_INFO(dev
)->vlan_id
);
300 unregister_netdevice(dev
);
308 "%s: ERROR: Tried to remove a non-vlan device "
309 "with VLAN code, name: %s priv_flags: %hX\n",
310 __FUNCTION__
, dev
->name
, dev
->priv_flags
);
316 printk(VLAN_DBG
"%s: WARNING: Could not find dev.\n", __FUNCTION__
);
324 static void vlan_setup(struct net_device
*new_dev
)
326 SET_MODULE_OWNER(new_dev
);
328 /* new_dev->ifindex = 0; it will be set when added to
330 * iflink is set as well.
332 new_dev
->get_stats
= vlan_dev_get_stats
;
334 /* Make this thing known as a VLAN device */
335 new_dev
->priv_flags
|= IFF_802_1Q_VLAN
;
337 /* Set us up to have no queue, as the underlying Hardware device
338 * can do all the queueing we could want.
340 new_dev
->tx_queue_len
= 0;
342 /* set up method calls */
343 new_dev
->change_mtu
= vlan_dev_change_mtu
;
344 new_dev
->open
= vlan_dev_open
;
345 new_dev
->stop
= vlan_dev_stop
;
346 new_dev
->set_mac_address
= vlan_dev_set_mac_address
;
347 new_dev
->set_multicast_list
= vlan_dev_set_multicast_list
;
348 new_dev
->destructor
= free_netdev
;
349 new_dev
->do_ioctl
= vlan_dev_ioctl
;
352 static void vlan_transfer_operstate(const struct net_device
*dev
, struct net_device
*vlandev
)
354 /* Have to respect userspace enforced dormant state
355 * of real device, also must allow supplicant running
358 if (dev
->operstate
== IF_OPER_DORMANT
)
359 netif_dormant_on(vlandev
);
361 netif_dormant_off(vlandev
);
363 if (netif_carrier_ok(dev
)) {
364 if (!netif_carrier_ok(vlandev
))
365 netif_carrier_on(vlandev
);
367 if (netif_carrier_ok(vlandev
))
368 netif_carrier_off(vlandev
);
373 * vlan network devices have devices nesting below it, and are a special
374 * "super class" of normal network devices; split their locks off into a
375 * separate class since they always nest.
377 static struct lock_class_key vlan_netdev_xmit_lock_key
;
380 /* Attach a VLAN device to a mac address (ie Ethernet Card).
381 * Returns the device that was created, or NULL if there was
382 * an error of some kind.
384 static struct net_device
*register_vlan_device(const char *eth_IF_name
,
385 unsigned short VLAN_ID
)
387 struct vlan_group
*grp
;
388 struct net_device
*new_dev
;
389 struct net_device
*real_dev
; /* the ethernet device */
394 printk(VLAN_DBG
"%s: if_name -:%s:- vid: %i\n",
395 __FUNCTION__
, eth_IF_name
, VLAN_ID
);
398 if (VLAN_ID
>= VLAN_VID_MASK
)
401 /* find the device relating to eth_IF_name. */
402 real_dev
= dev_get_by_name(eth_IF_name
);
406 if (real_dev
->features
& NETIF_F_VLAN_CHALLENGED
) {
407 printk(VLAN_DBG
"%s: VLANs not supported on %s.\n",
408 __FUNCTION__
, real_dev
->name
);
412 if ((real_dev
->features
& NETIF_F_HW_VLAN_RX
) &&
413 (real_dev
->vlan_rx_register
== NULL
||
414 real_dev
->vlan_rx_kill_vid
== NULL
)) {
415 printk(VLAN_DBG
"%s: Device %s has buggy VLAN hw accel.\n",
416 __FUNCTION__
, real_dev
->name
);
420 if ((real_dev
->features
& NETIF_F_HW_VLAN_FILTER
) &&
421 (real_dev
->vlan_rx_add_vid
== NULL
||
422 real_dev
->vlan_rx_kill_vid
== NULL
)) {
423 printk(VLAN_DBG
"%s: Device %s has buggy VLAN hw accel.\n",
424 __FUNCTION__
, real_dev
->name
);
428 /* From this point on, all the data structures must remain
433 /* The real device must be up and operating in order to
434 * assosciate a VLAN device with it.
436 if (!(real_dev
->flags
& IFF_UP
))
439 if (__find_vlan_dev(real_dev
, VLAN_ID
) != NULL
) {
440 /* was already registered. */
441 printk(VLAN_DBG
"%s: ALREADY had VLAN registered\n", __FUNCTION__
);
445 /* Gotta set up the fields for the device. */
447 printk(VLAN_DBG
"About to allocate name, vlan_name_type: %i\n",
450 switch (vlan_name_type
) {
451 case VLAN_NAME_TYPE_RAW_PLUS_VID
:
452 /* name will look like: eth1.0005 */
453 snprintf(name
, IFNAMSIZ
, "%s.%.4i", real_dev
->name
, VLAN_ID
);
455 case VLAN_NAME_TYPE_PLUS_VID_NO_PAD
:
456 /* Put our vlan.VID in the name.
457 * Name will look like: vlan5
459 snprintf(name
, IFNAMSIZ
, "vlan%i", VLAN_ID
);
461 case VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD
:
462 /* Put our vlan.VID in the name.
463 * Name will look like: eth0.5
465 snprintf(name
, IFNAMSIZ
, "%s.%i", real_dev
->name
, VLAN_ID
);
467 case VLAN_NAME_TYPE_PLUS_VID
:
468 /* Put our vlan.VID in the name.
469 * Name will look like: vlan0005
472 snprintf(name
, IFNAMSIZ
, "vlan%.4i", VLAN_ID
);
475 new_dev
= alloc_netdev(sizeof(struct vlan_dev_info
), name
,
482 printk(VLAN_DBG
"Allocated new name -:%s:-\n", new_dev
->name
);
484 /* IFF_BROADCAST|IFF_MULTICAST; ??? */
485 new_dev
->flags
= real_dev
->flags
;
486 new_dev
->flags
&= ~IFF_UP
;
488 new_dev
->state
= (real_dev
->state
& ((1<<__LINK_STATE_NOCARRIER
) |
489 (1<<__LINK_STATE_DORMANT
))) |
490 (1<<__LINK_STATE_PRESENT
);
492 /* need 4 bytes for extra VLAN header info,
493 * hope the underlying device can handle it.
495 new_dev
->mtu
= real_dev
->mtu
;
497 /* TODO: maybe just assign it to be ETHERNET? */
498 new_dev
->type
= real_dev
->type
;
500 new_dev
->hard_header_len
= real_dev
->hard_header_len
;
501 if (!(real_dev
->features
& NETIF_F_HW_VLAN_TX
)) {
502 /* Regular ethernet + 4 bytes (18 total). */
503 new_dev
->hard_header_len
+= VLAN_HLEN
;
506 VLAN_MEM_DBG("new_dev->priv malloc, addr: %p size: %i\n",
508 sizeof(struct vlan_dev_info
));
510 memcpy(new_dev
->broadcast
, real_dev
->broadcast
, real_dev
->addr_len
);
511 memcpy(new_dev
->dev_addr
, real_dev
->dev_addr
, real_dev
->addr_len
);
512 new_dev
->addr_len
= real_dev
->addr_len
;
514 if (real_dev
->features
& NETIF_F_HW_VLAN_TX
) {
515 new_dev
->hard_header
= real_dev
->hard_header
;
516 new_dev
->hard_start_xmit
= vlan_dev_hwaccel_hard_start_xmit
;
517 new_dev
->rebuild_header
= real_dev
->rebuild_header
;
519 new_dev
->hard_header
= vlan_dev_hard_header
;
520 new_dev
->hard_start_xmit
= vlan_dev_hard_start_xmit
;
521 new_dev
->rebuild_header
= vlan_dev_rebuild_header
;
523 new_dev
->hard_header_parse
= real_dev
->hard_header_parse
;
525 VLAN_DEV_INFO(new_dev
)->vlan_id
= VLAN_ID
; /* 1 through VLAN_VID_MASK */
526 VLAN_DEV_INFO(new_dev
)->real_dev
= real_dev
;
527 VLAN_DEV_INFO(new_dev
)->dent
= NULL
;
528 VLAN_DEV_INFO(new_dev
)->flags
= 1;
531 printk(VLAN_DBG
"About to go find the group for idx: %i\n",
535 if (register_netdevice(new_dev
))
536 goto out_free_newdev
;
538 lockdep_set_class(&new_dev
->_xmit_lock
, &vlan_netdev_xmit_lock_key
);
540 new_dev
->iflink
= real_dev
->ifindex
;
541 vlan_transfer_operstate(real_dev
, new_dev
);
542 linkwatch_fire_event(new_dev
); /* _MUST_ call rfc2863_policy() */
544 /* So, got the sucker initialized, now lets place
545 * it into our local structure.
547 grp
= __vlan_find_group(real_dev
->ifindex
);
549 /* Note, we are running under the RTNL semaphore
550 * so it cannot "appear" on us.
552 if (!grp
) { /* need to add a new group */
553 grp
= kzalloc(sizeof(struct vlan_group
), GFP_KERNEL
);
555 goto out_free_unregister
;
557 for (i
=0; i
< VLAN_GROUP_ARRAY_SPLIT_PARTS
; i
++) {
558 grp
->vlan_devices_arrays
[i
] = kzalloc(
559 sizeof(struct net_device
*)*VLAN_GROUP_ARRAY_PART_LEN
,
562 if (!grp
->vlan_devices_arrays
[i
])
563 goto out_free_arrays
;
566 /* printk(KERN_ALERT "VLAN REGISTER: Allocated new group.\n"); */
567 grp
->real_dev_ifindex
= real_dev
->ifindex
;
569 hlist_add_head_rcu(&grp
->hlist
,
570 &vlan_group_hash
[vlan_grp_hashfn(real_dev
->ifindex
)]);
572 if (real_dev
->features
& NETIF_F_HW_VLAN_RX
)
573 real_dev
->vlan_rx_register(real_dev
, grp
);
576 vlan_group_set_device(grp
, VLAN_ID
, new_dev
);
578 if (vlan_proc_add_dev(new_dev
)<0)/* create it's proc entry */
579 printk(KERN_WARNING
"VLAN: failed to add proc entry for %s\n",
582 if (real_dev
->features
& NETIF_F_HW_VLAN_FILTER
)
583 real_dev
->vlan_rx_add_vid(real_dev
, VLAN_ID
);
589 printk(VLAN_DBG
"Allocated new device successfully, returning.\n");
594 vlan_group_free(grp
);
597 unregister_netdev(new_dev
);
601 free_netdev(new_dev
);
613 static int vlan_device_event(struct notifier_block
*unused
, unsigned long event
, void *ptr
)
615 struct net_device
*dev
= ptr
;
616 struct vlan_group
*grp
= __vlan_find_group(dev
->ifindex
);
618 struct net_device
*vlandev
;
623 /* It is OK that we do not hold the group lock right now,
624 * as we run under the RTNL lock.
629 /* Propagate real device state to vlan devices */
630 for (i
= 0; i
< VLAN_GROUP_ARRAY_LEN
; i
++) {
631 vlandev
= vlan_group_get_device(grp
, i
);
635 vlan_transfer_operstate(dev
, vlandev
);
640 /* Put all VLANs for this dev in the down state too. */
641 for (i
= 0; i
< VLAN_GROUP_ARRAY_LEN
; i
++) {
642 vlandev
= vlan_group_get_device(grp
, i
);
646 flgs
= vlandev
->flags
;
647 if (!(flgs
& IFF_UP
))
650 dev_change_flags(vlandev
, flgs
& ~IFF_UP
);
655 /* Put all VLANs for this dev in the up state too. */
656 for (i
= 0; i
< VLAN_GROUP_ARRAY_LEN
; i
++) {
657 vlandev
= vlan_group_get_device(grp
, i
);
661 flgs
= vlandev
->flags
;
665 dev_change_flags(vlandev
, flgs
| IFF_UP
);
669 case NETDEV_UNREGISTER
:
670 /* Delete all VLANs for this dev. */
671 for (i
= 0; i
< VLAN_GROUP_ARRAY_LEN
; i
++) {
674 vlandev
= vlan_group_get_device(grp
, i
);
678 ret
= unregister_vlan_dev(dev
,
679 VLAN_DEV_INFO(vlandev
)->vlan_id
);
681 unregister_netdevice(vlandev
);
683 /* Group was destroyed? */
695 * VLAN IOCTL handler.
696 * o execute requested action or pass command to the device driver
697 * arg is really a struct vlan_ioctl_args __user *.
699 static int vlan_ioctl_handler(void __user
*arg
)
702 unsigned short vid
= 0;
703 struct vlan_ioctl_args args
;
705 if (copy_from_user(&args
, arg
, sizeof(struct vlan_ioctl_args
)))
708 /* Null terminate this sucker, just in case. */
709 args
.device1
[23] = 0;
710 args
.u
.device2
[23] = 0;
713 printk(VLAN_DBG
"%s: args.cmd: %x\n", __FUNCTION__
, args
.cmd
);
717 case SET_VLAN_INGRESS_PRIORITY_CMD
:
718 if (!capable(CAP_NET_ADMIN
))
720 err
= vlan_dev_set_ingress_priority(args
.device1
,
725 case SET_VLAN_EGRESS_PRIORITY_CMD
:
726 if (!capable(CAP_NET_ADMIN
))
728 err
= vlan_dev_set_egress_priority(args
.device1
,
733 case SET_VLAN_FLAG_CMD
:
734 if (!capable(CAP_NET_ADMIN
))
736 err
= vlan_dev_set_vlan_flag(args
.device1
,
741 case SET_VLAN_NAME_TYPE_CMD
:
742 if (!capable(CAP_NET_ADMIN
))
744 if ((args
.u
.name_type
>= 0) &&
745 (args
.u
.name_type
< VLAN_NAME_TYPE_HIGHEST
)) {
746 vlan_name_type
= args
.u
.name_type
;
754 if (!capable(CAP_NET_ADMIN
))
756 /* we have been given the name of the Ethernet Device we want to
757 * talk to: args.dev1 We also have the
758 * VLAN ID: args.u.VID
760 if (register_vlan_device(args
.device1
, args
.u
.VID
)) {
768 if (!capable(CAP_NET_ADMIN
))
770 /* Here, the args.dev1 is the actual VLAN we want
773 err
= unregister_vlan_device(args
.device1
);
776 case GET_VLAN_INGRESS_PRIORITY_CMD
:
778 err = vlan_dev_get_ingress_priority(args);
779 if (copy_to_user((void*)arg, &args,
780 sizeof(struct vlan_ioctl_args))) {
786 case GET_VLAN_EGRESS_PRIORITY_CMD
:
788 err = vlan_dev_get_egress_priority(args.device1, &(args.args);
789 if (copy_to_user((void*)arg, &args,
790 sizeof(struct vlan_ioctl_args))) {
796 case GET_VLAN_REALDEV_NAME_CMD
:
797 err
= vlan_dev_get_realdev_name(args
.device1
, args
.u
.device2
);
800 if (copy_to_user(arg
, &args
,
801 sizeof(struct vlan_ioctl_args
))) {
806 case GET_VLAN_VID_CMD
:
807 err
= vlan_dev_get_vid(args
.device1
, &vid
);
811 if (copy_to_user(arg
, &args
,
812 sizeof(struct vlan_ioctl_args
))) {
818 /* pass on to underlying device instead?? */
819 printk(VLAN_DBG
"%s: Unknown VLAN CMD: %x \n",
820 __FUNCTION__
, args
.cmd
);
827 MODULE_LICENSE("GPL");
828 MODULE_VERSION(DRV_VERSION
);