ocsp.c 35.1 KB
Newer Older
D
 
Dr. Stephen Henson 已提交
1
/* ocsp.c */
2
/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
D
 
Dr. Stephen Henson 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
 * project 2000.
 */
/* ====================================================================
 * Copyright (c) 1999 The OpenSSL Project.  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer. 
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *
 * 3. All advertising materials mentioning features or use of this
 *    software must display the following acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
 *
 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
 *    endorse or promote products derived from this software without
 *    prior written permission. For written permission, please contact
 *    licensing@OpenSSL.org.
 *
 * 5. Products derived from this software may not be called "OpenSSL"
 *    nor may "OpenSSL" appear in their names without prior written
 *    permission of the OpenSSL Project.
 *
 * 6. Redistributions of any form whatsoever must retain the following
 *    acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
 *
 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 * ====================================================================
 *
 * This product includes cryptographic software written by Eric Young
 * (eay@cryptsoft.com).  This product includes software written by Tim
 * Hudson (tjh@cryptsoft.com).
 *
 */
58
#ifndef OPENSSL_NO_OCSP
D
 
Dr. Stephen Henson 已提交
59

60
#ifdef OPENSSL_SYS_VMS
61 62
#define _XOPEN_SOURCE_EXTENDED	/* So fd_set and friends get properly defined
				   on OpenVMS */
63
#endif
64

65 66
#define USE_SOCKETS

D
 
Dr. Stephen Henson 已提交
67
#include <stdio.h>
D
Dr. Stephen Henson 已提交
68
#include <stdlib.h>
D
 
Dr. Stephen Henson 已提交
69
#include <string.h>
70
#include <time.h>
D
Dr. Stephen Henson 已提交
71
#include "apps.h" /* needs to be included before the openssl headers! */
D
Dr. Stephen Henson 已提交
72
#include <openssl/e_os2.h>
73 74
#include <openssl/crypto.h>
#include <openssl/err.h>
D
Dr. Stephen Henson 已提交
75
#include <openssl/ssl.h>
76
#include <openssl/evp.h>
77
#include <openssl/bn.h>
D
Dr. Stephen Henson 已提交
78
#include <openssl/x509v3.h>
D
 
Dr. Stephen Henson 已提交
79

D
Dr. Stephen Henson 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
#if defined(NETWARE_CLIB)
#  ifdef NETWARE_BSDSOCK
#    include <sys/socket.h>
#    include <sys/bsdskt.h>
#  else
#    include <novsock2.h>
#  endif
#elif defined(NETWARE_LIBC)
#  ifdef NETWARE_BSDSOCK
#    include <sys/select.h>
#  else
#    include <novsock2.h>
#  endif
#endif
  
95 96 97
/* Maximum leeway in validity period: default 5 minutes */
#define MAX_VALIDITY_PERIOD	(5 * 60)

98
static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert, const EVP_MD *cert_id_md, X509 *issuer,
99
				STACK_OF(OCSP_CERTID) *ids);
100
static int add_ocsp_serial(OCSP_REQUEST **req, char *serial, const EVP_MD * cert_id_md, X509 *issuer,
101 102
				STACK_OF(OCSP_CERTID) *ids);
static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
D
Dr. Stephen Henson 已提交
103
			      STACK_OF(OPENSSL_STRING) *names,
B
Ben Laurie 已提交
104 105
			      STACK_OF(OCSP_CERTID) *ids, long nsec,
			      long maxage);
D
 
Dr. Stephen Henson 已提交
106

107
static int make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req, CA_DB *db,
108
			X509 *ca, X509 *rcert, EVP_PKEY *rkey, const EVP_MD *md,
D
 
Dr. Stephen Henson 已提交
109
			STACK_OF(X509) *rother, unsigned long flags,
110
			int nmin, int ndays, int badsig);
D
 
Dr. Stephen Henson 已提交
111

112
static char **lookup_serial(CA_DB *db, ASN1_INTEGER *ser);
D
 
Dr. Stephen Henson 已提交
113 114
static BIO *init_responder(char *port);
static int do_responder(OCSP_REQUEST **preq, BIO **pcbio, BIO *acbio, char *port);
D
 
Dr. Stephen Henson 已提交
115
static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp);
116
static OCSP_RESPONSE *query_responder(BIO *err, BIO *cbio, char *path,
D
Dr. Stephen Henson 已提交
117
				STACK_OF(CONF_VALUE) *headers,
118
				OCSP_REQUEST *req, int req_timeout);
D
 
Dr. Stephen Henson 已提交
119

D
 
Dr. Stephen Henson 已提交
120 121 122 123 124 125 126
#undef PROG
#define PROG ocsp_main

int MAIN(int, char **);

