]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - crypto/openssl/apps/ocsp.c
Merge llvm, clang, lld, lldb, compiler-rt and libc++ release_70 branch
[FreeBSD/FreeBSD.git] / crypto / openssl / apps / ocsp.c
1 /* ocsp.c */
2 /*
3  * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
4  * 2000.
5  */
6 /* ====================================================================
7  * Copyright (c) 1999-2018 The OpenSSL Project.  All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  *
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in
18  *    the documentation and/or other materials provided with the
19  *    distribution.
20  *
21  * 3. All advertising materials mentioning features or use of this
22  *    software must display the following acknowledgment:
23  *    "This product includes software developed by the OpenSSL Project
24  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
25  *
26  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
27  *    endorse or promote products derived from this software without
28  *    prior written permission. For written permission, please contact
29  *    licensing@OpenSSL.org.
30  *
31  * 5. Products derived from this software may not be called "OpenSSL"
32  *    nor may "OpenSSL" appear in their names without prior written
33  *    permission of the OpenSSL Project.
34  *
35  * 6. Redistributions of any form whatsoever must retain the following
36  *    acknowledgment:
37  *    "This product includes software developed by the OpenSSL Project
38  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
41  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
44  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51  * OF THE POSSIBILITY OF SUCH DAMAGE.
52  * ====================================================================
53  *
54  * This product includes cryptographic software written by Eric Young
55  * (eay@cryptsoft.com).  This product includes software written by Tim
56  * Hudson (tjh@cryptsoft.com).
57  *
58  */
59 #ifndef OPENSSL_NO_OCSP
60
61 # ifdef OPENSSL_SYS_VMS
62 #  define _XOPEN_SOURCE_EXTENDED/* So fd_set and friends get properly defined
63                                  * on OpenVMS */
64 # endif
65
66 # define USE_SOCKETS
67
68 # include <stdio.h>
69 # include <stdlib.h>
70 # include <string.h>
71 # include <time.h>
72 # include "apps.h"              /* needs to be included before the openssl
73                                  * headers! */
74 # include <openssl/e_os2.h>
75 # include <openssl/crypto.h>
76 # include <openssl/err.h>
77 # include <openssl/ssl.h>
78 # include <openssl/evp.h>
79 # include <openssl/bn.h>
80 # include <openssl/x509v3.h>
81
82 # if defined(NETWARE_CLIB)
83 #  ifdef NETWARE_BSDSOCK
84 #   include <sys/socket.h>
85 #   include <sys/bsdskt.h>
86 #  else
87 #   include <novsock2.h>
88 #  endif
89 # elif defined(NETWARE_LIBC)
90 #  ifdef NETWARE_BSDSOCK
91 #   include <sys/select.h>
92 #  else
93 #   include <novsock2.h>
94 #  endif
95 # endif
96
97 /* Maximum leeway in validity period: default 5 minutes */
98 # define MAX_VALIDITY_PERIOD     (5 * 60)
99
100 static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert,
101                          const EVP_MD *cert_id_md, X509 *issuer,
102                          STACK_OF(OCSP_CERTID) *ids);
103 static int add_ocsp_serial(OCSP_REQUEST **req, char *serial,
104                            const EVP_MD *cert_id_md, X509 *issuer,
105                            STACK_OF(OCSP_CERTID) *ids);
106 static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
107                               STACK_OF(OPENSSL_STRING) *names,
108                               STACK_OF(OCSP_CERTID) *ids, long nsec,
109                               long maxage);
110
111 static int make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req,
112                               CA_DB *db, X509 *ca, X509 *rcert,
113                               EVP_PKEY *rkey, const EVP_MD *md,
114                               STACK_OF(X509) *rother, unsigned long flags,
115                               int nmin, int ndays, int badsig);
116
117 static char **lookup_serial(CA_DB *db, ASN1_INTEGER *ser);
118 static BIO *init_responder(const char *port);
119 static int do_responder(OCSP_REQUEST **preq, BIO **pcbio, BIO *acbio,
120                         const char *port);
121 static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp);
122 static OCSP_RESPONSE *query_responder(BIO *err, BIO *cbio, const char *path,
123                                       const STACK_OF(CONF_VALUE) *headers,
124                                       OCSP_REQUEST *req, int req_timeout);
125
126 # undef PROG
127 # define PROG ocsp_main
128
129 int MAIN(int, char **);
130
131 int MAIN(int argc, char **argv)
132 {
133     ENGINE *e = NULL;
134     char **args;
135     char *host = NULL, *port = NULL, *path = "/";
136     char *thost = NULL, *tport = NULL, *tpath = NULL;
137     char *reqin = NULL, *respin = NULL;
138     char *reqout = NULL, *respout = NULL;
139     char *signfile = NULL, *keyfile = NULL;
140     char *rsignfile = NULL, *rkeyfile = NULL;
141     char *outfile = NULL;
142     int add_nonce = 1, noverify = 0, use_ssl = -1;
143     STACK_OF(CONF_VALUE) *headers = NULL;
144     OCSP_REQUEST *req = NULL;
145     OCSP_RESPONSE *resp = NULL;
146     OCSP_BASICRESP *bs = NULL;
147     X509 *issuer = NULL, *cert = NULL;
148     X509 *signer = NULL, *rsigner = NULL;
149     EVP_PKEY *key = NULL, *rkey = NULL;
150     BIO *acbio = NULL, *cbio = NULL;
151     BIO *derbio = NULL;
152     BIO *out = NULL;
153     int req_timeout = -1;
154     int req_text = 0, resp_text = 0;
155     long nsec = MAX_VALIDITY_PERIOD, maxage = -1;
156     char *CAfile = NULL, *CApath = NULL;
157     X509_STORE *store = NULL;
158     X509_VERIFY_PARAM *vpm = NULL;
159     STACK_OF(X509) *sign_other = NULL, *verify_other = NULL, *rother = NULL;
160     char *sign_certfile = NULL, *verify_certfile = NULL, *rcertfile = NULL;
161     unsigned long sign_flags = 0, verify_flags = 0, rflags = 0;
162     int ret = 1;
163     int accept_count = -1;
164     int badarg = 0;
165     int badsig = 0;
166     int i;
167     int ignore_err = 0;
168     STACK_OF(OPENSSL_STRING) *reqnames = NULL;
169     STACK_OF(OCSP_CERTID) *ids = NULL;
170
171     X509 *rca_cert = NULL;
172     char *ridx_filename = NULL;
173     char *rca_filename = NULL;
174     CA_DB *rdb = NULL;
175     int nmin = 0, ndays = -1;
176     const EVP_MD *cert_id_md = NULL, *rsign_md = NULL;
177
178     if (bio_err == NULL)
179         bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
180
181     if (!load_config(bio_err, NULL))
182         goto end;
183     SSL_load_error_strings();
184     OpenSSL_add_ssl_algorithms();
185     args = argv + 1;
186     reqnames = sk_OPENSSL_STRING_new_null();
187     ids = sk_OCSP_CERTID_new_null();
188     while (!badarg && *args && *args[0] == '-') {
189         if (!strcmp(*args, "-out")) {
190             if (args[1]) {
191                 args++;
192                 outfile = *args;
193             } else
194                 badarg = 1;
195         } else if (!strcmp(*args, "-timeout")) {
196             if (args[1]) {
197                 args++;
198                 req_timeout = atol(*args);
199                 if (req_timeout < 0) {
200                     BIO_printf(bio_err, "Illegal timeout value %s\n", *args);
201                     badarg = 1;
202                 }
203             } else
204                 badarg = 1;
205         } else if (!strcmp(*args, "-url")) {
206             if (thost)
207                 OPENSSL_free(thost);
208             if (tport)
209                 OPENSSL_free(tport);
210             if (tpath)
211                 OPENSSL_free(tpath);
212             thost = tport = tpath = NULL;
213             if (args[1]) {
214                 args++;
215                 if (!OCSP_parse_url(*args, &host, &port, &path, &use_ssl)) {
216                     BIO_printf(bio_err, "Error parsing URL\n");
217                     badarg = 1;
218                 }
219                 thost = host;
220                 tport = port;
221                 tpath = path;
222             } else
223                 badarg = 1;
224         } else if (!strcmp(*args, "-host")) {
225             if (args[1]) {
226                 args++;
227                 host = *args;
228             } else
229                 badarg = 1;
230         } else if (!strcmp(*args, "-port")) {
231             if (args[1]) {
232                 args++;
233                 port = *args;
234             } else
235                 badarg = 1;
236         } else if (!strcmp(*args, "-header")) {
237             if (args[1] && args[2]) {
238                 if (!X509V3_add_value(args[1], args[2], &headers))
239                     goto end;
240                 args += 2;
241             } else
242                 badarg = 1;
243         } else if (!strcmp(*args, "-ignore_err"))
244             ignore_err = 1;
245         else if (!strcmp(*args, "-noverify"))
246             noverify = 1;
247         else if (!strcmp(*args, "-nonce"))
248             add_nonce = 2;
249         else if (!strcmp(*args, "-no_nonce"))
250             add_nonce = 0;
251         else if (!strcmp(*args, "-resp_no_certs"))
252             rflags |= OCSP_NOCERTS;
253         else if (!strcmp(*args, "-resp_key_id"))
254             rflags |= OCSP_RESPID_KEY;
255         else if (!strcmp(*args, "-no_certs"))
256             sign_flags |= OCSP_NOCERTS;
257         else if (!strcmp(*args, "-no_signature_verify"))
258             verify_flags |= OCSP_NOSIGS;
259         else if (!strcmp(*args, "-no_cert_verify"))
260             verify_flags |= OCSP_NOVERIFY;
261         else if (!strcmp(*args, "-no_chain"))
262             verify_flags |= OCSP_NOCHAIN;
263         else if (!strcmp(*args, "-no_cert_checks"))
264             verify_flags |= OCSP_NOCHECKS;
265         else if (!strcmp(*args, "-no_explicit"))
266             verify_flags |= OCSP_NOEXPLICIT;
267         else if (!strcmp(*args, "-trust_other"))
268             verify_flags |= OCSP_TRUSTOTHER;
269         else if (!strcmp(*args, "-no_intern"))
270             verify_flags |= OCSP_NOINTERN;
271         else if (!strcmp(*args, "-badsig"))
272             badsig = 1;
273         else if (!strcmp(*args, "-text")) {
274             req_text = 1;
275             resp_text = 1;
276         } else if (!strcmp(*args, "-req_text"))
277             req_text = 1;
278         else if (!strcmp(*args, "-resp_text"))
279             resp_text = 1;
280         else if (!strcmp(*args, "-reqin")) {
281             if (args[1]) {
282                 args++;
283                 reqin = *args;
284             } else
285                 badarg = 1;
286         } else if (!strcmp(*args, "-respin")) {
287             if (args[1]) {
288                 args++;
289                 respin = *args;
290             } else
291                 badarg = 1;
292         } else if (!strcmp(*args, "-signer")) {
293             if (args[1]) {
294                 args++;
295                 signfile = *args;
296             } else
297                 badarg = 1;
298         } else if (!strcmp(*args, "-VAfile")) {
299             if (args[1]) {
300                 args++;
301                 verify_certfile = *args;
302                 verify_flags |= OCSP_TRUSTOTHER;
303             } else
304                 badarg = 1;
305         } else if (!strcmp(*args, "-sign_other")) {
306             if (args[1]) {
307                 args++;
308                 sign_certfile = *args;
309             } else
310                 badarg = 1;
311         } else if (!strcmp(*args, "-verify_other")) {
312             if (args[1]) {
313                 args++;
314                 verify_certfile = *args;
315             } else
316                 badarg = 1;
317         } else if (!strcmp(*args, "-CAfile")) {
318             if (args[1]) {
319                 args++;
320                 CAfile = *args;
321             } else
322                 badarg = 1;
323         } else if (!strcmp(*args, "-CApath")) {
324             if (args[1]) {
325                 args++;
326                 CApath = *args;
327             } else
328                 badarg = 1;
329         } else if (args_verify(&args, NULL, &badarg, bio_err, &vpm)) {
330             if (badarg)
331                 goto end;
332             continue;
333         } else if (!strcmp(*args, "-validity_period")) {
334             if (args[1]) {
335                 args++;
336                 nsec = atol(*args);
337                 if (nsec < 0) {
338                     BIO_printf(bio_err,
339                                "Illegal validity period %s\n", *args);
340                     badarg = 1;
341                 }
342             } else
343                 badarg = 1;
344         } else if (!strcmp(*args, "-status_age")) {
345             if (args[1]) {
346                 args++;
347                 maxage = atol(*args);
348                 if (maxage < 0) {
349                     BIO_printf(bio_err, "Illegal validity age %s\n", *args);
350                     badarg = 1;
351                 }
352             } else
353                 badarg = 1;
354         } else if (!strcmp(*args, "-signkey")) {
355             if (args[1]) {
356                 args++;
357                 keyfile = *args;
358             } else
359                 badarg = 1;
360         } else if (!strcmp(*args, "-reqout")) {
361             if (args[1]) {
362                 args++;
363                 reqout = *args;
364             } else
365                 badarg = 1;
366         } else if (!strcmp(*args, "-respout")) {
367             if (args[1]) {
368                 args++;
369                 respout = *args;
370             } else
371                 badarg = 1;
372         } else if (!strcmp(*args, "-path")) {
373             if (args[1]) {
374                 args++;
375                 path = *args;
376             } else
377                 badarg = 1;
378         } else if (!strcmp(*args, "-issuer")) {
379             if (args[1]) {
380                 args++;
381                 X509_free(issuer);
382                 issuer = load_cert(bio_err, *args, FORMAT_PEM,
383                                    NULL, e, "issuer certificate");
384                 if (!issuer)
385                     goto end;
386             } else
387                 badarg = 1;
388         } else if (!strcmp(*args, "-cert")) {
389             if (args[1]) {
390                 args++;
391                 X509_free(cert);
392                 cert = load_cert(bio_err, *args, FORMAT_PEM,
393                                  NULL, e, "certificate");
394                 if (!cert)
395                     goto end;
396                 if (!cert_id_md)
397                     cert_id_md = EVP_sha1();
398                 if (!add_ocsp_cert(&req, cert, cert_id_md, issuer, ids))
399                     goto end;
400                 if (!sk_OPENSSL_STRING_push(reqnames, *args))
401                     goto end;
402             } else
403                 badarg = 1;
404         } else if (!strcmp(*args, "-serial")) {
405             if (args[1]) {
406                 args++;
407                 if (!cert_id_md)
408                     cert_id_md = EVP_sha1();
409                 if (!add_ocsp_serial(&req, *args, cert_id_md, issuer, ids))
410                     goto end;
411                 if (!sk_OPENSSL_STRING_push(reqnames, *args))
412                     goto end;
413             } else
414                 badarg = 1;
415         } else if (!strcmp(*args, "-index")) {
416             if (args[1]) {
417                 args++;
418                 ridx_filename = *args;
419             } else
420                 badarg = 1;
421         } else if (!strcmp(*args, "-CA")) {
422             if (args[1]) {
423                 args++;
424                 rca_filename = *args;
425             } else
426                 badarg = 1;
427         } else if (!strcmp(*args, "-nmin")) {
428             if (args[1]) {
429                 args++;
430                 nmin = atol(*args);
431                 if (nmin < 0) {
432                     BIO_printf(bio_err, "Illegal update period %s\n", *args);
433                     badarg = 1;
434                 }
435             }
436             if (ndays == -1)
437                 ndays = 0;
438             else
439                 badarg = 1;
440         } else if (!strcmp(*args, "-nrequest")) {
441             if (args[1]) {
442                 args++;
443                 accept_count = atol(*args);
444                 if (accept_count < 0) {
445                     BIO_printf(bio_err, "Illegal accept count %s\n", *args);
446                     badarg = 1;
447                 }
448             } else
449                 badarg = 1;
450         } else if (!strcmp(*args, "-ndays")) {
451             if (args[1]) {
452                 args++;
453                 ndays = atol(*args);
454                 if (ndays < 0) {
455                     BIO_printf(bio_err, "Illegal update period %s\n", *args);
456                     badarg = 1;
457                 }
458             } else
459                 badarg = 1;
460         } else if (!strcmp(*args, "-rsigner")) {
461             if (args[1]) {
462                 args++;
463                 rsignfile = *args;
464             } else
465                 badarg = 1;
466         } else if (!strcmp(*args, "-rkey")) {
467             if (args[1]) {
468                 args++;
469                 rkeyfile = *args;
470             } else
471                 badarg = 1;
472         } else if (!strcmp(*args, "-rother")) {
473             if (args[1]) {
474                 args++;
475                 rcertfile = *args;
476             } else
477                 badarg = 1;
478         } else if (!strcmp(*args, "-rmd")) {
479             if (args[1]) {
480                 args++;
481                 rsign_md = EVP_get_digestbyname(*args);
482                 if (!rsign_md)
483                     badarg = 1;
484             } else
485                 badarg = 1;
486         } else if ((cert_id_md = EVP_get_digestbyname((*args) + 1)) == NULL) {
487             badarg = 1;
488         }
489         args++;
490     }
491
492     /* Have we anything to do? */
493     if (!req && !reqin && !respin && !(port && ridx_filename))
494         badarg = 1;
495
496     if (badarg) {
497         BIO_printf(bio_err, "OCSP utility\n");
498         BIO_printf(bio_err, "Usage ocsp [options]\n");
499         BIO_printf(bio_err, "where options are\n");
500         BIO_printf(bio_err, "-out file            output filename\n");
501         BIO_printf(bio_err, "-issuer file         issuer certificate\n");
502         BIO_printf(bio_err, "-cert file           certificate to check\n");
503         BIO_printf(bio_err, "-serial n            serial number to check\n");
504         BIO_printf(bio_err,
505                    "-signer file         certificate to sign OCSP request with\n");
506         BIO_printf(bio_err,
507                    "-signkey file        private key to sign OCSP request with\n");
508         BIO_printf(bio_err,
509                    "-sign_other file     additional certificates to include in signed request\n");
510         BIO_printf(bio_err,
511                    "-no_certs            don't include any certificates in signed request\n");
512         BIO_printf(bio_err,
513                    "-req_text            print text form of request\n");
514         BIO_printf(bio_err,
515                    "-resp_text           print text form of response\n");
516         BIO_printf(bio_err,
517                    "-text                print text form of request and response\n");
518         BIO_printf(bio_err,
519                    "-reqout file         write DER encoded OCSP request to \"file\"\n");
520         BIO_printf(bio_err,
521                    "-respout file        write DER encoded OCSP reponse to \"file\"\n");
522         BIO_printf(bio_err,
523                    "-reqin file          read DER encoded OCSP request from \"file\"\n");
524         BIO_printf(bio_err,
525                    "-respin file         read DER encoded OCSP reponse from \"file\"\n");
526         BIO_printf(bio_err,
527                    "-nonce               add OCSP nonce to request\n");
528         BIO_printf(bio_err,
529                    "-no_nonce            don't add OCSP nonce to request\n");
530         BIO_printf(bio_err, "-url URL             OCSP responder URL\n");
531         BIO_printf(bio_err,
532                    "-host host:n         send OCSP request to host on port n\n");
533         BIO_printf(bio_err,
534                    "-path                path to use in OCSP request\n");
535         BIO_printf(bio_err,
536                    "-CApath dir          trusted certificates directory\n");
537         BIO_printf(bio_err,
538                    "-CAfile file         trusted certificates file\n");
539         BIO_printf(bio_err,
540                    "-no_alt_chains       only ever use the first certificate chain found\n");
541         BIO_printf(bio_err,
542                    "-VAfile file         validator certificates file\n");
543         BIO_printf(bio_err,
544                    "-validity_period n   maximum validity discrepancy in seconds\n");
545         BIO_printf(bio_err,
546                    "-status_age n        maximum status age in seconds\n");
547         BIO_printf(bio_err,
548                    "-noverify            don't verify response at all\n");
549         BIO_printf(bio_err,
550                    "-verify_other file   additional certificates to search for signer\n");
551         BIO_printf(bio_err,
552                    "-trust_other         don't verify additional certificates\n");
553         BIO_printf(bio_err,
554                    "-no_intern           don't search certificates contained in response for signer\n");
555         BIO_printf(bio_err,
556                    "-no_signature_verify don't check signature on response\n");
557         BIO_printf(bio_err,
558                    "-no_cert_verify      don't check signing certificate\n");
559         BIO_printf(bio_err,
560                    "-no_chain            don't chain verify response\n");
561         BIO_printf(bio_err,
562                    "-no_cert_checks      don't do additional checks on signing certificate\n");
563         BIO_printf(bio_err,
564                    "-port num            port to run responder on\n");
565         BIO_printf(bio_err,
566                    "-index file          certificate status index file\n");
567         BIO_printf(bio_err, "-CA file             CA certificate\n");
568         BIO_printf(bio_err,
569                    "-rsigner file        responder certificate to sign responses with\n");
570         BIO_printf(bio_err,
571                    "-rkey file           responder key to sign responses with\n");
572         BIO_printf(bio_err,
573                    "-rother file         other certificates to include in response\n");
574         BIO_printf(bio_err,
575                    "-resp_no_certs       don't include any certificates in response\n");
576         BIO_printf(bio_err,
577                    "-nmin n              number of minutes before next update\n");
578         BIO_printf(bio_err,
579                    "-ndays n             number of days before next update\n");
580         BIO_printf(bio_err,
581                    "-resp_key_id         identify reponse by signing certificate key ID\n");
582         BIO_printf(bio_err,
583                    "-nrequest n          number of requests to accept (default unlimited)\n");
584         BIO_printf(bio_err,
585                    "-<dgst alg>          use specified digest in the request\n");
586         BIO_printf(bio_err,
587                    "-timeout n           timeout connection to OCSP responder after n seconds\n");
588         goto end;
589     }
590
591     if (outfile)
592         out = BIO_new_file(outfile, "w");
593     else
594         out = BIO_new_fp(stdout, BIO_NOCLOSE);
595
596     if (!out) {
597         BIO_printf(bio_err, "Error opening output file\n");
598         goto end;
599     }
600
601     if (!req && (add_nonce != 2))
602         add_nonce = 0;
603
604     if (!req && reqin) {
605         if (!strcmp(reqin, "-"))
606             derbio = BIO_new_fp(stdin, BIO_NOCLOSE);
607         else
608             derbio = BIO_new_file(reqin, "rb");
609         if (!derbio) {
610             BIO_printf(bio_err, "Error Opening OCSP request file\n");
611             goto end;
612         }
613         req = d2i_OCSP_REQUEST_bio(derbio, NULL);
614         BIO_free(derbio);
615         if (!req) {
616             BIO_printf(bio_err, "Error reading OCSP request\n");
617             goto end;
618         }
619     }
620
621     if (!req && port) {
622         acbio = init_responder(port);
623         if (!acbio)
624             goto end;
625     }
626
627     if (rsignfile && !rdb) {
628         if (!rkeyfile)
629             rkeyfile = rsignfile;
630         rsigner = load_cert(bio_err, rsignfile, FORMAT_PEM,
631                             NULL, e, "responder certificate");
632         if (!rsigner) {
633             BIO_printf(bio_err, "Error loading responder certificate\n");
634             goto end;
635         }
636         rca_cert = load_cert(bio_err, rca_filename, FORMAT_PEM,
637                              NULL, e, "CA certificate");
638         if (rcertfile) {
639             rother = load_certs(bio_err, rcertfile, FORMAT_PEM,
640                                 NULL, e, "responder other certificates");
641             if (!rother)
642                 goto end;
643         }
644         rkey = load_key(bio_err, rkeyfile, FORMAT_PEM, 0, NULL, NULL,
645                         "responder private key");
646         if (!rkey)
647             goto end;
648     }
649     if (acbio)
650         BIO_printf(bio_err, "Waiting for OCSP client connections...\n");
651
652  redo_accept:
653
654     if (acbio) {
655         if (!do_responder(&req, &cbio, acbio, port))
656             goto end;
657         if (!req) {
658             resp =
659                 OCSP_response_create(OCSP_RESPONSE_STATUS_MALFORMEDREQUEST,
660                                      NULL);
661             send_ocsp_response(cbio, resp);
662             goto done_resp;
663         }
664     }
665
666     if (!req && (signfile || reqout || host || add_nonce || ridx_filename)) {
667         BIO_printf(bio_err, "Need an OCSP request for this operation!\n");
668         goto end;
669     }
670
671     if (req && add_nonce)
672         OCSP_request_add1_nonce(req, NULL, -1);
673
674     if (signfile) {
675         if (!keyfile)
676             keyfile = signfile;
677         signer = load_cert(bio_err, signfile, FORMAT_PEM,
678                            NULL, e, "signer certificate");
679         if (!signer) {
680             BIO_printf(bio_err, "Error loading signer certificate\n");
681             goto end;
682         }
683         if (sign_certfile) {
684             sign_other = load_certs(bio_err, sign_certfile, FORMAT_PEM,
685                                     NULL, e, "signer certificates");
686             if (!sign_other)
687                 goto end;
688         }
689         key = load_key(bio_err, keyfile, FORMAT_PEM, 0, NULL, NULL,
690                        "signer private key");
691         if (!key)
692             goto end;
693
694         if (!OCSP_request_sign
695             (req, signer, key, NULL, sign_other, sign_flags)) {
696             BIO_printf(bio_err, "Error signing OCSP request\n");
697             goto end;
698         }
699     }
700
701     if (req_text && req)
702         OCSP_REQUEST_print(out, req, 0);
703
704     if (reqout) {
705         if (!strcmp(reqout, "-"))
706             derbio = BIO_new_fp(stdout, BIO_NOCLOSE);
707         else
708             derbio = BIO_new_file(reqout, "wb");
709         if (!derbio) {
710             BIO_printf(bio_err, "Error opening file %s\n", reqout);
711             goto end;
712         }
713         i2d_OCSP_REQUEST_bio(derbio, req);
714         BIO_free(derbio);
715     }
716
717     if (ridx_filename && (!rkey || !rsigner || !rca_cert)) {
718         BIO_printf(bio_err,
719                    "Need a responder certificate, key and CA for this operation!\n");
720         goto end;
721     }
722
723     if (ridx_filename && !rdb) {
724         rdb = load_index(ridx_filename, NULL);
725         if (!rdb)
726             goto end;
727         if (!index_index(rdb))
728             goto end;
729     }
730
731     if (rdb) {
732         i = make_ocsp_response(&resp, req, rdb, rca_cert, rsigner, rkey,
733                                rsign_md, rother, rflags, nmin, ndays, badsig);
734         if (cbio)
735             send_ocsp_response(cbio, resp);
736     } else if (host) {
737 # ifndef OPENSSL_NO_SOCK
738         resp = process_responder(bio_err, req, host, path,
739                                  port, use_ssl, headers, req_timeout);
740         if (!resp)
741             goto end;
742 # else
743         BIO_printf(bio_err,
744                    "Error creating connect BIO - sockets not supported.\n");
745         goto end;
746 # endif
747     } else if (respin) {
748         if (!strcmp(respin, "-"))
749             derbio = BIO_new_fp(stdin, BIO_NOCLOSE);
750         else
751             derbio = BIO_new_file(respin, "rb");
752         if (!derbio) {
753             BIO_printf(bio_err, "Error Opening OCSP response file\n");
754             goto end;
755         }
756         resp = d2i_OCSP_RESPONSE_bio(derbio, NULL);
757         BIO_free(derbio);
758         if (!resp) {
759             BIO_printf(bio_err, "Error reading OCSP response\n");
760             goto end;
761         }
762
763     } else {
764         ret = 0;
765         goto end;
766     }
767
768  done_resp:
769
770     if (respout) {
771         if (!strcmp(respout, "-"))
772             derbio = BIO_new_fp(stdout, BIO_NOCLOSE);
773         else
774             derbio = BIO_new_file(respout, "wb");
775         if (!derbio) {
776             BIO_printf(bio_err, "Error opening file %s\n", respout);
777             goto end;
778         }
779         i2d_OCSP_RESPONSE_bio(derbio, resp);
780         BIO_free(derbio);
781     }
782
783     i = OCSP_response_status(resp);
784
785     if (i != OCSP_RESPONSE_STATUS_SUCCESSFUL) {
786         BIO_printf(out, "Responder Error: %s (%d)\n",
787                    OCSP_response_status_str(i), i);
788         if (ignore_err)
789             goto redo_accept;
790         goto end;
791     }
792
793     if (resp_text)
794         OCSP_RESPONSE_print(out, resp, 0);
795
796     /* If running as responder don't verify our own response */
797     if (cbio) {
798         if (accept_count > 0)
799             accept_count--;
800         /* Redo if more connections needed */
801         if (accept_count) {
802             BIO_free_all(cbio);
803             cbio = NULL;
804             OCSP_REQUEST_free(req);
805             req = NULL;
806             OCSP_RESPONSE_free(resp);
807             resp = NULL;
808             goto redo_accept;
809         }
810         ret = 0;
811         goto end;
812     } else if (ridx_filename) {
813         ret = 0;
814         goto end;
815     }
816
817     if (!store)
818         store = setup_verify(bio_err, CAfile, CApath);
819     if (!store)
820         goto end;
821     if (vpm)
822         X509_STORE_set1_param(store, vpm);
823     if (verify_certfile) {
824         verify_other = load_certs(bio_err, verify_certfile, FORMAT_PEM,
825                                   NULL, e, "validator certificate");
826         if (!verify_other)
827             goto end;
828     }
829
830     bs = OCSP_response_get1_basic(resp);
831
832     if (!bs) {
833         BIO_printf(bio_err, "Error parsing response\n");
834         goto end;
835     }
836
837     ret = 0;
838
839     if (!noverify) {
840         if (req && ((i = OCSP_check_nonce(req, bs)) <= 0)) {
841             if (i == -1)
842                 BIO_printf(bio_err, "WARNING: no nonce in response\n");
843             else {
844                 BIO_printf(bio_err, "Nonce Verify error\n");
845                 ret = 1;
846                 goto end;
847             }
848         }
849
850         i = OCSP_basic_verify(bs, verify_other, store, verify_flags);
851         if (i <= 0) {
852             BIO_printf(bio_err, "Response Verify Failure\n");
853             ERR_print_errors(bio_err);
854             ret = 1;
855         } else
856             BIO_printf(bio_err, "Response verify OK\n");
857
858     }
859
860     if (!print_ocsp_summary(out, bs, req, reqnames, ids, nsec, maxage))
861         ret = 1;
862
863  end:
864     ERR_print_errors(bio_err);
865     X509_free(signer);
866     X509_STORE_free(store);
867     if (vpm)
868         X509_VERIFY_PARAM_free(vpm);
869     EVP_PKEY_free(key);
870     EVP_PKEY_free(rkey);
871     X509_free(issuer);
872     X509_free(cert);
873     X509_free(rsigner);
874     X509_free(rca_cert);
875     free_index(rdb);
876     BIO_free_all(cbio);
877     BIO_free_all(acbio);
878     BIO_free(out);
879     OCSP_REQUEST_free(req);
880     OCSP_RESPONSE_free(resp);
881     OCSP_BASICRESP_free(bs);
882     sk_OPENSSL_STRING_free(reqnames);
883     sk_OCSP_CERTID_free(ids);
884     sk_X509_pop_free(sign_other, X509_free);
885     sk_X509_pop_free(verify_other, X509_free);
886     sk_CONF_VALUE_pop_free(headers, X509V3_conf_free);
887
888     if (thost)
889         OPENSSL_free(thost);
890     if (tport)
891         OPENSSL_free(tport);
892     if (tpath)
893         OPENSSL_free(tpath);
894
895     OPENSSL_EXIT(ret);
896 }
897
898 static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert,
899                          const EVP_MD *cert_id_md, X509 *issuer,
900                          STACK_OF(OCSP_CERTID) *ids)
901 {
902     OCSP_CERTID *id;
903     if (!issuer) {
904         BIO_printf(bio_err, "No issuer certificate specified\n");
905         return 0;
906     }
907     if (!*req)
908         *req = OCSP_REQUEST_new();
909     if (!*req)
910         goto err;
911     id = OCSP_cert_to_id(cert_id_md, cert, issuer);
912     if (!id || !sk_OCSP_CERTID_push(ids, id))
913         goto err;
914     if (!OCSP_request_add0_id(*req, id))
915         goto err;
916     return 1;
917
918  err:
919     BIO_printf(bio_err, "Error Creating OCSP request\n");
920     return 0;
921 }
922
923 static int add_ocsp_serial(OCSP_REQUEST **req, char *serial,
924                            const EVP_MD *cert_id_md, X509 *issuer,
925                            STACK_OF(OCSP_CERTID) *ids)
926 {
927     OCSP_CERTID *id;
928     X509_NAME *iname;
929     ASN1_BIT_STRING *ikey;
930     ASN1_INTEGER *sno;
931     if (!issuer) {
932         BIO_printf(bio_err, "No issuer certificate specified\n");
933         return 0;
934     }
935     if (!*req)
936         *req = OCSP_REQUEST_new();
937     if (!*req)
938         goto err;
939     iname = X509_get_subject_name(issuer);
940     ikey = X509_get0_pubkey_bitstr(issuer);
941     sno = s2i_ASN1_INTEGER(NULL, serial);
942     if (!sno) {
943         BIO_printf(bio_err, "Error converting serial number %s\n", serial);
944         return 0;
945     }
946     id = OCSP_cert_id_new(cert_id_md, iname, ikey, sno);
947     ASN1_INTEGER_free(sno);
948     if (!id || !sk_OCSP_CERTID_push(ids, id))
949         goto err;
950     if (!OCSP_request_add0_id(*req, id))
951         goto err;
952     return 1;
953
954  err:
955     BIO_printf(bio_err, "Error Creating OCSP request\n");
956     return 0;
957 }
958
959 static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
960                               STACK_OF(OPENSSL_STRING) *names,
961                               STACK_OF(OCSP_CERTID) *ids, long nsec,
962                               long maxage)
963 {
964     OCSP_CERTID *id;
965     char *name;
966     int i;
967
968     int status, reason;
969
970     ASN1_GENERALIZEDTIME *rev, *thisupd, *nextupd;
971
972     if (!bs || !req || !sk_OPENSSL_STRING_num(names)
973         || !sk_OCSP_CERTID_num(ids))
974         return 1;
975
976     for (i = 0; i < sk_OCSP_CERTID_num(ids); i++) {
977         id = sk_OCSP_CERTID_value(ids, i);
978         name = sk_OPENSSL_STRING_value(names, i);
979         BIO_printf(out, "%s: ", name);
980
981         if (!OCSP_resp_find_status(bs, id, &status, &reason,
982                                    &rev, &thisupd, &nextupd)) {
983             BIO_puts(out, "ERROR: No Status found.\n");
984             continue;
985         }
986
987         /*
988          * Check validity: if invalid write to output BIO so we know which
989          * response this refers to.
990          */
991         if (!OCSP_check_validity(thisupd, nextupd, nsec, maxage)) {
992             BIO_puts(out, "WARNING: Status times invalid.\n");
993             ERR_print_errors(out);
994         }
995         BIO_printf(out, "%s\n", OCSP_cert_status_str(status));
996
997         BIO_puts(out, "\tThis Update: ");
998         ASN1_GENERALIZEDTIME_print(out, thisupd);
999         BIO_puts(out, "\n");
1000
1001         if (nextupd) {
1002             BIO_puts(out, "\tNext Update: ");
1003             ASN1_GENERALIZEDTIME_print(out, nextupd);
1004             BIO_puts(out, "\n");
1005         }
1006
1007         if (status != V_OCSP_CERTSTATUS_REVOKED)
1008             continue;
1009
1010         if (reason != -1)
1011             BIO_printf(out, "\tReason: %s\n", OCSP_crl_reason_str(reason));
1012
1013         BIO_puts(out, "\tRevocation Time: ");
1014         ASN1_GENERALIZEDTIME_print(out, rev);
1015         BIO_puts(out, "\n");
1016     }
1017
1018     return 1;
1019 }
1020
1021 static int make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req,
1022                               CA_DB *db, X509 *ca, X509 *rcert,
1023                               EVP_PKEY *rkey, const EVP_MD *rmd,
1024                               STACK_OF(X509) *rother, unsigned long flags,
1025                               int nmin, int ndays, int badsig)
1026 {
1027     ASN1_TIME *thisupd = NULL, *nextupd = NULL;
1028     OCSP_CERTID *cid, *ca_id = NULL;
1029     OCSP_BASICRESP *bs = NULL;
1030     int i, id_count, ret = 1;
1031
1032     id_count = OCSP_request_onereq_count(req);
1033
1034     if (id_count <= 0) {
1035         *resp =
1036             OCSP_response_create(OCSP_RESPONSE_STATUS_MALFORMEDREQUEST, NULL);
1037         goto end;
1038     }
1039
1040     bs = OCSP_BASICRESP_new();
1041     thisupd = X509_gmtime_adj(NULL, 0);
1042     if (ndays != -1)
1043         nextupd = X509_time_adj_ex(NULL, ndays, nmin * 60, NULL);
1044
1045     /* Examine each certificate id in the request */
1046     for (i = 0; i < id_count; i++) {
1047         OCSP_ONEREQ *one;
1048         ASN1_INTEGER *serial;
1049         char **inf;
1050         ASN1_OBJECT *cert_id_md_oid;
1051         const EVP_MD *cert_id_md;
1052         one = OCSP_request_onereq_get0(req, i);
1053         cid = OCSP_onereq_get0_id(one);
1054
1055         OCSP_id_get0_info(NULL, &cert_id_md_oid, NULL, NULL, cid);
1056
1057         cert_id_md = EVP_get_digestbyobj(cert_id_md_oid);
1058         if (!cert_id_md) {
1059             *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR,
1060                                          NULL);
1061             goto end;
1062         }
1063         if (ca_id)
1064             OCSP_CERTID_free(ca_id);
1065         ca_id = OCSP_cert_to_id(cert_id_md, NULL, ca);
1066
1067         /* Is this request about our CA? */
1068         if (OCSP_id_issuer_cmp(ca_id, cid)) {
1069             OCSP_basic_add1_status(bs, cid,
1070                                    V_OCSP_CERTSTATUS_UNKNOWN,
1071                                    0, NULL, thisupd, nextupd);
1072             continue;
1073         }
1074         OCSP_id_get0_info(NULL, NULL, NULL, &serial, cid);
1075         inf = lookup_serial(db, serial);
1076         if (!inf)
1077             OCSP_basic_add1_status(bs, cid,
1078                                    V_OCSP_CERTSTATUS_UNKNOWN,
1079                                    0, NULL, thisupd, nextupd);
1080         else if (inf[DB_type][0] == DB_TYPE_VAL)
1081             OCSP_basic_add1_status(bs, cid,
1082                                    V_OCSP_CERTSTATUS_GOOD,
1083                                    0, NULL, thisupd, nextupd);
1084         else if (inf[DB_type][0] == DB_TYPE_REV) {
1085             ASN1_OBJECT *inst = NULL;
1086             ASN1_TIME *revtm = NULL;
1087             ASN1_GENERALIZEDTIME *invtm = NULL;
1088             OCSP_SINGLERESP *single;
1089             int reason = -1;
1090             unpack_revinfo(&revtm, &reason, &inst, &invtm, inf[DB_rev_date]);
1091             single = OCSP_basic_add1_status(bs, cid,
1092                                             V_OCSP_CERTSTATUS_REVOKED,
1093                                             reason, revtm, thisupd, nextupd);
1094             if (invtm)
1095                 OCSP_SINGLERESP_add1_ext_i2d(single, NID_invalidity_date,
1096                                              invtm, 0, 0);
1097             else if (inst)
1098                 OCSP_SINGLERESP_add1_ext_i2d(single,
1099                                              NID_hold_instruction_code, inst,
1100                                              0, 0);
1101             ASN1_OBJECT_free(inst);
1102             ASN1_TIME_free(revtm);
1103             ASN1_GENERALIZEDTIME_free(invtm);
1104         }
1105     }
1106
1107     OCSP_copy_nonce(bs, req);
1108
1109     OCSP_basic_sign(bs, rcert, rkey, rmd, rother, flags);
1110
1111     if (badsig)
1112         bs->signature->data[bs->signature->length - 1] ^= 0x1;
1113
1114     *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_SUCCESSFUL, bs);
1115
1116  end:
1117     ASN1_TIME_free(thisupd);
1118     ASN1_TIME_free(nextupd);
1119     OCSP_CERTID_free(ca_id);
1120     OCSP_BASICRESP_free(bs);
1121     return ret;
1122
1123 }
1124
1125 static char **lookup_serial(CA_DB *db, ASN1_INTEGER *ser)
1126 {
1127     int i;
1128     BIGNUM *bn = NULL;
1129     char *itmp, *row[DB_NUMBER], **rrow;
1130     for (i = 0; i < DB_NUMBER; i++)
1131         row[i] = NULL;
1132     bn = ASN1_INTEGER_to_BN(ser, NULL);
1133     OPENSSL_assert(bn);         /* FIXME: should report an error at this
1134                                  * point and abort */
1135     if (BN_is_zero(bn))
1136         itmp = BUF_strdup("00");
1137     else
1138         itmp = BN_bn2hex(bn);
1139     row[DB_serial] = itmp;
1140     BN_free(bn);
1141     rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
1142     OPENSSL_free(itmp);
1143     return rrow;
1144 }
1145
1146 /* Quick and dirty OCSP server: read in and parse input request */
1147
1148 static BIO *init_responder(const char *port)
1149 {
1150     BIO *acbio = NULL, *bufbio = NULL;
1151     bufbio = BIO_new(BIO_f_buffer());
1152     if (!bufbio)
1153         goto err;
1154 # ifndef OPENSSL_NO_SOCK
1155     acbio = BIO_new_accept(port);
1156 # else
1157     BIO_printf(bio_err,
1158                "Error setting up accept BIO - sockets not supported.\n");
1159 # endif
1160     if (!acbio)
1161         goto err;
1162     BIO_set_accept_bios(acbio, bufbio);
1163     bufbio = NULL;
1164
1165     if (BIO_do_accept(acbio) <= 0) {
1166         BIO_printf(bio_err, "Error setting up accept BIO\n");
1167         ERR_print_errors(bio_err);
1168         goto err;
1169     }
1170
1171     return acbio;
1172
1173  err:
1174     BIO_free_all(acbio);
1175     BIO_free(bufbio);
1176     return NULL;
1177 }
1178
1179 static int do_responder(OCSP_REQUEST **preq, BIO **pcbio, BIO *acbio,
1180                         const char *port)
1181 {
1182     int have_post = 0, len;
1183     OCSP_REQUEST *req = NULL;
1184     char inbuf[1024];
1185     BIO *cbio = NULL;
1186
1187     if (BIO_do_accept(acbio) <= 0) {
1188         BIO_printf(bio_err, "Error accepting connection\n");
1189         ERR_print_errors(bio_err);
1190         return 0;
1191     }
1192
1193     cbio = BIO_pop(acbio);
1194     *pcbio = cbio;
1195
1196     for (;;) {
1197         len = BIO_gets(cbio, inbuf, sizeof(inbuf));
1198         if (len <= 0)
1199             return 1;
1200         /* Look for "POST" signalling start of query */
1201         if (!have_post) {
1202             if (strncmp(inbuf, "POST", 4)) {
1203                 BIO_printf(bio_err, "Invalid request\n");
1204                 return 1;
1205             }
1206             have_post = 1;
1207         }
1208         /* Look for end of headers */
1209         if ((inbuf[0] == '\r') || (inbuf[0] == '\n'))
1210             break;
1211     }
1212
1213     /* Try to read OCSP request */
1214
1215     req = d2i_OCSP_REQUEST_bio(cbio, NULL);
1216
1217     if (!req) {
1218         BIO_printf(bio_err, "Error parsing OCSP request\n");
1219         ERR_print_errors(bio_err);
1220     }
1221
1222     *preq = req;
1223
1224     return 1;
1225
1226 }
1227
1228 static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp)
1229 {
1230     char http_resp[] =
1231         "HTTP/1.0 200 OK\r\nContent-type: application/ocsp-response\r\n"
1232         "Content-Length: %d\r\n\r\n";
1233     if (!cbio)
1234         return 0;
1235     BIO_printf(cbio, http_resp, i2d_OCSP_RESPONSE(resp, NULL));
1236     i2d_OCSP_RESPONSE_bio(cbio, resp);
1237     (void)BIO_flush(cbio);
1238     return 1;
1239 }
1240
1241 static OCSP_RESPONSE *query_responder(BIO *err, BIO *cbio, const char *path,
1242                                       const STACK_OF(CONF_VALUE) *headers,
1243                                       OCSP_REQUEST *req, int req_timeout)
1244 {
1245     int fd;
1246     int rv;
1247     int i;
1248     OCSP_REQ_CTX *ctx = NULL;
1249     OCSP_RESPONSE *rsp = NULL;
1250     fd_set confds;
1251     struct timeval tv;
1252
1253     if (req_timeout != -1)
1254         BIO_set_nbio(cbio, 1);
1255
1256     rv = BIO_do_connect(cbio);
1257
1258     if ((rv <= 0) && ((req_timeout == -1) || !BIO_should_retry(cbio))) {
1259         BIO_puts(err, "Error connecting BIO\n");
1260         return NULL;
1261     }
1262
1263     if (BIO_get_fd(cbio, &fd) < 0) {
1264         BIO_puts(bio_err, "Can't get connection fd\n");
1265         goto err;
1266     }
1267
1268     if (req_timeout != -1 && rv <= 0) {
1269         FD_ZERO(&confds);
1270         openssl_fdset(fd, &confds);
1271         tv.tv_usec = 0;
1272         tv.tv_sec = req_timeout;
1273         rv = select(fd + 1, NULL, (void *)&confds, NULL, &tv);
1274         if (rv == 0) {
1275             BIO_puts(err, "Timeout on connect\n");
1276             return NULL;
1277         }
1278     }
1279
1280     ctx = OCSP_sendreq_new(cbio, path, NULL, -1);
1281     if (!ctx)
1282         return NULL;
1283
1284     for (i = 0; i < sk_CONF_VALUE_num(headers); i++) {
1285         CONF_VALUE *hdr = sk_CONF_VALUE_value(headers, i);
1286         if (!OCSP_REQ_CTX_add1_header(ctx, hdr->name, hdr->value))
1287             goto err;
1288     }
1289
1290     if (!OCSP_REQ_CTX_set1_req(ctx, req))
1291         goto err;
1292
1293     for (;;) {
1294         rv = OCSP_sendreq_nbio(&rsp, ctx);
1295         if (rv != -1)
1296             break;
1297         if (req_timeout == -1)
1298             continue;
1299         FD_ZERO(&confds);
1300         openssl_fdset(fd, &confds);
1301         tv.tv_usec = 0;
1302         tv.tv_sec = req_timeout;
1303         if (BIO_should_read(cbio))
1304             rv = select(fd + 1, (void *)&confds, NULL, NULL, &tv);
1305         else if (BIO_should_write(cbio))
1306             rv = select(fd + 1, NULL, (void *)&confds, NULL, &tv);
1307         else {
1308             BIO_puts(err, "Unexpected retry condition\n");
1309             goto err;
1310         }
1311         if (rv == 0) {
1312             BIO_puts(err, "Timeout on request\n");
1313             break;
1314         }
1315         if (rv == -1) {
1316             BIO_puts(err, "Select error\n");
1317             break;
1318         }
1319
1320     }
1321  err:
1322     if (ctx)
1323         OCSP_REQ_CTX_free(ctx);
1324
1325     return rsp;
1326 }
1327
1328 OCSP_RESPONSE *process_responder(BIO *err, OCSP_REQUEST *req,
1329                                  const char *host, const char *path,
1330                                  const char *port, int use_ssl,
1331                                  const STACK_OF(CONF_VALUE) *headers,
1332                                  int req_timeout)
1333 {
1334     BIO *cbio = NULL;
1335     SSL_CTX *ctx = NULL;
1336     OCSP_RESPONSE *resp = NULL;
1337     cbio = BIO_new_connect(host);
1338     if (!cbio) {
1339         BIO_printf(err, "Error creating connect BIO\n");
1340         goto end;
1341     }
1342     if (port)
1343         BIO_set_conn_port(cbio, port);
1344     if (use_ssl == 1) {
1345         BIO *sbio;
1346         ctx = SSL_CTX_new(SSLv23_client_method());
1347         if (ctx == NULL) {
1348             BIO_printf(err, "Error creating SSL context.\n");
1349             goto end;
1350         }
1351         SSL_CTX_set_mode(ctx, SSL_MODE_AUTO_RETRY);
1352         sbio = BIO_new_ssl(ctx, 1);
1353         cbio = BIO_push(sbio, cbio);
1354     }
1355     resp = query_responder(err, cbio, path, headers, req, req_timeout);
1356     if (!resp)
1357         BIO_printf(bio_err, "Error querying OCSP responder\n");
1358  end:
1359     if (cbio)
1360         BIO_free_all(cbio);
1361     if (ctx)
1362         SSL_CTX_free(ctx);
1363     return resp;
1364 }
1365
1366 #endif