vlan_core.c 9.4 KB
Newer Older
1 2 3
#include <linux/skbuff.h>
#include <linux/netdevice.h>
#include <linux/if_vlan.h>
4
#include <linux/netpoll.h>
5
#include <linux/export.h>
6 7
#include "vlan.h"

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

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

20 21 22
	skb = *skbp = skb_share_check(skb, GFP_ATOMIC);
	if (unlikely(!skb))
		return false;
H
Herbert Xu 已提交
23

24
	skb->dev = vlan_dev;
25
	if (unlikely(skb->pkt_type == PACKET_OTHERHOST)) {
26 27 28
		/* 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. */
29
		if (ether_addr_equal_64bits(eth_hdr(skb)->h_dest, vlan_dev->dev_addr))
30 31 32
			skb->pkt_type = PACKET_HOST;
	}

33
	if (!(vlan_dev_priv(vlan_dev)->flags & VLAN_FLAG_REORDER_HDR)) {
34 35 36 37 38 39 40 41
		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);
42 43
		skb = *skbp = vlan_insert_tag(skb, skb->vlan_proto,
					      skb->vlan_tci);
44 45 46 47 48 49
		if (!skb)
			return false;
		skb_pull(skb, offset + VLAN_HLEN);
		skb_reset_mac_len(skb);
	}

50
	skb->priority = vlan_get_ingress_priority(vlan_dev, skb->vlan_tci);
51
	skb->vlan_tci = 0;
52

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

E
Eric Dumazet 已提交
55
	u64_stats_update_begin(&rx_stats->syncp);
E
Eric Dumazet 已提交
56 57
	rx_stats->rx_packets++;
	rx_stats->rx_bytes += skb->len;
58
	if (skb->pkt_type == PACKET_MULTICAST)
E
Eric Dumazet 已提交
59 60
		rx_stats->rx_multicast++;
	u64_stats_update_end(&rx_stats->syncp);
61 62

	return true;
63
}
64

65 66
/* Must be invoked with rcu_read_lock. */
struct net_device *__vlan_find_dev_deep(struct net_device *dev,
67
					__be16 vlan_proto, u16 vlan_id)
68
{
69
	struct vlan_info *vlan_info = rcu_dereference(dev->vlan_info);
70

71
	if (vlan_info) {
72 73
		return vlan_group_get_device(&vlan_info->grp,
					     vlan_proto, vlan_id);
74 75
	} else {
		/*
76 77 78
		 * Lower devices of master uppers (bonding, team) do not have
		 * grp assigned to themselves. Grp is assigned to upper device
		 * instead.
79
		 */
80 81 82 83
		struct net_device *upper_dev;

		upper_dev = netdev_master_upper_dev_get_rcu(dev);
		if (upper_dev)
84 85
			return __vlan_find_dev_deep(upper_dev,
						    vlan_proto, vlan_id);
86 87 88 89 90 91
	}

	return NULL;
}
EXPORT_SYMBOL(__vlan_find_dev_deep);

92 93
struct net_device *vlan_dev_real_dev(const struct net_device *dev)
{
94 95 96 97 98 99
	struct net_device *ret = vlan_dev_priv(dev)->real_dev;

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

	return ret;
100
}
101
EXPORT_SYMBOL(vlan_dev_real_dev);
102 103 104

u16 vlan_dev_vlan_id(const struct net_device *dev)
{
105
	return vlan_dev_priv(dev)->vlan_id;
106
}
107
EXPORT_SYMBOL(vlan_dev_vlan_id);
H
Herbert Xu 已提交
108

109 110 111 112 113 114
__be16 vlan_dev_vlan_proto(const struct net_device *dev)
{
	return vlan_dev_priv(dev)->vlan_proto;
}
EXPORT_SYMBOL(vlan_dev_vlan_proto);

