Limit status message sisze in ts_get_status_check
authorDr. Stephen Henson <steve@openssl.org>
Tue, 2 Aug 2016 20:38:37 +0000 (21:38 +0100)
committerDr. Stephen Henson <steve@openssl.org>
Thu, 4 Aug 2016 16:37:59 +0000 (17:37 +0100)
Thanks to Shi Lei for reporting this issue.

Reviewed-by: Rich Salz <rsalz@openssl.org>
(cherry picked from commit 20fc103f782bb0bcd41d211c6423187b02146b9d)

Conflicts:
include/openssl/ts.h

crypto/ts/ts.h
crypto/ts/ts_rsp_verify.c

index 16eccbb38d9504b514fbea805bf832c08b5ca672..2daa1b2fb5940e4d2806b5b3cd9bf0fb3170790d 100644 (file)
@@ -565,6 +565,9 @@ int TS_RESP_CTX_set_clock_precision_digits(TS_RESP_CTX *ctx,
 /* At most we accept usec precision. */
 # define TS_MAX_CLOCK_PRECISION_DIGITS   6
 
+/* Maximum status message length */
+# define TS_MAX_STATUS_LENGTH   (1024 * 1024)
+
 /* No flags are set by default. */
 void TS_RESP_CTX_add_flags(TS_RESP_CTX *ctx, int flags);
 
index 97d9c81db67c86f6e6015dd7f9d3977e012cdfda..7918236287f3e545cc5482d6bb24367db1eb8b82 100644 (file)
@@ -555,13 +555,15 @@ static int TS_check_status_info(TS_RESP *response)
 static char *TS_get_status_text(STACK_OF(ASN1_UTF8STRING) *text)
 {
     int i;
-    unsigned int length = 0;
+    int length = 0;
     char *result = NULL;
     char *p;
 
     /* Determine length first. */
     for (i = 0; i < sk_ASN1_UTF8STRING_num(text); ++i) {
         ASN1_UTF8STRING *current = sk_ASN1_UTF8STRING_value(text, i);
+        if (ASN1_STRING_length(current) > TS_MAX_STATUS_LENGTH - length - 1)
+            return NULL;
         length += ASN1_STRING_length(current);
         length += 1;            /* separator character */
     }