qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Stefan Hajnoczi <stefanha@redhat.com>
To: Fam Zheng <famz@redhat.com>
Cc: Kevin Wolf <kwolf@redhat.com>, qemu-devel@nongnu.org, rjones@redhat.com
Subject: Re: [Qemu-devel] [PATCH v3] curl: refuse to open URL from HTTP server without range support
Date: Tue, 2 Jul 2013 15:44:40 +0200	[thread overview]
Message-ID: <20130702134440.GC9870@stefanha-thinkpad.redhat.com> (raw)
In-Reply-To: <1372749561-11117-1-git-send-email-famz@redhat.com>

On Tue, Jul 02, 2013 at 03:19:21PM +0800, Fam Zheng wrote:
> CURL driver requests partial data from server on guest IO req. For HTTP
> and HTTPS, it uses "Range: ***" in requests, and this will not work if
> server not accepting range. This patch does this check when open.
> 
>  * Removed curl_size_cb, which is not used: On one hand it's registered to
>    libcurl as CURLOPT_WRITEFUNCTION, instead of CURLOPT_HEADERFUNCTION,
>    which will get called with *data*, not *header*. On the other hand the
>    s->len is assigned unconditionally later.
> 
>    In this gone function, the sscanf for "Content-Length: %zd", on
>    (void *)ptr, which is not guaranteed to be zero-terminated, is
>    potentially a security bug. So this patch fixes it as a side-effect. The
>    bug is reported as: https://bugs.launchpad.net/qemu/+bug/1188943
>    (Note the bug is marked "private" so you might not be able to see it)
> 
>  * Introduced curl_header_cb, which is used to parse header and mark the
>    server as accepting range if "Accept-Ranges: bytes" line is seen from
>    response header. If protocol is HTTP or HTTPS, but server response has
>    no not this support, refuse to open this URL.
> 
> Note that python builtin module SimpleHTTPServer is an example of not
> supporting range, if you need to test this driver, get a better server
> or use internet URLs.
> 
> Signed-off-by: Fam Zheng <famz@redhat.com>
> 
> ---
> 
> v3: Fix copy&paste error.
>     Improve error text as suggested by Rich.
> 
> ---
> 
>  block/curl.c | 24 ++++++++++++++++++------
>  1 file changed, 18 insertions(+), 6 deletions(-)

Thanks, applied to my block tree:
https://github.com/stefanha/qemu/commits/block

Stefan

      reply	other threads:[~2013-07-02 14:00 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-02  7:19 [Qemu-devel] [PATCH v3] curl: refuse to open URL from HTTP server without range support Fam Zheng
2013-07-02 13:44 ` Stefan Hajnoczi [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=20130702134440.GC9870@stefanha-thinkpad.redhat.com \
    --to=stefanha@redhat.com \
    --cc=famz@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=rjones@redhat.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).