From: Vivek Goyal <vgoyal@redhat.com>
To: Amir Goldstein <amir73il@gmail.com>
Cc: overlayfs <linux-unionfs@vger.kernel.org>,
Miklos Szeredi <miklos@szeredi.hu>,
Giuseppe Scrivano <gscrivan@redhat.com>,
dwalsh@redhat.com
Subject: Re: [PATCH] overlayfs: During copy up, first copy up data and then xattrs
Date: Wed, 26 Dec 2018 14:09:45 -0500 [thread overview]
Message-ID: <20181226190945.GC5398@redhat.com> (raw)
In-Reply-To: <CAOQ4uxjeEfFK3dTKEugJhGBpoVrsuvNCLQ7js4makis5KsRzmw@mail.gmail.com>
On Wed, Dec 19, 2018 at 09:54:59PM +0200, Amir Goldstein wrote:
> On Wed, Dec 19, 2018 at 8:53 PM Vivek Goyal <vgoyal@redhat.com> wrote:
> >
> > If xattrs are copied up first and then data is copied up, it can clear
> > suid/sgid permissions on copied up file and hence remove security.capability
> > xattr. And this can result into surprises.
> >
> > First of all, if a setuid binary on lower is opened for writing (but
> > nothing is actually written), then copy up should not result in removing
> > setuid bit.
> >
> > Also, chown, first copies up file and then tries to clear setuid bit.
> > But by that time security.capability xattr is already gone (due to
> > data copy up), and caller gets -ENODATA. This has been reported by
> > Giuseppe here.
> >
> > https://github.com/containers/libpod/issues/2015#issuecomment-447824842
> >
>
> Can you write an xfstest for those use cases?
Will do.
>
> > Fix this by copying up data first and then metadta. This is a regression
> > which has been introduced by my commit as part of metadata only copy up
> > patches.
> >
> > commit bd64e57586d3722d2fc06093c3d7e3c4adb9e060
>
> Pleases used the Fixes: annotation.
Ok.
>
> > Author: Vivek Goyal <vgoyal@redhat.com>
> > Date: Fri May 11 11:49:27 2018 -0400
> >
> > ovl: During copy up, first copy up metadata and then data
> >
> > TODO: There will be some corner cases where a file is copied up metadata
> > only and later data copy up happens and that will clear setuid/setgid
> > bit. Something needs to be done about that too.
> >
> > Reported-by: Giuseppe Scrivano <gscrivan@redhat.com>
> > Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
> > ---
> > fs/overlayfs/copy_up.c | 31 +++++++++++++++++--------------
> > 1 file changed, 17 insertions(+), 14 deletions(-)
> >
> > Index: rhvgoyal-linux-fuse/fs/overlayfs/copy_up.c
> > ===================================================================
> > --- rhvgoyal-linux-fuse.orig/fs/overlayfs/copy_up.c 2018-12-19 11:31:33.981003615 -0500
> > +++ rhvgoyal-linux-fuse/fs/overlayfs/copy_up.c 2018-12-19 11:31:38.862003615 -0500
> > @@ -443,10 +443,26 @@ static int ovl_copy_up_inode(struct ovl_
> > {
> > int err;
> >
> > + /*
> > + * Copy up data first and then xattrs. Writing data after
> > + * xattrs will remove security.capability xattr automatically.
> > + */
> > + if (S_ISREG(c->stat.mode) && !c->metacopy) {
> > + struct path upperpath, datapath;
> > +
> > + ovl_path_upper(c->dentry, &upperpath);
> > + BUG_ON(upperpath.dentry != NULL);
> > + upperpath.dentry = temp;
> > +
> > + ovl_path_lowerdata(c->dentry, &datapath);
> > + err = ovl_copy_up_data(&datapath, &upperpath, c->stat.size);
> > + if (err)
> > + return err;
> > + }
> > +
> > err = ovl_copy_xattr(c->lowerpath.dentry, temp);
> > if (err)
> > return err;
> > -
>
> Nit: keep newline.
Ok.
Thanks
Vivek
prev parent reply other threads:[~2018-12-26 19:09 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-12-19 18:53 [PATCH] overlayfs: During copy up, first copy up data and then xattrs Vivek Goyal
2018-12-19 19:54 ` Amir Goldstein
2018-12-26 19:09 ` Vivek Goyal [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=20181226190945.GC5398@redhat.com \
--to=vgoyal@redhat.com \
--cc=amir73il@gmail.com \
--cc=dwalsh@redhat.com \
--cc=gscrivan@redhat.com \
--cc=linux-unionfs@vger.kernel.org \
--cc=miklos@szeredi.hu \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.