int MAIN(int argc, char **argv)
	{
127
	ENGINE *e = NULL;
D
 
Dr. Stephen Henson 已提交
128
	char **args;
129
	char *host = NULL, *port = NULL, *path = "/";
D
 
Dr. Stephen Henson 已提交
130 131 132
	char *reqin = NULL, *respin = NULL;
	char *reqout = NULL, *respout = NULL;
	char *signfile = NULL, *keyfile = NULL;
D
 
Dr. Stephen Henson 已提交
133
	char *rsignfile = NULL, *rkeyfile = NULL;
D
 
Dr. Stephen Henson 已提交
134
	char *outfile = NULL;
135
	int add_nonce = 1, noverify = 0, use_ssl = -1;
D
Dr. Stephen Henson 已提交
136
	STACK_OF(CONF_VALUE) *headers = NULL;
D
 
Dr. Stephen Henson 已提交
137 138
	OCSP_REQUEST *req = NULL;
	OCSP_RESPONSE *resp = NULL;
D
 
Dr. Stephen Henson 已提交
139
	OCSP_BASICRESP *bs = NULL;
D
 
Dr. Stephen Henson 已提交
140
	X509 *issuer = NULL, *cert = NULL;
D
 
Dr. Stephen Henson 已提交
141 142
	X509 *signer = NULL, *rsigner = NULL;
	EVP_PKEY *key = NULL, *rkey = NULL;
D
 
Dr. Stephen Henson 已提交
143 144
	BIO *acbio = NULL, *cbio = NULL;
	BIO *derbio = NULL;
D
 
Dr. Stephen Henson 已提交
145
	BIO *out = NULL;
146
	int req_timeout = -1;
D
 
Dr. Stephen Henson 已提交
147
	int req_text = 0, resp_text = 0;
148
	long nsec = MAX_VALIDITY_PERIOD, maxage = -1;
D
 
Dr. Stephen Henson 已提交
149 150
	char *CAfile = NULL, *CApath = NULL;
	X509_STORE *store = NULL;
151
	X509_VERIFY_PARAM *vpm = NULL;
D
 
Dr. Stephen Henson 已提交
152 153 154
	STACK_OF(X509) *sign_other = NULL, *verify_other = NULL, *rother = NULL;
	char *sign_certfile = NULL, *verify_certfile = NULL, *rcertfile = NULL;
	unsigned long sign_flags = 0, verify_flags = 0, rflags = 0;
D
 
Dr. Stephen Henson 已提交
155
	int ret = 1;
D
 
Dr. Stephen Henson 已提交
156
	int accept_count = -1;
D
 
Dr. Stephen Henson 已提交
157
	int badarg = 0;
158
	int badsig = 0;
D
 
Dr. Stephen Henson 已提交
159
	int i;
160
	int ignore_err = 0;
D
Dr. Stephen Henson 已提交
161
	STACK_OF(OPENSSL_STRING) *reqnames = NULL;
162
	STACK_OF(OCSP_CERTID) *ids = NULL;
D
 
Dr. Stephen Henson 已提交
163 164 165 166

	X509 *rca_cert = NULL;
	char *ridx_filename = NULL;
	char *rca_filename = NULL;
167
	CA_DB *rdb = NULL;
D
 
Dr. Stephen Henson 已提交
168
	int nmin = 0, ndays = -1;
169
	const EVP_MD *cert_id_md = NULL, *rsign_md = NULL;
D
 
Dr. Stephen Henson 已提交
170

D
 
Dr. Stephen Henson 已提交
171
	if (bio_err == NULL) bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
D
Dr. Stephen Henson 已提交
172 173 174

	if (!load_config(bio_err, NULL))
		goto end;
D
Dr. Stephen Henson 已提交
175
	SSL_load_error_strings();
176
	OpenSSL_add_ssl_algorithms();
D
 
Dr. Stephen Henson 已提交
177
	args = argv + 1;
D
Dr. Stephen Henson 已提交
178
	reqnames = sk_OPENSSL_STRING_new_null();
179
	ids = sk_OCSP_CERTID_new_null();
D
 
Dr. Stephen Henson 已提交
180 181 182 183 184 185 186 187 188 189 190
	while (!badarg && *args && *args[0] == '-')
		{
		if (!strcmp(*args, "-out"))
			{
			if (args[1])
				{
				args++;
				outfile = *args;
				}
			else badarg = 1;
			}
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
		else if (!strcmp(*args, "-timeout"))
			{
			if (args[1])
				{
				args++;
				req_timeout = atol(*args);
				if (req_timeout < 0)
					{
					BIO_printf(bio_err,
						"Illegal timeout value %s\n",
						*args);
					badarg = 1;
					}
				}
			else badarg = 1;
			}
207 208 209 210 211 212 213 214 215 216 217 218 219
		else if (!strcmp(*args, "-url"))
			{
			if (args[1])
				{
				args++;
				if (!OCSP_parse_url(*args, &host, &port, &path, &use_ssl))
					{
					BIO_printf(bio_err, "Error parsing URL\n");
					badarg = 1;
					}
				}
			else badarg = 1;
			}
D
 
Dr. Stephen Henson 已提交
220 221 222 223 224 225 226 227 228
		else if (!strcmp(*args, "-host"))
			{
			if (args[1])
				{
				args++;
				host = *args;
				}
			else badarg = 1;
			}
D
 
Dr. Stephen Henson 已提交
229 230 231 232 233 234 235 236 237
		else if (!strcmp(*args, "-port"))
			{
			if (args[1])
				{
				args++;
				port = *args;
				}
			else badarg = 1;
			}
D
Dr. Stephen Henson 已提交
238 239 240 241 242 243 244 245 246 247
		else if (!strcmp(*args, "-header"))
			{
			if (args[1] && args[2])
				{
				if (!X509V3_add_value(args[1], args[2], &headers))
					goto end;
				args += 2;
				}
			else badarg = 1;
			}
248 249
		else if (!strcmp(*args, "-ignore_err"))
			ignore_err = 1;
250 251
		else if (!strcmp(*args, "-noverify"))
			noverify = 1;
D
 
Dr. Stephen Henson 已提交
252 253 254 255
		else if (!strcmp(*args, "-nonce"))
			add_nonce = 2;
		else if (!strcmp(*args, "-no_nonce"))
			add_nonce = 0;
D
 
Dr. Stephen Henson 已提交
256
		else if (!strcmp(*args, "-resp_no_certs"))
D
 
Dr. Stephen Henson 已提交
257
			rflags |= OCSP_NOCERTS;
D
 
Dr. Stephen Henson 已提交
258
		else if (!strcmp(*args, "-resp_key_id"))
D
 
Dr. Stephen Henson 已提交
259
			rflags |= OCSP_RESPID_KEY;
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
		else if (!strcmp(*args, "-no_certs"))
			sign_flags |= OCSP_NOCERTS;
		else if (!strcmp(*args, "-no_signature_verify"))
			verify_flags |= OCSP_NOSIGS;
		else if (!strcmp(*args, "-no_cert_verify"))
			verify_flags |= OCSP_NOVERIFY;
		else if (!strcmp(*args, "-no_chain"))
			verify_flags |= OCSP_NOCHAIN;
		else if (!strcmp(*args, "-no_cert_checks"))
			verify_flags |= OCSP_NOCHECKS;
		else if (!strcmp(*args, "-no_explicit"))
			verify_flags |= OCSP_NOEXPLICIT;
		else if (!strcmp(*args, "-trust_other"))
			verify_flags |= OCSP_TRUSTOTHER;
		else if (!strcmp(*args, "-no_intern"))
			verify_flags |= OCSP_NOINTERN;
276 277
		else if (!strcmp(*args, "-badsig"))
			badsig = 1;
D
 
Dr. Stephen Henson 已提交
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
		else if (!strcmp(*args, "-text"))
			{
			req_text = 1;
			resp_text = 1;
			}
		else if (!strcmp(*args, "-req_text"))
			req_text = 1;
		else if (!strcmp(*args, "-resp_text"))
			resp_text = 1;
		else if (!strcmp(*args, "-reqin"))
			{
			if (args[1])
				{
				args++;
				reqin = *args;
				}
			else badarg = 1;
			}
		else if (!strcmp(*args, "-respin"))
			{
			if (args[1])
				{
				args++;
				respin = *args;
				}
			else badarg = 1;
			}
		else if (!strcmp(*args, "-signer"))
			{
			if (args[1])
				{
				args++;
				signfile = *args;
				}
			else badarg = 1;
			}
314 315 316 317 318
		else if (!strcmp (*args, "-VAfile"))
			{
			if (args[1])
				{
				args++;
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
				verify_certfile = *args;
				verify_flags |= OCSP_TRUSTOTHER;
				}
			else badarg = 1;
			}
		else if (!strcmp(*args, "-sign_other"))
			{
			if (args[1])
				{
				args++;
				sign_certfile = *args;
				}
			else badarg = 1;
			}
		else if (!strcmp(*args, "-verify_other"))
			{
			if (args[1])
				{
				args++;
				verify_certfile = *args;
339 340 341
				}
			else badarg = 1;
			}
D
 
Dr. Stephen Henson 已提交
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
		else if (!strcmp (*args, "-CAfile"))
			{
			if (args[1])
				{
				args++;
				CAfile = *args;
				}
			else badarg = 1;
			}
		else if (!strcmp (*args, "-CApath"))
			{
			if (args[1])
				{
				args++;
				CApath = *args;
				}
			else badarg = 1;
			}
360 361 362 363 364 365
		else if (args_verify(&args, NULL, &badarg, bio_err, &vpm))
			{
			if (badarg)
				goto end;
			continue;
			}
366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
		else if (!strcmp (*args, "-validity_period"))
			{
			if (args[1])
				{
				args++;
				nsec = atol(*args);
				if (nsec < 0)
					{
					BIO_printf(bio_err,
						"Illegal validity period %s\n",
						*args);
					badarg = 1;
					}
				}
			else badarg = 1;
			}
		else if (!strcmp (*args, "-status_age"))
			{
			if (args[1])
				{
				args++;
				maxage = atol(*args);
				if (maxage < 0)
					{
					BIO_printf(bio_err,
						"Illegal validity age %s\n",
						*args);
					badarg = 1;
					}
				}
			else badarg = 1;
			}
D
 
Dr. Stephen Henson 已提交
398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
		 else if (!strcmp(*args, "-signkey"))
			{
			if (args[1])
				{
				args++;
				keyfile = *args;
				}
			else badarg = 1;
			}
		else if (!strcmp(*args, "-reqout"))
			{
			if (args[1])
				{
				args++;
				reqout = *args;
				}
			else badarg = 1;
			}
		else if (!strcmp(*args, "-respout"))
			{
			if (args[1])
				{
				args++;
				respout = *args;
				}
			else badarg = 1;
			}
		 else if (!strcmp(*args, "-path"))
			{
			if (args[1])
				{
				args++;
				path = *args;
				}
			else badarg = 1;
			}
		else if (!strcmp(*args, "-issuer"))
			{
			if (args[1])
				{
				args++;
				X509_free(issuer);
440 441
				issuer = load_cert(bio_err, *args, FORMAT_PEM,
					NULL, e, "issuer certificate");
D
 
Dr. Stephen Henson 已提交
442 443 444 445 446 447 448 449 450 451
				if(!issuer) goto end;
				}
			else badarg = 1;
			}
		else if (!strcmp (*args, "-cert"))
			{
			if (args[1])
				{
				args++;
				X509_free(cert);
452 453
				cert = load_cert(bio_err, *args, FORMAT_PEM,
					NULL, e, "certificate");
D
 
Dr. Stephen Henson 已提交
454
				if(!cert) goto end;
455 456
				if (!cert_id_md) cert_id_md = EVP_sha1();
				if(!add_ocsp_cert(&req, cert, cert_id_md, issuer, ids))
457
					goto end;
D
Dr. Stephen Henson 已提交
458
				if(!sk_OPENSSL_STRING_push(reqnames, *args))
D
 
Dr. Stephen Henson 已提交
459 460 461 462 463 464 465 466 467
					goto end;
				}
			else badarg = 1;
			}
		else if (!strcmp(*args, "-serial"))
			{
			if (args[1])
				{
				args++;
468 469
				if (!cert_id_md) cert_id_md = EVP_sha1();
				if(!add_ocsp_serial(&req, *args, cert_id_md, issuer, ids))
470
					goto end;
D
Dr. Stephen Henson 已提交
471
				if(!sk_OPENSSL_STRING_push(reqnames, *args))
D
 
Dr. Stephen Henson 已提交
472 473 474 475
					goto end;
				}
			else badarg = 1;
			}
D
 
Dr. Stephen Henson 已提交
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
		else if (!strcmp(*args, "-index"))
			{
			if (args[1])
				{
				args++;
				ridx_filename = *args;
				}
			else badarg = 1;
			}
		else if (!strcmp(*args, "-CA"))
			{
			if (args[1])
				{
				args++;
				rca_filename = *args;
				}
			else badarg = 1;
			}
		else if (!strcmp (*args, "-nmin"))
			{
			if (args[1])
				{
				args++;
				nmin = atol(*args);
				if (nmin < 0)
					{
					BIO_printf(bio_err,
						"Illegal update period %s\n",
						*args);
					badarg = 1;
					}
				}
				if (ndays == -1)
					ndays = 0;
			else badarg = 1;
			}
D
 
Dr. Stephen Henson 已提交
512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527
		else if (!strcmp (*args, "-nrequest"))
			{
			if (args[1])
				{
				args++;
				accept_count = atol(*args);
				if (accept_count < 0)
					{
					BIO_printf(bio_err,
						"Illegal accept count %s\n",
						*args);
					badarg = 1;
					}
				}
			else badarg = 1;
			}
D
 
Dr. Stephen Henson 已提交
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570
		else if (!strcmp (*args, "-ndays"))
			{
			if (args[1])
				{
				args++;
				ndays = atol(*args);
				if (ndays < 0)
					{
					BIO_printf(bio_err,
						"Illegal update period %s\n",
						*args);
					badarg = 1;
					}
				}
			else badarg = 1;
			}
		else if (!strcmp(*args, "-rsigner"))
			{
			if (args[1])
				{
				args++;
				rsignfile = *args;
				}
			else badarg = 1;
			}
		else if (!strcmp(*args, "-rkey"))
			{
			if (args[1])
				{
				args++;
				rkeyfile = *args;
				}
			else badarg = 1;
			}
		else if (!strcmp(*args, "-rother"))
			{
			if (args[1])
				{
				args++;
				rcertfile = *args;
				}
			else badarg = 1;
			}
571 572 573 574 575 576 577 578 579 580 581
		else if (!strcmp(*args, "-rmd"))
			{
			if (args[1])
				{
				args++;
				rsign_md = EVP_get_digestbyname(*args);
				if (!rsign_md)
					badarg = 1;
				}
			else badarg = 1;
			}
582 583 584 585
		else if ((cert_id_md = EVP_get_digestbyname((*args)+1))==NULL)
			{
			badarg = 1;
			}
D
 
Dr. Stephen Henson 已提交
586 587 588 589
		args++;
		}

	/* Have we anything to do? */
D
 
Dr. Stephen Henson 已提交
590
	if (!req && !reqin && !respin && !(port && ridx_filename)) badarg = 1;
D
 
Dr. Stephen Henson 已提交
591 592 593 594 595 596

	if (badarg)
		{
		BIO_printf (bio_err, "OCSP utility\n");
		BIO_printf (bio_err, "Usage ocsp [options]\n");
		BIO_printf (bio_err, "where options are\n");
597 598 599 600 601 602
		BIO_printf (bio_err, "-out file          output filename\n");
		BIO_printf (bio_err, "-issuer file       issuer certificate\n");
		BIO_printf (bio_err, "-cert file         certificate to check\n");
		BIO_printf (bio_err, "-serial n          serial number to check\n");
		BIO_printf (bio_err, "-signer file       certificate to sign OCSP request with\n");
		BIO_printf (bio_err, "-signkey file      private key to sign OCSP request with\n");
603
		BIO_printf (bio_err, "-sign_other file   additional certificates to include in signed request\n");
604
		BIO_printf (bio_err, "-no_certs          don't include any certificates in signed request\n");
605 606 607 608 609 610 611 612 613
		BIO_printf (bio_err, "-req_text          print text form of request\n");
		BIO_printf (bio_err, "-resp_text         print text form of response\n");
		BIO_printf (bio_err, "-text              print text form of request and response\n");
		BIO_printf (bio_err, "-reqout file       write DER encoded OCSP request to \"file\"\n");
		BIO_printf (bio_err, "-respout file      write DER encoded OCSP reponse to \"file\"\n");
		BIO_printf (bio_err, "-reqin file        read DER encoded OCSP request from \"file\"\n");
		BIO_printf (bio_err, "-respin file       read DER encoded OCSP reponse from \"file\"\n");
		BIO_printf (bio_err, "-nonce             add OCSP nonce to request\n");
		BIO_printf (bio_err, "-no_nonce          don't add OCSP nonce to request\n");
614
		BIO_printf (bio_err, "-url URL           OCSP responder URL\n");
615 616 617 618 619
		BIO_printf (bio_err, "-host host:n       send OCSP request to host on port n\n");
		BIO_printf (bio_err, "-path              path to use in OCSP request\n");
		BIO_printf (bio_err, "-CApath dir        trusted certificates directory\n");
		BIO_printf (bio_err, "-CAfile file       trusted certificates file\n");
		BIO_printf (bio_err, "-VAfile file       validator certificates file\n");
620 621
		BIO_printf (bio_err, "-validity_period n maximum validity discrepancy in seconds\n");
		BIO_printf (bio_err, "-status_age n      maximum status age in seconds\n");
622
		BIO_printf (bio_err, "-noverify          don't verify response at all\n");
623
		BIO_printf (bio_err, "-verify_other file additional certificates to search for signer\n");
624 625
		BIO_printf (bio_err, "-trust_other       don't verify additional certificates\n");
		BIO_printf (bio_err, "-no_intern         don't search certificates contained in response for signer\n");
626
		BIO_printf (bio_err, "-no_signature_verify don't check signature on response\n");
627 628 629
		BIO_printf (bio_err, "-no_cert_verify    don't check signing certificate\n");
		BIO_printf (bio_err, "-no_chain          don't chain verify response\n");
		BIO_printf (bio_err, "-no_cert_checks    don't do additional checks on signing certificate\n");
630
		BIO_printf (bio_err, "-port num		 port to run responder on\n");
D
 
Dr. Stephen Henson 已提交
631 632
		BIO_printf (bio_err, "-index file	 certificate status index file\n");
		BIO_printf (bio_err, "-CA file		 CA certificate\n");
D
 
Dr. Stephen Henson 已提交
633 634
		BIO_printf (bio_err, "-rsigner file	 responder certificate to sign responses with\n");
		BIO_printf (bio_err, "-rkey file	 responder key to sign responses with\n");
D
 
Dr. Stephen Henson 已提交
635 636 637 638 639 640
		BIO_printf (bio_err, "-rother file	 other certificates to include in response\n");
		BIO_printf (bio_err, "-resp_no_certs     don't include any certificates in response\n");
		BIO_printf (bio_err, "-nmin n	 	 number of minutes before next update\n");
		BIO_printf (bio_err, "-ndays n	 	 number of days before next update\n");
		BIO_printf (bio_err, "-resp_key_id       identify reponse by signing certificate key ID\n");
		BIO_printf (bio_err, "-nrequest n        number of requests to accept (default unlimited)\n");
D
Dr. Stephen Henson 已提交
641
		BIO_printf (bio_err, "-<dgst alg>     use specified digest in the request\n");
D
 
Dr. Stephen Henson 已提交
642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657
		goto end;
		}

	if(outfile) out = BIO_new_file(outfile, "w");
	else out = BIO_new_fp(stdout, BIO_NOCLOSE);

	if(!out)
		{
		BIO_printf(bio_err, "Error opening output file\n");
		goto end;
		}

	if (!req && (add_nonce != 2)) add_nonce = 0;

	if (!req && reqin)
		{
658 659 660 661
		if (!strcmp(reqin, "-"))
			derbio = BIO_new_fp(stdin, BIO_NOCLOSE);
		else
			derbio = BIO_new_file(reqin, "rb");
D
 
Dr. Stephen Henson 已提交
662 663 664 665 666 667 668 669 670 671 672 673 674 675
		if (!derbio)
			{
			BIO_printf(bio_err, "Error Opening OCSP request file\n");
			goto end;
			}
		req = d2i_OCSP_REQUEST_bio(derbio, NULL);
		BIO_free(derbio);
		if(!req)
			{
			BIO_printf(bio_err, "Error reading OCSP request\n");
			goto end;
			}
		}

D
 
Dr. Stephen Henson 已提交
676 677
	if (!req && port)
		{
D
 
Dr. Stephen Henson 已提交
678 679
		acbio = init_responder(port);
		if (!acbio)
D
 
Dr. Stephen Henson 已提交
680
			goto end;
D
 
Dr. Stephen Henson 已提交
681 682
		}

683 684 685 686 687 688 689 690 691 692 693 694 695 696
	if (rsignfile && !rdb)
		{
		if (!rkeyfile) rkeyfile = rsignfile;
		rsigner = load_cert(bio_err, rsignfile, FORMAT_PEM,
			NULL, e, "responder certificate");
		if (!rsigner)
			{
			BIO_printf(bio_err, "Error loading responder certificate\n");
			goto end;
			}
		rca_cert = load_cert(bio_err, rca_filename, FORMAT_PEM,
			NULL, e, "CA certificate");
		if (rcertfile)
			{
697
			rother = load_certs(bio_err, rcertfile, FORMAT_PEM,
698
				NULL, e, "responder other certificates");
699
			if (!rother) goto end;
700
			}
701
		rkey = load_key(bio_err, rkeyfile, FORMAT_PEM, 0, NULL, NULL,
702 703 704 705 706 707 708
			"responder private key");
		if (!rkey)
			goto end;
		}
	if(acbio)
		BIO_printf(bio_err, "Waiting for OCSP client connections...\n");

D
 
Dr. Stephen Henson 已提交
709 710 711 712 713 714 715
	redo_accept:

	if (acbio)
		{
		if (!do_responder(&req, &cbio, acbio, port))
			goto end;
		if (!req)
D
 
Dr. Stephen Henson 已提交
716 717 718 719 720 721 722 723
			{
			resp = OCSP_response_create(OCSP_RESPONSE_STATUS_MALFORMEDREQUEST, NULL);
			send_ocsp_response(cbio, resp);
			goto done_resp;
			}
		}

	if (!req && (signfile || reqout || host || add_nonce || ridx_filename))
D
 
Dr. Stephen Henson 已提交
724 725 726 727 728
		{
		BIO_printf(bio_err, "Need an OCSP request for this operation!\n");
		goto end;
		}

729
	if (req && add_nonce) OCSP_request_add1_nonce(req, NULL, -1);
D
 
Dr. Stephen Henson 已提交
730 731 732 733

	if (signfile)
		{
		if (!keyfile) keyfile = signfile;
734 735
		signer = load_cert(bio_err, signfile, FORMAT_PEM,
			NULL, e, "signer certificate");
D
 
Dr. Stephen Henson 已提交
736 737 738 739 740
		if (!signer)
			{
			BIO_printf(bio_err, "Error loading signer certificate\n");
			goto end;
			}
741 742
		if (sign_certfile)
			{
743 744
			sign_other = load_certs(bio_err, sign_certfile, FORMAT_PEM,
				NULL, e, "signer certificates");
745 746
			if (!sign_other) goto end;
			}
747
		key = load_key(bio_err, keyfile, FORMAT_PEM, 0, NULL, NULL,
748
			"signer private key");
D
 
Dr. Stephen Henson 已提交
749 750
		if (!key)
			goto end;
751 752

		if (!OCSP_request_sign(req, signer, key, NULL, sign_other, sign_flags))
D
 
Dr. Stephen Henson 已提交
753 754 755 756 757 758
			{
			BIO_printf(bio_err, "Error signing OCSP request\n");
			goto end;
			}
		}

D
 
Dr. Stephen Henson 已提交
759 760
	if (req_text && req) OCSP_REQUEST_print(out, req, 0);

D
 
Dr. Stephen Henson 已提交
761 762
	if (reqout)
		{
D
typo  
Dr. Stephen Henson 已提交
763
		if (!strcmp(reqout, "-"))
764 765 766
			derbio = BIO_new_fp(stdout, BIO_NOCLOSE);
		else
			derbio = BIO_new_file(reqout, "wb");
D
 
Dr. Stephen Henson 已提交
767 768 769 770 771 772 773 774 775
		if(!derbio)
			{
			BIO_printf(bio_err, "Error opening file %s\n", reqout);
			goto end;
			}
		i2d_OCSP_REQUEST_bio(derbio, req);
		BIO_free(derbio);
		}

D
 
Dr. Stephen Henson 已提交
776 777 778 779 780
	if (ridx_filename && (!rkey || !rsigner || !rca_cert))
		{
		BIO_printf(bio_err, "Need a responder certificate, key and CA for this operation!\n");
		goto end;
		}
D
 
Dr. Stephen Henson 已提交
781

D
 
Dr. Stephen Henson 已提交
782
	if (ridx_filename && !rdb)
D
 
Dr. Stephen Henson 已提交
783
		{
784 785 786
		rdb = load_index(ridx_filename, NULL);
		if (!rdb) goto end;
		if (!index_index(rdb)) goto end;
D
 
Dr. Stephen Henson 已提交
787 788 789 790
		}

	if (rdb)
		{
791
		i = make_ocsp_response(&resp, req, rdb, rca_cert, rsigner, rkey,rsign_md, rother, rflags, nmin, ndays, badsig);
D
 
Dr. Stephen Henson 已提交
792 793 794 795
		if (cbio)
			send_ocsp_response(cbio, resp);
		}
	else if (host)
D
 
Dr. Stephen Henson 已提交
796
		{
797
#ifndef OPENSSL_NO_SOCK
798
		resp = process_responder(bio_err, req, host, path,
D
Dr. Stephen Henson 已提交
799
					port, use_ssl, headers, req_timeout);
800 801
		if (!resp)
			goto end;
802 803 804 805
#else
		BIO_printf(bio_err, "Error creating connect BIO - sockets not supported.\n");
		goto end;
#endif
D
 
Dr. Stephen Henson 已提交
806 807 808
		}
	else if (respin)
		{
809 810 811 812
		if (!strcmp(respin, "-"))
			derbio = BIO_new_fp(stdin, BIO_NOCLOSE);
		else
			derbio = BIO_new_file(respin, "rb");
D
 
Dr. Stephen Henson 已提交
813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832
		if (!derbio)
			{
			BIO_printf(bio_err, "Error Opening OCSP response file\n");
			goto end;
			}
		resp = d2i_OCSP_RESPONSE_bio(derbio, NULL);
		BIO_free(derbio);
		if(!resp)
			{
			BIO_printf(bio_err, "Error reading OCSP response\n");
			goto end;
			}
	
		}
	else
		{
		ret = 0;
		goto end;
		}

D
 
Dr. Stephen Henson 已提交
833 834
	done_resp:

D
 
Dr. Stephen Henson 已提交
835 836
	if (respout)
		{
837 838 839 840
		if (!strcmp(respout, "-"))
			derbio = BIO_new_fp(stdout, BIO_NOCLOSE);
		else
			derbio = BIO_new_file(respout, "wb");
D
 
Dr. Stephen Henson 已提交
841 842 843 844 845 846 847 848 849
		if(!derbio)
			{
			BIO_printf(bio_err, "Error opening file %s\n", respout);
			goto end;
			}
		i2d_OCSP_RESPONSE_bio(derbio, resp);
		BIO_free(derbio);
		}

850 851 852 853
	i = OCSP_response_status(resp);

	if (i != OCSP_RESPONSE_STATUS_SUCCESSFUL)
		{
854
		BIO_printf(out, "Responder Error: %s (%d)\n",
855
				OCSP_response_status_str(i), i);
856 857
		if (ignore_err)
			goto redo_accept;
858 859 860 861
		ret = 0;
		goto end;
		}

D
 
Dr. Stephen Henson 已提交
862 863
	if (resp_text) OCSP_RESPONSE_print(out, resp, 0);

D
 
Dr. Stephen Henson 已提交
864 865
	/* If running as responder don't verify our own response */
	if (cbio)
D
 
Dr. Stephen Henson 已提交
866 867 868 869 870 871 872 873 874 875 876 877 878 879
		{
		if (accept_count > 0)
			accept_count--;
		/* Redo if more connections needed */
		if (accept_count)
			{
			BIO_free_all(cbio);
			cbio = NULL;
			OCSP_REQUEST_free(req);
			req = NULL;
			OCSP_RESPONSE_free(resp);
			resp = NULL;
			goto redo_accept;
			}
880 881 882 883 884 885
		ret = 0;
		goto end;
		}
	else if (ridx_filename)
		{
		ret = 0;
D
 
Dr. Stephen Henson 已提交
886
		goto end;
D
 
Dr. Stephen Henson 已提交
887
		}
D
 
Dr. Stephen Henson 已提交
888

D
 
Dr. Stephen Henson 已提交
889 890
	if (!store)
		store = setup_verify(bio_err, CAfile, CApath);
D
 
Dr. Stephen Henson 已提交
891 892
	if (!store)
		goto end;
893 894
	if (vpm)
		X509_STORE_set1_param(store, vpm);
895 896
	if (verify_certfile)
		{
897 898
		verify_other = load_certs(bio_err, verify_certfile, FORMAT_PEM,
			NULL, e, "validator certificate");
899 900
		if (!verify_other) goto end;
		}
901

D
 
Dr. Stephen Henson 已提交
902 903
	bs = OCSP_response_get1_basic(resp);

904 905 906 907 908
	if (!bs)
		{
		BIO_printf(bio_err, "Error parsing response\n");
		goto end;
		}
D
 
Dr. Stephen Henson 已提交
909

B
Ben Laurie 已提交
910 911
	ret = 0;

912
	if (!noverify)
D
 
Dr. Stephen Henson 已提交
913
		{
914
		if (req && ((i = OCSP_check_nonce(req, bs)) <= 0))
915
			{
916 917 918 919 920
			if (i == -1)
				BIO_printf(bio_err, "WARNING: no nonce in response\n");
			else
				{
				BIO_printf(bio_err, "Nonce Verify error\n");
B
Ben Laurie 已提交
921
				ret = 1;
922 923
				goto end;
				}
924 925
			}

926
		i = OCSP_basic_verify(bs, verify_other, store, verify_flags);
927 928
		if(i <= 0)
			{
929
			BIO_printf(bio_err, "Response Verify Failure\n");
930
			ERR_print_errors(bio_err);
B
Ben Laurie 已提交
931
			ret = 1;
932 933 934 935
			}
		else
			BIO_printf(bio_err, "Response verify OK\n");

D
 
Dr. Stephen Henson 已提交
936
		}
937

938
	if (!print_ocsp_summary(out, bs, req, reqnames, ids, nsec, maxage))
B
Ben Laurie 已提交
939
		ret = 1;
D
 
Dr. Stephen Henson 已提交
940 941 942 943

end:
	ERR_print_errors(bio_err);
	X509_free(signer);
D
 
Dr. Stephen Henson 已提交
944
	X509_STORE_free(store);
945 946
	if (vpm)
		X509_VERIFY_PARAM_free(vpm);
D
 
Dr. Stephen Henson 已提交
947
	EVP_PKEY_free(key);
D
 
Dr. Stephen Henson 已提交
948
	EVP_PKEY_free(rkey);
D
 
Dr. Stephen Henson 已提交
949 950
	X509_free(issuer);
	X509_free(cert);
D
 
Dr. Stephen Henson 已提交
951 952
	X509_free(rsigner);
	X509_free(rca_cert);
953
	free_index(rdb);
D
Dr. Stephen Henson 已提交
954
	BIO_free_all(cbio);
D
 
Dr. Stephen Henson 已提交
955
	BIO_free_all(acbio);
D
 
Dr. Stephen Henson 已提交
956 957 958
	BIO_free(out);
	OCSP_REQUEST_free(req);
	OCSP_RESPONSE_free(resp);
D
 
Dr. Stephen Henson 已提交
959
	OCSP_BASICRESP_free(bs);
D
Dr. Stephen Henson 已提交
960
	sk_OPENSSL_STRING_free(reqnames);
961
	sk_OCSP_CERTID_free(ids);
962 963
	sk_X509_pop_free(sign_other, X509_free);
	sk_X509_pop_free(verify_other, X509_free);
D
Dr. Stephen Henson 已提交
964
	sk_CONF_VALUE_pop_free(headers, X509V3_conf_free);
D
 
Dr. Stephen Henson 已提交
965

966 967 968 969 970 971 972
	if (use_ssl != -1)
		{
		OPENSSL_free(host);
		OPENSSL_free(port);
		OPENSSL_free(path);
		}

973
	OPENSSL_EXIT(ret);
D
 
Dr. Stephen Henson 已提交
974 975
}

