main.c 13 KB
Newer Older
1
/*
2
 * Copyright (c) 2015-2019, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
 */

7
8
#include <assert.h>
#include <ctype.h>
9
10
11
12
#include <getopt.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
13
#include <stdbool.h>
14
15
16
17
18
19
20
21

#include <openssl/conf.h>
#include <openssl/engine.h>
#include <openssl/err.h>
#include <openssl/pem.h>
#include <openssl/sha.h>
#include <openssl/x509v3.h>

22
23
24
25
26
27
#if USE_TBBR_DEFS
#include <tbbr_oid.h>
#else
#include <platform_oid.h>
#endif

28
#include "cert.h"
29
#include "cmd_opt.h"
30
31
32
33
#include "debug.h"
#include "ext.h"
#include "key.h"
#include "sha.h"
34
#include "tbbr/tbb_cert.h"
Isla Mitchell's avatar
Isla Mitchell committed
35
#include "tbbr/tbb_ext.h"
36
#include "tbbr/tbb_key.h"
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66

/*
 * Helper macros to simplify the code. This macro assigns the return value of
 * the 'fn' function to 'v' and exits if the value is NULL.
 */
#define CHECK_NULL(v, fn) \
	do { \
		v = fn; \
		if (v == NULL) { \
			ERROR("NULL object at %s:%d\n", __FILE__, __LINE__); \
			exit(1); \
		} \
	} while (0)

/*
 * This macro assigns the NID corresponding to 'oid' to 'v' and exits if the
 * NID is undefined.
 */
#define CHECK_OID(v, oid) \
	do { \
		v = OBJ_txt2nid(oid); \
		if (v == NID_undef) { \
			ERROR("Cannot find TBB extension %s\n", oid); \
			exit(1); \
		} \
	} while (0)

#define MAX_FILENAME_LEN		1024
#define VAL_DAYS			7300
#define ID_TO_BIT_MASK(id)		(1 << id)
67
#define NUM_ELEM(x)			((sizeof(x)) / (sizeof(x[0])))
68
#define HELP_OPT_MAX_LEN		128
69
70

/* Global options */
71
static int key_alg;
72
static int hash_alg;
73
static int key_size;
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
static int new_keys;
static int save_keys;
static int print_cert;

/* Info messages created in the Makefile */
extern const char build_msg[];
extern const char platform_msg[];


static char *strdup(const char *str)
{
	int n = strlen(str) + 1;
	char *dup = malloc(n);
	if (dup) {
		strcpy(dup, str);
	}
	return dup;
}

93
94
static const char *key_algs_str[] = {
	[KEY_ALG_RSA] = "rsa",
95
	[KEY_ALG_RSA_1_5] = "rsa_1_5",
96
#ifndef OPENSSL_NO_EC
97
	[KEY_ALG_ECDSA] = "ecdsa"
98
#endif /* OPENSSL_NO_EC */
99
100
};

101
102
103
104
105
106
static const char *hash_algs_str[] = {
	[HASH_ALG_SHA256] = "sha256",
	[HASH_ALG_SHA384] = "sha384",
	[HASH_ALG_SHA512] = "sha512",
};

107
static void print_help(const char *cmd, const struct option *long_opt)
108
{
109
110
111
112
113
114
115
116
	int rem, i = 0;
	const struct option *opt;
	char line[HELP_OPT_MAX_LEN];
	char *p;

	assert(cmd != NULL);
	assert(long_opt != NULL);

117
118
119
120
121
122
123
	printf("\n\n");
	printf("The certificate generation tool loads the binary images and\n"
	       "optionally the RSA keys, and outputs the key and content\n"
	       "certificates properly signed to implement the chain of trust.\n"
	       "If keys are provided, they must be in PEM format.\n"
	       "Certificates are generated in DER format.\n");
	printf("\n");
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
	printf("Usage:\n");
	printf("\t%s [OPTIONS]\n\n", cmd);

	printf("Available options:\n");
	opt = long_opt;
	while (opt->name) {
		p = line;
		rem = HELP_OPT_MAX_LEN;
		if (isalpha(opt->val)) {
			/* Short format */
			sprintf(p, "-%c,", (char)opt->val);
			p += 3;
			rem -= 3;
		}
		snprintf(p, rem, "--%s %s", opt->name,
			 (opt->has_arg == required_argument) ? "<arg>" : "");
		printf("\t%-32s %s\n", line, cmd_opt_get_help_msg(i));
		opt++;
		i++;
143
144
145
146
	}
	printf("\n");
}

