]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ixgbe: Make ATR recognize IPv6 extended headers
authorMark Rustad <mark.d.rustad@intel.com>
Wed, 9 Dec 2015 22:55:37 +0000 (14:55 -0800)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Fri, 8 Jan 2016 12:18:43 +0000 (04:18 -0800)
Right now ATR is not handling IPv6 extended headers, so ATR is not
being performed on such packets. Fix that by skipping extended
headers when they are present. This also fixes a problem where
the ATR code was not checking that the inner protocol was actually
TCP before setting up the signature rules. Since the protocol check
is intimately involved with the extended header processing as well,
this all gets fixed together.

Signed-off-by: Mark Rustad <mark.d.rustad@intel.com>
Tested-by: Phil Schmitt <phillip.j.schmitt@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/ixgbe/ixgbe_main.c

index 328d7a828e0b5327168bd99b8c111bd0769cf034..c4003a88bbf6ea1157261dd9378af6a45782c0c7 100644 (file)
@@ -7573,7 +7573,9 @@ static void ixgbe_atr(struct ixgbe_ring *ring,
        /* snag network header to get L4 type and address */
        skb = first->skb;
        hdr.network = skb_network_header(skb);
-       if (skb->encapsulation) {
+       if (!skb->encapsulation) {
+               th = tcp_hdr(skb);
+       } else {
 #ifdef CONFIG_IXGBE_VXLAN
                struct ixgbe_adapter *adapter = q_vector->adapter;
 
@@ -7592,14 +7594,34 @@ static void ixgbe_atr(struct ixgbe_ring *ring,
 #else
                return;
 #endif /* CONFIG_IXGBE_VXLAN */
-       } else {
-               /* Currently only IPv4/IPv6 with TCP is supported */
-               if ((first->protocol != htons(ETH_P_IPV6) ||
-                    hdr.ipv6->nexthdr != IPPROTO_TCP) &&
-                   (first->protocol != htons(ETH_P_IP) ||
-                    hdr.ipv4->protocol != IPPROTO_TCP))
+       }
+
+       /* Currently only IPv4/IPv6 with TCP is supported */
+       switch (hdr.ipv4->version) {
+       case IPVERSION:
+               if (hdr.ipv4->protocol != IPPROTO_TCP)
                        return;
-               th = tcp_hdr(skb);
+               break;
+       case 6:
+               if (likely((unsigned char *)th - hdr.network ==
+                          sizeof(struct ipv6hdr))) {
+                       if (hdr.ipv6->nexthdr != IPPROTO_TCP)
+                               return;
+               } else {
+                       __be16 frag_off;
+                       u8 l4_hdr;
+
+                       ipv6_skip_exthdr(skb, hdr.network - skb->data +
+                                             sizeof(struct ipv6hdr),
+                                        &l4_hdr, &frag_off);
+                       if (unlikely(frag_off))
+                               return;
+                       if (l4_hdr != IPPROTO_TCP)
+                               return;
+               }
+               break;
+       default:
+               return;
        }
 
        /* skip this packet since it is invalid or the socket is closing */
@@ -7634,10 +7656,12 @@ static void ixgbe_atr(struct ixgbe_ring *ring,
                common.port.src ^= th->dest ^ first->protocol;
        common.port.dst ^= th->source;
 
-       if (first->protocol == htons(ETH_P_IP)) {
+       switch (hdr.ipv4->version) {
+       case IPVERSION:
                input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
                common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr;
-       } else {
+               break;
+       case 6:
                input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6;
                common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^
                             hdr.ipv6->saddr.s6_addr32[1] ^
@@ -7647,6 +7671,9 @@ static void ixgbe_atr(struct ixgbe_ring *ring,
                             hdr.ipv6->daddr.s6_addr32[1] ^
                             hdr.ipv6->daddr.s6_addr32[2] ^
                             hdr.ipv6->daddr.s6_addr32[3];
+               break;
+       default:
+               break;
        }
 
 #ifdef CONFIG_IXGBE_VXLAN