br_vlan.c 8.7 KB
Newer Older
1 2 3 4 5 6 7
#include <linux/kernel.h>
#include <linux/netdevice.h>
#include <linux/rtnetlink.h>
#include <linux/slab.h>

#include "br_private.h"

8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
static void __vlan_add_pvid(struct net_port_vlans *v, u16 vid)
{
	if (v->pvid == vid)
		return;

	smp_wmb();
	v->pvid = vid;
}

static void __vlan_delete_pvid(struct net_port_vlans *v, u16 vid)
{
	if (v->pvid != vid)
		return;

	smp_wmb();
	v->pvid = 0;
}

26 27 28 29 30 31 32 33 34
static void __vlan_add_flags(struct net_port_vlans *v, u16 vid, u16 flags)
{
	if (flags & BRIDGE_VLAN_INFO_PVID)
		__vlan_add_pvid(v, vid);

	if (flags & BRIDGE_VLAN_INFO_UNTAGGED)
		set_bit(vid, v->untagged_bitmap);
}

35
static int __vlan_add(struct net_port_vlans *v, u16 vid, u16 flags)
36
{
37
	const struct net_device_ops *ops;
38 39 40
	struct net_bridge_port *p = NULL;
	struct net_bridge *br;
	struct net_device *dev;
41 42
	int err;

43
	if (test_bit(vid, v->vlan_bitmap)) {
44
		__vlan_add_flags(v, vid, flags);
45 46
		return 0;
	}
47

48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
	if (v->port_idx) {
		p = v->parent.port;
		br = p->br;
		dev = p->dev;
	} else {
		br = v->parent.br;
		dev = br->dev;
	}
	ops = dev->netdev_ops;

	if (p && (dev->features & NETIF_F_HW_VLAN_CTAG_FILTER)) {
		/* Add VLAN to the device filter if it is supported.
		 * Stricly speaking, this is not necessary now, since
		 * devices are made promiscuous by the bridge, but if
		 * that ever changes this code will allow tagged
		 * traffic to enter the bridge.
		 */
		err = ops->ndo_vlan_rx_add_vid(dev, htons(ETH_P_8021Q),
					       vid);
		if (err)
			return err;
	}
70

71 72 73 74 75
	err = br_fdb_insert(br, p, dev->dev_addr, vid);
	if (err) {
		br_err(br, "failed insert local address into bridge "
		       "forwarding table\n");
		goto out_filt;
76 77 78
	}

	set_bit(vid, v->vlan_bitmap);
79
	v->num_vlans++;
80
	__vlan_add_flags(v, vid, flags);
81

82
	return 0;
83 84

out_filt:
85
	if (p && (dev->features & NETIF_F_HW_VLAN_CTAG_FILTER))
86
		ops->ndo_vlan_rx_kill_vid(dev, htons(ETH_P_8021Q), vid);
87
	return err;
88 89 90 91 92 93 94
}

static int __vlan_del(struct net_port_vlans *v, u16 vid)
{
	if (!test_bit(vid, v->vlan_bitmap))
		return -EINVAL;

95
	__vlan_delete_pvid(v, vid);
96
	clear_bit(vid, v->untagged_bitmap);
97

98
	if (v->port_idx) {
99
		struct net_device *dev = v->parent.port->dev;
100
		const struct net_device_ops *ops = dev->netdev_ops;
101

102
		if (dev->features & NETIF_F_HW_VLAN_CTAG_FILTER)
103
			ops->ndo_vlan_rx_kill_vid(dev, htons(ETH_P_8021Q), vid);
104 105 106
	}

	clear_bit(vid, v->vlan_bitmap);
107
	v->num_vlans--;
108
	if (bitmap_empty(v->vlan_bitmap, VLAN_N_VID)) {
109 110 111 112 113 114 115 116 117 118 119
		if (v->port_idx)
			rcu_assign_pointer(v->parent.port->vlan_info, NULL);
		else
			rcu_assign_pointer(v->parent.br->vlan_info, NULL);
		kfree_rcu(v, rcu);
	}
	return 0;
}

static void __vlan_flush(struct net_port_vlans *v)
{
120 121
	smp_wmb();
	v->pvid = 0;
122
	bitmap_zero(v->vlan_bitmap, VLAN_N_VID);
123 124 125 126 127 128 129
	if (v->port_idx)
		rcu_assign_pointer(v->parent.port->vlan_info, NULL);
	else
		rcu_assign_pointer(v->parent.br->vlan_info, NULL);
	kfree_rcu(v, rcu);
}

