blob: d9a92bb1018abcfc0a3bbf7f4805d3c9ef7c2173 [file] [log] [blame]
Juan Castillo11abdcd2014-10-21 11:30:42 +01001/*
Sandrine Bailleux0d11b482020-01-15 11:01:25 +01002 * Copyright (c) 2015-2020, ARM Limited and Contributors. All rights reserved.
Juan Castillo11abdcd2014-10-21 11:30:42 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Juan Castillo11abdcd2014-10-21 11:30:42 +01005 */
6
7#include <stddef.h>
8#include <stdio.h>
9#include <string.h>
Juan Castilloac402932015-03-05 14:30:00 +000010#include <openssl/asn1.h>
11#include <openssl/asn1t.h>
Juan Castillo11abdcd2014-10-21 11:30:42 +010012#include <openssl/err.h>
13#include <openssl/x509v3.h>
Juan Castillo1218dd52015-07-03 16:23:16 +010014
15#include "cmd_opt.h"
Juan Castillo11abdcd2014-10-21 11:30:42 +010016#include "ext.h"
17
18DECLARE_ASN1_ITEM(ASN1_INTEGER)
Juan Castilloac402932015-03-05 14:30:00 +000019DECLARE_ASN1_ITEM(X509_ALGOR)
Juan Castillo11abdcd2014-10-21 11:30:42 +010020DECLARE_ASN1_ITEM(ASN1_OCTET_STRING)
21
Juan Castilloac402932015-03-05 14:30:00 +000022typedef struct {
23 X509_ALGOR *hashAlgorithm;
24 ASN1_OCTET_STRING *dataHash;
25} HASH;
26
27ASN1_SEQUENCE(HASH) = {
28 ASN1_SIMPLE(HASH, hashAlgorithm, X509_ALGOR),
29 ASN1_SIMPLE(HASH, dataHash, ASN1_OCTET_STRING),
30} ASN1_SEQUENCE_END(HASH)
31
32DECLARE_ASN1_FUNCTIONS(HASH)
33IMPLEMENT_ASN1_FUNCTIONS(HASH)
34
Juan Castillo11abdcd2014-10-21 11:30:42 +010035/*
Sandrine Bailleux0d11b482020-01-15 11:01:25 +010036 * This function adds the CoT extensions to the internal extension list
Juan Castillo11abdcd2014-10-21 11:30:42 +010037 * maintained by OpenSSL so they can be used later.
38 *
39 * It also initializes the methods to print the contents of the extension. If an
Sandrine Bailleux0d11b482020-01-15 11:01:25 +010040 * alias is specified in the CoT extension, we reuse the methods of the alias.
Juan Castillo11abdcd2014-10-21 11:30:42 +010041 * Otherwise, only methods for V_ASN1_INTEGER and V_ASN1_OCTET_STRING are
42 * provided. Any other type will be printed as a raw ascii string.
43 *
44 * Return: 0 = success, Otherwise: error
45 */
Juan Castillo1218dd52015-07-03 16:23:16 +010046int ext_init(void)
Juan Castillo11abdcd2014-10-21 11:30:42 +010047{
Juan Castillo212f7382015-12-15 16:37:57 +000048 cmd_opt_t cmd_opt;
Juan Castillo11abdcd2014-10-21 11:30:42 +010049 ext_t *ext;
50 X509V3_EXT_METHOD *m;
Juan Castillo1218dd52015-07-03 16:23:16 +010051 int nid, ret;
52 unsigned int i;
Juan Castillo11abdcd2014-10-21 11:30:42 +010053
Juan Castillo1218dd52015-07-03 16:23:16 +010054 for (i = 0; i < num_extensions; i++) {
55 ext = &extensions[i];
56 /* Register command line option */
57 if (ext->opt) {
Juan Castillo212f7382015-12-15 16:37:57 +000058 cmd_opt.long_opt.name = ext->opt;
59 cmd_opt.long_opt.has_arg = required_argument;
60 cmd_opt.long_opt.flag = NULL;
61 cmd_opt.long_opt.val = CMD_OPT_EXT;
62 cmd_opt.help_msg = ext->help_msg;
63 cmd_opt_add(&cmd_opt);
Juan Castillo1218dd52015-07-03 16:23:16 +010064 }
65 /* Register the extension OID in OpenSSL */
66 if (ext->oid == NULL) {
67 continue;
68 }
Juan Castillo11abdcd2014-10-21 11:30:42 +010069 nid = OBJ_create(ext->oid, ext->sn, ext->ln);
70 if (ext->alias) {
71 X509V3_EXT_add_alias(nid, ext->alias);
72 } else {
73 m = &ext->method;
74 memset(m, 0x0, sizeof(X509V3_EXT_METHOD));
Juan Castilloe6d30e92015-06-12 11:27:59 +010075 switch (ext->asn1_type) {
Juan Castillo11abdcd2014-10-21 11:30:42 +010076 case V_ASN1_INTEGER:
77 m->it = ASN1_ITEM_ref(ASN1_INTEGER);
78 m->i2s = (X509V3_EXT_I2S)i2s_ASN1_INTEGER;
79 m->s2i = (X509V3_EXT_S2I)s2i_ASN1_INTEGER;
80 break;
81 case V_ASN1_OCTET_STRING:
82 m->it = ASN1_ITEM_ref(ASN1_OCTET_STRING);
83 m->i2s = (X509V3_EXT_I2S)i2s_ASN1_OCTET_STRING;
84 m->s2i = (X509V3_EXT_S2I)s2i_ASN1_OCTET_STRING;
85 break;
86 default:
87 continue;
88 }
89 m->ext_nid = nid;
90 ret = X509V3_EXT_add(m);
91 if (!ret) {
92 ERR_print_errors_fp(stdout);
93 return 1;
94 }
95 }
96 }
97 return 0;
98}
99
100/*
101 * Create a new extension
102 *
103 * Extension ::= SEQUENCE {
104 * id OBJECT IDENTIFIER,
105 * critical BOOLEAN DEFAULT FALSE,
106 * value OCTET STRING }
107 *
108 * Parameters:
109 * pex: OpenSSL extension pointer (output parameter)
110 * nid: extension identifier
111 * crit: extension critical (EXT_NON_CRIT, EXT_CRIT)
112 * data: extension data. This data will be encapsulated in an Octet String
113 *
114 * Return: Extension address, NULL if error
115 */
116static
117X509_EXTENSION *ext_new(int nid, int crit, unsigned char *data, int len)
118{
119 X509_EXTENSION *ex;
120 ASN1_OCTET_STRING *ext_data;
121
122 /* Octet string containing the extension data */
123 ext_data = ASN1_OCTET_STRING_new();
124 ASN1_OCTET_STRING_set(ext_data, data, len);
125
126 /* Create the extension */
127 ex = X509_EXTENSION_create_by_NID(NULL, nid, crit, ext_data);
128
129 /* The extension makes a copy of the data, so we can free this object */
130 ASN1_OCTET_STRING_free(ext_data);
131
132 return ex;
133}
134
135/*
Juan Castilloac402932015-03-05 14:30:00 +0000136 * Creates a x509v3 extension containing a hash
137 *
138 * DigestInfo ::= SEQUENCE {
139 * digestAlgorithm AlgorithmIdentifier,
140 * digest OCTET STRING
141 * }
142 *
143 * AlgorithmIdentifier ::= SEQUENCE {
144 * algorithm OBJECT IDENTIFIER,
145 * parameters ANY DEFINED BY algorithm OPTIONAL
146 * }
Juan Castillo11abdcd2014-10-21 11:30:42 +0100147 *
148 * Parameters:
Juan Castillo11abdcd2014-10-21 11:30:42 +0100149 * nid: extension identifier
150 * crit: extension critical (EXT_NON_CRIT, EXT_CRIT)
Juan Castilloac402932015-03-05 14:30:00 +0000151 * md: hash algorithm
Juan Castillo11abdcd2014-10-21 11:30:42 +0100152 * buf: pointer to the buffer that contains the hash
153 * len: size of the hash in bytes
154 *
155 * Return: Extension address, NULL if error
156 */
Juan Castilloac402932015-03-05 14:30:00 +0000157X509_EXTENSION *ext_new_hash(int nid, int crit, const EVP_MD *md,
158 unsigned char *buf, size_t len)
Juan Castillo11abdcd2014-10-21 11:30:42 +0100159{
Masahiro Yamada48cb5e52017-02-06 19:47:44 +0900160 X509_EXTENSION *ex;
161 ASN1_OCTET_STRING *octet;
162 HASH *hash;
163 ASN1_OBJECT *algorithm;
164 X509_ALGOR *x509_algor;
Juan Castillo11abdcd2014-10-21 11:30:42 +0100165 unsigned char *p = NULL;
Masahiro Yamada48cb5e52017-02-06 19:47:44 +0900166 int sz;
Juan Castillo11abdcd2014-10-21 11:30:42 +0100167
Juan Castilloac402932015-03-05 14:30:00 +0000168 /* OBJECT_IDENTIFIER with hash algorithm */
Michalis Pappas38628942017-10-06 16:11:44 +0800169 algorithm = OBJ_nid2obj(EVP_MD_type(md));
Juan Castilloac402932015-03-05 14:30:00 +0000170 if (algorithm == NULL) {
171 return NULL;
172 }
173
174 /* Create X509_ALGOR */
175 x509_algor = X509_ALGOR_new();
176 if (x509_algor == NULL) {
177 return NULL;
178 }
179 x509_algor->algorithm = algorithm;
180 x509_algor->parameter = ASN1_TYPE_new();
181 ASN1_TYPE_set(x509_algor->parameter, V_ASN1_NULL, NULL);
182
183 /* OCTET_STRING with the actual hash */
184 octet = ASN1_OCTET_STRING_new();
185 if (octet == NULL) {
186 X509_ALGOR_free(x509_algor);
187 return NULL;
188 }
189 ASN1_OCTET_STRING_set(octet, buf, len);
190
191 /* HASH structure containing algorithm + hash */
192 hash = HASH_new();
193 if (hash == NULL) {
194 ASN1_OCTET_STRING_free(octet);
195 X509_ALGOR_free(x509_algor);
196 return NULL;
197 }
198 hash->hashAlgorithm = x509_algor;
199 hash->dataHash = octet;
200
201 /* DER encoded HASH */
202 sz = i2d_HASH(hash, &p);
203 if ((sz <= 0) || (p == NULL)) {
204 HASH_free(hash);
205 X509_ALGOR_free(x509_algor);
206 return NULL;
207 }
Juan Castillo11abdcd2014-10-21 11:30:42 +0100208
209 /* Create the extension */
210 ex = ext_new(nid, crit, p, sz);
211
212 /* Clean up */
213 OPENSSL_free(p);
Juan Castilloac402932015-03-05 14:30:00 +0000214 HASH_free(hash);
Juan Castillo11abdcd2014-10-21 11:30:42 +0100215
216 return ex;
217}
218
219/*
220 * Creates a x509v3 extension containing a nvcounter encapsulated in an ASN1
221 * Integer
222 *
223 * Parameters:
224 * pex: OpenSSL extension pointer (output parameter)
225 * nid: extension identifier
226 * crit: extension critical (EXT_NON_CRIT, EXT_CRIT)
227 * value: nvcounter value
228 *
229 * Return: Extension address, NULL if error
230 */
231X509_EXTENSION *ext_new_nvcounter(int nid, int crit, int value)
232{
Masahiro Yamada48cb5e52017-02-06 19:47:44 +0900233 X509_EXTENSION *ex;
234 ASN1_INTEGER *counter;
Juan Castillo11abdcd2014-10-21 11:30:42 +0100235 unsigned char *p = NULL;
Masahiro Yamada48cb5e52017-02-06 19:47:44 +0900236 int sz;
Juan Castillo11abdcd2014-10-21 11:30:42 +0100237
238 /* Encode counter */
239 counter = ASN1_INTEGER_new();
240 ASN1_INTEGER_set(counter, value);
Masahiro Yamadad54cfa92017-02-06 19:00:11 +0900241 sz = i2d_ASN1_INTEGER(counter, &p);
Juan Castillo11abdcd2014-10-21 11:30:42 +0100242
243 /* Create the extension */
244 ex = ext_new(nid, crit, p, sz);
245
246 /* Free objects */
247 OPENSSL_free(p);
248 ASN1_INTEGER_free(counter);
249
250 return ex;
251}
252
253/*
254 * Creates a x509v3 extension containing a public key in DER format:
255 *
256 * SubjectPublicKeyInfo ::= SEQUENCE {
257 * algorithm AlgorithmIdentifier,
258 * subjectPublicKey BIT STRING }
259 *
260 * Parameters:
261 * pex: OpenSSL extension pointer (output parameter)
262 * nid: extension identifier
263 * crit: extension critical (EXT_NON_CRIT, EXT_CRIT)
264 * k: key
265 *
266 * Return: Extension address, NULL if error
267 */
268X509_EXTENSION *ext_new_key(int nid, int crit, EVP_PKEY *k)
269{
Masahiro Yamada48cb5e52017-02-06 19:47:44 +0900270 X509_EXTENSION *ex;
271 unsigned char *p;
272 int sz;
Juan Castillo11abdcd2014-10-21 11:30:42 +0100273
274 /* Encode key */
275 BIO *mem = BIO_new(BIO_s_mem());
276 if (i2d_PUBKEY_bio(mem, k) <= 0) {
277 ERR_print_errors_fp(stderr);
278 return NULL;
279 }
280 p = (unsigned char *)OPENSSL_malloc(4096);
281 sz = BIO_read(mem, p, 4096);
282
283 /* Create the extension */
284 ex = ext_new(nid, crit, p, sz);
285
286 /* Clean up */
Justin Chadwellfa3ec4c2019-08-12 12:19:21 +0100287 BIO_free(mem);
Juan Castillo11abdcd2014-10-21 11:30:42 +0100288 OPENSSL_free(p);
289
290 return ex;
291}
Juan Castillo1218dd52015-07-03 16:23:16 +0100292
293ext_t *ext_get_by_opt(const char *opt)
294{
Masahiro Yamada48cb5e52017-02-06 19:47:44 +0900295 ext_t *ext;
Juan Castillo1218dd52015-07-03 16:23:16 +0100296 unsigned int i;
297
298 /* Sequential search. This is not a performance concern since the number
299 * of extensions is bounded and the code runs on a host machine */
300 for (i = 0; i < num_extensions; i++) {
301 ext = &extensions[i];
302 if (ext->opt && !strcmp(ext->opt, opt)) {
303 return ext;
304 }
305 }
306
307 return NULL;
308}