976
static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert, const EVP_MD *cert_id_md,X509 *issuer,
977
				STACK_OF(OCSP_CERTID) *ids)
D
 
Dr. Stephen Henson 已提交
978 979 980 981 982 983 984 985 986
	{
	OCSP_CERTID *id;
	if(!issuer)
		{
		BIO_printf(bio_err, "No issuer certificate specified\n");
		return 0;
		}
	if(!*req) *req = OCSP_REQUEST_new();
	if(!*req) goto err;
987
	id = OCSP_cert_to_id(cert_id_md, cert, issuer);
988
	if(!id || !sk_OCSP_CERTID_push(ids, id)) goto err;
D
 
Dr. Stephen Henson 已提交
989 990 991 992 993 994 995 996
	if(!OCSP_request_add0_id(*req, id)) goto err;
	return 1;

	err:
	BIO_printf(bio_err, "Error Creating OCSP request\n");
	return 0;
	}

997
static int add_ocsp_serial(OCSP_REQUEST **req, char *serial,const EVP_MD *cert_id_md, X509 *issuer,
998
				STACK_OF(OCSP_CERTID) *ids)
D
 
Dr. Stephen Henson 已提交
999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011
	{
	OCSP_CERTID *id;
	X509_NAME *iname;
	ASN1_BIT_STRING *ikey;
	ASN1_INTEGER *sno;
	if(!issuer)
		{
		BIO_printf(bio_err, "No issuer certificate specified\n");
		return 0;
		}
	if(!*req) *req = OCSP_REQUEST_new();
	if(!*req) goto err;
	iname = X509_get_subject_name(issuer);
1012
	ikey = X509_get0_pubkey_bitstr(issuer);
D
 
Dr. Stephen Henson 已提交
1013 1014 1015 1016 1017 1018
	sno = s2i_ASN1_INTEGER(NULL, serial);
	if(!sno)
		{
		BIO_printf(bio_err, "Error converting serial number %s\n", serial);
		return 0;
		}
1019
	id = OCSP_cert_id_new(cert_id_md, iname, ikey, sno);
D
 
Dr. Stephen Henson 已提交
1020
	ASN1_INTEGER_free(sno);
1021
	if(!id || !sk_OCSP_CERTID_push(ids, id)) goto err;
D
 
Dr. Stephen Henson 已提交
1022 1023 1024 1025 1026 1027 1028
	if(!OCSP_request_add0_id(*req, id)) goto err;
	return 1;

	err:
	BIO_printf(bio_err, "Error Creating OCSP request\n");
	return 0;
	}
