IPSEC: support GCM in ESP
[vpp.git] / src / plugins / crypto_openssl / main.c
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2019 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17
18 #include <openssl/evp.h>
19 #include <openssl/hmac.h>
20 #include <openssl/rand.h>
21
22 #include <vlib/vlib.h>
23 #include <vnet/plugin/plugin.h>
24 #include <vnet/crypto/crypto.h>
25 #include <vpp/app/version.h>
26
27 typedef struct
28 {
29   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
30   EVP_CIPHER_CTX *evp_cipher_ctx;
31   HMAC_CTX *hmac_ctx;
32 #if OPENSSL_VERSION_NUMBER < 0x10100000L
33   HMAC_CTX _hmac_ctx;
34 #endif
35 } openssl_per_thread_data_t;
36
37 static openssl_per_thread_data_t *per_thread_data = 0;
38
39 #define foreach_openssl_evp_op \
40   _(cbc, DES_CBC, EVP_des_cbc) \
41   _(cbc, 3DES_CBC, EVP_des_ede3_cbc) \
42   _(cbc, AES_128_CBC, EVP_aes_128_cbc) \
43   _(cbc, AES_192_CBC, EVP_aes_192_cbc) \
44   _(cbc, AES_256_CBC, EVP_aes_256_cbc) \
45   _(gcm, AES_128_GCM, EVP_aes_128_gcm) \
46   _(gcm, AES_192_GCM, EVP_aes_192_gcm) \
47   _(gcm, AES_256_GCM, EVP_aes_256_gcm) \
48   _(cbc, AES_128_CTR, EVP_aes_128_ctr) \
49   _(cbc, AES_192_CTR, EVP_aes_192_ctr) \
50   _(cbc, AES_256_CTR, EVP_aes_256_ctr) \
51
52 #define foreach_openssl_hmac_op \
53   _(MD5, EVP_md5) \
54   _(SHA1, EVP_sha1) \
55   _(SHA224, EVP_sha224) \
56   _(SHA256, EVP_sha256) \
57   _(SHA384, EVP_sha384) \
58   _(SHA512, EVP_sha512)
59
60 static_always_inline u32
61 openssl_ops_enc_cbc (vlib_main_t * vm, vnet_crypto_op_t * ops[], u32 n_ops,
62                      const EVP_CIPHER * cipher)
63 {
64   openssl_per_thread_data_t *ptd = vec_elt_at_index (per_thread_data,
65                                                      vm->thread_index);
66   EVP_CIPHER_CTX *ctx = ptd->evp_cipher_ctx;
67   u32 i;
68   for (i = 0; i < n_ops; i++)
69     {
70       vnet_crypto_op_t *op = ops[i];
71       int out_len;
72
73       if (op->flags & VNET_CRYPTO_OP_FLAG_INIT_IV)
74         RAND_bytes (op->iv, 16);
75
76       EVP_EncryptInit_ex (ctx, cipher, NULL, op->key, op->iv);
77       EVP_EncryptUpdate (ctx, op->dst, &out_len, op->src, op->len);
78       if (out_len < op->len)
79         EVP_EncryptFinal_ex (ctx, op->dst + out_len, &out_len);
80       op->status = VNET_CRYPTO_OP_STATUS_COMPLETED;
81     }
82   return n_ops;
83 }
84
85 static_always_inline u32
86 openssl_ops_dec_cbc (vlib_main_t * vm, vnet_crypto_op_t * ops[], u32 n_ops,
87                      const EVP_CIPHER * cipher)
88 {
89   openssl_per_thread_data_t *ptd = vec_elt_at_index (per_thread_data,
90                                                      vm->thread_index);
91   EVP_CIPHER_CTX *ctx = ptd->evp_cipher_ctx;
92   u32 i;
93   for (i = 0; i < n_ops; i++)
94     {
95       vnet_crypto_op_t *op = ops[i];
96       int out_len;
97
98       EVP_DecryptInit_ex (ctx, cipher, NULL, op->key, op->iv);
99       EVP_DecryptUpdate (ctx, op->dst, &out_len, op->src, op->len);
100       if (out_len < op->len)
101         EVP_DecryptFinal_ex (ctx, op->dst + out_len, &out_len);
102       op->status = VNET_CRYPTO_OP_STATUS_COMPLETED;
103     }
104   return n_ops;
105 }
106
107 static_always_inline u32
108 openssl_ops_enc_gcm (vlib_main_t * vm, vnet_crypto_op_t * ops[], u32 n_ops,
109                      const EVP_CIPHER * cipher)
110 {
111   openssl_per_thread_data_t *ptd = vec_elt_at_index (per_thread_data,
112                                                      vm->thread_index);
113   EVP_CIPHER_CTX *ctx = ptd->evp_cipher_ctx;
114   u32 i;
115   for (i = 0; i < n_ops; i++)
116     {
117       vnet_crypto_op_t *op = ops[i];
118       u32 nonce[3];
119       int len;
120
121       if (op->flags & VNET_CRYPTO_OP_FLAG_INIT_IV)
122         RAND_bytes (op->iv, 8);
123
124       nonce[0] = op->salt;
125       clib_memcpy_fast (nonce + 1, op->iv, 8);
126
127       EVP_EncryptInit_ex (ctx, cipher, 0, 0, 0);
128       EVP_CIPHER_CTX_ctrl (ctx, EVP_CTRL_GCM_SET_IVLEN, 12, NULL);
129       EVP_EncryptInit_ex (ctx, 0, 0, op->key, (u8 *) nonce);
130       if (op->aad_len)
131         EVP_EncryptUpdate (ctx, NULL, &len, op->aad, op->aad_len);
132       EVP_EncryptUpdate (ctx, op->dst, &len, op->src, op->len);
133       EVP_EncryptFinal_ex (ctx, op->dst + len, &len);
134       EVP_CIPHER_CTX_ctrl (ctx, EVP_CTRL_GCM_GET_TAG, op->tag_len, op->tag);
135       op->status = VNET_CRYPTO_OP_STATUS_COMPLETED;
136     }
137   return n_ops;
138 }
139
140 static_always_inline u32
141 openssl_ops_dec_gcm (vlib_main_t * vm, vnet_crypto_op_t * ops[], u32 n_ops,
142                      const EVP_CIPHER * cipher)
143 {
144   openssl_per_thread_data_t *ptd = vec_elt_at_index (per_thread_data,
145                                                      vm->thread_index);
146   EVP_CIPHER_CTX *ctx = ptd->evp_cipher_ctx;
147   u32 i, n_fail = 0;
148   for (i = 0; i < n_ops; i++)
149     {
150       vnet_crypto_op_t *op = ops[i];
151       int len;
152
153       EVP_DecryptInit_ex (ctx, cipher, 0, 0, 0);
154       EVP_CIPHER_CTX_ctrl (ctx, EVP_CTRL_GCM_SET_IVLEN, op->iv_len, 0);
155       EVP_DecryptInit_ex (ctx, 0, 0, op->key, op->iv);
156       if (op->aad_len)
157         EVP_DecryptUpdate (ctx, 0, &len, op->aad, op->aad_len);
158       EVP_DecryptUpdate (ctx, op->dst, &len, op->src, op->len);
159       EVP_CIPHER_CTX_ctrl (ctx, EVP_CTRL_GCM_SET_TAG, op->tag_len, op->tag);
160
161       if (EVP_DecryptFinal_ex (ctx, op->dst + len, &len) > 0)
162         op->status = VNET_CRYPTO_OP_STATUS_COMPLETED;
163       else
164         {
165           n_fail++;
166           op->status = VNET_CRYPTO_OP_STATUS_FAIL_DECRYPT;
167         }
168     }
169   return n_ops - n_fail;
170 }
171
172 static_always_inline u32
173 openssl_ops_hmac (vlib_main_t * vm, vnet_crypto_op_t * ops[], u32 n_ops,
174                   const EVP_MD * md)
175 {
176   u8 buffer[64];
177   openssl_per_thread_data_t *ptd = vec_elt_at_index (per_thread_data,
178                                                      vm->thread_index);
179   HMAC_CTX *ctx = ptd->hmac_ctx;
180   u32 i, n_fail = 0;
181   for (i = 0; i < n_ops; i++)
182     {
183       vnet_crypto_op_t *op = ops[i];
184       unsigned int out_len;
185       size_t sz = op->digest_len ? op->digest_len : EVP_MD_size (md);
186
187       HMAC_Init_ex (ctx, op->key, op->key_len, md, NULL);
188       HMAC_Update (ctx, op->src, op->len);
189       HMAC_Final (ctx, buffer, &out_len);
190
191       if (op->flags & VNET_CRYPTO_OP_FLAG_HMAC_CHECK)
192         {
193           if ((memcmp (op->digest, buffer, sz)))
194             {
195               n_fail++;
196               op->status = VNET_CRYPTO_OP_STATUS_FAIL_BAD_HMAC;
197               continue;
198             }
199         }
200       else
201         clib_memcpy_fast (op->digest, buffer, sz);
202       op->status = VNET_CRYPTO_OP_STATUS_COMPLETED;
203     }
204   return n_ops - n_fail;
205 }
206
207 #define _(m, a, b) \
208 static u32 \
209 openssl_ops_enc_##a (vlib_main_t * vm, vnet_crypto_op_t * ops[], u32 n_ops) \
210 { return openssl_ops_enc_##m (vm, ops, n_ops, b ()); } \
211 \
212 u32 \
213 openssl_ops_dec_##a (vlib_main_t * vm, vnet_crypto_op_t * ops[], u32 n_ops) \
214 { return openssl_ops_dec_##m (vm, ops, n_ops, b ()); }
215
216 foreach_openssl_evp_op;
217 #undef _
218
219 #define _(a, b) \
220 static u32 \
221 openssl_ops_hmac_##a (vlib_main_t * vm, vnet_crypto_op_t * ops[], u32 n_ops) \
222 { return openssl_ops_hmac (vm, ops, n_ops, b ()); } \
223
224 foreach_openssl_hmac_op;
225 #undef _
226
227
228 clib_error_t *
229 crypto_openssl_init (vlib_main_t * vm)
230 {
231   vlib_thread_main_t *tm = vlib_get_thread_main ();
232   openssl_per_thread_data_t *ptd;
233   u8 *seed_data = 0;
234   clib_error_t *error;
235   time_t t;
236   pid_t pid;
237
238   if ((error = vlib_call_init_function (vm, vnet_crypto_init)))
239     return error;
240
241   u32 eidx = vnet_crypto_register_engine (vm, "openssl", 50, "OpenSSL");
242
243 #define _(m, a, b) \
244   vnet_crypto_register_ops_handler (vm, eidx, VNET_CRYPTO_OP_##a##_ENC, \
245                                     openssl_ops_enc_##a); \
246   vnet_crypto_register_ops_handler (vm, eidx, VNET_CRYPTO_OP_##a##_DEC, \
247                                     openssl_ops_dec_##a);
248
249   foreach_openssl_evp_op;
250 #undef _
251
252 #define _(a, b) \
253   vnet_crypto_register_ops_handler (vm, eidx, VNET_CRYPTO_OP_##a##_HMAC, \
254                                     openssl_ops_hmac_##a); \
255
256   foreach_openssl_hmac_op;
257 #undef _
258
259   vec_validate_aligned (per_thread_data, tm->n_vlib_mains - 1,
260                         CLIB_CACHE_LINE_BYTES);
261
262   vec_foreach (ptd, per_thread_data)
263   {
264     ptd->evp_cipher_ctx = EVP_CIPHER_CTX_new ();
265 #if OPENSSL_VERSION_NUMBER >= 0x10100000L
266     ptd->hmac_ctx = HMAC_CTX_new ();
267 #else
268     HMAC_CTX_init (&(ptd->_hmac_ctx));
269     ptd->hmac_ctx = &ptd->_hmac_ctx;
270 #endif
271   }
272
273   t = time (NULL);
274   pid = getpid ();
275   vec_add (seed_data, &t, sizeof (t));
276   vec_add (seed_data, &pid, sizeof (pid));
277   vec_add (seed_data, seed_data, sizeof (seed_data));
278
279   RAND_seed ((const void *) seed_data, vec_len (seed_data));
280
281   vec_free (seed_data);
282
283   return 0;
284 }
285
286 VLIB_INIT_FUNCTION (crypto_openssl_init);
287
288 /* *INDENT-OFF* */
289 VLIB_PLUGIN_REGISTER () = {
290   .version = VPP_BUILD_VER,
291   .description = "OpenSSL Crypto Engine Plugin",
292 };
293 /* *INDENT-ON* */
294
295 /*
296  * fd.io coding-style-patch-verification: ON
297  *
298  * Local Variables:
299  * eval: (c-set-style "gnu")
300  * End:
301  */