blob: f5ffc02729d60396aac6abbdcbfc49bf1ebf20e1 [file] [log] [blame]
Patrick McHardy7750f402008-07-08 03:23:36 -07001#include <linux/skbuff.h>
2#include <linux/netdevice.h>
3#include <linux/if_vlan.h>
Herbert Xu4ead4432009-03-01 00:11:52 -08004#include <linux/netpoll.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -04005#include <linux/export.h>
Patrick McHardy7750f402008-07-08 03:23:36 -07006#include "vlan.h"
7
Eric Dumazet6a32e4f2011-10-29 06:13:39 +00008bool vlan_do_receive(struct sk_buff **skbp, bool last_handler)
Patrick McHardy7750f402008-07-08 03:23:36 -07009{
Jesse Gross3701e512010-10-20 13:56:06 +000010 struct sk_buff *skb = *skbp;
11 u16 vlan_id = skb->vlan_tci & VLAN_VID_MASK;
Pedro Garciaad1afb02010-07-18 15:38:44 -070012 struct net_device *vlan_dev;
Eric Dumazet4af429d2010-11-10 23:42:00 +000013 struct vlan_pcpu_stats *rx_stats;
Pedro Garciaad1afb02010-07-18 15:38:44 -070014
Jesse Gross3701e512010-10-20 13:56:06 +000015 vlan_dev = vlan_find_dev(skb->dev, vlan_id);
16 if (!vlan_dev) {
Eric Dumazet6a32e4f2011-10-29 06:13:39 +000017 /* Only the last call to vlan_do_receive() should change
18 * pkt_type to PACKET_OTHERHOST
19 */
20 if (vlan_id && last_handler)
Jesse Gross3701e512010-10-20 13:56:06 +000021 skb->pkt_type = PACKET_OTHERHOST;
22 return false;
Eric Dumazet173e79f2010-09-30 02:16:44 +000023 }
Patrick McHardy9b22ea52008-11-04 14:49:57 -080024
Jesse Gross3701e512010-10-20 13:56:06 +000025 skb = *skbp = skb_share_check(skb, GFP_ATOMIC);
26 if (unlikely(!skb))
27 return false;
Herbert Xue1c096e2009-01-06 10:50:09 -080028
Jesse Gross3701e512010-10-20 13:56:06 +000029 skb->dev = vlan_dev;
Jiri Pirko0b5c9db2011-06-10 06:56:58 +000030 if (skb->pkt_type == PACKET_OTHERHOST) {
31 /* Our lower layer thinks this is not local, let's make sure.
32 * This allows the VLAN to have a different MAC than the
33 * underlying device, and still route correctly. */
34 if (!compare_ether_addr(eth_hdr(skb)->h_dest,
35 vlan_dev->dev_addr))
36 skb->pkt_type = PACKET_HOST;
37 }
38
39 if (!(vlan_dev_info(vlan_dev)->flags & VLAN_FLAG_REORDER_HDR)) {
40 unsigned int offset = skb->data - skb_mac_header(skb);
41
42 /*
43 * vlan_insert_tag expect skb->data pointing to mac header.
44 * So change skb->data before calling it and change back to
45 * original position later
46 */
47 skb_push(skb, offset);
48 skb = *skbp = vlan_insert_tag(skb, skb->vlan_tci);
49 if (!skb)
50 return false;
51 skb_pull(skb, offset + VLAN_HLEN);
52 skb_reset_mac_len(skb);
53 }
54
Jesse Gross3701e512010-10-20 13:56:06 +000055 skb->priority = vlan_get_ingress_priority(vlan_dev, skb->vlan_tci);
Patrick McHardybc1d0412008-07-14 22:49:30 -070056 skb->vlan_tci = 0;
Patrick McHardy7750f402008-07-08 03:23:36 -070057
Eric Dumazet4af429d2010-11-10 23:42:00 +000058 rx_stats = this_cpu_ptr(vlan_dev_info(vlan_dev)->vlan_pcpu_stats);
Eric Dumazet97932412009-11-17 04:53:09 +000059
Eric Dumazet9618e2f2010-06-24 00:55:06 +000060 u64_stats_update_begin(&rx_stats->syncp);
Eric Dumazet97932412009-11-17 04:53:09 +000061 rx_stats->rx_packets++;
62 rx_stats->rx_bytes += skb->len;
Jiri Pirko0b5c9db2011-06-10 06:56:58 +000063 if (skb->pkt_type == PACKET_MULTICAST)
Eric Dumazet9618e2f2010-06-24 00:55:06 +000064 rx_stats->rx_multicast++;
Eric Dumazet9618e2f2010-06-24 00:55:06 +000065 u64_stats_update_end(&rx_stats->syncp);
Jesse Gross3701e512010-10-20 13:56:06 +000066
67 return true;
Patrick McHardy7750f402008-07-08 03:23:36 -070068}
Patrick McHardy22d1ba72008-07-08 03:23:57 -070069
Jiri Pirkocec9c132011-07-20 04:54:05 +000070/* Must be invoked with rcu_read_lock or with RTNL. */
71struct net_device *__vlan_find_dev_deep(struct net_device *real_dev,
72 u16 vlan_id)
73{
74 struct vlan_group *grp = rcu_dereference_rtnl(real_dev->vlgrp);
75
76 if (grp) {
77 return vlan_group_get_device(grp, vlan_id);
78 } else {
79 /*
80 * Bonding slaves do not have grp assigned to themselves.
81 * Grp is assigned to bonding master instead.
82 */
83 if (netif_is_bond_slave(real_dev))
84 return __vlan_find_dev_deep(real_dev->master, vlan_id);
85 }
86
87 return NULL;
88}
89EXPORT_SYMBOL(__vlan_find_dev_deep);
90
Patrick McHardy22d1ba72008-07-08 03:23:57 -070091struct net_device *vlan_dev_real_dev(const struct net_device *dev)
92{
93 return vlan_dev_info(dev)->real_dev;
94}
Ben Greear116cb422009-01-26 12:37:53 -080095EXPORT_SYMBOL(vlan_dev_real_dev);
Patrick McHardy22d1ba72008-07-08 03:23:57 -070096
97u16 vlan_dev_vlan_id(const struct net_device *dev)
98{
99 return vlan_dev_info(dev)->vlan_id;
100}
Ben Greear116cb422009-01-26 12:37:53 -0800101EXPORT_SYMBOL(vlan_dev_vlan_id);
Herbert Xue1c096e2009-01-06 10:50:09 -0800102
Jiri Pirko0b5c9db2011-06-10 06:56:58 +0000103static struct sk_buff *vlan_reorder_header(struct sk_buff *skb)
Jiri Pirkobcc6d472011-04-07 19:48:33 +0000104{
Jiri Pirko0b5c9db2011-06-10 06:56:58 +0000105 if (skb_cow(skb, skb_headroom(skb)) < 0)
106 return NULL;
107 memmove(skb->data - ETH_HLEN, skb->data - VLAN_ETH_HLEN, 2 * ETH_ALEN);
108 skb->mac_header += VLAN_HLEN;
109 skb_reset_mac_len(skb);
Jiri Pirkobcc6d472011-04-07 19:48:33 +0000110 return skb;
111}
112
113static void vlan_set_encap_proto(struct sk_buff *skb, struct vlan_hdr *vhdr)
114{
115 __be16 proto;
116 unsigned char *rawp;
117
118 /*
119 * Was a VLAN packet, grab the encapsulated protocol, which the layer
120 * three protocols care about.
121 */
122
123 proto = vhdr->h_vlan_encapsulated_proto;
124 if (ntohs(proto) >= 1536) {
125 skb->protocol = proto;
126 return;
127 }
128
129 rawp = skb->data;
130 if (*(unsigned short *) rawp == 0xFFFF)
131 /*
132 * This is a magic hack to spot IPX packets. Older Novell
133 * breaks the protocol design and runs IPX over 802.3 without
134 * an 802.2 LLC layer. We look for FFFF which isn't a used
135 * 802.2 SSAP/DSAP. This won't work for fault tolerant netware
136 * but does for the rest.
137 */
138 skb->protocol = htons(ETH_P_802_3);
139 else
140 /*
141 * Real 802.2 LLC
142 */
143 skb->protocol = htons(ETH_P_802_2);
144}
145
146struct sk_buff *vlan_untag(struct sk_buff *skb)
147{
148 struct vlan_hdr *vhdr;
149 u16 vlan_tci;
150
151 if (unlikely(vlan_tx_tag_present(skb))) {
152 /* vlan_tci is already set-up so leave this for another time */
153 return skb;
154 }
155
156 skb = skb_share_check(skb, GFP_ATOMIC);
157 if (unlikely(!skb))
158 goto err_free;
159
160 if (unlikely(!pskb_may_pull(skb, VLAN_HLEN)))
161 goto err_free;
162
163 vhdr = (struct vlan_hdr *) skb->data;
164 vlan_tci = ntohs(vhdr->h_vlan_TCI);
165 __vlan_hwaccel_put_tag(skb, vlan_tci);
166
167 skb_pull_rcsum(skb, VLAN_HLEN);
168 vlan_set_encap_proto(skb, vhdr);
169
Jiri Pirko0b5c9db2011-06-10 06:56:58 +0000170 skb = vlan_reorder_header(skb);
Jiri Pirkobcc6d472011-04-07 19:48:33 +0000171 if (unlikely(!skb))
172 goto err_free;
173
Jiri Pirkoc5114cd2011-08-18 21:29:27 -0700174 skb_reset_network_header(skb);
175 skb_reset_transport_header(skb);
Jiri Pirkobcc6d472011-04-07 19:48:33 +0000176 return skb;
177
178err_free:
179 kfree_skb(skb);
180 return NULL;
181}