vlan_core.c 12.6 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2 3 4
#include <linux/skbuff.h>
#include <linux/netdevice.h>
#include <linux/if_vlan.h>
5
#include <linux/netpoll.h>
6
#include <linux/export.h>
7
#include <net/gro.h>
8 9
#include "vlan.h"

10
bool vlan_do_receive(struct sk_buff **skbp)
11
{
12
	struct sk_buff *skb = *skbp;
13
	__be16 vlan_proto = skb->vlan_proto;
14
	u16 vlan_id = skb_vlan_tag_get_id(skb);
15
	struct net_device *vlan_dev;
E
Eric Dumazet 已提交
16
	struct vlan_pcpu_stats *rx_stats;
17

18
	vlan_dev = vlan_find_dev(skb->dev, vlan_proto, vlan_id);
19
	if (!vlan_dev)
20
		return false;
21

22 23 24
	skb = *skbp = skb_share_check(skb, GFP_ATOMIC);
	if (unlikely(!skb))
		return false;
25 26 27 28 29 30

	if (unlikely(!(vlan_dev->flags & IFF_UP))) {
		kfree_skb(skb);
		*skbp = NULL;
		return false;
	}
H
Herbert Xu 已提交
31

32
	skb->dev = vlan_dev;
33
	if (unlikely(skb->pkt_type == PACKET_OTHERHOST)) {
34 35 36
		/* Our lower layer thinks this is not local, let's make sure.
		 * This allows the VLAN to have a different MAC than the
		 * underlying device, and still route correctly. */
37
		if (ether_addr_equal_64bits(eth_hdr(skb)->h_dest, vlan_dev->dev_addr))
38 39 40
			skb->pkt_type = PACKET_HOST;
	}

41 42 43
	if (!(vlan_dev_priv(vlan_dev)->flags & VLAN_FLAG_REORDER_HDR) &&
	    !netif_is_macvlan_port(vlan_dev) &&
	    !netif_is_bridge_port(vlan_dev)) {
44 45 46 47 48 49 50 51
		unsigned int offset = skb->data - skb_mac_header(skb);

		/*
		 * vlan_insert_tag expect skb->data pointing to mac header.
		 * So change skb->data before calling it and change back to
		 * original position later
		 */
		skb_push(skb, offset);
52 53
		skb = *skbp = vlan_insert_inner_tag(skb, skb->vlan_proto,
						    skb->vlan_tci, skb->mac_len);
54 55 56 57 58 59
		if (!skb)
			return false;
		skb_pull(skb, offset + VLAN_HLEN);
		skb_reset_mac_len(skb);
	}

60
	skb->priority = vlan_get_ingress_priority(vlan_dev, skb->vlan_tci);
61
	__vlan_hwaccel_clear_tag(skb);
62

63
	rx_stats = this_cpu_ptr(vlan_dev_priv(vlan_dev)->vlan_pcpu_stats);
E
Eric Dumazet 已提交
64

E
Eric Dumazet 已提交
65
	u64_stats_update_begin(&rx_stats->syncp);
E
Eric Dumazet 已提交
66 67
	rx_stats->rx_packets++;
	rx_stats->rx_bytes += skb->len;
68
	if (skb->pkt_type == PACKET_MULTICAST)
E
Eric Dumazet 已提交
69 70
		rx_stats->rx_multicast++;
	u64_stats_update_end(&rx_stats->syncp);
71 72

	return true;
73
}
74

75
/* Must be invoked with rcu_read_lock. */
76
struct net_device *__vlan_find_dev_deep_rcu(struct net_device *dev,
77
					__be16 vlan_proto, u16 vlan_id)
