blob: 366894805381ce86f9c3f7b5e39884f26f78fee0 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * esp_decrypt.c : IPSec ESP decrypt 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>
John Lo90430b62020-01-31 23:48:30 -050021#include <vnet/l2/l2_input.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070022
23#include <vnet/ipsec/ipsec.h>
24#include <vnet/ipsec/esp.h>
Neale Ranns918c1612019-02-21 23:34:59 -080025#include <vnet/ipsec/ipsec_io.h>
Neale Rannsc87b66c2019-02-07 07:26:12 -080026#include <vnet/ipsec/ipsec_tun.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070027
Neale Ranns568acbb2019-12-18 05:54:40 +000028#include <vnet/gre/gre.h>
29
Ed Warnickecb9cada2015-12-08 15:45:58 -070030#define foreach_esp_decrypt_next \
31_(DROP, "error-drop") \
Kingwel Xie561d1ca2019-03-05 22:56:17 -050032_(IP4_INPUT, "ip4-input-no-checksum") \
Neale Rannsf62a8c02019-04-02 08:13:33 +000033_(IP6_INPUT, "ip6-input") \
Neale Ranns568acbb2019-12-18 05:54:40 +000034_(L2_INPUT, "l2-input") \
Neale Rannsf62a8c02019-04-02 08:13:33 +000035_(HANDOFF, "handoff")
Ed Warnickecb9cada2015-12-08 15:45:58 -070036
37#define _(v, s) ESP_DECRYPT_NEXT_##v,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070038typedef enum
39{
Ed Warnickecb9cada2015-12-08 15:45:58 -070040 foreach_esp_decrypt_next
41#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070042 ESP_DECRYPT_N_NEXT,
Ed Warnickecb9cada2015-12-08 15:45:58 -070043} esp_decrypt_next_t;
44
45
Damjan Marionb4fff3a2019-03-25 15:54:40 +010046#define foreach_esp_decrypt_error \
47 _(RX_PKTS, "ESP pkts received") \
48 _(DECRYPTION_FAILED, "ESP decryption failed") \
49 _(INTEG_ERROR, "Integrity check failed") \
50 _(CRYPTO_ENGINE_ERROR, "crypto engine error (packet dropped)") \
51 _(REPLAY, "SA replayed packet") \
Damjan Mariona829b132019-04-24 23:39:16 +020052 _(RUNT, "undersized packet") \
Filip Tehlarefcad1a2020-02-04 09:36:04 +000053 _(NO_BUFFERS, "no buffers (packet dropped)") \
Damjan Marionb4fff3a2019-03-25 15:54:40 +010054 _(OVERSIZED_HEADER, "buffer with oversized header (dropped)") \
Neale Ranns12989b52019-09-26 16:20:19 +000055 _(NO_TAIL_SPACE, "no enough buffer tail space (dropped)") \
56 _(TUN_NO_PROTO, "no tunnel protocol") \
Neale Ranns02950402019-12-20 00:54:57 +000057 _(UNSUP_PAYLOAD, "unsupported payload") \
Ed Warnickecb9cada2015-12-08 15:45:58 -070058
59
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070060typedef enum
61{
Ed Warnickecb9cada2015-12-08 15:45:58 -070062#define _(sym,str) ESP_DECRYPT_ERROR_##sym,
63 foreach_esp_decrypt_error
64#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070065 ESP_DECRYPT_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -070066} esp_decrypt_error_t;
67
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070068static char *esp_decrypt_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -070069#define _(sym,string) string,
70 foreach_esp_decrypt_error
71#undef _
72};
73
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070074typedef struct
75{
Damjan Marionb4fff3a2019-03-25 15:54:40 +010076 u32 seq;
Neale Ranns6afaae12019-07-17 15:07:14 +000077 u32 sa_seq;
78 u32 sa_seq_hi;
Ed Warnickecb9cada2015-12-08 15:45:58 -070079 ipsec_crypto_alg_t crypto_alg;
80 ipsec_integ_alg_t integ_alg;
81} esp_decrypt_trace_t;
82
83/* packet trace format function */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070084static u8 *
85format_esp_decrypt_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070086{
87 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
88 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070089 esp_decrypt_trace_t *t = va_arg (*args, esp_decrypt_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070090
Neale Ranns6afaae12019-07-17 15:07:14 +000091 s =
92 format (s,
93 "esp: crypto %U integrity %U pkt-seq %d sa-seq %u sa-seq-hi %u",
94 format_ipsec_crypto_alg, t->crypto_alg, format_ipsec_integ_alg,
95 t->integ_alg, t->seq, t->sa_seq, t->sa_seq_hi);
Ed Warnickecb9cada2015-12-08 15:45:58 -070096 return s;
97}
98
Damjan Marionb4fff3a2019-03-25 15:54:40 +010099typedef struct
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100{
Rajesh Goel7a6f5a42020-03-17 14:43:09 +0530101 vlib_buffer_t *lb;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100102 union
103 {
104 struct
105 {
106 u8 icv_sz;
107 u8 iv_sz;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800108 ipsec_sa_flags_t flags;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100109 u32 sa_index;
110 };
111 u64 sa_data;
112 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113
Neale Ranns6afaae12019-07-17 15:07:14 +0000114 u32 seq;
Rajesh Goel7a6f5a42020-03-17 14:43:09 +0530115 u32 free_buffer_index;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100116 i16 current_data;
117 i16 current_length;
118 u16 hdr_sz;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000119 u8 icv_removed;
Rajesh Goel7a6f5a42020-03-17 14:43:09 +0530120 u8 __unused;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100121} esp_decrypt_packet_data_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122
Rajesh Goel7a6f5a42020-03-17 14:43:09 +0530123STATIC_ASSERT_SIZEOF (esp_decrypt_packet_data_t, 4 * sizeof (u64));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100125#define ESP_ENCRYPT_PD_F_FD_TRANSPORT (1 << 2)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000127static_always_inline void
128esp_process_ops (vlib_main_t * vm, vlib_node_runtime_t * node,
129 vnet_crypto_op_t * ops, vlib_buffer_t * b[], u16 * nexts,
130 int e)
131{
132 vnet_crypto_op_t *op = ops;
133 u32 n_fail, n_ops = vec_len (ops);
134
135 if (n_ops == 0)
136 return;
137
138 n_fail = n_ops - vnet_crypto_process_ops (vm, op, n_ops);
139
140 while (n_fail)
141 {
142 ASSERT (op - ops < n_ops);
143 if (op->status != VNET_CRYPTO_OP_STATUS_COMPLETED)
144 {
145 u32 err, bi = op->user_data;
146 if (op->status == VNET_CRYPTO_OP_STATUS_FAIL_BAD_HMAC)
147 err = e;
148 else
149 err = ESP_DECRYPT_ERROR_CRYPTO_ENGINE_ERROR;
150 b[bi]->error = node->errors[err];
151 nexts[bi] = ESP_DECRYPT_NEXT_DROP;
152 n_fail--;
153 }
154 op++;
155 }
156}
157
158static_always_inline void
159esp_process_chained_ops (vlib_main_t * vm, vlib_node_runtime_t * node,
160 vnet_crypto_op_t * ops, vlib_buffer_t * b[],
161 u16 * nexts, vnet_crypto_op_chunk_t * chunks, int e)
162{
163
164 vnet_crypto_op_t *op = ops;
165 u32 n_fail, n_ops = vec_len (ops);
166
167 if (n_ops == 0)
168 return;
169
170 n_fail = n_ops - vnet_crypto_process_chained_ops (vm, op, chunks, n_ops);
171
172 while (n_fail)
173 {
174 ASSERT (op - ops < n_ops);
175 if (op->status != VNET_CRYPTO_OP_STATUS_COMPLETED)
176 {
177 u32 err, bi = op->user_data;
178 if (op->status == VNET_CRYPTO_OP_STATUS_FAIL_BAD_HMAC)
179 err = e;
180 else
181 err = ESP_DECRYPT_ERROR_CRYPTO_ENGINE_ERROR;
182 b[bi]->error = node->errors[err];
183 nexts[bi] = ESP_DECRYPT_NEXT_DROP;
184 n_fail--;
185 }
186 op++;
187 }
188}
189
190always_inline void
191esp_remove_tail (vlib_main_t * vm, vlib_buffer_t * b, vlib_buffer_t * last,
192 u16 tail)
193{
194 vlib_buffer_t *before_last = b;
195
196 if (last->current_length > tail)
197 {
198 last->current_length -= tail;
199 return;
200 }
201 ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
202
203 while (b->flags & VLIB_BUFFER_NEXT_PRESENT)
204 {
205 before_last = b;
206 b = vlib_get_buffer (vm, b->next_buffer);
207 }
208 before_last->current_length -= tail - last->current_length;
209 vlib_buffer_free_one (vm, before_last->next_buffer);
210 before_last->flags &= ~VLIB_BUFFER_NEXT_PRESENT;
211}
212
213/* ICV is splitted in last two buffers so move it to the last buffer and
214 return pointer to it */
215static_always_inline u8 *
216esp_move_icv (vlib_main_t * vm, vlib_buffer_t * first,
217 esp_decrypt_packet_data_t * pd, u16 icv_sz)
218{
219 vlib_buffer_t *before_last, *bp;
220 u16 last_sz = pd->lb->current_length;
221 u16 first_sz = icv_sz - last_sz;
222
223 bp = before_last = first;
224 while (bp->flags & VLIB_BUFFER_NEXT_PRESENT)
225 {
226 before_last = bp;
227 bp = vlib_get_buffer (vm, bp->next_buffer);
228 }
229
230 u8 *lb_curr = vlib_buffer_get_current (pd->lb);
231 memmove (lb_curr + first_sz, lb_curr, last_sz);
232 clib_memcpy_fast (lb_curr, vlib_buffer_get_tail (before_last) - first_sz,
233 first_sz);
234 before_last->current_length -= first_sz;
235 pd->lb = before_last;
236 pd->icv_removed = 1;
237 pd->free_buffer_index = before_last->next_buffer;
238 before_last->flags &= ~VLIB_BUFFER_NEXT_PRESENT;
239 return lb_curr;
240}
241
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200242always_inline uword
243esp_decrypt_inline (vlib_main_t * vm,
244 vlib_node_runtime_t * node, vlib_frame_t * from_frame,
Neale Rannsc87b66c2019-02-07 07:26:12 -0800245 int is_ip6, int is_tun)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247 ipsec_main_t *im = &ipsec_main;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100248 u32 thread_index = vm->thread_index;
249 u16 buffer_data_size = vlib_buffer_get_default_data_size (vm);
250 u16 len;
251 ipsec_per_thread_data_t *ptd = vec_elt_at_index (im->ptd, thread_index);
Damjan Marionc98275f2019-03-06 14:05:01 +0100252 u32 *from = vlib_frame_vector_args (from_frame);
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000253 u32 n_left = from_frame->n_vectors;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100254 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
Damjan Marionc98275f2019-03-06 14:05:01 +0100255 u16 nexts[VLIB_FRAME_SIZE], *next = nexts;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100256 esp_decrypt_packet_data_t pkt_data[VLIB_FRAME_SIZE], *pd = pkt_data;
257 esp_decrypt_packet_data_t cpd = { };
258 u32 current_sa_index = ~0, current_sa_bytes = 0, current_sa_pkts = 0;
259 const u8 esp_sz = sizeof (esp_header_t);
260 ipsec_sa_t *sa0 = 0;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000261 vnet_crypto_op_chunk_t *ch;
262 vnet_crypto_op_t **crypto_ops = &ptd->crypto_ops;
263 vnet_crypto_op_t **integ_ops = &ptd->integ_ops;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100265 vlib_get_buffers (vm, from, b, n_left);
266 vec_reset_length (ptd->crypto_ops);
267 vec_reset_length (ptd->integ_ops);
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000268 vec_reset_length (ptd->chained_crypto_ops);
269 vec_reset_length (ptd->chained_integ_ops);
270 vec_reset_length (ptd->chunks);
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100271 clib_memset_u16 (nexts, -1, n_left);
272
273 while (n_left > 0)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700274 {
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100275 u8 *payload;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100277 if (n_left > 2)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700278 {
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100279 u8 *p;
280 vlib_prefetch_buffer_header (b[2], LOAD);
281 p = vlib_buffer_get_current (b[1]);
282 CLIB_PREFETCH (p, CLIB_CACHE_LINE_BYTES, LOAD);
283 p -= CLIB_CACHE_LINE_BYTES;
284 CLIB_PREFETCH (p, CLIB_CACHE_LINE_BYTES, LOAD);
285 }
286
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000287 u32 n_bufs = vlib_buffer_chain_linearize (vm, b[0]);
288 if (n_bufs == 0)
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100289 {
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000290 b[0]->error = node->errors[ESP_DECRYPT_ERROR_NO_BUFFERS];
Damjan Marion1f4e1cb2019-03-28 19:19:31 +0100291 next[0] = ESP_DECRYPT_NEXT_DROP;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100292 goto next;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700293 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100294
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100295 if (vnet_buffer (b[0])->ipsec.sad_index != current_sa_index)
Damjan Marionc98275f2019-03-06 14:05:01 +0100296 {
Damjan Marion867dfdd2019-06-05 15:42:54 +0200297 if (current_sa_pkts)
298 vlib_increment_combined_counter (&ipsec_sa_counters, thread_index,
299 current_sa_index,
300 current_sa_pkts,
301 current_sa_bytes);
302 current_sa_bytes = current_sa_pkts = 0;
303
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100304 current_sa_index = vnet_buffer (b[0])->ipsec.sad_index;
305 sa0 = pool_elt_at_index (im->sad, current_sa_index);
Damjan Marion7c22ff72019-04-04 12:25:44 +0200306 cpd.icv_sz = sa0->integ_icv_size;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100307 cpd.iv_sz = sa0->crypto_iv_size;
308 cpd.flags = sa0->flags;
309 cpd.sa_index = current_sa_index;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100310 }
311
Neale Rannsf62a8c02019-04-02 08:13:33 +0000312 if (PREDICT_FALSE (~0 == sa0->decrypt_thread_index))
313 {
314 /* this is the first packet to use this SA, claim the SA
315 * for this thread. this could happen simultaneously on
316 * another thread */
317 clib_atomic_cmp_and_swap (&sa0->decrypt_thread_index, ~0,
318 ipsec_sa_assign_thread (thread_index));
319 }
320
321 if (PREDICT_TRUE (thread_index != sa0->decrypt_thread_index))
322 {
323 next[0] = ESP_DECRYPT_NEXT_HANDOFF;
324 goto next;
325 }
326
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100327 /* store packet data for next round for easier prefetch */
328 pd->sa_data = cpd.sa_data;
329 pd->current_data = b[0]->current_data;
330 pd->current_length = b[0]->current_length;
331 pd->hdr_sz = pd->current_data - vnet_buffer (b[0])->l3_hdr_offset;
332 payload = b[0]->data + pd->current_data;
Neale Ranns6afaae12019-07-17 15:07:14 +0000333 pd->seq = clib_host_to_net_u32 (((esp_header_t *) payload)->seq);
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000334 pd->free_buffer_index = 0;
335 pd->icv_removed = 0;
336
337 pd->lb = b[0];
338 if (n_bufs > 1)
339 {
340 /* find last buffer in the chain */
341 while (pd->lb->flags & VLIB_BUFFER_NEXT_PRESENT)
342 pd->lb = vlib_get_buffer (vm, pd->lb->next_buffer);
343
344 crypto_ops = &ptd->chained_crypto_ops;
345 integ_ops = &ptd->chained_integ_ops;
346 }
347 pd->current_length = b[0]->current_length;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100348
349 /* we need 4 extra bytes for HMAC calculation when ESN are used */
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000350 /* Chained buffers can process ESN as a separate chunk */
351 if (pd->lb == b[0] && ipsec_sa_is_set_USE_ESN (sa0) && cpd.icv_sz &&
352 (pd->lb->current_data + pd->lb->current_length + 4
353 > buffer_data_size))
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100354 {
355 b[0]->error = node->errors[ESP_DECRYPT_ERROR_NO_TAIL_SPACE];
356 next[0] = ESP_DECRYPT_NEXT_DROP;
357 goto next;
358 }
359
360 /* anti-reply check */
Neale Ranns6afaae12019-07-17 15:07:14 +0000361 if (ipsec_sa_anti_replay_check (sa0, pd->seq))
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100362 {
363 b[0]->error = node->errors[ESP_DECRYPT_ERROR_REPLAY];
364 next[0] = ESP_DECRYPT_NEXT_DROP;
365 goto next;
366 }
367
Damjan Mariona829b132019-04-24 23:39:16 +0200368 if (pd->current_length < cpd.icv_sz + esp_sz + cpd.iv_sz)
369 {
370 b[0]->error = node->errors[ESP_DECRYPT_ERROR_RUNT];
371 next[0] = ESP_DECRYPT_NEXT_DROP;
372 goto next;
373 }
374
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100375 len = pd->current_length - cpd.icv_sz;
376 current_sa_pkts += 1;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000377 current_sa_bytes += vlib_buffer_length_in_chain (vm, b[0]);
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100378
Neale Ranns47feb112019-04-11 15:14:07 +0000379 if (PREDICT_TRUE (sa0->integ_op_id != VNET_CRYPTO_OP_NONE))
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100380 {
381 vnet_crypto_op_t *op;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000382 vec_add2_aligned (integ_ops[0], op, 1, CLIB_CACHE_LINE_BYTES);
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100383
Damjan Marion060bfb92019-03-29 13:47:54 +0100384 vnet_crypto_op_init (op, sa0->integ_op_id);
Damjan Mariond1bed682019-04-24 15:20:35 +0200385 op->key_index = sa0->integ_key_index;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100386 op->src = payload;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100387 op->flags = VNET_CRYPTO_OP_FLAG_HMAC_CHECK;
388 op->user_data = b - bufs;
Damjan Marion060bfb92019-03-29 13:47:54 +0100389 op->digest = payload + len;
390 op->digest_len = cpd.icv_sz;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100391 op->len = len;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000392
393 if (pd->lb != b[0])
394 {
395 /* buffer is chained */
396 vlib_buffer_t *cb = b[0];
397 op->flags |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS;
398 op->chunk_index = vec_len (ptd->chunks);
399
400 if (pd->lb->current_length < cpd.icv_sz)
401 op->digest = esp_move_icv (vm, b[0], pd, cpd.icv_sz);
402 else
403 op->digest = vlib_buffer_get_tail (pd->lb) - cpd.icv_sz;
404
405 vec_add2 (ptd->chunks, ch, 1);
406 ch->len = pd->current_length;
407 ch->src = payload;
408 cb = vlib_get_buffer (vm, cb->next_buffer);
409 op->n_chunks = 1;
410 while (1)
411 {
412 vec_add2 (ptd->chunks, ch, 1);
413 op->n_chunks += 1;
414 ch->src = vlib_buffer_get_current (cb);
415 if (pd->lb == cb)
416 {
417 if (pd->icv_removed)
418 ch->len = cb->current_length;
419 else
420 ch->len = cb->current_length - cpd.icv_sz;
421 if (ipsec_sa_is_set_USE_ESN (sa0))
422 {
423 u32 seq_hi = clib_host_to_net_u32 (sa0->seq_hi);
424 u8 tmp[ESP_MAX_ICV_SIZE], sz = sizeof (sa0->seq_hi);
425 u8 *esn;
426 vlib_buffer_t *tmp_b;
427 u16 space_left = vlib_buffer_space_left_at_end
428 (vm, pd->lb);
429 if (space_left < sz)
430 {
431 if (pd->icv_removed)
432 {
433 /* use pre-data area from the last bufer
434 that was removed from the chain */
435 tmp_b =
436 vlib_get_buffer (vm,
437 pd->free_buffer_index);
438 esn = tmp_b->data - sz;
439 }
440 else
441 {
442 /* no space, need to allocate new buffer */
443 u32 tmp_bi = 0;
444 vlib_buffer_alloc (vm, &tmp_bi, 1);
445 tmp_b = vlib_get_buffer (vm, tmp_bi);
446 esn = tmp_b->data;
447 pd->free_buffer_index = tmp_bi;
448 }
449 clib_memcpy_fast (esn, &seq_hi, sz);
450
451 vec_add2 (ptd->chunks, ch, 1);
452 op->n_chunks += 1;
453 ch->src = esn;
454 ch->len = sz;
455 }
456 else
457 {
458 if (pd->icv_removed)
459 {
460 clib_memcpy_fast (vlib_buffer_get_tail
461 (pd->lb), &seq_hi, sz);
462 }
463 else
464 {
465 clib_memcpy_fast (tmp, op->digest,
466 ESP_MAX_ICV_SIZE);
467 clib_memcpy_fast (op->digest, &seq_hi, sz);
468 clib_memcpy_fast (op->digest + sz, tmp,
469 ESP_MAX_ICV_SIZE);
470 op->digest += sz;
471 }
472 ch->len += sz;
473 }
474 }
475 }
476 else
477 ch->len = cb->current_length;
478
479 if (!(cb->flags & VLIB_BUFFER_NEXT_PRESENT))
480 break;
481
482 cb = vlib_get_buffer (vm, cb->next_buffer);
483 }
484 }
485 else if (ipsec_sa_is_set_USE_ESN (sa0))
Damjan Marionc98275f2019-03-06 14:05:01 +0100486 {
Neale Ranns6afaae12019-07-17 15:07:14 +0000487 /* shift ICV by 4 bytes to insert ESN */
488 u32 seq_hi = clib_host_to_net_u32 (sa0->seq_hi);
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100489 u8 tmp[ESP_MAX_ICV_SIZE], sz = sizeof (sa0->seq_hi);
490 clib_memcpy_fast (tmp, payload + len, ESP_MAX_ICV_SIZE);
Neale Ranns6afaae12019-07-17 15:07:14 +0000491 clib_memcpy_fast (payload + len, &seq_hi, sz);
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100492 clib_memcpy_fast (payload + len + sz, tmp, ESP_MAX_ICV_SIZE);
493 op->len += sz;
Neale Ranns49e7ef62019-04-10 17:24:29 +0000494 op->digest += sz;
Damjan Marionc98275f2019-03-06 14:05:01 +0100495 }
496 }
497
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100498 payload += esp_sz;
499 len -= esp_sz;
Damjan Marionc98275f2019-03-06 14:05:01 +0100500
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000501 if (sa0->crypto_dec_op_id != VNET_CRYPTO_OP_NONE)
Damjan Marionc98275f2019-03-06 14:05:01 +0100502 {
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100503 vnet_crypto_op_t *op;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000504 vec_add2_aligned (crypto_ops[0], op, 1, CLIB_CACHE_LINE_BYTES);
Damjan Marion060bfb92019-03-29 13:47:54 +0100505 vnet_crypto_op_init (op, sa0->crypto_dec_op_id);
Damjan Mariond1bed682019-04-24 15:20:35 +0200506 op->key_index = sa0->crypto_key_index;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100507 op->iv = payload;
Neale Ranns47feb112019-04-11 15:14:07 +0000508
509 if (ipsec_sa_is_set_IS_AEAD (sa0))
510 {
511 esp_header_t *esp0;
512 esp_aead_t *aad;
513 u8 *scratch;
Neale Ranns47feb112019-04-11 15:14:07 +0000514
515 /*
516 * construct the AAD and the nonce (Salt || IV) in a scratch
517 * space in front of the IP header.
518 */
519 scratch = payload - esp_sz;
520 esp0 = (esp_header_t *) (scratch);
521
522 scratch -= (sizeof (*aad) + pd->hdr_sz);
523 op->aad = scratch;
524
525 esp_aad_fill (op, esp0, sa0);
526
527 /*
528 * we don't need to refer to the ESP header anymore so we
529 * can overwrite it with the salt and use the IV where it is
530 * to form the nonce = (Salt + IV)
531 */
Neale Ranns47feb112019-04-11 15:14:07 +0000532 op->iv -= sizeof (sa0->salt);
Neale Ranns80f6fd52019-04-16 02:41:34 +0000533 clib_memcpy_fast (op->iv, &sa0->salt, sizeof (sa0->salt));
Neale Ranns47feb112019-04-11 15:14:07 +0000534
535 op->tag = payload + len;
536 op->tag_len = 16;
537 }
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100538 op->src = op->dst = payload += cpd.iv_sz;
Neale Ranns0a0c7ee2019-04-13 15:30:21 +0000539 op->len = len - cpd.iv_sz;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100540 op->user_data = b - bufs;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000541
542 if (pd->lb != b[0])
543 {
544 /* buffer is chained */
545 vlib_buffer_t *cb = b[0];
546 op->flags |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS;
547 op->chunk_index = vec_len (ptd->chunks);
548 vec_add2 (ptd->chunks, ch, 1);
549 ch->len = len - cpd.iv_sz + cpd.icv_sz;
550 ch->src = ch->dst = payload;
551 cb = vlib_get_buffer (vm, cb->next_buffer);
552 op->n_chunks = 1;
553
554 while (1)
555 {
556 vec_add2 (ptd->chunks, ch, 1);
557 op->n_chunks += 1;
558 ch->src = ch->dst = vlib_buffer_get_current (cb);
559 if (pd->lb == cb)
560 {
561 if (ipsec_sa_is_set_IS_AEAD (sa0))
562 {
563 if (pd->lb->current_length < cpd.icv_sz)
564 {
565 op->tag =
566 esp_move_icv (vm, b[0], pd, cpd.icv_sz);
567
568 /* this chunk does not contain crypto data */
569 op->n_chunks -= 1;
570
571 /* and fix previous chunk's length as it might have
572 been changed */
573 ASSERT (op->n_chunks > 0);
574 ch[-1].len = pd->lb->current_length;
575 break;
576 }
577 else
578 op->tag =
579 vlib_buffer_get_tail (pd->lb) - cpd.icv_sz;
580 }
581
582 if (pd->icv_removed)
583 ch->len = cb->current_length;
584 else
585 ch->len = cb->current_length - cpd.icv_sz;
586 }
587 else
588 ch->len = cb->current_length;
589
590 if (!(cb->flags & VLIB_BUFFER_NEXT_PRESENT))
591 break;
592
593 cb = vlib_get_buffer (vm, cb->next_buffer);
594 }
595 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100596 }
597
598 /* next */
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100599 next:
600 n_left -= 1;
Damjan Marionc98275f2019-03-06 14:05:01 +0100601 next += 1;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100602 pd += 1;
603 b += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700604 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100605
Neale Ranns02950402019-12-20 00:54:57 +0000606 if (PREDICT_TRUE (~0 != current_sa_index))
607 vlib_increment_combined_counter (&ipsec_sa_counters, thread_index,
608 current_sa_index, current_sa_pkts,
609 current_sa_bytes);
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200610
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000611 esp_process_ops (vm, node, ptd->integ_ops, bufs, nexts,
612 ESP_DECRYPT_ERROR_INTEG_ERROR);
613 esp_process_chained_ops (vm, node, ptd->chained_integ_ops, bufs, nexts,
614 ptd->chunks, ESP_DECRYPT_ERROR_INTEG_ERROR);
Neale Ranns92e93842019-04-08 07:36:50 +0000615
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000616 esp_process_ops (vm, node, ptd->crypto_ops, bufs, nexts,
617 ESP_DECRYPT_ERROR_DECRYPTION_FAILED);
618 esp_process_chained_ops (vm, node, ptd->chained_crypto_ops, bufs, nexts,
619 ptd->chunks, ESP_DECRYPT_ERROR_DECRYPTION_FAILED);
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100620
621 /* Post decryption ronud - adjust packet data start and length and next
622 node */
623
624 n_left = from_frame->n_vectors;
625 next = nexts;
626 pd = pkt_data;
627 b = bufs;
628
629 while (n_left)
630 {
631 const u8 tun_flags = IPSEC_SA_FLAG_IS_TUNNEL |
632 IPSEC_SA_FLAG_IS_TUNNEL_V6;
633
634 if (n_left >= 2)
635 {
636 void *data = b[1]->data + pd[1].current_data;
637
638 /* buffer metadata */
639 vlib_prefetch_buffer_header (b[1], LOAD);
640
641 /* esp_footer_t */
642 CLIB_PREFETCH (data + pd[1].current_length - pd[1].icv_sz - 2,
643 CLIB_CACHE_LINE_BYTES, LOAD);
644
645 /* packet headers */
646 CLIB_PREFETCH (data - CLIB_CACHE_LINE_BYTES,
647 CLIB_CACHE_LINE_BYTES * 2, LOAD);
648 }
649
650 if (next[0] < ESP_DECRYPT_N_NEXT)
651 goto trace;
652
653 sa0 = vec_elt_at_index (im->sad, pd->sa_index);
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100654
Neale Ranns3b9374f2019-08-01 04:45:15 -0700655 /*
656 * redo the anti-reply check
657 * in this frame say we have sequence numbers, s, s+1, s+1, s+1
658 * and s and s+1 are in the window. When we did the anti-replay
659 * check above we did so against the state of the window (W),
660 * after packet s-1. So each of the packets in the sequence will be
661 * accepted.
662 * This time s will be cheked against Ws-1, s+1 chceked against Ws
663 * (i.e. the window state is updated/advnaced)
664 * so this time the successive s+! packet will be dropped.
665 * This is a consequence of batching the decrypts. If the
666 * check-dcrypt-advance process was done for each packet it would
667 * be fine. But we batch the decrypts because it's much more efficient
668 * to do so in SW and if we offload to HW and the process is async.
669 *
670 * You're probably thinking, but this means an attacker can send the
671 * above sequence and cause VPP to perform decrpyts that will fail,
672 * and that's true. But if the attacker can determine s (a valid
673 * sequence number in the window) which is non-trivial, it can generate
674 * a sequence s, s+1, s+2, s+3, ... s+n and nothing will prevent any
675 * implementation, sequential or batching, from decrypting these.
676 */
677 if (ipsec_sa_anti_replay_check (sa0, pd->seq))
678 {
679 b[0]->error = node->errors[ESP_DECRYPT_ERROR_REPLAY];
680 next[0] = ESP_DECRYPT_NEXT_DROP;
681 goto trace;
682 }
683
Neale Ranns6afaae12019-07-17 15:07:14 +0000684 ipsec_sa_anti_replay_advance (sa0, pd->seq);
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100685
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000686 u8 pad_length = 0, next_header = 0;
687 u16 icv_sz = pd->icv_removed ? 0 : pd->icv_sz;
688
689 if (pd->free_buffer_index)
690 vlib_buffer_free_one (vm, pd->free_buffer_index);
691
692 if (pd->lb->current_length < sizeof (esp_footer_t) + icv_sz)
693 {
694 /* esp footer is either splitted in two buffers or in the before
695 * last buffer */
696
697 vlib_buffer_t *before_last = b[0], *bp = b[0];
698 while (bp->flags & VLIB_BUFFER_NEXT_PRESENT)
699 {
700 before_last = bp;
701 bp = vlib_get_buffer (vm, bp->next_buffer);
702 }
703 u8 *bt = vlib_buffer_get_tail (before_last);
704
705 if (pd->lb->current_length == icv_sz)
706 {
707 esp_footer_t *f = (esp_footer_t *) (bt - sizeof (*f));
708 pad_length = f->pad_length;
709 next_header = f->next_header;
710 }
711 else
712 {
713 pad_length = (bt - 1)[0];
714 next_header = ((u8 *) vlib_buffer_get_current (pd->lb))[0];
715 }
716 }
717 else
718 {
719 esp_footer_t *f =
720 (esp_footer_t *) (pd->lb->data + pd->lb->current_data +
721 pd->lb->current_length - sizeof (esp_footer_t) -
722 icv_sz);
723 pad_length = f->pad_length;
724 next_header = f->next_header;
725 }
726
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100727 u16 adv = pd->iv_sz + esp_sz;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000728 u16 tail = sizeof (esp_footer_t) + pad_length + icv_sz;
729 u16 tail_orig = sizeof (esp_footer_t) + pad_length + pd->icv_sz;
730 b[0]->flags &= ~VLIB_BUFFER_TOTAL_LENGTH_VALID;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100731
Neale Rannsc87b66c2019-02-07 07:26:12 -0800732 if ((pd->flags & tun_flags) == 0 && !is_tun) /* transport mode */
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100733 {
734 u8 udp_sz = (is_ip6 == 0 && pd->flags & IPSEC_SA_FLAG_UDP_ENCAP) ?
735 sizeof (udp_header_t) : 0;
736 u16 ip_hdr_sz = pd->hdr_sz - udp_sz;
737 u8 *old_ip = b[0]->data + pd->current_data - ip_hdr_sz - udp_sz;
738 u8 *ip = old_ip + adv + udp_sz;
739
740 if (is_ip6 && ip_hdr_sz > 64)
741 memmove (ip, old_ip, ip_hdr_sz);
742 else
743 clib_memcpy_le64 (ip, old_ip, ip_hdr_sz);
744
745 b[0]->current_data = pd->current_data + adv - ip_hdr_sz;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000746 b[0]->current_length = pd->current_length + ip_hdr_sz - adv;
747 esp_remove_tail (vm, b[0], pd->lb, tail);
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100748
749 if (is_ip6)
750 {
751 ip6_header_t *ip6 = (ip6_header_t *) ip;
752 u16 len = clib_net_to_host_u16 (ip6->payload_length);
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000753 len -= adv + tail_orig;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100754 ip6->payload_length = clib_host_to_net_u16 (len);
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000755 ip6->protocol = next_header;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100756 next[0] = ESP_DECRYPT_NEXT_IP6_INPUT;
757 }
758 else
759 {
760 ip4_header_t *ip4 = (ip4_header_t *) ip;
761 ip_csum_t sum = ip4->checksum;
762 u16 len = clib_net_to_host_u16 (ip4->length);
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000763 len = clib_host_to_net_u16 (len - adv - tail_orig - udp_sz);
764 sum = ip_csum_update (sum, ip4->protocol, next_header,
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100765 ip4_header_t, protocol);
766 sum = ip_csum_update (sum, ip4->length, len,
767 ip4_header_t, length);
768 ip4->checksum = ip_csum_fold (sum);
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000769 ip4->protocol = next_header;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100770 ip4->length = len;
771 next[0] = ESP_DECRYPT_NEXT_IP4_INPUT;
772 }
773 }
774 else
775 {
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000776 if (PREDICT_TRUE (next_header == IP_PROTOCOL_IP_IN_IP))
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100777 {
778 next[0] = ESP_DECRYPT_NEXT_IP4_INPUT;
779 b[0]->current_data = pd->current_data + adv;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000780 b[0]->current_length = pd->current_length - adv;
781 esp_remove_tail (vm, b[0], pd->lb, tail);
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100782 }
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000783 else if (next_header == IP_PROTOCOL_IPV6)
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100784 {
785 next[0] = ESP_DECRYPT_NEXT_IP6_INPUT;
786 b[0]->current_data = pd->current_data + adv;
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000787 b[0]->current_length = pd->current_length - adv;
788 esp_remove_tail (vm, b[0], pd->lb, tail);
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100789 }
790 else
791 {
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000792 if (is_tun && next_header == IP_PROTOCOL_GRE)
Neale Ranns568acbb2019-12-18 05:54:40 +0000793 {
794 gre_header_t *gre;
795
796 b[0]->current_data = pd->current_data + adv;
797 b[0]->current_length = pd->current_length - adv - tail;
798
799 gre = vlib_buffer_get_current (b[0]);
800
801 vlib_buffer_advance (b[0], sizeof (*gre));
802
803 switch (clib_net_to_host_u16 (gre->protocol))
804 {
805 case GRE_PROTOCOL_teb:
John Lo90430b62020-01-31 23:48:30 -0500806 vnet_update_l2_len (b[0]);
Neale Ranns568acbb2019-12-18 05:54:40 +0000807 next[0] = ESP_DECRYPT_NEXT_L2_INPUT;
808 break;
809 case GRE_PROTOCOL_ip4:
810 next[0] = ESP_DECRYPT_NEXT_IP4_INPUT;
811 break;
812 case GRE_PROTOCOL_ip6:
813 next[0] = ESP_DECRYPT_NEXT_IP6_INPUT;
814 break;
815 default:
Neale Ranns02950402019-12-20 00:54:57 +0000816 b[0]->error =
817 node->errors[ESP_DECRYPT_ERROR_UNSUP_PAYLOAD];
Neale Ranns568acbb2019-12-18 05:54:40 +0000818 next[0] = ESP_DECRYPT_NEXT_DROP;
819 break;
820 }
821 }
822 else
823 {
824 next[0] = ESP_DECRYPT_NEXT_DROP;
Neale Ranns02950402019-12-20 00:54:57 +0000825 b[0]->error = node->errors[ESP_DECRYPT_ERROR_UNSUP_PAYLOAD];
Neale Ranns568acbb2019-12-18 05:54:40 +0000826 goto trace;
827 }
Neale Rannsc87b66c2019-02-07 07:26:12 -0800828 }
829 if (is_tun)
830 {
831 if (ipsec_sa_is_set_IS_PROTECT (sa0))
832 {
833 /*
Neale Ranns02950402019-12-20 00:54:57 +0000834 * There are two encap possibilities
835 * 1) the tunnel and ths SA are prodiving encap, i.e. it's
836 * MAC | SA-IP | TUN-IP | ESP | PAYLOAD
837 * implying the SA is in tunnel mode (on a tunnel interface)
838 * 2) only the tunnel provides encap
839 * MAC | TUN-IP | ESP | PAYLOAD
840 * implying the SA is in transport mode.
841 *
842 * For 2) we need only strip the tunnel encap and we're good.
843 * since the tunnel and crypto ecnap (int the tun=protect
844 * object) are the same and we verified above that these match
845 * for 1) we need to strip the SA-IP outer headers, to
846 * reveal the tunnel IP and then check that this matches
847 * the configured tunnel.
Neale Rannsc87b66c2019-02-07 07:26:12 -0800848 */
849 const ipsec_tun_protect_t *itp;
850
Neale Ranns568acbb2019-12-18 05:54:40 +0000851 itp = ipsec_tun_protect_get
852 (vnet_buffer (b[0])->ipsec.protect_index);
853
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000854 if (PREDICT_TRUE (next_header == IP_PROTOCOL_IP_IN_IP))
Neale Rannsc87b66c2019-02-07 07:26:12 -0800855 {
856 const ip4_header_t *ip4;
857
858 ip4 = vlib_buffer_get_current (b[0]);
859
860 if (!ip46_address_is_equal_v4 (&itp->itp_tun.src,
861 &ip4->dst_address) ||
862 !ip46_address_is_equal_v4 (&itp->itp_tun.dst,
863 &ip4->src_address))
Neale Ranns12989b52019-09-26 16:20:19 +0000864 {
865 next[0] = ESP_DECRYPT_NEXT_DROP;
866 b[0]->error =
867 node->errors[ESP_DECRYPT_ERROR_TUN_NO_PROTO];
868 }
Neale Rannsc87b66c2019-02-07 07:26:12 -0800869 }
Filip Tehlarefcad1a2020-02-04 09:36:04 +0000870 else if (next_header == IP_PROTOCOL_IPV6)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800871 {
872 const ip6_header_t *ip6;
873
874 ip6 = vlib_buffer_get_current (b[0]);
875
876 if (!ip46_address_is_equal_v6 (&itp->itp_tun.src,
877 &ip6->dst_address) ||
878 !ip46_address_is_equal_v6 (&itp->itp_tun.dst,
879 &ip6->src_address))
Neale Ranns12989b52019-09-26 16:20:19 +0000880 {
881 next[0] = ESP_DECRYPT_NEXT_DROP;
882 b[0]->error =
883 node->errors[ESP_DECRYPT_ERROR_TUN_NO_PROTO];
884 }
Neale Rannsc87b66c2019-02-07 07:26:12 -0800885 }
886 }
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100887 }
888 }
889
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100890 trace:
891 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
892 {
893 esp_decrypt_trace_t *tr;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100894 tr = vlib_add_trace (vm, node, b[0], sizeof (*tr));
895 sa0 = pool_elt_at_index (im->sad,
896 vnet_buffer (b[0])->ipsec.sad_index);
897 tr->crypto_alg = sa0->crypto_alg;
898 tr->integ_alg = sa0->integ_alg;
Neale Ranns6afaae12019-07-17 15:07:14 +0000899 tr->seq = pd->seq;
900 tr->sa_seq = sa0->last_seq;
901 tr->sa_seq_hi = sa0->seq_hi;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100902 }
903
904 /* next */
905 n_left -= 1;
906 next += 1;
907 pd += 1;
908 b += 1;
909 }
910
911 n_left = from_frame->n_vectors;
912 vlib_node_increment_counter (vm, node->node_index,
913 ESP_DECRYPT_ERROR_RX_PKTS, n_left);
914
915 vlib_buffer_enqueue_to_next (vm, node, from, nexts, n_left);
916
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100917 return n_left;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700918}
919
Klement Sekerab8f35442018-10-29 13:38:19 +0100920VLIB_NODE_FN (esp4_decrypt_node) (vlib_main_t * vm,
921 vlib_node_runtime_t * node,
922 vlib_frame_t * from_frame)
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200923{
Neale Rannsc87b66c2019-02-07 07:26:12 -0800924 return esp_decrypt_inline (vm, node, from_frame, 0, 0);
925}
926
927VLIB_NODE_FN (esp4_decrypt_tun_node) (vlib_main_t * vm,
928 vlib_node_runtime_t * node,
929 vlib_frame_t * from_frame)
930{
931 return esp_decrypt_inline (vm, node, from_frame, 0, 1);
932}
933
934VLIB_NODE_FN (esp6_decrypt_node) (vlib_main_t * vm,
935 vlib_node_runtime_t * node,
936 vlib_frame_t * from_frame)
937{
938 return esp_decrypt_inline (vm, node, from_frame, 1, 0);
939}
940
941VLIB_NODE_FN (esp6_decrypt_tun_node) (vlib_main_t * vm,
942 vlib_node_runtime_t * node,
943 vlib_frame_t * from_frame)
944{
945 return esp_decrypt_inline (vm, node, from_frame, 1, 1);
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200946}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700947
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700948/* *INDENT-OFF* */
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200949VLIB_REGISTER_NODE (esp4_decrypt_node) = {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200950 .name = "esp4-decrypt",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700951 .vector_size = sizeof (u32),
952 .format_trace = format_esp_decrypt_trace,
953 .type = VLIB_NODE_TYPE_INTERNAL,
954
955 .n_errors = ARRAY_LEN(esp_decrypt_error_strings),
956 .error_strings = esp_decrypt_error_strings,
957
958 .n_next_nodes = ESP_DECRYPT_N_NEXT,
959 .next_nodes = {
Neale Rannsf62a8c02019-04-02 08:13:33 +0000960 [ESP_DECRYPT_NEXT_DROP] = "ip4-drop",
961 [ESP_DECRYPT_NEXT_IP4_INPUT] = "ip4-input-no-checksum",
962 [ESP_DECRYPT_NEXT_IP6_INPUT] = "ip6-input",
Neale Ranns568acbb2019-12-18 05:54:40 +0000963 [ESP_DECRYPT_NEXT_L2_INPUT] = "l2-input",
Neale Rannsf62a8c02019-04-02 08:13:33 +0000964 [ESP_DECRYPT_NEXT_HANDOFF] = "esp4-decrypt-handoff",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700965 },
966};
967
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200968VLIB_REGISTER_NODE (esp6_decrypt_node) = {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200969 .name = "esp6-decrypt",
970 .vector_size = sizeof (u32),
971 .format_trace = format_esp_decrypt_trace,
972 .type = VLIB_NODE_TYPE_INTERNAL,
973
974 .n_errors = ARRAY_LEN(esp_decrypt_error_strings),
975 .error_strings = esp_decrypt_error_strings,
976
977 .n_next_nodes = ESP_DECRYPT_N_NEXT,
978 .next_nodes = {
Neale Rannsf62a8c02019-04-02 08:13:33 +0000979 [ESP_DECRYPT_NEXT_DROP] = "ip6-drop",
980 [ESP_DECRYPT_NEXT_IP4_INPUT] = "ip4-input-no-checksum",
981 [ESP_DECRYPT_NEXT_IP6_INPUT] = "ip6-input",
Neale Ranns568acbb2019-12-18 05:54:40 +0000982 [ESP_DECRYPT_NEXT_L2_INPUT] = "l2-input",
Neale Rannsf62a8c02019-04-02 08:13:33 +0000983 [ESP_DECRYPT_NEXT_HANDOFF]= "esp6-decrypt-handoff",
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200984 },
985};
Neale Rannsc87b66c2019-02-07 07:26:12 -0800986
987VLIB_REGISTER_NODE (esp4_decrypt_tun_node) = {
988 .name = "esp4-decrypt-tun",
989 .vector_size = sizeof (u32),
990 .format_trace = format_esp_decrypt_trace,
991 .type = VLIB_NODE_TYPE_INTERNAL,
Neale Rannsc87b66c2019-02-07 07:26:12 -0800992 .n_errors = ARRAY_LEN(esp_decrypt_error_strings),
993 .error_strings = esp_decrypt_error_strings,
Neale Rannsf62a8c02019-04-02 08:13:33 +0000994 .n_next_nodes = ESP_DECRYPT_N_NEXT,
995 .next_nodes = {
996 [ESP_DECRYPT_NEXT_DROP] = "ip4-drop",
997 [ESP_DECRYPT_NEXT_IP4_INPUT] = "ip4-input-no-checksum",
998 [ESP_DECRYPT_NEXT_IP6_INPUT] = "ip6-input",
Neale Ranns568acbb2019-12-18 05:54:40 +0000999 [ESP_DECRYPT_NEXT_L2_INPUT] = "l2-input",
Neale Ranns4a56f4e2019-12-23 04:10:25 +00001000 [ESP_DECRYPT_NEXT_HANDOFF] = "esp4-decrypt-tun-handoff",
Neale Rannsf62a8c02019-04-02 08:13:33 +00001001 },
Neale Rannsc87b66c2019-02-07 07:26:12 -08001002};
1003
1004VLIB_REGISTER_NODE (esp6_decrypt_tun_node) = {
1005 .name = "esp6-decrypt-tun",
1006 .vector_size = sizeof (u32),
1007 .format_trace = format_esp_decrypt_trace,
1008 .type = VLIB_NODE_TYPE_INTERNAL,
Neale Rannsc87b66c2019-02-07 07:26:12 -08001009 .n_errors = ARRAY_LEN(esp_decrypt_error_strings),
1010 .error_strings = esp_decrypt_error_strings,
Neale Rannsf62a8c02019-04-02 08:13:33 +00001011 .n_next_nodes = ESP_DECRYPT_N_NEXT,
1012 .next_nodes = {
1013 [ESP_DECRYPT_NEXT_DROP] = "ip6-drop",
1014 [ESP_DECRYPT_NEXT_IP4_INPUT] = "ip4-input-no-checksum",
1015 [ESP_DECRYPT_NEXT_IP6_INPUT] = "ip6-input",
Neale Ranns568acbb2019-12-18 05:54:40 +00001016 [ESP_DECRYPT_NEXT_L2_INPUT] = "l2-input",
Neale Ranns4a56f4e2019-12-23 04:10:25 +00001017 [ESP_DECRYPT_NEXT_HANDOFF]= "esp6-decrypt-tun-handoff",
Neale Rannsf62a8c02019-04-02 08:13:33 +00001018 },
Neale Rannsc87b66c2019-02-07 07:26:12 -08001019};
Klement Sekerabe5a5dd2018-10-09 16:05:48 +02001020/* *INDENT-ON* */
1021
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -07001022/*
1023 * fd.io coding-style-patch-verification: ON
1024 *
1025 * Local Variables:
1026 * eval: (c-set-style "gnu")
1027 * End:
1028 */