1029 1030

static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
D
Dr. Stephen Henson 已提交
1031
			      STACK_OF(OPENSSL_STRING) *names,
B
Ben Laurie 已提交
1032 1033
			      STACK_OF(OCSP_CERTID) *ids, long nsec,
			      long maxage)
1034 1035 1036 1037 1038 1039 1040 1041 1042
	{
	OCSP_CERTID *id;
	char *name;
	int i;

	int status, reason;

	ASN1_GENERALIZEDTIME *rev, *thisupd, *nextupd;

D
Dr. Stephen Henson 已提交
1043
	if (!bs || !req || !sk_OPENSSL_STRING_num(names) || !sk_OCSP_CERTID_num(ids))
1044 1045 1046 1047 1048
		return 1;

	for (i = 0; i < sk_OCSP_CERTID_num(ids); i++)
		{
		id = sk_OCSP_CERTID_value(ids, i);
D
Dr. Stephen Henson 已提交
1049
		name = sk_OPENSSL_STRING_value(names, i);
1050 1051 1052 1053 1054 1055 1056 1057
		BIO_printf(out, "%s: ", name);

		if(!OCSP_resp_find_status(bs, id, &status, &reason,
					&rev, &thisupd, &nextupd))
			{
			BIO_puts(out, "ERROR: No Status found.\n");
			continue;
			}
1058 1059 1060 1061 1062 1063 1064 1065 1066

		/* Check validity: if invalid write to output BIO so we
		 * know which response this refers to.
		 */
		if (!OCSP_check_validity(thisupd, nextupd, nsec, maxage))
			{
			BIO_puts(out, "WARNING: Status times invalid.\n");
			ERR_print_errors(out);
			}
1067 1068 1069 1070 1071 1072 1073 1074 1075
		BIO_printf(out, "%s\n", OCSP_cert_status_str(status));

		BIO_puts(out, "\tThis Update: ");
		ASN1_GENERALIZEDTIME_print(out, thisupd);
		BIO_puts(out, "\n");

		if(nextupd)
			{
			BIO_puts(out, "\tNext Update: ");
D
Dr. Stephen Henson 已提交
1076
			ASN1_GENERALIZEDTIME_print(out, nextupd);
1077 1078 1079 1080 1081 1082
			BIO_puts(out, "\n");
			}

		if (status != V_OCSP_CERTSTATUS_REVOKED)
			continue;

1083
		if (reason != -1)
1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094
			BIO_printf(out, "\tReason: %s\n",
				OCSP_crl_reason_str(reason));

		BIO_puts(out, "\tRevocation Time: ");
		ASN1_GENERALIZEDTIME_print(out, rev);
		BIO_puts(out, "\n");
		}

	return 1;
	}

