LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Alan Stern <stern@rowland.harvard.edu>
To: Christoph Hellwig <hch@infradead.org>
Cc: Tejun Heo <tj@kernel.org>, Bart Van Assche <bvanassche@acm.org>,
James Bottomley <jbottomley@parallels.com>,
Hannes Reinecke <hare@suse.de>,
"linux-scsi@vger.kernel.org" <linux-scsi@vger.kernel.org>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Kernel development list <linux-kernel@vger.kernel.org>
Subject: Re: sysfs methods can race with ->remove
Date: Mon, 26 Jan 2015 13:38:23 -0500 (EST) [thread overview]
Message-ID: <Pine.LNX.4.44L0.1501261335000.1257-100000@iolanthe.rowland.org> (raw)
In-Reply-To: <20150126171950.GA9015@infradead.org>
On Mon, 26 Jan 2015, Christoph Hellwig wrote:
> On Thu, Jan 15, 2015 at 02:40:31PM -0500, Tejun Heo wrote:
> > > If a method is registered by the driver, then the driver will
> > > unregister it when the ->remove routine runs. I don't know for
> > > certain, but I would expect that the sysfs/kernfs core will make sure
> > > that any existing method calls complete before unregister returns.
> > > This would prevent races.
> >
> > Yes, attribute deletions are blocked till the on-going sysfs
> > read/write operations are finished and further rw accesses are failed.
>
> Btw, where do we do that? I did a walk through the code starting
> from device_del, but must have missed the obvious.
It happens in fs/kernfs/dir.c:kernfs_drain(). That routine is called
when a sysfs file is removed, and it waits until all ongoing read/write
operations are finished.
> > > The sriov_numvfs_store method does have the same problem, and so does
> > > the reset_store method (by way of pci_reset_function ->
> > > pci_dev_save_and_disable -> pci_reset_notify).
> > >
> > > Tejun, is my analysis correct? How should we fix these races?
> >
> > I'm not really following what the actual problem case is, so SCSI
> > subsystem store methods are derefing dev->driver without synchronizing
> > against detach events? If that's the case, the solution would be
> > synchronizing against attach/detach events? Sorry if I'm being
> > totally idiotic. I'm having a bit of hard time jumping right in. :)
>
> No problem. That's the basic situation we are talking about. I have
> a serie fixing some long standing issues in the device model integration
> in SCSI, and pointed out a possible issue in that area.
>
> So what is the proper lock to take to prevent ->remove from beeing
> called while in such a method? A mentioned about I tried to peel
> through all the layers of the onion^H^H^H^H^Hdriver core, but so far
> couldn't find anything obvious.
The proper lock is dev->mutex, as I mentioned in an earlier email
(http://marc.info/?l=linux-scsi&m=142176669519982&w=2). That lock is
held whenever a ->remove method is called.
Alan Stern
next prev parent reply other threads:[~2015-01-26 18:38 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20150108131508.GA31022@infradead.org>
[not found] ` <Pine.LNX.4.44L0.1501121116220.1707-100000@iolanthe.rowland.org>
2015-01-14 9:33 ` [PATCH for v3.19, v2] Avoid that sd_shutdown() triggers a kernel warning Christoph Hellwig
2015-01-14 15:07 ` Alan Stern
2015-01-15 16:06 ` Christoph Hellwig
2015-01-15 18:22 ` sysfs methods can race with ->remove Alan Stern
2015-01-15 19:40 ` Tejun Heo
2015-01-26 17:19 ` Christoph Hellwig
2015-01-26 18:38 ` Alan Stern [this message]
2015-01-20 15:11 ` [PATCH for v3.19, v2] Avoid that sd_shutdown() triggers a kernel warning Alan Stern
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=Pine.LNX.4.44L0.1501261335000.1257-100000@iolanthe.rowland.org \
--to=stern@rowland.harvard.edu \
--cc=bvanassche@acm.org \
--cc=gregkh@linuxfoundation.org \
--cc=hare@suse.de \
--cc=hch@infradead.org \
--cc=jbottomley@parallels.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=tj@kernel.org \
--subject='Re: sysfs methods can race with ->remove' \
/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
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).