Steffen Klassert | 7785bba | 2017-02-15 09:40:00 +0100 | [diff] [blame] | 1 | /* |
| 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 | |
| 33 | static struct sk_buff **esp6_gro_receive(struct sk_buff **head, |
| 34 | struct sk_buff *skb) |
| 35 | { |
| 36 | int offset = skb_gro_offset(skb); |
| 37 | struct xfrm_offload *xo; |
| 38 | struct xfrm_state *x; |
| 39 | __be32 seq; |
| 40 | __be32 spi; |
| 41 | int err; |
| 42 | |
| 43 | skb_pull(skb, offset); |
| 44 | |
| 45 | if ((err = xfrm_parse_spi(skb, IPPROTO_ESP, &spi, &seq)) != 0) |
| 46 | goto out; |
| 47 | |
Steffen Klassert | 7785bba | 2017-02-15 09:40:00 +0100 | [diff] [blame] | 48 | xo = xfrm_offload(skb); |
Steffen Klassert | bcd1f8a | 2017-04-14 10:07:49 +0200 | [diff] [blame^] | 49 | if (!xo || !(xo->flags & CRYPTO_DONE)) { |
| 50 | err = secpath_set(skb); |
| 51 | if (err) |
| 52 | goto out; |
| 53 | |
| 54 | if (skb->sp->len == XFRM_MAX_DEPTH) |
| 55 | goto out; |
| 56 | |
| 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); |
| 60 | if (!x) |
| 61 | goto out; |
| 62 | |
| 63 | skb->sp->xvec[skb->sp->len++] = x; |
| 64 | skb->sp->olen++; |
| 65 | |
| 66 | xo = xfrm_offload(skb); |
| 67 | if (!xo) { |
| 68 | xfrm_state_put(x); |
| 69 | goto out; |
| 70 | } |
Steffen Klassert | 7785bba | 2017-02-15 09:40:00 +0100 | [diff] [blame] | 71 | } |
Steffen Klassert | bcd1f8a | 2017-04-14 10:07:49 +0200 | [diff] [blame^] | 72 | |
Steffen Klassert | 7785bba | 2017-02-15 09:40:00 +0100 | [diff] [blame] | 73 | xo->flags |= XFRM_GRO; |
| 74 | |
| 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; |
| 79 | |
| 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); |
| 83 | |
| 84 | return ERR_PTR(-EINPROGRESS); |
| 85 | out: |
| 86 | skb_push(skb, offset); |
| 87 | NAPI_GRO_CB(skb)->same_flow = 0; |
| 88 | NAPI_GRO_CB(skb)->flush = 1; |
| 89 | |
| 90 | return NULL; |
| 91 | } |
| 92 | |
Steffen Klassert | 7862b40 | 2017-04-14 10:06:50 +0200 | [diff] [blame] | 93 | static void esp6_gso_encap(struct xfrm_state *x, struct sk_buff *skb) |
| 94 | { |
| 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; |
| 99 | |
| 100 | skb_push(skb, -skb_network_offset(skb)); |
| 101 | esph = ip_esp_hdr(skb); |
| 102 | *skb_mac_header(skb) = IPPROTO_ESP; |
| 103 | |
| 104 | esph->spi = x->id.spi; |
| 105 | esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq.output.low); |
| 106 | |
| 107 | xo->proto = proto; |
| 108 | } |
| 109 | |
| 110 | static struct sk_buff *esp6_gso_segment(struct sk_buff *skb, |
| 111 | netdev_features_t features) |
| 112 | { |
| 113 | __u32 seq; |
| 114 | int err = 0; |
| 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); |
| 122 | |
| 123 | if (xo) |
| 124 | goto out; |
| 125 | |
| 126 | seq = xo->seq.low; |
| 127 | |
| 128 | x = skb->sp->xvec[skb->sp->len - 1]; |
| 129 | aead = x->data; |
| 130 | esph = ip_esp_hdr(skb); |
| 131 | |
| 132 | if (esph->spi != x->id.spi) |
| 133 | goto out; |
| 134 | |
| 135 | if (!pskb_may_pull(skb, sizeof(*esph) + crypto_aead_ivsize(aead))) |
| 136 | goto out; |
| 137 | |
| 138 | __skb_pull(skb, sizeof(*esph) + crypto_aead_ivsize(aead)); |
| 139 | |
| 140 | skb->encap_hdr_csum = 1; |
| 141 | |
| 142 | if (!(features & NETIF_F_HW_ESP)) |
| 143 | esp_features = features & ~(NETIF_F_SG | NETIF_F_CSUM_MASK); |
| 144 | |
| 145 | segs = x->outer_mode->gso_segment(x, skb, esp_features); |
| 146 | if (IS_ERR_OR_NULL(segs)) |
| 147 | goto out; |
| 148 | |
| 149 | __skb_pull(skb, skb->data - skb_mac_header(skb)); |
| 150 | |
| 151 | skb2 = segs; |
| 152 | do { |
| 153 | struct sk_buff *nskb = skb2->next; |
| 154 | |
| 155 | xo = xfrm_offload(skb2); |
| 156 | xo->flags |= XFRM_GSO_SEGMENT; |
| 157 | xo->seq.low = seq; |
| 158 | xo->seq.hi = xfrm_replay_seqhi(x, seq); |
| 159 | |
| 160 | if(!(features & NETIF_F_HW_ESP)) |
| 161 | xo->flags |= CRYPTO_FALLBACK; |
| 162 | |
| 163 | x->outer_mode->xmit(x, skb2); |
| 164 | |
| 165 | err = x->type_offload->xmit(x, skb2, esp_features); |
| 166 | if (err) { |
| 167 | kfree_skb_list(segs); |
| 168 | return ERR_PTR(err); |
| 169 | } |
| 170 | |
| 171 | if (!skb_is_gso(skb2)) |
| 172 | seq++; |
| 173 | else |
| 174 | seq += skb_shinfo(skb2)->gso_segs; |
| 175 | |
| 176 | skb_push(skb2, skb2->mac_len); |
| 177 | skb2 = nskb; |
| 178 | } while (skb2); |
| 179 | |
| 180 | out: |
| 181 | return segs; |
| 182 | } |
| 183 | |
Steffen Klassert | 383d035 | 2017-04-14 10:06:42 +0200 | [diff] [blame] | 184 | static int esp6_input_tail(struct xfrm_state *x, struct sk_buff *skb) |
| 185 | { |
| 186 | struct crypto_aead *aead = x->data; |
| 187 | |
| 188 | if (!pskb_may_pull(skb, sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead))) |
| 189 | return -EINVAL; |
| 190 | |
| 191 | skb->ip_summed = CHECKSUM_NONE; |
| 192 | |
| 193 | return esp6_input_done2(skb, 0); |
| 194 | } |
| 195 | |
| 196 | static int esp6_xmit(struct xfrm_state *x, struct sk_buff *skb, netdev_features_t features) |
| 197 | { |
| 198 | int err; |
| 199 | int alen; |
| 200 | int blksize; |
| 201 | struct xfrm_offload *xo; |
| 202 | struct ip_esp_hdr *esph; |
| 203 | struct crypto_aead *aead; |
| 204 | struct esp_info esp; |
| 205 | bool hw_offload = true; |
| 206 | |
| 207 | esp.inplace = true; |
| 208 | |
| 209 | xo = xfrm_offload(skb); |
| 210 | |
| 211 | if (!xo) |
| 212 | return -EINVAL; |
| 213 | |
| 214 | if (!(features & NETIF_F_HW_ESP) || |
| 215 | (x->xso.offload_handle && x->xso.dev != skb->dev)) { |
| 216 | xo->flags |= CRYPTO_FALLBACK; |
| 217 | } |
| 218 | |
| 219 | esp.proto = xo->proto; |
| 220 | |
| 221 | /* skb is pure payload to encrypt */ |
| 222 | |
| 223 | aead = x->data; |
| 224 | alen = crypto_aead_authsize(aead); |
| 225 | |
| 226 | esp.tfclen = 0; |
| 227 | /* XXX: Add support for tfc padding here. */ |
| 228 | |
| 229 | blksize = ALIGN(crypto_aead_blocksize(aead), 4); |
| 230 | esp.clen = ALIGN(skb->len + 2 + esp.tfclen, blksize); |
| 231 | esp.plen = esp.clen - skb->len - esp.tfclen; |
| 232 | esp.tailen = esp.tfclen + esp.plen + alen; |
| 233 | |
| 234 | if (!hw_offload || (hw_offload && !skb_is_gso(skb))) { |
| 235 | esp.nfrags = esp6_output_head(x, skb, &esp); |
| 236 | if (esp.nfrags < 0) |
| 237 | return esp.nfrags; |
| 238 | } |
| 239 | |
| 240 | esph = ip_esp_hdr(skb); |
| 241 | esph->spi = x->id.spi; |
| 242 | |
| 243 | skb_push(skb, -skb_network_offset(skb)); |
| 244 | |
| 245 | if (xo->flags & XFRM_GSO_SEGMENT) { |
| 246 | esph->seq_no = htonl(xo->seq.low); |
| 247 | } else { |
| 248 | int len; |
| 249 | |
| 250 | len = skb->len - sizeof(struct ipv6hdr); |
| 251 | if (len > IPV6_MAXPLEN) |
| 252 | len = 0; |
| 253 | |
| 254 | ipv6_hdr(skb)->payload_len = htons(len); |
| 255 | } |
| 256 | |
| 257 | if (x->xso.offload_handle && !(xo->flags & CRYPTO_FALLBACK)) |
| 258 | return 0; |
| 259 | |
| 260 | esp.seqno = cpu_to_be64(xo->seq.low + ((u64)xo->seq.hi << 32)); |
| 261 | |
| 262 | err = esp6_output_tail(x, skb, &esp); |
| 263 | if (err < 0) |
| 264 | return err; |
| 265 | |
| 266 | secpath_reset(skb); |
| 267 | |
| 268 | return 0; |
| 269 | } |
| 270 | |
Steffen Klassert | 7785bba | 2017-02-15 09:40:00 +0100 | [diff] [blame] | 271 | static const struct net_offload esp6_offload = { |
| 272 | .callbacks = { |
| 273 | .gro_receive = esp6_gro_receive, |
Steffen Klassert | 7862b40 | 2017-04-14 10:06:50 +0200 | [diff] [blame] | 274 | .gso_segment = esp6_gso_segment, |
Steffen Klassert | 7785bba | 2017-02-15 09:40:00 +0100 | [diff] [blame] | 275 | }, |
| 276 | }; |
| 277 | |
Steffen Klassert | 383d035 | 2017-04-14 10:06:42 +0200 | [diff] [blame] | 278 | static const struct xfrm_type_offload esp6_type_offload = { |
| 279 | .description = "ESP6 OFFLOAD", |
| 280 | .owner = THIS_MODULE, |
| 281 | .proto = IPPROTO_ESP, |
| 282 | .input_tail = esp6_input_tail, |
| 283 | .xmit = esp6_xmit, |
Steffen Klassert | 7862b40 | 2017-04-14 10:06:50 +0200 | [diff] [blame] | 284 | .encap = esp6_gso_encap, |
Steffen Klassert | 383d035 | 2017-04-14 10:06:42 +0200 | [diff] [blame] | 285 | }; |
| 286 | |
Steffen Klassert | 7785bba | 2017-02-15 09:40:00 +0100 | [diff] [blame] | 287 | static int __init esp6_offload_init(void) |
| 288 | { |
Steffen Klassert | 383d035 | 2017-04-14 10:06:42 +0200 | [diff] [blame] | 289 | if (xfrm_register_type_offload(&esp6_type_offload, AF_INET6) < 0) { |
| 290 | pr_info("%s: can't add xfrm type offload\n", __func__); |
| 291 | return -EAGAIN; |
| 292 | } |
| 293 | |
Steffen Klassert | 7785bba | 2017-02-15 09:40:00 +0100 | [diff] [blame] | 294 | return inet6_add_offload(&esp6_offload, IPPROTO_ESP); |
| 295 | } |
| 296 | |
| 297 | static void __exit esp6_offload_exit(void) |
| 298 | { |
Steffen Klassert | 383d035 | 2017-04-14 10:06:42 +0200 | [diff] [blame] | 299 | if (xfrm_unregister_type_offload(&esp6_type_offload, AF_INET6) < 0) |
| 300 | pr_info("%s: can't remove xfrm type offload\n", __func__); |
| 301 | |
Steffen Klassert | 7785bba | 2017-02-15 09:40:00 +0100 | [diff] [blame] | 302 | inet6_del_offload(&esp6_offload, IPPROTO_ESP); |
| 303 | } |
| 304 | |
| 305 | module_init(esp6_offload_init); |
| 306 | module_exit(esp6_offload_exit); |
| 307 | MODULE_LICENSE("GPL"); |
| 308 | MODULE_AUTHOR("Steffen Klassert <steffen.klassert@secunet.com>"); |