2820983477
Update to 113 OBS-URL: https://build.opensuse.org/request/show/702580 OBS-URL: https://build.opensuse.org/package/show/Base:System/pesign?expand=0&rev=46
82 lines
2.6 KiB
Diff
82 lines
2.6 KiB
Diff
---
|
|
src/cms_common.c | 12 ++++++++++--
|
|
src/cms_common.h | 1 +
|
|
src/pesign.c | 1 +
|
|
3 files changed, 12 insertions(+), 2 deletions(-)
|
|
|
|
Index: pesign-113/src/cms_common.c
|
|
===================================================================
|
|
--- pesign-113.orig/src/cms_common.c
|
|
+++ pesign-113/src/cms_common.c
|
|
@@ -282,6 +282,7 @@ struct cbdata {
|
|
CERTCertificate *cert;
|
|
PK11SlotListElement *psle;
|
|
secuPWData *pwdata;
|
|
+ int privkey_unneeded;
|
|
};
|
|
|
|
static SECStatus
|
|
@@ -293,6 +294,12 @@ is_valid_cert(CERTCertificate *cert, voi
|
|
void *pwdata = cbdata->pwdata;
|
|
|
|
SECKEYPrivateKey *privkey = NULL;
|
|
+
|
|
+ if (cbdata->privkey_unneeded) {
|
|
+ cbdata->cert = cert;
|
|
+ return SECSuccess;
|
|
+ }
|
|
+
|
|
privkey = PK11_FindPrivateKeyFromCert(slot, cert, pwdata);
|
|
if (privkey != NULL) {
|
|
cbdata->cert = cert;
|
|
@@ -423,7 +430,7 @@ find_certificate(cms_context *cms, int n
|
|
}
|
|
|
|
SECStatus status;
|
|
- if (PK11_NeedLogin(psle->slot) && !PK11_IsLoggedIn(psle->slot, pwdata)) {
|
|
+ if (!cms->privkey_unneeded && PK11_NeedLogin(psle->slot) && !PK11_IsLoggedIn(psle->slot, pwdata)) {
|
|
status = PK11_Authenticate(psle->slot, PR_TRUE, pwdata);
|
|
if (status != SECSuccess) {
|
|
PK11_DestroySlotListElement(slots, &psle);
|
|
@@ -452,6 +459,7 @@ find_certificate(cms_context *cms, int n
|
|
.cert = NULL,
|
|
.psle = psle,
|
|
.pwdata = pwdata,
|
|
+ .privkey_unneeded = cms->privkey_unneeded,
|
|
};
|
|
|
|
if (needs_private_key) {
|
|
@@ -572,7 +580,7 @@ find_named_certificate(cms_context *cms,
|
|
}
|
|
|
|
SECStatus status;
|
|
- if (PK11_NeedLogin(psle->slot) && !PK11_IsLoggedIn(psle->slot, pwdata)) {
|
|
+ if (!cms->privkey_unneeded && PK11_NeedLogin(psle->slot) && !PK11_IsLoggedIn(psle->slot, pwdata)) {
|
|
status = PK11_Authenticate(psle->slot, PR_TRUE, pwdata);
|
|
if (status != SECSuccess) {
|
|
PK11_DestroySlotListElement(slots, &psle);
|
|
Index: pesign-113/src/cms_common.h
|
|
===================================================================
|
|
--- pesign-113.orig/src/cms_common.h
|
|
+++ pesign-113/src/cms_common.h
|
|
@@ -62,6 +62,7 @@ typedef int (*cms_common_logger)(struct
|
|
typedef struct cms_context {
|
|
PRArenaPool *arena;
|
|
void *privkey;
|
|
+ int privkey_unneeded;
|
|
|
|
char *tokenname;
|
|
char *certname;
|
|
Index: pesign-113/src/file_pe.c
|
|
===================================================================
|
|
--- pesign-113.orig/src/file_pe.c
|
|
+++ pesign-113/src/file_pe.c
|
|
@@ -354,6 +354,7 @@ pe_handle_action(pesign_context *ctxp, i
|
|
*/
|
|
case IMPORT_RAW_SIGNATURE|IMPORT_SATTRS:
|
|
check_inputs(ctxp);
|
|
+ ctxp->cms_ctx->privkey_unneeded = 1;
|
|
rc = find_certificate(ctxp->cms_ctx, 0);
|
|
if (rc < 0) {
|
|
fprintf(stderr, "pesign: Could not find "
|