Don't allow -early_data with other options where it doesn't work
[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) <= 0) {
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 && index_index(newrdb) > 0) {
586                 free_index(rdb);
587                 rdb = newrdb;
588             } else {
589                 free_index(newrdb);
590                 log_message(LOG_ERR, "error reloading updated index: %s",
591                             ridx_filename);
592             }
593         }
594 # endif
595
596         req = NULL;
597         if (!do_responder(&req, &cbio, acbio, req_timeout))
598             goto redo_accept;
599
600         if (req == NULL) {
601             resp =
602                 OCSP_response_create(OCSP_RESPONSE_STATUS_MALFORMEDREQUEST,
603                                      NULL);
604             send_ocsp_response(cbio, resp);
605             goto done_resp;
606         }
607     }
608
609     if (req == NULL
610         && (signfile != NULL || reqout != NULL
611             || host != NULL || add_nonce || ridx_filename != NULL)) {
612         BIO_printf(bio_err, "Need an OCSP request for this operation!\n");
613         goto end;
614     }
615
616     if (req != NULL && add_nonce)
617         OCSP_request_add1_nonce(req, NULL, -1);
618
619     if (signfile != NULL) {
620         if (keyfile == NULL)
621             keyfile = signfile;
622         signer = load_cert(signfile, FORMAT_PEM, "signer certificate");
623         if (signer == NULL) {
624             BIO_printf(bio_err, "Error loading signer certificate\n");
625             goto end;
626         }
627         if (sign_certfile != NULL) {
628             if (!load_certs(sign_certfile, &sign_other, FORMAT_PEM, NULL,
629                             "signer certificates"))
630                 goto end;
631         }
632         key = load_key(keyfile, FORMAT_PEM, 0, NULL, NULL,
633                        "signer private key");
634         if (key == NULL)
635             goto end;
636
637         if (!OCSP_request_sign
638             (req, signer, key, NULL, sign_other, sign_flags)) {
639             BIO_printf(bio_err, "Error signing OCSP request\n");
640             goto end;
641         }
642     }
643
644     if (req_text && req != NULL)
645         OCSP_REQUEST_print(out, req, 0);
646
647     if (reqout != NULL) {
648         derbio = bio_open_default(reqout, 'w', FORMAT_ASN1);
649         if (derbio == NULL)
650             goto end;
651         i2d_OCSP_REQUEST_bio(derbio, req);
652         BIO_free(derbio);
653     }
654
655     if (rdb != NULL) {
656         make_ocsp_response(bio_err, &resp, req, rdb, rca_cert, rsigner, rkey,
657                                rsign_md, rsign_sigopts, rother, rflags, nmin, ndays, badsig);
658         if (cbio != NULL)
659             send_ocsp_response(cbio, resp);
660     } else if (host != NULL) {
661 # ifndef OPENSSL_NO_SOCK
662         resp = process_responder(req, host, path,
663                                  port, use_ssl, headers, req_timeout);
664         if (resp == NULL)
665             goto end;
666 # else
667         BIO_printf(bio_err,
668                    "Error creating connect BIO - sockets not supported.\n");
669         goto end;
670 # endif
671     } else if (respin != NULL) {
672         derbio = bio_open_default(respin, 'r', FORMAT_ASN1);
673         if (derbio == NULL)
674             goto end;
675         resp = d2i_OCSP_RESPONSE_bio(derbio, NULL);
676         BIO_free(derbio);
677         if (resp == NULL) {
678             BIO_printf(bio_err, "Error reading OCSP response\n");
679             goto end;
680         }
681     } else {
682         ret = 0;
683         goto end;
684     }
685
686  done_resp:
687
688     if (respout != NULL) {
689         derbio = bio_open_default(respout, 'w', FORMAT_ASN1);
690         if (derbio == NULL)
691             goto end;
692         i2d_OCSP_RESPONSE_bio(derbio, resp);
693         BIO_free(derbio);
694     }
695
696     i = OCSP_response_status(resp);
697     if (i != OCSP_RESPONSE_STATUS_SUCCESSFUL) {
698         BIO_printf(out, "Responder Error: %s (%d)\n",
699                    OCSP_response_status_str(i), i);
700         if (!ignore_err)
701                 goto end;
702     }
703
704     if (resp_text)
705         OCSP_RESPONSE_print(out, resp, 0);
706
707     /* If running as responder don't verify our own response */
708     if (cbio != NULL) {
709         /* If not unlimited, see if we took all we should. */
710         if (accept_count != -1 && --accept_count <= 0) {
711             ret = 0;
712             goto end;
713         }
714         BIO_free_all(cbio);
715         cbio = NULL;
716         OCSP_REQUEST_free(req);
717         req = NULL;
718         OCSP_RESPONSE_free(resp);
719         resp = NULL;
720         goto redo_accept;
721     }
722     if (ridx_filename != NULL) {
723         ret = 0;
724         goto end;
725     }
726
727     if (store == NULL) {
728         store = setup_verify(CAfile, CApath, noCAfile, noCApath);
729         if (!store)
730             goto end;
731     }
732     if (vpmtouched)
733         X509_STORE_set1_param(store, vpm);
734     if (verify_certfile != NULL) {
735         if (!load_certs(verify_certfile, &verify_other, FORMAT_PEM, NULL,
736                         "validator certificate"))
737             goto end;
738     }
739
740     bs = OCSP_response_get1_basic(resp);
741     if (bs == NULL) {
742         BIO_printf(bio_err, "Error parsing response\n");
743         goto end;
744     }
745
746     ret = 0;
747
748     if (!noverify) {
749         if (req != NULL && ((i = OCSP_check_nonce(req, bs)) <= 0)) {
750             if (i == -1)
751                 BIO_printf(bio_err, "WARNING: no nonce in response\n");
752             else {
753                 BIO_printf(bio_err, "Nonce Verify error\n");
754                 ret = 1;
755                 goto end;
756             }
757         }
758
759         i = OCSP_basic_verify(bs, verify_other, store, verify_flags);
760         if (i <= 0 && issuers) {
761             i = OCSP_basic_verify(bs, issuers, store, OCSP_TRUSTOTHER);
762             if (i > 0)
763                 ERR_clear_error();
764         }
765         if (i <= 0) {
766             BIO_printf(bio_err, "Response Verify Failure\n");
767             ERR_print_errors(bio_err);
768             ret = 1;
769         } else {
770             BIO_printf(bio_err, "Response verify OK\n");
771         }
772     }
773
774     print_ocsp_summary(out, bs, req, reqnames, ids, nsec, maxage);
775
776  end:
777     ERR_print_errors(bio_err);
778     X509_free(signer);
779     X509_STORE_free(store);
780     X509_VERIFY_PARAM_free(vpm);
781     sk_OPENSSL_STRING_free(rsign_sigopts);
782     EVP_PKEY_free(key);
783     EVP_PKEY_free(rkey);
784     X509_free(cert);
785     sk_X509_pop_free(issuers, X509_free);
786     X509_free(rsigner);
787     sk_X509_pop_free(rca_cert, X509_free);
788     free_index(rdb);
789     BIO_free_all(cbio);
790     BIO_free_all(acbio);
791     BIO_free_all(out);
792     OCSP_REQUEST_free(req);
793     OCSP_RESPONSE_free(resp);
794     OCSP_BASICRESP_free(bs);
795     sk_OPENSSL_STRING_free(reqnames);
796     sk_OCSP_CERTID_free(ids);
797     sk_X509_pop_free(sign_other, X509_free);
798     sk_X509_pop_free(verify_other, X509_free);
799     sk_CONF_VALUE_pop_free(headers, X509V3_conf_free);
800     OPENSSL_free(thost);
801     OPENSSL_free(tport);
802     OPENSSL_free(tpath);
803
804     return ret;
805 }
806
807 static void
808 log_message(int level, const char *fmt, ...)
809 {
810     va_list ap;
811
812     va_start(ap, fmt);
813 # ifdef OCSP_DAEMON
814     if (multi) {
815         char buf[1024];
816         if (vsnprintf(buf, sizeof(buf), fmt, ap) > 0) {
817             syslog(level, "%s", buf);
818         }
819         if (level >= LOG_ERR)
820             ERR_print_errors_cb(print_syslog, &level);
821     }
822 # endif
823     if (!multi) {
824         BIO_printf(bio_err, "%s: ", prog);
825         BIO_vprintf(bio_err, fmt, ap);
826         BIO_printf(bio_err, "\n");
827     }
828     va_end(ap);
829 }
830
831 # ifdef OCSP_DAEMON
832
833 static int print_syslog(const char *str, size_t len, void *levPtr)
834 {
835     int level = *(int *)levPtr;
836     int ilen = (len > MAXERRLEN) ? MAXERRLEN : len;
837
838     syslog(level, "%.*s", ilen, str);
839
840     return ilen;
841 }
842
843 static int index_changed(CA_DB *rdb)
844 {
845     struct stat sb;
846
847     if (rdb != NULL && stat(rdb->dbfname, &sb) != -1) {
848         if (rdb->dbst.st_mtime != sb.st_mtime
849             || rdb->dbst.st_ctime != sb.st_ctime
850             || rdb->dbst.st_ino != sb.st_ino
851             || rdb->dbst.st_dev != sb.st_dev) {
852             syslog(LOG_INFO, "index file changed, reloading");
853             return 1;
854         }
855     }
856     return 0;
857 }
858
859 static void killall(int ret, pid_t *kidpids)
860 {
861     int i;
862
863     for (i = 0; i < multi; ++i)
864         if (kidpids[i] != 0)
865             (void)kill(kidpids[i], SIGTERM);
866     sleep(1);
867     exit(ret);
868 }
869
870 static int termsig = 0;
871
872 static void noteterm (int sig)
873 {
874     termsig = sig;
875 }
876
877 /*
878  * Loop spawning up to `multi` child processes, only child processes return
879  * from this function.  The parent process loops until receiving a termination
880  * signal, kills extant children and exits without returning.
881  */
882 static void spawn_loop(void)
883 {
884     pid_t *kidpids = NULL;
885     int status;
886     int procs = 0;
887     int i;
888
889     openlog(prog, LOG_PID, LOG_DAEMON);
890
891     if (setpgid(0, 0)) {
892         syslog(LOG_ERR, "fatal: error detaching from parent process group: %s",
893                strerror(errno));
894         exit(1);
895     }
896     kidpids = app_malloc(multi * sizeof(*kidpids), "child PID array");
897     for (i = 0; i < multi; ++i)
898         kidpids[i] = 0;
899
900     signal(SIGINT, noteterm);
901     signal(SIGTERM, noteterm);
902
903     while (termsig == 0) {
904         pid_t fpid;
905
906         /*
907          * Wait for a child to replace when we're at the limit.
908          * Slow down if a child exited abnormally or waitpid() < 0
909          */
910         while (termsig == 0 && procs >= multi) {
911             if ((fpid = waitpid(-1, &status, 0)) > 0) {
912                 for (i = 0; i < procs; ++i) {
913                     if (kidpids[i] == fpid) {
914                         kidpids[i] = 0;
915                         --procs;
916                         break;
917                     }
918                 }
919                 if (i >= multi) {
920                     syslog(LOG_ERR, "fatal: internal error: "
921                            "no matching child slot for pid: %ld",
922                            (long) fpid);
923                     killall(1, kidpids);
924                 }
925                 if (status != 0) {
926                     if (WIFEXITED(status))
927                         syslog(LOG_WARNING, "child process: %ld, exit status: %d",
928                                (long)fpid, WEXITSTATUS(status));
929                     else if (WIFSIGNALED(status))
930                         syslog(LOG_WARNING, "child process: %ld, term signal %d%s",
931                                (long)fpid, WTERMSIG(status),
932 #ifdef WCOREDUMP
933                                WCOREDUMP(status) ? " (core dumped)" :
934 #endif
935                                "");
936                     sleep(1);
937                 }
938                 break;
939             } else if (errno != EINTR) {
940                 syslog(LOG_ERR, "fatal: waitpid(): %s", strerror(errno));
941                 killall(1, kidpids);
942             }
943         }
944         if (termsig)
945             break;
946
947         switch(fpid = fork()) {
948         case -1:            /* error */
949             /* System critically low on memory, pause and try again later */
950             sleep(30);
951             break;
952         case 0:             /* child */
953             signal(SIGINT, SIG_DFL);
954             signal(SIGTERM, SIG_DFL);
955             if (termsig)
956                 _exit(0);
957             if (RAND_poll() <= 0) {
958                 syslog(LOG_ERR, "fatal: RAND_poll() failed");
959                 _exit(1);
960             }
961             return;
962         default:            /* parent */
963             for (i = 0; i < multi; ++i) {
964                 if (kidpids[i] == 0) {
965                     kidpids[i] = fpid;
966                     procs++;
967                     break;
968                 }
969             }
970             if (i >= multi) {
971                 syslog(LOG_ERR, "fatal: internal error: no free child slots");
972                 killall(1, kidpids);
973             }
974             break;
975         }
976     }
977
978     /* The loop above can only break on termsig */
979     syslog(LOG_INFO, "terminating on signal: %d", termsig);
980     killall(0, kidpids);
981 }
982 # endif
983
984 static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert,
985                          const EVP_MD *cert_id_md, X509 *issuer,
986                          STACK_OF(OCSP_CERTID) *ids)
987 {
988     OCSP_CERTID *id;
989
990     if (issuer == NULL) {
991         BIO_printf(bio_err, "No issuer certificate specified\n");
992         return 0;
993     }
994     if (*req == NULL)
995         *req = OCSP_REQUEST_new();
996     if (*req == NULL)
997         goto err;
998     id = OCSP_cert_to_id(cert_id_md, cert, issuer);
999     if (id == NULL || !sk_OCSP_CERTID_push(ids, id))
1000         goto err;
1001     if (!OCSP_request_add0_id(*req, id))
1002         goto err;
1003     return 1;
1004
1005  err:
1006     BIO_printf(bio_err, "Error Creating OCSP request\n");
1007     return 0;
1008 }
1009
1010 static int add_ocsp_serial(OCSP_REQUEST **req, char *serial,
1011                            const EVP_MD *cert_id_md, X509 *issuer,
1012                            STACK_OF(OCSP_CERTID) *ids)
1013 {
1014     OCSP_CERTID *id;
1015     X509_NAME *iname;
1016     ASN1_BIT_STRING *ikey;
1017     ASN1_INTEGER *sno;
1018
1019     if (issuer == NULL) {
1020         BIO_printf(bio_err, "No issuer certificate specified\n");
1021         return 0;
1022     }
1023     if (*req == NULL)
1024         *req = OCSP_REQUEST_new();
1025     if (*req == NULL)
1026         goto err;
1027     iname = X509_get_subject_name(issuer);
1028     ikey = X509_get0_pubkey_bitstr(issuer);
1029     sno = s2i_ASN1_INTEGER(NULL, serial);
1030     if (sno == NULL) {
1031         BIO_printf(bio_err, "Error converting serial number %s\n", serial);
1032         return 0;
1033     }
1034     id = OCSP_cert_id_new(cert_id_md, iname, ikey, sno);
1035     ASN1_INTEGER_free(sno);
1036     if (id == NULL || !sk_OCSP_CERTID_push(ids, id))
1037         goto err;
1038     if (!OCSP_request_add0_id(*req, id))
1039         goto err;
1040     return 1;
1041
1042  err:
1043     BIO_printf(bio_err, "Error Creating OCSP request\n");
1044     return 0;
1045 }
1046
1047 static void print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
1048                               STACK_OF(OPENSSL_STRING) *names,
1049                               STACK_OF(OCSP_CERTID) *ids, long nsec,
1050                               long maxage)
1051 {
1052     OCSP_CERTID *id;
1053     const char *name;
1054     int i, status, reason;
1055     ASN1_GENERALIZEDTIME *rev, *thisupd, *nextupd;
1056
1057     if (bs == NULL || req == NULL || !sk_OPENSSL_STRING_num(names)
1058         || !sk_OCSP_CERTID_num(ids))
1059         return;
1060
1061     for (i = 0; i < sk_OCSP_CERTID_num(ids); i++) {
1062         id = sk_OCSP_CERTID_value(ids, i);
1063         name = sk_OPENSSL_STRING_value(names, i);
1064         BIO_printf(out, "%s: ", name);
1065
1066         if (!OCSP_resp_find_status(bs, id, &status, &reason,
1067                                    &rev, &thisupd, &nextupd)) {
1068             BIO_puts(out, "ERROR: No Status found.\n");
1069             continue;
1070         }
1071
1072         /*
1073          * Check validity: if invalid write to output BIO so we know which
1074          * response this refers to.
1075          */
1076         if (!OCSP_check_validity(thisupd, nextupd, nsec, maxage)) {
1077             BIO_puts(out, "WARNING: Status times invalid.\n");
1078             ERR_print_errors(out);
1079         }
1080         BIO_printf(out, "%s\n", OCSP_cert_status_str(status));
1081
1082         BIO_puts(out, "\tThis Update: ");
1083         ASN1_GENERALIZEDTIME_print(out, thisupd);
1084         BIO_puts(out, "\n");
1085
1086         if (nextupd) {
1087             BIO_puts(out, "\tNext Update: ");
1088             ASN1_GENERALIZEDTIME_print(out, nextupd);
1089             BIO_puts(out, "\n");
1090         }
1091
1092         if (status != V_OCSP_CERTSTATUS_REVOKED)
1093             continue;
1094
1095         if (reason != -1)
1096             BIO_printf(out, "\tReason: %s\n", OCSP_crl_reason_str(reason));
1097
1098         BIO_puts(out, "\tRevocation Time: ");
1099         ASN1_GENERALIZEDTIME_print(out, rev);
1100         BIO_puts(out, "\n");
1101     }
1102 }
1103
1104 static void make_ocsp_response(BIO *err, OCSP_RESPONSE **resp, OCSP_REQUEST *req,
1105                               CA_DB *db, STACK_OF(X509) *ca, X509 *rcert,
1106                               EVP_PKEY *rkey, const EVP_MD *rmd,
1107                               STACK_OF(OPENSSL_STRING) *sigopts,
1108                               STACK_OF(X509) *rother, unsigned long flags,
1109                               int nmin, int ndays, int badsig)
1110 {
1111     ASN1_TIME *thisupd = NULL, *nextupd = NULL;
1112     OCSP_CERTID *cid;
1113     OCSP_BASICRESP *bs = NULL;
1114     int i, id_count;
1115     EVP_MD_CTX *mctx = NULL;
1116     EVP_PKEY_CTX *pkctx = NULL;
1117
1118     id_count = OCSP_request_onereq_count(req);
1119
1120     if (id_count <= 0) {
1121         *resp =
1122             OCSP_response_create(OCSP_RESPONSE_STATUS_MALFORMEDREQUEST, NULL);
1123         goto end;
1124     }
1125
1126     bs = OCSP_BASICRESP_new();
1127     thisupd = X509_gmtime_adj(NULL, 0);
1128     if (ndays != -1)
1129         nextupd = X509_time_adj_ex(NULL, ndays, nmin * 60, NULL);
1130
1131     /* Examine each certificate id in the request */
1132     for (i = 0; i < id_count; i++) {
1133         OCSP_ONEREQ *one;
1134         ASN1_INTEGER *serial;
1135         char **inf;
1136         int jj;
1137         int found = 0;
1138         ASN1_OBJECT *cert_id_md_oid;
1139         const EVP_MD *cert_id_md;
1140         one = OCSP_request_onereq_get0(req, i);
1141         cid = OCSP_onereq_get0_id(one);
1142
1143         OCSP_id_get0_info(NULL, &cert_id_md_oid, NULL, NULL, cid);
1144
1145         cert_id_md = EVP_get_digestbyobj(cert_id_md_oid);
1146         if (cert_id_md == NULL) {
1147             *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR,
1148                                          NULL);
1149             goto end;
1150         }
1151         for (jj = 0; jj < sk_X509_num(ca) && !found; jj++) {
1152             X509 *ca_cert = sk_X509_value(ca, jj);
1153             OCSP_CERTID *ca_id = OCSP_cert_to_id(cert_id_md, NULL, ca_cert);
1154
1155             if (OCSP_id_issuer_cmp(ca_id, cid) == 0)
1156                 found = 1;
1157
1158             OCSP_CERTID_free(ca_id);
1159         }
1160
1161         if (!found) {
1162             OCSP_basic_add1_status(bs, cid,
1163                                    V_OCSP_CERTSTATUS_UNKNOWN,
1164                                    0, NULL, thisupd, nextupd);
1165             continue;
1166         }
1167         OCSP_id_get0_info(NULL, NULL, NULL, &serial, cid);
1168         inf = lookup_serial(db, serial);
1169         if (inf == NULL) {
1170             OCSP_basic_add1_status(bs, cid,
1171                                    V_OCSP_CERTSTATUS_UNKNOWN,
1172                                    0, NULL, thisupd, nextupd);
1173         } else if (inf[DB_type][0] == DB_TYPE_VAL) {
1174             OCSP_basic_add1_status(bs, cid,
1175                                    V_OCSP_CERTSTATUS_GOOD,
1176                                    0, NULL, thisupd, nextupd);
1177         } else if (inf[DB_type][0] == DB_TYPE_REV) {
1178             ASN1_OBJECT *inst = NULL;
1179             ASN1_TIME *revtm = NULL;
1180             ASN1_GENERALIZEDTIME *invtm = NULL;
1181             OCSP_SINGLERESP *single;
1182             int reason = -1;
1183             unpack_revinfo(&revtm, &reason, &inst, &invtm, inf[DB_rev_date]);
1184             single = OCSP_basic_add1_status(bs, cid,
1185                                             V_OCSP_CERTSTATUS_REVOKED,
1186                                             reason, revtm, thisupd, nextupd);
1187             if (invtm != NULL)
1188                 OCSP_SINGLERESP_add1_ext_i2d(single, NID_invalidity_date,
1189                                              invtm, 0, 0);
1190             else if (inst != NULL)
1191                 OCSP_SINGLERESP_add1_ext_i2d(single,
1192                                              NID_hold_instruction_code, inst,
1193                                              0, 0);
1194             ASN1_OBJECT_free(inst);
1195             ASN1_TIME_free(revtm);
1196             ASN1_GENERALIZEDTIME_free(invtm);
1197         }
1198     }
1199
1200     OCSP_copy_nonce(bs, req);
1201
1202     mctx = EVP_MD_CTX_new();
1203     if ( mctx == NULL || !EVP_DigestSignInit(mctx, &pkctx, rmd, NULL, rkey)) {
1204         *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR, NULL);
1205         goto end;
1206     }
1207     for (i = 0; i < sk_OPENSSL_STRING_num(sigopts); i++) {
1208         char *sigopt = sk_OPENSSL_STRING_value(sigopts, i);
1209
1210         if (pkey_ctrl_string(pkctx, sigopt) <= 0) {
1211             BIO_printf(err, "parameter error \"%s\"\n", sigopt);
1212             ERR_print_errors(bio_err);
1213             *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR,
1214                                          NULL);
1215             goto end;
1216         }
1217     }
1218     OCSP_basic_sign_ctx(bs, rcert, mctx, rother, flags);
1219
1220     if (badsig) {
1221         const ASN1_OCTET_STRING *sig = OCSP_resp_get0_signature(bs);
1222         corrupt_signature(sig);
1223     }
1224
1225     *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_SUCCESSFUL, bs);
1226
1227  end:
1228     EVP_MD_CTX_free(mctx);
1229     ASN1_TIME_free(thisupd);
1230     ASN1_TIME_free(nextupd);
1231     OCSP_BASICRESP_free(bs);
1232 }
1233
1234 static char **lookup_serial(CA_DB *db, ASN1_INTEGER *ser)
1235 {
1236     int i;
1237     BIGNUM *bn = NULL;
1238     char *itmp, *row[DB_NUMBER], **rrow;
1239     for (i = 0; i < DB_NUMBER; i++)
1240         row[i] = NULL;
1241     bn = ASN1_INTEGER_to_BN(ser, NULL);
1242     OPENSSL_assert(bn);         /* FIXME: should report an error at this
1243                                  * point and abort */
1244     if (BN_is_zero(bn))
1245         itmp = OPENSSL_strdup("00");
1246     else
1247         itmp = BN_bn2hex(bn);
1248     row[DB_serial] = itmp;
1249     BN_free(bn);
1250     rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
1251     OPENSSL_free(itmp);
1252     return rrow;
1253 }
1254
1255 /* Quick and dirty OCSP server: read in and parse input request */
1256
1257 static BIO *init_responder(const char *port)
1258 {
1259 # ifdef OPENSSL_NO_SOCK
1260     BIO_printf(bio_err,
1261                "Error setting up accept BIO - sockets not supported.\n");
1262     return NULL;
1263 # else
1264     BIO *acbio = NULL, *bufbio = NULL;
1265
1266     bufbio = BIO_new(BIO_f_buffer());
1267     if (bufbio == NULL)
1268         goto err;
1269     acbio = BIO_new(BIO_s_accept());
1270     if (acbio == NULL
1271         || BIO_set_bind_mode(acbio, BIO_BIND_REUSEADDR) < 0
1272         || BIO_set_accept_port(acbio, port) < 0) {
1273         log_message(LOG_ERR, "Error setting up accept BIO");
1274         goto err;
1275     }
1276
1277     BIO_set_accept_bios(acbio, bufbio);
1278     bufbio = NULL;
1279     if (BIO_do_accept(acbio) <= 0) {
1280         log_message(LOG_ERR, "Error starting accept");
1281         goto err;
1282     }
1283
1284     return acbio;
1285
1286  err:
1287     BIO_free_all(acbio);
1288     BIO_free(bufbio);
1289     return NULL;
1290 # endif
1291 }
1292
1293 # ifndef OPENSSL_NO_SOCK
1294 /*
1295  * Decode %xx URL-decoding in-place. Ignores mal-formed sequences.
1296  */
1297 static int urldecode(char *p)
1298 {
1299     unsigned char *out = (unsigned char *)p;
1300     unsigned char *save = out;
1301
1302     for (; *p; p++) {
1303         if (*p != '%')
1304             *out++ = *p;
1305         else if (isxdigit(_UC(p[1])) && isxdigit(_UC(p[2]))) {
1306             /* Don't check, can't fail because of ixdigit() call. */
1307             *out++ = (OPENSSL_hexchar2int(p[1]) << 4)
1308                    | OPENSSL_hexchar2int(p[2]);
1309             p += 2;
1310         }
1311         else
1312             return -1;
1313     }
1314     *out = '\0';
1315     return (int)(out - save);
1316 }
1317 # endif
1318
1319 # ifdef OCSP_DAEMON
1320 static void sock_timeout(int signum)
1321 {
1322     if (acfd != (int)INVALID_SOCKET)
1323         (void)shutdown(acfd, SHUT_RD);
1324 }
1325 # endif
1326
1327 static int do_responder(OCSP_REQUEST **preq, BIO **pcbio, BIO *acbio,
1328                         int timeout)
1329 {
1330 # ifdef OPENSSL_NO_SOCK
1331     return 0;
1332 # else
1333     int len;
1334     OCSP_REQUEST *req = NULL;
1335     char inbuf[2048], reqbuf[2048];
1336     char *p, *q;
1337     BIO *cbio = NULL, *getbio = NULL, *b64 = NULL;
1338     const char *client;
1339
1340     *preq = NULL;
1341
1342     /* Connection loss before accept() is routine, ignore silently */
1343     if (BIO_do_accept(acbio) <= 0)
1344         return 0;
1345
1346     cbio = BIO_pop(acbio);
1347     *pcbio = cbio;
1348     client = BIO_get_peer_name(cbio);
1349
1350 #  ifdef OCSP_DAEMON
1351     if (timeout > 0) {
1352         (void) BIO_get_fd(cbio, &acfd);
1353         alarm(timeout);
1354     }
1355 #  endif
1356
1357     /* Read the request line. */
1358     len = BIO_gets(cbio, reqbuf, sizeof(reqbuf));
1359     if (len <= 0)
1360         goto out;
1361
1362     if (strncmp(reqbuf, "GET ", 4) == 0) {
1363         /* Expecting GET {sp} /URL {sp} HTTP/1.x */
1364         for (p = reqbuf + 4; *p == ' '; ++p)
1365             continue;
1366         if (*p != '/') {
1367             log_message(LOG_INFO, "Invalid request -- bad URL: %s", client);
1368             goto out;
1369         }
1370         p++;
1371
1372         /* Splice off the HTTP version identifier. */
1373         for (q = p; *q; q++)
1374             if (*q == ' ')
1375                 break;
1376         if (strncmp(q, " HTTP/1.", 8) != 0) {
1377             log_message(LOG_INFO,
1378                         "Invalid request -- bad HTTP version: %s", client);
1379             goto out;
1380         }
1381         *q = '\0';
1382
1383         /*
1384          * Skip "GET / HTTP..." requests often used by load-balancers
1385          */
1386         if (p[1] == '\0')
1387             goto out;
1388
1389         len = urldecode(p);
1390         if (len <= 0) {
1391             log_message(LOG_INFO,
1392                         "Invalid request -- bad URL encoding: %s", client);
1393             goto out;
1394         }
1395         if ((getbio = BIO_new_mem_buf(p, len)) == NULL
1396             || (b64 = BIO_new(BIO_f_base64())) == NULL) {
1397             log_message(LOG_ERR, "Could not allocate base64 bio: %s", client);
1398             goto out;
1399         }
1400         BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
1401         getbio = BIO_push(b64, getbio);
1402     } else if (strncmp(reqbuf, "POST ", 5) != 0) {
1403         log_message(LOG_INFO, "Invalid request -- bad HTTP verb: %s", client);
1404         goto out;
1405     }
1406
1407     /* Read and skip past the headers. */
1408     for (;;) {
1409         len = BIO_gets(cbio, inbuf, sizeof(inbuf));
1410         if (len <= 0)
1411             goto out;
1412         if ((inbuf[0] == '\r') || (inbuf[0] == '\n'))
1413             break;
1414     }
1415
1416 #  ifdef OCSP_DAEMON
1417     /* Clear alarm before we close the client socket */
1418     alarm(0);
1419     timeout = 0;
1420 #  endif
1421
1422     /* Try to read OCSP request */
1423     if (getbio != NULL) {
1424         req = d2i_OCSP_REQUEST_bio(getbio, NULL);
1425         BIO_free_all(getbio);
1426     } else {
1427         req = d2i_OCSP_REQUEST_bio(cbio, NULL);
1428     }
1429
1430     if (req == NULL)
1431         log_message(LOG_ERR, "Error parsing OCSP request");
1432
1433     *preq = req;
1434
1435 out:
1436 #  ifdef OCSP_DAEMON
1437     if (timeout > 0)
1438         alarm(0);
1439     acfd = (int)INVALID_SOCKET;
1440 #  endif
1441     return 1;
1442 # endif
1443 }
1444
1445 static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp)
1446 {
1447     char http_resp[] =
1448         "HTTP/1.0 200 OK\r\nContent-type: application/ocsp-response\r\n"
1449         "Content-Length: %d\r\n\r\n";
1450     if (cbio == NULL)
1451         return 0;
1452     BIO_printf(cbio, http_resp, i2d_OCSP_RESPONSE(resp, NULL));
1453     i2d_OCSP_RESPONSE_bio(cbio, resp);
1454     (void)BIO_flush(cbio);
1455     return 1;
1456 }
1457
1458 # ifndef OPENSSL_NO_SOCK
1459 static OCSP_RESPONSE *query_responder(BIO *cbio, const char *host,
1460                                       const char *path,
1461                                       const STACK_OF(CONF_VALUE) *headers,
1462                                       OCSP_REQUEST *req, int req_timeout)
1463 {
1464     int fd;
1465     int rv;
1466     int i;
1467     int add_host = 1;
1468     OCSP_REQ_CTX *ctx = NULL;
1469     OCSP_RESPONSE *rsp = NULL;
1470     fd_set confds;
1471     struct timeval tv;
1472
1473     if (req_timeout != -1)
1474         BIO_set_nbio(cbio, 1);
1475
1476     rv = BIO_do_connect(cbio);
1477
1478     if ((rv <= 0) && ((req_timeout == -1) || !BIO_should_retry(cbio))) {
1479         BIO_puts(bio_err, "Error connecting BIO\n");
1480         return NULL;
1481     }
1482
1483     if (BIO_get_fd(cbio, &fd) < 0) {
1484         BIO_puts(bio_err, "Can't get connection fd\n");
1485         goto err;
1486     }
1487
1488     if (req_timeout != -1 && rv <= 0) {
1489         FD_ZERO(&confds);
1490         openssl_fdset(fd, &confds);
1491         tv.tv_usec = 0;
1492         tv.tv_sec = req_timeout;
1493         rv = select(fd + 1, NULL, (void *)&confds, NULL, &tv);
1494         if (rv == 0) {
1495             BIO_puts(bio_err, "Timeout on connect\n");
1496             return NULL;
1497         }
1498     }
1499
1500     ctx = OCSP_sendreq_new(cbio, path, NULL, -1);
1501     if (ctx == NULL)
1502         return NULL;
1503
1504     for (i = 0; i < sk_CONF_VALUE_num(headers); i++) {
1505         CONF_VALUE *hdr = sk_CONF_VALUE_value(headers, i);
1506         if (add_host == 1 && strcasecmp("host", hdr->name) == 0)
1507             add_host = 0;
1508         if (!OCSP_REQ_CTX_add1_header(ctx, hdr->name, hdr->value))
1509             goto err;
1510     }
1511
1512     if (add_host == 1 && OCSP_REQ_CTX_add1_header(ctx, "Host", host) == 0)
1513         goto err;
1514
1515     if (!OCSP_REQ_CTX_set1_req(ctx, req))
1516         goto err;
1517
1518     for (;;) {
1519         rv = OCSP_sendreq_nbio(&rsp, ctx);
1520         if (rv != -1)
1521             break;
1522         if (req_timeout == -1)
1523             continue;
1524         FD_ZERO(&confds);
1525         openssl_fdset(fd, &confds);
1526         tv.tv_usec = 0;
1527         tv.tv_sec = req_timeout;
1528         if (BIO_should_read(cbio)) {
1529             rv = select(fd + 1, (void *)&confds, NULL, NULL, &tv);
1530         } else if (BIO_should_write(cbio)) {
1531             rv = select(fd + 1, NULL, (void *)&confds, NULL, &tv);
1532         } else {
1533             BIO_puts(bio_err, "Unexpected retry condition\n");
1534             goto err;
1535         }
1536         if (rv == 0) {
1537             BIO_puts(bio_err, "Timeout on request\n");
1538             break;
1539         }
1540         if (rv == -1) {
1541             BIO_puts(bio_err, "Select error\n");
1542             break;
1543         }
1544
1545     }
1546  err:
1547     OCSP_REQ_CTX_free(ctx);
1548
1549     return rsp;
1550 }
1551
1552 OCSP_RESPONSE *process_responder(OCSP_REQUEST *req,
1553                                  const char *host, const char *path,
1554                                  const char *port, int use_ssl,
1555                                  STACK_OF(CONF_VALUE) *headers,
1556                                  int req_timeout)
1557 {
1558     BIO *cbio = NULL;
1559     SSL_CTX *ctx = NULL;
1560     OCSP_RESPONSE *resp = NULL;
1561
1562     cbio = BIO_new_connect(host);
1563     if (cbio == NULL) {
1564         BIO_printf(bio_err, "Error creating connect BIO\n");
1565         goto end;
1566     }
1567     if (port != NULL)
1568         BIO_set_conn_port(cbio, port);
1569     if (use_ssl == 1) {
1570         BIO *sbio;
1571         ctx = SSL_CTX_new(TLS_client_method());
1572         if (ctx == NULL) {
1573             BIO_printf(bio_err, "Error creating SSL context.\n");
1574             goto end;
1575         }
1576         SSL_CTX_set_mode(ctx, SSL_MODE_AUTO_RETRY);
1577         sbio = BIO_new_ssl(ctx, 1);
1578         cbio = BIO_push(sbio, cbio);
1579     }
1580
1581     resp = query_responder(cbio, host, path, headers, req, req_timeout);
1582     if (resp == NULL)
1583         BIO_printf(bio_err, "Error querying OCSP responder\n");
1584  end:
1585     BIO_free_all(cbio);
1586     SSL_CTX_free(ctx);
1587     return resp;
1588 }
1589 # endif
1590
1591 #endif