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