blob: 86f9094cedc042d8839d799b00c924f940d73abd [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;
418 }
419 else
420 {
421 nonce->ctr = clib_host_to_net_u32 (1);
422 }
Fan Zhangf5395782020-04-29 14:00:03 +0100423
Fan Zhangf5395782020-04-29 14:00:03 +0100424 nonce->salt = sa0->salt;
Benoît Ganne02dfd292022-01-18 15:56:41 +0100425 nonce->iv = *(u64 *) pkt_iv;
Fan Zhangf5395782020-04-29 14:00:03 +0100426 op->iv = (u8 *) nonce;
427 }
428 else
429 {
Benoît Ganne02dfd292022-01-18 15:56:41 +0100430 /* construct zero iv in front of the IP header */
431 op->iv = pkt_iv - hdr_len - iv_sz;
432 clib_memset_u8 (op->iv, 0, iv_sz);
433 /* include iv field in crypto */
434 crypto_start -= iv_sz;
435 crypto_len += iv_sz;
Fan Zhangf5395782020-04-29 14:00:03 +0100436 }
437
Benoît Ganne5527a782022-01-18 15:56:41 +0100438 if (PREDICT_FALSE (lb != b[0]))
Fan Zhangf5395782020-04-29 14:00:03 +0100439 {
440 /* is chained */
441 op->flags |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS;
442 op->chunk_index = vec_len (ptd->chunks);
443 op->tag = vlib_buffer_get_tail (lb) - icv_sz;
Benoît Ganne02dfd292022-01-18 15:56:41 +0100444 esp_encrypt_chain_crypto (vm, ptd, sa0, b[0], lb, icv_sz,
445 crypto_start, crypto_len + icv_sz,
446 &op->n_chunks);
447 }
448 else
449 {
450 /* not chained */
451 op->src = op->dst = crypto_start;
452 op->len = crypto_len;
Fan Zhangf5395782020-04-29 14:00:03 +0100453 }
454 }
455
456 if (sa0->integ_op_id)
457 {
458 vnet_crypto_op_t *op;
459 vec_add2_aligned (integ_ops[0], op, 1, CLIB_CACHE_LINE_BYTES);
460 vnet_crypto_op_init (op, sa0->integ_op_id);
461 op->src = payload - iv_sz - sizeof (esp_header_t);
462 op->digest = payload + payload_len - icv_sz;
463 op->key_index = sa0->integ_key_index;
464 op->digest_len = icv_sz;
465 op->len = payload_len - icv_sz + iv_sz + sizeof (esp_header_t);
Neale Rannsf16e9a52021-02-25 19:09:24 +0000466 op->user_data = bi;
Fan Zhangf5395782020-04-29 14:00:03 +0100467
468 if (lb != b[0])
469 {
470 /* is chained */
471 op->flags |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS;
472 op->chunk_index = vec_len (ptd->chunks);
473 op->digest = vlib_buffer_get_tail (lb) - icv_sz;
474
475 esp_encrypt_chain_integ (vm, ptd, sa0, b[0], lb, icv_sz,
476 payload - iv_sz - sizeof (esp_header_t),
477 payload_len + iv_sz +
478 sizeof (esp_header_t), op->digest,
479 &op->n_chunks);
480 }
481 else if (ipsec_sa_is_set_USE_ESN (sa0))
482 {
Neale Ranns5b891102021-06-28 13:31:28 +0000483 u32 tmp = clib_net_to_host_u32 (seq_hi);
484 clib_memcpy_fast (op->digest, &tmp, sizeof (seq_hi));
Fan Zhangf5395782020-04-29 14:00:03 +0100485 op->len += sizeof (seq_hi);
486 }
487 }
488}
489
Neale Rannsfc811342021-02-26 10:35:33 +0000490static_always_inline void
491esp_prepare_async_frame (vlib_main_t *vm, ipsec_per_thread_data_t *ptd,
492 vnet_crypto_async_frame_t *async_frame,
493 ipsec_sa_t *sa, vlib_buffer_t *b, esp_header_t *esp,
494 u8 *payload, u32 payload_len, u8 iv_sz, u8 icv_sz,
495 u32 bi, u16 next, u32 hdr_len, u16 async_next,
496 vlib_buffer_t *lb)
Fan Zhangf5395782020-04-29 14:00:03 +0100497{
498 esp_post_data_t *post = esp_post_data (b);
499 u8 *tag, *iv, *aad = 0;
500 u8 flag = 0;
Benoît Ganne5527a782022-01-18 15:56:41 +0100501 const u32 key_index = sa->crypto_key_index;
Benoît Ganne02dfd292022-01-18 15:56:41 +0100502 i16 crypto_start_offset, integ_start_offset;
Fan Zhangf5395782020-04-29 14:00:03 +0100503 u16 crypto_total_len, integ_total_len;
504
Fan Zhang18f0e312020-10-19 13:08:34 +0100505 post->next_index = next;
Fan Zhangf5395782020-04-29 14:00:03 +0100506
507 /* crypto */
Benoît Ganne02dfd292022-01-18 15:56:41 +0100508 crypto_start_offset = integ_start_offset = payload - b->data;
Fan Zhangf5395782020-04-29 14:00:03 +0100509 crypto_total_len = integ_total_len = payload_len - icv_sz;
510 tag = payload + crypto_total_len;
511
Benoît Ganne02dfd292022-01-18 15:56:41 +0100512 /* generate the IV in front of the payload */
513 void *pkt_iv = esp_generate_iv (sa, payload, iv_sz);
514
Benoît Ganne490b9272021-01-22 18:03:09 +0100515 if (ipsec_sa_is_set_IS_CTR (sa))
Fan Zhangf5395782020-04-29 14:00:03 +0100516 {
Benoît Ganne490b9272021-01-22 18:03:09 +0100517 /* construct nonce in a scratch space in front of the IP header */
Benoît Ganne02dfd292022-01-18 15:56:41 +0100518 esp_ctr_nonce_t *nonce =
519 (esp_ctr_nonce_t *) (pkt_iv - hdr_len - sizeof (*nonce));
Benoît Ganne490b9272021-01-22 18:03:09 +0100520 if (ipsec_sa_is_set_IS_AEAD (sa))
521 {
522 /* constuct aad in a scratch space in front of the nonce */
523 aad = (u8 *) nonce - sizeof (esp_aead_t);
Neale Ranns5b891102021-06-28 13:31:28 +0000524 esp_aad_fill (aad, esp, sa, sa->seq_hi);
Benoît Ganne490b9272021-01-22 18:03:09 +0100525 }
526 else
527 {
528 nonce->ctr = clib_host_to_net_u32 (1);
529 }
530
531 nonce->salt = sa->salt;
Benoît Ganne02dfd292022-01-18 15:56:41 +0100532 nonce->iv = *(u64 *) pkt_iv;
Benoît Ganne490b9272021-01-22 18:03:09 +0100533 iv = (u8 *) nonce;
Fan Zhangf5395782020-04-29 14:00:03 +0100534 }
Benoît Ganne490b9272021-01-22 18:03:09 +0100535 else
Fan Zhangf5395782020-04-29 14:00:03 +0100536 {
Benoît Ganne02dfd292022-01-18 15:56:41 +0100537 /* construct zero iv in front of the IP header */
538 iv = pkt_iv - hdr_len - iv_sz;
539 clib_memset_u8 (iv, 0, iv_sz);
540 /* include iv field in crypto */
541 crypto_start_offset -= iv_sz;
542 crypto_total_len += iv_sz;
Fan Zhangf5395782020-04-29 14:00:03 +0100543 }
544
Benoît Ganne490b9272021-01-22 18:03:09 +0100545 if (lb != b)
546 {
547 /* chain */
548 flag |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS;
549 tag = vlib_buffer_get_tail (lb) - icv_sz;
Benoît Ganne02dfd292022-01-18 15:56:41 +0100550 crypto_total_len = esp_encrypt_chain_crypto (
551 vm, ptd, sa, b, lb, icv_sz, b->data + crypto_start_offset,
552 crypto_total_len + icv_sz, 0);
Benoît Ganne490b9272021-01-22 18:03:09 +0100553 }
554
555 if (sa->integ_op_id)
556 {
Benoît Ganne02dfd292022-01-18 15:56:41 +0100557 integ_start_offset -= iv_sz + sizeof (esp_header_t);
Benoît Ganne490b9272021-01-22 18:03:09 +0100558 integ_total_len += iv_sz + sizeof (esp_header_t);
559
560 if (b != lb)
561 {
562 integ_total_len = esp_encrypt_chain_integ (
563 vm, ptd, sa, b, lb, icv_sz,
564 payload - iv_sz - sizeof (esp_header_t),
565 payload_len + iv_sz + sizeof (esp_header_t), tag, 0);
566 }
567 else if (ipsec_sa_is_set_USE_ESN (sa))
568 {
569 u32 seq_hi = clib_net_to_host_u32 (sa->seq_hi);
570 clib_memcpy_fast (tag, &seq_hi, sizeof (seq_hi));
571 integ_total_len += sizeof (seq_hi);
572 }
573 }
574
Neale Rannsfc811342021-02-26 10:35:33 +0000575 /* this always succeeds because we know the frame is not full */
576 vnet_crypto_async_add_to_frame (vm, async_frame, key_index, crypto_total_len,
577 integ_total_len - crypto_total_len,
578 crypto_start_offset, integ_start_offset, bi,
579 async_next, iv, tag, aad, flag);
Fan Zhangf5395782020-04-29 14:00:03 +0100580}
581
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200582always_inline uword
Neale Ranns4a58e492020-12-21 13:19:10 +0000583esp_encrypt_inline (vlib_main_t *vm, vlib_node_runtime_t *node,
584 vlib_frame_t *frame, vnet_link_t lt, int is_tun,
Neale Rannsf16e9a52021-02-25 19:09:24 +0000585 u16 async_next_node)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700586{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700587 ipsec_main_t *im = &ipsec_main;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100588 ipsec_per_thread_data_t *ptd = vec_elt_at_index (im->ptd, vm->thread_index);
589 u32 *from = vlib_frame_vector_args (frame);
590 u32 n_left = frame->n_vectors;
591 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100592 u32 thread_index = vm->thread_index;
593 u16 buffer_data_size = vlib_buffer_get_default_data_size (vm);
594 u32 current_sa_index = ~0, current_sa_packets = 0;
595 u32 current_sa_bytes = 0, spi = 0;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500596 u8 esp_align = 4, iv_sz = 0, icv_sz = 0;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100597 ipsec_sa_t *sa0 = 0;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000598 vlib_buffer_t *lb;
599 vnet_crypto_op_t **crypto_ops = &ptd->crypto_ops;
600 vnet_crypto_op_t **integ_ops = &ptd->integ_ops;
Neale Rannsfc811342021-02-26 10:35:33 +0000601 vnet_crypto_async_frame_t *async_frames[VNET_CRYPTO_ASYNC_OP_N_IDS];
Fan Zhangf5395782020-04-29 14:00:03 +0100602 int is_async = im->async_mode;
Neale Rannsfc811342021-02-26 10:35:33 +0000603 vnet_crypto_async_op_id_t async_op = ~0;
Neale Ranns4a58e492020-12-21 13:19:10 +0000604 u16 drop_next =
605 (lt == VNET_LINK_IP6 ? ESP_ENCRYPT_NEXT_DROP6 :
606 (lt == VNET_LINK_IP4 ? ESP_ENCRYPT_NEXT_DROP4 :
607 ESP_ENCRYPT_NEXT_DROP_MPLS));
608 u16 handoff_next = (lt == VNET_LINK_IP6 ?
609 ESP_ENCRYPT_NEXT_HANDOFF6 :
610 (lt == VNET_LINK_IP4 ? ESP_ENCRYPT_NEXT_HANDOFF4 :
611 ESP_ENCRYPT_NEXT_HANDOFF_MPLS));
Neale Rannsf16e9a52021-02-25 19:09:24 +0000612 vlib_buffer_t *sync_bufs[VLIB_FRAME_SIZE];
613 u16 sync_nexts[VLIB_FRAME_SIZE], *sync_next = sync_nexts, n_sync = 0;
Damjan Mariondd298e82022-10-12 16:02:18 +0200614 u16 n_async = 0;
615 u16 noop_nexts[VLIB_FRAME_SIZE], n_noop = 0;
Neale Rannsf16e9a52021-02-25 19:09:24 +0000616 u32 sync_bi[VLIB_FRAME_SIZE];
617 u32 noop_bi[VLIB_FRAME_SIZE];
618 esp_encrypt_error_t err;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700619
Damjan Marionc59b9a22019-03-19 15:38:40 +0100620 vlib_get_buffers (vm, from, b, n_left);
Neale Rannsf16e9a52021-02-25 19:09:24 +0000621
622 vec_reset_length (ptd->crypto_ops);
623 vec_reset_length (ptd->integ_ops);
624 vec_reset_length (ptd->chained_crypto_ops);
625 vec_reset_length (ptd->chained_integ_ops);
Neale Rannsfc811342021-02-26 10:35:33 +0000626 vec_reset_length (ptd->async_frames);
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000627 vec_reset_length (ptd->chunks);
Neale Rannsfc811342021-02-26 10:35:33 +0000628 clib_memset (async_frames, 0, sizeof (async_frames));
Damjan Marionc59b9a22019-03-19 15:38:40 +0100629
630 while (n_left > 0)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700631 {
Zhiyong Yang1cff6432019-04-30 05:33:53 -0400632 u32 sa_index0;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100633 dpo_id_t *dpo;
634 esp_header_t *esp;
635 u8 *payload, *next_hdr_ptr;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000636 u16 payload_len, payload_len_total, n_bufs;
Neale Ranns4ec36c52020-03-31 09:21:29 -0400637 u32 hdr_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700638
Neale Rannsf16e9a52021-02-25 19:09:24 +0000639 err = ESP_ENCRYPT_ERROR_RX_PKTS;
640
Damjan Marionc59b9a22019-03-19 15:38:40 +0100641 if (n_left > 2)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700642 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100643 u8 *p;
644 vlib_prefetch_buffer_header (b[2], LOAD);
645 p = vlib_buffer_get_current (b[1]);
Damjan Marionaf7fb042021-07-15 11:54:41 +0200646 clib_prefetch_load (p);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100647 p -= CLIB_CACHE_LINE_BYTES;
Damjan Marionaf7fb042021-07-15 11:54:41 +0200648 clib_prefetch_load (p);
Neale Ranns123b5eb2020-10-16 14:03:55 +0000649 /* speculate that the trailer goes in the first buffer */
650 CLIB_PREFETCH (vlib_buffer_get_tail (b[1]),
651 CLIB_CACHE_LINE_BYTES, LOAD);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700652 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700653
Neale Ranns25edf142019-03-22 08:12:48 +0000654 if (is_tun)
655 {
656 /* we are on a ipsec tunnel's feature arc */
Neale Ranns28287212019-12-16 00:53:11 +0000657 vnet_buffer (b[0])->ipsec.sad_index =
658 sa_index0 = ipsec_tun_protect_get_sa_out
659 (vnet_buffer (b[0])->ip.adj_index[VLIB_TX]);
Neale Ranns6fdcc3d2021-10-08 07:30:47 +0000660
661 if (PREDICT_FALSE (INDEX_INVALID == sa_index0))
662 {
663 err = ESP_ENCRYPT_ERROR_NO_PROTECTION;
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100664 noop_nexts[n_noop] = drop_next;
665 b[0]->error = node->errors[err];
Neale Ranns6fdcc3d2021-10-08 07:30:47 +0000666 goto trace;
667 }
Neale Ranns25edf142019-03-22 08:12:48 +0000668 }
669 else
670 sa_index0 = vnet_buffer (b[0])->ipsec.sad_index;
671
672 if (sa_index0 != current_sa_index)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100673 {
Damjan Marion21f265f2019-06-05 15:45:50 +0200674 if (current_sa_packets)
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100675 vlib_increment_combined_counter (
676 &ipsec_sa_counters, thread_index, current_sa_index,
677 current_sa_packets, current_sa_bytes);
Damjan Marion21f265f2019-06-05 15:45:50 +0200678 current_sa_packets = current_sa_bytes = 0;
679
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000680 sa0 = ipsec_sa_get (sa_index0);
Neale Ranns123b5eb2020-10-16 14:03:55 +0000681
Neale Ranns6fdcc3d2021-10-08 07:30:47 +0000682 if (PREDICT_FALSE ((sa0->crypto_alg == IPSEC_CRYPTO_ALG_NONE &&
683 sa0->integ_alg == IPSEC_INTEG_ALG_NONE) &&
684 !ipsec_sa_is_set_NO_ALGO_NO_DROP (sa0)))
685 {
686 err = ESP_ENCRYPT_ERROR_NO_ENCRYPTION;
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100687 esp_encrypt_set_next_index (b[0], node, thread_index, err,
688 n_noop, noop_nexts, drop_next,
689 sa_index0);
Neale Ranns6fdcc3d2021-10-08 07:30:47 +0000690 goto trace;
691 }
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100692 current_sa_index = sa_index0;
693 vlib_prefetch_combined_counter (&ipsec_sa_counters, thread_index,
694 current_sa_index);
695
Neale Ranns123b5eb2020-10-16 14:03:55 +0000696 /* fetch the second cacheline ASAP */
Damjan Marionaf7fb042021-07-15 11:54:41 +0200697 clib_prefetch_load (sa0->cacheline1);
Neale Ranns123b5eb2020-10-16 14:03:55 +0000698
Damjan Marionc59b9a22019-03-19 15:38:40 +0100699 spi = clib_net_to_host_u32 (sa0->spi);
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500700 esp_align = sa0->esp_block_align;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200701 icv_sz = sa0->integ_icv_size;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100702 iv_sz = sa0->crypto_iv_size;
Neale Rannsf16e9a52021-02-25 19:09:24 +0000703 is_async = im->async_mode | ipsec_sa_is_set_IS_ASYNC (sa0);
Neale Rannsfc811342021-02-26 10:35:33 +0000704 }
Fan Zhangf5395782020-04-29 14:00:03 +0100705
Benoît Ganne5527a782022-01-18 15:56:41 +0100706 if (PREDICT_FALSE ((u16) ~0 == sa0->thread_index))
Neale Rannsf62a8c02019-04-02 08:13:33 +0000707 {
708 /* this is the first packet to use this SA, claim the SA
709 * for this thread. this could happen simultaneously on
710 * another thread */
Neale Ranns1a52d372021-02-04 11:33:32 +0000711 clib_atomic_cmp_and_swap (&sa0->thread_index, ~0,
Neale Rannsf62a8c02019-04-02 08:13:33 +0000712 ipsec_sa_assign_thread (thread_index));
713 }
714
Neale Ranns1a52d372021-02-04 11:33:32 +0000715 if (PREDICT_FALSE (thread_index != sa0->thread_index))
Neale Rannsf62a8c02019-04-02 08:13:33 +0000716 {
Neale Rannsaa7d7662021-02-10 08:42:49 +0000717 vnet_buffer (b[0])->ipsec.thread_index = sa0->thread_index;
Neale Rannsf16e9a52021-02-25 19:09:24 +0000718 err = ESP_ENCRYPT_ERROR_HANDOFF;
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100719 esp_encrypt_set_next_index (b[0], node, thread_index, err, n_noop,
720 noop_nexts, handoff_next,
721 current_sa_index);
Neale Rannsf62a8c02019-04-02 08:13:33 +0000722 goto trace;
723 }
724
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000725 lb = b[0];
726 n_bufs = vlib_buffer_chain_linearize (vm, b[0]);
727 if (n_bufs == 0)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100728 {
Neale Rannsf16e9a52021-02-25 19:09:24 +0000729 err = ESP_ENCRYPT_ERROR_NO_BUFFERS;
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100730 esp_encrypt_set_next_index (b[0], node, thread_index, err, n_noop,
731 noop_nexts, drop_next, current_sa_index);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100732 goto trace;
733 }
734
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000735 if (n_bufs > 1)
736 {
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000737 /* find last buffer in the chain */
738 while (lb->flags & VLIB_BUFFER_NEXT_PRESENT)
739 lb = vlib_get_buffer (vm, lb->next_buffer);
740 }
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000741
Damjan Marionc59b9a22019-03-19 15:38:40 +0100742 if (PREDICT_FALSE (esp_seq_advance (sa0)))
743 {
Neale Rannsf16e9a52021-02-25 19:09:24 +0000744 err = ESP_ENCRYPT_ERROR_SEQ_CYCLED;
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100745 esp_encrypt_set_next_index (b[0], node, thread_index, err, n_noop,
746 noop_nexts, drop_next, current_sa_index);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100747 goto trace;
748 }
749
750 /* space for IV */
751 hdr_len = iv_sz;
752
Damjan Mariond709cbc2019-03-26 13:16:42 +0100753 if (ipsec_sa_is_set_IS_TUNNEL (sa0))
Damjan Marionc59b9a22019-03-19 15:38:40 +0100754 {
755 payload = vlib_buffer_get_current (b[0]);
Neale Rannsf16e9a52021-02-25 19:09:24 +0000756 next_hdr_ptr = esp_add_footer_and_icv (
757 vm, &lb, esp_align, icv_sz, node, buffer_data_size,
758 vlib_buffer_length_in_chain (vm, b[0]));
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000759 if (!next_hdr_ptr)
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000760 {
Neale Rannsf16e9a52021-02-25 19:09:24 +0000761 err = ESP_ENCRYPT_ERROR_NO_BUFFERS;
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100762 esp_encrypt_set_next_index (b[0], node, thread_index, err,
763 n_noop, noop_nexts, drop_next,
764 current_sa_index);
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000765 goto trace;
766 }
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000767 b[0]->flags &= ~VLIB_BUFFER_TOTAL_LENGTH_VALID;
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000768 payload_len = b[0]->current_length;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000769 payload_len_total = vlib_buffer_length_in_chain (vm, b[0]);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100770
771 /* ESP header */
772 hdr_len += sizeof (*esp);
773 esp = (esp_header_t *) (payload - hdr_len);
774
775 /* optional UDP header */
Damjan Mariond709cbc2019-03-26 13:16:42 +0100776 if (ipsec_sa_is_set_UDP_ENCAP (sa0))
Damjan Marionc98275f2019-03-06 14:05:01 +0100777 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100778 hdr_len += sizeof (udp_header_t);
779 esp_fill_udp_hdr (sa0, (udp_header_t *) (payload - hdr_len),
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000780 payload_len_total + hdr_len);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100781 }
782
783 /* IP header */
Damjan Mariond709cbc2019-03-26 13:16:42 +0100784 if (ipsec_sa_is_set_IS_TUNNEL_V6 (sa0))
Damjan Marionc59b9a22019-03-19 15:38:40 +0100785 {
786 ip6_header_t *ip6;
787 u16 len = sizeof (ip6_header_t);
788 hdr_len += len;
789 ip6 = (ip6_header_t *) (payload - hdr_len);
Neale Ranns041add72020-01-02 04:06:10 +0000790 clib_memcpy_fast (ip6, &sa0->ip6_hdr, sizeof (ip6_header_t));
791
Neale Ranns4a58e492020-12-21 13:19:10 +0000792 if (VNET_LINK_IP6 == lt)
Neale Ranns041add72020-01-02 04:06:10 +0000793 {
794 *next_hdr_ptr = IP_PROTOCOL_IPV6;
795 tunnel_encap_fixup_6o6 (sa0->tunnel_flags,
796 (const ip6_header_t *) payload,
797 ip6);
798 }
Neale Ranns4a58e492020-12-21 13:19:10 +0000799 else if (VNET_LINK_IP4 == lt)
Neale Ranns041add72020-01-02 04:06:10 +0000800 {
801 *next_hdr_ptr = IP_PROTOCOL_IP_IN_IP;
Neale Rannsa91cb452021-02-04 11:02:52 +0000802 tunnel_encap_fixup_4o6 (sa0->tunnel_flags, b[0],
803 (const ip4_header_t *) payload, ip6);
Neale Ranns041add72020-01-02 04:06:10 +0000804 }
Neale Ranns4a58e492020-12-21 13:19:10 +0000805 else if (VNET_LINK_MPLS == lt)
806 {
807 *next_hdr_ptr = IP_PROTOCOL_MPLS_IN_IP;
808 tunnel_encap_fixup_mplso6 (
Neale Rannsa91cb452021-02-04 11:02:52 +0000809 sa0->tunnel_flags, b[0],
810 (const mpls_unicast_header_t *) payload, ip6);
Neale Ranns4a58e492020-12-21 13:19:10 +0000811 }
812 else
813 ASSERT (0);
814
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000815 len = payload_len_total + hdr_len - len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100816 ip6->payload_length = clib_net_to_host_u16 (len);
Neale Ranns45d6d832021-01-19 13:38:47 +0000817 b[0]->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Damjan Marionc98275f2019-03-06 14:05:01 +0100818 }
819 else
820 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100821 ip4_header_t *ip4;
822 u16 len = sizeof (ip4_header_t);
823 hdr_len += len;
824 ip4 = (ip4_header_t *) (payload - hdr_len);
Neale Ranns041add72020-01-02 04:06:10 +0000825 clib_memcpy_fast (ip4, &sa0->ip4_hdr, sizeof (ip4_header_t));
826
Neale Ranns4a58e492020-12-21 13:19:10 +0000827 if (VNET_LINK_IP6 == lt)
Neale Ranns041add72020-01-02 04:06:10 +0000828 {
829 *next_hdr_ptr = IP_PROTOCOL_IPV6;
830 tunnel_encap_fixup_6o4_w_chksum (sa0->tunnel_flags,
831 (const ip6_header_t *)
832 payload, ip4);
833 }
Neale Ranns4a58e492020-12-21 13:19:10 +0000834 else if (VNET_LINK_IP4 == lt)
Neale Ranns041add72020-01-02 04:06:10 +0000835 {
836 *next_hdr_ptr = IP_PROTOCOL_IP_IN_IP;
837 tunnel_encap_fixup_4o4_w_chksum (sa0->tunnel_flags,
838 (const ip4_header_t *)
839 payload, ip4);
840 }
Neale Ranns4a58e492020-12-21 13:19:10 +0000841 else if (VNET_LINK_MPLS == lt)
842 {
843 *next_hdr_ptr = IP_PROTOCOL_MPLS_IN_IP;
844 tunnel_encap_fixup_mplso4_w_chksum (
845 sa0->tunnel_flags, (const mpls_unicast_header_t *) payload,
846 ip4);
847 }
848 else
849 ASSERT (0);
850
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000851 len = payload_len_total + hdr_len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100852 esp_update_ip4_hdr (ip4, len, /* is_transport */ 0, 0);
Damjan Marionc98275f2019-03-06 14:05:01 +0100853 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100854
Neale Ranns72f2a3a2019-06-17 15:43:38 +0000855 dpo = &sa0->dpo;
Neale Ranns25edf142019-03-22 08:12:48 +0000856 if (!is_tun)
857 {
Neale Rannsf16e9a52021-02-25 19:09:24 +0000858 sync_next[0] = dpo->dpoi_next_node;
Neale Ranns25edf142019-03-22 08:12:48 +0000859 vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = dpo->dpoi_index;
860 }
Neale Ranns4ec36c52020-03-31 09:21:29 -0400861 else
Neale Rannsf16e9a52021-02-25 19:09:24 +0000862 sync_next[0] = ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT;
Neale Ranns9ec846c2021-02-09 14:04:02 +0000863 b[0]->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Damjan Marionc98275f2019-03-06 14:05:01 +0100864 }
Damjan Marionc59b9a22019-03-19 15:38:40 +0100865 else /* transport mode */
Damjan Marionc98275f2019-03-06 14:05:01 +0100866 {
Ole Troan03092c12021-11-23 15:55:39 +0100867 u8 *l2_hdr, l2_len, *ip_hdr;
868 u16 ip_len;
Neale Ranns02950402019-12-20 00:54:57 +0000869 ip6_ext_header_t *ext_hdr;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100870 udp_header_t *udp = 0;
Alexander Chernavinb0d2eda2020-03-25 10:56:52 -0400871 u16 udp_len = 0;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100872 u8 *old_ip_hdr = vlib_buffer_get_current (b[0]);
Damjan Marionc98275f2019-03-06 14:05:01 +0100873
Ole Troan03092c12021-11-23 15:55:39 +0100874 /*
875 * Get extension header chain length. It might be longer than the
876 * buffer's pre_data area.
877 */
Neale Ranns4a58e492020-12-21 13:19:10 +0000878 ip_len =
879 (VNET_LINK_IP6 == lt ?
880 esp_get_ip6_hdr_len ((ip6_header_t *) old_ip_hdr, &ext_hdr) :
881 ip4_header_bytes ((ip4_header_t *) old_ip_hdr));
Ole Troan03092c12021-11-23 15:55:39 +0100882 if ((old_ip_hdr - ip_len) < &b[0]->pre_data[0])
883 {
884 err = ESP_ENCRYPT_ERROR_NO_BUFFERS;
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100885 esp_encrypt_set_next_index (b[0], node, thread_index, err,
886 n_noop, noop_nexts, drop_next,
887 current_sa_index);
Ole Troan03092c12021-11-23 15:55:39 +0100888 goto trace;
889 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100890
Damjan Marionc59b9a22019-03-19 15:38:40 +0100891 vlib_buffer_advance (b[0], ip_len);
892 payload = vlib_buffer_get_current (b[0]);
Neale Rannsf16e9a52021-02-25 19:09:24 +0000893 next_hdr_ptr = esp_add_footer_and_icv (
894 vm, &lb, esp_align, icv_sz, node, buffer_data_size,
895 vlib_buffer_length_in_chain (vm, b[0]));
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000896 if (!next_hdr_ptr)
Fan Zhang18f0e312020-10-19 13:08:34 +0100897 {
Neale Rannsf16e9a52021-02-25 19:09:24 +0000898 err = ESP_ENCRYPT_ERROR_NO_BUFFERS;
Arthur de Kerhorad95b062022-11-16 19:12:05 +0100899 esp_encrypt_set_next_index (b[0], node, thread_index, err,
900 n_noop, noop_nexts, drop_next,
901 current_sa_index);
Fan Zhang18f0e312020-10-19 13:08:34 +0100902 goto trace;
903 }
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000904
905 b[0]->flags &= ~VLIB_BUFFER_TOTAL_LENGTH_VALID;
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000906 payload_len = b[0]->current_length;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000907 payload_len_total = vlib_buffer_length_in_chain (vm, b[0]);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100908
909 /* ESP header */
910 hdr_len += sizeof (*esp);
911 esp = (esp_header_t *) (payload - hdr_len);
912
913 /* optional UDP header */
Damjan Mariond709cbc2019-03-26 13:16:42 +0100914 if (ipsec_sa_is_set_UDP_ENCAP (sa0))
Damjan Marionc98275f2019-03-06 14:05:01 +0100915 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100916 hdr_len += sizeof (udp_header_t);
917 udp = (udp_header_t *) (payload - hdr_len);
Damjan Marionc98275f2019-03-06 14:05:01 +0100918 }
919
Damjan Marionc59b9a22019-03-19 15:38:40 +0100920 /* IP header */
921 hdr_len += ip_len;
922 ip_hdr = payload - hdr_len;
923
924 /* L2 header */
Neale Rannsc87b66c2019-02-07 07:26:12 -0800925 if (!is_tun)
926 {
927 l2_len = vnet_buffer (b[0])->ip.save_rewrite_length;
928 hdr_len += l2_len;
929 l2_hdr = payload - hdr_len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100930
Neale Rannsc87b66c2019-02-07 07:26:12 -0800931 /* copy l2 and ip header */
932 clib_memcpy_le32 (l2_hdr, old_ip_hdr - l2_len, l2_len);
933 }
934 else
935 l2_len = 0;
936
Matthew Smith6f1eb482022-08-09 22:19:38 +0000937 u16 len;
938 len = payload_len_total + hdr_len - l2_len;
939
Neale Ranns4a58e492020-12-21 13:19:10 +0000940 if (VNET_LINK_IP6 == lt)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100941 {
Neale Ranns02950402019-12-20 00:54:57 +0000942 ip6_header_t *ip6 = (ip6_header_t *) (old_ip_hdr);
943 if (PREDICT_TRUE (NULL == ext_hdr))
944 {
945 *next_hdr_ptr = ip6->protocol;
Matthew Smith6f1eb482022-08-09 22:19:38 +0000946 ip6->protocol =
947 (udp) ? IP_PROTOCOL_UDP : IP_PROTOCOL_IPSEC_ESP;
Neale Ranns02950402019-12-20 00:54:57 +0000948 }
949 else
950 {
951 *next_hdr_ptr = ext_hdr->next_hdr;
Matthew Smith6f1eb482022-08-09 22:19:38 +0000952 ext_hdr->next_hdr =
953 (udp) ? IP_PROTOCOL_UDP : IP_PROTOCOL_IPSEC_ESP;
Neale Ranns02950402019-12-20 00:54:57 +0000954 }
Neale Rannsd207fd72019-04-18 17:18:12 -0700955 ip6->payload_length =
Matthew Smith6f1eb482022-08-09 22:19:38 +0000956 clib_host_to_net_u16 (len - sizeof (ip6_header_t));
Damjan Marionc59b9a22019-03-19 15:38:40 +0100957 }
Neale Ranns4a58e492020-12-21 13:19:10 +0000958 else if (VNET_LINK_IP4 == lt)
Damjan Marionc98275f2019-03-06 14:05:01 +0100959 {
Neale Ranns02950402019-12-20 00:54:57 +0000960 ip4_header_t *ip4 = (ip4_header_t *) (old_ip_hdr);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100961 *next_hdr_ptr = ip4->protocol;
Matthew Smith6f1eb482022-08-09 22:19:38 +0000962 esp_update_ip4_hdr (ip4, len, /* is_transport */ 1,
963 (udp != NULL));
Damjan Marionc98275f2019-03-06 14:05:01 +0100964 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100965
Neale Ranns02950402019-12-20 00:54:57 +0000966 clib_memcpy_le64 (ip_hdr, old_ip_hdr, ip_len);
967
Alexander Chernavinb0d2eda2020-03-25 10:56:52 -0400968 if (udp)
969 {
Matthew Smith6f1eb482022-08-09 22:19:38 +0000970 udp_len = len - ip_len;
Alexander Chernavinb0d2eda2020-03-25 10:56:52 -0400971 esp_fill_udp_hdr (sa0, udp, udp_len);
972 }
973
Neale Rannsf16e9a52021-02-25 19:09:24 +0000974 sync_next[0] = ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT;
Damjan Marionc98275f2019-03-06 14:05:01 +0100975 }
976
PiotrX Kleskifdca4dd2020-05-05 14:14:22 +0200977 if (lb != b[0])
978 {
979 crypto_ops = &ptd->chained_crypto_ops;
980 integ_ops = &ptd->chained_integ_ops;
981 }
982 else
983 {
984 crypto_ops = &ptd->crypto_ops;
985 integ_ops = &ptd->integ_ops;
986 }
987
Damjan Marionc59b9a22019-03-19 15:38:40 +0100988 esp->spi = spi;
989 esp->seq = clib_net_to_host_u32 (sa0->seq);
Damjan Marionc98275f2019-03-06 14:05:01 +0100990
Fan Zhangf5395782020-04-29 14:00:03 +0100991 if (is_async)
Matthew Smith51d56ba2021-06-04 09:18:37 -0500992 {
993 async_op = sa0->crypto_async_enc_op_id;
994
995 /* get a frame for this op if we don't yet have one or it's full
996 */
997 if (NULL == async_frames[async_op] ||
998 vnet_crypto_async_frame_is_full (async_frames[async_op]))
999 {
1000 async_frames[async_op] =
1001 vnet_crypto_async_get_frame (vm, async_op);
gaoginskxf441b5d2021-06-07 12:07:01 +01001002
1003 if (PREDICT_FALSE (!async_frames[async_op]))
1004 {
1005 err = ESP_ENCRYPT_ERROR_NO_AVAIL_FRAME;
1006 esp_encrypt_set_next_index (b[0], node, thread_index, err,
1007 n_noop, noop_nexts, drop_next,
1008 current_sa_index);
1009 goto trace;
1010 }
1011
Matthew Smith51d56ba2021-06-04 09:18:37 -05001012 /* Save the frame to the list we'll submit at the end */
1013 vec_add1 (ptd->async_frames, async_frames[async_op]);
1014 }
1015
1016 esp_prepare_async_frame (vm, ptd, async_frames[async_op], sa0, b[0],
1017 esp, payload, payload_len, iv_sz, icv_sz,
1018 from[b - bufs], sync_next[0], hdr_len,
1019 async_next_node, lb);
1020 }
Fan Zhangf5395782020-04-29 14:00:03 +01001021 else
Neale Ranns5b891102021-06-28 13:31:28 +00001022 esp_prepare_sync_op (vm, ptd, crypto_ops, integ_ops, sa0, sa0->seq_hi,
1023 payload, payload_len, iv_sz, icv_sz, n_sync, b,
1024 lb, hdr_len, esp);
Damjan Marionc98275f2019-03-06 14:05:01 +01001025
Damjan Marionc59b9a22019-03-19 15:38:40 +01001026 vlib_buffer_advance (b[0], 0LL - hdr_len);
Damjan Marionc98275f2019-03-06 14:05:01 +01001027
Damjan Marionc59b9a22019-03-19 15:38:40 +01001028 current_sa_packets += 1;
Filip Tehlarefcad1a2020-02-04 09:36:04 +00001029 current_sa_bytes += payload_len_total;
Damjan Marionc59b9a22019-03-19 15:38:40 +01001030
1031 trace:
1032 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
Damjan Marionc98275f2019-03-06 14:05:01 +01001033 {
Damjan Marionc59b9a22019-03-19 15:38:40 +01001034 esp_encrypt_trace_t *tr = vlib_add_trace (vm, node, b[0],
1035 sizeof (*tr));
Neale Ranns6fdcc3d2021-10-08 07:30:47 +00001036 if (INDEX_INVALID == sa_index0)
1037 clib_memset_u8 (tr, 0xff, sizeof (*tr));
1038 else
1039 {
1040 tr->sa_index = sa_index0;
1041 tr->spi = sa0->spi;
Neale Ranns6fdcc3d2021-10-08 07:30:47 +00001042 tr->seq = sa0->seq;
1043 tr->sa_seq_hi = sa0->seq_hi;
1044 tr->udp_encap = ipsec_sa_is_set_UDP_ENCAP (sa0);
1045 tr->crypto_alg = sa0->crypto_alg;
1046 tr->integ_alg = sa0->integ_alg;
1047 }
Damjan Marionc98275f2019-03-06 14:05:01 +01001048 }
Neale Rannsf16e9a52021-02-25 19:09:24 +00001049
Damjan Marionc98275f2019-03-06 14:05:01 +01001050 /* next */
Neale Rannsf16e9a52021-02-25 19:09:24 +00001051 if (ESP_ENCRYPT_ERROR_RX_PKTS != err)
1052 {
1053 noop_bi[n_noop] = from[b - bufs];
1054 n_noop++;
Neale Rannsf16e9a52021-02-25 19:09:24 +00001055 }
1056 else if (!is_async)
1057 {
1058 sync_bi[n_sync] = from[b - bufs];
1059 sync_bufs[n_sync] = b[0];
1060 n_sync++;
1061 sync_next++;
1062 }
1063 else
1064 {
1065 n_async++;
Neale Rannsf16e9a52021-02-25 19:09:24 +00001066 }
Damjan Marionc59b9a22019-03-19 15:38:40 +01001067 n_left -= 1;
Damjan Marionc59b9a22019-03-19 15:38:40 +01001068 b += 1;
Damjan Marionc98275f2019-03-06 14:05:01 +01001069 }
1070
Neale Ranns6fdcc3d2021-10-08 07:30:47 +00001071 if (INDEX_INVALID != current_sa_index)
1072 vlib_increment_combined_counter (&ipsec_sa_counters, thread_index,
1073 current_sa_index, current_sa_packets,
1074 current_sa_bytes);
Neale Rannsf16e9a52021-02-25 19:09:24 +00001075 if (n_sync)
Fan Zhangf5395782020-04-29 14:00:03 +01001076 {
Neale Rannsf16e9a52021-02-25 19:09:24 +00001077 esp_process_ops (vm, node, ptd->crypto_ops, sync_bufs, sync_nexts,
1078 drop_next);
1079 esp_process_chained_ops (vm, node, ptd->chained_crypto_ops, sync_bufs,
1080 sync_nexts, ptd->chunks, drop_next);
Filip Tehlarefcad1a2020-02-04 09:36:04 +00001081
Neale Rannsf16e9a52021-02-25 19:09:24 +00001082 esp_process_ops (vm, node, ptd->integ_ops, sync_bufs, sync_nexts,
1083 drop_next);
1084 esp_process_chained_ops (vm, node, ptd->chained_integ_ops, sync_bufs,
1085 sync_nexts, ptd->chunks, drop_next);
Neale Rannsfc811342021-02-26 10:35:33 +00001086
Neale Rannsf16e9a52021-02-25 19:09:24 +00001087 vlib_buffer_enqueue_to_next (vm, node, sync_bi, sync_nexts, n_sync);
Fan Zhangf5395782020-04-29 14:00:03 +01001088 }
Neale Rannsf16e9a52021-02-25 19:09:24 +00001089 if (n_async)
Fan Zhangf5395782020-04-29 14:00:03 +01001090 {
Neale Rannsfc811342021-02-26 10:35:33 +00001091 /* submit all of the open frames */
1092 vnet_crypto_async_frame_t **async_frame;
1093
1094 vec_foreach (async_frame, ptd->async_frames)
Fan Zhang18f0e312020-10-19 13:08:34 +01001095 {
Neale Rannsfc811342021-02-26 10:35:33 +00001096 if (vnet_crypto_async_submit_open_frame (vm, *async_frame) < 0)
1097 {
Neale Rannsf16e9a52021-02-25 19:09:24 +00001098 n_noop += esp_async_recycle_failed_submit (
1099 vm, *async_frame, node, ESP_ENCRYPT_ERROR_CRYPTO_ENGINE_ERROR,
Arthur de Kerhorad95b062022-11-16 19:12:05 +01001100 IPSEC_SA_ERROR_CRYPTO_ENGINE_ERROR, n_noop, noop_bi,
Xiaoming Jiang0c1454c2023-05-05 02:28:20 +00001101 noop_nexts, drop_next, true);
Neale Rannsfc811342021-02-26 10:35:33 +00001102 vnet_crypto_async_reset_frame (*async_frame);
1103 vnet_crypto_async_free_frame (vm, *async_frame);
1104 }
Fan Zhang18f0e312020-10-19 13:08:34 +01001105 }
Fan Zhangf5395782020-04-29 14:00:03 +01001106 }
Neale Rannsf16e9a52021-02-25 19:09:24 +00001107 if (n_noop)
1108 vlib_buffer_enqueue_to_next (vm, node, noop_bi, noop_nexts, n_noop);
1109
1110 vlib_node_increment_counter (vm, node->node_index, ESP_ENCRYPT_ERROR_RX_PKTS,
1111 frame->n_vectors);
Damjan Marionc59b9a22019-03-19 15:38:40 +01001112
Damjan Marionc59b9a22019-03-19 15:38:40 +01001113 return frame->n_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001114}
1115
Fan Zhangf5395782020-04-29 14:00:03 +01001116always_inline uword
1117esp_encrypt_post_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1118 vlib_frame_t * frame)
1119{
1120 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
1121 u16 nexts[VLIB_FRAME_SIZE], *next = nexts;
1122 u32 *from = vlib_frame_vector_args (frame);
1123 u32 n_left = frame->n_vectors;
1124
1125 vlib_get_buffers (vm, from, b, n_left);
1126
1127 if (n_left >= 4)
1128 {
1129 vlib_prefetch_buffer_header (b[0], LOAD);
1130 vlib_prefetch_buffer_header (b[1], LOAD);
1131 vlib_prefetch_buffer_header (b[2], LOAD);
1132 vlib_prefetch_buffer_header (b[3], LOAD);
1133 }
1134
1135 while (n_left > 8)
1136 {
1137 vlib_prefetch_buffer_header (b[4], LOAD);
1138 vlib_prefetch_buffer_header (b[5], LOAD);
1139 vlib_prefetch_buffer_header (b[6], LOAD);
1140 vlib_prefetch_buffer_header (b[7], LOAD);
1141
1142 next[0] = (esp_post_data (b[0]))->next_index;
1143 next[1] = (esp_post_data (b[1]))->next_index;
1144 next[2] = (esp_post_data (b[2]))->next_index;
1145 next[3] = (esp_post_data (b[3]))->next_index;
1146
1147 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
1148 {
1149 if (b[0]->flags & VLIB_BUFFER_IS_TRACED)
1150 {
1151 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[0],
1152 sizeof (*tr));
1153 tr->next_index = next[0];
1154 }
1155 if (b[1]->flags & VLIB_BUFFER_IS_TRACED)
1156 {
1157 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[1],
1158 sizeof (*tr));
1159 tr->next_index = next[1];
1160 }
1161 if (b[2]->flags & VLIB_BUFFER_IS_TRACED)
1162 {
1163 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[2],
1164 sizeof (*tr));
1165 tr->next_index = next[2];
1166 }
1167 if (b[3]->flags & VLIB_BUFFER_IS_TRACED)
1168 {
1169 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[3],
1170 sizeof (*tr));
1171 tr->next_index = next[3];
1172 }
1173 }
1174
1175 b += 4;
1176 next += 4;
1177 n_left -= 4;
1178 }
1179
1180 while (n_left > 0)
1181 {
1182 next[0] = (esp_post_data (b[0]))->next_index;
1183 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
1184 {
1185 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[0],
1186 sizeof (*tr));
1187 tr->next_index = next[0];
1188 }
1189
1190 b += 1;
1191 next += 1;
1192 n_left -= 1;
1193 }
1194
1195 vlib_node_increment_counter (vm, node->node_index,
1196 ESP_ENCRYPT_ERROR_POST_RX_PKTS,
1197 frame->n_vectors);
1198 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
1199 return frame->n_vectors;
1200}
1201
Klement Sekerab8f35442018-10-29 13:38:19 +01001202VLIB_NODE_FN (esp4_encrypt_node) (vlib_main_t * vm,
1203 vlib_node_runtime_t * node,
1204 vlib_frame_t * from_frame)
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001205{
Neale Ranns4a58e492020-12-21 13:19:10 +00001206 return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_IP4, 0,
Fan Zhangf5395782020-04-29 14:00:03 +01001207 esp_encrypt_async_next.esp4_post_next);
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001208}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001209
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -07001210/* *INDENT-OFF* */
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001211VLIB_REGISTER_NODE (esp4_encrypt_node) = {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001212 .name = "esp4-encrypt",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001213 .vector_size = sizeof (u32),
1214 .format_trace = format_esp_encrypt_trace,
1215 .type = VLIB_NODE_TYPE_INTERNAL,
1216
Neale Ranns93688d72022-08-09 03:34:51 +00001217 .n_errors = ESP_ENCRYPT_N_ERROR,
1218 .error_counters = esp_encrypt_error_counters,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001219
1220 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
Neale Ranns4a58e492020-12-21 13:19:10 +00001221 .next_nodes = { [ESP_ENCRYPT_NEXT_DROP4] = "ip4-drop",
1222 [ESP_ENCRYPT_NEXT_DROP6] = "ip6-drop",
1223 [ESP_ENCRYPT_NEXT_DROP_MPLS] = "mpls-drop",
1224 [ESP_ENCRYPT_NEXT_HANDOFF4] = "esp4-encrypt-handoff",
1225 [ESP_ENCRYPT_NEXT_HANDOFF6] = "esp6-encrypt-handoff",
1226 [ESP_ENCRYPT_NEXT_HANDOFF_MPLS] = "error-drop",
1227 [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "interface-output" },
Ed Warnickecb9cada2015-12-08 15:45:58 -07001228};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -07001229/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001230
Fan Zhangf5395782020-04-29 14:00:03 +01001231VLIB_NODE_FN (esp4_encrypt_post_node) (vlib_main_t * vm,
1232 vlib_node_runtime_t * node,
1233 vlib_frame_t * from_frame)
1234{
1235 return esp_encrypt_post_inline (vm, node, from_frame);
1236}
1237
1238/* *INDENT-OFF* */
1239VLIB_REGISTER_NODE (esp4_encrypt_post_node) = {
1240 .name = "esp4-encrypt-post",
1241 .vector_size = sizeof (u32),
1242 .format_trace = format_esp_post_encrypt_trace,
1243 .type = VLIB_NODE_TYPE_INTERNAL,
1244 .sibling_of = "esp4-encrypt",
1245
Neale Ranns93688d72022-08-09 03:34:51 +00001246 .n_errors = ESP_ENCRYPT_N_ERROR,
1247 .error_counters = esp_encrypt_error_counters,
Fan Zhangf5395782020-04-29 14:00:03 +01001248};
1249/* *INDENT-ON* */
1250
Klement Sekerab8f35442018-10-29 13:38:19 +01001251VLIB_NODE_FN (esp6_encrypt_node) (vlib_main_t * vm,
1252 vlib_node_runtime_t * node,
1253 vlib_frame_t * from_frame)
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001254{
Neale Ranns4a58e492020-12-21 13:19:10 +00001255 return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_IP6, 0,
Fan Zhangf5395782020-04-29 14:00:03 +01001256 esp_encrypt_async_next.esp6_post_next);
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001257}
1258
1259/* *INDENT-OFF* */
1260VLIB_REGISTER_NODE (esp6_encrypt_node) = {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001261 .name = "esp6-encrypt",
1262 .vector_size = sizeof (u32),
1263 .format_trace = format_esp_encrypt_trace,
1264 .type = VLIB_NODE_TYPE_INTERNAL,
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001265 .sibling_of = "esp4-encrypt",
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001266
Neale Ranns93688d72022-08-09 03:34:51 +00001267 .n_errors = ESP_ENCRYPT_N_ERROR,
1268 .error_counters = esp_encrypt_error_counters,
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001269};
1270/* *INDENT-ON* */
1271
Fan Zhangf5395782020-04-29 14:00:03 +01001272VLIB_NODE_FN (esp6_encrypt_post_node) (vlib_main_t * vm,
1273 vlib_node_runtime_t * node,
1274 vlib_frame_t * from_frame)
1275{
1276 return esp_encrypt_post_inline (vm, node, from_frame);
1277}
1278
1279/* *INDENT-OFF* */
1280VLIB_REGISTER_NODE (esp6_encrypt_post_node) = {
1281 .name = "esp6-encrypt-post",
1282 .vector_size = sizeof (u32),
1283 .format_trace = format_esp_post_encrypt_trace,
1284 .type = VLIB_NODE_TYPE_INTERNAL,
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001285 .sibling_of = "esp4-encrypt",
Fan Zhangf5395782020-04-29 14:00:03 +01001286
Neale Ranns93688d72022-08-09 03:34:51 +00001287 .n_errors = ESP_ENCRYPT_N_ERROR,
1288 .error_counters = esp_encrypt_error_counters,
Fan Zhangf5395782020-04-29 14:00:03 +01001289};
1290/* *INDENT-ON* */
1291
Neale Ranns25edf142019-03-22 08:12:48 +00001292VLIB_NODE_FN (esp4_encrypt_tun_node) (vlib_main_t * vm,
1293 vlib_node_runtime_t * node,
1294 vlib_frame_t * from_frame)
1295{
Neale Ranns4a58e492020-12-21 13:19:10 +00001296 return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_IP4, 1,
Fan Zhangf5395782020-04-29 14:00:03 +01001297 esp_encrypt_async_next.esp4_tun_post_next);
Neale Ranns25edf142019-03-22 08:12:48 +00001298}
1299
1300/* *INDENT-OFF* */
1301VLIB_REGISTER_NODE (esp4_encrypt_tun_node) = {
1302 .name = "esp4-encrypt-tun",
1303 .vector_size = sizeof (u32),
1304 .format_trace = format_esp_encrypt_trace,
1305 .type = VLIB_NODE_TYPE_INTERNAL,
1306
Neale Ranns93688d72022-08-09 03:34:51 +00001307 .n_errors = ESP_ENCRYPT_N_ERROR,
1308 .error_counters = esp_encrypt_error_counters,
Neale Rannsd7603d92019-03-28 08:56:10 +00001309
Neale Rannsf62a8c02019-04-02 08:13:33 +00001310 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
Neale Rannsd7603d92019-03-28 08:56:10 +00001311 .next_nodes = {
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001312 [ESP_ENCRYPT_NEXT_DROP4] = "ip4-drop",
1313 [ESP_ENCRYPT_NEXT_DROP6] = "ip6-drop",
Neale Ranns4a58e492020-12-21 13:19:10 +00001314 [ESP_ENCRYPT_NEXT_DROP_MPLS] = "mpls-drop",
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001315 [ESP_ENCRYPT_NEXT_HANDOFF4] = "esp4-encrypt-tun-handoff",
Neale Ranns4a58e492020-12-21 13:19:10 +00001316 [ESP_ENCRYPT_NEXT_HANDOFF6] = "esp6-encrypt-tun-handoff",
1317 [ESP_ENCRYPT_NEXT_HANDOFF_MPLS] = "esp-mpls-encrypt-tun-handoff",
Neale Ranns4ec36c52020-03-31 09:21:29 -04001318 [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "adj-midchain-tx",
Neale Rannsd7603d92019-03-28 08:56:10 +00001319 },
Neale Ranns25edf142019-03-22 08:12:48 +00001320};
1321
Fan Zhangf5395782020-04-29 14:00:03 +01001322VLIB_NODE_FN (esp4_encrypt_tun_post_node) (vlib_main_t * vm,
1323 vlib_node_runtime_t * node,
1324 vlib_frame_t * from_frame)
1325{
1326 return esp_encrypt_post_inline (vm, node, from_frame);
1327}
1328
1329/* *INDENT-OFF* */
1330VLIB_REGISTER_NODE (esp4_encrypt_tun_post_node) = {
1331 .name = "esp4-encrypt-tun-post",
1332 .vector_size = sizeof (u32),
1333 .format_trace = format_esp_post_encrypt_trace,
1334 .type = VLIB_NODE_TYPE_INTERNAL,
1335 .sibling_of = "esp4-encrypt-tun",
1336
Neale Ranns93688d72022-08-09 03:34:51 +00001337 .n_errors = ESP_ENCRYPT_N_ERROR,
1338 .error_counters = esp_encrypt_error_counters,
Fan Zhangf5395782020-04-29 14:00:03 +01001339};
Neale Ranns25edf142019-03-22 08:12:48 +00001340/* *INDENT-ON* */
1341
1342VLIB_NODE_FN (esp6_encrypt_tun_node) (vlib_main_t * vm,
1343 vlib_node_runtime_t * node,
1344 vlib_frame_t * from_frame)
1345{
Neale Ranns4a58e492020-12-21 13:19:10 +00001346 return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_IP6, 1,
Fan Zhangf5395782020-04-29 14:00:03 +01001347 esp_encrypt_async_next.esp6_tun_post_next);
Neale Ranns25edf142019-03-22 08:12:48 +00001348}
1349
1350/* *INDENT-OFF* */
1351VLIB_REGISTER_NODE (esp6_encrypt_tun_node) = {
1352 .name = "esp6-encrypt-tun",
1353 .vector_size = sizeof (u32),
1354 .format_trace = format_esp_encrypt_trace,
1355 .type = VLIB_NODE_TYPE_INTERNAL,
1356
Neale Ranns93688d72022-08-09 03:34:51 +00001357 .n_errors = ESP_ENCRYPT_N_ERROR,
1358 .error_counters = esp_encrypt_error_counters,
Neale Rannsd7603d92019-03-28 08:56:10 +00001359
Neale Rannsf62a8c02019-04-02 08:13:33 +00001360 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
Neale Rannsd7603d92019-03-28 08:56:10 +00001361 .next_nodes = {
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001362 [ESP_ENCRYPT_NEXT_DROP4] = "ip4-drop",
1363 [ESP_ENCRYPT_NEXT_DROP6] = "ip6-drop",
Neale Ranns4a58e492020-12-21 13:19:10 +00001364 [ESP_ENCRYPT_NEXT_DROP_MPLS] = "mpls-drop",
1365 [ESP_ENCRYPT_NEXT_HANDOFF4] = "esp4-encrypt-tun-handoff",
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001366 [ESP_ENCRYPT_NEXT_HANDOFF6] = "esp6-encrypt-tun-handoff",
Neale Ranns4a58e492020-12-21 13:19:10 +00001367 [ESP_ENCRYPT_NEXT_HANDOFF_MPLS] = "esp-mpls-encrypt-tun-handoff",
Neale Ranns4ec36c52020-03-31 09:21:29 -04001368 [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "adj-midchain-tx",
Neale Rannsd7603d92019-03-28 08:56:10 +00001369 },
Neale Ranns25edf142019-03-22 08:12:48 +00001370};
1371
Neale Ranns25edf142019-03-22 08:12:48 +00001372/* *INDENT-ON* */
1373
Fan Zhangf5395782020-04-29 14:00:03 +01001374VLIB_NODE_FN (esp6_encrypt_tun_post_node) (vlib_main_t * vm,
1375 vlib_node_runtime_t * node,
1376 vlib_frame_t * from_frame)
1377{
1378 return esp_encrypt_post_inline (vm, node, from_frame);
1379}
1380
1381/* *INDENT-OFF* */
1382VLIB_REGISTER_NODE (esp6_encrypt_tun_post_node) = {
1383 .name = "esp6-encrypt-tun-post",
1384 .vector_size = sizeof (u32),
1385 .format_trace = format_esp_post_encrypt_trace,
1386 .type = VLIB_NODE_TYPE_INTERNAL,
Neale Ranns4a58e492020-12-21 13:19:10 +00001387 .sibling_of = "esp-mpls-encrypt-tun",
Fan Zhangf5395782020-04-29 14:00:03 +01001388
Neale Ranns93688d72022-08-09 03:34:51 +00001389 .n_errors = ESP_ENCRYPT_N_ERROR,
1390 .error_counters = esp_encrypt_error_counters,
Fan Zhangf5395782020-04-29 14:00:03 +01001391};
1392/* *INDENT-ON* */
1393
Neale Ranns4a58e492020-12-21 13:19:10 +00001394VLIB_NODE_FN (esp_mpls_encrypt_tun_node)
1395(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
1396{
1397 return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_MPLS, 1,
1398 esp_encrypt_async_next.esp_mpls_tun_post_next);
1399}
1400
1401VLIB_REGISTER_NODE (esp_mpls_encrypt_tun_node) = {
1402 .name = "esp-mpls-encrypt-tun",
1403 .vector_size = sizeof (u32),
1404 .format_trace = format_esp_encrypt_trace,
1405 .type = VLIB_NODE_TYPE_INTERNAL,
1406
Neale Ranns93688d72022-08-09 03:34:51 +00001407 .n_errors = ESP_ENCRYPT_N_ERROR,
1408 .error_counters = esp_encrypt_error_counters,
Neale Ranns4a58e492020-12-21 13:19:10 +00001409
1410 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
1411 .next_nodes = {
1412 [ESP_ENCRYPT_NEXT_DROP4] = "ip4-drop",
1413 [ESP_ENCRYPT_NEXT_DROP6] = "ip6-drop",
1414 [ESP_ENCRYPT_NEXT_DROP_MPLS] = "mpls-drop",
1415 [ESP_ENCRYPT_NEXT_HANDOFF4] = "esp4-encrypt-tun-handoff",
1416 [ESP_ENCRYPT_NEXT_HANDOFF6] = "esp6-encrypt-tun-handoff",
1417 [ESP_ENCRYPT_NEXT_HANDOFF_MPLS] = "esp-mpls-encrypt-tun-handoff",
1418 [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "adj-midchain-tx",
1419 },
1420};
1421
1422VLIB_NODE_FN (esp_mpls_encrypt_tun_post_node)
1423(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
1424{
1425 return esp_encrypt_post_inline (vm, node, from_frame);
1426}
1427
1428VLIB_REGISTER_NODE (esp_mpls_encrypt_tun_post_node) = {
1429 .name = "esp-mpls-encrypt-tun-post",
1430 .vector_size = sizeof (u32),
1431 .format_trace = format_esp_post_encrypt_trace,
1432 .type = VLIB_NODE_TYPE_INTERNAL,
1433 .sibling_of = "esp-mpls-encrypt-tun",
1434
Neale Ranns93688d72022-08-09 03:34:51 +00001435 .n_errors = ESP_ENCRYPT_N_ERROR,
1436 .error_counters = esp_encrypt_error_counters,
Neale Ranns4a58e492020-12-21 13:19:10 +00001437};
1438
Neale Ranns2d498302021-02-25 08:38:58 +00001439#ifndef CLIB_MARCH_VARIANT
1440
1441static clib_error_t *
1442esp_encrypt_init (vlib_main_t *vm)
1443{
1444 ipsec_main_t *im = &ipsec_main;
1445
1446 im->esp4_enc_fq_index =
1447 vlib_frame_queue_main_init (esp4_encrypt_node.index, 0);
1448 im->esp6_enc_fq_index =
1449 vlib_frame_queue_main_init (esp6_encrypt_node.index, 0);
1450 im->esp4_enc_tun_fq_index =
1451 vlib_frame_queue_main_init (esp4_encrypt_tun_node.index, 0);
1452 im->esp6_enc_tun_fq_index =
1453 vlib_frame_queue_main_init (esp6_encrypt_tun_node.index, 0);
1454 im->esp_mpls_enc_tun_fq_index =
1455 vlib_frame_queue_main_init (esp_mpls_encrypt_tun_node.index, 0);
1456
1457 return 0;
1458}
1459
1460VLIB_INIT_FUNCTION (esp_encrypt_init);
1461
1462#endif
1463
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -07001464/*
1465 * fd.io coding-style-patch-verification: ON
1466 *
1467 * Local Variables:
1468 * eval: (c-set-style "gnu")
1469 * End:
1470 */