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