From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
To: "Philippe Mathieu-Daudé" <f4bug@amsat.org>,
"Eric Blake" <eblake@redhat.com>,
qemu-devel@nongnu.org,
"Marc-André Lureau" <marcandre.lureau@gmail.com>
Cc: pbonzini@redhat.com
Subject: Re: [Qemu-devel] [PATCH for-2.9] nbd/client: fix drop_sync [CVE-2017-2630]
Date: Tue, 7 Mar 2017 13:01:39 +0300 [thread overview]
Message-ID: <c81fe070-da3c-254c-2f2e-d19ce097f307@virtuozzo.com> (raw)
In-Reply-To: <01052592-5c40-8dc6-da15-5376a6ee8354@amsat.org>
07.03.2017 03:10, Philippe Mathieu-Daudé wrote:
> Hi Vladimir,
>
> On 03/06/2017 07:30 PM, Eric Blake 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]
>> Signed-off-by: Eric Blake <eblake@redhat.com>
>> Reviewed-by: Marc-André Lureau <address@hidden>
>> ---
>>
>> This one still hasn't been merged in; sending separately since the
>> rest of my NBD series is now 2.10 material:
>> https://lists.gnu.org/archive/html/qemu-devel/2017-02/msg04528.html
>>
>> nbd/client.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/nbd/client.c b/nbd/client.c
>> index 5c9dee3..165b33e 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));
>
> here ">=" seems correct/safe.
> (if size is 1024, use small stack buffer too).
Agree.
>
>> while (size > 0) {
>> ssize_t count = read_sync(ioc, buffer, MIN(65536, size));
>>
--
Best regards,
Vladimir
next prev parent reply other threads:[~2017-03-07 10:01 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-06 22:30 [Qemu-devel] [PATCH for-2.9] nbd/client: fix drop_sync [CVE-2017-2630] Eric Blake
2017-03-07 0:10 ` Philippe Mathieu-Daudé
2017-03-07 10:01 ` Vladimir Sementsov-Ogievskiy [this message]
2017-03-07 15:15 ` Eric Blake
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=c81fe070-da3c-254c-2f2e-d19ce097f307@virtuozzo.com \
--to=vsementsov@virtuozzo.com \
--cc=eblake@redhat.com \
--cc=f4bug@amsat.org \
--cc=marcandre.lureau@gmail.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/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).