]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/x509.c
apps/x509.c: Fix too eager call to X509_set_issuer_name() introduced recently
[thirdparty/openssl.git] / apps / x509.c
CommitLineData
846e33c7 1/*
4333b89f 2 * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
d02b48c6 3 *
dffa7520 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
846e33c7
RS
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
d02b48c6
RE
8 */
9
10#include <stdio.h>
11#include <stdlib.h>
12#include <string.h>
d02b48c6 13#include "apps.h"
dab2cd68 14#include "progs.h"
ec577822
BM
15#include <openssl/bio.h>
16#include <openssl/asn1.h>
17#include <openssl/err.h>
18#include <openssl/bn.h>
19#include <openssl/evp.h>
20#include <openssl/x509.h>
21#include <openssl/x509v3.h>
22#include <openssl/objects.h>
23#include <openssl/pem.h>
3a1ee3c1 24#include <openssl/rsa.h>
3eeaab4b 25#ifndef OPENSSL_NO_DSA
0f113f3e 26# include <openssl/dsa.h>
3eeaab4b 27#endif
d02b48c6 28
d02b48c6 29#undef POSTFIX
0f113f3e 30#define POSTFIX ".srl"
b24cfd6b
DDO
31#define DEFAULT_DAYS 30 /* default cert validity period in days */
32#define UNSET_DAYS -2 /* -1 is used for testing expiration checks */
b9fbacaa 33#define EXT_COPY_UNSET -1
0f113f3e 34
6d23cf97 35static int callb(int ok, X509_STORE_CTX *ctx);
05458fdb
DDO
36static ASN1_INTEGER *x509_load_serial(const char *CAfile,
37 const char *serialfile, int create);
d4cec6a1 38static int purpose_print(BIO *bio, X509 *cert, X509_PURPOSE *pt);
b9fbacaa 39static int print_x509v3_exts(BIO *bio, X509 *x, const char *ext_names);
7e1b7485 40
7e1b7485
RS
41typedef enum OPTION_choice {
42 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
43 OPT_INFORM, OPT_OUTFORM, OPT_KEYFORM, OPT_REQ, OPT_CAFORM,
2292c8e1 44 OPT_CAKEYFORM, OPT_VFYOPT, OPT_SIGOPT, OPT_DAYS, OPT_PASSIN, OPT_EXTFILE,
52958608
DO
45 OPT_EXTENSIONS, OPT_IN, OPT_OUT, OPT_SIGNKEY, OPT_CA, OPT_CAKEY,
46 OPT_CASERIAL, OPT_SET_SERIAL, OPT_NEW, OPT_FORCE_PUBKEY, OPT_SUBJ,
7e1b7485 47 OPT_ADDTRUST, OPT_ADDREJECT, OPT_SETALIAS, OPT_CERTOPT, OPT_NAMEOPT,
a18cf8fc 48 OPT_EMAIL, OPT_OCSP_URI, OPT_SERIAL, OPT_NEXT_SERIAL,
7e1b7485
RS
49 OPT_MODULUS, OPT_PUBKEY, OPT_X509TOREQ, OPT_TEXT, OPT_HASH,
50 OPT_ISSUER_HASH, OPT_SUBJECT, OPT_ISSUER, OPT_FINGERPRINT, OPT_DATES,
51 OPT_PURPOSE, OPT_STARTDATE, OPT_ENDDATE, OPT_CHECKEND, OPT_CHECKHOST,
52 OPT_CHECKEMAIL, OPT_CHECKIP, OPT_NOOUT, OPT_TRUSTOUT, OPT_CLRTRUST,
53 OPT_CLRREJECT, OPT_ALIAS, OPT_CACREATESERIAL, OPT_CLREXT, OPT_OCSPID,
b9fbacaa 54 OPT_SUBJECT_HASH_OLD, OPT_ISSUER_HASH_OLD, OPT_COPY_EXTENSIONS,
3ee1eac2 55 OPT_BADSIG, OPT_MD, OPT_ENGINE, OPT_NOCERT, OPT_PRESERVE_DATES,
6bd4e3f2 56 OPT_R_ENUM, OPT_PROV_ENUM, OPT_EXT
7e1b7485
RS
57} OPTION_CHOICE;
58
44c83ebd 59const OPTIONS x509_options[] = {
5388f986 60 OPT_SECTION("General"),
7e1b7485 61 {"help", OPT_HELP, '-', "Display this summary"},
5388f986 62
b24cfd6b
DDO
63 {"in", OPT_IN, '<',
64 "Certificate input (default stdin), or CSR input file with -req"},
2a33470b 65 {"passin", OPT_PASSIN, 's', "Private key and cert file pass-phrase source"},
b24cfd6b
DDO
66 {"new", OPT_NEW, '-', "Generate a certificate from scratch"},
67 {"x509toreq", OPT_X509TOREQ, '-',
68 "Output a certification request (rather than a certificate)"},
69 {"req", OPT_REQ, '-', "Input is a CSR file (rather than a certificate)"},
b9fbacaa
DDO
70 {"copy_extensions", OPT_COPY_EXTENSIONS, 's',
71 "copy extensions when converting from CSR to x509 or vice versa"},
b24cfd6b
DDO
72 {"inform", OPT_INFORM, 'f',
73 "CSR input file format (DER or PEM) - default PEM"},
74 {"vfyopt", OPT_VFYOPT, 's', "CSR verification parameter in n:v form"},
75 {"signkey", OPT_SIGNKEY, 's',
76 "Key used to self-sign certificate or cert request"},
77 {"keyform", OPT_KEYFORM, 'E',
78 "Key input format (ENGINE, other values ignored)"},
79 {"out", OPT_OUT, '>', "Output file - default stdout"},
7e1b7485 80 {"outform", OPT_OUTFORM, 'f',
6d382c74 81 "Output format (DER or PEM) - default PEM"},
b24cfd6b
DDO
82 {"nocert", OPT_NOCERT, '-',
83 "No cert output (except for requested printing)"},
84 {"noout", OPT_NOOUT, '-', "No output (except for requested printing)"},
5388f986 85
b24cfd6b
DDO
86 OPT_SECTION("Certificate printing"),
87 {"text", OPT_TEXT, '-', "Print the certificate in text form"},
88 {"certopt", OPT_CERTOPT, 's', "Various certificate text printing options"},
89 {"fingerprint", OPT_FINGERPRINT, '-', "Print the certificate fingerprint"},
90 {"alias", OPT_ALIAS, '-', "Print certificate alias"},
7e1b7485 91 {"serial", OPT_SERIAL, '-', "Print serial number value"},
b24cfd6b
DDO
92 {"startdate", OPT_STARTDATE, '-', "Print the notBefore field"},
93 {"enddate", OPT_ENDDATE, '-', "Print the notAfter field"},
94 {"dates", OPT_DATES, '-', "Print both notBefore and notAfter fields"},
7e1b7485
RS
95 {"subject", OPT_SUBJECT, '-', "Print subject DN"},
96 {"issuer", OPT_ISSUER, '-', "Print issuer DN"},
b24cfd6b
DDO
97 {"nameopt", OPT_NAMEOPT, 's',
98 "Certificate subject/issuer name printing options"},
7e1b7485 99 {"email", OPT_EMAIL, '-', "Print email address(es)"},
b24cfd6b
DDO
100 {"hash", OPT_HASH, '-', "Synonym for -subject_hash (for backward compat)"},
101 {"subject_hash", OPT_HASH, '-', "Print subject hash value"},
5388f986
RS
102#ifndef OPENSSL_NO_MD5
103 {"subject_hash_old", OPT_SUBJECT_HASH_OLD, '-',
5388f986 104 "Print old-style (MD5) subject hash value"},
b24cfd6b
DDO
105#endif
106 {"issuer_hash", OPT_ISSUER_HASH, '-', "Print issuer hash value"},
107#ifndef OPENSSL_NO_MD5
7e4f01d8
NJ
108 {"issuer_hash_old", OPT_ISSUER_HASH_OLD, '-',
109 "Print old-style (MD5) issuer hash value"},
5388f986 110#endif
05458fdb
DDO
111 {"ext", OPT_EXT, 's',
112 "Restrict which X.509 extensions to print and/or copy"},
b24cfd6b
DDO
113 {"ocspid", OPT_OCSPID, '-',
114 "Print OCSP hash values for the subject name and public key"},
115 {"ocsp_uri", OPT_OCSP_URI, '-', "Print OCSP Responder URL(s)"},
116 {"purpose", OPT_PURPOSE, '-', "Print out certificate purposes"},
117 {"pubkey", OPT_PUBKEY, '-', "Print the public key in PEM format"},
118 {"modulus", OPT_MODULUS, '-', "Print the RSA key modulus"},
5388f986 119
b24cfd6b
DDO
120 OPT_SECTION("Certificate checking"),
121 {"checkend", OPT_CHECKEND, 'M',
122 "Check whether cert expires in the next arg seconds"},
123 {OPT_MORE_STR, 1, 1, "Exit 1 (failure) if so, 0 if not"},
7e1b7485
RS
124 {"checkhost", OPT_CHECKHOST, 's', "Check certificate matches host"},
125 {"checkemail", OPT_CHECKEMAIL, 's', "Check certificate matches email"},
126 {"checkip", OPT_CHECKIP, 's', "Check certificate matches ipaddr"},
b24cfd6b
DDO
127
128 OPT_SECTION("Certificate output"),
129 {"set_serial", OPT_SET_SERIAL, 's',
130 "Serial number to use, overrides -CAserial"},
131 {"next_serial", OPT_NEXT_SERIAL, '-',
132 "Increment current certificate serial number"},
133 {"days", OPT_DAYS, 'n',
134 "Number of days until newly generated certificate expires - default 30"},
135 {"preserve_dates", OPT_PRESERVE_DATES, '-',
136 "Preserve existing validity dates"},
5388f986 137 {"subj", OPT_SUBJ, 's', "Set or override certificate subject (and issuer)"},
b24cfd6b
DDO
138 {"force_pubkey", OPT_FORCE_PUBKEY, '<',
139 "Place the given key in new certificate"},
05458fdb
DDO
140 {"clrext", OPT_CLREXT, '-',
141 "Do not take over any extensions from the source certificate or request"},
b24cfd6b
DDO
142 {"extfile", OPT_EXTFILE, '<', "Config file with X509V3 extensions to add"},
143 {"extensions", OPT_EXTENSIONS, 's',
144 "Section of extfile to use - default: unnamed section"},
05458fdb 145 {"sigopt", OPT_SIGOPT, 's', "Signature parameter, in n:v form"},
b24cfd6b
DDO
146 {"badsig", OPT_BADSIG, '-',
147 "Corrupt last byte of certificate signature (for test)"},
148 {"", OPT_MD, '-', "Any supported digest, used for signing and printing"},
5388f986 149
b24cfd6b
DDO
150 OPT_SECTION("Micro-CA"),
151 {"CA", OPT_CA, '<',
152 "Use the given CA certificate, conflicts with -signkey"},
6d382c74 153 {"CAform", OPT_CAFORM, 'F', "CA cert format (PEM/DER/P12); has no effect"},
b24cfd6b
DDO
154 {"CAkey", OPT_CAKEY, 's', "The corresponding CA key; default is -CA arg"},
155 {"CAkeyform", OPT_CAKEYFORM, 'E',
156 "CA key format (ENGINE, other values ignored)"},
157 {"CAserial", OPT_CASERIAL, 's',
158 "File that keeps track of CA-generated serial number"},
5388f986 159 {"CAcreateserial", OPT_CACREATESERIAL, '-',
b24cfd6b
DDO
160 "Create CA serial number file if it does not exist"},
161
162 OPT_SECTION("Certificate trust output"),
163 {"trustout", OPT_TRUSTOUT, '-', "Mark certificate PEM output as trusted"},
164 {"setalias", OPT_SETALIAS, 's', "Set certificate alias (nickname)"},
165 {"clrtrust", OPT_CLRTRUST, '-', "Clear all trusted purposes"},
166 {"addtrust", OPT_ADDTRUST, 's', "Trust certificate for a given purpose"},
12d56b29
F
167 {"clrreject", OPT_CLRREJECT, '-',
168 "Clears all the prohibited or rejected uses of the certificate"},
b24cfd6b
DDO
169 {"addreject", OPT_ADDREJECT, 's',
170 "Reject certificate for a given purpose"},
171
172 OPT_R_OPTIONS,
173#ifndef OPENSSL_NO_ENGINE
174 {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
175#endif
176 OPT_PROV_OPTIONS,
7e1b7485
RS
177 {NULL}
178};
667ac4ec 179
05458fdb
DDO
180static void warn_copying(ASN1_OBJECT *excluded, const char *names)
181{
182 const char *sn = OBJ_nid2sn(OBJ_obj2nid(excluded));
183
184 if (names != NULL && strstr(names, sn) != NULL)
185 BIO_printf(bio_err,
186 "Warning: -ext should not specify copying %s extension to CSR; ignoring this\n",
187 sn);
188}
189
190static X509_REQ *x509_to_req(X509 *cert, EVP_PKEY *pkey, const EVP_MD *digest,
191 STACK_OF(OPENSSL_STRING) *sigopts,
192 int ext_copy, const char *names)
193{
194 const STACK_OF(X509_EXTENSION) *cert_exts = X509_get0_extensions(cert);
195 int i, n = sk_X509_EXTENSION_num(cert_exts /* may be NULL */);
196 ASN1_OBJECT *skid = OBJ_nid2obj(NID_subject_key_identifier);
197 ASN1_OBJECT *akid = OBJ_nid2obj(NID_authority_key_identifier);
198 STACK_OF(X509_EXTENSION) *exts;
199 X509_REQ *req = X509_to_X509_REQ(cert, NULL, NULL);
200
201 if (req == NULL)
202 return NULL;
203
204 /*
205 * Filter out SKID and AKID extensions, which make no sense in a CSR.
206 * If names is not NULL, copy only those extensions listed there.
207 */
208 warn_copying(skid, names);
209 warn_copying(akid, names);
210 if ((exts = sk_X509_EXTENSION_new_reserve(NULL, n)) == NULL)
211 goto err;
212 for (i = 0; i < n; i++) {
213 X509_EXTENSION *ex = sk_X509_EXTENSION_value(cert_exts, i);
214 ASN1_OBJECT *obj = X509_EXTENSION_get_object(ex);
215
216 if (OBJ_cmp(obj, skid) != 0 && OBJ_cmp(obj, akid) != 0
217 && !sk_X509_EXTENSION_push(exts, ex))
218 goto err;
219 }
220
221 if (sk_X509_EXTENSION_num(exts) > 0) {
222 if (ext_copy != EXT_COPY_UNSET && ext_copy != EXT_COPY_NONE
223 && !X509_REQ_add_extensions(req, exts)) {
224 BIO_printf(bio_err, "Error copying extensions from certificate\n");
225 goto err;
226 }
227 }
228 if (!do_X509_REQ_sign(req, pkey, digest, sigopts))
229 goto err;
230 sk_X509_EXTENSION_free(exts);
231 return req;
232
233 err:
234 sk_X509_EXTENSION_free(exts);
235 X509_REQ_free(req);
236 return NULL;
237}
238
7e1b7485 239int x509_main(int argc, char **argv)
0f113f3e 240{
0f113f3e 241 ASN1_INTEGER *sno = NULL;
f83b85fb 242 ASN1_OBJECT *objtmp = NULL;
0f113f3e 243 BIO *out = NULL;
7e1b7485 244 CONF *extconf = NULL;
b9fbacaa 245 int ext_copy = EXT_COPY_UNSET;
05458fdb 246 X509V3_CTX ext_ctx;
b24cfd6b 247 EVP_PKEY *signkey = NULL, *CAkey = NULL, *pubkey = NULL;
52958608 248 int newcert = 0;
d0190e11 249 char *subj = NULL, *digestname = NULL;
52958608
DO
250 X509_NAME *fsubj = NULL;
251 const unsigned long chtype = MBSTRING_ASC;
5a0991d0 252 const int multirdn = 1;
0f113f3e 253 STACK_OF(ASN1_OBJECT) *trust = NULL, *reject = NULL;
2292c8e1 254 STACK_OF(OPENSSL_STRING) *sigopts = NULL, *vfyopts = NULL;
05458fdb 255 X509 *x = NULL, *xca = NULL, *issuer_cert;
7e1b7485
RS
256 X509_REQ *req = NULL, *rq = NULL;
257 X509_STORE *ctx = NULL;
258 const EVP_MD *digest = NULL;
b24cfd6b 259 char *CAkeyfile = NULL, *CAserial = NULL, *pubkeyfile = NULL, *alias = NULL;
b9fbacaa
DDO
260 char *checkhost = NULL, *checkemail = NULL, *checkip = NULL;
261 char *ext_names = NULL;
7e1b7485 262 char *extsect = NULL, *extfile = NULL, *passin = NULL, *passinarg = NULL;
b24cfd6b 263 char *infile = NULL, *outfile = NULL, *signkeyfile = NULL, *CAfile = NULL;
b5c4209b 264 char *prog;
b24cfd6b
DDO
265 int days = UNSET_DAYS; /* not explicitly set */
266 int x509toreq = 0, modulus = 0, print_pubkey = 0, pprint = 0;
a18cf8fc 267 int CAformat = FORMAT_PEM, CAkeyformat = FORMAT_PEM;
3ee1eac2 268 int fingerprint = 0, reqfile = 0, checkend = 0;
7e1b7485
RS
269 int informat = FORMAT_PEM, outformat = FORMAT_PEM, keyformat = FORMAT_PEM;
270 int next_serial = 0, subject_hash = 0, issuer_hash = 0, ocspid = 0;
b24cfd6b 271 int noout = 0, CA_createserial = 0, email = 0;
7e1b7485
RS
272 int ocsp_uri = 0, trustout = 0, clrtrust = 0, clrreject = 0, aliasout = 0;
273 int ret = 1, i, num = 0, badsig = 0, clrext = 0, nocert = 0;
c2908538 274 int text = 0, serial = 0, subject = 0, issuer = 0, startdate = 0, ext = 0;
56087077
VD
275 int enddate = 0;
276 time_t checkoffset = 0;
b5c4209b 277 unsigned long certflag = 0;
4a60bb18 278 int preserve_dates = 0;
7e1b7485 279 OPTION_CHOICE o;
7e1b7485 280 ENGINE *e = NULL;
7e1b7485
RS
281#ifndef OPENSSL_NO_MD5
282 int subject_hash_old = 0, issuer_hash_old = 0;
645749ef 283#endif
d02b48c6 284
0f113f3e
MC
285 ctx = X509_STORE_new();
286 if (ctx == NULL)
287 goto end;
288 X509_STORE_set_verify_cb(ctx, callb);
289
7e1b7485
RS
290 prog = opt_init(argc, argv, x509_options);
291 while ((o = opt_next()) != OPT_EOF) {
292 switch (o) {
293 case OPT_EOF:
294 case OPT_ERR:
295 opthelp:
296 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
297 goto end;
298 case OPT_HELP:
299 opt_help(x509_options);
300 ret = 0;
301 goto end;
302 case OPT_INFORM:
6d382c74 303 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &informat))
7e1b7485
RS
304 goto opthelp;
305 break;
306 case OPT_IN:
307 infile = opt_arg();
308 break;
309 case OPT_OUTFORM:
310 if (!opt_format(opt_arg(), OPT_FMT_ANY, &outformat))
311 goto opthelp;
312 break;
313 case OPT_KEYFORM:
6d382c74 314 if (!opt_format(opt_arg(), OPT_FMT_ANY, &keyformat))
7e1b7485
RS
315 goto opthelp;
316 break;
317 case OPT_CAFORM:
6d382c74 318 if (!opt_format(opt_arg(), OPT_FMT_ANY, &CAformat))
7e1b7485
RS
319 goto opthelp;
320 break;
321 case OPT_CAKEYFORM:
6d382c74 322 if (!opt_format(opt_arg(), OPT_FMT_ANY, &CAkeyformat))
7e1b7485
RS
323 goto opthelp;
324 break;
325 case OPT_OUT:
326 outfile = opt_arg();
327 break;
328 case OPT_REQ:
3ee1eac2 329 reqfile = 1;
7e1b7485 330 break;
b9fbacaa
DDO
331 case OPT_COPY_EXTENSIONS:
332 if (!set_ext_copy(&ext_copy, opt_arg())) {
333 BIO_printf(bio_err,
334 "Invalid extension copy option: %s\n", opt_arg());
335 goto end;
336 }
337 break;
7e1b7485
RS
338
339 case OPT_SIGOPT:
0f113f3e
MC
340 if (!sigopts)
341 sigopts = sk_OPENSSL_STRING_new_null();
7e1b7485
RS
342 if (!sigopts || !sk_OPENSSL_STRING_push(sigopts, opt_arg()))
343 goto opthelp;
344 break;
2292c8e1
RL
345 case OPT_VFYOPT:
346 if (!vfyopts)
347 vfyopts = sk_OPENSSL_STRING_new_null();
348 if (!vfyopts || !sk_OPENSSL_STRING_push(vfyopts, opt_arg()))
349 goto opthelp;
350 break;
7e1b7485
RS
351 case OPT_DAYS:
352 days = atoi(opt_arg());
b24cfd6b
DDO
353 if (days < -1) {
354 BIO_printf(bio_err, "%s: -days parameter arg must be >= -1\n",
355 prog);
356 goto end;
357 }
7e1b7485
RS
358 break;
359 case OPT_PASSIN:
360 passinarg = opt_arg();
361 break;
362 case OPT_EXTFILE:
363 extfile = opt_arg();
364 break;
3ee1eac2
RS
365 case OPT_R_CASES:
366 if (!opt_rand(o))
367 goto end;
368 break;
6bd4e3f2
P
369 case OPT_PROV_CASES:
370 if (!opt_provider(o))
371 goto end;
372 break;
7e1b7485
RS
373 case OPT_EXTENSIONS:
374 extsect = opt_arg();
375 break;
376 case OPT_SIGNKEY:
b24cfd6b 377 signkeyfile = opt_arg();
7e1b7485
RS
378 break;
379 case OPT_CA:
380 CAfile = opt_arg();
7e1b7485
RS
381 break;
382 case OPT_CAKEY:
383 CAkeyfile = opt_arg();
384 break;
385 case OPT_CASERIAL:
386 CAserial = opt_arg();
387 break;
388 case OPT_SET_SERIAL:
08f6ae5b 389 if (sno != NULL) {
efba7787 390 BIO_printf(bio_err, "Serial number supplied twice\n");
08f6ae5b
MC
391 goto opthelp;
392 }
7e1b7485
RS
393 if ((sno = s2i_ASN1_INTEGER(NULL, opt_arg())) == NULL)
394 goto opthelp;
395 break;
52958608
DO
396 case OPT_NEW:
397 newcert = 1;
398 break;
7e1b7485 399 case OPT_FORCE_PUBKEY:
b24cfd6b 400 pubkeyfile = opt_arg();
7e1b7485 401 break;
52958608
DO
402 case OPT_SUBJ:
403 subj = opt_arg();
404 break;
7e1b7485
RS
405 case OPT_ADDTRUST:
406 if ((objtmp = OBJ_txt2obj(opt_arg(), 0)) == NULL) {
407 BIO_printf(bio_err,
408 "%s: Invalid trust object value %s\n",
409 prog, opt_arg());
410 goto opthelp;
0f113f3e 411 }
7e1b7485
RS
412 if (trust == NULL && (trust = sk_ASN1_OBJECT_new_null()) == NULL)
413 goto end;
0f113f3e 414 sk_ASN1_OBJECT_push(trust, objtmp);
f83b85fb 415 objtmp = NULL;
0f113f3e 416 trustout = 1;
7e1b7485
RS
417 break;
418 case OPT_ADDREJECT:
419 if ((objtmp = OBJ_txt2obj(opt_arg(), 0)) == NULL) {
0f113f3e 420 BIO_printf(bio_err,
7e1b7485
RS
421 "%s: Invalid reject object value %s\n",
422 prog, opt_arg());
423 goto opthelp;
0f113f3e 424 }
7e1b7485
RS
425 if (reject == NULL
426 && (reject = sk_ASN1_OBJECT_new_null()) == NULL)
427 goto end;
0f113f3e 428 sk_ASN1_OBJECT_push(reject, objtmp);
f83b85fb 429 objtmp = NULL;
0f113f3e 430 trustout = 1;
7e1b7485
RS
431 break;
432 case OPT_SETALIAS:
433 alias = opt_arg();
0f113f3e 434 trustout = 1;
7e1b7485
RS
435 break;
436 case OPT_CERTOPT:
437 if (!set_cert_ex(&certflag, opt_arg()))
438 goto opthelp;
439 break;
440 case OPT_NAMEOPT:
b5c4209b 441 if (!set_nameopt(opt_arg()))
7e1b7485
RS
442 goto opthelp;
443 break;
444 case OPT_ENGINE:
333b070e 445 e = setup_engine(opt_arg(), 0);
7e1b7485 446 break;
7e1b7485 447 case OPT_EMAIL:
0f113f3e 448 email = ++num;
7e1b7485
RS
449 break;
450 case OPT_OCSP_URI:
0f113f3e 451 ocsp_uri = ++num;
7e1b7485
RS
452 break;
453 case OPT_SERIAL:
0f113f3e 454 serial = ++num;
7e1b7485
RS
455 break;
456 case OPT_NEXT_SERIAL:
0f113f3e 457 next_serial = ++num;
7e1b7485
RS
458 break;
459 case OPT_MODULUS:
0f113f3e 460 modulus = ++num;
7e1b7485
RS
461 break;
462 case OPT_PUBKEY:
b24cfd6b 463 print_pubkey = ++num;
7e1b7485
RS
464 break;
465 case OPT_X509TOREQ:
b24cfd6b 466 x509toreq = 1;
7e1b7485
RS
467 break;
468 case OPT_TEXT:
0f113f3e 469 text = ++num;
7e1b7485
RS
470 break;
471 case OPT_SUBJECT:
0f113f3e 472 subject = ++num;
7e1b7485
RS
473 break;
474 case OPT_ISSUER:
0f113f3e 475 issuer = ++num;
7e1b7485
RS
476 break;
477 case OPT_FINGERPRINT:
0f113f3e 478 fingerprint = ++num;
7e1b7485
RS
479 break;
480 case OPT_HASH:
481 subject_hash = ++num;
482 break;
483 case OPT_ISSUER_HASH:
484 issuer_hash = ++num;
485 break;
486 case OPT_PURPOSE:
0f113f3e 487 pprint = ++num;
7e1b7485
RS
488 break;
489 case OPT_STARTDATE:
0f113f3e 490 startdate = ++num;
7e1b7485
RS
491 break;
492 case OPT_ENDDATE:
0f113f3e 493 enddate = ++num;
7e1b7485
RS
494 break;
495 case OPT_NOOUT:
0f113f3e 496 noout = ++num;
7e1b7485 497 break;
c2908538
PY
498 case OPT_EXT:
499 ext = ++num;
b9fbacaa 500 ext_names = opt_arg();
c2908538 501 break;
7e1b7485
RS
502 case OPT_NOCERT:
503 nocert = 1;
504 break;
505 case OPT_TRUSTOUT:
0f113f3e 506 trustout = 1;
7e1b7485
RS
507 break;
508 case OPT_CLRTRUST:
0f113f3e 509 clrtrust = ++num;
7e1b7485
RS
510 break;
511 case OPT_CLRREJECT:
0f113f3e 512 clrreject = ++num;
7e1b7485
RS
513 break;
514 case OPT_ALIAS:
0f113f3e 515 aliasout = ++num;
7e1b7485
RS
516 break;
517 case OPT_CACREATESERIAL:
0f113f3e 518 CA_createserial = ++num;
7e1b7485
RS
519 break;
520 case OPT_CLREXT:
0f113f3e 521 clrext = 1;
7e1b7485
RS
522 break;
523 case OPT_OCSPID:
0f113f3e 524 ocspid = ++num;
7e1b7485
RS
525 break;
526 case OPT_BADSIG:
0f113f3e 527 badsig = 1;
0f113f3e 528 break;
7e1b7485
RS
529#ifndef OPENSSL_NO_MD5
530 case OPT_SUBJECT_HASH_OLD:
531 subject_hash_old = ++num;
532 break;
533 case OPT_ISSUER_HASH_OLD:
534 issuer_hash_old = ++num;
535 break;
9c3bcfa0
RS
536#else
537 case OPT_SUBJECT_HASH_OLD:
538 case OPT_ISSUER_HASH_OLD:
539 break;
7e1b7485
RS
540#endif
541 case OPT_DATES:
542 startdate = ++num;
543 enddate = ++num;
544 break;
545 case OPT_CHECKEND:
7e1b7485 546 checkend = 1;
33254e1c
RL
547 {
548 intmax_t temp = 0;
549 if (!opt_imax(opt_arg(), &temp))
550 goto opthelp;
551 checkoffset = (time_t)temp;
552 if ((intmax_t)checkoffset != temp) {
1a683b80 553 BIO_printf(bio_err, "%s: Checkend time out of range %s\n",
33254e1c
RL
554 prog, opt_arg());
555 goto opthelp;
556 }
56087077 557 }
7e1b7485
RS
558 break;
559 case OPT_CHECKHOST:
560 checkhost = opt_arg();
561 break;
562 case OPT_CHECKEMAIL:
563 checkemail = opt_arg();
564 break;
565 case OPT_CHECKIP:
566 checkip = opt_arg();
567 break;
4a60bb18 568 case OPT_PRESERVE_DATES:
4a60bb18
TS
569 preserve_dates = 1;
570 break;
7e1b7485 571 case OPT_MD:
d0190e11
RS
572 digestname = opt_unknown();
573 break;
0f113f3e 574 }
7e1b7485 575 }
021410ea
RS
576
577 /* No extra arguments. */
7e1b7485 578 argc = opt_num_rest();
021410ea 579 if (argc != 0)
7e1b7485 580 goto opthelp;
0f113f3e 581
51e5df0e 582 app_RAND_load();
d0190e11
RS
583 if (digestname != NULL) {
584 if (!opt_md(digestname, &digest))
585 goto opthelp;
586 }
b24cfd6b
DDO
587 if (preserve_dates && days != UNSET_DAYS) {
588 BIO_printf(bio_err, "Cannot use -preserve_dates with -days option\n");
589 goto end;
590 }
591 if (days == UNSET_DAYS)
592 days = DEFAULT_DAYS;
593
7e1b7485 594 if (!app_passwd(passinarg, NULL, &passin, NULL)) {
0f113f3e
MC
595 BIO_printf(bio_err, "Error getting password\n");
596 goto end;
597 }
598
d8652be0 599 if (!X509_STORE_set_default_paths_ex(ctx, app_get0_libctx(),
7c5237e1 600 app_get0_propq()))
0f113f3e 601 goto end;
0f113f3e 602
52958608 603 if (newcert && infile != NULL) {
b24cfd6b
DDO
604 BIO_printf(bio_err, "The -in option cannot be used with -new\n");
605 goto end;
606 }
607 if (newcert && reqfile) {
608 BIO_printf(bio_err,
609 "The -req option cannot be used with -new\n");
52958608
DO
610 goto end;
611 }
b24cfd6b
DDO
612 if (signkeyfile != NULL) {
613 signkey = load_key(signkeyfile, keyformat, 0, passin, e, "private key");
614 if (signkey == NULL)
615 goto end;
616 }
617 if (pubkeyfile != NULL) {
618 if ((pubkey = load_pubkey(pubkeyfile, keyformat, 0, NULL, e,
619 "explicitly set public key")) == NULL)
0f113f3e
MC
620 goto end;
621 }
622
b24cfd6b
DDO
623 if (newcert) {
624 if (subj == NULL) {
625 BIO_printf(bio_err,
626 "The -new option requires a subject to be set using -subj\n");
627 goto end;
628 }
629 if (signkeyfile == NULL && pubkeyfile == NULL) {
630 BIO_printf(bio_err,
631 "The -new option without -signkey requires using -force_pubkey\n");
632 goto end;
633 }
52958608 634 }
57c05c57
DDO
635 if (subj != NULL
636 && (fsubj = parse_name(subj, chtype, multirdn, "subject")) == NULL)
52958608
DO
637 goto end;
638
b24cfd6b 639 if (CAkeyfile == NULL)
0f113f3e 640 CAkeyfile = CAfile;
b24cfd6b
DDO
641 if (CAfile != NULL) {
642 if (signkeyfile != NULL) {
643 BIO_printf(bio_err, "Cannot use both -signkey and -CA option\n");
644 goto end;
645 }
646 } else if (CAkeyfile != NULL) {
52958608 647 BIO_printf(bio_err,
b24cfd6b 648 "Warning: ignoring -CAkey option since no -CA option is given\n");
0f113f3e
MC
649 }
650
b24cfd6b
DDO
651 if (extfile == NULL) {
652 if (extsect != NULL)
653 BIO_printf(bio_err,
654 "Warning: ignoring -extensions option without -extfile\n");
655 } else {
0f113f3e 656 X509V3_CTX ctx2;
b24cfd6b 657
cc01d217 658 if ((extconf = app_load_config(extfile)) == NULL)
0f113f3e 659 goto end;
2234212c 660 if (extsect == NULL) {
0f113f3e 661 extsect = NCONF_get_string(extconf, "default", "extensions");
2234212c 662 if (extsect == NULL) {
0f113f3e
MC
663 ERR_clear_error();
664 extsect = "default";
665 }
666 }
667 X509V3_set_ctx_test(&ctx2);
668 X509V3_set_nconf(&ctx2, extconf);
669 if (!X509V3_EXT_add_nconf(extconf, &ctx2, extsect, NULL)) {
670 BIO_printf(bio_err,
1a683b80 671 "Error checking extension section %s\n", extsect);
0f113f3e
MC
672 goto end;
673 }
674 }
675
676 if (reqfile) {
677 EVP_PKEY *pkey;
0f113f3e 678
9d5aca65 679 req = load_csr(infile, informat, "certificate request input");
01c12100 680 if (req == NULL)
0f113f3e 681 goto end;
0f113f3e 682
c5137473 683 if ((pkey = X509_REQ_get0_pubkey(req)) == NULL) {
1a683b80 684 BIO_printf(bio_err, "Error unpacking public key\n");
0f113f3e
MC
685 goto end;
686 }
2292c8e1 687 i = do_X509_REQ_verify(req, pkey, vfyopts);
0f113f3e 688 if (i < 0) {
b24cfd6b
DDO
689 BIO_printf(bio_err,
690 "Error while verifying certificate request self-signature\n");
0f113f3e
MC
691 goto end;
692 }
693 if (i == 0) {
694 BIO_printf(bio_err,
b24cfd6b 695 "Certificate request self-signature did not match the contents\n");
0f113f3e 696 goto end;
2234212c 697 } else {
b24cfd6b 698 BIO_printf(bio_err, "Certificate request self-signature ok\n");
2234212c 699 }
0f113f3e
MC
700
701 print_name(bio_err, "subject=", X509_REQ_get_subject_name(req),
b5c4209b 702 get_nameopt());
b9fbacaa 703 } else if (!x509toreq && ext_copy != EXT_COPY_UNSET) {
05458fdb 704 BIO_printf(bio_err, "Warning: ignoring -copy_extensions since neither -x509toreq nor -req is given\n");
52958608
DO
705 }
706
707 if (reqfile || newcert) {
b24cfd6b 708 if (preserve_dates)
52958608 709 BIO_printf(bio_err,
b24cfd6b
DDO
710 "Warning: ignoring -preserve_dates option with -req or -new\n");
711 preserve_dates = 0;
712 if (signkeyfile == NULL && CAkeyfile == NULL) {
713 BIO_printf(bio_err,
714 "We need a private key to sign with, use -signkey or -CAkey or -CA with private key\n");
52958608
DO
715 goto end;
716 }
d8652be0 717 if ((x = X509_new_ex(app_get0_libctx(), app_get0_propq())) == NULL)
0f113f3e 718 goto end;
0f113f3e
MC
719 if (sno == NULL) {
720 sno = ASN1_INTEGER_new();
96487cdd 721 if (sno == NULL || !rand_serial(NULL, sno))
0f113f3e 722 goto end;
2234212c 723 }
05458fdb
DDO
724 if (req != NULL && ext_copy != EXT_COPY_UNSET) {
725 if (clrext && ext_copy != EXT_COPY_NONE) {
b9fbacaa
DDO
726 BIO_printf(bio_err, "Must not use -clrext together with -copy_extensions\n");
727 goto end;
728 } else if (!copy_extensions(x, req, ext_copy)) {
729 BIO_printf(bio_err, "Error copying extensions from request\n");
730 goto end;
731 }
732 }
2234212c 733 } else {
22dddfb9 734 x = load_cert_pass(infile, 1, passin, "certificate");
56a98c3e
DO
735 if (x == NULL)
736 goto end;
2234212c 737 }
b24cfd6b
DDO
738 if ((fsubj != NULL || req != NULL)
739 && !X509_set_subject_name(x, fsubj != NULL ? fsubj :
740 X509_REQ_get_subject_name(req)))
741 goto end;
742 if ((pubkey != NULL || signkey != NULL || req != NULL)
743 && !X509_set_pubkey(x, pubkey != NULL ? pubkey :
744 signkey != NULL ? signkey :
745 X509_REQ_get0_pubkey(req)))
746 goto end;
0f113f3e 747
b24cfd6b 748 if (CAfile != NULL) {
22dddfb9 749 xca = load_cert_pass(CAfile, 1, passin, "CA certificate");
0f113f3e
MC
750 if (xca == NULL)
751 goto end;
752 }
753
2d1b5717
BE
754 out = bio_open_default(outfile, 'w', outformat);
755 if (out == NULL)
756 goto end;
0f113f3e 757
2d1b5717
BE
758 if (!noout || text || next_serial)
759 OBJ_create("2.99999.3", "SET.ex3", "SET x509v3 extension 3");
b24cfd6b 760 /* TODO: why is this strange object created (and no error checked)? */
0f113f3e
MC
761
762 if (alias)
763 X509_alias_set1(x, (unsigned char *)alias, -1);
764
765 if (clrtrust)
766 X509_trust_clear(x);
767 if (clrreject)
768 X509_reject_clear(x);
769
2234212c 770 if (trust != NULL) {
0f113f3e
MC
771 for (i = 0; i < sk_ASN1_OBJECT_num(trust); i++) {
772 objtmp = sk_ASN1_OBJECT_value(trust, i);
773 X509_add1_trust_object(x, objtmp);
774 }
f83b85fb 775 objtmp = NULL;
0f113f3e
MC
776 }
777
2234212c 778 if (reject != NULL) {
0f113f3e
MC
779 for (i = 0; i < sk_ASN1_OBJECT_num(reject); i++) {
780 objtmp = sk_ASN1_OBJECT_value(reject, i);
781 X509_add1_reject_object(x, objtmp);
782 }
f83b85fb 783 objtmp = NULL;
0f113f3e
MC
784 }
785
05458fdb
DDO
786 if (clrext && ext_names != NULL)
787 BIO_printf(bio_err, "Warning: Ignoring -ext since -clrext is given\n");
788 for (i = X509_get_ext_count(x) - 1; i >= 0; i--) {
789 X509_EXTENSION *ex = X509_get_ext(x, i);
790 const char *sn = OBJ_nid2sn(OBJ_obj2nid(X509_EXTENSION_get_object(ex)));
791
792 if (clrext || (ext_names != NULL && strstr(ext_names, sn) == NULL))
793 X509_EXTENSION_free(X509_delete_ext(x, i));
794 }
795
05458fdb
DDO
796 issuer_cert = x;
797 if (CAfile != NULL) {
798 issuer_cert = xca;
799 if (sno == NULL)
800 sno = x509_load_serial(CAfile, CAserial, CA_createserial);
801 if (sno == NULL)
802 goto end;
803 }
804
805 if (sno != NULL && !X509_set_serialNumber(x, sno))
806 goto end;
807
ed0a5ac9
DDO
808 if (reqfile || newcert || signkey != NULL || CAfile != NULL) {
809 if (!preserve_dates && !set_cert_times(x, NULL, NULL, days))
810 goto end;
811 if (!X509_set_issuer_name(x, X509_get_subject_name(issuer_cert)))
812 goto end;
813 }
05458fdb
DDO
814
815 X509V3_set_ctx(&ext_ctx, issuer_cert, x, req, NULL, X509V3_CTX_REPLACE);
816 if (extconf != NULL) {
817 X509V3_set_nconf(&ext_ctx, extconf);
818 if (!X509V3_EXT_add_nconf(extconf, &ext_ctx, extsect, x)) {
819 BIO_printf(bio_err,
820 "Error adding extensions from section %s\n", extsect);
821 goto end;
822 }
823 }
824
825 /* At this point the contents of the certificate x have been finished. */
826
827 if (x509toreq) { /* also works in conjunction with -req */
b24cfd6b
DDO
828 if (signkey == NULL) {
829 BIO_printf(bio_err, "Must specify request key using -signkey\n");
830 goto end;
831 }
05458fdb
DDO
832 if (clrext && ext_copy != EXT_COPY_NONE) {
833 BIO_printf(bio_err, "Must not use -clrext together with -copy_extensions\n");
b9fbacaa 834 goto end;
b9fbacaa 835 }
05458fdb
DDO
836 if ((rq = x509_to_req(x, signkey, digest, sigopts,
837 ext_copy, ext_names)) == NULL)
b24cfd6b 838 goto end;
b24cfd6b
DDO
839 if (!noout) {
840 if (outformat == FORMAT_ASN1) {
841 X509_REQ_print_ex(out, rq, get_nameopt(), X509_FLAG_COMPAT);
842 i = i2d_X509_bio(out, x);
843 } else {
844 i = PEM_write_bio_X509_REQ(out, rq);
845 }
846 if (!i) {
847 BIO_printf(bio_err,
848 "Unable to write certificate request\n");
849 goto end;
850 }
851 }
852 noout = 1;
853 } else if (signkey != NULL) {
05458fdb 854 if (!do_X509_sign(x, signkey, digest, sigopts, &ext_ctx))
b24cfd6b
DDO
855 goto end;
856 } else if (CAfile != NULL) {
857 if (!reqfile && !newcert) { /* certificate should be self-signed */
858 X509_STORE_CTX *xsc = X509_STORE_CTX_new();
859
860 if (xsc == NULL || !X509_STORE_CTX_init(xsc, ctx, x, NULL)) {
861 BIO_printf(bio_err, "Error initialising X509 store\n");
862 X509_STORE_CTX_free(xsc);
863 goto end;
864 }
865 X509_STORE_CTX_set_cert(xsc, x);
866 X509_STORE_CTX_set_flags(xsc, X509_V_FLAG_CHECK_SS_SIGNATURE);
867 i = X509_verify_cert(xsc);
868 X509_STORE_CTX_free(xsc);
869 if (i <= 0)
870 goto end;
871 }
872 if ((CAkey = load_key(CAkeyfile, CAkeyformat,
873 0, passin, e, "CA private key")) == NULL)
874 goto end;
05458fdb
DDO
875 if (!X509_check_private_key(xca, CAkey)) {
876 BIO_printf(bio_err,
877 "CA certificate and CA private key do not match\n");
878 goto end;
879 }
880
881 if (!do_X509_sign(x, CAkey, digest, sigopts, &ext_ctx))
b24cfd6b
DDO
882 goto end;
883 }
0f022f5a 884 if (badsig) {
8adc1cb8
DSH
885 const ASN1_BIT_STRING *signature;
886
0f022f5a 887 X509_get0_signature(&signature, NULL, x);
a0754084 888 corrupt_signature(signature);
0f022f5a
DSH
889 }
890
b24cfd6b
DDO
891 if (num) { /* TODO remove this needless guard and extra indentation below */
892 /* Process print options in the given order, as indicated by index i */
0f113f3e
MC
893 for (i = 1; i <= num; i++) {
894 if (issuer == i) {
b24cfd6b
DDO
895 print_name(out, "issuer=", X509_get_issuer_name(x),
896 get_nameopt());
0f113f3e 897 } else if (subject == i) {
fb0303f3 898 print_name(out, "subject=",
b5c4209b 899 X509_get_subject_name(x), get_nameopt());
0f113f3e 900 } else if (serial == i) {
7e1b7485 901 BIO_printf(out, "serial=");
1337a3a9 902 i2a_ASN1_INTEGER(out, X509_get0_serialNumber(x));
7e1b7485 903 BIO_printf(out, "\n");
0f113f3e 904 } else if (next_serial == i) {
12d56b29
F
905 ASN1_INTEGER *ser = X509_get_serialNumber(x);
906 BIGNUM *bnser = ASN1_INTEGER_to_BN(ser, NULL);
907
0f113f3e
MC
908 if (!bnser)
909 goto end;
910 if (!BN_add_word(bnser, 1))
911 goto end;
912 ser = BN_to_ASN1_INTEGER(bnser, NULL);
913 if (!ser)
914 goto end;
915 BN_free(bnser);
916 i2a_ASN1_INTEGER(out, ser);
917 ASN1_INTEGER_free(ser);
918 BIO_puts(out, "\n");
52958608 919 } else if (email == i || ocsp_uri == i) {
0f113f3e 920 STACK_OF(OPENSSL_STRING) *emlst;
b24cfd6b
DDO
921 int j;
922
0f113f3e
MC
923 if (email == i)
924 emlst = X509_get1_email(x);
925 else
926 emlst = X509_get1_ocsp(x);
927 for (j = 0; j < sk_OPENSSL_STRING_num(emlst); j++)
7e1b7485 928 BIO_printf(out, "%s\n",
0f113f3e
MC
929 sk_OPENSSL_STRING_value(emlst, j));
930 X509_email_free(emlst);
931 } else if (aliasout == i) {
932 unsigned char *alstr;
b24cfd6b 933
0f113f3e
MC
934 alstr = X509_alias_get0(x, NULL);
935 if (alstr)
7e1b7485 936 BIO_printf(out, "%s\n", alstr);
0f113f3e 937 else
7e1b7485 938 BIO_puts(out, "<No Alias>\n");
0f113f3e 939 } else if (subject_hash == i) {
7e1b7485 940 BIO_printf(out, "%08lx\n", X509_subject_name_hash(x));
0e0c6821 941#ifndef OPENSSL_NO_MD5
b24cfd6b 942 } else if (subject_hash_old == i) {
7e1b7485 943 BIO_printf(out, "%08lx\n", X509_subject_name_hash_old(x));
0e0c6821 944#endif
b24cfd6b 945 } else if (issuer_hash == i) {
7e1b7485 946 BIO_printf(out, "%08lx\n", X509_issuer_name_hash(x));
0e0c6821 947#ifndef OPENSSL_NO_MD5
b24cfd6b 948 } else if (issuer_hash_old == i) {
7e1b7485 949 BIO_printf(out, "%08lx\n", X509_issuer_name_hash_old(x));
0e0c6821 950#endif
b24cfd6b 951 } else if (pprint == i) {
0f113f3e
MC
952 X509_PURPOSE *ptmp;
953 int j;
b24cfd6b 954
7e1b7485 955 BIO_printf(out, "Certificate purposes:\n");
0f113f3e
MC
956 for (j = 0; j < X509_PURPOSE_get_count(); j++) {
957 ptmp = X509_PURPOSE_get0(j);
7e1b7485 958 purpose_print(out, x, ptmp);
0f113f3e
MC
959 }
960 } else if (modulus == i) {
961 EVP_PKEY *pkey;
962
c01ff880 963 pkey = X509_get0_pubkey(x);
0f113f3e 964 if (pkey == NULL) {
b24cfd6b
DDO
965 BIO_printf(bio_err,
966 "Modulus unavailable: cannot get key\n");
0f113f3e
MC
967 goto end;
968 }
7e1b7485 969 BIO_printf(out, "Modulus=");
d7e498ac
RL
970 if (EVP_PKEY_is_a(pkey, "RSA")) {
971 BIGNUM *n;
972
973 /* Every RSA key has an 'n' */
974 EVP_PKEY_get_bn_param(pkey, "n", &n);
9862e9aa 975 BN_print(out, n);
d7e498ac 976 BN_free(n);
47422549
P
977 } else if (EVP_PKEY_is_a(pkey, "DSA")) {
978 BIGNUM *dsapub;
979
980 /* Every DSA key has an 'pub' */
981 EVP_PKEY_get_bn_param(pkey, "pub", &dsapub);
6e9fa57c 982 BN_print(out, dsapub);
47422549
P
983 BN_free(dsapub);
984 } else {
b24cfd6b 985 BIO_printf(out, "No modulus for this public key type");
6e9fa57c 986 }
7e1b7485 987 BIO_printf(out, "\n");
b24cfd6b 988 } else if (print_pubkey == i) {
0f113f3e
MC
989 EVP_PKEY *pkey;
990
c01ff880 991 pkey = X509_get0_pubkey(x);
0f113f3e
MC
992 if (pkey == NULL) {
993 BIO_printf(bio_err, "Error getting public key\n");
0f113f3e
MC
994 goto end;
995 }
7e1b7485 996 PEM_write_bio_PUBKEY(out, pkey);
0f113f3e 997 } else if (text == i) {
b5c4209b 998 X509_print_ex(out, x, get_nameopt(), certflag);
0f113f3e 999 } else if (startdate == i) {
7e1b7485 1000 BIO_puts(out, "notBefore=");
568ce3a5 1001 ASN1_TIME_print(out, X509_get0_notBefore(x));
7e1b7485 1002 BIO_puts(out, "\n");
0f113f3e 1003 } else if (enddate == i) {
7e1b7485 1004 BIO_puts(out, "notAfter=");
568ce3a5 1005 ASN1_TIME_print(out, X509_get0_notAfter(x));
7e1b7485 1006 BIO_puts(out, "\n");
0f113f3e
MC
1007 } else if (fingerprint == i) {
1008 int j;
1009 unsigned int n;
1010 unsigned char md[EVP_MAX_MD_SIZE];
1011 const EVP_MD *fdig = digest;
1012
2234212c 1013 if (fdig == NULL)
0f113f3e
MC
1014 fdig = EVP_sha1();
1015
1016 if (!X509_digest(x, fdig, md, &n)) {
1a683b80 1017 BIO_printf(bio_err, "Out of memory\n");
0f113f3e
MC
1018 goto end;
1019 }
7e1b7485 1020 BIO_printf(out, "%s Fingerprint=",
0f113f3e
MC
1021 OBJ_nid2sn(EVP_MD_type(fdig)));
1022 for (j = 0; j < (int)n; j++) {
7e1b7485 1023 BIO_printf(out, "%02X%c", md[j], (j + 1 == (int)n)
0f113f3e
MC
1024 ? '\n' : ':');
1025 }
0f113f3e
MC
1026 } else if (ocspid == i) {
1027 X509_ocspid_print(out, x);
c2908538 1028 } else if (ext == i) {
b9fbacaa 1029 print_x509v3_exts(out, x, ext_names);
0f113f3e
MC
1030 }
1031 }
1032 }
1033
1034 if (checkend) {
1035 time_t tcheck = time(NULL) + checkoffset;
1036
568ce3a5 1037 if (X509_cmp_time(X509_get0_notAfter(x), &tcheck) < 0) {
0f113f3e
MC
1038 BIO_printf(out, "Certificate will expire\n");
1039 ret = 1;
1040 } else {
1041 BIO_printf(out, "Certificate will not expire\n");
1042 ret = 0;
1043 }
1044 goto end;
1045 }
1046
7e1b7485 1047 print_cert_checks(out, x, checkhost, checkemail, checkip);
0f113f3e 1048
7e1b7485 1049 if (noout || nocert) {
0f113f3e
MC
1050 ret = 0;
1051 goto end;
1052 }
1053
2234212c 1054 if (outformat == FORMAT_ASN1) {
0f113f3e 1055 i = i2d_X509_bio(out, x);
2234212c 1056 } else if (outformat == FORMAT_PEM) {
0f113f3e
MC
1057 if (trustout)
1058 i = PEM_write_bio_X509_AUX(out, x);
1059 else
1060 i = PEM_write_bio_X509(out, x);
0f113f3e 1061 } else {
1a683b80 1062 BIO_printf(bio_err, "Bad output format specified for outfile\n");
0f113f3e
MC
1063 goto end;
1064 }
1065 if (!i) {
1a683b80 1066 BIO_printf(bio_err, "Unable to write certificate\n");
0f113f3e
MC
1067 goto end;
1068 }
1069 ret = 0;
7c5237e1 1070
0f113f3e 1071 end:
7c5237e1
DDO
1072 if (ret != 0)
1073 ERR_print_errors(bio_err);
0f113f3e
MC
1074 NCONF_free(extconf);
1075 BIO_free_all(out);
0f113f3e 1076 X509_STORE_free(ctx);
52958608 1077 X509_NAME_free(fsubj);
0f113f3e
MC
1078 X509_REQ_free(req);
1079 X509_free(x);
1080 X509_free(xca);
b24cfd6b
DDO
1081 EVP_PKEY_free(signkey);
1082 EVP_PKEY_free(CAkey);
1083 EVP_PKEY_free(pubkey);
25aaa98a 1084 sk_OPENSSL_STRING_free(sigopts);
2292c8e1 1085 sk_OPENSSL_STRING_free(vfyopts);
0f113f3e
MC
1086 X509_REQ_free(rq);
1087 ASN1_INTEGER_free(sno);
1088 sk_ASN1_OBJECT_pop_free(trust, ASN1_OBJECT_free);
1089 sk_ASN1_OBJECT_pop_free(reject, ASN1_OBJECT_free);
f83b85fb 1090 ASN1_OBJECT_free(objtmp);
dd1abd44 1091 release_engine(e);
2a33470b 1092 clear_free(passin);
eee95522 1093 return ret;
0f113f3e
MC
1094}
1095
eee95522
P
1096static ASN1_INTEGER *x509_load_serial(const char *CAfile,
1097 const char *serialfile, int create)
0f113f3e 1098{
eee95522 1099 char *buf = NULL;
0f113f3e
MC
1100 ASN1_INTEGER *bs = NULL;
1101 BIGNUM *serial = NULL;
0f113f3e 1102
0f113f3e 1103 if (serialfile == NULL) {
f223e8fd 1104 const char *p = strrchr(CAfile, '.');
eee95522
P
1105 size_t len = p != NULL ? (size_t)(p - CAfile) : strlen(CAfile);
1106
1107 buf = app_malloc(len + sizeof(POSTFIX), "serial# buffer");
1108 memcpy(buf, CAfile, len);
1109 memcpy(buf + len, POSTFIX, sizeof(POSTFIX));
1110 serialfile = buf;
2234212c 1111 }
0f113f3e 1112
eee95522 1113 serial = load_serial(serialfile, create, NULL);
0f113f3e
MC
1114 if (serial == NULL)
1115 goto end;
1116
1117 if (!BN_add_word(serial, 1)) {
1a683b80 1118 BIO_printf(bio_err, "Serial number increment failure\n");
0f113f3e
MC
1119 goto end;
1120 }
1121
eee95522 1122 if (!save_serial(serialfile, NULL, serial, &bs))
0f113f3e 1123 goto end;
acba75c5 1124
f85b68cd 1125 end:
b548a1f1 1126 OPENSSL_free(buf);
0f113f3e
MC
1127 BN_free(serial);
1128 return bs;
1129}
acba75c5 1130
6d23cf97 1131static int callb(int ok, X509_STORE_CTX *ctx)
0f113f3e
MC
1132{
1133 int err;
1134 X509 *err_cert;
1135
1136 /*
ade08735
DDO
1137 * It is ok to use a self-signed certificate. This case will catch both
1138 * the initial ok == 0 and the final ok == 1 calls to this function.
0f113f3e
MC
1139 */
1140 err = X509_STORE_CTX_get_error(ctx);
1141 if (err == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT)
1142 return 1;
1143
1144 /*
1145 * BAD we should have gotten an error. Normally if everything worked
1146 * X509_STORE_CTX_get_error(ctx) will still be set to
1147 * DEPTH_ZERO_SELF_....
1148 */
1149 if (ok) {
1150 BIO_printf(bio_err,
1a683b80 1151 "Error with certificate to be certified - should be self-signed\n");
0f113f3e
MC
1152 return 0;
1153 } else {
1154 err_cert = X509_STORE_CTX_get_current_cert(ctx);
1155 print_name(bio_err, NULL, X509_get_subject_name(err_cert), 0);
1156 BIO_printf(bio_err,
1a683b80 1157 "Error with certificate - error %d at depth %d\n%s\n", err,
0f113f3e
MC
1158 X509_STORE_CTX_get_error_depth(ctx),
1159 X509_verify_cert_error_string(err));
1160 return 1;
1161 }
1162}
d02b48c6 1163
d4cec6a1 1164static int purpose_print(BIO *bio, X509 *cert, X509_PURPOSE *pt)
673b102c 1165{
0f113f3e 1166 int id, i, idret;
82643254 1167 const char *pname;
0f113f3e
MC
1168 id = X509_PURPOSE_get_id(pt);
1169 pname = X509_PURPOSE_get0_name(pt);
1170 for (i = 0; i < 2; i++) {
1171 idret = X509_check_purpose(cert, id, i);
1172 BIO_printf(bio, "%s%s : ", pname, i ? " CA" : "");
1173 if (idret == 1)
1174 BIO_printf(bio, "Yes\n");
1175 else if (idret == 0)
1176 BIO_printf(bio, "No\n");
1177 else
1178 BIO_printf(bio, "Yes (WARNING code=%d)\n", idret);
1179 }
1180 return 1;
673b102c 1181}
c2908538
PY
1182
1183static int parse_ext_names(char *names, const char **result)
1184{
1185 char *p, *q;
1186 int cnt = 0, len = 0;
1187
1188 p = q = names;
1189 len = strlen(names);
1190
1191 while (q - names <= len) {
1192 if (*q != ',' && *q != '\0') {
1193 q++;
1194 continue;
1195 }
1196 if (p != q) {
1197 /* found */
1198 if (result != NULL) {
1199 result[cnt] = p;
1200 *q = '\0';
1201 }
1202 cnt++;
1203 }
1204 p = ++q;
1205 }
1206
1207 return cnt;
1208}
1209
1210static int print_x509v3_exts(BIO *bio, X509 *x, const char *ext_names)
1211{
1212 const STACK_OF(X509_EXTENSION) *exts = NULL;
1213 STACK_OF(X509_EXTENSION) *exts2 = NULL;
1214 X509_EXTENSION *ext = NULL;
1215 ASN1_OBJECT *obj;
1216 int i, j, ret = 0, num, nn = 0;
1217 const char *sn, **names = NULL;
1218 char *tmp_ext_names = NULL;
1219
1220 exts = X509_get0_extensions(x);
1221 if ((num = sk_X509_EXTENSION_num(exts)) <= 0) {
41e597a0 1222 BIO_printf(bio_err, "No extensions in certificate\n");
c2908538
PY
1223 ret = 1;
1224 goto end;
1225 }
1226
1227 /* parse comma separated ext name string */
1228 if ((tmp_ext_names = OPENSSL_strdup(ext_names)) == NULL)
1229 goto end;
1230 if ((nn = parse_ext_names(tmp_ext_names, NULL)) == 0) {
1231 BIO_printf(bio, "Invalid extension names: %s\n", ext_names);
1232 goto end;
1233 }
1234 if ((names = OPENSSL_malloc(sizeof(char *) * nn)) == NULL)
1235 goto end;
1236 parse_ext_names(tmp_ext_names, names);
1237
1238 for (i = 0; i < num; i++) {
1239 ext = sk_X509_EXTENSION_value(exts, i);
1240
1241 /* check if this ext is what we want */
1242 obj = X509_EXTENSION_get_object(ext);
1243 sn = OBJ_nid2sn(OBJ_obj2nid(obj));
1244 if (sn == NULL || strcmp(sn, "UNDEF") == 0)
1245 continue;
1246
1247 for (j = 0; j < nn; j++) {
1248 if (strcmp(sn, names[j]) == 0) {
1249 /* push the extension into a new stack */
1250 if (exts2 == NULL
1251 && (exts2 = sk_X509_EXTENSION_new_null()) == NULL)
1252 goto end;
1253 if (!sk_X509_EXTENSION_push(exts2, ext))
1254 goto end;
1255 }
1256 }
1257 }
1258
1259 if (!sk_X509_EXTENSION_num(exts2)) {
1260 BIO_printf(bio, "No extensions matched with %s\n", ext_names);
1261 ret = 1;
1262 goto end;
1263 }
1264
1265 ret = X509V3_extensions_print(bio, NULL, exts2, 0, 0);
1266 end:
1267 sk_X509_EXTENSION_free(exts2);
1268 OPENSSL_free(names);
1269 OPENSSL_free(tmp_ext_names);
1270 return ret;
1271}