From: Greg Kurz <groug@kaod.org>
To: Eric Blake <eblake@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] fsdev: fix virtfs-proxy-helper cwd
Date: Sat, 20 May 2017 09:29:28 +0200 [thread overview]
Message-ID: <20170520092928.692d8815@bahia.lan> (raw)
In-Reply-To: <ea69f777-6b99-1e39-7e5b-4decde958769@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 1699 bytes --]
On Fri, 19 May 2017 17:19:10 -0500
Eric Blake <eblake@redhat.com> wrote:
> On 05/19/2017 09:30 AM, Greg Kurz wrote:
> > Since chroot() doesn't change the current directory, it is indeed a good
> > practice to chdir() to the target directory and then then chroot(), or
> > to chroot() to the target directory and then chdir("/").
> >
> > The current code does neither of them actually. Let's go for the latter.
> >
> > This doesn't fix any security issue since all of this takes place before
> > the helper begins to process requests.
> >
> > Signed-off-by: Greg Kurz <groug@kaod.org>
> > ---
> > fsdev/virtfs-proxy-helper.c | 8 ++++----
> > 1 file changed, 4 insertions(+), 4 deletions(-)
>
> You are correct that failing to sanitize the current working directory
> alongside a chroot() can lead to escaped access outside of the new
> smaller root.
>
The funny thing is that the author seemed to care about calling chdir("/")
at some point but it doesn't really make sense to do this before chroot().
Passing the special fd value AT_FDCWD and a relative path to an "*at()"
syscall would allow to access to the entire filesystem.
> Aside: chdir() is annoying in multi-threaded apps - it is global state,
> rather than thread-local. A multi-threaded app should therefore either
> never change the current working directory, or else never rely on the
> current working directory.
> But if I'm not mistaken, virtfs-proxy-helper
> is an independent helper app, not qemu proper, so the use of
> chdir/chroot is not affecting other threads.
>
Yes, this is correct, we're ok with this helper.
> Reviewed-by: Eric Blake <eblake@redhat.com>
>
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 181 bytes --]
prev parent reply other threads:[~2017-05-20 7:29 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-19 14:30 [Qemu-devel] [PATCH] fsdev: fix virtfs-proxy-helper cwd Greg Kurz
2017-05-19 22:19 ` Eric Blake
2017-05-20 7:29 ` Greg Kurz [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=20170520092928.692d8815@bahia.lan \
--to=groug@kaod.org \
--cc=eblake@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).