FD.io VPP  v16.06
Vector Packet Processing
esp.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #if DPDK==1
16 #include <vnet/devices/dpdk/dpdk.h>
17 #endif
18 
19 #include <openssl/hmac.h>
20 #include <openssl/rand.h>
21 #include <openssl/evp.h>
22 
23 typedef struct {
26  u8 data[0];
27 } esp_header_t;
28 
29 typedef struct {
32 } esp_footer_t;
33 
34 typedef CLIB_PACKED (struct {
35  ip4_header_t ip4;
36  esp_header_t esp;
37 }) ip4_and_esp_header_t;
38 
39 typedef CLIB_PACKED (struct {
40  ip6_header_t ip6;
41  esp_header_t esp;
42 }) ip6_and_esp_header_t;
43 
44 typedef struct {
45  const EVP_CIPHER * type;
47 
48 typedef struct {
49  const EVP_MD * md;
52 
53 typedef struct {
54  CLIB_CACHE_LINE_ALIGN_MARK(cacheline0);
55  EVP_CIPHER_CTX encrypt_ctx;
56  CLIB_CACHE_LINE_ALIGN_MARK(cacheline1);
57  EVP_CIPHER_CTX decrypt_ctx;
58  CLIB_CACHE_LINE_ALIGN_MARK(cacheline2);
59  HMAC_CTX hmac_ctx;
64 
65 typedef struct {
69 } esp_main_t;
70 
72 
73 always_inline void
75 {
76  esp_main_t * em = &esp_main;
78 
79  memset (em, 0, sizeof (em[0]));
80 
82  em->esp_crypto_algs[IPSEC_CRYPTO_ALG_AES_CBC_128].type = EVP_aes_128_cbc();
83  em->esp_crypto_algs[IPSEC_CRYPTO_ALG_AES_CBC_192].type = EVP_aes_192_cbc();
84  em->esp_crypto_algs[IPSEC_CRYPTO_ALG_AES_CBC_256].type = EVP_aes_256_cbc();
85 
88 
89  i = &em->esp_integ_algs[IPSEC_INTEG_ALG_SHA1_96];
90  i->md = EVP_sha1();
91  i->trunc_size = 12;
92 
93  i = &em->esp_integ_algs[IPSEC_INTEG_ALG_SHA_256_96];
94  i->md = EVP_sha256();
95  i->trunc_size = 12;
96 
97  i = &em->esp_integ_algs[IPSEC_INTEG_ALG_SHA_256_128];
98  i->md = EVP_sha256();
99  i->trunc_size = 16;
100 
101  i = &em->esp_integ_algs[IPSEC_INTEG_ALG_SHA_384_192];
102  i->md = EVP_sha384();
103  i->trunc_size = 24;
104 
105  i = &em->esp_integ_algs[IPSEC_INTEG_ALG_SHA_512_256];
106  i->md = EVP_sha512();
107  i->trunc_size = 32;
108 
110  int thread_id;
111 
112  for (thread_id = 0; thread_id < tm->n_vlib_mains - 1; thread_id++)
113  {
114  EVP_CIPHER_CTX_init(&(em->per_thread_data[thread_id].encrypt_ctx));
115  EVP_CIPHER_CTX_init(&(em->per_thread_data[thread_id].decrypt_ctx));
116  HMAC_CTX_init(&(em->per_thread_data[thread_id].hmac_ctx));
117  }
118 }
119 
120 always_inline unsigned int
122  u8 * key,
123  int key_len,
124  u8 * data,
125  int data_len,
126  u8 * signature,
127  u8 use_esn,
128  u32 seq_hi)
129 {
130  esp_main_t * em = &esp_main;
131  u32 cpu_index = os_get_cpu_number();
132  HMAC_CTX * ctx = &(em->per_thread_data[cpu_index].hmac_ctx);
133  const EVP_MD * md = NULL;
134  unsigned int len;
135 
136  ASSERT(alg < IPSEC_INTEG_N_ALG);
137 
138  if (PREDICT_FALSE(em->esp_integ_algs[alg].md == 0))
139  return 0;
140 
141  if (PREDICT_FALSE(alg != em->per_thread_data[cpu_index].last_integ_alg)) {
142  md = em->esp_integ_algs[alg].md;
143  em->per_thread_data[cpu_index].last_integ_alg = alg;
144  }
145 
146  HMAC_Init(ctx, key, key_len, md);
147 
148  HMAC_Update(ctx, data, data_len);
149 
150  if (PREDICT_TRUE(use_esn))
151  HMAC_Update(ctx, (u8 *) &seq_hi, sizeof(seq_hi));
152  HMAC_Final(ctx, signature, &len);
153 
154  return em->esp_integ_algs[alg].trunc_size;
155 }
156 
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:394
ipsec_crypto_alg_t last_decrypt_alg
Definition: esp.h:61
#define CLIB_CACHE_LINE_ALIGN_MARK(mark)
Definition: cache.h:68
always_inline vlib_thread_main_t * vlib_get_thread_main()
Definition: global_funcs.h:32
sll srl srl sll sra u16x4 i
Definition: vector_sse2.h:267
#define PREDICT_TRUE(x)
Definition: clib.h:98
#define NULL
Definition: clib.h:55
ipsec_integ_alg_t last_integ_alg
Definition: esp.h:62
const EVP_CIPHER * type
Definition: esp.h:45
esp_crypto_alg_t * esp_crypto_algs
Definition: esp.h:66
#define vec_validate_aligned(V, I, A)
Make sure vector is long enough for given index (no header, specified alignment)
Definition: vec.h:405
esp_integ_alg_t * esp_integ_algs
Definition: esp.h:67
esp_main_t esp_main
Definition: esp.h:71
u8 trunc_size
Definition: esp.h:50
#define always_inline
Definition: clib.h:84
EVP_CIPHER_CTX encrypt_ctx
Definition: esp.h:55
uword os_get_cpu_number(void)
Definition: unix-misc.c:206
#define PREDICT_FALSE(x)
Definition: clib.h:97
#define ASSERT(truth)
unsigned int u32
Definition: types.h:88
ipsec_crypto_alg_t
Definition: ipsec.h:38
u32 seq
Definition: esp.h:25
u32 spi
Definition: esp.h:24
ipsec_crypto_alg_t last_encrypt_alg
Definition: esp.h:60
unsigned char u8
Definition: types.h:56
always_inline void esp_init()
Definition: esp.h:74
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)
Definition: esp.h:121
Definition: esp.h:65
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:67
typedef CLIB_PACKED(struct{ip4_header_t ip4;esp_header_t esp;}) ip4_and_esp_header_t
esp_main_per_thread_data_t * per_thread_data
Definition: esp.h:68
const EVP_MD * md
Definition: esp.h:49
EVP_CIPHER_CTX decrypt_ctx
Definition: esp.h:57
ipsec_integ_alg_t
Definition: ipsec.h:54