]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/x509.c
Don't use a default for --with-zlib-lib on Windows with option 'zlib'
[thirdparty/openssl.git] / apps / x509.c
CommitLineData
58964a49 1/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
d02b48c6
RE
2 * All rights reserved.
3 *
4 * This package is an SSL implementation written
5 * by Eric Young (eay@cryptsoft.com).
6 * The implementation was written so as to conform with Netscapes SSL.
0f113f3e 7 *
d02b48c6
RE
8 * This library is free for commercial and non-commercial use as long as
9 * the following conditions are aheared to. The following conditions
10 * apply to all code found in this distribution, be it the RC4, RSA,
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
12 * included with this distribution is covered by the same copyright terms
13 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
0f113f3e 14 *
d02b48c6
RE
15 * Copyright remains Eric Young's, and as such any Copyright notices in
16 * the code are not to be removed.
17 * If this package is used in a product, Eric Young should be given attribution
18 * as the author of the parts of the library used.
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
0f113f3e 21 *
d02b48c6
RE
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 * 3. All advertising materials mentioning features or use of this software
31 * must display the following acknowledgement:
32 * "This product includes cryptographic software written by
33 * Eric Young (eay@cryptsoft.com)"
34 * The word 'cryptographic' can be left out if the rouines from the library
35 * being used are not cryptographic related :-).
0f113f3e 36 * 4. If you include any Windows specific code (or a derivative thereof) from
d02b48c6
RE
37 * the apps directory (application code) you must include an acknowledgement:
38 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
0f113f3e 39 *
d02b48c6
RE
40 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 * SUCH DAMAGE.
0f113f3e 51 *
d02b48c6
RE
52 * The licence and distribution terms for any publically available version or
53 * derivative of this code cannot be changed. i.e. this code cannot simply be
54 * copied and put under another distribution licence
55 * [including the GNU Public Licence.]
56 */
57
58#include <stdio.h>
59#include <stdlib.h>
60#include <string.h>
d02b48c6 61#include "apps.h"
ec577822
BM
62#include <openssl/bio.h>
63#include <openssl/asn1.h>
64#include <openssl/err.h>
65#include <openssl/bn.h>
66#include <openssl/evp.h>
67#include <openssl/x509.h>
68#include <openssl/x509v3.h>
69#include <openssl/objects.h>
70#include <openssl/pem.h>
3eeaab4b 71#ifndef OPENSSL_NO_RSA
0f113f3e 72# include <openssl/rsa.h>
3eeaab4b
NL
73#endif
74#ifndef OPENSSL_NO_DSA
0f113f3e 75# include <openssl/dsa.h>
3eeaab4b 76#endif
d02b48c6 77
d02b48c6 78#undef POSTFIX
0f113f3e
MC
79#define POSTFIX ".srl"
80#define DEF_DAYS 30
81
6d23cf97 82static int callb(int ok, X509_STORE_CTX *ctx);
0f113f3e
MC
83static int sign(X509 *x, EVP_PKEY *pkey, int days, int clrext,
84 const EVP_MD *digest, CONF *conf, char *section);
85static int x509_certify(X509_STORE *ctx, char *CAfile, const EVP_MD *digest,
86 X509 *x, X509 *xca, EVP_PKEY *pkey,
87 STACK_OF(OPENSSL_STRING) *sigopts, char *serial,
88 int create, int days, int clrext, CONF *conf,
7e1b7485 89 char *section, ASN1_INTEGER *sno, int reqfile);
d4cec6a1 90static int purpose_print(BIO *bio, X509 *cert, X509_PURPOSE *pt);
7e1b7485 91
7e1b7485
RS
92typedef enum OPTION_choice {
93 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
94 OPT_INFORM, OPT_OUTFORM, OPT_KEYFORM, OPT_REQ, OPT_CAFORM,
95 OPT_CAKEYFORM, OPT_SIGOPT, OPT_DAYS, OPT_PASSIN, OPT_EXTFILE,
96 OPT_EXTENSIONS, OPT_IN, OPT_OUT, OPT_SIGNKEY, OPT_CA,
97 OPT_CAKEY, OPT_CASERIAL, OPT_SET_SERIAL, OPT_FORCE_PUBKEY,
98 OPT_ADDTRUST, OPT_ADDREJECT, OPT_SETALIAS, OPT_CERTOPT, OPT_NAMEOPT,
99 OPT_C, OPT_EMAIL, OPT_OCSP_URI, OPT_SERIAL, OPT_NEXT_SERIAL,
100 OPT_MODULUS, OPT_PUBKEY, OPT_X509TOREQ, OPT_TEXT, OPT_HASH,
101 OPT_ISSUER_HASH, OPT_SUBJECT, OPT_ISSUER, OPT_FINGERPRINT, OPT_DATES,
102 OPT_PURPOSE, OPT_STARTDATE, OPT_ENDDATE, OPT_CHECKEND, OPT_CHECKHOST,
103 OPT_CHECKEMAIL, OPT_CHECKIP, OPT_NOOUT, OPT_TRUSTOUT, OPT_CLRTRUST,
104 OPT_CLRREJECT, OPT_ALIAS, OPT_CACREATESERIAL, OPT_CLREXT, OPT_OCSPID,
7e1b7485
RS
105 OPT_SUBJECT_HASH_OLD,
106 OPT_ISSUER_HASH_OLD,
7e1b7485
RS
107 OPT_BADSIG, OPT_MD, OPT_ENGINE, OPT_NOCERT
108} OPTION_CHOICE;
109
110OPTIONS x509_options[] = {
111 {"help", OPT_HELP, '-', "Display this summary"},
112 {"inform", OPT_INFORM, 'f',
113 "Input format - default PEM (one of DER, NET or PEM)"},
114 {"in", OPT_IN, '<', "Input file - default stdin"},
115 {"outform", OPT_OUTFORM, 'f',
116 "Output format - default PEM (one of DER, NET or PEM)"},
117 {"out", OPT_OUT, '>', "Output file - default stdout"},
118 {"keyform", OPT_KEYFORM, 'F', "Private key format - default PEM"},
119 {"passin", OPT_PASSIN, 's', "Private key password source"},
120 {"serial", OPT_SERIAL, '-', "Print serial number value"},
121 {"subject_hash", OPT_HASH, '-', "Print subject hash value"},
122 {"issuer_hash", OPT_ISSUER_HASH, '-', "Print issuer hash value"},
7e1b7485
RS
123 {"hash", OPT_HASH, '-', "Synonym for -subject_hash"},
124 {"subject", OPT_SUBJECT, '-', "Print subject DN"},
125 {"issuer", OPT_ISSUER, '-', "Print issuer DN"},
126 {"email", OPT_EMAIL, '-', "Print email address(es)"},
127 {"startdate", OPT_STARTDATE, '-', "Set notBefore field"},
128 {"enddate", OPT_ENDDATE, '-', "Set notAfter field"},
129 {"purpose", OPT_PURPOSE, '-', "Print out certificate purposes"},
130 {"dates", OPT_DATES, '-', "Both Before and After dates"},
131 {"modulus", OPT_MODULUS, '-', "Print the RSA key modulus"},
132 {"pubkey", OPT_PUBKEY, '-', "Output the public key"},
133 {"fingerprint", OPT_FINGERPRINT, '-',
134 "Print the certificate fingerprint"},
135 {"alias", OPT_ALIAS, '-', "Output certificate alias"},
136 {"noout", OPT_NOOUT, '-', "No output, just status"},
137 {"nocert", OPT_NOCERT, '-', "No certificate output"},
138 {"ocspid", OPT_OCSPID, '-',
139 "Print OCSP hash values for the subject name and public key"},
140 {"ocsp_uri", OPT_OCSP_URI, '-', "Print OCSP Responder URL(s)"},
141 {"trustout", OPT_TRUSTOUT, '-', "Output a trusted certificate"},
142 {"clrtrust", OPT_CLRTRUST, '-', "Clear all trusted purposes"},
143 {"clrext", OPT_CLREXT, '-', "Clear all rejected purposes"},
144 {"addtrust", OPT_ADDTRUST, 's', "Trust certificate for a given purpose"},
145 {"addreject", OPT_ADDREJECT, 's',
146 "Reject certificate for a given purpose"},
147 {"setalias", OPT_SETALIAS, 's', "Set certificate alias"},
148 {"days", OPT_DAYS, 'n',
149 "How long till expiry of a signed certificate - def 30 days"},
56087077 150 {"checkend", OPT_CHECKEND, 'M',
7e1b7485
RS
151 "Check whether the cert expires in the next arg seconds"},
152 {OPT_MORE_STR, 1, 1, "Exit 1 if so, 0 if not"},
153 {"signkey", OPT_SIGNKEY, '<', "Self sign cert with arg"},
154 {"x509toreq", OPT_X509TOREQ, '-',
155 "Output a certification request object"},
156 {"req", OPT_REQ, '-', "Input is a certificate request, sign and output"},
157 {"CA", OPT_CA, '<', "Set the CA certificate, must be PEM format"},
dd958974 158 {"CAkey", OPT_CAKEY, 's',
7e1b7485
RS
159 "The CA key, must be PEM format; if not in CAfile"},
160 {"CAcreateserial", OPT_CACREATESERIAL, '-',
161 "Create serial number file if it does not exist"},
5c4e3a4e 162 {"CAserial", OPT_CASERIAL, 's', "Serial file"},
7e1b7485
RS
163 {"set_serial", OPT_SET_SERIAL, 's', "Serial number to use"},
164 {"text", OPT_TEXT, '-', "Print the certificate in text form"},
165 {"C", OPT_C, '-', "Print out C code forms"},
166 {"extfile", OPT_EXTFILE, '<', "File with X509V3 extensions to add"},
167 {"extensions", OPT_EXTENSIONS, 's', "Section from config file to use"},
168 {"nameopt", OPT_NAMEOPT, 's', "Various certificate name options"},
169 {"certopt", OPT_CERTOPT, 's', "Various certificate text options"},
170 {"checkhost", OPT_CHECKHOST, 's', "Check certificate matches host"},
171 {"checkemail", OPT_CHECKEMAIL, 's', "Check certificate matches email"},
172 {"checkip", OPT_CHECKIP, 's', "Check certificate matches ipaddr"},
173 {"CAform", OPT_CAFORM, 'F', "CA format - default PEM"},
174 {"CAkeyform", OPT_CAKEYFORM, 'F', "CA key format - default PEM"},
175 {"sigopt", OPT_SIGOPT, 's'},
176 {"force_pubkey", OPT_FORCE_PUBKEY, '<'},
177 {"next_serial", OPT_NEXT_SERIAL, '-'},
178 {"clrreject", OPT_CLRREJECT, '-'},
179 {"badsig", OPT_BADSIG, '-'},
180 {"", OPT_MD, '-', "Any supported digest"},
9c3bcfa0
RS
181#ifndef OPENSSL_NO_MD5
182 {"subject_hash_old", OPT_SUBJECT_HASH_OLD, '-',
183 "Print old-style (MD5) issuer hash value"},
184 {"issuer_hash_old", OPT_ISSUER_HASH_OLD, '-',
185 "Print old-style (MD5) subject hash value"},
7e1b7485 186#endif
9c3bcfa0
RS
187#ifndef OPENSSL_NO_ENGINE
188 {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
7e1b7485
RS
189#endif
190 {NULL}
191};
667ac4ec 192
7e1b7485 193int x509_main(int argc, char **argv)
0f113f3e 194{
0f113f3e 195 ASN1_INTEGER *sno = NULL;
7e1b7485 196 ASN1_OBJECT *objtmp;
0f113f3e 197 BIO *out = NULL;
7e1b7485
RS
198 CONF *extconf = NULL;
199 EVP_PKEY *Upkey = NULL, *CApkey = NULL, *fkey = NULL;
0f113f3e 200 STACK_OF(ASN1_OBJECT) *trust = NULL, *reject = NULL;
7e1b7485
RS
201 STACK_OF(OPENSSL_STRING) *sigopts = NULL;
202 X509 *x = NULL, *xca = NULL;
203 X509_REQ *req = NULL, *rq = NULL;
204 X509_STORE *ctx = NULL;
205 const EVP_MD *digest = NULL;
206 char *CAkeyfile = NULL, *CAserial = NULL, *fkeyfile = NULL, *alias = NULL;
207 char *checkhost = NULL, *checkemail = NULL, *checkip = NULL;
208 char *extsect = NULL, *extfile = NULL, *passin = NULL, *passinarg = NULL;
0f113f3e 209 char *infile = NULL, *outfile = NULL, *keyfile = NULL, *CAfile = NULL;
333b070e
RS
210 char buf[256], *prog;
211 int x509req = 0, days = DEF_DAYS, modulus = 0, pubkey = 0, pprint = 0;
212 int C = 0, CAformat = FORMAT_PEM, CAkeyformat = FORMAT_PEM;
213 int fingerprint = 0, reqfile = 0, need_rand = 0, checkend = 0;
7e1b7485
RS
214 int informat = FORMAT_PEM, outformat = FORMAT_PEM, keyformat = FORMAT_PEM;
215 int next_serial = 0, subject_hash = 0, issuer_hash = 0, ocspid = 0;
216 int noout = 0, sign_flag = 0, CA_flag = 0, CA_createserial = 0, email = 0;
217 int ocsp_uri = 0, trustout = 0, clrtrust = 0, clrreject = 0, aliasout = 0;
218 int ret = 1, i, num = 0, badsig = 0, clrext = 0, nocert = 0;
333b070e 219 int text = 0, serial = 0, subject = 0, issuer = 0, startdate = 0;
56087077
VD
220 int enddate = 0;
221 time_t checkoffset = 0;
0f113f3e 222 unsigned long nmflag = 0, certflag = 0;
f1cece55 223 char nmflag_set = 0;
7e1b7485 224 OPTION_CHOICE o;
7e1b7485 225 ENGINE *e = NULL;
7e1b7485
RS
226#ifndef OPENSSL_NO_MD5
227 int subject_hash_old = 0, issuer_hash_old = 0;
645749ef 228#endif
d02b48c6 229
0f113f3e
MC
230 ctx = X509_STORE_new();
231 if (ctx == NULL)
232 goto end;
233 X509_STORE_set_verify_cb(ctx, callb);
234
7e1b7485
RS
235 prog = opt_init(argc, argv, x509_options);
236 while ((o = opt_next()) != OPT_EOF) {
237 switch (o) {
238 case OPT_EOF:
239 case OPT_ERR:
240 opthelp:
241 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
242 goto end;
243 case OPT_HELP:
244 opt_help(x509_options);
245 ret = 0;
246 goto end;
247 case OPT_INFORM:
248 if (!opt_format(opt_arg(), OPT_FMT_ANY, &informat))
249 goto opthelp;
250 break;
251 case OPT_IN:
252 infile = opt_arg();
253 break;
254 case OPT_OUTFORM:
255 if (!opt_format(opt_arg(), OPT_FMT_ANY, &outformat))
256 goto opthelp;
257 break;
258 case OPT_KEYFORM:
259 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &keyformat))
260 goto opthelp;
261 break;
262 case OPT_CAFORM:
263 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &CAformat))
264 goto opthelp;
265 break;
266 case OPT_CAKEYFORM:
dd958974 267 if (!opt_format(opt_arg(), OPT_FMT_ANY, &CAkeyformat))
7e1b7485
RS
268 goto opthelp;
269 break;
270 case OPT_OUT:
271 outfile = opt_arg();
272 break;
273 case OPT_REQ:
274 reqfile = need_rand = 1;
275 break;
276
277 case OPT_SIGOPT:
0f113f3e
MC
278 if (!sigopts)
279 sigopts = sk_OPENSSL_STRING_new_null();
7e1b7485
RS
280 if (!sigopts || !sk_OPENSSL_STRING_push(sigopts, opt_arg()))
281 goto opthelp;
282 break;
7e1b7485
RS
283 case OPT_DAYS:
284 days = atoi(opt_arg());
285 break;
286 case OPT_PASSIN:
287 passinarg = opt_arg();
288 break;
289 case OPT_EXTFILE:
290 extfile = opt_arg();
291 break;
292 case OPT_EXTENSIONS:
293 extsect = opt_arg();
294 break;
295 case OPT_SIGNKEY:
296 keyfile = opt_arg();
0f113f3e
MC
297 sign_flag = ++num;
298 need_rand = 1;
7e1b7485
RS
299 break;
300 case OPT_CA:
301 CAfile = opt_arg();
0f113f3e
MC
302 CA_flag = ++num;
303 need_rand = 1;
7e1b7485
RS
304 break;
305 case OPT_CAKEY:
306 CAkeyfile = opt_arg();
307 break;
308 case OPT_CASERIAL:
309 CAserial = opt_arg();
310 break;
311 case OPT_SET_SERIAL:
312 if ((sno = s2i_ASN1_INTEGER(NULL, opt_arg())) == NULL)
313 goto opthelp;
314 break;
315 case OPT_FORCE_PUBKEY:
316 fkeyfile = opt_arg();
317 break;
318 case OPT_ADDTRUST:
319 if ((objtmp = OBJ_txt2obj(opt_arg(), 0)) == NULL) {
320 BIO_printf(bio_err,
321 "%s: Invalid trust object value %s\n",
322 prog, opt_arg());
323 goto opthelp;
0f113f3e 324 }
7e1b7485
RS
325 if (trust == NULL && (trust = sk_ASN1_OBJECT_new_null()) == NULL)
326 goto end;
0f113f3e
MC
327 sk_ASN1_OBJECT_push(trust, objtmp);
328 trustout = 1;
7e1b7485
RS
329 break;
330 case OPT_ADDREJECT:
331 if ((objtmp = OBJ_txt2obj(opt_arg(), 0)) == NULL) {
0f113f3e 332 BIO_printf(bio_err,
7e1b7485
RS
333 "%s: Invalid reject object value %s\n",
334 prog, opt_arg());
335 goto opthelp;
0f113f3e 336 }
7e1b7485
RS
337 if (reject == NULL
338 && (reject = sk_ASN1_OBJECT_new_null()) == NULL)
339 goto end;
0f113f3e
MC
340 sk_ASN1_OBJECT_push(reject, objtmp);
341 trustout = 1;
7e1b7485
RS
342 break;
343 case OPT_SETALIAS:
344 alias = opt_arg();
0f113f3e 345 trustout = 1;
7e1b7485
RS
346 break;
347 case OPT_CERTOPT:
348 if (!set_cert_ex(&certflag, opt_arg()))
349 goto opthelp;
350 break;
351 case OPT_NAMEOPT:
f1cece55 352 nmflag_set = 1;
7e1b7485
RS
353 if (!set_name_ex(&nmflag, opt_arg()))
354 goto opthelp;
355 break;
356 case OPT_ENGINE:
333b070e 357 e = setup_engine(opt_arg(), 0);
7e1b7485
RS
358 break;
359 case OPT_C:
0f113f3e 360 C = ++num;
7e1b7485
RS
361 break;
362 case OPT_EMAIL:
0f113f3e 363 email = ++num;
7e1b7485
RS
364 break;
365 case OPT_OCSP_URI:
0f113f3e 366 ocsp_uri = ++num;
7e1b7485
RS
367 break;
368 case OPT_SERIAL:
0f113f3e 369 serial = ++num;
7e1b7485
RS
370 break;
371 case OPT_NEXT_SERIAL:
0f113f3e 372 next_serial = ++num;
7e1b7485
RS
373 break;
374 case OPT_MODULUS:
0f113f3e 375 modulus = ++num;
7e1b7485
RS
376 break;
377 case OPT_PUBKEY:
0f113f3e 378 pubkey = ++num;
7e1b7485
RS
379 break;
380 case OPT_X509TOREQ:
0f113f3e 381 x509req = ++num;
7e1b7485
RS
382 break;
383 case OPT_TEXT:
0f113f3e 384 text = ++num;
7e1b7485
RS
385 break;
386 case OPT_SUBJECT:
0f113f3e 387 subject = ++num;
7e1b7485
RS
388 break;
389 case OPT_ISSUER:
0f113f3e 390 issuer = ++num;
7e1b7485
RS
391 break;
392 case OPT_FINGERPRINT:
0f113f3e 393 fingerprint = ++num;
7e1b7485
RS
394 break;
395 case OPT_HASH:
396 subject_hash = ++num;
397 break;
398 case OPT_ISSUER_HASH:
399 issuer_hash = ++num;
400 break;
401 case OPT_PURPOSE:
0f113f3e 402 pprint = ++num;
7e1b7485
RS
403 break;
404 case OPT_STARTDATE:
0f113f3e 405 startdate = ++num;
7e1b7485
RS
406 break;
407 case OPT_ENDDATE:
0f113f3e 408 enddate = ++num;
7e1b7485
RS
409 break;
410 case OPT_NOOUT:
0f113f3e 411 noout = ++num;
7e1b7485
RS
412 break;
413 case OPT_NOCERT:
414 nocert = 1;
415 break;
416 case OPT_TRUSTOUT:
0f113f3e 417 trustout = 1;
7e1b7485
RS
418 break;
419 case OPT_CLRTRUST:
0f113f3e 420 clrtrust = ++num;
7e1b7485
RS
421 break;
422 case OPT_CLRREJECT:
0f113f3e 423 clrreject = ++num;
7e1b7485
RS
424 break;
425 case OPT_ALIAS:
0f113f3e 426 aliasout = ++num;
7e1b7485
RS
427 break;
428 case OPT_CACREATESERIAL:
0f113f3e 429 CA_createserial = ++num;
7e1b7485
RS
430 break;
431 case OPT_CLREXT:
0f113f3e 432 clrext = 1;
7e1b7485
RS
433 break;
434 case OPT_OCSPID:
0f113f3e 435 ocspid = ++num;
7e1b7485
RS
436 break;
437 case OPT_BADSIG:
0f113f3e 438 badsig = 1;
0f113f3e 439 break;
7e1b7485
RS
440#ifndef OPENSSL_NO_MD5
441 case OPT_SUBJECT_HASH_OLD:
442 subject_hash_old = ++num;
443 break;
444 case OPT_ISSUER_HASH_OLD:
445 issuer_hash_old = ++num;
446 break;
9c3bcfa0
RS
447#else
448 case OPT_SUBJECT_HASH_OLD:
449 case OPT_ISSUER_HASH_OLD:
450 break;
7e1b7485
RS
451#endif
452 case OPT_DATES:
453 startdate = ++num;
454 enddate = ++num;
455 break;
456 case OPT_CHECKEND:
7e1b7485 457 checkend = 1;
33254e1c
RL
458 {
459 intmax_t temp = 0;
460 if (!opt_imax(opt_arg(), &temp))
461 goto opthelp;
462 checkoffset = (time_t)temp;
463 if ((intmax_t)checkoffset != temp) {
464 BIO_printf(bio_err, "%s: checkend time out of range %s\n",
465 prog, opt_arg());
466 goto opthelp;
467 }
56087077 468 }
7e1b7485
RS
469 break;
470 case OPT_CHECKHOST:
471 checkhost = opt_arg();
472 break;
473 case OPT_CHECKEMAIL:
474 checkemail = opt_arg();
475 break;
476 case OPT_CHECKIP:
477 checkip = opt_arg();
478 break;
479 case OPT_MD:
480 if (!opt_md(opt_unknown(), &digest))
481 goto opthelp;
0f113f3e 482 }
7e1b7485
RS
483 }
484 argc = opt_num_rest();
485 argv = opt_rest();
486 if (argc != 0) {
487 BIO_printf(bio_err, "%s: Unknown parameter %s\n", prog, argv[0]);
488 goto opthelp;
0f113f3e
MC
489 }
490
f1cece55
RL
491 if (!nmflag_set)
492 nmflag = XN_FLAG_ONELINE;
493
bdd58d98 494 out = bio_open_default(outfile, 'w', outformat);
7e1b7485 495 if (out == NULL)
0f113f3e 496 goto end;
7e1b7485 497
0f113f3e 498 if (need_rand)
7e1b7485 499 app_RAND_load_file(NULL, 0);
0f113f3e 500
7e1b7485 501 if (!app_passwd(passinarg, NULL, &passin, NULL)) {
0f113f3e
MC
502 BIO_printf(bio_err, "Error getting password\n");
503 goto end;
504 }
505
506 if (!X509_STORE_set_default_paths(ctx)) {
507 ERR_print_errors(bio_err);
508 goto end;
509 }
510
511 if (fkeyfile) {
7e1b7485 512 fkey = load_pubkey(fkeyfile, keyformat, 0, NULL, e, "Forced key");
0f113f3e
MC
513 if (fkey == NULL)
514 goto end;
515 }
516
517 if ((CAkeyfile == NULL) && (CA_flag) && (CAformat == FORMAT_PEM)) {
518 CAkeyfile = CAfile;
519 } else if ((CA_flag) && (CAkeyfile == NULL)) {
520 BIO_printf(bio_err,
521 "need to specify a CAkey if using the CA command\n");
522 goto end;
523 }
524
525 if (extfile) {
0f113f3e 526 X509V3_CTX ctx2;
cc01d217 527 if ((extconf = app_load_config(extfile)) == NULL)
0f113f3e 528 goto end;
0f113f3e
MC
529 if (!extsect) {
530 extsect = NCONF_get_string(extconf, "default", "extensions");
531 if (!extsect) {
532 ERR_clear_error();
533 extsect = "default";
534 }
535 }
536 X509V3_set_ctx_test(&ctx2);
537 X509V3_set_nconf(&ctx2, extconf);
538 if (!X509V3_EXT_add_nconf(extconf, &ctx2, extsect, NULL)) {
539 BIO_printf(bio_err,
540 "Error Loading extension section %s\n", extsect);
541 ERR_print_errors(bio_err);
542 goto end;
543 }
544 }
545
546 if (reqfile) {
547 EVP_PKEY *pkey;
548 BIO *in;
549
550 if (!sign_flag && !CA_flag) {
551 BIO_printf(bio_err, "We need a private key to sign with\n");
552 goto end;
553 }
bdd58d98 554 in = bio_open_default(infile, 'r', informat);
7e1b7485 555 if (in == NULL)
0f113f3e 556 goto end;
0f113f3e
MC
557 req = PEM_read_bio_X509_REQ(in, NULL, NULL, NULL);
558 BIO_free(in);
559
560 if (req == NULL) {
561 ERR_print_errors(bio_err);
562 goto end;
563 }
564
c5137473 565 if ((pkey = X509_REQ_get0_pubkey(req)) == NULL) {
0f113f3e
MC
566 BIO_printf(bio_err, "error unpacking public key\n");
567 goto end;
568 }
569 i = X509_REQ_verify(req, pkey);
0f113f3e
MC
570 if (i < 0) {
571 BIO_printf(bio_err, "Signature verification error\n");
572 ERR_print_errors(bio_err);
573 goto end;
574 }
575 if (i == 0) {
576 BIO_printf(bio_err,
577 "Signature did not match the certificate request\n");
578 goto end;
579 } else
580 BIO_printf(bio_err, "Signature ok\n");
581
582 print_name(bio_err, "subject=", X509_REQ_get_subject_name(req),
583 nmflag);
584
585 if ((x = X509_new()) == NULL)
586 goto end;
587
588 if (sno == NULL) {
589 sno = ASN1_INTEGER_new();
96487cdd 590 if (sno == NULL || !rand_serial(NULL, sno))
0f113f3e
MC
591 goto end;
592 if (!X509_set_serialNumber(x, sno))
593 goto end;
594 ASN1_INTEGER_free(sno);
595 sno = NULL;
596 } else if (!X509_set_serialNumber(x, sno))
597 goto end;
598
124055a9 599 if (!X509_set_issuer_name(x, X509_REQ_get_subject_name(req)))
0f113f3e 600 goto end;
124055a9 601 if (!X509_set_subject_name(x, X509_REQ_get_subject_name(req)))
0f113f3e
MC
602 goto end;
603
604 X509_gmtime_adj(X509_get_notBefore(x), 0);
605 X509_time_adj_ex(X509_get_notAfter(x), days, 0, NULL);
606 if (fkey)
607 X509_set_pubkey(x, fkey);
608 else {
c5137473 609 pkey = X509_REQ_get0_pubkey(req);
0f113f3e 610 X509_set_pubkey(x, pkey);
0f113f3e
MC
611 }
612 } else
a773b52a 613 x = load_cert(infile, informat, "Certificate");
0f113f3e
MC
614
615 if (x == NULL)
616 goto end;
617 if (CA_flag) {
a773b52a 618 xca = load_cert(CAfile, CAformat, "CA Certificate");
0f113f3e
MC
619 if (xca == NULL)
620 goto end;
621 }
622
623 if (!noout || text || next_serial) {
624 OBJ_create("2.99999.3", "SET.ex3", "SET x509v3 extension 3");
625
0f113f3e
MC
626 }
627
628 if (alias)
629 X509_alias_set1(x, (unsigned char *)alias, -1);
630
631 if (clrtrust)
632 X509_trust_clear(x);
633 if (clrreject)
634 X509_reject_clear(x);
635
636 if (trust) {
637 for (i = 0; i < sk_ASN1_OBJECT_num(trust); i++) {
638 objtmp = sk_ASN1_OBJECT_value(trust, i);
639 X509_add1_trust_object(x, objtmp);
640 }
641 }
642
643 if (reject) {
644 for (i = 0; i < sk_ASN1_OBJECT_num(reject); i++) {
645 objtmp = sk_ASN1_OBJECT_value(reject, i);
646 X509_add1_reject_object(x, objtmp);
647 }
648 }
649
650 if (num) {
651 for (i = 1; i <= num; i++) {
652 if (issuer == i) {
7e1b7485 653 print_name(out, "issuer= ", X509_get_issuer_name(x), nmflag);
0f113f3e 654 } else if (subject == i) {
7e1b7485 655 print_name(out, "subject= ",
0f113f3e
MC
656 X509_get_subject_name(x), nmflag);
657 } else if (serial == i) {
7e1b7485
RS
658 BIO_printf(out, "serial=");
659 i2a_ASN1_INTEGER(out, X509_get_serialNumber(x));
660 BIO_printf(out, "\n");
0f113f3e
MC
661 } else if (next_serial == i) {
662 BIGNUM *bnser;
663 ASN1_INTEGER *ser;
664 ser = X509_get_serialNumber(x);
665 bnser = ASN1_INTEGER_to_BN(ser, NULL);
666 if (!bnser)
667 goto end;
668 if (!BN_add_word(bnser, 1))
669 goto end;
670 ser = BN_to_ASN1_INTEGER(bnser, NULL);
671 if (!ser)
672 goto end;
673 BN_free(bnser);
674 i2a_ASN1_INTEGER(out, ser);
675 ASN1_INTEGER_free(ser);
676 BIO_puts(out, "\n");
677 } else if ((email == i) || (ocsp_uri == i)) {
678 int j;
679 STACK_OF(OPENSSL_STRING) *emlst;
680 if (email == i)
681 emlst = X509_get1_email(x);
682 else
683 emlst = X509_get1_ocsp(x);
684 for (j = 0; j < sk_OPENSSL_STRING_num(emlst); j++)
7e1b7485 685 BIO_printf(out, "%s\n",
0f113f3e
MC
686 sk_OPENSSL_STRING_value(emlst, j));
687 X509_email_free(emlst);
688 } else if (aliasout == i) {
689 unsigned char *alstr;
690 alstr = X509_alias_get0(x, NULL);
691 if (alstr)
7e1b7485 692 BIO_printf(out, "%s\n", alstr);
0f113f3e 693 else
7e1b7485 694 BIO_puts(out, "<No Alias>\n");
0f113f3e 695 } else if (subject_hash == i) {
7e1b7485 696 BIO_printf(out, "%08lx\n", X509_subject_name_hash(x));
0f113f3e 697 }
0e0c6821 698#ifndef OPENSSL_NO_MD5
0f113f3e 699 else if (subject_hash_old == i) {
7e1b7485 700 BIO_printf(out, "%08lx\n", X509_subject_name_hash_old(x));
0f113f3e 701 }
0e0c6821 702#endif
0f113f3e 703 else if (issuer_hash == i) {
7e1b7485 704 BIO_printf(out, "%08lx\n", X509_issuer_name_hash(x));
0f113f3e 705 }
0e0c6821 706#ifndef OPENSSL_NO_MD5
0f113f3e 707 else if (issuer_hash_old == i) {
7e1b7485 708 BIO_printf(out, "%08lx\n", X509_issuer_name_hash_old(x));
0f113f3e 709 }
0e0c6821 710#endif
0f113f3e
MC
711 else if (pprint == i) {
712 X509_PURPOSE *ptmp;
713 int j;
7e1b7485 714 BIO_printf(out, "Certificate purposes:\n");
0f113f3e
MC
715 for (j = 0; j < X509_PURPOSE_get_count(); j++) {
716 ptmp = X509_PURPOSE_get0(j);
7e1b7485 717 purpose_print(out, x, ptmp);
0f113f3e
MC
718 }
719 } else if (modulus == i) {
720 EVP_PKEY *pkey;
721
c01ff880 722 pkey = X509_get0_pubkey(x);
0f113f3e
MC
723 if (pkey == NULL) {
724 BIO_printf(bio_err, "Modulus=unavailable\n");
725 ERR_print_errors(bio_err);
726 goto end;
727 }
7e1b7485 728 BIO_printf(out, "Modulus=");
cf1b7d96 729#ifndef OPENSSL_NO_RSA
9862e9aa
RL
730 if (EVP_PKEY_id(pkey) == EVP_PKEY_RSA) {
731 BIGNUM *n;
732 RSA_get0_key(EVP_PKEY_get0_RSA(pkey), &n, NULL, NULL);
733 BN_print(out, n);
734 } else
7be304ac 735#endif
cf1b7d96 736#ifndef OPENSSL_NO_DSA
6e9fa57c
MC
737 if (EVP_PKEY_id(pkey) == EVP_PKEY_DSA) {
738 BIGNUM *dsapub = NULL;
739 DSA_get0_key(EVP_PKEY_get0_DSA(pkey), &dsapub, NULL);
740 BN_print(out, dsapub);
741 } else
7be304ac 742#endif
6e9fa57c 743 {
7e1b7485 744 BIO_printf(out, "Wrong Algorithm type");
6e9fa57c 745 }
7e1b7485 746 BIO_printf(out, "\n");
0f113f3e
MC
747 } else if (pubkey == i) {
748 EVP_PKEY *pkey;
749
c01ff880 750 pkey = X509_get0_pubkey(x);
0f113f3e
MC
751 if (pkey == NULL) {
752 BIO_printf(bio_err, "Error getting public key\n");
753 ERR_print_errors(bio_err);
754 goto end;
755 }
7e1b7485 756 PEM_write_bio_PUBKEY(out, pkey);
0f113f3e
MC
757 } else if (C == i) {
758 unsigned char *d;
759 char *m;
7e1b7485 760 int len;
0f113f3e
MC
761
762 X509_NAME_oneline(X509_get_subject_name(x), buf, sizeof buf);
7e1b7485
RS
763 BIO_printf(out, "/*\n"
764 " * Subject: %s\n", buf);
765
766 m = X509_NAME_oneline(X509_get_issuer_name(x), buf, sizeof buf);
767 BIO_printf(out, " * Issuer: %s\n"
768 " */\n", buf);
0f113f3e 769
7e1b7485 770 len = i2d_X509(x, NULL);
68dc6824 771 m = app_malloc(len, "x509 name buffer");
0f113f3e 772 d = (unsigned char *)m;
7e1b7485
RS
773 len = i2d_X509_NAME(X509_get_subject_name(x), &d);
774 print_array(out, "the_subject_name", len, (unsigned char *)m);
0f113f3e 775 d = (unsigned char *)m;
7e1b7485
RS
776 len = i2d_X509_PUBKEY(X509_get_X509_PUBKEY(x), &d);
777 print_array(out, "the_public_key", len, (unsigned char *)m);
0f113f3e 778 d = (unsigned char *)m;
7e1b7485
RS
779 len = i2d_X509(x, &d);
780 print_array(out, "the_certificate", len, (unsigned char *)m);
0f113f3e
MC
781 OPENSSL_free(m);
782 } else if (text == i) {
7e1b7485 783 X509_print_ex(out, x, nmflag, certflag);
0f113f3e 784 } else if (startdate == i) {
7e1b7485
RS
785 BIO_puts(out, "notBefore=");
786 ASN1_TIME_print(out, X509_get_notBefore(x));
787 BIO_puts(out, "\n");
0f113f3e 788 } else if (enddate == i) {
7e1b7485
RS
789 BIO_puts(out, "notAfter=");
790 ASN1_TIME_print(out, X509_get_notAfter(x));
791 BIO_puts(out, "\n");
0f113f3e
MC
792 } else if (fingerprint == i) {
793 int j;
794 unsigned int n;
795 unsigned char md[EVP_MAX_MD_SIZE];
796 const EVP_MD *fdig = digest;
797
798 if (!fdig)
799 fdig = EVP_sha1();
800
801 if (!X509_digest(x, fdig, md, &n)) {
802 BIO_printf(bio_err, "out of memory\n");
803 goto end;
804 }
7e1b7485 805 BIO_printf(out, "%s Fingerprint=",
0f113f3e
MC
806 OBJ_nid2sn(EVP_MD_type(fdig)));
807 for (j = 0; j < (int)n; j++) {
7e1b7485 808 BIO_printf(out, "%02X%c", md[j], (j + 1 == (int)n)
0f113f3e
MC
809 ? '\n' : ':');
810 }
811 }
812
813 /* should be in the library */
814 else if ((sign_flag == i) && (x509req == 0)) {
815 BIO_printf(bio_err, "Getting Private key\n");
816 if (Upkey == NULL) {
7e1b7485 817 Upkey = load_key(keyfile, keyformat, 0,
0f113f3e
MC
818 passin, e, "Private key");
819 if (Upkey == NULL)
820 goto end;
821 }
822
823 assert(need_rand);
824 if (!sign(x, Upkey, days, clrext, digest, extconf, extsect))
825 goto end;
826 } else if (CA_flag == i) {
827 BIO_printf(bio_err, "Getting CA Private Key\n");
828 if (CAkeyfile != NULL) {
7e1b7485 829 CApkey = load_key(CAkeyfile, CAkeyformat,
0f113f3e
MC
830 0, passin, e, "CA Private Key");
831 if (CApkey == NULL)
832 goto end;
833 }
834
835 assert(need_rand);
836 if (!x509_certify(ctx, CAfile, digest, x, xca,
837 CApkey, sigopts,
838 CAserial, CA_createserial, days, clrext,
7e1b7485 839 extconf, extsect, sno, reqfile))
0f113f3e
MC
840 goto end;
841 } else if (x509req == i) {
842 EVP_PKEY *pk;
843
844 BIO_printf(bio_err, "Getting request Private Key\n");
845 if (keyfile == NULL) {
846 BIO_printf(bio_err, "no request key file specified\n");
847 goto end;
848 } else {
7e1b7485 849 pk = load_key(keyfile, keyformat, 0,
0f113f3e
MC
850 passin, e, "request key");
851 if (pk == NULL)
852 goto end;
853 }
854
855 BIO_printf(bio_err, "Generating certificate request\n");
856
857 rq = X509_to_X509_REQ(x, pk, digest);
858 EVP_PKEY_free(pk);
859 if (rq == NULL) {
860 ERR_print_errors(bio_err);
861 goto end;
862 }
863 if (!noout) {
864 X509_REQ_print(out, rq);
865 PEM_write_bio_X509_REQ(out, rq);
866 }
867 noout = 1;
868 } else if (ocspid == i) {
869 X509_ocspid_print(out, x);
870 }
871 }
872 }
873
874 if (checkend) {
875 time_t tcheck = time(NULL) + checkoffset;
876
877 if (X509_cmp_time(X509_get_notAfter(x), &tcheck) < 0) {
878 BIO_printf(out, "Certificate will expire\n");
879 ret = 1;
880 } else {
881 BIO_printf(out, "Certificate will not expire\n");
882 ret = 0;
883 }
884 goto end;
885 }
886
7e1b7485 887 print_cert_checks(out, x, checkhost, checkemail, checkip);
0f113f3e 888
7e1b7485 889 if (noout || nocert) {
0f113f3e
MC
890 ret = 0;
891 goto end;
892 }
893
a8d8e06b
DSH
894 if (badsig) {
895 ASN1_BIT_STRING *signature;
896 unsigned char *s;
897 X509_get0_signature(&signature, NULL, x);
898 s = ASN1_STRING_data(signature);
899 s[ASN1_STRING_length(signature) - 1] ^= 0x1;
900 }
0f113f3e
MC
901
902 if (outformat == FORMAT_ASN1)
903 i = i2d_X509_bio(out, x);
904 else if (outformat == FORMAT_PEM) {
905 if (trustout)
906 i = PEM_write_bio_X509_AUX(out, x);
907 else
908 i = PEM_write_bio_X509(out, x);
0f113f3e
MC
909 } else {
910 BIO_printf(bio_err, "bad output format specified for outfile\n");
911 goto end;
912 }
913 if (!i) {
914 BIO_printf(bio_err, "unable to write certificate\n");
915 ERR_print_errors(bio_err);
916 goto end;
917 }
918 ret = 0;
919 end:
920 if (need_rand)
7e1b7485 921 app_RAND_write_file(NULL);
0f113f3e
MC
922 NCONF_free(extconf);
923 BIO_free_all(out);
0f113f3e
MC
924 X509_STORE_free(ctx);
925 X509_REQ_free(req);
926 X509_free(x);
927 X509_free(xca);
928 EVP_PKEY_free(Upkey);
929 EVP_PKEY_free(CApkey);
930 EVP_PKEY_free(fkey);
25aaa98a 931 sk_OPENSSL_STRING_free(sigopts);
0f113f3e
MC
932 X509_REQ_free(rq);
933 ASN1_INTEGER_free(sno);
934 sk_ASN1_OBJECT_pop_free(trust, ASN1_OBJECT_free);
935 sk_ASN1_OBJECT_pop_free(reject, ASN1_OBJECT_free);
b548a1f1 936 OPENSSL_free(passin);
7e1b7485 937 return (ret);
0f113f3e
MC
938}
939
940static ASN1_INTEGER *x509_load_serial(char *CAfile, char *serialfile,
941 int create)
942{
943 char *buf = NULL, *p;
944 ASN1_INTEGER *bs = NULL;
945 BIGNUM *serial = NULL;
946 size_t len;
947
948 len = ((serialfile == NULL)
949 ? (strlen(CAfile) + strlen(POSTFIX) + 1)
950 : (strlen(serialfile))) + 1;
68dc6824 951 buf = app_malloc(len, "serial# buffer");
0f113f3e 952 if (serialfile == NULL) {
7644a9ae 953 OPENSSL_strlcpy(buf, CAfile, len);
0f113f3e
MC
954 for (p = buf; *p; p++)
955 if (*p == '.') {
956 *p = '\0';
957 break;
958 }
7644a9ae 959 OPENSSL_strlcat(buf, POSTFIX, len);
0f113f3e 960 } else
7644a9ae 961 OPENSSL_strlcpy(buf, serialfile, len);
0f113f3e
MC
962
963 serial = load_serial(buf, create, NULL);
964 if (serial == NULL)
965 goto end;
966
967 if (!BN_add_word(serial, 1)) {
968 BIO_printf(bio_err, "add_word failure\n");
969 goto end;
970 }
971
972 if (!save_serial(buf, NULL, serial, &bs))
973 goto end;
acba75c5 974
f85b68cd 975 end:
b548a1f1 976 OPENSSL_free(buf);
0f113f3e
MC
977 BN_free(serial);
978 return bs;
979}
acba75c5
DSH
980
981static int x509_certify(X509_STORE *ctx, char *CAfile, const EVP_MD *digest,
0f113f3e
MC
982 X509 *x, X509 *xca, EVP_PKEY *pkey,
983 STACK_OF(OPENSSL_STRING) *sigopts,
984 char *serialfile, int create,
985 int days, int clrext, CONF *conf, char *section,
7e1b7485 986 ASN1_INTEGER *sno, int reqfile)
0f113f3e
MC
987{
988 int ret = 0;
989 ASN1_INTEGER *bs = NULL;
990 X509_STORE_CTX xsc;
991 EVP_PKEY *upkey;
992
c01ff880 993 upkey = X509_get0_pubkey(xca);
0f113f3e 994 EVP_PKEY_copy_parameters(upkey, pkey);
0f113f3e
MC
995
996 if (!X509_STORE_CTX_init(&xsc, ctx, x, NULL)) {
997 BIO_printf(bio_err, "Error initialising X509 store\n");
998 goto end;
999 }
1000 if (sno)
1001 bs = sno;
75ebbd9a 1002 else if ((bs = x509_load_serial(CAfile, serialfile, create)) == NULL)
0f113f3e
MC
1003 goto end;
1004
0f113f3e
MC
1005 /*
1006 * NOTE: this certificate can/should be self signed, unless it was a
1007 * certificate request in which case it is not.
1008 */
1009 X509_STORE_CTX_set_cert(&xsc, x);
1010 X509_STORE_CTX_set_flags(&xsc, X509_V_FLAG_CHECK_SS_SIGNATURE);
1011 if (!reqfile && X509_verify_cert(&xsc) <= 0)
1012 goto end;
1013
1014 if (!X509_check_private_key(xca, pkey)) {
1015 BIO_printf(bio_err,
1016 "CA certificate and CA private key do not match\n");
1017 goto end;
1018 }
1019
1020 if (!X509_set_issuer_name(x, X509_get_subject_name(xca)))
1021 goto end;
1022 if (!X509_set_serialNumber(x, bs))
1023 goto end;
1024
1025 if (X509_gmtime_adj(X509_get_notBefore(x), 0L) == NULL)
1026 goto end;
1027
1028 /* hardwired expired */
1029 if (X509_time_adj_ex(X509_get_notAfter(x), days, 0, NULL) == NULL)
1030 goto end;
1031
1032 if (clrext) {
1033 while (X509_get_ext_count(x) > 0)
1034 X509_delete_ext(x, 0);
1035 }
1036
1037 if (conf) {
1038 X509V3_CTX ctx2;
0f113f3e 1039 X509_set_version(x, 2); /* version 3 certificate */
0f113f3e
MC
1040 X509V3_set_ctx(&ctx2, xca, x, NULL, NULL, 0);
1041 X509V3_set_nconf(&ctx2, conf);
1042 if (!X509V3_EXT_add_nconf(conf, &ctx2, section, x))
1043 goto end;
1044 }
1045
7e1b7485 1046 if (!do_X509_sign(x, pkey, digest, sigopts))
0f113f3e
MC
1047 goto end;
1048 ret = 1;
1049 end:
1050 X509_STORE_CTX_cleanup(&xsc);
1051 if (!ret)
1052 ERR_print_errors(bio_err);
1053 if (!sno)
1054 ASN1_INTEGER_free(bs);
1055 return ret;
1056}
d02b48c6 1057
6d23cf97 1058static int callb(int ok, X509_STORE_CTX *ctx)
0f113f3e
MC
1059{
1060 int err;
1061 X509 *err_cert;
1062
1063 /*
1064 * it is ok to use a self signed certificate This case will catch both
1065 * the initial ok == 0 and the final ok == 1 calls to this function
1066 */
1067 err = X509_STORE_CTX_get_error(ctx);
1068 if (err == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT)
1069 return 1;
1070
1071 /*
1072 * BAD we should have gotten an error. Normally if everything worked
1073 * X509_STORE_CTX_get_error(ctx) will still be set to
1074 * DEPTH_ZERO_SELF_....
1075 */
1076 if (ok) {
1077 BIO_printf(bio_err,
1078 "error with certificate to be certified - should be self signed\n");
1079 return 0;
1080 } else {
1081 err_cert = X509_STORE_CTX_get_current_cert(ctx);
1082 print_name(bio_err, NULL, X509_get_subject_name(err_cert), 0);
1083 BIO_printf(bio_err,
1084 "error with certificate - error %d at depth %d\n%s\n", err,
1085 X509_STORE_CTX_get_error_depth(ctx),
1086 X509_verify_cert_error_string(err));
1087 return 1;
1088 }
1089}
d02b48c6 1090
d02b48c6 1091/* self sign */
0f113f3e
MC
1092static int sign(X509 *x, EVP_PKEY *pkey, int days, int clrext,
1093 const EVP_MD *digest, CONF *conf, char *section)
1094{
1095
0f113f3e
MC
1096 if (!X509_set_issuer_name(x, X509_get_subject_name(x)))
1097 goto err;
1098 if (X509_gmtime_adj(X509_get_notBefore(x), 0) == NULL)
1099 goto err;
1100
9aa00b18 1101 if (X509_time_adj_ex(X509_get_notAfter(x), days, 0, NULL) == NULL)
0f113f3e
MC
1102 goto err;
1103
1104 if (!X509_set_pubkey(x, pkey))
1105 goto err;
1106 if (clrext) {
1107 while (X509_get_ext_count(x) > 0)
1108 X509_delete_ext(x, 0);
1109 }
1110 if (conf) {
1111 X509V3_CTX ctx;
0f113f3e 1112 X509_set_version(x, 2); /* version 3 certificate */
0f113f3e
MC
1113 X509V3_set_ctx(&ctx, x, x, NULL, NULL, 0);
1114 X509V3_set_nconf(&ctx, conf);
1115 if (!X509V3_EXT_add_nconf(conf, &ctx, section, x))
1116 goto err;
1117 }
1118 if (!X509_sign(x, pkey, digest))
1119 goto err;
1120 return 1;
1121 err:
1122 ERR_print_errors(bio_err);
1123 return 0;
1124}
673b102c 1125
d4cec6a1 1126static int purpose_print(BIO *bio, X509 *cert, X509_PURPOSE *pt)
673b102c 1127{
0f113f3e
MC
1128 int id, i, idret;
1129 char *pname;
1130 id = X509_PURPOSE_get_id(pt);
1131 pname = X509_PURPOSE_get0_name(pt);
1132 for (i = 0; i < 2; i++) {
1133 idret = X509_check_purpose(cert, id, i);
1134 BIO_printf(bio, "%s%s : ", pname, i ? " CA" : "");
1135 if (idret == 1)
1136 BIO_printf(bio, "Yes\n");
1137 else if (idret == 0)
1138 BIO_printf(bio, "No\n");
1139 else
1140 BIO_printf(bio, "Yes (WARNING code=%d)\n", idret);
1141 }
1142 return 1;
673b102c 1143}