SSL_get_shared_sigalgs: handle negative idx parameter
authorPeter Wu <peter@lekensteyn.nl>
Thu, 2 Feb 2017 11:11:10 +0000 (12:11 +0100)
committerMatt Caswell <matt@openssl.org>
Thu, 9 Feb 2017 09:48:46 +0000 (09:48 +0000)
When idx is negative (as is the case with do_print_sigalgs in
apps/s_cb.c), AddressSanitizer complains about a buffer overflow (read).
Even if the pointer is not dereferenced, this is undefined behavior.

Change the user not to use "-1" as index since the function is
documented to return 0 on out-of-range values.

Tested with `openssl s_server` and `curl -k https://localhost:4433`.

Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2349)

apps/s_cb.c
ssl/t1_lib.c

index 550969d70495d9ad82d92d2df14a5c26cf0b9751..e0d432dc75586c16a32280da9cdd941e1ac58f19 100644 (file)
@@ -239,7 +239,7 @@ static int do_print_sigalgs(BIO *out, SSL *s, int shared)
     int i, nsig, client;
     client = SSL_is_server(s) ? 0 : 1;
     if (shared)
-        nsig = SSL_get_shared_sigalgs(s, -1, NULL, NULL, NULL, NULL, NULL);
+        nsig = SSL_get_shared_sigalgs(s, 0, NULL, NULL, NULL, NULL, NULL);
     else
         nsig = SSL_get_sigalgs(s, -1, NULL, NULL, NULL, NULL, NULL);
     if (nsig == 0)
index 1534a54f39fab8382fd9de63fde670148b398be3..43340d4d49f272eb37ff1a261dadc481e2b139c9 100644 (file)
@@ -1684,6 +1684,7 @@ int SSL_get_shared_sigalgs(SSL *s, int idx,
 {
     const SIGALG_LOOKUP *shsigalgs;
     if (s->cert->shared_sigalgs == NULL
+        || idx < 0
         || idx >= (int)s->cert->shared_sigalgslen
         || s->cert->shared_sigalgslen > INT_MAX)
         return 0;