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