115
static struct sk_buff *vlan_reorder_header(struct sk_buff *skb)
116
{
117 118 119 120
	if (skb_cow(skb, skb_headroom(skb)) < 0)
		return NULL;
	memmove(skb->data - ETH_HLEN, skb->data - VLAN_ETH_HLEN, 2 * ETH_ALEN);
	skb->mac_header += VLAN_HLEN;
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
	return skb;
}

struct sk_buff *vlan_untag(struct sk_buff *skb)
{
	struct vlan_hdr *vhdr;
	u16 vlan_tci;

	if (unlikely(vlan_tx_tag_present(skb))) {
		/* vlan_tci is already set-up so leave this for another time */
		return skb;
	}

	skb = skb_share_check(skb, GFP_ATOMIC);
	if (unlikely(!skb))
		goto err_free;

	if (unlikely(!pskb_may_pull(skb, VLAN_HLEN)))
		goto err_free;

	vhdr = (struct vlan_hdr *) skb->data;
	vlan_tci = ntohs(vhdr->h_vlan_TCI);
143
	__vlan_hwaccel_put_tag(skb, skb->protocol, vlan_tci);
144 145 146 147

	skb_pull_rcsum(skb, VLAN_HLEN);
	vlan_set_encap_proto(skb, vhdr);

148
	skb = vlan_reorder_header(skb);
149 150 151
	if (unlikely(!skb))
		goto err_free;

152 153
	skb_reset_network_header(skb);
	skb_reset_transport_header(skb);
154 155
	skb_reset_mac_len(skb);

156 157 158 159 160 161
	return skb;

err_free:
	kfree_skb(skb);
	return NULL;
}
162
EXPORT_SYMBOL(vlan_untag);
163

164 165 166 167 168 169 170

/*
 * vlan info and vid list
 */

static void vlan_group_free(struct vlan_group *grp)
{
171
	int i, j;
172

173 174 175
	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]);
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
}

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;
204 205
	__be16 proto;
	u16 vid;
206 207 208
	int refcount;
};

P
Patrick McHardy 已提交
209 210 211 212 213 214 215 216 217 218 219 220
static bool vlan_hw_filter_capable(const struct net_device *dev,
				     const struct vlan_vid_info *vid_info)
{
	if (vid_info->proto == htons(ETH_P_8021Q) &&
	    dev->features & NETIF_F_HW_VLAN_CTAG_FILTER)
		return true;
	if (vid_info->proto == htons(ETH_P_8021AD) &&
	    dev->features & NETIF_F_HW_VLAN_STAG_FILTER)
		return true;
	return false;
}

221
static struct vlan_vid_info *vlan_vid_info_get(struct vlan_info *vlan_info,
222
					       __be16 proto, u16 vid)
223 224 225 226
{
	struct vlan_vid_info *vid_info;

	list_for_each_entry(vid_info, &vlan_info->vid_list, list) {
227
		if (vid_info->proto == proto && vid_info->vid == vid)
228 229 230 231 232
			return vid_info;
	}
	return NULL;
}

233
static struct vlan_vid_info *vlan_vid_info_alloc(__be16 proto, u16 vid)
234 235 236 237 238 239
{
	struct vlan_vid_info *vid_info;

	vid_info = kzalloc(sizeof(struct vlan_vid_info), GFP_KERNEL);
	if (!vid_info)
		return NULL;
240
	vid_info->proto = proto;
241 242 243 244 245
	vid_info->vid = vid;

	return vid_info;
}

246
static int __vlan_vid_add(struct vlan_info *vlan_info, __be16 proto, u16 vid,
247
			  struct vlan_vid_info **pvid_info)
