1 // SPDX-License-Identifier: GPL-2.0-only
3 * IPV6 GSO/GRO offload support
4 * Linux INET implementation
6 * Copyright (C) 2016 secunet Security Networks AG
7 * Author: Steffen Klassert <steffen.klassert@secunet.com>
12 #include <linux/skbuff.h>
13 #include <linux/init.h>
14 #include <net/protocol.h>
15 #include <crypto/aead.h>
16 #include <crypto/authenc.h>
17 #include <linux/err.h>
18 #include <linux/module.h>
23 #include <linux/scatterlist.h>
24 #include <linux/kernel.h>
25 #include <linux/slab.h>
26 #include <linux/spinlock.h>
27 #include <net/ip6_route.h>
29 #include <linux/icmpv6.h>
31 static __u16 esp6_nexthdr_esp_offset(struct ipv6hdr *ipv6_hdr, int nhlen)
33 int off = sizeof(struct ipv6hdr);
34 struct ipv6_opt_hdr *exthdr;
36 if (likely(ipv6_hdr->nexthdr == NEXTHDR_ESP))
37 return offsetof(struct ipv6hdr, nexthdr);
40 exthdr = (void *)ipv6_hdr + off;
41 if (exthdr->nexthdr == NEXTHDR_ESP)
44 off += ipv6_optlen(exthdr);
50 static struct sk_buff *esp6_gro_receive(struct list_head *head,
53 int offset = skb_gro_offset(skb);
54 struct xfrm_offload *xo;
61 if (!pskb_pull(skb, offset))
64 if ((err = xfrm_parse_spi(skb, IPPROTO_ESP, &spi, &seq)) != 0)
67 xo = xfrm_offload(skb);
68 if (!xo || !(xo->flags & CRYPTO_DONE)) {
69 struct sec_path *sp = secpath_set(skb);
74 if (sp->len == XFRM_MAX_DEPTH)
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);
83 skb->mark = xfrm_smark_get(skb->mark, x);
85 sp->xvec[sp->len++] = x;
88 xo = xfrm_offload(skb);
93 xo->flags |= XFRM_GRO;
95 nhoff = esp6_nexthdr_esp_offset(ipv6_hdr(skb), offset);
99 IP6CB(skb)->nhoff = nhoff;
100 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;
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);
109 return ERR_PTR(-EINPROGRESS);
113 skb_push(skb, offset);
114 NAPI_GRO_CB(skb)->same_flow = 0;
115 NAPI_GRO_CB(skb)->flush = 1;
120 static void esp6_gso_encap(struct xfrm_state *x, struct sk_buff *skb)
122 struct ip_esp_hdr *esph;
123 struct ipv6hdr *iph = ipv6_hdr(skb);
124 struct xfrm_offload *xo = xfrm_offload(skb);
125 u8 proto = iph->nexthdr;
127 skb_push(skb, -skb_network_offset(skb));
129 if (x->outer_mode.encap == XFRM_MODE_TRANSPORT) {
132 ipv6_skip_exthdr(skb, sizeof(struct ipv6hdr), &proto, &frag);
135 esph = ip_esp_hdr(skb);
136 *skb_mac_header(skb) = IPPROTO_ESP;
138 esph->spi = x->id.spi;
139 esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq.output.low);
144 static struct sk_buff *xfrm6_tunnel_gso_segment(struct xfrm_state *x,
146 netdev_features_t features)
148 __be16 type = x->inner_mode.family == AF_INET ? htons(ETH_P_IP)
151 return skb_eth_gso_segment(skb, features, type);
154 static struct sk_buff *xfrm6_transport_gso_segment(struct xfrm_state *x,
156 netdev_features_t features)
158 const struct net_offload *ops;
159 struct sk_buff *segs = ERR_PTR(-EINVAL);
160 struct xfrm_offload *xo = xfrm_offload(skb);
162 skb->transport_header += x->props.header_len;
163 ops = rcu_dereference(inet6_offloads[xo->proto]);
164 if (likely(ops && ops->callbacks.gso_segment))
165 segs = ops->callbacks.gso_segment(skb, features);
170 static struct sk_buff *xfrm6_beet_gso_segment(struct xfrm_state *x,
172 netdev_features_t features)
174 struct xfrm_offload *xo = xfrm_offload(skb);
175 struct sk_buff *segs = ERR_PTR(-EINVAL);
176 const struct net_offload *ops;
177 u8 proto = xo->proto;
179 skb->transport_header += x->props.header_len;
181 if (x->sel.family != AF_INET6) {
182 skb->transport_header -=
183 (sizeof(struct ipv6hdr) - sizeof(struct iphdr));
185 if (proto == IPPROTO_BEETPH) {
186 struct ip_beet_phdr *ph =
187 (struct ip_beet_phdr *)skb->data;
189 skb->transport_header += ph->hdrlen * 8;
192 skb->transport_header -= IPV4_BEET_PHMAXLEN;
195 if (proto == IPPROTO_TCP)
196 skb_shinfo(skb)->gso_type |= SKB_GSO_TCPV6;
200 skb->transport_header +=
201 ipv6_skip_exthdr(skb, 0, &proto, &frag);
204 if (proto == IPPROTO_IPIP)
205 skb_shinfo(skb)->gso_type |= SKB_GSO_IPXIP6;
207 __skb_pull(skb, skb_transport_offset(skb));
208 ops = rcu_dereference(inet6_offloads[proto]);
209 if (likely(ops && ops->callbacks.gso_segment))
210 segs = ops->callbacks.gso_segment(skb, features);
215 static struct sk_buff *xfrm6_outer_mode_gso_segment(struct xfrm_state *x,
217 netdev_features_t features)
219 switch (x->outer_mode.encap) {
220 case XFRM_MODE_TUNNEL:
221 return xfrm6_tunnel_gso_segment(x, skb, features);
222 case XFRM_MODE_TRANSPORT:
223 return xfrm6_transport_gso_segment(x, skb, features);
225 return xfrm6_beet_gso_segment(x, skb, features);
228 return ERR_PTR(-EOPNOTSUPP);
231 static struct sk_buff *esp6_gso_segment(struct sk_buff *skb,
232 netdev_features_t features)
234 struct xfrm_state *x;
235 struct ip_esp_hdr *esph;
236 struct crypto_aead *aead;
237 netdev_features_t esp_features = features;
238 struct xfrm_offload *xo = xfrm_offload(skb);
242 return ERR_PTR(-EINVAL);
244 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_ESP))
245 return ERR_PTR(-EINVAL);
247 sp = skb_sec_path(skb);
248 x = sp->xvec[sp->len - 1];
250 esph = ip_esp_hdr(skb);
252 if (esph->spi != x->id.spi)
253 return ERR_PTR(-EINVAL);
255 if (!pskb_may_pull(skb, sizeof(*esph) + crypto_aead_ivsize(aead)))
256 return ERR_PTR(-EINVAL);
258 __skb_pull(skb, sizeof(*esph) + crypto_aead_ivsize(aead));
260 skb->encap_hdr_csum = 1;
262 if (!(features & NETIF_F_HW_ESP) || x->xso.dev != skb->dev)
263 esp_features = features & ~(NETIF_F_SG | NETIF_F_CSUM_MASK |
265 else if (!(features & NETIF_F_HW_ESP_TX_CSUM))
266 esp_features = features & ~(NETIF_F_CSUM_MASK |
269 xo->flags |= XFRM_GSO_SEGMENT;
271 return xfrm6_outer_mode_gso_segment(x, skb, esp_features);
274 static int esp6_input_tail(struct xfrm_state *x, struct sk_buff *skb)
276 struct crypto_aead *aead = x->data;
277 struct xfrm_offload *xo = xfrm_offload(skb);
279 if (!pskb_may_pull(skb, sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead)))
282 if (!(xo->flags & CRYPTO_DONE))
283 skb->ip_summed = CHECKSUM_NONE;
285 return esp6_input_done2(skb, 0);
288 static int esp6_xmit(struct xfrm_state *x, struct sk_buff *skb, netdev_features_t features)
294 struct xfrm_offload *xo;
295 struct crypto_aead *aead;
297 bool hw_offload = true;
302 xo = xfrm_offload(skb);
307 if (!(features & NETIF_F_HW_ESP) || x->xso.dev != skb->dev) {
308 xo->flags |= CRYPTO_FALLBACK;
312 esp.proto = xo->proto;
314 /* skb is pure payload to encrypt */
317 alen = crypto_aead_authsize(aead);
320 /* XXX: Add support for tfc padding here. */
322 blksize = ALIGN(crypto_aead_blocksize(aead), 4);
323 esp.clen = ALIGN(skb->len + 2 + esp.tfclen, blksize);
324 esp.plen = esp.clen - skb->len - esp.tfclen;
325 esp.tailen = esp.tfclen + esp.plen + alen;
327 if (!hw_offload || !skb_is_gso(skb)) {
328 esp.nfrags = esp6_output_head(x, skb, &esp);
335 esp.esph = ip_esp_hdr(skb);
336 esp.esph->spi = x->id.spi;
338 skb_push(skb, -skb_network_offset(skb));
340 if (xo->flags & XFRM_GSO_SEGMENT) {
341 esp.esph->seq_no = htonl(seq);
343 if (!skb_is_gso(skb))
346 xo->seq.low += skb_shinfo(skb)->gso_segs;
349 if (xo->seq.low < seq)
352 esp.seqno = cpu_to_be64(xo->seq.low + ((u64)xo->seq.hi << 32));
354 len = skb->len - sizeof(struct ipv6hdr);
355 if (len > IPV6_MAXPLEN)
358 ipv6_hdr(skb)->payload_len = htons(len);
361 if (!skb_ext_add(skb, SKB_EXT_SEC_PATH))
364 xo = xfrm_offload(skb);
368 xo->flags |= XFRM_XMIT;
372 err = esp6_output_tail(x, skb, &esp);
381 static const struct net_offload esp6_offload = {
383 .gro_receive = esp6_gro_receive,
384 .gso_segment = esp6_gso_segment,
388 static const struct xfrm_type_offload esp6_type_offload = {
389 .owner = THIS_MODULE,
390 .proto = IPPROTO_ESP,
391 .input_tail = esp6_input_tail,
393 .encap = esp6_gso_encap,
396 static int __init esp6_offload_init(void)
398 if (xfrm_register_type_offload(&esp6_type_offload, AF_INET6) < 0) {
399 pr_info("%s: can't add xfrm type offload\n", __func__);
403 return inet6_add_offload(&esp6_offload, IPPROTO_ESP);
406 static void __exit esp6_offload_exit(void)
408 xfrm_unregister_type_offload(&esp6_type_offload, AF_INET6);
409 inet6_del_offload(&esp6_offload, IPPROTO_ESP);
412 module_init(esp6_offload_init);
413 module_exit(esp6_offload_exit);
414 MODULE_LICENSE("GPL");
415 MODULE_AUTHOR("Steffen Klassert <steffen.klassert@secunet.com>");
416 MODULE_ALIAS_XFRM_OFFLOAD_TYPE(AF_INET6, XFRM_PROTO_ESP);
417 MODULE_DESCRIPTION("IPV6 GSO/GRO offload support");