blob: c7a581a96894c7193ff75c48573976aad6133255 [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>
Patrick McHardyad712082008-01-21 00:27:00 -08006 * Please send support related email to: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * 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
Randy Dunlap4fc268d2006-01-11 12:17:47 -080021#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/module.h>
23#include <linux/netdevice.h>
24#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
Franck Bui-Huu82524742008-05-12 21:21:05 +020027#include <linux/rculist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <net/p8022.h>
29#include <net/arp.h>
30#include <linux/rtnetlink.h>
31#include <linux/notifier.h>
Patrick McHardy61362762008-07-14 22:51:55 -070032#include <net/rtnetlink.h>
Eric W. Biedermane9dc8652007-09-12 13:02:17 +020033#include <net/net_namespace.h>
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -070034#include <net/netns/generic.h>
Patrick McHardy61362762008-07-14 22:51:55 -070035#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include <linux/if_vlan.h>
38#include "vlan.h"
39#include "vlanproc.h"
40
41#define DRV_VERSION "1.8"
42
43/* Global VLAN variables */
44
Eric Dumazetf99189b2009-11-17 10:42:49 +000045int vlan_net_id __read_mostly;
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -070046
Stephen Hemmingerb30200612008-10-28 22:12:36 -070047const char vlan_fullname[] = "802.1Q VLAN Support";
48const char vlan_version[] = DRV_VERSION;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/* End of global variables definitions. */
51
Dan Aloni5c15bde2007-03-02 20:44:51 -080052static void vlan_group_free(struct vlan_group *grp)
53{
54 int i;
55
Patrick McHardy2029cc22008-01-21 00:26:41 -080056 for (i = 0; i < VLAN_GROUP_ARRAY_SPLIT_PARTS; i++)
Dan Aloni5c15bde2007-03-02 20:44:51 -080057 kfree(grp->vlan_devices_arrays[i]);
58 kfree(grp);
59}
60
Pavel Emelyanova9fde262008-04-16 00:48:04 -070061static struct vlan_group *vlan_group_alloc(struct net_device *real_dev)
Patrick McHardy42429aa2007-06-13 12:05:59 -070062{
63 struct vlan_group *grp;
Patrick McHardy42429aa2007-06-13 12:05:59 -070064
65 grp = kzalloc(sizeof(struct vlan_group), GFP_KERNEL);
66 if (!grp)
67 return NULL;
68
Pavel Emelyanova9fde262008-04-16 00:48:04 -070069 grp->real_dev = real_dev;
Patrick McHardy42429aa2007-06-13 12:05:59 -070070 return grp;
Pavel Emelyanov67727182008-03-26 16:27:22 -070071}
Patrick McHardy42429aa2007-06-13 12:05:59 -070072
Patrick McHardy9bb85822008-07-08 03:24:44 -070073static int vlan_group_prealloc_vid(struct vlan_group *vg, u16 vlan_id)
Pavel Emelyanov67727182008-03-26 16:27:22 -070074{
75 struct net_device **array;
76 unsigned int size;
77
78 ASSERT_RTNL();
79
Patrick McHardy9bb85822008-07-08 03:24:44 -070080 array = vg->vlan_devices_arrays[vlan_id / VLAN_GROUP_ARRAY_PART_LEN];
Pavel Emelyanov67727182008-03-26 16:27:22 -070081 if (array != NULL)
82 return 0;
83
84 size = sizeof(struct net_device *) * VLAN_GROUP_ARRAY_PART_LEN;
85 array = kzalloc(size, GFP_KERNEL);
86 if (array == NULL)
87 return -ENOBUFS;
88
Patrick McHardy9bb85822008-07-08 03:24:44 -070089 vg->vlan_devices_arrays[vlan_id / VLAN_GROUP_ARRAY_PART_LEN] = array;
Pavel Emelyanov67727182008-03-26 16:27:22 -070090 return 0;
Patrick McHardy42429aa2007-06-13 12:05:59 -070091}
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093static void vlan_rcu_free(struct rcu_head *rcu)
94{
Dan Aloni5c15bde2007-03-02 20:44:51 -080095 vlan_group_free(container_of(rcu, struct vlan_group, rcu));
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
Eric Dumazet23289a32009-10-27 07:06:36 +000098void unregister_vlan_dev(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800100 struct vlan_dev_info *vlan = vlan_dev_info(dev);
Patrick McHardyaf301512008-01-21 00:25:50 -0800101 struct net_device *real_dev = vlan->real_dev;
Stephen Hemminger656299f2008-11-19 21:53:47 -0800102 const struct net_device_ops *ops = real_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 struct vlan_group *grp;
Patrick McHardy9bb85822008-07-08 03:24:44 -0700104 u16 vlan_id = vlan->vlan_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106 ASSERT_RTNL();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Eric Dumazetb616b092010-10-24 21:31:58 +0000108 grp = rtnl_dereference(real_dev->vlgrp);
Patrick McHardyaf301512008-01-21 00:25:50 -0800109 BUG_ON(!grp);
Patrick McHardyacc5efb2008-01-21 00:25:31 -0800110
Patrick McHardyacc5efb2008-01-21 00:25:31 -0800111 /* Take it out of our own structures, but be sure to interlock with
Pedro Garciaad1afb02010-07-18 15:38:44 -0700112 * HW accelerating devices or SW vlan input packet processing if
113 * VLAN is not 0 (leave it there for 802.1p).
Patrick McHardyacc5efb2008-01-21 00:25:31 -0800114 */
Pedro Garciaad1afb02010-07-18 15:38:44 -0700115 if (vlan_id && (real_dev->features & NETIF_F_HW_VLAN_FILTER))
Stephen Hemminger656299f2008-11-19 21:53:47 -0800116 ops->ndo_vlan_rx_kill_vid(real_dev, vlan_id);
Patrick McHardyacc5efb2008-01-21 00:25:31 -0800117
Patrick McHardyaf301512008-01-21 00:25:50 -0800118 grp->nr_vlans--;
119
Eric Dumazet55aee102011-05-10 12:22:54 -0700120 if (vlan->flags & VLAN_FLAG_GVRP)
121 vlan_gvrp_request_leave(dev);
122
Patrick McHardy29906f62009-10-29 23:43:00 -0700123 vlan_group_set_device(grp, vlan_id, NULL);
Eric Dumazet48752e12011-05-09 04:40:44 +0000124 /* Because unregister_netdevice_queue() makes sure at least one rcu
125 * grace period is respected before device freeing,
126 * we dont need to call synchronize_net() here.
127 */
Eric Dumazet23289a32009-10-27 07:06:36 +0000128 unregister_netdevice_queue(dev, head);
Patrick McHardyce305002008-07-05 21:26:41 -0700129
Patrick McHardyacc5efb2008-01-21 00:25:31 -0800130 /* If the group is now empty, kill off the group. */
Patrick McHardyaf301512008-01-21 00:25:50 -0800131 if (grp->nr_vlans == 0) {
Patrick McHardy70c03b42008-07-05 21:26:57 -0700132 vlan_gvrp_uninit_applicant(real_dev);
133
Jesse Gross65ac6a52010-10-20 13:56:05 +0000134 rcu_assign_pointer(real_dev->vlgrp, NULL);
Jesse Gross3701e512010-10-20 13:56:06 +0000135 if (ops->ndo_vlan_rx_register)
Stephen Hemminger656299f2008-11-19 21:53:47 -0800136 ops->ndo_vlan_rx_register(real_dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Patrick McHardyacc5efb2008-01-21 00:25:31 -0800138 /* Free the group, after all cpu's are done. */
139 call_rcu(&grp->rcu, vlan_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 }
141
Patrick McHardyaf301512008-01-21 00:25:50 -0800142 /* Get rid of the vlan's reference to real_dev */
143 dev_put(real_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
Patrick McHardy9bb85822008-07-08 03:24:44 -0700146int vlan_check_real_dev(struct net_device *real_dev, u16 vlan_id)
Patrick McHardyc1d3ee992007-06-13 12:06:14 -0700147{
Stephen Hemminger656299f2008-11-19 21:53:47 -0800148 const char *name = real_dev->name;
149 const struct net_device_ops *ops = real_dev->netdev_ops;
Patrick McHardy40f98e12008-01-21 00:24:30 -0800150
Patrick McHardyc1d3ee992007-06-13 12:06:14 -0700151 if (real_dev->features & NETIF_F_VLAN_CHALLENGED) {
Patrick McHardy40f98e12008-01-21 00:24:30 -0800152 pr_info("8021q: VLANs not supported on %s\n", name);
Patrick McHardyc1d3ee992007-06-13 12:06:14 -0700153 return -EOPNOTSUPP;
154 }
155
Patrick McHardyc1d3ee992007-06-13 12:06:14 -0700156 if ((real_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemminger656299f2008-11-19 21:53:47 -0800157 (!ops->ndo_vlan_rx_add_vid || !ops->ndo_vlan_rx_kill_vid)) {
Patrick McHardy40f98e12008-01-21 00:24:30 -0800158 pr_info("8021q: Device %s has buggy VLAN hw accel\n", name);
Patrick McHardyc1d3ee992007-06-13 12:06:14 -0700159 return -EOPNOTSUPP;
160 }
161
Jesse Gross65ac6a52010-10-20 13:56:05 +0000162 if (vlan_find_dev(real_dev, vlan_id) != NULL)
Patrick McHardyc1d3ee992007-06-13 12:06:14 -0700163 return -EEXIST;
Patrick McHardyc1d3ee992007-06-13 12:06:14 -0700164
165 return 0;
166}
167
Patrick McHardy07b5b172007-06-13 12:07:54 -0700168int register_vlan_dev(struct net_device *dev)
Patrick McHardye89fe422007-06-13 12:06:29 -0700169{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800170 struct vlan_dev_info *vlan = vlan_dev_info(dev);
Patrick McHardye89fe422007-06-13 12:06:29 -0700171 struct net_device *real_dev = vlan->real_dev;
Stephen Hemminger656299f2008-11-19 21:53:47 -0800172 const struct net_device_ops *ops = real_dev->netdev_ops;
Patrick McHardy9bb85822008-07-08 03:24:44 -0700173 u16 vlan_id = vlan->vlan_id;
Patrick McHardye89fe422007-06-13 12:06:29 -0700174 struct vlan_group *grp, *ngrp = NULL;
175 int err;
176
Eric Dumazetb616b092010-10-24 21:31:58 +0000177 grp = rtnl_dereference(real_dev->vlgrp);
Patrick McHardye89fe422007-06-13 12:06:29 -0700178 if (!grp) {
Pavel Emelyanova9fde262008-04-16 00:48:04 -0700179 ngrp = grp = vlan_group_alloc(real_dev);
Patrick McHardye89fe422007-06-13 12:06:29 -0700180 if (!grp)
181 return -ENOBUFS;
Patrick McHardy70c03b42008-07-05 21:26:57 -0700182 err = vlan_gvrp_init_applicant(real_dev);
183 if (err < 0)
184 goto out_free_group;
Patrick McHardye89fe422007-06-13 12:06:29 -0700185 }
186
Pavel Emelyanov67727182008-03-26 16:27:22 -0700187 err = vlan_group_prealloc_vid(grp, vlan_id);
188 if (err < 0)
Patrick McHardy70c03b42008-07-05 21:26:57 -0700189 goto out_uninit_applicant;
Pavel Emelyanov67727182008-03-26 16:27:22 -0700190
Patrick McHardye89fe422007-06-13 12:06:29 -0700191 err = register_netdevice(dev);
192 if (err < 0)
Patrick McHardy70c03b42008-07-05 21:26:57 -0700193 goto out_uninit_applicant;
Patrick McHardye89fe422007-06-13 12:06:29 -0700194
195 /* Account for reference in struct vlan_dev_info */
196 dev_hold(real_dev);
197
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -0800198 netif_stacked_transfer_operstate(real_dev, dev);
Patrick McHardye89fe422007-06-13 12:06:29 -0700199 linkwatch_fire_event(dev); /* _MUST_ call rfc2863_policy() */
200
201 /* So, got the sucker initialized, now lets place
202 * it into our local structure.
203 */
204 vlan_group_set_device(grp, vlan_id, dev);
Patrick McHardyaf301512008-01-21 00:25:50 -0800205 grp->nr_vlans++;
206
Jesse Gross65ac6a52010-10-20 13:56:05 +0000207 if (ngrp) {
Jesse Gross3701e512010-10-20 13:56:06 +0000208 if (ops->ndo_vlan_rx_register)
Jesse Gross65ac6a52010-10-20 13:56:05 +0000209 ops->ndo_vlan_rx_register(real_dev, ngrp);
210 rcu_assign_pointer(real_dev->vlgrp, ngrp);
211 }
Patrick McHardye89fe422007-06-13 12:06:29 -0700212 if (real_dev->features & NETIF_F_HW_VLAN_FILTER)
Stephen Hemminger656299f2008-11-19 21:53:47 -0800213 ops->ndo_vlan_rx_add_vid(real_dev, vlan_id);
Patrick McHardye89fe422007-06-13 12:06:29 -0700214
Patrick McHardye89fe422007-06-13 12:06:29 -0700215 return 0;
216
Patrick McHardy70c03b42008-07-05 21:26:57 -0700217out_uninit_applicant:
218 if (ngrp)
219 vlan_gvrp_uninit_applicant(real_dev);
Patrick McHardye89fe422007-06-13 12:06:29 -0700220out_free_group:
Eric Dumazet6b863d12009-11-17 06:45:04 -0800221 if (ngrp) {
Eric Dumazet6b863d12009-11-17 06:45:04 -0800222 /* Free the group, after all cpu's are done. */
223 call_rcu(&ngrp->rcu, vlan_rcu_free);
224 }
Patrick McHardye89fe422007-06-13 12:06:29 -0700225 return err;
226}
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228/* Attach a VLAN device to a mac address (ie Ethernet Card).
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700229 * Returns 0 if the device was created or a negative error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 */
Patrick McHardy9bb85822008-07-08 03:24:44 -0700231static int register_vlan_device(struct net_device *real_dev, u16 vlan_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 struct net_device *new_dev;
Pavel Emelyanov7a17a2f2008-04-16 00:54:39 -0700234 struct net *net = dev_net(real_dev);
235 struct vlan_net *vn = net_generic(net, vlan_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 char name[IFNAMSIZ];
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700237 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Patrick McHardy9bb85822008-07-08 03:24:44 -0700239 if (vlan_id >= VLAN_VID_MASK)
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700240 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Patrick McHardy9bb85822008-07-08 03:24:44 -0700242 err = vlan_check_real_dev(real_dev, vlan_id);
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700243 if (err < 0)
244 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 /* Gotta set up the fields for the device. */
Pavel Emelyanov7a17a2f2008-04-16 00:54:39 -0700247 switch (vn->name_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 case VLAN_NAME_TYPE_RAW_PLUS_VID:
249 /* name will look like: eth1.0005 */
Patrick McHardy9bb85822008-07-08 03:24:44 -0700250 snprintf(name, IFNAMSIZ, "%s.%.4i", real_dev->name, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 break;
252 case VLAN_NAME_TYPE_PLUS_VID_NO_PAD:
253 /* Put our vlan.VID in the name.
254 * Name will look like: vlan5
255 */
Patrick McHardy9bb85822008-07-08 03:24:44 -0700256 snprintf(name, IFNAMSIZ, "vlan%i", vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 break;
258 case VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD:
259 /* Put our vlan.VID in the name.
260 * Name will look like: eth0.5
261 */
Patrick McHardy9bb85822008-07-08 03:24:44 -0700262 snprintf(name, IFNAMSIZ, "%s.%i", real_dev->name, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 break;
264 case VLAN_NAME_TYPE_PLUS_VID:
265 /* Put our vlan.VID in the name.
266 * Name will look like: vlan0005
267 */
268 default:
Patrick McHardy9bb85822008-07-08 03:24:44 -0700269 snprintf(name, IFNAMSIZ, "vlan%.4i", vlan_id);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700270 }
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900271
Eric Dumazet4af429d2010-11-10 23:42:00 +0000272 new_dev = alloc_netdev(sizeof(struct vlan_dev_info), name, vlan_setup);
Arjan van de Ven5dd8d1e2006-07-03 00:25:33 -0700273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 if (new_dev == NULL)
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700275 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Pavel Emelyanov65d292a2008-04-16 00:55:06 -0700277 dev_net_set(new_dev, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 /* need 4 bytes for extra VLAN header info,
279 * hope the underlying device can handle it.
280 */
281 new_dev->mtu = real_dev->mtu;
282
Patrick McHardy9bb85822008-07-08 03:24:44 -0700283 vlan_dev_info(new_dev)->vlan_id = vlan_id;
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800284 vlan_dev_info(new_dev)->real_dev = real_dev;
285 vlan_dev_info(new_dev)->dent = NULL;
286 vlan_dev_info(new_dev)->flags = VLAN_FLAG_REORDER_HDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Patrick McHardy07b5b172007-06-13 12:07:54 -0700288 new_dev->rtnl_link_ops = &vlan_link_ops;
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700289 err = register_vlan_dev(new_dev);
290 if (err < 0)
Patrick McHardye89fe422007-06-13 12:06:29 -0700291 goto out_free_newdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700293 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295out_free_newdev:
296 free_netdev(new_dev);
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700297 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
Patrick McHardy8c979c22007-07-11 19:45:24 -0700300static void vlan_sync_address(struct net_device *dev,
301 struct net_device *vlandev)
302{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800303 struct vlan_dev_info *vlan = vlan_dev_info(vlandev);
Patrick McHardy8c979c22007-07-11 19:45:24 -0700304
305 /* May be called without an actual change */
306 if (!compare_ether_addr(vlan->real_dev_addr, dev->dev_addr))
307 return;
308
309 /* vlan address was different from the old address and is equal to
310 * the new address */
311 if (compare_ether_addr(vlandev->dev_addr, vlan->real_dev_addr) &&
312 !compare_ether_addr(vlandev->dev_addr, dev->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000313 dev_uc_del(dev, vlandev->dev_addr);
Patrick McHardy8c979c22007-07-11 19:45:24 -0700314
315 /* vlan address was equal to the old address and is different from
316 * the new address */
317 if (!compare_ether_addr(vlandev->dev_addr, vlan->real_dev_addr) &&
318 compare_ether_addr(vlandev->dev_addr, dev->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000319 dev_uc_add(dev, vlandev->dev_addr);
Patrick McHardy8c979c22007-07-11 19:45:24 -0700320
321 memcpy(vlan->real_dev_addr, dev->dev_addr, ETH_ALEN);
322}
323
Patrick McHardy5fb13572008-05-20 14:54:50 -0700324static void vlan_transfer_features(struct net_device *dev,
325 struct net_device *vlandev)
326{
Alexander Duyck1ae4be22008-09-11 20:17:05 -0700327 vlandev->gso_max_size = dev->gso_max_size;
John Fastabend029f5fc2010-10-30 14:22:32 +0000328
329 if (dev->features & NETIF_F_HW_VLAN_TX)
330 vlandev->hard_header_len = dev->hard_header_len;
331 else
332 vlandev->hard_header_len = dev->hard_header_len + VLAN_HLEN;
333
Vasu Devb85daa52009-08-14 12:41:07 +0000334#if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
335 vlandev->fcoe_ddp_xid = dev->fcoe_ddp_xid;
336#endif
Michał Mirosław8a0427b2011-04-02 22:49:12 -0700337
338 netdev_update_features(vlandev);
Patrick McHardy5fb13572008-05-20 14:54:50 -0700339}
340
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700341static void __vlan_device_event(struct net_device *dev, unsigned long event)
342{
343 switch (event) {
344 case NETDEV_CHANGENAME:
345 vlan_proc_rem_dev(dev);
346 if (vlan_proc_add_dev(dev) < 0)
347 pr_warning("8021q: failed to change proc name for %s\n",
348 dev->name);
349 break;
Pavel Emelyanov30688a92008-04-16 00:57:01 -0700350 case NETDEV_REGISTER:
351 if (vlan_proc_add_dev(dev) < 0)
352 pr_warning("8021q: failed to add proc entry for %s\n",
353 dev->name);
354 break;
355 case NETDEV_UNREGISTER:
356 vlan_proc_rem_dev(dev);
357 break;
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700358 }
359}
360
Patrick McHardy2029cc22008-01-21 00:26:41 -0800361static int vlan_device_event(struct notifier_block *unused, unsigned long event,
362 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
364 struct net_device *dev = ptr;
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700365 struct vlan_group *grp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 int i, flgs;
367 struct net_device *vlandev;
Patrick McHardy5e756592009-11-25 07:54:54 +0000368 struct vlan_dev_info *vlan;
Patrick McHardy29906f62009-10-29 23:43:00 -0700369 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Patrick McHardy81d85342008-05-20 14:37:36 -0700371 if (is_vlan_dev(dev))
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700372 __vlan_device_event(dev, event);
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700373
Pedro Garciaad1afb02010-07-18 15:38:44 -0700374 if ((event == NETDEV_UP) &&
375 (dev->features & NETIF_F_HW_VLAN_FILTER) &&
376 dev->netdev_ops->ndo_vlan_rx_add_vid) {
377 pr_info("8021q: adding VLAN 0 to HW filter on device %s\n",
378 dev->name);
379 dev->netdev_ops->ndo_vlan_rx_add_vid(dev, 0);
380 }
381
Eric Dumazetb616b092010-10-24 21:31:58 +0000382 grp = rtnl_dereference(dev->vlgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 if (!grp)
384 goto out;
385
386 /* It is OK that we do not hold the group lock right now,
387 * as we run under the RTNL lock.
388 */
389
390 switch (event) {
391 case NETDEV_CHANGE:
392 /* Propagate real device state to vlan devices */
Jesse Grossb7381272010-10-20 13:56:02 +0000393 for (i = 0; i < VLAN_N_VID; i++) {
Dan Aloni5c15bde2007-03-02 20:44:51 -0800394 vlandev = vlan_group_get_device(grp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (!vlandev)
396 continue;
397
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -0800398 netif_stacked_transfer_operstate(dev, vlandev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
400 break;
401
Patrick McHardy8c979c22007-07-11 19:45:24 -0700402 case NETDEV_CHANGEADDR:
403 /* Adjust unicast filters on underlying device */
Jesse Grossb7381272010-10-20 13:56:02 +0000404 for (i = 0; i < VLAN_N_VID; i++) {
Patrick McHardy8c979c22007-07-11 19:45:24 -0700405 vlandev = vlan_group_get_device(grp, i);
406 if (!vlandev)
407 continue;
408
Patrick McHardyd932e042007-11-10 21:51:40 -0800409 flgs = vlandev->flags;
410 if (!(flgs & IFF_UP))
411 continue;
412
Patrick McHardy8c979c22007-07-11 19:45:24 -0700413 vlan_sync_address(dev, vlandev);
414 }
415 break;
416
Herbert Xu2e477c92009-07-20 07:35:37 -0700417 case NETDEV_CHANGEMTU:
Jesse Grossb7381272010-10-20 13:56:02 +0000418 for (i = 0; i < VLAN_N_VID; i++) {
Herbert Xu2e477c92009-07-20 07:35:37 -0700419 vlandev = vlan_group_get_device(grp, i);
420 if (!vlandev)
421 continue;
422
423 if (vlandev->mtu <= dev->mtu)
424 continue;
425
426 dev_set_mtu(vlandev, dev->mtu);
427 }
428 break;
429
Patrick McHardy5fb13572008-05-20 14:54:50 -0700430 case NETDEV_FEAT_CHANGE:
431 /* Propagate device features to underlying device */
Jesse Grossb7381272010-10-20 13:56:02 +0000432 for (i = 0; i < VLAN_N_VID; i++) {
Patrick McHardy5fb13572008-05-20 14:54:50 -0700433 vlandev = vlan_group_get_device(grp, i);
434 if (!vlandev)
435 continue;
436
437 vlan_transfer_features(dev, vlandev);
438 }
439
440 break;
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 case NETDEV_DOWN:
443 /* Put all VLANs for this dev in the down state too. */
Jesse Grossb7381272010-10-20 13:56:02 +0000444 for (i = 0; i < VLAN_N_VID; i++) {
Dan Aloni5c15bde2007-03-02 20:44:51 -0800445 vlandev = vlan_group_get_device(grp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 if (!vlandev)
447 continue;
448
449 flgs = vlandev->flags;
450 if (!(flgs & IFF_UP))
451 continue;
452
Patrick McHardy5e756592009-11-25 07:54:54 +0000453 vlan = vlan_dev_info(vlandev);
454 if (!(vlan->flags & VLAN_FLAG_LOOSE_BINDING))
455 dev_change_flags(vlandev, flgs & ~IFF_UP);
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -0800456 netif_stacked_transfer_operstate(dev, vlandev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
458 break;
459
460 case NETDEV_UP:
461 /* Put all VLANs for this dev in the up state too. */
Jesse Grossb7381272010-10-20 13:56:02 +0000462 for (i = 0; i < VLAN_N_VID; i++) {
Dan Aloni5c15bde2007-03-02 20:44:51 -0800463 vlandev = vlan_group_get_device(grp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 if (!vlandev)
465 continue;
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 flgs = vlandev->flags;
468 if (flgs & IFF_UP)
469 continue;
470
Patrick McHardy5e756592009-11-25 07:54:54 +0000471 vlan = vlan_dev_info(vlandev);
472 if (!(vlan->flags & VLAN_FLAG_LOOSE_BINDING))
473 dev_change_flags(vlandev, flgs | IFF_UP);
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -0800474 netif_stacked_transfer_operstate(dev, vlandev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476 break;
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 case NETDEV_UNREGISTER:
David Lamparter3b27e102010-09-17 03:22:19 +0000479 /* twiddle thumbs on netns device moves */
480 if (dev->reg_state != NETREG_UNREGISTERING)
481 break;
482
Jesse Grossb7381272010-10-20 13:56:02 +0000483 for (i = 0; i < VLAN_N_VID; i++) {
Patrick McHardy29906f62009-10-29 23:43:00 -0700484 vlandev = vlan_group_get_device(grp, i);
485 if (!vlandev)
486 continue;
487
488 /* unregistration of last vlan destroys group, abort
489 * afterwards */
490 if (grp->nr_vlans == 1)
Jesse Grossb7381272010-10-20 13:56:02 +0000491 i = VLAN_N_VID;
Patrick McHardy29906f62009-10-29 23:43:00 -0700492
493 unregister_vlan_dev(vlandev, &list);
494 }
495 unregister_netdevice_many(&list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 break;
Jiri Pirko1c01fe12010-03-10 10:30:19 +0000497
498 case NETDEV_PRE_TYPE_CHANGE:
499 /* Forbid underlaying device to change its type. */
500 return NOTIFY_BAD;
Ben Hutchings99606472011-04-15 13:46:49 +0000501
502 case NETDEV_NOTIFY_PEERS:
Ben Hutchings7c899432011-04-15 13:47:51 +0000503 case NETDEV_BONDING_FAILOVER:
Ben Hutchings99606472011-04-15 13:46:49 +0000504 /* Propagate to vlan devices */
505 for (i = 0; i < VLAN_N_VID; i++) {
506 vlandev = vlan_group_get_device(grp, i);
507 if (!vlandev)
508 continue;
509
Ben Hutchings7c899432011-04-15 13:47:51 +0000510 call_netdevice_notifiers(event, vlandev);
Ben Hutchings99606472011-04-15 13:46:49 +0000511 }
512 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515out:
516 return NOTIFY_DONE;
517}
518
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800519static struct notifier_block vlan_notifier_block __read_mostly = {
520 .notifier_call = vlan_device_event,
521};
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523/*
524 * VLAN IOCTL handler.
525 * o execute requested action or pass command to the device driver
526 * arg is really a struct vlan_ioctl_args __user *.
527 */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700528static int vlan_ioctl_handler(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Patrick McHardyc17d8872007-06-13 12:05:22 -0700530 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 struct vlan_ioctl_args args;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700532 struct net_device *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 if (copy_from_user(&args, arg, sizeof(struct vlan_ioctl_args)))
535 return -EFAULT;
536
537 /* Null terminate this sucker, just in case. */
538 args.device1[23] = 0;
539 args.u.device2[23] = 0;
540
Patrick McHardyc17d8872007-06-13 12:05:22 -0700541 rtnl_lock();
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 switch (args.cmd) {
544 case SET_VLAN_INGRESS_PRIORITY_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700545 case SET_VLAN_EGRESS_PRIORITY_CMD:
546 case SET_VLAN_FLAG_CMD:
547 case ADD_VLAN_CMD:
548 case DEL_VLAN_CMD:
549 case GET_VLAN_REALDEV_NAME_CMD:
550 case GET_VLAN_VID_CMD:
551 err = -ENODEV;
Pavel Emelyanov65d292a2008-04-16 00:55:06 -0700552 dev = __dev_get_by_name(net, args.device1);
Patrick McHardyc17d8872007-06-13 12:05:22 -0700553 if (!dev)
554 goto out;
555
556 err = -EINVAL;
Joonwoo Park26a25232008-07-08 03:22:16 -0700557 if (args.cmd != ADD_VLAN_CMD && !is_vlan_dev(dev))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700558 goto out;
559 }
560
561 switch (args.cmd) {
562 case SET_VLAN_INGRESS_PRIORITY_CMD:
563 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (!capable(CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700565 break;
566 vlan_dev_set_ingress_priority(dev,
567 args.u.skb_priority,
568 args.vlan_qos);
Patrick McHardyfffe4702007-11-07 01:31:32 -0800569 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 break;
571
572 case SET_VLAN_EGRESS_PRIORITY_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700573 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (!capable(CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700575 break;
576 err = vlan_dev_set_egress_priority(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 args.u.skb_priority,
578 args.vlan_qos);
579 break;
580
581 case SET_VLAN_FLAG_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700582 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (!capable(CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700584 break;
Patrick McHardyb3ce0322008-07-05 21:26:27 -0700585 err = vlan_dev_change_flags(dev,
586 args.vlan_qos ? args.u.flag : 0,
587 args.u.flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 break;
589
590 case SET_VLAN_NAME_TYPE_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700591 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (!capable(CAP_NET_ADMIN))
Pavel Emelyanove35de022007-12-06 22:52:16 -0800593 break;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700594 if ((args.u.name_type >= 0) &&
595 (args.u.name_type < VLAN_NAME_TYPE_HIGHEST)) {
Pavel Emelyanov7a17a2f2008-04-16 00:54:39 -0700596 struct vlan_net *vn;
597
598 vn = net_generic(net, vlan_net_id);
599 vn->name_type = args.u.name_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 err = 0;
601 } else {
602 err = -EINVAL;
603 }
604 break;
605
606 case ADD_VLAN_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700607 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 if (!capable(CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700609 break;
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700610 err = register_vlan_device(dev, args.u.VID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 break;
612
613 case DEL_VLAN_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700614 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (!capable(CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700616 break;
Eric Dumazet23289a32009-10-27 07:06:36 +0000617 unregister_vlan_dev(dev, NULL);
Patrick McHardyaf301512008-01-21 00:25:50 -0800618 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 break;
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 case GET_VLAN_REALDEV_NAME_CMD:
Andrew Morton3f5f4342007-07-24 15:37:11 -0700622 err = 0;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700623 vlan_dev_get_realdev_name(dev, args.u.device2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (copy_to_user(arg, &args,
Patrick McHardy2029cc22008-01-21 00:26:41 -0800625 sizeof(struct vlan_ioctl_args)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 break;
628
629 case GET_VLAN_VID_CMD:
Andrew Morton3f5f4342007-07-24 15:37:11 -0700630 err = 0;
Patrick McHardy22d1ba72008-07-08 03:23:57 -0700631 args.u.VID = vlan_dev_vlan_id(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 if (copy_to_user(arg, &args,
Patrick McHardy2029cc22008-01-21 00:26:41 -0800633 sizeof(struct vlan_ioctl_args)))
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900634 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 break;
636
637 default:
Patrick McHardy198a2912008-01-21 00:24:59 -0800638 err = -EOPNOTSUPP;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700639 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700640 }
Mika Kukkonen7eb1b3d2005-12-21 18:39:49 -0800641out:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700642 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return err;
644}
645
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000646static int __net_init vlan_init_net(struct net *net)
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700647{
Eric W. Biederman946d1a92009-11-29 15:46:05 +0000648 struct vlan_net *vn = net_generic(net, vlan_net_id);
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700649 int err;
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700650
Pavel Emelyanov7a17a2f2008-04-16 00:54:39 -0700651 vn->name_type = VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD;
652
Pavel Emelyanovcd1c7012008-04-16 00:51:12 -0700653 err = vlan_proc_init(net);
Pavel Emelyanovcd1c7012008-04-16 00:51:12 -0700654
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700655 return err;
656}
657
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000658static void __net_exit vlan_exit_net(struct net *net)
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700659{
Pavel Emelyanovcd1c7012008-04-16 00:51:12 -0700660 vlan_proc_cleanup(net);
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700661}
662
663static struct pernet_operations vlan_net_ops = {
664 .init = vlan_init_net,
665 .exit = vlan_exit_net,
Eric W. Biederman946d1a92009-11-29 15:46:05 +0000666 .id = &vlan_net_id,
667 .size = sizeof(struct vlan_net),
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700668};
669
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800670static int __init vlan_proto_init(void)
671{
672 int err;
673
Justin Mattockda7c06c2011-05-23 20:43:48 +0000674 pr_info("%s v%s\n", vlan_fullname, vlan_version);
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800675
Eric W. Biederman91e2ff32009-12-02 13:19:08 +0000676 err = register_pernet_subsys(&vlan_net_ops);
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700677 if (err < 0)
678 goto err0;
679
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800680 err = register_netdevice_notifier(&vlan_notifier_block);
681 if (err < 0)
682 goto err2;
683
Patrick McHardy70c03b42008-07-05 21:26:57 -0700684 err = vlan_gvrp_init();
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800685 if (err < 0)
686 goto err3;
687
Patrick McHardy70c03b42008-07-05 21:26:57 -0700688 err = vlan_netlink_init();
689 if (err < 0)
690 goto err4;
691
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800692 vlan_ioctl_set(vlan_ioctl_handler);
693 return 0;
694
Patrick McHardy70c03b42008-07-05 21:26:57 -0700695err4:
696 vlan_gvrp_uninit();
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800697err3:
698 unregister_netdevice_notifier(&vlan_notifier_block);
699err2:
Eric W. Biederman91e2ff32009-12-02 13:19:08 +0000700 unregister_pernet_subsys(&vlan_net_ops);
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700701err0:
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800702 return err;
703}
704
705static void __exit vlan_cleanup_module(void)
706{
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800707 vlan_ioctl_set(NULL);
708 vlan_netlink_fini();
709
710 unregister_netdevice_notifier(&vlan_notifier_block);
711
Eric W. Biederman91e2ff32009-12-02 13:19:08 +0000712 unregister_pernet_subsys(&vlan_net_ops);
Jesper Dangaard Brouer6e327c12009-06-08 03:11:28 +0000713 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Patrick McHardy70c03b42008-07-05 21:26:57 -0700714
715 vlan_gvrp_uninit();
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800716}
717
718module_init(vlan_proto_init);
719module_exit(vlan_cleanup_module);
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721MODULE_LICENSE("GPL");
722MODULE_VERSION(DRV_VERSION);