blob: e0f331c21e9f22505e36ecba03d6a1caf2dd3e43 [file] [log] [blame]
Juan Castillo11abdcd2014-10-21 11:30:42 +01001/*
2 * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
3 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Juan Castillo11abdcd2014-10-21 11:30:42 +01005 */
6
Juan Castillo212f7382015-12-15 16:37:57 +00007#include <assert.h>
8#include <ctype.h>
Juan Castillo11abdcd2014-10-21 11:30:42 +01009#include <getopt.h>
10#include <stdio.h>
11#include <stdlib.h>
12#include <string.h>
13
14#include <openssl/conf.h>
15#include <openssl/engine.h>
16#include <openssl/err.h>
17#include <openssl/pem.h>
18#include <openssl/sha.h>
19#include <openssl/x509v3.h>
20
21#include "cert.h"
Juan Castillo1218dd52015-07-03 16:23:16 +010022#include "cmd_opt.h"
Juan Castillo11abdcd2014-10-21 11:30:42 +010023#include "debug.h"
24#include "ext.h"
25#include "key.h"
26#include "platform_oid.h"
27#include "sha.h"
Juan Castilloe6d30e92015-06-12 11:27:59 +010028#include "tbbr/tbb_ext.h"
29#include "tbbr/tbb_cert.h"
30#include "tbbr/tbb_key.h"
Juan Castillo11abdcd2014-10-21 11:30:42 +010031
32/*
33 * Helper macros to simplify the code. This macro assigns the return value of
34 * the 'fn' function to 'v' and exits if the value is NULL.
35 */
36#define CHECK_NULL(v, fn) \
37 do { \
38 v = fn; \
39 if (v == NULL) { \
40 ERROR("NULL object at %s:%d\n", __FILE__, __LINE__); \
41 exit(1); \
42 } \
43 } while (0)
44
45/*
46 * This macro assigns the NID corresponding to 'oid' to 'v' and exits if the
47 * NID is undefined.
48 */
49#define CHECK_OID(v, oid) \
50 do { \
51 v = OBJ_txt2nid(oid); \
52 if (v == NID_undef) { \
53 ERROR("Cannot find TBB extension %s\n", oid); \
54 exit(1); \
55 } \
56 } while (0)
57
58#define MAX_FILENAME_LEN 1024
59#define VAL_DAYS 7300
60#define ID_TO_BIT_MASK(id) (1 << id)
Juan Castillof9f39c32015-06-01 16:34:23 +010061#define NUM_ELEM(x) ((sizeof(x)) / (sizeof(x[0])))
Juan Castillo212f7382015-12-15 16:37:57 +000062#define HELP_OPT_MAX_LEN 128
Juan Castillo11abdcd2014-10-21 11:30:42 +010063
64/* Global options */
Juan Castillof9f39c32015-06-01 16:34:23 +010065static int key_alg;
Juan Castillo11abdcd2014-10-21 11:30:42 +010066static int new_keys;
67static int save_keys;
68static int print_cert;
Juan Castillo11abdcd2014-10-21 11:30:42 +010069
Juan Castillo11abdcd2014-10-21 11:30:42 +010070/* Info messages created in the Makefile */
71extern const char build_msg[];
72extern const char platform_msg[];
73
74
75static char *strdup(const char *str)
76{
77 int n = strlen(str) + 1;
78 char *dup = malloc(n);
79 if (dup) {
80 strcpy(dup, str);
81 }
82 return dup;
83}
84
Juan Castillof9f39c32015-06-01 16:34:23 +010085static const char *key_algs_str[] = {
86 [KEY_ALG_RSA] = "rsa",
Juan Castilloa2224ab2015-06-30 13:36:57 +010087#ifndef OPENSSL_NO_EC
Juan Castillof9f39c32015-06-01 16:34:23 +010088 [KEY_ALG_ECDSA] = "ecdsa"
Juan Castilloa2224ab2015-06-30 13:36:57 +010089#endif /* OPENSSL_NO_EC */
Juan Castillof9f39c32015-06-01 16:34:23 +010090};
91
Juan Castillo1218dd52015-07-03 16:23:16 +010092static void print_help(const char *cmd, const struct option *long_opt)
Juan Castillo11abdcd2014-10-21 11:30:42 +010093{
Juan Castillo212f7382015-12-15 16:37:57 +000094 int rem, i = 0;
95 const struct option *opt;
96 char line[HELP_OPT_MAX_LEN];
97 char *p;
98
99 assert(cmd != NULL);
100 assert(long_opt != NULL);
101
Juan Castillo11abdcd2014-10-21 11:30:42 +0100102 printf("\n\n");
103 printf("The certificate generation tool loads the binary images and\n"
104 "optionally the RSA keys, and outputs the key and content\n"
105 "certificates properly signed to implement the chain of trust.\n"
106 "If keys are provided, they must be in PEM format.\n"
107 "Certificates are generated in DER format.\n");
108 printf("\n");
Juan Castillo212f7382015-12-15 16:37:57 +0000109 printf("Usage:\n");
110 printf("\t%s [OPTIONS]\n\n", cmd);
111
112 printf("Available options:\n");
Juan Castillo212f7382015-12-15 16:37:57 +0000113 opt = long_opt;
114 while (opt->name) {
115 p = line;
116 rem = HELP_OPT_MAX_LEN;
117 if (isalpha(opt->val)) {
118 /* Short format */
119 sprintf(p, "-%c,", (char)opt->val);
120 p += 3;
121 rem -= 3;
122 }
123 snprintf(p, rem, "--%s %s", opt->name,
124 (opt->has_arg == required_argument) ? "<arg>" : "");
125 printf("\t%-32s %s\n", line, cmd_opt_get_help_msg(i));
126 opt++;
127 i++;
Juan Castillo11abdcd2014-10-21 11:30:42 +0100128 }
129 printf("\n");
Juan Castillo11abdcd2014-10-21 11:30:42 +0100130
131 exit(0);
132}
133
Juan Castillof9f39c32015-06-01 16:34:23 +0100134static int get_key_alg(const char *key_alg_str)
135{
136 int i;
137
138 for (i = 0 ; i < NUM_ELEM(key_algs_str) ; i++) {
139 if (0 == strcmp(key_alg_str, key_algs_str[i])) {
140 return i;
141 }
142 }
143
144 return -1;
145}
146
Juan Castillo11abdcd2014-10-21 11:30:42 +0100147static void check_cmd_params(void)
148{
Juan Castillo86958fd2015-07-08 12:11:38 +0100149 cert_t *cert;
150 ext_t *ext;
151 key_t *key;
152 int i, j;
153
Juan Castillof9f39c32015-06-01 16:34:23 +0100154 /* Only save new keys */
155 if (save_keys && !new_keys) {
156 ERROR("Only new keys can be saved to disk\n");
157 exit(1);
158 }
159
Juan Castillo86958fd2015-07-08 12:11:38 +0100160 /* Check that all required options have been specified in the
161 * command line */
162 for (i = 0; i < num_certs; i++) {
163 cert = &certs[i];
164 if (cert->fn == NULL) {
165 /* Certificate not requested. Skip to the next one */
166 continue;
Juan Castillo11abdcd2014-10-21 11:30:42 +0100167 }
168
Juan Castillo86958fd2015-07-08 12:11:38 +0100169 /* Check that all parameters required to create this certificate
170 * have been specified in the command line */
171 for (j = 0; j < cert->num_ext; j++) {
172 ext = &extensions[cert->ext[j]];
173 switch (ext->type) {
Juan Castillo43529982016-01-22 11:05:24 +0000174 case EXT_TYPE_NVCOUNTER:
175 /* Counter value must be specified */
176 if ((!ext->optional) && (ext->arg == NULL)) {
177 ERROR("Value for '%s' not specified\n",
178 ext->ln);
179 exit(1);
180 }
181 break;
Juan Castillo86958fd2015-07-08 12:11:38 +0100182 case EXT_TYPE_PKEY:
183 /* Key filename must be specified */
Juan Castillo43529982016-01-22 11:05:24 +0000184 key = &keys[ext->attr.key];
Juan Castillo86958fd2015-07-08 12:11:38 +0100185 if (!new_keys && key->fn == NULL) {
186 ERROR("Key '%s' required by '%s' not "
187 "specified\n", key->desc,
188 cert->cn);
189 exit(1);
190 }
191 break;
192 case EXT_TYPE_HASH:
Yatharth Kochar5752b592015-08-21 15:30:55 +0100193 /*
194 * Binary image must be specified
195 * unless it is explicitly made optional.
196 */
Juan Castillo43529982016-01-22 11:05:24 +0000197 if ((!ext->optional) && (ext->arg == NULL)) {
Juan Castillo86958fd2015-07-08 12:11:38 +0100198 ERROR("Image for '%s' not specified\n",
199 ext->ln);
200 exit(1);
201 }
202 break;
203 default:
Juan Castillo43529982016-01-22 11:05:24 +0000204 ERROR("Unknown extension type '%d' in '%s'\n",
205 ext->type, ext->ln);
Juan Castillo86958fd2015-07-08 12:11:38 +0100206 exit(1);
207 break;
208 }
Juan Castillo11abdcd2014-10-21 11:30:42 +0100209 }
210 }
211}
212
Juan Castillo212f7382015-12-15 16:37:57 +0000213/* Common command line options */
214static const cmd_opt_t common_cmd_opt[] = {
215 {
216 { "help", no_argument, NULL, 'h' },
217 "Print this message and exit"
218 },
219 {
220 { "key-alg", required_argument, NULL, 'a' },
221 "Key algorithm: 'rsa' (default), 'ecdsa'"
222 },
223 {
224 { "save-keys", no_argument, NULL, 'k' },
225 "Save key pairs into files. Filenames must be provided"
226 },
227 {
228 { "new-keys", no_argument, NULL, 'n' },
229 "Generate new key pairs if no key files are provided"
230 },
231 {
232 { "print-cert", no_argument, NULL, 'p' },
233 "Print the certificates in the standard output"
234 }
235};
236
Juan Castillo11abdcd2014-10-21 11:30:42 +0100237int main(int argc, char *argv[])
238{
Masahiro Yamada48cb5e52017-02-06 19:47:44 +0900239 STACK_OF(X509_EXTENSION) * sk;
240 X509_EXTENSION *cert_ext;
241 ext_t *ext;
242 key_t *key;
243 cert_t *cert;
244 FILE *file;
Juan Castillo43529982016-01-22 11:05:24 +0000245 int i, j, ext_nid, nvctr;
Juan Castillo11abdcd2014-10-21 11:30:42 +0100246 int c, opt_idx = 0;
Juan Castillo1218dd52015-07-03 16:23:16 +0100247 const struct option *cmd_opt;
248 const char *cur_opt;
Juan Castillof9f39c32015-06-01 16:34:23 +0100249 unsigned int err_code;
Juan Castillo11abdcd2014-10-21 11:30:42 +0100250 unsigned char md[SHA256_DIGEST_LENGTH];
Juan Castilloac402932015-03-05 14:30:00 +0000251 const EVP_MD *md_info;
Juan Castillo11abdcd2014-10-21 11:30:42 +0100252
253 NOTICE("CoT Generation Tool: %s\n", build_msg);
254 NOTICE("Target platform: %s\n", platform_msg);
255
Juan Castillof9f39c32015-06-01 16:34:23 +0100256 /* Set default options */
257 key_alg = KEY_ALG_RSA;
258
Juan Castillo1218dd52015-07-03 16:23:16 +0100259 /* Add common command line options */
Juan Castillo212f7382015-12-15 16:37:57 +0000260 for (i = 0; i < NUM_ELEM(common_cmd_opt); i++) {
261 cmd_opt_add(&common_cmd_opt[i]);
262 }
Juan Castillo1218dd52015-07-03 16:23:16 +0100263
264 /* Initialize the certificates */
265 if (cert_init() != 0) {
266 ERROR("Cannot initialize certificates\n");
267 exit(1);
268 }
269
270 /* Initialize the keys */
271 if (key_init() != 0) {
272 ERROR("Cannot initialize keys\n");
273 exit(1);
274 }
275
276 /* Initialize the new types and register OIDs for the extensions */
277 if (ext_init() != 0) {
278 ERROR("Cannot initialize TBB extensions\n");
279 exit(1);
280 }
281
282 /* Get the command line options populated during the initialization */
283 cmd_opt = cmd_opt_get_array();
284
Juan Castillo11abdcd2014-10-21 11:30:42 +0100285 while (1) {
286 /* getopt_long stores the option index here. */
Juan Castillo212f7382015-12-15 16:37:57 +0000287 c = getopt_long(argc, argv, "a:hknp", cmd_opt, &opt_idx);
Juan Castillo11abdcd2014-10-21 11:30:42 +0100288
289 /* Detect the end of the options. */
290 if (c == -1) {
291 break;
292 }
293
294 switch (c) {
Juan Castillof9f39c32015-06-01 16:34:23 +0100295 case 'a':
296 key_alg = get_key_alg(optarg);
297 if (key_alg < 0) {
298 ERROR("Invalid key algorithm '%s'\n", optarg);
299 exit(1);
300 }
301 break;
Juan Castillo11abdcd2014-10-21 11:30:42 +0100302 case 'h':
Juan Castillo1218dd52015-07-03 16:23:16 +0100303 print_help(argv[0], cmd_opt);
Juan Castillo11abdcd2014-10-21 11:30:42 +0100304 break;
305 case 'k':
306 save_keys = 1;
307 break;
308 case 'n':
309 new_keys = 1;
310 break;
311 case 'p':
312 print_cert = 1;
313 break;
Juan Castillo1218dd52015-07-03 16:23:16 +0100314 case CMD_OPT_EXT:
315 cur_opt = cmd_opt_get_name(opt_idx);
316 ext = ext_get_by_opt(cur_opt);
Juan Castillo43529982016-01-22 11:05:24 +0000317 ext->arg = strdup(optarg);
Juan Castillo11abdcd2014-10-21 11:30:42 +0100318 break;
Juan Castillo1218dd52015-07-03 16:23:16 +0100319 case CMD_OPT_KEY:
320 cur_opt = cmd_opt_get_name(opt_idx);
321 key = key_get_by_opt(cur_opt);
322 key->fn = strdup(optarg);
Juan Castillo11abdcd2014-10-21 11:30:42 +0100323 break;
Juan Castillo1218dd52015-07-03 16:23:16 +0100324 case CMD_OPT_CERT:
325 cur_opt = cmd_opt_get_name(opt_idx);
326 cert = cert_get_by_opt(cur_opt);
327 cert->fn = strdup(optarg);
Juan Castillo11abdcd2014-10-21 11:30:42 +0100328 break;
329 case '?':
330 default:
Juan Castillo212f7382015-12-15 16:37:57 +0000331 print_help(argv[0], cmd_opt);
Juan Castillo11abdcd2014-10-21 11:30:42 +0100332 exit(1);
333 }
334 }
335
Juan Castillo11abdcd2014-10-21 11:30:42 +0100336 /* Check command line arguments */
337 check_cmd_params();
338
Juan Castilloac402932015-03-05 14:30:00 +0000339 /* Indicate SHA256 as image hash algorithm in the certificate
340 * extension */
341 md_info = EVP_sha256();
342
Juan Castillo11abdcd2014-10-21 11:30:42 +0100343 /* Load private keys from files (or generate new ones) */
Juan Castilloe6d30e92015-06-12 11:27:59 +0100344 for (i = 0 ; i < num_keys ; i++) {
Masahiro Yamadabccb1092017-02-06 21:15:01 +0900345 if (!key_new(&keys[i])) {
346 ERROR("Failed to allocate key container\n");
347 exit(1);
348 }
349
Juan Castillof9f39c32015-06-01 16:34:23 +0100350 /* First try to load the key from disk */
351 if (key_load(&keys[i], &err_code)) {
352 /* Key loaded successfully */
353 continue;
354 }
355
356 /* Key not loaded. Check the error code */
Masahiro Yamadabccb1092017-02-06 21:15:01 +0900357 if (err_code == KEY_ERR_LOAD) {
Juan Castillof9f39c32015-06-01 16:34:23 +0100358 /* File exists, but it does not contain a valid private
359 * key. Abort. */
360 ERROR("Error loading '%s'\n", keys[i].fn);
361 exit(1);
Juan Castillo11abdcd2014-10-21 11:30:42 +0100362 }
Juan Castillof9f39c32015-06-01 16:34:23 +0100363
364 /* File does not exist, could not be opened or no filename was
365 * given */
366 if (new_keys) {
367 /* Try to create a new key */
368 NOTICE("Creating new key for '%s'\n", keys[i].desc);
369 if (!key_create(&keys[i], key_alg)) {
370 ERROR("Error creating key '%s'\n", keys[i].desc);
Juan Castillo11abdcd2014-10-21 11:30:42 +0100371 exit(1);
372 }
Juan Castillof9f39c32015-06-01 16:34:23 +0100373 } else {
374 if (err_code == KEY_ERR_OPEN) {
375 ERROR("Error opening '%s'\n", keys[i].fn);
376 } else {
377 ERROR("Key '%s' not specified\n", keys[i].desc);
378 }
379 exit(1);
Juan Castillo11abdcd2014-10-21 11:30:42 +0100380 }
381 }
Juan Castillo11abdcd2014-10-21 11:30:42 +0100382
Juan Castilloe6d30e92015-06-12 11:27:59 +0100383 /* Create the certificates */
384 for (i = 0 ; i < num_certs ; i++) {
Juan Castillo11abdcd2014-10-21 11:30:42 +0100385
Juan Castilloe6d30e92015-06-12 11:27:59 +0100386 cert = &certs[i];
Juan Castillo11abdcd2014-10-21 11:30:42 +0100387
Juan Castilloe6d30e92015-06-12 11:27:59 +0100388 /* Create a new stack of extensions. This stack will be used
389 * to create the certificate */
Juan Castillo11abdcd2014-10-21 11:30:42 +0100390 CHECK_NULL(sk, sk_X509_EXTENSION_new_null());
Juan Castillo11abdcd2014-10-21 11:30:42 +0100391
Juan Castilloe6d30e92015-06-12 11:27:59 +0100392 for (j = 0 ; j < cert->num_ext ; j++) {
Juan Castillo11abdcd2014-10-21 11:30:42 +0100393
Juan Castilloe6d30e92015-06-12 11:27:59 +0100394 ext = &extensions[cert->ext[j]];
Juan Castillo11abdcd2014-10-21 11:30:42 +0100395
Juan Castilloe6d30e92015-06-12 11:27:59 +0100396 /* Get OpenSSL internal ID for this extension */
397 CHECK_OID(ext_nid, ext->oid);
Juan Castillo11abdcd2014-10-21 11:30:42 +0100398
Juan Castilloe6d30e92015-06-12 11:27:59 +0100399 /*
400 * Three types of extensions are currently supported:
401 * - EXT_TYPE_NVCOUNTER
402 * - EXT_TYPE_HASH
403 * - EXT_TYPE_PKEY
404 */
405 switch (ext->type) {
406 case EXT_TYPE_NVCOUNTER:
Yatharth Kochar79f86402016-06-22 14:49:27 +0100407 if (ext->arg) {
408 nvctr = atoi(ext->arg);
409 CHECK_NULL(cert_ext, ext_new_nvcounter(ext_nid,
Juan Castillo43529982016-01-22 11:05:24 +0000410 EXT_CRIT, nvctr));
Yatharth Kochar79f86402016-06-22 14:49:27 +0100411 }
Juan Castilloe6d30e92015-06-12 11:27:59 +0100412 break;
413 case EXT_TYPE_HASH:
Juan Castillo43529982016-01-22 11:05:24 +0000414 if (ext->arg == NULL) {
Yatharth Kochar5752b592015-08-21 15:30:55 +0100415 if (ext->optional) {
416 /* Include a hash filled with zeros */
417 memset(md, 0x0, SHA256_DIGEST_LENGTH);
418 } else {
419 /* Do not include this hash in the certificate */
420 break;
421 }
422 } else {
423 /* Calculate the hash of the file */
Juan Castillo43529982016-01-22 11:05:24 +0000424 if (!sha_file(ext->arg, md)) {
Yatharth Kochar5752b592015-08-21 15:30:55 +0100425 ERROR("Cannot calculate hash of %s\n",
Juan Castillo43529982016-01-22 11:05:24 +0000426 ext->arg);
Yatharth Kochar5752b592015-08-21 15:30:55 +0100427 exit(1);
428 }
Juan Castilloe6d30e92015-06-12 11:27:59 +0100429 }
430 CHECK_NULL(cert_ext, ext_new_hash(ext_nid,
431 EXT_CRIT, md_info, md,
432 SHA256_DIGEST_LENGTH));
433 break;
434 case EXT_TYPE_PKEY:
435 CHECK_NULL(cert_ext, ext_new_key(ext_nid,
Juan Castillo43529982016-01-22 11:05:24 +0000436 EXT_CRIT, keys[ext->attr.key].key));
Juan Castilloe6d30e92015-06-12 11:27:59 +0100437 break;
438 default:
Juan Castillo43529982016-01-22 11:05:24 +0000439 ERROR("Unknown extension type '%d' in %s\n",
440 ext->type, cert->cn);
Juan Castilloe6d30e92015-06-12 11:27:59 +0100441 exit(1);
442 }
Juan Castillo11abdcd2014-10-21 11:30:42 +0100443
Juan Castilloe6d30e92015-06-12 11:27:59 +0100444 /* Push the extension into the stack */
445 sk_X509_EXTENSION_push(sk, cert_ext);
Juan Castillo11abdcd2014-10-21 11:30:42 +0100446 }
Juan Castillo11abdcd2014-10-21 11:30:42 +0100447
Juan Castilloe6d30e92015-06-12 11:27:59 +0100448 /* Create certificate. Signed with ROT key */
Juan Castillo86958fd2015-07-08 12:11:38 +0100449 if (cert->fn && !cert_new(cert, VAL_DAYS, 0, sk)) {
Juan Castilloe6d30e92015-06-12 11:27:59 +0100450 ERROR("Cannot create %s\n", cert->cn);
Juan Castillo11abdcd2014-10-21 11:30:42 +0100451 exit(1);
452 }
453
454 sk_X509_EXTENSION_free(sk);
455 }
456
Juan Castillo11abdcd2014-10-21 11:30:42 +0100457
458 /* Print the certificates */
459 if (print_cert) {
Juan Castilloe6d30e92015-06-12 11:27:59 +0100460 for (i = 0 ; i < num_certs ; i++) {
Juan Castillo11abdcd2014-10-21 11:30:42 +0100461 if (!certs[i].x) {
462 continue;
463 }
464 printf("\n\n=====================================\n\n");
465 X509_print_fp(stdout, certs[i].x);
466 }
467 }
468
469 /* Save created certificates to files */
Juan Castilloe6d30e92015-06-12 11:27:59 +0100470 for (i = 0 ; i < num_certs ; i++) {
Juan Castillo11abdcd2014-10-21 11:30:42 +0100471 if (certs[i].x && certs[i].fn) {
472 file = fopen(certs[i].fn, "w");
473 if (file != NULL) {
474 i2d_X509_fp(file, certs[i].x);
475 fclose(file);
476 } else {
477 ERROR("Cannot create file %s\n", certs[i].fn);
478 }
479 }
480 }
481
482 /* Save keys */
483 if (save_keys) {
Juan Castilloe6d30e92015-06-12 11:27:59 +0100484 for (i = 0 ; i < num_keys ; i++) {
Juan Castillo11abdcd2014-10-21 11:30:42 +0100485 if (!key_store(&keys[i])) {
486 ERROR("Cannot save %s\n", keys[i].desc);
487 }
488 }
489 }
490
Juan Castillo11abdcd2014-10-21 11:30:42 +0100491#ifndef OPENSSL_NO_ENGINE
492 ENGINE_cleanup();
493#endif
494 CRYPTO_cleanup_all_ex_data();
495
496 return 0;
497}