78
{
79
	struct vlan_info *vlan_info = rcu_dereference(dev->vlan_info);
80

81
	if (vlan_info) {
82 83
		return vlan_group_get_device(&vlan_info->grp,
					     vlan_proto, vlan_id);
84 85
	} else {
		/*
86 87 88
		 * Lower devices of master uppers (bonding, team) do not have
		 * grp assigned to themselves. Grp is assigned to upper device
		 * instead.
89
		 */
90 91 92 93
		struct net_device *upper_dev;

		upper_dev = netdev_master_upper_dev_get_rcu(dev);
		if (upper_dev)
94
			return __vlan_find_dev_deep_rcu(upper_dev,
95
						    vlan_proto, vlan_id);
96 97 98 99
	}

	return NULL;
}
100
EXPORT_SYMBOL(__vlan_find_dev_deep_rcu);
101

102 103
struct net_device *vlan_dev_real_dev(const struct net_device *dev)
{
104 105 106 107 108 109
	struct net_device *ret = vlan_dev_priv(dev)->real_dev;

	while (is_vlan_dev(ret))
		ret = vlan_dev_priv(ret)->real_dev;

	return ret;
110
}
111
EXPORT_SYMBOL(vlan_dev_real_dev);
112 113 114

u16 vlan_dev_vlan_id(const struct net_device *dev)
{
115
	return vlan_dev_priv(dev)->vlan_id;
116
}
117
EXPORT_SYMBOL(vlan_dev_vlan_id);
H
Herbert Xu 已提交
118

119 120 121 122 123 124
__be16 vlan_dev_vlan_proto(const struct net_device *dev)
{
	return vlan_dev_priv(dev)->vlan_proto;
}
EXPORT_SYMBOL(vlan_dev_vlan_proto);

125 126 127 128 129 130
/*
 * vlan info and vid list
 */

static void vlan_group_free(struct vlan_group *grp)
{
131
	int i, j;
132

133 134 135
	for (i = 0; i < VLAN_PROTO_NUM; i++)
		for (j = 0; j < VLAN_GROUP_ARRAY_SPLIT_PARTS; j++)
			kfree(grp->vlan_devices_arrays[i][j]);
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
}

static void vlan_info_free(struct vlan_info *vlan_info)
{
	vlan_group_free(&vlan_info->grp);
	kfree(vlan_info);
}

static void vlan_info_rcu_free(struct rcu_head *rcu)
{
	vlan_info_free(container_of(rcu, struct vlan_info, rcu));
}

static struct vlan_info *vlan_info_alloc(struct net_device *dev)
{
	struct vlan_info *vlan_info;

	vlan_info = kzalloc(sizeof(struct vlan_info), GFP_KERNEL);
	if (!vlan_info)
		return NULL;

	vlan_info->real_dev = dev;
	INIT_LIST_HEAD(&vlan_info->vid_list);
	return vlan_info;
}

struct vlan_vid_info {
	struct list_head list;
164 165
	__be16 proto;
	u16 vid;
166 167 168
	int refcount;
};

169
static bool vlan_hw_filter_capable(const struct net_device *dev, __be16 proto)
P
Patrick McHardy 已提交
170
{
171
	if (proto == htons(ETH_P_8021Q) &&
P
Patrick McHardy 已提交
172 173
	    dev->features & NETIF_F_HW_VLAN_CTAG_FILTER)
		return true;
174
	if (proto == htons(ETH_P_8021AD) &&
P
Patrick McHardy 已提交
175 176 177 178 179
	    dev->features & NETIF_F_HW_VLAN_STAG_FILTER)
		return true;
	return false;
}

180
static struct vlan_vid_info *vlan_vid_info_get(struct vlan_info *vlan_info,
181
					       __be16 proto, u16 vid)
182 183 184 185
{
	struct vlan_vid_info *vid_info;

	list_for_each_entry(vid_info, &vlan_info->vid_list, list) {
186
		if (vid_info->proto == proto && vid_info->vid == vid)
187 188 189 190 191
			return vid_info;
	}
	return NULL;
}

192
static struct vlan_vid_info *vlan_vid_info_alloc(__be16 proto, u16 vid)
193 194 195 196 197 198
{
	struct vlan_vid_info *vid_info;

	vid_info = kzalloc(sizeof(struct vlan_vid_info), GFP_KERNEL);
	if (!vid_info)
		return NULL;
199
	vid_info->proto = proto;
200 201 202 203 204
	vid_info->vid = vid;

	return vid_info;
}

