vlan_core.c 8.6 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;
12
	u16 vlan_id = skb_vlan_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;
23 24 25 26 27 28

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

30
	skb->dev = vlan_dev;
31
	if (unlikely(skb->pkt_type == PACKET_OTHERHOST)) {
32 33 34
		/* 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. */
35
		if (ether_addr_equal_64bits(eth_hdr(skb)->h_dest, vlan_dev->dev_addr))
36 37 38
			skb->pkt_type = PACKET_HOST;
	}

39 40 41
	if (!(vlan_dev_priv(vlan_dev)->flags & VLAN_FLAG_REORDER_HDR) &&
	    !netif_is_macvlan_port(vlan_dev) &&
	    !netif_is_bridge_port(vlan_dev)) {
42 43 44 45 46 47 48 49
		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);
50 51
		skb = *skbp = vlan_insert_tag(skb, skb->vlan_proto,
					      skb->vlan_tci);
52 53 54 55 56 57
		if (!skb)
			return false;
		skb_pull(skb, offset + VLAN_HLEN);
		skb_reset_mac_len(skb);
	}

58
	skb->priority = vlan_get_ingress_priority(vlan_dev, skb->vlan_tci);
59
	skb->vlan_tci = 0;
60

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

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

	return true;
71
}
72

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

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

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

	return NULL;
}
98
EXPORT_SYMBOL(__vlan_find_dev_deep_rcu);
99

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

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

	return ret;
108
}
109
EXPORT_SYMBOL(vlan_dev_real_dev);
110 111 112

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

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

123 124 125 126 127 128
/*
 * vlan info and vid list
 */

static void vlan_group_free(struct vlan_group *grp)
{
129
	int i, j;
130

131 132 133
	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]);
134 135 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
}

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;
162 163
	__be16 proto;
	u16 vid;
164 165 166
	int refcount;
};

P
Patrick McHardy 已提交
167 168 169 170 171 172 173 174 175 176 177 178
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;
}

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

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

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

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

	return vid_info;
}

204
static int __vlan_vid_add(struct vlan_info *vlan_info, __be16 proto, u16 vid,
205
			  struct vlan_vid_info **pvid_info)
206
{
207
	struct net_device *dev = vlan_info->real_dev;
208
	const struct net_device_ops *ops = dev->netdev_ops;
209 210 211
	struct vlan_vid_info *vid_info;
	int err;

212
	vid_info = vlan_vid_info_alloc(proto, vid);
213 214
	if (!vid_info)
		return -ENOMEM;
215

P
Patrick McHardy 已提交
216
	if (vlan_hw_filter_capable(dev, vid_info)) {
217 218 219 220
		if (netif_device_present(dev))
			err = ops->ndo_vlan_rx_add_vid(dev, proto, vid);
		else
			err = -ENODEV;
221 222 223 224
		if (err) {
			kfree(vid_info);
			return err;
		}
225
	}
226 227 228
	list_add(&vid_info->list, &vlan_info->vid_list);
	vlan_info->nr_vids++;
	*pvid_info = vid_info;
229 230
	return 0;
}
231

232
int vlan_vid_add(struct net_device *dev, __be16 proto, u16 vid)
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
{
	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;
	}
248
	vid_info = vlan_vid_info_get(vlan_info, proto, vid);
249
	if (!vid_info) {
250
		err = __vlan_vid_add(vlan_info, proto, vid, &vid_info);
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
		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;
}
266 267
EXPORT_SYMBOL(vlan_vid_add);

268 269
static void __vlan_vid_del(struct vlan_info *vlan_info,
			   struct vlan_vid_info *vid_info)
270
{
271
	struct net_device *dev = vlan_info->real_dev;
272
	const struct net_device_ops *ops = dev->netdev_ops;
273 274
	__be16 proto = vid_info->proto;
	u16 vid = vid_info->vid;
275
	int err;
276

P
Patrick McHardy 已提交
277
	if (vlan_hw_filter_capable(dev, vid_info)) {
278 279 280 281
		if (netif_device_present(dev))
			err = ops->ndo_vlan_rx_kill_vid(dev, proto, vid);
		else
			err = -ENODEV;
282
		if (err) {
283 284
			pr_warn("failed to kill vid %04x/%d for device %s\n",
				proto, vid, dev->name);
285 286 287 288 289 290 291
		}
	}
	list_del(&vid_info->list);
	kfree(vid_info);
	vlan_info->nr_vids--;
}

292
void vlan_vid_del(struct net_device *dev, __be16 proto, u16 vid)
293 294 295 296 297 298 299 300 301 302
{
	struct vlan_info *vlan_info;
	struct vlan_vid_info *vid_info;

	ASSERT_RTNL();

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

303
	vid_info = vlan_vid_info_get(vlan_info, proto, vid);
304 305 306 307 308 309 310 311 312
	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);
		}
313 314 315
	}
}
EXPORT_SYMBOL(vlan_vid_del);
316 317 318 319 320

int vlan_vids_add_by_dev(struct net_device *dev,
			 const struct net_device *by_dev)
{
	struct vlan_vid_info *vid_info;
321
	struct vlan_info *vlan_info;
322 323 324 325
	int err;

	ASSERT_RTNL();

326 327
	vlan_info = rtnl_dereference(by_dev->vlan_info);
	if (!vlan_info)
328 329
		return 0;

330
	list_for_each_entry(vid_info, &vlan_info->vid_list, list) {
331
		err = vlan_vid_add(dev, vid_info->proto, vid_info->vid);
332 333 334 335 336 337 338
		if (err)
			goto unwind;
	}
	return 0;

unwind:
	list_for_each_entry_continue_reverse(vid_info,
339
					     &vlan_info->vid_list,
340
					     list) {
341
		vlan_vid_del(dev, vid_info->proto, vid_info->vid);
342 343 344 345 346 347 348 349 350 351
	}

	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;
352
	struct vlan_info *vlan_info;
353 354 355

	ASSERT_RTNL();

356 357
	vlan_info = rtnl_dereference(by_dev->vlan_info);
	if (!vlan_info)
358 359
		return;

360
	list_for_each_entry(vid_info, &vlan_info->vid_list, list)
361
		vlan_vid_del(dev, vid_info->proto, vid_info->vid);
362 363
}
EXPORT_SYMBOL(vlan_vids_del_by_dev);
364 365 366

bool vlan_uses_dev(const struct net_device *dev)
{
367 368 369 370 371 372 373 374
	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;
375 376
}
EXPORT_SYMBOL(vlan_uses_dev);