Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
DescriptionJerry Snitselaar
2021-07-21 19:00:41 UTC
Description of problem:
Create RSA and ECC key pairs in PEM format using openssl
Convert key pair to plaintext DER format
Load the RSA openssl key pair in the NULL hierarchy 80000001 - sha1
ERROR:
convertRsaDerToKeyPair: could not convert key to RSA
loadexternal: failed, rc 00000084
TPM_RC_VALUE - value is out of range or is not correct for the context Handle number unspecified
/var/str/tss /var/str
/var/str
TPM_RC convertRsaDerToKeyPair(TPM2B_PUBLIC *objectPublic,
TPM2B_SENSITIVE *objectSensitive,
int keyType,
TPMI_ALG_SIG_SCHEME scheme,
TPMI_ALG_HASH nalg,
TPMI_ALG_HASH halg,
const char *derKeyFilename,
const char *password)
{
TPM_RC rc = 0;
RSA *rsaKey = NULL;
unsigned char *derBuffer = NULL;
size_t derSize;
/* read the DER file */
if (rc == 0) {
rc = TSS_File_ReadBinaryFile(&derBuffer, /* freed @1 */
&derSize,
derKeyFilename);
}
if (rc == 0) {
const unsigned char *tmpPtr = derBuffer; /* because pointer moves */
>>> rsaKey = d2i_RSAPrivateKey(NULL, &tmpPtr, (long)derSize); /* freed @2 */
if (rsaKey == NULL) {
printf("convertRsaDerToKeyPair: could not convert key to RSA\n");
rc = TPM_RC_VALUE;
}
}
if (rc == 0) {
rc = convertRsaKeyToPrivate(NULL, /* TPM2B_PRIVATE */
objectSensitive, /* TPM2B_SENSITIVE */
rsaKey,
password);
}
if (rc == 0) {
rc = convertRsaKeyToPublic(objectPublic,
keyType,
scheme,
nalg,
halg,
rsaKey);
}
free(derBuffer); /* @1 */
TSS_RsaFree(rsaKey); /* @2 */
return rc;
}
Version-Release number of selected component (if applicable):
How reproducible: Reproduces every run of gating test. So 1minutetip rhel9 should trigger it. You can also look at the specific failing test in utils/regtests/testsalt.sh.
Steps to Reproduce:
1.
2.
3.
Actual results:
Expected results:
Additional info:
There was a fix upstream in openssl 3 involving d2i functions that went into beta1, but trying to test with beta1 I still see the failure. Ken Goldman at IBM is working on porting tss2 from using any deprecated functions.
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.
For information on the advisory (new packages: tss2), and where to find the updated
files, follow the link below.
If the solution does not work for you, open a new bug report.
https://access.redhat.com/errata/RHBA-2022:4047
Description of problem: Create RSA and ECC key pairs in PEM format using openssl Convert key pair to plaintext DER format Load the RSA openssl key pair in the NULL hierarchy 80000001 - sha1 ERROR: convertRsaDerToKeyPair: could not convert key to RSA loadexternal: failed, rc 00000084 TPM_RC_VALUE - value is out of range or is not correct for the context Handle number unspecified /var/str/tss /var/str /var/str TPM_RC convertRsaDerToKeyPair(TPM2B_PUBLIC *objectPublic, TPM2B_SENSITIVE *objectSensitive, int keyType, TPMI_ALG_SIG_SCHEME scheme, TPMI_ALG_HASH nalg, TPMI_ALG_HASH halg, const char *derKeyFilename, const char *password) { TPM_RC rc = 0; RSA *rsaKey = NULL; unsigned char *derBuffer = NULL; size_t derSize; /* read the DER file */ if (rc == 0) { rc = TSS_File_ReadBinaryFile(&derBuffer, /* freed @1 */ &derSize, derKeyFilename); } if (rc == 0) { const unsigned char *tmpPtr = derBuffer; /* because pointer moves */ >>> rsaKey = d2i_RSAPrivateKey(NULL, &tmpPtr, (long)derSize); /* freed @2 */ if (rsaKey == NULL) { printf("convertRsaDerToKeyPair: could not convert key to RSA\n"); rc = TPM_RC_VALUE; } } if (rc == 0) { rc = convertRsaKeyToPrivate(NULL, /* TPM2B_PRIVATE */ objectSensitive, /* TPM2B_SENSITIVE */ rsaKey, password); } if (rc == 0) { rc = convertRsaKeyToPublic(objectPublic, keyType, scheme, nalg, halg, rsaKey); } free(derBuffer); /* @1 */ TSS_RsaFree(rsaKey); /* @2 */ return rc; } Version-Release number of selected component (if applicable): How reproducible: Reproduces every run of gating test. So 1minutetip rhel9 should trigger it. You can also look at the specific failing test in utils/regtests/testsalt.sh. Steps to Reproduce: 1. 2. 3. Actual results: Expected results: Additional info: