]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/ocsp.c
Add -rsigopt option to ocsp command
[thirdparty/openssl.git] / apps / ocsp.c
CommitLineData
0f113f3e 1/*
3c7d0945 2 * Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.
5782ceb2 3 *
846e33c7
RS
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
5782ceb2
DSH
8 */
9
3e41ac35
MC
10#include <openssl/opensslconf.h>
11
12#ifdef OPENSSL_NO_OCSP
13NON_EMPTY_TRANSLATION_UNIT
14#else
0f113f3e
MC
15# ifdef OPENSSL_SYS_VMS
16# define _XOPEN_SOURCE_EXTENDED/* So fd_set and friends get properly defined
17 * on OpenVMS */
18# endif
19
0f113f3e
MC
20# include <stdio.h>
21# include <stdlib.h>
22# include <string.h>
23# include <time.h>
98cd49db 24# include <ctype.h>
3e41ac35
MC
25
26/* Needs to be included before the openssl headers */
27# include "apps.h"
0f113f3e
MC
28# include <openssl/e_os2.h>
29# include <openssl/crypto.h>
30# include <openssl/err.h>
31# include <openssl/ssl.h>
32# include <openssl/evp.h>
33# include <openssl/bn.h>
34# include <openssl/x509v3.h>
35
0f113f3e 36/* Maximum leeway in validity period: default 5 minutes */
7e1b7485 37# define MAX_VALIDITY_PERIOD (5 * 60)
0f113f3e
MC
38
39static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert,
40 const EVP_MD *cert_id_md, X509 *issuer,
41 STACK_OF(OCSP_CERTID) *ids);
42static int add_ocsp_serial(OCSP_REQUEST **req, char *serial,
43 const EVP_MD *cert_id_md, X509 *issuer,
44 STACK_OF(OCSP_CERTID) *ids);
7e1b7485 45static void print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
0f113f3e
MC
46 STACK_OF(OPENSSL_STRING) *names,
47 STACK_OF(OCSP_CERTID) *ids, long nsec,
48 long maxage);
b4dd21a7 49static void make_ocsp_response(BIO *err, OCSP_RESPONSE **resp, OCSP_REQUEST *req,
3bb0f989 50 CA_DB *db, STACK_OF(X509) *ca, X509 *rcert,
0f113f3e 51 EVP_PKEY *rkey, const EVP_MD *md,
b4dd21a7 52 STACK_OF(OPENSSL_STRING) *sigopts,
0f113f3e
MC
53 STACK_OF(X509) *rother, unsigned long flags,
54 int nmin, int ndays, int badsig);
ee306a13 55
f85b68cd 56static char **lookup_serial(CA_DB *db, ASN1_INTEGER *ser);
c45a48c1 57static BIO *init_responder(const char *port);
a773b52a 58static int do_responder(OCSP_REQUEST **preq, BIO **pcbio, BIO *acbio);
ee306a13 59static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp);
f9e55034
MC
60
61# ifndef OPENSSL_NO_SOCK
76e0cd12
DSH
62static OCSP_RESPONSE *query_responder(BIO *cbio, const char *host,
63 const char *path,
0f113f3e
MC
64 const STACK_OF(CONF_VALUE) *headers,
65 OCSP_REQUEST *req, int req_timeout);
f9e55034 66# endif
ee306a13 67
7e1b7485
RS
68typedef enum OPTION_choice {
69 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
70 OPT_OUTFILE, OPT_TIMEOUT, OPT_URL, OPT_HOST, OPT_PORT,
71 OPT_IGNORE_ERR, OPT_NOVERIFY, OPT_NONCE, OPT_NO_NONCE,
72 OPT_RESP_NO_CERTS, OPT_RESP_KEY_ID, OPT_NO_CERTS,
73 OPT_NO_SIGNATURE_VERIFY, OPT_NO_CERT_VERIFY, OPT_NO_CHAIN,
74 OPT_NO_CERT_CHECKS, OPT_NO_EXPLICIT, OPT_TRUST_OTHER,
75 OPT_NO_INTERN, OPT_BADSIG, OPT_TEXT, OPT_REQ_TEXT, OPT_RESP_TEXT,
76 OPT_REQIN, OPT_RESPIN, OPT_SIGNER, OPT_VAFILE, OPT_SIGN_OTHER,
2b6bcb70 77 OPT_VERIFY_OTHER, OPT_CAFILE, OPT_CAPATH, OPT_NOCAFILE, OPT_NOCAPATH,
7e1b7485 78 OPT_VALIDITY_PERIOD, OPT_STATUS_AGE, OPT_SIGNKEY, OPT_REQOUT,
c6724060 79 OPT_RESPOUT, OPT_PATH, OPT_ISSUER, OPT_CERT, OPT_SERIAL,
7e1b7485 80 OPT_INDEX, OPT_CA, OPT_NMIN, OPT_REQUEST, OPT_NDAYS, OPT_RSIGNER,
b4dd21a7 81 OPT_RKEY, OPT_ROTHER, OPT_RMD, OPT_SIGOPT, OPT_HEADER,
7e1b7485
RS
82 OPT_V_ENUM,
83 OPT_MD
84} OPTION_CHOICE;
85
44c83ebd 86const OPTIONS ocsp_options[] = {
7e1b7485
RS
87 {"help", OPT_HELP, '-', "Display this summary"},
88 {"out", OPT_OUTFILE, '>', "Output filename"},
9a13bb38
RS
89 {"timeout", OPT_TIMEOUT, 'p',
90 "Connection timeout (in seconds) to the OCSP responder"},
7e1b7485 91 {"url", OPT_URL, 's', "Responder URL"},
ceab33e2 92 {"host", OPT_HOST, 's', "TCP/IP hostname:port to connect to"},
7e1b7485 93 {"port", OPT_PORT, 'p', "Port to run responder on"},
12d56b29 94 {"ignore_err", OPT_IGNORE_ERR, '-',
bbe9c3d5 95 "Ignore error on OCSP request or response and continue running"},
7e1b7485
RS
96 {"noverify", OPT_NOVERIFY, '-', "Don't verify response at all"},
97 {"nonce", OPT_NONCE, '-', "Add OCSP nonce to request"},
98 {"no_nonce", OPT_NO_NONCE, '-', "Don't add OCSP nonce to request"},
99 {"resp_no_certs", OPT_RESP_NO_CERTS, '-',
100 "Don't include any certificates in response"},
101 {"resp_key_id", OPT_RESP_KEY_ID, '-',
ceab33e2 102 "Identify response by signing certificate key ID"},
7e1b7485
RS
103 {"no_certs", OPT_NO_CERTS, '-',
104 "Don't include any certificates in signed request"},
105 {"no_signature_verify", OPT_NO_SIGNATURE_VERIFY, '-',
106 "Don't check signature on response"},
107 {"no_cert_verify", OPT_NO_CERT_VERIFY, '-',
108 "Don't check signing certificate"},
109 {"no_chain", OPT_NO_CHAIN, '-', "Don't chain verify response"},
110 {"no_cert_checks", OPT_NO_CERT_CHECKS, '-',
111 "Don't do additional checks on signing certificate"},
12d56b29
F
112 {"no_explicit", OPT_NO_EXPLICIT, '-',
113 "Do not explicitly check the chain, just verify the root"},
7e1b7485
RS
114 {"trust_other", OPT_TRUST_OTHER, '-',
115 "Don't verify additional certificates"},
116 {"no_intern", OPT_NO_INTERN, '-',
117 "Don't search certificates contained in response for signer"},
16e1b281
F
118 {"badsig", OPT_BADSIG, '-',
119 "Corrupt last byte of loaded OSCP response signature (for test)"},
7e1b7485
RS
120 {"text", OPT_TEXT, '-', "Print text form of request and response"},
121 {"req_text", OPT_REQ_TEXT, '-', "Print text form of request"},
122 {"resp_text", OPT_RESP_TEXT, '-', "Print text form of response"},
123 {"reqin", OPT_REQIN, 's', "File with the DER-encoded request"},
124 {"respin", OPT_RESPIN, 's', "File with the DER-encoded response"},
125 {"signer", OPT_SIGNER, '<', "Certificate to sign OCSP request with"},
126 {"VAfile", OPT_VAFILE, '<', "Validator certificates file"},
127 {"sign_other", OPT_SIGN_OTHER, '<',
128 "Additional certificates to include in signed request"},
129 {"verify_other", OPT_VERIFY_OTHER, '<',
130 "Additional certificates to search for signer"},
131 {"CAfile", OPT_CAFILE, '<', "Trusted certificates file"},
132 {"CApath", OPT_CAPATH, '<', "Trusted certificates directory"},
2b6bcb70
MC
133 {"no-CAfile", OPT_NOCAFILE, '-',
134 "Do not load the default certificates file"},
135 {"no-CApath", OPT_NOCAPATH, '-',
136 "Do not load certificates from the default certificates directory"},
7e1b7485
RS
137 {"validity_period", OPT_VALIDITY_PERIOD, 'u',
138 "Maximum validity discrepancy in seconds"},
139 {"status_age", OPT_STATUS_AGE, 'p', "Maximum status age in seconds"},
140 {"signkey", OPT_SIGNKEY, 's', "Private key to sign OCSP request with"},
141 {"reqout", OPT_REQOUT, 's', "Output file for the DER-encoded request"},
142 {"respout", OPT_RESPOUT, 's', "Output file for the DER-encoded response"},
143 {"path", OPT_PATH, 's', "Path to use in OCSP request"},
c6724060 144 {"issuer", OPT_ISSUER, '<', "Issuer certificate"},
7e1b7485 145 {"cert", OPT_CERT, '<', "Certificate to check"},
16e1b281 146 {"serial", OPT_SERIAL, 's', "Serial number to check"},
7e1b7485
RS
147 {"index", OPT_INDEX, '<', "Certificate status index file"},
148 {"CA", OPT_CA, '<', "CA certificate"},
149 {"nmin", OPT_NMIN, 'p', "Number of minutes before next update"},
150 {"nrequest", OPT_REQUEST, 'p',
151 "Number of requests to accept (default unlimited)"},
152 {"ndays", OPT_NDAYS, 'p', "Number of days before next update"},
153 {"rsigner", OPT_RSIGNER, '<',
0ad69cd6 154 "Responder certificate to sign responses with"},
7e1b7485
RS
155 {"rkey", OPT_RKEY, '<', "Responder key to sign responses with"},
156 {"rother", OPT_ROTHER, '<', "Other certificates to include in response"},
16e1b281 157 {"rmd", OPT_RMD, 's', "Digest Algorithm to use in signature of OCSP response"},
b4dd21a7 158 {"rsigopt", OPT_SIGOPT, 's', "OCSP response signature parameter in n:v form"},
7e1b7485 159 {"header", OPT_HEADER, 's', "key=value header to add"},
16e1b281 160 {"", OPT_MD, '-', "Any supported digest algorithm (sha1,sha256, ... )"},
7e1b7485
RS
161 OPT_V_OPTIONS,
162 {NULL}
163};
164
165int ocsp_main(int argc, char **argv)
0f113f3e 166{
7e1b7485
RS
167 BIO *acbio = NULL, *cbio = NULL, *derbio = NULL, *out = NULL;
168 const EVP_MD *cert_id_md = NULL, *rsign_md = NULL;
b4dd21a7 169 STACK_OF(OPENSSL_STRING) *rsign_sigopts = NULL;
6302bbd2 170 int trailing_md = 0;
7e1b7485
RS
171 CA_DB *rdb = NULL;
172 EVP_PKEY *key = NULL, *rkey = NULL;
173 OCSP_BASICRESP *bs = NULL;
0f113f3e
MC
174 OCSP_REQUEST *req = NULL;
175 OCSP_RESPONSE *resp = NULL;
7e1b7485
RS
176 STACK_OF(CONF_VALUE) *headers = NULL;
177 STACK_OF(OCSP_CERTID) *ids = NULL;
178 STACK_OF(OPENSSL_STRING) *reqnames = NULL;
179 STACK_OF(X509) *sign_other = NULL, *verify_other = NULL, *rother = NULL;
88806cfc 180 STACK_OF(X509) *issuers = NULL;
3bb0f989
TS
181 X509 *issuer = NULL, *cert = NULL;
182 STACK_OF(X509) *rca_cert = NULL;
0f113f3e 183 X509 *signer = NULL, *rsigner = NULL;
0f113f3e
MC
184 X509_STORE *store = NULL;
185 X509_VERIFY_PARAM *vpm = NULL;
cc696296
F
186 const char *CAfile = NULL, *CApath = NULL;
187 char *header, *value;
7e1b7485
RS
188 char *host = NULL, *port = NULL, *path = "/", *outfile = NULL;
189 char *rca_filename = NULL, *reqin = NULL, *respin = NULL;
190 char *reqout = NULL, *respout = NULL, *ridx_filename = NULL;
191 char *rsignfile = NULL, *rkeyfile = NULL;
0f113f3e 192 char *sign_certfile = NULL, *verify_certfile = NULL, *rcertfile = NULL;
7e1b7485
RS
193 char *signfile = NULL, *keyfile = NULL;
194 char *thost = NULL, *tport = NULL, *tpath = NULL;
2b6bcb70 195 int noCAfile = 0, noCApath = 0;
7e1b7485
RS
196 int accept_count = -1, add_nonce = 1, noverify = 0, use_ssl = -1;
197 int vpmtouched = 0, badsig = 0, i, ignore_err = 0, nmin = 0, ndays = -1;
f9e55034
MC
198 int req_text = 0, resp_text = 0, ret = 1;
199#ifndef OPENSSL_NO_SOCK
200 int req_timeout = -1;
201#endif
7e1b7485 202 long nsec = MAX_VALIDITY_PERIOD, maxage = -1;
0f113f3e 203 unsigned long sign_flags = 0, verify_flags = 0, rflags = 0;
7e1b7485
RS
204 OPTION_CHOICE o;
205 char *prog;
0f113f3e 206
0f113f3e 207 reqnames = sk_OPENSSL_STRING_new_null();
2234212c 208 if (reqnames == NULL)
7e1b7485 209 goto end;
0f113f3e 210 ids = sk_OCSP_CERTID_new_null();
2234212c 211 if (ids == NULL)
7e1b7485
RS
212 goto end;
213 if ((vpm = X509_VERIFY_PARAM_new()) == NULL)
214 return 1;
215
216 prog = opt_init(argc, argv, ocsp_options);
217 while ((o = opt_next()) != OPT_EOF) {
218 switch (o) {
219 case OPT_EOF:
220 case OPT_ERR:
221 opthelp:
222 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
223 goto end;
224 case OPT_HELP:
225 ret = 0;
226 opt_help(ocsp_options);
227 goto end;
228 case OPT_OUTFILE:
229 outfile = opt_arg();
230 break;
231 case OPT_TIMEOUT:
f9e55034 232#ifndef OPENSSL_NO_SOCK
7e1b7485 233 req_timeout = atoi(opt_arg());
f9e55034 234#endif
7e1b7485
RS
235 break;
236 case OPT_URL:
b548a1f1
RS
237 OPENSSL_free(thost);
238 OPENSSL_free(tport);
239 OPENSSL_free(tpath);
4b8d8e2a 240 thost = tport = tpath = NULL;
7e1b7485
RS
241 if (!OCSP_parse_url(opt_arg(), &host, &port, &path, &use_ssl)) {
242 BIO_printf(bio_err, "%s Error parsing URL\n", prog);
243 goto end;
244 }
245 thost = host;
246 tport = port;
247 tpath = path;
248 break;
249 case OPT_HOST:
250 host = opt_arg();
251 break;
252 case OPT_PORT:
253 port = opt_arg();
254 break;
255 case OPT_IGNORE_ERR:
0f113f3e 256 ignore_err = 1;
7e1b7485
RS
257 break;
258 case OPT_NOVERIFY:
0f113f3e 259 noverify = 1;
7e1b7485
RS
260 break;
261 case OPT_NONCE:
0f113f3e 262 add_nonce = 2;
7e1b7485
RS
263 break;
264 case OPT_NO_NONCE:
0f113f3e 265 add_nonce = 0;
7e1b7485
RS
266 break;
267 case OPT_RESP_NO_CERTS:
0f113f3e 268 rflags |= OCSP_NOCERTS;
7e1b7485
RS
269 break;
270 case OPT_RESP_KEY_ID:
0f113f3e 271 rflags |= OCSP_RESPID_KEY;
7e1b7485
RS
272 break;
273 case OPT_NO_CERTS:
0f113f3e 274 sign_flags |= OCSP_NOCERTS;
7e1b7485
RS
275 break;
276 case OPT_NO_SIGNATURE_VERIFY:
0f113f3e 277 verify_flags |= OCSP_NOSIGS;
7e1b7485
RS
278 break;
279 case OPT_NO_CERT_VERIFY:
0f113f3e 280 verify_flags |= OCSP_NOVERIFY;
7e1b7485
RS
281 break;
282 case OPT_NO_CHAIN:
0f113f3e 283 verify_flags |= OCSP_NOCHAIN;
7e1b7485
RS
284 break;
285 case OPT_NO_CERT_CHECKS:
0f113f3e 286 verify_flags |= OCSP_NOCHECKS;
7e1b7485
RS
287 break;
288 case OPT_NO_EXPLICIT:
0f113f3e 289 verify_flags |= OCSP_NOEXPLICIT;
7e1b7485
RS
290 break;
291 case OPT_TRUST_OTHER:
0f113f3e 292 verify_flags |= OCSP_TRUSTOTHER;
7e1b7485
RS
293 break;
294 case OPT_NO_INTERN:
0f113f3e 295 verify_flags |= OCSP_NOINTERN;
7e1b7485
RS
296 break;
297 case OPT_BADSIG:
0f113f3e 298 badsig = 1;
7e1b7485
RS
299 break;
300 case OPT_TEXT:
301 req_text = resp_text = 1;
302 break;
303 case OPT_REQ_TEXT:
0f113f3e 304 req_text = 1;
7e1b7485
RS
305 break;
306 case OPT_RESP_TEXT:
0f113f3e 307 resp_text = 1;
7e1b7485
RS
308 break;
309 case OPT_REQIN:
310 reqin = opt_arg();
311 break;
312 case OPT_RESPIN:
313 respin = opt_arg();
314 break;
315 case OPT_SIGNER:
316 signfile = opt_arg();
317 break;
318 case OPT_VAFILE:
319 verify_certfile = opt_arg();
320 verify_flags |= OCSP_TRUSTOTHER;
321 break;
322 case OPT_SIGN_OTHER:
323 sign_certfile = opt_arg();
324 break;
325 case OPT_VERIFY_OTHER:
326 verify_certfile = opt_arg();
327 break;
328 case OPT_CAFILE:
329 CAfile = opt_arg();
330 break;
331 case OPT_CAPATH:
332 CApath = opt_arg();
333 break;
2b6bcb70
MC
334 case OPT_NOCAFILE:
335 noCAfile = 1;
336 break;
337 case OPT_NOCAPATH:
338 noCApath = 1;
339 break;
7e1b7485
RS
340 case OPT_V_CASES:
341 if (!opt_verify(o, vpm))
0f113f3e 342 goto end;
7e1b7485
RS
343 vpmtouched++;
344 break;
345 case OPT_VALIDITY_PERIOD:
346 opt_long(opt_arg(), &nsec);
347 break;
348 case OPT_STATUS_AGE:
349 opt_long(opt_arg(), &maxage);
350 break;
351 case OPT_SIGNKEY:
352 keyfile = opt_arg();
353 break;
354 case OPT_REQOUT:
355 reqout = opt_arg();
356 break;
357 case OPT_RESPOUT:
358 respout = opt_arg();
359 break;
360 case OPT_PATH:
361 path = opt_arg();
362 break;
c6724060 363 case OPT_ISSUER:
a773b52a 364 issuer = load_cert(opt_arg(), FORMAT_PEM, "issuer certificate");
c6724060
RS
365 if (issuer == NULL)
366 goto end;
bb7fc98c
DSH
367 if (issuers == NULL) {
368 if ((issuers = sk_X509_new_null()) == NULL)
369 goto end;
370 }
c6724060
RS
371 sk_X509_push(issuers, issuer);
372 break;
7e1b7485
RS
373 case OPT_CERT:
374 X509_free(cert);
a773b52a 375 cert = load_cert(opt_arg(), FORMAT_PEM, "certificate");
7e1b7485
RS
376 if (cert == NULL)
377 goto end;
378 if (cert_id_md == NULL)
379 cert_id_md = EVP_sha1();
380 if (!add_ocsp_cert(&req, cert, cert_id_md, issuer, ids))
381 goto end;
382 if (!sk_OPENSSL_STRING_push(reqnames, opt_arg()))
383 goto end;
6302bbd2 384 trailing_md = 0;
7e1b7485
RS
385 break;
386 case OPT_SERIAL:
387 if (cert_id_md == NULL)
388 cert_id_md = EVP_sha1();
389 if (!add_ocsp_serial(&req, opt_arg(), cert_id_md, issuer, ids))
390 goto end;
391 if (!sk_OPENSSL_STRING_push(reqnames, opt_arg()))
392 goto end;
6302bbd2 393 trailing_md = 0;
7e1b7485
RS
394 break;
395 case OPT_INDEX:
396 ridx_filename = opt_arg();
397 break;
398 case OPT_CA:
399 rca_filename = opt_arg();
400 break;
401 case OPT_NMIN:
402 opt_int(opt_arg(), &nmin);
0f113f3e
MC
403 if (ndays == -1)
404 ndays = 0;
7e1b7485
RS
405 break;
406 case OPT_REQUEST:
407 opt_int(opt_arg(), &accept_count);
408 break;
409 case OPT_NDAYS:
410 ndays = atoi(opt_arg());
411 break;
412 case OPT_RSIGNER:
413 rsignfile = opt_arg();
414 break;
415 case OPT_RKEY:
416 rkeyfile = opt_arg();
417 break;
418 case OPT_ROTHER:
419 rcertfile = opt_arg();
420 break;
16e1b281 421 case OPT_RMD: /* Response MessageDigest */
7e1b7485
RS
422 if (!opt_md(opt_arg(), &rsign_md))
423 goto end;
424 break;
b4dd21a7
DC
425 case OPT_SIGOPT:
426 if (rsign_sigopts == NULL)
427 rsign_sigopts = sk_OPENSSL_STRING_new_null();
428 if (rsign_sigopts == NULL || !sk_OPENSSL_STRING_push(rsign_sigopts, opt_arg()))
429 goto end;
430 break;
7e1b7485
RS
431 case OPT_HEADER:
432 header = opt_arg();
433 value = strchr(header, '=');
434 if (value == NULL) {
435 BIO_printf(bio_err, "Missing = in header key=value\n");
436 goto opthelp;
437 }
438 *value++ = '\0';
439 if (!X509V3_add_value(header, value, &headers))
440 goto end;
441 break;
442 case OPT_MD:
6302bbd2 443 if (trailing_md) {
7e1b7485
RS
444 BIO_printf(bio_err,
445 "%s: Digest must be before -cert or -serial\n",
446 prog);
447 goto opthelp;
448 }
449 if (!opt_md(opt_unknown(), &cert_id_md))
450 goto opthelp;
6302bbd2 451 trailing_md = 1;
7e1b7485 452 break;
0f113f3e 453 }
0f113f3e 454 }
6302bbd2
DSH
455
456 if (trailing_md) {
457 BIO_printf(bio_err, "%s: Digest must be before -cert or -serial\n",
458 prog);
459 goto opthelp;
460 }
7e1b7485 461 argc = opt_num_rest();
03358517
KR
462 if (argc != 0)
463 goto opthelp;
0f113f3e
MC
464
465 /* Have we anything to do? */
2234212c
PY
466 if (req == NULL&& reqin == NULL
467 && respin == NULL && !(port != NULL && ridx_filename != NULL))
7e1b7485 468 goto opthelp;
0f113f3e 469
bdd58d98 470 out = bio_open_default(outfile, 'w', FORMAT_TEXT);
7e1b7485 471 if (out == NULL)
0f113f3e 472 goto end;
0f113f3e 473
2234212c 474 if (req == NULL && (add_nonce != 2))
0f113f3e
MC
475 add_nonce = 0;
476
2234212c 477 if (req == NULL && reqin != NULL) {
bdd58d98 478 derbio = bio_open_default(reqin, 'r', FORMAT_ASN1);
7e1b7485 479 if (derbio == NULL)
0f113f3e 480 goto end;
0f113f3e
MC
481 req = d2i_OCSP_REQUEST_bio(derbio, NULL);
482 BIO_free(derbio);
2234212c 483 if (req == NULL) {
0f113f3e
MC
484 BIO_printf(bio_err, "Error reading OCSP request\n");
485 goto end;
486 }
487 }
488
2234212c 489 if (req == NULL && port != NULL) {
0f113f3e 490 acbio = init_responder(port);
2234212c 491 if (acbio == NULL)
0f113f3e
MC
492 goto end;
493 }
494
2234212c
PY
495 if (rsignfile != NULL) {
496 if (rkeyfile == NULL)
0f113f3e 497 rkeyfile = rsignfile;
a773b52a 498 rsigner = load_cert(rsignfile, FORMAT_PEM, "responder certificate");
2234212c 499 if (rsigner == NULL) {
0f113f3e
MC
500 BIO_printf(bio_err, "Error loading responder certificate\n");
501 goto end;
502 }
3bb0f989
TS
503 if (!load_certs(rca_filename, &rca_cert, FORMAT_PEM,
504 NULL, "CA certificate"))
505 goto end;
2234212c 506 if (rcertfile != NULL) {
a773b52a 507 if (!load_certs(rcertfile, &rother, FORMAT_PEM, NULL,
0996dc54 508 "responder other certificates"))
0f113f3e
MC
509 goto end;
510 }
7e1b7485 511 rkey = load_key(rkeyfile, FORMAT_PEM, 0, NULL, NULL,
0f113f3e 512 "responder private key");
2234212c 513 if (rkey == NULL)
0f113f3e
MC
514 goto end;
515 }
2234212c 516 if (acbio != NULL)
0f113f3e
MC
517 BIO_printf(bio_err, "Waiting for OCSP client connections...\n");
518
2234212c 519redo_accept:
0f113f3e 520
2234212c 521 if (acbio != NULL) {
a773b52a 522 if (!do_responder(&req, &cbio, acbio))
0f113f3e 523 goto end;
2234212c 524 if (req == NULL) {
0f113f3e
MC
525 resp =
526 OCSP_response_create(OCSP_RESPONSE_STATUS_MALFORMEDREQUEST,
527 NULL);
528 send_ocsp_response(cbio, resp);
529 goto done_resp;
530 }
531 }
532
2234212c
PY
533 if (req == NULL
534 && (signfile != NULL || reqout != NULL
535 || host != NULL || add_nonce || ridx_filename != NULL)) {
0f113f3e
MC
536 BIO_printf(bio_err, "Need an OCSP request for this operation!\n");
537 goto end;
538 }
539
2234212c 540 if (req != NULL && add_nonce)
0f113f3e
MC
541 OCSP_request_add1_nonce(req, NULL, -1);
542
2234212c
PY
543 if (signfile != NULL) {
544 if (keyfile == NULL)
0f113f3e 545 keyfile = signfile;
a773b52a 546 signer = load_cert(signfile, FORMAT_PEM, "signer certificate");
2234212c 547 if (signer == NULL) {
0f113f3e
MC
548 BIO_printf(bio_err, "Error loading signer certificate\n");
549 goto end;
550 }
2234212c 551 if (sign_certfile != NULL) {
a773b52a 552 if (!load_certs(sign_certfile, &sign_other, FORMAT_PEM, NULL,
0996dc54 553 "signer certificates"))
0f113f3e
MC
554 goto end;
555 }
7e1b7485 556 key = load_key(keyfile, FORMAT_PEM, 0, NULL, NULL,
0f113f3e 557 "signer private key");
2234212c 558 if (key == NULL)
0f113f3e
MC
559 goto end;
560
561 if (!OCSP_request_sign
562 (req, signer, key, NULL, sign_other, sign_flags)) {
563 BIO_printf(bio_err, "Error signing OCSP request\n");
564 goto end;
565 }
566 }
567
2234212c 568 if (req_text && req != NULL)
0f113f3e
MC
569 OCSP_REQUEST_print(out, req, 0);
570
2234212c 571 if (reqout != NULL) {
bdd58d98 572 derbio = bio_open_default(reqout, 'w', FORMAT_ASN1);
7e1b7485 573 if (derbio == NULL)
0f113f3e 574 goto end;
0f113f3e
MC
575 i2d_OCSP_REQUEST_bio(derbio, req);
576 BIO_free(derbio);
577 }
578
2234212c
PY
579 if (ridx_filename != NULL
580 && (rkey == NULL || rsigner == NULL || rca_cert == NULL)) {
0f113f3e
MC
581 BIO_printf(bio_err,
582 "Need a responder certificate, key and CA for this operation!\n");
583 goto end;
584 }
585
2234212c 586 if (ridx_filename != NULL && rdb == NULL) {
0f113f3e 587 rdb = load_index(ridx_filename, NULL);
2234212c 588 if (rdb == NULL)
0f113f3e
MC
589 goto end;
590 if (!index_index(rdb))
591 goto end;
592 }
593
2234212c 594 if (rdb != NULL) {
b4dd21a7
DC
595 make_ocsp_response(bio_err, &resp, req, rdb, rca_cert, rsigner, rkey,
596 rsign_md, rsign_sigopts, rother, rflags, nmin, ndays, badsig);
2234212c 597 if (cbio != NULL)
0f113f3e 598 send_ocsp_response(cbio, resp);
2234212c 599 } else if (host != NULL) {
0f113f3e 600# ifndef OPENSSL_NO_SOCK
7e1b7485 601 resp = process_responder(req, host, path,
0f113f3e 602 port, use_ssl, headers, req_timeout);
2234212c 603 if (resp == NULL)
0f113f3e
MC
604 goto end;
605# else
606 BIO_printf(bio_err,
607 "Error creating connect BIO - sockets not supported.\n");
608 goto end;
609# endif
2234212c 610 } else if (respin != NULL) {
bdd58d98 611 derbio = bio_open_default(respin, 'r', FORMAT_ASN1);
7e1b7485 612 if (derbio == NULL)
0f113f3e 613 goto end;
0f113f3e
MC
614 resp = d2i_OCSP_RESPONSE_bio(derbio, NULL);
615 BIO_free(derbio);
2234212c 616 if (resp == NULL) {
0f113f3e
MC
617 BIO_printf(bio_err, "Error reading OCSP response\n");
618 goto end;
619 }
0f113f3e
MC
620 } else {
621 ret = 0;
622 goto end;
623 }
624
625 done_resp:
626
2234212c 627 if (respout != NULL) {
bdd58d98 628 derbio = bio_open_default(respout, 'w', FORMAT_ASN1);
7e1b7485 629 if (derbio == NULL)
0f113f3e 630 goto end;
0f113f3e
MC
631 i2d_OCSP_RESPONSE_bio(derbio, resp);
632 BIO_free(derbio);
633 }
634
635 i = OCSP_response_status(resp);
0f113f3e
MC
636 if (i != OCSP_RESPONSE_STATUS_SUCCESSFUL) {
637 BIO_printf(out, "Responder Error: %s (%d)\n",
638 OCSP_response_status_str(i), i);
639 if (ignore_err)
640 goto redo_accept;
641 ret = 0;
642 goto end;
643 }
644
645 if (resp_text)
646 OCSP_RESPONSE_print(out, resp, 0);
647
648 /* If running as responder don't verify our own response */
2234212c 649 if (cbio != NULL) {
e46bcca2
AE
650 /* If not unlimited, see if we took all we should. */
651 if (accept_count != -1 && --accept_count <= 0) {
7e1b7485
RS
652 ret = 0;
653 goto end;
0f113f3e 654 }
7e1b7485
RS
655 BIO_free_all(cbio);
656 cbio = NULL;
657 OCSP_REQUEST_free(req);
658 req = NULL;
659 OCSP_RESPONSE_free(resp);
660 resp = NULL;
661 goto redo_accept;
662 }
2234212c 663 if (ridx_filename != NULL) {
0f113f3e
MC
664 ret = 0;
665 goto end;
666 }
667
2234212c 668 if (store == NULL) {
2b6bcb70 669 store = setup_verify(CAfile, CApath, noCAfile, noCApath);
7e1b7485
RS
670 if (!store)
671 goto end;
672 }
673 if (vpmtouched)
0f113f3e 674 X509_STORE_set1_param(store, vpm);
2234212c 675 if (verify_certfile != NULL) {
a773b52a 676 if (!load_certs(verify_certfile, &verify_other, FORMAT_PEM, NULL,
0996dc54 677 "validator certificate"))
0f113f3e
MC
678 goto end;
679 }
680
681 bs = OCSP_response_get1_basic(resp);
2234212c 682 if (bs == NULL) {
0f113f3e
MC
683 BIO_printf(bio_err, "Error parsing response\n");
684 goto end;
685 }
686
687 ret = 0;
688
689 if (!noverify) {
2234212c 690 if (req != NULL && ((i = OCSP_check_nonce(req, bs)) <= 0)) {
0f113f3e
MC
691 if (i == -1)
692 BIO_printf(bio_err, "WARNING: no nonce in response\n");
693 else {
694 BIO_printf(bio_err, "Nonce Verify error\n");
695 ret = 1;
696 goto end;
697 }
698 }
699
700 i = OCSP_basic_verify(bs, verify_other, store, verify_flags);
c6724060
RS
701 if (i <= 0 && issuers) {
702 i = OCSP_basic_verify(bs, issuers, store, OCSP_TRUSTOTHER);
703 if (i > 0)
704 ERR_clear_error();
705 }
0f113f3e
MC
706 if (i <= 0) {
707 BIO_printf(bio_err, "Response Verify Failure\n");
708 ERR_print_errors(bio_err);
709 ret = 1;
2234212c 710 } else {
0f113f3e 711 BIO_printf(bio_err, "Response verify OK\n");
2234212c 712 }
0f113f3e
MC
713 }
714
7e1b7485 715 print_ocsp_summary(out, bs, req, reqnames, ids, nsec, maxage);
0f113f3e
MC
716
717 end:
718 ERR_print_errors(bio_err);
719 X509_free(signer);
720 X509_STORE_free(store);
222561fe 721 X509_VERIFY_PARAM_free(vpm);
b4dd21a7
DC
722 if (rsign_sigopts != NULL)
723 sk_OPENSSL_STRING_free(rsign_sigopts);
0f113f3e
MC
724 EVP_PKEY_free(key);
725 EVP_PKEY_free(rkey);
0f113f3e 726 X509_free(cert);
bb7fc98c 727 sk_X509_pop_free(issuers, X509_free);
0f113f3e 728 X509_free(rsigner);
3bb0f989 729 sk_X509_pop_free(rca_cert, X509_free);
0f113f3e
MC
730 free_index(rdb);
731 BIO_free_all(cbio);
732 BIO_free_all(acbio);
733 BIO_free(out);
734 OCSP_REQUEST_free(req);
735 OCSP_RESPONSE_free(resp);
736 OCSP_BASICRESP_free(bs);
737 sk_OPENSSL_STRING_free(reqnames);
738 sk_OCSP_CERTID_free(ids);
739 sk_X509_pop_free(sign_other, X509_free);
740 sk_X509_pop_free(verify_other, X509_free);
741 sk_CONF_VALUE_pop_free(headers, X509V3_conf_free);
b548a1f1
RS
742 OPENSSL_free(thost);
743 OPENSSL_free(tport);
744 OPENSSL_free(tpath);
0f113f3e 745
26a7d938 746 return ret;
5782ceb2
DSH
747}
748
0f113f3e
MC
749static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert,
750 const EVP_MD *cert_id_md, X509 *issuer,
751 STACK_OF(OCSP_CERTID) *ids)
752{
753 OCSP_CERTID *id;
2234212c
PY
754
755 if (issuer == NULL) {
0f113f3e
MC
756 BIO_printf(bio_err, "No issuer certificate specified\n");
757 return 0;
758 }
96487cdd 759 if (*req == NULL)
0f113f3e 760 *req = OCSP_REQUEST_new();
96487cdd 761 if (*req == NULL)
0f113f3e
MC
762 goto err;
763 id = OCSP_cert_to_id(cert_id_md, cert, issuer);
2234212c 764 if (id == NULL || !sk_OCSP_CERTID_push(ids, id))
0f113f3e
MC
765 goto err;
766 if (!OCSP_request_add0_id(*req, id))
767 goto err;
768 return 1;
769
770 err:
771 BIO_printf(bio_err, "Error Creating OCSP request\n");
772 return 0;
773}
774
775static int add_ocsp_serial(OCSP_REQUEST **req, char *serial,
776 const EVP_MD *cert_id_md, X509 *issuer,
777 STACK_OF(OCSP_CERTID) *ids)
778{
779 OCSP_CERTID *id;
780 X509_NAME *iname;
781 ASN1_BIT_STRING *ikey;
782 ASN1_INTEGER *sno;
2234212c
PY
783
784 if (issuer == NULL) {
0f113f3e
MC
785 BIO_printf(bio_err, "No issuer certificate specified\n");
786 return 0;
787 }
96487cdd 788 if (*req == NULL)
0f113f3e 789 *req = OCSP_REQUEST_new();
96487cdd 790 if (*req == NULL)
0f113f3e
MC
791 goto err;
792 iname = X509_get_subject_name(issuer);
793 ikey = X509_get0_pubkey_bitstr(issuer);
794 sno = s2i_ASN1_INTEGER(NULL, serial);
2234212c 795 if (sno == NULL) {
0f113f3e
MC
796 BIO_printf(bio_err, "Error converting serial number %s\n", serial);
797 return 0;
798 }
799 id = OCSP_cert_id_new(cert_id_md, iname, ikey, sno);
800 ASN1_INTEGER_free(sno);
96487cdd 801 if (id == NULL || !sk_OCSP_CERTID_push(ids, id))
0f113f3e
MC
802 goto err;
803 if (!OCSP_request_add0_id(*req, id))
804 goto err;
805 return 1;
806
807 err:
808 BIO_printf(bio_err, "Error Creating OCSP request\n");
809 return 0;
810}
73758d43 811
7e1b7485 812static void print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
0f113f3e
MC
813 STACK_OF(OPENSSL_STRING) *names,
814 STACK_OF(OCSP_CERTID) *ids, long nsec,
815 long maxage)
816{
817 OCSP_CERTID *id;
cc696296 818 const char *name;
7e1b7485 819 int i, status, reason;
0f113f3e
MC
820 ASN1_GENERALIZEDTIME *rev, *thisupd, *nextupd;
821
2234212c 822 if (bs == NULL || req == NULL || !sk_OPENSSL_STRING_num(names)
0f113f3e 823 || !sk_OCSP_CERTID_num(ids))
7e1b7485 824 return;
0f113f3e
MC
825
826 for (i = 0; i < sk_OCSP_CERTID_num(ids); i++) {
827 id = sk_OCSP_CERTID_value(ids, i);
828 name = sk_OPENSSL_STRING_value(names, i);
829 BIO_printf(out, "%s: ", name);
830
831 if (!OCSP_resp_find_status(bs, id, &status, &reason,
832 &rev, &thisupd, &nextupd)) {
833 BIO_puts(out, "ERROR: No Status found.\n");
834 continue;
835 }
836
837 /*
838 * Check validity: if invalid write to output BIO so we know which
839 * response this refers to.
840 */
841 if (!OCSP_check_validity(thisupd, nextupd, nsec, maxage)) {
842 BIO_puts(out, "WARNING: Status times invalid.\n");
843 ERR_print_errors(out);
844 }
845 BIO_printf(out, "%s\n", OCSP_cert_status_str(status));
846
847 BIO_puts(out, "\tThis Update: ");
848 ASN1_GENERALIZEDTIME_print(out, thisupd);
849 BIO_puts(out, "\n");
850
851 if (nextupd) {
852 BIO_puts(out, "\tNext Update: ");
853 ASN1_GENERALIZEDTIME_print(out, nextupd);
854 BIO_puts(out, "\n");
855 }
856
857 if (status != V_OCSP_CERTSTATUS_REVOKED)
858 continue;
859
860 if (reason != -1)
861 BIO_printf(out, "\tReason: %s\n", OCSP_crl_reason_str(reason));
862
863 BIO_puts(out, "\tRevocation Time: ");
864 ASN1_GENERALIZEDTIME_print(out, rev);
865 BIO_puts(out, "\n");
866 }
0f113f3e
MC
867}
868
b4dd21a7 869static void make_ocsp_response(BIO *err, OCSP_RESPONSE **resp, OCSP_REQUEST *req,
3bb0f989 870 CA_DB *db, STACK_OF(X509) *ca, X509 *rcert,
0f113f3e 871 EVP_PKEY *rkey, const EVP_MD *rmd,
b4dd21a7 872 STACK_OF(OPENSSL_STRING) *sigopts,
0f113f3e
MC
873 STACK_OF(X509) *rother, unsigned long flags,
874 int nmin, int ndays, int badsig)
875{
876 ASN1_TIME *thisupd = NULL, *nextupd = NULL;
3bb0f989 877 OCSP_CERTID *cid;
0f113f3e 878 OCSP_BASICRESP *bs = NULL;
7e1b7485 879 int i, id_count;
b4dd21a7
DC
880 EVP_MD_CTX *mctx = NULL;
881 EVP_PKEY_CTX *pkctx = NULL;
0f113f3e
MC
882
883 id_count = OCSP_request_onereq_count(req);
884
885 if (id_count <= 0) {
886 *resp =
887 OCSP_response_create(OCSP_RESPONSE_STATUS_MALFORMEDREQUEST, NULL);
888 goto end;
889 }
890
891 bs = OCSP_BASICRESP_new();
892 thisupd = X509_gmtime_adj(NULL, 0);
893 if (ndays != -1)
9aa00b18 894 nextupd = X509_time_adj_ex(NULL, ndays, nmin * 60, NULL);
0f113f3e
MC
895
896 /* Examine each certificate id in the request */
897 for (i = 0; i < id_count; i++) {
898 OCSP_ONEREQ *one;
899 ASN1_INTEGER *serial;
900 char **inf;
3bb0f989
TS
901 int jj;
902 int found = 0;
0f113f3e
MC
903 ASN1_OBJECT *cert_id_md_oid;
904 const EVP_MD *cert_id_md;
905 one = OCSP_request_onereq_get0(req, i);
906 cid = OCSP_onereq_get0_id(one);
907
908 OCSP_id_get0_info(NULL, &cert_id_md_oid, NULL, NULL, cid);
909
910 cert_id_md = EVP_get_digestbyobj(cert_id_md_oid);
2234212c 911 if (cert_id_md == NULL) {
0f113f3e
MC
912 *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR,
913 NULL);
914 goto end;
915 }
3bb0f989
TS
916 for (jj = 0; jj < sk_X509_num(ca) && !found; jj++) {
917 X509 *ca_cert = sk_X509_value(ca, jj);
918 OCSP_CERTID *ca_id = OCSP_cert_to_id(cert_id_md, NULL, ca_cert);
919
920 if (OCSP_id_issuer_cmp(ca_id, cid) == 0)
921 found = 1;
922
923 OCSP_CERTID_free(ca_id);
924 }
0f113f3e 925
3bb0f989 926 if (!found) {
0f113f3e
MC
927 OCSP_basic_add1_status(bs, cid,
928 V_OCSP_CERTSTATUS_UNKNOWN,
929 0, NULL, thisupd, nextupd);
930 continue;
931 }
932 OCSP_id_get0_info(NULL, NULL, NULL, &serial, cid);
933 inf = lookup_serial(db, serial);
2234212c 934 if (inf == NULL) {
0f113f3e
MC
935 OCSP_basic_add1_status(bs, cid,
936 V_OCSP_CERTSTATUS_UNKNOWN,
937 0, NULL, thisupd, nextupd);
2234212c 938 } else if (inf[DB_type][0] == DB_TYPE_VAL) {
0f113f3e
MC
939 OCSP_basic_add1_status(bs, cid,
940 V_OCSP_CERTSTATUS_GOOD,
941 0, NULL, thisupd, nextupd);
2234212c 942 } else if (inf[DB_type][0] == DB_TYPE_REV) {
0f113f3e
MC
943 ASN1_OBJECT *inst = NULL;
944 ASN1_TIME *revtm = NULL;
945 ASN1_GENERALIZEDTIME *invtm = NULL;
946 OCSP_SINGLERESP *single;
947 int reason = -1;
948 unpack_revinfo(&revtm, &reason, &inst, &invtm, inf[DB_rev_date]);
949 single = OCSP_basic_add1_status(bs, cid,
950 V_OCSP_CERTSTATUS_REVOKED,
951 reason, revtm, thisupd, nextupd);
2234212c 952 if (invtm != NULL)
0f113f3e
MC
953 OCSP_SINGLERESP_add1_ext_i2d(single, NID_invalidity_date,
954 invtm, 0, 0);
2234212c 955 else if (inst != NULL)
0f113f3e
MC
956 OCSP_SINGLERESP_add1_ext_i2d(single,
957 NID_hold_instruction_code, inst,
958 0, 0);
959 ASN1_OBJECT_free(inst);
960 ASN1_TIME_free(revtm);
961 ASN1_GENERALIZEDTIME_free(invtm);
962 }
963 }
964
965 OCSP_copy_nonce(bs, req);
966
b4dd21a7
DC
967 mctx = EVP_MD_CTX_new();
968 if ( mctx == NULL || !EVP_DigestSignInit(mctx, &pkctx, rmd, NULL, rkey)) {
969 *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR, NULL);
970 goto end;
971 }
972 for (i = 0; i < sk_OPENSSL_STRING_num(sigopts); i++) {
973 char *sigopt = sk_OPENSSL_STRING_value(sigopts, i);
974 if (pkey_ctrl_string(pkctx, sigopt) <= 0) {
975 BIO_printf(err, "parameter error \"%s\"\n", sigopt);
976 ERR_print_errors(bio_err);
977 *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR,
978 NULL);
979 goto end;
980 }
981 }
982 OCSP_basic_sign_ctx(bs, rcert, mctx, rother, flags);
0f113f3e 983
6ef869d7 984 if (badsig) {
a0754084
DSH
985 const ASN1_OCTET_STRING *sig = OCSP_resp_get0_signature(bs);
986 corrupt_signature(sig);
6ef869d7 987 }
0f113f3e
MC
988
989 *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_SUCCESSFUL, bs);
990
991 end:
b4dd21a7
DC
992 if (mctx != NULL)
993 EVP_MD_CTX_free(mctx);
0f113f3e
MC
994 ASN1_TIME_free(thisupd);
995 ASN1_TIME_free(nextupd);
0f113f3e 996 OCSP_BASICRESP_free(bs);
0f113f3e 997}
ee306a13 998
f85b68cd 999static char **lookup_serial(CA_DB *db, ASN1_INTEGER *ser)
0f113f3e
MC
1000{
1001 int i;
1002 BIGNUM *bn = NULL;
1003 char *itmp, *row[DB_NUMBER], **rrow;
1004 for (i = 0; i < DB_NUMBER; i++)
1005 row[i] = NULL;
1006 bn = ASN1_INTEGER_to_BN(ser, NULL);
1007 OPENSSL_assert(bn); /* FIXME: should report an error at this
1008 * point and abort */
1009 if (BN_is_zero(bn))
7644a9ae 1010 itmp = OPENSSL_strdup("00");
0f113f3e
MC
1011 else
1012 itmp = BN_bn2hex(bn);
1013 row[DB_serial] = itmp;
1014 BN_free(bn);
1015 rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
1016 OPENSSL_free(itmp);
1017 return rrow;
1018}
ee306a13
DSH
1019
1020/* Quick and dirty OCSP server: read in and parse input request */
1021
c45a48c1 1022static BIO *init_responder(const char *port)
0f113f3e 1023{
366e2a60 1024# ifdef OPENSSL_NO_SOCK
0f113f3e
MC
1025 BIO_printf(bio_err,
1026 "Error setting up accept BIO - sockets not supported.\n");
366e2a60 1027 return NULL;
f863ad0c
MC
1028# else
1029 BIO *acbio = NULL, *bufbio = NULL;
1030
366e2a60 1031 bufbio = BIO_new(BIO_f_buffer());
96487cdd 1032 if (bufbio == NULL)
0f113f3e 1033 goto err;
366e2a60
RS
1034 acbio = BIO_new(BIO_s_accept());
1035 if (acbio == NULL
1036 || BIO_set_bind_mode(acbio, BIO_BIND_REUSEADDR) < 0
1037 || BIO_set_accept_port(acbio, port) < 0) {
1038 BIO_printf(bio_err, "Error setting up accept BIO\n");
1039 ERR_print_errors(bio_err);
1040 goto err;
1041 }
1042
0f113f3e
MC
1043 BIO_set_accept_bios(acbio, bufbio);
1044 bufbio = NULL;
0f113f3e 1045 if (BIO_do_accept(acbio) <= 0) {
366e2a60 1046 BIO_printf(bio_err, "Error starting accept\n");
0f113f3e
MC
1047 ERR_print_errors(bio_err);
1048 goto err;
1049 }
1050
1051 return acbio;
1052
1053 err:
1054 BIO_free_all(acbio);
1055 BIO_free(bufbio);
1056 return NULL;
f863ad0c 1057# endif
0f113f3e 1058}
ee306a13 1059
f863ad0c 1060# ifndef OPENSSL_NO_SOCK
fc3cec53
RS
1061/*
1062 * Decode %xx URL-decoding in-place. Ignores mal-formed sequences.
1063 */
1064static int urldecode(char *p)
995101d6
RS
1065{
1066 unsigned char *out = (unsigned char *)p;
fc3cec53 1067 unsigned char *save = out;
995101d6
RS
1068
1069 for (; *p; p++) {
1070 if (*p != '%')
1071 *out++ = *p;
18295f0c 1072 else if (isxdigit(_UC(p[1])) && isxdigit(_UC(p[2]))) {
14f051a0
RS
1073 /* Don't check, can't fail because of ixdigit() call. */
1074 *out++ = (OPENSSL_hexchar2int(p[1]) << 4)
1075 | OPENSSL_hexchar2int(p[2]);
995101d6
RS
1076 p += 2;
1077 }
fc3cec53
RS
1078 else
1079 return -1;
995101d6 1080 }
fc3cec53
RS
1081 *out = '\0';
1082 return (int)(out - save);
995101d6 1083}
f863ad0c 1084# endif
995101d6 1085
a773b52a 1086static int do_responder(OCSP_REQUEST **preq, BIO **pcbio, BIO *acbio)
0f113f3e 1087{
f863ad0c
MC
1088# ifdef OPENSSL_NO_SOCK
1089 return 0;
1090# else
7e1b7485 1091 int len;
0f113f3e 1092 OCSP_REQUEST *req = NULL;
fc3cec53 1093 char inbuf[2048], reqbuf[2048];
995101d6
RS
1094 char *p, *q;
1095 BIO *cbio = NULL, *getbio = NULL, *b64 = NULL;
0f113f3e
MC
1096
1097 if (BIO_do_accept(acbio) <= 0) {
1098 BIO_printf(bio_err, "Error accepting connection\n");
1099 ERR_print_errors(bio_err);
1100 return 0;
1101 }
1102
1103 cbio = BIO_pop(acbio);
1104 *pcbio = cbio;
1105
7e1b7485 1106 /* Read the request line. */
cbe29648 1107 len = BIO_gets(cbio, reqbuf, sizeof(reqbuf));
7e1b7485
RS
1108 if (len <= 0)
1109 return 1;
fc3cec53 1110 if (strncmp(reqbuf, "GET ", 4) == 0) {
995101d6 1111 /* Expecting GET {sp} /URL {sp} HTTP/1.x */
fc3cec53 1112 for (p = reqbuf + 4; *p == ' '; ++p)
995101d6 1113 continue;
fc3cec53
RS
1114 if (*p != '/') {
1115 BIO_printf(bio_err, "Invalid request -- bad URL\n");
1116 return 1;
995101d6 1117 }
fc3cec53
RS
1118 p++;
1119
995101d6
RS
1120 /* Splice off the HTTP version identifier. */
1121 for (q = p; *q; q++)
fc3cec53 1122 if (*q == ' ')
995101d6 1123 break;
fc3cec53 1124 if (strncmp(q, " HTTP/1.", 8) != 0) {
46f4e1be 1125 BIO_printf(bio_err, "Invalid request -- bad HTTP version\n");
995101d6
RS
1126 return 1;
1127 }
1128 *q = '\0';
fc3cec53
RS
1129 len = urldecode(p);
1130 if (len <= 0) {
1131 BIO_printf(bio_err, "Invalid request -- bad URL encoding\n");
1132 return 1;
1133 }
1134 if ((getbio = BIO_new_mem_buf(p, len)) == NULL
1135 || (b64 = BIO_new(BIO_f_base64())) == NULL) {
1136 BIO_printf(bio_err, "Could not allocate memory\n");
1137 ERR_print_errors(bio_err);
1138 return 1;
1139 }
995101d6
RS
1140 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
1141 getbio = BIO_push(b64, getbio);
fc3cec53
RS
1142 } else if (strncmp(reqbuf, "POST ", 5) != 0) {
1143 BIO_printf(bio_err, "Invalid request -- bad HTTP verb\n");
7e1b7485
RS
1144 return 1;
1145 }
fc3cec53
RS
1146
1147 /* Read and skip past the headers. */
0f113f3e 1148 for (;;) {
cbe29648 1149 len = BIO_gets(cbio, inbuf, sizeof(inbuf));
0f113f3e
MC
1150 if (len <= 0)
1151 return 1;
0f113f3e
MC
1152 if ((inbuf[0] == '\r') || (inbuf[0] == '\n'))
1153 break;
1154 }
1155
1156 /* Try to read OCSP request */
2234212c 1157 if (getbio != NULL) {
995101d6
RS
1158 req = d2i_OCSP_REQUEST_bio(getbio, NULL);
1159 BIO_free_all(getbio);
2234212c 1160 } else {
995101d6 1161 req = d2i_OCSP_REQUEST_bio(cbio, NULL);
2234212c 1162 }
0f113f3e 1163
2234212c 1164 if (req == NULL) {
0f113f3e
MC
1165 BIO_printf(bio_err, "Error parsing OCSP request\n");
1166 ERR_print_errors(bio_err);
1167 }
1168
1169 *preq = req;
1170
1171 return 1;
f863ad0c 1172# endif
0f113f3e 1173}
ee306a13
DSH
1174
1175static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp)
0f113f3e
MC
1176{
1177 char http_resp[] =
1178 "HTTP/1.0 200 OK\r\nContent-type: application/ocsp-response\r\n"
1179 "Content-Length: %d\r\n\r\n";
2234212c 1180 if (cbio == NULL)
0f113f3e
MC
1181 return 0;
1182 BIO_printf(cbio, http_resp, i2d_OCSP_RESPONSE(resp, NULL));
1183 i2d_OCSP_RESPONSE_bio(cbio, resp);
1184 (void)BIO_flush(cbio);
1185 return 1;
1186}
ee306a13 1187
f9e55034 1188# ifndef OPENSSL_NO_SOCK
76e0cd12
DSH
1189static OCSP_RESPONSE *query_responder(BIO *cbio, const char *host,
1190 const char *path,
0f113f3e
MC
1191 const STACK_OF(CONF_VALUE) *headers,
1192 OCSP_REQUEST *req, int req_timeout)
1193{
1194 int fd;
1195 int rv;
1196 int i;
76e0cd12 1197 int add_host = 1;
0f113f3e
MC
1198 OCSP_REQ_CTX *ctx = NULL;
1199 OCSP_RESPONSE *rsp = NULL;
1200 fd_set confds;
1201 struct timeval tv;
1202
1203 if (req_timeout != -1)
1204 BIO_set_nbio(cbio, 1);
1205
1206 rv = BIO_do_connect(cbio);
1207
1208 if ((rv <= 0) && ((req_timeout == -1) || !BIO_should_retry(cbio))) {
7e1b7485 1209 BIO_puts(bio_err, "Error connecting BIO\n");
0f113f3e
MC
1210 return NULL;
1211 }
1212
4428c7db 1213 if (BIO_get_fd(cbio, &fd) < 0) {
7e1b7485 1214 BIO_puts(bio_err, "Can't get connection fd\n");
0f113f3e
MC
1215 goto err;
1216 }
1217
1218 if (req_timeout != -1 && rv <= 0) {
1219 FD_ZERO(&confds);
1220 openssl_fdset(fd, &confds);
1221 tv.tv_usec = 0;
1222 tv.tv_sec = req_timeout;
1223 rv = select(fd + 1, NULL, (void *)&confds, NULL, &tv);
1224 if (rv == 0) {
7e1b7485 1225 BIO_puts(bio_err, "Timeout on connect\n");
0f113f3e
MC
1226 return NULL;
1227 }
1228 }
1229
1230 ctx = OCSP_sendreq_new(cbio, path, NULL, -1);
96487cdd 1231 if (ctx == NULL)
0f113f3e
MC
1232 return NULL;
1233
1234 for (i = 0; i < sk_CONF_VALUE_num(headers); i++) {
1235 CONF_VALUE *hdr = sk_CONF_VALUE_value(headers, i);
76e0cd12
DSH
1236 if (add_host == 1 && strcasecmp("host", hdr->name) == 0)
1237 add_host = 0;
0f113f3e
MC
1238 if (!OCSP_REQ_CTX_add1_header(ctx, hdr->name, hdr->value))
1239 goto err;
1240 }
1241
76e0cd12
DSH
1242 if (add_host == 1 && OCSP_REQ_CTX_add1_header(ctx, "Host", host) == 0)
1243 goto err;
1244
0f113f3e
MC
1245 if (!OCSP_REQ_CTX_set1_req(ctx, req))
1246 goto err;
1247
1248 for (;;) {
1249 rv = OCSP_sendreq_nbio(&rsp, ctx);
1250 if (rv != -1)
1251 break;
1252 if (req_timeout == -1)
1253 continue;
1254 FD_ZERO(&confds);
1255 openssl_fdset(fd, &confds);
1256 tv.tv_usec = 0;
1257 tv.tv_sec = req_timeout;
2234212c 1258 if (BIO_should_read(cbio)) {
0f113f3e 1259 rv = select(fd + 1, (void *)&confds, NULL, NULL, &tv);
2234212c 1260 } else if (BIO_should_write(cbio)) {
0f113f3e 1261 rv = select(fd + 1, NULL, (void *)&confds, NULL, &tv);
2234212c 1262 } else {
7e1b7485 1263 BIO_puts(bio_err, "Unexpected retry condition\n");
0f113f3e
MC
1264 goto err;
1265 }
1266 if (rv == 0) {
7e1b7485 1267 BIO_puts(bio_err, "Timeout on request\n");
0f113f3e
MC
1268 break;
1269 }
1270 if (rv == -1) {
7e1b7485 1271 BIO_puts(bio_err, "Select error\n");
0f113f3e
MC
1272 break;
1273 }
1274
1275 }
1276 err:
895cba19 1277 OCSP_REQ_CTX_free(ctx);
0f113f3e
MC
1278
1279 return rsp;
1280}
454dbbc5 1281
7e1b7485 1282OCSP_RESPONSE *process_responder(OCSP_REQUEST *req,
0f113f3e
MC
1283 const char *host, const char *path,
1284 const char *port, int use_ssl,
82c49427 1285 STACK_OF(CONF_VALUE) *headers,
0f113f3e
MC
1286 int req_timeout)
1287{
1288 BIO *cbio = NULL;
1289 SSL_CTX *ctx = NULL;
1290 OCSP_RESPONSE *resp = NULL;
ff4a9394 1291
0f113f3e 1292 cbio = BIO_new_connect(host);
2234212c 1293 if (cbio == NULL) {
7e1b7485 1294 BIO_printf(bio_err, "Error creating connect BIO\n");
0f113f3e
MC
1295 goto end;
1296 }
2234212c 1297 if (port != NULL)
0f113f3e
MC
1298 BIO_set_conn_port(cbio, port);
1299 if (use_ssl == 1) {
1300 BIO *sbio;
13c9bb3e 1301 ctx = SSL_CTX_new(TLS_client_method());
0f113f3e 1302 if (ctx == NULL) {
7e1b7485 1303 BIO_printf(bio_err, "Error creating SSL context.\n");
0f113f3e
MC
1304 goto end;
1305 }
1306 SSL_CTX_set_mode(ctx, SSL_MODE_AUTO_RETRY);
1307 sbio = BIO_new_ssl(ctx, 1);
1308 cbio = BIO_push(sbio, cbio);
1309 }
ff4a9394 1310
76e0cd12 1311 resp = query_responder(cbio, host, path, headers, req, req_timeout);
2234212c 1312 if (resp == NULL)
0f113f3e
MC
1313 BIO_printf(bio_err, "Error querying OCSP responder\n");
1314 end:
ca3a82c3 1315 BIO_free_all(cbio);
62adbcee 1316 SSL_CTX_free(ctx);
0f113f3e
MC
1317 return resp;
1318}
f9e55034 1319# endif
67c8e7f4 1320
85d686e7 1321#endif