205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
static int vlan_add_rx_filter_info(struct net_device *dev, __be16 proto, u16 vid)
{
	if (!vlan_hw_filter_capable(dev, proto))
		return 0;

	if (netif_device_present(dev))
		return dev->netdev_ops->ndo_vlan_rx_add_vid(dev, proto, vid);
	else
		return -ENODEV;
}

static int vlan_kill_rx_filter_info(struct net_device *dev, __be16 proto, u16 vid)
{
	if (!vlan_hw_filter_capable(dev, proto))
		return 0;

	if (netif_device_present(dev))
		return dev->netdev_ops->ndo_vlan_rx_kill_vid(dev, proto, vid);
	else
		return -ENODEV;
}

227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
int vlan_for_each(struct net_device *dev,
		  int (*action)(struct net_device *dev, int vid, void *arg),
		  void *arg)
{
	struct vlan_vid_info *vid_info;
	struct vlan_info *vlan_info;
	struct net_device *vdev;
	int ret;

	ASSERT_RTNL();

	vlan_info = rtnl_dereference(dev->vlan_info);
	if (!vlan_info)
		return 0;

	list_for_each_entry(vid_info, &vlan_info->vid_list, list) {
		vdev = vlan_group_get_device(&vlan_info->grp, vid_info->proto,
					     vid_info->vid);
		ret = action(vdev, vid_info->vid, arg);
		if (ret)
			return ret;
	}

	return 0;
}
EXPORT_SYMBOL(vlan_for_each);

254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
int vlan_filter_push_vids(struct vlan_info *vlan_info, __be16 proto)
{
	struct net_device *real_dev = vlan_info->real_dev;
	struct vlan_vid_info *vlan_vid_info;
	int err;

	list_for_each_entry(vlan_vid_info, &vlan_info->vid_list, list) {
		if (vlan_vid_info->proto == proto) {
			err = vlan_add_rx_filter_info(real_dev, proto,
						      vlan_vid_info->vid);
			if (err)
				goto unwind;
		}
	}

	return 0;

unwind:
	list_for_each_entry_continue_reverse(vlan_vid_info,
					     &vlan_info->vid_list, list) {
		if (vlan_vid_info->proto == proto)
			vlan_kill_rx_filter_info(real_dev, proto,
						 vlan_vid_info->vid);
	}

	return err;
}
EXPORT_SYMBOL(vlan_filter_push_vids);

void vlan_filter_drop_vids(struct vlan_info *vlan_info, __be16 proto)
{
	struct vlan_vid_info *vlan_vid_info;

	list_for_each_entry(vlan_vid_info, &vlan_info->vid_list, list)
		if (vlan_vid_info->proto == proto)
			vlan_kill_rx_filter_info(vlan_info->real_dev,
						 vlan_vid_info->proto,
						 vlan_vid_info->vid);
}
EXPORT_SYMBOL(vlan_filter_drop_vids);

295
static int __vlan_vid_add(struct vlan_info *vlan_info, __be16 proto, u16 vid,
296
			  struct vlan_vid_info **pvid_info)
297
{
298 299 300 301
	struct net_device *dev = vlan_info->real_dev;
	struct vlan_vid_info *vid_info;
	int err;

302
	vid_info = vlan_vid_info_alloc(proto, vid);
303 304
	if (!vid_info)
		return -ENOMEM;
305

306 307 308 309
	err = vlan_add_rx_filter_info(dev, proto, vid);
	if (err) {
		kfree(vid_info);
		return err;
310
	}
311

312 313 314
	list_add(&vid_info->list, &vlan_info->vid_list);
	vlan_info->nr_vids++;
	*pvid_info = vid_info;
315 316
	return 0;
}
317

