blob: 8ac0e1a2be7e27c7688e6656d5f69b2e3a20390d [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)") \
Neale Ranns6fdcc3d2021-10-08 07:30:47 +000053 _ (NO_BUFFERS, "no buffers (packet dropped)") \
54 _ (NO_PROTECTION, "no protecting SA (packet dropped)") \
55 _ (NO_ENCRYPTION, "no Encrypting SA (packet dropped)")
Ed Warnickecb9cada2015-12-08 15:45:58 -070056
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070057typedef enum
58{
Ed Warnickecb9cada2015-12-08 15:45:58 -070059#define _(sym,str) ESP_ENCRYPT_ERROR_##sym,
60 foreach_esp_encrypt_error
61#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070062 ESP_ENCRYPT_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -070063} esp_encrypt_error_t;
64
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070065static char *esp_encrypt_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -070066#define _(sym,string) string,
67 foreach_esp_encrypt_error
68#undef _
69};
70
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070071typedef struct
72{
Neale Ranns8d7c5022019-02-06 01:41:05 -080073 u32 sa_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -070074 u32 spi;
75 u32 seq;
Neale Ranns6afaae12019-07-17 15:07:14 +000076 u32 sa_seq_hi;
Klement Sekera4b089f22018-04-17 18:04:57 +020077 u8 udp_encap;
Ed Warnickecb9cada2015-12-08 15:45:58 -070078 ipsec_crypto_alg_t crypto_alg;
79 ipsec_integ_alg_t integ_alg;
80} esp_encrypt_trace_t;
81
Fan Zhangf5395782020-04-29 14:00:03 +010082typedef struct
83{
84 u32 next_index;
85} esp_encrypt_post_trace_t;
86
Ed Warnickecb9cada2015-12-08 15:45:58 -070087/* packet trace format function */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070088static u8 *
89format_esp_encrypt_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070090{
91 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
92 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070093 esp_encrypt_trace_t *t = va_arg (*args, esp_encrypt_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070094
Guillaume Solignac8f818cc2019-05-15 12:02:33 +020095 s =
96 format (s,
Neale Ranns6afaae12019-07-17 15:07:14 +000097 "esp: sa-index %d spi %u (0x%08x) seq %u sa-seq-hi %u crypto %U integrity %U%s",
98 t->sa_index, t->spi, t->spi, t->seq, t->sa_seq_hi,
99 format_ipsec_crypto_alg,
Guillaume Solignac8f818cc2019-05-15 12:02:33 +0200100 t->crypto_alg, format_ipsec_integ_alg, t->integ_alg,
101 t->udp_encap ? " udp-encap-enabled" : "");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102 return s;
103}
104
Fan Zhangf5395782020-04-29 14:00:03 +0100105static u8 *
106format_esp_post_encrypt_trace (u8 * s, va_list * args)
107{
108 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
109 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
110 esp_encrypt_post_trace_t *t = va_arg (*args, esp_encrypt_post_trace_t *);
111
112 s = format (s, "esp-post: next node index %u", t->next_index);
113 return s;
114}
115
Damjan Marionc59b9a22019-03-19 15:38:40 +0100116/* pad packet in input buffer */
117static_always_inline u8 *
Neale Rannsf16e9a52021-02-25 19:09:24 +0000118esp_add_footer_and_icv (vlib_main_t *vm, vlib_buffer_t **last, u8 esp_align,
119 u8 icv_sz, vlib_node_runtime_t *node,
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000120 u16 buffer_data_size, uword total_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121{
Damjan Marionc59b9a22019-03-19 15:38:40 +0100122 static const u8 pad_data[ESP_MAX_BLOCK_SIZE] = {
123 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
Milan Lenco7885c742020-08-20 13:23:09 +0200124 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x00,
Damjan Marionc59b9a22019-03-19 15:38:40 +0100125 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000127 u16 min_length = total_len + sizeof (esp_footer_t);
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500128 u16 new_length = round_pow2 (min_length, esp_align);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100129 u8 pad_bytes = new_length - min_length;
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000130 esp_footer_t *f = (esp_footer_t *) (vlib_buffer_get_current (last[0]) +
131 last[0]->current_length + pad_bytes);
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000132 u16 tail_sz = sizeof (esp_footer_t) + pad_bytes + icv_sz;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133
Benoît Ganne217ba5a2021-06-14 17:23:56 +0200134 if (last[0]->current_data + last[0]->current_length + tail_sz >
135 buffer_data_size)
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000136 {
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000137 u32 tmp_bi = 0;
138 if (vlib_buffer_alloc (vm, &tmp_bi, 1) != 1)
139 return 0;
Filip Tehlarc2c1bfd2020-02-13 07:49:30 +0000140
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000141 vlib_buffer_t *tmp = vlib_get_buffer (vm, tmp_bi);
142 last[0]->next_buffer = tmp_bi;
143 last[0]->flags |= VLIB_BUFFER_NEXT_PRESENT;
144 f = (esp_footer_t *) (vlib_buffer_get_current (tmp) + pad_bytes);
145 tmp->current_length += tail_sz;
146 last[0] = tmp;
147 }
148 else
149 last[0]->current_length += tail_sz;
150
151 f->pad_length = pad_bytes;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100152 if (pad_bytes)
Benoît Ganne4505f012019-12-07 09:14:27 -0700153 {
154 ASSERT (pad_bytes <= ESP_MAX_BLOCK_SIZE);
155 pad_bytes = clib_min (ESP_MAX_BLOCK_SIZE, pad_bytes);
156 clib_memcpy_fast ((u8 *) f - pad_bytes, pad_data, pad_bytes);
157 }
Damjan Marionc59b9a22019-03-19 15:38:40 +0100158
Damjan Marionc59b9a22019-03-19 15:38:40 +0100159 return &f->next_header;
160}
161
162static_always_inline void
163esp_update_ip4_hdr (ip4_header_t * ip4, u16 len, int is_transport, int is_udp)
164{
Neale Ranns1b582b82019-04-18 19:49:13 -0700165 ip_csum_t sum;
166 u16 old_len;
167
168 len = clib_net_to_host_u16 (len);
169 old_len = ip4->length;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100170
171 if (is_transport)
172 {
173 u8 prot = is_udp ? IP_PROTOCOL_UDP : IP_PROTOCOL_IPSEC_ESP;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100174
Neale Ranns1b582b82019-04-18 19:49:13 -0700175 sum = ip_csum_update (ip4->checksum, ip4->protocol,
176 prot, ip4_header_t, protocol);
177 ip4->protocol = prot;
178
179 sum = ip_csum_update (sum, old_len, len, ip4_header_t, length);
180 }
181 else
182 sum = ip_csum_update (ip4->checksum, old_len, len, ip4_header_t, length);
183
184 ip4->length = len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100185 ip4->checksum = ip_csum_fold (sum);
186}
187
188static_always_inline void
189esp_fill_udp_hdr (ipsec_sa_t * sa, udp_header_t * udp, u16 len)
190{
191 clib_memcpy_fast (udp, &sa->udp_hdr, sizeof (udp_header_t));
192 udp->length = clib_net_to_host_u16 (len);
193}
194
195static_always_inline u8
196ext_hdr_is_pre_esp (u8 nexthdr)
197{
198#ifdef CLIB_HAVE_VEC128
199 static const u8x16 ext_hdr_types = {
200 IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS,
201 IP_PROTOCOL_IPV6_ROUTE,
202 IP_PROTOCOL_IPV6_FRAGMENTATION,
203 };
204
205 return !u8x16_is_all_zero (ext_hdr_types == u8x16_splat (nexthdr));
206#else
207 return ((nexthdr ^ IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS) |
208 (nexthdr ^ IP_PROTOCOL_IPV6_ROUTE) |
Damjan Mariond0b26602021-10-31 20:02:19 +0100209 ((nexthdr ^ IP_PROTOCOL_IPV6_FRAGMENTATION) != 0));
Damjan Marionc59b9a22019-03-19 15:38:40 +0100210#endif
211}
212
213static_always_inline u8
Neale Ranns02950402019-12-20 00:54:57 +0000214esp_get_ip6_hdr_len (ip6_header_t * ip6, ip6_ext_header_t ** ext_hdr)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100215{
216 /* this code assumes that HbH, route and frag headers will be before
217 others, if that is not the case, they will end up encrypted */
Damjan Marionc59b9a22019-03-19 15:38:40 +0100218 u8 len = sizeof (ip6_header_t);
219 ip6_ext_header_t *p;
220
221 /* if next packet doesn't have ext header */
222 if (ext_hdr_is_pre_esp (ip6->protocol) == 0)
Neale Ranns02950402019-12-20 00:54:57 +0000223 {
224 *ext_hdr = NULL;
225 return len;
226 }
Damjan Marionc59b9a22019-03-19 15:38:40 +0100227
Ole Troan03092c12021-11-23 15:55:39 +0100228 p = ip6_next_header (ip6);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100229 len += ip6_ext_header_len (p);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100230 while (ext_hdr_is_pre_esp (p->next_hdr))
231 {
232 len += ip6_ext_header_len (p);
233 p = ip6_ext_next_header (p);
234 }
235
Neale Ranns02950402019-12-20 00:54:57 +0000236 *ext_hdr = p;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100237 return len;
238}
239
Damjan Marionc59b9a22019-03-19 15:38:40 +0100240static_always_inline void
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000241esp_process_chained_ops (vlib_main_t * vm, vlib_node_runtime_t * node,
242 vnet_crypto_op_t * ops, vlib_buffer_t * b[],
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000243 u16 * nexts, vnet_crypto_op_chunk_t * chunks,
244 u16 drop_next)
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000245{
246 u32 n_fail, n_ops = vec_len (ops);
247 vnet_crypto_op_t *op = ops;
248
249 if (n_ops == 0)
250 return;
251
252 n_fail = n_ops - vnet_crypto_process_chained_ops (vm, op, chunks, n_ops);
253
254 while (n_fail)
255 {
256 ASSERT (op - ops < n_ops);
257
258 if (op->status != VNET_CRYPTO_OP_STATUS_COMPLETED)
259 {
260 u32 bi = op->user_data;
261 b[bi]->error = node->errors[ESP_ENCRYPT_ERROR_CRYPTO_ENGINE_ERROR];
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000262 nexts[bi] = drop_next;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000263 n_fail--;
264 }
265 op++;
266 }
267}
268
269static_always_inline void
Damjan Marionc59b9a22019-03-19 15:38:40 +0100270esp_process_ops (vlib_main_t * vm, vlib_node_runtime_t * node,
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000271 vnet_crypto_op_t * ops, vlib_buffer_t * b[], u16 * nexts,
272 u16 drop_next)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100273{
274 u32 n_fail, n_ops = vec_len (ops);
275 vnet_crypto_op_t *op = ops;
276
277 if (n_ops == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278 return;
279
Damjan Marionc59b9a22019-03-19 15:38:40 +0100280 n_fail = n_ops - vnet_crypto_process_ops (vm, op, n_ops);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281
Damjan Marionc59b9a22019-03-19 15:38:40 +0100282 while (n_fail)
283 {
284 ASSERT (op - ops < n_ops);
285
286 if (op->status != VNET_CRYPTO_OP_STATUS_COMPLETED)
287 {
288 u32 bi = op->user_data;
289 b[bi]->error = node->errors[ESP_ENCRYPT_ERROR_CRYPTO_ENGINE_ERROR];
Neale Rannsb1fd80f2020-05-12 13:33:56 +0000290 nexts[bi] = drop_next;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100291 n_fail--;
292 }
293 op++;
294 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700295}
296
Fan Zhangf5395782020-04-29 14:00:03 +0100297static_always_inline u32
298esp_encrypt_chain_crypto (vlib_main_t * vm, ipsec_per_thread_data_t * ptd,
299 ipsec_sa_t * sa0, vlib_buffer_t * b,
300 vlib_buffer_t * lb, u8 icv_sz, u8 * start,
301 u32 start_len, u16 * n_ch)
302{
303 vnet_crypto_op_chunk_t *ch;
304 vlib_buffer_t *cb = b;
305 u32 n_chunks = 1;
306 u32 total_len;
307 vec_add2 (ptd->chunks, ch, 1);
308 total_len = ch->len = start_len;
309 ch->src = ch->dst = start;
310 cb = vlib_get_buffer (vm, cb->next_buffer);
311
312 while (1)
313 {
314 vec_add2 (ptd->chunks, ch, 1);
315 n_chunks += 1;
316 if (lb == cb)
317 total_len += ch->len = cb->current_length - icv_sz;
318 else
319 total_len += ch->len = cb->current_length;
320 ch->src = ch->dst = vlib_buffer_get_current (cb);
321
322 if (!(cb->flags & VLIB_BUFFER_NEXT_PRESENT))
323 break;
324
325 cb = vlib_get_buffer (vm, cb->next_buffer);
326 }
327
328 if (n_ch)
329 *n_ch = n_chunks;
330
331 return total_len;
332}
333
334static_always_inline u32
335esp_encrypt_chain_integ (vlib_main_t * vm, ipsec_per_thread_data_t * ptd,
336 ipsec_sa_t * sa0, vlib_buffer_t * b,
337 vlib_buffer_t * lb, u8 icv_sz, u8 * start,
338 u32 start_len, u8 * digest, u16 * n_ch)
339{
340 vnet_crypto_op_chunk_t *ch;
341 vlib_buffer_t *cb = b;
342 u32 n_chunks = 1;
343 u32 total_len;
344 vec_add2 (ptd->chunks, ch, 1);
345 total_len = ch->len = start_len;
346 ch->src = start;
347 cb = vlib_get_buffer (vm, cb->next_buffer);
348
349 while (1)
350 {
351 vec_add2 (ptd->chunks, ch, 1);
352 n_chunks += 1;
353 if (lb == cb)
354 {
355 total_len += ch->len = cb->current_length - icv_sz;
356 if (ipsec_sa_is_set_USE_ESN (sa0))
357 {
358 u32 seq_hi = clib_net_to_host_u32 (sa0->seq_hi);
359 clib_memcpy_fast (digest, &seq_hi, sizeof (seq_hi));
360 ch->len += sizeof (seq_hi);
361 total_len += sizeof (seq_hi);
362 }
363 }
364 else
365 total_len += ch->len = cb->current_length;
366 ch->src = vlib_buffer_get_current (cb);
367
368 if (!(cb->flags & VLIB_BUFFER_NEXT_PRESENT))
369 break;
370
371 cb = vlib_get_buffer (vm, cb->next_buffer);
372 }
373
374 if (n_ch)
375 *n_ch = n_chunks;
376
377 return total_len;
378}
379
380always_inline void
Benoît Ganne490b9272021-01-22 18:03:09 +0100381esp_prepare_sync_op (vlib_main_t *vm, ipsec_per_thread_data_t *ptd,
382 vnet_crypto_op_t **crypto_ops,
Neale Ranns5b891102021-06-28 13:31:28 +0000383 vnet_crypto_op_t **integ_ops, ipsec_sa_t *sa0, u32 seq_hi,
Neale Rannsf16e9a52021-02-25 19:09:24 +0000384 u8 *payload, u16 payload_len, u8 iv_sz, u8 icv_sz, u32 bi,
385 vlib_buffer_t **b, vlib_buffer_t *lb, u32 hdr_len,
386 esp_header_t *esp)
Fan Zhangf5395782020-04-29 14:00:03 +0100387{
388 if (sa0->crypto_enc_op_id)
389 {
390 vnet_crypto_op_t *op;
391 vec_add2_aligned (crypto_ops[0], op, 1, CLIB_CACHE_LINE_BYTES);
392 vnet_crypto_op_init (op, sa0->crypto_enc_op_id);
393
394 op->src = op->dst = payload;
395 op->key_index = sa0->crypto_key_index;
396 op->len = payload_len - icv_sz;
Neale Rannsf16e9a52021-02-25 19:09:24 +0000397 op->user_data = bi;
Fan Zhangf5395782020-04-29 14:00:03 +0100398
Benoît Ganne490b9272021-01-22 18:03:09 +0100399 if (ipsec_sa_is_set_IS_CTR (sa0))
Fan Zhangf5395782020-04-29 14:00:03 +0100400 {
Benoît Ganne490b9272021-01-22 18:03:09 +0100401 ASSERT (sizeof (u64) == iv_sz);
402 /* construct nonce in a scratch space in front of the IP header */
403 esp_ctr_nonce_t *nonce =
404 (esp_ctr_nonce_t *) (payload - sizeof (u64) - hdr_len -
405 sizeof (*nonce));
406 u64 *pkt_iv = (u64 *) (payload - sizeof (u64));
Fan Zhangf5395782020-04-29 14:00:03 +0100407
Benoît Ganne490b9272021-01-22 18:03:09 +0100408 if (ipsec_sa_is_set_IS_AEAD (sa0))
409 {
410 /* constuct aad in a scratch space in front of the nonce */
411 op->aad = (u8 *) nonce - sizeof (esp_aead_t);
Neale Ranns5b891102021-06-28 13:31:28 +0000412 op->aad_len = esp_aad_fill (op->aad, esp, sa0, seq_hi);
Benoît Ganne490b9272021-01-22 18:03:09 +0100413 op->tag = payload + op->len;
414 op->tag_len = 16;
415 }
416 else
417 {
418 nonce->ctr = clib_host_to_net_u32 (1);
419 }
Fan Zhangf5395782020-04-29 14:00:03 +0100420
Fan Zhangf5395782020-04-29 14:00:03 +0100421 nonce->salt = sa0->salt;
Benoît Ganne490b9272021-01-22 18:03:09 +0100422 nonce->iv = *pkt_iv = clib_host_to_net_u64 (sa0->ctr_iv_counter++);
Fan Zhangf5395782020-04-29 14:00:03 +0100423 op->iv = (u8 *) nonce;
424 }
425 else
426 {
427 op->iv = payload - iv_sz;
428 op->flags = VNET_CRYPTO_OP_FLAG_INIT_IV;
429 }
430
431 if (lb != b[0])
432 {
433 /* is chained */
434 op->flags |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS;
435 op->chunk_index = vec_len (ptd->chunks);
436 op->tag = vlib_buffer_get_tail (lb) - icv_sz;
437 esp_encrypt_chain_crypto (vm, ptd, sa0, b[0], lb, icv_sz, payload,
438 payload_len, &op->n_chunks);
439 }
440 }
441
442 if (sa0->integ_op_id)
443 {
444 vnet_crypto_op_t *op;
445 vec_add2_aligned (integ_ops[0], op, 1, CLIB_CACHE_LINE_BYTES);
446 vnet_crypto_op_init (op, sa0->integ_op_id);
447 op->src = payload - iv_sz - sizeof (esp_header_t);
448 op->digest = payload + payload_len - icv_sz;
449 op->key_index = sa0->integ_key_index;
450 op->digest_len = icv_sz;
451 op->len = payload_len - icv_sz + iv_sz + sizeof (esp_header_t);
Neale Rannsf16e9a52021-02-25 19:09:24 +0000452 op->user_data = bi;
Fan Zhangf5395782020-04-29 14:00:03 +0100453
454 if (lb != b[0])
455 {
456 /* is chained */
457 op->flags |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS;
458 op->chunk_index = vec_len (ptd->chunks);
459 op->digest = vlib_buffer_get_tail (lb) - icv_sz;
460
461 esp_encrypt_chain_integ (vm, ptd, sa0, b[0], lb, icv_sz,
462 payload - iv_sz - sizeof (esp_header_t),
463 payload_len + iv_sz +
464 sizeof (esp_header_t), op->digest,
465 &op->n_chunks);
466 }
467 else if (ipsec_sa_is_set_USE_ESN (sa0))
468 {
Neale Ranns5b891102021-06-28 13:31:28 +0000469 u32 tmp = clib_net_to_host_u32 (seq_hi);
470 clib_memcpy_fast (op->digest, &tmp, sizeof (seq_hi));
Fan Zhangf5395782020-04-29 14:00:03 +0100471 op->len += sizeof (seq_hi);
472 }
473 }
474}
475
Neale Rannsfc811342021-02-26 10:35:33 +0000476static_always_inline void
477esp_prepare_async_frame (vlib_main_t *vm, ipsec_per_thread_data_t *ptd,
478 vnet_crypto_async_frame_t *async_frame,
479 ipsec_sa_t *sa, vlib_buffer_t *b, esp_header_t *esp,
480 u8 *payload, u32 payload_len, u8 iv_sz, u8 icv_sz,
481 u32 bi, u16 next, u32 hdr_len, u16 async_next,
482 vlib_buffer_t *lb)
Fan Zhangf5395782020-04-29 14:00:03 +0100483{
484 esp_post_data_t *post = esp_post_data (b);
485 u8 *tag, *iv, *aad = 0;
486 u8 flag = 0;
487 u32 key_index;
488 i16 crypto_start_offset, integ_start_offset = 0;
489 u16 crypto_total_len, integ_total_len;
490
Fan Zhang18f0e312020-10-19 13:08:34 +0100491 post->next_index = next;
Fan Zhangf5395782020-04-29 14:00:03 +0100492
493 /* crypto */
494 crypto_start_offset = payload - b->data;
495 crypto_total_len = integ_total_len = payload_len - icv_sz;
496 tag = payload + crypto_total_len;
497
Fan Zhangf5395782020-04-29 14:00:03 +0100498 key_index = sa->linked_key_index;
499
Benoît Ganne490b9272021-01-22 18:03:09 +0100500 if (ipsec_sa_is_set_IS_CTR (sa))
Fan Zhangf5395782020-04-29 14:00:03 +0100501 {
Benoît Ganne490b9272021-01-22 18:03:09 +0100502 ASSERT (sizeof (u64) == iv_sz);
503 /* construct nonce in a scratch space in front of the IP header */
504 esp_ctr_nonce_t *nonce = (esp_ctr_nonce_t *) (payload - sizeof (u64) -
505 hdr_len - sizeof (*nonce));
506 u64 *pkt_iv = (u64 *) (payload - sizeof (u64));
507
508 if (ipsec_sa_is_set_IS_AEAD (sa))
509 {
510 /* constuct aad in a scratch space in front of the nonce */
511 aad = (u8 *) nonce - sizeof (esp_aead_t);
Neale Ranns5b891102021-06-28 13:31:28 +0000512 esp_aad_fill (aad, esp, sa, sa->seq_hi);
Benoît Ganne490b9272021-01-22 18:03:09 +0100513 key_index = sa->crypto_key_index;
514 }
515 else
516 {
517 nonce->ctr = clib_host_to_net_u32 (1);
518 }
519
520 nonce->salt = sa->salt;
521 nonce->iv = *pkt_iv = clib_host_to_net_u64 (sa->ctr_iv_counter++);
522 iv = (u8 *) nonce;
Fan Zhangf5395782020-04-29 14:00:03 +0100523 }
Benoît Ganne490b9272021-01-22 18:03:09 +0100524 else
Fan Zhangf5395782020-04-29 14:00:03 +0100525 {
Benoît Ganne490b9272021-01-22 18:03:09 +0100526 iv = payload - iv_sz;
527 flag |= VNET_CRYPTO_OP_FLAG_INIT_IV;
Fan Zhangf5395782020-04-29 14:00:03 +0100528 }
529
Benoît Ganne490b9272021-01-22 18:03:09 +0100530 if (lb != b)
531 {
532 /* chain */
533 flag |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS;
534 tag = vlib_buffer_get_tail (lb) - icv_sz;
535 crypto_total_len = esp_encrypt_chain_crypto (vm, ptd, sa, b, lb, icv_sz,
536 payload, payload_len, 0);
537 }
538
539 if (sa->integ_op_id)
540 {
541 integ_start_offset = crypto_start_offset - iv_sz - sizeof (esp_header_t);
542 integ_total_len += iv_sz + sizeof (esp_header_t);
543
544 if (b != lb)
545 {
546 integ_total_len = esp_encrypt_chain_integ (
547 vm, ptd, sa, b, lb, icv_sz,
548 payload - iv_sz - sizeof (esp_header_t),
549 payload_len + iv_sz + sizeof (esp_header_t), tag, 0);
550 }
551 else if (ipsec_sa_is_set_USE_ESN (sa))
552 {
553 u32 seq_hi = clib_net_to_host_u32 (sa->seq_hi);
554 clib_memcpy_fast (tag, &seq_hi, sizeof (seq_hi));
555 integ_total_len += sizeof (seq_hi);
556 }
557 }
558
Neale Rannsfc811342021-02-26 10:35:33 +0000559 /* this always succeeds because we know the frame is not full */
560 vnet_crypto_async_add_to_frame (vm, async_frame, key_index, crypto_total_len,
561 integ_total_len - crypto_total_len,
562 crypto_start_offset, integ_start_offset, bi,
563 async_next, iv, tag, aad, flag);
Fan Zhangf5395782020-04-29 14:00:03 +0100564}
565
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200566always_inline uword
Neale Ranns4a58e492020-12-21 13:19:10 +0000567esp_encrypt_inline (vlib_main_t *vm, vlib_node_runtime_t *node,
568 vlib_frame_t *frame, vnet_link_t lt, int is_tun,
Neale Rannsf16e9a52021-02-25 19:09:24 +0000569 u16 async_next_node)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700571 ipsec_main_t *im = &ipsec_main;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100572 ipsec_per_thread_data_t *ptd = vec_elt_at_index (im->ptd, vm->thread_index);
573 u32 *from = vlib_frame_vector_args (frame);
574 u32 n_left = frame->n_vectors;
575 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100576 u32 thread_index = vm->thread_index;
577 u16 buffer_data_size = vlib_buffer_get_default_data_size (vm);
578 u32 current_sa_index = ~0, current_sa_packets = 0;
579 u32 current_sa_bytes = 0, spi = 0;
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500580 u8 esp_align = 4, iv_sz = 0, icv_sz = 0;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100581 ipsec_sa_t *sa0 = 0;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000582 vlib_buffer_t *lb;
583 vnet_crypto_op_t **crypto_ops = &ptd->crypto_ops;
584 vnet_crypto_op_t **integ_ops = &ptd->integ_ops;
Neale Rannsfc811342021-02-26 10:35:33 +0000585 vnet_crypto_async_frame_t *async_frames[VNET_CRYPTO_ASYNC_OP_N_IDS];
Fan Zhangf5395782020-04-29 14:00:03 +0100586 int is_async = im->async_mode;
Neale Rannsfc811342021-02-26 10:35:33 +0000587 vnet_crypto_async_op_id_t async_op = ~0;
Neale Ranns4a58e492020-12-21 13:19:10 +0000588 u16 drop_next =
589 (lt == VNET_LINK_IP6 ? ESP_ENCRYPT_NEXT_DROP6 :
590 (lt == VNET_LINK_IP4 ? ESP_ENCRYPT_NEXT_DROP4 :
591 ESP_ENCRYPT_NEXT_DROP_MPLS));
592 u16 handoff_next = (lt == VNET_LINK_IP6 ?
593 ESP_ENCRYPT_NEXT_HANDOFF6 :
594 (lt == VNET_LINK_IP4 ? ESP_ENCRYPT_NEXT_HANDOFF4 :
595 ESP_ENCRYPT_NEXT_HANDOFF_MPLS));
Neale Rannsf16e9a52021-02-25 19:09:24 +0000596 vlib_buffer_t *sync_bufs[VLIB_FRAME_SIZE];
597 u16 sync_nexts[VLIB_FRAME_SIZE], *sync_next = sync_nexts, n_sync = 0;
598 u16 async_nexts[VLIB_FRAME_SIZE], *async_next = async_nexts, n_async = 0;
599 u16 noop_nexts[VLIB_FRAME_SIZE], *noop_next = noop_nexts, n_noop = 0;
600 u32 sync_bi[VLIB_FRAME_SIZE];
601 u32 noop_bi[VLIB_FRAME_SIZE];
602 esp_encrypt_error_t err;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700603
Damjan Marionc59b9a22019-03-19 15:38:40 +0100604 vlib_get_buffers (vm, from, b, n_left);
Neale Rannsf16e9a52021-02-25 19:09:24 +0000605
606 vec_reset_length (ptd->crypto_ops);
607 vec_reset_length (ptd->integ_ops);
608 vec_reset_length (ptd->chained_crypto_ops);
609 vec_reset_length (ptd->chained_integ_ops);
Neale Rannsfc811342021-02-26 10:35:33 +0000610 vec_reset_length (ptd->async_frames);
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000611 vec_reset_length (ptd->chunks);
Neale Rannsfc811342021-02-26 10:35:33 +0000612 clib_memset (async_frames, 0, sizeof (async_frames));
Damjan Marionc59b9a22019-03-19 15:38:40 +0100613
614 while (n_left > 0)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700615 {
Zhiyong Yang1cff6432019-04-30 05:33:53 -0400616 u32 sa_index0;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100617 dpo_id_t *dpo;
618 esp_header_t *esp;
619 u8 *payload, *next_hdr_ptr;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000620 u16 payload_len, payload_len_total, n_bufs;
Neale Ranns4ec36c52020-03-31 09:21:29 -0400621 u32 hdr_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700622
Neale Rannsf16e9a52021-02-25 19:09:24 +0000623 err = ESP_ENCRYPT_ERROR_RX_PKTS;
624
Damjan Marionc59b9a22019-03-19 15:38:40 +0100625 if (n_left > 2)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700626 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100627 u8 *p;
628 vlib_prefetch_buffer_header (b[2], LOAD);
629 p = vlib_buffer_get_current (b[1]);
Damjan Marionaf7fb042021-07-15 11:54:41 +0200630 clib_prefetch_load (p);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100631 p -= CLIB_CACHE_LINE_BYTES;
Damjan Marionaf7fb042021-07-15 11:54:41 +0200632 clib_prefetch_load (p);
Neale Ranns123b5eb2020-10-16 14:03:55 +0000633 /* speculate that the trailer goes in the first buffer */
634 CLIB_PREFETCH (vlib_buffer_get_tail (b[1]),
635 CLIB_CACHE_LINE_BYTES, LOAD);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700636 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700637
Neale Ranns25edf142019-03-22 08:12:48 +0000638 if (is_tun)
639 {
640 /* we are on a ipsec tunnel's feature arc */
Neale Ranns28287212019-12-16 00:53:11 +0000641 vnet_buffer (b[0])->ipsec.sad_index =
642 sa_index0 = ipsec_tun_protect_get_sa_out
643 (vnet_buffer (b[0])->ip.adj_index[VLIB_TX]);
Neale Ranns6fdcc3d2021-10-08 07:30:47 +0000644
645 if (PREDICT_FALSE (INDEX_INVALID == sa_index0))
646 {
647 err = ESP_ENCRYPT_ERROR_NO_PROTECTION;
648 esp_set_next_index (b[0], node, err, n_noop, noop_nexts,
649 drop_next);
650 goto trace;
651 }
Neale Ranns25edf142019-03-22 08:12:48 +0000652 }
653 else
654 sa_index0 = vnet_buffer (b[0])->ipsec.sad_index;
655
656 if (sa_index0 != current_sa_index)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100657 {
Damjan Marion21f265f2019-06-05 15:45:50 +0200658 if (current_sa_packets)
659 vlib_increment_combined_counter (&ipsec_sa_counters, thread_index,
660 current_sa_index,
661 current_sa_packets,
662 current_sa_bytes);
663 current_sa_packets = current_sa_bytes = 0;
664
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000665 sa0 = ipsec_sa_get (sa_index0);
Neale Ranns123b5eb2020-10-16 14:03:55 +0000666
Neale Ranns6fdcc3d2021-10-08 07:30:47 +0000667 if (PREDICT_FALSE ((sa0->crypto_alg == IPSEC_CRYPTO_ALG_NONE &&
668 sa0->integ_alg == IPSEC_INTEG_ALG_NONE) &&
669 !ipsec_sa_is_set_NO_ALGO_NO_DROP (sa0)))
670 {
671 err = ESP_ENCRYPT_ERROR_NO_ENCRYPTION;
672 esp_set_next_index (b[0], node, err, n_noop, noop_nexts,
673 drop_next);
674 goto trace;
675 }
Neale Ranns123b5eb2020-10-16 14:03:55 +0000676 /* fetch the second cacheline ASAP */
Damjan Marionaf7fb042021-07-15 11:54:41 +0200677 clib_prefetch_load (sa0->cacheline1);
Neale Ranns123b5eb2020-10-16 14:03:55 +0000678
Damjan Marionc59b9a22019-03-19 15:38:40 +0100679 current_sa_index = sa_index0;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100680 spi = clib_net_to_host_u32 (sa0->spi);
Christian Hoppsfb7e7ed2019-11-03 07:02:15 -0500681 esp_align = sa0->esp_block_align;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200682 icv_sz = sa0->integ_icv_size;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100683 iv_sz = sa0->crypto_iv_size;
Neale Rannsf16e9a52021-02-25 19:09:24 +0000684 is_async = im->async_mode | ipsec_sa_is_set_IS_ASYNC (sa0);
Neale Rannsfc811342021-02-26 10:35:33 +0000685 }
Fan Zhangf5395782020-04-29 14:00:03 +0100686
Neale Ranns1a52d372021-02-04 11:33:32 +0000687 if (PREDICT_FALSE (~0 == sa0->thread_index))
Neale Rannsf62a8c02019-04-02 08:13:33 +0000688 {
689 /* this is the first packet to use this SA, claim the SA
690 * for this thread. this could happen simultaneously on
691 * another thread */
Neale Ranns1a52d372021-02-04 11:33:32 +0000692 clib_atomic_cmp_and_swap (&sa0->thread_index, ~0,
Neale Rannsf62a8c02019-04-02 08:13:33 +0000693 ipsec_sa_assign_thread (thread_index));
694 }
695
Neale Ranns1a52d372021-02-04 11:33:32 +0000696 if (PREDICT_FALSE (thread_index != sa0->thread_index))
Neale Rannsf62a8c02019-04-02 08:13:33 +0000697 {
Neale Rannsaa7d7662021-02-10 08:42:49 +0000698 vnet_buffer (b[0])->ipsec.thread_index = sa0->thread_index;
Neale Rannsf16e9a52021-02-25 19:09:24 +0000699 err = ESP_ENCRYPT_ERROR_HANDOFF;
700 esp_set_next_index (b[0], node, err, n_noop, noop_nexts,
701 handoff_next);
Neale Rannsf62a8c02019-04-02 08:13:33 +0000702 goto trace;
703 }
704
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000705 lb = b[0];
706 n_bufs = vlib_buffer_chain_linearize (vm, b[0]);
707 if (n_bufs == 0)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100708 {
Neale Rannsf16e9a52021-02-25 19:09:24 +0000709 err = ESP_ENCRYPT_ERROR_NO_BUFFERS;
710 esp_set_next_index (b[0], node, err, n_noop, noop_nexts, drop_next);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100711 goto trace;
712 }
713
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000714 if (n_bufs > 1)
715 {
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000716 /* find last buffer in the chain */
717 while (lb->flags & VLIB_BUFFER_NEXT_PRESENT)
718 lb = vlib_get_buffer (vm, lb->next_buffer);
719 }
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000720
Damjan Marionc59b9a22019-03-19 15:38:40 +0100721 if (PREDICT_FALSE (esp_seq_advance (sa0)))
722 {
Neale Rannsf16e9a52021-02-25 19:09:24 +0000723 err = ESP_ENCRYPT_ERROR_SEQ_CYCLED;
724 esp_set_next_index (b[0], node, err, n_noop, noop_nexts, drop_next);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100725 goto trace;
726 }
727
728 /* space for IV */
729 hdr_len = iv_sz;
730
Damjan Mariond709cbc2019-03-26 13:16:42 +0100731 if (ipsec_sa_is_set_IS_TUNNEL (sa0))
Damjan Marionc59b9a22019-03-19 15:38:40 +0100732 {
733 payload = vlib_buffer_get_current (b[0]);
Neale Rannsf16e9a52021-02-25 19:09:24 +0000734 next_hdr_ptr = esp_add_footer_and_icv (
735 vm, &lb, esp_align, icv_sz, node, buffer_data_size,
736 vlib_buffer_length_in_chain (vm, b[0]));
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000737 if (!next_hdr_ptr)
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000738 {
Neale Rannsf16e9a52021-02-25 19:09:24 +0000739 err = ESP_ENCRYPT_ERROR_NO_BUFFERS;
740 esp_set_next_index (b[0], node, err, n_noop, noop_nexts,
741 drop_next);
Filip Tehlare4e8c6b2020-02-13 07:49:30 +0000742 goto trace;
743 }
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000744 b[0]->flags &= ~VLIB_BUFFER_TOTAL_LENGTH_VALID;
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000745 payload_len = b[0]->current_length;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000746 payload_len_total = vlib_buffer_length_in_chain (vm, b[0]);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100747
748 /* ESP header */
749 hdr_len += sizeof (*esp);
750 esp = (esp_header_t *) (payload - hdr_len);
751
752 /* optional UDP header */
Damjan Mariond709cbc2019-03-26 13:16:42 +0100753 if (ipsec_sa_is_set_UDP_ENCAP (sa0))
Damjan Marionc98275f2019-03-06 14:05:01 +0100754 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100755 hdr_len += sizeof (udp_header_t);
756 esp_fill_udp_hdr (sa0, (udp_header_t *) (payload - hdr_len),
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000757 payload_len_total + hdr_len);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100758 }
759
760 /* IP header */
Damjan Mariond709cbc2019-03-26 13:16:42 +0100761 if (ipsec_sa_is_set_IS_TUNNEL_V6 (sa0))
Damjan Marionc59b9a22019-03-19 15:38:40 +0100762 {
763 ip6_header_t *ip6;
764 u16 len = sizeof (ip6_header_t);
765 hdr_len += len;
766 ip6 = (ip6_header_t *) (payload - hdr_len);
Neale Ranns041add72020-01-02 04:06:10 +0000767 clib_memcpy_fast (ip6, &sa0->ip6_hdr, sizeof (ip6_header_t));
768
Neale Ranns4a58e492020-12-21 13:19:10 +0000769 if (VNET_LINK_IP6 == lt)
Neale Ranns041add72020-01-02 04:06:10 +0000770 {
771 *next_hdr_ptr = IP_PROTOCOL_IPV6;
772 tunnel_encap_fixup_6o6 (sa0->tunnel_flags,
773 (const ip6_header_t *) payload,
774 ip6);
775 }
Neale Ranns4a58e492020-12-21 13:19:10 +0000776 else if (VNET_LINK_IP4 == lt)
Neale Ranns041add72020-01-02 04:06:10 +0000777 {
778 *next_hdr_ptr = IP_PROTOCOL_IP_IN_IP;
Neale Rannsa91cb452021-02-04 11:02:52 +0000779 tunnel_encap_fixup_4o6 (sa0->tunnel_flags, b[0],
780 (const ip4_header_t *) payload, ip6);
Neale Ranns041add72020-01-02 04:06:10 +0000781 }
Neale Ranns4a58e492020-12-21 13:19:10 +0000782 else if (VNET_LINK_MPLS == lt)
783 {
784 *next_hdr_ptr = IP_PROTOCOL_MPLS_IN_IP;
785 tunnel_encap_fixup_mplso6 (
Neale Rannsa91cb452021-02-04 11:02:52 +0000786 sa0->tunnel_flags, b[0],
787 (const mpls_unicast_header_t *) payload, ip6);
Neale Ranns4a58e492020-12-21 13:19:10 +0000788 }
789 else
790 ASSERT (0);
791
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000792 len = payload_len_total + hdr_len - len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100793 ip6->payload_length = clib_net_to_host_u16 (len);
Neale Ranns45d6d832021-01-19 13:38:47 +0000794 b[0]->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Damjan Marionc98275f2019-03-06 14:05:01 +0100795 }
796 else
797 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100798 ip4_header_t *ip4;
799 u16 len = sizeof (ip4_header_t);
800 hdr_len += len;
801 ip4 = (ip4_header_t *) (payload - hdr_len);
Neale Ranns041add72020-01-02 04:06:10 +0000802 clib_memcpy_fast (ip4, &sa0->ip4_hdr, sizeof (ip4_header_t));
803
Neale Ranns4a58e492020-12-21 13:19:10 +0000804 if (VNET_LINK_IP6 == lt)
Neale Ranns041add72020-01-02 04:06:10 +0000805 {
806 *next_hdr_ptr = IP_PROTOCOL_IPV6;
807 tunnel_encap_fixup_6o4_w_chksum (sa0->tunnel_flags,
808 (const ip6_header_t *)
809 payload, ip4);
810 }
Neale Ranns4a58e492020-12-21 13:19:10 +0000811 else if (VNET_LINK_IP4 == lt)
Neale Ranns041add72020-01-02 04:06:10 +0000812 {
813 *next_hdr_ptr = IP_PROTOCOL_IP_IN_IP;
814 tunnel_encap_fixup_4o4_w_chksum (sa0->tunnel_flags,
815 (const ip4_header_t *)
816 payload, ip4);
817 }
Neale Ranns4a58e492020-12-21 13:19:10 +0000818 else if (VNET_LINK_MPLS == lt)
819 {
820 *next_hdr_ptr = IP_PROTOCOL_MPLS_IN_IP;
821 tunnel_encap_fixup_mplso4_w_chksum (
822 sa0->tunnel_flags, (const mpls_unicast_header_t *) payload,
823 ip4);
824 }
825 else
826 ASSERT (0);
827
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000828 len = payload_len_total + hdr_len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100829 esp_update_ip4_hdr (ip4, len, /* is_transport */ 0, 0);
Damjan Marionc98275f2019-03-06 14:05:01 +0100830 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100831
Neale Ranns72f2a3a2019-06-17 15:43:38 +0000832 dpo = &sa0->dpo;
Neale Ranns25edf142019-03-22 08:12:48 +0000833 if (!is_tun)
834 {
Neale Rannsf16e9a52021-02-25 19:09:24 +0000835 sync_next[0] = dpo->dpoi_next_node;
Neale Ranns25edf142019-03-22 08:12:48 +0000836 vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = dpo->dpoi_index;
837 }
Neale Ranns4ec36c52020-03-31 09:21:29 -0400838 else
Neale Rannsf16e9a52021-02-25 19:09:24 +0000839 sync_next[0] = ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT;
Neale Ranns9ec846c2021-02-09 14:04:02 +0000840 b[0]->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Damjan Marionc98275f2019-03-06 14:05:01 +0100841 }
Damjan Marionc59b9a22019-03-19 15:38:40 +0100842 else /* transport mode */
Damjan Marionc98275f2019-03-06 14:05:01 +0100843 {
Ole Troan03092c12021-11-23 15:55:39 +0100844 u8 *l2_hdr, l2_len, *ip_hdr;
845 u16 ip_len;
Neale Ranns02950402019-12-20 00:54:57 +0000846 ip6_ext_header_t *ext_hdr;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100847 udp_header_t *udp = 0;
Alexander Chernavinb0d2eda2020-03-25 10:56:52 -0400848 u16 udp_len = 0;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100849 u8 *old_ip_hdr = vlib_buffer_get_current (b[0]);
Damjan Marionc98275f2019-03-06 14:05:01 +0100850
Ole Troan03092c12021-11-23 15:55:39 +0100851 /*
852 * Get extension header chain length. It might be longer than the
853 * buffer's pre_data area.
854 */
Neale Ranns4a58e492020-12-21 13:19:10 +0000855 ip_len =
856 (VNET_LINK_IP6 == lt ?
857 esp_get_ip6_hdr_len ((ip6_header_t *) old_ip_hdr, &ext_hdr) :
858 ip4_header_bytes ((ip4_header_t *) old_ip_hdr));
Ole Troan03092c12021-11-23 15:55:39 +0100859 if ((old_ip_hdr - ip_len) < &b[0]->pre_data[0])
860 {
861 err = ESP_ENCRYPT_ERROR_NO_BUFFERS;
862 esp_set_next_index (b[0], node, err, n_noop, noop_nexts,
863 drop_next);
864 goto trace;
865 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100866
Damjan Marionc59b9a22019-03-19 15:38:40 +0100867 vlib_buffer_advance (b[0], ip_len);
868 payload = vlib_buffer_get_current (b[0]);
Neale Rannsf16e9a52021-02-25 19:09:24 +0000869 next_hdr_ptr = esp_add_footer_and_icv (
870 vm, &lb, esp_align, icv_sz, node, buffer_data_size,
871 vlib_buffer_length_in_chain (vm, b[0]));
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000872 if (!next_hdr_ptr)
Fan Zhang18f0e312020-10-19 13:08:34 +0100873 {
Neale Rannsf16e9a52021-02-25 19:09:24 +0000874 err = ESP_ENCRYPT_ERROR_NO_BUFFERS;
875 esp_set_next_index (b[0], node, err, n_noop, noop_nexts,
876 drop_next);
Fan Zhang18f0e312020-10-19 13:08:34 +0100877 goto trace;
878 }
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000879
880 b[0]->flags &= ~VLIB_BUFFER_TOTAL_LENGTH_VALID;
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000881 payload_len = b[0]->current_length;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000882 payload_len_total = vlib_buffer_length_in_chain (vm, b[0]);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100883
884 /* ESP header */
885 hdr_len += sizeof (*esp);
886 esp = (esp_header_t *) (payload - hdr_len);
887
888 /* optional UDP header */
Damjan Mariond709cbc2019-03-26 13:16:42 +0100889 if (ipsec_sa_is_set_UDP_ENCAP (sa0))
Damjan Marionc98275f2019-03-06 14:05:01 +0100890 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100891 hdr_len += sizeof (udp_header_t);
892 udp = (udp_header_t *) (payload - hdr_len);
Damjan Marionc98275f2019-03-06 14:05:01 +0100893 }
894
Damjan Marionc59b9a22019-03-19 15:38:40 +0100895 /* IP header */
896 hdr_len += ip_len;
897 ip_hdr = payload - hdr_len;
898
899 /* L2 header */
Neale Rannsc87b66c2019-02-07 07:26:12 -0800900 if (!is_tun)
901 {
902 l2_len = vnet_buffer (b[0])->ip.save_rewrite_length;
903 hdr_len += l2_len;
904 l2_hdr = payload - hdr_len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100905
Neale Rannsc87b66c2019-02-07 07:26:12 -0800906 /* copy l2 and ip header */
907 clib_memcpy_le32 (l2_hdr, old_ip_hdr - l2_len, l2_len);
908 }
909 else
910 l2_len = 0;
911
Neale Ranns4a58e492020-12-21 13:19:10 +0000912 if (VNET_LINK_IP6 == lt)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100913 {
Neale Ranns02950402019-12-20 00:54:57 +0000914 ip6_header_t *ip6 = (ip6_header_t *) (old_ip_hdr);
915 if (PREDICT_TRUE (NULL == ext_hdr))
916 {
917 *next_hdr_ptr = ip6->protocol;
918 ip6->protocol = IP_PROTOCOL_IPSEC_ESP;
919 }
920 else
921 {
922 *next_hdr_ptr = ext_hdr->next_hdr;
923 ext_hdr->next_hdr = IP_PROTOCOL_IPSEC_ESP;
924 }
Neale Rannsd207fd72019-04-18 17:18:12 -0700925 ip6->payload_length =
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000926 clib_host_to_net_u16 (payload_len_total + hdr_len - l2_len -
Neale Ranns02950402019-12-20 00:54:57 +0000927 sizeof (ip6_header_t));
Damjan Marionc59b9a22019-03-19 15:38:40 +0100928 }
Neale Ranns4a58e492020-12-21 13:19:10 +0000929 else if (VNET_LINK_IP4 == lt)
Damjan Marionc98275f2019-03-06 14:05:01 +0100930 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100931 u16 len;
Neale Ranns02950402019-12-20 00:54:57 +0000932 ip4_header_t *ip4 = (ip4_header_t *) (old_ip_hdr);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100933 *next_hdr_ptr = ip4->protocol;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000934 len = payload_len_total + hdr_len - l2_len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100935 if (udp)
936 {
937 esp_update_ip4_hdr (ip4, len, /* is_transport */ 1, 1);
Alexander Chernavinb0d2eda2020-03-25 10:56:52 -0400938 udp_len = len - ip_len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100939 }
940 else
941 esp_update_ip4_hdr (ip4, len, /* is_transport */ 1, 0);
Damjan Marionc98275f2019-03-06 14:05:01 +0100942 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100943
Neale Ranns02950402019-12-20 00:54:57 +0000944 clib_memcpy_le64 (ip_hdr, old_ip_hdr, ip_len);
945
Alexander Chernavinb0d2eda2020-03-25 10:56:52 -0400946 if (udp)
947 {
948 esp_fill_udp_hdr (sa0, udp, udp_len);
949 }
950
Neale Rannsf16e9a52021-02-25 19:09:24 +0000951 sync_next[0] = ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT;
Damjan Marionc98275f2019-03-06 14:05:01 +0100952 }
953
PiotrX Kleskifdca4dd2020-05-05 14:14:22 +0200954 if (lb != b[0])
955 {
956 crypto_ops = &ptd->chained_crypto_ops;
957 integ_ops = &ptd->chained_integ_ops;
958 }
959 else
960 {
961 crypto_ops = &ptd->crypto_ops;
962 integ_ops = &ptd->integ_ops;
963 }
964
Damjan Marionc59b9a22019-03-19 15:38:40 +0100965 esp->spi = spi;
966 esp->seq = clib_net_to_host_u32 (sa0->seq);
Damjan Marionc98275f2019-03-06 14:05:01 +0100967
Fan Zhangf5395782020-04-29 14:00:03 +0100968 if (is_async)
Matthew Smith51d56ba2021-06-04 09:18:37 -0500969 {
970 async_op = sa0->crypto_async_enc_op_id;
971
972 /* get a frame for this op if we don't yet have one or it's full
973 */
974 if (NULL == async_frames[async_op] ||
975 vnet_crypto_async_frame_is_full (async_frames[async_op]))
976 {
977 async_frames[async_op] =
978 vnet_crypto_async_get_frame (vm, async_op);
979 /* Save the frame to the list we'll submit at the end */
980 vec_add1 (ptd->async_frames, async_frames[async_op]);
981 }
982
983 esp_prepare_async_frame (vm, ptd, async_frames[async_op], sa0, b[0],
984 esp, payload, payload_len, iv_sz, icv_sz,
985 from[b - bufs], sync_next[0], hdr_len,
986 async_next_node, lb);
987 }
Fan Zhangf5395782020-04-29 14:00:03 +0100988 else
Neale Ranns5b891102021-06-28 13:31:28 +0000989 esp_prepare_sync_op (vm, ptd, crypto_ops, integ_ops, sa0, sa0->seq_hi,
990 payload, payload_len, iv_sz, icv_sz, n_sync, b,
991 lb, hdr_len, esp);
Damjan Marionc98275f2019-03-06 14:05:01 +0100992
Damjan Marionc59b9a22019-03-19 15:38:40 +0100993 vlib_buffer_advance (b[0], 0LL - hdr_len);
Damjan Marionc98275f2019-03-06 14:05:01 +0100994
Damjan Marionc59b9a22019-03-19 15:38:40 +0100995 current_sa_packets += 1;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000996 current_sa_bytes += payload_len_total;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100997
998 trace:
999 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
Damjan Marionc98275f2019-03-06 14:05:01 +01001000 {
Damjan Marionc59b9a22019-03-19 15:38:40 +01001001 esp_encrypt_trace_t *tr = vlib_add_trace (vm, node, b[0],
1002 sizeof (*tr));
Neale Ranns6fdcc3d2021-10-08 07:30:47 +00001003 if (INDEX_INVALID == sa_index0)
1004 clib_memset_u8 (tr, 0xff, sizeof (*tr));
1005 else
1006 {
1007 tr->sa_index = sa_index0;
1008 tr->spi = sa0->spi;
1009 tr->spi = sa0->spi;
1010 tr->seq = sa0->seq;
1011 tr->sa_seq_hi = sa0->seq_hi;
1012 tr->udp_encap = ipsec_sa_is_set_UDP_ENCAP (sa0);
1013 tr->crypto_alg = sa0->crypto_alg;
1014 tr->integ_alg = sa0->integ_alg;
1015 }
Damjan Marionc98275f2019-03-06 14:05:01 +01001016 }
Neale Rannsf16e9a52021-02-25 19:09:24 +00001017
Damjan Marionc98275f2019-03-06 14:05:01 +01001018 /* next */
Neale Rannsf16e9a52021-02-25 19:09:24 +00001019 if (ESP_ENCRYPT_ERROR_RX_PKTS != err)
1020 {
1021 noop_bi[n_noop] = from[b - bufs];
1022 n_noop++;
1023 noop_next++;
1024 }
1025 else if (!is_async)
1026 {
1027 sync_bi[n_sync] = from[b - bufs];
1028 sync_bufs[n_sync] = b[0];
1029 n_sync++;
1030 sync_next++;
1031 }
1032 else
1033 {
1034 n_async++;
1035 async_next++;
1036 }
Damjan Marionc59b9a22019-03-19 15:38:40 +01001037 n_left -= 1;
Damjan Marionc59b9a22019-03-19 15:38:40 +01001038 b += 1;
Damjan Marionc98275f2019-03-06 14:05:01 +01001039 }
1040
Neale Ranns6fdcc3d2021-10-08 07:30:47 +00001041 if (INDEX_INVALID != current_sa_index)
1042 vlib_increment_combined_counter (&ipsec_sa_counters, thread_index,
1043 current_sa_index, current_sa_packets,
1044 current_sa_bytes);
Neale Rannsf16e9a52021-02-25 19:09:24 +00001045 if (n_sync)
Fan Zhangf5395782020-04-29 14:00:03 +01001046 {
Neale Rannsf16e9a52021-02-25 19:09:24 +00001047 esp_process_ops (vm, node, ptd->crypto_ops, sync_bufs, sync_nexts,
1048 drop_next);
1049 esp_process_chained_ops (vm, node, ptd->chained_crypto_ops, sync_bufs,
1050 sync_nexts, ptd->chunks, drop_next);
Filip Tehlarefcad1a2020-02-04 09:36:04 +00001051
Neale Rannsf16e9a52021-02-25 19:09:24 +00001052 esp_process_ops (vm, node, ptd->integ_ops, sync_bufs, sync_nexts,
1053 drop_next);
1054 esp_process_chained_ops (vm, node, ptd->chained_integ_ops, sync_bufs,
1055 sync_nexts, ptd->chunks, drop_next);
Neale Rannsfc811342021-02-26 10:35:33 +00001056
Neale Rannsf16e9a52021-02-25 19:09:24 +00001057 vlib_buffer_enqueue_to_next (vm, node, sync_bi, sync_nexts, n_sync);
Fan Zhangf5395782020-04-29 14:00:03 +01001058 }
Neale Rannsf16e9a52021-02-25 19:09:24 +00001059 if (n_async)
Fan Zhangf5395782020-04-29 14:00:03 +01001060 {
Neale Rannsfc811342021-02-26 10:35:33 +00001061 /* submit all of the open frames */
1062 vnet_crypto_async_frame_t **async_frame;
1063
1064 vec_foreach (async_frame, ptd->async_frames)
Fan Zhang18f0e312020-10-19 13:08:34 +01001065 {
Neale Rannsfc811342021-02-26 10:35:33 +00001066 if (vnet_crypto_async_submit_open_frame (vm, *async_frame) < 0)
1067 {
Neale Rannsf16e9a52021-02-25 19:09:24 +00001068 n_noop += esp_async_recycle_failed_submit (
1069 vm, *async_frame, node, ESP_ENCRYPT_ERROR_CRYPTO_ENGINE_ERROR,
1070 n_sync, noop_bi, noop_nexts, drop_next);
Neale Rannsfc811342021-02-26 10:35:33 +00001071 vnet_crypto_async_reset_frame (*async_frame);
1072 vnet_crypto_async_free_frame (vm, *async_frame);
1073 }
Fan Zhang18f0e312020-10-19 13:08:34 +01001074 }
Fan Zhangf5395782020-04-29 14:00:03 +01001075 }
Neale Rannsf16e9a52021-02-25 19:09:24 +00001076 if (n_noop)
1077 vlib_buffer_enqueue_to_next (vm, node, noop_bi, noop_nexts, n_noop);
1078
1079 vlib_node_increment_counter (vm, node->node_index, ESP_ENCRYPT_ERROR_RX_PKTS,
1080 frame->n_vectors);
Damjan Marionc59b9a22019-03-19 15:38:40 +01001081
Damjan Marionc59b9a22019-03-19 15:38:40 +01001082 return frame->n_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001083}
1084
Fan Zhangf5395782020-04-29 14:00:03 +01001085always_inline uword
1086esp_encrypt_post_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1087 vlib_frame_t * frame)
1088{
1089 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
1090 u16 nexts[VLIB_FRAME_SIZE], *next = nexts;
1091 u32 *from = vlib_frame_vector_args (frame);
1092 u32 n_left = frame->n_vectors;
1093
1094 vlib_get_buffers (vm, from, b, n_left);
1095
1096 if (n_left >= 4)
1097 {
1098 vlib_prefetch_buffer_header (b[0], LOAD);
1099 vlib_prefetch_buffer_header (b[1], LOAD);
1100 vlib_prefetch_buffer_header (b[2], LOAD);
1101 vlib_prefetch_buffer_header (b[3], LOAD);
1102 }
1103
1104 while (n_left > 8)
1105 {
1106 vlib_prefetch_buffer_header (b[4], LOAD);
1107 vlib_prefetch_buffer_header (b[5], LOAD);
1108 vlib_prefetch_buffer_header (b[6], LOAD);
1109 vlib_prefetch_buffer_header (b[7], LOAD);
1110
1111 next[0] = (esp_post_data (b[0]))->next_index;
1112 next[1] = (esp_post_data (b[1]))->next_index;
1113 next[2] = (esp_post_data (b[2]))->next_index;
1114 next[3] = (esp_post_data (b[3]))->next_index;
1115
1116 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
1117 {
1118 if (b[0]->flags & VLIB_BUFFER_IS_TRACED)
1119 {
1120 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[0],
1121 sizeof (*tr));
1122 tr->next_index = next[0];
1123 }
1124 if (b[1]->flags & VLIB_BUFFER_IS_TRACED)
1125 {
1126 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[1],
1127 sizeof (*tr));
1128 tr->next_index = next[1];
1129 }
1130 if (b[2]->flags & VLIB_BUFFER_IS_TRACED)
1131 {
1132 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[2],
1133 sizeof (*tr));
1134 tr->next_index = next[2];
1135 }
1136 if (b[3]->flags & VLIB_BUFFER_IS_TRACED)
1137 {
1138 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[3],
1139 sizeof (*tr));
1140 tr->next_index = next[3];
1141 }
1142 }
1143
1144 b += 4;
1145 next += 4;
1146 n_left -= 4;
1147 }
1148
1149 while (n_left > 0)
1150 {
1151 next[0] = (esp_post_data (b[0]))->next_index;
1152 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
1153 {
1154 esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[0],
1155 sizeof (*tr));
1156 tr->next_index = next[0];
1157 }
1158
1159 b += 1;
1160 next += 1;
1161 n_left -= 1;
1162 }
1163
1164 vlib_node_increment_counter (vm, node->node_index,
1165 ESP_ENCRYPT_ERROR_POST_RX_PKTS,
1166 frame->n_vectors);
1167 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
1168 return frame->n_vectors;
1169}
1170
Klement Sekerab8f35442018-10-29 13:38:19 +01001171VLIB_NODE_FN (esp4_encrypt_node) (vlib_main_t * vm,
1172 vlib_node_runtime_t * node,
1173 vlib_frame_t * from_frame)
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001174{
Neale Ranns4a58e492020-12-21 13:19:10 +00001175 return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_IP4, 0,
Fan Zhangf5395782020-04-29 14:00:03 +01001176 esp_encrypt_async_next.esp4_post_next);
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001177}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001178
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -07001179/* *INDENT-OFF* */
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001180VLIB_REGISTER_NODE (esp4_encrypt_node) = {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001181 .name = "esp4-encrypt",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001182 .vector_size = sizeof (u32),
1183 .format_trace = format_esp_encrypt_trace,
1184 .type = VLIB_NODE_TYPE_INTERNAL,
1185
Neale Ranns4a58e492020-12-21 13:19:10 +00001186 .n_errors = ARRAY_LEN (esp_encrypt_error_strings),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001187 .error_strings = esp_encrypt_error_strings,
1188
1189 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
Neale Ranns4a58e492020-12-21 13:19:10 +00001190 .next_nodes = { [ESP_ENCRYPT_NEXT_DROP4] = "ip4-drop",
1191 [ESP_ENCRYPT_NEXT_DROP6] = "ip6-drop",
1192 [ESP_ENCRYPT_NEXT_DROP_MPLS] = "mpls-drop",
1193 [ESP_ENCRYPT_NEXT_HANDOFF4] = "esp4-encrypt-handoff",
1194 [ESP_ENCRYPT_NEXT_HANDOFF6] = "esp6-encrypt-handoff",
1195 [ESP_ENCRYPT_NEXT_HANDOFF_MPLS] = "error-drop",
1196 [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "interface-output" },
Ed Warnickecb9cada2015-12-08 15:45:58 -07001197};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -07001198/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001199
Fan Zhangf5395782020-04-29 14:00:03 +01001200VLIB_NODE_FN (esp4_encrypt_post_node) (vlib_main_t * vm,
1201 vlib_node_runtime_t * node,
1202 vlib_frame_t * from_frame)
1203{
1204 return esp_encrypt_post_inline (vm, node, from_frame);
1205}
1206
1207/* *INDENT-OFF* */
1208VLIB_REGISTER_NODE (esp4_encrypt_post_node) = {
1209 .name = "esp4-encrypt-post",
1210 .vector_size = sizeof (u32),
1211 .format_trace = format_esp_post_encrypt_trace,
1212 .type = VLIB_NODE_TYPE_INTERNAL,
1213 .sibling_of = "esp4-encrypt",
1214
1215 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1216 .error_strings = esp_encrypt_error_strings,
1217};
1218/* *INDENT-ON* */
1219
Klement Sekerab8f35442018-10-29 13:38:19 +01001220VLIB_NODE_FN (esp6_encrypt_node) (vlib_main_t * vm,
1221 vlib_node_runtime_t * node,
1222 vlib_frame_t * from_frame)
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001223{
Neale Ranns4a58e492020-12-21 13:19:10 +00001224 return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_IP6, 0,
Fan Zhangf5395782020-04-29 14:00:03 +01001225 esp_encrypt_async_next.esp6_post_next);
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001226}
1227
1228/* *INDENT-OFF* */
1229VLIB_REGISTER_NODE (esp6_encrypt_node) = {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001230 .name = "esp6-encrypt",
1231 .vector_size = sizeof (u32),
1232 .format_trace = format_esp_encrypt_trace,
1233 .type = VLIB_NODE_TYPE_INTERNAL,
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001234 .sibling_of = "esp4-encrypt",
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001235
1236 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1237 .error_strings = esp_encrypt_error_strings,
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001238};
1239/* *INDENT-ON* */
1240
Fan Zhangf5395782020-04-29 14:00:03 +01001241VLIB_NODE_FN (esp6_encrypt_post_node) (vlib_main_t * vm,
1242 vlib_node_runtime_t * node,
1243 vlib_frame_t * from_frame)
1244{
1245 return esp_encrypt_post_inline (vm, node, from_frame);
1246}
1247
1248/* *INDENT-OFF* */
1249VLIB_REGISTER_NODE (esp6_encrypt_post_node) = {
1250 .name = "esp6-encrypt-post",
1251 .vector_size = sizeof (u32),
1252 .format_trace = format_esp_post_encrypt_trace,
1253 .type = VLIB_NODE_TYPE_INTERNAL,
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001254 .sibling_of = "esp4-encrypt",
Fan Zhangf5395782020-04-29 14:00:03 +01001255
1256 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1257 .error_strings = esp_encrypt_error_strings,
1258};
1259/* *INDENT-ON* */
1260
Neale Ranns25edf142019-03-22 08:12:48 +00001261VLIB_NODE_FN (esp4_encrypt_tun_node) (vlib_main_t * vm,
1262 vlib_node_runtime_t * node,
1263 vlib_frame_t * from_frame)
1264{
Neale Ranns4a58e492020-12-21 13:19:10 +00001265 return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_IP4, 1,
Fan Zhangf5395782020-04-29 14:00:03 +01001266 esp_encrypt_async_next.esp4_tun_post_next);
Neale Ranns25edf142019-03-22 08:12:48 +00001267}
1268
1269/* *INDENT-OFF* */
1270VLIB_REGISTER_NODE (esp4_encrypt_tun_node) = {
1271 .name = "esp4-encrypt-tun",
1272 .vector_size = sizeof (u32),
1273 .format_trace = format_esp_encrypt_trace,
1274 .type = VLIB_NODE_TYPE_INTERNAL,
1275
1276 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1277 .error_strings = esp_encrypt_error_strings,
Neale Rannsd7603d92019-03-28 08:56:10 +00001278
Neale Rannsf62a8c02019-04-02 08:13:33 +00001279 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
Neale Rannsd7603d92019-03-28 08:56:10 +00001280 .next_nodes = {
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001281 [ESP_ENCRYPT_NEXT_DROP4] = "ip4-drop",
1282 [ESP_ENCRYPT_NEXT_DROP6] = "ip6-drop",
Neale Ranns4a58e492020-12-21 13:19:10 +00001283 [ESP_ENCRYPT_NEXT_DROP_MPLS] = "mpls-drop",
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001284 [ESP_ENCRYPT_NEXT_HANDOFF4] = "esp4-encrypt-tun-handoff",
Neale Ranns4a58e492020-12-21 13:19:10 +00001285 [ESP_ENCRYPT_NEXT_HANDOFF6] = "esp6-encrypt-tun-handoff",
1286 [ESP_ENCRYPT_NEXT_HANDOFF_MPLS] = "esp-mpls-encrypt-tun-handoff",
Neale Ranns4ec36c52020-03-31 09:21:29 -04001287 [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "adj-midchain-tx",
Neale Rannsd7603d92019-03-28 08:56:10 +00001288 },
Neale Ranns25edf142019-03-22 08:12:48 +00001289};
1290
Fan Zhangf5395782020-04-29 14:00:03 +01001291VLIB_NODE_FN (esp4_encrypt_tun_post_node) (vlib_main_t * vm,
1292 vlib_node_runtime_t * node,
1293 vlib_frame_t * from_frame)
1294{
1295 return esp_encrypt_post_inline (vm, node, from_frame);
1296}
1297
1298/* *INDENT-OFF* */
1299VLIB_REGISTER_NODE (esp4_encrypt_tun_post_node) = {
1300 .name = "esp4-encrypt-tun-post",
1301 .vector_size = sizeof (u32),
1302 .format_trace = format_esp_post_encrypt_trace,
1303 .type = VLIB_NODE_TYPE_INTERNAL,
1304 .sibling_of = "esp4-encrypt-tun",
1305
1306 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1307 .error_strings = esp_encrypt_error_strings,
1308};
Neale Ranns25edf142019-03-22 08:12:48 +00001309/* *INDENT-ON* */
1310
1311VLIB_NODE_FN (esp6_encrypt_tun_node) (vlib_main_t * vm,
1312 vlib_node_runtime_t * node,
1313 vlib_frame_t * from_frame)
1314{
Neale Ranns4a58e492020-12-21 13:19:10 +00001315 return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_IP6, 1,
Fan Zhangf5395782020-04-29 14:00:03 +01001316 esp_encrypt_async_next.esp6_tun_post_next);
Neale Ranns25edf142019-03-22 08:12:48 +00001317}
1318
1319/* *INDENT-OFF* */
1320VLIB_REGISTER_NODE (esp6_encrypt_tun_node) = {
1321 .name = "esp6-encrypt-tun",
1322 .vector_size = sizeof (u32),
1323 .format_trace = format_esp_encrypt_trace,
1324 .type = VLIB_NODE_TYPE_INTERNAL,
1325
1326 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1327 .error_strings = esp_encrypt_error_strings,
Neale Rannsd7603d92019-03-28 08:56:10 +00001328
Neale Rannsf62a8c02019-04-02 08:13:33 +00001329 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
Neale Rannsd7603d92019-03-28 08:56:10 +00001330 .next_nodes = {
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001331 [ESP_ENCRYPT_NEXT_DROP4] = "ip4-drop",
1332 [ESP_ENCRYPT_NEXT_DROP6] = "ip6-drop",
Neale Ranns4a58e492020-12-21 13:19:10 +00001333 [ESP_ENCRYPT_NEXT_DROP_MPLS] = "mpls-drop",
1334 [ESP_ENCRYPT_NEXT_HANDOFF4] = "esp4-encrypt-tun-handoff",
Neale Rannsb1fd80f2020-05-12 13:33:56 +00001335 [ESP_ENCRYPT_NEXT_HANDOFF6] = "esp6-encrypt-tun-handoff",
Neale Ranns4a58e492020-12-21 13:19:10 +00001336 [ESP_ENCRYPT_NEXT_HANDOFF_MPLS] = "esp-mpls-encrypt-tun-handoff",
Neale Ranns4ec36c52020-03-31 09:21:29 -04001337 [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "adj-midchain-tx",
Neale Rannsd7603d92019-03-28 08:56:10 +00001338 },
Neale Ranns25edf142019-03-22 08:12:48 +00001339};
1340
Neale Ranns25edf142019-03-22 08:12:48 +00001341/* *INDENT-ON* */
1342
Fan Zhangf5395782020-04-29 14:00:03 +01001343VLIB_NODE_FN (esp6_encrypt_tun_post_node) (vlib_main_t * vm,
1344 vlib_node_runtime_t * node,
1345 vlib_frame_t * from_frame)
1346{
1347 return esp_encrypt_post_inline (vm, node, from_frame);
1348}
1349
1350/* *INDENT-OFF* */
1351VLIB_REGISTER_NODE (esp6_encrypt_tun_post_node) = {
1352 .name = "esp6-encrypt-tun-post",
1353 .vector_size = sizeof (u32),
1354 .format_trace = format_esp_post_encrypt_trace,
1355 .type = VLIB_NODE_TYPE_INTERNAL,
Neale Ranns4a58e492020-12-21 13:19:10 +00001356 .sibling_of = "esp-mpls-encrypt-tun",
Fan Zhangf5395782020-04-29 14:00:03 +01001357
Neale Ranns4a58e492020-12-21 13:19:10 +00001358 .n_errors = ARRAY_LEN (esp_encrypt_error_strings),
Fan Zhangf5395782020-04-29 14:00:03 +01001359 .error_strings = esp_encrypt_error_strings,
1360};
1361/* *INDENT-ON* */
1362
Neale Ranns4a58e492020-12-21 13:19:10 +00001363VLIB_NODE_FN (esp_mpls_encrypt_tun_node)
1364(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
1365{
1366 return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_MPLS, 1,
1367 esp_encrypt_async_next.esp_mpls_tun_post_next);
1368}
1369
1370VLIB_REGISTER_NODE (esp_mpls_encrypt_tun_node) = {
1371 .name = "esp-mpls-encrypt-tun",
1372 .vector_size = sizeof (u32),
1373 .format_trace = format_esp_encrypt_trace,
1374 .type = VLIB_NODE_TYPE_INTERNAL,
1375
1376 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
1377 .error_strings = esp_encrypt_error_strings,
1378
1379 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
1380 .next_nodes = {
1381 [ESP_ENCRYPT_NEXT_DROP4] = "ip4-drop",
1382 [ESP_ENCRYPT_NEXT_DROP6] = "ip6-drop",
1383 [ESP_ENCRYPT_NEXT_DROP_MPLS] = "mpls-drop",
1384 [ESP_ENCRYPT_NEXT_HANDOFF4] = "esp4-encrypt-tun-handoff",
1385 [ESP_ENCRYPT_NEXT_HANDOFF6] = "esp6-encrypt-tun-handoff",
1386 [ESP_ENCRYPT_NEXT_HANDOFF_MPLS] = "esp-mpls-encrypt-tun-handoff",
1387 [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "adj-midchain-tx",
1388 },
1389};
1390
1391VLIB_NODE_FN (esp_mpls_encrypt_tun_post_node)
1392(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
1393{
1394 return esp_encrypt_post_inline (vm, node, from_frame);
1395}
1396
1397VLIB_REGISTER_NODE (esp_mpls_encrypt_tun_post_node) = {
1398 .name = "esp-mpls-encrypt-tun-post",
1399 .vector_size = sizeof (u32),
1400 .format_trace = format_esp_post_encrypt_trace,
1401 .type = VLIB_NODE_TYPE_INTERNAL,
1402 .sibling_of = "esp-mpls-encrypt-tun",
1403
1404 .n_errors = ARRAY_LEN (esp_encrypt_error_strings),
1405 .error_strings = esp_encrypt_error_strings,
1406};
1407
Neale Ranns2d498302021-02-25 08:38:58 +00001408#ifndef CLIB_MARCH_VARIANT
1409
1410static clib_error_t *
1411esp_encrypt_init (vlib_main_t *vm)
1412{
1413 ipsec_main_t *im = &ipsec_main;
1414
1415 im->esp4_enc_fq_index =
1416 vlib_frame_queue_main_init (esp4_encrypt_node.index, 0);
1417 im->esp6_enc_fq_index =
1418 vlib_frame_queue_main_init (esp6_encrypt_node.index, 0);
1419 im->esp4_enc_tun_fq_index =
1420 vlib_frame_queue_main_init (esp4_encrypt_tun_node.index, 0);
1421 im->esp6_enc_tun_fq_index =
1422 vlib_frame_queue_main_init (esp6_encrypt_tun_node.index, 0);
1423 im->esp_mpls_enc_tun_fq_index =
1424 vlib_frame_queue_main_init (esp_mpls_encrypt_tun_node.index, 0);
1425
1426 return 0;
1427}
1428
1429VLIB_INIT_FUNCTION (esp_encrypt_init);
1430
1431#endif
1432
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -07001433/*
1434 * fd.io coding-style-patch-verification: ON
1435 *
1436 * Local Variables:
1437 * eval: (c-set-style "gnu")
1438 * End:
1439 */