fm10k: Check tunnel header length in encap offload
authorJoe Stringer <joestringer@nicira.com>
Fri, 14 Nov 2014 07:47:40 +0000 (07:47 +0000)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Fri, 23 Jan 2015 02:10:21 +0000 (18:10 -0800)
fm10k supports up to 184 bytes of inner+outer headers. Add an initial
check to fail encap offload if these are too large.

Signed-off-by: Joe Stringer <joestringer@nicira.com>
Tested-by: Krishneil Singh <Krishneil.k.singh@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/fm10k/fm10k_main.c

index c7a19a5e0ec99974497abd4e95551b7e359f30ea..84ab9eea2768406e2b3f9a22f946e7417160f795 100644 (file)
@@ -727,6 +727,12 @@ static __be16 fm10k_tx_encap_offload(struct sk_buff *skb)
        struct ethhdr *eth_hdr;
        u8 l4_hdr = 0;
 
+/* fm10k supports 184 octets of outer+inner headers. Minus 20 for inner L4. */
+#define FM10K_MAX_ENCAP_TRANSPORT_OFFSET       164
+       if (skb_inner_transport_header(skb) - skb_mac_header(skb) >
+           FM10K_MAX_ENCAP_TRANSPORT_OFFSET)
+               return 0;
+
        switch (vlan_get_protocol(skb)) {
        case htons(ETH_P_IP):
                l4_hdr = ip_hdr(skb)->protocol;
This page took 0.025723 seconds and 5 git commands to generate.