cmdline app: add provider commandline options.
[openssl.git] / apps / ocsp.c
1 /*
2  * Copyright 2001-2018 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_NO_OCSP
13 NON_EMPTY_TRANSLATION_UNIT
14 #else
15 # ifdef OPENSSL_SYS_VMS
16 #  define _XOPEN_SOURCE_EXTENDED/* So fd_set and friends get properly defined
17                                  * on OpenVMS */
18 # endif
19
20 # include <stdio.h>
21 # include <stdlib.h>
22 # include <string.h>
23 # include <time.h>
24 # include <ctype.h>
25
26 /* Needs to be included before the openssl headers */
27 # include "apps.h"
28 # include "progs.h"
29 # include "internal/sockets.h"
30 # include <openssl/e_os2.h>
31 # include <openssl/crypto.h>
32 # include <openssl/err.h>
33 # include <openssl/ssl.h>
34 # include <openssl/evp.h>
35 # include <openssl/bn.h>
36 # include <openssl/x509v3.h>
37 # include <openssl/rand.h>
38
39 #ifndef HAVE_FORK
40 # if defined(OPENSSL_SYS_VMS) || defined(OPENSSL_SYS_WINDOWS)
41 #  define HAVE_FORK 0
42 # else
43 #  define HAVE_FORK 1
44 # endif
45 #endif
46
47 #if HAVE_FORK
48 # undef NO_FORK
49 #else
50 # define NO_FORK
51 #endif
52
53 # if !defined(NO_FORK) && !defined(OPENSSL_NO_SOCK) \
54      && !defined(OPENSSL_NO_POSIX_IO)
55 #  define OCSP_DAEMON
56 #  include <sys/types.h>
57 #  include <sys/wait.h>
58 #  include <syslog.h>
59 #  include <signal.h>
60 #  define MAXERRLEN 1000 /* limit error text sent to syslog to 1000 bytes */
61 # else
62 #  undef LOG_INFO
63 #  undef LOG_WARNING
64 #  undef LOG_ERR
65 #  define LOG_INFO      0
66 #  define LOG_WARNING   1
67 #  define LOG_ERR       2
68 # endif
69
70 # if defined(OPENSSL_SYS_VXWORKS)
71 /* not supported */
72 int setpgid(pid_t pid, pid_t pgid)
73 {
74     errno = ENOSYS;
75     return 0;
76 }
77 /* not supported */
78 pid_t fork(void)
79 {
80     errno = ENOSYS;
81     return (pid_t) -1;
82 }
83 # endif
84 /* Maximum leeway in validity period: default 5 minutes */
85 # define MAX_VALIDITY_PERIOD    (5 * 60)
86
87 static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert,
88                          const EVP_MD *cert_id_md, X509 *issuer,
89                          STACK_OF(OCSP_CERTID) *ids);
90 static int add_ocsp_serial(OCSP_REQUEST **req, char *serial,
91                            const EVP_MD *cert_id_md, X509 *issuer,
92                            STACK_OF(OCSP_CERTID) *ids);
93 static void print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
94                               STACK_OF(OPENSSL_STRING) *names,
95                               STACK_OF(OCSP_CERTID) *ids, long nsec,
96                               long maxage);
97 static void make_ocsp_response(BIO *err, OCSP_RESPONSE **resp, OCSP_REQUEST *req,
98                               CA_DB *db, STACK_OF(X509) *ca, X509 *rcert,
99                               EVP_PKEY *rkey, const EVP_MD *md,
100                               STACK_OF(OPENSSL_STRING) *sigopts,
101                               STACK_OF(X509) *rother, unsigned long flags,
102                               int nmin, int ndays, int badsig,
103                               const EVP_MD *resp_md);
104
105 static char **lookup_serial(CA_DB *db, ASN1_INTEGER *ser);
106 static BIO *init_responder(const char *port);
107 static int do_responder(OCSP_REQUEST **preq, BIO **pcbio, BIO *acbio, int timeout);
108 static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp);
109 static void log_message(int level, const char *fmt, ...);
110 static char *prog;
111 static int multi = 0;
112
113 # ifdef OCSP_DAEMON
114 static int acfd = (int) INVALID_SOCKET;
115 static int index_changed(CA_DB *);
116 static void spawn_loop(void);
117 static int print_syslog(const char *str, size_t len, void *levPtr);
118 static void socket_timeout(int signum);
119 # endif
120
121 typedef enum OPTION_choice {
122     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
123     OPT_OUTFILE, OPT_TIMEOUT, OPT_URL, OPT_HOST, OPT_PORT,
124     OPT_IGNORE_ERR, OPT_NOVERIFY, OPT_NONCE, OPT_NO_NONCE,
125     OPT_RESP_NO_CERTS, OPT_RESP_KEY_ID, OPT_NO_CERTS,
126     OPT_NO_SIGNATURE_VERIFY, OPT_NO_CERT_VERIFY, OPT_NO_CHAIN,
127     OPT_NO_CERT_CHECKS, OPT_NO_EXPLICIT, OPT_TRUST_OTHER,
128     OPT_NO_INTERN, OPT_BADSIG, OPT_TEXT, OPT_REQ_TEXT, OPT_RESP_TEXT,
129     OPT_REQIN, OPT_RESPIN, OPT_SIGNER, OPT_VAFILE, OPT_SIGN_OTHER,
130     OPT_VERIFY_OTHER, OPT_CAFILE, OPT_CAPATH, OPT_CASTORE, OPT_NOCAFILE,
131     OPT_NOCAPATH, OPT_NOCASTORE,
132     OPT_VALIDITY_PERIOD, OPT_STATUS_AGE, OPT_SIGNKEY, OPT_REQOUT,
133     OPT_RESPOUT, OPT_PATH, OPT_ISSUER, OPT_CERT, OPT_SERIAL,
134     OPT_INDEX, OPT_CA, OPT_NMIN, OPT_REQUEST, OPT_NDAYS, OPT_RSIGNER,
135     OPT_RKEY, OPT_ROTHER, OPT_RMD, OPT_RSIGOPT, OPT_HEADER,
136     OPT_PASSIN,
137     OPT_RCID,
138     OPT_V_ENUM,
139     OPT_MD,
140     OPT_MULTI, OPT_PROV_ENUM
141 } OPTION_CHOICE;
142
143 const OPTIONS ocsp_options[] = {
144     OPT_SECTION("General"),
145     {"help", OPT_HELP, '-', "Display this summary"},
146     {"ignore_err", OPT_IGNORE_ERR, '-',
147      "Ignore error on OCSP request or response and continue running"},
148     {"CAfile", OPT_CAFILE, '<', "Trusted certificates file"},
149     {"CApath", OPT_CAPATH, '<', "Trusted certificates directory"},
150     {"CAstore", OPT_CASTORE, ':', "Trusted certificates store URI"},
151     {"no-CAfile", OPT_NOCAFILE, '-',
152      "Do not load the default certificates file"},
153     {"no-CApath", OPT_NOCAPATH, '-',
154      "Do not load certificates from the default certificates directory"},
155     {"no-CAstore", OPT_NOCAPATH, '-',
156      "Do not load certificates from the default certificates store"},
157
158     OPT_SECTION("Responder"),
159     {"timeout", OPT_TIMEOUT, 'p',
160      "Connection timeout (in seconds) to the OCSP responder"},
161     {"resp_no_certs", OPT_RESP_NO_CERTS, '-',
162      "Don't include any certificates in response"},
163 # ifdef OCSP_DAEMON
164     {"multi", OPT_MULTI, 'p', "run multiple responder processes"},
165 # endif
166     {"no_certs", OPT_NO_CERTS, '-',
167      "Don't include any certificates in signed request"},
168     {"badsig", OPT_BADSIG, '-',
169         "Corrupt last byte of loaded OSCP response signature (for test)"},
170     {"CA", OPT_CA, '<', "CA certificate"},
171     {"nmin", OPT_NMIN, 'p', "Number of minutes before next update"},
172     {"nrequest", OPT_REQUEST, 'p',
173      "Number of requests to accept (default unlimited)"},
174     {"reqin", OPT_REQIN, 's', "File with the DER-encoded request"},
175     {"signer", OPT_SIGNER, '<', "Certificate to sign OCSP request with"},
176     {"sign_other", OPT_SIGN_OTHER, '<',
177      "Additional certificates to include in signed request"},
178     {"index", OPT_INDEX, '<', "Certificate status index file"},
179     {"ndays", OPT_NDAYS, 'p', "Number of days before next update"},
180     {"rsigner", OPT_RSIGNER, '<',
181      "Responder certificate to sign responses with"},
182     {"rkey", OPT_RKEY, '<', "Responder key to sign responses with"},
183     {"passin", OPT_PASSIN, 's', "Responder key pass phrase source"},
184     {"rother", OPT_ROTHER, '<', "Other certificates to include in response"},
185     {"rmd", OPT_RMD, 's', "Digest Algorithm to use in signature of OCSP response"},
186     {"rsigopt", OPT_RSIGOPT, 's', "OCSP response signature parameter in n:v form"},
187     {"header", OPT_HEADER, 's', "key=value header to add"},
188     {"rcid", OPT_RCID, 's', "Use specified algorithm for cert id in response"},
189     {"", OPT_MD, '-', "Any supported digest algorithm (sha1,sha256, ... )"},
190
191     OPT_SECTION("Client"),
192     {"url", OPT_URL, 's', "Responder URL"},
193     {"host", OPT_HOST, 's', "TCP/IP hostname:port to connect to"},
194     {"port", OPT_PORT, 'p', "Port to run responder on"},
195     {"out", OPT_OUTFILE, '>', "Output filename"},
196     {"noverify", OPT_NOVERIFY, '-', "Don't verify response at all"},
197     {"nonce", OPT_NONCE, '-', "Add OCSP nonce to request"},
198     {"no_nonce", OPT_NO_NONCE, '-', "Don't add OCSP nonce to request"},
199     {"no_signature_verify", OPT_NO_SIGNATURE_VERIFY, '-',
200      "Don't check signature on response"},
201     {"resp_key_id", OPT_RESP_KEY_ID, '-',
202      "Identify response by signing certificate key ID"},
203     {"no_cert_verify", OPT_NO_CERT_VERIFY, '-',
204      "Don't check signing certificate"},
205     {"text", OPT_TEXT, '-', "Print text form of request and response"},
206     {"req_text", OPT_REQ_TEXT, '-', "Print text form of request"},
207     {"resp_text", OPT_RESP_TEXT, '-', "Print text form of response"},
208     {"no_chain", OPT_NO_CHAIN, '-', "Don't chain verify response"},
209     {"no_cert_checks", OPT_NO_CERT_CHECKS, '-',
210      "Don't do additional checks on signing certificate"},
211     {"no_explicit", OPT_NO_EXPLICIT, '-',
212      "Do not explicitly check the chain, just verify the root"},
213     {"trust_other", OPT_TRUST_OTHER, '-',
214      "Don't verify additional certificates"},
215     {"no_intern", OPT_NO_INTERN, '-',
216      "Don't search certificates contained in response for signer"},
217     {"respin", OPT_RESPIN, 's', "File with the DER-encoded response"},
218     {"VAfile", OPT_VAFILE, '<', "Validator certificates file"},
219     {"verify_other", OPT_VERIFY_OTHER, '<',
220      "Additional certificates to search for signer"},
221     {"path", OPT_PATH, 's', "Path to use in OCSP request"},
222     {"cert", OPT_CERT, '<', "Certificate to check"},
223     {"serial", OPT_SERIAL, 's', "Serial number to check"},
224     {"validity_period", OPT_VALIDITY_PERIOD, 'u',
225      "Maximum validity discrepancy in seconds"},
226     {"signkey", OPT_SIGNKEY, 's', "Private key to sign OCSP request with"},
227     {"reqout", OPT_REQOUT, 's', "Output file for the DER-encoded request"},
228     {"respout", OPT_RESPOUT, 's', "Output file for the DER-encoded response"},
229     {"issuer", OPT_ISSUER, '<', "Issuer certificate"},
230     {"status_age", OPT_STATUS_AGE, 'p', "Maximum status age in seconds"},
231
232     OPT_V_OPTIONS,
233     OPT_PROV_OPTIONS,
234     {NULL}
235 };
236
237 int ocsp_main(int argc, char **argv)
238 {
239     BIO *acbio = NULL, *cbio = NULL, *derbio = NULL, *out = NULL;
240     const EVP_MD *cert_id_md = NULL, *rsign_md = NULL;
241     STACK_OF(OPENSSL_STRING) *rsign_sigopts = NULL;
242     int trailing_md = 0;
243     CA_DB *rdb = NULL;
244     EVP_PKEY *key = NULL, *rkey = NULL;
245     OCSP_BASICRESP *bs = NULL;
246     OCSP_REQUEST *req = NULL;
247     OCSP_RESPONSE *resp = NULL;
248     STACK_OF(CONF_VALUE) *headers = NULL;
249     STACK_OF(OCSP_CERTID) *ids = NULL;
250     STACK_OF(OPENSSL_STRING) *reqnames = NULL;
251     STACK_OF(X509) *sign_other = NULL, *verify_other = NULL, *rother = NULL;
252     STACK_OF(X509) *issuers = NULL;
253     X509 *issuer = NULL, *cert = NULL;
254     STACK_OF(X509) *rca_cert = NULL;
255     const EVP_MD *resp_certid_md = NULL;
256     X509 *signer = NULL, *rsigner = NULL;
257     X509_STORE *store = NULL;
258     X509_VERIFY_PARAM *vpm = NULL;
259     const char *CAfile = NULL, *CApath = NULL, *CAstore = NULL;
260     char *header, *value;
261     char *host = NULL, *port = NULL, *path = "/", *outfile = NULL;
262     char *rca_filename = NULL, *reqin = NULL, *respin = NULL;
263     char *reqout = NULL, *respout = NULL, *ridx_filename = NULL;
264     char *rsignfile = NULL, *rkeyfile = NULL;
265     char *passinarg = NULL, *passin = NULL;
266     char *sign_certfile = NULL, *verify_certfile = NULL, *rcertfile = NULL;
267     char *signfile = NULL, *keyfile = NULL;
268     char *thost = NULL, *tport = NULL, *tpath = NULL;
269     int noCAfile = 0, noCApath = 0, noCAstore = 0;
270     int accept_count = -1, add_nonce = 1, noverify = 0, use_ssl = -1;
271     int vpmtouched = 0, badsig = 0, i, ignore_err = 0, nmin = 0, ndays = -1;
272     int req_text = 0, resp_text = 0, ret = 1;
273     int req_timeout = -1;
274     long nsec = MAX_VALIDITY_PERIOD, maxage = -1;
275     unsigned long sign_flags = 0, verify_flags = 0, rflags = 0;
276     OPTION_CHOICE o;
277
278     reqnames = sk_OPENSSL_STRING_new_null();
279     if (reqnames == NULL)
280         goto end;
281     ids = sk_OCSP_CERTID_new_null();
282     if (ids == NULL)
283         goto end;
284     if ((vpm = X509_VERIFY_PARAM_new()) == NULL)
285         return 1;
286
287     prog = opt_init(argc, argv, ocsp_options);
288     while ((o = opt_next()) != OPT_EOF) {
289         switch (o) {
290         case OPT_EOF:
291         case OPT_ERR:
292  opthelp:
293             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
294             goto end;
295         case OPT_HELP:
296             ret = 0;
297             opt_help(ocsp_options);
298             goto end;
299         case OPT_OUTFILE:
300             outfile = opt_arg();
301             break;
302         case OPT_TIMEOUT:
303 #ifndef OPENSSL_NO_SOCK
304             req_timeout = atoi(opt_arg());
305 #endif
306             break;
307         case OPT_URL:
308             OPENSSL_free(thost);
309             OPENSSL_free(tport);
310             OPENSSL_free(tpath);
311             thost = tport = tpath = NULL;
312             if (!OSSL_HTTP_parse_url(opt_arg(),
313                                      &host, &port, &path, &use_ssl)) {
314                 BIO_printf(bio_err, "%s Error parsing URL\n", prog);
315                 goto end;
316             }
317             thost = host;
318             tport = port;
319             tpath = path;
320             break;
321         case OPT_HOST:
322             host = opt_arg();
323             break;
324         case OPT_PORT:
325             port = opt_arg();
326             break;
327         case OPT_IGNORE_ERR:
328             ignore_err = 1;
329             break;
330         case OPT_NOVERIFY:
331             noverify = 1;
332             break;
333         case OPT_NONCE:
334             add_nonce = 2;
335             break;
336         case OPT_NO_NONCE:
337             add_nonce = 0;
338             break;
339         case OPT_RESP_NO_CERTS:
340             rflags |= OCSP_NOCERTS;
341             break;
342         case OPT_RESP_KEY_ID:
343             rflags |= OCSP_RESPID_KEY;
344             break;
345         case OPT_NO_CERTS:
346             sign_flags |= OCSP_NOCERTS;
347             break;
348         case OPT_NO_SIGNATURE_VERIFY:
349             verify_flags |= OCSP_NOSIGS;
350             break;
351         case OPT_NO_CERT_VERIFY:
352             verify_flags |= OCSP_NOVERIFY;
353             break;
354         case OPT_NO_CHAIN:
355             verify_flags |= OCSP_NOCHAIN;
356             break;
357         case OPT_NO_CERT_CHECKS:
358             verify_flags |= OCSP_NOCHECKS;
359             break;
360         case OPT_NO_EXPLICIT:
361             verify_flags |= OCSP_NOEXPLICIT;
362             break;
363         case OPT_TRUST_OTHER:
364             verify_flags |= OCSP_TRUSTOTHER;
365             break;
366         case OPT_NO_INTERN:
367             verify_flags |= OCSP_NOINTERN;
368             break;
369         case OPT_BADSIG:
370             badsig = 1;
371             break;
372         case OPT_TEXT:
373             req_text = resp_text = 1;
374             break;
375         case OPT_REQ_TEXT:
376             req_text = 1;
377             break;
378         case OPT_RESP_TEXT:
379             resp_text = 1;
380             break;
381         case OPT_REQIN:
382             reqin = opt_arg();
383             break;
384         case OPT_RESPIN:
385             respin = opt_arg();
386             break;
387         case OPT_SIGNER:
388             signfile = opt_arg();
389             break;
390         case OPT_VAFILE:
391             verify_certfile = opt_arg();
392             verify_flags |= OCSP_TRUSTOTHER;
393             break;
394         case OPT_SIGN_OTHER:
395             sign_certfile = opt_arg();
396             break;
397         case OPT_VERIFY_OTHER:
398             verify_certfile = opt_arg();
399             break;
400         case OPT_CAFILE:
401             CAfile = opt_arg();
402             break;
403         case OPT_CAPATH:
404             CApath = opt_arg();
405             break;
406         case OPT_CASTORE:
407             CAstore = opt_arg();
408             break;
409         case OPT_NOCAFILE:
410             noCAfile = 1;
411             break;
412         case OPT_NOCAPATH:
413             noCApath = 1;
414             break;
415         case OPT_NOCASTORE:
416             noCAstore = 1;
417             break;
418         case OPT_V_CASES:
419             if (!opt_verify(o, vpm))
420                 goto end;
421             vpmtouched++;
422             break;
423         case OPT_VALIDITY_PERIOD:
424             opt_long(opt_arg(), &nsec);
425             break;
426         case OPT_STATUS_AGE:
427             opt_long(opt_arg(), &maxage);
428             break;
429         case OPT_SIGNKEY:
430             keyfile = opt_arg();
431             break;
432         case OPT_REQOUT:
433             reqout = opt_arg();
434             break;
435         case OPT_RESPOUT:
436             respout = opt_arg();
437             break;
438         case OPT_PATH:
439             path = opt_arg();
440             break;
441         case OPT_ISSUER:
442             issuer = load_cert(opt_arg(), FORMAT_PEM, "issuer certificate");
443             if (issuer == NULL)
444                 goto end;
445             if (issuers == NULL) {
446                 if ((issuers = sk_X509_new_null()) == NULL)
447                     goto end;
448             }
449             if (!sk_X509_push(issuers, issuer))
450                 goto end;
451             break;
452         case OPT_CERT:
453             X509_free(cert);
454             cert = load_cert(opt_arg(), FORMAT_PEM, "certificate");
455             if (cert == NULL)
456                 goto end;
457             if (cert_id_md == NULL)
458                 cert_id_md = EVP_sha1();
459             if (!add_ocsp_cert(&req, cert, cert_id_md, issuer, ids))
460                 goto end;
461             if (!sk_OPENSSL_STRING_push(reqnames, opt_arg()))
462                 goto end;
463             trailing_md = 0;
464             break;
465         case OPT_SERIAL:
466             if (cert_id_md == NULL)
467                 cert_id_md = EVP_sha1();
468             if (!add_ocsp_serial(&req, opt_arg(), cert_id_md, issuer, ids))
469                 goto end;
470             if (!sk_OPENSSL_STRING_push(reqnames, opt_arg()))
471                 goto end;
472             trailing_md = 0;
473             break;
474         case OPT_INDEX:
475             ridx_filename = opt_arg();
476             break;
477         case OPT_CA:
478             rca_filename = opt_arg();
479             break;
480         case OPT_NMIN:
481             opt_int(opt_arg(), &nmin);
482             if (ndays == -1)
483                 ndays = 0;
484             break;
485         case OPT_REQUEST:
486             opt_int(opt_arg(), &accept_count);
487             break;
488         case OPT_NDAYS:
489             ndays = atoi(opt_arg());
490             break;
491         case OPT_RSIGNER:
492             rsignfile = opt_arg();
493             break;
494         case OPT_RKEY:
495             rkeyfile = opt_arg();
496             break;
497         case OPT_PASSIN:
498             passinarg = opt_arg();
499             break;
500         case OPT_ROTHER:
501             rcertfile = opt_arg();
502             break;
503         case OPT_RMD:   /* Response MessageDigest */
504             if (!opt_md(opt_arg(), &rsign_md))
505                 goto end;
506             break;
507         case OPT_RSIGOPT:
508             if (rsign_sigopts == NULL)
509                 rsign_sigopts = sk_OPENSSL_STRING_new_null();
510             if (rsign_sigopts == NULL || !sk_OPENSSL_STRING_push(rsign_sigopts, opt_arg()))
511                 goto end;
512             break;
513         case OPT_HEADER:
514             header = opt_arg();
515             value = strchr(header, '=');
516             if (value == NULL) {
517                 BIO_printf(bio_err, "Missing = in header key=value\n");
518                 goto opthelp;
519             }
520             *value++ = '\0';
521             if (!X509V3_add_value(header, value, &headers))
522                 goto end;
523             break;
524         case OPT_RCID:
525             resp_certid_md = EVP_get_digestbyname(opt_arg());
526             if (resp_certid_md == NULL)
527                 goto opthelp;
528             break;
529         case OPT_MD:
530             if (trailing_md) {
531                 BIO_printf(bio_err,
532                            "%s: Digest must be before -cert or -serial\n",
533                            prog);
534                 goto opthelp;
535             }
536             if (!opt_md(opt_unknown(), &cert_id_md))
537                 goto opthelp;
538             trailing_md = 1;
539             break;
540         case OPT_MULTI:
541 # ifdef OCSP_DAEMON
542             multi = atoi(opt_arg());
543 # endif
544             break;
545         case OPT_PROV_CASES:
546             if (!opt_provider(o))
547                 goto end;
548             break;
549         }
550     }
551     if (trailing_md) {
552         BIO_printf(bio_err, "%s: Digest must be before -cert or -serial\n",
553                    prog);
554         goto opthelp;
555     }
556     argc = opt_num_rest();
557     if (argc != 0)
558         goto opthelp;
559
560     /* Have we anything to do? */
561     if (req == NULL && reqin == NULL
562         && respin == NULL && !(port != NULL && ridx_filename != NULL))
563         goto opthelp;
564
565     out = bio_open_default(outfile, 'w', FORMAT_TEXT);
566     if (out == NULL)
567         goto end;
568
569     if (req == NULL && (add_nonce != 2))
570         add_nonce = 0;
571
572     if (req == NULL && reqin != NULL) {
573         derbio = bio_open_default(reqin, 'r', FORMAT_ASN1);
574         if (derbio == NULL)
575             goto end;
576         req = d2i_OCSP_REQUEST_bio(derbio, NULL);
577         BIO_free(derbio);
578         if (req == NULL) {
579             BIO_printf(bio_err, "Error reading OCSP request\n");
580             goto end;
581         }
582     }
583
584     if (req == NULL && port != NULL) {
585         acbio = init_responder(port);
586         if (acbio == NULL)
587             goto end;
588     }
589
590     if (rsignfile != NULL) {
591         if (rkeyfile == NULL)
592             rkeyfile = rsignfile;
593         rsigner = load_cert(rsignfile, FORMAT_PEM, "responder certificate");
594         if (rsigner == NULL) {
595             BIO_printf(bio_err, "Error loading responder certificate\n");
596             goto end;
597         }
598         if (!load_certs(rca_filename, &rca_cert, FORMAT_PEM,
599                         NULL, "CA certificate"))
600             goto end;
601         if (rcertfile != NULL) {
602             if (!load_certs(rcertfile, &rother, FORMAT_PEM, NULL,
603                             "responder other certificates"))
604                 goto end;
605         }
606         if (!app_passwd(passinarg, NULL, &passin, NULL)) {
607             BIO_printf(bio_err, "Error getting password\n");
608             goto end;
609         }
610         rkey = load_key(rkeyfile, FORMAT_PEM, 0, passin, NULL,
611                         "responder private key");
612         if (rkey == NULL)
613             goto end;
614     }
615
616     if (ridx_filename != NULL
617         && (rkey == NULL || rsigner == NULL || rca_cert == NULL)) {
618         BIO_printf(bio_err,
619                    "Responder mode requires certificate, key, and CA.\n");
620         goto end;
621     }
622
623     if (ridx_filename != NULL) {
624         rdb = load_index(ridx_filename, NULL);
625         if (rdb == NULL || index_index(rdb) <= 0) {
626             ret = 1;
627             goto end;
628         }
629     }
630
631 # ifdef OCSP_DAEMON
632     if (multi && acbio != NULL)
633         spawn_loop();
634     if (acbio != NULL && req_timeout > 0)
635         signal(SIGALRM, socket_timeout);
636 #endif
637
638     if (acbio != NULL)
639         log_message(LOG_INFO, "waiting for OCSP client connections...");
640
641 redo_accept:
642
643     if (acbio != NULL) {
644 # ifdef OCSP_DAEMON
645         if (index_changed(rdb)) {
646             CA_DB *newrdb = load_index(ridx_filename, NULL);
647
648             if (newrdb != NULL && index_index(newrdb) > 0) {
649                 free_index(rdb);
650                 rdb = newrdb;
651             } else {
652                 free_index(newrdb);
653                 log_message(LOG_ERR, "error reloading updated index: %s",
654                             ridx_filename);
655             }
656         }
657 # endif
658
659         req = NULL;
660         if (!do_responder(&req, &cbio, acbio, req_timeout))
661             goto redo_accept;
662
663         if (req == NULL) {
664             resp =
665                 OCSP_response_create(OCSP_RESPONSE_STATUS_MALFORMEDREQUEST,
666                                      NULL);
667             send_ocsp_response(cbio, resp);
668             goto done_resp;
669         }
670     }
671
672     if (req == NULL
673         && (signfile != NULL || reqout != NULL
674             || host != NULL || add_nonce || ridx_filename != NULL)) {
675         BIO_printf(bio_err, "Need an OCSP request for this operation!\n");
676         goto end;
677     }
678
679     if (req != NULL && add_nonce) {
680         if (!OCSP_request_add1_nonce(req, NULL, -1))
681             goto end;
682     }
683
684     if (signfile != NULL) {
685         if (keyfile == NULL)
686             keyfile = signfile;
687         signer = load_cert(signfile, FORMAT_PEM, "signer certificate");
688         if (signer == NULL) {
689             BIO_printf(bio_err, "Error loading signer certificate\n");
690             goto end;
691         }
692         if (sign_certfile != NULL) {
693             if (!load_certs(sign_certfile, &sign_other, FORMAT_PEM, NULL,
694                             "signer certificates"))
695                 goto end;
696         }
697         key = load_key(keyfile, FORMAT_PEM, 0, NULL, NULL,
698                        "signer private key");
699         if (key == NULL)
700             goto end;
701
702         if (!OCSP_request_sign
703             (req, signer, key, NULL, sign_other, sign_flags)) {
704             BIO_printf(bio_err, "Error signing OCSP request\n");
705             goto end;
706         }
707     }
708
709     if (req_text && req != NULL)
710         OCSP_REQUEST_print(out, req, 0);
711
712     if (reqout != NULL) {
713         derbio = bio_open_default(reqout, 'w', FORMAT_ASN1);
714         if (derbio == NULL)
715             goto end;
716         i2d_OCSP_REQUEST_bio(derbio, req);
717         BIO_free(derbio);
718     }
719
720     if (rdb != NULL) {
721         make_ocsp_response(bio_err, &resp, req, rdb, rca_cert, rsigner, rkey,
722                            rsign_md, rsign_sigopts, rother, rflags, nmin, ndays, badsig,
723                            resp_certid_md);
724         if (cbio != NULL)
725             send_ocsp_response(cbio, resp);
726     } else if (host != NULL) {
727 # ifndef OPENSSL_NO_SOCK
728         resp = process_responder(req, host, path,
729                                  port, use_ssl, headers, req_timeout);
730         if (resp == NULL)
731             goto end;
732 # else
733         BIO_printf(bio_err,
734                    "Error creating connect BIO - sockets not supported.\n");
735         goto end;
736 # endif
737     } else if (respin != NULL) {
738         derbio = bio_open_default(respin, 'r', FORMAT_ASN1);
739         if (derbio == NULL)
740             goto end;
741         resp = d2i_OCSP_RESPONSE_bio(derbio, NULL);
742         BIO_free(derbio);
743         if (resp == NULL) {
744             BIO_printf(bio_err, "Error reading OCSP response\n");
745             goto end;
746         }
747     } else {
748         ret = 0;
749         goto end;
750     }
751
752  done_resp:
753
754     if (respout != NULL) {
755         derbio = bio_open_default(respout, 'w', FORMAT_ASN1);
756         if (derbio == NULL)
757             goto end;
758         i2d_OCSP_RESPONSE_bio(derbio, resp);
759         BIO_free(derbio);
760     }
761
762     i = OCSP_response_status(resp);
763     if (i != OCSP_RESPONSE_STATUS_SUCCESSFUL) {
764         BIO_printf(out, "Responder Error: %s (%d)\n",
765                    OCSP_response_status_str(i), i);
766         if (!ignore_err)
767                 goto end;
768     }
769
770     if (resp_text)
771         OCSP_RESPONSE_print(out, resp, 0);
772
773     /* If running as responder don't verify our own response */
774     if (cbio != NULL) {
775         /* If not unlimited, see if we took all we should. */
776         if (accept_count != -1 && --accept_count <= 0) {
777             ret = 0;
778             goto end;
779         }
780         BIO_free_all(cbio);
781         cbio = NULL;
782         OCSP_REQUEST_free(req);
783         req = NULL;
784         OCSP_RESPONSE_free(resp);
785         resp = NULL;
786         goto redo_accept;
787     }
788     if (ridx_filename != NULL) {
789         ret = 0;
790         goto end;
791     }
792
793     if (store == NULL) {
794         store = setup_verify(CAfile, noCAfile, CApath, noCApath,
795                              CAstore, noCAstore);
796         if (!store)
797             goto end;
798     }
799     if (vpmtouched)
800         X509_STORE_set1_param(store, vpm);
801     if (verify_certfile != NULL) {
802         if (!load_certs(verify_certfile, &verify_other, FORMAT_PEM, NULL,
803                         "validator certificate"))
804             goto end;
805     }
806
807     bs = OCSP_response_get1_basic(resp);
808     if (bs == NULL) {
809         BIO_printf(bio_err, "Error parsing response\n");
810         goto end;
811     }
812
813     ret = 0;
814
815     if (!noverify) {
816         if (req != NULL && ((i = OCSP_check_nonce(req, bs)) <= 0)) {
817             if (i == -1)
818                 BIO_printf(bio_err, "WARNING: no nonce in response\n");
819             else {
820                 BIO_printf(bio_err, "Nonce Verify error\n");
821                 ret = 1;
822                 goto end;
823             }
824         }
825
826         i = OCSP_basic_verify(bs, verify_other, store, verify_flags);
827         if (i <= 0 && issuers) {
828             i = OCSP_basic_verify(bs, issuers, store, OCSP_TRUSTOTHER);
829             if (i > 0)
830                 ERR_clear_error();
831         }
832         if (i <= 0) {
833             BIO_printf(bio_err, "Response Verify Failure\n");
834             ERR_print_errors(bio_err);
835             ret = 1;
836         } else {
837             BIO_printf(bio_err, "Response verify OK\n");
838         }
839     }
840
841     print_ocsp_summary(out, bs, req, reqnames, ids, nsec, maxage);
842
843  end:
844     ERR_print_errors(bio_err);
845     X509_free(signer);
846     X509_STORE_free(store);
847     X509_VERIFY_PARAM_free(vpm);
848     sk_OPENSSL_STRING_free(rsign_sigopts);
849     EVP_PKEY_free(key);
850     EVP_PKEY_free(rkey);
851     X509_free(cert);
852     sk_X509_pop_free(issuers, X509_free);
853     X509_free(rsigner);
854     sk_X509_pop_free(rca_cert, X509_free);
855     free_index(rdb);
856     BIO_free_all(cbio);
857     BIO_free_all(acbio);
858     BIO_free_all(out);
859     OCSP_REQUEST_free(req);
860     OCSP_RESPONSE_free(resp);
861     OCSP_BASICRESP_free(bs);
862     sk_OPENSSL_STRING_free(reqnames);
863     sk_OCSP_CERTID_free(ids);
864     sk_X509_pop_free(sign_other, X509_free);
865     sk_X509_pop_free(verify_other, X509_free);
866     sk_CONF_VALUE_pop_free(headers, X509V3_conf_free);
867     OPENSSL_free(thost);
868     OPENSSL_free(tport);
869     OPENSSL_free(tpath);
870
871     return ret;
872 }
873
874 static void
875 log_message(int level, const char *fmt, ...)
876 {
877     va_list ap;
878
879     va_start(ap, fmt);
880 # ifdef OCSP_DAEMON
881     if (multi) {
882         char buf[1024];
883         if (vsnprintf(buf, sizeof(buf), fmt, ap) > 0) {
884             syslog(level, "%s", buf);
885         }
886         if (level >= LOG_ERR)
887             ERR_print_errors_cb(print_syslog, &level);
888     }
889 # endif
890     if (!multi) {
891         BIO_printf(bio_err, "%s: ", prog);
892         BIO_vprintf(bio_err, fmt, ap);
893         BIO_printf(bio_err, "\n");
894     }
895     va_end(ap);
896 }
897
898 # ifdef OCSP_DAEMON
899
900 static int print_syslog(const char *str, size_t len, void *levPtr)
901 {
902     int level = *(int *)levPtr;
903     int ilen = (len > MAXERRLEN) ? MAXERRLEN : len;
904
905     syslog(level, "%.*s", ilen, str);
906
907     return ilen;
908 }
909
910 static int index_changed(CA_DB *rdb)
911 {
912     struct stat sb;
913
914     if (rdb != NULL && stat(rdb->dbfname, &sb) != -1) {
915         if (rdb->dbst.st_mtime != sb.st_mtime
916             || rdb->dbst.st_ctime != sb.st_ctime
917             || rdb->dbst.st_ino != sb.st_ino
918             || rdb->dbst.st_dev != sb.st_dev) {
919             syslog(LOG_INFO, "index file changed, reloading");
920             return 1;
921         }
922     }
923     return 0;
924 }
925
926 static void killall(int ret, pid_t *kidpids)
927 {
928     int i;
929
930     for (i = 0; i < multi; ++i)
931         if (kidpids[i] != 0)
932             (void)kill(kidpids[i], SIGTERM);
933     OPENSSL_free(kidpids);
934     sleep(1);
935     exit(ret);
936 }
937
938 static int termsig = 0;
939
940 static void noteterm (int sig)
941 {
942     termsig = sig;
943 }
944
945 /*
946  * Loop spawning up to `multi` child processes, only child processes return
947  * from this function.  The parent process loops until receiving a termination
948  * signal, kills extant children and exits without returning.
949  */
950 static void spawn_loop(void)
951 {
952     pid_t *kidpids = NULL;
953     int status;
954     int procs = 0;
955     int i;
956
957     openlog(prog, LOG_PID, LOG_DAEMON);
958
959     if (setpgid(0, 0)) {
960         syslog(LOG_ERR, "fatal: error detaching from parent process group: %s",
961                strerror(errno));
962         exit(1);
963     }
964     kidpids = app_malloc(multi * sizeof(*kidpids), "child PID array");
965     for (i = 0; i < multi; ++i)
966         kidpids[i] = 0;
967
968     signal(SIGINT, noteterm);
969     signal(SIGTERM, noteterm);
970
971     while (termsig == 0) {
972         pid_t fpid;
973
974         /*
975          * Wait for a child to replace when we're at the limit.
976          * Slow down if a child exited abnormally or waitpid() < 0
977          */
978         while (termsig == 0 && procs >= multi) {
979             if ((fpid = waitpid(-1, &status, 0)) > 0) {
980                 for (i = 0; i < procs; ++i) {
981                     if (kidpids[i] == fpid) {
982                         kidpids[i] = 0;
983                         --procs;
984                         break;
985                     }
986                 }
987                 if (i >= multi) {
988                     syslog(LOG_ERR, "fatal: internal error: "
989                            "no matching child slot for pid: %ld",
990                            (long) fpid);
991                     killall(1, kidpids);
992                 }
993                 if (status != 0) {
994                     if (WIFEXITED(status))
995                         syslog(LOG_WARNING, "child process: %ld, exit status: %d",
996                                (long)fpid, WEXITSTATUS(status));
997                     else if (WIFSIGNALED(status))
998                         syslog(LOG_WARNING, "child process: %ld, term signal %d%s",
999                                (long)fpid, WTERMSIG(status),
1000 #ifdef WCOREDUMP
1001                                WCOREDUMP(status) ? " (core dumped)" :
1002 #endif
1003                                "");
1004                     sleep(1);
1005                 }
1006                 break;
1007             } else if (errno != EINTR) {
1008                 syslog(LOG_ERR, "fatal: waitpid(): %s", strerror(errno));
1009                 killall(1, kidpids);
1010             }
1011         }
1012         if (termsig)
1013             break;
1014
1015         switch(fpid = fork()) {
1016         case -1:            /* error */
1017             /* System critically low on memory, pause and try again later */
1018             sleep(30);
1019             break;
1020         case 0:             /* child */
1021             OPENSSL_free(kidpids);
1022             signal(SIGINT, SIG_DFL);
1023             signal(SIGTERM, SIG_DFL);
1024             if (termsig)
1025                 _exit(0);
1026             if (RAND_poll() <= 0) {
1027                 syslog(LOG_ERR, "fatal: RAND_poll() failed");
1028                 _exit(1);
1029             }
1030             return;
1031         default:            /* parent */
1032             for (i = 0; i < multi; ++i) {
1033                 if (kidpids[i] == 0) {
1034                     kidpids[i] = fpid;
1035                     procs++;
1036                     break;
1037                 }
1038             }
1039             if (i >= multi) {
1040                 syslog(LOG_ERR, "fatal: internal error: no free child slots");
1041                 killall(1, kidpids);
1042             }
1043             break;
1044         }
1045     }
1046
1047     /* The loop above can only break on termsig */
1048     syslog(LOG_INFO, "terminating on signal: %d", termsig);
1049     killall(0, kidpids);
1050 }
1051 # endif
1052
1053 static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert,
1054                          const EVP_MD *cert_id_md, X509 *issuer,
1055                          STACK_OF(OCSP_CERTID) *ids)
1056 {
1057     OCSP_CERTID *id;
1058
1059     if (issuer == NULL) {
1060         BIO_printf(bio_err, "No issuer certificate specified\n");
1061         return 0;
1062     }
1063     if (*req == NULL)
1064         *req = OCSP_REQUEST_new();
1065     if (*req == NULL)
1066         goto err;
1067     id = OCSP_cert_to_id(cert_id_md, cert, issuer);
1068     if (id == NULL || !sk_OCSP_CERTID_push(ids, id))
1069         goto err;
1070     if (!OCSP_request_add0_id(*req, id))
1071         goto err;
1072     return 1;
1073
1074  err:
1075     BIO_printf(bio_err, "Error Creating OCSP request\n");
1076     return 0;
1077 }
1078
1079 static int add_ocsp_serial(OCSP_REQUEST **req, char *serial,
1080                            const EVP_MD *cert_id_md, X509 *issuer,
1081                            STACK_OF(OCSP_CERTID) *ids)
1082 {
1083     OCSP_CERTID *id;
1084     X509_NAME *iname;
1085     ASN1_BIT_STRING *ikey;
1086     ASN1_INTEGER *sno;
1087
1088     if (issuer == NULL) {
1089         BIO_printf(bio_err, "No issuer certificate specified\n");
1090         return 0;
1091     }
1092     if (*req == NULL)
1093         *req = OCSP_REQUEST_new();
1094     if (*req == NULL)
1095         goto err;
1096     iname = X509_get_subject_name(issuer);
1097     ikey = X509_get0_pubkey_bitstr(issuer);
1098     sno = s2i_ASN1_INTEGER(NULL, serial);
1099     if (sno == NULL) {
1100         BIO_printf(bio_err, "Error converting serial number %s\n", serial);
1101         return 0;
1102     }
1103     id = OCSP_cert_id_new(cert_id_md, iname, ikey, sno);
1104     ASN1_INTEGER_free(sno);
1105     if (id == NULL || !sk_OCSP_CERTID_push(ids, id))
1106         goto err;
1107     if (!OCSP_request_add0_id(*req, id))
1108         goto err;
1109     return 1;
1110
1111  err:
1112     BIO_printf(bio_err, "Error Creating OCSP request\n");
1113     return 0;
1114 }
1115
1116 static void print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
1117                               STACK_OF(OPENSSL_STRING) *names,
1118                               STACK_OF(OCSP_CERTID) *ids, long nsec,
1119                               long maxage)
1120 {
1121     OCSP_CERTID *id;
1122     const char *name;
1123     int i, status, reason;
1124     ASN1_GENERALIZEDTIME *rev, *thisupd, *nextupd;
1125
1126     if (bs == NULL || req == NULL || !sk_OPENSSL_STRING_num(names)
1127         || !sk_OCSP_CERTID_num(ids))
1128         return;
1129
1130     for (i = 0; i < sk_OCSP_CERTID_num(ids); i++) {
1131         id = sk_OCSP_CERTID_value(ids, i);
1132         name = sk_OPENSSL_STRING_value(names, i);
1133         BIO_printf(out, "%s: ", name);
1134
1135         if (!OCSP_resp_find_status(bs, id, &status, &reason,
1136                                    &rev, &thisupd, &nextupd)) {
1137             BIO_puts(out, "ERROR: No Status found.\n");
1138             continue;
1139         }
1140
1141         /*
1142          * Check validity: if invalid write to output BIO so we know which
1143          * response this refers to.
1144          */
1145         if (!OCSP_check_validity(thisupd, nextupd, nsec, maxage)) {
1146             BIO_puts(out, "WARNING: Status times invalid.\n");
1147             ERR_print_errors(out);
1148         }
1149         BIO_printf(out, "%s\n", OCSP_cert_status_str(status));
1150
1151         BIO_puts(out, "\tThis Update: ");
1152         ASN1_GENERALIZEDTIME_print(out, thisupd);
1153         BIO_puts(out, "\n");
1154
1155         if (nextupd) {
1156             BIO_puts(out, "\tNext Update: ");
1157             ASN1_GENERALIZEDTIME_print(out, nextupd);
1158             BIO_puts(out, "\n");
1159         }
1160
1161         if (status != V_OCSP_CERTSTATUS_REVOKED)
1162             continue;
1163
1164         if (reason != -1)
1165             BIO_printf(out, "\tReason: %s\n", OCSP_crl_reason_str(reason));
1166
1167         BIO_puts(out, "\tRevocation Time: ");
1168         ASN1_GENERALIZEDTIME_print(out, rev);
1169         BIO_puts(out, "\n");
1170     }
1171 }
1172
1173 static void make_ocsp_response(BIO *err, OCSP_RESPONSE **resp, OCSP_REQUEST *req,
1174                               CA_DB *db, STACK_OF(X509) *ca, X509 *rcert,
1175                               EVP_PKEY *rkey, const EVP_MD *rmd,
1176                               STACK_OF(OPENSSL_STRING) *sigopts,
1177                               STACK_OF(X509) *rother, unsigned long flags,
1178                               int nmin, int ndays, int badsig,
1179                               const EVP_MD *resp_md)
1180 {
1181     ASN1_TIME *thisupd = NULL, *nextupd = NULL;
1182     OCSP_CERTID *cid;
1183     OCSP_BASICRESP *bs = NULL;
1184     int i, id_count;
1185     EVP_MD_CTX *mctx = NULL;
1186     EVP_PKEY_CTX *pkctx = NULL;
1187
1188     id_count = OCSP_request_onereq_count(req);
1189
1190     if (id_count <= 0) {
1191         *resp =
1192             OCSP_response_create(OCSP_RESPONSE_STATUS_MALFORMEDREQUEST, NULL);
1193         goto end;
1194     }
1195
1196     bs = OCSP_BASICRESP_new();
1197     thisupd = X509_gmtime_adj(NULL, 0);
1198     if (ndays != -1)
1199         nextupd = X509_time_adj_ex(NULL, ndays, nmin * 60, NULL);
1200
1201     /* Examine each certificate id in the request */
1202     for (i = 0; i < id_count; i++) {
1203         OCSP_ONEREQ *one;
1204         ASN1_INTEGER *serial;
1205         char **inf;
1206         int jj;
1207         int found = 0;
1208         ASN1_OBJECT *cert_id_md_oid;
1209         const EVP_MD *cert_id_md;
1210         OCSP_CERTID *cid_resp_md = NULL;
1211
1212         one = OCSP_request_onereq_get0(req, i);
1213         cid = OCSP_onereq_get0_id(one);
1214
1215         OCSP_id_get0_info(NULL, &cert_id_md_oid, NULL, NULL, cid);
1216
1217         cert_id_md = EVP_get_digestbyobj(cert_id_md_oid);
1218         if (cert_id_md == NULL) {
1219             *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR,
1220                                          NULL);
1221             goto end;
1222         }
1223         for (jj = 0; jj < sk_X509_num(ca) && !found; jj++) {
1224             X509 *ca_cert = sk_X509_value(ca, jj);
1225             OCSP_CERTID *ca_id = OCSP_cert_to_id(cert_id_md, NULL, ca_cert);
1226
1227             if (OCSP_id_issuer_cmp(ca_id, cid) == 0) {
1228                 found = 1;
1229                 if (resp_md != NULL)
1230                     cid_resp_md = OCSP_cert_to_id(resp_md, NULL, ca_cert);
1231             }
1232             OCSP_CERTID_free(ca_id);
1233         }
1234         OCSP_id_get0_info(NULL, NULL, NULL, &serial, cid);
1235         inf = lookup_serial(db, serial);
1236
1237         /* at this point, we can have cid be an alias of cid_resp_md */
1238         cid = (cid_resp_md != NULL) ? cid_resp_md : cid;
1239
1240         if (!found) {
1241             OCSP_basic_add1_status(bs, cid,
1242                                    V_OCSP_CERTSTATUS_UNKNOWN,
1243                                    0, NULL, thisupd, nextupd);
1244             continue;
1245         }
1246         if (inf == NULL) {
1247             OCSP_basic_add1_status(bs, cid,
1248                                    V_OCSP_CERTSTATUS_UNKNOWN,
1249                                    0, NULL, thisupd, nextupd);
1250         } else if (inf[DB_type][0] == DB_TYPE_VAL) {
1251             OCSP_basic_add1_status(bs, cid,
1252                                    V_OCSP_CERTSTATUS_GOOD,
1253                                    0, NULL, thisupd, nextupd);
1254         } else if (inf[DB_type][0] == DB_TYPE_REV) {
1255             ASN1_OBJECT *inst = NULL;
1256             ASN1_TIME *revtm = NULL;
1257             ASN1_GENERALIZEDTIME *invtm = NULL;
1258             OCSP_SINGLERESP *single;
1259             int reason = -1;
1260
1261             unpack_revinfo(&revtm, &reason, &inst, &invtm, inf[DB_rev_date]);
1262             single = OCSP_basic_add1_status(bs, cid,
1263                                             V_OCSP_CERTSTATUS_REVOKED,
1264                                             reason, revtm, thisupd, nextupd);
1265             if (invtm != NULL)
1266                 OCSP_SINGLERESP_add1_ext_i2d(single, NID_invalidity_date,
1267                                              invtm, 0, 0);
1268             else if (inst != NULL)
1269                 OCSP_SINGLERESP_add1_ext_i2d(single,
1270                                              NID_hold_instruction_code, inst,
1271                                              0, 0);
1272             ASN1_OBJECT_free(inst);
1273             ASN1_TIME_free(revtm);
1274             ASN1_GENERALIZEDTIME_free(invtm);
1275         }
1276         OCSP_CERTID_free(cid_resp_md);
1277     }
1278
1279     OCSP_copy_nonce(bs, req);
1280
1281     mctx = EVP_MD_CTX_new();
1282     if ( mctx == NULL || !EVP_DigestSignInit(mctx, &pkctx, rmd, NULL, rkey)) {
1283         *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR, NULL);
1284         goto end;
1285     }
1286     for (i = 0; i < sk_OPENSSL_STRING_num(sigopts); i++) {
1287         char *sigopt = sk_OPENSSL_STRING_value(sigopts, i);
1288
1289         if (pkey_ctrl_string(pkctx, sigopt) <= 0) {
1290             BIO_printf(err, "parameter error \"%s\"\n", sigopt);
1291             ERR_print_errors(bio_err);
1292             *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR,
1293                                          NULL);
1294             goto end;
1295         }
1296     }
1297     if (!OCSP_basic_sign_ctx(bs, rcert, mctx, rother, flags)) {
1298         *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR, bs);
1299         goto end;
1300     }
1301
1302     if (badsig) {
1303         const ASN1_OCTET_STRING *sig = OCSP_resp_get0_signature(bs);
1304         corrupt_signature(sig);
1305     }
1306
1307     *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_SUCCESSFUL, bs);
1308
1309  end:
1310     EVP_MD_CTX_free(mctx);
1311     ASN1_TIME_free(thisupd);
1312     ASN1_TIME_free(nextupd);
1313     OCSP_BASICRESP_free(bs);
1314 }
1315
1316 static char **lookup_serial(CA_DB *db, ASN1_INTEGER *ser)
1317 {
1318     int i;
1319     BIGNUM *bn = NULL;
1320     char *itmp, *row[DB_NUMBER], **rrow;
1321     for (i = 0; i < DB_NUMBER; i++)
1322         row[i] = NULL;
1323     bn = ASN1_INTEGER_to_BN(ser, NULL);
1324     OPENSSL_assert(bn);         /* FIXME: should report an error at this
1325                                  * point and abort */
1326     if (BN_is_zero(bn))
1327         itmp = OPENSSL_strdup("00");
1328     else
1329         itmp = BN_bn2hex(bn);
1330     row[DB_serial] = itmp;
1331     BN_free(bn);
1332     rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
1333     OPENSSL_free(itmp);
1334     return rrow;
1335 }
1336
1337 /* Quick and dirty OCSP server: read in and parse input request */
1338
1339 static BIO *init_responder(const char *port)
1340 {
1341 # ifdef OPENSSL_NO_SOCK
1342     BIO_printf(bio_err,
1343                "Error setting up accept BIO - sockets not supported.\n");
1344     return NULL;
1345 # else
1346     BIO *acbio = NULL, *bufbio = NULL;
1347
1348     bufbio = BIO_new(BIO_f_buffer());
1349     if (bufbio == NULL)
1350         goto err;
1351     acbio = BIO_new(BIO_s_accept());
1352     if (acbio == NULL
1353         || BIO_set_bind_mode(acbio, BIO_BIND_REUSEADDR) < 0
1354         || BIO_set_accept_port(acbio, port) < 0) {
1355         log_message(LOG_ERR, "Error setting up accept BIO");
1356         goto err;
1357     }
1358
1359     BIO_set_accept_bios(acbio, bufbio);
1360     bufbio = NULL;
1361     if (BIO_do_accept(acbio) <= 0) {
1362         log_message(LOG_ERR, "Error starting accept");
1363         goto err;
1364     }
1365
1366     return acbio;
1367
1368  err:
1369     BIO_free_all(acbio);
1370     BIO_free(bufbio);
1371     return NULL;
1372 # endif
1373 }
1374
1375 # ifndef OPENSSL_NO_SOCK
1376 /*
1377  * Decode %xx URL-decoding in-place. Ignores mal-formed sequences.
1378  */
1379 static int urldecode(char *p)
1380 {
1381     unsigned char *out = (unsigned char *)p;
1382     unsigned char *save = out;
1383
1384     for (; *p; p++) {
1385         if (*p != '%')
1386             *out++ = *p;
1387         else if (isxdigit(_UC(p[1])) && isxdigit(_UC(p[2]))) {
1388             /* Don't check, can't fail because of ixdigit() call. */
1389             *out++ = (OPENSSL_hexchar2int(p[1]) << 4)
1390                    | OPENSSL_hexchar2int(p[2]);
1391             p += 2;
1392         }
1393         else
1394             return -1;
1395     }
1396     *out = '\0';
1397     return (int)(out - save);
1398 }
1399 # endif
1400
1401 # ifdef OCSP_DAEMON
1402 static void socket_timeout(int signum)
1403 {
1404     if (acfd != (int)INVALID_SOCKET)
1405         (void)shutdown(acfd, SHUT_RD);
1406 }
1407 # endif
1408
1409 static int do_responder(OCSP_REQUEST **preq, BIO **pcbio, BIO *acbio,
1410                         int timeout)
1411 {
1412 # ifdef OPENSSL_NO_SOCK
1413     return 0;
1414 # else
1415     int len;
1416     OCSP_REQUEST *req = NULL;
1417     char inbuf[2048], reqbuf[2048];
1418     char *p, *q;
1419     BIO *cbio = NULL, *getbio = NULL, *b64 = NULL;
1420     const char *client;
1421
1422     *preq = NULL;
1423
1424     /* Connection loss before accept() is routine, ignore silently */
1425     if (BIO_do_accept(acbio) <= 0)
1426         return 0;
1427
1428     cbio = BIO_pop(acbio);
1429     *pcbio = cbio;
1430     client = BIO_get_peer_name(cbio);
1431
1432 #  ifdef OCSP_DAEMON
1433     if (timeout > 0) {
1434         (void) BIO_get_fd(cbio, &acfd);
1435         alarm(timeout);
1436     }
1437 #  endif
1438
1439     /* Read the request line. */
1440     len = BIO_gets(cbio, reqbuf, sizeof(reqbuf));
1441     if (len <= 0)
1442         goto out;
1443
1444     if (strncmp(reqbuf, "GET ", 4) == 0) {
1445         /* Expecting GET {sp} /URL {sp} HTTP/1.x */
1446         for (p = reqbuf + 4; *p == ' '; ++p)
1447             continue;
1448         if (*p != '/') {
1449             log_message(LOG_INFO, "Invalid request -- bad URL: %s", client);
1450             goto out;
1451         }
1452         p++;
1453
1454         /* Splice off the HTTP version identifier. */
1455         for (q = p; *q; q++)
1456             if (*q == ' ')
1457                 break;
1458         if (strncmp(q, " HTTP/1.", 8) != 0) {
1459             log_message(LOG_INFO,
1460                         "Invalid request -- bad HTTP version: %s", client);
1461             goto out;
1462         }
1463         *q = '\0';
1464
1465         /*
1466          * Skip "GET / HTTP..." requests often used by load-balancers.  Note:
1467          * 'p' was incremented above to point to the first byte *after* the
1468          * leading slash, so with 'GET / ' it is now an empty string.
1469          */
1470         if (p[0] == '\0')
1471             goto out;
1472
1473         len = urldecode(p);
1474         if (len <= 0) {
1475             log_message(LOG_INFO,
1476                         "Invalid request -- bad URL encoding: %s", client);
1477             goto out;
1478         }
1479         if ((getbio = BIO_new_mem_buf(p, len)) == NULL
1480             || (b64 = BIO_new(BIO_f_base64())) == NULL) {
1481             log_message(LOG_ERR, "Could not allocate base64 bio: %s", client);
1482             goto out;
1483         }
1484         BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
1485         getbio = BIO_push(b64, getbio);
1486     } else if (strncmp(reqbuf, "POST ", 5) != 0) {
1487         log_message(LOG_INFO, "Invalid request -- bad HTTP verb: %s", client);
1488         goto out;
1489     }
1490
1491     /* Read and skip past the headers. */
1492     for (;;) {
1493         len = BIO_gets(cbio, inbuf, sizeof(inbuf));
1494         if (len <= 0)
1495             goto out;
1496         if ((inbuf[0] == '\r') || (inbuf[0] == '\n'))
1497             break;
1498     }
1499
1500 #  ifdef OCSP_DAEMON
1501     /* Clear alarm before we close the client socket */
1502     alarm(0);
1503     timeout = 0;
1504 #  endif
1505
1506     /* Try to read OCSP request */
1507     if (getbio != NULL) {
1508         req = d2i_OCSP_REQUEST_bio(getbio, NULL);
1509         BIO_free_all(getbio);
1510     } else {
1511         req = d2i_OCSP_REQUEST_bio(cbio, NULL);
1512     }
1513
1514     if (req == NULL)
1515         log_message(LOG_ERR, "Error parsing OCSP request");
1516
1517     *preq = req;
1518
1519 out:
1520 #  ifdef OCSP_DAEMON
1521     if (timeout > 0)
1522         alarm(0);
1523     acfd = (int)INVALID_SOCKET;
1524 #  endif
1525     return 1;
1526 # endif
1527 }
1528
1529 static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp)
1530 {
1531     char http_resp[] =
1532         "HTTP/1.0 200 OK\r\nContent-type: application/ocsp-response\r\n"
1533         "Content-Length: %d\r\n\r\n";
1534     if (cbio == NULL)
1535         return 0;
1536     BIO_printf(cbio, http_resp, i2d_OCSP_RESPONSE(resp, NULL));
1537     i2d_OCSP_RESPONSE_bio(cbio, resp);
1538     (void)BIO_flush(cbio);
1539     return 1;
1540 }
1541
1542 # ifndef OPENSSL_NO_SOCK
1543 OCSP_RESPONSE *process_responder(OCSP_REQUEST *req,
1544                                  const char *host, const char *path,
1545                                  const char *port, int use_ssl,
1546                                  STACK_OF(CONF_VALUE) *headers,
1547                                  int req_timeout)
1548 {
1549     SSL_CTX *ctx = NULL;
1550     OCSP_RESPONSE *resp = NULL;
1551
1552     if (use_ssl == 1) {
1553         ctx = SSL_CTX_new(TLS_client_method());
1554         if (ctx == NULL) {
1555             BIO_printf(bio_err, "Error creating SSL context.\n");
1556             goto end;
1557         }
1558         SSL_CTX_set_mode(ctx, SSL_MODE_AUTO_RETRY);
1559     }
1560
1561     resp = (OCSP_RESPONSE *)
1562         app_http_post_asn1(host, port, path, NULL, NULL /* no proxy used */,
1563                            ctx, headers, "application/ocsp-request",
1564                            (ASN1_VALUE *)req, ASN1_ITEM_rptr(OCSP_REQUEST),
1565                            req_timeout, ASN1_ITEM_rptr(OCSP_RESPONSE));
1566
1567     if (resp == NULL)
1568         BIO_printf(bio_err, "Error querying OCSP responder\n");
1569
1570  end:
1571     SSL_CTX_free(ctx);
1572     return resp;
1573 }
1574 # endif
1575
1576 #endif