blob: d102bd68f740e8f369c64aff773d1e863e1ba47d [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>
Ed Warnickecb9cada2015-12-08 15:45:58 -070026#include <vnet/ipsec/esp.h>
Neale Ranns041add72020-01-02 04:06:10 +000027#include <vnet/tunnel/tunnel_dp.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070028
Neale Ranns4a58e492020-12-21 13:19:10 +000029#define foreach_esp_encrypt_next \
30 _ (DROP4, "ip4-drop") \
31 _ (DROP6, "ip6-drop") \
32 _ (DROP_MPLS, "mpls-drop") \
33 _ (HANDOFF4, "handoff4") \
34 _ (HANDOFF6, "handoff6") \
35 _ (HANDOFF_MPLS, "handoff-mpls") \
36 _ (INTERFACE_OUTPUT, "interface-output")
Ed Warnickecb9cada2015-12-08 15:45:58 -070037
38#define _(v, s) ESP_ENCRYPT_NEXT_##v,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070039typedef enum
40{
Ed Warnickecb9cada2015-12-08 15:45:58 -070041 foreach_esp_encrypt_next
42#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070043 ESP_ENCRYPT_N_NEXT,
Ed Warnickecb9cada2015-12-08 15:45:58 -070044} esp_encrypt_next_t;
45
Neale Rannsf16e9a52021-02-25 19:09:24 +000046#define foreach_esp_encrypt_error \
47 _ (RX_PKTS, "ESP pkts received") \
48 _ (POST_RX_PKTS, "ESP-post pkts received") \
49 _ (HANDOFF, "Hand-off") \
50 _ (SEQ_CYCLED, "sequence number cycled (packet dropped)") \
51 _ (CRYPTO_ENGINE_ERROR, "crypto engine error (packet dropped)") \
52 _ (CRYPTO_QUEUE_FULL, "crypto queue full (packet dropped)") \
53 _ (NO_BUFFERS, "no buffers (packet dropped)")
Ed Warnickecb9cada2015-12-08 15:45:58 -070054
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070055typedef enum
56{
Ed Warnickecb9cada2015-12-08 15:45:58 -070057#define _(sym,str) ESP_ENCRYPT_ERROR_##sym,
58 foreach_esp_encrypt_error
59#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070060 ESP_ENCRYPT_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -070061} esp_encrypt_error_t;
62
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070063static char *esp_encrypt_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -070064#define _(sym,string) string,
65 foreach_esp_encrypt_error
66#undef _
67};
68
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070069typedef struct
70{
Neale Ranns8d7c5022019-02-06 01:41:05 -080071 u32 sa_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -070072 u32 spi;
73 u32 seq;
Neale Ranns6afaae12019-07-17 15:07:14 +000074 u32 sa_seq_hi;
Klement Sekera4b089f22018-04-17 18:04:57 +020075 u8 udp_encap;
Ed Warnickecb9cada2015-12-08 15:45:58 -070076 ipsec_crypto_alg_t crypto_alg;
77 ipsec_integ_alg_t integ_alg;
78} esp_encrypt_trace_t;
79
Fan Zhangf5395782020-04-29 14:00:03 +010080typedef struct
81{
82 u32 next_index;
83} esp_encrypt_post_trace_t;
84
Ed Warnickecb9cada2015-12-08 15:45:58 -070085/* packet trace format function */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070086static u8 *
87format_esp_encrypt_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070088{
89 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
90 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070091 esp_encrypt_trace_t *t = va_arg (*args, esp_encrypt_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070092
Guillaume Solignac8f818cc2019-05-15 12:02:33 +020093 s =
94 format (s,
Neale Ranns6afaae12019-07-17 15:07:14 +000095 "esp: sa-index %d spi %u (0x%08x) seq %u sa-seq-hi %u crypto %U integrity %U%s",
96 t->sa_index, t->spi, t->spi, t->seq, t->sa_seq_hi,
97 format_ipsec_crypto_alg,
Guillaume Solignac8f818cc2019-05-15 12:02:33 +020098 t->crypto_alg, format_ipsec_integ_alg, t->integ_alg,
99 t->udp_encap ? " udp-encap-enabled" : "");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100 return s;
101}
102
Fan Zhangf5395782020-04-29 14:00:03 +0100103static u8 *
104format_esp_post_encrypt_trace (u8 * s, va_list * args)
105{
106 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
107 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
108 esp_encrypt_post_trace_t *t = va_arg (*args, esp_encrypt_post_trace_t *);
109
110 s = format (s, "esp-post: next node index %u", t->next_index);
111 return s;
112}
113
Damjan Marionc59b9a22019-03-19 15:38:40 +0100114/* pad packet in input buffer */
115static_always_inline u8 *
Neale Rannsf16e9a52021-02-25 19:09:24 +0000116esp_add_footer_and_icv (vlib_main_t *vm, vlib_buffer_t **last, u8 esp_align,
117 u8 icv_sz, vlib_node_runtime_t *node,
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000118 u16 buffer_data_size, uword total_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119{
Damjan Marionc59b9a22019-03-19 15:38:40 +0100120 static const u8 pad_data[ESP_MAX_BLOCK_SIZE] = {
121 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
Milan Lenco7885c742020-08-20 13:23:09 +0200122 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x00,
Damjan Marionc59b9a22019-03-19 15:38:40 +0100123 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000125 u16 min_length = total_len + sizeof (esp_footer_t);
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500126 u16 new_length = round_pow2 (min_length, esp_align);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100127 u8 pad_bytes = new_length - min_length;
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000128 esp_footer_t *f = (esp_footer_t *) (vlib_buffer_get_current (last[0]) +
129 last[0]->current_length + pad_bytes);
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000130 u16 tail_sz = sizeof (esp_footer_t) + pad_bytes + icv_sz;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131
Benoît Ganne217ba5a2021-06-14 17:23:56 +0200132 if (last[0]->current_data + last[0]->current_length + tail_sz >
133 buffer_data_size)
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000134 {
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000135 u32 tmp_bi = 0;
136 if (vlib_buffer_alloc (vm, &tmp_bi, 1) != 1)
137 return 0;
Filip Tehlarc2c1bfd2020-02-13 07:49:30 +0000138
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000139 vlib_buffer_t *tmp = vlib_get_buffer (vm, tmp_bi);
140 last[0]->next_buffer = tmp_bi;
141 last[0]->flags |= VLIB_BUFFER_NEXT_PRESENT;
142 f = (esp_footer_t *) (vlib_buffer_get_current (tmp) + pad_bytes);
143 tmp->current_length += tail_sz;
144 last[0] = tmp;
145 }
146 else
147 last[0]->current_length += tail_sz;
148
149 f->pad_length = pad_bytes;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100150 if (pad_bytes)
Benoît Ganne4505f012019-12-07 09:14:27 -0700151 {
152 ASSERT (pad_bytes <= ESP_MAX_BLOCK_SIZE);
153 pad_bytes = clib_min (ESP_MAX_BLOCK_SIZE, pad_bytes);
154 clib_memcpy_fast ((u8 *) f - pad_bytes, pad_data, pad_bytes);
155 }
Damjan Marionc59b9a22019-03-19 15:38:40 +0100156
Damjan Marionc59b9a22019-03-19 15:38:40 +0100157 return &f->next_header;
158}
159
160static_always_inline void
161esp_update_ip4_hdr (ip4_header_t * ip4, u16 len, int is_transport, int is_udp)
162{
Neale Ranns1b582b82019-04-18 19:49:13 -0700163 ip_csum_t sum;
164 u16 old_len;
165
166 len = clib_net_to_host_u16 (len);
167 old_len = ip4->length;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100168
169 if (is_transport)
170 {
171 u8 prot = is_udp ? IP_PROTOCOL_UDP : IP_PROTOCOL_IPSEC_ESP;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100172
Neale Ranns1b582b82019-04-18 19:49:13 -0700173 sum = ip_csum_update (ip4->checksum, ip4->protocol,
174 prot, ip4_header_t, protocol);
175 ip4->protocol = prot;
176
177 sum = ip_csum_update (sum, old_len, len, ip4_header_t, length);
178 }
179 else
180 sum = ip_csum_update (ip4->checksum, old_len, len, ip4_header_t, length);
181
182 ip4->length = len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100183 ip4->checksum = ip_csum_fold (sum);
184}
185
186static_always_inline void
187esp_fill_udp_hdr (ipsec_sa_t * sa, udp_header_t * udp, u16 len)
188{
189 clib_memcpy_fast (udp, &sa->udp_hdr, sizeof (udp_header_t));
190 udp->length = clib_net_to_host_u16 (len);
191}
192
193static_always_inline u8
194ext_hdr_is_pre_esp (u8 nexthdr)
195{
196#ifdef CLIB_HAVE_VEC128
197 static const u8x16 ext_hdr_types = {
198 IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS,
199 IP_PROTOCOL_IPV6_ROUTE,
200 IP_PROTOCOL_IPV6_FRAGMENTATION,
201 };
202
203 return !u8x16_is_all_zero (ext_hdr_types == u8x16_splat (nexthdr));
204#else
205 return ((nexthdr ^ IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS) |
206 (nexthdr ^ IP_PROTOCOL_IPV6_ROUTE) |
207 (nexthdr ^ IP_PROTOCOL_IPV6_FRAGMENTATION) != 0);
208#endif
209}
210
211static_always_inline u8
Neale Ranns02950402019-12-20 00:54:57 +0000212esp_get_ip6_hdr_len (ip6_header_t * ip6, ip6_ext_header_t ** ext_hdr)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100213{
214 /* this code assumes that HbH, route and frag headers will be before
215 others, if that is not the case, they will end up encrypted */
Damjan Marionc59b9a22019-03-19 15:38:40 +0100216 u8 len = sizeof (ip6_header_t);
217 ip6_ext_header_t *p;
218
219 /* if next packet doesn't have ext header */
220 if (ext_hdr_is_pre_esp (ip6->protocol) == 0)
Neale Ranns02950402019-12-20 00:54:57 +0000221 {
222 *ext_hdr = NULL;
223 return len;
224 }
Damjan Marionc59b9a22019-03-19 15:38:40 +0100225
226 p = (void *) (ip6 + 1);
227 len += ip6_ext_header_len (p);
228
229 while (ext_hdr_is_pre_esp (p->next_hdr))
230 {
231 len += ip6_ext_header_len (p);
232 p = ip6_ext_next_header (p);
233 }
234
Neale Ranns02950402019-12-20 00:54:57 +0000235 *ext_hdr = p;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100236 return len;
237}
238
Damjan Marionc59b9a22019-03-19 15:38:40 +0100239static_always_inline void
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000240esp_process_chained_ops (vlib_main_t * vm, vlib_node_runtime_t * node,
241 vnet_crypto_op_t * ops, vlib_buffer_t * b[],
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000242 u16 * nexts, vnet_crypto_op_chunk_t * chunks,
243 u16 drop_next)
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000244{
245 u32 n_fail, n_ops = vec_len (ops);
246 vnet_crypto_op_t *op = ops;
247
248 if (n_ops == 0)
249 return;
250
251 n_fail = n_ops - vnet_crypto_process_chained_ops (vm, op, chunks, n_ops);
252
253 while (n_fail)
254 {
255 ASSERT (op - ops < n_ops);
256
257 if (op->status != VNET_CRYPTO_OP_STATUS_COMPLETED)
258 {
259 u32 bi = op->user_data;
260 b[bi]->error = node->errors[ESP_ENCRYPT_ERROR_CRYPTO_ENGINE_ERROR];
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000261 nexts[bi] = drop_next;
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;
288 b[bi]->error = node->errors[ESP_ENCRYPT_ERROR_CRYPTO_ENGINE_ERROR];
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000289 nexts[bi] = drop_next;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100290 n_fail--;
291 }
292 op++;
293 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294}
295
Fan Zhangf5395782020-04-29 14:00:03 +0100296static_always_inline u32
297esp_encrypt_chain_crypto (vlib_main_t * vm, ipsec_per_thread_data_t * ptd,
298 ipsec_sa_t * sa0, vlib_buffer_t * b,
299 vlib_buffer_t * lb, u8 icv_sz, u8 * start,
300 u32 start_len, u16 * n_ch)
301{
302 vnet_crypto_op_chunk_t *ch;
303 vlib_buffer_t *cb = b;
304 u32 n_chunks = 1;
305 u32 total_len;
306 vec_add2 (ptd->chunks, ch, 1);
307 total_len = ch->len = start_len;
308 ch->src = ch->dst = start;
309 cb = vlib_get_buffer (vm, cb->next_buffer);
310
311 while (1)
312 {
313 vec_add2 (ptd->chunks, ch, 1);
314 n_chunks += 1;
315 if (lb == cb)
316 total_len += ch->len = cb->current_length - icv_sz;
317 else
318 total_len += ch->len = cb->current_length;
319 ch->src = ch->dst = vlib_buffer_get_current (cb);
320
321 if (!(cb->flags & VLIB_BUFFER_NEXT_PRESENT))
322 break;
323
324 cb = vlib_get_buffer (vm, cb->next_buffer);
325 }
326
327 if (n_ch)
328 *n_ch = n_chunks;
329
330 return total_len;
331}
332
333static_always_inline u32
334esp_encrypt_chain_integ (vlib_main_t * vm, ipsec_per_thread_data_t * ptd,
335 ipsec_sa_t * sa0, vlib_buffer_t * b,
336 vlib_buffer_t * lb, u8 icv_sz, u8 * start,
337 u32 start_len, u8 * digest, u16 * n_ch)
338{
339 vnet_crypto_op_chunk_t *ch;
340 vlib_buffer_t *cb = b;
341 u32 n_chunks = 1;
342 u32 total_len;
343 vec_add2 (ptd->chunks, ch, 1);
344 total_len = ch->len = start_len;
345 ch->src = start;
346 cb = vlib_get_buffer (vm, cb->next_buffer);
347
348 while (1)
349 {
350 vec_add2 (ptd->chunks, ch, 1);
351 n_chunks += 1;
352 if (lb == cb)
353 {
354 total_len += ch->len = cb->current_length - icv_sz;
355 if (ipsec_sa_is_set_USE_ESN (sa0))
356 {
357 u32 seq_hi = clib_net_to_host_u32 (sa0->seq_hi);
358 clib_memcpy_fast (digest, &seq_hi, sizeof (seq_hi));
359 ch->len += sizeof (seq_hi);
360 total_len += sizeof (seq_hi);
361 }
362 }
363 else
364 total_len += ch->len = cb->current_length;
365 ch->src = vlib_buffer_get_current (cb);
366
367 if (!(cb->flags & VLIB_BUFFER_NEXT_PRESENT))
368 break;
369
370 cb = vlib_get_buffer (vm, cb->next_buffer);
371 }
372
373 if (n_ch)
374 *n_ch = n_chunks;
375
376 return total_len;
377}
378
379always_inline void
Benoît Ganne490b9272021-01-22 18:03:09 +0100380esp_prepare_sync_op (vlib_main_t *vm, ipsec_per_thread_data_t *ptd,
381 vnet_crypto_op_t **crypto_ops,
Neale Ranns5b891102021-06-28 13:31:28 +0000382 vnet_crypto_op_t **integ_ops, ipsec_sa_t *sa0, u32 seq_hi,
Neale Rannsf16e9a52021-02-25 19:09:24 +0000383 u8 *payload, u16 payload_len, u8 iv_sz, u8 icv_sz, u32 bi,
384 vlib_buffer_t **b, vlib_buffer_t *lb, u32 hdr_len,
385 esp_header_t *esp)
Fan Zhangf5395782020-04-29 14:00:03 +0100386{
387 if (sa0->crypto_enc_op_id)
388 {
389 vnet_crypto_op_t *op;
390 vec_add2_aligned (crypto_ops[0], op, 1, CLIB_CACHE_LINE_BYTES);
391 vnet_crypto_op_init (op, sa0->crypto_enc_op_id);
392
393 op->src = op->dst = payload;
394 op->key_index = sa0->crypto_key_index;
395 op->len = payload_len - icv_sz;
Neale Rannsf16e9a52021-02-25 19:09:24 +0000396 op->user_data = bi;
Fan Zhangf5395782020-04-29 14:00:03 +0100397
Benoît Ganne490b9272021-01-22 18:03:09 +0100398 if (ipsec_sa_is_set_IS_CTR (sa0))
Fan Zhangf5395782020-04-29 14:00:03 +0100399 {
Benoît Ganne490b9272021-01-22 18:03:09 +0100400 ASSERT (sizeof (u64) == iv_sz);
401 /* construct nonce in a scratch space in front of the IP header */
402 esp_ctr_nonce_t *nonce =
403 (esp_ctr_nonce_t *) (payload - sizeof (u64) - hdr_len -
404 sizeof (*nonce));
405 u64 *pkt_iv = (u64 *) (payload - sizeof (u64));
Fan Zhangf5395782020-04-29 14:00:03 +0100406
Benoît Ganne490b9272021-01-22 18:03:09 +0100407 if (ipsec_sa_is_set_IS_AEAD (sa0))
408 {
409 /* constuct aad in a scratch space in front of the nonce */
410 op->aad = (u8 *) nonce - sizeof (esp_aead_t);
Neale Ranns5b891102021-06-28 13:31:28 +0000411 op->aad_len = esp_aad_fill (op->aad, esp, sa0, seq_hi);
Benoît Ganne490b9272021-01-22 18:03:09 +0100412 op->tag = payload + op->len;
413 op->tag_len = 16;
414 }
415 else
416 {
417 nonce->ctr = clib_host_to_net_u32 (1);
418 }
Fan Zhangf5395782020-04-29 14:00:03 +0100419
Fan Zhangf5395782020-04-29 14:00:03 +0100420 nonce->salt = sa0->salt;
Benoît Ganne490b9272021-01-22 18:03:09 +0100421 nonce->iv = *pkt_iv = clib_host_to_net_u64 (sa0->ctr_iv_counter++);
Fan Zhangf5395782020-04-29 14:00:03 +0100422 op->iv = (u8 *) nonce;
423 }
424 else
425 {
426 op->iv = payload - iv_sz;
427 op->flags = VNET_CRYPTO_OP_FLAG_INIT_IV;
428 }
429
430 if (lb != b[0])
431 {
432 /* is chained */
433 op->flags |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS;
434 op->chunk_index = vec_len (ptd->chunks);
435 op->tag = vlib_buffer_get_tail (lb) - icv_sz;
436 esp_encrypt_chain_crypto (vm, ptd, sa0, b[0], lb, icv_sz, payload,
437 payload_len, &op->n_chunks);
438 }
439 }
440
441 if (sa0->integ_op_id)
442 {
443 vnet_crypto_op_t *op;
444 vec_add2_aligned (integ_ops[0], op, 1, CLIB_CACHE_LINE_BYTES);
445 vnet_crypto_op_init (op, sa0->integ_op_id);
446 op->src = payload - iv_sz - sizeof (esp_header_t);
447 op->digest = payload + payload_len - icv_sz;
448 op->key_index = sa0->integ_key_index;
449 op->digest_len = icv_sz;
450 op->len = payload_len - icv_sz + iv_sz + sizeof (esp_header_t);
Neale Rannsf16e9a52021-02-25 19:09:24 +0000451 op->user_data = bi;
Fan Zhangf5395782020-04-29 14:00:03 +0100452
453 if (lb != b[0])
454 {
455 /* is chained */
456 op->flags |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS;
457 op->chunk_index = vec_len (ptd->chunks);
458 op->digest = vlib_buffer_get_tail (lb) - icv_sz;
459
460 esp_encrypt_chain_integ (vm, ptd, sa0, b[0], lb, icv_sz,
461 payload - iv_sz - sizeof (esp_header_t),
462 payload_len + iv_sz +
463 sizeof (esp_header_t), op->digest,
464 &op->n_chunks);
465 }
466 else if (ipsec_sa_is_set_USE_ESN (sa0))
467 {
Neale Ranns5b891102021-06-28 13:31:28 +0000468 u32 tmp = clib_net_to_host_u32 (seq_hi);
469 clib_memcpy_fast (op->digest, &tmp, sizeof (seq_hi));
Fan Zhangf5395782020-04-29 14:00:03 +0100470 op->len += sizeof (seq_hi);
471 }
472 }
473}
474
Neale Rannsfc811342021-02-26 10:35:33 +0000475static_always_inline void
476esp_prepare_async_frame (vlib_main_t *vm, ipsec_per_thread_data_t *ptd,
477 vnet_crypto_async_frame_t *async_frame,
478 ipsec_sa_t *sa, vlib_buffer_t *b, esp_header_t *esp,
479 u8 *payload, u32 payload_len, u8 iv_sz, u8 icv_sz,
480 u32 bi, u16 next, u32 hdr_len, u16 async_next,
481 vlib_buffer_t *lb)
Fan Zhangf5395782020-04-29 14:00:03 +0100482{
483 esp_post_data_t *post = esp_post_data (b);
484 u8 *tag, *iv, *aad = 0;
485 u8 flag = 0;
486 u32 key_index;
487 i16 crypto_start_offset, integ_start_offset = 0;
488 u16 crypto_total_len, integ_total_len;
489
Fan Zhang18f0e312020-10-19 13:08:34 +0100490 post->next_index = next;
Fan Zhangf5395782020-04-29 14:00:03 +0100491
492 /* crypto */
493 crypto_start_offset = payload - b->data;
494 crypto_total_len = integ_total_len = payload_len - icv_sz;
495 tag = payload + crypto_total_len;
496
Fan Zhangf5395782020-04-29 14:00:03 +0100497 key_index = sa->linked_key_index;
498
Benoît Ganne490b9272021-01-22 18:03:09 +0100499 if (ipsec_sa_is_set_IS_CTR (sa))
Fan Zhangf5395782020-04-29 14:00:03 +0100500 {
Benoît Ganne490b9272021-01-22 18:03:09 +0100501 ASSERT (sizeof (u64) == iv_sz);
502 /* construct nonce in a scratch space in front of the IP header */
503 esp_ctr_nonce_t *nonce = (esp_ctr_nonce_t *) (payload - sizeof (u64) -
504 hdr_len - sizeof (*nonce));
505 u64 *pkt_iv = (u64 *) (payload - sizeof (u64));
506
507 if (ipsec_sa_is_set_IS_AEAD (sa))
508 {
509 /* constuct aad in a scratch space in front of the nonce */
510 aad = (u8 *) nonce - sizeof (esp_aead_t);
Neale Ranns5b891102021-06-28 13:31:28 +0000511 esp_aad_fill (aad, esp, sa, sa->seq_hi);
Benoît Ganne490b9272021-01-22 18:03:09 +0100512 key_index = sa->crypto_key_index;
513 }
514 else
515 {
516 nonce->ctr = clib_host_to_net_u32 (1);
517 }
518
519 nonce->salt = sa->salt;
520 nonce->iv = *pkt_iv = clib_host_to_net_u64 (sa->ctr_iv_counter++);
521 iv = (u8 *) nonce;
Fan Zhangf5395782020-04-29 14:00:03 +0100522 }
Benoît Ganne490b9272021-01-22 18:03:09 +0100523 else
Fan Zhangf5395782020-04-29 14:00:03 +0100524 {
Benoît Ganne490b9272021-01-22 18:03:09 +0100525 iv = payload - iv_sz;
526 flag |= VNET_CRYPTO_OP_FLAG_INIT_IV;
Fan Zhangf5395782020-04-29 14:00:03 +0100527 }
528
Benoît Ganne490b9272021-01-22 18:03:09 +0100529 if (lb != b)
530 {
531 /* chain */
532 flag |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS;
533 tag = vlib_buffer_get_tail (lb) - icv_sz;
534 crypto_total_len = esp_encrypt_chain_crypto (vm, ptd, sa, b, lb, icv_sz,
535 payload, payload_len, 0);
536 }
537
538 if (sa->integ_op_id)
539 {
540 integ_start_offset = crypto_start_offset - iv_sz - sizeof (esp_header_t);
541 integ_total_len += iv_sz + sizeof (esp_header_t);
542
543 if (b != lb)
544 {
545 integ_total_len = esp_encrypt_chain_integ (
546 vm, ptd, sa, b, lb, icv_sz,
547 payload - iv_sz - sizeof (esp_header_t),
548 payload_len + iv_sz + sizeof (esp_header_t), tag, 0);
549 }
550 else if (ipsec_sa_is_set_USE_ESN (sa))
551 {
552 u32 seq_hi = clib_net_to_host_u32 (sa->seq_hi);
553 clib_memcpy_fast (tag, &seq_hi, sizeof (seq_hi));
554 integ_total_len += sizeof (seq_hi);
555 }
556 }
557
Neale Rannsfc811342021-02-26 10:35:33 +0000558 /* this always succeeds because we know the frame is not full */
559 vnet_crypto_async_add_to_frame (vm, async_frame, key_index, crypto_total_len,
560 integ_total_len - crypto_total_len,
561 crypto_start_offset, integ_start_offset, bi,
562 async_next, iv, tag, aad, flag);
Fan Zhangf5395782020-04-29 14:00:03 +0100563}
564
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200565always_inline uword
Neale Ranns4a58e492020-12-21 13:19:10 +0000566esp_encrypt_inline (vlib_main_t *vm, vlib_node_runtime_t *node,
567 vlib_frame_t *frame, vnet_link_t lt, int is_tun,
Neale Rannsf16e9a52021-02-25 19:09:24 +0000568 u16 async_next_node)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700569{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570 ipsec_main_t *im = &ipsec_main;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100571 ipsec_per_thread_data_t *ptd = vec_elt_at_index (im->ptd, vm->thread_index);
572 u32 *from = vlib_frame_vector_args (frame);
573 u32 n_left = frame->n_vectors;
574 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100575 u32 thread_index = vm->thread_index;
576 u16 buffer_data_size = vlib_buffer_get_default_data_size (vm);
577 u32 current_sa_index = ~0, current_sa_packets = 0;
578 u32 current_sa_bytes = 0, spi = 0;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500579 u8 esp_align = 4, iv_sz = 0, icv_sz = 0;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100580 ipsec_sa_t *sa0 = 0;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000581 vlib_buffer_t *lb;
582 vnet_crypto_op_t **crypto_ops = &ptd->crypto_ops;
583 vnet_crypto_op_t **integ_ops = &ptd->integ_ops;
Neale Rannsfc811342021-02-26 10:35:33 +0000584 vnet_crypto_async_frame_t *async_frames[VNET_CRYPTO_ASYNC_OP_N_IDS];
Fan Zhangf5395782020-04-29 14:00:03 +0100585 int is_async = im->async_mode;
Neale Rannsfc811342021-02-26 10:35:33 +0000586 vnet_crypto_async_op_id_t async_op = ~0;
Neale Ranns4a58e492020-12-21 13:19:10 +0000587 u16 drop_next =
588 (lt == VNET_LINK_IP6 ? ESP_ENCRYPT_NEXT_DROP6 :
589 (lt == VNET_LINK_IP4 ? ESP_ENCRYPT_NEXT_DROP4 :
590 ESP_ENCRYPT_NEXT_DROP_MPLS));
591 u16 handoff_next = (lt == VNET_LINK_IP6 ?
592 ESP_ENCRYPT_NEXT_HANDOFF6 :
593 (lt == VNET_LINK_IP4 ? ESP_ENCRYPT_NEXT_HANDOFF4 :
594 ESP_ENCRYPT_NEXT_HANDOFF_MPLS));
Neale Rannsf16e9a52021-02-25 19:09:24 +0000595 vlib_buffer_t *sync_bufs[VLIB_FRAME_SIZE];
596 u16 sync_nexts[VLIB_FRAME_SIZE], *sync_next = sync_nexts, n_sync = 0;
597 u16 async_nexts[VLIB_FRAME_SIZE], *async_next = async_nexts, n_async = 0;
598 u16 noop_nexts[VLIB_FRAME_SIZE], *noop_next = noop_nexts, n_noop = 0;
599 u32 sync_bi[VLIB_FRAME_SIZE];
600 u32 noop_bi[VLIB_FRAME_SIZE];
601 esp_encrypt_error_t err;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700602
Damjan Marionc59b9a22019-03-19 15:38:40 +0100603 vlib_get_buffers (vm, from, b, n_left);
Neale Rannsf16e9a52021-02-25 19:09:24 +0000604
605 vec_reset_length (ptd->crypto_ops);
606 vec_reset_length (ptd->integ_ops);
607 vec_reset_length (ptd->chained_crypto_ops);
608 vec_reset_length (ptd->chained_integ_ops);
Neale Rannsfc811342021-02-26 10:35:33 +0000609 vec_reset_length (ptd->async_frames);
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000610 vec_reset_length (ptd->chunks);
Neale Rannsfc811342021-02-26 10:35:33 +0000611 clib_memset (async_frames, 0, sizeof (async_frames));
Damjan Marionc59b9a22019-03-19 15:38:40 +0100612
613 while (n_left > 0)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700614 {
Zhiyong Yang1cff6432019-04-30 05:33:53 -0400615 u32 sa_index0;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100616 dpo_id_t *dpo;
617 esp_header_t *esp;
618 u8 *payload, *next_hdr_ptr;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000619 u16 payload_len, payload_len_total, n_bufs;
Neale Ranns4ec36c52020-03-31 09:21:29 -0400620 u32 hdr_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700621
Neale Rannsf16e9a52021-02-25 19:09:24 +0000622 err = ESP_ENCRYPT_ERROR_RX_PKTS;
623
Damjan Marionc59b9a22019-03-19 15:38:40 +0100624 if (n_left > 2)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700625 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100626 u8 *p;
627 vlib_prefetch_buffer_header (b[2], LOAD);
628 p = vlib_buffer_get_current (b[1]);
Damjan Marionaf7fb042021-07-15 11:54:41 +0200629 clib_prefetch_load (p);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100630 p -= CLIB_CACHE_LINE_BYTES;
Damjan Marionaf7fb042021-07-15 11:54:41 +0200631 clib_prefetch_load (p);
Neale Ranns123b5eb2020-10-16 14:03:55 +0000632 /* speculate that the trailer goes in the first buffer */
633 CLIB_PREFETCH (vlib_buffer_get_tail (b[1]),
634 CLIB_CACHE_LINE_BYTES, LOAD);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700635 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700636
Neale Ranns25edf142019-03-22 08:12:48 +0000637 if (is_tun)
638 {
639 /* we are on a ipsec tunnel's feature arc */
Neale Ranns28287212019-12-16 00:53:11 +0000640 vnet_buffer (b[0])->ipsec.sad_index =
641 sa_index0 = ipsec_tun_protect_get_sa_out
642 (vnet_buffer (b[0])->ip.adj_index[VLIB_TX]);
Neale Ranns25edf142019-03-22 08:12:48 +0000643 }
644 else
645 sa_index0 = vnet_buffer (b[0])->ipsec.sad_index;
646
647 if (sa_index0 != current_sa_index)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100648 {
Damjan Marion21f265f2019-06-05 15:45:50 +0200649 if (current_sa_packets)
650 vlib_increment_combined_counter (&ipsec_sa_counters, thread_index,
651 current_sa_index,
652 current_sa_packets,
653 current_sa_bytes);
654 current_sa_packets = current_sa_bytes = 0;
655
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000656 sa0 = ipsec_sa_get (sa_index0);
Neale Ranns123b5eb2020-10-16 14:03:55 +0000657
658 /* fetch the second cacheline ASAP */
Damjan Marionaf7fb042021-07-15 11:54:41 +0200659 clib_prefetch_load (sa0->cacheline1);
Neale Ranns123b5eb2020-10-16 14:03:55 +0000660
Damjan Marionc59b9a22019-03-19 15:38:40 +0100661 current_sa_index = sa_index0;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100662 spi = clib_net_to_host_u32 (sa0->spi);
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500663 esp_align = sa0->esp_block_align;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200664 icv_sz = sa0->integ_icv_size;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100665 iv_sz = sa0->crypto_iv_size;
Neale Rannsf16e9a52021-02-25 19:09:24 +0000666 is_async = im->async_mode | ipsec_sa_is_set_IS_ASYNC (sa0);
Neale Rannsfc811342021-02-26 10:35:33 +0000667 }
Fan Zhangf5395782020-04-29 14:00:03 +0100668
Neale Ranns1a52d372021-02-04 11:33:32 +0000669 if (PREDICT_FALSE (~0 == sa0->thread_index))
Neale Rannsf62a8c02019-04-02 08:13:33 +0000670 {
671 /* this is the first packet to use this SA, claim the SA
672 * for this thread. this could happen simultaneously on
673 * another thread */
Neale Ranns1a52d372021-02-04 11:33:32 +0000674 clib_atomic_cmp_and_swap (&sa0->thread_index, ~0,
Neale Rannsf62a8c02019-04-02 08:13:33 +0000675 ipsec_sa_assign_thread (thread_index));
676 }
677
Neale Ranns1a52d372021-02-04 11:33:32 +0000678 if (PREDICT_FALSE (thread_index != sa0->thread_index))
Neale Rannsf62a8c02019-04-02 08:13:33 +0000679 {
Neale Rannsaa7d7662021-02-10 08:42:49 +0000680 vnet_buffer (b[0])->ipsec.thread_index = sa0->thread_index;
Neale Rannsf16e9a52021-02-25 19:09:24 +0000681 err = ESP_ENCRYPT_ERROR_HANDOFF;
682 esp_set_next_index (b[0], node, err, n_noop, noop_nexts,
683 handoff_next);
Neale Rannsf62a8c02019-04-02 08:13:33 +0000684 goto trace;
685 }
686
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000687 lb = b[0];
688 n_bufs = vlib_buffer_chain_linearize (vm, b[0]);
689 if (n_bufs == 0)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100690 {
Neale Rannsf16e9a52021-02-25 19:09:24 +0000691 err = ESP_ENCRYPT_ERROR_NO_BUFFERS;
692 esp_set_next_index (b[0], node, err, n_noop, noop_nexts, drop_next);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100693 goto trace;
694 }
695
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000696 if (n_bufs > 1)
697 {
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000698 /* find last buffer in the chain */
699 while (lb->flags & VLIB_BUFFER_NEXT_PRESENT)
700 lb = vlib_get_buffer (vm, lb->next_buffer);
701 }
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000702
Damjan Marionc59b9a22019-03-19 15:38:40 +0100703 if (PREDICT_FALSE (esp_seq_advance (sa0)))
704 {
Neale Rannsf16e9a52021-02-25 19:09:24 +0000705 err = ESP_ENCRYPT_ERROR_SEQ_CYCLED;
706 esp_set_next_index (b[0], node, err, n_noop, noop_nexts, drop_next);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100707 goto trace;
708 }
709
710 /* space for IV */
711 hdr_len = iv_sz;
712
Damjan Mariond709cbc2019-03-26 13:16:42 +0100713 if (ipsec_sa_is_set_IS_TUNNEL (sa0))
Damjan Marionc59b9a22019-03-19 15:38:40 +0100714 {
715 payload = vlib_buffer_get_current (b[0]);
Neale Rannsf16e9a52021-02-25 19:09:24 +0000716 next_hdr_ptr = esp_add_footer_and_icv (
717 vm, &lb, esp_align, icv_sz, node, buffer_data_size,
718 vlib_buffer_length_in_chain (vm, b[0]));
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000719 if (!next_hdr_ptr)
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000720 {
Neale Rannsf16e9a52021-02-25 19:09:24 +0000721 err = ESP_ENCRYPT_ERROR_NO_BUFFERS;
722 esp_set_next_index (b[0], node, err, n_noop, noop_nexts,
723 drop_next);
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000724 goto trace;
725 }
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000726 b[0]->flags &= ~VLIB_BUFFER_TOTAL_LENGTH_VALID;
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000727 payload_len = b[0]->current_length;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000728 payload_len_total = vlib_buffer_length_in_chain (vm, b[0]);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100729
730 /* ESP header */
731 hdr_len += sizeof (*esp);
732 esp = (esp_header_t *) (payload - hdr_len);
733
734 /* optional UDP header */
Damjan Mariond709cbc2019-03-26 13:16:42 +0100735 if (ipsec_sa_is_set_UDP_ENCAP (sa0))
Damjan Marionc98275f2019-03-06 14:05:01 +0100736 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100737 hdr_len += sizeof (udp_header_t);
738 esp_fill_udp_hdr (sa0, (udp_header_t *) (payload - hdr_len),
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000739 payload_len_total + hdr_len);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100740 }
741
742 /* IP header */
Damjan Mariond709cbc2019-03-26 13:16:42 +0100743 if (ipsec_sa_is_set_IS_TUNNEL_V6 (sa0))
Damjan Marionc59b9a22019-03-19 15:38:40 +0100744 {
745 ip6_header_t *ip6;
746 u16 len = sizeof (ip6_header_t);
747 hdr_len += len;
748 ip6 = (ip6_header_t *) (payload - hdr_len);
Neale Ranns041add72020-01-02 04:06:10 +0000749 clib_memcpy_fast (ip6, &sa0->ip6_hdr, sizeof (ip6_header_t));
750
Neale Ranns4a58e492020-12-21 13:19:10 +0000751 if (VNET_LINK_IP6 == lt)
Neale Ranns041add72020-01-02 04:06:10 +0000752 {
753 *next_hdr_ptr = IP_PROTOCOL_IPV6;
754 tunnel_encap_fixup_6o6 (sa0->tunnel_flags,
755 (const ip6_header_t *) payload,
756 ip6);
757 }
Neale Ranns4a58e492020-12-21 13:19:10 +0000758 else if (VNET_LINK_IP4 == lt)
Neale Ranns041add72020-01-02 04:06:10 +0000759 {
760 *next_hdr_ptr = IP_PROTOCOL_IP_IN_IP;
Neale Rannsa91cb452021-02-04 11:02:52 +0000761 tunnel_encap_fixup_4o6 (sa0->tunnel_flags, b[0],
762 (const ip4_header_t *) payload, ip6);
Neale Ranns041add72020-01-02 04:06:10 +0000763 }
Neale Ranns4a58e492020-12-21 13:19:10 +0000764 else if (VNET_LINK_MPLS == lt)
765 {
766 *next_hdr_ptr = IP_PROTOCOL_MPLS_IN_IP;
767 tunnel_encap_fixup_mplso6 (
Neale Rannsa91cb452021-02-04 11:02:52 +0000768 sa0->tunnel_flags, b[0],
769 (const mpls_unicast_header_t *) payload, ip6);
Neale Ranns4a58e492020-12-21 13:19:10 +0000770 }
771 else
772 ASSERT (0);
773
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000774 len = payload_len_total + hdr_len - len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100775 ip6->payload_length = clib_net_to_host_u16 (len);
Neale Ranns45d6d832021-01-19 13:38:47 +0000776 b[0]->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Damjan Marionc98275f2019-03-06 14:05:01 +0100777 }
778 else
779 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100780 ip4_header_t *ip4;
781 u16 len = sizeof (ip4_header_t);
782 hdr_len += len;
783 ip4 = (ip4_header_t *) (payload - hdr_len);
Neale Ranns041add72020-01-02 04:06:10 +0000784 clib_memcpy_fast (ip4, &sa0->ip4_hdr, sizeof (ip4_header_t));
785
Neale Ranns4a58e492020-12-21 13:19:10 +0000786 if (VNET_LINK_IP6 == lt)
Neale Ranns041add72020-01-02 04:06:10 +0000787 {
788 *next_hdr_ptr = IP_PROTOCOL_IPV6;
789 tunnel_encap_fixup_6o4_w_chksum (sa0->tunnel_flags,
790 (const ip6_header_t *)
791 payload, ip4);
792 }
Neale Ranns4a58e492020-12-21 13:19:10 +0000793 else if (VNET_LINK_IP4 == lt)
Neale Ranns041add72020-01-02 04:06:10 +0000794 {
795 *next_hdr_ptr = IP_PROTOCOL_IP_IN_IP;
796 tunnel_encap_fixup_4o4_w_chksum (sa0->tunnel_flags,
797 (const ip4_header_t *)
798 payload, ip4);
799 }
Neale Ranns4a58e492020-12-21 13:19:10 +0000800 else if (VNET_LINK_MPLS == lt)
801 {
802 *next_hdr_ptr = IP_PROTOCOL_MPLS_IN_IP;
803 tunnel_encap_fixup_mplso4_w_chksum (
804 sa0->tunnel_flags, (const mpls_unicast_header_t *) payload,
805 ip4);
806 }
807 else
808 ASSERT (0);
809
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000810 len = payload_len_total + hdr_len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100811 esp_update_ip4_hdr (ip4, len, /* is_transport */ 0, 0);
Damjan Marionc98275f2019-03-06 14:05:01 +0100812 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100813
Neale Ranns72f2a3a2019-06-17 15:43:38 +0000814 dpo = &sa0->dpo;
Neale Ranns25edf142019-03-22 08:12:48 +0000815 if (!is_tun)
816 {
Neale Rannsf16e9a52021-02-25 19:09:24 +0000817 sync_next[0] = dpo->dpoi_next_node;
Neale Ranns25edf142019-03-22 08:12:48 +0000818 vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = dpo->dpoi_index;
819 }
Neale Ranns4ec36c52020-03-31 09:21:29 -0400820 else
Neale Rannsf16e9a52021-02-25 19:09:24 +0000821 sync_next[0] = ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT;
Neale Ranns9ec846c2021-02-09 14:04:02 +0000822 b[0]->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Damjan Marionc98275f2019-03-06 14:05:01 +0100823 }
Damjan Marionc59b9a22019-03-19 15:38:40 +0100824 else /* transport mode */
Damjan Marionc98275f2019-03-06 14:05:01 +0100825 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100826 u8 *l2_hdr, l2_len, *ip_hdr, ip_len;
Neale Ranns02950402019-12-20 00:54:57 +0000827 ip6_ext_header_t *ext_hdr;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100828 udp_header_t *udp = 0;
Alexander Chernavinb0d2eda2020-03-25 10:56:52 -0400829 u16 udp_len = 0;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100830 u8 *old_ip_hdr = vlib_buffer_get_current (b[0]);
Damjan Marionc98275f2019-03-06 14:05:01 +0100831
Neale Ranns4a58e492020-12-21 13:19:10 +0000832 ip_len =
833 (VNET_LINK_IP6 == lt ?
834 esp_get_ip6_hdr_len ((ip6_header_t *) old_ip_hdr, &ext_hdr) :
835 ip4_header_bytes ((ip4_header_t *) old_ip_hdr));
Damjan Marionc98275f2019-03-06 14:05:01 +0100836
Damjan Marionc59b9a22019-03-19 15:38:40 +0100837 vlib_buffer_advance (b[0], ip_len);
838 payload = vlib_buffer_get_current (b[0]);
Neale Rannsf16e9a52021-02-25 19:09:24 +0000839 next_hdr_ptr = esp_add_footer_and_icv (
840 vm, &lb, esp_align, icv_sz, node, buffer_data_size,
841 vlib_buffer_length_in_chain (vm, b[0]));
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000842 if (!next_hdr_ptr)
Fan Zhang18f0e312020-10-19 13:08:34 +0100843 {
Neale Rannsf16e9a52021-02-25 19:09:24 +0000844 err = ESP_ENCRYPT_ERROR_NO_BUFFERS;
845 esp_set_next_index (b[0], node, err, n_noop, noop_nexts,
846 drop_next);
Fan Zhang18f0e312020-10-19 13:08:34 +0100847 goto trace;
848 }
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000849
850 b[0]->flags &= ~VLIB_BUFFER_TOTAL_LENGTH_VALID;
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000851 payload_len = b[0]->current_length;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000852 payload_len_total = vlib_buffer_length_in_chain (vm, b[0]);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100853
854 /* ESP header */
855 hdr_len += sizeof (*esp);
856 esp = (esp_header_t *) (payload - hdr_len);
857
858 /* optional UDP header */
Damjan Mariond709cbc2019-03-26 13:16:42 +0100859 if (ipsec_sa_is_set_UDP_ENCAP (sa0))
Damjan Marionc98275f2019-03-06 14:05:01 +0100860 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100861 hdr_len += sizeof (udp_header_t);
862 udp = (udp_header_t *) (payload - hdr_len);
Damjan Marionc98275f2019-03-06 14:05:01 +0100863 }
864
Damjan Marionc59b9a22019-03-19 15:38:40 +0100865 /* IP header */
866 hdr_len += ip_len;
867 ip_hdr = payload - hdr_len;
868
869 /* L2 header */
Neale Rannsc87b66c2019-02-07 07:26:12 -0800870 if (!is_tun)
871 {
872 l2_len = vnet_buffer (b[0])->ip.save_rewrite_length;
873 hdr_len += l2_len;
874 l2_hdr = payload - hdr_len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100875
Neale Rannsc87b66c2019-02-07 07:26:12 -0800876 /* copy l2 and ip header */
877 clib_memcpy_le32 (l2_hdr, old_ip_hdr - l2_len, l2_len);
878 }
879 else
880 l2_len = 0;
881
Neale Ranns4a58e492020-12-21 13:19:10 +0000882 if (VNET_LINK_IP6 == lt)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100883 {
Neale Ranns02950402019-12-20 00:54:57 +0000884 ip6_header_t *ip6 = (ip6_header_t *) (old_ip_hdr);
885 if (PREDICT_TRUE (NULL == ext_hdr))
886 {
887 *next_hdr_ptr = ip6->protocol;
888 ip6->protocol = IP_PROTOCOL_IPSEC_ESP;
889 }
890 else
891 {
892 *next_hdr_ptr = ext_hdr->next_hdr;
893 ext_hdr->next_hdr = IP_PROTOCOL_IPSEC_ESP;
894 }
Neale Rannsd207fd72019-04-18 17:18:12 -0700895 ip6->payload_length =
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000896 clib_host_to_net_u16 (payload_len_total + hdr_len - l2_len -
Neale Ranns02950402019-12-20 00:54:57 +0000897 sizeof (ip6_header_t));
Damjan Marionc59b9a22019-03-19 15:38:40 +0100898 }
Neale Ranns4a58e492020-12-21 13:19:10 +0000899 else if (VNET_LINK_IP4 == lt)
Damjan Marionc98275f2019-03-06 14:05:01 +0100900 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100901 u16 len;
Neale Ranns02950402019-12-20 00:54:57 +0000902 ip4_header_t *ip4 = (ip4_header_t *) (old_ip_hdr);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100903 *next_hdr_ptr = ip4->protocol;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000904 len = payload_len_total + hdr_len - l2_len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100905 if (udp)
906 {
907 esp_update_ip4_hdr (ip4, len, /* is_transport */ 1, 1);
Alexander Chernavinb0d2eda2020-03-25 10:56:52 -0400908 udp_len = len - ip_len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100909 }
910 else
911 esp_update_ip4_hdr (ip4, len, /* is_transport */ 1, 0);
Damjan Marionc98275f2019-03-06 14:05:01 +0100912 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100913
Neale Ranns02950402019-12-20 00:54:57 +0000914 clib_memcpy_le64 (ip_hdr, old_ip_hdr, ip_len);
915
Alexander Chernavinb0d2eda2020-03-25 10:56:52 -0400916 if (udp)
917 {
918 esp_fill_udp_hdr (sa0, udp, udp_len);
919 }
920
Neale Rannsf16e9a52021-02-25 19:09:24 +0000921 sync_next[0] = ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT;
Damjan Marionc98275f2019-03-06 14:05:01 +0100922 }
923
PiotrX Kleskifdca4dd2020-05-05 14:14:22 +0200924 if (lb != b[0])
925 {
926 crypto_ops = &ptd->chained_crypto_ops;
927 integ_ops = &ptd->chained_integ_ops;
928 }
929 else
930 {
931 crypto_ops = &ptd->crypto_ops;
932 integ_ops = &ptd->integ_ops;
933 }
934
Damjan Marionc59b9a22019-03-19 15:38:40 +0100935 esp->spi = spi;
936 esp->seq = clib_net_to_host_u32 (sa0->seq);
Damjan Marionc98275f2019-03-06 14:05:01 +0100937
Fan Zhangf5395782020-04-29 14:00:03 +0100938 if (is_async)
Matthew Smith51d56ba2021-06-04 09:18:37 -0500939 {
940 async_op = sa0->crypto_async_enc_op_id;
941
942 /* get a frame for this op if we don't yet have one or it's full
943 */
944 if (NULL == async_frames[async_op] ||
945 vnet_crypto_async_frame_is_full (async_frames[async_op]))
946 {
947 async_frames[async_op] =
948 vnet_crypto_async_get_frame (vm, async_op);
949 /* Save the frame to the list we'll submit at the end */
950 vec_add1 (ptd->async_frames, async_frames[async_op]);
951 }
952
953 esp_prepare_async_frame (vm, ptd, async_frames[async_op], sa0, b[0],
954 esp, payload, payload_len, iv_sz, icv_sz,
955 from[b - bufs], sync_next[0], hdr_len,
956 async_next_node, lb);
957 }
Fan Zhangf5395782020-04-29 14:00:03 +0100958 else
Neale Ranns5b891102021-06-28 13:31:28 +0000959 esp_prepare_sync_op (vm, ptd, crypto_ops, integ_ops, sa0, sa0->seq_hi,
960 payload, payload_len, iv_sz, icv_sz, n_sync, b,
961 lb, hdr_len, esp);
Damjan Marionc98275f2019-03-06 14:05:01 +0100962
Damjan Marionc59b9a22019-03-19 15:38:40 +0100963 vlib_buffer_advance (b[0], 0LL - hdr_len);
Damjan Marionc98275f2019-03-06 14:05:01 +0100964
Damjan Marionc59b9a22019-03-19 15:38:40 +0100965 current_sa_packets += 1;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000966 current_sa_bytes += payload_len_total;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100967
968 trace:
969 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
Damjan Marionc98275f2019-03-06 14:05:01 +0100970 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100971 esp_encrypt_trace_t *tr = vlib_add_trace (vm, node, b[0],
972 sizeof (*tr));
973 tr->sa_index = sa_index0;
974 tr->spi = sa0->spi;
Neale Ranns6afaae12019-07-17 15:07:14 +0000975 tr->seq = sa0->seq;
976 tr->sa_seq_hi = sa0->seq_hi;
Damjan Mariond709cbc2019-03-26 13:16:42 +0100977 tr->udp_encap = ipsec_sa_is_set_UDP_ENCAP (sa0);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100978 tr->crypto_alg = sa0->crypto_alg;
979 tr->integ_alg = sa0->integ_alg;
Damjan Marionc98275f2019-03-06 14:05:01 +0100980 }
Neale Rannsf16e9a52021-02-25 19:09:24 +0000981
Damjan Marionc98275f2019-03-06 14:05:01 +0100982 /* next */
Neale Rannsf16e9a52021-02-25 19:09:24 +0000983 if (ESP_ENCRYPT_ERROR_RX_PKTS != err)
984 {
985 noop_bi[n_noop] = from[b - bufs];
986 n_noop++;
987 noop_next++;
988 }
989 else if (!is_async)
990 {
991 sync_bi[n_sync] = from[b - bufs];
992 sync_bufs[n_sync] = b[0];
993 n_sync++;
994 sync_next++;
995 }
996 else
997 {
998 n_async++;
999 async_next++;
1000 }
Damjan Marionc59b9a22019-03-19 15:38:40 +01001001 n_left -= 1;
Damjan Marionc59b9a22019-03-19 15:38:40 +01001002 b += 1;
Damjan Marionc98275f2019-03-06 14:05:01 +01001003 }
1004
Damjan Marionc59b9a22019-03-19 15:38:40 +01001005 vlib_increment_combined_counter (&ipsec_sa_counters, thread_index,
1006 current_sa_index, current_sa_packets,
1007 current_sa_bytes);
Neale Rannsf16e9a52021-02-25 19:09:24 +00001008 if (n_sync)
Fan Zhangf5395782020-04-29 14:00:03 +01001009 {
Neale Rannsf16e9a52021-02-25 19:09:24 +00001010 esp_process_ops (vm, node, ptd->crypto_ops, sync_bufs, sync_nexts,
1011 drop_next);
1012 esp_process_chained_ops (vm, node, ptd->chained_crypto_ops, sync_bufs,
1013 sync_nexts, ptd->chunks, drop_next);
Filip Tehlarefcad1a2020-02-04 09:36:04 +00001014
Neale Rannsf16e9a52021-02-25 19:09:24 +00001015 esp_process_ops (vm, node, ptd->integ_ops, sync_bufs, sync_nexts,
1016 drop_next);
1017 esp_process_chained_ops (vm, node, ptd->chained_integ_ops, sync_bufs,
1018 sync_nexts, ptd->chunks, drop_next);
Neale Rannsfc811342021-02-26 10:35:33 +00001019
Neale Rannsf16e9a52021-02-25 19:09:24 +00001020 vlib_buffer_enqueue_to_next (vm, node, sync_bi, sync_nexts, n_sync);
Fan Zhangf5395782020-04-29 14:00:03 +01001021 }
Neale Rannsf16e9a52021-02-25 19:09:24 +00001022 if (n_async)
Fan Zhangf5395782020-04-29 14:00:03 +01001023 {
Neale Rannsfc811342021-02-26 10:35:33 +00001024 /* submit all of the open frames */
1025 vnet_crypto_async_frame_t **async_frame;
1026
1027 vec_foreach (async_frame, ptd->async_frames)
Fan Zhang18f0e312020-10-19 13:08:34 +01001028 {
Neale Rannsfc811342021-02-26 10:35:33 +00001029 if (vnet_crypto_async_submit_open_frame (vm, *async_frame) < 0)
1030 {
Neale Rannsf16e9a52021-02-25 19:09:24 +00001031 n_noop += esp_async_recycle_failed_submit (
1032 vm, *async_frame, node, ESP_ENCRYPT_ERROR_CRYPTO_ENGINE_ERROR,
1033 n_sync, noop_bi, noop_nexts, drop_next);
Neale Rannsfc811342021-02-26 10:35:33 +00001034 vnet_crypto_async_reset_frame (*async_frame);
1035 vnet_crypto_async_free_frame (vm, *async_frame);
1036 }
Fan Zhang18f0e312020-10-19 13:08:34 +01001037 }
Fan Zhangf5395782020-04-29 14:00:03 +01001038 }
Neale Rannsf16e9a52021-02-25 19:09:24 +00001039 if (n_noop)
1040 vlib_buffer_enqueue_to_next (vm, node, noop_bi, noop_nexts, n_noop);
1041
1042 vlib_node_increment_counter (vm, node->node_index, ESP_ENCRYPT_ERROR_RX_PKTS,
1043 frame->n_vectors);
Damjan Marionc59b9a22019-03-19 15:38:40 +01001044
Damjan Marionc59b9a22019-03-19 15:38:40 +01001045 return frame->n_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001046}
1047
Fan Zhangf5395782020-04-29 14:00:03 +01001048always_inline uword
1049esp_encrypt_post_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1050 vlib_frame_t * frame)
1051{
1052 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
1053 u16 nexts[VLIB_FRAME_SIZE], *next = nexts;
1054 u32 *from = vlib_frame_vector_args (frame);
1055 u32 n_left = frame->n_vectors;
1056
1057 vlib_get_buffers (vm, from, b, n_left);
1058
1059 if (n_left >= 4)
1060 {
1061 vlib_prefetch_buffer_header (b[0], LOAD);
1062 vlib_prefetch_buffer_header (b[1], LOAD);
1063 vlib_prefetch_buffer_header (b[2], LOAD);
1064 vlib_prefetch_buffer_header (b[3], LOAD);
1065 }
1066
1067 while (n_left > 8)
1068 {
1069 vlib_prefetch_buffer_header (b[4], LOAD);
1070 vlib_prefetch_buffer_header (b[5], LOAD);
1071 vlib_prefetch_buffer_header (b[6], LOAD);
1072 vlib_prefetch_buffer_header (b[7], LOAD);
1073
1074 next[0] = (esp_post_data (b[0]))->next_index;
1075 next[1] = (esp_post_data (b[1]))->next_index;
1076 next[2] = (esp_post_data (b[2]))->next_index;
1077 next[3] = (esp_post_data (b[3]))->next_index;
1078
1079 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
1080 {
1081 if (b[0]->flags & VLIB_BUFFER_IS_TRACED)
1082 {
1083 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[0],
1084 sizeof (*tr));
1085 tr->next_index = next[0];
1086 }
1087 if (b[1]->flags & VLIB_BUFFER_IS_TRACED)
1088 {
1089 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[1],
1090 sizeof (*tr));
1091 tr->next_index = next[1];
1092 }
1093 if (b[2]->flags & VLIB_BUFFER_IS_TRACED)
1094 {
1095 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[2],
1096 sizeof (*tr));
1097 tr->next_index = next[2];
1098 }
1099 if (b[3]->flags & VLIB_BUFFER_IS_TRACED)
1100 {
1101 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[3],
1102 sizeof (*tr));
1103 tr->next_index = next[3];
1104 }
1105 }
1106
1107 b += 4;
1108 next += 4;
1109 n_left -= 4;
1110 }
1111
1112 while (n_left > 0)
1113 {
1114 next[0] = (esp_post_data (b[0]))->next_index;
1115 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
1116 {
1117 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[0],
1118 sizeof (*tr));
1119 tr->next_index = next[0];
1120 }
1121
1122 b += 1;
1123 next += 1;
1124 n_left -= 1;
1125 }
1126
1127 vlib_node_increment_counter (vm, node->node_index,
1128 ESP_ENCRYPT_ERROR_POST_RX_PKTS,
1129 frame->n_vectors);
1130 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
1131 return frame->n_vectors;
1132}
1133
Klement Sekerab8f35442018-10-29 13:38:19 +01001134VLIB_NODE_FN (esp4_encrypt_node) (vlib_main_t * vm,
1135 vlib_node_runtime_t * node,
1136 vlib_frame_t * from_frame)
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001137{
Neale Ranns4a58e492020-12-21 13:19:10 +00001138 return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_IP4, 0,
Fan Zhangf5395782020-04-29 14:00:03 +01001139 esp_encrypt_async_next.esp4_post_next);
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001140}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001141
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -07001142/* *INDENT-OFF* */
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001143VLIB_REGISTER_NODE (esp4_encrypt_node) = {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001144 .name = "esp4-encrypt",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001145 .vector_size = sizeof (u32),
1146 .format_trace = format_esp_encrypt_trace,
1147 .type = VLIB_NODE_TYPE_INTERNAL,
1148
Neale Ranns4a58e492020-12-21 13:19:10 +00001149 .n_errors = ARRAY_LEN (esp_encrypt_error_strings),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001150 .error_strings = esp_encrypt_error_strings,
1151
1152 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
Neale Ranns4a58e492020-12-21 13:19:10 +00001153 .next_nodes = { [ESP_ENCRYPT_NEXT_DROP4] = "ip4-drop",
1154 [ESP_ENCRYPT_NEXT_DROP6] = "ip6-drop",
1155 [ESP_ENCRYPT_NEXT_DROP_MPLS] = "mpls-drop",
1156 [ESP_ENCRYPT_NEXT_HANDOFF4] = "esp4-encrypt-handoff",
1157 [ESP_ENCRYPT_NEXT_HANDOFF6] = "esp6-encrypt-handoff",
1158 [ESP_ENCRYPT_NEXT_HANDOFF_MPLS] = "error-drop",
1159 [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "interface-output" },
Ed Warnickecb9cada2015-12-08 15:45:58 -07001160};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -07001161/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001162
Fan Zhangf5395782020-04-29 14:00:03 +01001163VLIB_NODE_FN (esp4_encrypt_post_node) (vlib_main_t * vm,
1164 vlib_node_runtime_t * node,
1165 vlib_frame_t * from_frame)
1166{
1167 return esp_encrypt_post_inline (vm, node, from_frame);
1168}
1169
1170/* *INDENT-OFF* */
1171VLIB_REGISTER_NODE (esp4_encrypt_post_node) = {
1172 .name = "esp4-encrypt-post",
1173 .vector_size = sizeof (u32),
1174 .format_trace = format_esp_post_encrypt_trace,
1175 .type = VLIB_NODE_TYPE_INTERNAL,
1176 .sibling_of = "esp4-encrypt",
1177
1178 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1179 .error_strings = esp_encrypt_error_strings,
1180};
1181/* *INDENT-ON* */
1182
Klement Sekerab8f35442018-10-29 13:38:19 +01001183VLIB_NODE_FN (esp6_encrypt_node) (vlib_main_t * vm,
1184 vlib_node_runtime_t * node,
1185 vlib_frame_t * from_frame)
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001186{
Neale Ranns4a58e492020-12-21 13:19:10 +00001187 return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_IP6, 0,
Fan Zhangf5395782020-04-29 14:00:03 +01001188 esp_encrypt_async_next.esp6_post_next);
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001189}
1190
1191/* *INDENT-OFF* */
1192VLIB_REGISTER_NODE (esp6_encrypt_node) = {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001193 .name = "esp6-encrypt",
1194 .vector_size = sizeof (u32),
1195 .format_trace = format_esp_encrypt_trace,
1196 .type = VLIB_NODE_TYPE_INTERNAL,
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001197 .sibling_of = "esp4-encrypt",
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001198
1199 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1200 .error_strings = esp_encrypt_error_strings,
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001201};
1202/* *INDENT-ON* */
1203
Fan Zhangf5395782020-04-29 14:00:03 +01001204VLIB_NODE_FN (esp6_encrypt_post_node) (vlib_main_t * vm,
1205 vlib_node_runtime_t * node,
1206 vlib_frame_t * from_frame)
1207{
1208 return esp_encrypt_post_inline (vm, node, from_frame);
1209}
1210
1211/* *INDENT-OFF* */
1212VLIB_REGISTER_NODE (esp6_encrypt_post_node) = {
1213 .name = "esp6-encrypt-post",
1214 .vector_size = sizeof (u32),
1215 .format_trace = format_esp_post_encrypt_trace,
1216 .type = VLIB_NODE_TYPE_INTERNAL,
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001217 .sibling_of = "esp4-encrypt",
Fan Zhangf5395782020-04-29 14:00:03 +01001218
1219 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1220 .error_strings = esp_encrypt_error_strings,
1221};
1222/* *INDENT-ON* */
1223
Neale Ranns25edf142019-03-22 08:12:48 +00001224VLIB_NODE_FN (esp4_encrypt_tun_node) (vlib_main_t * vm,
1225 vlib_node_runtime_t * node,
1226 vlib_frame_t * from_frame)
1227{
Neale Ranns4a58e492020-12-21 13:19:10 +00001228 return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_IP4, 1,
Fan Zhangf5395782020-04-29 14:00:03 +01001229 esp_encrypt_async_next.esp4_tun_post_next);
Neale Ranns25edf142019-03-22 08:12:48 +00001230}
1231
1232/* *INDENT-OFF* */
1233VLIB_REGISTER_NODE (esp4_encrypt_tun_node) = {
1234 .name = "esp4-encrypt-tun",
1235 .vector_size = sizeof (u32),
1236 .format_trace = format_esp_encrypt_trace,
1237 .type = VLIB_NODE_TYPE_INTERNAL,
1238
1239 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1240 .error_strings = esp_encrypt_error_strings,
Neale Rannsd7603d92019-03-28 08:56:10 +00001241
Neale Rannsf62a8c02019-04-02 08:13:33 +00001242 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
Neale Rannsd7603d92019-03-28 08:56:10 +00001243 .next_nodes = {
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001244 [ESP_ENCRYPT_NEXT_DROP4] = "ip4-drop",
1245 [ESP_ENCRYPT_NEXT_DROP6] = "ip6-drop",
Neale Ranns4a58e492020-12-21 13:19:10 +00001246 [ESP_ENCRYPT_NEXT_DROP_MPLS] = "mpls-drop",
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001247 [ESP_ENCRYPT_NEXT_HANDOFF4] = "esp4-encrypt-tun-handoff",
Neale Ranns4a58e492020-12-21 13:19:10 +00001248 [ESP_ENCRYPT_NEXT_HANDOFF6] = "esp6-encrypt-tun-handoff",
1249 [ESP_ENCRYPT_NEXT_HANDOFF_MPLS] = "esp-mpls-encrypt-tun-handoff",
Neale Ranns4ec36c52020-03-31 09:21:29 -04001250 [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "adj-midchain-tx",
Neale Rannsd7603d92019-03-28 08:56:10 +00001251 },
Neale Ranns25edf142019-03-22 08:12:48 +00001252};
1253
Fan Zhangf5395782020-04-29 14:00:03 +01001254VLIB_NODE_FN (esp4_encrypt_tun_post_node) (vlib_main_t * vm,
1255 vlib_node_runtime_t * node,
1256 vlib_frame_t * from_frame)
1257{
1258 return esp_encrypt_post_inline (vm, node, from_frame);
1259}
1260
1261/* *INDENT-OFF* */
1262VLIB_REGISTER_NODE (esp4_encrypt_tun_post_node) = {
1263 .name = "esp4-encrypt-tun-post",
1264 .vector_size = sizeof (u32),
1265 .format_trace = format_esp_post_encrypt_trace,
1266 .type = VLIB_NODE_TYPE_INTERNAL,
1267 .sibling_of = "esp4-encrypt-tun",
1268
1269 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1270 .error_strings = esp_encrypt_error_strings,
1271};
Neale Ranns25edf142019-03-22 08:12:48 +00001272/* *INDENT-ON* */
1273
1274VLIB_NODE_FN (esp6_encrypt_tun_node) (vlib_main_t * vm,
1275 vlib_node_runtime_t * node,
1276 vlib_frame_t * from_frame)
1277{
Neale Ranns4a58e492020-12-21 13:19:10 +00001278 return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_IP6, 1,
Fan Zhangf5395782020-04-29 14:00:03 +01001279 esp_encrypt_async_next.esp6_tun_post_next);
Neale Ranns25edf142019-03-22 08:12:48 +00001280}
1281
1282/* *INDENT-OFF* */
1283VLIB_REGISTER_NODE (esp6_encrypt_tun_node) = {
1284 .name = "esp6-encrypt-tun",
1285 .vector_size = sizeof (u32),
1286 .format_trace = format_esp_encrypt_trace,
1287 .type = VLIB_NODE_TYPE_INTERNAL,
1288
1289 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1290 .error_strings = esp_encrypt_error_strings,
Neale Rannsd7603d92019-03-28 08:56:10 +00001291
Neale Rannsf62a8c02019-04-02 08:13:33 +00001292 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
Neale Rannsd7603d92019-03-28 08:56:10 +00001293 .next_nodes = {
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001294 [ESP_ENCRYPT_NEXT_DROP4] = "ip4-drop",
1295 [ESP_ENCRYPT_NEXT_DROP6] = "ip6-drop",
Neale Ranns4a58e492020-12-21 13:19:10 +00001296 [ESP_ENCRYPT_NEXT_DROP_MPLS] = "mpls-drop",
1297 [ESP_ENCRYPT_NEXT_HANDOFF4] = "esp4-encrypt-tun-handoff",
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001298 [ESP_ENCRYPT_NEXT_HANDOFF6] = "esp6-encrypt-tun-handoff",
Neale Ranns4a58e492020-12-21 13:19:10 +00001299 [ESP_ENCRYPT_NEXT_HANDOFF_MPLS] = "esp-mpls-encrypt-tun-handoff",
Neale Ranns4ec36c52020-03-31 09:21:29 -04001300 [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "adj-midchain-tx",
Neale Rannsd7603d92019-03-28 08:56:10 +00001301 },
Neale Ranns25edf142019-03-22 08:12:48 +00001302};
1303
Neale Ranns25edf142019-03-22 08:12:48 +00001304/* *INDENT-ON* */
1305
Fan Zhangf5395782020-04-29 14:00:03 +01001306VLIB_NODE_FN (esp6_encrypt_tun_post_node) (vlib_main_t * vm,
1307 vlib_node_runtime_t * node,
1308 vlib_frame_t * from_frame)
1309{
1310 return esp_encrypt_post_inline (vm, node, from_frame);
1311}
1312
1313/* *INDENT-OFF* */
1314VLIB_REGISTER_NODE (esp6_encrypt_tun_post_node) = {
1315 .name = "esp6-encrypt-tun-post",
1316 .vector_size = sizeof (u32),
1317 .format_trace = format_esp_post_encrypt_trace,
1318 .type = VLIB_NODE_TYPE_INTERNAL,
Neale Ranns4a58e492020-12-21 13:19:10 +00001319 .sibling_of = "esp-mpls-encrypt-tun",
Fan Zhangf5395782020-04-29 14:00:03 +01001320
Neale Ranns4a58e492020-12-21 13:19:10 +00001321 .n_errors = ARRAY_LEN (esp_encrypt_error_strings),
Fan Zhangf5395782020-04-29 14:00:03 +01001322 .error_strings = esp_encrypt_error_strings,
1323};
1324/* *INDENT-ON* */
1325
Neale Ranns4a58e492020-12-21 13:19:10 +00001326VLIB_NODE_FN (esp_mpls_encrypt_tun_node)
1327(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
1328{
1329 return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_MPLS, 1,
1330 esp_encrypt_async_next.esp_mpls_tun_post_next);
1331}
1332
1333VLIB_REGISTER_NODE (esp_mpls_encrypt_tun_node) = {
1334 .name = "esp-mpls-encrypt-tun",
1335 .vector_size = sizeof (u32),
1336 .format_trace = format_esp_encrypt_trace,
1337 .type = VLIB_NODE_TYPE_INTERNAL,
1338
1339 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1340 .error_strings = esp_encrypt_error_strings,
1341
1342 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
1343 .next_nodes = {
1344 [ESP_ENCRYPT_NEXT_DROP4] = "ip4-drop",
1345 [ESP_ENCRYPT_NEXT_DROP6] = "ip6-drop",
1346 [ESP_ENCRYPT_NEXT_DROP_MPLS] = "mpls-drop",
1347 [ESP_ENCRYPT_NEXT_HANDOFF4] = "esp4-encrypt-tun-handoff",
1348 [ESP_ENCRYPT_NEXT_HANDOFF6] = "esp6-encrypt-tun-handoff",
1349 [ESP_ENCRYPT_NEXT_HANDOFF_MPLS] = "esp-mpls-encrypt-tun-handoff",
1350 [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "adj-midchain-tx",
1351 },
1352};
1353
1354VLIB_NODE_FN (esp_mpls_encrypt_tun_post_node)
1355(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
1356{
1357 return esp_encrypt_post_inline (vm, node, from_frame);
1358}
1359
1360VLIB_REGISTER_NODE (esp_mpls_encrypt_tun_post_node) = {
1361 .name = "esp-mpls-encrypt-tun-post",
1362 .vector_size = sizeof (u32),
1363 .format_trace = format_esp_post_encrypt_trace,
1364 .type = VLIB_NODE_TYPE_INTERNAL,
1365 .sibling_of = "esp-mpls-encrypt-tun",
1366
1367 .n_errors = ARRAY_LEN (esp_encrypt_error_strings),
1368 .error_strings = esp_encrypt_error_strings,
1369};
1370
Matthew Smith401aedf2019-07-08 14:45:04 -05001371typedef struct
1372{
1373 u32 sa_index;
1374} esp_no_crypto_trace_t;
1375
1376static u8 *
1377format_esp_no_crypto_trace (u8 * s, va_list * args)
1378{
1379 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1380 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1381 esp_no_crypto_trace_t *t = va_arg (*args, esp_no_crypto_trace_t *);
1382
1383 s = format (s, "esp-no-crypto: sa-index %u", t->sa_index);
1384
1385 return s;
1386}
1387
1388enum
1389{
1390 ESP_NO_CRYPTO_NEXT_DROP,
1391 ESP_NO_CRYPTO_N_NEXT,
1392};
1393
1394enum
1395{
1396 ESP_NO_CRYPTO_ERROR_RX_PKTS,
1397};
1398
1399static char *esp_no_crypto_error_strings[] = {
1400 "Outbound ESP packets received",
1401};
1402
1403always_inline uword
1404esp_no_crypto_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1405 vlib_frame_t * frame)
1406{
1407 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
Matthew Smith401aedf2019-07-08 14:45:04 -05001408 u32 *from = vlib_frame_vector_args (frame);
1409 u32 n_left = frame->n_vectors;
1410
1411 vlib_get_buffers (vm, from, b, n_left);
1412
1413 while (n_left > 0)
1414 {
Matthew Smith401aedf2019-07-08 14:45:04 -05001415 u32 sa_index0;
1416
1417 /* packets are always going to be dropped, but get the sa_index */
Neale Ranns4ec36c52020-03-31 09:21:29 -04001418 sa_index0 = ipsec_tun_protect_get_sa_out
1419 (vnet_buffer (b[0])->ip.adj_index[VLIB_TX]);
Matthew Smith401aedf2019-07-08 14:45:04 -05001420
1421 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
1422 {
1423 esp_no_crypto_trace_t *tr = vlib_add_trace (vm, node, b[0],
1424 sizeof (*tr));
1425 tr->sa_index = sa_index0;
1426 }
1427
1428 n_left -= 1;
Matthew Smith401aedf2019-07-08 14:45:04 -05001429 b += 1;
1430 }
1431
1432 vlib_node_increment_counter (vm, node->node_index,
1433 ESP_NO_CRYPTO_ERROR_RX_PKTS, frame->n_vectors);
1434
Neale Ranns4ec36c52020-03-31 09:21:29 -04001435 vlib_buffer_enqueue_to_single_next (vm, node, from,
1436 ESP_NO_CRYPTO_NEXT_DROP,
1437 frame->n_vectors);
Matthew Smith401aedf2019-07-08 14:45:04 -05001438
1439 return frame->n_vectors;
1440}
1441
1442VLIB_NODE_FN (esp4_no_crypto_tun_node) (vlib_main_t * vm,
1443 vlib_node_runtime_t * node,
1444 vlib_frame_t * from_frame)
1445{
1446 return esp_no_crypto_inline (vm, node, from_frame);
1447}
1448
1449/* *INDENT-OFF* */
1450VLIB_REGISTER_NODE (esp4_no_crypto_tun_node) =
1451{
1452 .name = "esp4-no-crypto",
1453 .vector_size = sizeof (u32),
1454 .format_trace = format_esp_no_crypto_trace,
1455 .n_errors = ARRAY_LEN(esp_no_crypto_error_strings),
1456 .error_strings = esp_no_crypto_error_strings,
1457 .n_next_nodes = ESP_NO_CRYPTO_N_NEXT,
1458 .next_nodes = {
1459 [ESP_NO_CRYPTO_NEXT_DROP] = "ip4-drop",
1460 },
1461};
1462
Matthew Smith401aedf2019-07-08 14:45:04 -05001463VLIB_NODE_FN (esp6_no_crypto_tun_node) (vlib_main_t * vm,
1464 vlib_node_runtime_t * node,
1465 vlib_frame_t * from_frame)
1466{
1467 return esp_no_crypto_inline (vm, node, from_frame);
1468}
1469
1470/* *INDENT-OFF* */
1471VLIB_REGISTER_NODE (esp6_no_crypto_tun_node) =
1472{
1473 .name = "esp6-no-crypto",
1474 .vector_size = sizeof (u32),
1475 .format_trace = format_esp_no_crypto_trace,
1476 .n_errors = ARRAY_LEN(esp_no_crypto_error_strings),
1477 .error_strings = esp_no_crypto_error_strings,
1478 .n_next_nodes = ESP_NO_CRYPTO_N_NEXT,
1479 .next_nodes = {
1480 [ESP_NO_CRYPTO_NEXT_DROP] = "ip6-drop",
1481 },
1482};
Matthew Smith401aedf2019-07-08 14:45:04 -05001483/* *INDENT-ON* */
1484
Neale Ranns2d498302021-02-25 08:38:58 +00001485#ifndef CLIB_MARCH_VARIANT
1486
1487static clib_error_t *
1488esp_encrypt_init (vlib_main_t *vm)
1489{
1490 ipsec_main_t *im = &ipsec_main;
1491
1492 im->esp4_enc_fq_index =
1493 vlib_frame_queue_main_init (esp4_encrypt_node.index, 0);
1494 im->esp6_enc_fq_index =
1495 vlib_frame_queue_main_init (esp6_encrypt_node.index, 0);
1496 im->esp4_enc_tun_fq_index =
1497 vlib_frame_queue_main_init (esp4_encrypt_tun_node.index, 0);
1498 im->esp6_enc_tun_fq_index =
1499 vlib_frame_queue_main_init (esp6_encrypt_tun_node.index, 0);
1500 im->esp_mpls_enc_tun_fq_index =
1501 vlib_frame_queue_main_init (esp_mpls_encrypt_tun_node.index, 0);
1502
1503 return 0;
1504}
1505
1506VLIB_INIT_FUNCTION (esp_encrypt_init);
1507
1508#endif
1509
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -07001510/*
1511 * fd.io coding-style-patch-verification: ON
1512 *
1513 * Local Variables:
1514 * eval: (c-set-style "gnu")
1515 * End:
1516 */