ocsp.c 27.8 KB
Newer Older
D
 
Dr. Stephen Henson 已提交
1 2 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 58 59 60 61 62 63
/* ocsp.c */
/* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
 * 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).
 *
 */

#include <stdio.h>
#include <string.h>
#include <openssl/pem.h>
#include <openssl/ocsp.h>
#include <openssl/err.h>
D
Dr. Stephen Henson 已提交
64
#include <openssl/ssl.h>
D
 
Dr. Stephen Henson 已提交
65 66
#include "apps.h"

67 68 69
/* Maximum leeway in validity period: default 5 minutes */
#define MAX_VALIDITY_PERIOD	(5 * 60)

D
 
Dr. Stephen Henson 已提交
70 71 72 73 74 75 76 77 78 79 80 81 82
/* CA index.txt definitions */
#define DB_type         0
#define DB_exp_date     1
#define DB_rev_date     2
#define DB_serial       3       /* index - unique */
#define DB_file         4       
#define DB_name         5       /* index - unique for active */
#define DB_NUMBER       6

#define DB_TYPE_REV	'R'
#define DB_TYPE_EXP	'E'
#define DB_TYPE_VAL	'V'

83 84 85 86 87
static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert, X509 *issuer,
				STACK_OF(OCSP_CERTID) *ids);
static int add_ocsp_serial(OCSP_REQUEST **req, char *serial, X509 *issuer,
				STACK_OF(OCSP_CERTID) *ids);
static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
88 89
				STACK *names, STACK_OF(OCSP_CERTID) *ids,
				long nsec, long maxage);
D
 
Dr. Stephen Henson 已提交
90

D
 
Dr. Stephen Henson 已提交
91 92 93 94 95 96 97 98 99
static int make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req, TXT_DB *db,
			X509 *ca, X509 *rcert, EVP_PKEY *rkey,
			STACK_OF(X509) *rother, unsigned long flags,
			int nmin, int ndays);

static char **lookup_serial(TXT_DB *db, ASN1_INTEGER *ser);
static OCSP_REQUEST *do_responder(BIO **cbio, char *port);
static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp);

D
 
Dr. Stephen Henson 已提交
100 101 102 103 104 105 106
#undef PROG
#define PROG ocsp_main

int MAIN(int, char **);

