1 #include <linux/skbuff.h>
2 #include <linux/netdevice.h>
3 #include <linux/if_vlan.h>
4 #include <linux/netpoll.h>
5 #include <linux/export.h>
8 bool vlan_do_receive(struct sk_buff
**skbp
)
10 struct sk_buff
*skb
= *skbp
;
11 __be16 vlan_proto
= skb
->vlan_proto
;
12 u16 vlan_id
= vlan_tx_tag_get_id(skb
);
13 struct net_device
*vlan_dev
;
14 struct vlan_pcpu_stats
*rx_stats
;
16 vlan_dev
= vlan_find_dev(skb
->dev
, vlan_proto
, vlan_id
);
20 skb
= *skbp
= skb_share_check(skb
, GFP_ATOMIC
);
25 if (skb
->pkt_type
== PACKET_OTHERHOST
) {
26 /* Our lower layer thinks this is not local, let's make sure.
27 * This allows the VLAN to have a different MAC than the
28 * underlying device, and still route correctly. */
29 if (ether_addr_equal(eth_hdr(skb
)->h_dest
, vlan_dev
->dev_addr
))
30 skb
->pkt_type
= PACKET_HOST
;
33 if (!(vlan_dev_priv(vlan_dev
)->flags
& VLAN_FLAG_REORDER_HDR
)) {
34 unsigned int offset
= skb
->data
- skb_mac_header(skb
);
37 * vlan_insert_tag expect skb->data pointing to mac header.
38 * So change skb->data before calling it and change back to
39 * original position later
41 skb_push(skb
, offset
);
42 skb
= *skbp
= vlan_insert_tag(skb
, skb
->vlan_proto
,
46 skb_pull(skb
, offset
+ VLAN_HLEN
);
47 skb_reset_mac_len(skb
);
50 skb
->priority
= vlan_get_ingress_priority(vlan_dev
, skb
->vlan_tci
);
53 rx_stats
= this_cpu_ptr(vlan_dev_priv(vlan_dev
)->vlan_pcpu_stats
);
55 u64_stats_update_begin(&rx_stats
->syncp
);
56 rx_stats
->rx_packets
++;
57 rx_stats
->rx_bytes
+= skb
->len
;
58 if (skb
->pkt_type
== PACKET_MULTICAST
)
59 rx_stats
->rx_multicast
++;
60 u64_stats_update_end(&rx_stats
->syncp
);
65 /* Must be invoked with rcu_read_lock. */
66 struct net_device
*__vlan_find_dev_deep(struct net_device
*dev
,
67 __be16 vlan_proto
, u16 vlan_id
)
69 struct vlan_info
*vlan_info
= rcu_dereference(dev
->vlan_info
);
72 return vlan_group_get_device(&vlan_info
->grp
,
76 * Lower devices of master uppers (bonding, team) do not have
77 * grp assigned to themselves. Grp is assigned to upper device
80 struct net_device
*upper_dev
;
82 upper_dev
= netdev_master_upper_dev_get_rcu(dev
);
84 return __vlan_find_dev_deep(upper_dev
,
90 EXPORT_SYMBOL(__vlan_find_dev_deep
);
92 struct net_device
*vlan_dev_real_dev(const struct net_device
*dev
)
94 return vlan_dev_priv(dev
)->real_dev
;
96 EXPORT_SYMBOL(vlan_dev_real_dev
);
98 u16
vlan_dev_vlan_id(const struct net_device
*dev
)
100 return vlan_dev_priv(dev
)->vlan_id
;
102 EXPORT_SYMBOL(vlan_dev_vlan_id
);
104 static struct sk_buff
*vlan_reorder_header(struct sk_buff
*skb
)
106 if (skb_cow(skb
, skb_headroom(skb
)) < 0)
108 memmove(skb
->data
- ETH_HLEN
, skb
->data
- VLAN_ETH_HLEN
, 2 * ETH_ALEN
);
109 skb
->mac_header
+= VLAN_HLEN
;
113 struct sk_buff
*vlan_untag(struct sk_buff
*skb
)
115 struct vlan_hdr
*vhdr
;
118 if (unlikely(vlan_tx_tag_present(skb
))) {
119 /* vlan_tci is already set-up so leave this for another time */
123 skb
= skb_share_check(skb
, GFP_ATOMIC
);
127 if (unlikely(!pskb_may_pull(skb
, VLAN_HLEN
)))
130 vhdr
= (struct vlan_hdr
*) skb
->data
;
131 vlan_tci
= ntohs(vhdr
->h_vlan_TCI
);
132 __vlan_hwaccel_put_tag(skb
, skb
->protocol
, vlan_tci
);
134 skb_pull_rcsum(skb
, VLAN_HLEN
);
135 vlan_set_encap_proto(skb
, vhdr
);
137 skb
= vlan_reorder_header(skb
);
141 skb_reset_network_header(skb
);
142 skb_reset_transport_header(skb
);
143 skb_reset_mac_len(skb
);
151 EXPORT_SYMBOL(vlan_untag
);
155 * vlan info and vid list
158 static void vlan_group_free(struct vlan_group
*grp
)
162 for (i
= 0; i
< VLAN_PROTO_NUM
; i
++)
163 for (j
= 0; j
< VLAN_GROUP_ARRAY_SPLIT_PARTS
; j
++)
164 kfree(grp
->vlan_devices_arrays
[i
][j
]);
167 static void vlan_info_free(struct vlan_info
*vlan_info
)
169 vlan_group_free(&vlan_info
->grp
);
173 static void vlan_info_rcu_free(struct rcu_head
*rcu
)
175 vlan_info_free(container_of(rcu
, struct vlan_info
, rcu
));
178 static struct vlan_info
*vlan_info_alloc(struct net_device
*dev
)
180 struct vlan_info
*vlan_info
;
182 vlan_info
= kzalloc(sizeof(struct vlan_info
), GFP_KERNEL
);
186 vlan_info
->real_dev
= dev
;
187 INIT_LIST_HEAD(&vlan_info
->vid_list
);
191 struct vlan_vid_info
{
192 struct list_head list
;
198 static bool vlan_hw_filter_capable(const struct net_device
*dev
,
199 const struct vlan_vid_info
*vid_info
)
201 if (vid_info
->proto
== htons(ETH_P_8021Q
) &&
202 dev
->features
& NETIF_F_HW_VLAN_CTAG_FILTER
)
204 if (vid_info
->proto
== htons(ETH_P_8021AD
) &&
205 dev
->features
& NETIF_F_HW_VLAN_STAG_FILTER
)
210 static struct vlan_vid_info
*vlan_vid_info_get(struct vlan_info
*vlan_info
,
211 __be16 proto
, u16 vid
)
213 struct vlan_vid_info
*vid_info
;
215 list_for_each_entry(vid_info
, &vlan_info
->vid_list
, list
) {
216 if (vid_info
->proto
== proto
&& vid_info
->vid
== vid
)
222 static struct vlan_vid_info
*vlan_vid_info_alloc(__be16 proto
, u16 vid
)
224 struct vlan_vid_info
*vid_info
;
226 vid_info
= kzalloc(sizeof(struct vlan_vid_info
), GFP_KERNEL
);
229 vid_info
->proto
= proto
;
235 static int __vlan_vid_add(struct vlan_info
*vlan_info
, __be16 proto
, u16 vid
,
236 struct vlan_vid_info
**pvid_info
)
238 struct net_device
*dev
= vlan_info
->real_dev
;
239 const struct net_device_ops
*ops
= dev
->netdev_ops
;
240 struct vlan_vid_info
*vid_info
;
243 vid_info
= vlan_vid_info_alloc(proto
, vid
);
247 if (vlan_hw_filter_capable(dev
, vid_info
)) {
248 err
= ops
->ndo_vlan_rx_add_vid(dev
, proto
, vid
);
254 list_add(&vid_info
->list
, &vlan_info
->vid_list
);
255 vlan_info
->nr_vids
++;
256 *pvid_info
= vid_info
;
260 int vlan_vid_add(struct net_device
*dev
, __be16 proto
, u16 vid
)
262 struct vlan_info
*vlan_info
;
263 struct vlan_vid_info
*vid_info
;
264 bool vlan_info_created
= false;
269 vlan_info
= rtnl_dereference(dev
->vlan_info
);
271 vlan_info
= vlan_info_alloc(dev
);
274 vlan_info_created
= true;
276 vid_info
= vlan_vid_info_get(vlan_info
, proto
, vid
);
278 err
= __vlan_vid_add(vlan_info
, proto
, vid
, &vid_info
);
280 goto out_free_vlan_info
;
282 vid_info
->refcount
++;
284 if (vlan_info_created
)
285 rcu_assign_pointer(dev
->vlan_info
, vlan_info
);
290 if (vlan_info_created
)
294 EXPORT_SYMBOL(vlan_vid_add
);
296 static void __vlan_vid_del(struct vlan_info
*vlan_info
,
297 struct vlan_vid_info
*vid_info
)
299 struct net_device
*dev
= vlan_info
->real_dev
;
300 const struct net_device_ops
*ops
= dev
->netdev_ops
;
301 __be16 proto
= vid_info
->proto
;
302 u16 vid
= vid_info
->vid
;
305 if (vlan_hw_filter_capable(dev
, vid_info
)) {
306 err
= ops
->ndo_vlan_rx_kill_vid(dev
, proto
, vid
);
308 pr_warn("failed to kill vid %04x/%d for device %s\n",
309 proto
, vid
, dev
->name
);
312 list_del(&vid_info
->list
);
314 vlan_info
->nr_vids
--;
317 void vlan_vid_del(struct net_device
*dev
, __be16 proto
, u16 vid
)
319 struct vlan_info
*vlan_info
;
320 struct vlan_vid_info
*vid_info
;
324 vlan_info
= rtnl_dereference(dev
->vlan_info
);
328 vid_info
= vlan_vid_info_get(vlan_info
, proto
, vid
);
331 vid_info
->refcount
--;
332 if (vid_info
->refcount
== 0) {
333 __vlan_vid_del(vlan_info
, vid_info
);
334 if (vlan_info
->nr_vids
== 0) {
335 RCU_INIT_POINTER(dev
->vlan_info
, NULL
);
336 call_rcu(&vlan_info
->rcu
, vlan_info_rcu_free
);
340 EXPORT_SYMBOL(vlan_vid_del
);
342 int vlan_vids_add_by_dev(struct net_device
*dev
,
343 const struct net_device
*by_dev
)
345 struct vlan_vid_info
*vid_info
;
346 struct vlan_info
*vlan_info
;
351 vlan_info
= rtnl_dereference(by_dev
->vlan_info
);
355 list_for_each_entry(vid_info
, &vlan_info
->vid_list
, list
) {
356 err
= vlan_vid_add(dev
, vid_info
->proto
, vid_info
->vid
);
363 list_for_each_entry_continue_reverse(vid_info
,
364 &vlan_info
->vid_list
,
366 vlan_vid_del(dev
, vid_info
->proto
, vid_info
->vid
);
371 EXPORT_SYMBOL(vlan_vids_add_by_dev
);
373 void vlan_vids_del_by_dev(struct net_device
*dev
,
374 const struct net_device
*by_dev
)
376 struct vlan_vid_info
*vid_info
;
377 struct vlan_info
*vlan_info
;
381 vlan_info
= rtnl_dereference(by_dev
->vlan_info
);
385 list_for_each_entry(vid_info
, &vlan_info
->vid_list
, list
)
386 vlan_vid_del(dev
, vid_info
->proto
, vid_info
->vid
);
388 EXPORT_SYMBOL(vlan_vids_del_by_dev
);
390 bool vlan_uses_dev(const struct net_device
*dev
)
392 struct vlan_info
*vlan_info
;
396 vlan_info
= rtnl_dereference(dev
->vlan_info
);
399 return vlan_info
->grp
.nr_vlan_devs
? true : false;
401 EXPORT_SYMBOL(vlan_uses_dev
);