| /* |
| * Copyright 2019 The OpenSSL Project Authors. All Rights Reserved. |
| * |
| * Licensed under the OpenSSL license (the "License"). You may not use |
| * this file except in compliance with the License. You can obtain a copy |
| * in the file LICENSE in the source distribution or at |
| * https://www.openssl.org/source/license.html |
| */ |
| |
| #include <string.h> |
| #include <openssl/evp.h> |
| #include <openssl/kdf.h> |
| #include "internal/nelem.h" |
| #include "self_test.h" |
| #include "self_test_data.inc" |
| |
| static int self_test_digest(const ST_KAT_DIGEST *t, OSSL_ST_EVENT *event, |
| OPENSSL_CTX *libctx) |
| { |
| int ok = 0; |
| unsigned char out[EVP_MAX_MD_SIZE]; |
| unsigned int out_len = 0; |
| EVP_MD_CTX *ctx = EVP_MD_CTX_new(); |
| EVP_MD *md = EVP_MD_fetch(libctx, t->algorithm, NULL); |
| |
| SELF_TEST_EVENT_onbegin(event, OSSL_SELF_TEST_TYPE_KAT_DIGEST, t->desc); |
| |
| if (ctx == NULL |
| || md == NULL |
| || !EVP_DigestInit_ex(ctx, md, NULL) |
| || !EVP_DigestUpdate(ctx, t->pt, t->pt_len) |
| || !EVP_DigestFinal(ctx, out, &out_len)) |
| goto err; |
| |
| /* Optional corruption */ |
| SELF_TEST_EVENT_oncorrupt_byte(event, out); |
| |
| if (out_len != t->expected_len |
| || memcmp(out, t->expected, out_len) != 0) |
| goto err; |
| ok = 1; |
| err: |
| SELF_TEST_EVENT_onend(event, ok); |
| EVP_MD_free(md); |
| EVP_MD_CTX_free(ctx); |
| |
| return ok; |
| } |
| |
| /* |
| * Helper function to setup a EVP_CipherInit |
| * Used to hide the complexity of Authenticated ciphers. |
| */ |
| static int cipher_init(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, |
| const ST_KAT_CIPHER *t, int enc) |
| { |
| unsigned char *in_tag = NULL; |
| int pad = 0, tmp; |
| |
| /* Flag required for Key wrapping */ |
| EVP_CIPHER_CTX_set_flags(ctx, EVP_CIPHER_CTX_FLAG_WRAP_ALLOW); |
| if (t->tag == NULL) { |
| /* Use a normal cipher init */ |
| return EVP_CipherInit_ex(ctx, cipher, NULL, t->key, t->iv, enc) |
| && EVP_CIPHER_CTX_set_padding(ctx, pad); |
| } |
| |
| /* The authenticated cipher init */ |
| if (!enc) |
| in_tag = (unsigned char *)t->tag; |
| |
| return EVP_CipherInit_ex(ctx, cipher, NULL, NULL, NULL, enc) |
| && EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_IVLEN, t->iv_len, NULL) |
| && (in_tag == NULL |
| || EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_TAG, t->tag_len, |
| in_tag)) |
| && EVP_CipherInit_ex(ctx, NULL, NULL, t->key, t->iv, enc) |
| && EVP_CIPHER_CTX_set_padding(ctx, pad) |
| && EVP_CipherUpdate(ctx, NULL, &tmp, t->aad, t->aad_len); |
| } |
| |
| /* Test a single KAT for encrypt/decrypt */ |
| static int self_test_cipher(const ST_KAT_CIPHER *t, OSSL_ST_EVENT *event, |
| OPENSSL_CTX *libctx) |
| { |
| int ret = 0, encrypt = 1, len, ct_len = 0, pt_len = 0; |
| EVP_CIPHER_CTX *ctx = NULL; |
| EVP_CIPHER *cipher = NULL; |
| unsigned char ct_buf[256] = { 0 }; |
| unsigned char pt_buf[256] = { 0 }; |
| |
| SELF_TEST_EVENT_onbegin(event, OSSL_SELF_TEST_TYPE_KAT_CIPHER, t->base.desc); |
| |
| ctx = EVP_CIPHER_CTX_new(); |
| if (ctx == NULL) |
| goto end; |
| cipher = EVP_CIPHER_fetch(libctx, t->base.algorithm, ""); |
| if (cipher == NULL) |
| goto end; |
| |
| /* Encrypt plain text message */ |
| if (!cipher_init(ctx, cipher, t, encrypt) |
| || !EVP_CipherUpdate(ctx, ct_buf, &len, t->base.pt, t->base.pt_len) |
| || !EVP_CipherFinal_ex(ctx, ct_buf + len, &ct_len)) |
| goto end; |
| |
| SELF_TEST_EVENT_oncorrupt_byte(event, ct_buf); |
| ct_len += len; |
| if (ct_len != (int)t->base.expected_len |
| || memcmp(t->base.expected, ct_buf, ct_len) != 0) |
| goto end; |
| |
| if (t->tag != NULL) { |
| unsigned char tag[16] = { 0 }; |
| |
| if (!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_GET_TAG, t->tag_len, tag) |
| || memcmp(tag, t->tag, t->tag_len) != 0) |
| goto end; |
| } |
| |
| if (!(cipher_init(ctx, cipher, t, !encrypt) |
| && EVP_CipherUpdate(ctx, pt_buf, &len, ct_buf, ct_len) |
| && EVP_CipherFinal_ex(ctx, pt_buf + len, &pt_len))) |
| goto end; |
| pt_len += len; |
| |
| if (pt_len != (int)t->base.pt_len |
| || memcmp(pt_buf, t->base.pt, pt_len) != 0) |
| goto end; |
| |
| ret = 1; |
| end: |
| EVP_CIPHER_free(cipher); |
| EVP_CIPHER_CTX_free(ctx); |
| SELF_TEST_EVENT_onend(event, ret); |
| return ret; |
| } |
| |
| static int self_test_kdf(const ST_KAT_KDF *t, OSSL_ST_EVENT *event, |
| OPENSSL_CTX *libctx) |
| { |
| int ret = 0; |
| int i; |
| unsigned char out[64]; |
| EVP_KDF *kdf = NULL; |
| EVP_KDF_CTX *ctx = NULL; |
| OSSL_PARAM params[16]; |
| const OSSL_PARAM *settables = NULL; |
| |
| SELF_TEST_EVENT_onbegin(event, OSSL_SELF_TEST_TYPE_KAT_KDF, t->desc); |
| |
| kdf = EVP_KDF_fetch(libctx, t->algorithm, ""); |
| ctx = EVP_KDF_CTX_new(kdf); |
| if (ctx == NULL) |
| goto end; |
| |
| settables = EVP_KDF_settable_ctx_params(kdf); |
| for (i = 0; t->ctrls[i].name != NULL; ++i) { |
| if (!OSSL_PARAM_allocate_from_text(¶ms[i], settables, |
| t->ctrls[i].name, |
| t->ctrls[i].value, |
| strlen(t->ctrls[i].value))) |
| goto end; |
| } |
| params[i] = OSSL_PARAM_construct_end(); |
| if (!EVP_KDF_CTX_set_params(ctx, params)) |
| goto end; |
| |
| if (t->expected_len > sizeof(out)) |
| goto end; |
| if (EVP_KDF_derive(ctx, out, t->expected_len) <= 0) |
| goto end; |
| |
| SELF_TEST_EVENT_oncorrupt_byte(event, out); |
| |
| if (memcmp(out, t->expected, t->expected_len) != 0) |
| goto end; |
| |
| ret = 1; |
| end: |
| for (i = 0; params[i].key != NULL; ++i) |
| OPENSSL_free(params[i].data); |
| EVP_KDF_free(kdf); |
| EVP_KDF_CTX_free(ctx); |
| SELF_TEST_EVENT_onend(event, ret); |
| return ret; |
| } |
| |
| /* |
| * Test a data driven list of KAT's for digest algorithms. |
| * All tests are run regardless of if they fail or not. |
| * Return 0 if any test fails. |
| */ |
| static int self_test_digests(OSSL_ST_EVENT *event, OPENSSL_CTX *libctx) |
| { |
| int i, ret = 1; |
| |
| for (i = 0; i < (int)OSSL_NELEM(st_kat_digest_tests); ++i) { |
| if (!self_test_digest(&st_kat_digest_tests[i], event, libctx)) |
| ret = 0; |
| } |
| return ret; |
| } |
| |
| static int self_test_ciphers(OSSL_ST_EVENT *event, OPENSSL_CTX *libctx) |
| { |
| int i, ret = 1; |
| |
| for (i = 0; i < (int)OSSL_NELEM(st_kat_cipher_tests); ++i) { |
| if (!self_test_cipher(&st_kat_cipher_tests[i], event, libctx)) |
| ret = 0; |
| } |
| return ret; |
| } |
| |
| static int self_test_kdfs(OSSL_ST_EVENT *event, OPENSSL_CTX *libctx) |
| { |
| int i, ret = 1; |
| |
| for (i = 0; i < (int)OSSL_NELEM(st_kat_kdf_tests); ++i) { |
| if (!self_test_kdf(&st_kat_kdf_tests[i], event, libctx)) |
| ret = 0; |
| } |
| return ret; |
| } |
| |
| /* |
| * Run the algorithm KAT's. |
| * Return 1 is successful, otherwise return 0. |
| * This runs all the tests regardless of if any fail. |
| * |
| * TODO(3.0) Add self tests for KA, DRBG, Sign/Verify when they become available |
| */ |
| int SELF_TEST_kats(OSSL_ST_EVENT *event, OPENSSL_CTX *libctx) |
| { |
| int ret = 1; |
| |
| if (!self_test_digests(event, libctx)) |
| ret = 0; |
| if (!self_test_ciphers(event, libctx)) |
| ret = 0; |
| if (!self_test_kdfs(event, libctx)) |
| ret = 0; |
| |
| return ret; |
| } |