blob: 5c045691c30203d3f8d2d12957e283bc01cae259 [file] [log] [blame]
Vlad Yasevichd1da9322012-11-15 08:49:16 +00001/*
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 Yasevichc6b641a2012-11-15 08:49:22 +000015#include <linux/printk.h>
Vlad Yasevichd1da9322012-11-15 08:49:16 +000016
17#include <net/protocol.h>
18#include <net/ipv6.h>
Tom Herbertb8921ca2016-05-18 09:06:23 -070019#include <net/inet_common.h>
Vlad Yasevichd1da9322012-11-15 08:49:16 +000020
21#include "ip6_offload.h"
22
Paolo Abeni028e0a42018-12-14 11:51:59 +010023/* 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 Yasevichd1da9322012-11-15 08:49:16 +000040static 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 RongQingfc6fb412014-10-18 17:27:42 +080067 opth = (void *)skb->data;
Vlad Yasevichd1da9322012-11-15 08:49:16 +000068 proto = opth->nexthdr;
69 __skb_pull(skb, len);
70 }
71
72 return proto;
73}
74
Vlad Yasevichd1da9322012-11-15 08:49:16 +000075static 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 Duyck802ab552016-04-10 21:45:03 -040083 unsigned int payload_len;
Vlad Yasevichd1da9322012-11-15 08:49:16 +000084 u8 *prevhdr;
85 int offset = 0;
Hannes Frederic Sowa91a48a22014-02-24 00:48:05 +010086 bool encap, udpfrag;
Eric Dumazetd3e5e002013-10-20 20:47:29 -070087 int nhoff;
Steffen Klassert07b26c92016-09-19 12:58:47 +020088 bool gso_partial;
Vlad Yasevichd1da9322012-11-15 08:49:16 +000089
Eric Dumazetd3e5e002013-10-20 20:47:29 -070090 skb_reset_network_header(skb);
91 nhoff = skb_network_header(skb) - skb_mac_header(skb);
Vlad Yasevichd1da9322012-11-15 08:49:16 +000092 if (unlikely(!pskb_may_pull(skb, sizeof(*ipv6h))))
93 goto out;
94
Hannes Frederic Sowa91a48a22014-02-24 00:48:05 +010095 encap = SKB_GSO_CB(skb)->encap_level > 0;
96 if (encap)
Florian Westphal1e16aa32014-10-20 13:49:16 +020097 features &= skb->dev->hw_enc_features;
Eric Dumazetd3e5e002013-10-20 20:47:29 -070098 SKB_GSO_CB(skb)->encap_level += sizeof(*ipv6h);
99
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000100 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 Dumazetb917eb12013-10-18 14:43:55 -0700105
Hannes Frederic Sowa91a48a22014-02-24 00:48:05 +0100106 if (skb->encapsulation &&
Tom Herbert7e133182016-05-18 09:06:10 -0700107 skb_shinfo(skb)->gso_type & (SKB_GSO_IPXIP4 | SKB_GSO_IPXIP6))
Willem de Bruijnee80d1e2018-04-26 13:42:16 -0400108 udpfrag = proto == IPPROTO_UDP && encap &&
109 (skb_shinfo(skb)->gso_type & SKB_GSO_UDP);
Hannes Frederic Sowa91a48a22014-02-24 00:48:05 +0100110 else
Willem de Bruijnee80d1e2018-04-26 13:42:16 -0400111 udpfrag = proto == IPPROTO_UDP && !skb->encapsulation &&
112 (skb_shinfo(skb)->gso_type & SKB_GSO_UDP);
Hannes Frederic Sowa91a48a22014-02-24 00:48:05 +0100113
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000114 ops = rcu_dereference(inet6_offloads[proto]);
Vlad Yasevichf191a1d2012-11-15 08:49:23 +0000115 if (likely(ops && ops->callbacks.gso_segment)) {
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000116 skb_reset_transport_header(skb);
Vlad Yasevichf191a1d2012-11-15 08:49:23 +0000117 segs = ops->callbacks.gso_segment(skb, features);
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000118 }
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000119
Artem Savkov6b6ebb62016-12-01 14:06:04 +0100120 if (IS_ERR_OR_NULL(segs))
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000121 goto out;
122
Steffen Klassert07b26c92016-09-19 12:58:47 +0200123 gso_partial = !!(skb_shinfo(segs)->gso_type & SKB_GSO_PARTIAL);
124
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000125 for (skb = segs; skb; skb = skb->next) {
Eric Dumazetd3e5e002013-10-20 20:47:29 -0700126 ipv6h = (struct ipv6hdr *)(skb_mac_header(skb) + nhoff);
Alexey Kodanev3d0241d2017-10-06 19:02:35 +0300127 if (gso_partial && skb_is_gso(skb))
Alexander Duyck802ab552016-04-10 21:45:03 -0400128 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 Dumazetd3e5e002013-10-20 20:47:29 -0700134 skb->network_header = (u8 *)ipv6h - skb->head;
Toke Høiland-Jørgensenc56cae22018-09-13 16:43:07 +0200135 skb_reset_mac_len(skb);
Eric Dumazetd3e5e002013-10-20 20:47:29 -0700136
Hannes Frederic Sowa91a48a22014-02-24 00:48:05 +0100137 if (udpfrag) {
David S. Miller7dd7eb92017-05-17 22:54:11 -0400138 int err = ip6_find_1stfragopt(skb, &prevhdr);
David S. Millere3e86b52017-06-04 21:41:10 -0400139 if (err < 0) {
140 kfree_skb_list(segs);
David S. Miller7dd7eb92017-05-17 22:54:11 -0400141 return ERR_PTR(err);
David S. Millere3e86b52017-06-04 21:41:10 -0400142 }
David S. Miller7dd7eb92017-05-17 22:54:11 -0400143 fptr = (struct frag_hdr *)((u8 *)ipv6h + err);
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000144 fptr->frag_off = htons(offset);
Ian Morris53b24b82015-03-29 14:00:05 +0100145 if (skb->next)
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000146 fptr->frag_off |= htons(IP6_MF);
147 offset += (ntohs(ipv6h->payload_len) -
148 sizeof(struct frag_hdr));
149 }
Hannes Frederic Sowa91a48a22014-02-24 00:48:05 +0100150 if (encap)
151 skb_reset_inner_headers(skb);
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000152 }
153
154out:
155 return segs;
156}
157
Jerry Chu299603e82013-12-11 20:53:45 -0800158/* Return the total length of all the extension hdrs, following the same
159 * logic in ipv6_gso_pull_exthdrs() when parsing ext-hdrs.
160 */
161static int ipv6_exthdrs_len(struct ipv6hdr *iph,
162 const struct net_offload **opps)
163{
Jerry Chu810c23a2013-12-15 18:48:07 -0800164 struct ipv6_opt_hdr *opth = (void *)iph;
165 int len = 0, proto, optlen = sizeof(*iph);
Jerry Chu299603e82013-12-11 20:53:45 -0800166
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 Chu810c23a2013-12-15 18:48:07 -0800176 opth = (void *)opth + optlen;
177 optlen = ipv6_optlen(opth);
Jerry Chu299603e82013-12-11 20:53:45 -0800178 len += optlen;
179 proto = opth->nexthdr;
180 }
181 return len;
182}
183
Paolo Abeni028e0a42018-12-14 11:51:59 +0100184INDIRECT_CALLABLE_DECLARE(struct sk_buff *tcp6_gro_receive(struct list_head *,
185 struct sk_buff *));
186INDIRECT_CALLABLE_DECLARE(struct sk_buff *udp6_gro_receive(struct list_head *,
187 struct sk_buff *));
Paolo Abeniaaa5d902018-12-14 11:51:58 +0100188INDIRECT_CALLABLE_SCOPE struct sk_buff *ipv6_gro_receive(struct list_head *head,
189 struct sk_buff *skb)
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000190{
191 const struct net_offload *ops;
David Millerd4546c22018-06-24 14:13:49 +0900192 struct sk_buff *pp = NULL;
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000193 struct sk_buff *p;
194 struct ipv6hdr *iph;
195 unsigned int nlen;
196 unsigned int hlen;
197 unsigned int off;
Jerry Chubf5a7552014-01-07 10:23:19 -0800198 u16 flush = 1;
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000199 int proto;
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000200
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 Chu299603e82013-12-11 20:53:45 -0800210 skb_set_network_header(skb, off);
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000211 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 Yasevichf191a1d2012-11-15 08:49:23 +0000219 if (!ops || !ops->callbacks.gro_receive) {
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000220 __pskb_pull(skb, skb_gro_offset(skb));
Herbert Xu57ea52a2017-01-10 12:24:15 -0800221 skb_gro_frag0_invalidate(skb);
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000222 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 Yasevichf191a1d2012-11-15 08:49:23 +0000228 if (!ops || !ops->callbacks.gro_receive)
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000229 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 Millerd4546c22018-06-24 14:13:49 +0900239 list_for_each_entry(p, head, list) {
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000240 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 Chu299603e82013-12-11 20:53:45 -0800246 iph2 = (struct ipv6hdr *)(p->data + off);
Ian Morris67ba4152014-08-24 21:53:10 +0100247 first_word = *(__be32 *)iph ^ *(__be32 *)iph2;
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000248
Jerry Chu299603e82013-12-11 20:53:45 -0800249 /* 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 Dumazet0b215b92018-11-06 14:25:52 -0800253 * memcmp() alone below is sufficient, right?
Jerry Chu299603e82013-12-11 20:53:45 -0800254 */
255 if ((first_word & htonl(0xF00FFFFF)) ||
Eric Dumazet0b215b92018-11-06 14:25:52 -0800256 !ipv6_addr_equal(&iph->saddr, &iph2->saddr) ||
257 !ipv6_addr_equal(&iph->daddr, &iph2->daddr) ||
258 *(u16 *)&iph->nexthdr != *(u16 *)&iph2->nexthdr) {
259not_same_flow:
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000260 NAPI_GRO_CB(p)->same_flow = 0;
261 continue;
262 }
Eric Dumazet0b215b92018-11-06 14:25:52 -0800263 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 Yasevichd1da9322012-11-15 08:49:16 +0000268 /* 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 Herbert03d56da2014-09-09 11:23:14 -0700271
Alexander Duyck15305452016-04-10 21:44:57 -0400272 /* 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 Yasevichd1da9322012-11-15 08:49:16 +0000277 }
278
Alexander Duyck15305452016-04-10 21:44:57 -0400279 NAPI_GRO_CB(skb)->is_atomic = true;
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000280 NAPI_GRO_CB(skb)->flush |= flush;
281
Eric Dumazet4de462a2014-05-19 21:56:34 -0700282 skb_gro_postpull_rcsum(skb, iph, nlen);
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000283
Paolo Abeni028e0a42018-12-14 11:51:59 +0100284 pp = indirect_call_gro_receive_l4(tcp6_gro_receive, udp6_gro_receive,
285 ops->callbacks.gro_receive, head, skb);
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000286
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000287out_unlock:
288 rcu_read_unlock();
289
290out:
Steffen Klassert5f114162017-02-15 09:39:39 +0100291 skb_gro_flush_final(skb, pp, flush);
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000292
293 return pp;
294}
295
David Millerd4546c22018-06-24 14:13:49 +0900296static struct sk_buff *sit_ip6ip6_gro_receive(struct list_head *head,
297 struct sk_buff *skb)
Jesse Grossfac8e0f2016-03-19 09:32:01 -0700298{
Tom Herbert815d22e2016-05-18 09:06:22 -0700299 /* Common GRO receive for SIT and IP6IP6 */
300
Jesse Grossfac8e0f2016-03-19 09:32:01 -0700301 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 Millerd4546c22018-06-24 14:13:49 +0900311static struct sk_buff *ip4ip6_gro_receive(struct list_head *head,
312 struct sk_buff *skb)
Tom Herbertb8921ca2016-05-18 09:06:23 -0700313{
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 Abeni028e0a42018-12-14 11:51:59 +0100326INDIRECT_CALLABLE_DECLARE(int tcp6_gro_complete(struct sk_buff *, int));
327INDIRECT_CALLABLE_DECLARE(int udp6_gro_complete(struct sk_buff *, int));
Paolo Abeniaaa5d902018-12-14 11:51:58 +0100328INDIRECT_CALLABLE_SCOPE int ipv6_gro_complete(struct sk_buff *skb, int nhoff)
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000329{
330 const struct net_offload *ops;
Jerry Chu299603e82013-12-11 20:53:45 -0800331 struct ipv6hdr *iph = (struct ipv6hdr *)(skb->data + nhoff);
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000332 int err = -ENOSYS;
333
Paolo Abeni294acf12017-03-07 18:33:31 +0100334 if (skb->encapsulation) {
335 skb_set_inner_protocol(skb, cpu_to_be16(ETH_P_IPV6));
Eric Dumazetfeec0cb2015-10-19 20:40:17 -0700336 skb_set_inner_network_header(skb, nhoff);
Paolo Abeni294acf12017-03-07 18:33:31 +0100337 }
Eric Dumazetfeec0cb2015-10-19 20:40:17 -0700338
Jerry Chu299603e82013-12-11 20:53:45 -0800339 iph->payload_len = htons(skb->len - nhoff - sizeof(*iph));
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000340
341 rcu_read_lock();
Jerry Chu299603e82013-12-11 20:53:45 -0800342
343 nhoff += sizeof(*iph) + ipv6_exthdrs_len(iph, &ops);
Vlad Yasevichf191a1d2012-11-15 08:49:23 +0000344 if (WARN_ON(!ops || !ops->callbacks.gro_complete))
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000345 goto out_unlock;
346
Paolo Abeni028e0a42018-12-14 11:51:59 +0100347 err = INDIRECT_CALL_L4(ops->callbacks.gro_complete, tcp6_gro_complete,
348 udp6_gro_complete, skb, nhoff);
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000349
350out_unlock:
351 rcu_read_unlock();
352
353 return err;
354}
355
Eric Dumazetfeec0cb2015-10-19 20:40:17 -0700356static int sit_gro_complete(struct sk_buff *skb, int nhoff)
357{
358 skb->encapsulation = 1;
Tom Herbert7e133182016-05-18 09:06:10 -0700359 skb_shinfo(skb)->gso_type |= SKB_GSO_IPXIP4;
Eric Dumazetfeec0cb2015-10-19 20:40:17 -0700360 return ipv6_gro_complete(skb, nhoff);
361}
362
Tom Herbert815d22e2016-05-18 09:06:22 -0700363static 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 Herbertb8921ca2016-05-18 09:06:23 -0700370static 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 Yasevichd1da9322012-11-15 08:49:16 +0000377static struct packet_offload ipv6_packet_offload __read_mostly = {
378 .type = cpu_to_be16(ETH_P_IPV6),
Vlad Yasevichf191a1d2012-11-15 08:49:23 +0000379 .callbacks = {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +0000380 .gso_segment = ipv6_gso_segment,
381 .gro_receive = ipv6_gro_receive,
382 .gro_complete = ipv6_gro_complete,
383 },
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000384};
385
Eric Dumazet61c1db72013-10-20 20:47:30 -0700386static const struct net_offload sit_offload = {
387 .callbacks = {
Eric Dumazet61c1db72013-10-20 20:47:30 -0700388 .gso_segment = ipv6_gso_segment,
Tom Herbert815d22e2016-05-18 09:06:22 -0700389 .gro_receive = sit_ip6ip6_gro_receive,
Eric Dumazetfeec0cb2015-10-19 20:40:17 -0700390 .gro_complete = sit_gro_complete,
Eric Dumazet61c1db72013-10-20 20:47:30 -0700391 },
392};
393
Tom Herbertb8921ca2016-05-18 09:06:23 -0700394static 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 Herbert815d22e2016-05-18 09:06:22 -0700402static 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 Yasevichc6b641a2012-11-15 08:49:22 +0000409static int __init ipv6_offload_init(void)
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000410{
Vlad Yasevichc6b641a2012-11-15 08:49:22 +0000411
412 if (tcpv6_offload_init() < 0)
413 pr_crit("%s: Cannot add TCP protocol offload\n", __func__);
Vlad Yasevichc6b641a2012-11-15 08:49:22 +0000414 if (ipv6_exthdrs_offload_init() < 0)
415 pr_crit("%s: Cannot add EXTHDRS protocol offload\n", __func__);
416
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000417 dev_add_offload(&ipv6_packet_offload);
Eric Dumazet61c1db72013-10-20 20:47:30 -0700418
419 inet_add_offload(&sit_offload, IPPROTO_IPV6);
Tom Herbert815d22e2016-05-18 09:06:22 -0700420 inet6_add_offload(&ip6ip6_offload, IPPROTO_IPV6);
Tom Herbertb8921ca2016-05-18 09:06:23 -0700421 inet6_add_offload(&ip4ip6_offload, IPPROTO_IPIP);
Eric Dumazet61c1db72013-10-20 20:47:30 -0700422
Vlad Yasevichc6b641a2012-11-15 08:49:22 +0000423 return 0;
Vlad Yasevichd1da9322012-11-15 08:49:16 +0000424}
425
Vlad Yasevichc6b641a2012-11-15 08:49:22 +0000426fs_initcall(ipv6_offload_init);