From: Jeff Layton <jlayton@poochiereds.net>
To: William Dauchy <william@gandi.net>
Cc: Linux NFS mailing list <linux-nfs@vger.kernel.org>,
Trond Myklebust <trond.myklebust@primarydata.com>,
jloup@gandi.net
Subject: Re: extra reference to fl->fl_file, possible regression
Date: Fri, 10 Jul 2015 10:39:14 -0400 [thread overview]
Message-ID: <20150710103914.78189580@tlielax.poochiereds.net> (raw)
In-Reply-To: <20150710125444.GL15144@gandi.net>
[-- Attachment #1: Type: text/plain, Size: 1738 bytes --]
On Fri, 10 Jul 2015 14:54:44 +0200
William Dauchy <william@gandi.net> wrote:
> On Jul10 07:24, Jeff Layton wrote:
> > Huh. I'm stumped...
> >
> > These patches are pretty straightforward. We're just taking an extra
> > reference to the filp when running lock operations so that it doesn't
> > disappear before the replies can be processed (typically in the event
> > that a signal comes in while waiting on the reply). Given the odd stack
> > trace above, I have to wonder if there's some sort of memory scribble
> > going on.
>
> I also forgot to mention that I also had the following messgae before
> the trace:
>
> VFS: Close: file count is 0
>
Ok, that may be an important clue. From filp_close:
if (!file_count(filp)) {
printk(KERN_ERR "VFS: Close: file count is 0\n");
return 0;
}
...so looks like there could be a use-after free going on? Somehow
we're ending up with with an actual close being done after the last
reference has already been put. I'm not s
So, I suspect that the problem is with the second patch (the LOCKU
one).
I'm not sure if it's responsible for that message, but one of the
things we do in __fput() is call locks_remove_flock, which can dip down
into the NFS unlock codepath.
So if a file happened to have some flock locks on it, then we could
be taking a new reference to a file that has already had its refcount
go to zero.
I'll have to think about how best to deal with this as I totally missed
this when I did the original analysis of the bug. For now it's probably
best to revert that patch (though I think the one for the setlk is
likely OK).
Thanks,
--
Jeff Layton <jlayton@poochiereds.net>
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2015-07-10 14:39 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-10 9:29 extra reference to fl->fl_file, possible regression William Dauchy
2015-07-10 11:24 ` Jeff Layton
2015-07-10 11:36 ` William Dauchy
2015-07-10 12:54 ` William Dauchy
2015-07-10 14:39 ` Jeff Layton [this message]
2015-07-10 15:06 ` William Dauchy
2015-07-10 15:18 ` Jeff Layton
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=20150710103914.78189580@tlielax.poochiereds.net \
--to=jlayton@poochiereds.net \
--cc=jloup@gandi.net \
--cc=linux-nfs@vger.kernel.org \
--cc=trond.myklebust@primarydata.com \
--cc=william@gandi.net \
/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