147
148
149
150
151
152
153
154
155
156
157
158
159
static int get_key_alg(const char *key_alg_str)
{
	int i;

	for (i = 0 ; i < NUM_ELEM(key_algs_str) ; i++) {
		if (0 == strcmp(key_alg_str, key_algs_str[i])) {
			return i;
		}
	}

	return -1;
}

160
161
162
163
164
165
166
167
168
169
170
171
static int get_key_size(const char *key_size_str)
{
	char *end;
	long key_size;

	key_size = strtol(key_size_str, &end, 10);
	if (*end != '\0')
		return -1;

	return key_size;
}

172
173
174
175
176
177
178
179
180
181
182
183
184
static int get_hash_alg(const char *hash_alg_str)
{
	int i;

	for (i = 0 ; i < NUM_ELEM(hash_algs_str) ; i++) {
		if (0 == strcmp(hash_alg_str, hash_algs_str[i])) {
			return i;
		}
	}

	return -1;
}

185
186
static void check_cmd_params(void)
{
187
188
189
190
	cert_t *cert;
	ext_t *ext;
	key_t *key;
	int i, j;
191
	bool valid_size;
192

193
194
195
196
197
198
	/* Only save new keys */
	if (save_keys && !new_keys) {
		ERROR("Only new keys can be saved to disk\n");
		exit(1);
	}

199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
	/* Validate key-size */
	valid_size = false;
	for (i = 0; i < KEY_SIZE_MAX_NUM; i++) {
		if (key_size == KEY_SIZES[key_alg][i]) {
			valid_size = true;
			break;
		}
	}
	if (!valid_size) {
		ERROR("'%d' is not a valid key size for '%s'\n",
				key_size, key_algs_str[key_alg]);
		NOTICE("Valid sizes are: ");
		for (i = 0; i < KEY_SIZE_MAX_NUM &&
				KEY_SIZES[key_alg][i] != 0; i++) {
			printf("%d ", KEY_SIZES[key_alg][i]);
		}
		printf("\n");
		exit(1);
	}

219
220
221
222
223
224
225
	/* Check that all required options have been specified in the
	 * command line */
	for (i = 0; i < num_certs; i++) {
		cert = &certs[i];
		if (cert->fn == NULL) {
			/* Certificate not requested. Skip to the next one */
			continue;
226
227
		}

228
229
230
231
232
		/* Check that all parameters required to create this certificate
		 * have been specified in the command line */
		for (j = 0; j < cert->num_ext; j++) {
			ext = &extensions[cert->ext[j]];
			switch (ext->type) {
233
234
235
236
237
238
239
240
			case EXT_TYPE_NVCOUNTER:
				/* Counter value must be specified */
				if ((!ext->optional) && (ext->arg == NULL)) {
					ERROR("Value for '%s' not specified\n",
					      ext->ln);
					exit(1);
				}
				break;
241
242
			case EXT_TYPE_PKEY:
				/* Key filename must be specified */
243
				key = &keys[ext->attr.key];
244
245
246
247
248
249
250
251
				if (!new_keys && key->fn == NULL) {
					ERROR("Key '%s' required by '%s' not "
					      "specified\n", key->desc,
					      cert->cn);
					exit(1);
				}
				break;
			case EXT_TYPE_HASH:
252
253
254
255
				/*
				 * Binary image must be specified
				 * unless it is explicitly made optional.
				 */
256
				if ((!ext->optional) && (ext->arg == NULL)) {
257
258
259
260
261
262
					ERROR("Image for '%s' not specified\n",
					      ext->ln);
					exit(1);
				}
				break;
			default:
263
264
				ERROR("Unknown extension type '%d' in '%s'\n",
				      ext->type, ext->ln);
265
266
267
				exit(1);
				break;
			}
268
269
270
271
		}
	}
}