int MAIN(int argc, char **argv)
	{
107
	ENGINE *e = NULL;
D
 
Dr. Stephen Henson 已提交
108
	char **args;
109
	char *host = NULL, *port = NULL, *path = "/";
D
 
Dr. Stephen Henson 已提交
110 111 112
	char *reqin = NULL, *respin = NULL;
	char *reqout = NULL, *respout = NULL;
	char *signfile = NULL, *keyfile = NULL;
D
 
Dr. Stephen Henson 已提交
113
	char *rsignfile = NULL, *rkeyfile = NULL;
D
 
Dr. Stephen Henson 已提交
114
	char *outfile = NULL;
115
	int add_nonce = 1, noverify = 0, use_ssl = -1;
D
 
Dr. Stephen Henson 已提交
116 117
	OCSP_REQUEST *req = NULL;
	OCSP_RESPONSE *resp = NULL;
D
 
Dr. Stephen Henson 已提交
118
	OCSP_BASICRESP *bs = NULL;
D
 
Dr. Stephen Henson 已提交
119
	X509 *issuer = NULL, *cert = NULL;
D
 
Dr. Stephen Henson 已提交
120 121
	X509 *signer = NULL, *rsigner = NULL;
	EVP_PKEY *key = NULL, *rkey = NULL;
D
 
Dr. Stephen Henson 已提交
122 123 124
	BIO *cbio = NULL, *derbio = NULL;
	BIO *out = NULL;
	int req_text = 0, resp_text = 0;
125
	long nsec = MAX_VALIDITY_PERIOD, maxage = -1;
D
 
Dr. Stephen Henson 已提交
126 127
	char *CAfile = NULL, *CApath = NULL;
	X509_STORE *store = NULL;
D
Dr. Stephen Henson 已提交
128
	SSL_CTX *ctx = NULL;
D
 
Dr. Stephen Henson 已提交
129 130 131
	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 已提交
132 133
	int ret = 1;
	int badarg = 0;
D
 
Dr. Stephen Henson 已提交
134
	int i;
135 136
	STACK *reqnames = NULL;
	STACK_OF(OCSP_CERTID) *ids = NULL;
D
 
Dr. Stephen Henson 已提交
137 138 139 140 141 142 143

	X509 *rca_cert = NULL;
	char *ridx_filename = NULL;
	char *rca_filename = NULL;
	TXT_DB *rdb = NULL;
	int nmin = 0, ndays = -1;

D
 
Dr. Stephen Henson 已提交
144
	if (bio_err == NULL) bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
D
Dr. Stephen Henson 已提交
145
	SSL_load_error_strings();
D
 
Dr. Stephen Henson 已提交
146
	args = argv + 1;
147 148
	reqnames = sk_new_null();
	ids = sk_OCSP_CERTID_new_null();
D
 
Dr. Stephen Henson 已提交
149 150 151 152 153 154 155 156 157 158 159
	while (!badarg && *args && *args[0] == '-')
		{
		if (!strcmp(*args, "-out"))
			{
			if (args[1])
				{
				args++;
				outfile = *args;
				}
			else badarg = 1;
			}
160 161 162 163 164 165 166 167 168 169 170 171 172
		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 已提交
173 174 175 176 177 178 179 180 181
		else if (!strcmp(*args, "-host"))
			{
			if (args[1])
				{
				args++;
				host = *args;
				}
			else badarg = 1;
			}
D
 
Dr. Stephen Henson 已提交
182 183 184 185 186 187 188 189 190
		else if (!strcmp(*args, "-port"))
			{
			if (args[1])
				{
				args++;
				port = *args;
				}
			else badarg = 1;
			}
191 192
		else if (!strcmp(*args, "-noverify"))
			noverify = 1;
D
 
Dr. Stephen Henson 已提交
193 194 195 196
		else if (!strcmp(*args, "-nonce"))
			add_nonce = 2;
		else if (!strcmp(*args, "-no_nonce"))
			add_nonce = 0;
D
 
Dr. Stephen Henson 已提交
197 198 199 200 201 202
		else if (!strcmp(*args, "-responder_no_certs"))
			rflags |= OCSP_NOCERTS;
		else if (!strcmp(*args, "-responder_no_time"))
			rflags |= OCSP_NOTIME;
		else if (!strcmp(*args, "-responder_key_id"))
			rflags |= OCSP_RESPID_KEY;
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
		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;
D
 
Dr. Stephen Henson 已提交
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
		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;
			}
255 256 257 258 259
		else if (!strcmp (*args, "-VAfile"))
			{
			if (args[1])
				{
				args++;
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
				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;
280 281 282
				}
			else badarg = 1;
			}
D
 
Dr. Stephen Henson 已提交
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
		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;
			}
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
		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 已提交
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
		 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);
375 376
				issuer = load_cert(bio_err, *args, FORMAT_PEM,
					NULL, e, "issuer certificate");
D
 
Dr. Stephen Henson 已提交
377 378 379 380 381 382 383 384 385 386
				if(!issuer) goto end;
				}
			else badarg = 1;
			}
		else if (!strcmp (*args, "-cert"))
			{
			if (args[1])
				{
				args++;
				X509_free(cert);
387 388
				cert = load_cert(bio_err, *args, FORMAT_PEM,
					NULL, e, "certificate");
D
 
Dr. Stephen Henson 已提交
389
				if(!cert) goto end;
390 391 392
				if(!add_ocsp_cert(&req, cert, issuer, ids))
					goto end;
				if(!sk_push(reqnames, *args))
D
 
Dr. Stephen Henson 已提交
393 394 395 396 397 398 399 400 401
					goto end;
				}
			else badarg = 1;
			}
		else if (!strcmp(*args, "-serial"))
			{
			if (args[1])
				{
				args++;
402 403 404
				if(!add_ocsp_serial(&req, *args, issuer, ids))
					goto end;
				if(!sk_push(reqnames, *args))
D
 
Dr. Stephen Henson 已提交
405 406 407 408
					goto end;
				}
			else badarg = 1;
			}
