Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 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> |
Vlad Yasevich | c6b641a | 2012-11-15 08:49:22 +0000 | [diff] [blame] | 15 | #include <linux/printk.h> |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 16 | |
| 17 | #include <net/protocol.h> |
| 18 | #include <net/ipv6.h> |
Tom Herbert | b8921ca | 2016-05-18 09:06:23 -0700 | [diff] [blame] | 19 | #include <net/inet_common.h> |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 20 | |
| 21 | #include "ip6_offload.h" |
| 22 | |
Paolo Abeni | 028e0a4 | 2018-12-14 11:51:59 +0100 | [diff] [blame] | 23 | /* All GRO functions are always builtin, except UDP over ipv6, which lays in |
| 24 | * ipv6 module, as it depends on UDPv6 lookup function, so we need special care |
| 25 | * when ipv6 is built as a module |
| 26 | */ |
| 27 | #if IS_BUILTIN(CONFIG_IPV6) |
| 28 | #define INDIRECT_CALL_L4(f, f2, f1, ...) INDIRECT_CALL_2(f, f2, f1, __VA_ARGS__) |
| 29 | #else |
| 30 | #define INDIRECT_CALL_L4(f, f2, f1, ...) INDIRECT_CALL_1(f, f2, __VA_ARGS__) |
| 31 | #endif |
| 32 | |
| 33 | #define indirect_call_gro_receive_l4(f2, f1, cb, head, skb) \ |
| 34 | ({ \ |
| 35 | unlikely(gro_recursion_inc_test(skb)) ? \ |
| 36 | NAPI_GRO_CB(skb)->flush |= 1, NULL : \ |
| 37 | INDIRECT_CALL_L4(cb, f2, f1, head, skb); \ |
| 38 | }) |
| 39 | |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 40 | static int ipv6_gso_pull_exthdrs(struct sk_buff *skb, int proto) |
| 41 | { |
| 42 | const struct net_offload *ops = NULL; |
| 43 | |
| 44 | for (;;) { |
| 45 | struct ipv6_opt_hdr *opth; |
| 46 | int len; |
| 47 | |
| 48 | if (proto != NEXTHDR_HOP) { |
| 49 | ops = rcu_dereference(inet6_offloads[proto]); |
| 50 | |
| 51 | if (unlikely(!ops)) |
| 52 | break; |
| 53 | |
| 54 | if (!(ops->flags & INET6_PROTO_GSO_EXTHDR)) |
| 55 | break; |
| 56 | } |
| 57 | |
| 58 | if (unlikely(!pskb_may_pull(skb, 8))) |
| 59 | break; |
| 60 | |
| 61 | opth = (void *)skb->data; |
| 62 | len = ipv6_optlen(opth); |
| 63 | |
| 64 | if (unlikely(!pskb_may_pull(skb, len))) |
| 65 | break; |
| 66 | |
Li RongQing | fc6fb41 | 2014-10-18 17:27:42 +0800 | [diff] [blame] | 67 | opth = (void *)skb->data; |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 68 | proto = opth->nexthdr; |
| 69 | __skb_pull(skb, len); |
| 70 | } |
| 71 | |
| 72 | return proto; |
| 73 | } |
| 74 | |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 75 | static struct sk_buff *ipv6_gso_segment(struct sk_buff *skb, |
| 76 | netdev_features_t features) |
| 77 | { |
| 78 | struct sk_buff *segs = ERR_PTR(-EINVAL); |
| 79 | struct ipv6hdr *ipv6h; |
| 80 | const struct net_offload *ops; |
| 81 | int proto; |
| 82 | struct frag_hdr *fptr; |
Alexander Duyck | 802ab55 | 2016-04-10 21:45:03 -0400 | [diff] [blame] | 83 | unsigned int payload_len; |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 84 | u8 *prevhdr; |
| 85 | int offset = 0; |
Hannes Frederic Sowa | 91a48a2 | 2014-02-24 00:48:05 +0100 | [diff] [blame] | 86 | bool encap, udpfrag; |
Eric Dumazet | d3e5e00 | 2013-10-20 20:47:29 -0700 | [diff] [blame] | 87 | int nhoff; |
Steffen Klassert | 07b26c9 | 2016-09-19 12:58:47 +0200 | [diff] [blame] | 88 | bool gso_partial; |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 89 | |
Eric Dumazet | d3e5e00 | 2013-10-20 20:47:29 -0700 | [diff] [blame] | 90 | skb_reset_network_header(skb); |
| 91 | nhoff = skb_network_header(skb) - skb_mac_header(skb); |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 92 | if (unlikely(!pskb_may_pull(skb, sizeof(*ipv6h)))) |
| 93 | goto out; |
| 94 | |
Hannes Frederic Sowa | 91a48a2 | 2014-02-24 00:48:05 +0100 | [diff] [blame] | 95 | encap = SKB_GSO_CB(skb)->encap_level > 0; |
| 96 | if (encap) |
Florian Westphal | 1e16aa3 | 2014-10-20 13:49:16 +0200 | [diff] [blame] | 97 | features &= skb->dev->hw_enc_features; |
Eric Dumazet | d3e5e00 | 2013-10-20 20:47:29 -0700 | [diff] [blame] | 98 | SKB_GSO_CB(skb)->encap_level += sizeof(*ipv6h); |
| 99 | |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 100 | ipv6h = ipv6_hdr(skb); |
| 101 | __skb_pull(skb, sizeof(*ipv6h)); |
| 102 | segs = ERR_PTR(-EPROTONOSUPPORT); |
| 103 | |
| 104 | proto = ipv6_gso_pull_exthdrs(skb, ipv6h->nexthdr); |
Eric Dumazet | b917eb1 | 2013-10-18 14:43:55 -0700 | [diff] [blame] | 105 | |
Hannes Frederic Sowa | 91a48a2 | 2014-02-24 00:48:05 +0100 | [diff] [blame] | 106 | if (skb->encapsulation && |
Tom Herbert | 7e13318 | 2016-05-18 09:06:10 -0700 | [diff] [blame] | 107 | skb_shinfo(skb)->gso_type & (SKB_GSO_IPXIP4 | SKB_GSO_IPXIP6)) |
Willem de Bruijn | ee80d1e | 2018-04-26 13:42:16 -0400 | [diff] [blame] | 108 | udpfrag = proto == IPPROTO_UDP && encap && |
| 109 | (skb_shinfo(skb)->gso_type & SKB_GSO_UDP); |
Hannes Frederic Sowa | 91a48a2 | 2014-02-24 00:48:05 +0100 | [diff] [blame] | 110 | else |
Willem de Bruijn | ee80d1e | 2018-04-26 13:42:16 -0400 | [diff] [blame] | 111 | udpfrag = proto == IPPROTO_UDP && !skb->encapsulation && |
| 112 | (skb_shinfo(skb)->gso_type & SKB_GSO_UDP); |
Hannes Frederic Sowa | 91a48a2 | 2014-02-24 00:48:05 +0100 | [diff] [blame] | 113 | |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 114 | ops = rcu_dereference(inet6_offloads[proto]); |
Vlad Yasevich | f191a1d | 2012-11-15 08:49:23 +0000 | [diff] [blame] | 115 | if (likely(ops && ops->callbacks.gso_segment)) { |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 116 | skb_reset_transport_header(skb); |
Vlad Yasevich | f191a1d | 2012-11-15 08:49:23 +0000 | [diff] [blame] | 117 | segs = ops->callbacks.gso_segment(skb, features); |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 118 | } |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 119 | |
Artem Savkov | 6b6ebb6 | 2016-12-01 14:06:04 +0100 | [diff] [blame] | 120 | if (IS_ERR_OR_NULL(segs)) |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 121 | goto out; |
| 122 | |
Steffen Klassert | 07b26c9 | 2016-09-19 12:58:47 +0200 | [diff] [blame] | 123 | gso_partial = !!(skb_shinfo(segs)->gso_type & SKB_GSO_PARTIAL); |
| 124 | |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 125 | for (skb = segs; skb; skb = skb->next) { |
Eric Dumazet | d3e5e00 | 2013-10-20 20:47:29 -0700 | [diff] [blame] | 126 | ipv6h = (struct ipv6hdr *)(skb_mac_header(skb) + nhoff); |
Alexey Kodanev | 3d0241d | 2017-10-06 19:02:35 +0300 | [diff] [blame] | 127 | if (gso_partial && skb_is_gso(skb)) |
Alexander Duyck | 802ab55 | 2016-04-10 21:45:03 -0400 | [diff] [blame] | 128 | payload_len = skb_shinfo(skb)->gso_size + |
| 129 | SKB_GSO_CB(skb)->data_offset + |
| 130 | skb->head - (unsigned char *)(ipv6h + 1); |
| 131 | else |
| 132 | payload_len = skb->len - nhoff - sizeof(*ipv6h); |
| 133 | ipv6h->payload_len = htons(payload_len); |
Eric Dumazet | d3e5e00 | 2013-10-20 20:47:29 -0700 | [diff] [blame] | 134 | skb->network_header = (u8 *)ipv6h - skb->head; |
Toke Høiland-Jørgensen | c56cae2 | 2018-09-13 16:43:07 +0200 | [diff] [blame] | 135 | skb_reset_mac_len(skb); |
Eric Dumazet | d3e5e00 | 2013-10-20 20:47:29 -0700 | [diff] [blame] | 136 | |
Hannes Frederic Sowa | 91a48a2 | 2014-02-24 00:48:05 +0100 | [diff] [blame] | 137 | if (udpfrag) { |
David S. Miller | 7dd7eb9 | 2017-05-17 22:54:11 -0400 | [diff] [blame] | 138 | int err = ip6_find_1stfragopt(skb, &prevhdr); |
David S. Miller | e3e86b5 | 2017-06-04 21:41:10 -0400 | [diff] [blame] | 139 | if (err < 0) { |
| 140 | kfree_skb_list(segs); |
David S. Miller | 7dd7eb9 | 2017-05-17 22:54:11 -0400 | [diff] [blame] | 141 | return ERR_PTR(err); |
David S. Miller | e3e86b5 | 2017-06-04 21:41:10 -0400 | [diff] [blame] | 142 | } |
David S. Miller | 7dd7eb9 | 2017-05-17 22:54:11 -0400 | [diff] [blame] | 143 | fptr = (struct frag_hdr *)((u8 *)ipv6h + err); |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 144 | fptr->frag_off = htons(offset); |
Ian Morris | 53b24b8 | 2015-03-29 14:00:05 +0100 | [diff] [blame] | 145 | if (skb->next) |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 146 | fptr->frag_off |= htons(IP6_MF); |
| 147 | offset += (ntohs(ipv6h->payload_len) - |
| 148 | sizeof(struct frag_hdr)); |
| 149 | } |
Hannes Frederic Sowa | 91a48a2 | 2014-02-24 00:48:05 +0100 | [diff] [blame] | 150 | if (encap) |
| 151 | skb_reset_inner_headers(skb); |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | out: |
| 155 | return segs; |
| 156 | } |
| 157 | |
Jerry Chu | 299603e8 | 2013-12-11 20:53:45 -0800 | [diff] [blame] | 158 | /* Return the total length of all the extension hdrs, following the same |
| 159 | * logic in ipv6_gso_pull_exthdrs() when parsing ext-hdrs. |
| 160 | */ |
| 161 | static int ipv6_exthdrs_len(struct ipv6hdr *iph, |
| 162 | const struct net_offload **opps) |
| 163 | { |
Jerry Chu | 810c23a | 2013-12-15 18:48:07 -0800 | [diff] [blame] | 164 | struct ipv6_opt_hdr *opth = (void *)iph; |
| 165 | int len = 0, proto, optlen = sizeof(*iph); |
Jerry Chu | 299603e8 | 2013-12-11 20:53:45 -0800 | [diff] [blame] | 166 | |
| 167 | proto = iph->nexthdr; |
| 168 | for (;;) { |
| 169 | if (proto != NEXTHDR_HOP) { |
| 170 | *opps = rcu_dereference(inet6_offloads[proto]); |
| 171 | if (unlikely(!(*opps))) |
| 172 | break; |
| 173 | if (!((*opps)->flags & INET6_PROTO_GSO_EXTHDR)) |
| 174 | break; |
| 175 | } |
Jerry Chu | 810c23a | 2013-12-15 18:48:07 -0800 | [diff] [blame] | 176 | opth = (void *)opth + optlen; |
| 177 | optlen = ipv6_optlen(opth); |
Jerry Chu | 299603e8 | 2013-12-11 20:53:45 -0800 | [diff] [blame] | 178 | len += optlen; |
| 179 | proto = opth->nexthdr; |
| 180 | } |
| 181 | return len; |
| 182 | } |
| 183 | |
Paolo Abeni | 028e0a4 | 2018-12-14 11:51:59 +0100 | [diff] [blame] | 184 | INDIRECT_CALLABLE_DECLARE(struct sk_buff *tcp6_gro_receive(struct list_head *, |
| 185 | struct sk_buff *)); |
| 186 | INDIRECT_CALLABLE_DECLARE(struct sk_buff *udp6_gro_receive(struct list_head *, |
| 187 | struct sk_buff *)); |
Paolo Abeni | aaa5d90 | 2018-12-14 11:51:58 +0100 | [diff] [blame] | 188 | INDIRECT_CALLABLE_SCOPE struct sk_buff *ipv6_gro_receive(struct list_head *head, |
| 189 | struct sk_buff *skb) |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 190 | { |
| 191 | const struct net_offload *ops; |
David Miller | d4546c2 | 2018-06-24 14:13:49 +0900 | [diff] [blame] | 192 | struct sk_buff *pp = NULL; |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 193 | struct sk_buff *p; |
| 194 | struct ipv6hdr *iph; |
| 195 | unsigned int nlen; |
| 196 | unsigned int hlen; |
| 197 | unsigned int off; |
Jerry Chu | bf5a755 | 2014-01-07 10:23:19 -0800 | [diff] [blame] | 198 | u16 flush = 1; |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 199 | int proto; |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 200 | |
| 201 | off = skb_gro_offset(skb); |
| 202 | hlen = off + sizeof(*iph); |
| 203 | iph = skb_gro_header_fast(skb, off); |
| 204 | if (skb_gro_header_hard(skb, hlen)) { |
| 205 | iph = skb_gro_header_slow(skb, hlen, off); |
| 206 | if (unlikely(!iph)) |
| 207 | goto out; |
| 208 | } |
| 209 | |
Jerry Chu | 299603e8 | 2013-12-11 20:53:45 -0800 | [diff] [blame] | 210 | skb_set_network_header(skb, off); |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 211 | skb_gro_pull(skb, sizeof(*iph)); |
| 212 | skb_set_transport_header(skb, skb_gro_offset(skb)); |
| 213 | |
| 214 | flush += ntohs(iph->payload_len) != skb_gro_len(skb); |
| 215 | |
| 216 | rcu_read_lock(); |
| 217 | proto = iph->nexthdr; |
| 218 | ops = rcu_dereference(inet6_offloads[proto]); |
Vlad Yasevich | f191a1d | 2012-11-15 08:49:23 +0000 | [diff] [blame] | 219 | if (!ops || !ops->callbacks.gro_receive) { |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 220 | __pskb_pull(skb, skb_gro_offset(skb)); |
Herbert Xu | 57ea52a | 2017-01-10 12:24:15 -0800 | [diff] [blame] | 221 | skb_gro_frag0_invalidate(skb); |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 222 | proto = ipv6_gso_pull_exthdrs(skb, proto); |
| 223 | skb_gro_pull(skb, -skb_transport_offset(skb)); |
| 224 | skb_reset_transport_header(skb); |
| 225 | __skb_push(skb, skb_gro_offset(skb)); |
| 226 | |
| 227 | ops = rcu_dereference(inet6_offloads[proto]); |
Vlad Yasevich | f191a1d | 2012-11-15 08:49:23 +0000 | [diff] [blame] | 228 | if (!ops || !ops->callbacks.gro_receive) |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 229 | goto out_unlock; |
| 230 | |
| 231 | iph = ipv6_hdr(skb); |
| 232 | } |
| 233 | |
| 234 | NAPI_GRO_CB(skb)->proto = proto; |
| 235 | |
| 236 | flush--; |
| 237 | nlen = skb_network_header_len(skb); |
| 238 | |
David Miller | d4546c2 | 2018-06-24 14:13:49 +0900 | [diff] [blame] | 239 | list_for_each_entry(p, head, list) { |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 240 | const struct ipv6hdr *iph2; |
| 241 | __be32 first_word; /* <Version:4><Traffic_Class:8><Flow_Label:20> */ |
| 242 | |
| 243 | if (!NAPI_GRO_CB(p)->same_flow) |
| 244 | continue; |
| 245 | |
Jerry Chu | 299603e8 | 2013-12-11 20:53:45 -0800 | [diff] [blame] | 246 | iph2 = (struct ipv6hdr *)(p->data + off); |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 247 | first_word = *(__be32 *)iph ^ *(__be32 *)iph2; |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 248 | |
Jerry Chu | 299603e8 | 2013-12-11 20:53:45 -0800 | [diff] [blame] | 249 | /* All fields must match except length and Traffic Class. |
| 250 | * XXX skbs on the gro_list have all been parsed and pulled |
| 251 | * already so we don't need to compare nlen |
| 252 | * (nlen != (sizeof(*iph2) + ipv6_exthdrs_len(iph2, &ops))) |
Eric Dumazet | 0b215b9 | 2018-11-06 14:25:52 -0800 | [diff] [blame] | 253 | * memcmp() alone below is sufficient, right? |
Jerry Chu | 299603e8 | 2013-12-11 20:53:45 -0800 | [diff] [blame] | 254 | */ |
| 255 | if ((first_word & htonl(0xF00FFFFF)) || |
Eric Dumazet | 0b215b9 | 2018-11-06 14:25:52 -0800 | [diff] [blame] | 256 | !ipv6_addr_equal(&iph->saddr, &iph2->saddr) || |
| 257 | !ipv6_addr_equal(&iph->daddr, &iph2->daddr) || |
| 258 | *(u16 *)&iph->nexthdr != *(u16 *)&iph2->nexthdr) { |
| 259 | not_same_flow: |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 260 | NAPI_GRO_CB(p)->same_flow = 0; |
| 261 | continue; |
| 262 | } |
Eric Dumazet | 0b215b9 | 2018-11-06 14:25:52 -0800 | [diff] [blame] | 263 | if (unlikely(nlen > sizeof(struct ipv6hdr))) { |
| 264 | if (memcmp(iph + 1, iph2 + 1, |
| 265 | nlen - sizeof(struct ipv6hdr))) |
| 266 | goto not_same_flow; |
| 267 | } |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 268 | /* flush if Traffic Class fields are different */ |
| 269 | NAPI_GRO_CB(p)->flush |= !!(first_word & htonl(0x0FF00000)); |
| 270 | NAPI_GRO_CB(p)->flush |= flush; |
Tom Herbert | 03d56da | 2014-09-09 11:23:14 -0700 | [diff] [blame] | 271 | |
Alexander Duyck | 1530545 | 2016-04-10 21:44:57 -0400 | [diff] [blame] | 272 | /* If the previous IP ID value was based on an atomic |
| 273 | * datagram we can overwrite the value and ignore it. |
| 274 | */ |
| 275 | if (NAPI_GRO_CB(skb)->is_atomic) |
| 276 | NAPI_GRO_CB(p)->flush_id = 0; |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 277 | } |
| 278 | |
Alexander Duyck | 1530545 | 2016-04-10 21:44:57 -0400 | [diff] [blame] | 279 | NAPI_GRO_CB(skb)->is_atomic = true; |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 280 | NAPI_GRO_CB(skb)->flush |= flush; |
| 281 | |
Eric Dumazet | 4de462a | 2014-05-19 21:56:34 -0700 | [diff] [blame] | 282 | skb_gro_postpull_rcsum(skb, iph, nlen); |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 283 | |
Paolo Abeni | 028e0a4 | 2018-12-14 11:51:59 +0100 | [diff] [blame] | 284 | pp = indirect_call_gro_receive_l4(tcp6_gro_receive, udp6_gro_receive, |
| 285 | ops->callbacks.gro_receive, head, skb); |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 286 | |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 287 | out_unlock: |
| 288 | rcu_read_unlock(); |
| 289 | |
| 290 | out: |
Steffen Klassert | 5f11416 | 2017-02-15 09:39:39 +0100 | [diff] [blame] | 291 | skb_gro_flush_final(skb, pp, flush); |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 292 | |
| 293 | return pp; |
| 294 | } |
| 295 | |
David Miller | d4546c2 | 2018-06-24 14:13:49 +0900 | [diff] [blame] | 296 | static struct sk_buff *sit_ip6ip6_gro_receive(struct list_head *head, |
| 297 | struct sk_buff *skb) |
Jesse Gross | fac8e0f | 2016-03-19 09:32:01 -0700 | [diff] [blame] | 298 | { |
Tom Herbert | 815d22e | 2016-05-18 09:06:22 -0700 | [diff] [blame] | 299 | /* Common GRO receive for SIT and IP6IP6 */ |
| 300 | |
Jesse Gross | fac8e0f | 2016-03-19 09:32:01 -0700 | [diff] [blame] | 301 | if (NAPI_GRO_CB(skb)->encap_mark) { |
| 302 | NAPI_GRO_CB(skb)->flush = 1; |
| 303 | return NULL; |
| 304 | } |
| 305 | |
| 306 | NAPI_GRO_CB(skb)->encap_mark = 1; |
| 307 | |
| 308 | return ipv6_gro_receive(head, skb); |
| 309 | } |
| 310 | |
David Miller | d4546c2 | 2018-06-24 14:13:49 +0900 | [diff] [blame] | 311 | static struct sk_buff *ip4ip6_gro_receive(struct list_head *head, |
| 312 | struct sk_buff *skb) |
Tom Herbert | b8921ca | 2016-05-18 09:06:23 -0700 | [diff] [blame] | 313 | { |
| 314 | /* Common GRO receive for SIT and IP6IP6 */ |
| 315 | |
| 316 | if (NAPI_GRO_CB(skb)->encap_mark) { |
| 317 | NAPI_GRO_CB(skb)->flush = 1; |
| 318 | return NULL; |
| 319 | } |
| 320 | |
| 321 | NAPI_GRO_CB(skb)->encap_mark = 1; |
| 322 | |
| 323 | return inet_gro_receive(head, skb); |
| 324 | } |
| 325 | |
Paolo Abeni | 028e0a4 | 2018-12-14 11:51:59 +0100 | [diff] [blame] | 326 | INDIRECT_CALLABLE_DECLARE(int tcp6_gro_complete(struct sk_buff *, int)); |
| 327 | INDIRECT_CALLABLE_DECLARE(int udp6_gro_complete(struct sk_buff *, int)); |
Paolo Abeni | aaa5d90 | 2018-12-14 11:51:58 +0100 | [diff] [blame] | 328 | INDIRECT_CALLABLE_SCOPE int ipv6_gro_complete(struct sk_buff *skb, int nhoff) |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 329 | { |
| 330 | const struct net_offload *ops; |
Jerry Chu | 299603e8 | 2013-12-11 20:53:45 -0800 | [diff] [blame] | 331 | struct ipv6hdr *iph = (struct ipv6hdr *)(skb->data + nhoff); |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 332 | int err = -ENOSYS; |
| 333 | |
Paolo Abeni | 294acf1 | 2017-03-07 18:33:31 +0100 | [diff] [blame] | 334 | if (skb->encapsulation) { |
| 335 | skb_set_inner_protocol(skb, cpu_to_be16(ETH_P_IPV6)); |
Eric Dumazet | feec0cb | 2015-10-19 20:40:17 -0700 | [diff] [blame] | 336 | skb_set_inner_network_header(skb, nhoff); |
Paolo Abeni | 294acf1 | 2017-03-07 18:33:31 +0100 | [diff] [blame] | 337 | } |
Eric Dumazet | feec0cb | 2015-10-19 20:40:17 -0700 | [diff] [blame] | 338 | |
Jerry Chu | 299603e8 | 2013-12-11 20:53:45 -0800 | [diff] [blame] | 339 | iph->payload_len = htons(skb->len - nhoff - sizeof(*iph)); |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 340 | |
| 341 | rcu_read_lock(); |
Jerry Chu | 299603e8 | 2013-12-11 20:53:45 -0800 | [diff] [blame] | 342 | |
| 343 | nhoff += sizeof(*iph) + ipv6_exthdrs_len(iph, &ops); |
Vlad Yasevich | f191a1d | 2012-11-15 08:49:23 +0000 | [diff] [blame] | 344 | if (WARN_ON(!ops || !ops->callbacks.gro_complete)) |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 345 | goto out_unlock; |
| 346 | |
Paolo Abeni | 028e0a4 | 2018-12-14 11:51:59 +0100 | [diff] [blame] | 347 | err = INDIRECT_CALL_L4(ops->callbacks.gro_complete, tcp6_gro_complete, |
| 348 | udp6_gro_complete, skb, nhoff); |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 349 | |
| 350 | out_unlock: |
| 351 | rcu_read_unlock(); |
| 352 | |
| 353 | return err; |
| 354 | } |
| 355 | |
Eric Dumazet | feec0cb | 2015-10-19 20:40:17 -0700 | [diff] [blame] | 356 | static int sit_gro_complete(struct sk_buff *skb, int nhoff) |
| 357 | { |
| 358 | skb->encapsulation = 1; |
Tom Herbert | 7e13318 | 2016-05-18 09:06:10 -0700 | [diff] [blame] | 359 | skb_shinfo(skb)->gso_type |= SKB_GSO_IPXIP4; |
Eric Dumazet | feec0cb | 2015-10-19 20:40:17 -0700 | [diff] [blame] | 360 | return ipv6_gro_complete(skb, nhoff); |
| 361 | } |
| 362 | |
Tom Herbert | 815d22e | 2016-05-18 09:06:22 -0700 | [diff] [blame] | 363 | static int ip6ip6_gro_complete(struct sk_buff *skb, int nhoff) |
| 364 | { |
| 365 | skb->encapsulation = 1; |
| 366 | skb_shinfo(skb)->gso_type |= SKB_GSO_IPXIP6; |
| 367 | return ipv6_gro_complete(skb, nhoff); |
| 368 | } |
| 369 | |
Tom Herbert | b8921ca | 2016-05-18 09:06:23 -0700 | [diff] [blame] | 370 | static int ip4ip6_gro_complete(struct sk_buff *skb, int nhoff) |
| 371 | { |
| 372 | skb->encapsulation = 1; |
| 373 | skb_shinfo(skb)->gso_type |= SKB_GSO_IPXIP6; |
| 374 | return inet_gro_complete(skb, nhoff); |
| 375 | } |
| 376 | |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 377 | static struct packet_offload ipv6_packet_offload __read_mostly = { |
| 378 | .type = cpu_to_be16(ETH_P_IPV6), |
Vlad Yasevich | f191a1d | 2012-11-15 08:49:23 +0000 | [diff] [blame] | 379 | .callbacks = { |
Vlad Yasevich | f191a1d | 2012-11-15 08:49:23 +0000 | [diff] [blame] | 380 | .gso_segment = ipv6_gso_segment, |
| 381 | .gro_receive = ipv6_gro_receive, |
| 382 | .gro_complete = ipv6_gro_complete, |
| 383 | }, |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 384 | }; |
| 385 | |
Eric Dumazet | 61c1db7 | 2013-10-20 20:47:30 -0700 | [diff] [blame] | 386 | static const struct net_offload sit_offload = { |
| 387 | .callbacks = { |
Eric Dumazet | 61c1db7 | 2013-10-20 20:47:30 -0700 | [diff] [blame] | 388 | .gso_segment = ipv6_gso_segment, |
Tom Herbert | 815d22e | 2016-05-18 09:06:22 -0700 | [diff] [blame] | 389 | .gro_receive = sit_ip6ip6_gro_receive, |
Eric Dumazet | feec0cb | 2015-10-19 20:40:17 -0700 | [diff] [blame] | 390 | .gro_complete = sit_gro_complete, |
Eric Dumazet | 61c1db7 | 2013-10-20 20:47:30 -0700 | [diff] [blame] | 391 | }, |
| 392 | }; |
| 393 | |
Tom Herbert | b8921ca | 2016-05-18 09:06:23 -0700 | [diff] [blame] | 394 | static const struct net_offload ip4ip6_offload = { |
| 395 | .callbacks = { |
| 396 | .gso_segment = inet_gso_segment, |
| 397 | .gro_receive = ip4ip6_gro_receive, |
| 398 | .gro_complete = ip4ip6_gro_complete, |
| 399 | }, |
| 400 | }; |
| 401 | |
Tom Herbert | 815d22e | 2016-05-18 09:06:22 -0700 | [diff] [blame] | 402 | static const struct net_offload ip6ip6_offload = { |
| 403 | .callbacks = { |
| 404 | .gso_segment = ipv6_gso_segment, |
| 405 | .gro_receive = sit_ip6ip6_gro_receive, |
| 406 | .gro_complete = ip6ip6_gro_complete, |
| 407 | }, |
| 408 | }; |
Vlad Yasevich | c6b641a | 2012-11-15 08:49:22 +0000 | [diff] [blame] | 409 | static int __init ipv6_offload_init(void) |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 410 | { |
Vlad Yasevich | c6b641a | 2012-11-15 08:49:22 +0000 | [diff] [blame] | 411 | |
| 412 | if (tcpv6_offload_init() < 0) |
| 413 | pr_crit("%s: Cannot add TCP protocol offload\n", __func__); |
Vlad Yasevich | c6b641a | 2012-11-15 08:49:22 +0000 | [diff] [blame] | 414 | if (ipv6_exthdrs_offload_init() < 0) |
| 415 | pr_crit("%s: Cannot add EXTHDRS protocol offload\n", __func__); |
| 416 | |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 417 | dev_add_offload(&ipv6_packet_offload); |
Eric Dumazet | 61c1db7 | 2013-10-20 20:47:30 -0700 | [diff] [blame] | 418 | |
| 419 | inet_add_offload(&sit_offload, IPPROTO_IPV6); |
Tom Herbert | 815d22e | 2016-05-18 09:06:22 -0700 | [diff] [blame] | 420 | inet6_add_offload(&ip6ip6_offload, IPPROTO_IPV6); |
Tom Herbert | b8921ca | 2016-05-18 09:06:23 -0700 | [diff] [blame] | 421 | inet6_add_offload(&ip4ip6_offload, IPPROTO_IPIP); |
Eric Dumazet | 61c1db7 | 2013-10-20 20:47:30 -0700 | [diff] [blame] | 422 | |
Vlad Yasevich | c6b641a | 2012-11-15 08:49:22 +0000 | [diff] [blame] | 423 | return 0; |
Vlad Yasevich | d1da932 | 2012-11-15 08:49:16 +0000 | [diff] [blame] | 424 | } |
| 425 | |
Vlad Yasevich | c6b641a | 2012-11-15 08:49:22 +0000 | [diff] [blame] | 426 | fs_initcall(ipv6_offload_init); |