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 return skb_eth_gso_segment(skb, features, htons(ETH_P_IPV6));
151 static struct sk_buff *xfrm6_transport_gso_segment(struct xfrm_state *x,
153 netdev_features_t features)
155 const struct net_offload *ops;
156 struct sk_buff *segs = ERR_PTR(-EINVAL);
157 struct xfrm_offload *xo = xfrm_offload(skb);
159 skb->transport_header += x->props.header_len;
160 ops = rcu_dereference(inet6_offloads[xo->proto]);
161 if (likely(ops && ops->callbacks.gso_segment))
162 segs = ops->callbacks.gso_segment(skb, features);
167 static struct sk_buff *xfrm6_beet_gso_segment(struct xfrm_state *x,
169 netdev_features_t features)
171 struct xfrm_offload *xo = xfrm_offload(skb);
172 struct sk_buff *segs = ERR_PTR(-EINVAL);
173 const struct net_offload *ops;
174 u8 proto = xo->proto;
176 skb->transport_header += x->props.header_len;
178 if (x->sel.family != AF_INET6) {
179 skb->transport_header -=
180 (sizeof(struct ipv6hdr) - sizeof(struct iphdr));
182 if (proto == IPPROTO_BEETPH) {
183 struct ip_beet_phdr *ph =
184 (struct ip_beet_phdr *)skb->data;
186 skb->transport_header += ph->hdrlen * 8;
189 skb->transport_header -= IPV4_BEET_PHMAXLEN;
192 if (proto == IPPROTO_TCP)
193 skb_shinfo(skb)->gso_type |= SKB_GSO_TCPV6;
197 skb->transport_header +=
198 ipv6_skip_exthdr(skb, 0, &proto, &frag);
201 if (proto == IPPROTO_IPIP)
202 skb_shinfo(skb)->gso_type |= SKB_GSO_IPXIP6;
204 __skb_pull(skb, skb_transport_offset(skb));
205 ops = rcu_dereference(inet6_offloads[proto]);
206 if (likely(ops && ops->callbacks.gso_segment))
207 segs = ops->callbacks.gso_segment(skb, features);
212 static struct sk_buff *xfrm6_outer_mode_gso_segment(struct xfrm_state *x,
214 netdev_features_t features)
216 switch (x->outer_mode.encap) {
217 case XFRM_MODE_TUNNEL:
218 return xfrm6_tunnel_gso_segment(x, skb, features);
219 case XFRM_MODE_TRANSPORT:
220 return xfrm6_transport_gso_segment(x, skb, features);
222 return xfrm6_beet_gso_segment(x, skb, features);
225 return ERR_PTR(-EOPNOTSUPP);
228 static struct sk_buff *esp6_gso_segment(struct sk_buff *skb,
229 netdev_features_t features)
231 struct xfrm_state *x;
232 struct ip_esp_hdr *esph;
233 struct crypto_aead *aead;
234 netdev_features_t esp_features = features;
235 struct xfrm_offload *xo = xfrm_offload(skb);
239 return ERR_PTR(-EINVAL);
241 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_ESP))
242 return ERR_PTR(-EINVAL);
244 sp = skb_sec_path(skb);
245 x = sp->xvec[sp->len - 1];
247 esph = ip_esp_hdr(skb);
249 if (esph->spi != x->id.spi)
250 return ERR_PTR(-EINVAL);
252 if (!pskb_may_pull(skb, sizeof(*esph) + crypto_aead_ivsize(aead)))
253 return ERR_PTR(-EINVAL);
255 __skb_pull(skb, sizeof(*esph) + crypto_aead_ivsize(aead));
257 skb->encap_hdr_csum = 1;
259 if (!(features & NETIF_F_HW_ESP) || x->xso.dev != skb->dev)
260 esp_features = features & ~(NETIF_F_SG | NETIF_F_CSUM_MASK |
262 else if (!(features & NETIF_F_HW_ESP_TX_CSUM))
263 esp_features = features & ~(NETIF_F_CSUM_MASK |
266 xo->flags |= XFRM_GSO_SEGMENT;
268 return xfrm6_outer_mode_gso_segment(x, skb, esp_features);
271 static int esp6_input_tail(struct xfrm_state *x, struct sk_buff *skb)
273 struct crypto_aead *aead = x->data;
274 struct xfrm_offload *xo = xfrm_offload(skb);
276 if (!pskb_may_pull(skb, sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead)))
279 if (!(xo->flags & CRYPTO_DONE))
280 skb->ip_summed = CHECKSUM_NONE;
282 return esp6_input_done2(skb, 0);
285 static int esp6_xmit(struct xfrm_state *x, struct sk_buff *skb, netdev_features_t features)
291 struct xfrm_offload *xo;
292 struct crypto_aead *aead;
294 bool hw_offload = true;
299 xo = xfrm_offload(skb);
304 if (!(features & NETIF_F_HW_ESP) || x->xso.dev != skb->dev) {
305 xo->flags |= CRYPTO_FALLBACK;
309 esp.proto = xo->proto;
311 /* skb is pure payload to encrypt */
314 alen = crypto_aead_authsize(aead);
317 /* XXX: Add support for tfc padding here. */
319 blksize = ALIGN(crypto_aead_blocksize(aead), 4);
320 esp.clen = ALIGN(skb->len + 2 + esp.tfclen, blksize);
321 esp.plen = esp.clen - skb->len - esp.tfclen;
322 esp.tailen = esp.tfclen + esp.plen + alen;
324 if (!hw_offload || !skb_is_gso(skb)) {
325 esp.nfrags = esp6_output_head(x, skb, &esp);
332 esp.esph = ip_esp_hdr(skb);
333 esp.esph->spi = x->id.spi;
335 skb_push(skb, -skb_network_offset(skb));
337 if (xo->flags & XFRM_GSO_SEGMENT) {
338 esp.esph->seq_no = htonl(seq);
340 if (!skb_is_gso(skb))
343 xo->seq.low += skb_shinfo(skb)->gso_segs;
346 esp.seqno = cpu_to_be64(xo->seq.low + ((u64)xo->seq.hi << 32));
348 len = skb->len - sizeof(struct ipv6hdr);
349 if (len > IPV6_MAXPLEN)
352 ipv6_hdr(skb)->payload_len = htons(len);
355 if (!skb_ext_add(skb, SKB_EXT_SEC_PATH))
358 xo = xfrm_offload(skb);
362 xo->flags |= XFRM_XMIT;
366 err = esp6_output_tail(x, skb, &esp);
375 static const struct net_offload esp6_offload = {
377 .gro_receive = esp6_gro_receive,
378 .gso_segment = esp6_gso_segment,
382 static const struct xfrm_type_offload esp6_type_offload = {
383 .owner = THIS_MODULE,
384 .proto = IPPROTO_ESP,
385 .input_tail = esp6_input_tail,
387 .encap = esp6_gso_encap,
390 static int __init esp6_offload_init(void)
392 if (xfrm_register_type_offload(&esp6_type_offload, AF_INET6) < 0) {
393 pr_info("%s: can't add xfrm type offload\n", __func__);
397 return inet6_add_offload(&esp6_offload, IPPROTO_ESP);
400 static void __exit esp6_offload_exit(void)
402 xfrm_unregister_type_offload(&esp6_type_offload, AF_INET6);
403 inet6_del_offload(&esp6_offload, IPPROTO_ESP);
406 module_init(esp6_offload_init);
407 module_exit(esp6_offload_exit);
408 MODULE_LICENSE("GPL");
409 MODULE_AUTHOR("Steffen Klassert <steffen.klassert@secunet.com>");
410 MODULE_ALIAS_XFRM_OFFLOAD_TYPE(AF_INET6, XFRM_PROTO_ESP);
411 MODULE_DESCRIPTION("IPV6 GSO/GRO offload support");