blob: 0bb7d54cf2cb6c8696d954cc9a4a7356ed26e6fa [file] [log] [blame]
Steffen Klassert7785bba2017-02-15 09:40:00 +01001/*
2 * IPV6 GSO/GRO offload support
3 * Linux INET implementation
4 *
5 * Copyright (C) 2016 secunet Security Networks AG
6 * Author: Steffen Klassert <steffen.klassert@secunet.com>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms and conditions of the GNU General Public License,
10 * version 2, as published by the Free Software Foundation.
11 *
12 * ESP GRO support
13 */
14
15#include <linux/skbuff.h>
16#include <linux/init.h>
17#include <net/protocol.h>
18#include <crypto/aead.h>
19#include <crypto/authenc.h>
20#include <linux/err.h>
21#include <linux/module.h>
22#include <net/ip.h>
23#include <net/xfrm.h>
24#include <net/esp.h>
25#include <linux/scatterlist.h>
26#include <linux/kernel.h>
27#include <linux/slab.h>
28#include <linux/spinlock.h>
29#include <net/ip6_route.h>
30#include <net/ipv6.h>
31#include <linux/icmpv6.h>
32
Yossi Kupermanca3a1b82017-06-22 11:37:11 +030033static __u16 esp6_nexthdr_esp_offset(struct ipv6hdr *ipv6_hdr, int nhlen)
34{
35 int off = sizeof(struct ipv6hdr);
36 struct ipv6_opt_hdr *exthdr;
37
38 if (likely(ipv6_hdr->nexthdr == NEXTHDR_ESP))
39 return offsetof(struct ipv6hdr, nexthdr);
40
41 while (off < nhlen) {
42 exthdr = (void *)ipv6_hdr + off;
43 if (exthdr->nexthdr == NEXTHDR_ESP)
44 return off;
45
46 off += ipv6_optlen(exthdr);
47 }
48
49 return 0;
50}
51
Steffen Klassert7785bba2017-02-15 09:40:00 +010052static struct sk_buff **esp6_gro_receive(struct sk_buff **head,
53 struct sk_buff *skb)
54{
55 int offset = skb_gro_offset(skb);
56 struct xfrm_offload *xo;
57 struct xfrm_state *x;
58 __be32 seq;
59 __be32 spi;
Yossi Kupermanca3a1b82017-06-22 11:37:11 +030060 int nhoff;
Steffen Klassert7785bba2017-02-15 09:40:00 +010061 int err;
62
63 skb_pull(skb, offset);
64
65 if ((err = xfrm_parse_spi(skb, IPPROTO_ESP, &spi, &seq)) != 0)
66 goto out;
67
Steffen Klassert7785bba2017-02-15 09:40:00 +010068 xo = xfrm_offload(skb);
Steffen Klassertbcd1f8a2017-04-14 10:07:49 +020069 if (!xo || !(xo->flags & CRYPTO_DONE)) {
70 err = secpath_set(skb);
71 if (err)
72 goto out;
73
74 if (skb->sp->len == XFRM_MAX_DEPTH)
75 goto out;
76
77 x = xfrm_state_lookup(dev_net(skb->dev), skb->mark,
78 (xfrm_address_t *)&ipv6_hdr(skb)->daddr,
79 spi, IPPROTO_ESP, AF_INET6);
80 if (!x)
81 goto out;
82
83 skb->sp->xvec[skb->sp->len++] = x;
84 skb->sp->olen++;
85
86 xo = xfrm_offload(skb);
87 if (!xo) {
88 xfrm_state_put(x);
89 goto out;
90 }
Steffen Klassert7785bba2017-02-15 09:40:00 +010091 }
Steffen Klassertbcd1f8a2017-04-14 10:07:49 +020092
Steffen Klassert7785bba2017-02-15 09:40:00 +010093 xo->flags |= XFRM_GRO;
94
Yossi Kupermanca3a1b82017-06-22 11:37:11 +030095 nhoff = esp6_nexthdr_esp_offset(ipv6_hdr(skb), offset);
96 if (!nhoff)
97 goto out;
98
99 IP6CB(skb)->nhoff = nhoff;
Steffen Klassert7785bba2017-02-15 09:40:00 +0100100 XFRM_TUNNEL_SKB_CB(skb)->tunnel.ip6 = NULL;
101 XFRM_SPI_SKB_CB(skb)->family = AF_INET6;
102 XFRM_SPI_SKB_CB(skb)->daddroff = offsetof(struct ipv6hdr, daddr);
103 XFRM_SPI_SKB_CB(skb)->seq = seq;
104
105 /* We don't need to handle errors from xfrm_input, it does all
106 * the error handling and frees the resources on error. */
107 xfrm_input(skb, IPPROTO_ESP, spi, -2);
108
109 return ERR_PTR(-EINPROGRESS);
110out:
111 skb_push(skb, offset);
112 NAPI_GRO_CB(skb)->same_flow = 0;
113 NAPI_GRO_CB(skb)->flush = 1;
114
115 return NULL;
116}
117
Steffen Klassert7862b402017-04-14 10:06:50 +0200118static void esp6_gso_encap(struct xfrm_state *x, struct sk_buff *skb)
119{
120 struct ip_esp_hdr *esph;
121 struct ipv6hdr *iph = ipv6_hdr(skb);
122 struct xfrm_offload *xo = xfrm_offload(skb);
123 int proto = iph->nexthdr;
124
125 skb_push(skb, -skb_network_offset(skb));
126 esph = ip_esp_hdr(skb);
127 *skb_mac_header(skb) = IPPROTO_ESP;
128
129 esph->spi = x->id.spi;
130 esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq.output.low);
131
132 xo->proto = proto;
133}
134
135static struct sk_buff *esp6_gso_segment(struct sk_buff *skb,
136 netdev_features_t features)
137{
Steffen Klassert7862b402017-04-14 10:06:50 +0200138 struct xfrm_state *x;
139 struct ip_esp_hdr *esph;
140 struct crypto_aead *aead;
Steffen Klassert7862b402017-04-14 10:06:50 +0200141 netdev_features_t esp_features = features;
142 struct xfrm_offload *xo = xfrm_offload(skb);
143
Colin Ian Kingffa6f572017-04-18 15:06:53 +0100144 if (!xo)
Steffen Klassert3dca3f32017-12-20 10:41:31 +0100145 return ERR_PTR(-EINVAL);
Steffen Klassert7862b402017-04-14 10:06:50 +0200146
147 x = skb->sp->xvec[skb->sp->len - 1];
148 aead = x->data;
149 esph = ip_esp_hdr(skb);
150
151 if (esph->spi != x->id.spi)
Steffen Klassert3dca3f32017-12-20 10:41:31 +0100152 return ERR_PTR(-EINVAL);
Steffen Klassert7862b402017-04-14 10:06:50 +0200153
154 if (!pskb_may_pull(skb, sizeof(*esph) + crypto_aead_ivsize(aead)))
Steffen Klassert3dca3f32017-12-20 10:41:31 +0100155 return ERR_PTR(-EINVAL);
Steffen Klassert7862b402017-04-14 10:06:50 +0200156
157 __skb_pull(skb, sizeof(*esph) + crypto_aead_ivsize(aead));
158
159 skb->encap_hdr_csum = 1;
160
Steffen Klassert3dca3f32017-12-20 10:41:31 +0100161 if (!(features & NETIF_F_HW_ESP) || !x->xso.offload_handle ||
162 (x->xso.dev != skb->dev))
Steffen Klassert7862b402017-04-14 10:06:50 +0200163 esp_features = features & ~(NETIF_F_SG | NETIF_F_CSUM_MASK);
164
Steffen Klassert3dca3f32017-12-20 10:41:31 +0100165 xo->flags |= XFRM_GSO_SEGMENT;
Steffen Klassert7862b402017-04-14 10:06:50 +0200166
Steffen Klassert3dca3f32017-12-20 10:41:31 +0100167 return x->outer_mode->gso_segment(x, skb, esp_features);
Steffen Klassert7862b402017-04-14 10:06:50 +0200168}
169
Steffen Klassert383d0352017-04-14 10:06:42 +0200170static int esp6_input_tail(struct xfrm_state *x, struct sk_buff *skb)
171{
172 struct crypto_aead *aead = x->data;
Ilan Tayarie51a6472017-08-01 12:49:05 +0300173 struct xfrm_offload *xo = xfrm_offload(skb);
Steffen Klassert383d0352017-04-14 10:06:42 +0200174
175 if (!pskb_may_pull(skb, sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead)))
176 return -EINVAL;
177
Ilan Tayarie51a6472017-08-01 12:49:05 +0300178 if (!(xo->flags & CRYPTO_DONE))
179 skb->ip_summed = CHECKSUM_NONE;
Steffen Klassert383d0352017-04-14 10:06:42 +0200180
181 return esp6_input_done2(skb, 0);
182}
183
184static int esp6_xmit(struct xfrm_state *x, struct sk_buff *skb, netdev_features_t features)
185{
Steffen Klassert3dca3f32017-12-20 10:41:31 +0100186 int len;
Steffen Klassert383d0352017-04-14 10:06:42 +0200187 int err;
188 int alen;
189 int blksize;
190 struct xfrm_offload *xo;
191 struct ip_esp_hdr *esph;
192 struct crypto_aead *aead;
193 struct esp_info esp;
194 bool hw_offload = true;
Steffen Klassert3dca3f32017-12-20 10:41:31 +0100195 __u32 seq;
Steffen Klassert383d0352017-04-14 10:06:42 +0200196
197 esp.inplace = true;
198
199 xo = xfrm_offload(skb);
200
201 if (!xo)
202 return -EINVAL;
203
Ilan Tayari8f92e032017-04-19 08:41:01 +0300204 if (!(features & NETIF_F_HW_ESP) || !x->xso.offload_handle ||
205 (x->xso.dev != skb->dev)) {
Steffen Klassert383d0352017-04-14 10:06:42 +0200206 xo->flags |= CRYPTO_FALLBACK;
Ilan Tayari8f92e032017-04-19 08:41:01 +0300207 hw_offload = false;
Steffen Klassert383d0352017-04-14 10:06:42 +0200208 }
209
210 esp.proto = xo->proto;
211
212 /* skb is pure payload to encrypt */
213
214 aead = x->data;
215 alen = crypto_aead_authsize(aead);
216
217 esp.tfclen = 0;
218 /* XXX: Add support for tfc padding here. */
219
220 blksize = ALIGN(crypto_aead_blocksize(aead), 4);
221 esp.clen = ALIGN(skb->len + 2 + esp.tfclen, blksize);
222 esp.plen = esp.clen - skb->len - esp.tfclen;
223 esp.tailen = esp.tfclen + esp.plen + alen;
224
225 if (!hw_offload || (hw_offload && !skb_is_gso(skb))) {
226 esp.nfrags = esp6_output_head(x, skb, &esp);
227 if (esp.nfrags < 0)
228 return esp.nfrags;
229 }
230
Steffen Klassert3dca3f32017-12-20 10:41:31 +0100231 seq = xo->seq.low;
232
Steffen Klassert383d0352017-04-14 10:06:42 +0200233 esph = ip_esp_hdr(skb);
234 esph->spi = x->id.spi;
235
236 skb_push(skb, -skb_network_offset(skb));
237
238 if (xo->flags & XFRM_GSO_SEGMENT) {
Steffen Klassert3dca3f32017-12-20 10:41:31 +0100239 esph->seq_no = htonl(seq);
Steffen Klassert383d0352017-04-14 10:06:42 +0200240
Steffen Klassert3dca3f32017-12-20 10:41:31 +0100241 if (!skb_is_gso(skb))
242 xo->seq.low++;
243 else
244 xo->seq.low += skb_shinfo(skb)->gso_segs;
Steffen Klassert383d0352017-04-14 10:06:42 +0200245 }
246
Steffen Klassert3dca3f32017-12-20 10:41:31 +0100247 esp.seqno = cpu_to_be64(xo->seq.low + ((u64)xo->seq.hi << 32));
248
249 len = skb->len - sizeof(struct ipv6hdr);
250 if (len > IPV6_MAXPLEN)
251 len = 0;
252
253 ipv6_hdr(skb)->payload_len = htons(len);
254
Ilan Tayari8f92e032017-04-19 08:41:01 +0300255 if (hw_offload)
Steffen Klassert383d0352017-04-14 10:06:42 +0200256 return 0;
257
Steffen Klassert383d0352017-04-14 10:06:42 +0200258 err = esp6_output_tail(x, skb, &esp);
Steffen Klassert4ff03082017-08-07 08:31:07 +0200259 if (err)
Steffen Klassert383d0352017-04-14 10:06:42 +0200260 return err;
261
262 secpath_reset(skb);
263
264 return 0;
265}
266
Steffen Klassert7785bba2017-02-15 09:40:00 +0100267static const struct net_offload esp6_offload = {
268 .callbacks = {
269 .gro_receive = esp6_gro_receive,
Steffen Klassert7862b402017-04-14 10:06:50 +0200270 .gso_segment = esp6_gso_segment,
Steffen Klassert7785bba2017-02-15 09:40:00 +0100271 },
272};
273
Steffen Klassert383d0352017-04-14 10:06:42 +0200274static const struct xfrm_type_offload esp6_type_offload = {
275 .description = "ESP6 OFFLOAD",
276 .owner = THIS_MODULE,
277 .proto = IPPROTO_ESP,
278 .input_tail = esp6_input_tail,
279 .xmit = esp6_xmit,
Steffen Klassert7862b402017-04-14 10:06:50 +0200280 .encap = esp6_gso_encap,
Steffen Klassert383d0352017-04-14 10:06:42 +0200281};
282
Steffen Klassert7785bba2017-02-15 09:40:00 +0100283static int __init esp6_offload_init(void)
284{
Steffen Klassert383d0352017-04-14 10:06:42 +0200285 if (xfrm_register_type_offload(&esp6_type_offload, AF_INET6) < 0) {
286 pr_info("%s: can't add xfrm type offload\n", __func__);
287 return -EAGAIN;
288 }
289
Steffen Klassert7785bba2017-02-15 09:40:00 +0100290 return inet6_add_offload(&esp6_offload, IPPROTO_ESP);
291}
292
293static void __exit esp6_offload_exit(void)
294{
Steffen Klassert383d0352017-04-14 10:06:42 +0200295 if (xfrm_unregister_type_offload(&esp6_type_offload, AF_INET6) < 0)
296 pr_info("%s: can't remove xfrm type offload\n", __func__);
297
Steffen Klassert7785bba2017-02-15 09:40:00 +0100298 inet6_del_offload(&esp6_offload, IPPROTO_ESP);
299}
300
301module_init(esp6_offload_init);
302module_exit(esp6_offload_exit);
303MODULE_LICENSE("GPL");
304MODULE_AUTHOR("Steffen Klassert <steffen.klassert@secunet.com>");
Ilan Tayariffdb5212017-08-01 12:49:08 +0300305MODULE_ALIAS_XFRM_OFFLOAD_TYPE(AF_INET6, XFRM_PROTO_ESP);