Patrick McHardy | 7750f40 | 2008-07-08 03:23:36 -0700 | [diff] [blame] | 1 | #include <linux/skbuff.h> |
| 2 | #include <linux/netdevice.h> |
| 3 | #include <linux/if_vlan.h> |
Herbert Xu | 4ead443 | 2009-03-01 00:11:52 -0800 | [diff] [blame] | 4 | #include <linux/netpoll.h> |
Patrick McHardy | 7750f40 | 2008-07-08 03:23:36 -0700 | [diff] [blame] | 5 | #include "vlan.h" |
| 6 | |
Jiri Pirko | bcc6d47 | 2011-04-07 19:48:33 +0000 | [diff] [blame] | 7 | bool vlan_do_receive(struct sk_buff **skbp) |
Patrick McHardy | 7750f40 | 2008-07-08 03:23:36 -0700 | [diff] [blame] | 8 | { |
Jesse Gross | 3701e51 | 2010-10-20 13:56:06 +0000 | [diff] [blame] | 9 | struct sk_buff *skb = *skbp; |
| 10 | u16 vlan_id = skb->vlan_tci & VLAN_VID_MASK; |
Pedro Garcia | ad1afb0 | 2010-07-18 15:38:44 -0700 | [diff] [blame] | 11 | struct net_device *vlan_dev; |
Eric Dumazet | 4af429d | 2010-11-10 23:42:00 +0000 | [diff] [blame] | 12 | struct vlan_pcpu_stats *rx_stats; |
Pedro Garcia | ad1afb0 | 2010-07-18 15:38:44 -0700 | [diff] [blame] | 13 | |
Jesse Gross | 3701e51 | 2010-10-20 13:56:06 +0000 | [diff] [blame] | 14 | vlan_dev = vlan_find_dev(skb->dev, vlan_id); |
| 15 | if (!vlan_dev) { |
| 16 | if (vlan_id) |
| 17 | skb->pkt_type = PACKET_OTHERHOST; |
| 18 | return false; |
Eric Dumazet | 173e79f | 2010-09-30 02:16:44 +0000 | [diff] [blame] | 19 | } |
Patrick McHardy | 9b22ea5 | 2008-11-04 14:49:57 -0800 | [diff] [blame] | 20 | |
Jesse Gross | 3701e51 | 2010-10-20 13:56:06 +0000 | [diff] [blame] | 21 | skb = *skbp = skb_share_check(skb, GFP_ATOMIC); |
| 22 | if (unlikely(!skb)) |
| 23 | return false; |
Herbert Xu | e1c096e | 2009-01-06 10:50:09 -0800 | [diff] [blame] | 24 | |
Jesse Gross | 3701e51 | 2010-10-20 13:56:06 +0000 | [diff] [blame] | 25 | skb->dev = vlan_dev; |
Jiri Pirko | 0b5c9db | 2011-06-10 06:56:58 +0000 | [diff] [blame] | 26 | if (skb->pkt_type == PACKET_OTHERHOST) { |
| 27 | /* Our lower layer thinks this is not local, let's make sure. |
| 28 | * This allows the VLAN to have a different MAC than the |
| 29 | * underlying device, and still route correctly. */ |
| 30 | if (!compare_ether_addr(eth_hdr(skb)->h_dest, |
| 31 | vlan_dev->dev_addr)) |
| 32 | skb->pkt_type = PACKET_HOST; |
| 33 | } |
| 34 | |
| 35 | if (!(vlan_dev_info(vlan_dev)->flags & VLAN_FLAG_REORDER_HDR)) { |
| 36 | unsigned int offset = skb->data - skb_mac_header(skb); |
| 37 | |
| 38 | /* |
| 39 | * vlan_insert_tag expect skb->data pointing to mac header. |
| 40 | * So change skb->data before calling it and change back to |
| 41 | * original position later |
| 42 | */ |
| 43 | skb_push(skb, offset); |
| 44 | skb = *skbp = vlan_insert_tag(skb, skb->vlan_tci); |
| 45 | if (!skb) |
| 46 | return false; |
| 47 | skb_pull(skb, offset + VLAN_HLEN); |
| 48 | skb_reset_mac_len(skb); |
| 49 | } |
| 50 | |
Jesse Gross | 3701e51 | 2010-10-20 13:56:06 +0000 | [diff] [blame] | 51 | skb->priority = vlan_get_ingress_priority(vlan_dev, skb->vlan_tci); |
Patrick McHardy | bc1d041 | 2008-07-14 22:49:30 -0700 | [diff] [blame] | 52 | skb->vlan_tci = 0; |
Patrick McHardy | 7750f40 | 2008-07-08 03:23:36 -0700 | [diff] [blame] | 53 | |
Eric Dumazet | 4af429d | 2010-11-10 23:42:00 +0000 | [diff] [blame] | 54 | rx_stats = this_cpu_ptr(vlan_dev_info(vlan_dev)->vlan_pcpu_stats); |
Eric Dumazet | 9793241 | 2009-11-17 04:53:09 +0000 | [diff] [blame] | 55 | |
Eric Dumazet | 9618e2f | 2010-06-24 00:55:06 +0000 | [diff] [blame] | 56 | u64_stats_update_begin(&rx_stats->syncp); |
Eric Dumazet | 9793241 | 2009-11-17 04:53:09 +0000 | [diff] [blame] | 57 | rx_stats->rx_packets++; |
| 58 | rx_stats->rx_bytes += skb->len; |
Jiri Pirko | 0b5c9db | 2011-06-10 06:56:58 +0000 | [diff] [blame] | 59 | if (skb->pkt_type == PACKET_MULTICAST) |
Eric Dumazet | 9618e2f | 2010-06-24 00:55:06 +0000 | [diff] [blame] | 60 | rx_stats->rx_multicast++; |
Eric Dumazet | 9618e2f | 2010-06-24 00:55:06 +0000 | [diff] [blame] | 61 | u64_stats_update_end(&rx_stats->syncp); |
Jesse Gross | 3701e51 | 2010-10-20 13:56:06 +0000 | [diff] [blame] | 62 | |
| 63 | return true; |
Patrick McHardy | 7750f40 | 2008-07-08 03:23:36 -0700 | [diff] [blame] | 64 | } |
Patrick McHardy | 22d1ba7 | 2008-07-08 03:23:57 -0700 | [diff] [blame] | 65 | |
Jiri Pirko | cec9c13 | 2011-07-20 04:54:05 +0000 | [diff] [blame] | 66 | /* Must be invoked with rcu_read_lock or with RTNL. */ |
| 67 | struct net_device *__vlan_find_dev_deep(struct net_device *real_dev, |
| 68 | u16 vlan_id) |
| 69 | { |
| 70 | struct vlan_group *grp = rcu_dereference_rtnl(real_dev->vlgrp); |
| 71 | |
| 72 | if (grp) { |
| 73 | return vlan_group_get_device(grp, vlan_id); |
| 74 | } else { |
| 75 | /* |
| 76 | * Bonding slaves do not have grp assigned to themselves. |
| 77 | * Grp is assigned to bonding master instead. |
| 78 | */ |
| 79 | if (netif_is_bond_slave(real_dev)) |
| 80 | return __vlan_find_dev_deep(real_dev->master, vlan_id); |
| 81 | } |
| 82 | |
| 83 | return NULL; |
| 84 | } |
| 85 | EXPORT_SYMBOL(__vlan_find_dev_deep); |
| 86 | |
Patrick McHardy | 22d1ba7 | 2008-07-08 03:23:57 -0700 | [diff] [blame] | 87 | struct net_device *vlan_dev_real_dev(const struct net_device *dev) |
| 88 | { |
| 89 | return vlan_dev_info(dev)->real_dev; |
| 90 | } |
Ben Greear | 116cb42 | 2009-01-26 12:37:53 -0800 | [diff] [blame] | 91 | EXPORT_SYMBOL(vlan_dev_real_dev); |
Patrick McHardy | 22d1ba7 | 2008-07-08 03:23:57 -0700 | [diff] [blame] | 92 | |
| 93 | u16 vlan_dev_vlan_id(const struct net_device *dev) |
| 94 | { |
| 95 | return vlan_dev_info(dev)->vlan_id; |
| 96 | } |
Ben Greear | 116cb42 | 2009-01-26 12:37:53 -0800 | [diff] [blame] | 97 | EXPORT_SYMBOL(vlan_dev_vlan_id); |
Herbert Xu | e1c096e | 2009-01-06 10:50:09 -0800 | [diff] [blame] | 98 | |
Jiri Pirko | 0b5c9db | 2011-06-10 06:56:58 +0000 | [diff] [blame] | 99 | static struct sk_buff *vlan_reorder_header(struct sk_buff *skb) |
Jiri Pirko | bcc6d47 | 2011-04-07 19:48:33 +0000 | [diff] [blame] | 100 | { |
Jiri Pirko | 0b5c9db | 2011-06-10 06:56:58 +0000 | [diff] [blame] | 101 | if (skb_cow(skb, skb_headroom(skb)) < 0) |
| 102 | return NULL; |
| 103 | memmove(skb->data - ETH_HLEN, skb->data - VLAN_ETH_HLEN, 2 * ETH_ALEN); |
| 104 | skb->mac_header += VLAN_HLEN; |
| 105 | skb_reset_mac_len(skb); |
Jiri Pirko | bcc6d47 | 2011-04-07 19:48:33 +0000 | [diff] [blame] | 106 | return skb; |
| 107 | } |
| 108 | |
| 109 | static void vlan_set_encap_proto(struct sk_buff *skb, struct vlan_hdr *vhdr) |
| 110 | { |
| 111 | __be16 proto; |
| 112 | unsigned char *rawp; |
| 113 | |
| 114 | /* |
| 115 | * Was a VLAN packet, grab the encapsulated protocol, which the layer |
| 116 | * three protocols care about. |
| 117 | */ |
| 118 | |
| 119 | proto = vhdr->h_vlan_encapsulated_proto; |
| 120 | if (ntohs(proto) >= 1536) { |
| 121 | skb->protocol = proto; |
| 122 | return; |
| 123 | } |
| 124 | |
| 125 | rawp = skb->data; |
| 126 | if (*(unsigned short *) rawp == 0xFFFF) |
| 127 | /* |
| 128 | * This is a magic hack to spot IPX packets. Older Novell |
| 129 | * breaks the protocol design and runs IPX over 802.3 without |
| 130 | * an 802.2 LLC layer. We look for FFFF which isn't a used |
| 131 | * 802.2 SSAP/DSAP. This won't work for fault tolerant netware |
| 132 | * but does for the rest. |
| 133 | */ |
| 134 | skb->protocol = htons(ETH_P_802_3); |
| 135 | else |
| 136 | /* |
| 137 | * Real 802.2 LLC |
| 138 | */ |
| 139 | skb->protocol = htons(ETH_P_802_2); |
| 140 | } |
| 141 | |
| 142 | struct sk_buff *vlan_untag(struct sk_buff *skb) |
| 143 | { |
| 144 | struct vlan_hdr *vhdr; |
| 145 | u16 vlan_tci; |
| 146 | |
| 147 | if (unlikely(vlan_tx_tag_present(skb))) { |
| 148 | /* vlan_tci is already set-up so leave this for another time */ |
| 149 | return skb; |
| 150 | } |
| 151 | |
| 152 | skb = skb_share_check(skb, GFP_ATOMIC); |
| 153 | if (unlikely(!skb)) |
| 154 | goto err_free; |
| 155 | |
| 156 | if (unlikely(!pskb_may_pull(skb, VLAN_HLEN))) |
| 157 | goto err_free; |
| 158 | |
| 159 | vhdr = (struct vlan_hdr *) skb->data; |
| 160 | vlan_tci = ntohs(vhdr->h_vlan_TCI); |
| 161 | __vlan_hwaccel_put_tag(skb, vlan_tci); |
| 162 | |
| 163 | skb_pull_rcsum(skb, VLAN_HLEN); |
| 164 | vlan_set_encap_proto(skb, vhdr); |
| 165 | |
Jiri Pirko | 0b5c9db | 2011-06-10 06:56:58 +0000 | [diff] [blame] | 166 | skb = vlan_reorder_header(skb); |
Jiri Pirko | bcc6d47 | 2011-04-07 19:48:33 +0000 | [diff] [blame] | 167 | if (unlikely(!skb)) |
| 168 | goto err_free; |
| 169 | |
| 170 | return skb; |
| 171 | |
| 172 | err_free: |
| 173 | kfree_skb(skb); |
| 174 | return NULL; |
| 175 | } |