mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 09:08:04 -05:00
Connect to CRL Distribution Points through the configured proxy when verifying
This commit is contained in:
parent
42e9733916
commit
1bc7fc36b8
6
NEWS.md
6
NEWS.md
@ -11,8 +11,10 @@
|
|||||||
by using the "-verbose" option
|
by using the "-verbose" option
|
||||||
- added new command "extract-data" to extract a PKCS#7 data content to be signed
|
- added new command "extract-data" to extract a PKCS#7 data content to be signed
|
||||||
- PKCS9_SEQUENCE_NUMBER authenticated attribute support
|
- PKCS9_SEQUENCE_NUMBER authenticated attribute support
|
||||||
- added the "-ignore-cdp" option to disable CRL Distribution Points
|
- added the "-ignore-cdp" option to disable CRL Distribution Points (CDP)
|
||||||
online verification
|
online verification, inability to retrieve CRL from CDP is a critical error
|
||||||
|
- modified the "-p" option to also connect to CRL Distribution Points
|
||||||
|
through the configured proxy when verifying
|
||||||
|
|
||||||
### 2.7 (2023.09.19)
|
### 2.7 (2023.09.19)
|
||||||
|
|
||||||
|
@ -227,6 +227,26 @@ static PKCS7 *pkcs7_get_sigfile(FILE_FORMAT_CTX *ctx);
|
|||||||
|
|
||||||
static int blob_has_nl = 0;
|
static int blob_has_nl = 0;
|
||||||
|
|
||||||
|
static void print_proxy(char *proxy)
|
||||||
|
{
|
||||||
|
if (proxy) {
|
||||||
|
printf ("Using configured proxy: %s\n", proxy);
|
||||||
|
} else {
|
||||||
|
char *http_proxy, *https_proxy;
|
||||||
|
|
||||||
|
http_proxy = getenv("http_proxy");
|
||||||
|
if (!http_proxy)
|
||||||
|
http_proxy = getenv("HTTP_PROXY");
|
||||||
|
if (http_proxy && *http_proxy != '\0')
|
||||||
|
printf ("Using environmental HTTP proxy: %s\n", http_proxy);
|
||||||
|
https_proxy = getenv("https_proxy");
|
||||||
|
if (!https_proxy)
|
||||||
|
https_proxy = getenv("HTTPS_PROXY");
|
||||||
|
if (https_proxy && *https_proxy != '\0')
|
||||||
|
printf ("Using environmental HTTPS proxy: %s\n", https_proxy);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Callback for writing received data
|
* Callback for writing received data
|
||||||
*/
|
*/
|
||||||
@ -527,6 +547,7 @@ static BIO *bio_get_http(long *http_code, char *url, BIO *bout, char *proxy,
|
|||||||
if (!url) {
|
if (!url) {
|
||||||
return NULL; /* FAILED */
|
return NULL; /* FAILED */
|
||||||
}
|
}
|
||||||
|
print_proxy(proxy);
|
||||||
/* Start a libcurl easy session and set options for a curl easy handle */
|
/* Start a libcurl easy session and set options for a curl easy handle */
|
||||||
printf("Connecting to %s\n", url);
|
printf("Connecting to %s\n", url);
|
||||||
curl = curl_easy_init();
|
curl = curl_easy_init();
|
||||||
@ -1591,16 +1612,17 @@ out:
|
|||||||
/*
|
/*
|
||||||
* Get Certificate Revocation List from a CRL distribution point
|
* Get Certificate Revocation List from a CRL distribution point
|
||||||
* and write it into the X509_CRL structure.
|
* and write it into the X509_CRL structure.
|
||||||
|
* [in] proxy: proxy to getting CRL through
|
||||||
* [in] url: URL of the CRL distribution point server
|
* [in] url: URL of the CRL distribution point server
|
||||||
* [returns] X509 Certificate Revocation List
|
* [returns] X509 Certificate Revocation List
|
||||||
*/
|
*/
|
||||||
static X509_CRL *x509_crl_get(char *url)
|
static X509_CRL *x509_crl_get(char *proxy, char *url)
|
||||||
{
|
{
|
||||||
X509_CRL *crl;
|
X509_CRL *crl;
|
||||||
BIO *bio;
|
BIO *bio;
|
||||||
long http_code = -1;
|
long http_code = -1;
|
||||||
|
|
||||||
bio = bio_get_http(&http_code, url, NULL, NULL, 0, 1, 0);
|
bio = bio_get_http(&http_code, url, NULL, proxy, 0, 1, 0);
|
||||||
if (!bio) {
|
if (!bio) {
|
||||||
printf("Warning: Faild to get CRL from %s\n\n", url);
|
printf("Warning: Faild to get CRL from %s\n\n", url);
|
||||||
return NULL; /* FAILED */
|
return NULL; /* FAILED */
|
||||||
@ -1798,11 +1820,12 @@ static int verify_timestamp(FILE_FORMAT_CTX *ctx, PKCS7 *p7, CMS_ContentInfo *ti
|
|||||||
printf("Ignored TSA's CRL distribution point: %s\n", url);
|
printf("Ignored TSA's CRL distribution point: %s\n", url);
|
||||||
} else {
|
} else {
|
||||||
printf("TSA's CRL distribution point: %s\n", url);
|
printf("TSA's CRL distribution point: %s\n", url);
|
||||||
crl = x509_crl_get(url);
|
crl = x509_crl_get(ctx->options->proxy, url);
|
||||||
}
|
}
|
||||||
OPENSSL_free(url);
|
OPENSSL_free(url);
|
||||||
if (!crl && !ctx->options->tsa_crlfile) {
|
if (!crl && !ctx->options->tsa_crlfile) {
|
||||||
printf("Use the \"-TSA-CRLfile\" option to add one or more Time-Stamp Authority CRLs in PEM format.\n");
|
printf("Use the \"-TSA-CRLfile\" option to add one or more Time-Stamp Authority CRLs in PEM format.\n");
|
||||||
|
goto out;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif /* ENABLE_CURL */
|
#endif /* ENABLE_CURL */
|
||||||
@ -1923,7 +1946,7 @@ static int verify_authenticode(FILE_FORMAT_CTX *ctx, PKCS7 *p7, time_t time, X50
|
|||||||
printf("Ignored CRL distribution point: %s\n", url);
|
printf("Ignored CRL distribution point: %s\n", url);
|
||||||
} else {
|
} else {
|
||||||
printf("CRL distribution point: %s\n", url);
|
printf("CRL distribution point: %s\n", url);
|
||||||
crl = x509_crl_get(url);
|
crl = x509_crl_get(ctx->options->proxy, url);
|
||||||
}
|
}
|
||||||
OPENSSL_free(url);
|
OPENSSL_free(url);
|
||||||
if (!crl && !ctx->options->crlfile) {
|
if (!crl && !ctx->options->crlfile) {
|
||||||
@ -3037,6 +3060,7 @@ static void usage(const char *argv0, const char *cmd)
|
|||||||
printf("%12s[ -CRLfile <infile> ]\n", "");
|
printf("%12s[ -CRLfile <infile> ]\n", "");
|
||||||
printf("%12s[ -TSA-CAfile <infile> ]\n", "");
|
printf("%12s[ -TSA-CAfile <infile> ]\n", "");
|
||||||
printf("%12s[ -TSA-CRLfile <infile> ]\n", "");
|
printf("%12s[ -TSA-CRLfile <infile> ]\n", "");
|
||||||
|
printf("%12s[ -p <proxy> ]\n", "");
|
||||||
printf("%12s[ -index <index> ]\n", "");
|
printf("%12s[ -index <index> ]\n", "");
|
||||||
printf("%12s[ -ignore-timestamp ]\n", "");
|
printf("%12s[ -ignore-timestamp ]\n", "");
|
||||||
printf("%12s[ -ignore-cdp ]\n", "");
|
printf("%12s[ -ignore-cdp ]\n", "");
|
||||||
@ -3090,7 +3114,7 @@ static void help_for(const char *argv0, const char *cmd)
|
|||||||
const char *cmds_out[] = {"add", "attach-signature", "extract-signature",
|
const char *cmds_out[] = {"add", "attach-signature", "extract-signature",
|
||||||
"remove-signature", "sign", "extract-data", NULL};
|
"remove-signature", "sign", "extract-data", NULL};
|
||||||
#ifdef ENABLE_CURL
|
#ifdef ENABLE_CURL
|
||||||
const char *cmds_p[] = {"add", "sign", NULL};
|
const char *cmds_p[] = {"add", "sign", "verify", NULL};
|
||||||
#endif /* ENABLE_CURL */
|
#endif /* ENABLE_CURL */
|
||||||
const char *cmds_pass[] = {"sign", NULL};
|
const char *cmds_pass[] = {"sign", NULL};
|
||||||
const char *cmds_pem[] = {"sign", "extract-data", "extract-signature", NULL};
|
const char *cmds_pem[] = {"sign", "extract-data", "extract-signature", NULL};
|
||||||
@ -3223,7 +3247,7 @@ static void help_for(const char *argv0, const char *cmd)
|
|||||||
printf("%-24s= output file\n", "-out");
|
printf("%-24s= output file\n", "-out");
|
||||||
#ifdef ENABLE_CURL
|
#ifdef ENABLE_CURL
|
||||||
if (on_list(cmd, cmds_p))
|
if (on_list(cmd, cmds_p))
|
||||||
printf("%-24s= proxy to connect to the desired Time-Stamp Authority server\n", "-p");
|
printf("%-24s= proxy to connect to the desired Time-Stamp Authority server or CRL distribution point\n", "-p");
|
||||||
#endif /* ENABLE_CURL */
|
#endif /* ENABLE_CURL */
|
||||||
if (on_list(cmd, cmds_pass))
|
if (on_list(cmd, cmds_pass))
|
||||||
printf("%-24s= the private key password\n", "-pass");
|
printf("%-24s= the private key password\n", "-pass");
|
||||||
@ -4129,7 +4153,7 @@ static int main_configure(int argc, char **argv, GLOBAL_OPTIONS *options)
|
|||||||
return 0; /* FAILED */
|
return 0; /* FAILED */
|
||||||
}
|
}
|
||||||
options->tsurl[options->ntsurl++] = *(++argv);
|
options->tsurl[options->ntsurl++] = *(++argv);
|
||||||
} else if ((cmd == CMD_SIGN || cmd == CMD_ADD) && !strcmp(*argv, "-p")) {
|
} else if ((cmd == CMD_SIGN || cmd == CMD_ADD || cmd == CMD_VERIFY) && !strcmp(*argv, "-p")) {
|
||||||
if (--argc < 1) {
|
if (--argc < 1) {
|
||||||
usage(argv0, "all");
|
usage(argv0, "all");
|
||||||
return 0; /* FAILED */
|
return 0; /* FAILED */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user