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