From: "J. Bruce Fields" <bfields@fieldses.org>
To: Matthew Wilcox <matthew@wil.cx>
Cc: "david m. richter" <richterd@citi.umich.edu>,
linux-fsdevel@vger.kernel.org
Subject: Re: On setting a lease across a cluster
Date: Fri, 4 Jan 2008 16:16:52 -0500 [thread overview]
Message-ID: <20080104211652.GB14827@fieldses.org> (raw)
In-Reply-To: <20080104210817.GH20473@parisc-linux.org>
On Fri, Jan 04, 2008 at 02:08:18PM -0700, Matthew Wilcox wrote:
> On Fri, Jan 04, 2008 at 03:53:04PM -0500, J. Bruce Fields wrote:
> > So, the problem is that fcntl_setlease() does
> >
> > vfs_setlease()
> > fasync_helper()
> >
> > which the bkl held over both, and you want to preserve that?
> >
> > But what that BKL is doing is a mystery to me--the very first thing that
> > fasync_helper() does is kmem_cache_alloc(., GFP_KERNEL). So you won't
> > be introducing any new problem if you lock those two operations
> > separately. Unless I'm totally missing something.
>
> A very good point.
>
> So yet another race caused by using the BKL rather than thinking ... but
> maybe it's an inconsequential race. The consequences are that (if the
> kmalloc in fasync_helper sleeps) a lease appears that isn't fully set-up
> yet (and may be removed if the kmalloc fails). Actually, it seems bad
> if the kmalloc eventually succeeds -- there's a window while kmalloc is
> sleeping where another process could open the file, break the lease,
> fl_fasync will be NULL, so no signal is sent. Then 30 seconds later the
> lease is removed without the leaseholder being sent a signal. Bad.
>
> How can we fix this situation? I think we need a better interface than
> fasync_helper() -- fasync_alloc() and fasync_setup() would seem to do
> the trick.
Or re-check the lease after doing the fasync_helper() setup and remove
it if it's been broken in the interim?
(Not that fasync_helper() couldn't independently use a little love:
- The documentation:
/*
* fasync_helper() is used by some character device drivers
* (mainly mice) to set up the fasync queue. It returns negative
* on error, 0 if it did no changes and positive if it
* added/deleted the entry.
*/
could be more helpful.
- I find the "on" parameter a little confusing. (Shouldn't we just have
two separate functions for those two cases?)
- It should return ERR_PTR(-ERRNO) or the fasync_struct rather than
using an fasync_struct ** to return the result.
- And what's up with FASYNC_MAGIC? I thought the consensus was not to
do that kind of thing in the kernel.
)
--b.
next prev parent reply other threads:[~2008-01-04 21:16 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-01-04 18:14 On setting a lease across a cluster Matthew Wilcox
2008-01-04 18:55 ` david m. richter
2008-01-04 19:47 ` J. Bruce Fields
2008-01-04 20:35 ` Matthew Wilcox
2008-01-04 20:53 ` J. Bruce Fields
2008-01-04 21:08 ` Matthew Wilcox
2008-01-04 21:16 ` J. Bruce Fields [this message]
2008-01-04 20:18 ` Matthew Wilcox
2008-01-05 17:44 ` david m. richter
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=20080104211652.GB14827@fieldses.org \
--to=bfields@fieldses.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=matthew@wil.cx \
--cc=richterd@citi.umich.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