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 __u16 esp6_nexthdr_esp_offset(struct ipv6hdr *ipv6_hdr, int nhlen)
35 int off = sizeof(struct ipv6hdr);
36 struct ipv6_opt_hdr *exthdr;
38 if (likely(ipv6_hdr->nexthdr == NEXTHDR_ESP))
39 return offsetof(struct ipv6hdr, nexthdr);
42 exthdr = (void *)ipv6_hdr + off;
43 if (exthdr->nexthdr == NEXTHDR_ESP)
46 off += ipv6_optlen(exthdr);
52 static struct sk_buff **esp6_gro_receive(struct sk_buff **head,
55 int offset = skb_gro_offset(skb);
56 struct xfrm_offload *xo;
63 if (!pskb_pull(skb, offset))
66 if ((err = xfrm_parse_spi(skb, IPPROTO_ESP, &spi, &seq)) != 0)
69 xo = xfrm_offload(skb);
70 if (!xo || !(xo->flags & CRYPTO_DONE)) {
71 err = secpath_set(skb);
75 if (skb->sp->len == XFRM_MAX_DEPTH)
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);
84 skb->sp->xvec[skb->sp->len++] = x;
87 xo = xfrm_offload(skb);
94 xo->flags |= XFRM_GRO;
96 nhoff = esp6_nexthdr_esp_offset(ipv6_hdr(skb), offset);
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;
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);
110 return ERR_PTR(-EINPROGRESS);
112 skb_push(skb, offset);
113 NAPI_GRO_CB(skb)->same_flow = 0;
114 NAPI_GRO_CB(skb)->flush = 1;
119 static void esp6_gso_encap(struct xfrm_state *x, struct sk_buff *skb)
121 struct ip_esp_hdr *esph;
122 struct ipv6hdr *iph = ipv6_hdr(skb);
123 struct xfrm_offload *xo = xfrm_offload(skb);
124 int proto = iph->nexthdr;
126 skb_push(skb, -skb_network_offset(skb));
127 esph = ip_esp_hdr(skb);
128 *skb_mac_header(skb) = IPPROTO_ESP;
130 esph->spi = x->id.spi;
131 esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq.output.low);
136 static struct sk_buff *esp6_gso_segment(struct sk_buff *skb,
137 netdev_features_t features)
139 struct xfrm_state *x;
140 struct ip_esp_hdr *esph;
141 struct crypto_aead *aead;
142 netdev_features_t esp_features = features;
143 struct xfrm_offload *xo = xfrm_offload(skb);
146 return ERR_PTR(-EINVAL);
148 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_ESP))
149 return ERR_PTR(-EINVAL);
151 x = skb->sp->xvec[skb->sp->len - 1];
153 esph = ip_esp_hdr(skb);
155 if (esph->spi != x->id.spi)
156 return ERR_PTR(-EINVAL);
158 if (!pskb_may_pull(skb, sizeof(*esph) + crypto_aead_ivsize(aead)))
159 return ERR_PTR(-EINVAL);
161 __skb_pull(skb, sizeof(*esph) + crypto_aead_ivsize(aead));
163 skb->encap_hdr_csum = 1;
165 if (!(features & NETIF_F_HW_ESP) || !x->xso.offload_handle ||
166 (x->xso.dev != skb->dev))
167 esp_features = features & ~(NETIF_F_SG | NETIF_F_CSUM_MASK);
168 else if (!(features & NETIF_F_HW_ESP_TX_CSUM))
169 esp_features = features & ~NETIF_F_CSUM_MASK;
171 xo->flags |= XFRM_GSO_SEGMENT;
173 return x->outer_mode->gso_segment(x, skb, esp_features);
176 static int esp6_input_tail(struct xfrm_state *x, struct sk_buff *skb)
178 struct crypto_aead *aead = x->data;
179 struct xfrm_offload *xo = xfrm_offload(skb);
181 if (!pskb_may_pull(skb, sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead)))
184 if (!(xo->flags & CRYPTO_DONE))
185 skb->ip_summed = CHECKSUM_NONE;
187 return esp6_input_done2(skb, 0);
190 static int esp6_xmit(struct xfrm_state *x, struct sk_buff *skb, netdev_features_t features)
196 struct xfrm_offload *xo;
197 struct ip_esp_hdr *esph;
198 struct crypto_aead *aead;
200 bool hw_offload = true;
205 xo = xfrm_offload(skb);
210 if (!(features & NETIF_F_HW_ESP) || !x->xso.offload_handle ||
211 (x->xso.dev != skb->dev)) {
212 xo->flags |= CRYPTO_FALLBACK;
216 esp.proto = xo->proto;
218 /* skb is pure payload to encrypt */
221 alen = crypto_aead_authsize(aead);
224 /* XXX: Add support for tfc padding here. */
226 blksize = ALIGN(crypto_aead_blocksize(aead), 4);
227 esp.clen = ALIGN(skb->len + 2 + esp.tfclen, blksize);
228 esp.plen = esp.clen - skb->len - esp.tfclen;
229 esp.tailen = esp.tfclen + esp.plen + alen;
231 if (!hw_offload || (hw_offload && !skb_is_gso(skb))) {
232 esp.nfrags = esp6_output_head(x, skb, &esp);
239 esph = ip_esp_hdr(skb);
240 esph->spi = x->id.spi;
242 skb_push(skb, -skb_network_offset(skb));
244 if (xo->flags & XFRM_GSO_SEGMENT) {
245 esph->seq_no = htonl(seq);
247 if (!skb_is_gso(skb))
250 xo->seq.low += skb_shinfo(skb)->gso_segs;
253 esp.seqno = cpu_to_be64(xo->seq.low + ((u64)xo->seq.hi << 32));
255 len = skb->len - sizeof(struct ipv6hdr);
256 if (len > IPV6_MAXPLEN)
259 ipv6_hdr(skb)->payload_len = htons(len);
264 err = esp6_output_tail(x, skb, &esp);
273 static const struct net_offload esp6_offload = {
275 .gro_receive = esp6_gro_receive,
276 .gso_segment = esp6_gso_segment,
280 static const struct xfrm_type_offload esp6_type_offload = {
281 .description = "ESP6 OFFLOAD",
282 .owner = THIS_MODULE,
283 .proto = IPPROTO_ESP,
284 .input_tail = esp6_input_tail,
286 .encap = esp6_gso_encap,
289 static int __init esp6_offload_init(void)
291 if (xfrm_register_type_offload(&esp6_type_offload, AF_INET6) < 0) {
292 pr_info("%s: can't add xfrm type offload\n", __func__);
296 return inet6_add_offload(&esp6_offload, IPPROTO_ESP);
299 static void __exit esp6_offload_exit(void)
301 if (xfrm_unregister_type_offload(&esp6_type_offload, AF_INET6) < 0)
302 pr_info("%s: can't remove xfrm type offload\n", __func__);
304 inet6_del_offload(&esp6_offload, IPPROTO_ESP);
307 module_init(esp6_offload_init);
308 module_exit(esp6_offload_exit);
309 MODULE_LICENSE("GPL");
311 MODULE_ALIAS_XFRM_OFFLOAD_TYPE(AF_INET6, XFRM_PROTO_ESP);