318
int vlan_vid_add(struct net_device *dev, __be16 proto, u16 vid)
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
{
	struct vlan_info *vlan_info;
	struct vlan_vid_info *vid_info;
	bool vlan_info_created = false;
	int err;

	ASSERT_RTNL();

	vlan_info = rtnl_dereference(dev->vlan_info);
	if (!vlan_info) {
		vlan_info = vlan_info_alloc(dev);
		if (!vlan_info)
			return -ENOMEM;
		vlan_info_created = true;
	}
334
	vid_info = vlan_vid_info_get(vlan_info, proto, vid);
335
	if (!vid_info) {
336
		err = __vlan_vid_add(vlan_info, proto, vid, &vid_info);
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
		if (err)
			goto out_free_vlan_info;
	}
	vid_info->refcount++;

	if (vlan_info_created)
		rcu_assign_pointer(dev->vlan_info, vlan_info);

	return 0;

out_free_vlan_info:
	if (vlan_info_created)
		kfree(vlan_info);
	return err;
}
352 353
EXPORT_SYMBOL(vlan_vid_add);

354 355
static void __vlan_vid_del(struct vlan_info *vlan_info,
			   struct vlan_vid_info *vid_info)
356
{
357
	struct net_device *dev = vlan_info->real_dev;
358 359
	__be16 proto = vid_info->proto;
	u16 vid = vid_info->vid;
360
	int err;
361

362
	err = vlan_kill_rx_filter_info(dev, proto, vid);
363 364
	if (err && dev->reg_state != NETREG_UNREGISTERING)
		netdev_warn(dev, "failed to kill vid %04x/%d\n", proto, vid);
365

366 367 368 369 370
	list_del(&vid_info->list);
	kfree(vid_info);
	vlan_info->nr_vids--;
}

371
void vlan_vid_del(struct net_device *dev, __be16 proto, u16 vid)
372 373 374 375 376 377 378 379 380 381
{
	struct vlan_info *vlan_info;
	struct vlan_vid_info *vid_info;

	ASSERT_RTNL();

	vlan_info = rtnl_dereference(dev->vlan_info);
	if (!vlan_info)
		return;

382
	vid_info = vlan_vid_info_get(vlan_info, proto, vid);
383 384 385 386 387 388 389 390 391
	if (!vid_info)
		return;
	vid_info->refcount--;
	if (vid_info->refcount == 0) {
		__vlan_vid_del(vlan_info, vid_info);
		if (vlan_info->nr_vids == 0) {
			RCU_INIT_POINTER(dev->vlan_info, NULL);
			call_rcu(&vlan_info->rcu, vlan_info_rcu_free);
		}
392 393 394
	}
}
EXPORT_SYMBOL(vlan_vid_del);
395 396 397 398 399

int vlan_vids_add_by_dev(struct net_device *dev,
			 const struct net_device *by_dev)
{
	struct vlan_vid_info *vid_info;
400
	struct vlan_info *vlan_info;
401 402 403 404
	int err;

	ASSERT_RTNL();

405 406
	vlan_info = rtnl_dereference(by_dev->vlan_info);
	if (!vlan_info)
407 408
		return 0;

409
	list_for_each_entry(vid_info, &vlan_info->vid_list, list) {
410
		err = vlan_vid_add(dev, vid_info->proto, vid_info->vid);
411 412 413 414 415 416 417
		if (err)
			goto unwind;
	}
	return 0;

unwind:
	list_for_each_entry_continue_reverse(vid_info,
418
					     &vlan_info->vid_list,
419
					     list) {
420
		vlan_vid_del(dev, vid_info->proto, vid_info->vid);
421 422 423 424 425 426 427 428 429 430
	}

	return err;
}
EXPORT_SYMBOL(vlan_vids_add_by_dev);

