From: Michael Tokarev <mjt@tls.msk.ru>
To: Roland Dreier <roland@kernel.org>
Cc: Roland Dreier <roland@purestorage.com>,
Corentin Chary <corentincj@iksaif.net>,
qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] vnc: tight: Fix crash after 2GB of output
Date: Fri, 04 Mar 2011 10:36:08 +0300 [thread overview]
Message-ID: <4D709668.7010105@msgid.tls.msk.ru> (raw)
In-Reply-To: <1299200265-32685-1-git-send-email-roland@kernel.org>
[-- Attachment #1: Type: text/plain, Size: 2756 bytes --]
[And sure thing I forgot to Cc Corentin Chary. ENOCOFFEE.
Please excuse me for the double post]
04.03.2011 03:57, Roland Dreier wrote:
> From: Roland Dreier <roland@purestorage.com>
>
> If one leaves a VNC session with tight compression running for long
> enough, Qemu crashes. This is because of the computation
>
> bytes = zstream->total_out - previous_out;
>
> in tight_compress_data, where zstream->total_out is a uLong but
> previous_out is an int. As soon as zstream->total_out gets past
> INT_MAX (ie 2GB), previous_out becomes negative and therefore the
> result of the subtraction, bytes, becomes a huge positive number that
> causes havoc for obvious reasons when passed as a length to
> vnc_write().
Excellent work, Roland! No doubt I wasn't able to hit this bug
locally - I tried many things, but I never waited long enough
to hit this 2Gb border ;)
> The fix for this is simple: keep previous_out as a uLong too, which
> avoids any problems with sign conversion or truncation.
This looks wrong to me. On 32bit x86 uLong is 32bits. Yes
it's unsigned there, but it's still 32bits. And sure thing
it _will_ overflow again, not at 2Gb but now at 4Gb, and the
next total_out will start from zero again, so that now bytes
will be a large integer again because "next" (new total_out)
will be less than "current" (previous_out).
If the whole total_out is actually needed, that counter should
be kept separate and added to when necessary. But this
total_out should be reset to avoid letting it large values
in the first place.
total_out isn't used by zlib internally, so if the resulting
"total" counter is not needed in qemu, we can just zero-out
the total_out in this function before calling zlib, and
use the resulting value directly as "bytes", without
saving its previous value in previous_out. Something like
the attached patch does.
By the way, the same thing is used in ui/vnc-enc-zlib.c too,
and it looks like that place has the same issue as well.
Cc'ng to Corentin Chary since he made lots of work in that
area recently.
Thanks!
> Signed-off-by: Roland Dreier <roland@purestorage.com>
> ---
> ui/vnc-enc-tight.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/ui/vnc-enc-tight.c b/ui/vnc-enc-tight.c
> index af45edd..59ec0e3 100644
> --- a/ui/vnc-enc-tight.c
> +++ b/ui/vnc-enc-tight.c
> @@ -829,7 +829,7 @@ static int tight_compress_data(VncState *vs, int stream_id, size_t bytes,
> int level, int strategy)
> {
> z_streamp zstream = &vs->tight.stream[stream_id];
> - int previous_out;
> + uLong previous_out;
>
> if (bytes < VNC_TIGHT_MIN_TO_COMPRESS) {
> vnc_write(vs, vs->tight.tight.buffer, vs->tight.tight.offset);
>
[-- Attachment #2: vnc-tight-2g-overflow.diff --]
[-- Type: text/x-patch, Size: 1654 bytes --]
fix overflow after 2Gb of output in ui/vnc-enc-tight.c
When amount of compressed data is more than 2Gb we will hit
integer overflow (or when it's unsigned, the border is 4Gb).
We don't use zstream->total_out for anything, so instead of
remembering its previois value and compare with hext one,
we can just reset it on entry and use its resulting value
as the amount of bytes to deal with.
diff --git a/ui/vnc-enc-tight.c b/ui/vnc-enc-tight.c
index 2522936..e1843cb 100644
--- a/ui/vnc-enc-tight.c
+++ b/ui/vnc-enc-tight.c
@@ -849,7 +849,6 @@ static int tight_compress_data(VncState *vs, int stream_id, size_t bytes,
int level, int strategy)
{
z_streamp zstream = &vs->tight.stream[stream_id];
- int previous_out;
if (bytes < VNC_TIGHT_MIN_TO_COMPRESS) {
vnc_write(vs, vs->tight.tight.buffer, vs->tight.tight.offset);
@@ -869,7 +868,7 @@ static int tight_compress_data(VncState *vs, int stream_id, size_t bytes,
zstream->next_out = vs->tight.zlib.buffer + vs->tight.zlib.offset;
zstream->avail_out = vs->tight.zlib.capacity - vs->tight.zlib.offset;
zstream->data_type = Z_BINARY;
- previous_out = zstream->total_out;
+ zstream->total_out = 0;
/* start encoding */
if (deflate(zstream, Z_SYNC_FLUSH) != Z_OK) {
@@ -878,7 +877,7 @@ static int tight_compress_data(VncState *vs, int stream_id, size_t bytes,
}
vs->tight.zlib.offset = vs->tight.zlib.capacity - zstream->avail_out;
- bytes = zstream->total_out - previous_out;
+ bytes = zstream->total_out;
tight_send_compact_size(vs, bytes);
vnc_write(vs, vs->tight.zlib.buffer, bytes);
prev parent reply other threads:[~2011-03-04 7:36 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-04 0:57 [Qemu-devel] [PATCH] vnc: tight: Fix crash after 2GB of output Roland Dreier
2011-03-04 7:34 ` Michael Tokarev
2011-03-04 8:56 ` Corentin Chary
2011-03-04 11:46 ` Michael Tokarev
2011-03-04 21:08 ` Corentin Chary
2011-03-05 5:56 ` [Qemu-devel] [PATCH][STABLE-0.14] " Michael Tokarev
2011-03-05 8:33 ` [Qemu-devel] " Corentin Chary
2011-03-05 8:57 ` Michael Tokarev
2011-03-05 9:29 ` Corentin Chary
2011-03-04 16:59 ` [Qemu-devel] [PATCH] " Roland Dreier
2011-03-04 18:46 ` Roland Dreier
2011-03-04 7:36 ` Michael Tokarev [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4D709668.7010105@msgid.tls.msk.ru \
--to=mjt@tls.msk.ru \
--cc=corentincj@iksaif.net \
--cc=qemu-devel@nongnu.org \
--cc=roland@kernel.org \
--cc=roland@purestorage.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).