]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
ERR: fix err_data_size inconsistencies
authorRichard Levitte <levitte@openssl.org>
Wed, 31 Jul 2019 07:27:05 +0000 (09:27 +0200)
committerRichard Levitte <levitte@openssl.org>
Wed, 31 Jul 2019 11:22:13 +0000 (13:22 +0200)
In ERR_add_error_vdata(), the size of err_data had 1 added to it in
some spots, which could lead to buffer overflow.

In ERR_vset_error(), ERR_MAX_DATA_SIZE was used instead of buf_size in
the BIO_vsnprintf() call, which would lead to a buffer overflow if
such a large buffer couldn't be allocated.

Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/9491)

crypto/err/err.c
crypto/err/err_blocks.c

index f129c1c7d668495f83712162f5e661cdf2e13203..24549e3a4935d028c093c8b1c41d2b9f068c324b 100644 (file)
@@ -795,18 +795,18 @@ void ERR_add_error_vdata(int num, va_list args)
         if (arg == NULL)
             arg = "<NULL>";
         len += strlen(arg);
-        if (len > size) {
+        if (len >= size) {
             char *p;
 
             size = len + 20;
-            p = OPENSSL_realloc(str, size + 1);
+            p = OPENSSL_realloc(str, size);
             if (p == NULL) {
                 OPENSSL_free(str);
                 return;
             }
             str = p;
         }
-        OPENSSL_strlcat(str, arg, (size_t)size + 1);
+        OPENSSL_strlcat(str, arg, (size_t)size);
     }
     if (!err_set_error_data_int(str, size, flags, 0))
         OPENSSL_free(str);
index 49086bd0c2242c7b2d557894ae786f73abcb04f1..cf1bb9708aba10cd0c2791411b5d23994c9a9ec2 100644 (file)
@@ -85,7 +85,7 @@ void ERR_vset_error(int lib, int reason, const char *fmt, va_list args)
         }
 
         if (buf != NULL) {
-            printed_len = BIO_vsnprintf(buf, ERR_MAX_DATA_SIZE, fmt, args);
+            printed_len = BIO_vsnprintf(buf, buf_size, fmt, args);
         }
         if (printed_len < 0)
             printed_len = 0;