/* * Copyright (c) 2015-2022, ARM Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #include #include #include #include #include #include #include #include "cert.h" #include "cmd_opt.h" #include "debug.h" #include "key.h" #include "sha.h" #define MAX_FILENAME_LEN 1024 key_t *keys; unsigned int num_keys; /* * Create a new key container */ int key_new(key_t *key) { /* Create key pair container */ key->key = EVP_PKEY_new(); if (key->key == NULL) { return 0; } return 1; } static int key_create_rsa(key_t *key, int key_bits) { EVP_PKEY *rsa = EVP_RSA_gen(key_bits); if (rsa == NULL) { printf("Cannot generate RSA key\n"); return 0; } key->key = rsa; return 1; } #ifndef OPENSSL_NO_EC static int key_create_ecdsa(key_t *key, int key_bits) { EVP_PKEY *ec = EVP_EC_gen("prime256v1"); if (ec == NULL) { printf("Cannot generate EC key\n"); return 0; } key->key = ec; return 1; } #endif /* OPENSSL_NO_EC */ typedef int (*key_create_fn_t)(key_t *key, int key_bits); static const key_create_fn_t key_create_fn[KEY_ALG_MAX_NUM] = { key_create_rsa, /* KEY_ALG_RSA */ #ifndef OPENSSL_NO_EC key_create_ecdsa, /* KEY_ALG_ECDSA */ #endif /* OPENSSL_NO_EC */ }; int key_create(key_t *key, int type, int key_bits) { if (type >= KEY_ALG_MAX_NUM) { printf("Invalid key type\n"); return 0; } if (key_create_fn[type]) { return key_create_fn[type](key, key_bits); } return 0; } int key_load(key_t *key, unsigned int *err_code) { FILE *fp; EVP_PKEY *k; if (key->fn) { /* Load key from file */ fp = fopen(key->fn, "r"); if (fp) { k = PEM_read_PrivateKey(fp, &key->key, NULL, NULL); fclose(fp); if (k) { *err_code = KEY_ERR_NONE; return 1; } else { ERROR("Cannot load key from %s\n", key->fn); *err_code = KEY_ERR_LOAD; } } else { WARN("Cannot open file %s\n", key->fn); *err_code = KEY_ERR_OPEN; } } else { WARN("Key filename not specified\n"); *err_code = KEY_ERR_FILENAME; } return 0; } int key_store(key_t *key) { FILE *fp; if (key->fn) { fp = fopen(key->fn, "w"); if (fp) { PEM_write_PrivateKey(fp, key->key, NULL, NULL, 0, NULL, NULL); fclose(fp); return 1; } else { ERROR("Cannot create file %s\n", key->fn); } } else { ERROR("Key filename not specified\n"); } return 0; } int key_init(void) { cmd_opt_t cmd_opt; key_t *key; unsigned int i; keys = malloc((num_def_keys * sizeof(def_keys[0])) #ifdef PDEF_KEYS + (num_pdef_keys * sizeof(pdef_keys[0])) #endif ); if (keys == NULL) { ERROR("%s:%d Failed to allocate memory.\n", __func__, __LINE__); return 1; } memcpy(&keys[0], &def_keys[0], (num_def_keys * sizeof(def_keys[0]))); #ifdef PDEF_KEYS memcpy(&keys[num_def_keys], &pdef_keys[0], (num_pdef_keys * sizeof(pdef_keys[0]))); num_keys = num_def_keys + num_pdef_keys; #else num_keys = num_def_keys; #endif ; for (i = 0; i < num_keys; i++) { key = &keys[i]; if (key->opt != NULL) { cmd_opt.long_opt.name = key->opt; cmd_opt.long_opt.has_arg = required_argument; cmd_opt.long_opt.flag = NULL; cmd_opt.long_opt.val = CMD_OPT_KEY; cmd_opt.help_msg = key->help_msg; cmd_opt_add(&cmd_opt); } } return 0; } key_t *key_get_by_opt(const char *opt) { key_t *key; unsigned int i; /* Sequential search. This is not a performance concern since the number * of keys is bounded and the code runs on a host machine */ for (i = 0; i < num_keys; i++) { key = &keys[i]; if (0 == strcmp(key->opt, opt)) { return key; } } return NULL; }