D
 
Dr. Stephen Henson 已提交
1095

1096
static int make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req, CA_DB *db,
1097 1098
			X509 *ca, X509 *rcert,
			EVP_PKEY *rkey, const EVP_MD *rmd,
D
 
Dr. Stephen Henson 已提交
1099
			STACK_OF(X509) *rother, unsigned long flags,
1100
			int nmin, int ndays, int badsig)
D
 
Dr. Stephen Henson 已提交
1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126
	{
	ASN1_TIME *thisupd = NULL, *nextupd = NULL;
	OCSP_CERTID *cid, *ca_id = NULL;
	OCSP_BASICRESP *bs = NULL;
	int i, id_count, ret = 1;

	id_count = OCSP_request_onereq_count(req);

	if (id_count <= 0)
		{
		*resp = OCSP_response_create(OCSP_RESPONSE_STATUS_MALFORMEDREQUEST, NULL);
		goto end;
		}


	bs = OCSP_BASICRESP_new();
	thisupd = X509_gmtime_adj(NULL, 0);
	if (ndays != -1)
		nextupd = X509_gmtime_adj(NULL, nmin * 60 + ndays * 3600 * 24 );

	/* Examine each certificate id in the request */
	for (i = 0; i < id_count; i++)
		{
		OCSP_ONEREQ *one;
		ASN1_INTEGER *serial;
		char **inf;
1127 1128
		ASN1_OBJECT *cert_id_md_oid;
		const EVP_MD *cert_id_md;
D
 
Dr. Stephen Henson 已提交
1129 1130
		one = OCSP_request_onereq_get0(req, i);
		cid = OCSP_onereq_get0_id(one);
1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143

		OCSP_id_get0_info(NULL,&cert_id_md_oid, NULL,NULL, cid);

		cert_id_md = EVP_get_digestbyobj(cert_id_md_oid);	
		if (! cert_id_md) 
			{
			*resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR,
				NULL);
				goto end;
			}	
		if (ca_id) OCSP_CERTID_free(ca_id);
		ca_id = OCSP_cert_to_id(cert_id_md, NULL, ca);

D
 
Dr. Stephen Henson 已提交
1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187
		/* Is this request about our CA? */
		if (OCSP_id_issuer_cmp(ca_id, cid))
			{
			OCSP_basic_add1_status(bs, cid,
						V_OCSP_CERTSTATUS_UNKNOWN,
						0, NULL,
						thisupd, nextupd);
			continue;
			}
		OCSP_id_get0_info(NULL, NULL, NULL, &serial, cid);
		inf = lookup_serial(db, serial);
		if (!inf)
			OCSP_basic_add1_status(bs, cid,
						V_OCSP_CERTSTATUS_UNKNOWN,
						0, NULL,
						thisupd, nextupd);
		else if (inf[DB_type][0] == DB_TYPE_VAL)
			OCSP_basic_add1_status(bs, cid,
						V_OCSP_CERTSTATUS_GOOD,
						0, NULL,
						thisupd, nextupd);
		else if (inf[DB_type][0] == DB_TYPE_REV)
			{
			ASN1_OBJECT *inst = NULL;
			ASN1_TIME *revtm = NULL;
			ASN1_GENERALIZEDTIME *invtm = NULL;
			OCSP_SINGLERESP *single;
			int reason = -1;
			unpack_revinfo(&revtm, &reason, &inst, &invtm, inf[DB_rev_date]);
			single = OCSP_basic_add1_status(bs, cid,
						V_OCSP_CERTSTATUS_REVOKED,
						reason, revtm,
						thisupd, nextupd);
			if (invtm)
				OCSP_SINGLERESP_add1_ext_i2d(single, NID_invalidity_date, invtm, 0, 0);
			else if (inst)
				OCSP_SINGLERESP_add1_ext_i2d(single, NID_hold_instruction_code, inst, 0, 0);
			ASN1_OBJECT_free(inst);
			ASN1_TIME_free(revtm);
			ASN1_GENERALIZEDTIME_free(invtm);
			}
		}

	OCSP_copy_nonce(bs, req);
