blob: 15f590acbdb4fbd612a69d57d93f408c7e7bc3d8 [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>
Klement Sekera4b089f22018-04-17 18:04:57 +020021#include <vnet/udp/udp.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070022
Damjan Marion91f17dc2019-03-18 18:59:25 +010023#include <vnet/crypto/crypto.h>
24
Ed Warnickecb9cada2015-12-08 15:45:58 -070025#include <vnet/ipsec/ipsec.h>
Neale Ranns28287212019-12-16 00:53:11 +000026#include <vnet/ipsec/ipsec_tun.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070027#include <vnet/ipsec/esp.h>
28
Ed Warnickecb9cada2015-12-08 15:45:58 -070029#define foreach_esp_encrypt_next \
30_(DROP, "error-drop") \
Fan Zhangf5395782020-04-29 14:00:03 +010031_(PENDING, "pending") \
Neale Rannsf62a8c02019-04-02 08:13:33 +000032_(HANDOFF, "handoff") \
Ed Warnickecb9cada2015-12-08 15:45:58 -070033_(INTERFACE_OUTPUT, "interface-output")
34
35#define _(v, s) ESP_ENCRYPT_NEXT_##v,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070036typedef enum
37{
Ed Warnickecb9cada2015-12-08 15:45:58 -070038 foreach_esp_encrypt_next
39#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070040 ESP_ENCRYPT_N_NEXT,
Ed Warnickecb9cada2015-12-08 15:45:58 -070041} esp_encrypt_next_t;
42
Damjan Marionc59b9a22019-03-19 15:38:40 +010043#define foreach_esp_encrypt_error \
44 _(RX_PKTS, "ESP pkts received") \
Fan Zhangf5395782020-04-29 14:00:03 +010045 _(POST_RX_PKTS, "ESP-post pkts received") \
Damjan Marionc59b9a22019-03-19 15:38:40 +010046 _(SEQ_CYCLED, "sequence number cycled (packet dropped)") \
47 _(CRYPTO_ENGINE_ERROR, "crypto engine error (packet dropped)") \
Fan Zhangf5395782020-04-29 14:00:03 +010048 _(CRYPTO_QUEUE_FULL, "crypto queue full (packet dropped)") \
Filip Tehlarefcad1a2020-02-04 09:36:04 +000049 _(NO_BUFFERS, "no buffers (packet dropped)") \
Ed Warnickecb9cada2015-12-08 15:45:58 -070050
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070051typedef enum
52{
Ed Warnickecb9cada2015-12-08 15:45:58 -070053#define _(sym,str) ESP_ENCRYPT_ERROR_##sym,
54 foreach_esp_encrypt_error
55#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070056 ESP_ENCRYPT_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -070057} esp_encrypt_error_t;
58
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070059static char *esp_encrypt_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -070060#define _(sym,string) string,
61 foreach_esp_encrypt_error
62#undef _
63};
64
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070065typedef struct
66{
Neale Ranns8d7c5022019-02-06 01:41:05 -080067 u32 sa_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -070068 u32 spi;
69 u32 seq;
Neale Ranns6afaae12019-07-17 15:07:14 +000070 u32 sa_seq_hi;
Klement Sekera4b089f22018-04-17 18:04:57 +020071 u8 udp_encap;
Ed Warnickecb9cada2015-12-08 15:45:58 -070072 ipsec_crypto_alg_t crypto_alg;
73 ipsec_integ_alg_t integ_alg;
74} esp_encrypt_trace_t;
75
Fan Zhangf5395782020-04-29 14:00:03 +010076typedef struct
77{
78 u32 next_index;
79} esp_encrypt_post_trace_t;
80
Ed Warnickecb9cada2015-12-08 15:45:58 -070081/* packet trace format function */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070082static u8 *
83format_esp_encrypt_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070084{
85 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
86 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070087 esp_encrypt_trace_t *t = va_arg (*args, esp_encrypt_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070088
Guillaume Solignac8f818cc2019-05-15 12:02:33 +020089 s =
90 format (s,
Neale Ranns6afaae12019-07-17 15:07:14 +000091 "esp: sa-index %d spi %u (0x%08x) seq %u sa-seq-hi %u crypto %U integrity %U%s",
92 t->sa_index, t->spi, t->spi, t->seq, t->sa_seq_hi,
93 format_ipsec_crypto_alg,
Guillaume Solignac8f818cc2019-05-15 12:02:33 +020094 t->crypto_alg, format_ipsec_integ_alg, t->integ_alg,
95 t->udp_encap ? " udp-encap-enabled" : "");
Ed Warnickecb9cada2015-12-08 15:45:58 -070096 return s;
97}
98
Fan Zhangf5395782020-04-29 14:00:03 +010099static u8 *
100format_esp_post_encrypt_trace (u8 * s, va_list * args)
101{
102 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
103 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
104 esp_encrypt_post_trace_t *t = va_arg (*args, esp_encrypt_post_trace_t *);
105
106 s = format (s, "esp-post: next node index %u", t->next_index);
107 return s;
108}
109
Damjan Marionc59b9a22019-03-19 15:38:40 +0100110/* pad packet in input buffer */
111static_always_inline u8 *
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000112esp_add_footer_and_icv (vlib_main_t * vm, vlib_buffer_t ** last,
113 u8 block_size, u8 icv_sz,
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000114 u16 * next, vlib_node_runtime_t * node,
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000115 u16 buffer_data_size, uword total_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116{
Damjan Marionc59b9a22019-03-19 15:38:40 +0100117 static const u8 pad_data[ESP_MAX_BLOCK_SIZE] = {
118 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
119 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x00, 0x00,
120 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000122 u16 min_length = total_len + sizeof (esp_footer_t);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100123 u16 new_length = round_pow2 (min_length, block_size);
124 u8 pad_bytes = new_length - min_length;
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000125 esp_footer_t *f = (esp_footer_t *) (vlib_buffer_get_current (last[0]) +
126 last[0]->current_length + pad_bytes);
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000127 u16 tail_sz = sizeof (esp_footer_t) + pad_bytes + icv_sz;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000129 if (last[0]->current_length + tail_sz > buffer_data_size)
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000130 {
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000131 u32 tmp_bi = 0;
132 if (vlib_buffer_alloc (vm, &tmp_bi, 1) != 1)
133 return 0;
Filip Tehlarc2c1bfd2020-02-13 07:49:30 +0000134
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000135 vlib_buffer_t *tmp = vlib_get_buffer (vm, tmp_bi);
136 last[0]->next_buffer = tmp_bi;
137 last[0]->flags |= VLIB_BUFFER_NEXT_PRESENT;
138 f = (esp_footer_t *) (vlib_buffer_get_current (tmp) + pad_bytes);
139 tmp->current_length += tail_sz;
140 last[0] = tmp;
141 }
142 else
143 last[0]->current_length += tail_sz;
144
145 f->pad_length = pad_bytes;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100146 if (pad_bytes)
Benoît Ganne4505f012019-12-07 09:14:27 -0700147 {
148 ASSERT (pad_bytes <= ESP_MAX_BLOCK_SIZE);
149 pad_bytes = clib_min (ESP_MAX_BLOCK_SIZE, pad_bytes);
150 clib_memcpy_fast ((u8 *) f - pad_bytes, pad_data, pad_bytes);
151 }
Damjan Marionc59b9a22019-03-19 15:38:40 +0100152
Damjan Marionc59b9a22019-03-19 15:38:40 +0100153 return &f->next_header;
154}
155
156static_always_inline void
157esp_update_ip4_hdr (ip4_header_t * ip4, u16 len, int is_transport, int is_udp)
158{
Neale Ranns1b582b82019-04-18 19:49:13 -0700159 ip_csum_t sum;
160 u16 old_len;
161
162 len = clib_net_to_host_u16 (len);
163 old_len = ip4->length;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100164
165 if (is_transport)
166 {
167 u8 prot = is_udp ? IP_PROTOCOL_UDP : IP_PROTOCOL_IPSEC_ESP;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100168
Neale Ranns1b582b82019-04-18 19:49:13 -0700169 sum = ip_csum_update (ip4->checksum, ip4->protocol,
170 prot, ip4_header_t, protocol);
171 ip4->protocol = prot;
172
173 sum = ip_csum_update (sum, old_len, len, ip4_header_t, length);
174 }
175 else
176 sum = ip_csum_update (ip4->checksum, old_len, len, ip4_header_t, length);
177
178 ip4->length = len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100179 ip4->checksum = ip_csum_fold (sum);
180}
181
182static_always_inline void
183esp_fill_udp_hdr (ipsec_sa_t * sa, udp_header_t * udp, u16 len)
184{
185 clib_memcpy_fast (udp, &sa->udp_hdr, sizeof (udp_header_t));
186 udp->length = clib_net_to_host_u16 (len);
187}
188
189static_always_inline u8
190ext_hdr_is_pre_esp (u8 nexthdr)
191{
192#ifdef CLIB_HAVE_VEC128
193 static const u8x16 ext_hdr_types = {
194 IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS,
195 IP_PROTOCOL_IPV6_ROUTE,
196 IP_PROTOCOL_IPV6_FRAGMENTATION,
197 };
198
199 return !u8x16_is_all_zero (ext_hdr_types == u8x16_splat (nexthdr));
200#else
201 return ((nexthdr ^ IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS) |
202 (nexthdr ^ IP_PROTOCOL_IPV6_ROUTE) |
203 (nexthdr ^ IP_PROTOCOL_IPV6_FRAGMENTATION) != 0);
204#endif
205}
206
207static_always_inline u8
Neale Ranns02950402019-12-20 00:54:57 +0000208esp_get_ip6_hdr_len (ip6_header_t * ip6, ip6_ext_header_t ** ext_hdr)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100209{
210 /* this code assumes that HbH, route and frag headers will be before
211 others, if that is not the case, they will end up encrypted */
Damjan Marionc59b9a22019-03-19 15:38:40 +0100212 u8 len = sizeof (ip6_header_t);
213 ip6_ext_header_t *p;
214
215 /* if next packet doesn't have ext header */
216 if (ext_hdr_is_pre_esp (ip6->protocol) == 0)
Neale Ranns02950402019-12-20 00:54:57 +0000217 {
218 *ext_hdr = NULL;
219 return len;
220 }
Damjan Marionc59b9a22019-03-19 15:38:40 +0100221
222 p = (void *) (ip6 + 1);
223 len += ip6_ext_header_len (p);
224
225 while (ext_hdr_is_pre_esp (p->next_hdr))
226 {
227 len += ip6_ext_header_len (p);
228 p = ip6_ext_next_header (p);
229 }
230
Neale Ranns02950402019-12-20 00:54:57 +0000231 *ext_hdr = p;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100232 return len;
233}
234
Damjan Marionc59b9a22019-03-19 15:38:40 +0100235static_always_inline void
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000236esp_process_chained_ops (vlib_main_t * vm, vlib_node_runtime_t * node,
237 vnet_crypto_op_t * ops, vlib_buffer_t * b[],
238 u16 * nexts, vnet_crypto_op_chunk_t * chunks)
239{
240 u32 n_fail, n_ops = vec_len (ops);
241 vnet_crypto_op_t *op = ops;
242
243 if (n_ops == 0)
244 return;
245
246 n_fail = n_ops - vnet_crypto_process_chained_ops (vm, op, chunks, n_ops);
247
248 while (n_fail)
249 {
250 ASSERT (op - ops < n_ops);
251
252 if (op->status != VNET_CRYPTO_OP_STATUS_COMPLETED)
253 {
254 u32 bi = op->user_data;
255 b[bi]->error = node->errors[ESP_ENCRYPT_ERROR_CRYPTO_ENGINE_ERROR];
256 nexts[bi] = ESP_ENCRYPT_NEXT_DROP;
257 n_fail--;
258 }
259 op++;
260 }
261}
262
263static_always_inline void
Damjan Marionc59b9a22019-03-19 15:38:40 +0100264esp_process_ops (vlib_main_t * vm, vlib_node_runtime_t * node,
265 vnet_crypto_op_t * ops, vlib_buffer_t * b[], u16 * nexts)
266{
267 u32 n_fail, n_ops = vec_len (ops);
268 vnet_crypto_op_t *op = ops;
269
270 if (n_ops == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271 return;
272
Damjan Marionc59b9a22019-03-19 15:38:40 +0100273 n_fail = n_ops - vnet_crypto_process_ops (vm, op, n_ops);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274
Damjan Marionc59b9a22019-03-19 15:38:40 +0100275 while (n_fail)
276 {
277 ASSERT (op - ops < n_ops);
278
279 if (op->status != VNET_CRYPTO_OP_STATUS_COMPLETED)
280 {
281 u32 bi = op->user_data;
282 b[bi]->error = node->errors[ESP_ENCRYPT_ERROR_CRYPTO_ENGINE_ERROR];
283 nexts[bi] = ESP_ENCRYPT_NEXT_DROP;
284 n_fail--;
285 }
286 op++;
287 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288}
289
Damjan Mariond97918e2019-04-25 18:28:31 +0200290typedef struct
291{
292 u32 salt;
293 u64 iv;
294} __clib_packed esp_gcm_nonce_t;
295
296STATIC_ASSERT_SIZEOF (esp_gcm_nonce_t, 12);
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
382esp_prepare_sync_op (vlib_main_t * vm, ipsec_per_thread_data_t * ptd,
383 vnet_crypto_op_t ** crypto_ops,
384 vnet_crypto_op_t ** integ_ops, ipsec_sa_t * sa0,
385 u8 * payload, u16 payload_len, u8 iv_sz, u8 icv_sz,
386 vlib_buffer_t ** bufs, vlib_buffer_t ** b,
387 vlib_buffer_t * lb, u32 hdr_len, esp_header_t * esp,
388 esp_gcm_nonce_t * nonce)
389{
390 if (sa0->crypto_enc_op_id)
391 {
392 vnet_crypto_op_t *op;
393 vec_add2_aligned (crypto_ops[0], op, 1, CLIB_CACHE_LINE_BYTES);
394 vnet_crypto_op_init (op, sa0->crypto_enc_op_id);
395
396 op->src = op->dst = payload;
397 op->key_index = sa0->crypto_key_index;
398 op->len = payload_len - icv_sz;
399 op->user_data = b - bufs;
400
401 if (ipsec_sa_is_set_IS_AEAD (sa0))
402 {
403 /*
404 * construct the AAD in a scratch space in front
405 * of the IP header.
406 */
407 op->aad = payload - hdr_len - sizeof (esp_aead_t);
408 op->aad_len = esp_aad_fill (op->aad, esp, sa0);
409
410 op->tag = payload + op->len;
411 op->tag_len = 16;
412
413 u64 *iv = (u64 *) (payload - iv_sz);
414 nonce->salt = sa0->salt;
415 nonce->iv = *iv = clib_host_to_net_u64 (sa0->gcm_iv_counter++);
416 op->iv = (u8 *) nonce;
417 }
418 else
419 {
420 op->iv = payload - iv_sz;
421 op->flags = VNET_CRYPTO_OP_FLAG_INIT_IV;
422 }
423
424 if (lb != b[0])
425 {
426 /* is chained */
427 op->flags |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS;
428 op->chunk_index = vec_len (ptd->chunks);
429 op->tag = vlib_buffer_get_tail (lb) - icv_sz;
430 esp_encrypt_chain_crypto (vm, ptd, sa0, b[0], lb, icv_sz, payload,
431 payload_len, &op->n_chunks);
432 }
433 }
434
435 if (sa0->integ_op_id)
436 {
437 vnet_crypto_op_t *op;
438 vec_add2_aligned (integ_ops[0], op, 1, CLIB_CACHE_LINE_BYTES);
439 vnet_crypto_op_init (op, sa0->integ_op_id);
440 op->src = payload - iv_sz - sizeof (esp_header_t);
441 op->digest = payload + payload_len - icv_sz;
442 op->key_index = sa0->integ_key_index;
443 op->digest_len = icv_sz;
444 op->len = payload_len - icv_sz + iv_sz + sizeof (esp_header_t);
445 op->user_data = b - bufs;
446
447 if (lb != b[0])
448 {
449 /* is chained */
450 op->flags |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS;
451 op->chunk_index = vec_len (ptd->chunks);
452 op->digest = vlib_buffer_get_tail (lb) - icv_sz;
453
454 esp_encrypt_chain_integ (vm, ptd, sa0, b[0], lb, icv_sz,
455 payload - iv_sz - sizeof (esp_header_t),
456 payload_len + iv_sz +
457 sizeof (esp_header_t), op->digest,
458 &op->n_chunks);
459 }
460 else if (ipsec_sa_is_set_USE_ESN (sa0))
461 {
462 u32 seq_hi = clib_net_to_host_u32 (sa0->seq_hi);
463 clib_memcpy_fast (op->digest, &seq_hi, sizeof (seq_hi));
464 op->len += sizeof (seq_hi);
465 }
466 }
467}
468
469static_always_inline int
470esp_prepare_async_frame (vlib_main_t * vm, ipsec_per_thread_data_t * ptd,
471 vnet_crypto_async_frame_t ** async_frame,
472 ipsec_sa_t * sa, vlib_buffer_t * b,
473 esp_header_t * esp, u8 * payload, u32 payload_len,
474 u8 iv_sz, u8 icv_sz, u32 bi, u16 * next, u32 hdr_len,
475 u16 async_next, vlib_buffer_t * lb)
476{
477 esp_post_data_t *post = esp_post_data (b);
478 u8 *tag, *iv, *aad = 0;
479 u8 flag = 0;
480 u32 key_index;
481 i16 crypto_start_offset, integ_start_offset = 0;
482 u16 crypto_total_len, integ_total_len;
483
484 post->next_index = next[0];
485 next[0] = ESP_ENCRYPT_NEXT_PENDING;
486
487 /* crypto */
488 crypto_start_offset = payload - b->data;
489 crypto_total_len = integ_total_len = payload_len - icv_sz;
490 tag = payload + crypto_total_len;
491
492 /* aead */
493 if (ipsec_sa_is_set_IS_AEAD (sa))
494 {
495 esp_gcm_nonce_t *nonce;
496 u64 *pkt_iv = (u64 *) (payload - iv_sz);
497
498 aad = payload - hdr_len - sizeof (esp_aead_t);
499 esp_aad_fill (aad, esp, sa);
500 nonce = (esp_gcm_nonce_t *) (aad - sizeof (*nonce));
501 nonce->salt = sa->salt;
502 nonce->iv = *pkt_iv = clib_host_to_net_u64 (sa->gcm_iv_counter++);
503 iv = (u8 *) nonce;
504 key_index = sa->crypto_key_index;
505
506 if (lb != b)
507 {
508 /* chain */
509 flag |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS;
510 tag = vlib_buffer_get_tail (lb) - icv_sz;
511 crypto_total_len = esp_encrypt_chain_crypto (vm, ptd, sa, b, lb,
512 icv_sz, payload,
513 payload_len, 0);
514 }
515 goto out;
516 }
517
518 /* cipher then hash */
519 iv = payload - iv_sz;
520 integ_start_offset = crypto_start_offset - iv_sz - sizeof (esp_header_t);
521 integ_total_len += iv_sz + sizeof (esp_header_t);
522 flag |= VNET_CRYPTO_OP_FLAG_INIT_IV;
523 key_index = sa->linked_key_index;
524
525 if (b != lb)
526 {
527 flag |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS;
528 crypto_total_len = esp_encrypt_chain_crypto (vm, ptd, sa, b, lb,
529 icv_sz, payload,
530 payload_len, 0);
531 tag = vlib_buffer_get_tail (lb) - icv_sz;
532 integ_total_len = esp_encrypt_chain_integ (vm, ptd, sa, b, lb, icv_sz,
533 payload - iv_sz -
534 sizeof (esp_header_t),
535 payload_len + iv_sz +
536 sizeof (esp_header_t),
537 tag, 0);
538 }
539 else if (ipsec_sa_is_set_USE_ESN (sa) && !ipsec_sa_is_set_IS_AEAD (sa))
540 {
541 u32 seq_hi = clib_net_to_host_u32 (sa->seq_hi);
542 clib_memcpy_fast (tag, &seq_hi, sizeof (seq_hi));
543 integ_total_len += sizeof (seq_hi);
544 }
545
546out:
547 return vnet_crypto_async_add_to_frame (vm, async_frame, key_index,
548 crypto_total_len,
549 integ_total_len - crypto_total_len,
550 crypto_start_offset,
551 integ_start_offset, bi, async_next,
552 iv, tag, aad, flag);
553}
554
555/* when submitting a frame is failed, drop all buffers in the frame */
556static_always_inline void
557esp_async_recycle_failed_submit (vnet_crypto_async_frame_t * f,
558 vlib_buffer_t ** b, u16 * next)
559{
560 u32 n_drop = f->n_elts;
561 while (--n_drop)
562 {
563 (b - n_drop)[0]->error = ESP_ENCRYPT_ERROR_CRYPTO_ENGINE_ERROR;
564 (next - n_drop)[0] = ESP_ENCRYPT_NEXT_DROP;
565 }
566 vnet_crypto_async_reset_frame (f);
567}
568
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200569always_inline uword
Damjan Marionc59b9a22019-03-19 15:38:40 +0100570esp_encrypt_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Fan Zhangf5395782020-04-29 14:00:03 +0100571 vlib_frame_t * frame, int is_ip6, int is_tun,
572 u16 async_next)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700573{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700574 ipsec_main_t *im = &ipsec_main;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100575 ipsec_per_thread_data_t *ptd = vec_elt_at_index (im->ptd, vm->thread_index);
576 u32 *from = vlib_frame_vector_args (frame);
577 u32 n_left = frame->n_vectors;
578 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
Damjan Marionc98275f2019-03-06 14:05:01 +0100579 u16 nexts[VLIB_FRAME_SIZE], *next = nexts;
Damjan Mariond97918e2019-04-25 18:28:31 +0200580 esp_gcm_nonce_t nonces[VLIB_FRAME_SIZE], *nonce = nonces;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100581 u32 thread_index = vm->thread_index;
582 u16 buffer_data_size = vlib_buffer_get_default_data_size (vm);
583 u32 current_sa_index = ~0, current_sa_packets = 0;
584 u32 current_sa_bytes = 0, spi = 0;
585 u8 block_sz = 0, iv_sz = 0, icv_sz = 0;
586 ipsec_sa_t *sa0 = 0;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000587 vlib_buffer_t *lb;
588 vnet_crypto_op_t **crypto_ops = &ptd->crypto_ops;
589 vnet_crypto_op_t **integ_ops = &ptd->integ_ops;
Fan Zhangf5395782020-04-29 14:00:03 +0100590 vnet_crypto_async_frame_t *async_frame = 0;
591 int is_async = im->async_mode;
592 vnet_crypto_async_op_id_t last_async_op = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700593
Damjan Marionc59b9a22019-03-19 15:38:40 +0100594 vlib_get_buffers (vm, from, b, n_left);
Fan Zhangf5395782020-04-29 14:00:03 +0100595 if (!is_async)
596 {
597 vec_reset_length (ptd->crypto_ops);
598 vec_reset_length (ptd->integ_ops);
599 vec_reset_length (ptd->chained_crypto_ops);
600 vec_reset_length (ptd->chained_integ_ops);
601 }
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000602 vec_reset_length (ptd->chunks);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100603
604 while (n_left > 0)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700605 {
Zhiyong Yang1cff6432019-04-30 05:33:53 -0400606 u32 sa_index0;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100607 dpo_id_t *dpo;
608 esp_header_t *esp;
609 u8 *payload, *next_hdr_ptr;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000610 u16 payload_len, payload_len_total, n_bufs;
Neale Ranns4ec36c52020-03-31 09:21:29 -0400611 u32 hdr_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700612
Damjan Marionc59b9a22019-03-19 15:38:40 +0100613 if (n_left > 2)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700614 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100615 u8 *p;
616 vlib_prefetch_buffer_header (b[2], LOAD);
617 p = vlib_buffer_get_current (b[1]);
618 CLIB_PREFETCH (p, CLIB_CACHE_LINE_BYTES, LOAD);
619 p -= CLIB_CACHE_LINE_BYTES;
620 CLIB_PREFETCH (p, CLIB_CACHE_LINE_BYTES, LOAD);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700621 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700622
Neale Ranns25edf142019-03-22 08:12:48 +0000623 if (is_tun)
624 {
625 /* we are on a ipsec tunnel's feature arc */
Neale Ranns28287212019-12-16 00:53:11 +0000626 vnet_buffer (b[0])->ipsec.sad_index =
627 sa_index0 = ipsec_tun_protect_get_sa_out
628 (vnet_buffer (b[0])->ip.adj_index[VLIB_TX]);
Neale Ranns25edf142019-03-22 08:12:48 +0000629 }
630 else
631 sa_index0 = vnet_buffer (b[0])->ipsec.sad_index;
632
633 if (sa_index0 != current_sa_index)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100634 {
Damjan Marion21f265f2019-06-05 15:45:50 +0200635 if (current_sa_packets)
636 vlib_increment_combined_counter (&ipsec_sa_counters, thread_index,
637 current_sa_index,
638 current_sa_packets,
639 current_sa_bytes);
640 current_sa_packets = current_sa_bytes = 0;
641
Damjan Marionc59b9a22019-03-19 15:38:40 +0100642 sa0 = pool_elt_at_index (im->sad, sa_index0);
643 current_sa_index = sa_index0;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100644 spi = clib_net_to_host_u32 (sa0->spi);
645 block_sz = sa0->crypto_block_size;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200646 icv_sz = sa0->integ_icv_size;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100647 iv_sz = sa0->crypto_iv_size;
Fan Zhangf5395782020-04-29 14:00:03 +0100648
649 /* submit frame when op_id is different then the old one */
650 if (is_async && sa0->crypto_async_enc_op_id != last_async_op)
651 {
652 if (async_frame && async_frame->n_elts)
653 {
654 if (vnet_crypto_async_submit_open_frame (vm, async_frame)
655 < 0)
656 esp_async_recycle_failed_submit (async_frame, b, next);
657 }
658 async_frame =
659 vnet_crypto_async_get_frame (vm, sa0->crypto_async_enc_op_id);
660 last_async_op = sa0->crypto_async_enc_op_id;
661 }
Damjan Marionc59b9a22019-03-19 15:38:40 +0100662 }
663
Neale Rannsf62a8c02019-04-02 08:13:33 +0000664 if (PREDICT_FALSE (~0 == sa0->encrypt_thread_index))
665 {
666 /* this is the first packet to use this SA, claim the SA
667 * for this thread. this could happen simultaneously on
668 * another thread */
669 clib_atomic_cmp_and_swap (&sa0->encrypt_thread_index, ~0,
670 ipsec_sa_assign_thread (thread_index));
671 }
672
673 if (PREDICT_TRUE (thread_index != sa0->encrypt_thread_index))
674 {
675 next[0] = ESP_ENCRYPT_NEXT_HANDOFF;
Neale Rannsf62a8c02019-04-02 08:13:33 +0000676 goto trace;
677 }
678
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000679 lb = b[0];
680 n_bufs = vlib_buffer_chain_linearize (vm, b[0]);
681 if (n_bufs == 0)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100682 {
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000683 b[0]->error = node->errors[ESP_ENCRYPT_ERROR_NO_BUFFERS];
Damjan Marionc59b9a22019-03-19 15:38:40 +0100684 next[0] = ESP_ENCRYPT_NEXT_DROP;
685 goto trace;
686 }
687
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000688 if (n_bufs > 1)
689 {
690 crypto_ops = &ptd->chained_crypto_ops;
691 integ_ops = &ptd->chained_integ_ops;
692
693 /* find last buffer in the chain */
694 while (lb->flags & VLIB_BUFFER_NEXT_PRESENT)
695 lb = vlib_get_buffer (vm, lb->next_buffer);
696 }
697 else
698 {
699 crypto_ops = &ptd->crypto_ops;
700 integ_ops = &ptd->integ_ops;
701 }
702
Damjan Marionc59b9a22019-03-19 15:38:40 +0100703 if (PREDICT_FALSE (esp_seq_advance (sa0)))
704 {
705 b[0]->error = node->errors[ESP_ENCRYPT_ERROR_SEQ_CYCLED];
706 next[0] = ESP_ENCRYPT_NEXT_DROP;
707 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]);
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000716 next_hdr_ptr = esp_add_footer_and_icv (vm, &lb, block_sz, icv_sz,
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000717 next, node,
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000718 buffer_data_size,
719 vlib_buffer_length_in_chain
720 (vm, b[0]));
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000721 if (!next_hdr_ptr)
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000722 {
723 b[0]->error = node->errors[ESP_ENCRYPT_ERROR_NO_BUFFERS];
724 next[0] = ESP_ENCRYPT_NEXT_DROP;
725 goto trace;
726 }
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000727 b[0]->flags &= ~VLIB_BUFFER_TOTAL_LENGTH_VALID;
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000728 payload_len = b[0]->current_length;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000729 payload_len_total = vlib_buffer_length_in_chain (vm, b[0]);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100730
731 /* ESP header */
732 hdr_len += sizeof (*esp);
733 esp = (esp_header_t *) (payload - hdr_len);
734
735 /* optional UDP header */
Damjan Mariond709cbc2019-03-26 13:16:42 +0100736 if (ipsec_sa_is_set_UDP_ENCAP (sa0))
Damjan Marionc98275f2019-03-06 14:05:01 +0100737 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100738 hdr_len += sizeof (udp_header_t);
739 esp_fill_udp_hdr (sa0, (udp_header_t *) (payload - hdr_len),
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000740 payload_len_total + hdr_len);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100741 }
742
743 /* IP header */
Damjan Mariond709cbc2019-03-26 13:16:42 +0100744 if (ipsec_sa_is_set_IS_TUNNEL_V6 (sa0))
Damjan Marionc59b9a22019-03-19 15:38:40 +0100745 {
746 ip6_header_t *ip6;
747 u16 len = sizeof (ip6_header_t);
748 hdr_len += len;
749 ip6 = (ip6_header_t *) (payload - hdr_len);
750 clib_memcpy_fast (ip6, &sa0->ip6_hdr, len);
Neale Ranns987aea82019-03-27 13:40:35 +0000751 *next_hdr_ptr = (is_ip6 ?
752 IP_PROTOCOL_IPV6 : IP_PROTOCOL_IP_IN_IP);
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000753 len = payload_len_total + hdr_len - len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100754 ip6->payload_length = clib_net_to_host_u16 (len);
Damjan Marionc98275f2019-03-06 14:05:01 +0100755 }
756 else
757 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100758 ip4_header_t *ip4;
759 u16 len = sizeof (ip4_header_t);
760 hdr_len += len;
761 ip4 = (ip4_header_t *) (payload - hdr_len);
762 clib_memcpy_fast (ip4, &sa0->ip4_hdr, len);
Neale Ranns987aea82019-03-27 13:40:35 +0000763 *next_hdr_ptr = (is_ip6 ?
764 IP_PROTOCOL_IPV6 : IP_PROTOCOL_IP_IN_IP);
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000765 len = payload_len_total + hdr_len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100766 esp_update_ip4_hdr (ip4, len, /* is_transport */ 0, 0);
Damjan Marionc98275f2019-03-06 14:05:01 +0100767 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100768
Neale Ranns72f2a3a2019-06-17 15:43:38 +0000769 dpo = &sa0->dpo;
Neale Ranns25edf142019-03-22 08:12:48 +0000770 if (!is_tun)
771 {
772 next[0] = dpo->dpoi_next_node;
773 vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = dpo->dpoi_index;
774 }
Neale Ranns4ec36c52020-03-31 09:21:29 -0400775 else
776 next[0] = ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT;
Damjan Marionc98275f2019-03-06 14:05:01 +0100777 }
Damjan Marionc59b9a22019-03-19 15:38:40 +0100778 else /* transport mode */
Damjan Marionc98275f2019-03-06 14:05:01 +0100779 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100780 u8 *l2_hdr, l2_len, *ip_hdr, ip_len;
Neale Ranns02950402019-12-20 00:54:57 +0000781 ip6_ext_header_t *ext_hdr;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100782 udp_header_t *udp = 0;
Alexander Chernavinb0d2eda2020-03-25 10:56:52 -0400783 u16 udp_len = 0;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100784 u8 *old_ip_hdr = vlib_buffer_get_current (b[0]);
Damjan Marionc98275f2019-03-06 14:05:01 +0100785
Damjan Marionc59b9a22019-03-19 15:38:40 +0100786 ip_len = is_ip6 ?
Neale Ranns02950402019-12-20 00:54:57 +0000787 esp_get_ip6_hdr_len ((ip6_header_t *) old_ip_hdr, &ext_hdr) :
Damjan Marionc59b9a22019-03-19 15:38:40 +0100788 ip4_header_bytes ((ip4_header_t *) old_ip_hdr);
Damjan Marionc98275f2019-03-06 14:05:01 +0100789
Damjan Marionc59b9a22019-03-19 15:38:40 +0100790 vlib_buffer_advance (b[0], ip_len);
791 payload = vlib_buffer_get_current (b[0]);
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000792 next_hdr_ptr = esp_add_footer_and_icv (vm, &lb, block_sz, icv_sz,
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000793 next, node,
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000794 buffer_data_size,
795 vlib_buffer_length_in_chain
796 (vm, b[0]));
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000797 if (!next_hdr_ptr)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100798 goto trace;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000799
800 b[0]->flags &= ~VLIB_BUFFER_TOTAL_LENGTH_VALID;
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000801 payload_len = b[0]->current_length;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000802 payload_len_total = vlib_buffer_length_in_chain (vm, b[0]);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100803
804 /* ESP header */
805 hdr_len += sizeof (*esp);
806 esp = (esp_header_t *) (payload - hdr_len);
807
808 /* optional UDP header */
Damjan Mariond709cbc2019-03-26 13:16:42 +0100809 if (ipsec_sa_is_set_UDP_ENCAP (sa0))
Damjan Marionc98275f2019-03-06 14:05:01 +0100810 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100811 hdr_len += sizeof (udp_header_t);
812 udp = (udp_header_t *) (payload - hdr_len);
Damjan Marionc98275f2019-03-06 14:05:01 +0100813 }
814
Damjan Marionc59b9a22019-03-19 15:38:40 +0100815 /* IP header */
816 hdr_len += ip_len;
817 ip_hdr = payload - hdr_len;
818
819 /* L2 header */
Neale Rannsc87b66c2019-02-07 07:26:12 -0800820 if (!is_tun)
821 {
822 l2_len = vnet_buffer (b[0])->ip.save_rewrite_length;
823 hdr_len += l2_len;
824 l2_hdr = payload - hdr_len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100825
Neale Rannsc87b66c2019-02-07 07:26:12 -0800826 /* copy l2 and ip header */
827 clib_memcpy_le32 (l2_hdr, old_ip_hdr - l2_len, l2_len);
828 }
829 else
830 l2_len = 0;
831
Damjan Marionc98275f2019-03-06 14:05:01 +0100832 if (is_ip6)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100833 {
Neale Ranns02950402019-12-20 00:54:57 +0000834 ip6_header_t *ip6 = (ip6_header_t *) (old_ip_hdr);
835 if (PREDICT_TRUE (NULL == ext_hdr))
836 {
837 *next_hdr_ptr = ip6->protocol;
838 ip6->protocol = IP_PROTOCOL_IPSEC_ESP;
839 }
840 else
841 {
842 *next_hdr_ptr = ext_hdr->next_hdr;
843 ext_hdr->next_hdr = IP_PROTOCOL_IPSEC_ESP;
844 }
Neale Rannsd207fd72019-04-18 17:18:12 -0700845 ip6->payload_length =
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000846 clib_host_to_net_u16 (payload_len_total + hdr_len - l2_len -
Neale Ranns02950402019-12-20 00:54:57 +0000847 sizeof (ip6_header_t));
Damjan Marionc59b9a22019-03-19 15:38:40 +0100848 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100849 else
Damjan Marionc98275f2019-03-06 14:05:01 +0100850 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100851 u16 len;
Neale Ranns02950402019-12-20 00:54:57 +0000852 ip4_header_t *ip4 = (ip4_header_t *) (old_ip_hdr);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100853 *next_hdr_ptr = ip4->protocol;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000854 len = payload_len_total + hdr_len - l2_len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100855 if (udp)
856 {
857 esp_update_ip4_hdr (ip4, len, /* is_transport */ 1, 1);
Alexander Chernavinb0d2eda2020-03-25 10:56:52 -0400858 udp_len = len - ip_len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100859 }
860 else
861 esp_update_ip4_hdr (ip4, len, /* is_transport */ 1, 0);
Damjan Marionc98275f2019-03-06 14:05:01 +0100862 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100863
Neale Ranns02950402019-12-20 00:54:57 +0000864 clib_memcpy_le64 (ip_hdr, old_ip_hdr, ip_len);
865
Alexander Chernavinb0d2eda2020-03-25 10:56:52 -0400866 if (udp)
867 {
868 esp_fill_udp_hdr (sa0, udp, udp_len);
869 }
870
Neale Ranns4ec36c52020-03-31 09:21:29 -0400871 next[0] = ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT;
Damjan Marionc98275f2019-03-06 14:05:01 +0100872 }
873
Damjan Marionc59b9a22019-03-19 15:38:40 +0100874 esp->spi = spi;
875 esp->seq = clib_net_to_host_u32 (sa0->seq);
Damjan Marionc98275f2019-03-06 14:05:01 +0100876
Fan Zhangf5395782020-04-29 14:00:03 +0100877 if (is_async)
Damjan Marionc98275f2019-03-06 14:05:01 +0100878 {
Fan Zhangf5395782020-04-29 14:00:03 +0100879 if (PREDICT_FALSE (sa0->crypto_async_enc_op_id == 0))
880 goto trace;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000881
Fan Zhangf5395782020-04-29 14:00:03 +0100882 if (esp_prepare_async_frame (vm, ptd, &async_frame, sa0, b[0], esp,
883 payload, payload_len, iv_sz,
884 icv_sz, from[b - bufs], next, hdr_len,
885 async_next, lb))
Neale Ranns47feb112019-04-11 15:14:07 +0000886 {
Fan Zhangf5395782020-04-29 14:00:03 +0100887 esp_async_recycle_failed_submit (async_frame, b, next);
888 goto trace;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000889 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100890 }
Fan Zhangf5395782020-04-29 14:00:03 +0100891 else
Damjan Marionc98275f2019-03-06 14:05:01 +0100892 {
Fan Zhangf5395782020-04-29 14:00:03 +0100893 esp_prepare_sync_op (vm, ptd, crypto_ops, integ_ops, sa0, payload,
894 payload_len, iv_sz, icv_sz, bufs, b, lb,
895 hdr_len, esp, nonce++);
Damjan Marionc98275f2019-03-06 14:05:01 +0100896 }
897
Damjan Marionc59b9a22019-03-19 15:38:40 +0100898 vlib_buffer_advance (b[0], 0LL - hdr_len);
Damjan Marionc98275f2019-03-06 14:05:01 +0100899
Damjan Marionc59b9a22019-03-19 15:38:40 +0100900 current_sa_packets += 1;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000901 current_sa_bytes += payload_len_total;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100902
903 trace:
904 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
Damjan Marionc98275f2019-03-06 14:05:01 +0100905 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100906 esp_encrypt_trace_t *tr = vlib_add_trace (vm, node, b[0],
907 sizeof (*tr));
908 tr->sa_index = sa_index0;
909 tr->spi = sa0->spi;
Neale Ranns6afaae12019-07-17 15:07:14 +0000910 tr->seq = sa0->seq;
911 tr->sa_seq_hi = sa0->seq_hi;
Damjan Mariond709cbc2019-03-26 13:16:42 +0100912 tr->udp_encap = ipsec_sa_is_set_UDP_ENCAP (sa0);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100913 tr->crypto_alg = sa0->crypto_alg;
914 tr->integ_alg = sa0->integ_alg;
Damjan Marionc98275f2019-03-06 14:05:01 +0100915 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100916 /* next */
Damjan Marionc59b9a22019-03-19 15:38:40 +0100917 n_left -= 1;
Damjan Marionc98275f2019-03-06 14:05:01 +0100918 next += 1;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100919 b += 1;
Damjan Marionc98275f2019-03-06 14:05:01 +0100920 }
921
Damjan Marionc59b9a22019-03-19 15:38:40 +0100922 vlib_increment_combined_counter (&ipsec_sa_counters, thread_index,
923 current_sa_index, current_sa_packets,
924 current_sa_bytes);
Fan Zhangf5395782020-04-29 14:00:03 +0100925 if (!is_async)
926 {
927 esp_process_ops (vm, node, ptd->crypto_ops, bufs, nexts);
928 esp_process_chained_ops (vm, node, ptd->chained_crypto_ops, bufs, nexts,
929 ptd->chunks);
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000930
Fan Zhangf5395782020-04-29 14:00:03 +0100931 esp_process_ops (vm, node, ptd->integ_ops, bufs, nexts);
932 esp_process_chained_ops (vm, node, ptd->chained_integ_ops, bufs, nexts,
933 ptd->chunks);
934 }
935 else if (async_frame && async_frame->n_elts)
936 {
937 if (vnet_crypto_async_submit_open_frame (vm, async_frame) < 0)
938 esp_async_recycle_failed_submit (async_frame, b, next);
939 }
Damjan Marionc59b9a22019-03-19 15:38:40 +0100940
941 vlib_node_increment_counter (vm, node->node_index,
942 ESP_ENCRYPT_ERROR_RX_PKTS, frame->n_vectors);
943
944 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
945 return frame->n_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700946}
947
Fan Zhangf5395782020-04-29 14:00:03 +0100948always_inline uword
949esp_encrypt_post_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
950 vlib_frame_t * frame)
951{
952 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
953 u16 nexts[VLIB_FRAME_SIZE], *next = nexts;
954 u32 *from = vlib_frame_vector_args (frame);
955 u32 n_left = frame->n_vectors;
956
957 vlib_get_buffers (vm, from, b, n_left);
958
959 if (n_left >= 4)
960 {
961 vlib_prefetch_buffer_header (b[0], LOAD);
962 vlib_prefetch_buffer_header (b[1], LOAD);
963 vlib_prefetch_buffer_header (b[2], LOAD);
964 vlib_prefetch_buffer_header (b[3], LOAD);
965 }
966
967 while (n_left > 8)
968 {
969 vlib_prefetch_buffer_header (b[4], LOAD);
970 vlib_prefetch_buffer_header (b[5], LOAD);
971 vlib_prefetch_buffer_header (b[6], LOAD);
972 vlib_prefetch_buffer_header (b[7], LOAD);
973
974 next[0] = (esp_post_data (b[0]))->next_index;
975 next[1] = (esp_post_data (b[1]))->next_index;
976 next[2] = (esp_post_data (b[2]))->next_index;
977 next[3] = (esp_post_data (b[3]))->next_index;
978
979 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
980 {
981 if (b[0]->flags & VLIB_BUFFER_IS_TRACED)
982 {
983 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[0],
984 sizeof (*tr));
985 tr->next_index = next[0];
986 }
987 if (b[1]->flags & VLIB_BUFFER_IS_TRACED)
988 {
989 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[1],
990 sizeof (*tr));
991 tr->next_index = next[1];
992 }
993 if (b[2]->flags & VLIB_BUFFER_IS_TRACED)
994 {
995 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[2],
996 sizeof (*tr));
997 tr->next_index = next[2];
998 }
999 if (b[3]->flags & VLIB_BUFFER_IS_TRACED)
1000 {
1001 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[3],
1002 sizeof (*tr));
1003 tr->next_index = next[3];
1004 }
1005 }
1006
1007 b += 4;
1008 next += 4;
1009 n_left -= 4;
1010 }
1011
1012 while (n_left > 0)
1013 {
1014 next[0] = (esp_post_data (b[0]))->next_index;
1015 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
1016 {
1017 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[0],
1018 sizeof (*tr));
1019 tr->next_index = next[0];
1020 }
1021
1022 b += 1;
1023 next += 1;
1024 n_left -= 1;
1025 }
1026
1027 vlib_node_increment_counter (vm, node->node_index,
1028 ESP_ENCRYPT_ERROR_POST_RX_PKTS,
1029 frame->n_vectors);
1030 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
1031 return frame->n_vectors;
1032}
1033
Klement Sekerab8f35442018-10-29 13:38:19 +01001034VLIB_NODE_FN (esp4_encrypt_node) (vlib_main_t * vm,
1035 vlib_node_runtime_t * node,
1036 vlib_frame_t * from_frame)
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001037{
Fan Zhangf5395782020-04-29 14:00:03 +01001038 return esp_encrypt_inline (vm, node, from_frame, 0 /* is_ip6 */ , 0,
1039 esp_encrypt_async_next.esp4_post_next);
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001040}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001041
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -07001042/* *INDENT-OFF* */
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001043VLIB_REGISTER_NODE (esp4_encrypt_node) = {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001044 .name = "esp4-encrypt",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001045 .vector_size = sizeof (u32),
1046 .format_trace = format_esp_encrypt_trace,
1047 .type = VLIB_NODE_TYPE_INTERNAL,
1048
1049 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1050 .error_strings = esp_encrypt_error_strings,
1051
1052 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
1053 .next_nodes = {
Neale Rannsf62a8c02019-04-02 08:13:33 +00001054 [ESP_ENCRYPT_NEXT_DROP] = "ip4-drop",
1055 [ESP_ENCRYPT_NEXT_HANDOFF] = "esp4-encrypt-handoff",
1056 [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "interface-output",
Fan Zhangf5395782020-04-29 14:00:03 +01001057 [ESP_ENCRYPT_NEXT_PENDING] = "esp-encrypt-pending",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001058 },
1059};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -07001060/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001061
Fan Zhangf5395782020-04-29 14:00:03 +01001062VLIB_NODE_FN (esp4_encrypt_post_node) (vlib_main_t * vm,
1063 vlib_node_runtime_t * node,
1064 vlib_frame_t * from_frame)
1065{
1066 return esp_encrypt_post_inline (vm, node, from_frame);
1067}
1068
1069/* *INDENT-OFF* */
1070VLIB_REGISTER_NODE (esp4_encrypt_post_node) = {
1071 .name = "esp4-encrypt-post",
1072 .vector_size = sizeof (u32),
1073 .format_trace = format_esp_post_encrypt_trace,
1074 .type = VLIB_NODE_TYPE_INTERNAL,
1075 .sibling_of = "esp4-encrypt",
1076
1077 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1078 .error_strings = esp_encrypt_error_strings,
1079};
1080/* *INDENT-ON* */
1081
Klement Sekerab8f35442018-10-29 13:38:19 +01001082VLIB_NODE_FN (esp6_encrypt_node) (vlib_main_t * vm,
1083 vlib_node_runtime_t * node,
1084 vlib_frame_t * from_frame)
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001085{
Fan Zhangf5395782020-04-29 14:00:03 +01001086 return esp_encrypt_inline (vm, node, from_frame, 1 /* is_ip6 */ , 0,
1087 esp_encrypt_async_next.esp6_post_next);
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001088}
1089
1090/* *INDENT-OFF* */
1091VLIB_REGISTER_NODE (esp6_encrypt_node) = {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001092 .name = "esp6-encrypt",
1093 .vector_size = sizeof (u32),
1094 .format_trace = format_esp_encrypt_trace,
1095 .type = VLIB_NODE_TYPE_INTERNAL,
1096
1097 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1098 .error_strings = esp_encrypt_error_strings,
1099
1100 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
1101 .next_nodes = {
Neale Rannsf62a8c02019-04-02 08:13:33 +00001102 [ESP_ENCRYPT_NEXT_DROP] = "ip6-drop",
1103 [ESP_ENCRYPT_NEXT_HANDOFF] = "esp6-encrypt-handoff",
1104 [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "interface-output",
Fan Zhangf5395782020-04-29 14:00:03 +01001105 [ESP_ENCRYPT_NEXT_PENDING] = "esp-encrypt-pending",
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001106 },
1107};
1108/* *INDENT-ON* */
1109
Fan Zhangf5395782020-04-29 14:00:03 +01001110VLIB_NODE_FN (esp6_encrypt_post_node) (vlib_main_t * vm,
1111 vlib_node_runtime_t * node,
1112 vlib_frame_t * from_frame)
1113{
1114 return esp_encrypt_post_inline (vm, node, from_frame);
1115}
1116
1117/* *INDENT-OFF* */
1118VLIB_REGISTER_NODE (esp6_encrypt_post_node) = {
1119 .name = "esp6-encrypt-post",
1120 .vector_size = sizeof (u32),
1121 .format_trace = format_esp_post_encrypt_trace,
1122 .type = VLIB_NODE_TYPE_INTERNAL,
1123 .sibling_of = "esp6-encrypt",
1124
1125 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1126 .error_strings = esp_encrypt_error_strings,
1127};
1128/* *INDENT-ON* */
1129
Neale Ranns25edf142019-03-22 08:12:48 +00001130VLIB_NODE_FN (esp4_encrypt_tun_node) (vlib_main_t * vm,
1131 vlib_node_runtime_t * node,
1132 vlib_frame_t * from_frame)
1133{
Fan Zhangf5395782020-04-29 14:00:03 +01001134 return esp_encrypt_inline (vm, node, from_frame, 0 /* is_ip6 */ , 1,
1135 esp_encrypt_async_next.esp4_tun_post_next);
Neale Ranns25edf142019-03-22 08:12:48 +00001136}
1137
1138/* *INDENT-OFF* */
1139VLIB_REGISTER_NODE (esp4_encrypt_tun_node) = {
1140 .name = "esp4-encrypt-tun",
1141 .vector_size = sizeof (u32),
1142 .format_trace = format_esp_encrypt_trace,
1143 .type = VLIB_NODE_TYPE_INTERNAL,
1144
1145 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1146 .error_strings = esp_encrypt_error_strings,
Neale Rannsd7603d92019-03-28 08:56:10 +00001147
Neale Rannsf62a8c02019-04-02 08:13:33 +00001148 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
Neale Rannsd7603d92019-03-28 08:56:10 +00001149 .next_nodes = {
1150 [ESP_ENCRYPT_NEXT_DROP] = "ip4-drop",
Neale Ranns4a56f4e2019-12-23 04:10:25 +00001151 [ESP_ENCRYPT_NEXT_HANDOFF] = "esp4-encrypt-tun-handoff",
Neale Ranns4ec36c52020-03-31 09:21:29 -04001152 [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "adj-midchain-tx",
Fan Zhangf5395782020-04-29 14:00:03 +01001153 [ESP_ENCRYPT_NEXT_PENDING] = "esp-encrypt-pending",
Neale Rannsd7603d92019-03-28 08:56:10 +00001154 },
Neale Ranns25edf142019-03-22 08:12:48 +00001155};
1156
Fan Zhangf5395782020-04-29 14:00:03 +01001157VLIB_NODE_FN (esp4_encrypt_tun_post_node) (vlib_main_t * vm,
1158 vlib_node_runtime_t * node,
1159 vlib_frame_t * from_frame)
1160{
1161 return esp_encrypt_post_inline (vm, node, from_frame);
1162}
1163
1164/* *INDENT-OFF* */
1165VLIB_REGISTER_NODE (esp4_encrypt_tun_post_node) = {
1166 .name = "esp4-encrypt-tun-post",
1167 .vector_size = sizeof (u32),
1168 .format_trace = format_esp_post_encrypt_trace,
1169 .type = VLIB_NODE_TYPE_INTERNAL,
1170 .sibling_of = "esp4-encrypt-tun",
1171
1172 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1173 .error_strings = esp_encrypt_error_strings,
1174};
Neale Ranns25edf142019-03-22 08:12:48 +00001175/* *INDENT-ON* */
1176
1177VLIB_NODE_FN (esp6_encrypt_tun_node) (vlib_main_t * vm,
1178 vlib_node_runtime_t * node,
1179 vlib_frame_t * from_frame)
1180{
Fan Zhangf5395782020-04-29 14:00:03 +01001181 return esp_encrypt_inline (vm, node, from_frame, 1 /* is_ip6 */ , 1,
1182 esp_encrypt_async_next.esp6_tun_post_next);
Neale Ranns25edf142019-03-22 08:12:48 +00001183}
1184
1185/* *INDENT-OFF* */
1186VLIB_REGISTER_NODE (esp6_encrypt_tun_node) = {
1187 .name = "esp6-encrypt-tun",
1188 .vector_size = sizeof (u32),
1189 .format_trace = format_esp_encrypt_trace,
1190 .type = VLIB_NODE_TYPE_INTERNAL,
1191
1192 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1193 .error_strings = esp_encrypt_error_strings,
Neale Rannsd7603d92019-03-28 08:56:10 +00001194
Neale Rannsf62a8c02019-04-02 08:13:33 +00001195 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
Neale Rannsd7603d92019-03-28 08:56:10 +00001196 .next_nodes = {
1197 [ESP_ENCRYPT_NEXT_DROP] = "ip6-drop",
Neale Ranns4a56f4e2019-12-23 04:10:25 +00001198 [ESP_ENCRYPT_NEXT_HANDOFF] = "esp6-encrypt-tun-handoff",
Fan Zhangf5395782020-04-29 14:00:03 +01001199 [ESP_ENCRYPT_NEXT_PENDING] = "esp-encrypt-pending",
Neale Ranns4ec36c52020-03-31 09:21:29 -04001200 [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "adj-midchain-tx",
Neale Rannsd7603d92019-03-28 08:56:10 +00001201 },
Neale Ranns25edf142019-03-22 08:12:48 +00001202};
1203
Neale Ranns25edf142019-03-22 08:12:48 +00001204/* *INDENT-ON* */
1205
Fan Zhangf5395782020-04-29 14:00:03 +01001206VLIB_NODE_FN (esp6_encrypt_tun_post_node) (vlib_main_t * vm,
1207 vlib_node_runtime_t * node,
1208 vlib_frame_t * from_frame)
1209{
1210 return esp_encrypt_post_inline (vm, node, from_frame);
1211}
1212
1213/* *INDENT-OFF* */
1214VLIB_REGISTER_NODE (esp6_encrypt_tun_post_node) = {
1215 .name = "esp6-encrypt-tun-post",
1216 .vector_size = sizeof (u32),
1217 .format_trace = format_esp_post_encrypt_trace,
1218 .type = VLIB_NODE_TYPE_INTERNAL,
1219 .sibling_of = "esp6-encrypt-tun",
1220
1221 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1222 .error_strings = esp_encrypt_error_strings,
1223};
1224/* *INDENT-ON* */
1225
Matthew Smith401aedf2019-07-08 14:45:04 -05001226typedef struct
1227{
1228 u32 sa_index;
1229} esp_no_crypto_trace_t;
1230
1231static u8 *
1232format_esp_no_crypto_trace (u8 * s, va_list * args)
1233{
1234 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1235 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1236 esp_no_crypto_trace_t *t = va_arg (*args, esp_no_crypto_trace_t *);
1237
1238 s = format (s, "esp-no-crypto: sa-index %u", t->sa_index);
1239
1240 return s;
1241}
1242
1243enum
1244{
1245 ESP_NO_CRYPTO_NEXT_DROP,
1246 ESP_NO_CRYPTO_N_NEXT,
1247};
1248
1249enum
1250{
1251 ESP_NO_CRYPTO_ERROR_RX_PKTS,
1252};
1253
1254static char *esp_no_crypto_error_strings[] = {
1255 "Outbound ESP packets received",
1256};
1257
1258always_inline uword
1259esp_no_crypto_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1260 vlib_frame_t * frame)
1261{
1262 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
Matthew Smith401aedf2019-07-08 14:45:04 -05001263 u32 *from = vlib_frame_vector_args (frame);
1264 u32 n_left = frame->n_vectors;
1265
1266 vlib_get_buffers (vm, from, b, n_left);
1267
1268 while (n_left > 0)
1269 {
Matthew Smith401aedf2019-07-08 14:45:04 -05001270 u32 sa_index0;
1271
1272 /* packets are always going to be dropped, but get the sa_index */
Neale Ranns4ec36c52020-03-31 09:21:29 -04001273 sa_index0 = ipsec_tun_protect_get_sa_out
1274 (vnet_buffer (b[0])->ip.adj_index[VLIB_TX]);
Matthew Smith401aedf2019-07-08 14:45:04 -05001275
1276 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
1277 {
1278 esp_no_crypto_trace_t *tr = vlib_add_trace (vm, node, b[0],
1279 sizeof (*tr));
1280 tr->sa_index = sa_index0;
1281 }
1282
1283 n_left -= 1;
Matthew Smith401aedf2019-07-08 14:45:04 -05001284 b += 1;
1285 }
1286
1287 vlib_node_increment_counter (vm, node->node_index,
1288 ESP_NO_CRYPTO_ERROR_RX_PKTS, frame->n_vectors);
1289
Neale Ranns4ec36c52020-03-31 09:21:29 -04001290 vlib_buffer_enqueue_to_single_next (vm, node, from,
1291 ESP_NO_CRYPTO_NEXT_DROP,
1292 frame->n_vectors);
Matthew Smith401aedf2019-07-08 14:45:04 -05001293
1294 return frame->n_vectors;
1295}
1296
1297VLIB_NODE_FN (esp4_no_crypto_tun_node) (vlib_main_t * vm,
1298 vlib_node_runtime_t * node,
1299 vlib_frame_t * from_frame)
1300{
1301 return esp_no_crypto_inline (vm, node, from_frame);
1302}
1303
1304/* *INDENT-OFF* */
1305VLIB_REGISTER_NODE (esp4_no_crypto_tun_node) =
1306{
1307 .name = "esp4-no-crypto",
1308 .vector_size = sizeof (u32),
1309 .format_trace = format_esp_no_crypto_trace,
1310 .n_errors = ARRAY_LEN(esp_no_crypto_error_strings),
1311 .error_strings = esp_no_crypto_error_strings,
1312 .n_next_nodes = ESP_NO_CRYPTO_N_NEXT,
1313 .next_nodes = {
1314 [ESP_NO_CRYPTO_NEXT_DROP] = "ip4-drop",
1315 },
1316};
1317
Matthew Smith401aedf2019-07-08 14:45:04 -05001318VLIB_NODE_FN (esp6_no_crypto_tun_node) (vlib_main_t * vm,
1319 vlib_node_runtime_t * node,
1320 vlib_frame_t * from_frame)
1321{
1322 return esp_no_crypto_inline (vm, node, from_frame);
1323}
1324
1325/* *INDENT-OFF* */
1326VLIB_REGISTER_NODE (esp6_no_crypto_tun_node) =
1327{
1328 .name = "esp6-no-crypto",
1329 .vector_size = sizeof (u32),
1330 .format_trace = format_esp_no_crypto_trace,
1331 .n_errors = ARRAY_LEN(esp_no_crypto_error_strings),
1332 .error_strings = esp_no_crypto_error_strings,
1333 .n_next_nodes = ESP_NO_CRYPTO_N_NEXT,
1334 .next_nodes = {
1335 [ESP_NO_CRYPTO_NEXT_DROP] = "ip6-drop",
1336 },
1337};
Matthew Smith401aedf2019-07-08 14:45:04 -05001338/* *INDENT-ON* */
1339
Fan Zhangf5395782020-04-29 14:00:03 +01001340VLIB_NODE_FN (esp_encrypt_pending_node) (vlib_main_t * vm,
1341 vlib_node_runtime_t * node,
1342 vlib_frame_t * from_frame)
1343{
1344 return from_frame->n_vectors;
1345}
1346
1347/* *INDENT-OFF* */
1348VLIB_REGISTER_NODE (esp_encrypt_pending_node) = {
1349 .name = "esp-encrypt-pending",
1350 .vector_size = sizeof (u32),
1351 .type = VLIB_NODE_TYPE_INTERNAL,
1352
1353 .n_next_nodes = 0
1354};
1355/* *INDENT-ON* */
1356
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -07001357/*
1358 * fd.io coding-style-patch-verification: ON
1359 *
1360 * Local Variables:
1361 * eval: (c-set-style "gnu")
1362 * End:
1363 */