blob: a18714469bf791299f0d60b1a38b9886fdf4dfff [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
David Ward86fbe9b2013-02-08 17:17:07 +000098 if (vlan->flags & VLAN_FLAG_MVRP)
99 vlan_mvrp_request_leave(dev);
Eric Dumazet55aee102011-05-10 12:22:54 -0700100 if (vlan->flags & VLAN_FLAG_GVRP)
101 vlan_gvrp_request_leave(dev);
102
Patrick McHardy29906f62009-10-29 23:43:00 -0700103 vlan_group_set_device(grp, vlan_id, NULL);
Eric Dumazet48752e12011-05-09 04:40:44 +0000104 /* Because unregister_netdevice_queue() makes sure at least one rcu
105 * grace period is respected before device freeing,
106 * we dont need to call synchronize_net() here.
107 */
Eric Dumazet23289a32009-10-27 07:06:36 +0000108 unregister_netdevice_queue(dev, head);
Patrick McHardyce305002008-07-05 21:26:41 -0700109
Jiri Pirko126d6c22013-01-03 22:48:51 +0000110 netdev_upper_dev_unlink(real_dev, dev);
111
David Ward86fbe9b2013-02-08 17:17:07 +0000112 if (grp->nr_vlan_devs == 0) {
113 vlan_mvrp_uninit_applicant(real_dev);
Patrick McHardy70c03b42008-07-05 21:26:57 -0700114 vlan_gvrp_uninit_applicant(real_dev);
David Ward86fbe9b2013-02-08 17:17:07 +0000115 }
Patrick McHardy70c03b42008-07-05 21:26:57 -0700116
Patrick McHardyaf301512008-01-21 00:25:50 -0800117 /* Get rid of the vlan's reference to real_dev */
118 dev_put(real_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
Patrick McHardy9bb85822008-07-08 03:24:44 -0700121int vlan_check_real_dev(struct net_device *real_dev, u16 vlan_id)
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700122{
Stephen Hemminger656299f2008-11-19 21:53:47 -0800123 const char *name = real_dev->name;
Patrick McHardy40f98e12008-01-21 00:24:30 -0800124
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700125 if (real_dev->features & NETIF_F_VLAN_CHALLENGED) {
Joe Perchesafab2d22011-05-26 10:58:31 +0000126 pr_info("VLANs not supported on %s\n", name);
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700127 return -EOPNOTSUPP;
128 }
129
Jesse Gross65ac6a52010-10-20 13:56:05 +0000130 if (vlan_find_dev(real_dev, vlan_id) != NULL)
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700131 return -EEXIST;
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700132
133 return 0;
134}
135
Patrick McHardy07b5b172007-06-13 12:07:54 -0700136int register_vlan_dev(struct net_device *dev)
Patrick McHardye89fe422007-06-13 12:06:29 -0700137{
Jiri Pirko7da82c02011-12-08 04:11:15 +0000138 struct vlan_dev_priv *vlan = vlan_dev_priv(dev);
Patrick McHardye89fe422007-06-13 12:06:29 -0700139 struct net_device *real_dev = vlan->real_dev;
Patrick McHardy9bb85822008-07-08 03:24:44 -0700140 u16 vlan_id = vlan->vlan_id;
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000141 struct vlan_info *vlan_info;
142 struct vlan_group *grp;
Patrick McHardye89fe422007-06-13 12:06:29 -0700143 int err;
144
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000145 err = vlan_vid_add(real_dev, vlan_id);
146 if (err)
147 return err;
148
149 vlan_info = rtnl_dereference(real_dev->vlan_info);
150 /* vlan_info should be there now. vlan_vid_add took care of it */
151 BUG_ON(!vlan_info);
152
153 grp = &vlan_info->grp;
154 if (grp->nr_vlan_devs == 0) {
Patrick McHardy70c03b42008-07-05 21:26:57 -0700155 err = vlan_gvrp_init_applicant(real_dev);
156 if (err < 0)
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000157 goto out_vid_del;
David Ward86fbe9b2013-02-08 17:17:07 +0000158 err = vlan_mvrp_init_applicant(real_dev);
159 if (err < 0)
160 goto out_uninit_gvrp;
Patrick McHardye89fe422007-06-13 12:06:29 -0700161 }
162
Pavel Emelyanov67727182008-03-26 16:27:22 -0700163 err = vlan_group_prealloc_vid(grp, vlan_id);
164 if (err < 0)
David Ward86fbe9b2013-02-08 17:17:07 +0000165 goto out_uninit_mvrp;
Pavel Emelyanov67727182008-03-26 16:27:22 -0700166
Jiri Pirko126d6c22013-01-03 22:48:51 +0000167 err = netdev_upper_dev_link(real_dev, dev);
168 if (err)
David Ward86fbe9b2013-02-08 17:17:07 +0000169 goto out_uninit_mvrp;
Jiri Pirko126d6c22013-01-03 22:48:51 +0000170
Patrick McHardye89fe422007-06-13 12:06:29 -0700171 err = register_netdevice(dev);
172 if (err < 0)
Jiri Pirko126d6c22013-01-03 22:48:51 +0000173 goto out_upper_dev_unlink;
Patrick McHardye89fe422007-06-13 12:06:29 -0700174
Jiri Pirko7da82c02011-12-08 04:11:15 +0000175 /* Account for reference in struct vlan_dev_priv */
Patrick McHardye89fe422007-06-13 12:06:29 -0700176 dev_hold(real_dev);
177
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -0800178 netif_stacked_transfer_operstate(real_dev, dev);
Patrick McHardye89fe422007-06-13 12:06:29 -0700179 linkwatch_fire_event(dev); /* _MUST_ call rfc2863_policy() */
180
181 /* So, got the sucker initialized, now lets place
182 * it into our local structure.
183 */
184 vlan_group_set_device(grp, vlan_id, dev);
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000185 grp->nr_vlan_devs++;
Patrick McHardye89fe422007-06-13 12:06:29 -0700186
Patrick McHardye89fe422007-06-13 12:06:29 -0700187 return 0;
188
Jiri Pirko126d6c22013-01-03 22:48:51 +0000189out_upper_dev_unlink:
190 netdev_upper_dev_unlink(real_dev, dev);
David Ward86fbe9b2013-02-08 17:17:07 +0000191out_uninit_mvrp:
192 if (grp->nr_vlan_devs == 0)
193 vlan_mvrp_uninit_applicant(real_dev);
194out_uninit_gvrp:
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000195 if (grp->nr_vlan_devs == 0)
Patrick McHardy70c03b42008-07-05 21:26:57 -0700196 vlan_gvrp_uninit_applicant(real_dev);
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000197out_vid_del:
198 vlan_vid_del(real_dev, vlan_id);
Patrick McHardye89fe422007-06-13 12:06:29 -0700199 return err;
200}
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/* Attach a VLAN device to a mac address (ie Ethernet Card).
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700203 * Returns 0 if the device was created or a negative error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 */
Patrick McHardy9bb85822008-07-08 03:24:44 -0700205static int register_vlan_device(struct net_device *real_dev, u16 vlan_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 struct net_device *new_dev;
Pavel Emelyanov7a17a2f2008-04-16 00:54:39 -0700208 struct net *net = dev_net(real_dev);
209 struct vlan_net *vn = net_generic(net, vlan_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 char name[IFNAMSIZ];
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700211 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Patrick McHardy9bb85822008-07-08 03:24:44 -0700213 if (vlan_id >= VLAN_VID_MASK)
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700214 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Patrick McHardy9bb85822008-07-08 03:24:44 -0700216 err = vlan_check_real_dev(real_dev, vlan_id);
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700217 if (err < 0)
218 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 /* Gotta set up the fields for the device. */
Pavel Emelyanov7a17a2f2008-04-16 00:54:39 -0700221 switch (vn->name_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 case VLAN_NAME_TYPE_RAW_PLUS_VID:
223 /* name will look like: eth1.0005 */
Patrick McHardy9bb85822008-07-08 03:24:44 -0700224 snprintf(name, IFNAMSIZ, "%s.%.4i", real_dev->name, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 break;
226 case VLAN_NAME_TYPE_PLUS_VID_NO_PAD:
227 /* Put our vlan.VID in the name.
228 * Name will look like: vlan5
229 */
Patrick McHardy9bb85822008-07-08 03:24:44 -0700230 snprintf(name, IFNAMSIZ, "vlan%i", vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 break;
232 case VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD:
233 /* Put our vlan.VID in the name.
234 * Name will look like: eth0.5
235 */
Patrick McHardy9bb85822008-07-08 03:24:44 -0700236 snprintf(name, IFNAMSIZ, "%s.%i", real_dev->name, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 break;
238 case VLAN_NAME_TYPE_PLUS_VID:
239 /* Put our vlan.VID in the name.
240 * Name will look like: vlan0005
241 */
242 default:
Patrick McHardy9bb85822008-07-08 03:24:44 -0700243 snprintf(name, IFNAMSIZ, "vlan%.4i", vlan_id);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700244 }
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900245
Jiri Pirko7da82c02011-12-08 04:11:15 +0000246 new_dev = alloc_netdev(sizeof(struct vlan_dev_priv), name, vlan_setup);
Arjan van de Ven5dd8d1e2006-07-03 00:25:33 -0700247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (new_dev == NULL)
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700249 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Pavel Emelyanov65d292a2008-04-16 00:55:06 -0700251 dev_net_set(new_dev, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 /* need 4 bytes for extra VLAN header info,
253 * hope the underlying device can handle it.
254 */
255 new_dev->mtu = real_dev->mtu;
Yi Zou6e22ce22012-11-28 13:45:24 +0000256 new_dev->priv_flags |= (real_dev->priv_flags & IFF_UNICAST_FLT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Jiri Pirko7da82c02011-12-08 04:11:15 +0000258 vlan_dev_priv(new_dev)->vlan_id = vlan_id;
259 vlan_dev_priv(new_dev)->real_dev = real_dev;
260 vlan_dev_priv(new_dev)->dent = NULL;
261 vlan_dev_priv(new_dev)->flags = VLAN_FLAG_REORDER_HDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Patrick McHardy07b5b172007-06-13 12:07:54 -0700263 new_dev->rtnl_link_ops = &vlan_link_ops;
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700264 err = register_vlan_dev(new_dev);
265 if (err < 0)
Patrick McHardye89fe422007-06-13 12:06:29 -0700266 goto out_free_newdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700268 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270out_free_newdev:
271 free_netdev(new_dev);
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700272 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
Patrick McHardy8c979c22007-07-11 19:45:24 -0700275static void vlan_sync_address(struct net_device *dev,
276 struct net_device *vlandev)
277{
Jiri Pirko7da82c02011-12-08 04:11:15 +0000278 struct vlan_dev_priv *vlan = vlan_dev_priv(vlandev);
Patrick McHardy8c979c22007-07-11 19:45:24 -0700279
280 /* May be called without an actual change */
Joe Perches53a2b3a2012-05-08 18:56:47 +0000281 if (ether_addr_equal(vlan->real_dev_addr, dev->dev_addr))
Patrick McHardy8c979c22007-07-11 19:45:24 -0700282 return;
283
284 /* vlan address was different from the old address and is equal to
285 * the new address */
Joe Perches53a2b3a2012-05-08 18:56:47 +0000286 if (!ether_addr_equal(vlandev->dev_addr, vlan->real_dev_addr) &&
287 ether_addr_equal(vlandev->dev_addr, dev->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000288 dev_uc_del(dev, vlandev->dev_addr);
Patrick McHardy8c979c22007-07-11 19:45:24 -0700289
290 /* vlan address was equal to the old address and is different from
291 * the new address */
Joe Perches53a2b3a2012-05-08 18:56:47 +0000292 if (ether_addr_equal(vlandev->dev_addr, vlan->real_dev_addr) &&
293 !ether_addr_equal(vlandev->dev_addr, dev->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000294 dev_uc_add(dev, vlandev->dev_addr);
Patrick McHardy8c979c22007-07-11 19:45:24 -0700295
296 memcpy(vlan->real_dev_addr, dev->dev_addr, ETH_ALEN);
297}
298
Patrick McHardy5fb13572008-05-20 14:54:50 -0700299static void vlan_transfer_features(struct net_device *dev,
300 struct net_device *vlandev)
301{
Alexander Duyck1ae4be22008-09-11 20:17:05 -0700302 vlandev->gso_max_size = dev->gso_max_size;
John Fastabend029f5fc2010-10-30 14:22:32 +0000303
304 if (dev->features & NETIF_F_HW_VLAN_TX)
305 vlandev->hard_header_len = dev->hard_header_len;
306 else
307 vlandev->hard_header_len = dev->hard_header_len + VLAN_HLEN;
308
Amerigo Wangf4d53922012-10-29 17:22:28 +0000309#if IS_ENABLED(CONFIG_FCOE)
Vasu Devb85daa52009-08-14 12:41:07 +0000310 vlandev->fcoe_ddp_xid = dev->fcoe_ddp_xid;
311#endif
Michał Mirosław8a0427b2011-04-02 22:49:12 -0700312
313 netdev_update_features(vlandev);
Patrick McHardy5fb13572008-05-20 14:54:50 -0700314}
315
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700316static void __vlan_device_event(struct net_device *dev, unsigned long event)
317{
318 switch (event) {
319 case NETDEV_CHANGENAME:
320 vlan_proc_rem_dev(dev);
321 if (vlan_proc_add_dev(dev) < 0)
Joe Perchesafab2d22011-05-26 10:58:31 +0000322 pr_warn("failed to change proc name for %s\n",
323 dev->name);
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700324 break;
Pavel Emelyanov30688a92008-04-16 00:57:01 -0700325 case NETDEV_REGISTER:
326 if (vlan_proc_add_dev(dev) < 0)
Joe Perchesafab2d22011-05-26 10:58:31 +0000327 pr_warn("failed to add proc entry for %s\n", dev->name);
Pavel Emelyanov30688a92008-04-16 00:57:01 -0700328 break;
329 case NETDEV_UNREGISTER:
330 vlan_proc_rem_dev(dev);
331 break;
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700332 }
333}
334
Patrick McHardy2029cc22008-01-21 00:26:41 -0800335static int vlan_device_event(struct notifier_block *unused, unsigned long event,
336 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 struct net_device *dev = ptr;
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700339 struct vlan_group *grp;
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000340 struct vlan_info *vlan_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 int i, flgs;
342 struct net_device *vlandev;
Jiri Pirko7da82c02011-12-08 04:11:15 +0000343 struct vlan_dev_priv *vlan;
Patrick McHardy29906f62009-10-29 23:43:00 -0700344 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Patrick McHardy81d85342008-05-20 14:37:36 -0700346 if (is_vlan_dev(dev))
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700347 __vlan_device_event(dev, event);
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700348
Pedro Garciaad1afb02010-07-18 15:38:44 -0700349 if ((event == NETDEV_UP) &&
Jiri Pirko87002b02011-12-08 04:11:17 +0000350 (dev->features & NETIF_F_HW_VLAN_FILTER)) {
Joe Perchesafab2d22011-05-26 10:58:31 +0000351 pr_info("adding VLAN 0 to HW filter on device %s\n",
Pedro Garciaad1afb02010-07-18 15:38:44 -0700352 dev->name);
Jiri Pirko87002b02011-12-08 04:11:17 +0000353 vlan_vid_add(dev, 0);
Pedro Garciaad1afb02010-07-18 15:38:44 -0700354 }
355
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000356 vlan_info = rtnl_dereference(dev->vlan_info);
357 if (!vlan_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 goto out;
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000359 grp = &vlan_info->grp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 /* It is OK that we do not hold the group lock right now,
362 * as we run under the RTNL lock.
363 */
364
365 switch (event) {
366 case NETDEV_CHANGE:
367 /* Propagate real device state to vlan devices */
Jesse Grossb7381272010-10-20 13:56:02 +0000368 for (i = 0; i < VLAN_N_VID; i++) {
Dan Aloni5c15bde2007-03-02 20:44:51 -0800369 vlandev = vlan_group_get_device(grp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (!vlandev)
371 continue;
372
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -0800373 netif_stacked_transfer_operstate(dev, vlandev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
375 break;
376
Patrick McHardy8c979c22007-07-11 19:45:24 -0700377 case NETDEV_CHANGEADDR:
378 /* Adjust unicast filters on underlying device */
Jesse Grossb7381272010-10-20 13:56:02 +0000379 for (i = 0; i < VLAN_N_VID; i++) {
Patrick McHardy8c979c22007-07-11 19:45:24 -0700380 vlandev = vlan_group_get_device(grp, i);
381 if (!vlandev)
382 continue;
383
Patrick McHardyd932e042007-11-10 21:51:40 -0800384 flgs = vlandev->flags;
385 if (!(flgs & IFF_UP))
386 continue;
387
Patrick McHardy8c979c22007-07-11 19:45:24 -0700388 vlan_sync_address(dev, vlandev);
389 }
390 break;
391
Herbert Xu2e477c92009-07-20 07:35:37 -0700392 case NETDEV_CHANGEMTU:
Jesse Grossb7381272010-10-20 13:56:02 +0000393 for (i = 0; i < VLAN_N_VID; i++) {
Herbert Xu2e477c92009-07-20 07:35:37 -0700394 vlandev = vlan_group_get_device(grp, i);
395 if (!vlandev)
396 continue;
397
398 if (vlandev->mtu <= dev->mtu)
399 continue;
400
401 dev_set_mtu(vlandev, dev->mtu);
402 }
403 break;
404
Patrick McHardy5fb13572008-05-20 14:54:50 -0700405 case NETDEV_FEAT_CHANGE:
406 /* Propagate device features to underlying device */
Jesse Grossb7381272010-10-20 13:56:02 +0000407 for (i = 0; i < VLAN_N_VID; i++) {
Patrick McHardy5fb13572008-05-20 14:54:50 -0700408 vlandev = vlan_group_get_device(grp, i);
409 if (!vlandev)
410 continue;
411
412 vlan_transfer_features(dev, vlandev);
413 }
414
415 break;
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 case NETDEV_DOWN:
Amir Hananiaefc73f42012-07-09 20:47:19 +0000418 if (dev->features & NETIF_F_HW_VLAN_FILTER)
419 vlan_vid_del(dev, 0);
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 /* Put all VLANs for this dev in the down state too. */
Jesse Grossb7381272010-10-20 13:56:02 +0000422 for (i = 0; i < VLAN_N_VID; i++) {
Dan Aloni5c15bde2007-03-02 20:44:51 -0800423 vlandev = vlan_group_get_device(grp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (!vlandev)
425 continue;
426
427 flgs = vlandev->flags;
428 if (!(flgs & IFF_UP))
429 continue;
430
Jiri Pirko7da82c02011-12-08 04:11:15 +0000431 vlan = vlan_dev_priv(vlandev);
Patrick McHardy5e756592009-11-25 07:54:54 +0000432 if (!(vlan->flags & VLAN_FLAG_LOOSE_BINDING))
433 dev_change_flags(vlandev, flgs & ~IFF_UP);
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -0800434 netif_stacked_transfer_operstate(dev, vlandev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
436 break;
437
438 case NETDEV_UP:
439 /* Put all VLANs for this dev in the up state too. */
Jesse Grossb7381272010-10-20 13:56:02 +0000440 for (i = 0; i < VLAN_N_VID; i++) {
Dan Aloni5c15bde2007-03-02 20:44:51 -0800441 vlandev = vlan_group_get_device(grp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 if (!vlandev)
443 continue;
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 flgs = vlandev->flags;
446 if (flgs & IFF_UP)
447 continue;
448
Jiri Pirko7da82c02011-12-08 04:11:15 +0000449 vlan = vlan_dev_priv(vlandev);
Patrick McHardy5e756592009-11-25 07:54:54 +0000450 if (!(vlan->flags & VLAN_FLAG_LOOSE_BINDING))
451 dev_change_flags(vlandev, flgs | IFF_UP);
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -0800452 netif_stacked_transfer_operstate(dev, vlandev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 }
454 break;
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 case NETDEV_UNREGISTER:
David Lamparter3b27e102010-09-17 03:22:19 +0000457 /* twiddle thumbs on netns device moves */
458 if (dev->reg_state != NETREG_UNREGISTERING)
459 break;
460
Jesse Grossb7381272010-10-20 13:56:02 +0000461 for (i = 0; i < VLAN_N_VID; i++) {
Patrick McHardy29906f62009-10-29 23:43:00 -0700462 vlandev = vlan_group_get_device(grp, i);
463 if (!vlandev)
464 continue;
465
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000466 /* removal of last vid destroys vlan_info, abort
Patrick McHardy29906f62009-10-29 23:43:00 -0700467 * afterwards */
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000468 if (vlan_info->nr_vids == 1)
Jesse Grossb7381272010-10-20 13:56:02 +0000469 i = VLAN_N_VID;
Patrick McHardy29906f62009-10-29 23:43:00 -0700470
471 unregister_vlan_dev(vlandev, &list);
472 }
473 unregister_netdevice_many(&list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 break;
Jiri Pirko1c01fe12010-03-10 10:30:19 +0000475
476 case NETDEV_PRE_TYPE_CHANGE:
477 /* Forbid underlaying device to change its type. */
Jiri Pirko18c22a02012-10-17 01:37:36 +0000478 if (vlan_uses_dev(dev))
479 return NOTIFY_BAD;
480 break;
Ben Hutchings99606472011-04-15 13:46:49 +0000481
482 case NETDEV_NOTIFY_PEERS:
Ben Hutchings7c899432011-04-15 13:47:51 +0000483 case NETDEV_BONDING_FAILOVER:
Ben Hutchings99606472011-04-15 13:46:49 +0000484 /* Propagate to vlan devices */
485 for (i = 0; i < VLAN_N_VID; i++) {
486 vlandev = vlan_group_get_device(grp, i);
487 if (!vlandev)
488 continue;
489
Ben Hutchings7c899432011-04-15 13:47:51 +0000490 call_netdevice_notifiers(event, vlandev);
Ben Hutchings99606472011-04-15 13:46:49 +0000491 }
492 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495out:
496 return NOTIFY_DONE;
497}
498
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800499static struct notifier_block vlan_notifier_block __read_mostly = {
500 .notifier_call = vlan_device_event,
501};
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503/*
504 * VLAN IOCTL handler.
505 * o execute requested action or pass command to the device driver
506 * arg is really a struct vlan_ioctl_args __user *.
507 */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700508static int vlan_ioctl_handler(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Patrick McHardyc17d8872007-06-13 12:05:22 -0700510 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 struct vlan_ioctl_args args;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700512 struct net_device *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 if (copy_from_user(&args, arg, sizeof(struct vlan_ioctl_args)))
515 return -EFAULT;
516
517 /* Null terminate this sucker, just in case. */
518 args.device1[23] = 0;
519 args.u.device2[23] = 0;
520
Patrick McHardyc17d8872007-06-13 12:05:22 -0700521 rtnl_lock();
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 switch (args.cmd) {
524 case SET_VLAN_INGRESS_PRIORITY_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700525 case SET_VLAN_EGRESS_PRIORITY_CMD:
526 case SET_VLAN_FLAG_CMD:
527 case ADD_VLAN_CMD:
528 case DEL_VLAN_CMD:
529 case GET_VLAN_REALDEV_NAME_CMD:
530 case GET_VLAN_VID_CMD:
531 err = -ENODEV;
Pavel Emelyanov65d292a2008-04-16 00:55:06 -0700532 dev = __dev_get_by_name(net, args.device1);
Patrick McHardyc17d8872007-06-13 12:05:22 -0700533 if (!dev)
534 goto out;
535
536 err = -EINVAL;
Joonwoo Park26a25232008-07-08 03:22:16 -0700537 if (args.cmd != ADD_VLAN_CMD && !is_vlan_dev(dev))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700538 goto out;
539 }
540
541 switch (args.cmd) {
542 case SET_VLAN_INGRESS_PRIORITY_CMD:
543 err = -EPERM;
Eric W. Biederman276996f2012-11-16 03:03:09 +0000544 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700545 break;
546 vlan_dev_set_ingress_priority(dev,
547 args.u.skb_priority,
548 args.vlan_qos);
Patrick McHardyfffe4702007-11-07 01:31:32 -0800549 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 break;
551
552 case SET_VLAN_EGRESS_PRIORITY_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700553 err = -EPERM;
Eric W. Biederman276996f2012-11-16 03:03:09 +0000554 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700555 break;
556 err = vlan_dev_set_egress_priority(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 args.u.skb_priority,
558 args.vlan_qos);
559 break;
560
561 case SET_VLAN_FLAG_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700562 err = -EPERM;
Eric W. Biederman276996f2012-11-16 03:03:09 +0000563 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700564 break;
Patrick McHardyb3ce0322008-07-05 21:26:27 -0700565 err = vlan_dev_change_flags(dev,
566 args.vlan_qos ? args.u.flag : 0,
567 args.u.flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 break;
569
570 case SET_VLAN_NAME_TYPE_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700571 err = -EPERM;
Eric W. Biederman276996f2012-11-16 03:03:09 +0000572 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Pavel Emelyanove35de022007-12-06 22:52:16 -0800573 break;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700574 if ((args.u.name_type >= 0) &&
575 (args.u.name_type < VLAN_NAME_TYPE_HIGHEST)) {
Pavel Emelyanov7a17a2f2008-04-16 00:54:39 -0700576 struct vlan_net *vn;
577
578 vn = net_generic(net, vlan_net_id);
579 vn->name_type = args.u.name_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 err = 0;
581 } else {
582 err = -EINVAL;
583 }
584 break;
585
586 case ADD_VLAN_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700587 err = -EPERM;
Eric W. Biederman276996f2012-11-16 03:03:09 +0000588 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700589 break;
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700590 err = register_vlan_device(dev, args.u.VID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 break;
592
593 case DEL_VLAN_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700594 err = -EPERM;
Eric W. Biederman276996f2012-11-16 03:03:09 +0000595 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700596 break;
Eric Dumazet23289a32009-10-27 07:06:36 +0000597 unregister_vlan_dev(dev, NULL);
Patrick McHardyaf301512008-01-21 00:25:50 -0800598 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 break;
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 case GET_VLAN_REALDEV_NAME_CMD:
Andrew Morton3f5f4342007-07-24 15:37:11 -0700602 err = 0;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700603 vlan_dev_get_realdev_name(dev, args.u.device2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (copy_to_user(arg, &args,
Patrick McHardy2029cc22008-01-21 00:26:41 -0800605 sizeof(struct vlan_ioctl_args)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 break;
608
609 case GET_VLAN_VID_CMD:
Andrew Morton3f5f4342007-07-24 15:37:11 -0700610 err = 0;
Patrick McHardy22d1ba72008-07-08 03:23:57 -0700611 args.u.VID = vlan_dev_vlan_id(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 if (copy_to_user(arg, &args,
Patrick McHardy2029cc22008-01-21 00:26:41 -0800613 sizeof(struct vlan_ioctl_args)))
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900614 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 break;
616
617 default:
Patrick McHardy198a2912008-01-21 00:24:59 -0800618 err = -EOPNOTSUPP;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700619 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700620 }
Mika Kukkonen7eb1b3d2005-12-21 18:39:49 -0800621out:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700622 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return err;
624}
625
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000626static int __net_init vlan_init_net(struct net *net)
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700627{
Eric W. Biederman946d1a92009-11-29 15:46:05 +0000628 struct vlan_net *vn = net_generic(net, vlan_net_id);
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700629 int err;
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700630
Pavel Emelyanov7a17a2f2008-04-16 00:54:39 -0700631 vn->name_type = VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD;
632
Pavel Emelyanovcd1c7012008-04-16 00:51:12 -0700633 err = vlan_proc_init(net);
Pavel Emelyanovcd1c7012008-04-16 00:51:12 -0700634
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700635 return err;
636}
637
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000638static void __net_exit vlan_exit_net(struct net *net)
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700639{
Pavel Emelyanovcd1c7012008-04-16 00:51:12 -0700640 vlan_proc_cleanup(net);
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700641}
642
643static struct pernet_operations vlan_net_ops = {
644 .init = vlan_init_net,
645 .exit = vlan_exit_net,
Eric W. Biederman946d1a92009-11-29 15:46:05 +0000646 .id = &vlan_net_id,
647 .size = sizeof(struct vlan_net),
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700648};
649
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800650static int __init vlan_proto_init(void)
651{
652 int err;
653
Justin Mattockda7c06c2011-05-23 20:43:48 +0000654 pr_info("%s v%s\n", vlan_fullname, vlan_version);
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800655
Eric W. Biederman91e2ff32009-12-02 13:19:08 +0000656 err = register_pernet_subsys(&vlan_net_ops);
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700657 if (err < 0)
658 goto err0;
659
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800660 err = register_netdevice_notifier(&vlan_notifier_block);
661 if (err < 0)
662 goto err2;
663
Patrick McHardy70c03b42008-07-05 21:26:57 -0700664 err = vlan_gvrp_init();
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800665 if (err < 0)
666 goto err3;
667
David Ward86fbe9b2013-02-08 17:17:07 +0000668 err = vlan_mvrp_init();
Patrick McHardy70c03b42008-07-05 21:26:57 -0700669 if (err < 0)
670 goto err4;
671
David Ward86fbe9b2013-02-08 17:17:07 +0000672 err = vlan_netlink_init();
673 if (err < 0)
674 goto err5;
675
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800676 vlan_ioctl_set(vlan_ioctl_handler);
677 return 0;
678
David Ward86fbe9b2013-02-08 17:17:07 +0000679err5:
680 vlan_mvrp_uninit();
Patrick McHardy70c03b42008-07-05 21:26:57 -0700681err4:
682 vlan_gvrp_uninit();
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800683err3:
684 unregister_netdevice_notifier(&vlan_notifier_block);
685err2:
Eric W. Biederman91e2ff32009-12-02 13:19:08 +0000686 unregister_pernet_subsys(&vlan_net_ops);
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700687err0:
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800688 return err;
689}
690
691static void __exit vlan_cleanup_module(void)
692{
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800693 vlan_ioctl_set(NULL);
694 vlan_netlink_fini();
695
696 unregister_netdevice_notifier(&vlan_notifier_block);
697
Eric W. Biederman91e2ff32009-12-02 13:19:08 +0000698 unregister_pernet_subsys(&vlan_net_ops);
Jesper Dangaard Brouer6e327c12009-06-08 03:11:28 +0000699 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Patrick McHardy70c03b42008-07-05 21:26:57 -0700700
David Ward86fbe9b2013-02-08 17:17:07 +0000701 vlan_mvrp_uninit();
Patrick McHardy70c03b42008-07-05 21:26:57 -0700702 vlan_gvrp_uninit();
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800703}
704
705module_init(vlan_proto_init);
706module_exit(vlan_cleanup_module);
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708MODULE_LICENSE("GPL");
709MODULE_VERSION(DRV_VERSION);