Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 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 Lo | 90430b6 | 2020-01-31 23:48:30 -0500 | [diff] [blame] | 21 | #include <vnet/l2/l2_input.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 22 | |
| 23 | #include <vnet/ipsec/ipsec.h> |
| 24 | #include <vnet/ipsec/esp.h> |
Neale Ranns | 918c161 | 2019-02-21 23:34:59 -0800 | [diff] [blame] | 25 | #include <vnet/ipsec/ipsec_io.h> |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 26 | #include <vnet/ipsec/ipsec_tun.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 27 | |
Neale Ranns | 568acbb | 2019-12-18 05:54:40 +0000 | [diff] [blame] | 28 | #include <vnet/gre/gre.h> |
| 29 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 30 | #define foreach_esp_decrypt_next \ |
| 31 | _(DROP, "error-drop") \ |
Kingwel Xie | 561d1ca | 2019-03-05 22:56:17 -0500 | [diff] [blame] | 32 | _(IP4_INPUT, "ip4-input-no-checksum") \ |
Neale Ranns | f62a8c0 | 2019-04-02 08:13:33 +0000 | [diff] [blame] | 33 | _(IP6_INPUT, "ip6-input") \ |
Neale Ranns | 568acbb | 2019-12-18 05:54:40 +0000 | [diff] [blame] | 34 | _(L2_INPUT, "l2-input") \ |
Neale Ranns | f62a8c0 | 2019-04-02 08:13:33 +0000 | [diff] [blame] | 35 | _(HANDOFF, "handoff") |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 36 | |
| 37 | #define _(v, s) ESP_DECRYPT_NEXT_##v, |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 38 | typedef enum |
| 39 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 40 | foreach_esp_decrypt_next |
| 41 | #undef _ |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 42 | ESP_DECRYPT_N_NEXT, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 43 | } esp_decrypt_next_t; |
| 44 | |
| 45 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 46 | #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 Marion | a829b13 | 2019-04-24 23:39:16 +0200 | [diff] [blame] | 52 | _(RUNT, "undersized packet") \ |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 53 | _(NO_BUFFERS, "no buffers (packet dropped)") \ |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 54 | _(OVERSIZED_HEADER, "buffer with oversized header (dropped)") \ |
Neale Ranns | 12989b5 | 2019-09-26 16:20:19 +0000 | [diff] [blame] | 55 | _(NO_TAIL_SPACE, "no enough buffer tail space (dropped)") \ |
| 56 | _(TUN_NO_PROTO, "no tunnel protocol") \ |
Neale Ranns | 0295040 | 2019-12-20 00:54:57 +0000 | [diff] [blame] | 57 | _(UNSUP_PAYLOAD, "unsupported payload") \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 58 | |
| 59 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 60 | typedef enum |
| 61 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 62 | #define _(sym,str) ESP_DECRYPT_ERROR_##sym, |
| 63 | foreach_esp_decrypt_error |
| 64 | #undef _ |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 65 | ESP_DECRYPT_N_ERROR, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 66 | } esp_decrypt_error_t; |
| 67 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 68 | static char *esp_decrypt_error_strings[] = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 69 | #define _(sym,string) string, |
| 70 | foreach_esp_decrypt_error |
| 71 | #undef _ |
| 72 | }; |
| 73 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 74 | typedef struct |
| 75 | { |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 76 | u32 seq; |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 77 | u32 sa_seq; |
| 78 | u32 sa_seq_hi; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 79 | 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) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 84 | static u8 * |
| 85 | format_esp_decrypt_trace (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 86 | { |
| 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) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 89 | esp_decrypt_trace_t *t = va_arg (*args, esp_decrypt_trace_t *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 90 | |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 91 | 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 Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 96 | return s; |
| 97 | } |
| 98 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 99 | typedef struct |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 100 | { |
Rajesh Goel | 7a6f5a4 | 2020-03-17 14:43:09 +0530 | [diff] [blame] | 101 | vlib_buffer_t *lb; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 102 | union |
| 103 | { |
| 104 | struct |
| 105 | { |
| 106 | u8 icv_sz; |
| 107 | u8 iv_sz; |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 108 | ipsec_sa_flags_t flags; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 109 | u32 sa_index; |
| 110 | }; |
| 111 | u64 sa_data; |
| 112 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 113 | |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 114 | u32 seq; |
Rajesh Goel | 7a6f5a4 | 2020-03-17 14:43:09 +0530 | [diff] [blame] | 115 | u32 free_buffer_index; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 116 | i16 current_data; |
| 117 | i16 current_length; |
| 118 | u16 hdr_sz; |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 119 | u8 icv_removed; |
Rajesh Goel | 7a6f5a4 | 2020-03-17 14:43:09 +0530 | [diff] [blame] | 120 | u8 __unused; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 121 | } esp_decrypt_packet_data_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 122 | |
Rajesh Goel | 7a6f5a4 | 2020-03-17 14:43:09 +0530 | [diff] [blame] | 123 | STATIC_ASSERT_SIZEOF (esp_decrypt_packet_data_t, 4 * sizeof (u64)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 124 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 125 | #define ESP_ENCRYPT_PD_F_FD_TRANSPORT (1 << 2) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 126 | |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 127 | static_always_inline void |
| 128 | esp_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 | |
| 158 | static_always_inline void |
| 159 | esp_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 | |
| 190 | always_inline void |
| 191 | esp_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 */ |
| 215 | static_always_inline u8 * |
| 216 | esp_move_icv (vlib_main_t * vm, vlib_buffer_t * first, |
Filip Tehlar | e4e8c6b | 2020-02-13 07:49:30 +0000 | [diff] [blame] | 217 | esp_decrypt_packet_data_t * pd, u16 icv_sz, u16 * dif) |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 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; |
Filip Tehlar | e4e8c6b | 2020-02-13 07:49:30 +0000 | [diff] [blame] | 235 | if (dif) |
| 236 | dif[0] = first_sz; |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 237 | pd->lb = before_last; |
| 238 | pd->icv_removed = 1; |
| 239 | pd->free_buffer_index = before_last->next_buffer; |
| 240 | before_last->flags &= ~VLIB_BUFFER_NEXT_PRESENT; |
| 241 | return lb_curr; |
| 242 | } |
| 243 | |
Filip Tehlar | e4e8c6b | 2020-02-13 07:49:30 +0000 | [diff] [blame] | 244 | static_always_inline int |
| 245 | esp_insert_esn (vlib_main_t * vm, ipsec_sa_t * sa, |
| 246 | esp_decrypt_packet_data_t * pd, vnet_crypto_op_t * op, |
| 247 | u16 * len, vlib_buffer_t * b, u8 * payload) |
| 248 | { |
| 249 | if (!ipsec_sa_is_set_USE_ESN (sa)) |
| 250 | return 1; |
| 251 | |
| 252 | /* shift ICV by 4 bytes to insert ESN */ |
| 253 | u32 seq_hi = clib_host_to_net_u32 (sa->seq_hi); |
| 254 | u8 tmp[ESP_MAX_ICV_SIZE], sz = sizeof (sa->seq_hi); |
| 255 | |
| 256 | if (pd->icv_removed) |
| 257 | { |
| 258 | u16 space_left = vlib_buffer_space_left_at_end (vm, pd->lb); |
| 259 | if (space_left >= sz) |
| 260 | { |
| 261 | clib_memcpy_fast (vlib_buffer_get_tail (pd->lb), &seq_hi, sz); |
| 262 | op->len += sz; |
| 263 | } |
| 264 | else |
| 265 | return 0; |
| 266 | |
| 267 | len[0] = b->current_length; |
| 268 | } |
| 269 | else |
| 270 | { |
| 271 | clib_memcpy_fast (tmp, payload + len[0], ESP_MAX_ICV_SIZE); |
| 272 | clib_memcpy_fast (payload + len[0], &seq_hi, sz); |
| 273 | clib_memcpy_fast (payload + len[0] + sz, tmp, ESP_MAX_ICV_SIZE); |
| 274 | op->len += sz; |
| 275 | op->digest += sz; |
| 276 | } |
| 277 | return 1; |
| 278 | } |
| 279 | |
| 280 | static_always_inline u8 * |
| 281 | esp_move_icv_esn (vlib_main_t * vm, vlib_buffer_t * first, |
| 282 | esp_decrypt_packet_data_t * pd, u16 icv_sz, ipsec_sa_t * sa, |
| 283 | u8 * extra_esn, vnet_crypto_op_t * op) |
| 284 | { |
| 285 | u16 dif = 0; |
| 286 | u8 *digest = esp_move_icv (vm, first, pd, icv_sz, &dif); |
| 287 | if (dif) |
| 288 | op->len -= dif; |
| 289 | |
| 290 | if (ipsec_sa_is_set_USE_ESN (sa)) |
| 291 | { |
| 292 | u8 sz = sizeof (sa->seq_hi); |
| 293 | u32 seq_hi = clib_host_to_net_u32 (sa->seq_hi); |
| 294 | u16 space_left = vlib_buffer_space_left_at_end (vm, pd->lb); |
| 295 | |
| 296 | if (space_left >= sz) |
| 297 | { |
| 298 | clib_memcpy_fast (vlib_buffer_get_tail (pd->lb), &seq_hi, sz); |
| 299 | op->len += sz; |
| 300 | } |
| 301 | else |
| 302 | { |
| 303 | /* no space for ESN at the tail, use the next buffer |
| 304 | * (with ICV data) */ |
| 305 | ASSERT (pd->icv_removed); |
| 306 | vlib_buffer_t *tmp = vlib_get_buffer (vm, pd->free_buffer_index); |
| 307 | clib_memcpy_fast (vlib_buffer_get_current (tmp) - sz, &seq_hi, sz); |
| 308 | extra_esn[0] = 1; |
| 309 | } |
| 310 | } |
| 311 | return digest; |
| 312 | } |
| 313 | |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 314 | always_inline uword |
| 315 | esp_decrypt_inline (vlib_main_t * vm, |
| 316 | vlib_node_runtime_t * node, vlib_frame_t * from_frame, |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 317 | int is_ip6, int is_tun) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 318 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 319 | ipsec_main_t *im = &ipsec_main; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 320 | u32 thread_index = vm->thread_index; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 321 | u16 len; |
| 322 | ipsec_per_thread_data_t *ptd = vec_elt_at_index (im->ptd, thread_index); |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 323 | u32 *from = vlib_frame_vector_args (from_frame); |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 324 | u32 n_left = from_frame->n_vectors; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 325 | vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs; |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 326 | u16 nexts[VLIB_FRAME_SIZE], *next = nexts; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 327 | esp_decrypt_packet_data_t pkt_data[VLIB_FRAME_SIZE], *pd = pkt_data; |
| 328 | esp_decrypt_packet_data_t cpd = { }; |
| 329 | u32 current_sa_index = ~0, current_sa_bytes = 0, current_sa_pkts = 0; |
| 330 | const u8 esp_sz = sizeof (esp_header_t); |
| 331 | ipsec_sa_t *sa0 = 0; |
Filip Tehlar | e4e8c6b | 2020-02-13 07:49:30 +0000 | [diff] [blame] | 332 | vnet_crypto_op_t _op, *op = &_op; |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 333 | vnet_crypto_op_chunk_t *ch; |
| 334 | vnet_crypto_op_t **crypto_ops = &ptd->crypto_ops; |
| 335 | vnet_crypto_op_t **integ_ops = &ptd->integ_ops; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 336 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 337 | vlib_get_buffers (vm, from, b, n_left); |
| 338 | vec_reset_length (ptd->crypto_ops); |
| 339 | vec_reset_length (ptd->integ_ops); |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 340 | vec_reset_length (ptd->chained_crypto_ops); |
| 341 | vec_reset_length (ptd->chained_integ_ops); |
| 342 | vec_reset_length (ptd->chunks); |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 343 | clib_memset_u16 (nexts, -1, n_left); |
| 344 | |
| 345 | while (n_left > 0) |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 346 | { |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 347 | u8 *payload; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 348 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 349 | if (n_left > 2) |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 350 | { |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 351 | u8 *p; |
| 352 | vlib_prefetch_buffer_header (b[2], LOAD); |
| 353 | p = vlib_buffer_get_current (b[1]); |
| 354 | CLIB_PREFETCH (p, CLIB_CACHE_LINE_BYTES, LOAD); |
| 355 | p -= CLIB_CACHE_LINE_BYTES; |
| 356 | CLIB_PREFETCH (p, CLIB_CACHE_LINE_BYTES, LOAD); |
| 357 | } |
| 358 | |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 359 | u32 n_bufs = vlib_buffer_chain_linearize (vm, b[0]); |
| 360 | if (n_bufs == 0) |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 361 | { |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 362 | b[0]->error = node->errors[ESP_DECRYPT_ERROR_NO_BUFFERS]; |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 363 | next[0] = ESP_DECRYPT_NEXT_DROP; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 364 | goto next; |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 365 | } |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 366 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 367 | if (vnet_buffer (b[0])->ipsec.sad_index != current_sa_index) |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 368 | { |
Damjan Marion | 867dfdd | 2019-06-05 15:42:54 +0200 | [diff] [blame] | 369 | if (current_sa_pkts) |
| 370 | vlib_increment_combined_counter (&ipsec_sa_counters, thread_index, |
| 371 | current_sa_index, |
| 372 | current_sa_pkts, |
| 373 | current_sa_bytes); |
| 374 | current_sa_bytes = current_sa_pkts = 0; |
| 375 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 376 | current_sa_index = vnet_buffer (b[0])->ipsec.sad_index; |
| 377 | sa0 = pool_elt_at_index (im->sad, current_sa_index); |
Damjan Marion | 7c22ff7 | 2019-04-04 12:25:44 +0200 | [diff] [blame] | 378 | cpd.icv_sz = sa0->integ_icv_size; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 379 | cpd.iv_sz = sa0->crypto_iv_size; |
| 380 | cpd.flags = sa0->flags; |
| 381 | cpd.sa_index = current_sa_index; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 382 | } |
| 383 | |
Neale Ranns | f62a8c0 | 2019-04-02 08:13:33 +0000 | [diff] [blame] | 384 | if (PREDICT_FALSE (~0 == sa0->decrypt_thread_index)) |
| 385 | { |
| 386 | /* this is the first packet to use this SA, claim the SA |
| 387 | * for this thread. this could happen simultaneously on |
| 388 | * another thread */ |
| 389 | clib_atomic_cmp_and_swap (&sa0->decrypt_thread_index, ~0, |
| 390 | ipsec_sa_assign_thread (thread_index)); |
| 391 | } |
| 392 | |
| 393 | if (PREDICT_TRUE (thread_index != sa0->decrypt_thread_index)) |
| 394 | { |
| 395 | next[0] = ESP_DECRYPT_NEXT_HANDOFF; |
| 396 | goto next; |
| 397 | } |
| 398 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 399 | /* store packet data for next round for easier prefetch */ |
| 400 | pd->sa_data = cpd.sa_data; |
| 401 | pd->current_data = b[0]->current_data; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 402 | pd->hdr_sz = pd->current_data - vnet_buffer (b[0])->l3_hdr_offset; |
| 403 | payload = b[0]->data + pd->current_data; |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 404 | pd->seq = clib_host_to_net_u32 (((esp_header_t *) payload)->seq); |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 405 | pd->free_buffer_index = 0; |
| 406 | pd->icv_removed = 0; |
| 407 | |
| 408 | pd->lb = b[0]; |
| 409 | if (n_bufs > 1) |
| 410 | { |
| 411 | /* find last buffer in the chain */ |
| 412 | while (pd->lb->flags & VLIB_BUFFER_NEXT_PRESENT) |
| 413 | pd->lb = vlib_get_buffer (vm, pd->lb->next_buffer); |
| 414 | |
| 415 | crypto_ops = &ptd->chained_crypto_ops; |
| 416 | integ_ops = &ptd->chained_integ_ops; |
| 417 | } |
| 418 | pd->current_length = b[0]->current_length; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 419 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 420 | /* anti-reply check */ |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 421 | if (ipsec_sa_anti_replay_check (sa0, pd->seq)) |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 422 | { |
| 423 | b[0]->error = node->errors[ESP_DECRYPT_ERROR_REPLAY]; |
| 424 | next[0] = ESP_DECRYPT_NEXT_DROP; |
| 425 | goto next; |
| 426 | } |
| 427 | |
Damjan Marion | a829b13 | 2019-04-24 23:39:16 +0200 | [diff] [blame] | 428 | if (pd->current_length < cpd.icv_sz + esp_sz + cpd.iv_sz) |
| 429 | { |
| 430 | b[0]->error = node->errors[ESP_DECRYPT_ERROR_RUNT]; |
| 431 | next[0] = ESP_DECRYPT_NEXT_DROP; |
| 432 | goto next; |
| 433 | } |
| 434 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 435 | len = pd->current_length - cpd.icv_sz; |
| 436 | current_sa_pkts += 1; |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 437 | current_sa_bytes += vlib_buffer_length_in_chain (vm, b[0]); |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 438 | |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 439 | if (PREDICT_TRUE (sa0->integ_op_id != VNET_CRYPTO_OP_NONE)) |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 440 | { |
Damjan Marion | 060bfb9 | 2019-03-29 13:47:54 +0100 | [diff] [blame] | 441 | vnet_crypto_op_init (op, sa0->integ_op_id); |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 442 | op->key_index = sa0->integ_key_index; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 443 | op->src = payload; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 444 | op->flags = VNET_CRYPTO_OP_FLAG_HMAC_CHECK; |
| 445 | op->user_data = b - bufs; |
Damjan Marion | 060bfb9 | 2019-03-29 13:47:54 +0100 | [diff] [blame] | 446 | op->digest = payload + len; |
| 447 | op->digest_len = cpd.icv_sz; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 448 | op->len = len; |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 449 | |
| 450 | if (pd->lb != b[0]) |
| 451 | { |
| 452 | /* buffer is chained */ |
| 453 | vlib_buffer_t *cb = b[0]; |
Filip Tehlar | e4e8c6b | 2020-02-13 07:49:30 +0000 | [diff] [blame] | 454 | op->len = pd->current_length; |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 455 | |
Filip Tehlar | e4e8c6b | 2020-02-13 07:49:30 +0000 | [diff] [blame] | 456 | /* special case when ICV is splitted and needs to be reassembled |
| 457 | * first -> move it to the last buffer. Also take into account |
| 458 | * that ESN needs to be added after encrypted data and may or |
| 459 | * may not fit in the tail.*/ |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 460 | if (pd->lb->current_length < cpd.icv_sz) |
Filip Tehlar | e4e8c6b | 2020-02-13 07:49:30 +0000 | [diff] [blame] | 461 | { |
| 462 | u8 extra_esn = 0; |
| 463 | op->digest = |
| 464 | esp_move_icv_esn (vm, b[0], pd, cpd.icv_sz, sa0, |
| 465 | &extra_esn, op); |
| 466 | |
| 467 | if (extra_esn) |
| 468 | { |
| 469 | /* esn is in the last buffer, that was unlinked from |
| 470 | * the chain */ |
| 471 | op->len = b[0]->current_length; |
| 472 | } |
| 473 | else |
| 474 | { |
| 475 | if (pd->lb == b[0]) |
| 476 | { |
| 477 | /* we now have a single buffer of crypto data, adjust |
| 478 | * the length (second buffer contains only ICV) */ |
| 479 | integ_ops = &ptd->integ_ops; |
| 480 | crypto_ops = &ptd->crypto_ops; |
| 481 | len = b[0]->current_length; |
| 482 | goto out; |
| 483 | } |
| 484 | } |
| 485 | } |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 486 | else |
| 487 | op->digest = vlib_buffer_get_tail (pd->lb) - cpd.icv_sz; |
| 488 | |
Filip Tehlar | e4e8c6b | 2020-02-13 07:49:30 +0000 | [diff] [blame] | 489 | op->flags |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS; |
| 490 | op->chunk_index = vec_len (ptd->chunks); |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 491 | vec_add2 (ptd->chunks, ch, 1); |
| 492 | ch->len = pd->current_length; |
| 493 | ch->src = payload; |
| 494 | cb = vlib_get_buffer (vm, cb->next_buffer); |
| 495 | op->n_chunks = 1; |
| 496 | while (1) |
| 497 | { |
| 498 | vec_add2 (ptd->chunks, ch, 1); |
| 499 | op->n_chunks += 1; |
| 500 | ch->src = vlib_buffer_get_current (cb); |
| 501 | if (pd->lb == cb) |
| 502 | { |
| 503 | if (pd->icv_removed) |
| 504 | ch->len = cb->current_length; |
| 505 | else |
| 506 | ch->len = cb->current_length - cpd.icv_sz; |
| 507 | if (ipsec_sa_is_set_USE_ESN (sa0)) |
| 508 | { |
| 509 | u32 seq_hi = clib_host_to_net_u32 (sa0->seq_hi); |
| 510 | u8 tmp[ESP_MAX_ICV_SIZE], sz = sizeof (sa0->seq_hi); |
| 511 | u8 *esn; |
| 512 | vlib_buffer_t *tmp_b; |
| 513 | u16 space_left = vlib_buffer_space_left_at_end |
| 514 | (vm, pd->lb); |
| 515 | if (space_left < sz) |
| 516 | { |
| 517 | if (pd->icv_removed) |
| 518 | { |
| 519 | /* use pre-data area from the last bufer |
| 520 | that was removed from the chain */ |
| 521 | tmp_b = |
| 522 | vlib_get_buffer (vm, |
| 523 | pd->free_buffer_index); |
| 524 | esn = tmp_b->data - sz; |
| 525 | } |
| 526 | else |
| 527 | { |
| 528 | /* no space, need to allocate new buffer */ |
| 529 | u32 tmp_bi = 0; |
| 530 | vlib_buffer_alloc (vm, &tmp_bi, 1); |
| 531 | tmp_b = vlib_get_buffer (vm, tmp_bi); |
| 532 | esn = tmp_b->data; |
| 533 | pd->free_buffer_index = tmp_bi; |
| 534 | } |
| 535 | clib_memcpy_fast (esn, &seq_hi, sz); |
| 536 | |
| 537 | vec_add2 (ptd->chunks, ch, 1); |
| 538 | op->n_chunks += 1; |
| 539 | ch->src = esn; |
| 540 | ch->len = sz; |
| 541 | } |
| 542 | else |
| 543 | { |
| 544 | if (pd->icv_removed) |
| 545 | { |
| 546 | clib_memcpy_fast (vlib_buffer_get_tail |
| 547 | (pd->lb), &seq_hi, sz); |
| 548 | } |
| 549 | else |
| 550 | { |
| 551 | clib_memcpy_fast (tmp, op->digest, |
| 552 | ESP_MAX_ICV_SIZE); |
| 553 | clib_memcpy_fast (op->digest, &seq_hi, sz); |
| 554 | clib_memcpy_fast (op->digest + sz, tmp, |
| 555 | ESP_MAX_ICV_SIZE); |
| 556 | op->digest += sz; |
| 557 | } |
| 558 | ch->len += sz; |
| 559 | } |
| 560 | } |
Filip Tehlar | e4e8c6b | 2020-02-13 07:49:30 +0000 | [diff] [blame] | 561 | break; |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 562 | } |
| 563 | else |
| 564 | ch->len = cb->current_length; |
| 565 | |
| 566 | if (!(cb->flags & VLIB_BUFFER_NEXT_PRESENT)) |
| 567 | break; |
| 568 | |
| 569 | cb = vlib_get_buffer (vm, cb->next_buffer); |
| 570 | } |
| 571 | } |
Filip Tehlar | e4e8c6b | 2020-02-13 07:49:30 +0000 | [diff] [blame] | 572 | else |
| 573 | esp_insert_esn (vm, sa0, pd, op, &len, b[0], payload); |
| 574 | out: |
| 575 | vec_add_aligned (integ_ops[0], op, 1, CLIB_CACHE_LINE_BYTES); |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 576 | } |
| 577 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 578 | payload += esp_sz; |
| 579 | len -= esp_sz; |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 580 | |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 581 | if (sa0->crypto_dec_op_id != VNET_CRYPTO_OP_NONE) |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 582 | { |
Damjan Marion | 060bfb9 | 2019-03-29 13:47:54 +0100 | [diff] [blame] | 583 | vnet_crypto_op_init (op, sa0->crypto_dec_op_id); |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 584 | op->key_index = sa0->crypto_key_index; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 585 | op->iv = payload; |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 586 | |
| 587 | if (ipsec_sa_is_set_IS_AEAD (sa0)) |
| 588 | { |
| 589 | esp_header_t *esp0; |
| 590 | esp_aead_t *aad; |
| 591 | u8 *scratch; |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 592 | |
| 593 | /* |
| 594 | * construct the AAD and the nonce (Salt || IV) in a scratch |
| 595 | * space in front of the IP header. |
| 596 | */ |
| 597 | scratch = payload - esp_sz; |
| 598 | esp0 = (esp_header_t *) (scratch); |
| 599 | |
| 600 | scratch -= (sizeof (*aad) + pd->hdr_sz); |
| 601 | op->aad = scratch; |
| 602 | |
| 603 | esp_aad_fill (op, esp0, sa0); |
| 604 | |
| 605 | /* |
| 606 | * we don't need to refer to the ESP header anymore so we |
| 607 | * can overwrite it with the salt and use the IV where it is |
| 608 | * to form the nonce = (Salt + IV) |
| 609 | */ |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 610 | op->iv -= sizeof (sa0->salt); |
Neale Ranns | 80f6fd5 | 2019-04-16 02:41:34 +0000 | [diff] [blame] | 611 | clib_memcpy_fast (op->iv, &sa0->salt, sizeof (sa0->salt)); |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 612 | |
| 613 | op->tag = payload + len; |
| 614 | op->tag_len = 16; |
| 615 | } |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 616 | op->src = op->dst = payload += cpd.iv_sz; |
Neale Ranns | 0a0c7ee | 2019-04-13 15:30:21 +0000 | [diff] [blame] | 617 | op->len = len - cpd.iv_sz; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 618 | op->user_data = b - bufs; |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 619 | |
| 620 | if (pd->lb != b[0]) |
| 621 | { |
| 622 | /* buffer is chained */ |
| 623 | vlib_buffer_t *cb = b[0]; |
| 624 | op->flags |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS; |
| 625 | op->chunk_index = vec_len (ptd->chunks); |
| 626 | vec_add2 (ptd->chunks, ch, 1); |
| 627 | ch->len = len - cpd.iv_sz + cpd.icv_sz; |
| 628 | ch->src = ch->dst = payload; |
| 629 | cb = vlib_get_buffer (vm, cb->next_buffer); |
| 630 | op->n_chunks = 1; |
| 631 | |
| 632 | while (1) |
| 633 | { |
| 634 | vec_add2 (ptd->chunks, ch, 1); |
| 635 | op->n_chunks += 1; |
| 636 | ch->src = ch->dst = vlib_buffer_get_current (cb); |
| 637 | if (pd->lb == cb) |
| 638 | { |
| 639 | if (ipsec_sa_is_set_IS_AEAD (sa0)) |
| 640 | { |
| 641 | if (pd->lb->current_length < cpd.icv_sz) |
| 642 | { |
Filip Tehlar | e4e8c6b | 2020-02-13 07:49:30 +0000 | [diff] [blame] | 643 | u16 dif = 0; |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 644 | op->tag = |
Filip Tehlar | e4e8c6b | 2020-02-13 07:49:30 +0000 | [diff] [blame] | 645 | esp_move_icv (vm, b[0], pd, cpd.icv_sz, &dif); |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 646 | |
| 647 | /* this chunk does not contain crypto data */ |
| 648 | op->n_chunks -= 1; |
| 649 | |
| 650 | /* and fix previous chunk's length as it might have |
| 651 | been changed */ |
| 652 | ASSERT (op->n_chunks > 0); |
Filip Tehlar | e4e8c6b | 2020-02-13 07:49:30 +0000 | [diff] [blame] | 653 | if (pd->lb == b[0]) |
| 654 | ch[-1].len -= dif; |
| 655 | else |
| 656 | ch[-1].len = pd->lb->current_length; |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 657 | break; |
| 658 | } |
| 659 | else |
| 660 | op->tag = |
| 661 | vlib_buffer_get_tail (pd->lb) - cpd.icv_sz; |
| 662 | } |
| 663 | |
| 664 | if (pd->icv_removed) |
| 665 | ch->len = cb->current_length; |
| 666 | else |
| 667 | ch->len = cb->current_length - cpd.icv_sz; |
| 668 | } |
| 669 | else |
| 670 | ch->len = cb->current_length; |
| 671 | |
| 672 | if (!(cb->flags & VLIB_BUFFER_NEXT_PRESENT)) |
| 673 | break; |
| 674 | |
| 675 | cb = vlib_get_buffer (vm, cb->next_buffer); |
| 676 | } |
| 677 | } |
Filip Tehlar | e4e8c6b | 2020-02-13 07:49:30 +0000 | [diff] [blame] | 678 | |
| 679 | vec_add_aligned (crypto_ops[0], op, 1, CLIB_CACHE_LINE_BYTES); |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 680 | } |
| 681 | |
| 682 | /* next */ |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 683 | next: |
| 684 | n_left -= 1; |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 685 | next += 1; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 686 | pd += 1; |
| 687 | b += 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 688 | } |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 689 | |
Neale Ranns | 0295040 | 2019-12-20 00:54:57 +0000 | [diff] [blame] | 690 | if (PREDICT_TRUE (~0 != current_sa_index)) |
| 691 | vlib_increment_combined_counter (&ipsec_sa_counters, thread_index, |
| 692 | current_sa_index, current_sa_pkts, |
| 693 | current_sa_bytes); |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 694 | |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 695 | esp_process_ops (vm, node, ptd->integ_ops, bufs, nexts, |
| 696 | ESP_DECRYPT_ERROR_INTEG_ERROR); |
| 697 | esp_process_chained_ops (vm, node, ptd->chained_integ_ops, bufs, nexts, |
| 698 | ptd->chunks, ESP_DECRYPT_ERROR_INTEG_ERROR); |
Neale Ranns | 92e9384 | 2019-04-08 07:36:50 +0000 | [diff] [blame] | 699 | |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 700 | esp_process_ops (vm, node, ptd->crypto_ops, bufs, nexts, |
| 701 | ESP_DECRYPT_ERROR_DECRYPTION_FAILED); |
| 702 | esp_process_chained_ops (vm, node, ptd->chained_crypto_ops, bufs, nexts, |
| 703 | ptd->chunks, ESP_DECRYPT_ERROR_DECRYPTION_FAILED); |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 704 | |
| 705 | /* Post decryption ronud - adjust packet data start and length and next |
| 706 | node */ |
| 707 | |
| 708 | n_left = from_frame->n_vectors; |
| 709 | next = nexts; |
| 710 | pd = pkt_data; |
| 711 | b = bufs; |
| 712 | |
| 713 | while (n_left) |
| 714 | { |
| 715 | const u8 tun_flags = IPSEC_SA_FLAG_IS_TUNNEL | |
| 716 | IPSEC_SA_FLAG_IS_TUNNEL_V6; |
| 717 | |
| 718 | if (n_left >= 2) |
| 719 | { |
| 720 | void *data = b[1]->data + pd[1].current_data; |
| 721 | |
| 722 | /* buffer metadata */ |
| 723 | vlib_prefetch_buffer_header (b[1], LOAD); |
| 724 | |
| 725 | /* esp_footer_t */ |
| 726 | CLIB_PREFETCH (data + pd[1].current_length - pd[1].icv_sz - 2, |
| 727 | CLIB_CACHE_LINE_BYTES, LOAD); |
| 728 | |
| 729 | /* packet headers */ |
| 730 | CLIB_PREFETCH (data - CLIB_CACHE_LINE_BYTES, |
| 731 | CLIB_CACHE_LINE_BYTES * 2, LOAD); |
| 732 | } |
| 733 | |
| 734 | if (next[0] < ESP_DECRYPT_N_NEXT) |
| 735 | goto trace; |
| 736 | |
| 737 | sa0 = vec_elt_at_index (im->sad, pd->sa_index); |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 738 | |
Neale Ranns | 3b9374f | 2019-08-01 04:45:15 -0700 | [diff] [blame] | 739 | /* |
| 740 | * redo the anti-reply check |
| 741 | * in this frame say we have sequence numbers, s, s+1, s+1, s+1 |
| 742 | * and s and s+1 are in the window. When we did the anti-replay |
| 743 | * check above we did so against the state of the window (W), |
| 744 | * after packet s-1. So each of the packets in the sequence will be |
| 745 | * accepted. |
| 746 | * This time s will be cheked against Ws-1, s+1 chceked against Ws |
| 747 | * (i.e. the window state is updated/advnaced) |
| 748 | * so this time the successive s+! packet will be dropped. |
| 749 | * This is a consequence of batching the decrypts. If the |
| 750 | * check-dcrypt-advance process was done for each packet it would |
| 751 | * be fine. But we batch the decrypts because it's much more efficient |
| 752 | * to do so in SW and if we offload to HW and the process is async. |
| 753 | * |
| 754 | * You're probably thinking, but this means an attacker can send the |
| 755 | * above sequence and cause VPP to perform decrpyts that will fail, |
| 756 | * and that's true. But if the attacker can determine s (a valid |
| 757 | * sequence number in the window) which is non-trivial, it can generate |
| 758 | * a sequence s, s+1, s+2, s+3, ... s+n and nothing will prevent any |
| 759 | * implementation, sequential or batching, from decrypting these. |
| 760 | */ |
| 761 | if (ipsec_sa_anti_replay_check (sa0, pd->seq)) |
| 762 | { |
| 763 | b[0]->error = node->errors[ESP_DECRYPT_ERROR_REPLAY]; |
| 764 | next[0] = ESP_DECRYPT_NEXT_DROP; |
| 765 | goto trace; |
| 766 | } |
| 767 | |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 768 | ipsec_sa_anti_replay_advance (sa0, pd->seq); |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 769 | |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 770 | u8 pad_length = 0, next_header = 0; |
| 771 | u16 icv_sz = pd->icv_removed ? 0 : pd->icv_sz; |
| 772 | |
| 773 | if (pd->free_buffer_index) |
| 774 | vlib_buffer_free_one (vm, pd->free_buffer_index); |
| 775 | |
| 776 | if (pd->lb->current_length < sizeof (esp_footer_t) + icv_sz) |
| 777 | { |
| 778 | /* esp footer is either splitted in two buffers or in the before |
| 779 | * last buffer */ |
| 780 | |
| 781 | vlib_buffer_t *before_last = b[0], *bp = b[0]; |
| 782 | while (bp->flags & VLIB_BUFFER_NEXT_PRESENT) |
| 783 | { |
| 784 | before_last = bp; |
| 785 | bp = vlib_get_buffer (vm, bp->next_buffer); |
| 786 | } |
| 787 | u8 *bt = vlib_buffer_get_tail (before_last); |
| 788 | |
| 789 | if (pd->lb->current_length == icv_sz) |
| 790 | { |
| 791 | esp_footer_t *f = (esp_footer_t *) (bt - sizeof (*f)); |
| 792 | pad_length = f->pad_length; |
| 793 | next_header = f->next_header; |
| 794 | } |
| 795 | else |
| 796 | { |
| 797 | pad_length = (bt - 1)[0]; |
| 798 | next_header = ((u8 *) vlib_buffer_get_current (pd->lb))[0]; |
| 799 | } |
| 800 | } |
| 801 | else |
| 802 | { |
| 803 | esp_footer_t *f = |
| 804 | (esp_footer_t *) (pd->lb->data + pd->lb->current_data + |
| 805 | pd->lb->current_length - sizeof (esp_footer_t) - |
| 806 | icv_sz); |
| 807 | pad_length = f->pad_length; |
| 808 | next_header = f->next_header; |
| 809 | } |
| 810 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 811 | u16 adv = pd->iv_sz + esp_sz; |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 812 | u16 tail = sizeof (esp_footer_t) + pad_length + icv_sz; |
| 813 | u16 tail_orig = sizeof (esp_footer_t) + pad_length + pd->icv_sz; |
| 814 | b[0]->flags &= ~VLIB_BUFFER_TOTAL_LENGTH_VALID; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 815 | |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 816 | if ((pd->flags & tun_flags) == 0 && !is_tun) /* transport mode */ |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 817 | { |
| 818 | u8 udp_sz = (is_ip6 == 0 && pd->flags & IPSEC_SA_FLAG_UDP_ENCAP) ? |
| 819 | sizeof (udp_header_t) : 0; |
| 820 | u16 ip_hdr_sz = pd->hdr_sz - udp_sz; |
| 821 | u8 *old_ip = b[0]->data + pd->current_data - ip_hdr_sz - udp_sz; |
| 822 | u8 *ip = old_ip + adv + udp_sz; |
| 823 | |
| 824 | if (is_ip6 && ip_hdr_sz > 64) |
| 825 | memmove (ip, old_ip, ip_hdr_sz); |
| 826 | else |
| 827 | clib_memcpy_le64 (ip, old_ip, ip_hdr_sz); |
| 828 | |
| 829 | b[0]->current_data = pd->current_data + adv - ip_hdr_sz; |
Filip Tehlar | e4e8c6b | 2020-02-13 07:49:30 +0000 | [diff] [blame] | 830 | b[0]->current_length += ip_hdr_sz - adv; |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 831 | esp_remove_tail (vm, b[0], pd->lb, tail); |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 832 | |
| 833 | if (is_ip6) |
| 834 | { |
| 835 | ip6_header_t *ip6 = (ip6_header_t *) ip; |
| 836 | u16 len = clib_net_to_host_u16 (ip6->payload_length); |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 837 | len -= adv + tail_orig; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 838 | ip6->payload_length = clib_host_to_net_u16 (len); |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 839 | ip6->protocol = next_header; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 840 | next[0] = ESP_DECRYPT_NEXT_IP6_INPUT; |
| 841 | } |
| 842 | else |
| 843 | { |
| 844 | ip4_header_t *ip4 = (ip4_header_t *) ip; |
| 845 | ip_csum_t sum = ip4->checksum; |
| 846 | u16 len = clib_net_to_host_u16 (ip4->length); |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 847 | len = clib_host_to_net_u16 (len - adv - tail_orig - udp_sz); |
| 848 | sum = ip_csum_update (sum, ip4->protocol, next_header, |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 849 | ip4_header_t, protocol); |
| 850 | sum = ip_csum_update (sum, ip4->length, len, |
| 851 | ip4_header_t, length); |
| 852 | ip4->checksum = ip_csum_fold (sum); |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 853 | ip4->protocol = next_header; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 854 | ip4->length = len; |
| 855 | next[0] = ESP_DECRYPT_NEXT_IP4_INPUT; |
| 856 | } |
| 857 | } |
| 858 | else |
| 859 | { |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 860 | if (PREDICT_TRUE (next_header == IP_PROTOCOL_IP_IN_IP)) |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 861 | { |
| 862 | next[0] = ESP_DECRYPT_NEXT_IP4_INPUT; |
| 863 | b[0]->current_data = pd->current_data + adv; |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 864 | b[0]->current_length = pd->current_length - adv; |
| 865 | esp_remove_tail (vm, b[0], pd->lb, tail); |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 866 | } |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 867 | else if (next_header == IP_PROTOCOL_IPV6) |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 868 | { |
| 869 | next[0] = ESP_DECRYPT_NEXT_IP6_INPUT; |
| 870 | b[0]->current_data = pd->current_data + adv; |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 871 | b[0]->current_length = pd->current_length - adv; |
| 872 | esp_remove_tail (vm, b[0], pd->lb, tail); |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 873 | } |
| 874 | else |
| 875 | { |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 876 | if (is_tun && next_header == IP_PROTOCOL_GRE) |
Neale Ranns | 568acbb | 2019-12-18 05:54:40 +0000 | [diff] [blame] | 877 | { |
| 878 | gre_header_t *gre; |
| 879 | |
| 880 | b[0]->current_data = pd->current_data + adv; |
| 881 | b[0]->current_length = pd->current_length - adv - tail; |
| 882 | |
| 883 | gre = vlib_buffer_get_current (b[0]); |
| 884 | |
| 885 | vlib_buffer_advance (b[0], sizeof (*gre)); |
| 886 | |
| 887 | switch (clib_net_to_host_u16 (gre->protocol)) |
| 888 | { |
| 889 | case GRE_PROTOCOL_teb: |
John Lo | 90430b6 | 2020-01-31 23:48:30 -0500 | [diff] [blame] | 890 | vnet_update_l2_len (b[0]); |
Neale Ranns | 568acbb | 2019-12-18 05:54:40 +0000 | [diff] [blame] | 891 | next[0] = ESP_DECRYPT_NEXT_L2_INPUT; |
| 892 | break; |
| 893 | case GRE_PROTOCOL_ip4: |
| 894 | next[0] = ESP_DECRYPT_NEXT_IP4_INPUT; |
| 895 | break; |
| 896 | case GRE_PROTOCOL_ip6: |
| 897 | next[0] = ESP_DECRYPT_NEXT_IP6_INPUT; |
| 898 | break; |
| 899 | default: |
Neale Ranns | 0295040 | 2019-12-20 00:54:57 +0000 | [diff] [blame] | 900 | b[0]->error = |
| 901 | node->errors[ESP_DECRYPT_ERROR_UNSUP_PAYLOAD]; |
Neale Ranns | 568acbb | 2019-12-18 05:54:40 +0000 | [diff] [blame] | 902 | next[0] = ESP_DECRYPT_NEXT_DROP; |
| 903 | break; |
| 904 | } |
| 905 | } |
| 906 | else |
| 907 | { |
| 908 | next[0] = ESP_DECRYPT_NEXT_DROP; |
Neale Ranns | 0295040 | 2019-12-20 00:54:57 +0000 | [diff] [blame] | 909 | b[0]->error = node->errors[ESP_DECRYPT_ERROR_UNSUP_PAYLOAD]; |
Neale Ranns | 568acbb | 2019-12-18 05:54:40 +0000 | [diff] [blame] | 910 | goto trace; |
| 911 | } |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 912 | } |
| 913 | if (is_tun) |
| 914 | { |
| 915 | if (ipsec_sa_is_set_IS_PROTECT (sa0)) |
| 916 | { |
| 917 | /* |
Neale Ranns | 0295040 | 2019-12-20 00:54:57 +0000 | [diff] [blame] | 918 | * There are two encap possibilities |
| 919 | * 1) the tunnel and ths SA are prodiving encap, i.e. it's |
| 920 | * MAC | SA-IP | TUN-IP | ESP | PAYLOAD |
| 921 | * implying the SA is in tunnel mode (on a tunnel interface) |
| 922 | * 2) only the tunnel provides encap |
| 923 | * MAC | TUN-IP | ESP | PAYLOAD |
| 924 | * implying the SA is in transport mode. |
| 925 | * |
| 926 | * For 2) we need only strip the tunnel encap and we're good. |
| 927 | * since the tunnel and crypto ecnap (int the tun=protect |
| 928 | * object) are the same and we verified above that these match |
| 929 | * for 1) we need to strip the SA-IP outer headers, to |
| 930 | * reveal the tunnel IP and then check that this matches |
| 931 | * the configured tunnel. |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 932 | */ |
| 933 | const ipsec_tun_protect_t *itp; |
| 934 | |
Neale Ranns | 568acbb | 2019-12-18 05:54:40 +0000 | [diff] [blame] | 935 | itp = ipsec_tun_protect_get |
| 936 | (vnet_buffer (b[0])->ipsec.protect_index); |
| 937 | |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 938 | if (PREDICT_TRUE (next_header == IP_PROTOCOL_IP_IN_IP)) |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 939 | { |
| 940 | const ip4_header_t *ip4; |
| 941 | |
| 942 | ip4 = vlib_buffer_get_current (b[0]); |
| 943 | |
| 944 | if (!ip46_address_is_equal_v4 (&itp->itp_tun.src, |
| 945 | &ip4->dst_address) || |
| 946 | !ip46_address_is_equal_v4 (&itp->itp_tun.dst, |
| 947 | &ip4->src_address)) |
Neale Ranns | 12989b5 | 2019-09-26 16:20:19 +0000 | [diff] [blame] | 948 | { |
| 949 | next[0] = ESP_DECRYPT_NEXT_DROP; |
| 950 | b[0]->error = |
| 951 | node->errors[ESP_DECRYPT_ERROR_TUN_NO_PROTO]; |
| 952 | } |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 953 | } |
Filip Tehlar | efcad1a | 2020-02-04 09:36:04 +0000 | [diff] [blame] | 954 | else if (next_header == IP_PROTOCOL_IPV6) |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 955 | { |
| 956 | const ip6_header_t *ip6; |
| 957 | |
| 958 | ip6 = vlib_buffer_get_current (b[0]); |
| 959 | |
| 960 | if (!ip46_address_is_equal_v6 (&itp->itp_tun.src, |
| 961 | &ip6->dst_address) || |
| 962 | !ip46_address_is_equal_v6 (&itp->itp_tun.dst, |
| 963 | &ip6->src_address)) |
Neale Ranns | 12989b5 | 2019-09-26 16:20:19 +0000 | [diff] [blame] | 964 | { |
| 965 | next[0] = ESP_DECRYPT_NEXT_DROP; |
| 966 | b[0]->error = |
| 967 | node->errors[ESP_DECRYPT_ERROR_TUN_NO_PROTO]; |
| 968 | } |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 969 | } |
| 970 | } |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 971 | } |
| 972 | } |
| 973 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 974 | trace: |
| 975 | if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED)) |
| 976 | { |
| 977 | esp_decrypt_trace_t *tr; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 978 | tr = vlib_add_trace (vm, node, b[0], sizeof (*tr)); |
| 979 | sa0 = pool_elt_at_index (im->sad, |
| 980 | vnet_buffer (b[0])->ipsec.sad_index); |
| 981 | tr->crypto_alg = sa0->crypto_alg; |
| 982 | tr->integ_alg = sa0->integ_alg; |
Neale Ranns | 6afaae1 | 2019-07-17 15:07:14 +0000 | [diff] [blame] | 983 | tr->seq = pd->seq; |
| 984 | tr->sa_seq = sa0->last_seq; |
| 985 | tr->sa_seq_hi = sa0->seq_hi; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 986 | } |
| 987 | |
| 988 | /* next */ |
| 989 | n_left -= 1; |
| 990 | next += 1; |
| 991 | pd += 1; |
| 992 | b += 1; |
| 993 | } |
| 994 | |
| 995 | n_left = from_frame->n_vectors; |
| 996 | vlib_node_increment_counter (vm, node->node_index, |
| 997 | ESP_DECRYPT_ERROR_RX_PKTS, n_left); |
| 998 | |
| 999 | vlib_buffer_enqueue_to_next (vm, node, from, nexts, n_left); |
| 1000 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 1001 | return n_left; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1002 | } |
| 1003 | |
Klement Sekera | b8f3544 | 2018-10-29 13:38:19 +0100 | [diff] [blame] | 1004 | VLIB_NODE_FN (esp4_decrypt_node) (vlib_main_t * vm, |
| 1005 | vlib_node_runtime_t * node, |
| 1006 | vlib_frame_t * from_frame) |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 1007 | { |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 1008 | return esp_decrypt_inline (vm, node, from_frame, 0, 0); |
| 1009 | } |
| 1010 | |
| 1011 | VLIB_NODE_FN (esp4_decrypt_tun_node) (vlib_main_t * vm, |
| 1012 | vlib_node_runtime_t * node, |
| 1013 | vlib_frame_t * from_frame) |
| 1014 | { |
| 1015 | return esp_decrypt_inline (vm, node, from_frame, 0, 1); |
| 1016 | } |
| 1017 | |
| 1018 | VLIB_NODE_FN (esp6_decrypt_node) (vlib_main_t * vm, |
| 1019 | vlib_node_runtime_t * node, |
| 1020 | vlib_frame_t * from_frame) |
| 1021 | { |
| 1022 | return esp_decrypt_inline (vm, node, from_frame, 1, 0); |
| 1023 | } |
| 1024 | |
| 1025 | VLIB_NODE_FN (esp6_decrypt_tun_node) (vlib_main_t * vm, |
| 1026 | vlib_node_runtime_t * node, |
| 1027 | vlib_frame_t * from_frame) |
| 1028 | { |
| 1029 | return esp_decrypt_inline (vm, node, from_frame, 1, 1); |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 1030 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1031 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 1032 | /* *INDENT-OFF* */ |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 1033 | VLIB_REGISTER_NODE (esp4_decrypt_node) = { |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 1034 | .name = "esp4-decrypt", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1035 | .vector_size = sizeof (u32), |
| 1036 | .format_trace = format_esp_decrypt_trace, |
| 1037 | .type = VLIB_NODE_TYPE_INTERNAL, |
| 1038 | |
| 1039 | .n_errors = ARRAY_LEN(esp_decrypt_error_strings), |
| 1040 | .error_strings = esp_decrypt_error_strings, |
| 1041 | |
| 1042 | .n_next_nodes = ESP_DECRYPT_N_NEXT, |
| 1043 | .next_nodes = { |
Neale Ranns | f62a8c0 | 2019-04-02 08:13:33 +0000 | [diff] [blame] | 1044 | [ESP_DECRYPT_NEXT_DROP] = "ip4-drop", |
| 1045 | [ESP_DECRYPT_NEXT_IP4_INPUT] = "ip4-input-no-checksum", |
| 1046 | [ESP_DECRYPT_NEXT_IP6_INPUT] = "ip6-input", |
Neale Ranns | 568acbb | 2019-12-18 05:54:40 +0000 | [diff] [blame] | 1047 | [ESP_DECRYPT_NEXT_L2_INPUT] = "l2-input", |
Neale Ranns | f62a8c0 | 2019-04-02 08:13:33 +0000 | [diff] [blame] | 1048 | [ESP_DECRYPT_NEXT_HANDOFF] = "esp4-decrypt-handoff", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1049 | }, |
| 1050 | }; |
| 1051 | |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 1052 | VLIB_REGISTER_NODE (esp6_decrypt_node) = { |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 1053 | .name = "esp6-decrypt", |
| 1054 | .vector_size = sizeof (u32), |
| 1055 | .format_trace = format_esp_decrypt_trace, |
| 1056 | .type = VLIB_NODE_TYPE_INTERNAL, |
| 1057 | |
| 1058 | .n_errors = ARRAY_LEN(esp_decrypt_error_strings), |
| 1059 | .error_strings = esp_decrypt_error_strings, |
| 1060 | |
| 1061 | .n_next_nodes = ESP_DECRYPT_N_NEXT, |
| 1062 | .next_nodes = { |
Neale Ranns | f62a8c0 | 2019-04-02 08:13:33 +0000 | [diff] [blame] | 1063 | [ESP_DECRYPT_NEXT_DROP] = "ip6-drop", |
| 1064 | [ESP_DECRYPT_NEXT_IP4_INPUT] = "ip4-input-no-checksum", |
| 1065 | [ESP_DECRYPT_NEXT_IP6_INPUT] = "ip6-input", |
Neale Ranns | 568acbb | 2019-12-18 05:54:40 +0000 | [diff] [blame] | 1066 | [ESP_DECRYPT_NEXT_L2_INPUT] = "l2-input", |
Neale Ranns | f62a8c0 | 2019-04-02 08:13:33 +0000 | [diff] [blame] | 1067 | [ESP_DECRYPT_NEXT_HANDOFF]= "esp6-decrypt-handoff", |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 1068 | }, |
| 1069 | }; |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 1070 | |
| 1071 | VLIB_REGISTER_NODE (esp4_decrypt_tun_node) = { |
| 1072 | .name = "esp4-decrypt-tun", |
| 1073 | .vector_size = sizeof (u32), |
| 1074 | .format_trace = format_esp_decrypt_trace, |
| 1075 | .type = VLIB_NODE_TYPE_INTERNAL, |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 1076 | .n_errors = ARRAY_LEN(esp_decrypt_error_strings), |
| 1077 | .error_strings = esp_decrypt_error_strings, |
Neale Ranns | f62a8c0 | 2019-04-02 08:13:33 +0000 | [diff] [blame] | 1078 | .n_next_nodes = ESP_DECRYPT_N_NEXT, |
| 1079 | .next_nodes = { |
| 1080 | [ESP_DECRYPT_NEXT_DROP] = "ip4-drop", |
| 1081 | [ESP_DECRYPT_NEXT_IP4_INPUT] = "ip4-input-no-checksum", |
| 1082 | [ESP_DECRYPT_NEXT_IP6_INPUT] = "ip6-input", |
Neale Ranns | 568acbb | 2019-12-18 05:54:40 +0000 | [diff] [blame] | 1083 | [ESP_DECRYPT_NEXT_L2_INPUT] = "l2-input", |
Neale Ranns | 4a56f4e | 2019-12-23 04:10:25 +0000 | [diff] [blame] | 1084 | [ESP_DECRYPT_NEXT_HANDOFF] = "esp4-decrypt-tun-handoff", |
Neale Ranns | f62a8c0 | 2019-04-02 08:13:33 +0000 | [diff] [blame] | 1085 | }, |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 1086 | }; |
| 1087 | |
| 1088 | VLIB_REGISTER_NODE (esp6_decrypt_tun_node) = { |
| 1089 | .name = "esp6-decrypt-tun", |
| 1090 | .vector_size = sizeof (u32), |
| 1091 | .format_trace = format_esp_decrypt_trace, |
| 1092 | .type = VLIB_NODE_TYPE_INTERNAL, |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 1093 | .n_errors = ARRAY_LEN(esp_decrypt_error_strings), |
| 1094 | .error_strings = esp_decrypt_error_strings, |
Neale Ranns | f62a8c0 | 2019-04-02 08:13:33 +0000 | [diff] [blame] | 1095 | .n_next_nodes = ESP_DECRYPT_N_NEXT, |
| 1096 | .next_nodes = { |
| 1097 | [ESP_DECRYPT_NEXT_DROP] = "ip6-drop", |
| 1098 | [ESP_DECRYPT_NEXT_IP4_INPUT] = "ip4-input-no-checksum", |
| 1099 | [ESP_DECRYPT_NEXT_IP6_INPUT] = "ip6-input", |
Neale Ranns | 568acbb | 2019-12-18 05:54:40 +0000 | [diff] [blame] | 1100 | [ESP_DECRYPT_NEXT_L2_INPUT] = "l2-input", |
Neale Ranns | 4a56f4e | 2019-12-23 04:10:25 +0000 | [diff] [blame] | 1101 | [ESP_DECRYPT_NEXT_HANDOFF]= "esp6-decrypt-tun-handoff", |
Neale Ranns | f62a8c0 | 2019-04-02 08:13:33 +0000 | [diff] [blame] | 1102 | }, |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 1103 | }; |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 1104 | /* *INDENT-ON* */ |
| 1105 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 1106 | /* |
| 1107 | * fd.io coding-style-patch-verification: ON |
| 1108 | * |
| 1109 | * Local Variables: |
| 1110 | * eval: (c-set-style "gnu") |
| 1111 | * End: |
| 1112 | */ |