Blame SOURCES/0001-tpm2_import-fix-fixed-AES-key-CVE-2021-3565.patch

5b830c
From c069e4f179d5e6653a84fb236816c375dca82515 Mon Sep 17 00:00:00 2001
5b830c
From: William Roberts <william.c.roberts@intel.com>
5b830c
Date: Fri, 21 May 2021 12:22:31 -0500
5b830c
Subject: [PATCH] tpm2_import: fix fixed AES key CVE-2021-3565
5b830c
5b830c
tpm2_import used a fixed AES key for the inner wrapper, which means that
5b830c
a MITM attack would be able to unwrap the imported key. Even the
5b830c
use of an encrypted session will not prevent this. The TPM only
5b830c
encrypts the first parameter which is the fixed symmetric key.
5b830c
5b830c
To fix this, ensure the key size is 16 bytes or bigger and use
5b830c
OpenSSL to generate a secure random AES key.
5b830c
5b830c
Fixes: #2738
5b830c
5b830c
Signed-off-by: William Roberts <william.c.roberts@intel.com>
5b830c
---
5b830c
 tools/tpm2_import.c | 12 +++++++++++-
5b830c
 1 file changed, 11 insertions(+), 1 deletion(-)
5b830c
5b830c
diff --git a/tools/tpm2_import.c b/tools/tpm2_import.c
5b830c
index cfb6f207ba9c..f44326c87e7e 100644
5b830c
--- a/tools/tpm2_import.c
5b830c
+++ b/tools/tpm2_import.c
5b830c
@@ -118,7 +118,17 @@ static tool_rc key_import(ESYS_CONTEXT *ectx, TPM2B_PUBLIC *parent_pub,
5b830c
     TPM2B_DATA enc_sensitive_key = {
5b830c
         .size = parent_pub->publicArea.parameters.rsaDetail.symmetric.keyBits.sym / 8
5b830c
     };
5b830c
-    memset(enc_sensitive_key.buffer, 0xFF, enc_sensitive_key.size);
5b830c
+
5b830c
+    if(enc_sensitive_key.size < 16) {
5b830c
+        LOG_ERR("Calculated wrapping keysize is less than 16 bytes, got: %u", enc_sensitive_key.size);
5b830c
+        return tool_rc_general_error;
5b830c
+    }
5b830c
+
5b830c
+    int ossl_rc = RAND_bytes(enc_sensitive_key.buffer, enc_sensitive_key.size);
5b830c
+    if (ossl_rc != 1) {
5b830c
+        LOG_ERR("RAND_bytes failed: %s", ERR_error_string(ERR_get_error(), NULL));
5b830c
+        return tool_rc_general_error;
5b830c
+    }
5b830c
 
5b830c
     /*
5b830c
      * Calculate the object name.
5b830c
-- 
5b830c
2.31.0
5b830c