blob: babfde9f734c899a9a58e5283d0741c8dcf4a129 [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 Pirko126d6c22013-01-03 22:48:51 +0000108 netdev_upper_dev_unlink(real_dev, dev);
109
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000110 if (grp->nr_vlan_devs == 0)
Patrick McHardy70c03b42008-07-05 21:26:57 -0700111 vlan_gvrp_uninit_applicant(real_dev);
112
Patrick McHardyaf301512008-01-21 00:25:50 -0800113 /* Get rid of the vlan's reference to real_dev */
114 dev_put(real_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
Patrick McHardy9bb85822008-07-08 03:24:44 -0700117int vlan_check_real_dev(struct net_device *real_dev, u16 vlan_id)
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700118{
Stephen Hemminger656299f2008-11-19 21:53:47 -0800119 const char *name = real_dev->name;
120 const struct net_device_ops *ops = real_dev->netdev_ops;
Patrick McHardy40f98e12008-01-21 00:24:30 -0800121
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700122 if (real_dev->features & NETIF_F_VLAN_CHALLENGED) {
Joe Perchesafab2d22011-05-26 10:58:31 +0000123 pr_info("VLANs not supported on %s\n", name);
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700124 return -EOPNOTSUPP;
125 }
126
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700127 if ((real_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemminger656299f2008-11-19 21:53:47 -0800128 (!ops->ndo_vlan_rx_add_vid || !ops->ndo_vlan_rx_kill_vid)) {
Joe Perchesafab2d22011-05-26 10:58:31 +0000129 pr_info("Device %s has buggy VLAN hw accel\n", name);
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700130 return -EOPNOTSUPP;
131 }
132
Jesse Gross65ac6a52010-10-20 13:56:05 +0000133 if (vlan_find_dev(real_dev, vlan_id) != NULL)
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700134 return -EEXIST;
Patrick McHardyc1d3ee92007-06-13 12:06:14 -0700135
136 return 0;
137}
138
Patrick McHardy07b5b172007-06-13 12:07:54 -0700139int register_vlan_dev(struct net_device *dev)
Patrick McHardye89fe422007-06-13 12:06:29 -0700140{
Jiri Pirko7da82c02011-12-08 04:11:15 +0000141 struct vlan_dev_priv *vlan = vlan_dev_priv(dev);
Patrick McHardye89fe422007-06-13 12:06:29 -0700142 struct net_device *real_dev = vlan->real_dev;
Patrick McHardy9bb85822008-07-08 03:24:44 -0700143 u16 vlan_id = vlan->vlan_id;
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000144 struct vlan_info *vlan_info;
145 struct vlan_group *grp;
Patrick McHardye89fe422007-06-13 12:06:29 -0700146 int err;
147
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000148 err = vlan_vid_add(real_dev, vlan_id);
149 if (err)
150 return err;
151
152 vlan_info = rtnl_dereference(real_dev->vlan_info);
153 /* vlan_info should be there now. vlan_vid_add took care of it */
154 BUG_ON(!vlan_info);
155
156 grp = &vlan_info->grp;
157 if (grp->nr_vlan_devs == 0) {
Patrick McHardy70c03b42008-07-05 21:26:57 -0700158 err = vlan_gvrp_init_applicant(real_dev);
159 if (err < 0)
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000160 goto out_vid_del;
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)
Patrick McHardy70c03b42008-07-05 21:26:57 -0700165 goto out_uninit_applicant;
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)
169 goto out_uninit_applicant;
170
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);
Patrick McHardy70c03b42008-07-05 21:26:57 -0700191out_uninit_applicant:
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000192 if (grp->nr_vlan_devs == 0)
Patrick McHardy70c03b42008-07-05 21:26:57 -0700193 vlan_gvrp_uninit_applicant(real_dev);
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000194out_vid_del:
195 vlan_vid_del(real_dev, vlan_id);
Patrick McHardye89fe422007-06-13 12:06:29 -0700196 return err;
197}
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199/* Attach a VLAN device to a mac address (ie Ethernet Card).
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700200 * Returns 0 if the device was created or a negative error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 */
Patrick McHardy9bb85822008-07-08 03:24:44 -0700202static int register_vlan_device(struct net_device *real_dev, u16 vlan_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 struct net_device *new_dev;
Pavel Emelyanov7a17a2f2008-04-16 00:54:39 -0700205 struct net *net = dev_net(real_dev);
206 struct vlan_net *vn = net_generic(net, vlan_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 char name[IFNAMSIZ];
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700208 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Patrick McHardy9bb85822008-07-08 03:24:44 -0700210 if (vlan_id >= VLAN_VID_MASK)
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700211 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Patrick McHardy9bb85822008-07-08 03:24:44 -0700213 err = vlan_check_real_dev(real_dev, vlan_id);
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700214 if (err < 0)
215 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 /* Gotta set up the fields for the device. */
Pavel Emelyanov7a17a2f2008-04-16 00:54:39 -0700218 switch (vn->name_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 case VLAN_NAME_TYPE_RAW_PLUS_VID:
220 /* name will look like: eth1.0005 */
Patrick McHardy9bb85822008-07-08 03:24:44 -0700221 snprintf(name, IFNAMSIZ, "%s.%.4i", real_dev->name, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 break;
223 case VLAN_NAME_TYPE_PLUS_VID_NO_PAD:
224 /* Put our vlan.VID in the name.
225 * Name will look like: vlan5
226 */
Patrick McHardy9bb85822008-07-08 03:24:44 -0700227 snprintf(name, IFNAMSIZ, "vlan%i", vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 break;
229 case VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD:
230 /* Put our vlan.VID in the name.
231 * Name will look like: eth0.5
232 */
Patrick McHardy9bb85822008-07-08 03:24:44 -0700233 snprintf(name, IFNAMSIZ, "%s.%i", real_dev->name, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 break;
235 case VLAN_NAME_TYPE_PLUS_VID:
236 /* Put our vlan.VID in the name.
237 * Name will look like: vlan0005
238 */
239 default:
Patrick McHardy9bb85822008-07-08 03:24:44 -0700240 snprintf(name, IFNAMSIZ, "vlan%.4i", vlan_id);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700241 }
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900242
Jiri Pirko7da82c02011-12-08 04:11:15 +0000243 new_dev = alloc_netdev(sizeof(struct vlan_dev_priv), name, vlan_setup);
Arjan van de Ven5dd8d1e2006-07-03 00:25:33 -0700244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 if (new_dev == NULL)
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700246 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Pavel Emelyanov65d292a2008-04-16 00:55:06 -0700248 dev_net_set(new_dev, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 /* need 4 bytes for extra VLAN header info,
250 * hope the underlying device can handle it.
251 */
252 new_dev->mtu = real_dev->mtu;
Yi Zou6e22ce22012-11-28 13:45:24 +0000253 new_dev->priv_flags |= (real_dev->priv_flags & IFF_UNICAST_FLT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Jiri Pirko7da82c02011-12-08 04:11:15 +0000255 vlan_dev_priv(new_dev)->vlan_id = vlan_id;
256 vlan_dev_priv(new_dev)->real_dev = real_dev;
257 vlan_dev_priv(new_dev)->dent = NULL;
258 vlan_dev_priv(new_dev)->flags = VLAN_FLAG_REORDER_HDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Patrick McHardy07b5b172007-06-13 12:07:54 -0700260 new_dev->rtnl_link_ops = &vlan_link_ops;
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700261 err = register_vlan_dev(new_dev);
262 if (err < 0)
Patrick McHardye89fe422007-06-13 12:06:29 -0700263 goto out_free_newdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700265 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267out_free_newdev:
268 free_netdev(new_dev);
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700269 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
Patrick McHardy8c979c22007-07-11 19:45:24 -0700272static void vlan_sync_address(struct net_device *dev,
273 struct net_device *vlandev)
274{
Jiri Pirko7da82c02011-12-08 04:11:15 +0000275 struct vlan_dev_priv *vlan = vlan_dev_priv(vlandev);
Patrick McHardy8c979c22007-07-11 19:45:24 -0700276
277 /* May be called without an actual change */
Joe Perches53a2b3a2012-05-08 18:56:47 +0000278 if (ether_addr_equal(vlan->real_dev_addr, dev->dev_addr))
Patrick McHardy8c979c22007-07-11 19:45:24 -0700279 return;
280
281 /* vlan address was different from the old address and is equal to
282 * the new address */
Joe Perches53a2b3a2012-05-08 18:56:47 +0000283 if (!ether_addr_equal(vlandev->dev_addr, vlan->real_dev_addr) &&
284 ether_addr_equal(vlandev->dev_addr, dev->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000285 dev_uc_del(dev, vlandev->dev_addr);
Patrick McHardy8c979c22007-07-11 19:45:24 -0700286
287 /* vlan address was equal to the old address and is different from
288 * the new address */
Joe Perches53a2b3a2012-05-08 18:56:47 +0000289 if (ether_addr_equal(vlandev->dev_addr, vlan->real_dev_addr) &&
290 !ether_addr_equal(vlandev->dev_addr, dev->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000291 dev_uc_add(dev, vlandev->dev_addr);
Patrick McHardy8c979c22007-07-11 19:45:24 -0700292
293 memcpy(vlan->real_dev_addr, dev->dev_addr, ETH_ALEN);
294}
295
Patrick McHardy5fb13572008-05-20 14:54:50 -0700296static void vlan_transfer_features(struct net_device *dev,
297 struct net_device *vlandev)
298{
Alexander Duyck1ae4be22008-09-11 20:17:05 -0700299 vlandev->gso_max_size = dev->gso_max_size;
John Fastabend029f5fc2010-10-30 14:22:32 +0000300
301 if (dev->features & NETIF_F_HW_VLAN_TX)
302 vlandev->hard_header_len = dev->hard_header_len;
303 else
304 vlandev->hard_header_len = dev->hard_header_len + VLAN_HLEN;
305
Amerigo Wangf4d53922012-10-29 17:22:28 +0000306#if IS_ENABLED(CONFIG_FCOE)
Vasu Devb85daa52009-08-14 12:41:07 +0000307 vlandev->fcoe_ddp_xid = dev->fcoe_ddp_xid;
308#endif
Michał Mirosław8a0427b2011-04-02 22:49:12 -0700309
310 netdev_update_features(vlandev);
Patrick McHardy5fb13572008-05-20 14:54:50 -0700311}
312
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700313static void __vlan_device_event(struct net_device *dev, unsigned long event)
314{
315 switch (event) {
316 case NETDEV_CHANGENAME:
317 vlan_proc_rem_dev(dev);
318 if (vlan_proc_add_dev(dev) < 0)
Joe Perchesafab2d22011-05-26 10:58:31 +0000319 pr_warn("failed to change proc name for %s\n",
320 dev->name);
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700321 break;
Pavel Emelyanov30688a92008-04-16 00:57:01 -0700322 case NETDEV_REGISTER:
323 if (vlan_proc_add_dev(dev) < 0)
Joe Perchesafab2d22011-05-26 10:58:31 +0000324 pr_warn("failed to add proc entry for %s\n", dev->name);
Pavel Emelyanov30688a92008-04-16 00:57:01 -0700325 break;
326 case NETDEV_UNREGISTER:
327 vlan_proc_rem_dev(dev);
328 break;
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700329 }
330}
331
Patrick McHardy2029cc22008-01-21 00:26:41 -0800332static int vlan_device_event(struct notifier_block *unused, unsigned long event,
333 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 struct net_device *dev = ptr;
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700336 struct vlan_group *grp;
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000337 struct vlan_info *vlan_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 int i, flgs;
339 struct net_device *vlandev;
Jiri Pirko7da82c02011-12-08 04:11:15 +0000340 struct vlan_dev_priv *vlan;
Patrick McHardy29906f62009-10-29 23:43:00 -0700341 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Patrick McHardy81d85342008-05-20 14:37:36 -0700343 if (is_vlan_dev(dev))
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700344 __vlan_device_event(dev, event);
Pavel Emelyanov802fb172008-04-02 00:08:01 -0700345
Pedro Garciaad1afb02010-07-18 15:38:44 -0700346 if ((event == NETDEV_UP) &&
Jiri Pirko87002b02011-12-08 04:11:17 +0000347 (dev->features & NETIF_F_HW_VLAN_FILTER)) {
Joe Perchesafab2d22011-05-26 10:58:31 +0000348 pr_info("adding VLAN 0 to HW filter on device %s\n",
Pedro Garciaad1afb02010-07-18 15:38:44 -0700349 dev->name);
Jiri Pirko87002b02011-12-08 04:11:17 +0000350 vlan_vid_add(dev, 0);
Pedro Garciaad1afb02010-07-18 15:38:44 -0700351 }
352
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000353 vlan_info = rtnl_dereference(dev->vlan_info);
354 if (!vlan_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 goto out;
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000356 grp = &vlan_info->grp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 /* It is OK that we do not hold the group lock right now,
359 * as we run under the RTNL lock.
360 */
361
362 switch (event) {
363 case NETDEV_CHANGE:
364 /* Propagate real device state to vlan devices */
Jesse Grossb7381272010-10-20 13:56:02 +0000365 for (i = 0; i < VLAN_N_VID; i++) {
Dan Aloni5c15bde2007-03-02 20:44:51 -0800366 vlandev = vlan_group_get_device(grp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (!vlandev)
368 continue;
369
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -0800370 netif_stacked_transfer_operstate(dev, vlandev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372 break;
373
Patrick McHardy8c979c22007-07-11 19:45:24 -0700374 case NETDEV_CHANGEADDR:
375 /* Adjust unicast filters on underlying device */
Jesse Grossb7381272010-10-20 13:56:02 +0000376 for (i = 0; i < VLAN_N_VID; i++) {
Patrick McHardy8c979c22007-07-11 19:45:24 -0700377 vlandev = vlan_group_get_device(grp, i);
378 if (!vlandev)
379 continue;
380
Patrick McHardyd932e042007-11-10 21:51:40 -0800381 flgs = vlandev->flags;
382 if (!(flgs & IFF_UP))
383 continue;
384
Patrick McHardy8c979c22007-07-11 19:45:24 -0700385 vlan_sync_address(dev, vlandev);
386 }
387 break;
388
Herbert Xu2e477c92009-07-20 07:35:37 -0700389 case NETDEV_CHANGEMTU:
Jesse Grossb7381272010-10-20 13:56:02 +0000390 for (i = 0; i < VLAN_N_VID; i++) {
Herbert Xu2e477c92009-07-20 07:35:37 -0700391 vlandev = vlan_group_get_device(grp, i);
392 if (!vlandev)
393 continue;
394
395 if (vlandev->mtu <= dev->mtu)
396 continue;
397
398 dev_set_mtu(vlandev, dev->mtu);
399 }
400 break;
401
Patrick McHardy5fb13572008-05-20 14:54:50 -0700402 case NETDEV_FEAT_CHANGE:
403 /* Propagate device features to underlying device */
Jesse Grossb7381272010-10-20 13:56:02 +0000404 for (i = 0; i < VLAN_N_VID; i++) {
Patrick McHardy5fb13572008-05-20 14:54:50 -0700405 vlandev = vlan_group_get_device(grp, i);
406 if (!vlandev)
407 continue;
408
409 vlan_transfer_features(dev, vlandev);
410 }
411
412 break;
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 case NETDEV_DOWN:
Amir Hananiaefc73f42012-07-09 20:47:19 +0000415 if (dev->features & NETIF_F_HW_VLAN_FILTER)
416 vlan_vid_del(dev, 0);
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 /* Put all VLANs for this dev in the down state too. */
Jesse Grossb7381272010-10-20 13:56:02 +0000419 for (i = 0; i < VLAN_N_VID; i++) {
Dan Aloni5c15bde2007-03-02 20:44:51 -0800420 vlandev = vlan_group_get_device(grp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 if (!vlandev)
422 continue;
423
424 flgs = vlandev->flags;
425 if (!(flgs & IFF_UP))
426 continue;
427
Jiri Pirko7da82c02011-12-08 04:11:15 +0000428 vlan = vlan_dev_priv(vlandev);
Patrick McHardy5e756592009-11-25 07:54:54 +0000429 if (!(vlan->flags & VLAN_FLAG_LOOSE_BINDING))
430 dev_change_flags(vlandev, flgs & ~IFF_UP);
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -0800431 netif_stacked_transfer_operstate(dev, vlandev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
433 break;
434
435 case NETDEV_UP:
436 /* Put all VLANs for this dev in the up state too. */
Jesse Grossb7381272010-10-20 13:56:02 +0000437 for (i = 0; i < VLAN_N_VID; i++) {
Dan Aloni5c15bde2007-03-02 20:44:51 -0800438 vlandev = vlan_group_get_device(grp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (!vlandev)
440 continue;
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 flgs = vlandev->flags;
443 if (flgs & IFF_UP)
444 continue;
445
Jiri Pirko7da82c02011-12-08 04:11:15 +0000446 vlan = vlan_dev_priv(vlandev);
Patrick McHardy5e756592009-11-25 07:54:54 +0000447 if (!(vlan->flags & VLAN_FLAG_LOOSE_BINDING))
448 dev_change_flags(vlandev, flgs | IFF_UP);
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -0800449 netif_stacked_transfer_operstate(dev, vlandev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
451 break;
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 case NETDEV_UNREGISTER:
David Lamparter3b27e102010-09-17 03:22:19 +0000454 /* twiddle thumbs on netns device moves */
455 if (dev->reg_state != NETREG_UNREGISTERING)
456 break;
457
Jesse Grossb7381272010-10-20 13:56:02 +0000458 for (i = 0; i < VLAN_N_VID; i++) {
Patrick McHardy29906f62009-10-29 23:43:00 -0700459 vlandev = vlan_group_get_device(grp, i);
460 if (!vlandev)
461 continue;
462
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000463 /* removal of last vid destroys vlan_info, abort
Patrick McHardy29906f62009-10-29 23:43:00 -0700464 * afterwards */
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000465 if (vlan_info->nr_vids == 1)
Jesse Grossb7381272010-10-20 13:56:02 +0000466 i = VLAN_N_VID;
Patrick McHardy29906f62009-10-29 23:43:00 -0700467
468 unregister_vlan_dev(vlandev, &list);
469 }
470 unregister_netdevice_many(&list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 break;
Jiri Pirko1c01fe12010-03-10 10:30:19 +0000472
473 case NETDEV_PRE_TYPE_CHANGE:
474 /* Forbid underlaying device to change its type. */
Jiri Pirko18c22a02012-10-17 01:37:36 +0000475 if (vlan_uses_dev(dev))
476 return NOTIFY_BAD;
477 break;
Ben Hutchings99606472011-04-15 13:46:49 +0000478
479 case NETDEV_NOTIFY_PEERS:
Ben Hutchings7c899432011-04-15 13:47:51 +0000480 case NETDEV_BONDING_FAILOVER:
Ben Hutchings99606472011-04-15 13:46:49 +0000481 /* Propagate to vlan devices */
482 for (i = 0; i < VLAN_N_VID; i++) {
483 vlandev = vlan_group_get_device(grp, i);
484 if (!vlandev)
485 continue;
486
Ben Hutchings7c899432011-04-15 13:47:51 +0000487 call_netdevice_notifiers(event, vlandev);
Ben Hutchings99606472011-04-15 13:46:49 +0000488 }
489 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492out:
493 return NOTIFY_DONE;
494}
495
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800496static struct notifier_block vlan_notifier_block __read_mostly = {
497 .notifier_call = vlan_device_event,
498};
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500/*
501 * VLAN IOCTL handler.
502 * o execute requested action or pass command to the device driver
503 * arg is really a struct vlan_ioctl_args __user *.
504 */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700505static int vlan_ioctl_handler(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Patrick McHardyc17d8872007-06-13 12:05:22 -0700507 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 struct vlan_ioctl_args args;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700509 struct net_device *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 if (copy_from_user(&args, arg, sizeof(struct vlan_ioctl_args)))
512 return -EFAULT;
513
514 /* Null terminate this sucker, just in case. */
515 args.device1[23] = 0;
516 args.u.device2[23] = 0;
517
Patrick McHardyc17d8872007-06-13 12:05:22 -0700518 rtnl_lock();
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 switch (args.cmd) {
521 case SET_VLAN_INGRESS_PRIORITY_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700522 case SET_VLAN_EGRESS_PRIORITY_CMD:
523 case SET_VLAN_FLAG_CMD:
524 case ADD_VLAN_CMD:
525 case DEL_VLAN_CMD:
526 case GET_VLAN_REALDEV_NAME_CMD:
527 case GET_VLAN_VID_CMD:
528 err = -ENODEV;
Pavel Emelyanov65d292a2008-04-16 00:55:06 -0700529 dev = __dev_get_by_name(net, args.device1);
Patrick McHardyc17d8872007-06-13 12:05:22 -0700530 if (!dev)
531 goto out;
532
533 err = -EINVAL;
Joonwoo Park26a25232008-07-08 03:22:16 -0700534 if (args.cmd != ADD_VLAN_CMD && !is_vlan_dev(dev))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700535 goto out;
536 }
537
538 switch (args.cmd) {
539 case SET_VLAN_INGRESS_PRIORITY_CMD:
540 err = -EPERM;
Eric W. Biederman276996f2012-11-16 03:03:09 +0000541 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700542 break;
543 vlan_dev_set_ingress_priority(dev,
544 args.u.skb_priority,
545 args.vlan_qos);
Patrick McHardyfffe4702007-11-07 01:31:32 -0800546 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 break;
548
549 case SET_VLAN_EGRESS_PRIORITY_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700550 err = -EPERM;
Eric W. Biederman276996f2012-11-16 03:03:09 +0000551 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700552 break;
553 err = vlan_dev_set_egress_priority(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 args.u.skb_priority,
555 args.vlan_qos);
556 break;
557
558 case SET_VLAN_FLAG_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700559 err = -EPERM;
Eric W. Biederman276996f2012-11-16 03:03:09 +0000560 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700561 break;
Patrick McHardyb3ce0322008-07-05 21:26:27 -0700562 err = vlan_dev_change_flags(dev,
563 args.vlan_qos ? args.u.flag : 0,
564 args.u.flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 break;
566
567 case SET_VLAN_NAME_TYPE_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700568 err = -EPERM;
Eric W. Biederman276996f2012-11-16 03:03:09 +0000569 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Pavel Emelyanove35de022007-12-06 22:52:16 -0800570 break;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700571 if ((args.u.name_type >= 0) &&
572 (args.u.name_type < VLAN_NAME_TYPE_HIGHEST)) {
Pavel Emelyanov7a17a2f2008-04-16 00:54:39 -0700573 struct vlan_net *vn;
574
575 vn = net_generic(net, vlan_net_id);
576 vn->name_type = args.u.name_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 err = 0;
578 } else {
579 err = -EINVAL;
580 }
581 break;
582
583 case ADD_VLAN_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700584 err = -EPERM;
Eric W. Biederman276996f2012-11-16 03:03:09 +0000585 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700586 break;
Patrick McHardy2ae0bf62007-06-13 12:06:43 -0700587 err = register_vlan_device(dev, args.u.VID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 break;
589
590 case DEL_VLAN_CMD:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700591 err = -EPERM;
Eric W. Biederman276996f2012-11-16 03:03:09 +0000592 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Patrick McHardyc17d8872007-06-13 12:05:22 -0700593 break;
Eric Dumazet23289a32009-10-27 07:06:36 +0000594 unregister_vlan_dev(dev, NULL);
Patrick McHardyaf301512008-01-21 00:25:50 -0800595 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 break;
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 case GET_VLAN_REALDEV_NAME_CMD:
Andrew Morton3f5f4342007-07-24 15:37:11 -0700599 err = 0;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700600 vlan_dev_get_realdev_name(dev, args.u.device2);
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)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 break;
605
606 case GET_VLAN_VID_CMD:
Andrew Morton3f5f4342007-07-24 15:37:11 -0700607 err = 0;
Patrick McHardy22d1ba72008-07-08 03:23:57 -0700608 args.u.VID = vlan_dev_vlan_id(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (copy_to_user(arg, &args,
Patrick McHardy2029cc22008-01-21 00:26:41 -0800610 sizeof(struct vlan_ioctl_args)))
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900611 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 break;
613
614 default:
Patrick McHardy198a2912008-01-21 00:24:59 -0800615 err = -EOPNOTSUPP;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700616 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700617 }
Mika Kukkonen7eb1b3d2005-12-21 18:39:49 -0800618out:
Patrick McHardyc17d8872007-06-13 12:05:22 -0700619 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 return err;
621}
622
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000623static int __net_init vlan_init_net(struct net *net)
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700624{
Eric W. Biederman946d1a92009-11-29 15:46:05 +0000625 struct vlan_net *vn = net_generic(net, vlan_net_id);
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700626 int err;
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700627
Pavel Emelyanov7a17a2f2008-04-16 00:54:39 -0700628 vn->name_type = VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD;
629
Pavel Emelyanovcd1c7012008-04-16 00:51:12 -0700630 err = vlan_proc_init(net);
Pavel Emelyanovcd1c7012008-04-16 00:51:12 -0700631
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700632 return err;
633}
634
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000635static void __net_exit vlan_exit_net(struct net *net)
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700636{
Pavel Emelyanovcd1c7012008-04-16 00:51:12 -0700637 vlan_proc_cleanup(net);
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700638}
639
640static struct pernet_operations vlan_net_ops = {
641 .init = vlan_init_net,
642 .exit = vlan_exit_net,
Eric W. Biederman946d1a92009-11-29 15:46:05 +0000643 .id = &vlan_net_id,
644 .size = sizeof(struct vlan_net),
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700645};
646
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800647static int __init vlan_proto_init(void)
648{
649 int err;
650
Justin Mattockda7c06c2011-05-23 20:43:48 +0000651 pr_info("%s v%s\n", vlan_fullname, vlan_version);
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800652
Eric W. Biederman91e2ff32009-12-02 13:19:08 +0000653 err = register_pernet_subsys(&vlan_net_ops);
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700654 if (err < 0)
655 goto err0;
656
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800657 err = register_netdevice_notifier(&vlan_notifier_block);
658 if (err < 0)
659 goto err2;
660
Patrick McHardy70c03b42008-07-05 21:26:57 -0700661 err = vlan_gvrp_init();
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800662 if (err < 0)
663 goto err3;
664
Patrick McHardy70c03b42008-07-05 21:26:57 -0700665 err = vlan_netlink_init();
666 if (err < 0)
667 goto err4;
668
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800669 vlan_ioctl_set(vlan_ioctl_handler);
670 return 0;
671
Patrick McHardy70c03b42008-07-05 21:26:57 -0700672err4:
673 vlan_gvrp_uninit();
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800674err3:
675 unregister_netdevice_notifier(&vlan_notifier_block);
676err2:
Eric W. Biederman91e2ff32009-12-02 13:19:08 +0000677 unregister_pernet_subsys(&vlan_net_ops);
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700678err0:
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800679 return err;
680}
681
682static void __exit vlan_cleanup_module(void)
683{
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800684 vlan_ioctl_set(NULL);
685 vlan_netlink_fini();
686
687 unregister_netdevice_notifier(&vlan_notifier_block);
688
Eric W. Biederman91e2ff32009-12-02 13:19:08 +0000689 unregister_pernet_subsys(&vlan_net_ops);
Jesper Dangaard Brouer6e327c12009-06-08 03:11:28 +0000690 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Patrick McHardy70c03b42008-07-05 21:26:57 -0700691
692 vlan_gvrp_uninit();
Patrick McHardy69ab4b72008-01-21 00:25:15 -0800693}
694
695module_init(vlan_proto_init);
696module_exit(vlan_cleanup_module);
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698MODULE_LICENSE("GPL");
699MODULE_VERSION(DRV_VERSION);