272
273
274
275
276
277
278
279
/* Common command line options */
static const cmd_opt_t common_cmd_opt[] = {
	{
		{ "help", no_argument, NULL, 'h' },
		"Print this message and exit"
	},
	{
		{ "key-alg", required_argument, NULL, 'a' },
280
281
		"Key algorithm: 'rsa' (default) - RSAPSS scheme as per \
PKCS#1 v2.1, 'rsa_1_5' - RSA PKCS#1 v1.5, 'ecdsa'"
282
	},
283
284
285
286
	{
		{ "key-size", required_argument, NULL, 'b' },
		"Key size (for supported algorithms)."
	},
287
288
289
290
	{
		{ "hash-alg", required_argument, NULL, 's' },
		"Hash algorithm : 'sha256' (default), 'sha384', 'sha512'"
	},
291
292
293
294
295
296
297
298
299
300
301
302
303
304
	{
		{ "save-keys", no_argument, NULL, 'k' },
		"Save key pairs into files. Filenames must be provided"
	},
	{
		{ "new-keys", no_argument, NULL, 'n' },
		"Generate new key pairs if no key files are provided"
	},
	{
		{ "print-cert", no_argument, NULL, 'p' },
		"Print the certificates in the standard output"
	}
};

305
306
int main(int argc, char *argv[])
{
307
	STACK_OF(X509_EXTENSION) * sk;
308
	X509_EXTENSION *cert_ext = NULL;
309
310
311
312
	ext_t *ext;
	key_t *key;
	cert_t *cert;
	FILE *file;
313
	int i, j, ext_nid, nvctr;
314
	int c, opt_idx = 0;
315
316
	const struct option *cmd_opt;
	const char *cur_opt;
317
	unsigned int err_code;
318
319
	unsigned char md[SHA512_DIGEST_LENGTH];
	unsigned int  md_len;
320
	const EVP_MD *md_info;
321
322
323
324

	NOTICE("CoT Generation Tool: %s\n", build_msg);
	NOTICE("Target platform: %s\n", platform_msg);

325
326
	/* Set default options */
	key_alg = KEY_ALG_RSA;
327
	hash_alg = HASH_ALG_SHA256;
328
	key_size = -1;
329

330
	/* Add common command line options */
331
332
333
	for (i = 0; i < NUM_ELEM(common_cmd_opt); i++) {
		cmd_opt_add(&common_cmd_opt[i]);
	}
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355

	/* Initialize the certificates */
	if (cert_init() != 0) {
		ERROR("Cannot initialize certificates\n");
		exit(1);
	}

	/* Initialize the keys */
	if (key_init() != 0) {
		ERROR("Cannot initialize keys\n");
		exit(1);
	}

	/* Initialize the new types and register OIDs for the extensions */
	if (ext_init() != 0) {
		ERROR("Cannot initialize TBB extensions\n");
		exit(1);
	}

	/* Get the command line options populated during the initialization */
	cmd_opt = cmd_opt_get_array();

356
357
	while (1) {
		/* getopt_long stores the option index here. */
358
		c = getopt_long(argc, argv, "a:b:hknps:", cmd_opt, &opt_idx);
359
360
361
362
363
364
365

		/* Detect the end of the options. */
		if (c == -1) {
			break;
		}

		switch (c) {
366
367
368
369
370
371
372
		case 'a':
			key_alg = get_key_alg(optarg);
			if (key_alg < 0) {
				ERROR("Invalid key algorithm '%s'\n", optarg);
				exit(1);
			}
			break;
373
374
375
376
377
378
379
		case 'b':
			key_size = get_key_size(optarg);
			if (key_size <= 0) {
				ERROR("Invalid key size '%s'\n", optarg);
				exit(1);
			}
			break;
380
		case 'h':
381
			print_help(argv[0], cmd_opt);
382
			exit(0);
383
384
385
386
387
388
389
390
391
		case 'k':
			save_keys = 1;
			break;
		case 'n':
			new_keys = 1;
			break;
		case 'p':
			print_cert = 1;
			break;
392
393
394
395
396
397
398
		case 's':
			hash_alg = get_hash_alg(optarg);
			if (hash_alg < 0) {
				ERROR("Invalid hash algorithm '%s'\n", optarg);
				exit(1);
			}
			break;
399
400
401
		case CMD_OPT_EXT:
			cur_opt = cmd_opt_get_name(opt_idx);
			ext = ext_get_by_opt(cur_opt);
402
			ext->arg = strdup(optarg);
403
			break;
404
405
406
407
		case CMD_OPT_KEY:
			cur_opt = cmd_opt_get_name(opt_idx);
			key = key_get_by_opt(cur_opt);
			key->fn = strdup(optarg);
408
			break;
409
410
411
412
		case CMD_OPT_CERT:
			cur_opt = cmd_opt_get_name(opt_idx);
			cert = cert_get_by_opt(cur_opt);
			cert->fn = strdup(optarg);
413
414
415
			break;
		case '?':
		default:
416
			print_help(argv[0], cmd_opt);
417
418
419
420
			exit(1);
		}
	}

421
422
423
424
425
	/* Select a reasonable default key-size */
	if (key_size == -1) {
		key_size = KEY_SIZES[key_alg][0];
	}

426
427
428
	/* Check command line arguments */
	check_cmd_params();

429
	/* Indicate SHA as image hash algorithm in the certificate
430
	 * extension */
431
432
433
434
435
436
437
438
439
440
	if (hash_alg == HASH_ALG_SHA384) {
		md_info = EVP_sha384();
		md_len  = SHA384_DIGEST_LENGTH;
	} else if (hash_alg == HASH_ALG_SHA512) {
		md_info = EVP_sha512();
		md_len  = SHA512_DIGEST_LENGTH;
	} else {
		md_info = EVP_sha256();
		md_len  = SHA256_DIGEST_LENGTH;
	}
441

442
	/* Load private keys from files (or generate new ones) */
443
	for (i = 0 ; i < num_keys ; i++) {
444
445
446
447
448
		if (!key_new(&keys[i])) {
			ERROR("Failed to allocate key container\n");
			exit(1);
		}

449
450
451
452
453
454
455
		/* First try to load the key from disk */
		if (key_load(&keys[i], &err_code)) {
			/* Key loaded successfully */
			continue;
		}

		/* Key not loaded. Check the error code */
456
		if (err_code == KEY_ERR_LOAD) {
457
458
459
460
			/* File exists, but it does not contain a valid private
			 * key. Abort. */
			ERROR("Error loading '%s'\n", keys[i].fn);
			exit(1);
461
		}
462
463
464
465
466
467

		/* File does not exist, could not be opened or no filename was
		 * given */
		if (new_keys) {
			/* Try to create a new key */
			NOTICE("Creating new key for '%s'\n", keys[i].desc);
468
			if (!key_create(&keys[i], key_alg, key_size)) {
469
				ERROR("Error creating key '%s'\n", keys[i].desc);
470
471
				exit(1);
			}
472
473
474
475
476
477
478
		} else {
			if (err_code == KEY_ERR_OPEN) {
				ERROR("Error opening '%s'\n", keys[i].fn);
			} else {
				ERROR("Key '%s' not specified\n", keys[i].desc);
			}
			exit(1);
479
480
481
		}
	}

482
483
	/* Create the certificates */
	for (i = 0 ; i < num_certs ; i++) {
484

485
		cert = &certs[i];
486

487
488
		/* Create a new stack of extensions. This stack will be used
		 * to create the certificate */
489
490
		CHECK_NULL(sk, sk_X509_EXTENSION_new_null());

491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
		for (j = 0 ; j < cert->num_ext ; j++) {

			ext = &extensions[cert->ext[j]];

			/* Get OpenSSL internal ID for this extension */
			CHECK_OID(ext_nid, ext->oid);

			/*
			 * Three types of extensions are currently supported:
			 *     - EXT_TYPE_NVCOUNTER
			 *     - EXT_TYPE_HASH
			 *     - EXT_TYPE_PKEY
			 */
			switch (ext->type) {
			case EXT_TYPE_NVCOUNTER:
506
507
508
				if (ext->arg) {
					nvctr = atoi(ext->arg);
					CHECK_NULL(cert_ext, ext_new_nvcounter(ext_nid,
509
						EXT_CRIT, nvctr));
510
				}
511
512
				break;
			case EXT_TYPE_HASH:
513
				if (ext->arg == NULL) {
514
515
					if (ext->optional) {
						/* Include a hash filled with zeros */
516
						memset(md, 0x0, SHA512_DIGEST_LENGTH);
517
518
519
520
521
522
					} else {
						/* Do not include this hash in the certificate */
						break;
					}
				} else {
					/* Calculate the hash of the file */
523
					if (!sha_file(hash_alg, ext->arg, md)) {
524
						ERROR("Cannot calculate hash of %s\n",
525
							ext->arg);
526
527
						exit(1);
					}
528
529
530
				}
				CHECK_NULL(cert_ext, ext_new_hash(ext_nid,
						EXT_CRIT, md_info, md,
531
						md_len));
532
533
534
				break;
			case EXT_TYPE_PKEY:
				CHECK_NULL(cert_ext, ext_new_key(ext_nid,
535
					EXT_CRIT, keys[ext->attr.key].key));
536
537
				break;
			default:
538
539
				ERROR("Unknown extension type '%d' in %s\n",
						ext->type, cert->cn);
540
541
				exit(1);
			}
542

543
544
			/* Push the extension into the stack */
			sk_X509_EXTENSION_push(sk, cert_ext);
545
546
		}

547
		/* Create certificate. Signed with corresponding key */
548
		if (cert->fn && !cert_new(key_alg, hash_alg, cert, VAL_DAYS, 0, sk)) {
549
			ERROR("Cannot create %s\n", cert->cn);
550
551
552
553
554
555
556
557
558
			exit(1);
		}

		sk_X509_EXTENSION_free(sk);
	}


	/* Print the certificates */
	if (print_cert) {
559
		for (i = 0 ; i < num_certs ; i++) {
560
561
562
563
564
565
566
567
568
			if (!certs[i].x) {
				continue;
			}
			printf("\n\n=====================================\n\n");
			X509_print_fp(stdout, certs[i].x);
		}
	}

	/* Save created certificates to files */
569
	for (i = 0 ; i < num_certs ; i++) {
570
571
572
573
574
575
576
577
578
579
580
581
582
		if (certs[i].x && certs[i].fn) {
			file = fopen(certs[i].fn, "w");
			if (file != NULL) {
				i2d_X509_fp(file, certs[i].x);
				fclose(file);
			} else {
				ERROR("Cannot create file %s\n", certs[i].fn);
			}
		}
	}

	/* Save keys */
	if (save_keys) {
583
		for (i = 0 ; i < num_keys ; i++) {
584
585
586
587
588
589
590
591
592
593
594
595
596
			if (!key_store(&keys[i])) {
				ERROR("Cannot save %s\n", keys[i].desc);
			}
		}
	}

#ifndef OPENSSL_NO_ENGINE
	ENGINE_cleanup();
#endif
	CRYPTO_cleanup_all_ex_data();

	return 0;
}