]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Do not ignore empty associated data with AES-SIV mode
authorTomas Mraz <tomas@openssl.org>
Tue, 4 Jul 2023 15:30:35 +0000 (17:30 +0200)
committerTomas Mraz <tomas@openssl.org>
Fri, 14 Jul 2023 10:59:02 +0000 (12:59 +0200)
The AES-SIV mode allows for multiple associated data items
authenticated separately with any of these being 0 length.

The provided implementation ignores such empty associated data
which is incorrect in regards to the RFC 5297 and is also
a security issue because such empty associated data then become
unauthenticated if an application expects to authenticate them.

Fixes CVE-2023-2975

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/21384)

providers/implementations/ciphers/cipher_aes_siv.c

index fe83a5d9a6be407ef9032038691e97bccd760462..01d02b14874cff18a5e4e124a01470408d67b37e 100644 (file)
@@ -118,14 +118,18 @@ static int siv_cipher(void *vctx, unsigned char *out, size_t *outl,
     if (!ossl_prov_is_running())
         return 0;
 
-    if (inl == 0) {
-        *outl = 0;
-        return 1;
-    }
+    /* Ignore just empty encryption/decryption call and not AAD. */
+    if (out != NULL) {
+        if (inl == 0) {
+            if (outl != NULL)
+                *outl = 0;
+            return 1;
+        }
 
-    if (outsize < inl) {
-        ERR_raise(ERR_LIB_PROV, PROV_R_OUTPUT_BUFFER_TOO_SMALL);
-        return 0;
+        if (outsize < inl) {
+            ERR_raise(ERR_LIB_PROV, PROV_R_OUTPUT_BUFFER_TOO_SMALL);
+            return 0;
+        }
     }
 
     if (ctx->hw->cipher(ctx, out, in, inl) <= 0)