25 #define ESP_WINDOW_SIZE 64 27 #define foreach_esp_decrypt_next \ 28 _(DROP, "error-drop") \ 29 _(IP4_INPUT, "ip4-input") \ 30 _(IP6_INPUT, "ip6-input") 32 #define _(v, s) ESP_DECRYPT_NEXT_##v, 40 #define foreach_esp_decrypt_error \ 41 _(RX_PKTS, "ESP pkts received") \ 42 _(NO_BUFFER, "No buffer (packed dropped)") \ 43 _(DECRYPTION_FAILED, "ESP decryption failed") \ 44 _(INTEG_ERROR, "Integrity check failed") \ 45 _(REPLAY, "SA replayed packet") 49 #define _(sym,str) ESP_DECRYPT_ERROR_##sym, 56 #define _(sym,string) string, 73 s =
format (s,
"esp: crypto %U integrity %U",
90 const EVP_CIPHER * cipher =
NULL;
103 EVP_DecryptInit_ex(ctx, cipher,
NULL, key, iv);
105 EVP_DecryptUpdate(ctx, out, &out_len, in, in_len);
106 EVP_DecryptFinal_ex(ctx, out + out_len, &out_len);
197 if (wrap == 0 && seq > sa->
last_seq)
233 u32 n_left_from, *from, next_index, *to_next;
246 ESP_DECRYPT_ERROR_NO_BUFFER, n_left_from);
247 goto free_buffers_and_exit;
252 while (n_left_from > 0)
258 while (n_left_from > 0 && n_left_to_next > 0)
260 u32 i_bi0, o_bi0 = (
u32) ~0, next0;
273 next0 = ESP_DECRYPT_NEXT_DROP;
278 sa_index0 =
vnet_buffer(i_b0)->output_features.ipsec_sad_index;
281 seq = clib_host_to_net_u32(esp0->
seq);
297 ESP_DECRYPT_ERROR_REPLAY, 1);
307 memset(sig, 0,
sizeof(sig));
318 ESP_DECRYPT_ERROR_INTEG_ERROR, 1);
334 o_bi0 = empty_buffers[last_empty_buffer];
337 _vec_len (empty_buffers) = last_empty_buffer;
342 if (sa0->
crypto_alg >= IPSEC_CRYPTO_ALG_AES_CBC_128 &&
343 sa0->
crypto_alg <= IPSEC_CRYPTO_ALG_AES_CBC_256) {
344 const int BLOCK_SIZE = 16;
345 const int IV_SIZE = 16;
353 esp0->
data + IV_SIZE,
364 next0 = ESP_DECRYPT_NEXT_IP4_INPUT;
366 next0 = ESP_DECRYPT_NEXT_IP6_INPUT;
371 ESP_DECRYPT_ERROR_DECRYPTION_FAILED,
395 n_left_to_next, o_bi0, next0);
400 ESP_DECRYPT_ERROR_RX_PKTS,
403 free_buffers_and_exit:
412 .name =
"esp-decrypt",
413 .vector_size =
sizeof (
u32),
422 #define _(s,n) [ESP_DECRYPT_NEXT_##s] = n,
void vlib_put_next_frame(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, u32 n_vectors_left)
always_inline void esp_replay_advance_esn(ipsec_sa_t *sa, u32 seq)
ipsec_crypto_alg_t last_decrypt_alg
vlib_cli_command_t trace
(constructor) VLIB_CLI_COMMAND (trace)
bad routing header type(not 4)") sr_error (NO_MORE_SEGMENTS
ipsec_integ_alg_t integ_alg
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
always_inline void esp_replay_advance(ipsec_sa_t *sa, u32 seq)
ipsec_crypto_alg_t crypto_alg
static char * esp_decrypt_error_strings[]
vlib_node_registration_t esp_decrypt_node
(constructor) VLIB_REGISTER_NODE (esp_decrypt_node)
esp_crypto_alg_t * esp_crypto_algs
esp_integ_alg_t * esp_integ_algs
always_inline void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
always_inline int esp_replay_check(ipsec_sa_t *sa, u32 seq)
always_inline void ipsec_alloc_empty_buffers(vlib_main_t *vm, ipsec_main_t *im)
i16 current_data
signed offset in data[], pre_data[] that we are currently processing.
#define vlib_prefetch_buffer_with_index(vm, bi, type)
Prefetch buffer metadata by buffer index The first 64 bytes of buffer contains most header informatio...
always_inline void esp_decrypt_aes_cbc(ipsec_crypto_alg_t alg, u8 *in, u8 *out, size_t in_len, u8 *key, u8 *iv)
static u8 * format_esp_decrypt_trace(u8 *s, va_list *args)
#define clib_warning(format, args...)
u8 * format_ipsec_integ_alg(u8 *s, va_list *args)
always_inline void * vlib_frame_vector_args(vlib_frame_t *f)
#define pool_elt_at_index(p, i)
void vlib_buffer_free(vlib_main_t *vm, u32 *buffers, u32 n_buffers)
Free buffers Frees the entire buffer chain for each buffer.
u16 current_length
Nbytes between current data and the end of this buffer.
uword os_get_cpu_number(void)
always_inline void vlib_node_increment_counter(vlib_main_t *vm, u32 node_index, u32 counter_index, u64 increment)
#define vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, bi0, next0)
#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left)
#define vec_free(V)
Free vector's memory (no header).
#define VLIB_BUFFER_TOTAL_LENGTH_VALID
static uword esp_decrypt_node_fn(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
#define foreach_esp_decrypt_next
always_inline int esp_replay_check_esn(ipsec_sa_t *sa, u32 seq)
#define VLIB_BUFFER_IS_TRACED
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
always_inline void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
ipsec_crypto_alg_t crypto_alg
#define VLIB_REGISTER_NODE(x,...)
always_inline unsigned int hmac_calc(ipsec_integ_alg_t alg, u8 *key, int key_len, u8 *data, int data_len, u8 *signature, u8 use_esn, u32 seq_hi)
#define foreach_esp_decrypt_error
u32 flags
buffer flags: VLIB_BUFFER_IS_TRACED: trace this buffer.
u8 * format_ipsec_crypto_alg(u8 *s, va_list *args)
always_inline vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
esp_main_per_thread_data_t * per_thread_data
u32 trace_index
Specifies index into trace buffer if VLIB_PACKET_IS_TRACED flag is set.
EVP_CIPHER_CTX decrypt_ctx
ipsec_integ_alg_t integ_alg