2 * IPV6 GSO/GRO offload support
3 * Linux INET6 implementation
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.
10 * TCPv6 GSO/GRO support
12 #include <linux/skbuff.h>
13 #include <net/protocol.h>
15 #include <net/ip6_checksum.h>
16 #include "ip6_offload.h"
18 static struct sk_buff
*tcp6_gro_receive(struct list_head
*head
,
21 /* Don't bother verifying checksum if we're going to flush anyway. */
22 if (!NAPI_GRO_CB(skb
)->flush
&&
23 skb_gro_checksum_validate(skb
, IPPROTO_TCP
,
24 ip6_gro_compute_pseudo
)) {
25 NAPI_GRO_CB(skb
)->flush
= 1;
29 return tcp_gro_receive(head
, skb
);
32 static int tcp6_gro_complete(struct sk_buff
*skb
, int thoff
)
34 const struct ipv6hdr
*iph
= ipv6_hdr(skb
);
35 struct tcphdr
*th
= tcp_hdr(skb
);
37 th
->check
= ~tcp_v6_check(skb
->len
- thoff
, &iph
->saddr
,
39 skb_shinfo(skb
)->gso_type
|= SKB_GSO_TCPV6
;
41 return tcp_gro_complete(skb
);
44 static struct sk_buff
*tcp6_gso_segment(struct sk_buff
*skb
,
45 netdev_features_t features
)
49 if (!(skb_shinfo(skb
)->gso_type
& SKB_GSO_TCPV6
))
50 return ERR_PTR(-EINVAL
);
52 if (!pskb_may_pull(skb
, sizeof(*th
)))
53 return ERR_PTR(-EINVAL
);
55 if (unlikely(skb
->ip_summed
!= CHECKSUM_PARTIAL
)) {
56 const struct ipv6hdr
*ipv6h
= ipv6_hdr(skb
);
57 struct tcphdr
*th
= tcp_hdr(skb
);
59 /* Set up pseudo header, usually expect stack to have done
64 skb
->ip_summed
= CHECKSUM_PARTIAL
;
65 __tcp_v6_send_check(skb
, &ipv6h
->saddr
, &ipv6h
->daddr
);
68 return tcp_gso_segment(skb
, features
);
70 static const struct net_offload tcpv6_offload
= {
72 .gso_segment
= tcp6_gso_segment
,
73 .gro_receive
= tcp6_gro_receive
,
74 .gro_complete
= tcp6_gro_complete
,
78 int __init
tcpv6_offload_init(void)
80 return inet6_add_offload(&tcpv6_offload
, IPPROTO_TCP
);