From: "Luis R. Rodriguez" <mcgrof@kernel.org>
To: "Darrick J. Wong" <darrick.wong@oracle.com>
Cc: "Luis R. Rodriguez" <mcgrof@kernel.org>,
Eric Sandeen <sandeen@sandeen.net>,
David Howells <dhowells@redhat.com>,
xfs <linux-xfs@vger.kernel.org>, Tso Ted <tytso@mit.edu>,
Nikolay Borisov <nborisov@suse.com>, Flex Liu <fliu@suse.com>,
Jake Norris <jake.norris@suse.com>, Jan Kara <jack@suse.cz>
Subject: Re: [PATCH] xfs_repair: clear extra file attributes on symlinks
Date: Wed, 1 Nov 2017 00:10:22 +0100 [thread overview]
Message-ID: <20171031231022.GD22894@wotan.suse.de> (raw)
In-Reply-To: <20171031224320.GB4911@magnolia>
On Tue, Oct 31, 2017 at 03:43:20PM -0700, Darrick J. Wong wrote:
> On Tue, Oct 31, 2017 at 03:19:00PM -0700, Luis R. Rodriguez wrote:
> > On Tue, Oct 31, 2017 at 3:12 PM, Darrick J. Wong
> > <darrick.wong@oracle.com> wrote:
> > > On Tue, Oct 31, 2017 at 02:51:56PM -0700, Luis R. Rodriguez wrote:
> > >> diff --git a/repair/dinode.c b/repair/dinode.c
> > >> index 15ba8cc22b39..6288e42de15e 100644
> > >> --- a/repair/dinode.c
> > >> +++ b/repair/dinode.c
> > >> @@ -2482,6 +2482,27 @@ _("bad (negative) size %" PRId64 " on inode %" PRIu64 "\n"),
> > >> FS_XFLAG_EXTSIZE);
> > >> }
> > >> }
> > >> + if (flags & (XFS_DIFLAG_IMMUTABLE | XFS_DIFLAG_APPEND |
> > >> + XFS_DIFLAG_NODUMP)) {
> > >> + /*
> > >> + * ioctl(fd, *) and so ioctl(fd, FS_IOC_SETFLAGS)
> > >> + * yields EBADF on symlinks as they have O_PATH set.
> > >> + * "Extra file attributes", stx_attributes, as per
> > >> + * statx(2) cannot be set on symlinks on Linux.
> > >> + */
> > >> + if (di_mode && S_ISLNK(di_mode) &&
> > >> + !S_ISREG(di_mode) && !S_ISDIR(di_mode)) {
> > >
> > > Does this DIFLAG clearing applies to bdev/cdev/fifo/socket files too?
> >
> > Not at the moment given the semantics I hunted down and tested for
> > were for O_PATH only. The validation I hunted down applies to any
> > file descriptors which we open via O_PATH only.
>
> iirc when you open one of those special files you end up with a fd that
> points to an inode on a special bdevfs/pipefs/etc., not an inode linked
> to the underlying filesystem containing the special file.
That seems to fit the O_PATH intent, however its unclear if O_PATH was needed,
as per my testing on /dev/loop0 I don't need O_PATH set for it.
> Therefore you shouldn't be able to set any DIFLAG/DIFLAG2 flags on special files.
That would be great if we can verify.
> # mknod block b 8 0 ; mknod char c 1 3 ; mknod fifo p
> # lsattr block char fifo
> lsattr: Operation not supported While reading flags on block
> lsattr: Operation not supported While reading flags on char
> lsattr: Operation not supported While reading flags on fifo
I'm afraid e2fsprogs has a special check for these, ie, userspace is barred
from actually toying with special files purposely because of the Debian bug I
named.
strace should reveal the respective ioctl() was not actually issued.
I just tested a stupid program against /dev/loop0 and it fails, but not because
of O_PATH and EBADF being returned, somewhere in the path EINVAL is returned,
question is where and why.
openat(AT_FDCWD, "/dev/loop0", O_RDONLY) = 3
ioctl(3, FS_IOC_FSGETXATTR, 0x7ffde0d82d40) = -1 EINVAL (Invalid argument)
I'm happy to fold another patch in for these but it seems to me the logic is a
bit different and the special checks should be confirmed.
Luis
next prev parent reply other threads:[~2017-10-31 23:10 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-31 21:51 [PATCH] xfs_repair: clear extra file attributes on symlinks Luis R. Rodriguez
2017-10-31 22:12 ` Darrick J. Wong
2017-10-31 22:19 ` Luis R. Rodriguez
2017-10-31 22:41 ` [PATCH v2] " Luis R. Rodriguez
2017-10-31 22:43 ` [PATCH] " Darrick J. Wong
2017-10-31 23:10 ` Luis R. Rodriguez [this message]
2017-10-31 23:12 ` Eric Sandeen
2017-11-01 23:50 ` Luis R. Rodriguez
2018-04-26 23:50 ` Luis R. Rodriguez
2017-11-02 0:39 ` Luis R. Rodriguez
2017-11-02 5:23 ` Darrick J. Wong
2017-11-02 21:22 ` Dave Chinner
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=20171031231022.GD22894@wotan.suse.de \
--to=mcgrof@kernel.org \
--cc=darrick.wong@oracle.com \
--cc=dhowells@redhat.com \
--cc=fliu@suse.com \
--cc=jack@suse.cz \
--cc=jake.norris@suse.com \
--cc=linux-xfs@vger.kernel.org \
--cc=nborisov@suse.com \
--cc=sandeen@sandeen.net \
--cc=tytso@mit.edu \
/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).