X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=datapath%2Fvlan.h;h=aee5551441f147f028be60e6bbff62a40b70155d;hb=fd76a6f94338b668175336434b156827458b5e7d;hp=02a62909f5b3a08726664dd2a53d13a6b3f3536f;hpb=6ce39213456b27257acbaf146398dce26d1466b9;p=sliver-openvswitch.git diff --git a/datapath/vlan.h b/datapath/vlan.h index 02a62909f..aee555144 100644 --- a/datapath/vlan.h +++ b/datapath/vlan.h @@ -1,9 +1,19 @@ /* - * Copyright (c) 2011 Nicira Networks. - * Distributed under the terms of the GNU GPL version 2. + * Copyright (c) 2007-2011 Nicira, Inc. * - * Significant portions of this file may be copied from parts of the Linux - * kernel, by Linus Torvalds and others. + * This program is free software; you can redistribute it and/or + * modify it under the terms of version 2 of the GNU General Public + * License as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + * 02110-1301, USA */ #ifndef VLAN_H @@ -13,6 +23,29 @@ #include #include +/** + * DOC: VLAN tag manipulation. + * + * &struct sk_buff handling of VLAN tags has evolved over time: + * + * In 2.6.26 and earlier, VLAN tags did not have any generic representation in + * an skb, other than as a raw 802.1Q header inside the packet data. + * + * In 2.6.27 &struct sk_buff added a @vlan_tci member. Between 2.6.27 and + * 2.6.32, its value was the raw contents of the 802.1Q TCI field, or zero if + * no 802.1Q header was present. This worked OK except for the corner case of + * an 802.1Q header with an all-0-bits TCI, which could not be represented. + * + * In 2.6.33, @vlan_tci semantics changed. Now, if an 802.1Q header is + * present, then the VLAN_TAG_PRESENT bit is always set. This fixes the + * all-0-bits TCI corner case. + * + * For compatibility we emulate the 2.6.33+ behavior on earlier kernel + * versions. The client must not access @vlan_tci directly. Instead, use + * vlan_get_tci() to read it or vlan_set_tci() to write it, with semantics + * equivalent to those on 2.6.33+. + */ + #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,27) #define NEED_VLAN_FIELD #endif @@ -22,11 +55,18 @@ static inline void vlan_copy_skb_tci(struct sk_buff *skb) { } static inline u16 vlan_get_tci(struct sk_buff *skb) { +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33) + if (skb->vlan_tci) + return skb->vlan_tci | VLAN_TAG_PRESENT; +#endif return skb->vlan_tci; } static inline void vlan_set_tci(struct sk_buff *skb, u16 vlan_tci) { +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33) + vlan_tci &= ~VLAN_TAG_PRESENT; +#endif skb->vlan_tci = vlan_tci; } #else @@ -49,10 +89,15 @@ static inline int vlan_deaccel_tag(struct sk_buff *skb) if (!vlan_tx_tag_present(skb)) return 0; - skb = __vlan_put_tag(skb, vlan_tx_tag_get(skb)); + skb = __vlan_put_tag(skb, skb->vlan_proto, vlan_tx_tag_get(skb)); if (unlikely(!skb)) return -ENOMEM; + if (get_ip_summed(skb) == OVS_CSUM_COMPLETE) + skb->csum = csum_add(skb->csum, + csum_partial(skb->data + (2 * ETH_ALEN), + VLAN_HLEN, 0)); + vlan_set_tci(skb, 0); return 0; }