1188
	
1189
	OCSP_basic_sign(bs, rcert, rkey, rmd, rother, flags);
D
 
Dr. Stephen Henson 已提交
1190

1191 1192 1193
	if (badsig)
		bs->signature->data[bs->signature->length -1] ^= 0x1;

D
 
Dr. Stephen Henson 已提交
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204
	*resp = OCSP_response_create(OCSP_RESPONSE_STATUS_SUCCESSFUL, bs);

	end:
	ASN1_TIME_free(thisupd);
	ASN1_TIME_free(nextupd);
	OCSP_CERTID_free(ca_id);
	OCSP_BASICRESP_free(bs);
	return ret;

	}

1205
static char **lookup_serial(CA_DB *db, ASN1_INTEGER *ser)
D
 
Dr. Stephen Henson 已提交
1206 1207 1208 1209 1210 1211
	{
	int i;
	BIGNUM *bn = NULL;
	char *itmp, *row[DB_NUMBER],**rrow;
	for (i = 0; i < DB_NUMBER; i++) row[i] = NULL;
	bn = ASN1_INTEGER_to_BN(ser,NULL);
B
Ben Laurie 已提交
1212
	OPENSSL_assert(bn); /* FIXME: should report an error at this point and abort */
1213 1214 1215 1216
	if (BN_is_zero(bn))
		itmp = BUF_strdup("00");
	else
		itmp = BN_bn2hex(bn);
D
 
Dr. Stephen Henson 已提交
1217 1218
	row[DB_serial] = itmp;
	BN_free(bn);
1219
	rrow=TXT_DB_get_by_index(db->db,DB_serial,row);
D
 
Dr. Stephen Henson 已提交
1220 1221 1222 1223 1224 1225
	OPENSSL_free(itmp);
	return rrow;
	}

