]> git.ipfire.org Git - thirdparty/openvpn.git/commitdiff
Drop too-short control channel packets instead of asserting out.
authorSteffan Karger <steffan.karger@fox-it.com>
Thu, 20 Nov 2014 12:43:05 +0000 (13:43 +0100)
committerGert Doering <gert@greenie.muc.de>
Fri, 28 Nov 2014 19:33:09 +0000 (20:33 +0100)
This fixes a denial-of-service vulnerability where an authenticated client
could stop the server by triggering a server-side ASSERT().

OpenVPN would previously ASSERT() that control channel packets have a
payload of at least 4 bytes. An authenticated client could trigger this
assert by sending a too-short control channel packet to the server.

Thanks to Dragana Damjanovic for reporting the issue.

This bug has been assigned CVE-2014-8104.

Signed-off-by: Steffan Karger <steffan.karger@fox-it.com>
Acked-by: Gert Doering <gert@greenie.muc.de>
Message-Id: <1CED409804E2164C8104F9E623B08B9018803B0FE7@FOXDFT02.FOX.local>
Signed-off-by: Gert Doering <gert@greenie.muc.de>
(cherry picked from commit c5590a6821e37f3b29735f55eb0c2b9c0924138c)

src/openvpn/ssl.c

index 23735821a6759fdc15c175e8d28a3a4b383f1749..daffbf3d08d275854c6dd5ced649ce5da200587b 100644 (file)
@@ -2035,7 +2035,11 @@ key_method_2_read (struct buffer *buf, struct tls_multi *multi, struct tls_sessi
   ASSERT (session->opt->key_method == 2);
 
   /* discard leading uint32 */
-  ASSERT (buf_advance (buf, 4));
+  if (!buf_advance (buf, 4)) {
+    msg (D_TLS_ERRORS, "TLS ERROR: Plaintext buffer too short (%d bytes).",
+       buf->len);
+    goto error;
+  }
 
   /* get key method */
   key_method_flags = buf_read_u8 (buf);