linux-f2fs-devel.lists.sourceforge.net archive mirror
 help / color / mirror / Atom feed
From: Jaegeuk Kim <jaegeuk@kernel.org>
To: Chao Yu <yuchao0@huawei.com>
Cc: linux-f2fs-devel@lists.sourceforge.net
Subject: Re: [PATCH v2] f2fs: correct removexattr behavior for null valued extended attribute
Date: Fri, 19 Jan 2018 20:24:17 -0800	[thread overview]
Message-ID: <20180120042417.GA20450@jaegeuk-macbookpro.roam.corp.google.com> (raw)
In-Reply-To: <6b2070c9-8c4b-ac8c-9346-e21bc99e7dc7@huawei.com>

On 01/17, Chao Yu wrote:
> Hi Jaegeuk,
> 
> Forgot to merge this patch? ;)

Weird. I didn't get this patch before.
Is this a full patch?

> 
> On 2018/1/10 10:24, Daeho Jeong wrote:
> > __vfs_removexattr() transfers "NULL" value to the setxattr handler of
> > the f2fs filesystem in order to remove the extended attribute. But,
> > __f2fs_setxattr() just ignores the removal request when the value of
> > the extended attribute is already NULL. We have to remove the extended
> > attribute itself even if the value of that is already NULL.
> > 
> > We can reporduce this bug with the below:
> > 
> > 1. touch file
> > 2. setfattr -n "user.foo" file
> > 3. setfattr -x "user.foo" file
> > 4. getfattr -d file
> >> user.foo
> > 
> > Signed-off-by: Daeho Jeong <daeho.jeong@samsung.com>
> > Signed-off-by: Youngjin Gil <youngjin.gil@samsung.com>
> > Tested-by: Hobin Woo <hobin.woo@samsung.com>
> > Tested-by: Chao Yu <yuchao0@huawei.com>
> > Reviewed-by: Chao Yu <yuchao0@huawei.com>
> > ---
> >  fs/f2fs/xattr.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/fs/f2fs/xattr.c b/fs/f2fs/xattr.c
> > index ec8961e..2776618 100644
> > --- a/fs/f2fs/xattr.c
> > +++ b/fs/f2fs/xattr.c
> > @@ -598,7 +598,7 @@ static int __f2fs_setxattr(struct inode *inode, int index,
> >  			goto exit;
> >  		}
> >  
> > -		if (f2fs_xattr_value_same(here, value, size))
> > +		if (value && f2fs_xattr_value_same(here, value, size))
> >  			goto exit;
> >  	} else if ((flags & XATTR_REPLACE)) {
> >  		error = -ENODATA;
> > 

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot

  reply	other threads:[~2018-01-20  4:24 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20180110022428epcas1p23c04b97cbd6df91e6721e7c400449f2e@epcas1p2.samsung.com>
2018-01-10  2:24 ` [PATCH v2] f2fs: correct removexattr behavior for null valued extended attribute Daeho Jeong
2018-01-17  1:26   ` Chao Yu
2018-01-20  4:24     ` Jaegeuk Kim [this message]
2018-01-20  7:50       ` Chao Yu

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=20180120042417.GA20450@jaegeuk-macbookpro.roam.corp.google.com \
    --to=jaegeuk@kernel.org \
    --cc=linux-f2fs-devel@lists.sourceforge.net \
    --cc=yuchao0@huawei.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).