LCOV - code coverage report
Current view: top level - net/ipv6 - ip6_offload.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 0 92 0.0 %
Date: 2014-04-07 Functions: 0 6 0.0 %
Branches: 0 80 0.0 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  *      IPV6 GSO/GRO offload support
       3                 :            :  *      Linux INET6 implementation
       4                 :            :  *
       5                 :            :  *      This program is free software; you can redistribute it and/or
       6                 :            :  *      modify it under the terms of the GNU General Public License
       7                 :            :  *      as published by the Free Software Foundation; either version
       8                 :            :  *      2 of the License, or (at your option) any later version.
       9                 :            :  */
      10                 :            : 
      11                 :            : #include <linux/kernel.h>
      12                 :            : #include <linux/socket.h>
      13                 :            : #include <linux/netdevice.h>
      14                 :            : #include <linux/skbuff.h>
      15                 :            : #include <linux/printk.h>
      16                 :            : 
      17                 :            : #include <net/protocol.h>
      18                 :            : #include <net/ipv6.h>
      19                 :            : 
      20                 :            : #include "ip6_offload.h"
      21                 :            : 
      22                 :          0 : static int ipv6_gso_pull_exthdrs(struct sk_buff *skb, int proto)
      23                 :            : {
      24                 :            :         const struct net_offload *ops = NULL;
      25                 :            : 
      26                 :            :         for (;;) {
      27                 :            :                 struct ipv6_opt_hdr *opth;
      28                 :            :                 int len;
      29                 :            : 
      30         [ #  # ]:          0 :                 if (proto != NEXTHDR_HOP) {
      31                 :          0 :                         ops = rcu_dereference(inet6_offloads[proto]);
      32                 :            : 
      33         [ #  # ]:          0 :                         if (unlikely(!ops))
      34                 :            :                                 break;
      35                 :            : 
      36         [ #  # ]:          0 :                         if (!(ops->flags & INET6_PROTO_GSO_EXTHDR))
      37                 :            :                                 break;
      38                 :            :                 }
      39                 :            : 
      40         [ #  # ]:          0 :                 if (unlikely(!pskb_may_pull(skb, 8)))
      41                 :            :                         break;
      42                 :            : 
      43                 :          0 :                 opth = (void *)skb->data;
      44                 :          0 :                 len = ipv6_optlen(opth);
      45                 :            : 
      46         [ #  # ]:          0 :                 if (unlikely(!pskb_may_pull(skb, len)))
      47                 :            :                         break;
      48                 :            : 
      49                 :          0 :                 proto = opth->nexthdr;
      50                 :            :                 __skb_pull(skb, len);
      51                 :            :         }
      52                 :            : 
      53                 :          0 :         return proto;
      54                 :            : }
      55                 :            : 
      56                 :          0 : static int ipv6_gso_send_check(struct sk_buff *skb)
      57                 :            : {
      58                 :            :         const struct ipv6hdr *ipv6h;
      59                 :            :         const struct net_offload *ops;
      60                 :            :         int err = -EINVAL;
      61                 :            : 
      62         [ #  # ]:          0 :         if (unlikely(!pskb_may_pull(skb, sizeof(*ipv6h))))
      63                 :            :                 goto out;
      64                 :            : 
      65                 :            :         ipv6h = ipv6_hdr(skb);
      66                 :            :         __skb_pull(skb, sizeof(*ipv6h));
      67                 :            :         err = -EPROTONOSUPPORT;
      68                 :            : 
      69                 :          0 :         ops = rcu_dereference(inet6_offloads[
      70                 :            :                 ipv6_gso_pull_exthdrs(skb, ipv6h->nexthdr)]);
      71                 :            : 
      72 [ #  # ][ #  # ]:          0 :         if (likely(ops && ops->callbacks.gso_send_check)) {
      73                 :            :                 skb_reset_transport_header(skb);
      74                 :          0 :                 err = ops->callbacks.gso_send_check(skb);
      75                 :            :         }
      76                 :            : 
      77                 :            : out:
      78                 :          0 :         return err;
      79                 :            : }
      80                 :            : 
      81                 :          0 : static struct sk_buff *ipv6_gso_segment(struct sk_buff *skb,
      82                 :            :         netdev_features_t features)
      83                 :            : {
      84                 :            :         struct sk_buff *segs = ERR_PTR(-EINVAL);
      85                 :            :         struct ipv6hdr *ipv6h;
      86                 :            :         const struct net_offload *ops;
      87                 :            :         int proto;
      88                 :            :         struct frag_hdr *fptr;
      89                 :            :         unsigned int unfrag_ip6hlen;
      90                 :            :         u8 *prevhdr;
      91                 :            :         int offset = 0;
      92                 :            :         bool tunnel;
      93                 :            :         int nhoff;
      94                 :            : 
      95         [ #  # ]:          0 :         if (unlikely(skb_shinfo(skb)->gso_type &
      96                 :            :                      ~(SKB_GSO_UDP |
      97                 :            :                        SKB_GSO_DODGY |
      98                 :            :                        SKB_GSO_TCP_ECN |
      99                 :            :                        SKB_GSO_GRE |
     100                 :            :                        SKB_GSO_IPIP |
     101                 :            :                        SKB_GSO_SIT |
     102                 :            :                        SKB_GSO_UDP_TUNNEL |
     103                 :            :                        SKB_GSO_MPLS |
     104                 :            :                        SKB_GSO_TCPV6 |
     105                 :            :                        0)))
     106                 :            :                 goto out;
     107                 :            : 
     108                 :            :         skb_reset_network_header(skb);
     109                 :          0 :         nhoff = skb_network_header(skb) - skb_mac_header(skb);
     110         [ #  # ]:          0 :         if (unlikely(!pskb_may_pull(skb, sizeof(*ipv6h))))
     111                 :            :                 goto out;
     112                 :            : 
     113                 :          0 :         tunnel = SKB_GSO_CB(skb)->encap_level > 0;
     114         [ #  # ]:          0 :         if (tunnel)
     115                 :          0 :                 features = skb->dev->hw_enc_features & netif_skb_features(skb);
     116                 :          0 :         SKB_GSO_CB(skb)->encap_level += sizeof(*ipv6h);
     117                 :            : 
     118                 :            :         ipv6h = ipv6_hdr(skb);
     119                 :            :         __skb_pull(skb, sizeof(*ipv6h));
     120                 :            :         segs = ERR_PTR(-EPROTONOSUPPORT);
     121                 :            : 
     122                 :          0 :         proto = ipv6_gso_pull_exthdrs(skb, ipv6h->nexthdr);
     123                 :            : 
     124                 :          0 :         ops = rcu_dereference(inet6_offloads[proto]);
     125 [ #  # ][ #  # ]:          0 :         if (likely(ops && ops->callbacks.gso_segment)) {
     126                 :            :                 skb_reset_transport_header(skb);
     127                 :          0 :                 segs = ops->callbacks.gso_segment(skb, features);
     128                 :            :         }
     129                 :            : 
     130         [ #  # ]:          0 :         if (IS_ERR(segs))
     131                 :            :                 goto out;
     132                 :            : 
     133         [ #  # ]:          0 :         for (skb = segs; skb; skb = skb->next) {
     134                 :          0 :                 ipv6h = (struct ipv6hdr *)(skb_mac_header(skb) + nhoff);
     135         [ #  # ]:          0 :                 ipv6h->payload_len = htons(skb->len - nhoff - sizeof(*ipv6h));
     136         [ #  # ]:          0 :                 if (tunnel) {
     137                 :            :                         skb_reset_inner_headers(skb);
     138                 :          0 :                         skb->encapsulation = 1;
     139                 :            :                 }
     140                 :          0 :                 skb->network_header = (u8 *)ipv6h - skb->head;
     141                 :            : 
     142         [ #  # ]:          0 :                 if (!tunnel && proto == IPPROTO_UDP) {
     143                 :          0 :                         unfrag_ip6hlen = ip6_find_1stfragopt(skb, &prevhdr);
     144                 :          0 :                         fptr = (struct frag_hdr *)((u8 *)ipv6h + unfrag_ip6hlen);
     145         [ #  # ]:          0 :                         fptr->frag_off = htons(offset);
     146         [ #  # ]:          0 :                         if (skb->next != NULL)
     147                 :          0 :                                 fptr->frag_off |= htons(IP6_MF);
     148         [ #  # ]:          0 :                         offset += (ntohs(ipv6h->payload_len) -
     149                 :            :                                    sizeof(struct frag_hdr));
     150                 :            :                 }
     151                 :            :         }
     152                 :            : 
     153                 :            : out:
     154                 :          0 :         return segs;
     155                 :            : }
     156                 :            : 
     157                 :          0 : static struct sk_buff **ipv6_gro_receive(struct sk_buff **head,
     158                 :          0 :                                          struct sk_buff *skb)
     159                 :            : {
     160                 :            :         const struct net_offload *ops;
     161                 :            :         struct sk_buff **pp = NULL;
     162                 :          0 :         struct sk_buff *p;
     163                 :            :         struct ipv6hdr *iph;
     164                 :            :         unsigned int nlen;
     165                 :            :         unsigned int hlen;
     166                 :            :         unsigned int off;
     167                 :            :         int flush = 1;
     168                 :            :         int proto;
     169                 :            :         __wsum csum;
     170                 :            : 
     171                 :            :         off = skb_gro_offset(skb);
     172                 :          0 :         hlen = off + sizeof(*iph);
     173                 :            :         iph = skb_gro_header_fast(skb, off);
     174         [ #  # ]:          0 :         if (skb_gro_header_hard(skb, hlen)) {
     175                 :            :                 iph = skb_gro_header_slow(skb, hlen, off);
     176         [ #  # ]:          0 :                 if (unlikely(!iph))
     177                 :            :                         goto out;
     178                 :            :         }
     179                 :            : 
     180                 :            :         skb_gro_pull(skb, sizeof(*iph));
     181                 :            :         skb_set_transport_header(skb, skb_gro_offset(skb));
     182                 :            : 
     183         [ #  # ]:          0 :         flush += ntohs(iph->payload_len) != skb_gro_len(skb);
     184                 :            : 
     185                 :            :         rcu_read_lock();
     186                 :          0 :         proto = iph->nexthdr;
     187                 :          0 :         ops = rcu_dereference(inet6_offloads[proto]);
     188 [ #  # ][ #  # ]:          0 :         if (!ops || !ops->callbacks.gro_receive) {
     189                 :            :                 __pskb_pull(skb, skb_gro_offset(skb));
     190                 :          0 :                 proto = ipv6_gso_pull_exthdrs(skb, proto);
     191                 :          0 :                 skb_gro_pull(skb, -skb_transport_offset(skb));
     192                 :            :                 skb_reset_transport_header(skb);
     193                 :            :                 __skb_push(skb, skb_gro_offset(skb));
     194                 :            : 
     195                 :          0 :                 ops = rcu_dereference(inet6_offloads[proto]);
     196 [ #  # ][ #  # ]:          0 :                 if (!ops || !ops->callbacks.gro_receive)
     197                 :            :                         goto out_unlock;
     198                 :            : 
     199                 :            :                 iph = ipv6_hdr(skb);
     200                 :            :         }
     201                 :            : 
     202                 :          0 :         NAPI_GRO_CB(skb)->proto = proto;
     203                 :            : 
     204                 :            :         flush--;
     205                 :            :         nlen = skb_network_header_len(skb);
     206                 :            : 
     207         [ #  # ]:          0 :         for (p = *head; p; p = p->next) {
     208                 :            :                 const struct ipv6hdr *iph2;
     209                 :            :                 __be32 first_word; /* <Version:4><Traffic_Class:8><Flow_Label:20> */
     210                 :            : 
     211         [ #  # ]:          0 :                 if (!NAPI_GRO_CB(p)->same_flow)
     212                 :          0 :                         continue;
     213                 :            : 
     214                 :            :                 iph2 = ipv6_hdr(p);
     215                 :          0 :                 first_word = *(__be32 *)iph ^ *(__be32 *)iph2 ;
     216                 :            : 
     217                 :            :                 /* All fields must match except length and Traffic Class. */
     218 [ #  # ][ #  # ]:          0 :                 if (nlen != skb_network_header_len(p) ||
     219         [ #  # ]:          0 :                     (first_word & htonl(0xF00FFFFF)) ||
     220                 :          0 :                     memcmp(&iph->nexthdr, &iph2->nexthdr,
     221                 :            :                            nlen - offsetof(struct ipv6hdr, nexthdr))) {
     222                 :          0 :                         NAPI_GRO_CB(p)->same_flow = 0;
     223                 :          0 :                         continue;
     224                 :            :                 }
     225                 :            :                 /* flush if Traffic Class fields are different */
     226                 :          0 :                 NAPI_GRO_CB(p)->flush |= !!(first_word & htonl(0x0FF00000));
     227                 :          0 :                 NAPI_GRO_CB(p)->flush |= flush;
     228                 :            :         }
     229                 :            : 
     230                 :          0 :         NAPI_GRO_CB(skb)->flush |= flush;
     231                 :            : 
     232                 :          0 :         csum = skb->csum;
     233                 :            :         skb_postpull_rcsum(skb, iph, skb_network_header_len(skb));
     234                 :            : 
     235                 :          0 :         pp = ops->callbacks.gro_receive(head, skb);
     236                 :            : 
     237                 :          0 :         skb->csum = csum;
     238                 :            : 
     239                 :            : out_unlock:
     240                 :            :         rcu_read_unlock();
     241                 :            : 
     242                 :            : out:
     243                 :          0 :         NAPI_GRO_CB(skb)->flush |= flush;
     244                 :            : 
     245                 :          0 :         return pp;
     246                 :            : }
     247                 :            : 
     248                 :          0 : static int ipv6_gro_complete(struct sk_buff *skb)
     249                 :            : {
     250                 :            :         const struct net_offload *ops;
     251                 :            :         struct ipv6hdr *iph = ipv6_hdr(skb);
     252                 :            :         int err = -ENOSYS;
     253                 :            : 
     254                 :          0 :         iph->payload_len = htons(skb->len - skb_network_offset(skb) -
     255                 :            :                                  sizeof(*iph));
     256                 :            : 
     257                 :            :         rcu_read_lock();
     258                 :          0 :         ops = rcu_dereference(inet6_offloads[NAPI_GRO_CB(skb)->proto]);
     259 [ #  # ][ #  # ]:          0 :         if (WARN_ON(!ops || !ops->callbacks.gro_complete))
         [ #  # ][ #  # ]
     260                 :            :                 goto out_unlock;
     261                 :            : 
     262                 :          0 :         err = ops->callbacks.gro_complete(skb);
     263                 :            : 
     264                 :            : out_unlock:
     265                 :            :         rcu_read_unlock();
     266                 :            : 
     267                 :          0 :         return err;
     268                 :            : }
     269                 :            : 
     270                 :            : static struct packet_offload ipv6_packet_offload __read_mostly = {
     271                 :            :         .type = cpu_to_be16(ETH_P_IPV6),
     272                 :            :         .callbacks = {
     273                 :            :                 .gso_send_check = ipv6_gso_send_check,
     274                 :            :                 .gso_segment = ipv6_gso_segment,
     275                 :            :                 .gro_receive = ipv6_gro_receive,
     276                 :            :                 .gro_complete = ipv6_gro_complete,
     277                 :            :         },
     278                 :            : };
     279                 :            : 
     280                 :            : static const struct net_offload sit_offload = {
     281                 :            :         .callbacks = {
     282                 :            :                 .gso_send_check = ipv6_gso_send_check,
     283                 :            :                 .gso_segment    = ipv6_gso_segment,
     284                 :            :         },
     285                 :            : };
     286                 :            : 
     287                 :          0 : static int __init ipv6_offload_init(void)
     288                 :            : {
     289                 :            : 
     290         [ #  # ]:          0 :         if (tcpv6_offload_init() < 0)
     291                 :          0 :                 pr_crit("%s: Cannot add TCP protocol offload\n", __func__);
     292         [ #  # ]:          0 :         if (udp_offload_init() < 0)
     293                 :          0 :                 pr_crit("%s: Cannot add UDP protocol offload\n", __func__);
     294         [ #  # ]:          0 :         if (ipv6_exthdrs_offload_init() < 0)
     295                 :          0 :                 pr_crit("%s: Cannot add EXTHDRS protocol offload\n", __func__);
     296                 :            : 
     297                 :          0 :         dev_add_offload(&ipv6_packet_offload);
     298                 :            : 
     299                 :          0 :         inet_add_offload(&sit_offload, IPPROTO_IPV6);
     300                 :            : 
     301                 :          0 :         return 0;
     302                 :            : }
     303                 :            : 
     304                 :            : fs_initcall(ipv6_offload_init);

Generated by: LCOV version 1.9