2 * IPV6 GSO/GRO offload support
3 * Linux INET implementation
5 * Copyright (C) 2016 secunet Security Networks AG
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.
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>
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>
31 #include <linux/icmpv6.h>
33 static struct sk_buff **esp6_gro_receive(struct sk_buff **head,
36 int offset = skb_gro_offset(skb);
37 struct xfrm_offload *xo;
43 skb_pull(skb, offset);
45 if ((err = xfrm_parse_spi(skb, IPPROTO_ESP, &spi, &seq)) != 0)
48 xo = xfrm_offload(skb);
49 if (!xo || !(xo->flags & CRYPTO_DONE)) {
50 err = secpath_set(skb);
54 if (skb->sp->len == XFRM_MAX_DEPTH)
57 x = xfrm_state_lookup(dev_net(skb->dev), skb->mark,
58 (xfrm_address_t *)&ipv6_hdr(skb)->daddr,
59 spi, IPPROTO_ESP, AF_INET6);
63 skb->sp->xvec[skb->sp->len++] = x;
66 xo = xfrm_offload(skb);
73 xo->flags |= XFRM_GRO;
75 XFRM_TUNNEL_SKB_CB(skb)->tunnel.ip6 = NULL;
76 XFRM_SPI_SKB_CB(skb)->family = AF_INET6;
77 XFRM_SPI_SKB_CB(skb)->daddroff = offsetof(struct ipv6hdr, daddr);
78 XFRM_SPI_SKB_CB(skb)->seq = seq;
80 /* We don't need to handle errors from xfrm_input, it does all
81 * the error handling and frees the resources on error. */
82 xfrm_input(skb, IPPROTO_ESP, spi, -2);
84 return ERR_PTR(-EINPROGRESS);
86 skb_push(skb, offset);
87 NAPI_GRO_CB(skb)->same_flow = 0;
88 NAPI_GRO_CB(skb)->flush = 1;
93 static void esp6_gso_encap(struct xfrm_state *x, struct sk_buff *skb)
95 struct ip_esp_hdr *esph;
96 struct ipv6hdr *iph = ipv6_hdr(skb);
97 struct xfrm_offload *xo = xfrm_offload(skb);
98 int proto = iph->nexthdr;
100 skb_push(skb, -skb_network_offset(skb));
101 esph = ip_esp_hdr(skb);
102 *skb_mac_header(skb) = IPPROTO_ESP;
104 esph->spi = x->id.spi;
105 esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq.output.low);
110 static struct sk_buff *esp6_gso_segment(struct sk_buff *skb,
111 netdev_features_t features)
115 struct sk_buff *skb2;
116 struct xfrm_state *x;
117 struct ip_esp_hdr *esph;
118 struct crypto_aead *aead;
119 struct sk_buff *segs = ERR_PTR(-EINVAL);
120 netdev_features_t esp_features = features;
121 struct xfrm_offload *xo = xfrm_offload(skb);
128 x = skb->sp->xvec[skb->sp->len - 1];
130 esph = ip_esp_hdr(skb);
132 if (esph->spi != x->id.spi)
135 if (!pskb_may_pull(skb, sizeof(*esph) + crypto_aead_ivsize(aead)))
138 __skb_pull(skb, sizeof(*esph) + crypto_aead_ivsize(aead));
140 skb->encap_hdr_csum = 1;
142 if (!(features & NETIF_F_HW_ESP))
143 esp_features = features & ~(NETIF_F_SG | NETIF_F_CSUM_MASK);
145 segs = x->outer_mode->gso_segment(x, skb, esp_features);
146 if (IS_ERR_OR_NULL(segs))
149 __skb_pull(skb, skb->data - skb_mac_header(skb));
153 struct sk_buff *nskb = skb2->next;
155 xo = xfrm_offload(skb2);
156 xo->flags |= XFRM_GSO_SEGMENT;
158 xo->seq.hi = xfrm_replay_seqhi(x, seq);
160 if(!(features & NETIF_F_HW_ESP))
161 xo->flags |= CRYPTO_FALLBACK;
163 x->outer_mode->xmit(x, skb2);
165 err = x->type_offload->xmit(x, skb2, esp_features);
167 kfree_skb_list(segs);
171 if (!skb_is_gso(skb2))
174 seq += skb_shinfo(skb2)->gso_segs;
176 skb_push(skb2, skb2->mac_len);
184 static int esp6_input_tail(struct xfrm_state *x, struct sk_buff *skb)
186 struct crypto_aead *aead = x->data;
188 if (!pskb_may_pull(skb, sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead)))
191 skb->ip_summed = CHECKSUM_NONE;
193 return esp6_input_done2(skb, 0);
196 static int esp6_xmit(struct xfrm_state *x, struct sk_buff *skb, netdev_features_t features)
201 struct xfrm_offload *xo;
202 struct ip_esp_hdr *esph;
203 struct crypto_aead *aead;
205 bool hw_offload = true;
209 xo = xfrm_offload(skb);
214 if (!(features & NETIF_F_HW_ESP) || !x->xso.offload_handle ||
215 (x->xso.dev != skb->dev)) {
216 xo->flags |= CRYPTO_FALLBACK;
220 esp.proto = xo->proto;
222 /* skb is pure payload to encrypt */
225 alen = crypto_aead_authsize(aead);
228 /* XXX: Add support for tfc padding here. */
230 blksize = ALIGN(crypto_aead_blocksize(aead), 4);
231 esp.clen = ALIGN(skb->len + 2 + esp.tfclen, blksize);
232 esp.plen = esp.clen - skb->len - esp.tfclen;
233 esp.tailen = esp.tfclen + esp.plen + alen;
235 if (!hw_offload || (hw_offload && !skb_is_gso(skb))) {
236 esp.nfrags = esp6_output_head(x, skb, &esp);
241 esph = ip_esp_hdr(skb);
242 esph->spi = x->id.spi;
244 skb_push(skb, -skb_network_offset(skb));
246 if (xo->flags & XFRM_GSO_SEGMENT) {
247 esph->seq_no = htonl(xo->seq.low);
251 len = skb->len - sizeof(struct ipv6hdr);
252 if (len > IPV6_MAXPLEN)
255 ipv6_hdr(skb)->payload_len = htons(len);
261 esp.seqno = cpu_to_be64(xo->seq.low + ((u64)xo->seq.hi << 32));
263 err = esp6_output_tail(x, skb, &esp);
272 static const struct net_offload esp6_offload = {
274 .gro_receive = esp6_gro_receive,
275 .gso_segment = esp6_gso_segment,
279 static const struct xfrm_type_offload esp6_type_offload = {
280 .description = "ESP6 OFFLOAD",
281 .owner = THIS_MODULE,
282 .proto = IPPROTO_ESP,
283 .input_tail = esp6_input_tail,
285 .encap = esp6_gso_encap,
288 static int __init esp6_offload_init(void)
290 if (xfrm_register_type_offload(&esp6_type_offload, AF_INET6) < 0) {
291 pr_info("%s: can't add xfrm type offload\n", __func__);
295 return inet6_add_offload(&esp6_offload, IPPROTO_ESP);
298 static void __exit esp6_offload_exit(void)
300 if (xfrm_unregister_type_offload(&esp6_type_offload, AF_INET6) < 0)
301 pr_info("%s: can't remove xfrm type offload\n", __func__);
303 inet6_del_offload(&esp6_offload, IPPROTO_ESP);
306 module_init(esp6_offload_init);
307 module_exit(esp6_offload_exit);
308 MODULE_LICENSE("GPL");