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> |
| 21 | |
| 22 | #include <vnet/ipsec/ipsec.h> |
| 23 | #include <vnet/ipsec/esp.h> |
Neale Ranns | 918c161 | 2019-02-21 23:34:59 -0800 | [diff] [blame] | 24 | #include <vnet/ipsec/ipsec_io.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 25 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 26 | #define foreach_esp_decrypt_next \ |
| 27 | _(DROP, "error-drop") \ |
Kingwel Xie | 561d1ca | 2019-03-05 22:56:17 -0500 | [diff] [blame] | 28 | _(IP4_INPUT, "ip4-input-no-checksum") \ |
Matus Fabian | 694265d | 2016-08-10 01:55:36 -0700 | [diff] [blame] | 29 | _(IP6_INPUT, "ip6-input") \ |
| 30 | _(IPSEC_GRE_INPUT, "ipsec-gre-input") |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 31 | |
| 32 | #define _(v, s) ESP_DECRYPT_NEXT_##v, |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 33 | typedef enum |
| 34 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 35 | foreach_esp_decrypt_next |
| 36 | #undef _ |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 37 | ESP_DECRYPT_N_NEXT, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 38 | } esp_decrypt_next_t; |
| 39 | |
| 40 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 41 | #define foreach_esp_decrypt_error \ |
| 42 | _(RX_PKTS, "ESP pkts received") \ |
| 43 | _(DECRYPTION_FAILED, "ESP decryption failed") \ |
| 44 | _(INTEG_ERROR, "Integrity check failed") \ |
| 45 | _(CRYPTO_ENGINE_ERROR, "crypto engine error (packet dropped)") \ |
| 46 | _(REPLAY, "SA replayed packet") \ |
Damjan Marion | a829b13 | 2019-04-24 23:39:16 +0200 | [diff] [blame] | 47 | _(RUNT, "undersized packet") \ |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 48 | _(CHAINED_BUFFER, "chained buffers (packet dropped)") \ |
| 49 | _(OVERSIZED_HEADER, "buffer with oversized header (dropped)") \ |
| 50 | _(NO_TAIL_SPACE, "no enough buffer tail space (dropped)") |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 51 | |
| 52 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 53 | typedef enum |
| 54 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 55 | #define _(sym,str) ESP_DECRYPT_ERROR_##sym, |
| 56 | foreach_esp_decrypt_error |
| 57 | #undef _ |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 58 | ESP_DECRYPT_N_ERROR, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 59 | } esp_decrypt_error_t; |
| 60 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 61 | static char *esp_decrypt_error_strings[] = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 62 | #define _(sym,string) string, |
| 63 | foreach_esp_decrypt_error |
| 64 | #undef _ |
| 65 | }; |
| 66 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 67 | typedef struct |
| 68 | { |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 69 | u32 seq; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 70 | ipsec_crypto_alg_t crypto_alg; |
| 71 | ipsec_integ_alg_t integ_alg; |
| 72 | } esp_decrypt_trace_t; |
| 73 | |
| 74 | /* packet trace format function */ |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 75 | static u8 * |
| 76 | format_esp_decrypt_trace (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 77 | { |
| 78 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 79 | 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] | 80 | esp_decrypt_trace_t *t = va_arg (*args, esp_decrypt_trace_t *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 81 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 82 | s = format (s, "esp: crypto %U integrity %U seq %u", |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 83 | format_ipsec_crypto_alg, t->crypto_alg, |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 84 | format_ipsec_integ_alg, t->integ_alg, t->seq); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 85 | return s; |
| 86 | } |
| 87 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 88 | typedef struct |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 89 | { |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 90 | union |
| 91 | { |
| 92 | struct |
| 93 | { |
| 94 | u8 icv_sz; |
| 95 | u8 iv_sz; |
| 96 | ipsec_sa_flags_t flags:8; |
| 97 | u32 sa_index; |
| 98 | }; |
| 99 | u64 sa_data; |
| 100 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 101 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 102 | i16 current_data; |
| 103 | i16 current_length; |
| 104 | u16 hdr_sz; |
| 105 | } esp_decrypt_packet_data_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 106 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 107 | STATIC_ASSERT_SIZEOF (esp_decrypt_packet_data_t, 2 * sizeof (u64)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 108 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 109 | #define ESP_ENCRYPT_PD_F_FD_TRANSPORT (1 << 2) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 110 | |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 111 | always_inline uword |
| 112 | esp_decrypt_inline (vlib_main_t * vm, |
| 113 | vlib_node_runtime_t * node, vlib_frame_t * from_frame, |
| 114 | int is_ip6) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 115 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 116 | ipsec_main_t *im = &ipsec_main; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 117 | u32 thread_index = vm->thread_index; |
| 118 | u16 buffer_data_size = vlib_buffer_get_default_data_size (vm); |
| 119 | u16 len; |
| 120 | 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] | 121 | u32 *from = vlib_frame_vector_args (from_frame); |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 122 | u32 n, n_left = from_frame->n_vectors; |
| 123 | vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs; |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 124 | u16 nexts[VLIB_FRAME_SIZE], *next = nexts; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 125 | esp_decrypt_packet_data_t pkt_data[VLIB_FRAME_SIZE], *pd = pkt_data; |
| 126 | esp_decrypt_packet_data_t cpd = { }; |
| 127 | u32 current_sa_index = ~0, current_sa_bytes = 0, current_sa_pkts = 0; |
| 128 | const u8 esp_sz = sizeof (esp_header_t); |
| 129 | ipsec_sa_t *sa0 = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 130 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 131 | vlib_get_buffers (vm, from, b, n_left); |
| 132 | vec_reset_length (ptd->crypto_ops); |
| 133 | vec_reset_length (ptd->integ_ops); |
| 134 | clib_memset_u16 (nexts, -1, n_left); |
| 135 | |
| 136 | while (n_left > 0) |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 137 | { |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 138 | u8 *payload; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 139 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 140 | if (n_left > 2) |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 141 | { |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 142 | u8 *p; |
| 143 | vlib_prefetch_buffer_header (b[2], LOAD); |
| 144 | p = vlib_buffer_get_current (b[1]); |
| 145 | CLIB_PREFETCH (p, CLIB_CACHE_LINE_BYTES, LOAD); |
| 146 | p -= CLIB_CACHE_LINE_BYTES; |
| 147 | CLIB_PREFETCH (p, CLIB_CACHE_LINE_BYTES, LOAD); |
| 148 | } |
| 149 | |
| 150 | if (vlib_buffer_chain_linearize (vm, b[0]) != 1) |
| 151 | { |
| 152 | b[0]->error = node->errors[ESP_DECRYPT_ERROR_CHAINED_BUFFER]; |
Damjan Marion | 1f4e1cb | 2019-03-28 19:19:31 +0100 | [diff] [blame] | 153 | next[0] = ESP_DECRYPT_NEXT_DROP; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 154 | goto next; |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 155 | } |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 156 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 157 | if (vnet_buffer (b[0])->ipsec.sad_index != current_sa_index) |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 158 | { |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 159 | current_sa_index = vnet_buffer (b[0])->ipsec.sad_index; |
| 160 | sa0 = pool_elt_at_index (im->sad, current_sa_index); |
Damjan Marion | 7c22ff7 | 2019-04-04 12:25:44 +0200 | [diff] [blame] | 161 | cpd.icv_sz = sa0->integ_icv_size; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 162 | cpd.iv_sz = sa0->crypto_iv_size; |
| 163 | cpd.flags = sa0->flags; |
| 164 | cpd.sa_index = current_sa_index; |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 165 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 166 | vlib_increment_combined_counter (&ipsec_sa_counters, thread_index, |
| 167 | current_sa_index, current_sa_pkts, |
| 168 | current_sa_bytes); |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 169 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 170 | current_sa_bytes = current_sa_pkts = 0; |
| 171 | } |
| 172 | |
| 173 | /* store packet data for next round for easier prefetch */ |
| 174 | pd->sa_data = cpd.sa_data; |
| 175 | pd->current_data = b[0]->current_data; |
| 176 | pd->current_length = b[0]->current_length; |
| 177 | pd->hdr_sz = pd->current_data - vnet_buffer (b[0])->l3_hdr_offset; |
| 178 | payload = b[0]->data + pd->current_data; |
| 179 | |
| 180 | /* we need 4 extra bytes for HMAC calculation when ESN are used */ |
Neale Ranns | 49e7ef6 | 2019-04-10 17:24:29 +0000 | [diff] [blame] | 181 | if (ipsec_sa_is_set_USE_ESN (sa0) && pd->icv_sz && |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 182 | (pd->current_data + pd->current_length + 4 > buffer_data_size)) |
| 183 | { |
| 184 | b[0]->error = node->errors[ESP_DECRYPT_ERROR_NO_TAIL_SPACE]; |
| 185 | next[0] = ESP_DECRYPT_NEXT_DROP; |
| 186 | goto next; |
| 187 | } |
| 188 | |
| 189 | /* anti-reply check */ |
| 190 | if (ipsec_sa_anti_replay_check (sa0, &((esp_header_t *) payload)->seq)) |
| 191 | { |
| 192 | b[0]->error = node->errors[ESP_DECRYPT_ERROR_REPLAY]; |
| 193 | next[0] = ESP_DECRYPT_NEXT_DROP; |
| 194 | goto next; |
| 195 | } |
| 196 | |
Damjan Marion | a829b13 | 2019-04-24 23:39:16 +0200 | [diff] [blame] | 197 | if (pd->current_length < cpd.icv_sz + esp_sz + cpd.iv_sz) |
| 198 | { |
| 199 | b[0]->error = node->errors[ESP_DECRYPT_ERROR_RUNT]; |
| 200 | next[0] = ESP_DECRYPT_NEXT_DROP; |
| 201 | goto next; |
| 202 | } |
| 203 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 204 | len = pd->current_length - cpd.icv_sz; |
| 205 | current_sa_pkts += 1; |
| 206 | current_sa_bytes += pd->current_length; |
| 207 | |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 208 | if (PREDICT_TRUE (sa0->integ_op_id != VNET_CRYPTO_OP_NONE)) |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 209 | { |
| 210 | vnet_crypto_op_t *op; |
| 211 | vec_add2_aligned (ptd->integ_ops, op, 1, CLIB_CACHE_LINE_BYTES); |
| 212 | |
Damjan Marion | 060bfb9 | 2019-03-29 13:47:54 +0100 | [diff] [blame] | 213 | vnet_crypto_op_init (op, sa0->integ_op_id); |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 214 | op->key_index = sa0->integ_key_index; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 215 | op->src = payload; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 216 | op->flags = VNET_CRYPTO_OP_FLAG_HMAC_CHECK; |
| 217 | op->user_data = b - bufs; |
Damjan Marion | 060bfb9 | 2019-03-29 13:47:54 +0100 | [diff] [blame] | 218 | op->digest = payload + len; |
| 219 | op->digest_len = cpd.icv_sz; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 220 | op->len = len; |
Neale Ranns | 49e7ef6 | 2019-04-10 17:24:29 +0000 | [diff] [blame] | 221 | if (ipsec_sa_is_set_USE_ESN (sa0)) |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 222 | { |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 223 | /* shift ICV for 4 bytes to insert ESN */ |
| 224 | u8 tmp[ESP_MAX_ICV_SIZE], sz = sizeof (sa0->seq_hi); |
| 225 | clib_memcpy_fast (tmp, payload + len, ESP_MAX_ICV_SIZE); |
| 226 | clib_memcpy_fast (payload + len, &sa0->seq_hi, sz); |
| 227 | clib_memcpy_fast (payload + len + sz, tmp, ESP_MAX_ICV_SIZE); |
| 228 | op->len += sz; |
Neale Ranns | 49e7ef6 | 2019-04-10 17:24:29 +0000 | [diff] [blame] | 229 | op->digest += sz; |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 230 | } |
| 231 | } |
| 232 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 233 | payload += esp_sz; |
| 234 | len -= esp_sz; |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 235 | |
Damjan Marion | 060bfb9 | 2019-03-29 13:47:54 +0100 | [diff] [blame] | 236 | if (sa0->crypto_enc_op_id != VNET_CRYPTO_OP_NONE) |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 237 | { |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 238 | vnet_crypto_op_t *op; |
| 239 | vec_add2_aligned (ptd->crypto_ops, op, 1, CLIB_CACHE_LINE_BYTES); |
Damjan Marion | 060bfb9 | 2019-03-29 13:47:54 +0100 | [diff] [blame] | 240 | vnet_crypto_op_init (op, sa0->crypto_dec_op_id); |
Damjan Marion | d1bed68 | 2019-04-24 15:20:35 +0200 | [diff] [blame] | 241 | op->key_index = sa0->crypto_key_index; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 242 | op->iv = payload; |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 243 | |
| 244 | if (ipsec_sa_is_set_IS_AEAD (sa0)) |
| 245 | { |
| 246 | esp_header_t *esp0; |
| 247 | esp_aead_t *aad; |
| 248 | u8 *scratch; |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 249 | |
| 250 | /* |
| 251 | * construct the AAD and the nonce (Salt || IV) in a scratch |
| 252 | * space in front of the IP header. |
| 253 | */ |
| 254 | scratch = payload - esp_sz; |
| 255 | esp0 = (esp_header_t *) (scratch); |
| 256 | |
| 257 | scratch -= (sizeof (*aad) + pd->hdr_sz); |
| 258 | op->aad = scratch; |
| 259 | |
| 260 | esp_aad_fill (op, esp0, sa0); |
| 261 | |
| 262 | /* |
| 263 | * we don't need to refer to the ESP header anymore so we |
| 264 | * can overwrite it with the salt and use the IV where it is |
| 265 | * to form the nonce = (Salt + IV) |
| 266 | */ |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 267 | op->iv -= sizeof (sa0->salt); |
Neale Ranns | 80f6fd5 | 2019-04-16 02:41:34 +0000 | [diff] [blame] | 268 | clib_memcpy_fast (op->iv, &sa0->salt, sizeof (sa0->salt)); |
Neale Ranns | 47feb11 | 2019-04-11 15:14:07 +0000 | [diff] [blame] | 269 | |
| 270 | op->tag = payload + len; |
| 271 | op->tag_len = 16; |
| 272 | } |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 273 | op->src = op->dst = payload += cpd.iv_sz; |
Neale Ranns | 0a0c7ee | 2019-04-13 15:30:21 +0000 | [diff] [blame] | 274 | op->len = len - cpd.iv_sz; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 275 | op->user_data = b - bufs; |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 276 | } |
| 277 | |
| 278 | /* next */ |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 279 | next: |
| 280 | n_left -= 1; |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 281 | next += 1; |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 282 | pd += 1; |
| 283 | b += 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 284 | } |
Damjan Marion | c98275f | 2019-03-06 14:05:01 +0100 | [diff] [blame] | 285 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 286 | vlib_increment_combined_counter (&ipsec_sa_counters, thread_index, |
| 287 | current_sa_index, current_sa_pkts, |
| 288 | current_sa_bytes); |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 289 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 290 | if ((n = vec_len (ptd->integ_ops))) |
| 291 | { |
| 292 | vnet_crypto_op_t *op = ptd->integ_ops; |
| 293 | n -= vnet_crypto_process_ops (vm, op, n); |
| 294 | while (n) |
| 295 | { |
| 296 | ASSERT (op - ptd->integ_ops < vec_len (ptd->integ_ops)); |
| 297 | if (op->status != VNET_CRYPTO_OP_STATUS_COMPLETED) |
| 298 | { |
| 299 | u32 err, bi = op->user_data; |
| 300 | if (op->status == VNET_CRYPTO_OP_STATUS_FAIL_BAD_HMAC) |
| 301 | err = ESP_DECRYPT_ERROR_INTEG_ERROR; |
| 302 | else |
| 303 | err = ESP_DECRYPT_ERROR_CRYPTO_ENGINE_ERROR; |
| 304 | bufs[bi]->error = node->errors[err]; |
| 305 | nexts[bi] = ESP_DECRYPT_NEXT_DROP; |
| 306 | n--; |
| 307 | } |
| 308 | op++; |
| 309 | } |
| 310 | } |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 311 | if ((n = vec_len (ptd->crypto_ops))) |
| 312 | { |
| 313 | vnet_crypto_op_t *op = ptd->crypto_ops; |
| 314 | n -= vnet_crypto_process_ops (vm, op, n); |
| 315 | while (n) |
| 316 | { |
| 317 | ASSERT (op - ptd->crypto_ops < vec_len (ptd->crypto_ops)); |
| 318 | if (op->status != VNET_CRYPTO_OP_STATUS_COMPLETED) |
| 319 | { |
Neale Ranns | 92e9384 | 2019-04-08 07:36:50 +0000 | [diff] [blame] | 320 | u32 err, bi; |
| 321 | |
| 322 | bi = op->user_data; |
| 323 | |
| 324 | if (op->status == VNET_CRYPTO_OP_STATUS_FAIL_BAD_HMAC) |
Neale Ranns | 21ada3b | 2019-04-11 08:18:34 +0000 | [diff] [blame] | 325 | err = ESP_DECRYPT_ERROR_DECRYPTION_FAILED; |
Neale Ranns | 92e9384 | 2019-04-08 07:36:50 +0000 | [diff] [blame] | 326 | else |
| 327 | err = ESP_DECRYPT_ERROR_CRYPTO_ENGINE_ERROR; |
| 328 | |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 329 | bufs[bi]->error = node->errors[err]; |
| 330 | nexts[bi] = ESP_DECRYPT_NEXT_DROP; |
| 331 | n--; |
| 332 | } |
| 333 | op++; |
| 334 | } |
| 335 | } |
| 336 | |
| 337 | /* Post decryption ronud - adjust packet data start and length and next |
| 338 | node */ |
| 339 | |
| 340 | n_left = from_frame->n_vectors; |
| 341 | next = nexts; |
| 342 | pd = pkt_data; |
| 343 | b = bufs; |
| 344 | |
| 345 | while (n_left) |
| 346 | { |
| 347 | const u8 tun_flags = IPSEC_SA_FLAG_IS_TUNNEL | |
| 348 | IPSEC_SA_FLAG_IS_TUNNEL_V6; |
| 349 | |
| 350 | if (n_left >= 2) |
| 351 | { |
| 352 | void *data = b[1]->data + pd[1].current_data; |
| 353 | |
| 354 | /* buffer metadata */ |
| 355 | vlib_prefetch_buffer_header (b[1], LOAD); |
| 356 | |
| 357 | /* esp_footer_t */ |
| 358 | CLIB_PREFETCH (data + pd[1].current_length - pd[1].icv_sz - 2, |
| 359 | CLIB_CACHE_LINE_BYTES, LOAD); |
| 360 | |
| 361 | /* packet headers */ |
| 362 | CLIB_PREFETCH (data - CLIB_CACHE_LINE_BYTES, |
| 363 | CLIB_CACHE_LINE_BYTES * 2, LOAD); |
| 364 | } |
| 365 | |
| 366 | if (next[0] < ESP_DECRYPT_N_NEXT) |
| 367 | goto trace; |
| 368 | |
| 369 | sa0 = vec_elt_at_index (im->sad, pd->sa_index); |
| 370 | u8 *payload = b[0]->data + pd->current_data; |
| 371 | |
Neale Ranns | 3fb65be | 2019-05-14 07:01:01 -0700 | [diff] [blame] | 372 | ipsec_sa_anti_replay_advance (sa0, ((esp_header_t *) payload)->seq); |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 373 | |
| 374 | esp_footer_t *f = (esp_footer_t *) (b[0]->data + pd->current_data + |
| 375 | pd->current_length - sizeof (*f) - |
| 376 | pd->icv_sz); |
| 377 | u16 adv = pd->iv_sz + esp_sz; |
| 378 | u16 tail = sizeof (esp_footer_t) + f->pad_length + pd->icv_sz; |
| 379 | |
| 380 | if ((pd->flags & tun_flags) == 0) /* transport mode */ |
| 381 | { |
| 382 | u8 udp_sz = (is_ip6 == 0 && pd->flags & IPSEC_SA_FLAG_UDP_ENCAP) ? |
| 383 | sizeof (udp_header_t) : 0; |
| 384 | u16 ip_hdr_sz = pd->hdr_sz - udp_sz; |
| 385 | u8 *old_ip = b[0]->data + pd->current_data - ip_hdr_sz - udp_sz; |
| 386 | u8 *ip = old_ip + adv + udp_sz; |
| 387 | |
| 388 | if (is_ip6 && ip_hdr_sz > 64) |
| 389 | memmove (ip, old_ip, ip_hdr_sz); |
| 390 | else |
| 391 | clib_memcpy_le64 (ip, old_ip, ip_hdr_sz); |
| 392 | |
| 393 | b[0]->current_data = pd->current_data + adv - ip_hdr_sz; |
| 394 | b[0]->current_length = pd->current_length + ip_hdr_sz - tail - adv; |
| 395 | |
| 396 | if (is_ip6) |
| 397 | { |
| 398 | ip6_header_t *ip6 = (ip6_header_t *) ip; |
| 399 | u16 len = clib_net_to_host_u16 (ip6->payload_length); |
| 400 | len -= adv + tail; |
| 401 | ip6->payload_length = clib_host_to_net_u16 (len); |
| 402 | ip6->protocol = f->next_header; |
| 403 | next[0] = ESP_DECRYPT_NEXT_IP6_INPUT; |
| 404 | } |
| 405 | else |
| 406 | { |
| 407 | ip4_header_t *ip4 = (ip4_header_t *) ip; |
| 408 | ip_csum_t sum = ip4->checksum; |
| 409 | u16 len = clib_net_to_host_u16 (ip4->length); |
| 410 | len = clib_host_to_net_u16 (len - adv - tail - udp_sz); |
| 411 | sum = ip_csum_update (sum, ip4->protocol, f->next_header, |
| 412 | ip4_header_t, protocol); |
| 413 | sum = ip_csum_update (sum, ip4->length, len, |
| 414 | ip4_header_t, length); |
| 415 | ip4->checksum = ip_csum_fold (sum); |
| 416 | ip4->protocol = f->next_header; |
| 417 | ip4->length = len; |
| 418 | next[0] = ESP_DECRYPT_NEXT_IP4_INPUT; |
| 419 | } |
| 420 | } |
| 421 | else |
| 422 | { |
| 423 | if (PREDICT_TRUE (f->next_header == IP_PROTOCOL_IP_IN_IP)) |
| 424 | { |
| 425 | next[0] = ESP_DECRYPT_NEXT_IP4_INPUT; |
| 426 | b[0]->current_data = pd->current_data + adv; |
| 427 | b[0]->current_length = pd->current_length + adv - tail; |
| 428 | } |
| 429 | else if (f->next_header == IP_PROTOCOL_IPV6) |
| 430 | { |
| 431 | next[0] = ESP_DECRYPT_NEXT_IP6_INPUT; |
| 432 | b[0]->current_data = pd->current_data + adv; |
| 433 | b[0]->current_length = pd->current_length + adv - tail; |
| 434 | } |
| 435 | else |
| 436 | { |
| 437 | next[0] = ESP_DECRYPT_NEXT_DROP; |
| 438 | b[0]->error = node->errors[ESP_DECRYPT_ERROR_DECRYPTION_FAILED]; |
| 439 | } |
| 440 | } |
| 441 | |
Neale Ranns | e524d45 | 2019-02-19 15:22:46 +0000 | [diff] [blame] | 442 | if (PREDICT_FALSE (ipsec_sa_is_set_IS_GRE (sa0))) |
Damjan Marion | b4fff3a | 2019-03-25 15:54:40 +0100 | [diff] [blame] | 443 | next[0] = ESP_DECRYPT_NEXT_IPSEC_GRE_INPUT; |
| 444 | |
| 445 | trace: |
| 446 | if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED)) |
| 447 | { |
| 448 | esp_decrypt_trace_t *tr; |
| 449 | u8 *payload = b[0]->data + pd->current_data; |
| 450 | tr = vlib_add_trace (vm, node, b[0], sizeof (*tr)); |
| 451 | sa0 = pool_elt_at_index (im->sad, |
| 452 | vnet_buffer (b[0])->ipsec.sad_index); |
| 453 | tr->crypto_alg = sa0->crypto_alg; |
| 454 | tr->integ_alg = sa0->integ_alg; |
| 455 | tr->seq = clib_host_to_net_u32 (((esp_header_t *) payload)->seq); |
| 456 | } |
| 457 | |
| 458 | /* next */ |
| 459 | n_left -= 1; |
| 460 | next += 1; |
| 461 | pd += 1; |
| 462 | b += 1; |
| 463 | } |
| 464 | |
| 465 | n_left = from_frame->n_vectors; |
| 466 | vlib_node_increment_counter (vm, node->node_index, |
| 467 | ESP_DECRYPT_ERROR_RX_PKTS, n_left); |
| 468 | |
| 469 | vlib_buffer_enqueue_to_next (vm, node, from, nexts, n_left); |
| 470 | |
| 471 | b = bufs; |
| 472 | return n_left; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 473 | } |
| 474 | |
Klement Sekera | b8f3544 | 2018-10-29 13:38:19 +0100 | [diff] [blame] | 475 | VLIB_NODE_FN (esp4_decrypt_node) (vlib_main_t * vm, |
| 476 | vlib_node_runtime_t * node, |
| 477 | vlib_frame_t * from_frame) |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 478 | { |
| 479 | return esp_decrypt_inline (vm, node, from_frame, 0 /* is_ip6 */ ); |
| 480 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 481 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 482 | /* *INDENT-OFF* */ |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 483 | VLIB_REGISTER_NODE (esp4_decrypt_node) = { |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 484 | .name = "esp4-decrypt", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 485 | .vector_size = sizeof (u32), |
| 486 | .format_trace = format_esp_decrypt_trace, |
| 487 | .type = VLIB_NODE_TYPE_INTERNAL, |
| 488 | |
| 489 | .n_errors = ARRAY_LEN(esp_decrypt_error_strings), |
| 490 | .error_strings = esp_decrypt_error_strings, |
| 491 | |
| 492 | .n_next_nodes = ESP_DECRYPT_N_NEXT, |
| 493 | .next_nodes = { |
| 494 | #define _(s,n) [ESP_DECRYPT_NEXT_##s] = n, |
| 495 | foreach_esp_decrypt_next |
| 496 | #undef _ |
| 497 | }, |
| 498 | }; |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 499 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 500 | |
Klement Sekera | b8f3544 | 2018-10-29 13:38:19 +0100 | [diff] [blame] | 501 | VLIB_NODE_FN (esp6_decrypt_node) (vlib_main_t * vm, |
| 502 | vlib_node_runtime_t * node, |
| 503 | vlib_frame_t * from_frame) |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 504 | { |
| 505 | return esp_decrypt_inline (vm, node, from_frame, 1 /* is_ip6 */ ); |
| 506 | } |
| 507 | |
| 508 | /* *INDENT-OFF* */ |
| 509 | VLIB_REGISTER_NODE (esp6_decrypt_node) = { |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 510 | .name = "esp6-decrypt", |
| 511 | .vector_size = sizeof (u32), |
| 512 | .format_trace = format_esp_decrypt_trace, |
| 513 | .type = VLIB_NODE_TYPE_INTERNAL, |
| 514 | |
| 515 | .n_errors = ARRAY_LEN(esp_decrypt_error_strings), |
| 516 | .error_strings = esp_decrypt_error_strings, |
| 517 | |
| 518 | .n_next_nodes = ESP_DECRYPT_N_NEXT, |
| 519 | .next_nodes = { |
| 520 | #define _(s,n) [ESP_DECRYPT_NEXT_##s] = n, |
| 521 | foreach_esp_decrypt_next |
| 522 | #undef _ |
| 523 | }, |
| 524 | }; |
| 525 | /* *INDENT-ON* */ |
| 526 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 527 | /* |
| 528 | * fd.io coding-style-patch-verification: ON |
| 529 | * |
| 530 | * Local Variables: |
| 531 | * eval: (c-set-style "gnu") |
| 532 | * End: |
| 533 | */ |