130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
/* Strip the tag from the packet.  Will return skb with tci set 0.  */
static struct sk_buff *br_vlan_untag(struct sk_buff *skb)
{
	if (skb->protocol != htons(ETH_P_8021Q)) {
		skb->vlan_tci = 0;
		return skb;
	}

	skb->vlan_tci = 0;
	skb = vlan_untag(skb);
	if (skb)
		skb->vlan_tci = 0;

	return skb;
}

struct sk_buff *br_handle_vlan(struct net_bridge *br,
			       const struct net_port_vlans *pv,
			       struct sk_buff *skb)
149 150 151
{
	u16 vid;

152 153 154 155
	if (!br->vlan_enabled)
		goto out;

	/* At this point, we know that the frame was filtered and contains
156
	 * a valid vlan id.  If the vlan id is set in the untagged bitmap,
157 158 159
	 * send untagged; otherwise, send taged.
	 */
	br_vlan_get_tag(skb, &vid);
160
	if (test_bit(vid, pv->untagged_bitmap))
161 162 163 164 165 166 167 168 169 170 171 172 173 174
		skb = br_vlan_untag(skb);
	else {
		/* Egress policy says "send tagged".  If output device
		 * is the  bridge, we need to add the VLAN header
		 * ourselves since we'll be going through the RX path.
		 * Sending to ports puts the frame on the TX path and
		 * we let dev_hard_start_xmit() add the header.
		 */
		if (skb->protocol != htons(ETH_P_8021Q) &&
		    pv->port_idx == 0) {
			/* vlan_put_tag expects skb->data to point to
			 * mac header.
			 */
			skb_push(skb, ETH_HLEN);
175
			skb = __vlan_put_tag(skb, skb->vlan_proto, skb->vlan_tci);
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
			if (!skb)
				goto out;
			/* put skb->data back to where it was */
			skb_pull(skb, ETH_HLEN);
			skb->vlan_tci = 0;
		}
	}

out:
	return skb;
}

/* Called under RCU */
bool br_allowed_ingress(struct net_bridge *br, struct net_port_vlans *v,
			struct sk_buff *skb, u16 *vid)
{
192 193
	int err;

194 195 196 197 198 199 200 201 202 203 204 205
	/* If VLAN filtering is disabled on the bridge, all packets are
	 * permitted.
	 */
	if (!br->vlan_enabled)
		return true;

	/* If there are no vlan in the permitted list, all packets are
	 * rejected.
	 */
	if (!v)
		return false;

206 207
	err = br_vlan_get_tag(skb, vid);
	if (!*vid) {
208 209
		u16 pvid = br_get_pvid(v);

210 211 212
		/* Frame had a tag with VID 0 or did not have a tag.
		 * See if pvid is set on this port.  That tells us which
		 * vlan untagged or priority-tagged traffic belongs to.
213 214 215 216
		 */
		if (pvid == VLAN_N_VID)
			return false;

217 218
		/* PVID is set on this port.  Any untagged or priority-tagged
		 * ingress frame is considered to belong to this vlan.
219
		 */
220
		*vid = pvid;
221 222 223 224 225 226 227 228 229 230 231
		if (likely(err))
			/* Untagged Frame. */
			__vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), pvid);
		else
			/* Priority-tagged Frame.
			 * At this point, We know that skb->vlan_tci had
			 * VLAN_TAG_PRESENT bit and its VID field was 0x000.
			 * We update only VID field and preserve PCP field.
			 */
			skb->vlan_tci |= pvid;

232 233 234 235 236
		return true;
	}

	/* Frame had a valid vlan tag.  See if vlan is allowed */
	if (test_bit(*vid, v->vlan_bitmap))
237 238 239 240 241
		return true;

	return false;
}

242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
/* Called under RCU. */
bool br_allowed_egress(struct net_bridge *br,
		       const struct net_port_vlans *v,
		       const struct sk_buff *skb)
{
	u16 vid;

	if (!br->vlan_enabled)
		return true;

	if (!v)
		return false;

	br_vlan_get_tag(skb, &vid);
	if (test_bit(vid, v->vlan_bitmap))
		return true;

	return false;
}

262 263 264
/* Must be protected by RTNL.
 * Must be called with vid in range from 1 to 4094 inclusive.
 */
