From: Al Viro <viro@ZenIV.linux.org.uk>
To: Jan Kara <jack@suse.cz>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>,
linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org,
Mikulas Patocka <mpatocka@redhat.com>
Subject: Re: linux-next: build failure after merge of the vfs tree
Date: Tue, 3 Jan 2012 14:45:32 +0000 [thread overview]
Message-ID: <20120103144531.GA23916@ZenIV.linux.org.uk> (raw)
In-Reply-To: <20120103133942.GC31457@quack.suse.cz>
On Tue, Jan 03, 2012 at 02:39:42PM +0100, Jan Kara wrote:
> Thanks Stephen! Al, how shall we resolve this? You wrote you can provide
> a VFS helper like get_super() which will also guarantee that the fs is
> unfrozen. That could be used in quotactl_block() and fsync_bdev(). If you
> plan to do this for 3.3 then I can just remove the quota fix and let you
> do it.
I started digging in that area and I really don't like what I'm seeing.
sget() race fix from Aug 2010 (MS_BORN one) had not covered all cases.
The thing is, we can get hit with this:
1) mount(2) does sget(), etc. and fails very late in the game - with
->s_root already allocated. For some filesystems such failure exits are
possible.
2) something crawling through the superblock list finds our new
sb before we realize it's doomed. Tries to grab s_umount, gets blocked.
3) in the meanwhile *another* mount(2) does sget() that catches
the same sb and decides to pick it. ->s_active is grabbed, we get blocked
on attempt to get ->s_umount exclusive.
4) the original mount(2) gets to the failure point and does
deactivate_locked_super(). ->s_active is decremented, ->s_umount unlocked.
However, because of (3) ->s_active does not reach 0 yet. Guy stuck in (2)
gets to run. ->s_root is non-NULL here. And fs is not in a good shape...
5) sget() from (3) gets to ->s_umount, notices that MS_BORN hadn't
been set and does deactivate_locked_super(). Now ->s_active is 0 and
we get around to shutting the sucker down. ->kill_sb() gets called, ->s_root
is dropped, etc. - the whole nine yards. Caller of sget() had been saved from
the race. However, whoever that had been in (2) and (4) still got hit.
IOW, MS_BORN check is needed in the places that go through the superblock
list, grab ->s_umount and check ->s_root. That will close the hole for
good.
We also have a problem in get_active_super() caller; again, the missing MS_BORN
check (in freeze_super(), after getting ->s_umount).
I went through the ->mount() instances; most of them can't fail with non-NULL
->s_root at all or, if they do, leave the superblock in basically usable
shape. However, some might be b0rken; among other things, ext4 and minixfs
*definitely* can leak root dentry on late failure exits. Still doing RTFS...
Another fun question - can ->statfs() ever wait for fs to be thawed? If so,
we have another problem like the one spotted by Mikulas - in ustat(2). And
if not, we'd damn better document that requirement.
next parent reply other threads:[~2012-01-03 14:45 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20120103124331.f0f0043f8ca464c9ff13f4d3@canb.auug.org.au>
[not found] ` <20120103133942.GC31457@quack.suse.cz>
2012-01-03 14:45 ` Al Viro [this message]
2012-01-04 2:17 ` linux-next: build failure after merge of the vfs tree Al Viro
2012-01-04 2:50 ` Dave Chinner
2012-01-04 18:00 ` Jan Kara
2012-01-04 18:47 ` Christoph Hellwig
2012-01-04 22:26 ` Jan Kara
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=20120103144531.GA23916@ZenIV.linux.org.uk \
--to=viro@zeniv.linux.org.uk \
--cc=jack@suse.cz \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mpatocka@redhat.com \
--cc=sfr@canb.auug.org.au \
/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).