blob: a836453b58e5f6595eb8dd646a33aa7fbc28a057 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * esp_encrypt.c : IPSec ESP encrypt node
3 *
4 * Copyright (c) 2015 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#include <vnet/vnet.h>
19#include <vnet/api_errno.h>
20#include <vnet/ip/ip.h>
21
Damjan Marion91f17dc2019-03-18 18:59:25 +010022#include <vnet/crypto/crypto.h>
23
Ed Warnickecb9cada2015-12-08 15:45:58 -070024#include <vnet/ipsec/ipsec.h>
Neale Ranns28287212019-12-16 00:53:11 +000025#include <vnet/ipsec/ipsec_tun.h>
Neale Ranns93688d72022-08-09 03:34:51 +000026#include <vnet/ipsec/ipsec.api_enum.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070027#include <vnet/ipsec/esp.h>
Neale Ranns041add72020-01-02 04:06:10 +000028#include <vnet/tunnel/tunnel_dp.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070029
Neale Ranns4a58e492020-12-21 13:19:10 +000030#define foreach_esp_encrypt_next \
31 _ (DROP4, "ip4-drop") \
32 _ (DROP6, "ip6-drop") \
33 _ (DROP_MPLS, "mpls-drop") \
34 _ (HANDOFF4, "handoff4") \
35 _ (HANDOFF6, "handoff6") \
36 _ (HANDOFF_MPLS, "handoff-mpls") \
37 _ (INTERFACE_OUTPUT, "interface-output")
Ed Warnickecb9cada2015-12-08 15:45:58 -070038
39#define _(v, s) ESP_ENCRYPT_NEXT_##v,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070040typedef enum
41{
Ed Warnickecb9cada2015-12-08 15:45:58 -070042 foreach_esp_encrypt_next
43#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070044 ESP_ENCRYPT_N_NEXT,
Ed Warnickecb9cada2015-12-08 15:45:58 -070045} esp_encrypt_next_t;
46
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070047typedef struct
48{
Neale Ranns8d7c5022019-02-06 01:41:05 -080049 u32 sa_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -070050 u32 spi;
51 u32 seq;
Neale Ranns6afaae12019-07-17 15:07:14 +000052 u32 sa_seq_hi;
Klement Sekera4b089f22018-04-17 18:04:57 +020053 u8 udp_encap;
Ed Warnickecb9cada2015-12-08 15:45:58 -070054 ipsec_crypto_alg_t crypto_alg;
55 ipsec_integ_alg_t integ_alg;
56} esp_encrypt_trace_t;
57
Fan Zhangf5395782020-04-29 14:00:03 +010058typedef struct
59{
60 u32 next_index;
61} esp_encrypt_post_trace_t;
62
Neale Ranns93688d72022-08-09 03:34:51 +000063typedef vl_counter_esp_encrypt_enum_t esp_encrypt_error_t;
64
Ed Warnickecb9cada2015-12-08 15:45:58 -070065/* packet trace format function */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070066static u8 *
67format_esp_encrypt_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070068{
69 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
70 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070071 esp_encrypt_trace_t *t = va_arg (*args, esp_encrypt_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070072
Guillaume Solignac8f818cc2019-05-15 12:02:33 +020073 s =
74 format (s,
Neale Ranns6afaae12019-07-17 15:07:14 +000075 "esp: sa-index %d spi %u (0x%08x) seq %u sa-seq-hi %u crypto %U integrity %U%s",
76 t->sa_index, t->spi, t->spi, t->seq, t->sa_seq_hi,
77 format_ipsec_crypto_alg,
Guillaume Solignac8f818cc2019-05-15 12:02:33 +020078 t->crypto_alg, format_ipsec_integ_alg, t->integ_alg,
79 t->udp_encap ? " udp-encap-enabled" : "");
Ed Warnickecb9cada2015-12-08 15:45:58 -070080 return s;
81}
82
Fan Zhangf5395782020-04-29 14:00:03 +010083static u8 *
84format_esp_post_encrypt_trace (u8 * s, va_list * args)
85{
86 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
87 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
88 esp_encrypt_post_trace_t *t = va_arg (*args, esp_encrypt_post_trace_t *);
89
90 s = format (s, "esp-post: next node index %u", t->next_index);
91 return s;
92}
93
Damjan Marionc59b9a22019-03-19 15:38:40 +010094/* pad packet in input buffer */
95static_always_inline u8 *
Neale Rannsf16e9a52021-02-25 19:09:24 +000096esp_add_footer_and_icv (vlib_main_t *vm, vlib_buffer_t **last, u8 esp_align,
97 u8 icv_sz, vlib_node_runtime_t *node,
Filip Tehlarefcad1a2020-02-04 09:36:04 +000098 u16 buffer_data_size, uword total_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -070099{
Damjan Marionc59b9a22019-03-19 15:38:40 +0100100 static const u8 pad_data[ESP_MAX_BLOCK_SIZE] = {
101 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
Milan Lenco7885c742020-08-20 13:23:09 +0200102 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x00,
Damjan Marionc59b9a22019-03-19 15:38:40 +0100103 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700104
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000105 u16 min_length = total_len + sizeof (esp_footer_t);
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500106 u16 new_length = round_pow2 (min_length, esp_align);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100107 u8 pad_bytes = new_length - min_length;
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000108 esp_footer_t *f = (esp_footer_t *) (vlib_buffer_get_current (last[0]) +
109 last[0]->current_length + pad_bytes);
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000110 u16 tail_sz = sizeof (esp_footer_t) + pad_bytes + icv_sz;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700111
Benoît Ganne217ba5a2021-06-14 17:23:56 +0200112 if (last[0]->current_data + last[0]->current_length + tail_sz >
113 buffer_data_size)
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000114 {
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000115 u32 tmp_bi = 0;
116 if (vlib_buffer_alloc (vm, &tmp_bi, 1) != 1)
117 return 0;
Filip Tehlarc2c1bfd2020-02-13 07:49:30 +0000118
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000119 vlib_buffer_t *tmp = vlib_get_buffer (vm, tmp_bi);
120 last[0]->next_buffer = tmp_bi;
121 last[0]->flags |= VLIB_BUFFER_NEXT_PRESENT;
122 f = (esp_footer_t *) (vlib_buffer_get_current (tmp) + pad_bytes);
123 tmp->current_length += tail_sz;
124 last[0] = tmp;
125 }
126 else
127 last[0]->current_length += tail_sz;
128
129 f->pad_length = pad_bytes;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100130 if (pad_bytes)
Benoît Ganne4505f012019-12-07 09:14:27 -0700131 {
132 ASSERT (pad_bytes <= ESP_MAX_BLOCK_SIZE);
133 pad_bytes = clib_min (ESP_MAX_BLOCK_SIZE, pad_bytes);
134 clib_memcpy_fast ((u8 *) f - pad_bytes, pad_data, pad_bytes);
135 }
Damjan Marionc59b9a22019-03-19 15:38:40 +0100136
Damjan Marionc59b9a22019-03-19 15:38:40 +0100137 return &f->next_header;
138}
139
140static_always_inline void
141esp_update_ip4_hdr (ip4_header_t * ip4, u16 len, int is_transport, int is_udp)
142{
Neale Ranns1b582b82019-04-18 19:49:13 -0700143 ip_csum_t sum;
144 u16 old_len;
145
146 len = clib_net_to_host_u16 (len);
147 old_len = ip4->length;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100148
149 if (is_transport)
150 {
151 u8 prot = is_udp ? IP_PROTOCOL_UDP : IP_PROTOCOL_IPSEC_ESP;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100152
Neale Ranns1b582b82019-04-18 19:49:13 -0700153 sum = ip_csum_update (ip4->checksum, ip4->protocol,
154 prot, ip4_header_t, protocol);
155 ip4->protocol = prot;
156
157 sum = ip_csum_update (sum, old_len, len, ip4_header_t, length);
158 }
159 else
160 sum = ip_csum_update (ip4->checksum, old_len, len, ip4_header_t, length);
161
162 ip4->length = len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100163 ip4->checksum = ip_csum_fold (sum);
164}
165
166static_always_inline void
167esp_fill_udp_hdr (ipsec_sa_t * sa, udp_header_t * udp, u16 len)
168{
169 clib_memcpy_fast (udp, &sa->udp_hdr, sizeof (udp_header_t));
170 udp->length = clib_net_to_host_u16 (len);
171}
172
173static_always_inline u8
174ext_hdr_is_pre_esp (u8 nexthdr)
175{
176#ifdef CLIB_HAVE_VEC128
177 static const u8x16 ext_hdr_types = {
178 IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS,
179 IP_PROTOCOL_IPV6_ROUTE,
180 IP_PROTOCOL_IPV6_FRAGMENTATION,
181 };
182
183 return !u8x16_is_all_zero (ext_hdr_types == u8x16_splat (nexthdr));
184#else
Piotr Bronowski3a6bc6f2023-02-23 09:56:49 +0000185 return (!(nexthdr ^ IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS) ||
186 !(nexthdr ^ IP_PROTOCOL_IPV6_ROUTE) ||
187 !(nexthdr ^ IP_PROTOCOL_IPV6_FRAGMENTATION));
Damjan Marionc59b9a22019-03-19 15:38:40 +0100188#endif
189}
190
191static_always_inline u8
Neale Ranns02950402019-12-20 00:54:57 +0000192esp_get_ip6_hdr_len (ip6_header_t * ip6, ip6_ext_header_t ** ext_hdr)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100193{
194 /* this code assumes that HbH, route and frag headers will be before
195 others, if that is not the case, they will end up encrypted */
Damjan Marionc59b9a22019-03-19 15:38:40 +0100196 u8 len = sizeof (ip6_header_t);
197 ip6_ext_header_t *p;
198
199 /* if next packet doesn't have ext header */
200 if (ext_hdr_is_pre_esp (ip6->protocol) == 0)
Neale Ranns02950402019-12-20 00:54:57 +0000201 {
202 *ext_hdr = NULL;
203 return len;
204 }
Damjan Marionc59b9a22019-03-19 15:38:40 +0100205
Ole Troan03092c12021-11-23 15:55:39 +0100206 p = ip6_next_header (ip6);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100207 len += ip6_ext_header_len (p);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100208 while (ext_hdr_is_pre_esp (p->next_hdr))
209 {
210 len += ip6_ext_header_len (p);
211 p = ip6_ext_next_header (p);
212 }
213
Neale Ranns02950402019-12-20 00:54:57 +0000214 *ext_hdr = p;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100215 return len;
216}
217
Benoît Ganne02dfd292022-01-18 15:56:41 +0100218/* IPsec IV generation: IVs requirements differ depending of the
219 * encryption mode: IVs must be unpredictable for AES-CBC whereas it can
220 * be predictable but should never be reused with the same key material
221 * for CTR and GCM.
Benoît Ganne5527a782022-01-18 15:56:41 +0100222 * To avoid reusing the same IVs between multiple VPP instances and between
223 * restarts, we use a properly chosen PRNG to generate IVs. To ensure the IV is
224 * unpredictable for CBC, it is then encrypted using the same key as the
225 * message. You can refer to NIST SP800-38a and NIST SP800-38d for more
226 * details. */
Benoît Ganne02dfd292022-01-18 15:56:41 +0100227static_always_inline void *
228esp_generate_iv (ipsec_sa_t *sa, void *payload, int iv_sz)
229{
230 ASSERT (iv_sz >= sizeof (u64));
231 u64 *iv = (u64 *) (payload - iv_sz);
232 clib_memset_u8 (iv, 0, iv_sz);
Benoît Ganne5527a782022-01-18 15:56:41 +0100233 *iv = clib_pcg64i_random_r (&sa->iv_prng);
Benoît Ganne02dfd292022-01-18 15:56:41 +0100234 return iv;
235}
236
Damjan Marionc59b9a22019-03-19 15:38:40 +0100237static_always_inline void
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000238esp_process_chained_ops (vlib_main_t * vm, vlib_node_runtime_t * node,
239 vnet_crypto_op_t * ops, vlib_buffer_t * b[],
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000240 u16 * nexts, vnet_crypto_op_chunk_t * chunks,
241 u16 drop_next)
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000242{
243 u32 n_fail, n_ops = vec_len (ops);
244 vnet_crypto_op_t *op = ops;
245
246 if (n_ops == 0)
247 return;
248
249 n_fail = n_ops - vnet_crypto_process_chained_ops (vm, op, chunks, n_ops);
250
251 while (n_fail)
252 {
253 ASSERT (op - ops < n_ops);
254
255 if (op->status != VNET_CRYPTO_OP_STATUS_COMPLETED)
256 {
257 u32 bi = op->user_data;
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100258 esp_encrypt_set_next_index (b[bi], node, vm->thread_index,
259 ESP_ENCRYPT_ERROR_CRYPTO_ENGINE_ERROR,
260 bi, nexts, drop_next,
261 vnet_buffer (b[bi])->ipsec.sad_index);
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000262 n_fail--;
263 }
264 op++;
265 }
266}
267
268static_always_inline void
Damjan Marionc59b9a22019-03-19 15:38:40 +0100269esp_process_ops (vlib_main_t * vm, vlib_node_runtime_t * node,
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000270 vnet_crypto_op_t * ops, vlib_buffer_t * b[], u16 * nexts,
271 u16 drop_next)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100272{
273 u32 n_fail, n_ops = vec_len (ops);
274 vnet_crypto_op_t *op = ops;
275
276 if (n_ops == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277 return;
278
Damjan Marionc59b9a22019-03-19 15:38:40 +0100279 n_fail = n_ops - vnet_crypto_process_ops (vm, op, n_ops);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280
Damjan Marionc59b9a22019-03-19 15:38:40 +0100281 while (n_fail)
282 {
283 ASSERT (op - ops < n_ops);
284
285 if (op->status != VNET_CRYPTO_OP_STATUS_COMPLETED)
286 {
287 u32 bi = op->user_data;
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100288 esp_encrypt_set_next_index (b[bi], node, vm->thread_index,
289 ESP_ENCRYPT_ERROR_CRYPTO_ENGINE_ERROR,
290 bi, nexts, drop_next,
291 vnet_buffer (b[bi])->ipsec.sad_index);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100292 n_fail--;
293 }
294 op++;
295 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700296}
297
Fan Zhangf5395782020-04-29 14:00:03 +0100298static_always_inline u32
299esp_encrypt_chain_crypto (vlib_main_t * vm, ipsec_per_thread_data_t * ptd,
300 ipsec_sa_t * sa0, vlib_buffer_t * b,
301 vlib_buffer_t * lb, u8 icv_sz, u8 * start,
302 u32 start_len, u16 * n_ch)
303{
304 vnet_crypto_op_chunk_t *ch;
305 vlib_buffer_t *cb = b;
306 u32 n_chunks = 1;
307 u32 total_len;
308 vec_add2 (ptd->chunks, ch, 1);
309 total_len = ch->len = start_len;
310 ch->src = ch->dst = start;
311 cb = vlib_get_buffer (vm, cb->next_buffer);
312
313 while (1)
314 {
315 vec_add2 (ptd->chunks, ch, 1);
316 n_chunks += 1;
317 if (lb == cb)
318 total_len += ch->len = cb->current_length - icv_sz;
319 else
320 total_len += ch->len = cb->current_length;
321 ch->src = ch->dst = vlib_buffer_get_current (cb);
322
323 if (!(cb->flags & VLIB_BUFFER_NEXT_PRESENT))
324 break;
325
326 cb = vlib_get_buffer (vm, cb->next_buffer);
327 }
328
329 if (n_ch)
330 *n_ch = n_chunks;
331
332 return total_len;
333}
334
335static_always_inline u32
336esp_encrypt_chain_integ (vlib_main_t * vm, ipsec_per_thread_data_t * ptd,
337 ipsec_sa_t * sa0, vlib_buffer_t * b,
338 vlib_buffer_t * lb, u8 icv_sz, u8 * start,
339 u32 start_len, u8 * digest, u16 * n_ch)
340{
341 vnet_crypto_op_chunk_t *ch;
342 vlib_buffer_t *cb = b;
343 u32 n_chunks = 1;
344 u32 total_len;
345 vec_add2 (ptd->chunks, ch, 1);
346 total_len = ch->len = start_len;
347 ch->src = start;
348 cb = vlib_get_buffer (vm, cb->next_buffer);
349
350 while (1)
351 {
352 vec_add2 (ptd->chunks, ch, 1);
353 n_chunks += 1;
354 if (lb == cb)
355 {
356 total_len += ch->len = cb->current_length - icv_sz;
357 if (ipsec_sa_is_set_USE_ESN (sa0))
358 {
359 u32 seq_hi = clib_net_to_host_u32 (sa0->seq_hi);
360 clib_memcpy_fast (digest, &seq_hi, sizeof (seq_hi));
361 ch->len += sizeof (seq_hi);
362 total_len += sizeof (seq_hi);
363 }
364 }
365 else
366 total_len += ch->len = cb->current_length;
367 ch->src = vlib_buffer_get_current (cb);
368
369 if (!(cb->flags & VLIB_BUFFER_NEXT_PRESENT))
370 break;
371
372 cb = vlib_get_buffer (vm, cb->next_buffer);
373 }
374
375 if (n_ch)
376 *n_ch = n_chunks;
377
378 return total_len;
379}
380
381always_inline void
Benoît Ganne490b9272021-01-22 18:03:09 +0100382esp_prepare_sync_op (vlib_main_t *vm, ipsec_per_thread_data_t *ptd,
383 vnet_crypto_op_t **crypto_ops,
Neale Ranns5b891102021-06-28 13:31:28 +0000384 vnet_crypto_op_t **integ_ops, ipsec_sa_t *sa0, u32 seq_hi,
Neale Rannsf16e9a52021-02-25 19:09:24 +0000385 u8 *payload, u16 payload_len, u8 iv_sz, u8 icv_sz, u32 bi,
386 vlib_buffer_t **b, vlib_buffer_t *lb, u32 hdr_len,
387 esp_header_t *esp)
Fan Zhangf5395782020-04-29 14:00:03 +0100388{
389 if (sa0->crypto_enc_op_id)
390 {
391 vnet_crypto_op_t *op;
392 vec_add2_aligned (crypto_ops[0], op, 1, CLIB_CACHE_LINE_BYTES);
393 vnet_crypto_op_init (op, sa0->crypto_enc_op_id);
Benoît Ganne02dfd292022-01-18 15:56:41 +0100394 u8 *crypto_start = payload;
395 /* esp_add_footer_and_icv() in esp_encrypt_inline() makes sure we always
396 * have enough space for ESP header and footer which includes ICV */
397 ASSERT (payload_len > icv_sz);
398 u16 crypto_len = payload_len - icv_sz;
Fan Zhangf5395782020-04-29 14:00:03 +0100399
Benoît Ganne02dfd292022-01-18 15:56:41 +0100400 /* generate the IV in front of the payload */
401 void *pkt_iv = esp_generate_iv (sa0, payload, iv_sz);
402
Fan Zhangf5395782020-04-29 14:00:03 +0100403 op->key_index = sa0->crypto_key_index;
Neale Rannsf16e9a52021-02-25 19:09:24 +0000404 op->user_data = bi;
Fan Zhangf5395782020-04-29 14:00:03 +0100405
Benoît Ganne490b9272021-01-22 18:03:09 +0100406 if (ipsec_sa_is_set_IS_CTR (sa0))
Fan Zhangf5395782020-04-29 14:00:03 +0100407 {
Benoît Ganne490b9272021-01-22 18:03:09 +0100408 /* construct nonce in a scratch space in front of the IP header */
409 esp_ctr_nonce_t *nonce =
Benoît Ganne02dfd292022-01-18 15:56:41 +0100410 (esp_ctr_nonce_t *) (pkt_iv - hdr_len - sizeof (*nonce));
Benoît Ganne490b9272021-01-22 18:03:09 +0100411 if (ipsec_sa_is_set_IS_AEAD (sa0))
412 {
413 /* constuct aad in a scratch space in front of the nonce */
414 op->aad = (u8 *) nonce - sizeof (esp_aead_t);
Neale Ranns5b891102021-06-28 13:31:28 +0000415 op->aad_len = esp_aad_fill (op->aad, esp, sa0, seq_hi);
Benoît Ganne02dfd292022-01-18 15:56:41 +0100416 op->tag = payload + crypto_len;
Benoît Ganne490b9272021-01-22 18:03:09 +0100417 op->tag_len = 16;
Benoît Ganne84e66582023-03-10 17:33:03 +0100418 if (PREDICT_FALSE (ipsec_sa_is_set_IS_NULL_GMAC (sa0)))
419 {
420 /* RFC-4543 ENCR_NULL_AUTH_AES_GMAC: IV is part of AAD */
421 crypto_start -= iv_sz;
422 crypto_len += iv_sz;
423 }
Benoît Ganne490b9272021-01-22 18:03:09 +0100424 }
425 else
426 {
427 nonce->ctr = clib_host_to_net_u32 (1);
428 }
Fan Zhangf5395782020-04-29 14:00:03 +0100429
Fan Zhangf5395782020-04-29 14:00:03 +0100430 nonce->salt = sa0->salt;
Benoît Ganne02dfd292022-01-18 15:56:41 +0100431 nonce->iv = *(u64 *) pkt_iv;
Fan Zhangf5395782020-04-29 14:00:03 +0100432 op->iv = (u8 *) nonce;
433 }
434 else
435 {
Benoît Ganne02dfd292022-01-18 15:56:41 +0100436 /* construct zero iv in front of the IP header */
437 op->iv = pkt_iv - hdr_len - iv_sz;
438 clib_memset_u8 (op->iv, 0, iv_sz);
439 /* include iv field in crypto */
440 crypto_start -= iv_sz;
441 crypto_len += iv_sz;
Fan Zhangf5395782020-04-29 14:00:03 +0100442 }
443
Benoît Ganne5527a782022-01-18 15:56:41 +0100444 if (PREDICT_FALSE (lb != b[0]))
Fan Zhangf5395782020-04-29 14:00:03 +0100445 {
446 /* is chained */
447 op->flags |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS;
448 op->chunk_index = vec_len (ptd->chunks);
449 op->tag = vlib_buffer_get_tail (lb) - icv_sz;
Benoît Ganne02dfd292022-01-18 15:56:41 +0100450 esp_encrypt_chain_crypto (vm, ptd, sa0, b[0], lb, icv_sz,
451 crypto_start, crypto_len + icv_sz,
452 &op->n_chunks);
453 }
454 else
455 {
456 /* not chained */
457 op->src = op->dst = crypto_start;
458 op->len = crypto_len;
Fan Zhangf5395782020-04-29 14:00:03 +0100459 }
460 }
461
462 if (sa0->integ_op_id)
463 {
464 vnet_crypto_op_t *op;
465 vec_add2_aligned (integ_ops[0], op, 1, CLIB_CACHE_LINE_BYTES);
466 vnet_crypto_op_init (op, sa0->integ_op_id);
467 op->src = payload - iv_sz - sizeof (esp_header_t);
468 op->digest = payload + payload_len - icv_sz;
469 op->key_index = sa0->integ_key_index;
470 op->digest_len = icv_sz;
471 op->len = payload_len - icv_sz + iv_sz + sizeof (esp_header_t);
Neale Rannsf16e9a52021-02-25 19:09:24 +0000472 op->user_data = bi;
Fan Zhangf5395782020-04-29 14:00:03 +0100473
474 if (lb != b[0])
475 {
476 /* is chained */
477 op->flags |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS;
478 op->chunk_index = vec_len (ptd->chunks);
479 op->digest = vlib_buffer_get_tail (lb) - icv_sz;
480
481 esp_encrypt_chain_integ (vm, ptd, sa0, b[0], lb, icv_sz,
482 payload - iv_sz - sizeof (esp_header_t),
483 payload_len + iv_sz +
484 sizeof (esp_header_t), op->digest,
485 &op->n_chunks);
486 }
487 else if (ipsec_sa_is_set_USE_ESN (sa0))
488 {
Neale Ranns5b891102021-06-28 13:31:28 +0000489 u32 tmp = clib_net_to_host_u32 (seq_hi);
490 clib_memcpy_fast (op->digest, &tmp, sizeof (seq_hi));
Fan Zhangf5395782020-04-29 14:00:03 +0100491 op->len += sizeof (seq_hi);
492 }
493 }
494}
495
Neale Rannsfc811342021-02-26 10:35:33 +0000496static_always_inline void
497esp_prepare_async_frame (vlib_main_t *vm, ipsec_per_thread_data_t *ptd,
498 vnet_crypto_async_frame_t *async_frame,
499 ipsec_sa_t *sa, vlib_buffer_t *b, esp_header_t *esp,
500 u8 *payload, u32 payload_len, u8 iv_sz, u8 icv_sz,
501 u32 bi, u16 next, u32 hdr_len, u16 async_next,
502 vlib_buffer_t *lb)
Fan Zhangf5395782020-04-29 14:00:03 +0100503{
504 esp_post_data_t *post = esp_post_data (b);
505 u8 *tag, *iv, *aad = 0;
506 u8 flag = 0;
Benoît Ganne5527a782022-01-18 15:56:41 +0100507 const u32 key_index = sa->crypto_key_index;
Benoît Ganne02dfd292022-01-18 15:56:41 +0100508 i16 crypto_start_offset, integ_start_offset;
Fan Zhangf5395782020-04-29 14:00:03 +0100509 u16 crypto_total_len, integ_total_len;
510
Fan Zhang18f0e312020-10-19 13:08:34 +0100511 post->next_index = next;
Fan Zhangf5395782020-04-29 14:00:03 +0100512
513 /* crypto */
Benoît Ganne02dfd292022-01-18 15:56:41 +0100514 crypto_start_offset = integ_start_offset = payload - b->data;
Fan Zhangf5395782020-04-29 14:00:03 +0100515 crypto_total_len = integ_total_len = payload_len - icv_sz;
516 tag = payload + crypto_total_len;
517
Benoît Ganne02dfd292022-01-18 15:56:41 +0100518 /* generate the IV in front of the payload */
519 void *pkt_iv = esp_generate_iv (sa, payload, iv_sz);
520
Benoît Ganne490b9272021-01-22 18:03:09 +0100521 if (ipsec_sa_is_set_IS_CTR (sa))
Fan Zhangf5395782020-04-29 14:00:03 +0100522 {
Benoît Ganne490b9272021-01-22 18:03:09 +0100523 /* construct nonce in a scratch space in front of the IP header */
Benoît Ganne02dfd292022-01-18 15:56:41 +0100524 esp_ctr_nonce_t *nonce =
525 (esp_ctr_nonce_t *) (pkt_iv - hdr_len - sizeof (*nonce));
Benoît Ganne490b9272021-01-22 18:03:09 +0100526 if (ipsec_sa_is_set_IS_AEAD (sa))
527 {
528 /* constuct aad in a scratch space in front of the nonce */
529 aad = (u8 *) nonce - sizeof (esp_aead_t);
Neale Ranns5b891102021-06-28 13:31:28 +0000530 esp_aad_fill (aad, esp, sa, sa->seq_hi);
Benoît Ganne84e66582023-03-10 17:33:03 +0100531 if (PREDICT_FALSE (ipsec_sa_is_set_IS_NULL_GMAC (sa)))
532 {
533 /* RFC-4543 ENCR_NULL_AUTH_AES_GMAC: IV is part of AAD */
534 crypto_start_offset -= iv_sz;
535 crypto_total_len += iv_sz;
536 }
Benoît Ganne490b9272021-01-22 18:03:09 +0100537 }
538 else
539 {
540 nonce->ctr = clib_host_to_net_u32 (1);
541 }
542
543 nonce->salt = sa->salt;
Benoît Ganne02dfd292022-01-18 15:56:41 +0100544 nonce->iv = *(u64 *) pkt_iv;
Benoît Ganne490b9272021-01-22 18:03:09 +0100545 iv = (u8 *) nonce;
Fan Zhangf5395782020-04-29 14:00:03 +0100546 }
Benoît Ganne490b9272021-01-22 18:03:09 +0100547 else
Fan Zhangf5395782020-04-29 14:00:03 +0100548 {
Benoît Ganne02dfd292022-01-18 15:56:41 +0100549 /* construct zero iv in front of the IP header */
550 iv = pkt_iv - hdr_len - iv_sz;
551 clib_memset_u8 (iv, 0, iv_sz);
552 /* include iv field in crypto */
553 crypto_start_offset -= iv_sz;
554 crypto_total_len += iv_sz;
Fan Zhangf5395782020-04-29 14:00:03 +0100555 }
556
Benoît Ganne490b9272021-01-22 18:03:09 +0100557 if (lb != b)
558 {
559 /* chain */
560 flag |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS;
561 tag = vlib_buffer_get_tail (lb) - icv_sz;
Benoît Ganne02dfd292022-01-18 15:56:41 +0100562 crypto_total_len = esp_encrypt_chain_crypto (
563 vm, ptd, sa, b, lb, icv_sz, b->data + crypto_start_offset,
564 crypto_total_len + icv_sz, 0);
Benoît Ganne490b9272021-01-22 18:03:09 +0100565 }
566
567 if (sa->integ_op_id)
568 {
Benoît Ganne02dfd292022-01-18 15:56:41 +0100569 integ_start_offset -= iv_sz + sizeof (esp_header_t);
Benoît Ganne490b9272021-01-22 18:03:09 +0100570 integ_total_len += iv_sz + sizeof (esp_header_t);
571
572 if (b != lb)
573 {
574 integ_total_len = esp_encrypt_chain_integ (
575 vm, ptd, sa, b, lb, icv_sz,
576 payload - iv_sz - sizeof (esp_header_t),
577 payload_len + iv_sz + sizeof (esp_header_t), tag, 0);
578 }
579 else if (ipsec_sa_is_set_USE_ESN (sa))
580 {
581 u32 seq_hi = clib_net_to_host_u32 (sa->seq_hi);
582 clib_memcpy_fast (tag, &seq_hi, sizeof (seq_hi));
583 integ_total_len += sizeof (seq_hi);
584 }
585 }
586
Neale Rannsfc811342021-02-26 10:35:33 +0000587 /* this always succeeds because we know the frame is not full */
588 vnet_crypto_async_add_to_frame (vm, async_frame, key_index, crypto_total_len,
589 integ_total_len - crypto_total_len,
590 crypto_start_offset, integ_start_offset, bi,
591 async_next, iv, tag, aad, flag);
Fan Zhangf5395782020-04-29 14:00:03 +0100592}
593
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200594always_inline uword
Neale Ranns4a58e492020-12-21 13:19:10 +0000595esp_encrypt_inline (vlib_main_t *vm, vlib_node_runtime_t *node,
596 vlib_frame_t *frame, vnet_link_t lt, int is_tun,
Neale Rannsf16e9a52021-02-25 19:09:24 +0000597 u16 async_next_node)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700598{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700599 ipsec_main_t *im = &ipsec_main;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100600 ipsec_per_thread_data_t *ptd = vec_elt_at_index (im->ptd, vm->thread_index);
601 u32 *from = vlib_frame_vector_args (frame);
602 u32 n_left = frame->n_vectors;
603 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100604 u32 thread_index = vm->thread_index;
605 u16 buffer_data_size = vlib_buffer_get_default_data_size (vm);
606 u32 current_sa_index = ~0, current_sa_packets = 0;
607 u32 current_sa_bytes = 0, spi = 0;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500608 u8 esp_align = 4, iv_sz = 0, icv_sz = 0;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100609 ipsec_sa_t *sa0 = 0;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000610 vlib_buffer_t *lb;
611 vnet_crypto_op_t **crypto_ops = &ptd->crypto_ops;
612 vnet_crypto_op_t **integ_ops = &ptd->integ_ops;
Neale Rannsfc811342021-02-26 10:35:33 +0000613 vnet_crypto_async_frame_t *async_frames[VNET_CRYPTO_ASYNC_OP_N_IDS];
Fan Zhangf5395782020-04-29 14:00:03 +0100614 int is_async = im->async_mode;
Neale Rannsfc811342021-02-26 10:35:33 +0000615 vnet_crypto_async_op_id_t async_op = ~0;
Neale Ranns4a58e492020-12-21 13:19:10 +0000616 u16 drop_next =
617 (lt == VNET_LINK_IP6 ? ESP_ENCRYPT_NEXT_DROP6 :
618 (lt == VNET_LINK_IP4 ? ESP_ENCRYPT_NEXT_DROP4 :
619 ESP_ENCRYPT_NEXT_DROP_MPLS));
620 u16 handoff_next = (lt == VNET_LINK_IP6 ?
621 ESP_ENCRYPT_NEXT_HANDOFF6 :
622 (lt == VNET_LINK_IP4 ? ESP_ENCRYPT_NEXT_HANDOFF4 :
623 ESP_ENCRYPT_NEXT_HANDOFF_MPLS));
Neale Rannsf16e9a52021-02-25 19:09:24 +0000624 vlib_buffer_t *sync_bufs[VLIB_FRAME_SIZE];
625 u16 sync_nexts[VLIB_FRAME_SIZE], *sync_next = sync_nexts, n_sync = 0;
Damjan Mariondd298e82022-10-12 16:02:18 +0200626 u16 n_async = 0;
627 u16 noop_nexts[VLIB_FRAME_SIZE], n_noop = 0;
Neale Rannsf16e9a52021-02-25 19:09:24 +0000628 u32 sync_bi[VLIB_FRAME_SIZE];
629 u32 noop_bi[VLIB_FRAME_SIZE];
630 esp_encrypt_error_t err;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700631
Damjan Marionc59b9a22019-03-19 15:38:40 +0100632 vlib_get_buffers (vm, from, b, n_left);
Neale Rannsf16e9a52021-02-25 19:09:24 +0000633
634 vec_reset_length (ptd->crypto_ops);
635 vec_reset_length (ptd->integ_ops);
636 vec_reset_length (ptd->chained_crypto_ops);
637 vec_reset_length (ptd->chained_integ_ops);
Neale Rannsfc811342021-02-26 10:35:33 +0000638 vec_reset_length (ptd->async_frames);
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000639 vec_reset_length (ptd->chunks);
Neale Rannsfc811342021-02-26 10:35:33 +0000640 clib_memset (async_frames, 0, sizeof (async_frames));
Damjan Marionc59b9a22019-03-19 15:38:40 +0100641
642 while (n_left > 0)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700643 {
Zhiyong Yang1cff6432019-04-30 05:33:53 -0400644 u32 sa_index0;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100645 dpo_id_t *dpo;
646 esp_header_t *esp;
647 u8 *payload, *next_hdr_ptr;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000648 u16 payload_len, payload_len_total, n_bufs;
Neale Ranns4ec36c52020-03-31 09:21:29 -0400649 u32 hdr_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700650
Neale Rannsf16e9a52021-02-25 19:09:24 +0000651 err = ESP_ENCRYPT_ERROR_RX_PKTS;
652
Damjan Marionc59b9a22019-03-19 15:38:40 +0100653 if (n_left > 2)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700654 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100655 u8 *p;
656 vlib_prefetch_buffer_header (b[2], LOAD);
657 p = vlib_buffer_get_current (b[1]);
Damjan Marionaf7fb042021-07-15 11:54:41 +0200658 clib_prefetch_load (p);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100659 p -= CLIB_CACHE_LINE_BYTES;
Damjan Marionaf7fb042021-07-15 11:54:41 +0200660 clib_prefetch_load (p);
Neale Ranns123b5eb2020-10-16 14:03:55 +0000661 /* speculate that the trailer goes in the first buffer */
662 CLIB_PREFETCH (vlib_buffer_get_tail (b[1]),
663 CLIB_CACHE_LINE_BYTES, LOAD);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700664 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700665
Neale Ranns25edf142019-03-22 08:12:48 +0000666 if (is_tun)
667 {
668 /* we are on a ipsec tunnel's feature arc */
Neale Ranns28287212019-12-16 00:53:11 +0000669 vnet_buffer (b[0])->ipsec.sad_index =
670 sa_index0 = ipsec_tun_protect_get_sa_out
671 (vnet_buffer (b[0])->ip.adj_index[VLIB_TX]);
Neale Ranns6fdcc3d2021-10-08 07:30:47 +0000672
673 if (PREDICT_FALSE (INDEX_INVALID == sa_index0))
674 {
675 err = ESP_ENCRYPT_ERROR_NO_PROTECTION;
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100676 noop_nexts[n_noop] = drop_next;
677 b[0]->error = node->errors[err];
Neale Ranns6fdcc3d2021-10-08 07:30:47 +0000678 goto trace;
679 }
Neale Ranns25edf142019-03-22 08:12:48 +0000680 }
681 else
682 sa_index0 = vnet_buffer (b[0])->ipsec.sad_index;
683
684 if (sa_index0 != current_sa_index)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100685 {
Damjan Marion21f265f2019-06-05 15:45:50 +0200686 if (current_sa_packets)
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100687 vlib_increment_combined_counter (
688 &ipsec_sa_counters, thread_index, current_sa_index,
689 current_sa_packets, current_sa_bytes);
Damjan Marion21f265f2019-06-05 15:45:50 +0200690 current_sa_packets = current_sa_bytes = 0;
691
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000692 sa0 = ipsec_sa_get (sa_index0);
Neale Ranns123b5eb2020-10-16 14:03:55 +0000693
Neale Ranns6fdcc3d2021-10-08 07:30:47 +0000694 if (PREDICT_FALSE ((sa0->crypto_alg == IPSEC_CRYPTO_ALG_NONE &&
695 sa0->integ_alg == IPSEC_INTEG_ALG_NONE) &&
696 !ipsec_sa_is_set_NO_ALGO_NO_DROP (sa0)))
697 {
698 err = ESP_ENCRYPT_ERROR_NO_ENCRYPTION;
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100699 esp_encrypt_set_next_index (b[0], node, thread_index, err,
700 n_noop, noop_nexts, drop_next,
701 sa_index0);
Neale Ranns6fdcc3d2021-10-08 07:30:47 +0000702 goto trace;
703 }
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100704 current_sa_index = sa_index0;
705 vlib_prefetch_combined_counter (&ipsec_sa_counters, thread_index,
706 current_sa_index);
707
Neale Ranns123b5eb2020-10-16 14:03:55 +0000708 /* fetch the second cacheline ASAP */
Damjan Marionaf7fb042021-07-15 11:54:41 +0200709 clib_prefetch_load (sa0->cacheline1);
Neale Ranns123b5eb2020-10-16 14:03:55 +0000710
Damjan Marionc59b9a22019-03-19 15:38:40 +0100711 spi = clib_net_to_host_u32 (sa0->spi);
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500712 esp_align = sa0->esp_block_align;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200713 icv_sz = sa0->integ_icv_size;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100714 iv_sz = sa0->crypto_iv_size;
Neale Rannsf16e9a52021-02-25 19:09:24 +0000715 is_async = im->async_mode | ipsec_sa_is_set_IS_ASYNC (sa0);
Neale Rannsfc811342021-02-26 10:35:33 +0000716 }
Fan Zhangf5395782020-04-29 14:00:03 +0100717
Benoît Ganne5527a782022-01-18 15:56:41 +0100718 if (PREDICT_FALSE ((u16) ~0 == sa0->thread_index))
Neale Rannsf62a8c02019-04-02 08:13:33 +0000719 {
720 /* this is the first packet to use this SA, claim the SA
721 * for this thread. this could happen simultaneously on
722 * another thread */
Neale Ranns1a52d372021-02-04 11:33:32 +0000723 clib_atomic_cmp_and_swap (&sa0->thread_index, ~0,
Neale Rannsf62a8c02019-04-02 08:13:33 +0000724 ipsec_sa_assign_thread (thread_index));
725 }
726
Neale Ranns1a52d372021-02-04 11:33:32 +0000727 if (PREDICT_FALSE (thread_index != sa0->thread_index))
Neale Rannsf62a8c02019-04-02 08:13:33 +0000728 {
Neale Rannsaa7d7662021-02-10 08:42:49 +0000729 vnet_buffer (b[0])->ipsec.thread_index = sa0->thread_index;
Neale Rannsf16e9a52021-02-25 19:09:24 +0000730 err = ESP_ENCRYPT_ERROR_HANDOFF;
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100731 esp_encrypt_set_next_index (b[0], node, thread_index, err, n_noop,
732 noop_nexts, handoff_next,
733 current_sa_index);
Neale Rannsf62a8c02019-04-02 08:13:33 +0000734 goto trace;
735 }
736
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000737 lb = b[0];
738 n_bufs = vlib_buffer_chain_linearize (vm, b[0]);
739 if (n_bufs == 0)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100740 {
Neale Rannsf16e9a52021-02-25 19:09:24 +0000741 err = ESP_ENCRYPT_ERROR_NO_BUFFERS;
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100742 esp_encrypt_set_next_index (b[0], node, thread_index, err, n_noop,
743 noop_nexts, drop_next, current_sa_index);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100744 goto trace;
745 }
746
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000747 if (n_bufs > 1)
748 {
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000749 /* find last buffer in the chain */
750 while (lb->flags & VLIB_BUFFER_NEXT_PRESENT)
751 lb = vlib_get_buffer (vm, lb->next_buffer);
752 }
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000753
Damjan Marionc59b9a22019-03-19 15:38:40 +0100754 if (PREDICT_FALSE (esp_seq_advance (sa0)))
755 {
Neale Rannsf16e9a52021-02-25 19:09:24 +0000756 err = ESP_ENCRYPT_ERROR_SEQ_CYCLED;
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100757 esp_encrypt_set_next_index (b[0], node, thread_index, err, n_noop,
758 noop_nexts, drop_next, current_sa_index);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100759 goto trace;
760 }
761
762 /* space for IV */
763 hdr_len = iv_sz;
764
Damjan Mariond709cbc2019-03-26 13:16:42 +0100765 if (ipsec_sa_is_set_IS_TUNNEL (sa0))
Damjan Marionc59b9a22019-03-19 15:38:40 +0100766 {
767 payload = vlib_buffer_get_current (b[0]);
Neale Rannsf16e9a52021-02-25 19:09:24 +0000768 next_hdr_ptr = esp_add_footer_and_icv (
769 vm, &lb, esp_align, icv_sz, node, buffer_data_size,
770 vlib_buffer_length_in_chain (vm, b[0]));
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000771 if (!next_hdr_ptr)
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000772 {
Neale Rannsf16e9a52021-02-25 19:09:24 +0000773 err = ESP_ENCRYPT_ERROR_NO_BUFFERS;
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100774 esp_encrypt_set_next_index (b[0], node, thread_index, err,
775 n_noop, noop_nexts, drop_next,
776 current_sa_index);
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000777 goto trace;
778 }
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000779 b[0]->flags &= ~VLIB_BUFFER_TOTAL_LENGTH_VALID;
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000780 payload_len = b[0]->current_length;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000781 payload_len_total = vlib_buffer_length_in_chain (vm, b[0]);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100782
783 /* ESP header */
784 hdr_len += sizeof (*esp);
785 esp = (esp_header_t *) (payload - hdr_len);
786
787 /* optional UDP header */
Damjan Mariond709cbc2019-03-26 13:16:42 +0100788 if (ipsec_sa_is_set_UDP_ENCAP (sa0))
Damjan Marionc98275f2019-03-06 14:05:01 +0100789 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100790 hdr_len += sizeof (udp_header_t);
791 esp_fill_udp_hdr (sa0, (udp_header_t *) (payload - hdr_len),
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000792 payload_len_total + hdr_len);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100793 }
794
795 /* IP header */
Damjan Mariond709cbc2019-03-26 13:16:42 +0100796 if (ipsec_sa_is_set_IS_TUNNEL_V6 (sa0))
Damjan Marionc59b9a22019-03-19 15:38:40 +0100797 {
798 ip6_header_t *ip6;
799 u16 len = sizeof (ip6_header_t);
800 hdr_len += len;
801 ip6 = (ip6_header_t *) (payload - hdr_len);
Neale Ranns041add72020-01-02 04:06:10 +0000802 clib_memcpy_fast (ip6, &sa0->ip6_hdr, sizeof (ip6_header_t));
803
Neale Ranns4a58e492020-12-21 13:19:10 +0000804 if (VNET_LINK_IP6 == lt)
Neale Ranns041add72020-01-02 04:06:10 +0000805 {
806 *next_hdr_ptr = IP_PROTOCOL_IPV6;
807 tunnel_encap_fixup_6o6 (sa0->tunnel_flags,
808 (const ip6_header_t *) payload,
809 ip6);
810 }
Neale Ranns4a58e492020-12-21 13:19:10 +0000811 else if (VNET_LINK_IP4 == lt)
Neale Ranns041add72020-01-02 04:06:10 +0000812 {
813 *next_hdr_ptr = IP_PROTOCOL_IP_IN_IP;
Neale Rannsa91cb452021-02-04 11:02:52 +0000814 tunnel_encap_fixup_4o6 (sa0->tunnel_flags, b[0],
815 (const ip4_header_t *) payload, ip6);
Neale Ranns041add72020-01-02 04:06:10 +0000816 }
Neale Ranns4a58e492020-12-21 13:19:10 +0000817 else if (VNET_LINK_MPLS == lt)
818 {
819 *next_hdr_ptr = IP_PROTOCOL_MPLS_IN_IP;
820 tunnel_encap_fixup_mplso6 (
Neale Rannsa91cb452021-02-04 11:02:52 +0000821 sa0->tunnel_flags, b[0],
822 (const mpls_unicast_header_t *) payload, ip6);
Neale Ranns4a58e492020-12-21 13:19:10 +0000823 }
824 else
825 ASSERT (0);
826
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000827 len = payload_len_total + hdr_len - len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100828 ip6->payload_length = clib_net_to_host_u16 (len);
Neale Ranns45d6d832021-01-19 13:38:47 +0000829 b[0]->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Damjan Marionc98275f2019-03-06 14:05:01 +0100830 }
831 else
832 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100833 ip4_header_t *ip4;
834 u16 len = sizeof (ip4_header_t);
835 hdr_len += len;
836 ip4 = (ip4_header_t *) (payload - hdr_len);
Neale Ranns041add72020-01-02 04:06:10 +0000837 clib_memcpy_fast (ip4, &sa0->ip4_hdr, sizeof (ip4_header_t));
838
Neale Ranns4a58e492020-12-21 13:19:10 +0000839 if (VNET_LINK_IP6 == lt)
Neale Ranns041add72020-01-02 04:06:10 +0000840 {
841 *next_hdr_ptr = IP_PROTOCOL_IPV6;
842 tunnel_encap_fixup_6o4_w_chksum (sa0->tunnel_flags,
843 (const ip6_header_t *)
844 payload, ip4);
845 }
Neale Ranns4a58e492020-12-21 13:19:10 +0000846 else if (VNET_LINK_IP4 == lt)
Neale Ranns041add72020-01-02 04:06:10 +0000847 {
848 *next_hdr_ptr = IP_PROTOCOL_IP_IN_IP;
849 tunnel_encap_fixup_4o4_w_chksum (sa0->tunnel_flags,
850 (const ip4_header_t *)
851 payload, ip4);
852 }
Neale Ranns4a58e492020-12-21 13:19:10 +0000853 else if (VNET_LINK_MPLS == lt)
854 {
855 *next_hdr_ptr = IP_PROTOCOL_MPLS_IN_IP;
856 tunnel_encap_fixup_mplso4_w_chksum (
857 sa0->tunnel_flags, (const mpls_unicast_header_t *) payload,
858 ip4);
859 }
860 else
861 ASSERT (0);
862
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000863 len = payload_len_total + hdr_len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100864 esp_update_ip4_hdr (ip4, len, /* is_transport */ 0, 0);
Damjan Marionc98275f2019-03-06 14:05:01 +0100865 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100866
Neale Ranns72f2a3a2019-06-17 15:43:38 +0000867 dpo = &sa0->dpo;
Neale Ranns25edf142019-03-22 08:12:48 +0000868 if (!is_tun)
869 {
Neale Rannsf16e9a52021-02-25 19:09:24 +0000870 sync_next[0] = dpo->dpoi_next_node;
Neale Ranns25edf142019-03-22 08:12:48 +0000871 vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = dpo->dpoi_index;
872 }
Neale Ranns4ec36c52020-03-31 09:21:29 -0400873 else
Neale Rannsf16e9a52021-02-25 19:09:24 +0000874 sync_next[0] = ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT;
Neale Ranns9ec846c2021-02-09 14:04:02 +0000875 b[0]->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Damjan Marionc98275f2019-03-06 14:05:01 +0100876 }
Damjan Marionc59b9a22019-03-19 15:38:40 +0100877 else /* transport mode */
Damjan Marionc98275f2019-03-06 14:05:01 +0100878 {
Ole Troan03092c12021-11-23 15:55:39 +0100879 u8 *l2_hdr, l2_len, *ip_hdr;
880 u16 ip_len;
Neale Ranns02950402019-12-20 00:54:57 +0000881 ip6_ext_header_t *ext_hdr;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100882 udp_header_t *udp = 0;
Alexander Chernavinb0d2eda2020-03-25 10:56:52 -0400883 u16 udp_len = 0;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100884 u8 *old_ip_hdr = vlib_buffer_get_current (b[0]);
Damjan Marionc98275f2019-03-06 14:05:01 +0100885
Ole Troan03092c12021-11-23 15:55:39 +0100886 /*
887 * Get extension header chain length. It might be longer than the
888 * buffer's pre_data area.
889 */
Neale Ranns4a58e492020-12-21 13:19:10 +0000890 ip_len =
891 (VNET_LINK_IP6 == lt ?
892 esp_get_ip6_hdr_len ((ip6_header_t *) old_ip_hdr, &ext_hdr) :
893 ip4_header_bytes ((ip4_header_t *) old_ip_hdr));
Ole Troan03092c12021-11-23 15:55:39 +0100894 if ((old_ip_hdr - ip_len) < &b[0]->pre_data[0])
895 {
896 err = ESP_ENCRYPT_ERROR_NO_BUFFERS;
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100897 esp_encrypt_set_next_index (b[0], node, thread_index, err,
898 n_noop, noop_nexts, drop_next,
899 current_sa_index);
Ole Troan03092c12021-11-23 15:55:39 +0100900 goto trace;
901 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100902
Damjan Marionc59b9a22019-03-19 15:38:40 +0100903 vlib_buffer_advance (b[0], ip_len);
904 payload = vlib_buffer_get_current (b[0]);
Neale Rannsf16e9a52021-02-25 19:09:24 +0000905 next_hdr_ptr = esp_add_footer_and_icv (
906 vm, &lb, esp_align, icv_sz, node, buffer_data_size,
907 vlib_buffer_length_in_chain (vm, b[0]));
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000908 if (!next_hdr_ptr)
Fan Zhang18f0e312020-10-19 13:08:34 +0100909 {
Neale Rannsf16e9a52021-02-25 19:09:24 +0000910 err = ESP_ENCRYPT_ERROR_NO_BUFFERS;
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100911 esp_encrypt_set_next_index (b[0], node, thread_index, err,
912 n_noop, noop_nexts, drop_next,
913 current_sa_index);
Fan Zhang18f0e312020-10-19 13:08:34 +0100914 goto trace;
915 }
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000916
917 b[0]->flags &= ~VLIB_BUFFER_TOTAL_LENGTH_VALID;
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000918 payload_len = b[0]->current_length;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000919 payload_len_total = vlib_buffer_length_in_chain (vm, b[0]);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100920
921 /* ESP header */
922 hdr_len += sizeof (*esp);
923 esp = (esp_header_t *) (payload - hdr_len);
924
925 /* optional UDP header */
Damjan Mariond709cbc2019-03-26 13:16:42 +0100926 if (ipsec_sa_is_set_UDP_ENCAP (sa0))
Damjan Marionc98275f2019-03-06 14:05:01 +0100927 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100928 hdr_len += sizeof (udp_header_t);
929 udp = (udp_header_t *) (payload - hdr_len);
Damjan Marionc98275f2019-03-06 14:05:01 +0100930 }
931
Damjan Marionc59b9a22019-03-19 15:38:40 +0100932 /* IP header */
933 hdr_len += ip_len;
934 ip_hdr = payload - hdr_len;
935
936 /* L2 header */
Neale Rannsc87b66c2019-02-07 07:26:12 -0800937 if (!is_tun)
938 {
939 l2_len = vnet_buffer (b[0])->ip.save_rewrite_length;
940 hdr_len += l2_len;
941 l2_hdr = payload - hdr_len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100942
Neale Rannsc87b66c2019-02-07 07:26:12 -0800943 /* copy l2 and ip header */
944 clib_memcpy_le32 (l2_hdr, old_ip_hdr - l2_len, l2_len);
945 }
946 else
947 l2_len = 0;
948
Matthew Smith6f1eb482022-08-09 22:19:38 +0000949 u16 len;
950 len = payload_len_total + hdr_len - l2_len;
951
Neale Ranns4a58e492020-12-21 13:19:10 +0000952 if (VNET_LINK_IP6 == lt)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100953 {
Neale Ranns02950402019-12-20 00:54:57 +0000954 ip6_header_t *ip6 = (ip6_header_t *) (old_ip_hdr);
955 if (PREDICT_TRUE (NULL == ext_hdr))
956 {
957 *next_hdr_ptr = ip6->protocol;
Matthew Smith6f1eb482022-08-09 22:19:38 +0000958 ip6->protocol =
959 (udp) ? IP_PROTOCOL_UDP : IP_PROTOCOL_IPSEC_ESP;
Neale Ranns02950402019-12-20 00:54:57 +0000960 }
961 else
962 {
963 *next_hdr_ptr = ext_hdr->next_hdr;
Matthew Smith6f1eb482022-08-09 22:19:38 +0000964 ext_hdr->next_hdr =
965 (udp) ? IP_PROTOCOL_UDP : IP_PROTOCOL_IPSEC_ESP;
Neale Ranns02950402019-12-20 00:54:57 +0000966 }
Neale Rannsd207fd72019-04-18 17:18:12 -0700967 ip6->payload_length =
Matthew Smith6f1eb482022-08-09 22:19:38 +0000968 clib_host_to_net_u16 (len - sizeof (ip6_header_t));
Damjan Marionc59b9a22019-03-19 15:38:40 +0100969 }
Neale Ranns4a58e492020-12-21 13:19:10 +0000970 else if (VNET_LINK_IP4 == lt)
Damjan Marionc98275f2019-03-06 14:05:01 +0100971 {
Neale Ranns02950402019-12-20 00:54:57 +0000972 ip4_header_t *ip4 = (ip4_header_t *) (old_ip_hdr);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100973 *next_hdr_ptr = ip4->protocol;
Matthew Smith6f1eb482022-08-09 22:19:38 +0000974 esp_update_ip4_hdr (ip4, len, /* is_transport */ 1,
975 (udp != NULL));
Damjan Marionc98275f2019-03-06 14:05:01 +0100976 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100977
Neale Ranns02950402019-12-20 00:54:57 +0000978 clib_memcpy_le64 (ip_hdr, old_ip_hdr, ip_len);
979
Alexander Chernavinb0d2eda2020-03-25 10:56:52 -0400980 if (udp)
981 {
Matthew Smith6f1eb482022-08-09 22:19:38 +0000982 udp_len = len - ip_len;
Alexander Chernavinb0d2eda2020-03-25 10:56:52 -0400983 esp_fill_udp_hdr (sa0, udp, udp_len);
984 }
985
Neale Rannsf16e9a52021-02-25 19:09:24 +0000986 sync_next[0] = ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT;
Damjan Marionc98275f2019-03-06 14:05:01 +0100987 }
988
PiotrX Kleskifdca4dd2020-05-05 14:14:22 +0200989 if (lb != b[0])
990 {
991 crypto_ops = &ptd->chained_crypto_ops;
992 integ_ops = &ptd->chained_integ_ops;
993 }
994 else
995 {
996 crypto_ops = &ptd->crypto_ops;
997 integ_ops = &ptd->integ_ops;
998 }
999
Damjan Marionc59b9a22019-03-19 15:38:40 +01001000 esp->spi = spi;
1001 esp->seq = clib_net_to_host_u32 (sa0->seq);
Damjan Marionc98275f2019-03-06 14:05:01 +01001002
Fan Zhangf5395782020-04-29 14:00:03 +01001003 if (is_async)
Matthew Smith51d56ba2021-06-04 09:18:37 -05001004 {
1005 async_op = sa0->crypto_async_enc_op_id;
1006
1007 /* get a frame for this op if we don't yet have one or it's full
1008 */
1009 if (NULL == async_frames[async_op] ||
1010 vnet_crypto_async_frame_is_full (async_frames[async_op]))
1011 {
1012 async_frames[async_op] =
1013 vnet_crypto_async_get_frame (vm, async_op);
gaoginskxf441b5d2021-06-07 12:07:01 +01001014
1015 if (PREDICT_FALSE (!async_frames[async_op]))
1016 {
1017 err = ESP_ENCRYPT_ERROR_NO_AVAIL_FRAME;
1018 esp_encrypt_set_next_index (b[0], node, thread_index, err,
1019 n_noop, noop_nexts, drop_next,
1020 current_sa_index);
1021 goto trace;
1022 }
1023
Matthew Smith51d56ba2021-06-04 09:18:37 -05001024 /* Save the frame to the list we'll submit at the end */
1025 vec_add1 (ptd->async_frames, async_frames[async_op]);
1026 }
1027
1028 esp_prepare_async_frame (vm, ptd, async_frames[async_op], sa0, b[0],
1029 esp, payload, payload_len, iv_sz, icv_sz,
1030 from[b - bufs], sync_next[0], hdr_len,
1031 async_next_node, lb);
1032 }
Fan Zhangf5395782020-04-29 14:00:03 +01001033 else
Neale Ranns5b891102021-06-28 13:31:28 +00001034 esp_prepare_sync_op (vm, ptd, crypto_ops, integ_ops, sa0, sa0->seq_hi,
1035 payload, payload_len, iv_sz, icv_sz, n_sync, b,
1036 lb, hdr_len, esp);
Damjan Marionc98275f2019-03-06 14:05:01 +01001037
Damjan Marionc59b9a22019-03-19 15:38:40 +01001038 vlib_buffer_advance (b[0], 0LL - hdr_len);
Damjan Marionc98275f2019-03-06 14:05:01 +01001039
Damjan Marionc59b9a22019-03-19 15:38:40 +01001040 current_sa_packets += 1;
Filip Tehlarefcad1a2020-02-04 09:36:04 +00001041 current_sa_bytes += payload_len_total;
Damjan Marionc59b9a22019-03-19 15:38:40 +01001042
1043 trace:
1044 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
Damjan Marionc98275f2019-03-06 14:05:01 +01001045 {
Damjan Marionc59b9a22019-03-19 15:38:40 +01001046 esp_encrypt_trace_t *tr = vlib_add_trace (vm, node, b[0],
1047 sizeof (*tr));
Neale Ranns6fdcc3d2021-10-08 07:30:47 +00001048 if (INDEX_INVALID == sa_index0)
1049 clib_memset_u8 (tr, 0xff, sizeof (*tr));
1050 else
1051 {
1052 tr->sa_index = sa_index0;
1053 tr->spi = sa0->spi;
Neale Ranns6fdcc3d2021-10-08 07:30:47 +00001054 tr->seq = sa0->seq;
1055 tr->sa_seq_hi = sa0->seq_hi;
1056 tr->udp_encap = ipsec_sa_is_set_UDP_ENCAP (sa0);
1057 tr->crypto_alg = sa0->crypto_alg;
1058 tr->integ_alg = sa0->integ_alg;
1059 }
Damjan Marionc98275f2019-03-06 14:05:01 +01001060 }
Neale Rannsf16e9a52021-02-25 19:09:24 +00001061
Damjan Marionc98275f2019-03-06 14:05:01 +01001062 /* next */
Neale Rannsf16e9a52021-02-25 19:09:24 +00001063 if (ESP_ENCRYPT_ERROR_RX_PKTS != err)
1064 {
1065 noop_bi[n_noop] = from[b - bufs];
1066 n_noop++;
Neale Rannsf16e9a52021-02-25 19:09:24 +00001067 }
1068 else if (!is_async)
1069 {
1070 sync_bi[n_sync] = from[b - bufs];
1071 sync_bufs[n_sync] = b[0];
1072 n_sync++;
1073 sync_next++;
1074 }
1075 else
1076 {
1077 n_async++;
Neale Rannsf16e9a52021-02-25 19:09:24 +00001078 }
Damjan Marionc59b9a22019-03-19 15:38:40 +01001079 n_left -= 1;
Damjan Marionc59b9a22019-03-19 15:38:40 +01001080 b += 1;
Damjan Marionc98275f2019-03-06 14:05:01 +01001081 }
1082
Neale Ranns6fdcc3d2021-10-08 07:30:47 +00001083 if (INDEX_INVALID != current_sa_index)
1084 vlib_increment_combined_counter (&ipsec_sa_counters, thread_index,
1085 current_sa_index, current_sa_packets,
1086 current_sa_bytes);
Neale Rannsf16e9a52021-02-25 19:09:24 +00001087 if (n_sync)
Fan Zhangf5395782020-04-29 14:00:03 +01001088 {
Neale Rannsf16e9a52021-02-25 19:09:24 +00001089 esp_process_ops (vm, node, ptd->crypto_ops, sync_bufs, sync_nexts,
1090 drop_next);
1091 esp_process_chained_ops (vm, node, ptd->chained_crypto_ops, sync_bufs,
1092 sync_nexts, ptd->chunks, drop_next);
Filip Tehlarefcad1a2020-02-04 09:36:04 +00001093
Neale Rannsf16e9a52021-02-25 19:09:24 +00001094 esp_process_ops (vm, node, ptd->integ_ops, sync_bufs, sync_nexts,
1095 drop_next);
1096 esp_process_chained_ops (vm, node, ptd->chained_integ_ops, sync_bufs,
1097 sync_nexts, ptd->chunks, drop_next);
Neale Rannsfc811342021-02-26 10:35:33 +00001098
Neale Rannsf16e9a52021-02-25 19:09:24 +00001099 vlib_buffer_enqueue_to_next (vm, node, sync_bi, sync_nexts, n_sync);
Fan Zhangf5395782020-04-29 14:00:03 +01001100 }
Neale Rannsf16e9a52021-02-25 19:09:24 +00001101 if (n_async)
Fan Zhangf5395782020-04-29 14:00:03 +01001102 {
Neale Rannsfc811342021-02-26 10:35:33 +00001103 /* submit all of the open frames */
1104 vnet_crypto_async_frame_t **async_frame;
1105
1106 vec_foreach (async_frame, ptd->async_frames)
Fan Zhang18f0e312020-10-19 13:08:34 +01001107 {
Neale Rannsfc811342021-02-26 10:35:33 +00001108 if (vnet_crypto_async_submit_open_frame (vm, *async_frame) < 0)
1109 {
Neale Rannsf16e9a52021-02-25 19:09:24 +00001110 n_noop += esp_async_recycle_failed_submit (
1111 vm, *async_frame, node, ESP_ENCRYPT_ERROR_CRYPTO_ENGINE_ERROR,
Arthur de Kerhorad95b062022-11-16 19:12:05 +01001112 IPSEC_SA_ERROR_CRYPTO_ENGINE_ERROR, n_noop, noop_bi,
Xiaoming Jiang0c1454c2023-05-05 02:28:20 +00001113 noop_nexts, drop_next, true);
Neale Rannsfc811342021-02-26 10:35:33 +00001114 vnet_crypto_async_reset_frame (*async_frame);
1115 vnet_crypto_async_free_frame (vm, *async_frame);
1116 }
Fan Zhang18f0e312020-10-19 13:08:34 +01001117 }
Fan Zhangf5395782020-04-29 14:00:03 +01001118 }
Neale Rannsf16e9a52021-02-25 19:09:24 +00001119 if (n_noop)
1120 vlib_buffer_enqueue_to_next (vm, node, noop_bi, noop_nexts, n_noop);
1121
1122 vlib_node_increment_counter (vm, node->node_index, ESP_ENCRYPT_ERROR_RX_PKTS,
1123 frame->n_vectors);
Damjan Marionc59b9a22019-03-19 15:38:40 +01001124
Damjan Marionc59b9a22019-03-19 15:38:40 +01001125 return frame->n_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001126}
1127
Fan Zhangf5395782020-04-29 14:00:03 +01001128always_inline uword
1129esp_encrypt_post_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1130 vlib_frame_t * frame)
1131{
1132 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
1133 u16 nexts[VLIB_FRAME_SIZE], *next = nexts;
1134 u32 *from = vlib_frame_vector_args (frame);
1135 u32 n_left = frame->n_vectors;
1136
1137 vlib_get_buffers (vm, from, b, n_left);
1138
1139 if (n_left >= 4)
1140 {
1141 vlib_prefetch_buffer_header (b[0], LOAD);
1142 vlib_prefetch_buffer_header (b[1], LOAD);
1143 vlib_prefetch_buffer_header (b[2], LOAD);
1144 vlib_prefetch_buffer_header (b[3], LOAD);
1145 }
1146
1147 while (n_left > 8)
1148 {
1149 vlib_prefetch_buffer_header (b[4], LOAD);
1150 vlib_prefetch_buffer_header (b[5], LOAD);
1151 vlib_prefetch_buffer_header (b[6], LOAD);
1152 vlib_prefetch_buffer_header (b[7], LOAD);
1153
1154 next[0] = (esp_post_data (b[0]))->next_index;
1155 next[1] = (esp_post_data (b[1]))->next_index;
1156 next[2] = (esp_post_data (b[2]))->next_index;
1157 next[3] = (esp_post_data (b[3]))->next_index;
1158
1159 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
1160 {
1161 if (b[0]->flags & VLIB_BUFFER_IS_TRACED)
1162 {
1163 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[0],
1164 sizeof (*tr));
1165 tr->next_index = next[0];
1166 }
1167 if (b[1]->flags & VLIB_BUFFER_IS_TRACED)
1168 {
1169 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[1],
1170 sizeof (*tr));
1171 tr->next_index = next[1];
1172 }
1173 if (b[2]->flags & VLIB_BUFFER_IS_TRACED)
1174 {
1175 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[2],
1176 sizeof (*tr));
1177 tr->next_index = next[2];
1178 }
1179 if (b[3]->flags & VLIB_BUFFER_IS_TRACED)
1180 {
1181 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[3],
1182 sizeof (*tr));
1183 tr->next_index = next[3];
1184 }
1185 }
1186
1187 b += 4;
1188 next += 4;
1189 n_left -= 4;
1190 }
1191
1192 while (n_left > 0)
1193 {
1194 next[0] = (esp_post_data (b[0]))->next_index;
1195 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
1196 {
1197 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[0],
1198 sizeof (*tr));
1199 tr->next_index = next[0];
1200 }
1201
1202 b += 1;
1203 next += 1;
1204 n_left -= 1;
1205 }
1206
1207 vlib_node_increment_counter (vm, node->node_index,
1208 ESP_ENCRYPT_ERROR_POST_RX_PKTS,
1209 frame->n_vectors);
1210 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
1211 return frame->n_vectors;
1212}
1213
Klement Sekerab8f35442018-10-29 13:38:19 +01001214VLIB_NODE_FN (esp4_encrypt_node) (vlib_main_t * vm,
1215 vlib_node_runtime_t * node,
1216 vlib_frame_t * from_frame)
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001217{
Neale Ranns4a58e492020-12-21 13:19:10 +00001218 return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_IP4, 0,
Fan Zhangf5395782020-04-29 14:00:03 +01001219 esp_encrypt_async_next.esp4_post_next);
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001220}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001221
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -07001222/* *INDENT-OFF* */
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001223VLIB_REGISTER_NODE (esp4_encrypt_node) = {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001224 .name = "esp4-encrypt",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001225 .vector_size = sizeof (u32),
1226 .format_trace = format_esp_encrypt_trace,
1227 .type = VLIB_NODE_TYPE_INTERNAL,
1228
Neale Ranns93688d72022-08-09 03:34:51 +00001229 .n_errors = ESP_ENCRYPT_N_ERROR,
1230 .error_counters = esp_encrypt_error_counters,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001231
1232 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
Neale Ranns4a58e492020-12-21 13:19:10 +00001233 .next_nodes = { [ESP_ENCRYPT_NEXT_DROP4] = "ip4-drop",
1234 [ESP_ENCRYPT_NEXT_DROP6] = "ip6-drop",
1235 [ESP_ENCRYPT_NEXT_DROP_MPLS] = "mpls-drop",
1236 [ESP_ENCRYPT_NEXT_HANDOFF4] = "esp4-encrypt-handoff",
1237 [ESP_ENCRYPT_NEXT_HANDOFF6] = "esp6-encrypt-handoff",
1238 [ESP_ENCRYPT_NEXT_HANDOFF_MPLS] = "error-drop",
1239 [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "interface-output" },
Ed Warnickecb9cada2015-12-08 15:45:58 -07001240};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -07001241/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001242
Fan Zhangf5395782020-04-29 14:00:03 +01001243VLIB_NODE_FN (esp4_encrypt_post_node) (vlib_main_t * vm,
1244 vlib_node_runtime_t * node,
1245 vlib_frame_t * from_frame)
1246{
1247 return esp_encrypt_post_inline (vm, node, from_frame);
1248}
1249
1250/* *INDENT-OFF* */
1251VLIB_REGISTER_NODE (esp4_encrypt_post_node) = {
1252 .name = "esp4-encrypt-post",
1253 .vector_size = sizeof (u32),
1254 .format_trace = format_esp_post_encrypt_trace,
1255 .type = VLIB_NODE_TYPE_INTERNAL,
1256 .sibling_of = "esp4-encrypt",
1257
Neale Ranns93688d72022-08-09 03:34:51 +00001258 .n_errors = ESP_ENCRYPT_N_ERROR,
1259 .error_counters = esp_encrypt_error_counters,
Fan Zhangf5395782020-04-29 14:00:03 +01001260};
1261/* *INDENT-ON* */
1262
Klement Sekerab8f35442018-10-29 13:38:19 +01001263VLIB_NODE_FN (esp6_encrypt_node) (vlib_main_t * vm,
1264 vlib_node_runtime_t * node,
1265 vlib_frame_t * from_frame)
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001266{
Neale Ranns4a58e492020-12-21 13:19:10 +00001267 return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_IP6, 0,
Fan Zhangf5395782020-04-29 14:00:03 +01001268 esp_encrypt_async_next.esp6_post_next);
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001269}
1270
1271/* *INDENT-OFF* */
1272VLIB_REGISTER_NODE (esp6_encrypt_node) = {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001273 .name = "esp6-encrypt",
1274 .vector_size = sizeof (u32),
1275 .format_trace = format_esp_encrypt_trace,
1276 .type = VLIB_NODE_TYPE_INTERNAL,
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001277 .sibling_of = "esp4-encrypt",
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001278
Neale Ranns93688d72022-08-09 03:34:51 +00001279 .n_errors = ESP_ENCRYPT_N_ERROR,
1280 .error_counters = esp_encrypt_error_counters,
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001281};
1282/* *INDENT-ON* */
1283
Fan Zhangf5395782020-04-29 14:00:03 +01001284VLIB_NODE_FN (esp6_encrypt_post_node) (vlib_main_t * vm,
1285 vlib_node_runtime_t * node,
1286 vlib_frame_t * from_frame)
1287{
1288 return esp_encrypt_post_inline (vm, node, from_frame);
1289}
1290
1291/* *INDENT-OFF* */
1292VLIB_REGISTER_NODE (esp6_encrypt_post_node) = {
1293 .name = "esp6-encrypt-post",
1294 .vector_size = sizeof (u32),
1295 .format_trace = format_esp_post_encrypt_trace,
1296 .type = VLIB_NODE_TYPE_INTERNAL,
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001297 .sibling_of = "esp4-encrypt",
Fan Zhangf5395782020-04-29 14:00:03 +01001298
Neale Ranns93688d72022-08-09 03:34:51 +00001299 .n_errors = ESP_ENCRYPT_N_ERROR,
1300 .error_counters = esp_encrypt_error_counters,
Fan Zhangf5395782020-04-29 14:00:03 +01001301};
1302/* *INDENT-ON* */
1303
Neale Ranns25edf142019-03-22 08:12:48 +00001304VLIB_NODE_FN (esp4_encrypt_tun_node) (vlib_main_t * vm,
1305 vlib_node_runtime_t * node,
1306 vlib_frame_t * from_frame)
1307{
Neale Ranns4a58e492020-12-21 13:19:10 +00001308 return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_IP4, 1,
Fan Zhangf5395782020-04-29 14:00:03 +01001309 esp_encrypt_async_next.esp4_tun_post_next);
Neale Ranns25edf142019-03-22 08:12:48 +00001310}
1311
1312/* *INDENT-OFF* */
1313VLIB_REGISTER_NODE (esp4_encrypt_tun_node) = {
1314 .name = "esp4-encrypt-tun",
1315 .vector_size = sizeof (u32),
1316 .format_trace = format_esp_encrypt_trace,
1317 .type = VLIB_NODE_TYPE_INTERNAL,
1318
Neale Ranns93688d72022-08-09 03:34:51 +00001319 .n_errors = ESP_ENCRYPT_N_ERROR,
1320 .error_counters = esp_encrypt_error_counters,
Neale Rannsd7603d92019-03-28 08:56:10 +00001321
Neale Rannsf62a8c02019-04-02 08:13:33 +00001322 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
Neale Rannsd7603d92019-03-28 08:56:10 +00001323 .next_nodes = {
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001324 [ESP_ENCRYPT_NEXT_DROP4] = "ip4-drop",
1325 [ESP_ENCRYPT_NEXT_DROP6] = "ip6-drop",
Neale Ranns4a58e492020-12-21 13:19:10 +00001326 [ESP_ENCRYPT_NEXT_DROP_MPLS] = "mpls-drop",
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001327 [ESP_ENCRYPT_NEXT_HANDOFF4] = "esp4-encrypt-tun-handoff",
Neale Ranns4a58e492020-12-21 13:19:10 +00001328 [ESP_ENCRYPT_NEXT_HANDOFF6] = "esp6-encrypt-tun-handoff",
1329 [ESP_ENCRYPT_NEXT_HANDOFF_MPLS] = "esp-mpls-encrypt-tun-handoff",
Neale Ranns4ec36c52020-03-31 09:21:29 -04001330 [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "adj-midchain-tx",
Neale Rannsd7603d92019-03-28 08:56:10 +00001331 },
Neale Ranns25edf142019-03-22 08:12:48 +00001332};
1333
Fan Zhangf5395782020-04-29 14:00:03 +01001334VLIB_NODE_FN (esp4_encrypt_tun_post_node) (vlib_main_t * vm,
1335 vlib_node_runtime_t * node,
1336 vlib_frame_t * from_frame)
1337{
1338 return esp_encrypt_post_inline (vm, node, from_frame);
1339}
1340
1341/* *INDENT-OFF* */
1342VLIB_REGISTER_NODE (esp4_encrypt_tun_post_node) = {
1343 .name = "esp4-encrypt-tun-post",
1344 .vector_size = sizeof (u32),
1345 .format_trace = format_esp_post_encrypt_trace,
1346 .type = VLIB_NODE_TYPE_INTERNAL,
1347 .sibling_of = "esp4-encrypt-tun",
1348
Neale Ranns93688d72022-08-09 03:34:51 +00001349 .n_errors = ESP_ENCRYPT_N_ERROR,
1350 .error_counters = esp_encrypt_error_counters,
Fan Zhangf5395782020-04-29 14:00:03 +01001351};
Neale Ranns25edf142019-03-22 08:12:48 +00001352/* *INDENT-ON* */
1353
1354VLIB_NODE_FN (esp6_encrypt_tun_node) (vlib_main_t * vm,
1355 vlib_node_runtime_t * node,
1356 vlib_frame_t * from_frame)
1357{
Neale Ranns4a58e492020-12-21 13:19:10 +00001358 return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_IP6, 1,
Fan Zhangf5395782020-04-29 14:00:03 +01001359 esp_encrypt_async_next.esp6_tun_post_next);
Neale Ranns25edf142019-03-22 08:12:48 +00001360}
1361
1362/* *INDENT-OFF* */
1363VLIB_REGISTER_NODE (esp6_encrypt_tun_node) = {
1364 .name = "esp6-encrypt-tun",
1365 .vector_size = sizeof (u32),
1366 .format_trace = format_esp_encrypt_trace,
1367 .type = VLIB_NODE_TYPE_INTERNAL,
1368
Neale Ranns93688d72022-08-09 03:34:51 +00001369 .n_errors = ESP_ENCRYPT_N_ERROR,
1370 .error_counters = esp_encrypt_error_counters,
Neale Rannsd7603d92019-03-28 08:56:10 +00001371
Neale Rannsf62a8c02019-04-02 08:13:33 +00001372 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
Neale Rannsd7603d92019-03-28 08:56:10 +00001373 .next_nodes = {
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001374 [ESP_ENCRYPT_NEXT_DROP4] = "ip4-drop",
1375 [ESP_ENCRYPT_NEXT_DROP6] = "ip6-drop",
Neale Ranns4a58e492020-12-21 13:19:10 +00001376 [ESP_ENCRYPT_NEXT_DROP_MPLS] = "mpls-drop",
1377 [ESP_ENCRYPT_NEXT_HANDOFF4] = "esp4-encrypt-tun-handoff",
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001378 [ESP_ENCRYPT_NEXT_HANDOFF6] = "esp6-encrypt-tun-handoff",
Neale Ranns4a58e492020-12-21 13:19:10 +00001379 [ESP_ENCRYPT_NEXT_HANDOFF_MPLS] = "esp-mpls-encrypt-tun-handoff",
Neale Ranns4ec36c52020-03-31 09:21:29 -04001380 [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "adj-midchain-tx",
Neale Rannsd7603d92019-03-28 08:56:10 +00001381 },
Neale Ranns25edf142019-03-22 08:12:48 +00001382};
1383
Neale Ranns25edf142019-03-22 08:12:48 +00001384/* *INDENT-ON* */
1385
Fan Zhangf5395782020-04-29 14:00:03 +01001386VLIB_NODE_FN (esp6_encrypt_tun_post_node) (vlib_main_t * vm,
1387 vlib_node_runtime_t * node,
1388 vlib_frame_t * from_frame)
1389{
1390 return esp_encrypt_post_inline (vm, node, from_frame);
1391}
1392
1393/* *INDENT-OFF* */
1394VLIB_REGISTER_NODE (esp6_encrypt_tun_post_node) = {
1395 .name = "esp6-encrypt-tun-post",
1396 .vector_size = sizeof (u32),
1397 .format_trace = format_esp_post_encrypt_trace,
1398 .type = VLIB_NODE_TYPE_INTERNAL,
Neale Ranns4a58e492020-12-21 13:19:10 +00001399 .sibling_of = "esp-mpls-encrypt-tun",
Fan Zhangf5395782020-04-29 14:00:03 +01001400
Neale Ranns93688d72022-08-09 03:34:51 +00001401 .n_errors = ESP_ENCRYPT_N_ERROR,
1402 .error_counters = esp_encrypt_error_counters,
Fan Zhangf5395782020-04-29 14:00:03 +01001403};
1404/* *INDENT-ON* */
1405
Neale Ranns4a58e492020-12-21 13:19:10 +00001406VLIB_NODE_FN (esp_mpls_encrypt_tun_node)
1407(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
1408{
1409 return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_MPLS, 1,
1410 esp_encrypt_async_next.esp_mpls_tun_post_next);
1411}
1412
1413VLIB_REGISTER_NODE (esp_mpls_encrypt_tun_node) = {
1414 .name = "esp-mpls-encrypt-tun",
1415 .vector_size = sizeof (u32),
1416 .format_trace = format_esp_encrypt_trace,
1417 .type = VLIB_NODE_TYPE_INTERNAL,
1418
Neale Ranns93688d72022-08-09 03:34:51 +00001419 .n_errors = ESP_ENCRYPT_N_ERROR,
1420 .error_counters = esp_encrypt_error_counters,
Neale Ranns4a58e492020-12-21 13:19:10 +00001421
1422 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
1423 .next_nodes = {
1424 [ESP_ENCRYPT_NEXT_DROP4] = "ip4-drop",
1425 [ESP_ENCRYPT_NEXT_DROP6] = "ip6-drop",
1426 [ESP_ENCRYPT_NEXT_DROP_MPLS] = "mpls-drop",
1427 [ESP_ENCRYPT_NEXT_HANDOFF4] = "esp4-encrypt-tun-handoff",
1428 [ESP_ENCRYPT_NEXT_HANDOFF6] = "esp6-encrypt-tun-handoff",
1429 [ESP_ENCRYPT_NEXT_HANDOFF_MPLS] = "esp-mpls-encrypt-tun-handoff",
1430 [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "adj-midchain-tx",
1431 },
1432};
1433
1434VLIB_NODE_FN (esp_mpls_encrypt_tun_post_node)
1435(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
1436{
1437 return esp_encrypt_post_inline (vm, node, from_frame);
1438}
1439
1440VLIB_REGISTER_NODE (esp_mpls_encrypt_tun_post_node) = {
1441 .name = "esp-mpls-encrypt-tun-post",
1442 .vector_size = sizeof (u32),
1443 .format_trace = format_esp_post_encrypt_trace,
1444 .type = VLIB_NODE_TYPE_INTERNAL,
1445 .sibling_of = "esp-mpls-encrypt-tun",
1446
Neale Ranns93688d72022-08-09 03:34:51 +00001447 .n_errors = ESP_ENCRYPT_N_ERROR,
1448 .error_counters = esp_encrypt_error_counters,
Neale Ranns4a58e492020-12-21 13:19:10 +00001449};
1450
Neale Ranns2d498302021-02-25 08:38:58 +00001451#ifndef CLIB_MARCH_VARIANT
1452
1453static clib_error_t *
1454esp_encrypt_init (vlib_main_t *vm)
1455{
1456 ipsec_main_t *im = &ipsec_main;
1457
1458 im->esp4_enc_fq_index =
1459 vlib_frame_queue_main_init (esp4_encrypt_node.index, 0);
1460 im->esp6_enc_fq_index =
1461 vlib_frame_queue_main_init (esp6_encrypt_node.index, 0);
1462 im->esp4_enc_tun_fq_index =
1463 vlib_frame_queue_main_init (esp4_encrypt_tun_node.index, 0);
1464 im->esp6_enc_tun_fq_index =
1465 vlib_frame_queue_main_init (esp6_encrypt_tun_node.index, 0);
1466 im->esp_mpls_enc_tun_fq_index =
1467 vlib_frame_queue_main_init (esp_mpls_encrypt_tun_node.index, 0);
1468
1469 return 0;
1470}
1471
1472VLIB_INIT_FUNCTION (esp_encrypt_init);
1473
1474#endif
1475
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -07001476/*
1477 * fd.io coding-style-patch-verification: ON
1478 *
1479 * Local Variables:
1480 * eval: (c-set-style "gnu")
1481 * End:
1482 */