/* Quick and dirty OCSP server: read in and parse input request */

D
 
Dr. Stephen Henson 已提交
1226
static BIO *init_responder(char *port)
D
 
Dr. Stephen Henson 已提交
1227
	{
D
 
Dr. Stephen Henson 已提交
1228
	BIO *acbio = NULL, *bufbio = NULL;
D
 
Dr. Stephen Henson 已提交
1229 1230 1231
	bufbio = BIO_new(BIO_f_buffer());
	if (!bufbio) 
		goto err;
1232
#ifndef OPENSSL_NO_SOCK
D
 
Dr. Stephen Henson 已提交
1233
	acbio = BIO_new_accept(port);
1234 1235 1236
#else
	BIO_printf(bio_err, "Error setting up accept BIO - sockets not supported.\n");
#endif
D
 
Dr. Stephen Henson 已提交
1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247
	if (!acbio)
		goto err;
	BIO_set_accept_bios(acbio, bufbio);
	bufbio = NULL;

	if (BIO_do_accept(acbio) <= 0)
		{
			BIO_printf(bio_err, "Error setting up accept BIO\n");
			ERR_print_errors(bio_err);
			goto err;
		}
D
 
Dr. Stephen Henson 已提交
1248 1249 1250 1251 1252 1253 1254 1255

	return acbio;

	err:
	BIO_free_all(acbio);
	BIO_free(bufbio);
	return NULL;
	}
D
 
Dr. Stephen Henson 已提交
1256

D
 
