Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1 | /* |
Juan Pablo Conde | 3539c74 | 2022-10-25 19:41:02 -0400 | [diff] [blame] | 2 | * Copyright (c) 2015-2022, Arm Limited and Contributors. All rights reserved. |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
Juan Castillo | 212f738 | 2015-12-15 16:37:57 +0000 | [diff] [blame] | 7 | #include <assert.h> |
| 8 | #include <ctype.h> |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 9 | #include <getopt.h> |
| 10 | #include <stdio.h> |
| 11 | #include <stdlib.h> |
| 12 | #include <string.h> |
Justin Chadwell | febe86c | 2019-07-29 17:13:45 +0100 | [diff] [blame] | 13 | #include <stdbool.h> |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 14 | |
| 15 | #include <openssl/conf.h> |
| 16 | #include <openssl/engine.h> |
| 17 | #include <openssl/err.h> |
| 18 | #include <openssl/pem.h> |
| 19 | #include <openssl/sha.h> |
| 20 | #include <openssl/x509v3.h> |
| 21 | |
| 22 | #include "cert.h" |
Juan Castillo | 1218dd5 | 2015-07-03 16:23:16 +0100 | [diff] [blame] | 23 | #include "cmd_opt.h" |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 24 | #include "debug.h" |
| 25 | #include "ext.h" |
| 26 | #include "key.h" |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 27 | #include "sha.h" |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 28 | |
| 29 | /* |
| 30 | * Helper macros to simplify the code. This macro assigns the return value of |
| 31 | * the 'fn' function to 'v' and exits if the value is NULL. |
| 32 | */ |
| 33 | #define CHECK_NULL(v, fn) \ |
| 34 | do { \ |
| 35 | v = fn; \ |
| 36 | if (v == NULL) { \ |
| 37 | ERROR("NULL object at %s:%d\n", __FILE__, __LINE__); \ |
| 38 | exit(1); \ |
| 39 | } \ |
| 40 | } while (0) |
| 41 | |
| 42 | /* |
| 43 | * This macro assigns the NID corresponding to 'oid' to 'v' and exits if the |
| 44 | * NID is undefined. |
| 45 | */ |
| 46 | #define CHECK_OID(v, oid) \ |
| 47 | do { \ |
| 48 | v = OBJ_txt2nid(oid); \ |
| 49 | if (v == NID_undef) { \ |
Sandrine Bailleux | 0d11b48 | 2020-01-15 11:01:25 +0100 | [diff] [blame] | 50 | ERROR("Cannot find extension %s\n", oid); \ |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 51 | exit(1); \ |
| 52 | } \ |
| 53 | } while (0) |
| 54 | |
| 55 | #define MAX_FILENAME_LEN 1024 |
| 56 | #define VAL_DAYS 7300 |
| 57 | #define ID_TO_BIT_MASK(id) (1 << id) |
Juan Castillo | f9f39c3 | 2015-06-01 16:34:23 +0100 | [diff] [blame] | 58 | #define NUM_ELEM(x) ((sizeof(x)) / (sizeof(x[0]))) |
Juan Castillo | 212f738 | 2015-12-15 16:37:57 +0000 | [diff] [blame] | 59 | #define HELP_OPT_MAX_LEN 128 |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 60 | |
| 61 | /* Global options */ |
Juan Castillo | f9f39c3 | 2015-06-01 16:34:23 +0100 | [diff] [blame] | 62 | static int key_alg; |
Qixiang Xu | 76a5a9b | 2017-11-09 13:51:58 +0800 | [diff] [blame] | 63 | static int hash_alg; |
Justin Chadwell | febe86c | 2019-07-29 17:13:45 +0100 | [diff] [blame] | 64 | static int key_size; |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 65 | static int new_keys; |
| 66 | static int save_keys; |
| 67 | static int print_cert; |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 68 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 69 | /* Info messages created in the Makefile */ |
| 70 | extern const char build_msg[]; |
| 71 | extern const char platform_msg[]; |
| 72 | |
| 73 | |
| 74 | static char *strdup(const char *str) |
| 75 | { |
| 76 | int n = strlen(str) + 1; |
| 77 | char *dup = malloc(n); |
| 78 | if (dup) { |
| 79 | strcpy(dup, str); |
| 80 | } |
| 81 | return dup; |
| 82 | } |
| 83 | |
Juan Castillo | f9f39c3 | 2015-06-01 16:34:23 +0100 | [diff] [blame] | 84 | static const char *key_algs_str[] = { |
| 85 | [KEY_ALG_RSA] = "rsa", |
Juan Castillo | a2224ab | 2015-06-30 13:36:57 +0100 | [diff] [blame] | 86 | #ifndef OPENSSL_NO_EC |
Lionel Debieve | fefeffb | 2022-11-14 11:03:42 +0100 | [diff] [blame] | 87 | [KEY_ALG_ECDSA_NIST] = "ecdsa", |
| 88 | [KEY_ALG_ECDSA_BRAINPOOL_R] = "ecdsa-brainpool-regular", |
| 89 | [KEY_ALG_ECDSA_BRAINPOOL_T] = "ecdsa-brainpool-twisted", |
Juan Castillo | a2224ab | 2015-06-30 13:36:57 +0100 | [diff] [blame] | 90 | #endif /* OPENSSL_NO_EC */ |
Juan Castillo | f9f39c3 | 2015-06-01 16:34:23 +0100 | [diff] [blame] | 91 | }; |
| 92 | |
Qixiang Xu | 76a5a9b | 2017-11-09 13:51:58 +0800 | [diff] [blame] | 93 | static const char *hash_algs_str[] = { |
| 94 | [HASH_ALG_SHA256] = "sha256", |
| 95 | [HASH_ALG_SHA384] = "sha384", |
| 96 | [HASH_ALG_SHA512] = "sha512", |
| 97 | }; |
| 98 | |
Juan Castillo | 1218dd5 | 2015-07-03 16:23:16 +0100 | [diff] [blame] | 99 | static void print_help(const char *cmd, const struct option *long_opt) |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 100 | { |
Juan Castillo | 212f738 | 2015-12-15 16:37:57 +0000 | [diff] [blame] | 101 | int rem, i = 0; |
| 102 | const struct option *opt; |
| 103 | char line[HELP_OPT_MAX_LEN]; |
| 104 | char *p; |
| 105 | |
| 106 | assert(cmd != NULL); |
| 107 | assert(long_opt != NULL); |
| 108 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 109 | printf("\n\n"); |
| 110 | printf("The certificate generation tool loads the binary images and\n" |
Lionel Debieve | fefeffb | 2022-11-14 11:03:42 +0100 | [diff] [blame] | 111 | "optionally the RSA or ECC keys, and outputs the key and content\n" |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 112 | "certificates properly signed to implement the chain of trust.\n" |
| 113 | "If keys are provided, they must be in PEM format.\n" |
| 114 | "Certificates are generated in DER format.\n"); |
| 115 | printf("\n"); |
Juan Castillo | 212f738 | 2015-12-15 16:37:57 +0000 | [diff] [blame] | 116 | printf("Usage:\n"); |
| 117 | printf("\t%s [OPTIONS]\n\n", cmd); |
| 118 | |
| 119 | printf("Available options:\n"); |
Juan Castillo | 212f738 | 2015-12-15 16:37:57 +0000 | [diff] [blame] | 120 | opt = long_opt; |
| 121 | while (opt->name) { |
| 122 | p = line; |
| 123 | rem = HELP_OPT_MAX_LEN; |
| 124 | if (isalpha(opt->val)) { |
| 125 | /* Short format */ |
| 126 | sprintf(p, "-%c,", (char)opt->val); |
| 127 | p += 3; |
| 128 | rem -= 3; |
| 129 | } |
| 130 | snprintf(p, rem, "--%s %s", opt->name, |
| 131 | (opt->has_arg == required_argument) ? "<arg>" : ""); |
| 132 | printf("\t%-32s %s\n", line, cmd_opt_get_help_msg(i)); |
| 133 | opt++; |
| 134 | i++; |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 135 | } |
| 136 | printf("\n"); |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 137 | } |
| 138 | |
Juan Castillo | f9f39c3 | 2015-06-01 16:34:23 +0100 | [diff] [blame] | 139 | static int get_key_alg(const char *key_alg_str) |
| 140 | { |
| 141 | int i; |
| 142 | |
| 143 | for (i = 0 ; i < NUM_ELEM(key_algs_str) ; i++) { |
| 144 | if (0 == strcmp(key_alg_str, key_algs_str[i])) { |
| 145 | return i; |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | return -1; |
| 150 | } |
| 151 | |
Justin Chadwell | febe86c | 2019-07-29 17:13:45 +0100 | [diff] [blame] | 152 | static int get_key_size(const char *key_size_str) |
| 153 | { |
| 154 | char *end; |
| 155 | long key_size; |
| 156 | |
| 157 | key_size = strtol(key_size_str, &end, 10); |
| 158 | if (*end != '\0') |
| 159 | return -1; |
| 160 | |
| 161 | return key_size; |
| 162 | } |
| 163 | |
Qixiang Xu | 76a5a9b | 2017-11-09 13:51:58 +0800 | [diff] [blame] | 164 | static int get_hash_alg(const char *hash_alg_str) |
| 165 | { |
| 166 | int i; |
| 167 | |
| 168 | for (i = 0 ; i < NUM_ELEM(hash_algs_str) ; i++) { |
| 169 | if (0 == strcmp(hash_alg_str, hash_algs_str[i])) { |
| 170 | return i; |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | return -1; |
| 175 | } |
| 176 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 177 | static void check_cmd_params(void) |
| 178 | { |
Juan Castillo | 86958fd | 2015-07-08 12:11:38 +0100 | [diff] [blame] | 179 | cert_t *cert; |
| 180 | ext_t *ext; |
| 181 | key_t *key; |
| 182 | int i, j; |
Justin Chadwell | febe86c | 2019-07-29 17:13:45 +0100 | [diff] [blame] | 183 | bool valid_size; |
Juan Castillo | 86958fd | 2015-07-08 12:11:38 +0100 | [diff] [blame] | 184 | |
Juan Castillo | f9f39c3 | 2015-06-01 16:34:23 +0100 | [diff] [blame] | 185 | /* Only save new keys */ |
| 186 | if (save_keys && !new_keys) { |
| 187 | ERROR("Only new keys can be saved to disk\n"); |
| 188 | exit(1); |
| 189 | } |
| 190 | |
Justin Chadwell | febe86c | 2019-07-29 17:13:45 +0100 | [diff] [blame] | 191 | /* Validate key-size */ |
| 192 | valid_size = false; |
| 193 | for (i = 0; i < KEY_SIZE_MAX_NUM; i++) { |
| 194 | if (key_size == KEY_SIZES[key_alg][i]) { |
| 195 | valid_size = true; |
| 196 | break; |
| 197 | } |
| 198 | } |
| 199 | if (!valid_size) { |
| 200 | ERROR("'%d' is not a valid key size for '%s'\n", |
| 201 | key_size, key_algs_str[key_alg]); |
| 202 | NOTICE("Valid sizes are: "); |
| 203 | for (i = 0; i < KEY_SIZE_MAX_NUM && |
| 204 | KEY_SIZES[key_alg][i] != 0; i++) { |
| 205 | printf("%d ", KEY_SIZES[key_alg][i]); |
| 206 | } |
| 207 | printf("\n"); |
| 208 | exit(1); |
| 209 | } |
| 210 | |
Juan Castillo | 86958fd | 2015-07-08 12:11:38 +0100 | [diff] [blame] | 211 | /* Check that all required options have been specified in the |
| 212 | * command line */ |
| 213 | for (i = 0; i < num_certs; i++) { |
| 214 | cert = &certs[i]; |
| 215 | if (cert->fn == NULL) { |
| 216 | /* Certificate not requested. Skip to the next one */ |
| 217 | continue; |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 218 | } |
| 219 | |
Juan Castillo | 86958fd | 2015-07-08 12:11:38 +0100 | [diff] [blame] | 220 | /* Check that all parameters required to create this certificate |
| 221 | * have been specified in the command line */ |
| 222 | for (j = 0; j < cert->num_ext; j++) { |
| 223 | ext = &extensions[cert->ext[j]]; |
| 224 | switch (ext->type) { |
Juan Castillo | 4352998 | 2016-01-22 11:05:24 +0000 | [diff] [blame] | 225 | case EXT_TYPE_NVCOUNTER: |
| 226 | /* Counter value must be specified */ |
| 227 | if ((!ext->optional) && (ext->arg == NULL)) { |
| 228 | ERROR("Value for '%s' not specified\n", |
| 229 | ext->ln); |
| 230 | exit(1); |
| 231 | } |
| 232 | break; |
Juan Castillo | 86958fd | 2015-07-08 12:11:38 +0100 | [diff] [blame] | 233 | case EXT_TYPE_PKEY: |
| 234 | /* Key filename must be specified */ |
Juan Castillo | 4352998 | 2016-01-22 11:05:24 +0000 | [diff] [blame] | 235 | key = &keys[ext->attr.key]; |
Juan Castillo | 86958fd | 2015-07-08 12:11:38 +0100 | [diff] [blame] | 236 | if (!new_keys && key->fn == NULL) { |
| 237 | ERROR("Key '%s' required by '%s' not " |
| 238 | "specified\n", key->desc, |
| 239 | cert->cn); |
| 240 | exit(1); |
| 241 | } |
| 242 | break; |
| 243 | case EXT_TYPE_HASH: |
Yatharth Kochar | 5752b59 | 2015-08-21 15:30:55 +0100 | [diff] [blame] | 244 | /* |
| 245 | * Binary image must be specified |
| 246 | * unless it is explicitly made optional. |
| 247 | */ |
Juan Castillo | 4352998 | 2016-01-22 11:05:24 +0000 | [diff] [blame] | 248 | if ((!ext->optional) && (ext->arg == NULL)) { |
Juan Castillo | 86958fd | 2015-07-08 12:11:38 +0100 | [diff] [blame] | 249 | ERROR("Image for '%s' not specified\n", |
| 250 | ext->ln); |
| 251 | exit(1); |
| 252 | } |
| 253 | break; |
| 254 | default: |
Juan Castillo | 4352998 | 2016-01-22 11:05:24 +0000 | [diff] [blame] | 255 | ERROR("Unknown extension type '%d' in '%s'\n", |
| 256 | ext->type, ext->ln); |
Juan Castillo | 86958fd | 2015-07-08 12:11:38 +0100 | [diff] [blame] | 257 | exit(1); |
| 258 | break; |
| 259 | } |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 260 | } |
| 261 | } |
| 262 | } |
| 263 | |
Juan Castillo | 212f738 | 2015-12-15 16:37:57 +0000 | [diff] [blame] | 264 | /* Common command line options */ |
| 265 | static const cmd_opt_t common_cmd_opt[] = { |
| 266 | { |
| 267 | { "help", no_argument, NULL, 'h' }, |
| 268 | "Print this message and exit" |
| 269 | }, |
| 270 | { |
| 271 | { "key-alg", required_argument, NULL, 'a' }, |
Lionel Debieve | fefeffb | 2022-11-14 11:03:42 +0100 | [diff] [blame] | 272 | "Key algorithm: 'rsa' (default)- RSAPSS scheme as per PKCS#1 v2.1, " \ |
| 273 | "'ecdsa', 'ecdsa-brainpool-regular', 'ecdsa-brainpool-twisted'" |
Juan Castillo | 212f738 | 2015-12-15 16:37:57 +0000 | [diff] [blame] | 274 | }, |
| 275 | { |
Justin Chadwell | febe86c | 2019-07-29 17:13:45 +0100 | [diff] [blame] | 276 | { "key-size", required_argument, NULL, 'b' }, |
| 277 | "Key size (for supported algorithms)." |
| 278 | }, |
| 279 | { |
Qixiang Xu | 76a5a9b | 2017-11-09 13:51:58 +0800 | [diff] [blame] | 280 | { "hash-alg", required_argument, NULL, 's' }, |
| 281 | "Hash algorithm : 'sha256' (default), 'sha384', 'sha512'" |
| 282 | }, |
| 283 | { |
Juan Castillo | 212f738 | 2015-12-15 16:37:57 +0000 | [diff] [blame] | 284 | { "save-keys", no_argument, NULL, 'k' }, |
| 285 | "Save key pairs into files. Filenames must be provided" |
| 286 | }, |
| 287 | { |
| 288 | { "new-keys", no_argument, NULL, 'n' }, |
| 289 | "Generate new key pairs if no key files are provided" |
| 290 | }, |
| 291 | { |
| 292 | { "print-cert", no_argument, NULL, 'p' }, |
| 293 | "Print the certificates in the standard output" |
| 294 | } |
| 295 | }; |
| 296 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 297 | int main(int argc, char *argv[]) |
| 298 | { |
Masahiro Yamada | 48cb5e5 | 2017-02-06 19:47:44 +0900 | [diff] [blame] | 299 | STACK_OF(X509_EXTENSION) * sk; |
Michalis Pappas | 3862894 | 2017-10-06 16:11:44 +0800 | [diff] [blame] | 300 | X509_EXTENSION *cert_ext = NULL; |
Masahiro Yamada | 48cb5e5 | 2017-02-06 19:47:44 +0900 | [diff] [blame] | 301 | ext_t *ext; |
| 302 | key_t *key; |
| 303 | cert_t *cert; |
| 304 | FILE *file; |
Juan Castillo | 4352998 | 2016-01-22 11:05:24 +0000 | [diff] [blame] | 305 | int i, j, ext_nid, nvctr; |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 306 | int c, opt_idx = 0; |
Juan Castillo | 1218dd5 | 2015-07-03 16:23:16 +0100 | [diff] [blame] | 307 | const struct option *cmd_opt; |
| 308 | const char *cur_opt; |
Juan Castillo | f9f39c3 | 2015-06-01 16:34:23 +0100 | [diff] [blame] | 309 | unsigned int err_code; |
Qixiang Xu | 76a5a9b | 2017-11-09 13:51:58 +0800 | [diff] [blame] | 310 | unsigned char md[SHA512_DIGEST_LENGTH]; |
| 311 | unsigned int md_len; |
Juan Castillo | ac40293 | 2015-03-05 14:30:00 +0000 | [diff] [blame] | 312 | const EVP_MD *md_info; |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 313 | |
| 314 | NOTICE("CoT Generation Tool: %s\n", build_msg); |
| 315 | NOTICE("Target platform: %s\n", platform_msg); |
| 316 | |
Juan Castillo | f9f39c3 | 2015-06-01 16:34:23 +0100 | [diff] [blame] | 317 | /* Set default options */ |
| 318 | key_alg = KEY_ALG_RSA; |
Qixiang Xu | 76a5a9b | 2017-11-09 13:51:58 +0800 | [diff] [blame] | 319 | hash_alg = HASH_ALG_SHA256; |
Justin Chadwell | febe86c | 2019-07-29 17:13:45 +0100 | [diff] [blame] | 320 | key_size = -1; |
Juan Castillo | f9f39c3 | 2015-06-01 16:34:23 +0100 | [diff] [blame] | 321 | |
Juan Castillo | 1218dd5 | 2015-07-03 16:23:16 +0100 | [diff] [blame] | 322 | /* Add common command line options */ |
Juan Castillo | 212f738 | 2015-12-15 16:37:57 +0000 | [diff] [blame] | 323 | for (i = 0; i < NUM_ELEM(common_cmd_opt); i++) { |
| 324 | cmd_opt_add(&common_cmd_opt[i]); |
| 325 | } |
Juan Castillo | 1218dd5 | 2015-07-03 16:23:16 +0100 | [diff] [blame] | 326 | |
| 327 | /* Initialize the certificates */ |
| 328 | if (cert_init() != 0) { |
| 329 | ERROR("Cannot initialize certificates\n"); |
| 330 | exit(1); |
| 331 | } |
| 332 | |
| 333 | /* Initialize the keys */ |
| 334 | if (key_init() != 0) { |
| 335 | ERROR("Cannot initialize keys\n"); |
| 336 | exit(1); |
| 337 | } |
| 338 | |
| 339 | /* Initialize the new types and register OIDs for the extensions */ |
| 340 | if (ext_init() != 0) { |
Sandrine Bailleux | 0d11b48 | 2020-01-15 11:01:25 +0100 | [diff] [blame] | 341 | ERROR("Cannot initialize extensions\n"); |
Juan Castillo | 1218dd5 | 2015-07-03 16:23:16 +0100 | [diff] [blame] | 342 | exit(1); |
| 343 | } |
| 344 | |
| 345 | /* Get the command line options populated during the initialization */ |
| 346 | cmd_opt = cmd_opt_get_array(); |
| 347 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 348 | while (1) { |
| 349 | /* getopt_long stores the option index here. */ |
Justin Chadwell | febe86c | 2019-07-29 17:13:45 +0100 | [diff] [blame] | 350 | c = getopt_long(argc, argv, "a:b:hknps:", cmd_opt, &opt_idx); |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 351 | |
| 352 | /* Detect the end of the options. */ |
| 353 | if (c == -1) { |
| 354 | break; |
| 355 | } |
| 356 | |
| 357 | switch (c) { |
Juan Castillo | f9f39c3 | 2015-06-01 16:34:23 +0100 | [diff] [blame] | 358 | case 'a': |
| 359 | key_alg = get_key_alg(optarg); |
| 360 | if (key_alg < 0) { |
| 361 | ERROR("Invalid key algorithm '%s'\n", optarg); |
| 362 | exit(1); |
| 363 | } |
| 364 | break; |
Justin Chadwell | febe86c | 2019-07-29 17:13:45 +0100 | [diff] [blame] | 365 | case 'b': |
| 366 | key_size = get_key_size(optarg); |
| 367 | if (key_size <= 0) { |
| 368 | ERROR("Invalid key size '%s'\n", optarg); |
| 369 | exit(1); |
| 370 | } |
| 371 | break; |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 372 | case 'h': |
Juan Castillo | 1218dd5 | 2015-07-03 16:23:16 +0100 | [diff] [blame] | 373 | print_help(argv[0], cmd_opt); |
Roberto Vargas | 58a5b2b | 2018-06-27 08:23:22 +0100 | [diff] [blame] | 374 | exit(0); |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 375 | case 'k': |
| 376 | save_keys = 1; |
| 377 | break; |
| 378 | case 'n': |
| 379 | new_keys = 1; |
| 380 | break; |
| 381 | case 'p': |
| 382 | print_cert = 1; |
| 383 | break; |
Qixiang Xu | 76a5a9b | 2017-11-09 13:51:58 +0800 | [diff] [blame] | 384 | case 's': |
| 385 | hash_alg = get_hash_alg(optarg); |
| 386 | if (hash_alg < 0) { |
| 387 | ERROR("Invalid hash algorithm '%s'\n", optarg); |
| 388 | exit(1); |
| 389 | } |
| 390 | break; |
Juan Castillo | 1218dd5 | 2015-07-03 16:23:16 +0100 | [diff] [blame] | 391 | case CMD_OPT_EXT: |
| 392 | cur_opt = cmd_opt_get_name(opt_idx); |
| 393 | ext = ext_get_by_opt(cur_opt); |
Juan Castillo | 4352998 | 2016-01-22 11:05:24 +0000 | [diff] [blame] | 394 | ext->arg = strdup(optarg); |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 395 | break; |
Juan Castillo | 1218dd5 | 2015-07-03 16:23:16 +0100 | [diff] [blame] | 396 | case CMD_OPT_KEY: |
| 397 | cur_opt = cmd_opt_get_name(opt_idx); |
| 398 | key = key_get_by_opt(cur_opt); |
| 399 | key->fn = strdup(optarg); |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 400 | break; |
Juan Castillo | 1218dd5 | 2015-07-03 16:23:16 +0100 | [diff] [blame] | 401 | case CMD_OPT_CERT: |
| 402 | cur_opt = cmd_opt_get_name(opt_idx); |
| 403 | cert = cert_get_by_opt(cur_opt); |
| 404 | cert->fn = strdup(optarg); |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 405 | break; |
| 406 | case '?': |
| 407 | default: |
Juan Castillo | 212f738 | 2015-12-15 16:37:57 +0000 | [diff] [blame] | 408 | print_help(argv[0], cmd_opt); |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 409 | exit(1); |
| 410 | } |
| 411 | } |
| 412 | |
Justin Chadwell | febe86c | 2019-07-29 17:13:45 +0100 | [diff] [blame] | 413 | /* Select a reasonable default key-size */ |
| 414 | if (key_size == -1) { |
| 415 | key_size = KEY_SIZES[key_alg][0]; |
| 416 | } |
| 417 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 418 | /* Check command line arguments */ |
| 419 | check_cmd_params(); |
| 420 | |
Qixiang Xu | 76a5a9b | 2017-11-09 13:51:58 +0800 | [diff] [blame] | 421 | /* Indicate SHA as image hash algorithm in the certificate |
Juan Castillo | ac40293 | 2015-03-05 14:30:00 +0000 | [diff] [blame] | 422 | * extension */ |
Qixiang Xu | 76a5a9b | 2017-11-09 13:51:58 +0800 | [diff] [blame] | 423 | if (hash_alg == HASH_ALG_SHA384) { |
| 424 | md_info = EVP_sha384(); |
| 425 | md_len = SHA384_DIGEST_LENGTH; |
| 426 | } else if (hash_alg == HASH_ALG_SHA512) { |
| 427 | md_info = EVP_sha512(); |
| 428 | md_len = SHA512_DIGEST_LENGTH; |
| 429 | } else { |
| 430 | md_info = EVP_sha256(); |
| 431 | md_len = SHA256_DIGEST_LENGTH; |
| 432 | } |
Juan Castillo | ac40293 | 2015-03-05 14:30:00 +0000 | [diff] [blame] | 433 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 434 | /* Load private keys from files (or generate new ones) */ |
Juan Castillo | e6d30e9 | 2015-06-12 11:27:59 +0100 | [diff] [blame] | 435 | for (i = 0 ; i < num_keys ; i++) { |
Juan Pablo Conde | 3539c74 | 2022-10-25 19:41:02 -0400 | [diff] [blame] | 436 | #if !USING_OPENSSL3 |
Masahiro Yamada | bccb109 | 2017-02-06 21:15:01 +0900 | [diff] [blame] | 437 | if (!key_new(&keys[i])) { |
| 438 | ERROR("Failed to allocate key container\n"); |
| 439 | exit(1); |
| 440 | } |
Juan Pablo Conde | 3539c74 | 2022-10-25 19:41:02 -0400 | [diff] [blame] | 441 | #endif |
Masahiro Yamada | bccb109 | 2017-02-06 21:15:01 +0900 | [diff] [blame] | 442 | |
Juan Castillo | f9f39c3 | 2015-06-01 16:34:23 +0100 | [diff] [blame] | 443 | /* First try to load the key from disk */ |
| 444 | if (key_load(&keys[i], &err_code)) { |
| 445 | /* Key loaded successfully */ |
| 446 | continue; |
| 447 | } |
| 448 | |
| 449 | /* Key not loaded. Check the error code */ |
Masahiro Yamada | bccb109 | 2017-02-06 21:15:01 +0900 | [diff] [blame] | 450 | if (err_code == KEY_ERR_LOAD) { |
Juan Castillo | f9f39c3 | 2015-06-01 16:34:23 +0100 | [diff] [blame] | 451 | /* File exists, but it does not contain a valid private |
| 452 | * key. Abort. */ |
| 453 | ERROR("Error loading '%s'\n", keys[i].fn); |
| 454 | exit(1); |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 455 | } |
Juan Castillo | f9f39c3 | 2015-06-01 16:34:23 +0100 | [diff] [blame] | 456 | |
| 457 | /* File does not exist, could not be opened or no filename was |
| 458 | * given */ |
| 459 | if (new_keys) { |
| 460 | /* Try to create a new key */ |
| 461 | NOTICE("Creating new key for '%s'\n", keys[i].desc); |
Justin Chadwell | febe86c | 2019-07-29 17:13:45 +0100 | [diff] [blame] | 462 | if (!key_create(&keys[i], key_alg, key_size)) { |
Juan Castillo | f9f39c3 | 2015-06-01 16:34:23 +0100 | [diff] [blame] | 463 | ERROR("Error creating key '%s'\n", keys[i].desc); |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 464 | exit(1); |
| 465 | } |
Juan Castillo | f9f39c3 | 2015-06-01 16:34:23 +0100 | [diff] [blame] | 466 | } else { |
| 467 | if (err_code == KEY_ERR_OPEN) { |
| 468 | ERROR("Error opening '%s'\n", keys[i].fn); |
| 469 | } else { |
| 470 | ERROR("Key '%s' not specified\n", keys[i].desc); |
| 471 | } |
| 472 | exit(1); |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 473 | } |
| 474 | } |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 475 | |
Juan Castillo | e6d30e9 | 2015-06-12 11:27:59 +0100 | [diff] [blame] | 476 | /* Create the certificates */ |
| 477 | for (i = 0 ; i < num_certs ; i++) { |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 478 | |
Juan Castillo | e6d30e9 | 2015-06-12 11:27:59 +0100 | [diff] [blame] | 479 | cert = &certs[i]; |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 480 | |
Manish V Badarkhe | 2b7e70e | 2021-01-26 10:55:49 +0000 | [diff] [blame] | 481 | if (cert->fn == NULL) { |
| 482 | /* Certificate not requested. Skip to the next one */ |
| 483 | continue; |
| 484 | } |
| 485 | |
Juan Castillo | e6d30e9 | 2015-06-12 11:27:59 +0100 | [diff] [blame] | 486 | /* Create a new stack of extensions. This stack will be used |
| 487 | * to create the certificate */ |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 488 | CHECK_NULL(sk, sk_X509_EXTENSION_new_null()); |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 489 | |
Juan Castillo | e6d30e9 | 2015-06-12 11:27:59 +0100 | [diff] [blame] | 490 | for (j = 0 ; j < cert->num_ext ; j++) { |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 491 | |
Juan Castillo | e6d30e9 | 2015-06-12 11:27:59 +0100 | [diff] [blame] | 492 | ext = &extensions[cert->ext[j]]; |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 493 | |
Juan Castillo | e6d30e9 | 2015-06-12 11:27:59 +0100 | [diff] [blame] | 494 | /* Get OpenSSL internal ID for this extension */ |
| 495 | CHECK_OID(ext_nid, ext->oid); |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 496 | |
Juan Castillo | e6d30e9 | 2015-06-12 11:27:59 +0100 | [diff] [blame] | 497 | /* |
| 498 | * Three types of extensions are currently supported: |
| 499 | * - EXT_TYPE_NVCOUNTER |
| 500 | * - EXT_TYPE_HASH |
| 501 | * - EXT_TYPE_PKEY |
| 502 | */ |
| 503 | switch (ext->type) { |
| 504 | case EXT_TYPE_NVCOUNTER: |
Jimmy Brisson | c913fa6 | 2021-01-20 15:34:51 -0600 | [diff] [blame] | 505 | if (ext->optional && ext->arg == NULL) { |
| 506 | /* Skip this NVCounter */ |
| 507 | continue; |
| 508 | } else { |
| 509 | /* Checked by `check_cmd_params` */ |
| 510 | assert(ext->arg != NULL); |
Yatharth Kochar | 79f8640 | 2016-06-22 14:49:27 +0100 | [diff] [blame] | 511 | nvctr = atoi(ext->arg); |
| 512 | CHECK_NULL(cert_ext, ext_new_nvcounter(ext_nid, |
Juan Castillo | 4352998 | 2016-01-22 11:05:24 +0000 | [diff] [blame] | 513 | EXT_CRIT, nvctr)); |
Yatharth Kochar | 79f8640 | 2016-06-22 14:49:27 +0100 | [diff] [blame] | 514 | } |
Juan Castillo | e6d30e9 | 2015-06-12 11:27:59 +0100 | [diff] [blame] | 515 | break; |
| 516 | case EXT_TYPE_HASH: |
Juan Castillo | 4352998 | 2016-01-22 11:05:24 +0000 | [diff] [blame] | 517 | if (ext->arg == NULL) { |
Yatharth Kochar | 5752b59 | 2015-08-21 15:30:55 +0100 | [diff] [blame] | 518 | if (ext->optional) { |
| 519 | /* Include a hash filled with zeros */ |
Qixiang Xu | 76a5a9b | 2017-11-09 13:51:58 +0800 | [diff] [blame] | 520 | memset(md, 0x0, SHA512_DIGEST_LENGTH); |
Yatharth Kochar | 5752b59 | 2015-08-21 15:30:55 +0100 | [diff] [blame] | 521 | } else { |
| 522 | /* Do not include this hash in the certificate */ |
Jimmy Brisson | c913fa6 | 2021-01-20 15:34:51 -0600 | [diff] [blame] | 523 | continue; |
Yatharth Kochar | 5752b59 | 2015-08-21 15:30:55 +0100 | [diff] [blame] | 524 | } |
| 525 | } else { |
| 526 | /* Calculate the hash of the file */ |
Qixiang Xu | 76a5a9b | 2017-11-09 13:51:58 +0800 | [diff] [blame] | 527 | if (!sha_file(hash_alg, ext->arg, md)) { |
Yatharth Kochar | 5752b59 | 2015-08-21 15:30:55 +0100 | [diff] [blame] | 528 | ERROR("Cannot calculate hash of %s\n", |
Juan Castillo | 4352998 | 2016-01-22 11:05:24 +0000 | [diff] [blame] | 529 | ext->arg); |
Yatharth Kochar | 5752b59 | 2015-08-21 15:30:55 +0100 | [diff] [blame] | 530 | exit(1); |
| 531 | } |
Juan Castillo | e6d30e9 | 2015-06-12 11:27:59 +0100 | [diff] [blame] | 532 | } |
| 533 | CHECK_NULL(cert_ext, ext_new_hash(ext_nid, |
| 534 | EXT_CRIT, md_info, md, |
Qixiang Xu | 76a5a9b | 2017-11-09 13:51:58 +0800 | [diff] [blame] | 535 | md_len)); |
Juan Castillo | e6d30e9 | 2015-06-12 11:27:59 +0100 | [diff] [blame] | 536 | break; |
| 537 | case EXT_TYPE_PKEY: |
| 538 | CHECK_NULL(cert_ext, ext_new_key(ext_nid, |
Juan Castillo | 4352998 | 2016-01-22 11:05:24 +0000 | [diff] [blame] | 539 | EXT_CRIT, keys[ext->attr.key].key)); |
Juan Castillo | e6d30e9 | 2015-06-12 11:27:59 +0100 | [diff] [blame] | 540 | break; |
| 541 | default: |
Juan Castillo | 4352998 | 2016-01-22 11:05:24 +0000 | [diff] [blame] | 542 | ERROR("Unknown extension type '%d' in %s\n", |
| 543 | ext->type, cert->cn); |
Juan Castillo | e6d30e9 | 2015-06-12 11:27:59 +0100 | [diff] [blame] | 544 | exit(1); |
| 545 | } |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 546 | |
Juan Castillo | e6d30e9 | 2015-06-12 11:27:59 +0100 | [diff] [blame] | 547 | /* Push the extension into the stack */ |
| 548 | sk_X509_EXTENSION_push(sk, cert_ext); |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 549 | } |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 550 | |
Soby Mathew | 2fd70f6 | 2017-08-31 11:50:29 +0100 | [diff] [blame] | 551 | /* Create certificate. Signed with corresponding key */ |
Manish V Badarkhe | 2b7e70e | 2021-01-26 10:55:49 +0000 | [diff] [blame] | 552 | if (!cert_new(hash_alg, cert, VAL_DAYS, 0, sk)) { |
Juan Castillo | e6d30e9 | 2015-06-12 11:27:59 +0100 | [diff] [blame] | 553 | ERROR("Cannot create %s\n", cert->cn); |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 554 | exit(1); |
| 555 | } |
| 556 | |
Jimmy Brisson | 63d0693 | 2020-07-24 14:31:48 -0500 | [diff] [blame] | 557 | for (cert_ext = sk_X509_EXTENSION_pop(sk); cert_ext != NULL; |
| 558 | cert_ext = sk_X509_EXTENSION_pop(sk)) { |
| 559 | X509_EXTENSION_free(cert_ext); |
| 560 | } |
| 561 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 562 | sk_X509_EXTENSION_free(sk); |
| 563 | } |
| 564 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 565 | |
| 566 | /* Print the certificates */ |
| 567 | if (print_cert) { |
Juan Castillo | e6d30e9 | 2015-06-12 11:27:59 +0100 | [diff] [blame] | 568 | for (i = 0 ; i < num_certs ; i++) { |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 569 | if (!certs[i].x) { |
| 570 | continue; |
| 571 | } |
| 572 | printf("\n\n=====================================\n\n"); |
| 573 | X509_print_fp(stdout, certs[i].x); |
| 574 | } |
| 575 | } |
| 576 | |
| 577 | /* Save created certificates to files */ |
Juan Castillo | e6d30e9 | 2015-06-12 11:27:59 +0100 | [diff] [blame] | 578 | for (i = 0 ; i < num_certs ; i++) { |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 579 | if (certs[i].x && certs[i].fn) { |
| 580 | file = fopen(certs[i].fn, "w"); |
| 581 | if (file != NULL) { |
| 582 | i2d_X509_fp(file, certs[i].x); |
| 583 | fclose(file); |
| 584 | } else { |
| 585 | ERROR("Cannot create file %s\n", certs[i].fn); |
| 586 | } |
| 587 | } |
| 588 | } |
| 589 | |
| 590 | /* Save keys */ |
| 591 | if (save_keys) { |
Juan Castillo | e6d30e9 | 2015-06-12 11:27:59 +0100 | [diff] [blame] | 592 | for (i = 0 ; i < num_keys ; i++) { |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 593 | if (!key_store(&keys[i])) { |
| 594 | ERROR("Cannot save %s\n", keys[i].desc); |
| 595 | } |
| 596 | } |
| 597 | } |
| 598 | |
Jimmy Brisson | 5328796 | 2020-07-27 10:43:40 -0500 | [diff] [blame] | 599 | /* If we got here, then we must have filled the key array completely. |
| 600 | * We can then safely call free on all of the keys in the array |
| 601 | */ |
Juan Pablo Conde | 3539c74 | 2022-10-25 19:41:02 -0400 | [diff] [blame] | 602 | key_cleanup(); |
Jimmy Brisson | 5328796 | 2020-07-27 10:43:40 -0500 | [diff] [blame] | 603 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 604 | #ifndef OPENSSL_NO_ENGINE |
| 605 | ENGINE_cleanup(); |
| 606 | #endif |
| 607 | CRYPTO_cleanup_all_ex_data(); |
| 608 | |
Jimmy Brisson | 54db69e | 2020-07-27 11:23:20 -0500 | [diff] [blame] | 609 | |
| 610 | /* We allocated strings through strdup, so now we have to free them */ |
Jimmy Brisson | 54db69e | 2020-07-27 11:23:20 -0500 | [diff] [blame] | 611 | |
Juan Pablo Conde | 3539c74 | 2022-10-25 19:41:02 -0400 | [diff] [blame] | 612 | ext_cleanup(); |
Jimmy Brisson | 54db69e | 2020-07-27 11:23:20 -0500 | [diff] [blame] | 613 | |
Juan Pablo Conde | 3539c74 | 2022-10-25 19:41:02 -0400 | [diff] [blame] | 614 | cert_cleanup(); |
Jimmy Brisson | 54db69e | 2020-07-27 11:23:20 -0500 | [diff] [blame] | 615 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 616 | return 0; |
| 617 | } |