blob: a50d1943dd620189d964a602585e357b3abf33ac [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001/*
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
33static __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
52static 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;
60 int nhoff;
61 int err;
62
63 if (!pskb_pull(skb, offset))
64 return NULL;
65
66 if ((err = xfrm_parse_spi(skb, IPPROTO_ESP, &spi, &seq)) != 0)
67 goto out;
68
69 xo = xfrm_offload(skb);
70 if (!xo || !(xo->flags & CRYPTO_DONE)) {
71 err = secpath_set(skb);
72 if (err)
73 goto out;
74
75 if (skb->sp->len == XFRM_MAX_DEPTH)
76 goto out;
77
78 x = xfrm_state_lookup(dev_net(skb->dev), skb->mark,
79 (xfrm_address_t *)&ipv6_hdr(skb)->daddr,
80 spi, IPPROTO_ESP, AF_INET6);
81 if (!x)
82 goto out;
83
84 skb->sp->xvec[skb->sp->len++] = x;
85 skb->sp->olen++;
86
87 xo = xfrm_offload(skb);
88 if (!xo) {
89 xfrm_state_put(x);
90 goto out;
91 }
92 }
93
94 xo->flags |= XFRM_GRO;
95
96 nhoff = esp6_nexthdr_esp_offset(ipv6_hdr(skb), offset);
97 if (!nhoff)
98 goto out;
99
100 IP6CB(skb)->nhoff = nhoff;
101 XFRM_TUNNEL_SKB_CB(skb)->tunnel.ip6 = NULL;
102 XFRM_SPI_SKB_CB(skb)->family = AF_INET6;
103 XFRM_SPI_SKB_CB(skb)->daddroff = offsetof(struct ipv6hdr, daddr);
104 XFRM_SPI_SKB_CB(skb)->seq = seq;
105
106 /* We don't need to handle errors from xfrm_input, it does all
107 * the error handling and frees the resources on error. */
108 xfrm_input(skb, IPPROTO_ESP, spi, -2);
109
110 return ERR_PTR(-EINPROGRESS);
111out:
112 skb_push(skb, offset);
113 NAPI_GRO_CB(skb)->same_flow = 0;
114 NAPI_GRO_CB(skb)->flush = 1;
115
116 return NULL;
117}
118
119static void esp6_gso_encap(struct xfrm_state *x, struct sk_buff *skb)
120{
121 struct ip_esp_hdr *esph;
122 struct ipv6hdr *iph = ipv6_hdr(skb);
123 struct xfrm_offload *xo = xfrm_offload(skb);
124 u8 proto = iph->nexthdr;
125
126 skb_push(skb, -skb_network_offset(skb));
127
128 if (x->outer_mode->encap == XFRM_MODE_TRANSPORT) {
129 __be16 frag;
130
131 ipv6_skip_exthdr(skb, sizeof(struct ipv6hdr), &proto, &frag);
132 }
133
134 esph = ip_esp_hdr(skb);
135 *skb_mac_header(skb) = IPPROTO_ESP;
136
137 esph->spi = x->id.spi;
138 esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq.output.low);
139
140 xo->proto = proto;
141}
142
143static struct sk_buff *esp6_gso_segment(struct sk_buff *skb,
144 netdev_features_t features)
145{
146 __u32 seq;
147 int err = 0;
148 struct sk_buff *skb2;
149 struct xfrm_state *x;
150 struct ip_esp_hdr *esph;
151 struct crypto_aead *aead;
152 struct sk_buff *segs = ERR_PTR(-EINVAL);
153 netdev_features_t esp_features = features;
154 struct xfrm_offload *xo = xfrm_offload(skb);
155
156 if (!xo)
157 goto out;
158
159 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_ESP))
160 goto out;
161
162 seq = xo->seq.low;
163
164 x = skb->sp->xvec[skb->sp->len - 1];
165 aead = x->data;
166 esph = ip_esp_hdr(skb);
167
168 if (esph->spi != x->id.spi)
169 goto out;
170
171 if (!pskb_may_pull(skb, sizeof(*esph) + crypto_aead_ivsize(aead)))
172 goto out;
173
174 __skb_pull(skb, sizeof(*esph) + crypto_aead_ivsize(aead));
175
176 skb->encap_hdr_csum = 1;
177
178 if (!(features & NETIF_F_HW_ESP))
179 esp_features = features & ~(NETIF_F_SG | NETIF_F_CSUM_MASK);
180
181 segs = x->outer_mode->gso_segment(x, skb, esp_features);
182 if (IS_ERR_OR_NULL(segs))
183 goto out;
184
185 __skb_pull(skb, skb->data - skb_mac_header(skb));
186
187 skb2 = segs;
188 do {
189 struct sk_buff *nskb = skb2->next;
190
191 xo = xfrm_offload(skb2);
192 xo->flags |= XFRM_GSO_SEGMENT;
193 xo->seq.low = seq;
194 xo->seq.hi = xfrm_replay_seqhi(x, seq);
195
196 if(!(features & NETIF_F_HW_ESP))
197 xo->flags |= CRYPTO_FALLBACK;
198
199 x->outer_mode->xmit(x, skb2);
200
201 err = x->type_offload->xmit(x, skb2, esp_features);
202 if (err) {
203 kfree_skb_list(segs);
204 return ERR_PTR(err);
205 }
206
207 if (!skb_is_gso(skb2))
208 seq++;
209 else
210 seq += skb_shinfo(skb2)->gso_segs;
211
212 skb_push(skb2, skb2->mac_len);
213 skb2 = nskb;
214 } while (skb2);
215
216out:
217 return segs;
218}
219
220static int esp6_input_tail(struct xfrm_state *x, struct sk_buff *skb)
221{
222 struct crypto_aead *aead = x->data;
223 struct xfrm_offload *xo = xfrm_offload(skb);
224
225 if (!pskb_may_pull(skb, sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead)))
226 return -EINVAL;
227
228 if (!(xo->flags & CRYPTO_DONE))
229 skb->ip_summed = CHECKSUM_NONE;
230
231 return esp6_input_done2(skb, 0);
232}
233
234static int esp6_xmit(struct xfrm_state *x, struct sk_buff *skb, netdev_features_t features)
235{
236 int err;
237 int alen;
238 int blksize;
239 struct xfrm_offload *xo;
240 struct ip_esp_hdr *esph;
241 struct crypto_aead *aead;
242 struct esp_info esp;
243 bool hw_offload = true;
244
245 esp.inplace = true;
246
247 xo = xfrm_offload(skb);
248
249 if (!xo)
250 return -EINVAL;
251
252 if (!(features & NETIF_F_HW_ESP) || !x->xso.offload_handle ||
253 (x->xso.dev != skb->dev)) {
254 xo->flags |= CRYPTO_FALLBACK;
255 hw_offload = false;
256 }
257
258 esp.proto = xo->proto;
259
260 /* skb is pure payload to encrypt */
261
262 aead = x->data;
263 alen = crypto_aead_authsize(aead);
264
265 esp.tfclen = 0;
266 /* XXX: Add support for tfc padding here. */
267
268 blksize = ALIGN(crypto_aead_blocksize(aead), 4);
269 esp.clen = ALIGN(skb->len + 2 + esp.tfclen, blksize);
270 esp.plen = esp.clen - skb->len - esp.tfclen;
271 esp.tailen = esp.tfclen + esp.plen + alen;
272
273 if (!hw_offload || (hw_offload && !skb_is_gso(skb))) {
274 esp.nfrags = esp6_output_head(x, skb, &esp);
275 if (esp.nfrags < 0)
276 return esp.nfrags;
277 }
278
279 esph = ip_esp_hdr(skb);
280 esph->spi = x->id.spi;
281
282 skb_push(skb, -skb_network_offset(skb));
283
284 if (xo->flags & XFRM_GSO_SEGMENT) {
285 esph->seq_no = htonl(xo->seq.low);
286 } else {
287 int len;
288
289 len = skb->len - sizeof(struct ipv6hdr);
290 if (len > IPV6_MAXPLEN)
291 len = 0;
292
293 ipv6_hdr(skb)->payload_len = htons(len);
294 }
295
296 if (hw_offload)
297 return 0;
298
299 esp.seqno = cpu_to_be64(xo->seq.low + ((u64)xo->seq.hi << 32));
300
301 err = esp6_output_tail(x, skb, &esp);
302 if (err)
303 return err;
304
305 secpath_reset(skb);
306
307 return 0;
308}
309
310static const struct net_offload esp6_offload = {
311 .callbacks = {
312 .gro_receive = esp6_gro_receive,
313 .gso_segment = esp6_gso_segment,
314 },
315};
316
317static const struct xfrm_type_offload esp6_type_offload = {
318 .description = "ESP6 OFFLOAD",
319 .owner = THIS_MODULE,
320 .proto = IPPROTO_ESP,
321 .input_tail = esp6_input_tail,
322 .xmit = esp6_xmit,
323 .encap = esp6_gso_encap,
324};
325
326static int __init esp6_offload_init(void)
327{
328 if (xfrm_register_type_offload(&esp6_type_offload, AF_INET6) < 0) {
329 pr_info("%s: can't add xfrm type offload\n", __func__);
330 return -EAGAIN;
331 }
332
333 return inet6_add_offload(&esp6_offload, IPPROTO_ESP);
334}
335
336static void __exit esp6_offload_exit(void)
337{
338 if (xfrm_unregister_type_offload(&esp6_type_offload, AF_INET6) < 0)
339 pr_info("%s: can't remove xfrm type offload\n", __func__);
340
341 inet6_del_offload(&esp6_offload, IPPROTO_ESP);
342}
343
344module_init(esp6_offload_init);
345module_exit(esp6_offload_exit);
346MODULE_LICENSE("GPL");
347MODULE_AUTHOR("Steffen Klassert <steffen.klassert@secunet.com>");
348MODULE_ALIAS_XFRM_OFFLOAD_TYPE(AF_INET6, XFRM_PROTO_ESP);