Allow OCSP server to handle multiple requests.
Document new OCSP options.
This commit is contained in:
parent
ee306a1332
commit
534a1ed0cb
2 changed files with 187 additions and 39 deletions
127
apps/ocsp.c
127
apps/ocsp.c
|
@ -94,7 +94,8 @@ static int make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req, TXT_DB *d
|
||||||
int nmin, int ndays);
|
int nmin, int ndays);
|
||||||
|
|
||||||
static char **lookup_serial(TXT_DB *db, ASN1_INTEGER *ser);
|
static char **lookup_serial(TXT_DB *db, ASN1_INTEGER *ser);
|
||||||
static OCSP_REQUEST *do_responder(BIO **cbio, char *port);
|
static BIO *init_responder(char *port);
|
||||||
|
static int do_responder(OCSP_REQUEST **preq, BIO **pcbio, BIO *acbio, char *port);
|
||||||
static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp);
|
static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp);
|
||||||
|
|
||||||
#undef PROG
|
#undef PROG
|
||||||
|
@ -119,7 +120,8 @@ int MAIN(int argc, char **argv)
|
||||||
X509 *issuer = NULL, *cert = NULL;
|
X509 *issuer = NULL, *cert = NULL;
|
||||||
X509 *signer = NULL, *rsigner = NULL;
|
X509 *signer = NULL, *rsigner = NULL;
|
||||||
EVP_PKEY *key = NULL, *rkey = NULL;
|
EVP_PKEY *key = NULL, *rkey = NULL;
|
||||||
BIO *cbio = NULL, *derbio = NULL;
|
BIO *acbio = NULL, *cbio = NULL;
|
||||||
|
BIO *derbio = NULL;
|
||||||
BIO *out = NULL;
|
BIO *out = NULL;
|
||||||
int req_text = 0, resp_text = 0;
|
int req_text = 0, resp_text = 0;
|
||||||
long nsec = MAX_VALIDITY_PERIOD, maxage = -1;
|
long nsec = MAX_VALIDITY_PERIOD, maxage = -1;
|
||||||
|
@ -130,6 +132,7 @@ int MAIN(int argc, char **argv)
|
||||||
char *sign_certfile = NULL, *verify_certfile = NULL, *rcertfile = NULL;
|
char *sign_certfile = NULL, *verify_certfile = NULL, *rcertfile = NULL;
|
||||||
unsigned long sign_flags = 0, verify_flags = 0, rflags = 0;
|
unsigned long sign_flags = 0, verify_flags = 0, rflags = 0;
|
||||||
int ret = 1;
|
int ret = 1;
|
||||||
|
int accept_count = -1;
|
||||||
int badarg = 0;
|
int badarg = 0;
|
||||||
int i;
|
int i;
|
||||||
STACK *reqnames = NULL;
|
STACK *reqnames = NULL;
|
||||||
|
@ -194,11 +197,9 @@ int MAIN(int argc, char **argv)
|
||||||
add_nonce = 2;
|
add_nonce = 2;
|
||||||
else if (!strcmp(*args, "-no_nonce"))
|
else if (!strcmp(*args, "-no_nonce"))
|
||||||
add_nonce = 0;
|
add_nonce = 0;
|
||||||
else if (!strcmp(*args, "-responder_no_certs"))
|
else if (!strcmp(*args, "-resp_no_certs"))
|
||||||
rflags |= OCSP_NOCERTS;
|
rflags |= OCSP_NOCERTS;
|
||||||
else if (!strcmp(*args, "-responder_no_time"))
|
else if (!strcmp(*args, "-resp_key_id"))
|
||||||
rflags |= OCSP_NOTIME;
|
|
||||||
else if (!strcmp(*args, "-responder_key_id"))
|
|
||||||
rflags |= OCSP_RESPID_KEY;
|
rflags |= OCSP_RESPID_KEY;
|
||||||
else if (!strcmp(*args, "-no_certs"))
|
else if (!strcmp(*args, "-no_certs"))
|
||||||
sign_flags |= OCSP_NOCERTS;
|
sign_flags |= OCSP_NOCERTS;
|
||||||
|
@ -442,6 +443,22 @@ int MAIN(int argc, char **argv)
|
||||||
ndays = 0;
|
ndays = 0;
|
||||||
else badarg = 1;
|
else badarg = 1;
|
||||||
}
|
}
|
||||||
|
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;
|
||||||
|
}
|
||||||
else if (!strcmp (*args, "-ndays"))
|
else if (!strcmp (*args, "-ndays"))
|
||||||
{
|
{
|
||||||
if (args[1])
|
if (args[1])
|
||||||
|
@ -530,6 +547,16 @@ int MAIN(int argc, char **argv)
|
||||||
BIO_printf (bio_err, "-no_cert_verify don't check signing certificate\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_chain don't chain verify response\n");
|
||||||
BIO_printf (bio_err, "-no_cert_checks don't do additional checks on signing certificate\n");
|
BIO_printf (bio_err, "-no_cert_checks don't do additional checks on signing certificate\n");
|
||||||
|
BIO_printf (bio_err, "-index file certificate status index file\n");
|
||||||
|
BIO_printf (bio_err, "-CA file CA certificate\n");
|
||||||
|
BIO_printf (bio_err, "-rsigner file responder certificate to sign requests with\n");
|
||||||
|
BIO_printf (bio_err, "-rkey file responder key to sign requests with\n");
|
||||||
|
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");
|
||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -563,10 +590,18 @@ int MAIN(int argc, char **argv)
|
||||||
|
|
||||||
if (!req && port)
|
if (!req && port)
|
||||||
{
|
{
|
||||||
req = do_responder(&cbio, port);
|
acbio = init_responder(port);
|
||||||
if (!req && !cbio)
|
if (!acbio)
|
||||||
goto end;
|
goto end;
|
||||||
if (!req && cbio)
|
}
|
||||||
|
|
||||||
|
redo_accept:
|
||||||
|
|
||||||
|
if (acbio)
|
||||||
|
{
|
||||||
|
if (!do_responder(&req, &cbio, acbio, port))
|
||||||
|
goto end;
|
||||||
|
if (!req)
|
||||||
{
|
{
|
||||||
resp = OCSP_response_create(OCSP_RESPONSE_STATUS_MALFORMEDREQUEST, NULL);
|
resp = OCSP_response_create(OCSP_RESPONSE_STATUS_MALFORMEDREQUEST, NULL);
|
||||||
send_ocsp_response(cbio, resp);
|
send_ocsp_response(cbio, resp);
|
||||||
|
@ -611,7 +646,7 @@ int MAIN(int argc, char **argv)
|
||||||
|
|
||||||
if (req_text && req) OCSP_REQUEST_print(out, req, 0);
|
if (req_text && req) OCSP_REQUEST_print(out, req, 0);
|
||||||
|
|
||||||
if (rsignfile)
|
if (rsignfile && !rdb)
|
||||||
{
|
{
|
||||||
if (!rkeyfile) rkeyfile = rsignfile;
|
if (!rkeyfile) rkeyfile = rsignfile;
|
||||||
rsigner = load_cert(bio_err, rsignfile, FORMAT_PEM,
|
rsigner = load_cert(bio_err, rsignfile, FORMAT_PEM,
|
||||||
|
@ -641,7 +676,7 @@ int MAIN(int argc, char **argv)
|
||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ridx_filename)
|
if (ridx_filename && !rdb)
|
||||||
{
|
{
|
||||||
BIO *db_bio = NULL;
|
BIO *db_bio = NULL;
|
||||||
db_bio = BIO_new_file(ridx_filename, "r");
|
db_bio = BIO_new_file(ridx_filename, "r");
|
||||||
|
@ -659,6 +694,10 @@ int MAIN(int argc, char **argv)
|
||||||
}
|
}
|
||||||
if (!make_serial_index(rdb))
|
if (!make_serial_index(rdb))
|
||||||
goto end;
|
goto end;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (rdb)
|
||||||
|
{
|
||||||
i = make_ocsp_response(&resp, req, rdb, rca_cert, rsigner, rkey, rother, rflags, nmin, ndays);
|
i = make_ocsp_response(&resp, req, rdb, rca_cert, rsigner, rkey, rother, rflags, nmin, ndays);
|
||||||
if (cbio)
|
if (cbio)
|
||||||
send_ocsp_response(cbio, resp);
|
send_ocsp_response(cbio, resp);
|
||||||
|
@ -745,10 +784,25 @@ int MAIN(int argc, char **argv)
|
||||||
|
|
||||||
/* If running as responder don't verify our own response */
|
/* If running as responder don't verify our own response */
|
||||||
if (cbio)
|
if (cbio)
|
||||||
|
{
|
||||||
|
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;
|
||||||
|
}
|
||||||
goto end;
|
goto end;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!store)
|
||||||
store = setup_verify(bio_err, CAfile, CApath);
|
store = setup_verify(bio_err, CAfile, CApath);
|
||||||
if(!store) goto end;
|
|
||||||
if (verify_certfile)
|
if (verify_certfile)
|
||||||
{
|
{
|
||||||
verify_other = load_certs(bio_err, verify_certfile, FORMAT_PEM,
|
verify_other = load_certs(bio_err, verify_certfile, FORMAT_PEM,
|
||||||
|
@ -807,6 +861,7 @@ end:
|
||||||
X509_free(rca_cert);
|
X509_free(rca_cert);
|
||||||
TXT_DB_free(rdb);
|
TXT_DB_free(rdb);
|
||||||
BIO_free_all(cbio);
|
BIO_free_all(cbio);
|
||||||
|
BIO_free_all(acbio);
|
||||||
BIO_free(out);
|
BIO_free(out);
|
||||||
OCSP_REQUEST_free(req);
|
OCSP_REQUEST_free(req);
|
||||||
OCSP_RESPONSE_free(resp);
|
OCSP_RESPONSE_free(resp);
|
||||||
|
@ -1055,12 +1110,9 @@ static char **lookup_serial(TXT_DB *db, ASN1_INTEGER *ser)
|
||||||
|
|
||||||
/* Quick and dirty OCSP server: read in and parse input request */
|
/* Quick and dirty OCSP server: read in and parse input request */
|
||||||
|
|
||||||
static OCSP_REQUEST *do_responder(BIO **pcbio, char *port)
|
static BIO *init_responder(char *port)
|
||||||
{
|
{
|
||||||
int have_post = 0, len;
|
BIO *acbio = NULL, *bufbio = NULL;
|
||||||
OCSP_REQUEST *req = NULL;
|
|
||||||
char inbuf[1024];
|
|
||||||
BIO *acbio = NULL, *bufbio = NULL, *cbio = NULL;
|
|
||||||
bufbio = BIO_new(BIO_f_buffer());
|
bufbio = BIO_new(BIO_f_buffer());
|
||||||
if (!bufbio)
|
if (!bufbio)
|
||||||
goto err;
|
goto err;
|
||||||
|
@ -1076,34 +1128,45 @@ static OCSP_REQUEST *do_responder(BIO **pcbio, char *port)
|
||||||
ERR_print_errors(bio_err);
|
ERR_print_errors(bio_err);
|
||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
|
BIO_printf(bio_err, "Waiting for OCSP client connections...\n");
|
||||||
|
|
||||||
BIO_printf(bio_err, "Waiting for OCSP client connection...\n");
|
return acbio;
|
||||||
|
|
||||||
|
err:
|
||||||
|
BIO_free_all(acbio);
|
||||||
|
BIO_free(bufbio);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
if (BIO_do_accept(acbio) <= 0)
|
if (BIO_do_accept(acbio) <= 0)
|
||||||
{
|
{
|
||||||
BIO_printf(bio_err, "Error accepting connection\n");
|
BIO_printf(bio_err, "Error accepting connection\n");
|
||||||
ERR_print_errors(bio_err);
|
ERR_print_errors(bio_err);
|
||||||
goto err;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
BIO_printf(bio_err, "Connection Established\n");
|
|
||||||
|
|
||||||
|
|
||||||
cbio = BIO_pop(acbio);
|
cbio = BIO_pop(acbio);
|
||||||
BIO_free_all(acbio);
|
*pcbio = cbio;
|
||||||
acbio = NULL;
|
|
||||||
|
|
||||||
for(;;)
|
for(;;)
|
||||||
{
|
{
|
||||||
len = BIO_gets(cbio, inbuf, 1024);
|
len = BIO_gets(cbio, inbuf, 1024);
|
||||||
if (len <= 0) goto err;
|
if (len <= 0)
|
||||||
|
return 1;
|
||||||
/* Look for "POST" signalling start of query */
|
/* Look for "POST" signalling start of query */
|
||||||
if (!have_post)
|
if (!have_post)
|
||||||
{
|
{
|
||||||
if(strncmp(inbuf, "POST", 4))
|
if(strncmp(inbuf, "POST", 4))
|
||||||
{
|
{
|
||||||
BIO_printf(bio_err, "Invalid request\n");
|
BIO_printf(bio_err, "Invalid request\n");
|
||||||
goto err;
|
return 1;
|
||||||
}
|
}
|
||||||
have_post = 1;
|
have_post = 1;
|
||||||
}
|
}
|
||||||
|
@ -1116,22 +1179,16 @@ static OCSP_REQUEST *do_responder(BIO **pcbio, char *port)
|
||||||
|
|
||||||
req = d2i_OCSP_REQUEST_bio(cbio, NULL);
|
req = d2i_OCSP_REQUEST_bio(cbio, NULL);
|
||||||
|
|
||||||
*pcbio = cbio;
|
|
||||||
|
|
||||||
if (!req)
|
if (!req)
|
||||||
{
|
{
|
||||||
BIO_printf(bio_err, "Error parsing OCSP request\n");
|
BIO_printf(bio_err, "Error parsing OCSP request\n");
|
||||||
ERR_print_errors(bio_err);
|
ERR_print_errors(bio_err);
|
||||||
}
|
}
|
||||||
|
|
||||||
return req;
|
*preq = req;
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
|
||||||
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)
|
static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp)
|
||||||
|
|
|
@ -46,9 +46,9 @@ determine the (revocation) state of an identified certificate (RFC 2560).
|
||||||
|
|
||||||
The B<ocsp> command performs many common OCSP tasks. It can be used
|
The B<ocsp> command performs many common OCSP tasks. It can be used
|
||||||
to print out requests and responses, create requests and send queries
|
to print out requests and responses, create requests and send queries
|
||||||
to an OCSP responder.
|
to an OCSP responder and behave like a mini OCSP server itself.
|
||||||
|
|
||||||
=head1 OPTIONS
|
=head1 OCSP CLIENT OPTIONS
|
||||||
|
|
||||||
=over 4
|
=over 4
|
||||||
|
|
||||||
|
@ -191,6 +191,65 @@ check is not performed.
|
||||||
|
|
||||||
=back
|
=back
|
||||||
|
|
||||||
|
=head1 OCSP SERVER OPTIONS
|
||||||
|
|
||||||
|
=over 4
|
||||||
|
|
||||||
|
=item B<-index indexfile>
|
||||||
|
|
||||||
|
B<indexfile> is a text index file in B<ca> format containing certificate revocation
|
||||||
|
information.
|
||||||
|
|
||||||
|
If the B<index> option is specified the B<ocsp> utility is in responder mode, otherwise
|
||||||
|
it is in client mode. The request(s) the responder processes can be either specified on
|
||||||
|
the command line (using B<issuer> and B<serial> options), supplied in a file (using the
|
||||||
|
B<respin> option) or via external OCSP clients (if B<port> or B<url> is specified).
|
||||||
|
|
||||||
|
If the B<index> option is present then the B<CA> and B<rsigner> options must also be
|
||||||
|
present.
|
||||||
|
|
||||||
|
=item B<-CA file>
|
||||||
|
|
||||||
|
CA certificate corresponding to the revocation information in B<indexfile>.
|
||||||
|
|
||||||
|
=item B<-rsigner file>
|
||||||
|
|
||||||
|
The certificate to sign OCSP responses with.
|
||||||
|
|
||||||
|
=item B<-rother file>
|
||||||
|
|
||||||
|
Additional certificates to include in the OCSP response.
|
||||||
|
|
||||||
|
=item B<-resp_no_certs>
|
||||||
|
|
||||||
|
Don't include any certificates in the OCSP response.
|
||||||
|
|
||||||
|
=item B<-resp_key_id>
|
||||||
|
|
||||||
|
Identify the signer certificate using the key ID, default is to use the subject name.
|
||||||
|
|
||||||
|
=item B<-rkey file>
|
||||||
|
|
||||||
|
The private key to sign OCSP responses with: if not present the file specified in the
|
||||||
|
B<rsigner> option is used.
|
||||||
|
|
||||||
|
=item B<-port portnum>
|
||||||
|
|
||||||
|
Port to listen for OCSP requests on. The port may also be specified using the B<url>
|
||||||
|
option.
|
||||||
|
|
||||||
|
=item B<-nrequest number>
|
||||||
|
|
||||||
|
The OCSP server will exit after receiving B<number> requests, default unlimited.
|
||||||
|
|
||||||
|
=item B<-nmin minutes>, B<-ndays days>
|
||||||
|
|
||||||
|
Number of minutes or days when fresh revocation information is available: used in the
|
||||||
|
B<nextUpdate> field. If neither option is present then the B<nextUpdate> field is
|
||||||
|
omitted meaning fresh revocation information is immediately available.
|
||||||
|
|
||||||
|
=back
|
||||||
|
|
||||||
=head1 OCSP Response verification.
|
=head1 OCSP Response verification.
|
||||||
|
|
||||||
OCSP Response follows the rules specified in RFC2560.
|
OCSP Response follows the rules specified in RFC2560.
|
||||||
|
@ -239,13 +298,24 @@ As noted, most of the verify options are for testing or debugging purposes.
|
||||||
Normally only the B<-CApath>, B<-CAfile> and (if the responder is a 'global
|
Normally only the B<-CApath>, B<-CAfile> and (if the responder is a 'global
|
||||||
VA') B<-VAfile> options need to be used.
|
VA') B<-VAfile> options need to be used.
|
||||||
|
|
||||||
|
The OCSP server is only useful for test and demonstration purposes: it is
|
||||||
|
not really usable as a full OCSP responder. It contains only a very
|
||||||
|
simple HTTP request handling and can only handle the POST form of OCSP
|
||||||
|
queries. It also handles requests serially meaning it cannot respond to
|
||||||
|
new requests until it has processed the current one. The text index file
|
||||||
|
format of revocation is also inefficient for large quantities of revocation
|
||||||
|
data.
|
||||||
|
|
||||||
|
It is possible to run the B<ocsp> application in responder mode via a CGI
|
||||||
|
script using the B<respin> and B<respout> options.
|
||||||
|
|
||||||
=head1 EXAMPLES
|
=head1 EXAMPLES
|
||||||
|
|
||||||
Create an OCSP request and write it to a file:
|
Create an OCSP request and write it to a file:
|
||||||
|
|
||||||
openssl ocsp -issuer issuer.pem -cert c1.pem -cert c2.pem -reqout req.der
|
openssl ocsp -issuer issuer.pem -cert c1.pem -cert c2.pem -reqout req.der
|
||||||
|
|
||||||
Send a query an OCSP responder with URL http://ocsp.myhost.com/ save the
|
Send a query to an OCSP responder with URL http://ocsp.myhost.com/ save the
|
||||||
response to a file and print it out in text form
|
response to a file and print it out in text form
|
||||||
|
|
||||||
openssl ocsp -issuer issuer.pem -cert c1.pem -cert c2.pem \
|
openssl ocsp -issuer issuer.pem -cert c1.pem -cert c2.pem \
|
||||||
|
@ -255,3 +325,24 @@ Read in an OCSP response and print out text form:
|
||||||
|
|
||||||
openssl ocsp -respin resp.der -text
|
openssl ocsp -respin resp.der -text
|
||||||
|
|
||||||
|
OCSP server on port 8888 using a standard B<ca> configuration, and a separate
|
||||||
|
responder certificate. All requests and responses are printed to a file.
|
||||||
|
|
||||||
|
openssl ocsp -index demoCA/index.txt -port 8888 -rsigner rcert.pem -CA demoCA/cacert.pem
|
||||||
|
-text -out log.txt
|
||||||
|
|
||||||
|
As above but exit after processing one request:
|
||||||
|
|
||||||
|
openssl ocsp -index demoCA/index.txt -port 8888 -rsigner rcert.pem -CA demoCA/cacert.pem
|
||||||
|
-nrequest 1
|
||||||
|
|
||||||
|
Query status information using internally generated request:
|
||||||
|
|
||||||
|
openssl ocsp -index demoCA/index.txt -rsigner rcert.pem -CA demoCA/cacert.pem
|
||||||
|
-issuer demoCA/cacert.pem -serial 1
|
||||||
|
|
||||||
|
Query status information using request read from a file, write response to a
|
||||||
|
second file.
|
||||||
|
|
||||||
|
openssl ocsp -index demoCA/index.txt -rsigner rcert.pem -CA demoCA/cacert.pem
|
||||||
|
-reqin req.der -respout resp.der
|
||||||
|
|
Loading…
Reference in a new issue