Update contrib.
2 /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
5 /* ====================================================================
6 * Copyright (c) 1999 The OpenSSL Project. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * licensing@OpenSSL.org.
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
34 * 6. Redistributions of any form whatsoever must retain the following
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
58 #ifndef OPENSSL_NO_OCSP
63 #include <openssl/pem.h>
64 #include <openssl/ocsp.h>
65 #include <openssl/err.h>
66 #include <openssl/ssl.h>
67 #include <openssl/bn.h>
69 /* Maximum leeway in validity period: default 5 minutes */
70 #define MAX_VALIDITY_PERIOD (5 * 60)
72 static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert, X509 *issuer,
73 STACK_OF(OCSP_CERTID) *ids);
74 static int add_ocsp_serial(OCSP_REQUEST **req, char *serial, X509 *issuer,
75 STACK_OF(OCSP_CERTID) *ids);
76 static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
77 STACK *names, STACK_OF(OCSP_CERTID) *ids,
78 long nsec, long maxage);
80 static int make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req, CA_DB *db,
81 X509 *ca, X509 *rcert, EVP_PKEY *rkey,
82 STACK_OF(X509) *rother, unsigned long flags,
85 static char **lookup_serial(CA_DB *db, ASN1_INTEGER *ser);
86 static BIO *init_responder(char *port);
87 static int do_responder(OCSP_REQUEST **preq, BIO **pcbio, BIO *acbio, char *port);
88 static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp);
91 #define PROG ocsp_main
93 int MAIN(int, char **);
95 int MAIN(int argc, char **argv)
99 char *host = NULL, *port = NULL, *path = "/";
100 char *reqin = NULL, *respin = NULL;
101 char *reqout = NULL, *respout = NULL;
102 char *signfile = NULL, *keyfile = NULL;
103 char *rsignfile = NULL, *rkeyfile = NULL;
104 char *outfile = NULL;
105 int add_nonce = 1, noverify = 0, use_ssl = -1;
106 OCSP_REQUEST *req = NULL;
107 OCSP_RESPONSE *resp = NULL;
108 OCSP_BASICRESP *bs = NULL;
109 X509 *issuer = NULL, *cert = NULL;
110 X509 *signer = NULL, *rsigner = NULL;
111 EVP_PKEY *key = NULL, *rkey = NULL;
112 BIO *acbio = NULL, *cbio = NULL;
115 int req_text = 0, resp_text = 0;
116 long nsec = MAX_VALIDITY_PERIOD, maxage = -1;
117 char *CAfile = NULL, *CApath = NULL;
118 X509_STORE *store = NULL;
120 STACK_OF(X509) *sign_other = NULL, *verify_other = NULL, *rother = NULL;
121 char *sign_certfile = NULL, *verify_certfile = NULL, *rcertfile = NULL;
122 unsigned long sign_flags = 0, verify_flags = 0, rflags = 0;
124 int accept_count = -1;
128 STACK *reqnames = NULL;
129 STACK_OF(OCSP_CERTID) *ids = NULL;
131 X509 *rca_cert = NULL;
132 char *ridx_filename = NULL;
133 char *rca_filename = NULL;
135 int nmin = 0, ndays = -1;
138 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
139 if (!load_config(bio_err, NULL))
141 SSL_load_error_strings();
142 OpenSSL_add_ssl_algorithms();
144 reqnames = sk_new_null();
145 ids = sk_OCSP_CERTID_new_null();
146 while (!badarg && *args && *args[0] == '-')
148 if (!strcmp(*args, "-out"))
157 else if (!strcmp(*args, "-url"))
162 if (!OCSP_parse_url(*args, &host, &port, &path, &use_ssl))
164 BIO_printf(bio_err, "Error parsing URL\n");
170 else if (!strcmp(*args, "-host"))
179 else if (!strcmp(*args, "-port"))
188 else if (!strcmp(*args, "-ignore_err"))
190 else if (!strcmp(*args, "-noverify"))
192 else if (!strcmp(*args, "-nonce"))
194 else if (!strcmp(*args, "-no_nonce"))
196 else if (!strcmp(*args, "-resp_no_certs"))
197 rflags |= OCSP_NOCERTS;
198 else if (!strcmp(*args, "-resp_key_id"))
199 rflags |= OCSP_RESPID_KEY;
200 else if (!strcmp(*args, "-no_certs"))
201 sign_flags |= OCSP_NOCERTS;
202 else if (!strcmp(*args, "-no_signature_verify"))
203 verify_flags |= OCSP_NOSIGS;
204 else if (!strcmp(*args, "-no_cert_verify"))
205 verify_flags |= OCSP_NOVERIFY;
206 else if (!strcmp(*args, "-no_chain"))
207 verify_flags |= OCSP_NOCHAIN;
208 else if (!strcmp(*args, "-no_cert_checks"))
209 verify_flags |= OCSP_NOCHECKS;
210 else if (!strcmp(*args, "-no_explicit"))
211 verify_flags |= OCSP_NOEXPLICIT;
212 else if (!strcmp(*args, "-trust_other"))
213 verify_flags |= OCSP_TRUSTOTHER;
214 else if (!strcmp(*args, "-no_intern"))
215 verify_flags |= OCSP_NOINTERN;
216 else if (!strcmp(*args, "-text"))
221 else if (!strcmp(*args, "-req_text"))
223 else if (!strcmp(*args, "-resp_text"))
225 else if (!strcmp(*args, "-reqin"))
234 else if (!strcmp(*args, "-respin"))
243 else if (!strcmp(*args, "-signer"))
252 else if (!strcmp (*args, "-VAfile"))
257 verify_certfile = *args;
258 verify_flags |= OCSP_TRUSTOTHER;
262 else if (!strcmp(*args, "-sign_other"))
267 sign_certfile = *args;
271 else if (!strcmp(*args, "-verify_other"))
276 verify_certfile = *args;
280 else if (!strcmp (*args, "-CAfile"))
289 else if (!strcmp (*args, "-CApath"))
298 else if (!strcmp (*args, "-validity_period"))
307 "Illegal validity period %s\n",
314 else if (!strcmp (*args, "-status_age"))
319 maxage = atol(*args);
323 "Illegal validity age %s\n",
330 else if (!strcmp(*args, "-signkey"))
339 else if (!strcmp(*args, "-reqout"))
348 else if (!strcmp(*args, "-respout"))
357 else if (!strcmp(*args, "-path"))
366 else if (!strcmp(*args, "-issuer"))
372 issuer = load_cert(bio_err, *args, FORMAT_PEM,
373 NULL, e, "issuer certificate");
374 if(!issuer) goto end;
378 else if (!strcmp (*args, "-cert"))
384 cert = load_cert(bio_err, *args, FORMAT_PEM,
385 NULL, e, "certificate");
387 if(!add_ocsp_cert(&req, cert, issuer, ids))
389 if(!sk_push(reqnames, *args))
394 else if (!strcmp(*args, "-serial"))
399 if(!add_ocsp_serial(&req, *args, issuer, ids))
401 if(!sk_push(reqnames, *args))
406 else if (!strcmp(*args, "-index"))
411 ridx_filename = *args;
415 else if (!strcmp(*args, "-CA"))
420 rca_filename = *args;
424 else if (!strcmp (*args, "-nmin"))
433 "Illegal update period %s\n",
442 else if (!strcmp (*args, "-nrequest"))
447 accept_count = atol(*args);
448 if (accept_count < 0)
451 "Illegal accept count %s\n",
458 else if (!strcmp (*args, "-ndays"))
467 "Illegal update period %s\n",
474 else if (!strcmp(*args, "-rsigner"))
483 else if (!strcmp(*args, "-rkey"))
492 else if (!strcmp(*args, "-rother"))
505 /* Have we anything to do? */
506 if (!req && !reqin && !respin && !(port && ridx_filename)) badarg = 1;
510 BIO_printf (bio_err, "OCSP utility\n");
511 BIO_printf (bio_err, "Usage ocsp [options]\n");
512 BIO_printf (bio_err, "where options are\n");
513 BIO_printf (bio_err, "-out file output filename\n");
514 BIO_printf (bio_err, "-issuer file issuer certificate\n");
515 BIO_printf (bio_err, "-cert file certificate to check\n");
516 BIO_printf (bio_err, "-serial n serial number to check\n");
517 BIO_printf (bio_err, "-signer file certificate to sign OCSP request with\n");
518 BIO_printf (bio_err, "-signkey file private key to sign OCSP request with\n");
519 BIO_printf (bio_err, "-sign_other file additional certificates to include in signed request\n");
520 BIO_printf (bio_err, "-no_certs don't include any certificates in signed request\n");
521 BIO_printf (bio_err, "-req_text print text form of request\n");
522 BIO_printf (bio_err, "-resp_text print text form of response\n");
523 BIO_printf (bio_err, "-text print text form of request and response\n");
524 BIO_printf (bio_err, "-reqout file write DER encoded OCSP request to \"file\"\n");
525 BIO_printf (bio_err, "-respout file write DER encoded OCSP reponse to \"file\"\n");
526 BIO_printf (bio_err, "-reqin file read DER encoded OCSP request from \"file\"\n");
527 BIO_printf (bio_err, "-respin file read DER encoded OCSP reponse from \"file\"\n");
528 BIO_printf (bio_err, "-nonce add OCSP nonce to request\n");
529 BIO_printf (bio_err, "-no_nonce don't add OCSP nonce to request\n");
530 BIO_printf (bio_err, "-url URL OCSP responder URL\n");
531 BIO_printf (bio_err, "-host host:n send OCSP request to host on port n\n");
532 BIO_printf (bio_err, "-path path to use in OCSP request\n");
533 BIO_printf (bio_err, "-CApath dir trusted certificates directory\n");
534 BIO_printf (bio_err, "-CAfile file trusted certificates file\n");
535 BIO_printf (bio_err, "-VAfile file validator certificates file\n");
536 BIO_printf (bio_err, "-validity_period n maximum validity discrepancy in seconds\n");
537 BIO_printf (bio_err, "-status_age n maximum status age in seconds\n");
538 BIO_printf (bio_err, "-noverify don't verify response at all\n");
539 BIO_printf (bio_err, "-verify_other file additional certificates to search for signer\n");
540 BIO_printf (bio_err, "-trust_other don't verify additional certificates\n");
541 BIO_printf (bio_err, "-no_intern don't search certificates contained in response for signer\n");
542 BIO_printf (bio_err, "-no_signature_verify don't check signature on response\n");
543 BIO_printf (bio_err, "-no_cert_verify don't check signing certificate\n");
544 BIO_printf (bio_err, "-no_chain don't chain verify response\n");
545 BIO_printf (bio_err, "-no_cert_checks don't do additional checks on signing certificate\n");
546 BIO_printf (bio_err, "-port num port to run responder on\n");
547 BIO_printf (bio_err, "-index file certificate status index file\n");
548 BIO_printf (bio_err, "-CA file CA certificate\n");
549 BIO_printf (bio_err, "-rsigner file responder certificate to sign responses with\n");
550 BIO_printf (bio_err, "-rkey file responder key to sign responses with\n");
551 BIO_printf (bio_err, "-rother file other certificates to include in response\n");
552 BIO_printf (bio_err, "-resp_no_certs don't include any certificates in response\n");
553 BIO_printf (bio_err, "-nmin n number of minutes before next update\n");
554 BIO_printf (bio_err, "-ndays n number of days before next update\n");
555 BIO_printf (bio_err, "-resp_key_id identify reponse by signing certificate key ID\n");
556 BIO_printf (bio_err, "-nrequest n number of requests to accept (default unlimited)\n");
560 if(outfile) out = BIO_new_file(outfile, "w");
561 else out = BIO_new_fp(stdout, BIO_NOCLOSE);
564 BIO_printf(bio_err, "Error opening output file\n");
568 if (!req && (add_nonce != 2)) add_nonce = 0;
572 derbio = BIO_new_file(reqin, "rb");
575 BIO_printf(bio_err, "Error Opening OCSP request file\n");
578 req = d2i_OCSP_REQUEST_bio(derbio, NULL);
582 BIO_printf(bio_err, "Error reading OCSP request\n");
589 acbio = init_responder(port);
594 if (rsignfile && !rdb)
596 if (!rkeyfile) rkeyfile = rsignfile;
597 rsigner = load_cert(bio_err, rsignfile, FORMAT_PEM,
598 NULL, e, "responder certificate");
601 BIO_printf(bio_err, "Error loading responder certificate\n");
604 rca_cert = load_cert(bio_err, rca_filename, FORMAT_PEM,
605 NULL, e, "CA certificate");
608 rother = load_certs(bio_err, rcertfile, FORMAT_PEM,
609 NULL, e, "responder other certificates");
610 if (!rother) goto end;
612 rkey = load_key(bio_err, rkeyfile, FORMAT_PEM, 0, NULL, NULL,
613 "responder private key");
618 BIO_printf(bio_err, "Waiting for OCSP client connections...\n");
624 if (!do_responder(&req, &cbio, acbio, port))
628 resp = OCSP_response_create(OCSP_RESPONSE_STATUS_MALFORMEDREQUEST, NULL);
629 send_ocsp_response(cbio, resp);
634 if (!req && (signfile || reqout || host || add_nonce || ridx_filename))
636 BIO_printf(bio_err, "Need an OCSP request for this operation!\n");
640 if (req && add_nonce) OCSP_request_add1_nonce(req, NULL, -1);
644 if (!keyfile) keyfile = signfile;
645 signer = load_cert(bio_err, signfile, FORMAT_PEM,
646 NULL, e, "signer certificate");
649 BIO_printf(bio_err, "Error loading signer certificate\n");
654 sign_other = load_certs(bio_err, sign_certfile, FORMAT_PEM,
655 NULL, e, "signer certificates");
656 if (!sign_other) goto end;
658 key = load_key(bio_err, keyfile, FORMAT_PEM, 0, NULL, NULL,
659 "signer private key");
662 if (!OCSP_request_sign(req, signer, key, EVP_sha1(), sign_other, sign_flags))
664 BIO_printf(bio_err, "Error signing OCSP request\n");
669 if (req_text && req) OCSP_REQUEST_print(out, req, 0);
673 derbio = BIO_new_file(reqout, "wb");
676 BIO_printf(bio_err, "Error opening file %s\n", reqout);
679 i2d_OCSP_REQUEST_bio(derbio, req);
683 if (ridx_filename && (!rkey || !rsigner || !rca_cert))
685 BIO_printf(bio_err, "Need a responder certificate, key and CA for this operation!\n");
689 if (ridx_filename && !rdb)
691 rdb = load_index(ridx_filename, NULL);
693 if (!index_index(rdb)) goto end;
698 i = make_ocsp_response(&resp, req, rdb, rca_cert, rsigner, rkey, rother, rflags, nmin, ndays);
700 send_ocsp_response(cbio, resp);
704 #ifndef OPENSSL_NO_SOCK
705 cbio = BIO_new_connect(host);
707 BIO_printf(bio_err, "Error creating connect BIO - sockets not supported.\n");
712 BIO_printf(bio_err, "Error creating connect BIO\n");
715 if (port) BIO_set_conn_port(cbio, port);
719 #if !defined(OPENSSL_NO_SSL2) && !defined(OPENSSL_NO_SSL3)
720 ctx = SSL_CTX_new(SSLv23_client_method());
721 #elif !defined(OPENSSL_NO_SSL3)
722 ctx = SSL_CTX_new(SSLv3_client_method());
723 #elif !defined(OPENSSL_NO_SSL2)
724 ctx = SSL_CTX_new(SSLv2_client_method());
726 BIO_printf(bio_err, "SSL is disabled\n");
731 BIO_printf(bio_err, "Error creating SSL context.\n");
734 SSL_CTX_set_mode(ctx, SSL_MODE_AUTO_RETRY);
735 sbio = BIO_new_ssl(ctx, 1);
736 cbio = BIO_push(sbio, cbio);
738 if (BIO_do_connect(cbio) <= 0)
740 BIO_printf(bio_err, "Error connecting BIO\n");
743 resp = OCSP_sendreq_bio(cbio, path, req);
748 BIO_printf(bio_err, "Error querying OCSP responsder\n");
754 derbio = BIO_new_file(respin, "rb");
757 BIO_printf(bio_err, "Error Opening OCSP response file\n");
760 resp = d2i_OCSP_RESPONSE_bio(derbio, NULL);
764 BIO_printf(bio_err, "Error reading OCSP response\n");
779 derbio = BIO_new_file(respout, "wb");
782 BIO_printf(bio_err, "Error opening file %s\n", respout);
785 i2d_OCSP_RESPONSE_bio(derbio, resp);
789 i = OCSP_response_status(resp);
791 if (i != OCSP_RESPONSE_STATUS_SUCCESSFUL)
793 BIO_printf(out, "Responder Error: %s (%d)\n",
794 OCSP_response_status_str(i), i);
801 if (resp_text) OCSP_RESPONSE_print(out, resp, 0);
803 /* If running as responder don't verify our own response */
806 if (accept_count > 0)
808 /* Redo if more connections needed */
813 OCSP_REQUEST_free(req);
815 OCSP_RESPONSE_free(resp);
823 store = setup_verify(bio_err, CAfile, CApath);
828 verify_other = load_certs(bio_err, verify_certfile, FORMAT_PEM,
829 NULL, e, "validator certificate");
830 if (!verify_other) goto end;
833 bs = OCSP_response_get1_basic(resp);
837 BIO_printf(bio_err, "Error parsing response\n");
843 if (req && ((i = OCSP_check_nonce(req, bs)) <= 0))
846 BIO_printf(bio_err, "WARNING: no nonce in response\n");
849 BIO_printf(bio_err, "Nonce Verify error\n");
854 i = OCSP_basic_verify(bs, verify_other, store, verify_flags);
855 if (i < 0) i = OCSP_basic_verify(bs, NULL, store, 0);
859 BIO_printf(bio_err, "Response Verify Failure\n");
860 ERR_print_errors(bio_err);
863 BIO_printf(bio_err, "Response verify OK\n");
867 if (!print_ocsp_summary(out, bs, req, reqnames, ids, nsec, maxage))
873 ERR_print_errors(bio_err);
875 X509_STORE_free(store);
886 OCSP_REQUEST_free(req);
887 OCSP_RESPONSE_free(resp);
888 OCSP_BASICRESP_free(bs);
890 sk_OCSP_CERTID_free(ids);
891 sk_X509_pop_free(sign_other, X509_free);
892 sk_X509_pop_free(verify_other, X509_free);
905 static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert, X509 *issuer,
906 STACK_OF(OCSP_CERTID) *ids)
911 BIO_printf(bio_err, "No issuer certificate specified\n");
914 if(!*req) *req = OCSP_REQUEST_new();
916 id = OCSP_cert_to_id(NULL, cert, issuer);
917 if(!id || !sk_OCSP_CERTID_push(ids, id)) goto err;
918 if(!OCSP_request_add0_id(*req, id)) goto err;
922 BIO_printf(bio_err, "Error Creating OCSP request\n");
926 static int add_ocsp_serial(OCSP_REQUEST **req, char *serial, X509 *issuer,
927 STACK_OF(OCSP_CERTID) *ids)
931 ASN1_BIT_STRING *ikey;
935 BIO_printf(bio_err, "No issuer certificate specified\n");
938 if(!*req) *req = OCSP_REQUEST_new();
940 iname = X509_get_subject_name(issuer);
941 ikey = X509_get0_pubkey_bitstr(issuer);
942 sno = s2i_ASN1_INTEGER(NULL, serial);
945 BIO_printf(bio_err, "Error converting serial number %s\n", serial);
948 id = OCSP_cert_id_new(EVP_sha1(), iname, ikey, sno);
949 ASN1_INTEGER_free(sno);
950 if(!id || !sk_OCSP_CERTID_push(ids, id)) goto err;
951 if(!OCSP_request_add0_id(*req, id)) goto err;
955 BIO_printf(bio_err, "Error Creating OCSP request\n");
959 static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
960 STACK *names, STACK_OF(OCSP_CERTID) *ids,
961 long nsec, long maxage)
969 ASN1_GENERALIZEDTIME *rev, *thisupd, *nextupd;
971 if (!bs || !req || !sk_num(names) || !sk_OCSP_CERTID_num(ids))
974 for (i = 0; i < sk_OCSP_CERTID_num(ids); i++)
976 id = sk_OCSP_CERTID_value(ids, i);
977 name = sk_value(names, i);
978 BIO_printf(out, "%s: ", name);
980 if(!OCSP_resp_find_status(bs, id, &status, &reason,
981 &rev, &thisupd, &nextupd))
983 BIO_puts(out, "ERROR: No Status found.\n");
987 /* Check validity: if invalid write to output BIO so we
988 * know which response this refers to.
990 if (!OCSP_check_validity(thisupd, nextupd, nsec, maxage))
992 BIO_puts(out, "WARNING: Status times invalid.\n");
993 ERR_print_errors(out);
995 BIO_printf(out, "%s\n", OCSP_cert_status_str(status));
997 BIO_puts(out, "\tThis Update: ");
998 ASN1_GENERALIZEDTIME_print(out, thisupd);
1003 BIO_puts(out, "\tNext Update: ");
1004 ASN1_GENERALIZEDTIME_print(out, nextupd);
1005 BIO_puts(out, "\n");
1008 if (status != V_OCSP_CERTSTATUS_REVOKED)
1012 BIO_printf(out, "\tReason: %s\n",
1013 OCSP_crl_reason_str(reason));
1015 BIO_puts(out, "\tRevocation Time: ");
1016 ASN1_GENERALIZEDTIME_print(out, rev);
1017 BIO_puts(out, "\n");
1024 static int make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req, CA_DB *db,
1025 X509 *ca, X509 *rcert, EVP_PKEY *rkey,
1026 STACK_OF(X509) *rother, unsigned long flags,
1027 int nmin, int ndays)
1029 ASN1_TIME *thisupd = NULL, *nextupd = NULL;
1030 OCSP_CERTID *cid, *ca_id = NULL;
1031 OCSP_BASICRESP *bs = NULL;
1032 int i, id_count, ret = 1;
1035 id_count = OCSP_request_onereq_count(req);
1039 *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_MALFORMEDREQUEST, NULL);
1043 ca_id = OCSP_cert_to_id(EVP_sha1(), NULL, ca);
1045 bs = OCSP_BASICRESP_new();
1046 thisupd = X509_gmtime_adj(NULL, 0);
1048 nextupd = X509_gmtime_adj(NULL, nmin * 60 + ndays * 3600 * 24 );
1050 /* Examine each certificate id in the request */
1051 for (i = 0; i < id_count; i++)
1054 ASN1_INTEGER *serial;
1056 one = OCSP_request_onereq_get0(req, i);
1057 cid = OCSP_onereq_get0_id(one);
1058 /* Is this request about our CA? */
1059 if (OCSP_id_issuer_cmp(ca_id, cid))
1061 OCSP_basic_add1_status(bs, cid,
1062 V_OCSP_CERTSTATUS_UNKNOWN,
1067 OCSP_id_get0_info(NULL, NULL, NULL, &serial, cid);
1068 inf = lookup_serial(db, serial);
1070 OCSP_basic_add1_status(bs, cid,
1071 V_OCSP_CERTSTATUS_UNKNOWN,
1074 else if (inf[DB_type][0] == DB_TYPE_VAL)
1075 OCSP_basic_add1_status(bs, cid,
1076 V_OCSP_CERTSTATUS_GOOD,
1079 else if (inf[DB_type][0] == DB_TYPE_REV)
1081 ASN1_OBJECT *inst = NULL;
1082 ASN1_TIME *revtm = NULL;
1083 ASN1_GENERALIZEDTIME *invtm = NULL;
1084 OCSP_SINGLERESP *single;
1086 unpack_revinfo(&revtm, &reason, &inst, &invtm, inf[DB_rev_date]);
1087 single = OCSP_basic_add1_status(bs, cid,
1088 V_OCSP_CERTSTATUS_REVOKED,
1092 OCSP_SINGLERESP_add1_ext_i2d(single, NID_invalidity_date, invtm, 0, 0);
1094 OCSP_SINGLERESP_add1_ext_i2d(single, NID_hold_instruction_code, inst, 0, 0);
1095 ASN1_OBJECT_free(inst);
1096 ASN1_TIME_free(revtm);
1097 ASN1_GENERALIZEDTIME_free(invtm);
1101 OCSP_copy_nonce(bs, req);
1103 OCSP_basic_sign(bs, rcert, rkey, EVP_sha1(), rother, flags);
1105 *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_SUCCESSFUL, bs);
1108 ASN1_TIME_free(thisupd);
1109 ASN1_TIME_free(nextupd);
1110 OCSP_CERTID_free(ca_id);
1111 OCSP_BASICRESP_free(bs);
1116 static char **lookup_serial(CA_DB *db, ASN1_INTEGER *ser)
1120 char *itmp, *row[DB_NUMBER],**rrow;
1121 for (i = 0; i < DB_NUMBER; i++) row[i] = NULL;
1122 bn = ASN1_INTEGER_to_BN(ser,NULL);
1124 itmp = BUF_strdup("00");
1126 itmp = BN_bn2hex(bn);
1127 row[DB_serial] = itmp;
1129 rrow=TXT_DB_get_by_index(db->db,DB_serial,row);
1134 /* Quick and dirty OCSP server: read in and parse input request */
1136 static BIO *init_responder(char *port)
1138 BIO *acbio = NULL, *bufbio = NULL;
1139 bufbio = BIO_new(BIO_f_buffer());
1142 #ifndef OPENSSL_NO_SOCK
1143 acbio = BIO_new_accept(port);
1145 BIO_printf(bio_err, "Error setting up accept BIO - sockets not supported.\n");
1149 BIO_set_accept_bios(acbio, bufbio);
1152 if (BIO_do_accept(acbio) <= 0)
1154 BIO_printf(bio_err, "Error setting up accept BIO\n");
1155 ERR_print_errors(bio_err);
1162 BIO_free_all(acbio);
1167 static int do_responder(OCSP_REQUEST **preq, BIO **pcbio, BIO *acbio, char *port)
1169 int have_post = 0, len;
1170 OCSP_REQUEST *req = NULL;
1174 if (BIO_do_accept(acbio) <= 0)
1176 BIO_printf(bio_err, "Error accepting connection\n");
1177 ERR_print_errors(bio_err);
1181 cbio = BIO_pop(acbio);
1186 len = BIO_gets(cbio, inbuf, sizeof inbuf);
1189 /* Look for "POST" signalling start of query */
1192 if(strncmp(inbuf, "POST", 4))
1194 BIO_printf(bio_err, "Invalid request\n");
1199 /* Look for end of headers */
1200 if ((inbuf[0] == '\r') || (inbuf[0] == '\n'))
1204 /* Try to read OCSP request */
1206 req = d2i_OCSP_REQUEST_bio(cbio, NULL);
1210 BIO_printf(bio_err, "Error parsing OCSP request\n");
1211 ERR_print_errors(bio_err);
1220 static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp)
1223 "HTTP/1.0 200 OK\r\nContent-type: application/ocsp-response\r\n"
1224 "Content-Length: %d\r\n\r\n";
1227 BIO_printf(cbio, http_resp, i2d_OCSP_RESPONSE(resp, NULL));
1228 i2d_OCSP_RESPONSE_bio(cbio, resp);
1229 (void)BIO_flush(cbio);