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