Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 1 | /* |
Rich Salz | 440e5d8 | 2016-05-17 14:20:24 -0400 | [diff] [blame] | 2 | * Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved. |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 3 | * |
Rich Salz | 440e5d8 | 2016-05-17 14:20:24 -0400 | [diff] [blame] | 4 | * Licensed under the OpenSSL license (the "License"). You may not use |
| 5 | * this file except in compliance with the License. You can obtain a copy |
| 6 | * in the file LICENSE in the source distribution or at |
| 7 | * https://www.openssl.org/source/license.html |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | /* |
| 11 | * This is the OSSLTEST engine. It provides deliberately crippled digest |
| 12 | * implementations for test purposes. It is highly insecure and must NOT be |
| 13 | * used for any purpose except testing |
| 14 | */ |
| 15 | |
| 16 | #include <stdio.h> |
| 17 | #include <string.h> |
| 18 | |
| 19 | #include <openssl/engine.h> |
| 20 | #include <openssl/sha.h> |
| 21 | #include <openssl/md5.h> |
| 22 | #include <openssl/rsa.h> |
| 23 | #include <openssl/evp.h> |
| 24 | #include <openssl/modes.h> |
| 25 | #include <openssl/aes.h> |
Matt Caswell | 7b9f8f7 | 2016-02-08 16:43:03 +0000 | [diff] [blame] | 26 | #include <openssl/crypto.h> |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 27 | |
| 28 | #define OSSLTEST_LIB_NAME "OSSLTEST" |
| 29 | #include "e_ossltest_err.c" |
| 30 | |
| 31 | /* Engine Id and Name */ |
| 32 | static const char *engine_ossltest_id = "ossltest"; |
| 33 | static const char *engine_ossltest_name = "OpenSSL Test engine support"; |
| 34 | |
| 35 | |
| 36 | /* Engine Lifetime functions */ |
| 37 | static int ossltest_destroy(ENGINE *e); |
| 38 | static int ossltest_init(ENGINE *e); |
| 39 | static int ossltest_finish(ENGINE *e); |
| 40 | void ENGINE_load_ossltest(void); |
| 41 | |
| 42 | |
| 43 | /* Set up digests */ |
| 44 | static int ossltest_digests(ENGINE *e, const EVP_MD **digest, |
| 45 | const int **nids, int nid); |
| 46 | |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 47 | /* MD5 */ |
| 48 | static int digest_md5_init(EVP_MD_CTX *ctx); |
| 49 | static int digest_md5_update(EVP_MD_CTX *ctx, const void *data, |
Andy Polyakov | 16a9542 | 2015-09-28 15:56:34 +0200 | [diff] [blame] | 50 | size_t count); |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 51 | static int digest_md5_final(EVP_MD_CTX *ctx, unsigned char *md); |
| 52 | |
Richard Levitte | cddcea8 | 2015-11-30 10:24:12 +0100 | [diff] [blame] | 53 | static EVP_MD *_hidden_md5_md = NULL; |
| 54 | static const EVP_MD *digest_md5(void) |
| 55 | { |
| 56 | if (_hidden_md5_md == NULL) { |
| 57 | EVP_MD *md; |
| 58 | |
| 59 | if ((md = EVP_MD_meth_new(NID_md5, NID_md5WithRSAEncryption)) == NULL |
| 60 | || !EVP_MD_meth_set_result_size(md, MD5_DIGEST_LENGTH) |
| 61 | || !EVP_MD_meth_set_input_blocksize(md, MD5_CBLOCK) |
| 62 | || !EVP_MD_meth_set_app_datasize(md, |
| 63 | sizeof(EVP_MD *) + sizeof(MD5_CTX)) |
| 64 | || !EVP_MD_meth_set_flags(md, 0) |
| 65 | || !EVP_MD_meth_set_init(md, digest_md5_init) |
| 66 | || !EVP_MD_meth_set_update(md, digest_md5_update) |
| 67 | || !EVP_MD_meth_set_final(md, digest_md5_final)) { |
| 68 | EVP_MD_meth_free(md); |
| 69 | md = NULL; |
| 70 | } |
| 71 | _hidden_md5_md = md; |
| 72 | } |
| 73 | return _hidden_md5_md; |
| 74 | } |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 75 | |
| 76 | /* SHA1 */ |
| 77 | static int digest_sha1_init(EVP_MD_CTX *ctx); |
| 78 | static int digest_sha1_update(EVP_MD_CTX *ctx, const void *data, |
Andy Polyakov | 16a9542 | 2015-09-28 15:56:34 +0200 | [diff] [blame] | 79 | size_t count); |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 80 | static int digest_sha1_final(EVP_MD_CTX *ctx, unsigned char *md); |
| 81 | |
Richard Levitte | cddcea8 | 2015-11-30 10:24:12 +0100 | [diff] [blame] | 82 | static EVP_MD *_hidden_sha1_md = NULL; |
| 83 | static const EVP_MD *digest_sha1(void) |
| 84 | { |
| 85 | if (_hidden_sha1_md == NULL) { |
| 86 | EVP_MD *md; |
| 87 | |
| 88 | if ((md = EVP_MD_meth_new(NID_sha1, NID_sha1WithRSAEncryption)) == NULL |
| 89 | || !EVP_MD_meth_set_result_size(md, SHA_DIGEST_LENGTH) |
| 90 | || !EVP_MD_meth_set_input_blocksize(md, SHA_CBLOCK) |
| 91 | || !EVP_MD_meth_set_app_datasize(md, |
| 92 | sizeof(EVP_MD *) + sizeof(SHA_CTX)) |
| 93 | || !EVP_MD_meth_set_flags(md, EVP_MD_FLAG_DIGALGID_ABSENT) |
| 94 | || !EVP_MD_meth_set_init(md, digest_sha1_init) |
| 95 | || !EVP_MD_meth_set_update(md, digest_sha1_update) |
| 96 | || !EVP_MD_meth_set_final(md, digest_sha1_final)) { |
| 97 | EVP_MD_meth_free(md); |
| 98 | md = NULL; |
| 99 | } |
| 100 | _hidden_sha1_md = md; |
| 101 | } |
| 102 | return _hidden_sha1_md; |
| 103 | } |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 104 | |
| 105 | /* SHA256 */ |
| 106 | static int digest_sha256_init(EVP_MD_CTX *ctx); |
| 107 | static int digest_sha256_update(EVP_MD_CTX *ctx, const void *data, |
Andy Polyakov | 16a9542 | 2015-09-28 15:56:34 +0200 | [diff] [blame] | 108 | size_t count); |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 109 | static int digest_sha256_final(EVP_MD_CTX *ctx, unsigned char *md); |
| 110 | |
Richard Levitte | cddcea8 | 2015-11-30 10:24:12 +0100 | [diff] [blame] | 111 | static EVP_MD *_hidden_sha256_md = NULL; |
| 112 | static const EVP_MD *digest_sha256(void) |
| 113 | { |
| 114 | if (_hidden_sha256_md == NULL) { |
| 115 | EVP_MD *md; |
| 116 | |
| 117 | if ((md = EVP_MD_meth_new(NID_sha256, NID_sha256WithRSAEncryption)) == NULL |
| 118 | || !EVP_MD_meth_set_result_size(md, SHA256_DIGEST_LENGTH) |
| 119 | || !EVP_MD_meth_set_input_blocksize(md, SHA256_CBLOCK) |
| 120 | || !EVP_MD_meth_set_app_datasize(md, |
| 121 | sizeof(EVP_MD *) + sizeof(SHA256_CTX)) |
| 122 | || !EVP_MD_meth_set_flags(md, EVP_MD_FLAG_DIGALGID_ABSENT) |
| 123 | || !EVP_MD_meth_set_init(md, digest_sha256_init) |
| 124 | || !EVP_MD_meth_set_update(md, digest_sha256_update) |
| 125 | || !EVP_MD_meth_set_final(md, digest_sha256_final)) { |
| 126 | EVP_MD_meth_free(md); |
| 127 | md = NULL; |
| 128 | } |
| 129 | _hidden_sha256_md = md; |
| 130 | } |
| 131 | return _hidden_sha256_md; |
| 132 | } |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 133 | |
| 134 | /* SHA384/SHA512 */ |
| 135 | static int digest_sha384_init(EVP_MD_CTX *ctx); |
| 136 | static int digest_sha512_init(EVP_MD_CTX *ctx); |
| 137 | static int digest_sha512_update(EVP_MD_CTX *ctx, const void *data, |
Andy Polyakov | 16a9542 | 2015-09-28 15:56:34 +0200 | [diff] [blame] | 138 | size_t count); |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 139 | static int digest_sha384_final(EVP_MD_CTX *ctx, unsigned char *md); |
| 140 | static int digest_sha512_final(EVP_MD_CTX *ctx, unsigned char *md); |
| 141 | |
Richard Levitte | cddcea8 | 2015-11-30 10:24:12 +0100 | [diff] [blame] | 142 | static EVP_MD *_hidden_sha384_md = NULL; |
| 143 | static const EVP_MD *digest_sha384(void) |
| 144 | { |
| 145 | if (_hidden_sha384_md == NULL) { |
| 146 | EVP_MD *md; |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 147 | |
Richard Levitte | cddcea8 | 2015-11-30 10:24:12 +0100 | [diff] [blame] | 148 | if ((md = EVP_MD_meth_new(NID_sha384, NID_sha384WithRSAEncryption)) == NULL |
| 149 | || !EVP_MD_meth_set_result_size(md, SHA384_DIGEST_LENGTH) |
| 150 | || !EVP_MD_meth_set_input_blocksize(md, SHA512_CBLOCK) |
| 151 | || !EVP_MD_meth_set_app_datasize(md, |
| 152 | sizeof(EVP_MD *) + sizeof(SHA512_CTX)) |
| 153 | || !EVP_MD_meth_set_flags(md, EVP_MD_FLAG_DIGALGID_ABSENT) |
| 154 | || !EVP_MD_meth_set_init(md, digest_sha384_init) |
| 155 | || !EVP_MD_meth_set_update(md, digest_sha512_update) |
| 156 | || !EVP_MD_meth_set_final(md, digest_sha384_final)) { |
| 157 | EVP_MD_meth_free(md); |
| 158 | md = NULL; |
| 159 | } |
| 160 | _hidden_sha384_md = md; |
| 161 | } |
| 162 | return _hidden_sha384_md; |
| 163 | } |
| 164 | static EVP_MD *_hidden_sha512_md = NULL; |
| 165 | static const EVP_MD *digest_sha512(void) |
| 166 | { |
| 167 | if (_hidden_sha512_md == NULL) { |
| 168 | EVP_MD *md; |
| 169 | |
| 170 | if ((md = EVP_MD_meth_new(NID_sha512, NID_sha512WithRSAEncryption)) == NULL |
| 171 | || !EVP_MD_meth_set_result_size(md, SHA512_DIGEST_LENGTH) |
| 172 | || !EVP_MD_meth_set_input_blocksize(md, SHA512_CBLOCK) |
| 173 | || !EVP_MD_meth_set_app_datasize(md, |
| 174 | sizeof(EVP_MD *) + sizeof(SHA512_CTX)) |
| 175 | || !EVP_MD_meth_set_flags(md, EVP_MD_FLAG_DIGALGID_ABSENT) |
| 176 | || !EVP_MD_meth_set_init(md, digest_sha512_init) |
| 177 | || !EVP_MD_meth_set_update(md, digest_sha512_update) |
| 178 | || !EVP_MD_meth_set_final(md, digest_sha512_final)) { |
| 179 | EVP_MD_meth_free(md); |
| 180 | md = NULL; |
| 181 | } |
| 182 | _hidden_sha512_md = md; |
| 183 | } |
| 184 | return _hidden_sha512_md; |
| 185 | } |
| 186 | static void destroy_digests(void) |
| 187 | { |
| 188 | EVP_MD_meth_free(_hidden_md5_md); |
| 189 | _hidden_md5_md = NULL; |
| 190 | EVP_MD_meth_free(_hidden_sha1_md); |
| 191 | _hidden_sha1_md = NULL; |
| 192 | EVP_MD_meth_free(_hidden_sha256_md); |
| 193 | _hidden_sha256_md = NULL; |
| 194 | EVP_MD_meth_free(_hidden_sha384_md); |
| 195 | _hidden_sha384_md = NULL; |
| 196 | EVP_MD_meth_free(_hidden_sha512_md); |
| 197 | _hidden_sha512_md = NULL; |
| 198 | } |
| 199 | static int ossltest_digest_nids(const int **nids) |
| 200 | { |
| 201 | static int digest_nids[6] = { 0, 0, 0, 0, 0, 0 }; |
| 202 | static int pos = 0; |
| 203 | static int init = 0; |
| 204 | |
| 205 | if (!init) { |
| 206 | const EVP_MD *md; |
| 207 | if ((md = digest_md5()) != NULL) |
| 208 | digest_nids[pos++] = EVP_MD_type(md); |
| 209 | if ((md = digest_sha1()) != NULL) |
| 210 | digest_nids[pos++] = EVP_MD_type(md); |
| 211 | if ((md = digest_sha256()) != NULL) |
| 212 | digest_nids[pos++] = EVP_MD_type(md); |
| 213 | if ((md = digest_sha384()) != NULL) |
| 214 | digest_nids[pos++] = EVP_MD_type(md); |
| 215 | if ((md = digest_sha512()) != NULL) |
| 216 | digest_nids[pos++] = EVP_MD_type(md); |
| 217 | digest_nids[pos] = 0; |
| 218 | init = 1; |
| 219 | } |
| 220 | *nids = digest_nids; |
| 221 | return pos; |
| 222 | } |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 223 | |
| 224 | /* Setup ciphers */ |
| 225 | static int ossltest_ciphers(ENGINE *, const EVP_CIPHER **, |
| 226 | const int **, int); |
| 227 | |
| 228 | static int ossltest_cipher_nids[] = { |
Matt Caswell | aad22ba | 2016-10-27 18:32:36 +0100 | [diff] [blame] | 229 | NID_aes_128_cbc, NID_aes_128_gcm, 0 |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 230 | }; |
| 231 | |
| 232 | /* AES128 */ |
| 233 | |
| 234 | int ossltest_aes128_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, |
| 235 | const unsigned char *iv, int enc); |
| 236 | int ossltest_aes128_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, |
| 237 | const unsigned char *in, size_t inl); |
Matt Caswell | aad22ba | 2016-10-27 18:32:36 +0100 | [diff] [blame] | 238 | int ossltest_aes128_gcm_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, |
| 239 | const unsigned char *iv, int enc); |
| 240 | int ossltest_aes128_gcm_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, |
| 241 | const unsigned char *in, size_t inl); |
| 242 | static int ossltest_aes128_gcm_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg, |
| 243 | void *ptr); |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 244 | |
Richard Levitte | 39e8d0c | 2015-12-18 17:05:57 +0100 | [diff] [blame] | 245 | static EVP_CIPHER *_hidden_aes_128_cbc = NULL; |
| 246 | static const EVP_CIPHER *ossltest_aes_128_cbc(void) |
| 247 | { |
| 248 | if (_hidden_aes_128_cbc == NULL |
| 249 | && ((_hidden_aes_128_cbc = EVP_CIPHER_meth_new(NID_aes_128_cbc, |
| 250 | 16 /* block size */, |
| 251 | 16 /* key len */)) == NULL |
| 252 | || !EVP_CIPHER_meth_set_iv_length(_hidden_aes_128_cbc,16) |
| 253 | || !EVP_CIPHER_meth_set_flags(_hidden_aes_128_cbc, |
| 254 | EVP_CIPH_FLAG_DEFAULT_ASN1 |
| 255 | | EVP_CIPH_CBC_MODE) |
| 256 | || !EVP_CIPHER_meth_set_init(_hidden_aes_128_cbc, |
| 257 | ossltest_aes128_init_key) |
| 258 | || !EVP_CIPHER_meth_set_do_cipher(_hidden_aes_128_cbc, |
| 259 | ossltest_aes128_cbc_cipher) |
| 260 | || !EVP_CIPHER_meth_set_impl_ctx_size(_hidden_aes_128_cbc, |
| 261 | EVP_CIPHER_impl_ctx_size(EVP_aes_128_cbc())))) { |
| 262 | EVP_CIPHER_meth_free(_hidden_aes_128_cbc); |
| 263 | _hidden_aes_128_cbc = NULL; |
| 264 | } |
| 265 | return _hidden_aes_128_cbc; |
| 266 | } |
Matt Caswell | aad22ba | 2016-10-27 18:32:36 +0100 | [diff] [blame] | 267 | static EVP_CIPHER *_hidden_aes_128_gcm = NULL; |
Matt Caswell | ca0b75a | 2016-11-01 18:28:19 +0000 | [diff] [blame] | 268 | |
Matt Caswell | aad22ba | 2016-10-27 18:32:36 +0100 | [diff] [blame] | 269 | #define AES_GCM_FLAGS (EVP_CIPH_FLAG_DEFAULT_ASN1 \ |
| 270 | | EVP_CIPH_CUSTOM_IV | EVP_CIPH_FLAG_CUSTOM_CIPHER \ |
| 271 | | EVP_CIPH_ALWAYS_CALL_INIT | EVP_CIPH_CTRL_INIT \ |
| 272 | | EVP_CIPH_CUSTOM_COPY |EVP_CIPH_FLAG_AEAD_CIPHER \ |
| 273 | | EVP_CIPH_GCM_MODE) |
Matt Caswell | ca0b75a | 2016-11-01 18:28:19 +0000 | [diff] [blame] | 274 | |
Matt Caswell | aad22ba | 2016-10-27 18:32:36 +0100 | [diff] [blame] | 275 | static const EVP_CIPHER *ossltest_aes_128_gcm(void) |
| 276 | { |
| 277 | if (_hidden_aes_128_gcm == NULL |
| 278 | && ((_hidden_aes_128_gcm = EVP_CIPHER_meth_new(NID_aes_128_gcm, |
| 279 | 1 /* block size */, |
| 280 | 16 /* key len */)) == NULL |
| 281 | || !EVP_CIPHER_meth_set_iv_length(_hidden_aes_128_gcm,12) |
| 282 | || !EVP_CIPHER_meth_set_flags(_hidden_aes_128_gcm, AES_GCM_FLAGS) |
| 283 | || !EVP_CIPHER_meth_set_init(_hidden_aes_128_gcm, |
| 284 | ossltest_aes128_gcm_init_key) |
| 285 | || !EVP_CIPHER_meth_set_do_cipher(_hidden_aes_128_gcm, |
| 286 | ossltest_aes128_gcm_cipher) |
| 287 | || !EVP_CIPHER_meth_set_ctrl(_hidden_aes_128_gcm, |
| 288 | ossltest_aes128_gcm_ctrl) |
| 289 | || !EVP_CIPHER_meth_set_impl_ctx_size(_hidden_aes_128_gcm, |
| 290 | EVP_CIPHER_impl_ctx_size(EVP_aes_128_gcm())))) { |
| 291 | EVP_CIPHER_meth_free(_hidden_aes_128_gcm); |
| 292 | _hidden_aes_128_gcm = NULL; |
| 293 | } |
| 294 | return _hidden_aes_128_gcm; |
| 295 | } |
| 296 | |
Richard Levitte | 39e8d0c | 2015-12-18 17:05:57 +0100 | [diff] [blame] | 297 | static void destroy_ciphers(void) |
| 298 | { |
| 299 | EVP_CIPHER_meth_free(_hidden_aes_128_cbc); |
Matt Caswell | aad22ba | 2016-10-27 18:32:36 +0100 | [diff] [blame] | 300 | EVP_CIPHER_meth_free(_hidden_aes_128_gcm); |
Richard Levitte | 39e8d0c | 2015-12-18 17:05:57 +0100 | [diff] [blame] | 301 | _hidden_aes_128_cbc = NULL; |
| 302 | } |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 303 | |
| 304 | static int bind_ossltest(ENGINE *e) |
| 305 | { |
| 306 | /* Ensure the ossltest error handling is set up */ |
| 307 | ERR_load_OSSLTEST_strings(); |
| 308 | |
| 309 | if (!ENGINE_set_id(e, engine_ossltest_id) |
| 310 | || !ENGINE_set_name(e, engine_ossltest_name) |
| 311 | || !ENGINE_set_digests(e, ossltest_digests) |
| 312 | || !ENGINE_set_ciphers(e, ossltest_ciphers) |
| 313 | || !ENGINE_set_destroy_function(e, ossltest_destroy) |
| 314 | || !ENGINE_set_init_function(e, ossltest_init) |
| 315 | || !ENGINE_set_finish_function(e, ossltest_finish)) { |
| 316 | OSSLTESTerr(OSSLTEST_F_BIND_OSSLTEST, OSSLTEST_R_INIT_FAILED); |
| 317 | return 0; |
| 318 | } |
| 319 | |
| 320 | return 1; |
| 321 | } |
| 322 | |
Richard Levitte | c0cbb4c | 2015-08-10 10:46:27 +0100 | [diff] [blame] | 323 | #ifndef OPENSSL_NO_DYNAMIC_ENGINE |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 324 | static int bind_helper(ENGINE *e, const char *id) |
| 325 | { |
| 326 | if (id && (strcmp(id, engine_ossltest_id) != 0)) |
| 327 | return 0; |
| 328 | if (!bind_ossltest(e)) |
| 329 | return 0; |
| 330 | return 1; |
| 331 | } |
| 332 | |
| 333 | IMPLEMENT_DYNAMIC_CHECK_FN() |
| 334 | IMPLEMENT_DYNAMIC_BIND_FN(bind_helper) |
Richard Levitte | c0cbb4c | 2015-08-10 10:46:27 +0100 | [diff] [blame] | 335 | #endif |
| 336 | |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 337 | static ENGINE *engine_ossltest(void) |
| 338 | { |
| 339 | ENGINE *ret = ENGINE_new(); |
Matt Caswell | 5564600 | 2015-10-30 11:22:31 +0000 | [diff] [blame] | 340 | if (ret == NULL) |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 341 | return NULL; |
| 342 | if (!bind_ossltest(ret)) { |
| 343 | ENGINE_free(ret); |
| 344 | return NULL; |
| 345 | } |
| 346 | return ret; |
| 347 | } |
| 348 | |
| 349 | void ENGINE_load_ossltest(void) |
| 350 | { |
| 351 | /* Copied from eng_[openssl|dyn].c */ |
| 352 | ENGINE *toadd = engine_ossltest(); |
| 353 | if (!toadd) |
| 354 | return; |
| 355 | ENGINE_add(toadd); |
| 356 | ENGINE_free(toadd); |
| 357 | ERR_clear_error(); |
| 358 | } |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 359 | |
| 360 | |
| 361 | static int ossltest_init(ENGINE *e) |
| 362 | { |
| 363 | return 1; |
| 364 | } |
| 365 | |
| 366 | |
| 367 | static int ossltest_finish(ENGINE *e) |
| 368 | { |
| 369 | return 1; |
| 370 | } |
| 371 | |
| 372 | |
| 373 | static int ossltest_destroy(ENGINE *e) |
| 374 | { |
Richard Levitte | cddcea8 | 2015-11-30 10:24:12 +0100 | [diff] [blame] | 375 | destroy_digests(); |
Richard Levitte | 39e8d0c | 2015-12-18 17:05:57 +0100 | [diff] [blame] | 376 | destroy_ciphers(); |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 377 | ERR_unload_OSSLTEST_strings(); |
| 378 | return 1; |
| 379 | } |
| 380 | |
| 381 | static int ossltest_digests(ENGINE *e, const EVP_MD **digest, |
| 382 | const int **nids, int nid) |
| 383 | { |
| 384 | int ok = 1; |
| 385 | if (!digest) { |
| 386 | /* We are returning a list of supported nids */ |
Richard Levitte | cddcea8 | 2015-11-30 10:24:12 +0100 | [diff] [blame] | 387 | return ossltest_digest_nids(nids); |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 388 | } |
| 389 | /* We are being asked for a specific digest */ |
| 390 | switch (nid) { |
| 391 | case NID_md5: |
Richard Levitte | cddcea8 | 2015-11-30 10:24:12 +0100 | [diff] [blame] | 392 | *digest = digest_md5(); |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 393 | break; |
| 394 | case NID_sha1: |
Richard Levitte | cddcea8 | 2015-11-30 10:24:12 +0100 | [diff] [blame] | 395 | *digest = digest_sha1(); |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 396 | break; |
| 397 | case NID_sha256: |
Richard Levitte | cddcea8 | 2015-11-30 10:24:12 +0100 | [diff] [blame] | 398 | *digest = digest_sha256(); |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 399 | break; |
| 400 | case NID_sha384: |
Richard Levitte | cddcea8 | 2015-11-30 10:24:12 +0100 | [diff] [blame] | 401 | *digest = digest_sha384(); |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 402 | break; |
| 403 | case NID_sha512: |
Richard Levitte | cddcea8 | 2015-11-30 10:24:12 +0100 | [diff] [blame] | 404 | *digest = digest_sha512(); |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 405 | break; |
| 406 | default: |
| 407 | ok = 0; |
| 408 | *digest = NULL; |
| 409 | break; |
| 410 | } |
| 411 | return ok; |
| 412 | } |
| 413 | |
| 414 | static int ossltest_ciphers(ENGINE *e, const EVP_CIPHER **cipher, |
| 415 | const int **nids, int nid) |
| 416 | { |
| 417 | int ok = 1; |
| 418 | if (!cipher) { |
| 419 | /* We are returning a list of supported nids */ |
| 420 | *nids = ossltest_cipher_nids; |
| 421 | return (sizeof(ossltest_cipher_nids) - 1) |
| 422 | / sizeof(ossltest_cipher_nids[0]); |
| 423 | } |
| 424 | /* We are being asked for a specific cipher */ |
| 425 | switch (nid) { |
| 426 | case NID_aes_128_cbc: |
Richard Levitte | 39e8d0c | 2015-12-18 17:05:57 +0100 | [diff] [blame] | 427 | *cipher = ossltest_aes_128_cbc(); |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 428 | break; |
Matt Caswell | aad22ba | 2016-10-27 18:32:36 +0100 | [diff] [blame] | 429 | case NID_aes_128_gcm: |
| 430 | *cipher = ossltest_aes_128_gcm(); |
| 431 | break; |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 432 | default: |
| 433 | ok = 0; |
| 434 | *cipher = NULL; |
| 435 | break; |
| 436 | } |
| 437 | return ok; |
| 438 | } |
| 439 | |
| 440 | static void fill_known_data(unsigned char *md, unsigned int len) |
| 441 | { |
| 442 | unsigned int i; |
| 443 | |
| 444 | for (i=0; i<len; i++) { |
| 445 | md[i] = (unsigned char)(i & 0xff); |
| 446 | } |
| 447 | } |
| 448 | |
| 449 | /* |
| 450 | * MD5 implementation. We go through the motions of doing MD5 by deferring to |
| 451 | * the standard implementation. Then we overwrite the result with a will defined |
| 452 | * value, so that all "MD5" digests using the test engine always end up with |
| 453 | * the same value. |
| 454 | */ |
| 455 | #undef data |
Richard Levitte | 6e59a89 | 2015-11-27 14:02:12 +0100 | [diff] [blame] | 456 | #define data(ctx) ((MD5_CTX *)EVP_MD_CTX_md_data(ctx)) |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 457 | static int digest_md5_init(EVP_MD_CTX *ctx) |
| 458 | { |
| 459 | return MD5_Init(data(ctx)); |
| 460 | } |
| 461 | |
| 462 | static int digest_md5_update(EVP_MD_CTX *ctx, const void *data, |
Andy Polyakov | 16a9542 | 2015-09-28 15:56:34 +0200 | [diff] [blame] | 463 | size_t count) |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 464 | { |
| 465 | return MD5_Update(data(ctx), data, (size_t)count); |
| 466 | } |
| 467 | |
| 468 | static int digest_md5_final(EVP_MD_CTX *ctx, unsigned char *md) |
| 469 | { |
| 470 | int ret; |
| 471 | ret = MD5_Final(md, data(ctx)); |
| 472 | |
| 473 | if (ret > 0) { |
| 474 | fill_known_data(md, MD5_DIGEST_LENGTH); |
| 475 | } |
| 476 | return ret; |
| 477 | } |
| 478 | |
| 479 | /* |
| 480 | * SHA1 implementation. |
| 481 | */ |
| 482 | #undef data |
Richard Levitte | 6e59a89 | 2015-11-27 14:02:12 +0100 | [diff] [blame] | 483 | #define data(ctx) ((SHA_CTX *)EVP_MD_CTX_md_data(ctx)) |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 484 | static int digest_sha1_init(EVP_MD_CTX *ctx) |
| 485 | { |
| 486 | return SHA1_Init(data(ctx)); |
| 487 | } |
| 488 | |
| 489 | static int digest_sha1_update(EVP_MD_CTX *ctx, const void *data, |
Andy Polyakov | 16a9542 | 2015-09-28 15:56:34 +0200 | [diff] [blame] | 490 | size_t count) |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 491 | { |
| 492 | return SHA1_Update(data(ctx), data, (size_t)count); |
| 493 | } |
| 494 | |
| 495 | static int digest_sha1_final(EVP_MD_CTX *ctx, unsigned char *md) |
| 496 | { |
| 497 | int ret; |
| 498 | ret = SHA1_Final(md, data(ctx)); |
| 499 | |
| 500 | if (ret > 0) { |
| 501 | fill_known_data(md, SHA_DIGEST_LENGTH); |
| 502 | } |
| 503 | return ret; |
| 504 | } |
| 505 | |
| 506 | /* |
| 507 | * SHA256 implementation. |
| 508 | */ |
| 509 | #undef data |
Richard Levitte | 6e59a89 | 2015-11-27 14:02:12 +0100 | [diff] [blame] | 510 | #define data(ctx) ((SHA256_CTX *)EVP_MD_CTX_md_data(ctx)) |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 511 | static int digest_sha256_init(EVP_MD_CTX *ctx) |
| 512 | { |
| 513 | return SHA256_Init(data(ctx)); |
| 514 | } |
| 515 | |
| 516 | static int digest_sha256_update(EVP_MD_CTX *ctx, const void *data, |
Andy Polyakov | 16a9542 | 2015-09-28 15:56:34 +0200 | [diff] [blame] | 517 | size_t count) |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 518 | { |
| 519 | return SHA256_Update(data(ctx), data, (size_t)count); |
| 520 | } |
| 521 | |
| 522 | static int digest_sha256_final(EVP_MD_CTX *ctx, unsigned char *md) |
| 523 | { |
| 524 | int ret; |
| 525 | ret = SHA256_Final(md, data(ctx)); |
| 526 | |
| 527 | if (ret > 0) { |
| 528 | fill_known_data(md, SHA256_DIGEST_LENGTH); |
| 529 | } |
| 530 | return ret; |
| 531 | } |
| 532 | |
| 533 | /* |
| 534 | * SHA384/512 implementation. |
| 535 | */ |
| 536 | #undef data |
Richard Levitte | 6e59a89 | 2015-11-27 14:02:12 +0100 | [diff] [blame] | 537 | #define data(ctx) ((SHA512_CTX *)EVP_MD_CTX_md_data(ctx)) |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 538 | static int digest_sha384_init(EVP_MD_CTX *ctx) |
| 539 | { |
| 540 | return SHA384_Init(data(ctx)); |
| 541 | } |
| 542 | |
| 543 | static int digest_sha512_init(EVP_MD_CTX *ctx) |
| 544 | { |
| 545 | return SHA512_Init(data(ctx)); |
| 546 | } |
| 547 | |
| 548 | static int digest_sha512_update(EVP_MD_CTX *ctx, const void *data, |
Andy Polyakov | 16a9542 | 2015-09-28 15:56:34 +0200 | [diff] [blame] | 549 | size_t count) |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 550 | { |
| 551 | return SHA512_Update(data(ctx), data, (size_t)count); |
| 552 | } |
| 553 | |
| 554 | static int digest_sha384_final(EVP_MD_CTX *ctx, unsigned char *md) |
| 555 | { |
| 556 | int ret; |
| 557 | /* Actually uses SHA512_Final! */ |
| 558 | ret = SHA512_Final(md, data(ctx)); |
| 559 | |
| 560 | if (ret > 0) { |
| 561 | fill_known_data(md, SHA384_DIGEST_LENGTH); |
| 562 | } |
| 563 | return ret; |
| 564 | } |
| 565 | |
| 566 | static int digest_sha512_final(EVP_MD_CTX *ctx, unsigned char *md) |
| 567 | { |
| 568 | int ret; |
| 569 | ret = SHA512_Final(md, data(ctx)); |
| 570 | |
| 571 | if (ret > 0) { |
| 572 | fill_known_data(md, SHA512_DIGEST_LENGTH); |
| 573 | } |
| 574 | return ret; |
| 575 | } |
| 576 | |
| 577 | /* |
| 578 | * AES128 Implementation |
| 579 | */ |
| 580 | |
| 581 | int ossltest_aes128_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, |
| 582 | const unsigned char *iv, int enc) |
| 583 | { |
Richard Levitte | 39e8d0c | 2015-12-18 17:05:57 +0100 | [diff] [blame] | 584 | return EVP_CIPHER_meth_get_init(EVP_aes_128_cbc()) (ctx, key, iv, enc); |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 585 | } |
| 586 | |
| 587 | int ossltest_aes128_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, |
| 588 | const unsigned char *in, size_t inl) |
| 589 | { |
| 590 | unsigned char *tmpbuf; |
| 591 | int ret; |
| 592 | |
| 593 | tmpbuf = OPENSSL_malloc(inl); |
| 594 | if (tmpbuf == NULL) |
| 595 | return -1; |
| 596 | |
| 597 | /* Remember what we were asked to encrypt */ |
| 598 | memcpy(tmpbuf, in, inl); |
| 599 | |
| 600 | /* Go through the motions of encrypting it */ |
Richard Levitte | 39e8d0c | 2015-12-18 17:05:57 +0100 | [diff] [blame] | 601 | ret = EVP_CIPHER_meth_get_do_cipher(EVP_aes_128_cbc())(ctx, out, in, inl); |
Matt Caswell | 2d5d70b | 2015-06-16 12:59:37 +0100 | [diff] [blame] | 602 | |
| 603 | /* Throw it all away and just use the plaintext as the output */ |
| 604 | memcpy(out, tmpbuf, inl); |
| 605 | OPENSSL_free(tmpbuf); |
| 606 | |
| 607 | return ret; |
| 608 | } |
Matt Caswell | aad22ba | 2016-10-27 18:32:36 +0100 | [diff] [blame] | 609 | |
| 610 | int ossltest_aes128_gcm_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, |
| 611 | const unsigned char *iv, int enc) |
| 612 | { |
| 613 | return EVP_CIPHER_meth_get_init(EVP_aes_128_gcm()) (ctx, key, iv, enc); |
| 614 | } |
| 615 | |
| 616 | |
| 617 | int ossltest_aes128_gcm_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, |
| 618 | const unsigned char *in, size_t inl) |
| 619 | { |
Matt Caswell | bebc0c7 | 2016-11-17 18:00:17 +0000 | [diff] [blame] | 620 | unsigned char *tmpbuf = OPENSSL_malloc(inl); |
Matt Caswell | aad22ba | 2016-10-27 18:32:36 +0100 | [diff] [blame] | 621 | |
Matt Caswell | 6606d60 | 2016-11-29 23:27:27 +0000 | [diff] [blame] | 622 | /* OPENSSL_malloc will return NULL if inl == 0 */ |
Matt Caswell | bebc0c7 | 2016-11-17 18:00:17 +0000 | [diff] [blame] | 623 | if (tmpbuf == NULL && inl > 0) |
Matt Caswell | aad22ba | 2016-10-27 18:32:36 +0100 | [diff] [blame] | 624 | return -1; |
| 625 | |
| 626 | /* Remember what we were asked to encrypt */ |
Matt Caswell | bebc0c7 | 2016-11-17 18:00:17 +0000 | [diff] [blame] | 627 | memcpy(tmpbuf, in, inl); |
Matt Caswell | aad22ba | 2016-10-27 18:32:36 +0100 | [diff] [blame] | 628 | |
| 629 | /* Go through the motions of encrypting it */ |
| 630 | EVP_CIPHER_meth_get_do_cipher(EVP_aes_128_gcm())(ctx, out, in, inl); |
| 631 | |
Matt Caswell | 6606d60 | 2016-11-29 23:27:27 +0000 | [diff] [blame] | 632 | /* Throw it all away and just use the plaintext as the output */ |
Matt Caswell | bebc0c7 | 2016-11-17 18:00:17 +0000 | [diff] [blame] | 633 | memcpy(out, tmpbuf, inl); |
Matt Caswell | aad22ba | 2016-10-27 18:32:36 +0100 | [diff] [blame] | 634 | OPENSSL_free(tmpbuf); |
| 635 | |
Matt Caswell | bebc0c7 | 2016-11-17 18:00:17 +0000 | [diff] [blame] | 636 | return inl; |
Matt Caswell | aad22ba | 2016-10-27 18:32:36 +0100 | [diff] [blame] | 637 | } |
| 638 | |
| 639 | static int ossltest_aes128_gcm_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg, |
| 640 | void *ptr) |
| 641 | { |
Matt Caswell | aad22ba | 2016-10-27 18:32:36 +0100 | [diff] [blame] | 642 | /* Pass the ctrl down */ |
Matt Caswell | 6606d60 | 2016-11-29 23:27:27 +0000 | [diff] [blame] | 643 | int ret = EVP_CIPHER_meth_get_ctrl(EVP_aes_128_gcm())(ctx, type, arg, ptr); |
Matt Caswell | bebc0c7 | 2016-11-17 18:00:17 +0000 | [diff] [blame] | 644 | |
| 645 | if (ret <= 0) |
| 646 | return ret; |
| 647 | |
| 648 | switch(type) { |
| 649 | case EVP_CTRL_AEAD_GET_TAG: |
| 650 | /* Always give the same tag */ |
| 651 | memset(ptr, 0, EVP_GCM_TLS_TAG_LEN); |
| 652 | break; |
| 653 | |
| 654 | default: |
| 655 | break; |
| 656 | } |
| 657 | |
| 658 | return 1; |
Matt Caswell | aad22ba | 2016-10-27 18:32:36 +0100 | [diff] [blame] | 659 | } |