Process digest option after loading providers
[openssl.git] / apps / ocsp.c
1 /*
2  * Copyright 2001-2020 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (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 <openssl/opensslconf.h>
11
12 #ifdef OPENSSL_SYS_VMS
13   /* So fd_set and friends get properly defined on OpenVMS */
14 # define _XOPEN_SOURCE_EXTENDED
15 #endif
16
17 #include <stdio.h>
18 #include <stdlib.h>
19 #include <string.h>
20 #include <time.h>
21 #include <ctype.h>
22
23 /* Needs to be included before the openssl headers */
24 #include "apps.h"
25 #include "http_server.h"
26 #include "progs.h"
27 #include "internal/sockets.h"
28 #include <openssl/e_os2.h>
29 #include <openssl/crypto.h>
30 #include <openssl/err.h>
31 #include <openssl/ssl.h>
32 #include <openssl/evp.h>
33 #include <openssl/bn.h>
34 #include <openssl/x509v3.h>
35
36 #if defined(__TANDEM)
37 # if defined(OPENSSL_TANDEM_FLOSS)
38 #  include <floss.h(floss_fork)>
39 # endif
40 #endif
41
42 #if defined(OPENSSL_SYS_VXWORKS)
43 /* not supported */
44 int setpgid(pid_t pid, pid_t pgid)
45 {
46     errno = ENOSYS;
47     return 0;
48 }
49 /* not supported */
50 pid_t fork(void)
51 {
52     errno = ENOSYS;
53     return (pid_t) -1;
54 }
55 #endif
56 /* Maximum leeway in validity period: default 5 minutes */
57 #define MAX_VALIDITY_PERIOD    (5 * 60)
58
59 static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert,
60                          const EVP_MD *cert_id_md, X509 *issuer,
61                          STACK_OF(OCSP_CERTID) *ids);
62 static int add_ocsp_serial(OCSP_REQUEST **req, char *serial,
63                            const EVP_MD *cert_id_md, X509 *issuer,
64                            STACK_OF(OCSP_CERTID) *ids);
65 static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
66                               STACK_OF(OPENSSL_STRING) *names,
67                               STACK_OF(OCSP_CERTID) *ids, long nsec,
68                               long maxage);
69 static void make_ocsp_response(BIO *err, OCSP_RESPONSE **resp, OCSP_REQUEST *req,
70                               CA_DB *db, STACK_OF(X509) *ca, X509 *rcert,
71                               EVP_PKEY *rkey, const EVP_MD *md,
72                               STACK_OF(OPENSSL_STRING) *sigopts,
73                               STACK_OF(X509) *rother, unsigned long flags,
74                               int nmin, int ndays, int badsig,
75                               const EVP_MD *resp_md);
76
77 static char **lookup_serial(CA_DB *db, ASN1_INTEGER *ser);
78 static int do_responder(OCSP_REQUEST **preq, BIO **pcbio, BIO *acbio,
79                         int timeout);
80 static int send_ocsp_response(BIO *cbio, const OCSP_RESPONSE *resp);
81 static char *prog;
82
83 #ifdef HTTP_DAEMON
84 static int index_changed(CA_DB *);
85 #endif
86
87 typedef enum OPTION_choice {
88     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
89     OPT_OUTFILE, OPT_TIMEOUT, OPT_URL, OPT_HOST, OPT_PORT,
90     OPT_IGNORE_ERR, OPT_NOVERIFY, OPT_NONCE, OPT_NO_NONCE,
91     OPT_RESP_NO_CERTS, OPT_RESP_KEY_ID, OPT_NO_CERTS,
92     OPT_NO_SIGNATURE_VERIFY, OPT_NO_CERT_VERIFY, OPT_NO_CHAIN,
93     OPT_NO_CERT_CHECKS, OPT_NO_EXPLICIT, OPT_TRUST_OTHER,
94     OPT_NO_INTERN, OPT_BADSIG, OPT_TEXT, OPT_REQ_TEXT, OPT_RESP_TEXT,
95     OPT_REQIN, OPT_RESPIN, OPT_SIGNER, OPT_VAFILE, OPT_SIGN_OTHER,
96     OPT_VERIFY_OTHER, OPT_CAFILE, OPT_CAPATH, OPT_CASTORE, OPT_NOCAFILE,
97     OPT_NOCAPATH, OPT_NOCASTORE,
98     OPT_VALIDITY_PERIOD, OPT_STATUS_AGE, OPT_SIGNKEY, OPT_REQOUT,
99     OPT_RESPOUT, OPT_PATH, OPT_ISSUER, OPT_CERT, OPT_SERIAL,
100     OPT_INDEX, OPT_CA, OPT_NMIN, OPT_REQUEST, OPT_NDAYS, OPT_RSIGNER,
101     OPT_RKEY, OPT_ROTHER, OPT_RMD, OPT_RSIGOPT, OPT_HEADER,
102     OPT_PASSIN,
103     OPT_RCID,
104     OPT_V_ENUM,
105     OPT_MD,
106     OPT_MULTI, OPT_PROV_ENUM
107 } OPTION_CHOICE;
108
109 const OPTIONS ocsp_options[] = {
110     OPT_SECTION("General"),
111     {"help", OPT_HELP, '-', "Display this summary"},
112     {"ignore_err", OPT_IGNORE_ERR, '-',
113      "Ignore error on OCSP request or response and continue running"},
114     {"CAfile", OPT_CAFILE, '<', "Trusted certificates file"},
115     {"CApath", OPT_CAPATH, '<', "Trusted certificates directory"},
116     {"CAstore", OPT_CASTORE, ':', "Trusted certificates store URI"},
117     {"no-CAfile", OPT_NOCAFILE, '-',
118      "Do not load the default certificates file"},
119     {"no-CApath", OPT_NOCAPATH, '-',
120      "Do not load certificates from the default certificates directory"},
121     {"no-CAstore", OPT_NOCASTORE, '-',
122      "Do not load certificates from the default certificates store"},
123
124     OPT_SECTION("Responder"),
125     {"timeout", OPT_TIMEOUT, 'p',
126      "Connection timeout (in seconds) to the OCSP responder"},
127     {"resp_no_certs", OPT_RESP_NO_CERTS, '-',
128      "Don't include any certificates in response"},
129 #ifdef HTTP_DAEMON
130     {"multi", OPT_MULTI, 'p', "run multiple responder processes"},
131 #endif
132     {"no_certs", OPT_NO_CERTS, '-',
133      "Don't include any certificates in signed request"},
134     {"badsig", OPT_BADSIG, '-',
135         "Corrupt last byte of loaded OSCP response signature (for test)"},
136     {"CA", OPT_CA, '<', "CA certificate"},
137     {"nmin", OPT_NMIN, 'p', "Number of minutes before next update"},
138     {"nrequest", OPT_REQUEST, 'p',
139      "Number of requests to accept (default unlimited)"},
140     {"reqin", OPT_REQIN, 's', "File with the DER-encoded request"},
141     {"signer", OPT_SIGNER, '<', "Certificate to sign OCSP request with"},
142     {"sign_other", OPT_SIGN_OTHER, '<',
143      "Additional certificates to include in signed request"},
144     {"index", OPT_INDEX, '<', "Certificate status index file"},
145     {"ndays", OPT_NDAYS, 'p', "Number of days before next update"},
146     {"rsigner", OPT_RSIGNER, '<',
147      "Responder certificate to sign responses with"},
148     {"rkey", OPT_RKEY, '<', "Responder key to sign responses with"},
149     {"passin", OPT_PASSIN, 's', "Responder key pass phrase source"},
150     {"rother", OPT_ROTHER, '<', "Other certificates to include in response"},
151     {"rmd", OPT_RMD, 's', "Digest Algorithm to use in signature of OCSP response"},
152     {"rsigopt", OPT_RSIGOPT, 's', "OCSP response signature parameter in n:v form"},
153     {"header", OPT_HEADER, 's', "key=value header to add"},
154     {"rcid", OPT_RCID, 's', "Use specified algorithm for cert id in response"},
155     {"", OPT_MD, '-', "Any supported digest algorithm (sha1,sha256, ... )"},
156
157     OPT_SECTION("Client"),
158     {"url", OPT_URL, 's', "Responder URL"},
159     {"host", OPT_HOST, 's', "TCP/IP hostname:port to connect to"},
160     {"port", OPT_PORT, 'p', "Port to run responder on"},
161     {"out", OPT_OUTFILE, '>', "Output filename"},
162     {"noverify", OPT_NOVERIFY, '-', "Don't verify response at all"},
163     {"nonce", OPT_NONCE, '-', "Add OCSP nonce to request"},
164     {"no_nonce", OPT_NO_NONCE, '-', "Don't add OCSP nonce to request"},
165     {"no_signature_verify", OPT_NO_SIGNATURE_VERIFY, '-',
166      "Don't check signature on response"},
167     {"resp_key_id", OPT_RESP_KEY_ID, '-',
168      "Identify response by signing certificate key ID"},
169     {"no_cert_verify", OPT_NO_CERT_VERIFY, '-',
170      "Don't check signing certificate"},
171     {"text", OPT_TEXT, '-', "Print text form of request and response"},
172     {"req_text", OPT_REQ_TEXT, '-', "Print text form of request"},
173     {"resp_text", OPT_RESP_TEXT, '-', "Print text form of response"},
174     {"no_chain", OPT_NO_CHAIN, '-', "Don't chain verify response"},
175     {"no_cert_checks", OPT_NO_CERT_CHECKS, '-',
176      "Don't do additional checks on signing certificate"},
177     {"no_explicit", OPT_NO_EXPLICIT, '-',
178      "Do not explicitly check the chain, just verify the root"},
179     {"trust_other", OPT_TRUST_OTHER, '-',
180      "Don't verify additional certificates"},
181     {"no_intern", OPT_NO_INTERN, '-',
182      "Don't search certificates contained in response for signer"},
183     {"respin", OPT_RESPIN, 's', "File with the DER-encoded response"},
184     {"VAfile", OPT_VAFILE, '<', "Validator certificates file"},
185     {"verify_other", OPT_VERIFY_OTHER, '<',
186      "Additional certificates to search for signer"},
187     {"path", OPT_PATH, 's', "Path to use in OCSP request"},
188     {"cert", OPT_CERT, '<', "Certificate to check"},
189     {"serial", OPT_SERIAL, 's', "Serial number to check"},
190     {"validity_period", OPT_VALIDITY_PERIOD, 'u',
191      "Maximum validity discrepancy in seconds"},
192     {"signkey", OPT_SIGNKEY, 's', "Private key to sign OCSP request with"},
193     {"reqout", OPT_REQOUT, 's', "Output file for the DER-encoded request"},
194     {"respout", OPT_RESPOUT, 's', "Output file for the DER-encoded response"},
195     {"issuer", OPT_ISSUER, '<', "Issuer certificate"},
196     {"status_age", OPT_STATUS_AGE, 'p', "Maximum status age in seconds"},
197
198     OPT_V_OPTIONS,
199     OPT_PROV_OPTIONS,
200     {NULL}
201 };
202
203 int ocsp_main(int argc, char **argv)
204 {
205     BIO *acbio = NULL, *cbio = NULL, *derbio = NULL, *out = NULL;
206     const EVP_MD *cert_id_md = NULL, *rsign_md = NULL;
207     STACK_OF(OPENSSL_STRING) *rsign_sigopts = NULL;
208     int trailing_md = 0;
209     CA_DB *rdb = NULL;
210     EVP_PKEY *key = NULL, *rkey = NULL;
211     OCSP_BASICRESP *bs = NULL;
212     OCSP_REQUEST *req = NULL;
213     OCSP_RESPONSE *resp = NULL;
214     STACK_OF(CONF_VALUE) *headers = NULL;
215     STACK_OF(OCSP_CERTID) *ids = NULL;
216     STACK_OF(OPENSSL_STRING) *reqnames = NULL;
217     STACK_OF(X509) *sign_other = NULL, *verify_other = NULL, *rother = NULL;
218     STACK_OF(X509) *issuers = NULL;
219     X509 *issuer = NULL, *cert = NULL;
220     STACK_OF(X509) *rca_cert = NULL;
221     const EVP_MD *resp_certid_md = NULL;
222     X509 *signer = NULL, *rsigner = NULL;
223     X509_STORE *store = NULL;
224     X509_VERIFY_PARAM *vpm = NULL;
225     const char *CAfile = NULL, *CApath = NULL, *CAstore = NULL;
226     char *header, *value, *respdigname = NULL;
227     char *host = NULL, *port = NULL, *path = "/", *outfile = NULL;
228     char *rca_filename = NULL, *reqin = NULL, *respin = NULL;
229     char *reqout = NULL, *respout = NULL, *ridx_filename = NULL;
230     char *rsignfile = NULL, *rkeyfile = NULL;
231     char *passinarg = NULL, *passin = NULL;
232     char *sign_certfile = NULL, *verify_certfile = NULL, *rcertfile = NULL;
233     char *signfile = NULL, *keyfile = NULL;
234     char *thost = NULL, *tport = NULL, *tpath = NULL;
235     int noCAfile = 0, noCApath = 0, noCAstore = 0;
236     int accept_count = -1, add_nonce = 1, noverify = 0, use_ssl = -1;
237     int vpmtouched = 0, badsig = 0, i, ignore_err = 0, nmin = 0, ndays = -1;
238     int req_text = 0, resp_text = 0, res, ret = 1;
239     int req_timeout = -1;
240     long nsec = MAX_VALIDITY_PERIOD, maxage = -1;
241     unsigned long sign_flags = 0, verify_flags = 0, rflags = 0;
242     OPTION_CHOICE o;
243
244     reqnames = sk_OPENSSL_STRING_new_null();
245     if (reqnames == NULL)
246         goto end;
247     ids = sk_OCSP_CERTID_new_null();
248     if (ids == NULL)
249         goto end;
250     if ((vpm = X509_VERIFY_PARAM_new()) == NULL)
251         return 1;
252
253     prog = opt_init(argc, argv, ocsp_options);
254     while ((o = opt_next()) != OPT_EOF) {
255         switch (o) {
256         case OPT_EOF:
257         case OPT_ERR:
258  opthelp:
259             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
260             goto end;
261         case OPT_HELP:
262             ret = 0;
263             opt_help(ocsp_options);
264             goto end;
265         case OPT_OUTFILE:
266             outfile = opt_arg();
267             break;
268         case OPT_TIMEOUT:
269 #ifndef OPENSSL_NO_SOCK
270             req_timeout = atoi(opt_arg());
271 #endif
272             break;
273         case OPT_URL:
274             OPENSSL_free(thost);
275             OPENSSL_free(tport);
276             OPENSSL_free(tpath);
277             thost = tport = tpath = NULL;
278             if (!OSSL_HTTP_parse_url(opt_arg(),
279                                      &host, &port, NULL, &path, &use_ssl)) {
280                 BIO_printf(bio_err, "%s Error parsing URL\n", prog);
281                 goto end;
282             }
283             thost = host;
284             tport = port;
285             tpath = path;
286             break;
287         case OPT_HOST:
288             host = opt_arg();
289             break;
290         case OPT_PORT:
291             port = opt_arg();
292             break;
293         case OPT_IGNORE_ERR:
294             ignore_err = 1;
295             break;
296         case OPT_NOVERIFY:
297             noverify = 1;
298             break;
299         case OPT_NONCE:
300             add_nonce = 2;
301             break;
302         case OPT_NO_NONCE:
303             add_nonce = 0;
304             break;
305         case OPT_RESP_NO_CERTS:
306             rflags |= OCSP_NOCERTS;
307             break;
308         case OPT_RESP_KEY_ID:
309             rflags |= OCSP_RESPID_KEY;
310             break;
311         case OPT_NO_CERTS:
312             sign_flags |= OCSP_NOCERTS;
313             break;
314         case OPT_NO_SIGNATURE_VERIFY:
315             verify_flags |= OCSP_NOSIGS;
316             break;
317         case OPT_NO_CERT_VERIFY:
318             verify_flags |= OCSP_NOVERIFY;
319             break;
320         case OPT_NO_CHAIN:
321             verify_flags |= OCSP_NOCHAIN;
322             break;
323         case OPT_NO_CERT_CHECKS:
324             verify_flags |= OCSP_NOCHECKS;
325             break;
326         case OPT_NO_EXPLICIT:
327             verify_flags |= OCSP_NOEXPLICIT;
328             break;
329         case OPT_TRUST_OTHER:
330             verify_flags |= OCSP_TRUSTOTHER;
331             break;
332         case OPT_NO_INTERN:
333             verify_flags |= OCSP_NOINTERN;
334             break;
335         case OPT_BADSIG:
336             badsig = 1;
337             break;
338         case OPT_TEXT:
339             req_text = resp_text = 1;
340             break;
341         case OPT_REQ_TEXT:
342             req_text = 1;
343             break;
344         case OPT_RESP_TEXT:
345             resp_text = 1;
346             break;
347         case OPT_REQIN:
348             reqin = opt_arg();
349             break;
350         case OPT_RESPIN:
351             respin = opt_arg();
352             break;
353         case OPT_SIGNER:
354             signfile = opt_arg();
355             break;
356         case OPT_VAFILE:
357             verify_certfile = opt_arg();
358             verify_flags |= OCSP_TRUSTOTHER;
359             break;
360         case OPT_SIGN_OTHER:
361             sign_certfile = opt_arg();
362             break;
363         case OPT_VERIFY_OTHER:
364             verify_certfile = opt_arg();
365             break;
366         case OPT_CAFILE:
367             CAfile = opt_arg();
368             break;
369         case OPT_CAPATH:
370             CApath = opt_arg();
371             break;
372         case OPT_CASTORE:
373             CAstore = opt_arg();
374             break;
375         case OPT_NOCAFILE:
376             noCAfile = 1;
377             break;
378         case OPT_NOCAPATH:
379             noCApath = 1;
380             break;
381         case OPT_NOCASTORE:
382             noCAstore = 1;
383             break;
384         case OPT_V_CASES:
385             if (!opt_verify(o, vpm))
386                 goto end;
387             vpmtouched++;
388             break;
389         case OPT_VALIDITY_PERIOD:
390             opt_long(opt_arg(), &nsec);
391             break;
392         case OPT_STATUS_AGE:
393             opt_long(opt_arg(), &maxage);
394             break;
395         case OPT_SIGNKEY:
396             keyfile = opt_arg();
397             break;
398         case OPT_REQOUT:
399             reqout = opt_arg();
400             break;
401         case OPT_RESPOUT:
402             respout = opt_arg();
403             break;
404         case OPT_PATH:
405             path = opt_arg();
406             break;
407         case OPT_ISSUER:
408             issuer = load_cert(opt_arg(), "issuer certificate");
409             if (issuer == NULL)
410                 goto end;
411             if (issuers == NULL) {
412                 if ((issuers = sk_X509_new_null()) == NULL)
413                     goto end;
414             }
415             if (!sk_X509_push(issuers, issuer))
416                 goto end;
417             break;
418         case OPT_CERT:
419             X509_free(cert);
420             cert = load_cert(opt_arg(), "certificate");
421             if (cert == NULL)
422                 goto end;
423             if (cert_id_md == NULL)
424                 cert_id_md = EVP_sha1();
425             if (!add_ocsp_cert(&req, cert, cert_id_md, issuer, ids))
426                 goto end;
427             if (!sk_OPENSSL_STRING_push(reqnames, opt_arg()))
428                 goto end;
429             trailing_md = 0;
430             break;
431         case OPT_SERIAL:
432             if (cert_id_md == NULL)
433                 cert_id_md = EVP_sha1();
434             if (!add_ocsp_serial(&req, opt_arg(), cert_id_md, issuer, ids))
435                 goto end;
436             if (!sk_OPENSSL_STRING_push(reqnames, opt_arg()))
437                 goto end;
438             trailing_md = 0;
439             break;
440         case OPT_INDEX:
441             ridx_filename = opt_arg();
442             break;
443         case OPT_CA:
444             rca_filename = opt_arg();
445             break;
446         case OPT_NMIN:
447             opt_int(opt_arg(), &nmin);
448             if (ndays == -1)
449                 ndays = 0;
450             break;
451         case OPT_REQUEST:
452             opt_int(opt_arg(), &accept_count);
453             break;
454         case OPT_NDAYS:
455             ndays = atoi(opt_arg());
456             break;
457         case OPT_RSIGNER:
458             rsignfile = opt_arg();
459             break;
460         case OPT_RKEY:
461             rkeyfile = opt_arg();
462             break;
463         case OPT_PASSIN:
464             passinarg = opt_arg();
465             break;
466         case OPT_ROTHER:
467             rcertfile = opt_arg();
468             break;
469         case OPT_RMD:   /* Response MessageDigest */
470             respdigname = opt_arg();
471             break;
472         case OPT_RSIGOPT:
473             if (rsign_sigopts == NULL)
474                 rsign_sigopts = sk_OPENSSL_STRING_new_null();
475             if (rsign_sigopts == NULL || !sk_OPENSSL_STRING_push(rsign_sigopts, opt_arg()))
476                 goto end;
477             break;
478         case OPT_HEADER:
479             header = opt_arg();
480             value = strchr(header, '=');
481             if (value == NULL) {
482                 BIO_printf(bio_err, "Missing = in header key=value\n");
483                 goto opthelp;
484             }
485             *value++ = '\0';
486             if (!X509V3_add_value(header, value, &headers))
487                 goto end;
488             break;
489         case OPT_RCID:
490             resp_certid_md = EVP_get_digestbyname(opt_arg());
491             if (resp_certid_md == NULL)
492                 goto opthelp;
493             break;
494         case OPT_MD:
495             if (trailing_md) {
496                 BIO_printf(bio_err,
497                            "%s: Digest must be before -cert or -serial\n",
498                            prog);
499                 goto opthelp;
500             }
501             if (!opt_md(opt_unknown(), &cert_id_md))
502                 goto opthelp;
503             trailing_md = 1;
504             break;
505         case OPT_MULTI:
506 #ifdef HTTP_DAEMON
507             multi = atoi(opt_arg());
508 #endif
509             break;
510         case OPT_PROV_CASES:
511             if (!opt_provider(o))
512                 goto end;
513             break;
514         }
515     }
516
517     /* No extra arguments. */
518     argc = opt_num_rest();
519     if (argc != 0)
520         goto opthelp;
521
522     if (trailing_md) {
523         BIO_printf(bio_err, "%s: Digest must be before -cert or -serial\n",
524                    prog);
525         goto opthelp;
526     }
527
528     if (respdigname != NULL) {
529         if (!opt_md(respdigname, &rsign_md))
530             goto end;
531     }
532
533     /* Have we anything to do? */
534     if (req == NULL && reqin == NULL
535         && respin == NULL && !(port != NULL && ridx_filename != NULL))
536         goto opthelp;
537
538     out = bio_open_default(outfile, 'w', FORMAT_TEXT);
539     if (out == NULL)
540         goto end;
541
542     if (req == NULL && (add_nonce != 2))
543         add_nonce = 0;
544
545     if (req == NULL && reqin != NULL) {
546         derbio = bio_open_default(reqin, 'r', FORMAT_ASN1);
547         if (derbio == NULL)
548             goto end;
549         req = d2i_OCSP_REQUEST_bio(derbio, NULL);
550         BIO_free(derbio);
551         if (req == NULL) {
552             BIO_printf(bio_err, "Error reading OCSP request\n");
553             goto end;
554         }
555     }
556
557     if (req == NULL && port != NULL) {
558 #ifndef OPENSSL_NO_SOCK
559         acbio = http_server_init_bio(prog, port);
560         if (acbio == NULL)
561             goto end;
562 #else
563         BIO_printf(bio_err, "Cannot act as server - sockets not supported\n");
564         goto end;
565 #endif
566     }
567
568     if (rsignfile != NULL) {
569         if (rkeyfile == NULL)
570             rkeyfile = rsignfile;
571         rsigner = load_cert(rsignfile, "responder certificate");
572         if (rsigner == NULL) {
573             BIO_printf(bio_err, "Error loading responder certificate\n");
574             goto end;
575         }
576         if (!load_certs(rca_filename, &rca_cert, NULL, "CA certificates"))
577             goto end;
578         if (rcertfile != NULL) {
579             if (!load_certs(rcertfile, &rother, NULL,
580                             "responder other certificates"))
581                 goto end;
582         }
583         if (!app_passwd(passinarg, NULL, &passin, NULL)) {
584             BIO_printf(bio_err, "Error getting password\n");
585             goto end;
586         }
587         rkey = load_key(rkeyfile, FORMAT_PEM, 0, passin, NULL,
588                         "responder private key");
589         if (rkey == NULL)
590             goto end;
591     }
592
593     if (ridx_filename != NULL
594         && (rkey == NULL || rsigner == NULL || rca_cert == NULL)) {
595         BIO_printf(bio_err,
596                    "Responder mode requires certificate, key, and CA.\n");
597         goto end;
598     }
599
600     if (ridx_filename != NULL) {
601         rdb = load_index(ridx_filename, NULL);
602         if (rdb == NULL || index_index(rdb) <= 0) {
603             ret = 1;
604             goto end;
605         }
606     }
607
608 #ifdef HTTP_DAEMON
609     if (multi && acbio != NULL)
610         spawn_loop(prog);
611     if (acbio != NULL && req_timeout > 0)
612         signal(SIGALRM, socket_timeout);
613 #endif
614
615     if (acbio != NULL)
616         log_message(prog, LOG_INFO, "waiting for OCSP client connections...");
617
618 redo_accept:
619
620     if (acbio != NULL) {
621 #ifdef HTTP_DAEMON
622         if (index_changed(rdb)) {
623             CA_DB *newrdb = load_index(ridx_filename, NULL);
624
625             if (newrdb != NULL && index_index(newrdb) > 0) {
626                 free_index(rdb);
627                 rdb = newrdb;
628             } else {
629                 free_index(newrdb);
630                 log_message(prog, LOG_ERR, "error reloading updated index: %s",
631                             ridx_filename);
632             }
633         }
634 #endif
635
636         req = NULL;
637         res = do_responder(&req, &cbio, acbio, req_timeout);
638         if (res == 0)
639             goto redo_accept;
640
641         if (req == NULL) {
642             if (res == 1) {
643                 resp =
644                     OCSP_response_create(OCSP_RESPONSE_STATUS_MALFORMEDREQUEST,
645                                          NULL);
646                 send_ocsp_response(cbio, resp);
647             }
648             goto done_resp;
649         }
650     }
651
652     if (req == NULL
653         && (signfile != NULL || reqout != NULL
654             || host != NULL || add_nonce || ridx_filename != NULL)) {
655         BIO_printf(bio_err, "Need an OCSP request for this operation!\n");
656         goto end;
657     }
658
659     if (req != NULL && add_nonce) {
660         if (!OCSP_request_add1_nonce(req, NULL, -1))
661             goto end;
662     }
663
664     if (signfile != NULL) {
665         if (keyfile == NULL)
666             keyfile = signfile;
667         signer = load_cert(signfile, "signer certificate");
668         if (signer == NULL) {
669             BIO_printf(bio_err, "Error loading signer certificate\n");
670             goto end;
671         }
672         if (sign_certfile != NULL) {
673             if (!load_certs(sign_certfile, &sign_other, NULL,
674                             "signer certificates"))
675                 goto end;
676         }
677         key = load_key(keyfile, FORMAT_PEM, 0, NULL, NULL,
678                        "signer private key");
679         if (key == NULL)
680             goto end;
681
682         if (!OCSP_request_sign
683             (req, signer, key, NULL, sign_other, sign_flags)) {
684             BIO_printf(bio_err, "Error signing OCSP request\n");
685             goto end;
686         }
687     }
688
689     if (req_text && req != NULL)
690         OCSP_REQUEST_print(out, req, 0);
691
692     if (reqout != NULL) {
693         derbio = bio_open_default(reqout, 'w', FORMAT_ASN1);
694         if (derbio == NULL)
695             goto end;
696         i2d_OCSP_REQUEST_bio(derbio, req);
697         BIO_free(derbio);
698     }
699
700     if (rdb != NULL) {
701         make_ocsp_response(bio_err, &resp, req, rdb, rca_cert, rsigner, rkey,
702                            rsign_md, rsign_sigopts, rother, rflags, nmin, ndays, badsig,
703                            resp_certid_md);
704         if (cbio != NULL)
705             send_ocsp_response(cbio, resp);
706     } else if (host != NULL) {
707 #ifndef OPENSSL_NO_SOCK
708         resp = process_responder(req, host, path,
709                                  port, use_ssl, headers, req_timeout);
710         if (resp == NULL)
711             goto end;
712 #else
713         BIO_printf(bio_err,
714                    "Error creating connect BIO - sockets not supported\n");
715         goto end;
716 #endif
717     } else if (respin != NULL) {
718         derbio = bio_open_default(respin, 'r', FORMAT_ASN1);
719         if (derbio == NULL)
720             goto end;
721         resp = d2i_OCSP_RESPONSE_bio(derbio, NULL);
722         BIO_free(derbio);
723         if (resp == NULL) {
724             BIO_printf(bio_err, "Error reading OCSP response\n");
725             goto end;
726         }
727     } else {
728         ret = 0;
729         goto end;
730     }
731
732  done_resp:
733
734     if (respout != NULL) {
735         derbio = bio_open_default(respout, 'w', FORMAT_ASN1);
736         if (derbio == NULL)
737             goto end;
738         i2d_OCSP_RESPONSE_bio(derbio, resp);
739         BIO_free(derbio);
740     }
741
742     i = OCSP_response_status(resp);
743     if (i != OCSP_RESPONSE_STATUS_SUCCESSFUL) {
744         BIO_printf(out, "Responder Error: %s (%d)\n",
745                    OCSP_response_status_str(i), i);
746         if (!ignore_err)
747                 goto end;
748     }
749
750     if (resp_text)
751         OCSP_RESPONSE_print(out, resp, 0);
752
753     /* If running as responder don't verify our own response */
754     if (cbio != NULL) {
755         /* If not unlimited, see if we took all we should. */
756         if (accept_count != -1 && --accept_count <= 0) {
757             ret = 0;
758             goto end;
759         }
760         BIO_free_all(cbio);
761         cbio = NULL;
762         OCSP_REQUEST_free(req);
763         req = NULL;
764         OCSP_RESPONSE_free(resp);
765         resp = NULL;
766         goto redo_accept;
767     }
768     if (ridx_filename != NULL) {
769         ret = 0;
770         goto end;
771     }
772
773     if (store == NULL) {
774         store = setup_verify(CAfile, noCAfile, CApath, noCApath,
775                              CAstore, noCAstore);
776         if (!store)
777             goto end;
778     }
779     if (vpmtouched)
780         X509_STORE_set1_param(store, vpm);
781     if (verify_certfile != NULL) {
782         if (!load_certs(verify_certfile, &verify_other, NULL,
783                         "validator certificates"))
784             goto end;
785     }
786
787     bs = OCSP_response_get1_basic(resp);
788     if (bs == NULL) {
789         BIO_printf(bio_err, "Error parsing response\n");
790         goto end;
791     }
792
793     ret = 0;
794
795     if (!noverify) {
796         if (req != NULL && ((i = OCSP_check_nonce(req, bs)) <= 0)) {
797             if (i == -1)
798                 BIO_printf(bio_err, "WARNING: no nonce in response\n");
799             else {
800                 BIO_printf(bio_err, "Nonce Verify error\n");
801                 ret = 1;
802                 goto end;
803             }
804         }
805
806         i = OCSP_basic_verify(bs, verify_other, store, verify_flags);
807         if (i <= 0 && issuers) {
808             i = OCSP_basic_verify(bs, issuers, store, OCSP_TRUSTOTHER);
809             if (i > 0)
810                 ERR_clear_error();
811         }
812         if (i <= 0) {
813             BIO_printf(bio_err, "Response Verify Failure\n");
814             ERR_print_errors(bio_err);
815             ret = 1;
816         } else {
817             BIO_printf(bio_err, "Response verify OK\n");
818         }
819     }
820
821     if (!print_ocsp_summary(out, bs, req, reqnames, ids, nsec, maxage))
822         ret = 1;
823
824  end:
825     ERR_print_errors(bio_err);
826     X509_free(signer);
827     X509_STORE_free(store);
828     X509_VERIFY_PARAM_free(vpm);
829     sk_OPENSSL_STRING_free(rsign_sigopts);
830     EVP_PKEY_free(key);
831     EVP_PKEY_free(rkey);
832     X509_free(cert);
833     sk_X509_pop_free(issuers, X509_free);
834     X509_free(rsigner);
835     sk_X509_pop_free(rca_cert, X509_free);
836     free_index(rdb);
837     BIO_free_all(cbio);
838     BIO_free_all(acbio);
839     BIO_free_all(out);
840     OCSP_REQUEST_free(req);
841     OCSP_RESPONSE_free(resp);
842     OCSP_BASICRESP_free(bs);
843     sk_OPENSSL_STRING_free(reqnames);
844     sk_OCSP_CERTID_free(ids);
845     sk_X509_pop_free(sign_other, X509_free);
846     sk_X509_pop_free(verify_other, X509_free);
847     sk_CONF_VALUE_pop_free(headers, X509V3_conf_free);
848     OPENSSL_free(thost);
849     OPENSSL_free(tport);
850     OPENSSL_free(tpath);
851
852     return ret;
853 }
854
855 #ifdef HTTP_DAEMON
856
857 static int index_changed(CA_DB *rdb)
858 {
859     struct stat sb;
860
861     if (rdb != NULL && stat(rdb->dbfname, &sb) != -1) {
862         if (rdb->dbst.st_mtime != sb.st_mtime
863             || rdb->dbst.st_ctime != sb.st_ctime
864             || rdb->dbst.st_ino != sb.st_ino
865             || rdb->dbst.st_dev != sb.st_dev) {
866             syslog(LOG_INFO, "index file changed, reloading");
867             return 1;
868         }
869     }
870     return 0;
871 }
872
873 #endif
874
875 static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert,
876                          const EVP_MD *cert_id_md, X509 *issuer,
877                          STACK_OF(OCSP_CERTID) *ids)
878 {
879     OCSP_CERTID *id;
880
881     if (issuer == NULL) {
882         BIO_printf(bio_err, "No issuer certificate specified\n");
883         return 0;
884     }
885     if (*req == NULL)
886         *req = OCSP_REQUEST_new();
887     if (*req == NULL)
888         goto err;
889     id = OCSP_cert_to_id(cert_id_md, cert, issuer);
890     if (id == NULL || !sk_OCSP_CERTID_push(ids, id))
891         goto err;
892     if (!OCSP_request_add0_id(*req, id))
893         goto err;
894     return 1;
895
896  err:
897     BIO_printf(bio_err, "Error Creating OCSP request\n");
898     return 0;
899 }
900
901 static int add_ocsp_serial(OCSP_REQUEST **req, char *serial,
902                            const EVP_MD *cert_id_md, X509 *issuer,
903                            STACK_OF(OCSP_CERTID) *ids)
904 {
905     OCSP_CERTID *id;
906     const X509_NAME *iname;
907     ASN1_BIT_STRING *ikey;
908     ASN1_INTEGER *sno;
909
910     if (issuer == NULL) {
911         BIO_printf(bio_err, "No issuer certificate specified\n");
912         return 0;
913     }
914     if (*req == NULL)
915         *req = OCSP_REQUEST_new();
916     if (*req == NULL)
917         goto err;
918     iname = X509_get_subject_name(issuer);
919     ikey = X509_get0_pubkey_bitstr(issuer);
920     sno = s2i_ASN1_INTEGER(NULL, serial);
921     if (sno == NULL) {
922         BIO_printf(bio_err, "Error converting serial number %s\n", serial);
923         return 0;
924     }
925     id = OCSP_cert_id_new(cert_id_md, iname, ikey, sno);
926     ASN1_INTEGER_free(sno);
927     if (id == NULL || !sk_OCSP_CERTID_push(ids, id))
928         goto err;
929     if (!OCSP_request_add0_id(*req, id))
930         goto err;
931     return 1;
932
933  err:
934     BIO_printf(bio_err, "Error Creating OCSP request\n");
935     return 0;
936 }
937
938 static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
939                               STACK_OF(OPENSSL_STRING) *names,
940                               STACK_OF(OCSP_CERTID) *ids, long nsec,
941                               long maxage)
942 {
943     OCSP_CERTID *id;
944     const char *name;
945     int i, status, reason;
946     ASN1_GENERALIZEDTIME *rev, *thisupd, *nextupd;
947     int ret = 1;
948
949     if (req == NULL || !sk_OPENSSL_STRING_num(names))
950         return 1;
951
952     if (bs == NULL || !sk_OCSP_CERTID_num(ids))
953         return 0;
954
955     for (i = 0; i < sk_OCSP_CERTID_num(ids); i++) {
956         id = sk_OCSP_CERTID_value(ids, i);
957         name = sk_OPENSSL_STRING_value(names, i);
958         BIO_printf(out, "%s: ", name);
959
960         if (!OCSP_resp_find_status(bs, id, &status, &reason,
961                                    &rev, &thisupd, &nextupd)) {
962             BIO_puts(out, "ERROR: No Status found.\n");
963             ret = 0;
964             continue;
965         }
966
967         /*
968          * Check validity: if invalid write to output BIO so we know which
969          * response this refers to.
970          */
971         if (!OCSP_check_validity(thisupd, nextupd, nsec, maxage)) {
972             BIO_puts(out, "WARNING: Status times invalid.\n");
973             ERR_print_errors(out);
974         }
975         BIO_printf(out, "%s\n", OCSP_cert_status_str(status));
976
977         BIO_puts(out, "\tThis Update: ");
978         ASN1_GENERALIZEDTIME_print(out, thisupd);
979         BIO_puts(out, "\n");
980
981         if (nextupd) {
982             BIO_puts(out, "\tNext Update: ");
983             ASN1_GENERALIZEDTIME_print(out, nextupd);
984             BIO_puts(out, "\n");
985         }
986
987         if (status != V_OCSP_CERTSTATUS_REVOKED)
988             continue;
989
990         if (reason != -1)
991             BIO_printf(out, "\tReason: %s\n", OCSP_crl_reason_str(reason));
992
993         BIO_puts(out, "\tRevocation Time: ");
994         ASN1_GENERALIZEDTIME_print(out, rev);
995         BIO_puts(out, "\n");
996     }
997     return ret;
998 }
999
1000 static void make_ocsp_response(BIO *err, OCSP_RESPONSE **resp, OCSP_REQUEST *req,
1001                               CA_DB *db, STACK_OF(X509) *ca, X509 *rcert,
1002                               EVP_PKEY *rkey, const EVP_MD *rmd,
1003                               STACK_OF(OPENSSL_STRING) *sigopts,
1004                               STACK_OF(X509) *rother, unsigned long flags,
1005                               int nmin, int ndays, int badsig,
1006                               const EVP_MD *resp_md)
1007 {
1008     ASN1_TIME *thisupd = NULL, *nextupd = NULL;
1009     OCSP_CERTID *cid;
1010     OCSP_BASICRESP *bs = NULL;
1011     int i, id_count;
1012     EVP_MD_CTX *mctx = NULL;
1013     EVP_PKEY_CTX *pkctx = NULL;
1014
1015     id_count = OCSP_request_onereq_count(req);
1016
1017     if (id_count <= 0) {
1018         *resp =
1019             OCSP_response_create(OCSP_RESPONSE_STATUS_MALFORMEDREQUEST, NULL);
1020         goto end;
1021     }
1022
1023     bs = OCSP_BASICRESP_new();
1024     thisupd = X509_gmtime_adj(NULL, 0);
1025     if (ndays != -1)
1026         nextupd = X509_time_adj_ex(NULL, ndays, nmin * 60, NULL);
1027
1028     /* Examine each certificate id in the request */
1029     for (i = 0; i < id_count; i++) {
1030         OCSP_ONEREQ *one;
1031         ASN1_INTEGER *serial;
1032         char **inf;
1033         int jj;
1034         int found = 0;
1035         ASN1_OBJECT *cert_id_md_oid;
1036         const EVP_MD *cert_id_md;
1037         OCSP_CERTID *cid_resp_md = NULL;
1038
1039         one = OCSP_request_onereq_get0(req, i);
1040         cid = OCSP_onereq_get0_id(one);
1041
1042         OCSP_id_get0_info(NULL, &cert_id_md_oid, NULL, NULL, cid);
1043
1044         cert_id_md = EVP_get_digestbyobj(cert_id_md_oid);
1045         if (cert_id_md == NULL) {
1046             *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR,
1047                                          NULL);
1048             goto end;
1049         }
1050         for (jj = 0; jj < sk_X509_num(ca) && !found; jj++) {
1051             X509 *ca_cert = sk_X509_value(ca, jj);
1052             OCSP_CERTID *ca_id = OCSP_cert_to_id(cert_id_md, NULL, ca_cert);
1053
1054             if (OCSP_id_issuer_cmp(ca_id, cid) == 0) {
1055                 found = 1;
1056                 if (resp_md != NULL)
1057                     cid_resp_md = OCSP_cert_to_id(resp_md, NULL, ca_cert);
1058             }
1059             OCSP_CERTID_free(ca_id);
1060         }
1061         OCSP_id_get0_info(NULL, NULL, NULL, &serial, cid);
1062         inf = lookup_serial(db, serial);
1063
1064         /* at this point, we can have cid be an alias of cid_resp_md */
1065         cid = (cid_resp_md != NULL) ? cid_resp_md : cid;
1066
1067         if (!found) {
1068             OCSP_basic_add1_status(bs, cid,
1069                                    V_OCSP_CERTSTATUS_UNKNOWN,
1070                                    0, NULL, thisupd, nextupd);
1071             continue;
1072         }
1073         if (inf == NULL) {
1074             OCSP_basic_add1_status(bs, cid,
1075                                    V_OCSP_CERTSTATUS_UNKNOWN,
1076                                    0, NULL, thisupd, nextupd);
1077         } else if (inf[DB_type][0] == DB_TYPE_VAL) {
1078             OCSP_basic_add1_status(bs, cid,
1079                                    V_OCSP_CERTSTATUS_GOOD,
1080                                    0, NULL, thisupd, nextupd);
1081         } else if (inf[DB_type][0] == DB_TYPE_REV) {
1082             ASN1_OBJECT *inst = NULL;
1083             ASN1_TIME *revtm = NULL;
1084             ASN1_GENERALIZEDTIME *invtm = NULL;
1085             OCSP_SINGLERESP *single;
1086             int reason = -1;
1087
1088             unpack_revinfo(&revtm, &reason, &inst, &invtm, inf[DB_rev_date]);
1089             single = OCSP_basic_add1_status(bs, cid,
1090                                             V_OCSP_CERTSTATUS_REVOKED,
1091                                             reason, revtm, thisupd, nextupd);
1092             if (invtm != NULL)
1093                 OCSP_SINGLERESP_add1_ext_i2d(single, NID_invalidity_date,
1094                                              invtm, 0, 0);
1095             else if (inst != NULL)
1096                 OCSP_SINGLERESP_add1_ext_i2d(single,
1097                                              NID_hold_instruction_code, inst,
1098                                              0, 0);
1099             ASN1_OBJECT_free(inst);
1100             ASN1_TIME_free(revtm);
1101             ASN1_GENERALIZEDTIME_free(invtm);
1102         }
1103         OCSP_CERTID_free(cid_resp_md);
1104     }
1105
1106     OCSP_copy_nonce(bs, req);
1107
1108     mctx = EVP_MD_CTX_new();
1109     if ( mctx == NULL || !EVP_DigestSignInit(mctx, &pkctx, rmd, NULL, rkey)) {
1110         *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR, NULL);
1111         goto end;
1112     }
1113     for (i = 0; i < sk_OPENSSL_STRING_num(sigopts); i++) {
1114         char *sigopt = sk_OPENSSL_STRING_value(sigopts, i);
1115
1116         if (pkey_ctrl_string(pkctx, sigopt) <= 0) {
1117             BIO_printf(err, "parameter error \"%s\"\n", sigopt);
1118             ERR_print_errors(bio_err);
1119             *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR,
1120                                          NULL);
1121             goto end;
1122         }
1123     }
1124     if (!OCSP_basic_sign_ctx(bs, rcert, mctx, rother, flags)) {
1125         *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR, bs);
1126         goto end;
1127     }
1128
1129     if (badsig) {
1130         const ASN1_OCTET_STRING *sig = OCSP_resp_get0_signature(bs);
1131         corrupt_signature(sig);
1132     }
1133
1134     *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_SUCCESSFUL, bs);
1135
1136  end:
1137     EVP_MD_CTX_free(mctx);
1138     ASN1_TIME_free(thisupd);
1139     ASN1_TIME_free(nextupd);
1140     OCSP_BASICRESP_free(bs);
1141 }
1142
1143 static char **lookup_serial(CA_DB *db, ASN1_INTEGER *ser)
1144 {
1145     int i;
1146     BIGNUM *bn = NULL;
1147     char *itmp, *row[DB_NUMBER], **rrow;
1148     for (i = 0; i < DB_NUMBER; i++)
1149         row[i] = NULL;
1150     bn = ASN1_INTEGER_to_BN(ser, NULL);
1151     OPENSSL_assert(bn);         /* FIXME: should report an error at this
1152                                  * point and abort */
1153     if (BN_is_zero(bn))
1154         itmp = OPENSSL_strdup("00");
1155     else
1156         itmp = BN_bn2hex(bn);
1157     row[DB_serial] = itmp;
1158     BN_free(bn);
1159     rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
1160     OPENSSL_free(itmp);
1161     return rrow;
1162 }
1163
1164 static int do_responder(OCSP_REQUEST **preq, BIO **pcbio, BIO *acbio,
1165                         int timeout)
1166 {
1167 #ifndef OPENSSL_NO_SOCK
1168     return http_server_get_asn1_req(ASN1_ITEM_rptr(OCSP_RESPONSE),
1169                                     (ASN1_VALUE **)preq, NULL, pcbio, acbio,
1170                                     prog, 1 /* accept_get */, timeout);
1171 #else
1172     BIO_printf(bio_err,
1173                "Error getting OCSP request - sockets not supported\n");
1174     *preq = NULL;
1175     return 0;
1176 #endif
1177 }
1178
1179 static int send_ocsp_response(BIO *cbio, const OCSP_RESPONSE *resp)
1180 {
1181 #ifndef OPENSSL_NO_SOCK
1182     return http_server_send_asn1_resp(cbio, "application/ocsp-response",
1183                                       ASN1_ITEM_rptr(OCSP_RESPONSE),
1184                                       (const ASN1_VALUE *)resp);
1185 #else
1186     BIO_printf(bio_err,
1187                "Error sending OCSP response - sockets not supported\n");
1188     return 0;
1189 #endif
1190 }
1191
1192 #ifndef OPENSSL_NO_SOCK
1193 OCSP_RESPONSE *process_responder(OCSP_REQUEST *req,
1194                                  const char *host, const char *path,
1195                                  const char *port, int use_ssl,
1196                                  STACK_OF(CONF_VALUE) *headers,
1197                                  int req_timeout)
1198 {
1199     SSL_CTX *ctx = NULL;
1200     OCSP_RESPONSE *resp = NULL;
1201
1202     if (use_ssl == 1) {
1203         ctx = SSL_CTX_new(TLS_client_method());
1204         if (ctx == NULL) {
1205             BIO_printf(bio_err, "Error creating SSL context.\n");
1206             goto end;
1207         }
1208         SSL_CTX_set_mode(ctx, SSL_MODE_AUTO_RETRY);
1209     }
1210
1211     resp = (OCSP_RESPONSE *)
1212         app_http_post_asn1(host, port, path, NULL, NULL /* no proxy used */,
1213                            ctx, headers, "application/ocsp-request",
1214                            (ASN1_VALUE *)req, ASN1_ITEM_rptr(OCSP_REQUEST),
1215                            req_timeout, ASN1_ITEM_rptr(OCSP_RESPONSE));
1216
1217     if (resp == NULL)
1218         BIO_printf(bio_err, "Error querying OCSP responder\n");
1219
1220  end:
1221     SSL_CTX_free(ctx);
1222     return resp;
1223 }
1224 #endif