qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Eric Blake <eblake@redhat.com>
To: Paolo Bonzini <pbonzini@redhat.com>, qemu-devel@nongnu.org
Cc: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Subject: Re: [Qemu-devel] [PULL 18/18] nbd/client: fix drop_sync [CVE-2017-2630]
Date: Tue, 14 Mar 2017 12:09:34 -0500	[thread overview]
Message-ID: <d75e465b-9775-348e-3cfd-ee20ec3f6154@redhat.com> (raw)
In-Reply-To: <1489508300-48184-19-git-send-email-pbonzini@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 1362 bytes --]

On 03/14/2017 11:18 AM, Paolo Bonzini wrote:
> From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
> 
> Comparison symbol is misused. It may lead to memory corruption.
> Introduced in commit 7d3123e.
> 
> Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
> Message-Id: <20170203154757.36140-6-vsementsov@virtuozzo.com>
> [eblake: add CVE details, update conditional]
> Signed-off-by: Eric Blake <eblake@redhat.com>
> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>

Encoding issues?

> Message-Id: <20170307151627.27212-1-eblake@redhat.com>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  nbd/client.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/nbd/client.c b/nbd/client.c
> index 5c9dee3..3dc2564 100644
> --- a/nbd/client.c
> +++ b/nbd/client.c
> @@ -94,7 +94,7 @@ static ssize_t drop_sync(QIOChannel *ioc, size_t size)
>      char small[1024];
>      char *buffer;
>  
> -    buffer = sizeof(small) < size ? small : g_malloc(MIN(65536, size));
> +    buffer = sizeof(small) >= size ? small : g_malloc(MIN(65536, size));
>      while (size > 0) {
>          ssize_t count = read_sync(ioc, buffer, MIN(65536, size));
>  
> 

-- 
Eric Blake   eblake redhat com    +1-919-301-3266
Libvirt virtualization library http://libvirt.org


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 604 bytes --]

  reply	other threads:[~2017-03-14 17:09 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-14 16:18 [Qemu-devel] [PULL 00/18] Misc patches for QEMU 2.9 hard freeze Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 01/18] memory_region: Fix name comments Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 02/18] docs: Add a note about mixing bootindex with "-boot order" Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 03/18] mem-prealloc: reduce large guest start-up and migration time Paolo Bonzini
2017-03-18 13:58   ` Peter Maydell
2017-03-21  6:50     ` Jitendra Kolhe
2017-03-14 16:18 ` [Qemu-devel] [PULL 04/18] exec: add cpu_synchronize_state to cpu_memory_rw_debug Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 05/18] kvm: Print MSR information if KVM_{GET, SET}_MSRS failed Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 06/18] kvmclock: Don't crash QEMU if KVM is disabled Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 07/18] scripts/dump-guest-memory.py: fix int128_get64 on recent gcc Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 08/18] configure: add the missing help output for optional features Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 09/18] util: Removed unneeded header from path.c Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 10/18] scsi: mptsas: fix the wrong reading size in fetch request Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 11/18] target/nios2: take BQL around interrupt check Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 12/18] qemu-timer: fix off-by-one Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 13/18] qemu-timer: do not include sysemu/cpus.h from util/qemu-timer.h Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 14/18] cpus: define QEMUTimerListNotifyCB for QEMU system emulation Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 15/18] main-loop: remove now unnecessary optimization Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 16/18] icount: process QEMU_CLOCK_VIRTUAL timers in vCPU thread Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 17/18] memory: info mtree check mr range overflow Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 18/18] nbd/client: fix drop_sync [CVE-2017-2630] Paolo Bonzini
2017-03-14 17:09   ` Eric Blake [this message]
2017-03-14 19:16 ` [Qemu-devel] [PULL 00/18] Misc patches for QEMU 2.9 hard freeze Peter Maydell

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=d75e465b-9775-348e-3cfd-ee20ec3f6154@redhat.com \
    --to=eblake@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=vsementsov@virtuozzo.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).