]>
Commit | Line | Data |
---|---|---|
2874c5fd | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
1da177e4 LT |
2 | /* |
3 | * INET 802.1Q VLAN | |
4 | * Ethernet-type device handling. | |
5 | * | |
6 | * Authors: Ben Greear <[email protected]> | |
ad712087 | 7 | * Please send support related email to: [email protected] |
1da177e4 | 8 | * VLAN Home Page: http://www.candelatech.com/~greear/vlan.html |
122952fc | 9 | * |
1da177e4 LT |
10 | * Fixes: |
11 | * Fix for packet capture - Nick Eggleston <[email protected]>; | |
12 | * Add HW acceleration hooks - David S. Miller <[email protected]>; | |
13 | * Correct all the locking - David S. Miller <[email protected]>; | |
14 | * Use hash table for VLAN groups - David S. Miller <[email protected]> | |
1da177e4 LT |
15 | */ |
16 | ||
afab2d29 JP |
17 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
18 | ||
4fc268d2 | 19 | #include <linux/capability.h> |
1da177e4 LT |
20 | #include <linux/module.h> |
21 | #include <linux/netdevice.h> | |
22 | #include <linux/skbuff.h> | |
5a0e3ad6 | 23 | #include <linux/slab.h> |
1da177e4 | 24 | #include <linux/init.h> |
82524746 | 25 | #include <linux/rculist.h> |
1da177e4 LT |
26 | #include <net/p8022.h> |
27 | #include <net/arp.h> | |
28 | #include <linux/rtnetlink.h> | |
29 | #include <linux/notifier.h> | |
61362766 | 30 | #include <net/rtnetlink.h> |
e9dc8653 | 31 | #include <net/net_namespace.h> |
d9ed0f0e | 32 | #include <net/netns/generic.h> |
7c0f6ba6 | 33 | #include <linux/uaccess.h> |
1da177e4 LT |
34 | |
35 | #include <linux/if_vlan.h> | |
36 | #include "vlan.h" | |
37 | #include "vlanproc.h" | |
38 | ||
39 | #define DRV_VERSION "1.8" | |
40 | ||
41 | /* Global VLAN variables */ | |
42 | ||
c7d03a00 | 43 | unsigned int vlan_net_id __read_mostly; |
d9ed0f0e | 44 | |
b3020061 SH |
45 | const char vlan_fullname[] = "802.1Q VLAN Support"; |
46 | const char vlan_version[] = DRV_VERSION; | |
1da177e4 | 47 | |
1da177e4 LT |
48 | /* End of global variables definitions. */ |
49 | ||
1fd9b1fc PM |
50 | static int vlan_group_prealloc_vid(struct vlan_group *vg, |
51 | __be16 vlan_proto, u16 vlan_id) | |
67727184 PE |
52 | { |
53 | struct net_device **array; | |
0675c285 | 54 | unsigned int vidx; |
67727184 | 55 | unsigned int size; |
0675c285 | 56 | int pidx; |
67727184 PE |
57 | |
58 | ASSERT_RTNL(); | |
59 | ||
1fd9b1fc | 60 | pidx = vlan_proto_idx(vlan_proto); |
d0186842 FF |
61 | if (pidx < 0) |
62 | return -EINVAL; | |
63 | ||
1fd9b1fc PM |
64 | vidx = vlan_id / VLAN_GROUP_ARRAY_PART_LEN; |
65 | array = vg->vlan_devices_arrays[pidx][vidx]; | |
67727184 PE |
66 | if (array != NULL) |
67 | return 0; | |
68 | ||
69 | size = sizeof(struct net_device *) * VLAN_GROUP_ARRAY_PART_LEN; | |
70 | array = kzalloc(size, GFP_KERNEL); | |
71 | if (array == NULL) | |
72 | return -ENOBUFS; | |
73 | ||
1fd9b1fc | 74 | vg->vlan_devices_arrays[pidx][vidx] = array; |
67727184 | 75 | return 0; |
42429aae PM |
76 | } |
77 | ||
76052d8c MM |
78 | static void vlan_stacked_transfer_operstate(const struct net_device *rootdev, |
79 | struct net_device *dev, | |
80 | struct vlan_dev_priv *vlan) | |
81 | { | |
82 | if (!(vlan->flags & VLAN_FLAG_BRIDGE_BINDING)) | |
83 | netif_stacked_transfer_operstate(rootdev, dev); | |
84 | } | |
85 | ||
23289a37 | 86 | void unregister_vlan_dev(struct net_device *dev, struct list_head *head) |
1da177e4 | 87 | { |
7da82c06 | 88 | struct vlan_dev_priv *vlan = vlan_dev_priv(dev); |
af301517 | 89 | struct net_device *real_dev = vlan->real_dev; |
5b9ea6e0 | 90 | struct vlan_info *vlan_info; |
1da177e4 | 91 | struct vlan_group *grp; |
9bb8582e | 92 | u16 vlan_id = vlan->vlan_id; |
1da177e4 LT |
93 | |
94 | ASSERT_RTNL(); | |
acc5efbc | 95 | |
5b9ea6e0 JP |
96 | vlan_info = rtnl_dereference(real_dev->vlan_info); |
97 | BUG_ON(!vlan_info); | |
98 | ||
99 | grp = &vlan_info->grp; | |
acc5efbc | 100 | |
5b9ea6e0 | 101 | grp->nr_vlan_devs--; |
acc5efbc | 102 | |
86fbe9bb DW |
103 | if (vlan->flags & VLAN_FLAG_MVRP) |
104 | vlan_mvrp_request_leave(dev); | |
55aee10d ED |
105 | if (vlan->flags & VLAN_FLAG_GVRP) |
106 | vlan_gvrp_request_leave(dev); | |
107 | ||
1fd9b1fc | 108 | vlan_group_set_device(grp, vlan->vlan_proto, vlan_id, NULL); |
47701a36 VF |
109 | |
110 | netdev_upper_dev_unlink(real_dev, dev); | |
48752e1b ED |
111 | /* Because unregister_netdevice_queue() makes sure at least one rcu |
112 | * grace period is respected before device freeing, | |
113 | * we dont need to call synchronize_net() here. | |
114 | */ | |
23289a37 | 115 | unregister_netdevice_queue(dev, head); |
ce305002 | 116 | |
86fbe9bb DW |
117 | if (grp->nr_vlan_devs == 0) { |
118 | vlan_mvrp_uninit_applicant(real_dev); | |
70c03b49 | 119 | vlan_gvrp_uninit_applicant(real_dev); |
86fbe9bb | 120 | } |
70c03b49 | 121 | |
78bbb15f | 122 | vlan_vid_del(real_dev, vlan->vlan_proto, vlan_id); |
4a7df340 | 123 | |
af301517 PM |
124 | /* Get rid of the vlan's reference to real_dev */ |
125 | dev_put(real_dev); | |
1da177e4 LT |
126 | } |
127 | ||
1fd9b1fc | 128 | int vlan_check_real_dev(struct net_device *real_dev, |
33fa3823 DA |
129 | __be16 protocol, u16 vlan_id, |
130 | struct netlink_ext_ack *extack) | |
1da177e4 | 131 | { |
656299f7 | 132 | const char *name = real_dev->name; |
40f98e1a | 133 | |
1da177e4 | 134 | if (real_dev->features & NETIF_F_VLAN_CHALLENGED) { |
afab2d29 | 135 | pr_info("VLANs not supported on %s\n", name); |
33fa3823 | 136 | NL_SET_ERR_MSG_MOD(extack, "VLANs not supported on device"); |
c1d3ee99 | 137 | return -EOPNOTSUPP; |
1da177e4 LT |
138 | } |
139 | ||
33fa3823 DA |
140 | if (vlan_find_dev(real_dev, protocol, vlan_id) != NULL) { |
141 | NL_SET_ERR_MSG_MOD(extack, "VLAN device already exists"); | |
c1d3ee99 | 142 | return -EEXIST; |
33fa3823 | 143 | } |
1da177e4 | 144 | |
c1d3ee99 PM |
145 | return 0; |
146 | } | |
147 | ||
42ab19ee | 148 | int register_vlan_dev(struct net_device *dev, struct netlink_ext_ack *extack) |
e89fe42c | 149 | { |
7da82c06 | 150 | struct vlan_dev_priv *vlan = vlan_dev_priv(dev); |
e89fe42c | 151 | struct net_device *real_dev = vlan->real_dev; |
9bb8582e | 152 | u16 vlan_id = vlan->vlan_id; |
5b9ea6e0 JP |
153 | struct vlan_info *vlan_info; |
154 | struct vlan_group *grp; | |
e89fe42c PM |
155 | int err; |
156 | ||
1fd9b1fc | 157 | err = vlan_vid_add(real_dev, vlan->vlan_proto, vlan_id); |
5b9ea6e0 JP |
158 | if (err) |
159 | return err; | |
160 | ||
161 | vlan_info = rtnl_dereference(real_dev->vlan_info); | |
162 | /* vlan_info should be there now. vlan_vid_add took care of it */ | |
163 | BUG_ON(!vlan_info); | |
164 | ||
165 | grp = &vlan_info->grp; | |
166 | if (grp->nr_vlan_devs == 0) { | |
70c03b49 PM |
167 | err = vlan_gvrp_init_applicant(real_dev); |
168 | if (err < 0) | |
5b9ea6e0 | 169 | goto out_vid_del; |
86fbe9bb DW |
170 | err = vlan_mvrp_init_applicant(real_dev); |
171 | if (err < 0) | |
172 | goto out_uninit_gvrp; | |
e89fe42c PM |
173 | } |
174 | ||
1fd9b1fc | 175 | err = vlan_group_prealloc_vid(grp, vlan->vlan_proto, vlan_id); |
67727184 | 176 | if (err < 0) |
86fbe9bb | 177 | goto out_uninit_mvrp; |
67727184 | 178 | |
e89fe42c PM |
179 | err = register_netdevice(dev); |
180 | if (err < 0) | |
5df27e6c VF |
181 | goto out_uninit_mvrp; |
182 | ||
42ab19ee | 183 | err = netdev_upper_dev_link(real_dev, dev, extack); |
5df27e6c VF |
184 | if (err) |
185 | goto out_unregister_netdev; | |
e89fe42c | 186 | |
7da82c06 | 187 | /* Account for reference in struct vlan_dev_priv */ |
e89fe42c PM |
188 | dev_hold(real_dev); |
189 | ||
76052d8c | 190 | vlan_stacked_transfer_operstate(real_dev, dev, vlan); |
e89fe42c PM |
191 | linkwatch_fire_event(dev); /* _MUST_ call rfc2863_policy() */ |
192 | ||
193 | /* So, got the sucker initialized, now lets place | |
194 | * it into our local structure. | |
195 | */ | |
1fd9b1fc | 196 | vlan_group_set_device(grp, vlan->vlan_proto, vlan_id, dev); |
5b9ea6e0 | 197 | grp->nr_vlan_devs++; |
e89fe42c | 198 | |
e89fe42c PM |
199 | return 0; |
200 | ||
5df27e6c VF |
201 | out_unregister_netdev: |
202 | unregister_netdevice(dev); | |
86fbe9bb DW |
203 | out_uninit_mvrp: |
204 | if (grp->nr_vlan_devs == 0) | |
205 | vlan_mvrp_uninit_applicant(real_dev); | |
206 | out_uninit_gvrp: | |
5b9ea6e0 | 207 | if (grp->nr_vlan_devs == 0) |
70c03b49 | 208 | vlan_gvrp_uninit_applicant(real_dev); |
5b9ea6e0 | 209 | out_vid_del: |
1fd9b1fc | 210 | vlan_vid_del(real_dev, vlan->vlan_proto, vlan_id); |
e89fe42c PM |
211 | return err; |
212 | } | |
213 | ||
c1d3ee99 | 214 | /* Attach a VLAN device to a mac address (ie Ethernet Card). |
2ae0bf69 | 215 | * Returns 0 if the device was created or a negative error code otherwise. |
c1d3ee99 | 216 | */ |
9bb8582e | 217 | static int register_vlan_device(struct net_device *real_dev, u16 vlan_id) |
c1d3ee99 | 218 | { |
c1d3ee99 | 219 | struct net_device *new_dev; |
0c0667a8 | 220 | struct vlan_dev_priv *vlan; |
7a17a2f7 PE |
221 | struct net *net = dev_net(real_dev); |
222 | struct vlan_net *vn = net_generic(net, vlan_net_id); | |
c1d3ee99 | 223 | char name[IFNAMSIZ]; |
2ae0bf69 | 224 | int err; |
c1d3ee99 | 225 | |
9bb8582e | 226 | if (vlan_id >= VLAN_VID_MASK) |
2ae0bf69 | 227 | return -ERANGE; |
c1d3ee99 | 228 | |
33fa3823 DA |
229 | err = vlan_check_real_dev(real_dev, htons(ETH_P_8021Q), vlan_id, |
230 | NULL); | |
2ae0bf69 PM |
231 | if (err < 0) |
232 | return err; | |
c1d3ee99 | 233 | |
1da177e4 | 234 | /* Gotta set up the fields for the device. */ |
7a17a2f7 | 235 | switch (vn->name_type) { |
1da177e4 LT |
236 | case VLAN_NAME_TYPE_RAW_PLUS_VID: |
237 | /* name will look like: eth1.0005 */ | |
9bb8582e | 238 | snprintf(name, IFNAMSIZ, "%s.%.4i", real_dev->name, vlan_id); |
1da177e4 LT |
239 | break; |
240 | case VLAN_NAME_TYPE_PLUS_VID_NO_PAD: | |
241 | /* Put our vlan.VID in the name. | |
242 | * Name will look like: vlan5 | |
243 | */ | |
9bb8582e | 244 | snprintf(name, IFNAMSIZ, "vlan%i", vlan_id); |
1da177e4 LT |
245 | break; |
246 | case VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD: | |
247 | /* Put our vlan.VID in the name. | |
248 | * Name will look like: eth0.5 | |
249 | */ | |
9bb8582e | 250 | snprintf(name, IFNAMSIZ, "%s.%i", real_dev->name, vlan_id); |
1da177e4 LT |
251 | break; |
252 | case VLAN_NAME_TYPE_PLUS_VID: | |
253 | /* Put our vlan.VID in the name. | |
254 | * Name will look like: vlan0005 | |
255 | */ | |
256 | default: | |
9bb8582e | 257 | snprintf(name, IFNAMSIZ, "vlan%.4i", vlan_id); |
3ff50b79 | 258 | } |
122952fc | 259 | |
c835a677 TG |
260 | new_dev = alloc_netdev(sizeof(struct vlan_dev_priv), name, |
261 | NET_NAME_UNKNOWN, vlan_setup); | |
5dd8d1e9 | 262 | |
1da177e4 | 263 | if (new_dev == NULL) |
2ae0bf69 | 264 | return -ENOBUFS; |
1da177e4 | 265 | |
65d292a2 | 266 | dev_net_set(new_dev, net); |
1da177e4 LT |
267 | /* need 4 bytes for extra VLAN header info, |
268 | * hope the underlying device can handle it. | |
269 | */ | |
270 | new_dev->mtu = real_dev->mtu; | |
271 | ||
0c0667a8 WSH |
272 | vlan = vlan_dev_priv(new_dev); |
273 | vlan->vlan_proto = htons(ETH_P_8021Q); | |
274 | vlan->vlan_id = vlan_id; | |
275 | vlan->real_dev = real_dev; | |
276 | vlan->dent = NULL; | |
277 | vlan->flags = VLAN_FLAG_REORDER_HDR; | |
1da177e4 | 278 | |
07b5b17e | 279 | new_dev->rtnl_link_ops = &vlan_link_ops; |
42ab19ee | 280 | err = register_vlan_dev(new_dev, NULL); |
2ae0bf69 | 281 | if (err < 0) |
e89fe42c | 282 | goto out_free_newdev; |
1da177e4 | 283 | |
2ae0bf69 | 284 | return 0; |
1da177e4 | 285 | |
1da177e4 | 286 | out_free_newdev: |
c269a24c | 287 | free_netdev(new_dev); |
2ae0bf69 | 288 | return err; |
1da177e4 LT |
289 | } |
290 | ||
8c979c26 PM |
291 | static void vlan_sync_address(struct net_device *dev, |
292 | struct net_device *vlandev) | |
293 | { | |
7da82c06 | 294 | struct vlan_dev_priv *vlan = vlan_dev_priv(vlandev); |
8c979c26 PM |
295 | |
296 | /* May be called without an actual change */ | |
53a2b3a1 | 297 | if (ether_addr_equal(vlan->real_dev_addr, dev->dev_addr)) |
8c979c26 PM |
298 | return; |
299 | ||
308453aa MM |
300 | /* vlan continues to inherit address of lower device */ |
301 | if (vlan_dev_inherit_address(vlandev, dev)) | |
302 | goto out; | |
303 | ||
8c979c26 PM |
304 | /* vlan address was different from the old address and is equal to |
305 | * the new address */ | |
53a2b3a1 JP |
306 | if (!ether_addr_equal(vlandev->dev_addr, vlan->real_dev_addr) && |
307 | ether_addr_equal(vlandev->dev_addr, dev->dev_addr)) | |
a748ee24 | 308 | dev_uc_del(dev, vlandev->dev_addr); |
8c979c26 PM |
309 | |
310 | /* vlan address was equal to the old address and is different from | |
311 | * the new address */ | |
53a2b3a1 JP |
312 | if (ether_addr_equal(vlandev->dev_addr, vlan->real_dev_addr) && |
313 | !ether_addr_equal(vlandev->dev_addr, dev->dev_addr)) | |
a748ee24 | 314 | dev_uc_add(dev, vlandev->dev_addr); |
8c979c26 | 315 | |
308453aa | 316 | out: |
07fc67be | 317 | ether_addr_copy(vlan->real_dev_addr, dev->dev_addr); |
8c979c26 PM |
318 | } |
319 | ||
5fb13570 PM |
320 | static void vlan_transfer_features(struct net_device *dev, |
321 | struct net_device *vlandev) | |
322 | { | |
fc0d48b8 VY |
323 | struct vlan_dev_priv *vlan = vlan_dev_priv(vlandev); |
324 | ||
1ae4be22 | 325 | vlandev->gso_max_size = dev->gso_max_size; |
f6773c5e | 326 | vlandev->gso_max_segs = dev->gso_max_segs; |
029f5fc3 | 327 | |
fc0d48b8 | 328 | if (vlan_hw_offload_capable(dev->features, vlan->vlan_proto)) |
029f5fc3 JF |
329 | vlandev->hard_header_len = dev->hard_header_len; |
330 | else | |
331 | vlandev->hard_header_len = dev->hard_header_len + VLAN_HLEN; | |
332 | ||
f4d5392e | 333 | #if IS_ENABLED(CONFIG_FCOE) |
b85daa53 VD |
334 | vlandev->fcoe_ddp_xid = dev->fcoe_ddp_xid; |
335 | #endif | |
8a0427bb | 336 | |
9d917c20 VF |
337 | vlandev->priv_flags &= ~IFF_XMIT_DST_RELEASE; |
338 | vlandev->priv_flags |= (vlan->real_dev->priv_flags & IFF_XMIT_DST_RELEASE); | |
7dad9937 | 339 | vlandev->hw_enc_features = vlan_tnl_features(vlan->real_dev); |
9d917c20 | 340 | |
8a0427bb | 341 | netdev_update_features(vlandev); |
5fb13570 PM |
342 | } |
343 | ||
9c5ff24f | 344 | static int __vlan_device_event(struct net_device *dev, unsigned long event) |
802fb176 | 345 | { |
9c5ff24f WC |
346 | int err = 0; |
347 | ||
802fb176 PE |
348 | switch (event) { |
349 | case NETDEV_CHANGENAME: | |
350 | vlan_proc_rem_dev(dev); | |
9c5ff24f | 351 | err = vlan_proc_add_dev(dev); |
802fb176 | 352 | break; |
30688a9a | 353 | case NETDEV_REGISTER: |
9c5ff24f | 354 | err = vlan_proc_add_dev(dev); |
30688a9a PE |
355 | break; |
356 | case NETDEV_UNREGISTER: | |
357 | vlan_proc_rem_dev(dev); | |
358 | break; | |
802fb176 | 359 | } |
9c5ff24f WC |
360 | |
361 | return err; | |
802fb176 PE |
362 | } |
363 | ||
2029cc2c PM |
364 | static int vlan_device_event(struct notifier_block *unused, unsigned long event, |
365 | void *ptr) | |
1da177e4 | 366 | { |
567c5e13 | 367 | struct netlink_ext_ack *extack = netdev_notifier_info_to_extack(ptr); |
351638e7 | 368 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); |
802fb176 | 369 | struct vlan_group *grp; |
5b9ea6e0 | 370 | struct vlan_info *vlan_info; |
1da177e4 LT |
371 | int i, flgs; |
372 | struct net_device *vlandev; | |
7da82c06 | 373 | struct vlan_dev_priv *vlan; |
1fd9b1fc | 374 | bool last = false; |
29906f6a | 375 | LIST_HEAD(list); |
9daae9bd | 376 | int err; |
1da177e4 | 377 | |
9c5ff24f WC |
378 | if (is_vlan_dev(dev)) { |
379 | int err = __vlan_device_event(dev, event); | |
380 | ||
381 | if (err) | |
382 | return notifier_from_errno(err); | |
383 | } | |
802fb176 | 384 | |
ad1afb00 | 385 | if ((event == NETDEV_UP) && |
f646968f | 386 | (dev->features & NETIF_F_HW_VLAN_CTAG_FILTER)) { |
afab2d29 | 387 | pr_info("adding VLAN 0 to HW filter on device %s\n", |
ad1afb00 | 388 | dev->name); |
80d5c368 | 389 | vlan_vid_add(dev, htons(ETH_P_8021Q), 0); |
ad1afb00 | 390 | } |
052d41c0 CW |
391 | if (event == NETDEV_DOWN && |
392 | (dev->features & NETIF_F_HW_VLAN_CTAG_FILTER)) | |
393 | vlan_vid_del(dev, htons(ETH_P_8021Q), 0); | |
ad1afb00 | 394 | |
5b9ea6e0 JP |
395 | vlan_info = rtnl_dereference(dev->vlan_info); |
396 | if (!vlan_info) | |
1da177e4 | 397 | goto out; |
5b9ea6e0 | 398 | grp = &vlan_info->grp; |
1da177e4 LT |
399 | |
400 | /* It is OK that we do not hold the group lock right now, | |
401 | * as we run under the RTNL lock. | |
402 | */ | |
403 | ||
404 | switch (event) { | |
405 | case NETDEV_CHANGE: | |
406 | /* Propagate real device state to vlan devices */ | |
1fd9b1fc | 407 | vlan_group_for_each_dev(grp, i, vlandev) |
76052d8c MM |
408 | vlan_stacked_transfer_operstate(dev, vlandev, |
409 | vlan_dev_priv(vlandev)); | |
1da177e4 LT |
410 | break; |
411 | ||
8c979c26 PM |
412 | case NETDEV_CHANGEADDR: |
413 | /* Adjust unicast filters on underlying device */ | |
1fd9b1fc | 414 | vlan_group_for_each_dev(grp, i, vlandev) { |
d932e04a PM |
415 | flgs = vlandev->flags; |
416 | if (!(flgs & IFF_UP)) | |
417 | continue; | |
418 | ||
8c979c26 PM |
419 | vlan_sync_address(dev, vlandev); |
420 | } | |
2e477c9b HX |
421 | break; |
422 | ||
423 | case NETDEV_CHANGEMTU: | |
1fd9b1fc | 424 | vlan_group_for_each_dev(grp, i, vlandev) { |
2e477c9b HX |
425 | if (vlandev->mtu <= dev->mtu) |
426 | continue; | |
427 | ||
428 | dev_set_mtu(vlandev, dev->mtu); | |
429 | } | |
8c979c26 PM |
430 | break; |
431 | ||
5fb13570 PM |
432 | case NETDEV_FEAT_CHANGE: |
433 | /* Propagate device features to underlying device */ | |
1fd9b1fc | 434 | vlan_group_for_each_dev(grp, i, vlandev) |
5fb13570 | 435 | vlan_transfer_features(dev, vlandev); |
5fb13570 PM |
436 | break; |
437 | ||
99c4a26a DM |
438 | case NETDEV_DOWN: { |
439 | struct net_device *tmp; | |
440 | LIST_HEAD(close_list); | |
441 | ||
1da177e4 | 442 | /* Put all VLANs for this dev in the down state too. */ |
1fd9b1fc | 443 | vlan_group_for_each_dev(grp, i, vlandev) { |
1da177e4 LT |
444 | flgs = vlandev->flags; |
445 | if (!(flgs & IFF_UP)) | |
446 | continue; | |
447 | ||
7da82c06 | 448 | vlan = vlan_dev_priv(vlandev); |
5e756593 | 449 | if (!(vlan->flags & VLAN_FLAG_LOOSE_BINDING)) |
99c4a26a DM |
450 | list_add(&vlandev->close_list, &close_list); |
451 | } | |
452 | ||
453 | dev_close_many(&close_list, false); | |
454 | ||
455 | list_for_each_entry_safe(vlandev, tmp, &close_list, close_list) { | |
76052d8c MM |
456 | vlan_stacked_transfer_operstate(dev, vlandev, |
457 | vlan_dev_priv(vlandev)); | |
99c4a26a | 458 | list_del_init(&vlandev->close_list); |
1da177e4 | 459 | } |
99c4a26a | 460 | list_del(&close_list); |
1da177e4 | 461 | break; |
99c4a26a | 462 | } |
1da177e4 LT |
463 | case NETDEV_UP: |
464 | /* Put all VLANs for this dev in the up state too. */ | |
1fd9b1fc | 465 | vlan_group_for_each_dev(grp, i, vlandev) { |
be346ffa | 466 | flgs = dev_get_flags(vlandev); |
1da177e4 LT |
467 | if (flgs & IFF_UP) |
468 | continue; | |
469 | ||
7da82c06 | 470 | vlan = vlan_dev_priv(vlandev); |
5e756593 | 471 | if (!(vlan->flags & VLAN_FLAG_LOOSE_BINDING)) |
567c5e13 PM |
472 | dev_change_flags(vlandev, flgs | IFF_UP, |
473 | extack); | |
76052d8c | 474 | vlan_stacked_transfer_operstate(dev, vlandev, vlan); |
1da177e4 LT |
475 | } |
476 | break; | |
122952fc | 477 | |
1da177e4 | 478 | case NETDEV_UNREGISTER: |
3b27e105 DL |
479 | /* twiddle thumbs on netns device moves */ |
480 | if (dev->reg_state != NETREG_UNREGISTERING) | |
481 | break; | |
482 | ||
1fd9b1fc | 483 | vlan_group_for_each_dev(grp, i, vlandev) { |
5b9ea6e0 | 484 | /* removal of last vid destroys vlan_info, abort |
29906f6a | 485 | * afterwards */ |
5b9ea6e0 | 486 | if (vlan_info->nr_vids == 1) |
1fd9b1fc | 487 | last = true; |
29906f6a PM |
488 | |
489 | unregister_vlan_dev(vlandev, &list); | |
1fd9b1fc PM |
490 | if (last) |
491 | break; | |
29906f6a PM |
492 | } |
493 | unregister_netdevice_many(&list); | |
1da177e4 | 494 | break; |
1c01fe14 JP |
495 | |
496 | case NETDEV_PRE_TYPE_CHANGE: | |
497 | /* Forbid underlaying device to change its type. */ | |
18c22a03 JP |
498 | if (vlan_uses_dev(dev)) |
499 | return NOTIFY_BAD; | |
500 | break; | |
99606477 BH |
501 | |
502 | case NETDEV_NOTIFY_PEERS: | |
7c899432 | 503 | case NETDEV_BONDING_FAILOVER: |
4aa5dee4 | 504 | case NETDEV_RESEND_IGMP: |
99606477 | 505 | /* Propagate to vlan devices */ |
1fd9b1fc | 506 | vlan_group_for_each_dev(grp, i, vlandev) |
7c899432 | 507 | call_netdevice_notifiers(event, vlandev); |
99606477 | 508 | break; |
9daae9bd GP |
509 | |
510 | case NETDEV_CVLAN_FILTER_PUSH_INFO: | |
511 | err = vlan_filter_push_vids(vlan_info, htons(ETH_P_8021Q)); | |
512 | if (err) | |
513 | return notifier_from_errno(err); | |
514 | break; | |
515 | ||
516 | case NETDEV_CVLAN_FILTER_DROP_INFO: | |
517 | vlan_filter_drop_vids(vlan_info, htons(ETH_P_8021Q)); | |
518 | break; | |
519 | ||
520 | case NETDEV_SVLAN_FILTER_PUSH_INFO: | |
521 | err = vlan_filter_push_vids(vlan_info, htons(ETH_P_8021AD)); | |
522 | if (err) | |
523 | return notifier_from_errno(err); | |
524 | break; | |
525 | ||
526 | case NETDEV_SVLAN_FILTER_DROP_INFO: | |
527 | vlan_filter_drop_vids(vlan_info, htons(ETH_P_8021AD)); | |
528 | break; | |
3ff50b79 | 529 | } |
1da177e4 LT |
530 | |
531 | out: | |
532 | return NOTIFY_DONE; | |
533 | } | |
534 | ||
69ab4b7d PM |
535 | static struct notifier_block vlan_notifier_block __read_mostly = { |
536 | .notifier_call = vlan_device_event, | |
537 | }; | |
538 | ||
1da177e4 LT |
539 | /* |
540 | * VLAN IOCTL handler. | |
541 | * o execute requested action or pass command to the device driver | |
542 | * arg is really a struct vlan_ioctl_args __user *. | |
543 | */ | |
881d966b | 544 | static int vlan_ioctl_handler(struct net *net, void __user *arg) |
1da177e4 | 545 | { |
c17d8874 | 546 | int err; |
1da177e4 | 547 | struct vlan_ioctl_args args; |
c17d8874 | 548 | struct net_device *dev = NULL; |
1da177e4 LT |
549 | |
550 | if (copy_from_user(&args, arg, sizeof(struct vlan_ioctl_args))) | |
551 | return -EFAULT; | |
552 | ||
553 | /* Null terminate this sucker, just in case. */ | |
9c403b6b GF |
554 | args.device1[sizeof(args.device1) - 1] = 0; |
555 | args.u.device2[sizeof(args.u.device2) - 1] = 0; | |
1da177e4 | 556 | |
c17d8874 PM |
557 | rtnl_lock(); |
558 | ||
1da177e4 LT |
559 | switch (args.cmd) { |
560 | case SET_VLAN_INGRESS_PRIORITY_CMD: | |
c17d8874 PM |
561 | case SET_VLAN_EGRESS_PRIORITY_CMD: |
562 | case SET_VLAN_FLAG_CMD: | |
563 | case ADD_VLAN_CMD: | |
564 | case DEL_VLAN_CMD: | |
565 | case GET_VLAN_REALDEV_NAME_CMD: | |
566 | case GET_VLAN_VID_CMD: | |
567 | err = -ENODEV; | |
65d292a2 | 568 | dev = __dev_get_by_name(net, args.device1); |
c17d8874 PM |
569 | if (!dev) |
570 | goto out; | |
571 | ||
572 | err = -EINVAL; | |
26a25239 | 573 | if (args.cmd != ADD_VLAN_CMD && !is_vlan_dev(dev)) |
c17d8874 PM |
574 | goto out; |
575 | } | |
576 | ||
577 | switch (args.cmd) { | |
578 | case SET_VLAN_INGRESS_PRIORITY_CMD: | |
579 | err = -EPERM; | |
276996fd | 580 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
c17d8874 PM |
581 | break; |
582 | vlan_dev_set_ingress_priority(dev, | |
583 | args.u.skb_priority, | |
584 | args.vlan_qos); | |
fffe470a | 585 | err = 0; |
1da177e4 LT |
586 | break; |
587 | ||
588 | case SET_VLAN_EGRESS_PRIORITY_CMD: | |
c17d8874 | 589 | err = -EPERM; |
276996fd | 590 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
c17d8874 PM |
591 | break; |
592 | err = vlan_dev_set_egress_priority(dev, | |
1da177e4 LT |
593 | args.u.skb_priority, |
594 | args.vlan_qos); | |
595 | break; | |
596 | ||
597 | case SET_VLAN_FLAG_CMD: | |
c17d8874 | 598 | err = -EPERM; |
276996fd | 599 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
c17d8874 | 600 | break; |
b3ce0325 PM |
601 | err = vlan_dev_change_flags(dev, |
602 | args.vlan_qos ? args.u.flag : 0, | |
603 | args.u.flag); | |
1da177e4 LT |
604 | break; |
605 | ||
606 | case SET_VLAN_NAME_TYPE_CMD: | |
c17d8874 | 607 | err = -EPERM; |
276996fd | 608 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
e35de026 | 609 | break; |
403f0727 | 610 | if (args.u.name_type < VLAN_NAME_TYPE_HIGHEST) { |
7a17a2f7 PE |
611 | struct vlan_net *vn; |
612 | ||
613 | vn = net_generic(net, vlan_net_id); | |
614 | vn->name_type = args.u.name_type; | |
1da177e4 LT |
615 | err = 0; |
616 | } else { | |
617 | err = -EINVAL; | |
618 | } | |
619 | break; | |
620 | ||
621 | case ADD_VLAN_CMD: | |
c17d8874 | 622 | err = -EPERM; |
276996fd | 623 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
c17d8874 | 624 | break; |
2ae0bf69 | 625 | err = register_vlan_device(dev, args.u.VID); |
1da177e4 LT |
626 | break; |
627 | ||
628 | case DEL_VLAN_CMD: | |
c17d8874 | 629 | err = -EPERM; |
276996fd | 630 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
c17d8874 | 631 | break; |
23289a37 | 632 | unregister_vlan_dev(dev, NULL); |
af301517 | 633 | err = 0; |
1da177e4 LT |
634 | break; |
635 | ||
1da177e4 | 636 | case GET_VLAN_REALDEV_NAME_CMD: |
3f5f4346 | 637 | err = 0; |
c17d8874 | 638 | vlan_dev_get_realdev_name(dev, args.u.device2); |
1da177e4 | 639 | if (copy_to_user(arg, &args, |
2029cc2c | 640 | sizeof(struct vlan_ioctl_args))) |
1da177e4 | 641 | err = -EFAULT; |
1da177e4 LT |
642 | break; |
643 | ||
644 | case GET_VLAN_VID_CMD: | |
3f5f4346 | 645 | err = 0; |
22d1ba74 | 646 | args.u.VID = vlan_dev_vlan_id(dev); |
1da177e4 | 647 | if (copy_to_user(arg, &args, |
2029cc2c | 648 | sizeof(struct vlan_ioctl_args))) |
122952fc | 649 | err = -EFAULT; |
1da177e4 LT |
650 | break; |
651 | ||
652 | default: | |
198a291c | 653 | err = -EOPNOTSUPP; |
c17d8874 | 654 | break; |
3ff50b79 | 655 | } |
7eb1b3d3 | 656 | out: |
c17d8874 | 657 | rtnl_unlock(); |
1da177e4 LT |
658 | return err; |
659 | } | |
660 | ||
2c8c1e72 | 661 | static int __net_init vlan_init_net(struct net *net) |
d9ed0f0e | 662 | { |
946d1a92 | 663 | struct vlan_net *vn = net_generic(net, vlan_net_id); |
d9ed0f0e | 664 | int err; |
d9ed0f0e | 665 | |
7a17a2f7 PE |
666 | vn->name_type = VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD; |
667 | ||
cd1c7014 | 668 | err = vlan_proc_init(net); |
cd1c7014 | 669 | |
d9ed0f0e PE |
670 | return err; |
671 | } | |
672 | ||
2c8c1e72 | 673 | static void __net_exit vlan_exit_net(struct net *net) |
d9ed0f0e | 674 | { |
cd1c7014 | 675 | vlan_proc_cleanup(net); |
d9ed0f0e PE |
676 | } |
677 | ||
678 | static struct pernet_operations vlan_net_ops = { | |
679 | .init = vlan_init_net, | |
680 | .exit = vlan_exit_net, | |
946d1a92 EB |
681 | .id = &vlan_net_id, |
682 | .size = sizeof(struct vlan_net), | |
d9ed0f0e PE |
683 | }; |
684 | ||
69ab4b7d PM |
685 | static int __init vlan_proto_init(void) |
686 | { | |
687 | int err; | |
688 | ||
da7c06c4 | 689 | pr_info("%s v%s\n", vlan_fullname, vlan_version); |
69ab4b7d | 690 | |
91e2ff35 | 691 | err = register_pernet_subsys(&vlan_net_ops); |
d9ed0f0e PE |
692 | if (err < 0) |
693 | goto err0; | |
694 | ||
69ab4b7d PM |
695 | err = register_netdevice_notifier(&vlan_notifier_block); |
696 | if (err < 0) | |
697 | goto err2; | |
698 | ||
70c03b49 | 699 | err = vlan_gvrp_init(); |
69ab4b7d PM |
700 | if (err < 0) |
701 | goto err3; | |
702 | ||
86fbe9bb | 703 | err = vlan_mvrp_init(); |
70c03b49 PM |
704 | if (err < 0) |
705 | goto err4; | |
706 | ||
86fbe9bb DW |
707 | err = vlan_netlink_init(); |
708 | if (err < 0) | |
709 | goto err5; | |
710 | ||
69ab4b7d PM |
711 | vlan_ioctl_set(vlan_ioctl_handler); |
712 | return 0; | |
713 | ||
86fbe9bb DW |
714 | err5: |
715 | vlan_mvrp_uninit(); | |
70c03b49 PM |
716 | err4: |
717 | vlan_gvrp_uninit(); | |
69ab4b7d PM |
718 | err3: |
719 | unregister_netdevice_notifier(&vlan_notifier_block); | |
720 | err2: | |
91e2ff35 | 721 | unregister_pernet_subsys(&vlan_net_ops); |
d9ed0f0e | 722 | err0: |
69ab4b7d PM |
723 | return err; |
724 | } | |
725 | ||
726 | static void __exit vlan_cleanup_module(void) | |
727 | { | |
69ab4b7d | 728 | vlan_ioctl_set(NULL); |
66e5133f | 729 | |
69ab4b7d PM |
730 | vlan_netlink_fini(); |
731 | ||
732 | unregister_netdevice_notifier(&vlan_notifier_block); | |
733 | ||
91e2ff35 | 734 | unregister_pernet_subsys(&vlan_net_ops); |
6e327c11 | 735 | rcu_barrier(); /* Wait for completion of call_rcu()'s */ |
70c03b49 | 736 | |
86fbe9bb | 737 | vlan_mvrp_uninit(); |
70c03b49 | 738 | vlan_gvrp_uninit(); |
69ab4b7d PM |
739 | } |
740 | ||
741 | module_init(vlan_proto_init); | |
742 | module_exit(vlan_cleanup_module); | |
743 | ||
1da177e4 LT |
744 | MODULE_LICENSE("GPL"); |
745 | MODULE_VERSION(DRV_VERSION); |