hkdf: when HMAC key is all zeros, still set a valid key length
[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;
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             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, "responder certificate");
565         if (rsigner == NULL) {
566             BIO_printf(bio_err, "Error loading responder certificate\n");
567             goto end;
568         }
569         if (!load_certs(rca_filename, &rca_cert, NULL, "CA certificates"))
570             goto end;
571         if (rcertfile != NULL) {
572             if (!load_certs(rcertfile, &rother, NULL,
573                             "responder other certificates"))
574                 goto end;
575         }
576         if (!app_passwd(passinarg, NULL, &passin, NULL)) {
577             BIO_printf(bio_err, "Error getting password\n");
578             goto end;
579         }
580         rkey = load_key(rkeyfile, FORMAT_PEM, 0, passin, NULL,
581                         "responder private key");
582         if (rkey == NULL)
583             goto end;
584     }
585
586     if (ridx_filename != NULL
587         && (rkey == NULL || rsigner == NULL || rca_cert == NULL)) {
588         BIO_printf(bio_err,
589                    "Responder mode requires certificate, key, and CA.\n");
590         goto end;
591     }
592
593     if (ridx_filename != NULL) {
594         rdb = load_index(ridx_filename, NULL);
595         if (rdb == NULL || index_index(rdb) <= 0) {
596             ret = 1;
597             goto end;
598         }
599     }
600
601 #ifdef HTTP_DAEMON
602     if (multi && acbio != NULL)
603         spawn_loop(prog);
604     if (acbio != NULL && req_timeout > 0)
605         signal(SIGALRM, socket_timeout);
606 #endif
607
608     if (acbio != NULL)
609         log_message(prog, LOG_INFO, "waiting for OCSP client connections...");
610
611 redo_accept:
612
613     if (acbio != NULL) {
614 #ifdef HTTP_DAEMON
615         if (index_changed(rdb)) {
616             CA_DB *newrdb = load_index(ridx_filename, NULL);
617
618             if (newrdb != NULL && index_index(newrdb) > 0) {
619                 free_index(rdb);
620                 rdb = newrdb;
621             } else {
622                 free_index(newrdb);
623                 log_message(prog, LOG_ERR, "error reloading updated index: %s",
624                             ridx_filename);
625             }
626         }
627 #endif
628
629         req = NULL;
630         res = do_responder(&req, &cbio, acbio, req_timeout);
631         if (res == 0)
632             goto redo_accept;
633
634         if (req == NULL) {
635             if (res == 1) {
636                 resp =
637                     OCSP_response_create(OCSP_RESPONSE_STATUS_MALFORMEDREQUEST,
638                                          NULL);
639                 send_ocsp_response(cbio, resp);
640             }
641             goto done_resp;
642         }
643     }
644
645     if (req == NULL
646         && (signfile != NULL || reqout != NULL
647             || host != NULL || add_nonce || ridx_filename != NULL)) {
648         BIO_printf(bio_err, "Need an OCSP request for this operation!\n");
649         goto end;
650     }
651
652     if (req != NULL && add_nonce) {
653         if (!OCSP_request_add1_nonce(req, NULL, -1))
654             goto end;
655     }
656
657     if (signfile != NULL) {
658         if (keyfile == NULL)
659             keyfile = signfile;
660         signer = load_cert(signfile, "signer certificate");
661         if (signer == NULL) {
662             BIO_printf(bio_err, "Error loading signer certificate\n");
663             goto end;
664         }
665         if (sign_certfile != NULL) {
666             if (!load_certs(sign_certfile, &sign_other, NULL,
667                             "signer certificates"))
668                 goto end;
669         }
670         key = load_key(keyfile, FORMAT_PEM, 0, NULL, NULL,
671                        "signer private key");
672         if (key == NULL)
673             goto end;
674
675         if (!OCSP_request_sign
676             (req, signer, key, NULL, sign_other, sign_flags)) {
677             BIO_printf(bio_err, "Error signing OCSP request\n");
678             goto end;
679         }
680     }
681
682     if (req_text && req != NULL)
683         OCSP_REQUEST_print(out, req, 0);
684
685     if (reqout != NULL) {
686         derbio = bio_open_default(reqout, 'w', FORMAT_ASN1);
687         if (derbio == NULL)
688             goto end;
689         i2d_OCSP_REQUEST_bio(derbio, req);
690         BIO_free(derbio);
691     }
692
693     if (rdb != NULL) {
694         make_ocsp_response(bio_err, &resp, req, rdb, rca_cert, rsigner, rkey,
695                            rsign_md, rsign_sigopts, rother, rflags, nmin, ndays, badsig,
696                            resp_certid_md);
697         if (cbio != NULL)
698             send_ocsp_response(cbio, resp);
699     } else if (host != NULL) {
700 #ifndef OPENSSL_NO_SOCK
701         resp = process_responder(req, host, path,
702                                  port, use_ssl, headers, req_timeout);
703         if (resp == NULL)
704             goto end;
705 #else
706         BIO_printf(bio_err,
707                    "Error creating connect BIO - sockets not supported\n");
708         goto end;
709 #endif
710     } else if (respin != NULL) {
711         derbio = bio_open_default(respin, 'r', FORMAT_ASN1);
712         if (derbio == NULL)
713             goto end;
714         resp = d2i_OCSP_RESPONSE_bio(derbio, NULL);
715         BIO_free(derbio);
716         if (resp == NULL) {
717             BIO_printf(bio_err, "Error reading OCSP response\n");
718             goto end;
719         }
720     } else {
721         ret = 0;
722         goto end;
723     }
724
725  done_resp:
726
727     if (respout != NULL) {
728         derbio = bio_open_default(respout, 'w', FORMAT_ASN1);
729         if (derbio == NULL)
730             goto end;
731         i2d_OCSP_RESPONSE_bio(derbio, resp);
732         BIO_free(derbio);
733     }
734
735     i = OCSP_response_status(resp);
736     if (i != OCSP_RESPONSE_STATUS_SUCCESSFUL) {
737         BIO_printf(out, "Responder Error: %s (%d)\n",
738                    OCSP_response_status_str(i), i);
739         if (!ignore_err)
740                 goto end;
741     }
742
743     if (resp_text)
744         OCSP_RESPONSE_print(out, resp, 0);
745
746     /* If running as responder don't verify our own response */
747     if (cbio != NULL) {
748         /* If not unlimited, see if we took all we should. */
749         if (accept_count != -1 && --accept_count <= 0) {
750             ret = 0;
751             goto end;
752         }
753         BIO_free_all(cbio);
754         cbio = NULL;
755         OCSP_REQUEST_free(req);
756         req = NULL;
757         OCSP_RESPONSE_free(resp);
758         resp = NULL;
759         goto redo_accept;
760     }
761     if (ridx_filename != NULL) {
762         ret = 0;
763         goto end;
764     }
765
766     if (store == NULL) {
767         store = setup_verify(CAfile, noCAfile, CApath, noCApath,
768                              CAstore, noCAstore);
769         if (!store)
770             goto end;
771     }
772     if (vpmtouched)
773         X509_STORE_set1_param(store, vpm);
774     if (verify_certfile != NULL) {
775         if (!load_certs(verify_certfile, &verify_other, NULL,
776                         "validator certificates"))
777             goto end;
778     }
779
780     bs = OCSP_response_get1_basic(resp);
781     if (bs == NULL) {
782         BIO_printf(bio_err, "Error parsing response\n");
783         goto end;
784     }
785
786     ret = 0;
787
788     if (!noverify) {
789         if (req != NULL && ((i = OCSP_check_nonce(req, bs)) <= 0)) {
790             if (i == -1)
791                 BIO_printf(bio_err, "WARNING: no nonce in response\n");
792             else {
793                 BIO_printf(bio_err, "Nonce Verify error\n");
794                 ret = 1;
795                 goto end;
796             }
797         }
798
799         i = OCSP_basic_verify(bs, verify_other, store, verify_flags);
800         if (i <= 0 && issuers) {
801             i = OCSP_basic_verify(bs, issuers, store, OCSP_TRUSTOTHER);
802             if (i > 0)
803                 ERR_clear_error();
804         }
805         if (i <= 0) {
806             BIO_printf(bio_err, "Response Verify Failure\n");
807             ERR_print_errors(bio_err);
808             ret = 1;
809         } else {
810             BIO_printf(bio_err, "Response verify OK\n");
811         }
812     }
813
814     if (!print_ocsp_summary(out, bs, req, reqnames, ids, nsec, maxage))
815         ret = 1;
816
817  end:
818     ERR_print_errors(bio_err);
819     X509_free(signer);
820     X509_STORE_free(store);
821     X509_VERIFY_PARAM_free(vpm);
822     sk_OPENSSL_STRING_free(rsign_sigopts);
823     EVP_PKEY_free(key);
824     EVP_PKEY_free(rkey);
825     X509_free(cert);
826     sk_X509_pop_free(issuers, X509_free);
827     X509_free(rsigner);
828     sk_X509_pop_free(rca_cert, X509_free);
829     free_index(rdb);
830     BIO_free_all(cbio);
831     BIO_free_all(acbio);
832     BIO_free_all(out);
833     OCSP_REQUEST_free(req);
834     OCSP_RESPONSE_free(resp);
835     OCSP_BASICRESP_free(bs);
836     sk_OPENSSL_STRING_free(reqnames);
837     sk_OCSP_CERTID_free(ids);
838     sk_X509_pop_free(sign_other, X509_free);
839     sk_X509_pop_free(verify_other, X509_free);
840     sk_CONF_VALUE_pop_free(headers, X509V3_conf_free);
841     OPENSSL_free(thost);
842     OPENSSL_free(tport);
843     OPENSSL_free(tpath);
844
845     return ret;
846 }
847
848 #ifdef HTTP_DAEMON
849
850 static int index_changed(CA_DB *rdb)
851 {
852     struct stat sb;
853
854     if (rdb != NULL && stat(rdb->dbfname, &sb) != -1) {
855         if (rdb->dbst.st_mtime != sb.st_mtime
856             || rdb->dbst.st_ctime != sb.st_ctime
857             || rdb->dbst.st_ino != sb.st_ino
858             || rdb->dbst.st_dev != sb.st_dev) {
859             syslog(LOG_INFO, "index file changed, reloading");
860             return 1;
861         }
862     }
863     return 0;
864 }
865
866 #endif
867
868 static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert,
869                          const EVP_MD *cert_id_md, X509 *issuer,
870                          STACK_OF(OCSP_CERTID) *ids)
871 {
872     OCSP_CERTID *id;
873
874     if (issuer == NULL) {
875         BIO_printf(bio_err, "No issuer certificate specified\n");
876         return 0;
877     }
878     if (*req == NULL)
879         *req = OCSP_REQUEST_new();
880     if (*req == NULL)
881         goto err;
882     id = OCSP_cert_to_id(cert_id_md, cert, issuer);
883     if (id == NULL || !sk_OCSP_CERTID_push(ids, id))
884         goto err;
885     if (!OCSP_request_add0_id(*req, id))
886         goto err;
887     return 1;
888
889  err:
890     BIO_printf(bio_err, "Error Creating OCSP request\n");
891     return 0;
892 }
893
894 static int add_ocsp_serial(OCSP_REQUEST **req, char *serial,
895                            const EVP_MD *cert_id_md, X509 *issuer,
896                            STACK_OF(OCSP_CERTID) *ids)
897 {
898     OCSP_CERTID *id;
899     const X509_NAME *iname;
900     ASN1_BIT_STRING *ikey;
901     ASN1_INTEGER *sno;
902
903     if (issuer == NULL) {
904         BIO_printf(bio_err, "No issuer certificate specified\n");
905         return 0;
906     }
907     if (*req == NULL)
908         *req = OCSP_REQUEST_new();
909     if (*req == NULL)
910         goto err;
911     iname = X509_get_subject_name(issuer);
912     ikey = X509_get0_pubkey_bitstr(issuer);
913     sno = s2i_ASN1_INTEGER(NULL, serial);
914     if (sno == NULL) {
915         BIO_printf(bio_err, "Error converting serial number %s\n", serial);
916         return 0;
917     }
918     id = OCSP_cert_id_new(cert_id_md, iname, ikey, sno);
919     ASN1_INTEGER_free(sno);
920     if (id == NULL || !sk_OCSP_CERTID_push(ids, id))
921         goto err;
922     if (!OCSP_request_add0_id(*req, id))
923         goto err;
924     return 1;
925
926  err:
927     BIO_printf(bio_err, "Error Creating OCSP request\n");
928     return 0;
929 }
930
931 static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
932                               STACK_OF(OPENSSL_STRING) *names,
933                               STACK_OF(OCSP_CERTID) *ids, long nsec,
934                               long maxage)
935 {
936     OCSP_CERTID *id;
937     const char *name;
938     int i, status, reason;
939     ASN1_GENERALIZEDTIME *rev, *thisupd, *nextupd;
940     int ret = 1;
941
942     if (req == NULL || !sk_OPENSSL_STRING_num(names))
943         return 1;
944
945     if (bs == NULL || !sk_OCSP_CERTID_num(ids))
946         return 0;
947
948     for (i = 0; i < sk_OCSP_CERTID_num(ids); i++) {
949         id = sk_OCSP_CERTID_value(ids, i);
950         name = sk_OPENSSL_STRING_value(names, i);
951         BIO_printf(out, "%s: ", name);
952
953         if (!OCSP_resp_find_status(bs, id, &status, &reason,
954                                    &rev, &thisupd, &nextupd)) {
955             BIO_puts(out, "ERROR: No Status found.\n");
956             ret = 0;
957             continue;
958         }
959
960         /*
961          * Check validity: if invalid write to output BIO so we know which
962          * response this refers to.
963          */
964         if (!OCSP_check_validity(thisupd, nextupd, nsec, maxage)) {
965             BIO_puts(out, "WARNING: Status times invalid.\n");
966             ERR_print_errors(out);
967         }
968         BIO_printf(out, "%s\n", OCSP_cert_status_str(status));
969
970         BIO_puts(out, "\tThis Update: ");
971         ASN1_GENERALIZEDTIME_print(out, thisupd);
972         BIO_puts(out, "\n");
973
974         if (nextupd) {
975             BIO_puts(out, "\tNext Update: ");
976             ASN1_GENERALIZEDTIME_print(out, nextupd);
977             BIO_puts(out, "\n");
978         }
979
980         if (status != V_OCSP_CERTSTATUS_REVOKED)
981             continue;
982
983         if (reason != -1)
984             BIO_printf(out, "\tReason: %s\n", OCSP_crl_reason_str(reason));
985
986         BIO_puts(out, "\tRevocation Time: ");
987         ASN1_GENERALIZEDTIME_print(out, rev);
988         BIO_puts(out, "\n");
989     }
990     return ret;
991 }
992
993 static void make_ocsp_response(BIO *err, OCSP_RESPONSE **resp, OCSP_REQUEST *req,
994                               CA_DB *db, STACK_OF(X509) *ca, X509 *rcert,
995                               EVP_PKEY *rkey, const EVP_MD *rmd,
996                               STACK_OF(OPENSSL_STRING) *sigopts,
997                               STACK_OF(X509) *rother, unsigned long flags,
998                               int nmin, int ndays, int badsig,
999                               const EVP_MD *resp_md)
1000 {
1001     ASN1_TIME *thisupd = NULL, *nextupd = NULL;
1002     OCSP_CERTID *cid;
1003     OCSP_BASICRESP *bs = NULL;
1004     int i, id_count;
1005     EVP_MD_CTX *mctx = NULL;
1006     EVP_PKEY_CTX *pkctx = NULL;
1007
1008     id_count = OCSP_request_onereq_count(req);
1009
1010     if (id_count <= 0) {
1011         *resp =
1012             OCSP_response_create(OCSP_RESPONSE_STATUS_MALFORMEDREQUEST, NULL);
1013         goto end;
1014     }
1015
1016     bs = OCSP_BASICRESP_new();
1017     thisupd = X509_gmtime_adj(NULL, 0);
1018     if (ndays != -1)
1019         nextupd = X509_time_adj_ex(NULL, ndays, nmin * 60, NULL);
1020
1021     /* Examine each certificate id in the request */
1022     for (i = 0; i < id_count; i++) {
1023         OCSP_ONEREQ *one;
1024         ASN1_INTEGER *serial;
1025         char **inf;
1026         int jj;
1027         int found = 0;
1028         ASN1_OBJECT *cert_id_md_oid;
1029         const EVP_MD *cert_id_md;
1030         OCSP_CERTID *cid_resp_md = NULL;
1031
1032         one = OCSP_request_onereq_get0(req, i);
1033         cid = OCSP_onereq_get0_id(one);
1034
1035         OCSP_id_get0_info(NULL, &cert_id_md_oid, NULL, NULL, cid);
1036
1037         cert_id_md = EVP_get_digestbyobj(cert_id_md_oid);
1038         if (cert_id_md == NULL) {
1039             *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR,
1040                                          NULL);
1041             goto end;
1042         }
1043         for (jj = 0; jj < sk_X509_num(ca) && !found; jj++) {
1044             X509 *ca_cert = sk_X509_value(ca, jj);
1045             OCSP_CERTID *ca_id = OCSP_cert_to_id(cert_id_md, NULL, ca_cert);
1046
1047             if (OCSP_id_issuer_cmp(ca_id, cid) == 0) {
1048                 found = 1;
1049                 if (resp_md != NULL)
1050                     cid_resp_md = OCSP_cert_to_id(resp_md, NULL, ca_cert);
1051             }
1052             OCSP_CERTID_free(ca_id);
1053         }
1054         OCSP_id_get0_info(NULL, NULL, NULL, &serial, cid);
1055         inf = lookup_serial(db, serial);
1056
1057         /* at this point, we can have cid be an alias of cid_resp_md */
1058         cid = (cid_resp_md != NULL) ? cid_resp_md : cid;
1059
1060         if (!found) {
1061             OCSP_basic_add1_status(bs, cid,
1062                                    V_OCSP_CERTSTATUS_UNKNOWN,
1063                                    0, NULL, thisupd, nextupd);
1064             continue;
1065         }
1066         if (inf == NULL) {
1067             OCSP_basic_add1_status(bs, cid,
1068                                    V_OCSP_CERTSTATUS_UNKNOWN,
1069                                    0, NULL, thisupd, nextupd);
1070         } else if (inf[DB_type][0] == DB_TYPE_VAL) {
1071             OCSP_basic_add1_status(bs, cid,
1072                                    V_OCSP_CERTSTATUS_GOOD,
1073                                    0, NULL, thisupd, nextupd);
1074         } else if (inf[DB_type][0] == DB_TYPE_REV) {
1075             ASN1_OBJECT *inst = NULL;
1076             ASN1_TIME *revtm = NULL;
1077             ASN1_GENERALIZEDTIME *invtm = NULL;
1078             OCSP_SINGLERESP *single;
1079             int reason = -1;
1080
1081             unpack_revinfo(&revtm, &reason, &inst, &invtm, inf[DB_rev_date]);
1082             single = OCSP_basic_add1_status(bs, cid,
1083                                             V_OCSP_CERTSTATUS_REVOKED,
1084                                             reason, revtm, thisupd, nextupd);
1085             if (invtm != NULL)
1086                 OCSP_SINGLERESP_add1_ext_i2d(single, NID_invalidity_date,
1087                                              invtm, 0, 0);
1088             else if (inst != NULL)
1089                 OCSP_SINGLERESP_add1_ext_i2d(single,
1090                                              NID_hold_instruction_code, inst,
1091                                              0, 0);
1092             ASN1_OBJECT_free(inst);
1093             ASN1_TIME_free(revtm);
1094             ASN1_GENERALIZEDTIME_free(invtm);
1095         }
1096         OCSP_CERTID_free(cid_resp_md);
1097     }
1098
1099     OCSP_copy_nonce(bs, req);
1100
1101     mctx = EVP_MD_CTX_new();
1102     if ( mctx == NULL || !EVP_DigestSignInit(mctx, &pkctx, rmd, NULL, rkey)) {
1103         *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR, NULL);
1104         goto end;
1105     }
1106     for (i = 0; i < sk_OPENSSL_STRING_num(sigopts); i++) {
1107         char *sigopt = sk_OPENSSL_STRING_value(sigopts, i);
1108
1109         if (pkey_ctrl_string(pkctx, sigopt) <= 0) {
1110             BIO_printf(err, "parameter error \"%s\"\n", sigopt);
1111             ERR_print_errors(bio_err);
1112             *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR,
1113                                          NULL);
1114             goto end;
1115         }
1116     }
1117     if (!OCSP_basic_sign_ctx(bs, rcert, mctx, rother, flags)) {
1118         *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR, bs);
1119         goto end;
1120     }
1121
1122     if (badsig) {
1123         const ASN1_OCTET_STRING *sig = OCSP_resp_get0_signature(bs);
1124         corrupt_signature(sig);
1125     }
1126
1127     *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_SUCCESSFUL, bs);
1128
1129  end:
1130     EVP_MD_CTX_free(mctx);
1131     ASN1_TIME_free(thisupd);
1132     ASN1_TIME_free(nextupd);
1133     OCSP_BASICRESP_free(bs);
1134 }
1135
1136 static char **lookup_serial(CA_DB *db, ASN1_INTEGER *ser)
1137 {
1138     int i;
1139     BIGNUM *bn = NULL;
1140     char *itmp, *row[DB_NUMBER], **rrow;
1141     for (i = 0; i < DB_NUMBER; i++)
1142         row[i] = NULL;
1143     bn = ASN1_INTEGER_to_BN(ser, NULL);
1144     OPENSSL_assert(bn);         /* FIXME: should report an error at this
1145                                  * point and abort */
1146     if (BN_is_zero(bn))
1147         itmp = OPENSSL_strdup("00");
1148     else
1149         itmp = BN_bn2hex(bn);
1150     row[DB_serial] = itmp;
1151     BN_free(bn);
1152     rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
1153     OPENSSL_free(itmp);
1154     return rrow;
1155 }
1156
1157 static int do_responder(OCSP_REQUEST **preq, BIO **pcbio, BIO *acbio,
1158                         int timeout)
1159 {
1160 #ifndef OPENSSL_NO_SOCK
1161     return http_server_get_asn1_req(ASN1_ITEM_rptr(OCSP_RESPONSE),
1162                                     (ASN1_VALUE **)preq, NULL, pcbio, acbio,
1163                                     prog, 1 /* accept_get */, timeout);
1164 #else
1165     BIO_printf(bio_err,
1166                "Error getting OCSP request - sockets not supported\n");
1167     *preq = NULL;
1168     return 0;
1169 #endif
1170 }
1171
1172 static int send_ocsp_response(BIO *cbio, const OCSP_RESPONSE *resp)
1173 {
1174 #ifndef OPENSSL_NO_SOCK
1175     return http_server_send_asn1_resp(cbio, "application/ocsp-response",
1176                                       ASN1_ITEM_rptr(OCSP_RESPONSE),
1177                                       (const ASN1_VALUE *)resp);
1178 #else
1179     BIO_printf(bio_err,
1180                "Error sending OCSP response - sockets not supported\n");
1181     return 0;
1182 #endif
1183 }
1184
1185 #ifndef OPENSSL_NO_SOCK
1186 OCSP_RESPONSE *process_responder(OCSP_REQUEST *req,
1187                                  const char *host, const char *path,
1188                                  const char *port, int use_ssl,
1189                                  STACK_OF(CONF_VALUE) *headers,
1190                                  int req_timeout)
1191 {
1192     SSL_CTX *ctx = NULL;
1193     OCSP_RESPONSE *resp = NULL;
1194
1195     if (use_ssl == 1) {
1196         ctx = SSL_CTX_new(TLS_client_method());
1197         if (ctx == NULL) {
1198             BIO_printf(bio_err, "Error creating SSL context.\n");
1199             goto end;
1200         }
1201         SSL_CTX_set_mode(ctx, SSL_MODE_AUTO_RETRY);
1202     }
1203
1204     resp = (OCSP_RESPONSE *)
1205         app_http_post_asn1(host, port, path, NULL, NULL /* no proxy used */,
1206                            ctx, headers, "application/ocsp-request",
1207                            (ASN1_VALUE *)req, ASN1_ITEM_rptr(OCSP_REQUEST),
1208                            req_timeout, ASN1_ITEM_rptr(OCSP_RESPONSE));
1209
1210     if (resp == NULL)
1211         BIO_printf(bio_err, "Error querying OCSP responder\n");
1212
1213  end:
1214     SSL_CTX_free(ctx);
1215     return resp;
1216 }
1217 #endif