|
|
62547e |
From d3602e5afa1e90c5e33625fc528db7f96195bada Mon Sep 17 00:00:00 2001
|
|
|
62547e |
From: Jon Maloy <jmaloy@redhat.com>
|
|
|
62547e |
Date: Mon, 7 Nov 2022 19:59:46 -0500
|
|
|
62547e |
Subject: [PATCH 42/42] ui/vnc-clipboard: fix integer underflow in
|
|
|
62547e |
vnc_client_cut_text_ext
|
|
|
62547e |
MIME-Version: 1.0
|
|
|
62547e |
Content-Type: text/plain; charset=UTF-8
|
|
|
62547e |
Content-Transfer-Encoding: 8bit
|
|
|
62547e |
|
|
|
62547e |
RH-Author: Jon Maloy <jmaloy@redhat.com>
|
|
|
62547e |
RH-MergeRequest: 227: ui/vnc-clipboard: fix integer underflow in vnc_client_cut_text_ext
|
|
|
62547e |
RH-Bugzilla: 2129760
|
|
|
62547e |
RH-Acked-by: Mauro Matteo Cascella <None>
|
|
|
62547e |
RH-Acked-by: Marc-André Lureau <marcandre.lureau@redhat.com>
|
|
|
62547e |
RH-Acked-by: Thomas Huth <thuth@redhat.com>
|
|
|
62547e |
RH-Acked-by: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
62547e |
RH-Commit: [1/1] ac19a6c0777e308061bcb6d1de5cc9beaa105a3a (jmaloy/qemu-kvm)
|
|
|
62547e |
|
|
|
62547e |
BZ: https://bugzilla.redhat.com/show_bug.cgi?id=2129760
|
|
|
62547e |
CVE: CVE-2022-3165
|
|
|
62547e |
Upstream: Merged
|
|
|
62547e |
|
|
|
62547e |
commit d307040b18bfcb1393b910f1bae753d5c12a4dc7
|
|
|
62547e |
Author: Mauro Matteo Cascella <mcascell@redhat.com>
|
|
|
62547e |
Date: Sun Sep 25 22:45:11 2022 +0200
|
|
|
62547e |
|
|
|
62547e |
ui/vnc-clipboard: fix integer underflow in vnc_client_cut_text_ext
|
|
|
62547e |
|
|
|
62547e |
Extended ClientCutText messages start with a 4-byte header. If len < 4,
|
|
|
62547e |
an integer underflow occurs in vnc_client_cut_text_ext. The result is
|
|
|
62547e |
used to decompress data in a while loop in inflate_buffer, leading to
|
|
|
62547e |
CPU consumption and denial of service. Prevent this by checking dlen in
|
|
|
62547e |
protocol_client_msg.
|
|
|
62547e |
|
|
|
62547e |
Fixes: CVE-2022-3165
|
|
|
62547e |
Fixes: 0bf41cab93e5 ("ui/vnc: clipboard support")
|
|
|
62547e |
Reported-by: TangPeng <tangpeng@qianxin.com>
|
|
|
62547e |
Signed-off-by: Mauro Matteo Cascella <mcascell@redhat.com>
|
|
|
62547e |
Message-Id: <20220925204511.1103214-1-mcascell@redhat.com>
|
|
|
62547e |
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
62547e |
|
|
|
62547e |
(cherry picked from commit d307040b18bfcb1393b910f1bae753d5c12a4dc7)
|
|
|
62547e |
Signed-off-by: Jon Maloy <jmaloy@redhat.com>
|
|
|
62547e |
---
|
|
|
62547e |
ui/vnc.c | 11 ++++++++---
|
|
|
62547e |
1 file changed, 8 insertions(+), 3 deletions(-)
|
|
|
62547e |
|
|
|
62547e |
diff --git a/ui/vnc.c b/ui/vnc.c
|
|
|
62547e |
index af02522e84..a14b6861be 100644
|
|
|
62547e |
--- a/ui/vnc.c
|
|
|
62547e |
+++ b/ui/vnc.c
|
|
|
62547e |
@@ -2442,8 +2442,8 @@ static int protocol_client_msg(VncState *vs, uint8_t *data, size_t len)
|
|
|
62547e |
if (len == 1) {
|
|
|
62547e |
return 8;
|
|
|
62547e |
}
|
|
|
62547e |
+ uint32_t dlen = abs(read_s32(data, 4));
|
|
|
62547e |
if (len == 8) {
|
|
|
62547e |
- uint32_t dlen = abs(read_s32(data, 4));
|
|
|
62547e |
if (dlen > (1 << 20)) {
|
|
|
62547e |
error_report("vnc: client_cut_text msg payload has %u bytes"
|
|
|
62547e |
" which exceeds our limit of 1MB.", dlen);
|
|
|
62547e |
@@ -2456,8 +2456,13 @@ static int protocol_client_msg(VncState *vs, uint8_t *data, size_t len)
|
|
|
62547e |
}
|
|
|
62547e |
|
|
|
62547e |
if (read_s32(data, 4) < 0) {
|
|
|
62547e |
- vnc_client_cut_text_ext(vs, abs(read_s32(data, 4)),
|
|
|
62547e |
- read_u32(data, 8), data + 12);
|
|
|
62547e |
+ if (dlen < 4) {
|
|
|
62547e |
+ error_report("vnc: malformed payload (header less than 4 bytes)"
|
|
|
62547e |
+ " in extended clipboard pseudo-encoding.");
|
|
|
62547e |
+ vnc_client_error(vs);
|
|
|
62547e |
+ break;
|
|
|
62547e |
+ }
|
|
|
62547e |
+ vnc_client_cut_text_ext(vs, dlen, read_u32(data, 8), data + 12);
|
|
|
62547e |
break;
|
|
|
62547e |
}
|
|
|
62547e |
vnc_client_cut_text(vs, read_u32(data, 4), data + 8);
|
|
|
62547e |
--
|
|
|
62547e |
2.37.3
|
|
|
62547e |
|