blob: 96253154db3a0d0fdae3da0440214ec8e0d14e1d [file] [log] [blame]
Vlad Yasevich8663e022012-11-15 08:49:17 +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 * TCPv6 GSO/GRO support
11 */
12#include <linux/skbuff.h>
13#include <net/protocol.h>
14#include <net/tcp.h>
15#include <net/ip6_checksum.h>
16#include "ip6_offload.h"
17
18static int tcp_v6_gso_send_check(struct sk_buff *skb)
19{
Vlad Yasevich8663e022012-11-15 08:49:17 +000020 return 0;
21}
22
23static struct sk_buff **tcp6_gro_receive(struct sk_buff **head,
24 struct sk_buff *skb)
25{
Herbert Xucc5c00b2013-11-22 10:31:29 +080026 /* Don't bother verifying checksum if we're going to flush anyway. */
Tom Herbert149d0772014-08-22 13:34:30 -070027 if (!NAPI_GRO_CB(skb)->flush &&
28 skb_gro_checksum_validate(skb, IPPROTO_TCP,
29 ip6_gro_compute_pseudo)) {
Vlad Yasevich8663e022012-11-15 08:49:17 +000030 NAPI_GRO_CB(skb)->flush = 1;
31 return NULL;
Vlad Yasevich8663e022012-11-15 08:49:17 +000032 }
33
34 return tcp_gro_receive(head, skb);
35}
36
Jerry Chu299603e82013-12-11 20:53:45 -080037static int tcp6_gro_complete(struct sk_buff *skb, int thoff)
Vlad Yasevich8663e022012-11-15 08:49:17 +000038{
39 const struct ipv6hdr *iph = ipv6_hdr(skb);
40 struct tcphdr *th = tcp_hdr(skb);
41
Jerry Chu299603e82013-12-11 20:53:45 -080042 th->check = ~tcp_v6_check(skb->len - thoff, &iph->saddr,
43 &iph->daddr, 0);
Jerry Chuc3caf112014-07-14 15:54:46 -070044 skb_shinfo(skb)->gso_type |= SKB_GSO_TCPV6;
Vlad Yasevich8663e022012-11-15 08:49:17 +000045
46 return tcp_gro_complete(skb);
47}
48
Tom Herbertd020f8f2014-09-20 14:52:28 -070049struct sk_buff *tcp6_gso_segment(struct sk_buff *skb,
50 netdev_features_t features)
51{
52 struct tcphdr *th;
53
54 if (!pskb_may_pull(skb, sizeof(*th)))
55 return ERR_PTR(-EINVAL);
56
57 if (unlikely(skb->ip_summed != CHECKSUM_PARTIAL)) {
58 const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
59 struct tcphdr *th = tcp_hdr(skb);
60
61 /* Set up pseudo header, usually expect stack to have done
62 * this.
63 */
64
65 th->check = 0;
66 skb->ip_summed = CHECKSUM_PARTIAL;
67 __tcp_v6_send_check(skb, &ipv6h->saddr, &ipv6h->daddr);
68 }
69
70 return tcp_gso_segment(skb, features);
71}
Vlad Yasevich8663e022012-11-15 08:49:17 +000072static const struct net_offload tcpv6_offload = {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +000073 .callbacks = {
74 .gso_send_check = tcp_v6_gso_send_check,
Tom Herbertd020f8f2014-09-20 14:52:28 -070075 .gso_segment = tcp6_gso_segment,
Vlad Yasevichf191a1d2012-11-15 08:49:23 +000076 .gro_receive = tcp6_gro_receive,
77 .gro_complete = tcp6_gro_complete,
78 },
Vlad Yasevich8663e022012-11-15 08:49:17 +000079};
80
81int __init tcpv6_offload_init(void)
82{
83 return inet6_add_offload(&tcpv6_offload, IPPROTO_TCP);
84}