void vlan_vids_del_by_dev(struct net_device *dev,
			  const struct net_device *by_dev)
{
	struct vlan_vid_info *vid_info;
431
	struct vlan_info *vlan_info;
432 433 434

	ASSERT_RTNL();

435 436
	vlan_info = rtnl_dereference(by_dev->vlan_info);
	if (!vlan_info)
437 438
		return;

439
	list_for_each_entry(vid_info, &vlan_info->vid_list, list)
440
		vlan_vid_del(dev, vid_info->proto, vid_info->vid);
441 442
}
EXPORT_SYMBOL(vlan_vids_del_by_dev);
443 444 445

bool vlan_uses_dev(const struct net_device *dev)
{
446 447 448 449 450 451 452 453
	struct vlan_info *vlan_info;

	ASSERT_RTNL();

	vlan_info = rtnl_dereference(dev->vlan_info);
	if (!vlan_info)
		return false;
	return vlan_info->grp.nr_vlan_devs ? true : false;
454 455
}
EXPORT_SYMBOL(vlan_uses_dev);
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480

static struct sk_buff *vlan_gro_receive(struct list_head *head,
					struct sk_buff *skb)
{
	const struct packet_offload *ptype;
	unsigned int hlen, off_vlan;
	struct sk_buff *pp = NULL;
	struct vlan_hdr *vhdr;
	struct sk_buff *p;
	__be16 type;
	int flush = 1;

	off_vlan = skb_gro_offset(skb);
	hlen = off_vlan + sizeof(*vhdr);
	vhdr = skb_gro_header_fast(skb, off_vlan);
	if (skb_gro_header_hard(skb, hlen)) {
		vhdr = skb_gro_header_slow(skb, hlen, off_vlan);
		if (unlikely(!vhdr))
			goto out;
	}

	type = vhdr->h_vlan_encapsulated_proto;

	ptype = gro_find_receive_by_type(type);
	if (!ptype)
481
		goto out;
482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497

	flush = 0;

	list_for_each_entry(p, head, list) {
		struct vlan_hdr *vhdr2;

		if (!NAPI_GRO_CB(p)->same_flow)
			continue;

		vhdr2 = (struct vlan_hdr *)(p->data + off_vlan);
		if (compare_vlan_header(vhdr, vhdr2))
			NAPI_GRO_CB(p)->same_flow = 0;
	}

	skb_gro_pull(skb, sizeof(*vhdr));
	skb_gro_postpull_rcsum(skb, vhdr, sizeof(*vhdr));
498 499 500 501

	pp = indirect_call_gro_receive_inet(ptype->callbacks.gro_receive,
					    ipv6_gro_receive, inet_gro_receive,
					    head, skb);
502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517

out:
	skb_gro_flush_final(skb, pp, flush);

	return pp;
}

static int vlan_gro_complete(struct sk_buff *skb, int nhoff)
{
	struct vlan_hdr *vhdr = (struct vlan_hdr *)(skb->data + nhoff);
	__be16 type = vhdr->h_vlan_encapsulated_proto;
	struct packet_offload *ptype;
	int err = -ENOENT;

	ptype = gro_find_complete_by_type(type);
	if (ptype)
518 519 520
		err = INDIRECT_CALL_INET(ptype->callbacks.gro_complete,
					 ipv6_gro_complete, inet_gro_complete,
					 skb, nhoff + sizeof(*vhdr));
521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554

	return err;
}

static struct packet_offload vlan_packet_offloads[] __read_mostly = {
	{
		.type = cpu_to_be16(ETH_P_8021Q),
		.priority = 10,
		.callbacks = {
			.gro_receive = vlan_gro_receive,
			.gro_complete = vlan_gro_complete,
		},
	},
	{
		.type = cpu_to_be16(ETH_P_8021AD),
		.priority = 10,
		.callbacks = {
			.gro_receive = vlan_gro_receive,
			.gro_complete = vlan_gro_complete,
		},
	},
};

static int __init vlan_offload_init(void)
{
	unsigned int i;

	for (i = 0; i < ARRAY_SIZE(vlan_packet_offloads); i++)
		dev_add_offload(&vlan_packet_offloads[i]);

	return 0;
}

fs_initcall(vlan_offload_init);