Dr. Stephen Henson 已提交
1257 1258 1259 1260 1261 1262
static int do_responder(OCSP_REQUEST **preq, BIO **pcbio, BIO *acbio, char *port)
	{
	int have_post = 0, len;
	OCSP_REQUEST *req = NULL;
	char inbuf[1024];
	BIO *cbio = NULL;
D
 
Dr. Stephen Henson 已提交
1263 1264 1265 1266 1267

	if (BIO_do_accept(acbio) <= 0)
		{
			BIO_printf(bio_err, "Error accepting connection\n");
			ERR_print_errors(bio_err);
D
 
Dr. Stephen Henson 已提交
1268
			return 0;
D
 
Dr. Stephen Henson 已提交
1269 1270 1271
		}

	cbio = BIO_pop(acbio);
D
 
Dr. Stephen Henson 已提交
1272
	*pcbio = cbio;
D
 
Dr. Stephen Henson 已提交
1273 1274 1275

	for(;;)
		{
1276
		len = BIO_gets(cbio, inbuf, sizeof inbuf);
D
 
Dr. Stephen Henson 已提交
1277 1278
		if (len <= 0)
			return 1;
D
 
Dr. Stephen Henson 已提交
1279 1280 1281 1282 1283 1284
		/* Look for "POST" signalling start of query */
		if (!have_post)
			{
			if(strncmp(inbuf, "POST", 4))
				{
				BIO_printf(bio_err, "Invalid request\n");
D
 
Dr. Stephen Henson 已提交
1285
				return 1;
D
 
Dr. Stephen Henson 已提交
1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303
				}
			have_post = 1;
			}
		/* Look for end of headers */
		if ((inbuf[0] == '\r') || (inbuf[0] == '\n'))
			break;
		}

	/* Try to read OCSP request */

	req = d2i_OCSP_REQUEST_bio(cbio, NULL);

	if (!req)
		{
		BIO_printf(bio_err, "Error parsing OCSP request\n");
		ERR_print_errors(bio_err);
		}

D
 
Dr. Stephen Henson 已提交
1304 1305 1306
	*preq = req;

	return 1;
D
 
Dr. Stephen Henson 已提交
1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318

	}

static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp)
	{
	char http_resp[] = 
		"HTTP/1.0 200 OK\r\nContent-type: application/ocsp-response\r\n"
		"Content-Length: %d\r\n\r\n";
	if (!cbio)
		return 0;
	BIO_printf(cbio, http_resp, i2d_OCSP_RESPONSE(resp, NULL));
	i2d_OCSP_RESPONSE_bio(cbio, resp);
D
Dr. Stephen Henson 已提交
1319
	(void)BIO_flush(cbio);
D
 
Dr. Stephen Henson 已提交
1320 1321 1322
	return 1;
	}

1323
static OCSP_RESPONSE *query_responder(BIO *err, BIO *cbio, char *path,
D
Dr. Stephen Henson 已提交
1324
				STACK_OF(CONF_VALUE) *headers,
1325 1326 1327 1328
				OCSP_REQUEST *req, int req_timeout)
	{
	int fd;
	int rv;
D
Dr. Stephen Henson 已提交
1329
	int i;
1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351
	OCSP_REQ_CTX *ctx = NULL;
	OCSP_RESPONSE *rsp = NULL;
	fd_set confds;
	struct timeval tv;

	if (req_timeout != -1)
		BIO_set_nbio(cbio, 1);

	rv = BIO_do_connect(cbio);

	if ((rv <= 0) && ((req_timeout == -1) || !BIO_should_retry(cbio)))
		{
		BIO_puts(err, "Error connecting BIO\n");
		return NULL;
		}

	if (BIO_get_fd(cbio, &fd) <= 0)
		{
		BIO_puts(err, "Can't get connection fd\n");
		goto err;
		}

D
Dr. Stephen Henson 已提交
1352
	if (req_timeout != -1 && rv <= 0)
1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364
		{
		FD_ZERO(&confds);
		openssl_fdset(fd, &confds);
		tv.tv_usec = 0;
		tv.tv_sec = req_timeout;
		rv = select(fd + 1, NULL, (void *)&confds, NULL, &tv);
		if (rv == 0)
			{
			BIO_puts(err, "Timeout on connect\n");
			return NULL;
			}
		}
1365

1366

D
Dr. Stephen Henson 已提交
1367
	ctx = OCSP_sendreq_new(cbio, path, NULL, -1);
1368 1369
	if (!ctx)
		return NULL;
D
Dr. Stephen Henson 已提交
1370 1371 1372 1373 1374 1375 1376 1377 1378 1379

	for (i = 0; i < sk_CONF_VALUE_num(headers); i++)
		{
		CONF_VALUE *hdr = sk_CONF_VALUE_value(headers, i);
		if (!OCSP_REQ_CTX_add1_header(ctx, hdr->name, hdr->value))
			goto err;
		}

	if (!OCSP_REQ_CTX_set1_req(ctx, req))
		goto err;
1380 1381 1382 1383 1384 1385
	
	for (;;)
		{
		rv = OCSP_sendreq_nbio(&rsp, ctx);
		if (rv != -1)
			break;
D
Dr. Stephen Henson 已提交
1386 1387
		if (req_timeout == -1)
			continue;
1388
		FD_ZERO(&confds);
1389
		openssl_fdset(fd, &confds);
1390 1391
		tv.tv_usec = 0;
		tv.tv_sec = req_timeout;
1392
		if (BIO_should_read(cbio))
1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410
			rv = select(fd + 1, (void *)&confds, NULL, NULL, &tv);
		else if (BIO_should_write(cbio))
			rv = select(fd + 1, NULL, (void *)&confds, NULL, &tv);
		else
			{
			BIO_puts(err, "Unexpected retry condition\n");
			goto err;
			}
		if (rv == 0)
			{
			BIO_puts(err, "Timeout on request\n");
			break;
			}
		if (rv == -1)
			{
			BIO_puts(err, "Select error\n");
			break;
			}
D
Dr. Stephen Henson 已提交
1411

1412 1413
		}
	err:
B
Ben Laurie 已提交
1414 1415
	if (ctx)
		OCSP_REQ_CTX_free(ctx);
1416 1417 1418 1419

	return rsp;
	}

1420 1421
OCSP_RESPONSE *process_responder(BIO *err, OCSP_REQUEST *req,
			char *host, char *path, char *port, int use_ssl,
D
Dr. Stephen Henson 已提交
1422
			STACK_OF(CONF_VALUE) *headers,
1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456
			int req_timeout)
	{
	BIO *cbio = NULL;
	SSL_CTX *ctx = NULL;
	OCSP_RESPONSE *resp = NULL;
	cbio = BIO_new_connect(host);
	if (!cbio)
		{
		BIO_printf(err, "Error creating connect BIO\n");
		goto end;
		}
	if (port) BIO_set_conn_port(cbio, port);
	if (use_ssl == 1)
		{
		BIO *sbio;
#if !defined(OPENSSL_NO_SSL2) && !defined(OPENSSL_NO_SSL3)
		ctx = SSL_CTX_new(SSLv23_client_method());
#elif !defined(OPENSSL_NO_SSL3)
		ctx = SSL_CTX_new(SSLv3_client_method());
#elif !defined(OPENSSL_NO_SSL2)
		ctx = SSL_CTX_new(SSLv2_client_method());
#else
		BIO_printf(err, "SSL is disabled\n");
			goto end;
#endif
		if (ctx == NULL)
			{
			BIO_printf(err, "Error creating SSL context.\n");
			goto end;
			}
		SSL_CTX_set_mode(ctx, SSL_MODE_AUTO_RETRY);
		sbio = BIO_new_ssl(ctx, 1);
		cbio = BIO_push(sbio, cbio);
		}
D
Dr. Stephen Henson 已提交
1457
	resp = query_responder(err, cbio, path, headers, req, req_timeout);
1458 1459 1460 1461 1462
	if (!resp)
		BIO_printf(bio_err, "Error querying OCSP responsder\n");
	end:
	if (cbio)
		BIO_free_all(cbio);
D
Dr. Stephen Henson 已提交
1463 1464
	if (ctx)
		SSL_CTX_free(ctx);
1465 1466 1467
	return resp;
	}

1468
#endif