blob: a292e8050ef234029611090004f1b46f889610d3 [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
Joe Perchesafab2d22011-05-26 10:58:31 +000021#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22
Randy Dunlap4fc268d2006-01-11 12:17:47 -080023#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/module.h>
25#include <linux/netdevice.h>
26#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/init.h>
Franck Bui-Huu82524742008-05-12 21:21:05 +020029#include <linux/rculist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <net/p8022.h>
31#include <net/arp.h>
32#include <linux/rtnetlink.h>
33#include <linux/notifier.h>
Patrick McHardy61362762008-07-14 22:51:55 -070034#include <net/rtnetlink.h>
Eric W. Biedermane9dc8652007-09-12 13:02:17 +020035#include <net/net_namespace.h>
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -070036#include <net/netns/generic.h>
Patrick McHardy61362762008-07-14 22:51:55 -070037#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <linux/if_vlan.h>
40#include "vlan.h"
41#include "vlanproc.h"
42
43#define DRV_VERSION "1.8"
44
45/* Global VLAN variables */
46
Eric Dumazetf99189b2009-11-17 10:42:49 +000047int vlan_net_id __read_mostly;
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -070048
Stephen Hemmingerb30200612008-10-28 22:12:36 -070049const char vlan_fullname[] = "802.1Q VLAN Support";
50const char vlan_version[] = DRV_VERSION;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052/* End of global variables definitions. */
53
Patrick McHardy9bb85822008-07-08 03:24:44 -070054static int vlan_group_prealloc_vid(struct vlan_group *vg, u16 vlan_id)
Pavel Emelyanov67727182008-03-26 16:27:22 -070055{
56 struct net_device **array;
57 unsigned int size;
58
59 ASSERT_RTNL();
60
Patrick McHardy9bb85822008-07-08 03:24:44 -070061 array = vg->vlan_devices_arrays[vlan_id / VLAN_GROUP_ARRAY_PART_LEN];
Pavel Emelyanov67727182008-03-26 16:27:22 -070062 if (array != NULL)
63 return 0;
64
65 size = sizeof(struct net_device *) * VLAN_GROUP_ARRAY_PART_LEN;
66 array = kzalloc(size, GFP_KERNEL);
67 if (array == NULL)
68 return -ENOBUFS;
69
Patrick McHardy9bb85822008-07-08 03:24:44 -070070 vg->vlan_devices_arrays[vlan_id / VLAN_GROUP_ARRAY_PART_LEN] = array;
Pavel Emelyanov67727182008-03-26 16:27:22 -070071 return 0;
Patrick McHardy42429aa2007-06-13 12:05:59 -070072}
73
Eric Dumazet23289a32009-10-27 07:06:36 +000074void unregister_vlan_dev(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Jiri Pirko7da82c02011-12-08 04:11:15 +000076 struct vlan_dev_priv *vlan = vlan_dev_priv(dev);
Patrick McHardyaf301512008-01-21 00:25:50 -080077 struct net_device *real_dev = vlan->real_dev;
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +000078 struct vlan_info *vlan_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 struct vlan_group *grp;
Patrick McHardy9bb85822008-07-08 03:24:44 -070080 u16 vlan_id = vlan->vlan_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 ASSERT_RTNL();
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +000084 vlan_info = rtnl_dereference(real_dev->vlan_info);
85 BUG_ON(!vlan_info);
86
87 grp = &vlan_info->grp;
Patrick McHardyacc5efb2008-01-21 00:25:31 -080088
Patrick McHardyacc5efb2008-01-21 00:25:31 -080089 /* Take it out of our own structures, but be sure to interlock with
Pedro Garciaad1afb02010-07-18 15:38:44 -070090 * HW accelerating devices or SW vlan input packet processing if
91 * VLAN is not 0 (leave it there for 802.1p).
Patrick McHardyacc5efb2008-01-21 00:25:31 -080092 */
Jiri Pirko87002b02011-12-08 04:11:17 +000093 if (vlan_id)
94 vlan_vid_del(real_dev, vlan_id);
Patrick McHardyacc5efb2008-01-21 00:25:31 -080095
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +000096 grp->nr_vlan_devs--;
Patrick McHardyaf301512008-01-21 00:25:50 -080097
Eric Dumazet55aee102011-05-10 12:22:54 -070098 if (vlan->flags & VLAN_FLAG_GVRP)
99 vlan_gvrp_request_leave(dev);
100
Patrick McHardy29906f62009-10-29 23:43:00 -0700101 vlan_group_set_device(grp, vlan_id, NULL);
Eric Dumazet48752e12011-05-09 04:40:44 +0000102 /* Because unregister_netdevice_queue() makes sure at least one rcu
103 * grace period is respected before device freeing,
104 * we dont need to call synchronize_net() here.
105 */
Eric Dumazet23289a32009-10-27 07:06:36 +0000106 unregister_netdevice_queue(dev, head);
Patrick McHardyce305002008-07-05 21:26:41 -0700107
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000108 if (grp->nr_vlan_devs == 0)
Patrick McHardy70c03b42008-07-05 21:26:57 -0700109 vlan_gvrp_uninit_applicant(real_dev);
110
Patrick McHardyaf301512008-01-21 00:25:50 -0800111 /* Get rid of the vlan's reference to real_dev */
112 dev_put(real_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Patrick McHardy9bb85822008-07-08 03:24:44 -0700115int vlan_check_real_dev(struct net_device *real_dev, u16 vlan_id)
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700116{
Stephen Hemminger656299f2008-11-19 21:53:47 -0800117 const char *name = real_dev->name;
118 const struct net_device_ops *ops = real_dev->netdev_ops;
Patrick McHardy40f98e12008-01-21 00:24:30 -0800119
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700120 if (real_dev->features & NETIF_F_VLAN_CHALLENGED) {
Joe Perchesafab2d22011-05-26 10:58:31 +0000121 pr_info("VLANs not supported on %s\n", name);
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700122 return -EOPNOTSUPP;
123 }
124
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700125 if ((real_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemminger656299f2008-11-19 21:53:47 -0800126 (!ops->ndo_vlan_rx_add_vid || !ops->ndo_vlan_rx_kill_vid)) {
Joe Perchesafab2d22011-05-26 10:58:31 +0000127 pr_info("Device %s has buggy VLAN hw accel\n", name);
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700128 return -EOPNOTSUPP;
129 }
130
Jesse Gross65ac6a52010-10-20 13:56:05 +0000131 if (vlan_find_dev(real_dev, vlan_id) != NULL)
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700132 return -EEXIST;
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700133
134 return 0;
135}
136
Patrick McHardy07b5b172007-06-13 12:07:54 -0700137int register_vlan_dev(struct net_device *dev)
Patrick McHardye89fe422007-06-13 12:06:29 -0700138{
Jiri Pirko7da82c02011-12-08 04:11:15 +0000139 struct vlan_dev_priv *vlan = vlan_dev_priv(dev);
Patrick McHardye89fe422007-06-13 12:06:29 -0700140 struct net_device *real_dev = vlan->real_dev;
Patrick McHardy9bb85822008-07-08 03:24:44 -0700141 u16 vlan_id = vlan->vlan_id;
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000142 struct vlan_info *vlan_info;
143 struct vlan_group *grp;
Patrick McHardye89fe422007-06-13 12:06:29 -0700144 int err;
145
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000146 err = vlan_vid_add(real_dev, vlan_id);
147 if (err)
148 return err;
149
150 vlan_info = rtnl_dereference(real_dev->vlan_info);
151 /* vlan_info should be there now. vlan_vid_add took care of it */
152 BUG_ON(!vlan_info);
153
154 grp = &vlan_info->grp;
155 if (grp->nr_vlan_devs == 0) {
Patrick McHardy70c03b42008-07-05 21:26:57 -0700156 err = vlan_gvrp_init_applicant(real_dev);
157 if (err < 0)
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000158 goto out_vid_del;
Patrick McHardye89fe422007-06-13 12:06:29 -0700159 }
160
Pavel Emelyanov67727182008-03-26 16:27:22 -0700161 err = vlan_group_prealloc_vid(grp, vlan_id);
162 if (err < 0)
Patrick McHardy70c03b42008-07-05 21:26:57 -0700163 goto out_uninit_applicant;
Pavel Emelyanov67727182008-03-26 16:27:22 -0700164
Patrick McHardye89fe422007-06-13 12:06:29 -0700165 err = register_netdevice(dev);
166 if (err < 0)
Patrick McHardy70c03b42008-07-05 21:26:57 -0700167 goto out_uninit_applicant;
Patrick McHardye89fe422007-06-13 12:06:29 -0700168
Jiri Pirko7da82c02011-12-08 04:11:15 +0000169 /* Account for reference in struct vlan_dev_priv */
Patrick McHardye89fe422007-06-13 12:06:29 -0700170 dev_hold(real_dev);
171
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -0800172 netif_stacked_transfer_operstate(real_dev, dev);
Patrick McHardye89fe422007-06-13 12:06:29 -0700173 linkwatch_fire_event(dev); /* _MUST_ call rfc2863_policy() */
174
175 /* So, got the sucker initialized, now lets place
176 * it into our local structure.
177 */
178 vlan_group_set_device(grp, vlan_id, dev);
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000179 grp->nr_vlan_devs++;
Patrick McHardye89fe422007-06-13 12:06:29 -0700180
Patrick McHardye89fe422007-06-13 12:06:29 -0700181 return 0;
182
Patrick McHardy70c03b42008-07-05 21:26:57 -0700183out_uninit_applicant:
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000184 if (grp->nr_vlan_devs == 0)
Patrick McHardy70c03b42008-07-05 21:26:57 -0700185 vlan_gvrp_uninit_applicant(real_dev);
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000186out_vid_del:
187 vlan_vid_del(real_dev, vlan_id);
Patrick McHardye89fe422007-06-13 12:06:29 -0700188 return err;
189}
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191/* Attach a VLAN device to a mac address (ie Ethernet Card).
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700192 * Returns 0 if the device was created or a negative error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 */
Patrick McHardy9bb85822008-07-08 03:24:44 -0700194static int register_vlan_device(struct net_device *real_dev, u16 vlan_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 struct net_device *new_dev;
Pavel Emelyanov7a17a2f2008-04-16 00:54:39 -0700197 struct net *net = dev_net(real_dev);
198 struct vlan_net *vn = net_generic(net, vlan_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 char name[IFNAMSIZ];
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700200 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Patrick McHardy9bb85822008-07-08 03:24:44 -0700202 if (vlan_id >= VLAN_VID_MASK)
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700203 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Patrick McHardy9bb85822008-07-08 03:24:44 -0700205 err = vlan_check_real_dev(real_dev, vlan_id);
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700206 if (err < 0)
207 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 /* Gotta set up the fields for the device. */
Pavel Emelyanov7a17a2f2008-04-16 00:54:39 -0700210 switch (vn->name_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 case VLAN_NAME_TYPE_RAW_PLUS_VID:
212 /* name will look like: eth1.0005 */
Patrick McHardy9bb85822008-07-08 03:24:44 -0700213 snprintf(name, IFNAMSIZ, "%s.%.4i", real_dev->name, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 break;
215 case VLAN_NAME_TYPE_PLUS_VID_NO_PAD:
216 /* Put our vlan.VID in the name.
217 * Name will look like: vlan5
218 */
Patrick McHardy9bb85822008-07-08 03:24:44 -0700219 snprintf(name, IFNAMSIZ, "vlan%i", vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 break;
221 case VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD:
222 /* Put our vlan.VID in the name.
223 * Name will look like: eth0.5
224 */
Patrick McHardy9bb85822008-07-08 03:24:44 -0700225 snprintf(name, IFNAMSIZ, "%s.%i", real_dev->name, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 break;
227 case VLAN_NAME_TYPE_PLUS_VID:
228 /* Put our vlan.VID in the name.
229 * Name will look like: vlan0005
230 */
231 default:
Patrick McHardy9bb85822008-07-08 03:24:44 -0700232 snprintf(name, IFNAMSIZ, "vlan%.4i", vlan_id);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700233 }
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900234
Jiri Pirko7da82c02011-12-08 04:11:15 +0000235 new_dev = alloc_netdev(sizeof(struct vlan_dev_priv), name, vlan_setup);
Arjan van de Ven5dd8d1e2006-07-03 00:25:33 -0700236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (new_dev == NULL)
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700238 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Pavel Emelyanov65d292a2008-04-16 00:55:06 -0700240 dev_net_set(new_dev, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 /* need 4 bytes for extra VLAN header info,
242 * hope the underlying device can handle it.
243 */
244 new_dev->mtu = real_dev->mtu;
Yi Zou6e22ce22012-11-28 13:45:24 +0000245 new_dev->priv_flags |= (real_dev->priv_flags & IFF_UNICAST_FLT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Jiri Pirko7da82c02011-12-08 04:11:15 +0000247 vlan_dev_priv(new_dev)->vlan_id = vlan_id;
248 vlan_dev_priv(new_dev)->real_dev = real_dev;
249 vlan_dev_priv(new_dev)->dent = NULL;
250 vlan_dev_priv(new_dev)->flags = VLAN_FLAG_REORDER_HDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Patrick McHardy07b5b172007-06-13 12:07:54 -0700252 new_dev->rtnl_link_ops = &vlan_link_ops;
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700253 err = register_vlan_dev(new_dev);
254 if (err < 0)
Patrick McHardye89fe422007-06-13 12:06:29 -0700255 goto out_free_newdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700257 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259out_free_newdev:
260 free_netdev(new_dev);
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700261 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
Patrick McHardy8c979c22007-07-11 19:45:24 -0700264static void vlan_sync_address(struct net_device *dev,
265 struct net_device *vlandev)
266{
Jiri Pirko7da82c02011-12-08 04:11:15 +0000267 struct vlan_dev_priv *vlan = vlan_dev_priv(vlandev);
Patrick McHardy8c979c22007-07-11 19:45:24 -0700268
269 /* May be called without an actual change */
Joe Perches53a2b3a2012-05-08 18:56:47 +0000270 if (ether_addr_equal(vlan->real_dev_addr, dev->dev_addr))
Patrick McHardy8c979c22007-07-11 19:45:24 -0700271 return;
272
273 /* vlan address was different from the old address and is equal to
274 * the new address */
Joe Perches53a2b3a2012-05-08 18:56:47 +0000275 if (!ether_addr_equal(vlandev->dev_addr, vlan->real_dev_addr) &&
276 ether_addr_equal(vlandev->dev_addr, dev->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000277 dev_uc_del(dev, vlandev->dev_addr);
Patrick McHardy8c979c22007-07-11 19:45:24 -0700278
279 /* vlan address was equal to the old address and is different from
280 * the new address */
Joe Perches53a2b3a2012-05-08 18:56:47 +0000281 if (ether_addr_equal(vlandev->dev_addr, vlan->real_dev_addr) &&
282 !ether_addr_equal(vlandev->dev_addr, dev->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000283 dev_uc_add(dev, vlandev->dev_addr);
Patrick McHardy8c979c22007-07-11 19:45:24 -0700284
285 memcpy(vlan->real_dev_addr, dev->dev_addr, ETH_ALEN);
286}
287
Patrick McHardy5fb13572008-05-20 14:54:50 -0700288static void vlan_transfer_features(struct net_device *dev,
289 struct net_device *vlandev)
290{
Alexander Duyck1ae4be22008-09-11 20:17:05 -0700291 vlandev->gso_max_size = dev->gso_max_size;
John Fastabend029f5fc2010-10-30 14:22:32 +0000292
293 if (dev->features & NETIF_F_HW_VLAN_TX)
294 vlandev->hard_header_len = dev->hard_header_len;
295 else
296 vlandev->hard_header_len = dev->hard_header_len + VLAN_HLEN;
297
Amerigo Wangf4d53922012-10-29 17:22:28 +0000298#if IS_ENABLED(CONFIG_FCOE)
Vasu Devb85daa52009-08-14 12:41:07 +0000299 vlandev->fcoe_ddp_xid = dev->fcoe_ddp_xid;
300#endif
Michał Mirosław8a0427b2011-04-02 22:49:12 -0700301
302 netdev_update_features(vlandev);
Patrick McHardy5fb13572008-05-20 14:54:50 -0700303}
304
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700305static void __vlan_device_event(struct net_device *dev, unsigned long event)
306{
307 switch (event) {
308 case NETDEV_CHANGENAME:
309 vlan_proc_rem_dev(dev);
310 if (vlan_proc_add_dev(dev) < 0)
Joe Perchesafab2d22011-05-26 10:58:31 +0000311 pr_warn("failed to change proc name for %s\n",
312 dev->name);
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700313 break;
Pavel Emelyanov30688a92008-04-16 00:57:01 -0700314 case NETDEV_REGISTER:
315 if (vlan_proc_add_dev(dev) < 0)
Joe Perchesafab2d22011-05-26 10:58:31 +0000316 pr_warn("failed to add proc entry for %s\n", dev->name);
Pavel Emelyanov30688a92008-04-16 00:57:01 -0700317 break;
318 case NETDEV_UNREGISTER:
319 vlan_proc_rem_dev(dev);
320 break;
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700321 }
322}
323
Patrick McHardy2029cc22008-01-21 00:26:41 -0800324static int vlan_device_event(struct notifier_block *unused, unsigned long event,
325 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
327 struct net_device *dev = ptr;
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700328 struct vlan_group *grp;
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000329 struct vlan_info *vlan_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 int i, flgs;
331 struct net_device *vlandev;
Jiri Pirko7da82c02011-12-08 04:11:15 +0000332 struct vlan_dev_priv *vlan;
Patrick McHardy29906f62009-10-29 23:43:00 -0700333 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Patrick McHardy81d85342008-05-20 14:37:36 -0700335 if (is_vlan_dev(dev))
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700336 __vlan_device_event(dev, event);
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700337
Pedro Garciaad1afb02010-07-18 15:38:44 -0700338 if ((event == NETDEV_UP) &&
Jiri Pirko87002b02011-12-08 04:11:17 +0000339 (dev->features & NETIF_F_HW_VLAN_FILTER)) {
Joe Perchesafab2d22011-05-26 10:58:31 +0000340 pr_info("adding VLAN 0 to HW filter on device %s\n",
Pedro Garciaad1afb02010-07-18 15:38:44 -0700341 dev->name);
Jiri Pirko87002b02011-12-08 04:11:17 +0000342 vlan_vid_add(dev, 0);
Pedro Garciaad1afb02010-07-18 15:38:44 -0700343 }
344
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000345 vlan_info = rtnl_dereference(dev->vlan_info);
346 if (!vlan_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 goto out;
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000348 grp = &vlan_info->grp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 /* It is OK that we do not hold the group lock right now,
351 * as we run under the RTNL lock.
352 */
353
354 switch (event) {
355 case NETDEV_CHANGE:
356 /* Propagate real device state to vlan devices */
Jesse Grossb7381272010-10-20 13:56:02 +0000357 for (i = 0; i < VLAN_N_VID; i++) {
Dan Aloni5c15bde2007-03-02 20:44:51 -0800358 vlandev = vlan_group_get_device(grp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (!vlandev)
360 continue;
361
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -0800362 netif_stacked_transfer_operstate(dev, vlandev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 }
364 break;
365
Patrick McHardy8c979c22007-07-11 19:45:24 -0700366 case NETDEV_CHANGEADDR:
367 /* Adjust unicast filters on underlying device */
Jesse Grossb7381272010-10-20 13:56:02 +0000368 for (i = 0; i < VLAN_N_VID; i++) {
Patrick McHardy8c979c22007-07-11 19:45:24 -0700369 vlandev = vlan_group_get_device(grp, i);
370 if (!vlandev)
371 continue;
372
Patrick McHardyd932e042007-11-10 21:51:40 -0800373 flgs = vlandev->flags;
374 if (!(flgs & IFF_UP))
375 continue;
376
Patrick McHardy8c979c22007-07-11 19:45:24 -0700377 vlan_sync_address(dev, vlandev);
378 }
379 break;
380
Herbert Xu2e477c92009-07-20 07:35:37 -0700381 case NETDEV_CHANGEMTU:
Jesse Grossb7381272010-10-20 13:56:02 +0000382 for (i = 0; i < VLAN_N_VID; i++) {
Herbert Xu2e477c92009-07-20 07:35:37 -0700383 vlandev = vlan_group_get_device(grp, i);
384 if (!vlandev)
385 continue;
386
387 if (vlandev->mtu <= dev->mtu)
388 continue;
389
390 dev_set_mtu(vlandev, dev->mtu);
391 }
392 break;
393
Patrick McHardy5fb13572008-05-20 14:54:50 -0700394 case NETDEV_FEAT_CHANGE:
395 /* Propagate device features to underlying device */
Jesse Grossb7381272010-10-20 13:56:02 +0000396 for (i = 0; i < VLAN_N_VID; i++) {
Patrick McHardy5fb13572008-05-20 14:54:50 -0700397 vlandev = vlan_group_get_device(grp, i);
398 if (!vlandev)
399 continue;
400
401 vlan_transfer_features(dev, vlandev);
402 }
403
404 break;
405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 case NETDEV_DOWN:
Amir Hananiaefc73f42012-07-09 20:47:19 +0000407 if (dev->features & NETIF_F_HW_VLAN_FILTER)
408 vlan_vid_del(dev, 0);
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 /* Put all VLANs for this dev in the down state too. */
Jesse Grossb7381272010-10-20 13:56:02 +0000411 for (i = 0; i < VLAN_N_VID; i++) {
Dan Aloni5c15bde2007-03-02 20:44:51 -0800412 vlandev = vlan_group_get_device(grp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (!vlandev)
414 continue;
415
416 flgs = vlandev->flags;
417 if (!(flgs & IFF_UP))
418 continue;
419
Jiri Pirko7da82c02011-12-08 04:11:15 +0000420 vlan = vlan_dev_priv(vlandev);
Patrick McHardy5e756592009-11-25 07:54:54 +0000421 if (!(vlan->flags & VLAN_FLAG_LOOSE_BINDING))
422 dev_change_flags(vlandev, flgs & ~IFF_UP);
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -0800423 netif_stacked_transfer_operstate(dev, vlandev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 }
425 break;
426
427 case NETDEV_UP:
428 /* Put all VLANs for this dev in the up state too. */
Jesse Grossb7381272010-10-20 13:56:02 +0000429 for (i = 0; i < VLAN_N_VID; i++) {
Dan Aloni5c15bde2007-03-02 20:44:51 -0800430 vlandev = vlan_group_get_device(grp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (!vlandev)
432 continue;
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 flgs = vlandev->flags;
435 if (flgs & IFF_UP)
436 continue;
437
Jiri Pirko7da82c02011-12-08 04:11:15 +0000438 vlan = vlan_dev_priv(vlandev);
Patrick McHardy5e756592009-11-25 07:54:54 +0000439 if (!(vlan->flags & VLAN_FLAG_LOOSE_BINDING))
440 dev_change_flags(vlandev, flgs | IFF_UP);
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -0800441 netif_stacked_transfer_operstate(dev, vlandev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
443 break;
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 case NETDEV_UNREGISTER:
David Lamparter3b27e102010-09-17 03:22:19 +0000446 /* twiddle thumbs on netns device moves */
447 if (dev->reg_state != NETREG_UNREGISTERING)
448 break;
449
Jesse Grossb7381272010-10-20 13:56:02 +0000450 for (i = 0; i < VLAN_N_VID; i++) {
Patrick McHardy29906f62009-10-29 23:43:00 -0700451 vlandev = vlan_group_get_device(grp, i);
452 if (!vlandev)
453 continue;
454
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000455 /* removal of last vid destroys vlan_info, abort
Patrick McHardy29906f62009-10-29 23:43:00 -0700456 * afterwards */
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000457 if (vlan_info->nr_vids == 1)
Jesse Grossb7381272010-10-20 13:56:02 +0000458 i = VLAN_N_VID;
Patrick McHardy29906f62009-10-29 23:43:00 -0700459
460 unregister_vlan_dev(vlandev, &list);
461 }
462 unregister_netdevice_many(&list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 break;
Jiri Pirko1c01fe12010-03-10 10:30:19 +0000464
465 case NETDEV_PRE_TYPE_CHANGE:
466 /* Forbid underlaying device to change its type. */
Jiri Pirko18c22a02012-10-17 01:37:36 +0000467 if (vlan_uses_dev(dev))
468 return NOTIFY_BAD;
469 break;
Ben Hutchings99606472011-04-15 13:46:49 +0000470
471 case NETDEV_NOTIFY_PEERS:
Ben Hutchings7c899432011-04-15 13:47:51 +0000472 case NETDEV_BONDING_FAILOVER:
Ben Hutchings99606472011-04-15 13:46:49 +0000473 /* Propagate to vlan devices */
474 for (i = 0; i < VLAN_N_VID; i++) {
475 vlandev = vlan_group_get_device(grp, i);
476 if (!vlandev)
477 continue;
478
Ben Hutchings7c899432011-04-15 13:47:51 +0000479 call_netdevice_notifiers(event, vlandev);
Ben Hutchings99606472011-04-15 13:46:49 +0000480 }
481 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484out:
485 return NOTIFY_DONE;
486}
487
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800488static struct notifier_block vlan_notifier_block __read_mostly = {
489 .notifier_call = vlan_device_event,
490};
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492/*
493 * VLAN IOCTL handler.
494 * o execute requested action or pass command to the device driver
495 * arg is really a struct vlan_ioctl_args __user *.
496 */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700497static int vlan_ioctl_handler(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
Patrick McHardyc17d8872007-06-13 12:05:22 -0700499 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 struct vlan_ioctl_args args;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700501 struct net_device *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 if (copy_from_user(&args, arg, sizeof(struct vlan_ioctl_args)))
504 return -EFAULT;
505
506 /* Null terminate this sucker, just in case. */
507 args.device1[23] = 0;
508 args.u.device2[23] = 0;
509
Patrick McHardyc17d8872007-06-13 12:05:22 -0700510 rtnl_lock();
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 switch (args.cmd) {
513 case SET_VLAN_INGRESS_PRIORITY_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700514 case SET_VLAN_EGRESS_PRIORITY_CMD:
515 case SET_VLAN_FLAG_CMD:
516 case ADD_VLAN_CMD:
517 case DEL_VLAN_CMD:
518 case GET_VLAN_REALDEV_NAME_CMD:
519 case GET_VLAN_VID_CMD:
520 err = -ENODEV;
Pavel Emelyanov65d292a2008-04-16 00:55:06 -0700521 dev = __dev_get_by_name(net, args.device1);
Patrick McHardyc17d8872007-06-13 12:05:22 -0700522 if (!dev)
523 goto out;
524
525 err = -EINVAL;
Joonwoo Park26a25232008-07-08 03:22:16 -0700526 if (args.cmd != ADD_VLAN_CMD && !is_vlan_dev(dev))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700527 goto out;
528 }
529
530 switch (args.cmd) {
531 case SET_VLAN_INGRESS_PRIORITY_CMD:
532 err = -EPERM;
Eric W. Biederman276996f2012-11-16 03:03:09 +0000533 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700534 break;
535 vlan_dev_set_ingress_priority(dev,
536 args.u.skb_priority,
537 args.vlan_qos);
Patrick McHardyfffe4702007-11-07 01:31:32 -0800538 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 break;
540
541 case SET_VLAN_EGRESS_PRIORITY_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700542 err = -EPERM;
Eric W. Biederman276996f2012-11-16 03:03:09 +0000543 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700544 break;
545 err = vlan_dev_set_egress_priority(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 args.u.skb_priority,
547 args.vlan_qos);
548 break;
549
550 case SET_VLAN_FLAG_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700551 err = -EPERM;
Eric W. Biederman276996f2012-11-16 03:03:09 +0000552 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700553 break;
Patrick McHardyb3ce0322008-07-05 21:26:27 -0700554 err = vlan_dev_change_flags(dev,
555 args.vlan_qos ? args.u.flag : 0,
556 args.u.flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 break;
558
559 case SET_VLAN_NAME_TYPE_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700560 err = -EPERM;
Eric W. Biederman276996f2012-11-16 03:03:09 +0000561 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Pavel Emelyanove35de022007-12-06 22:52:16 -0800562 break;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700563 if ((args.u.name_type >= 0) &&
564 (args.u.name_type < VLAN_NAME_TYPE_HIGHEST)) {
Pavel Emelyanov7a17a2f2008-04-16 00:54:39 -0700565 struct vlan_net *vn;
566
567 vn = net_generic(net, vlan_net_id);
568 vn->name_type = args.u.name_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 err = 0;
570 } else {
571 err = -EINVAL;
572 }
573 break;
574
575 case ADD_VLAN_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700576 err = -EPERM;
Eric W. Biederman276996f2012-11-16 03:03:09 +0000577 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700578 break;
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700579 err = register_vlan_device(dev, args.u.VID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 break;
581
582 case DEL_VLAN_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700583 err = -EPERM;
Eric W. Biederman276996f2012-11-16 03:03:09 +0000584 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700585 break;
Eric Dumazet23289a32009-10-27 07:06:36 +0000586 unregister_vlan_dev(dev, NULL);
Patrick McHardyaf301512008-01-21 00:25:50 -0800587 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 break;
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 case GET_VLAN_REALDEV_NAME_CMD:
Andrew Morton3f5f4342007-07-24 15:37:11 -0700591 err = 0;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700592 vlan_dev_get_realdev_name(dev, args.u.device2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 if (copy_to_user(arg, &args,
Patrick McHardy2029cc22008-01-21 00:26:41 -0800594 sizeof(struct vlan_ioctl_args)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 break;
597
598 case GET_VLAN_VID_CMD:
Andrew Morton3f5f4342007-07-24 15:37:11 -0700599 err = 0;
Patrick McHardy22d1ba72008-07-08 03:23:57 -0700600 args.u.VID = vlan_dev_vlan_id(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (copy_to_user(arg, &args,
Patrick McHardy2029cc22008-01-21 00:26:41 -0800602 sizeof(struct vlan_ioctl_args)))
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900603 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 break;
605
606 default:
Patrick McHardy198a2912008-01-21 00:24:59 -0800607 err = -EOPNOTSUPP;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700608 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700609 }
Mika Kukkonen7eb1b3d2005-12-21 18:39:49 -0800610out:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700611 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return err;
613}
614
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000615static int __net_init vlan_init_net(struct net *net)
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700616{
Eric W. Biederman946d1a92009-11-29 15:46:05 +0000617 struct vlan_net *vn = net_generic(net, vlan_net_id);
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700618 int err;
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700619
Pavel Emelyanov7a17a2f2008-04-16 00:54:39 -0700620 vn->name_type = VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD;
621
Pavel Emelyanovcd1c7012008-04-16 00:51:12 -0700622 err = vlan_proc_init(net);
Pavel Emelyanovcd1c7012008-04-16 00:51:12 -0700623
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700624 return err;
625}
626
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000627static void __net_exit vlan_exit_net(struct net *net)
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700628{
Pavel Emelyanovcd1c7012008-04-16 00:51:12 -0700629 vlan_proc_cleanup(net);
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700630}
631
632static struct pernet_operations vlan_net_ops = {
633 .init = vlan_init_net,
634 .exit = vlan_exit_net,
Eric W. Biederman946d1a92009-11-29 15:46:05 +0000635 .id = &vlan_net_id,
636 .size = sizeof(struct vlan_net),
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700637};
638
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800639static int __init vlan_proto_init(void)
640{
641 int err;
642
Justin Mattockda7c06c2011-05-23 20:43:48 +0000643 pr_info("%s v%s\n", vlan_fullname, vlan_version);
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800644
Eric W. Biederman91e2ff32009-12-02 13:19:08 +0000645 err = register_pernet_subsys(&vlan_net_ops);
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700646 if (err < 0)
647 goto err0;
648
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800649 err = register_netdevice_notifier(&vlan_notifier_block);
650 if (err < 0)
651 goto err2;
652
Patrick McHardy70c03b42008-07-05 21:26:57 -0700653 err = vlan_gvrp_init();
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800654 if (err < 0)
655 goto err3;
656
Patrick McHardy70c03b42008-07-05 21:26:57 -0700657 err = vlan_netlink_init();
658 if (err < 0)
659 goto err4;
660
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800661 vlan_ioctl_set(vlan_ioctl_handler);
662 return 0;
663
Patrick McHardy70c03b42008-07-05 21:26:57 -0700664err4:
665 vlan_gvrp_uninit();
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800666err3:
667 unregister_netdevice_notifier(&vlan_notifier_block);
668err2:
Eric W. Biederman91e2ff32009-12-02 13:19:08 +0000669 unregister_pernet_subsys(&vlan_net_ops);
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700670err0:
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800671 return err;
672}
673
674static void __exit vlan_cleanup_module(void)
675{
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800676 vlan_ioctl_set(NULL);
677 vlan_netlink_fini();
678
679 unregister_netdevice_notifier(&vlan_notifier_block);
680
Eric W. Biederman91e2ff32009-12-02 13:19:08 +0000681 unregister_pernet_subsys(&vlan_net_ops);
Jesper Dangaard Brouer6e327c12009-06-08 03:11:28 +0000682 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Patrick McHardy70c03b42008-07-05 21:26:57 -0700683
684 vlan_gvrp_uninit();
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800685}
686
687module_init(vlan_proto_init);
688module_exit(vlan_cleanup_module);
689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690MODULE_LICENSE("GPL");
691MODULE_VERSION(DRV_VERSION);