248
{
249
	struct net_device *dev = vlan_info->real_dev;
250
	const struct net_device_ops *ops = dev->netdev_ops;
251 252 253
	struct vlan_vid_info *vid_info;
	int err;

254
	vid_info = vlan_vid_info_alloc(proto, vid);
255 256
	if (!vid_info)
		return -ENOMEM;
257

P
Patrick McHardy 已提交
258
	if (vlan_hw_filter_capable(dev, vid_info)) {
259
		err =  ops->ndo_vlan_rx_add_vid(dev, proto, vid);
260 261 262 263
		if (err) {
			kfree(vid_info);
			return err;
		}
264
	}
265 266 267
	list_add(&vid_info->list, &vlan_info->vid_list);
	vlan_info->nr_vids++;
	*pvid_info = vid_info;
268 269
	return 0;
}
270

271
int vlan_vid_add(struct net_device *dev, __be16 proto, u16 vid)
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
{
	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;
	}
287
	vid_info = vlan_vid_info_get(vlan_info, proto, vid);
288
	if (!vid_info) {
289
		err = __vlan_vid_add(vlan_info, proto, vid, &vid_info);
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
		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;
}
305 306
EXPORT_SYMBOL(vlan_vid_add);

307 308
static void __vlan_vid_del(struct vlan_info *vlan_info,
			   struct vlan_vid_info *vid_info)
309
{
310
	struct net_device *dev = vlan_info->real_dev;
311
	const struct net_device_ops *ops = dev->netdev_ops;
312 313
	__be16 proto = vid_info->proto;
	u16 vid = vid_info->vid;
314
	int err;
315

P
Patrick McHardy 已提交
316
	if (vlan_hw_filter_capable(dev, vid_info)) {
317
		err = ops->ndo_vlan_rx_kill_vid(dev, proto, vid);
318
		if (err) {
319 320
			pr_warn("failed to kill vid %04x/%d for device %s\n",
				proto, vid, dev->name);
321 322 323 324 325 326 327
		}
	}
	list_del(&vid_info->list);
	kfree(vid_info);
	vlan_info->nr_vids--;
}

328
void vlan_vid_del(struct net_device *dev, __be16 proto, u16 vid)
329 330 331 332 333 334 335 336 337 338
{
	struct vlan_info *vlan_info;
	struct vlan_vid_info *vid_info;

	ASSERT_RTNL();

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

339
	vid_info = vlan_vid_info_get(vlan_info, proto, vid);
340 341 342 343 344 345 346 347 348
	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);
		}
349 350 351
	}
}
EXPORT_SYMBOL(vlan_vid_del);
352 353 354 355 356

int vlan_vids_add_by_dev(struct net_device *dev,
			 const struct net_device *by_dev)
{
	struct vlan_vid_info *vid_info;
357
	struct vlan_info *vlan_info;
358 359 360 361
	int err;

	ASSERT_RTNL();

362 363
	vlan_info = rtnl_dereference(by_dev->vlan_info);
	if (!vlan_info)
364 365
		return 0;

366
	list_for_each_entry(vid_info, &vlan_info->vid_list, list) {
367
		err = vlan_vid_add(dev, vid_info->proto, vid_info->vid);
368 369 370 371 372 373 374
		if (err)
			goto unwind;
	}
	return 0;

unwind:
	list_for_each_entry_continue_reverse(vid_info,
375
					     &vlan_info->vid_list,
376
					     list) {
377
		vlan_vid_del(dev, vid_info->proto, vid_info->vid);
378 379 380 381 382 383 384 385 386 387
	}

	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;
388
	struct vlan_info *vlan_info;
389 390 391

	ASSERT_RTNL();

392 393
	vlan_info = rtnl_dereference(by_dev->vlan_info);
	if (!vlan_info)
394 395
		return;

396
	list_for_each_entry(vid_info, &vlan_info->vid_list, list)
397
		vlan_vid_del(dev, vid_info->proto, vid_info->vid);
398 399
}
EXPORT_SYMBOL(vlan_vids_del_by_dev);
400 401 402

bool vlan_uses_dev(const struct net_device *dev)
{
403 404 405 406 407 408 409 410
	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;
411 412
}
EXPORT_SYMBOL(vlan_uses_dev);