265
int br_vlan_add(struct net_bridge *br, u16 vid, u16 flags)
266 267 268 269 270 271 272 273
{
	struct net_port_vlans *pv = NULL;
	int err;

	ASSERT_RTNL();

	pv = rtnl_dereference(br->vlan_info);
	if (pv)
274
		return __vlan_add(pv, vid, flags);
275 276 277 278 279 280 281 282

	/* Create port vlan infomration
	 */
	pv = kzalloc(sizeof(*pv), GFP_KERNEL);
	if (!pv)
		return -ENOMEM;

	pv->parent.br = br;
283
	err = __vlan_add(pv, vid, flags);
284 285 286 287 288 289 290 291 292 293
	if (err)
		goto out;

	rcu_assign_pointer(br->vlan_info, pv);
	return 0;
out:
	kfree(pv);
	return err;
}

294 295 296
/* Must be protected by RTNL.
 * Must be called with vid in range from 1 to 4094 inclusive.
 */
297 298 299 300 301 302 303 304 305 306
int br_vlan_delete(struct net_bridge *br, u16 vid)
{
	struct net_port_vlans *pv;

	ASSERT_RTNL();

	pv = rtnl_dereference(br->vlan_info);
	if (!pv)
		return -EINVAL;

307 308 309
	spin_lock_bh(&br->hash_lock);
	fdb_delete_by_addr(br, br->dev->dev_addr, vid);
	spin_unlock_bh(&br->hash_lock);
310

311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
	__vlan_del(pv, vid);
	return 0;
}

void br_vlan_flush(struct net_bridge *br)
{
	struct net_port_vlans *pv;

	ASSERT_RTNL();
	pv = rtnl_dereference(br->vlan_info);
	if (!pv)
		return;

	__vlan_flush(pv);
}

int br_vlan_filter_toggle(struct net_bridge *br, unsigned long val)
{
	if (!rtnl_trylock())
		return restart_syscall();

	if (br->vlan_enabled == val)
		goto unlock;

	br->vlan_enabled = val;

unlock:
	rtnl_unlock();
	return 0;
}

342 343 344
/* Must be protected by RTNL.
 * Must be called with vid in range from 1 to 4094 inclusive.
 */
345
int nbp_vlan_add(struct net_bridge_port *port, u16 vid, u16 flags)
346 347 348 349 350 351 352 353
{
	struct net_port_vlans *pv = NULL;
	int err;

	ASSERT_RTNL();

	pv = rtnl_dereference(port->vlan_info);
	if (pv)
354
		return __vlan_add(pv, vid, flags);
355 356 357 358 359 360 361 362 363 364 365

	/* Create port vlan infomration
	 */
	pv = kzalloc(sizeof(*pv), GFP_KERNEL);
	if (!pv) {
		err = -ENOMEM;
		goto clean_up;
	}

	pv->port_idx = port->port_no;
	pv->parent.port = port;
366
	err = __vlan_add(pv, vid, flags);
367 368 369 370 371 372 373 374 375 376 377
	if (err)
		goto clean_up;

	rcu_assign_pointer(port->vlan_info, pv);
	return 0;

clean_up:
	kfree(pv);
	return err;
}

378 379 380
/* Must be protected by RTNL.
 * Must be called with vid in range from 1 to 4094 inclusive.
 */
381 382 383 384 385 386 387 388 389 390
int nbp_vlan_delete(struct net_bridge_port *port, u16 vid)
{
	struct net_port_vlans *pv;

	ASSERT_RTNL();

	pv = rtnl_dereference(port->vlan_info);
	if (!pv)
		return -EINVAL;

391 392 393
	spin_lock_bh(&port->br->hash_lock);
	fdb_delete_by_addr(port->br, port->dev->dev_addr, vid);
	spin_unlock_bh(&port->br->hash_lock);
394

395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
	return __vlan_del(pv, vid);
}

void nbp_vlan_flush(struct net_bridge_port *port)
{
	struct net_port_vlans *pv;

	ASSERT_RTNL();

	pv = rtnl_dereference(port->vlan_info);
	if (!pv)
		return;

	__vlan_flush(pv);
}
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428

bool nbp_vlan_find(struct net_bridge_port *port, u16 vid)
{
	struct net_port_vlans *pv;
	bool found = false;

	rcu_read_lock();
	pv = rcu_dereference(port->vlan_info);

	if (!pv)
		goto out;

	if (test_bit(vid, pv->vlan_bitmap))
		found = true;

out:
	rcu_read_unlock();
	return found;
}