mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-04 17:00:11 -05:00
Fix timestamping nested signatures (#266)
This commit is contained in:
parent
b61bcaac2e
commit
56e7a72e8a
12
cab.c
12
cab.c
@ -493,16 +493,8 @@ static PKCS7 *cab_pkcs7_prepare(FILE_FORMAT_CTX *ctx, BIO *hash, BIO *outdata)
|
||||
return NULL; /* FAILED */
|
||||
}
|
||||
}
|
||||
if (ctx->options->nest) {
|
||||
if (!cursig_set_nested(cursig, p7, ctx)) {
|
||||
printf("Unable to append the nested signature to the current signature\n");
|
||||
PKCS7_free(p7);
|
||||
PKCS7_free(cursig);
|
||||
return NULL; /* FAILED */
|
||||
}
|
||||
PKCS7_free(p7);
|
||||
return cursig;
|
||||
}
|
||||
if (ctx->options->nest)
|
||||
ctx->options->prevsig = cursig;
|
||||
return p7;
|
||||
}
|
||||
|
||||
|
12
msi.c
12
msi.c
@ -660,16 +660,8 @@ static PKCS7 *msi_pkcs7_prepare(FILE_FORMAT_CTX *ctx, BIO *hash, BIO *outdata)
|
||||
return NULL; /* FAILED */
|
||||
}
|
||||
}
|
||||
if (ctx->options->nest) {
|
||||
if (!cursig_set_nested(cursig, p7, ctx)) {
|
||||
printf("Unable to append the nested signature to the current signature\n");
|
||||
PKCS7_free(p7);
|
||||
PKCS7_free(cursig);
|
||||
return NULL; /* FAILED */
|
||||
}
|
||||
PKCS7_free(p7);
|
||||
return cursig;
|
||||
}
|
||||
if (ctx->options->nest)
|
||||
ctx->options->prevsig = cursig;
|
||||
return p7;
|
||||
}
|
||||
|
||||
|
@ -2258,6 +2258,9 @@ static void free_options(GLOBAL_OPTIONS *options)
|
||||
/* If X509 structure is NULL nothing is done */
|
||||
X509_free(options->cert);
|
||||
options->cert = NULL;
|
||||
/* If PKCS7 structure is NULL nothing is done */
|
||||
PKCS7_free(options->prevsig);
|
||||
options->prevsig = NULL;
|
||||
/* Free up all elements of sk structure and sk itself */
|
||||
sk_X509_pop_free(options->certs, X509_free);
|
||||
options->certs = NULL;
|
||||
@ -3671,6 +3674,13 @@ int main(int argc, char **argv)
|
||||
PKCS7_free(p7);
|
||||
DO_EXIT_0("Unable to set unauthenticated attributes\n");
|
||||
}
|
||||
if (options.prevsig) {
|
||||
if (!cursig_set_nested(options.prevsig, p7, ctx))
|
||||
DO_EXIT_0("Unable to append the nested signature to the current signature\n");
|
||||
PKCS7_free(p7);
|
||||
p7 = options.prevsig;
|
||||
options.prevsig = NULL;
|
||||
}
|
||||
if (ctx->format->append_pkcs7) {
|
||||
ret = ctx->format->append_pkcs7(ctx, outdata, p7);
|
||||
if (ret) {
|
||||
|
@ -277,6 +277,7 @@ typedef struct {
|
||||
STACK_OF(X509_CRL) *crls;
|
||||
cmd_type_t cmd;
|
||||
char *indata;
|
||||
PKCS7 *prevsig;
|
||||
} GLOBAL_OPTIONS;
|
||||
|
||||
/*
|
||||
|
14
pe.c
14
pe.c
@ -421,7 +421,7 @@ static PKCS7 *pe_pkcs7_prepare(FILE_FORMAT_CTX *ctx, BIO *hash, BIO *outdata)
|
||||
}
|
||||
if (ctx->options->cmd == CMD_ADD)
|
||||
p7 = cursig;
|
||||
}
|
||||
}
|
||||
if (ctx->pe_ctx->sigpos > 0) {
|
||||
/* Strip current signature */
|
||||
ctx->pe_ctx->fileend = ctx->pe_ctx->sigpos;
|
||||
@ -451,16 +451,8 @@ static PKCS7 *pe_pkcs7_prepare(FILE_FORMAT_CTX *ctx, BIO *hash, BIO *outdata)
|
||||
return NULL; /* FAILED */
|
||||
}
|
||||
}
|
||||
if (ctx->options->nest) {
|
||||
if (!cursig_set_nested(cursig, p7, ctx)) {
|
||||
printf("Unable to append the nested signature to the current signature\n");
|
||||
PKCS7_free(p7);
|
||||
PKCS7_free(cursig);
|
||||
return NULL; /* FAILED */
|
||||
}
|
||||
PKCS7_free(p7);
|
||||
return cursig;
|
||||
}
|
||||
if (ctx->options->nest)
|
||||
ctx->options->prevsig = cursig;
|
||||
return p7;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user