mirror of
https://github.com/systemd/systemd.git
synced 2025-01-07 21:18:41 +03:00
Merge pull request #33019 from yuwata/tpm2-unseal
tpm2: several fixlets
This commit is contained in:
commit
bf7d672f5d
@ -329,7 +329,7 @@ int enroll_tpm2(struct crypt_device *cd,
|
||||
|
||||
r = tpm2_load_pcr_signature(signature_path, &signature_json);
|
||||
if (r < 0)
|
||||
return log_debug_errno(r, "Failed to read TPM PCR signature: %m");
|
||||
return log_error_errno(r, "Failed to read TPM PCR signature: %m");
|
||||
}
|
||||
}
|
||||
} else
|
||||
@ -342,6 +342,8 @@ int enroll_tpm2(struct crypt_device *cd,
|
||||
r = tpm2_pcrlock_policy_load(pcrlock_path, &pcrlock_policy);
|
||||
if (r < 0)
|
||||
return r;
|
||||
if (r == 0)
|
||||
return log_error_errno(SYNTHETIC_ERRNO(ENOENT), "Couldn't find pcrlock policy %s.", pcrlock_path);
|
||||
|
||||
any_pcr_value_specified = true;
|
||||
flags |= TPM2_FLAGS_USE_PCRLOCK;
|
||||
|
@ -199,7 +199,7 @@ int acquire_tpm2_key(
|
||||
pubkey_pcr_mask,
|
||||
signature_json,
|
||||
b64_salted_pin,
|
||||
pcrlock_path ? &pcrlock_policy : NULL,
|
||||
FLAGS_SET(flags, TPM2_FLAGS_USE_PCRLOCK) ? &pcrlock_policy : NULL,
|
||||
primary_alg,
|
||||
&blob,
|
||||
policy_hash,
|
||||
|
Loading…
Reference in New Issue
Block a user