D
 
Dr. Stephen Henson 已提交
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 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487
		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;
			}
		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;
			}
D
 
Dr. Stephen Henson 已提交
488 489 490 491 492
		else badarg = 1;
		args++;
		}

	/* Have we anything to do? */
D
 
Dr. Stephen Henson 已提交
493
	if (!req && !reqin && !respin && !(port && ridx_filename)) badarg = 1;
D
 
Dr. Stephen Henson 已提交
494 495 496 497 498 499

	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");
500 501 502 503 504 505
		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");
506 507
		BIO_printf (bio_err, "-sign_certs file   additional certificates to include in signed request\n");
		BIO_printf (bio_err, "-no_certs          don't include any certificates in signed request\n");
508 509 510 511 512 513 514 515 516
		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");
517
		BIO_printf (bio_err, "-url URL           OCSP responder URL\n");
518 519 520 521 522
		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");
523 524
		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");
525
		BIO_printf (bio_err, "-noverify          don't verify response at all\n");
526 527 528 529 530 531 532
		BIO_printf (bio_err, "-verify_certs file additional certificates to search for signer\n");
		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");
		BIO_printf (bio_err, "-no_sig_verify     don't check signature on response\n");
		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");
D
 
Dr. Stephen Henson 已提交
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
		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)
		{
		derbio = BIO_new_file(reqin, "rb");
		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 已提交
564 565 566 567 568 569 570 571 572 573 574 575 576 577
	if (!req && port)
		{
		req = do_responder(&cbio, port);
		if (!req && !cbio)
			goto end;
		if (!req && cbio)
			{
			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 已提交
578 579 580 581 582
		{
		BIO_printf(bio_err, "Need an OCSP request for this operation!\n");
		goto end;
		}

583
	if (req && add_nonce) OCSP_request_add1_nonce(req, NULL, -1);
D
 
Dr. Stephen Henson 已提交
584 585 586 587

	if (signfile)
		{
		if (!keyfile) keyfile = signfile;
588 589
		signer = load_cert(bio_err, signfile, FORMAT_PEM,
			NULL, e, "signer certificate");
D
 
Dr. Stephen Henson 已提交
590 591 592 593 594
		if (!signer)
			{
			BIO_printf(bio_err, "Error loading signer certificate\n");
			goto end;
			}
595 596
		if (sign_certfile)
			{
597 598
			sign_other = load_certs(bio_err, sign_certfile, FORMAT_PEM,
				NULL, e, "signer certificates");
599 600
			if (!sign_other) goto end;
			}
601 602
		key = load_key(bio_err, keyfile, FORMAT_PEM, NULL, NULL,
			"signer private key");
D
 
Dr. Stephen Henson 已提交
603 604
		if (!key)
			goto end;
605
		if (!OCSP_request_sign(req, signer, key, EVP_sha1(), sign_other, sign_flags))
D
 
Dr. Stephen Henson 已提交
606 607 608 609 610 611
			{
			BIO_printf(bio_err, "Error signing OCSP request\n");
			goto end;
			}
		}

D
 
Dr. Stephen Henson 已提交
612 613 614
	if (req_text && req) OCSP_REQUEST_print(out, req, 0);

	if (rsignfile)
D
 
Dr. Stephen Henson 已提交
615
		{
D
 
Dr. Stephen Henson 已提交
616 617 618 619
		if (!rkeyfile) rkeyfile = rsignfile;
		rsigner = load_cert(bio_err, rsignfile, FORMAT_PEM,
			NULL, e, "responder certificate");
		if (!rsigner)
D
 
Dr. Stephen Henson 已提交
620
			{
D
 
Dr. Stephen Henson 已提交
621
			BIO_printf(bio_err, "Error loading responder certificate\n");
D
 
Dr. Stephen Henson 已提交
622 623
			goto end;
			}
D
 
Dr. Stephen Henson 已提交
624 625 626 627 628 629 630 631 632 633 634 635
		rca_cert = load_cert(bio_err, rca_filename, FORMAT_PEM,
			NULL, e, "CA certificate");
		if (rcertfile)
			{
			rother = load_certs(bio_err, sign_certfile, FORMAT_PEM,
				NULL, e, "responder other certificates");
			if (!sign_other) goto end;
			}
		rkey = load_key(bio_err, rkeyfile, FORMAT_PEM, NULL, NULL,
			"responder private key");
		if (!rkey)
			goto end;
D
 
Dr. Stephen Henson 已提交
636 637
		}

D
 
Dr. Stephen Henson 已提交
638 639 640 641 642
	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 已提交
643

D
 
Dr. Stephen Henson 已提交
644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666
	if (ridx_filename)
		{
		BIO *db_bio = NULL;
		db_bio = BIO_new_file(ridx_filename, "r");
		if (!db_bio)
			{
			BIO_printf(bio_err, "Error opening index file %s\n", ridx_filename);
			goto end;
			}
		rdb = TXT_DB_read(db_bio, DB_NUMBER);
		BIO_free(db_bio);
		if (!rdb)
			{
			BIO_printf(bio_err, "Error reading index file %s\n", ridx_filename);
			goto end;
			}
		if (!make_serial_index(rdb))
			goto end;
		i = make_ocsp_response(&resp, req, rdb, rca_cert, rsigner, rkey, rother, rflags, nmin, ndays);
		if (cbio)
			send_ocsp_response(cbio, resp);
		}
	else if (host)
D
 
Dr. Stephen Henson 已提交
667 668 669 670 671 672 673
		{
		cbio = BIO_new_connect(host);
		if (!cbio)
			{
			BIO_printf(bio_err, "Error creating connect BIO\n");
			goto end;
			}
674
		if (port) BIO_set_conn_port(cbio, port);
D
Dr. Stephen Henson 已提交
675 676 677 678 679 680 681 682
		if (use_ssl == 1)
			{
			BIO *sbio;
			ctx = SSL_CTX_new(SSLv23_client_method());
			SSL_CTX_set_mode(ctx, SSL_MODE_AUTO_RETRY);
			sbio = BIO_new_ssl(ctx, 1);
			cbio = BIO_push(sbio, cbio);
			}
D
 
Dr. Stephen Henson 已提交
683 684 685 686 687 688
		if (BIO_do_connect(cbio) <= 0)
			{
			BIO_printf(bio_err, "Error connecting BIO\n");
			goto end;
			}
		resp = OCSP_sendreq_bio(cbio, path, req);
D
Dr. Stephen Henson 已提交
689
		BIO_free_all(cbio);
D
 
Dr. Stephen Henson 已提交
690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719
		cbio = NULL;
		if (!resp)
			{
			BIO_printf(bio_err, "Error querying OCSP responsder\n");
			goto end;
			}
		}
	else if (respin)
		{
		derbio = BIO_new_file(respin, "rb");
		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 已提交
720 721
	done_resp:

D
 
Dr. Stephen Henson 已提交
722 723 724 725 726 727 728 729 730 731 732 733
	if (respout)
		{
		derbio = BIO_new_file(respout, "wb");
		if(!derbio)
			{
			BIO_printf(bio_err, "Error opening file %s\n", respout);
			goto end;
			}
		i2d_OCSP_RESPONSE_bio(derbio, resp);
		BIO_free(derbio);
		}

734 735 736 737 738 739 740 741 742 743
	i = OCSP_response_status(resp);

	if (i != OCSP_RESPONSE_STATUS_SUCCESSFUL)
		{
		BIO_printf(out, "Responder Error: %s (%ld)\n",
				OCSP_response_status_str(i), i);
		ret = 0;
		goto end;
		}

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

D
 
Dr. Stephen Henson 已提交
746 747 748 749
	/* If running as responder don't verify our own response */
	if (cbio)
		goto end;

D
 
Dr. Stephen Henson 已提交
750 751
	store = setup_verify(bio_err, CAfile, CApath);
	if(!store) goto end;
752 753
	if (verify_certfile)
		{
754 755
		verify_other = load_certs(bio_err, verify_certfile, FORMAT_PEM,
			NULL, e, "validator certificate");
756 757
		if (!verify_other) goto end;
		}
758

D
 
Dr. Stephen Henson 已提交
759 760
	bs = OCSP_response_get1_basic(resp);

761 762 763 764 765
	if (!bs)
		{
		BIO_printf(bio_err, "Error parsing response\n");
		goto end;
		}
D
 
Dr. Stephen Henson 已提交
766

767
	if (!noverify)
D
 
Dr. Stephen Henson 已提交
768
		{
769
		if (req && ((i = OCSP_check_nonce(req, bs)) <= 0))
770
			{
771 772 773 774 775 776 777
			if (i == -1)
				BIO_printf(bio_err, "WARNING: no nonce in response\n");
			else
				{
				BIO_printf(bio_err, "Nonce Verify error\n");
				goto end;
				}
778 779
			}

780
		i = OCSP_basic_verify(bs, verify_other, store, verify_flags);
781
                if (i < 0) i = OCSP_basic_verify(bs, NULL, store, 0);
782 783 784 785 786 787 788 789 790

		if(i <= 0)
			{
			BIO_printf(bio_err, "Response Verify Failure\n", i);
			ERR_print_errors(bio_err);
			}
		else
			BIO_printf(bio_err, "Response verify OK\n");

D
 
Dr. Stephen Henson 已提交
791
		}
792

793
	if (!print_ocsp_summary(out, bs, req, reqnames, ids, nsec, maxage))
794
		goto end;
D
 
Dr. Stephen Henson 已提交
795

D
 
Dr. Stephen Henson 已提交
796 797 798 799 800
	ret = 0;

end:
	ERR_print_errors(bio_err);
	X509_free(signer);
D
 
Dr. Stephen Henson 已提交
801
	X509_STORE_free(store);
D
 
Dr. Stephen Henson 已提交
802
	EVP_PKEY_free(key);
D
 
Dr. Stephen Henson 已提交
803
	EVP_PKEY_free(rkey);
D
 
Dr. Stephen Henson 已提交
804 805
	X509_free(issuer);
	X509_free(cert);
D
 
Dr. Stephen Henson 已提交
806 807 808
	X509_free(rsigner);
	X509_free(rca_cert);
	TXT_DB_free(rdb);
D
Dr. Stephen Henson 已提交
809
	BIO_free_all(cbio);
D
 
Dr. Stephen Henson 已提交
810 811 812
	BIO_free(out);
	OCSP_REQUEST_free(req);
	OCSP_RESPONSE_free(resp);
D
 
Dr. Stephen Henson 已提交
813
	OCSP_BASICRESP_free(bs);
814 815
	sk_free(reqnames);
	sk_OCSP_CERTID_free(ids);
816 817
	sk_X509_pop_free(sign_other, X509_free);
	sk_X509_pop_free(verify_other, X509_free);
D
 
Dr. Stephen Henson 已提交
818

819 820 821 822 823
	if (use_ssl != -1)
		{
		OPENSSL_free(host);
		OPENSSL_free(port);
		OPENSSL_free(path);
D
Dr. Stephen Henson 已提交
824
		SSL_CTX_free(ctx);
825 826
		}

D
 
Dr. Stephen Henson 已提交
827 828 829
	EXIT(ret);
}

830 831
static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert, X509 *issuer,
				STACK_OF(OCSP_CERTID) *ids)
D
 
Dr. Stephen Henson 已提交
832 833 834 835 836 837 838 839 840 841
	{
	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;
	id = OCSP_cert_to_id(NULL, cert, issuer);
842
	if(!id || !sk_OCSP_CERTID_push(ids, id)) goto err;
D
 
Dr. Stephen Henson 已提交
843 844 845 846 847 848 849 850
	if(!OCSP_request_add0_id(*req, id)) goto err;
	return 1;

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

851 852
static int add_ocsp_serial(OCSP_REQUEST **req, char *serial, X509 *issuer,
				STACK_OF(OCSP_CERTID) *ids)
D
 
Dr. Stephen Henson 已提交
853 854 855 856 857 858 859 860 861 862 863 864 865
	{
	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);
866
	ikey = X509_get0_pubkey_bitstr(issuer);
D
 
Dr. Stephen Henson 已提交
867 868 869 870 871 872 873 874
	sno = s2i_ASN1_INTEGER(NULL, serial);
	if(!sno)
		{
		BIO_printf(bio_err, "Error converting serial number %s\n", serial);
		return 0;
		}
	id = OCSP_cert_id_new(EVP_sha1(), iname, ikey, sno);
	ASN1_INTEGER_free(sno);
875
	if(!id || !sk_OCSP_CERTID_push(ids, id)) goto err;
D
 
Dr. Stephen Henson 已提交
876 877 878 879 880 881 882
	if(!OCSP_request_add0_id(*req, id)) goto err;
	return 1;

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

static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
885 886
					STACK *names, STACK_OF(OCSP_CERTID) *ids,
					long nsec, long maxage)
887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910
	{
	OCSP_CERTID *id;
	char *name;
	int i;

	int status, reason;

	ASN1_GENERALIZEDTIME *rev, *thisupd, *nextupd;

	if (!bs || !req || !sk_num(names) || !sk_OCSP_CERTID_num(ids))
		return 1;

	for (i = 0; i < sk_OCSP_CERTID_num(ids); i++)
		{
		id = sk_OCSP_CERTID_value(ids, i);
		name = sk_value(names, i);
		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;
			}
911 912 913 914 915 916 917 918 919

		/* 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);
			}
920 921 922 923 924 925 926 927 928
		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 已提交
929
			ASN1_GENERALIZEDTIME_print(out, nextupd);
930 931 932 933 934 935
			BIO_puts(out, "\n");
			}

		if (status != V_OCSP_CERTSTATUS_REVOKED)
			continue;

936
		if (reason != -1)
937 938 939 940 941 942 943 944 945 946 947
			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 已提交
948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 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 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149

static int make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req, TXT_DB *db,
			X509 *ca, X509 *rcert, EVP_PKEY *rkey,
			STACK_OF(X509) *rother, unsigned long flags,
			int nmin, int ndays)
	{
	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;
		}

	ca_id = OCSP_cert_to_id(EVP_sha1(), NULL, ca);

	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;
		one = OCSP_request_onereq_get0(req, i);
		cid = OCSP_onereq_get0_id(one);
		/* 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);
		
	OCSP_basic_sign(bs, rcert, rkey, EVP_sha1(), rother, flags);

	*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;

	}

static char **lookup_serial(TXT_DB *db, ASN1_INTEGER *ser)
	{
	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);
	itmp = BN_bn2hex(bn);
	row[DB_serial] = itmp;
	BN_free(bn);
	rrow=TXT_DB_get_by_index(db,DB_serial,row);
	OPENSSL_free(itmp);
	return rrow;
	}

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

static OCSP_REQUEST *do_responder(BIO **pcbio, char *port)
	{
	int have_post = 0, len;
	OCSP_REQUEST *req = NULL;
	char inbuf[1024];
	BIO *acbio = NULL, *bufbio = NULL, *cbio = NULL;
	bufbio = BIO_new(BIO_f_buffer());
	if (!bufbio) 
		goto err;
	acbio = BIO_new_accept(port);
	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;
		}

	BIO_printf(bio_err, "Waiting for OCSP client connection...\n");

	if (BIO_do_accept(acbio) <= 0)
		{
			BIO_printf(bio_err, "Error accepting connection\n");
			ERR_print_errors(bio_err);
			goto err;
		}

	BIO_printf(bio_err, "Connection Established\n");


	cbio = BIO_pop(acbio);
	BIO_free_all(acbio);
	acbio = NULL;

	for(;;)
		{
		len = BIO_gets(cbio, inbuf, 1024);
		if (len <= 0) goto err;
		/* Look for "POST" signalling start of query */
		if (!have_post)
			{
			if(strncmp(inbuf, "POST", 4))
				{
				BIO_printf(bio_err, "Invalid request\n");
				goto err;
				}
			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);

	*pcbio = cbio;

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

	return req;

	err:
	BIO_free_all(acbio);
	BIO_free_all(cbio);
	BIO_free(bufbio);
	OCSP_REQUEST_free(req);
	return NULL;
	}

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);
	BIO_flush(cbio);
	return 1;
	}