From: Christoph Hellwig <hch@infradead.org>
To: Al Viro <viro@ZenIV.linux.org.uk>
Cc: Miklos Szeredi <miklos@szeredi.hu>,
linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org,
hch@infradead.org, torvalds@linux-foundation.org,
dhowells@redhat.com, mszeredi@suse.cz
Subject: Re: [PATCH 00/21] vfs: atomic open v6 (part 2)
Date: Mon, 18 Jun 2012 07:58:04 -0400 [thread overview]
Message-ID: <20120618115804.GA4048@infradead.org> (raw)
In-Reply-To: <20120617203755.GA31478@infradead.org>
On Sun, Jun 17, 2012 at 04:37:55PM -0400, Christoph Hellwig wrote:
> vfs.git#master fails xfstests 005 (Test symlinks & ELOOP) for me. I'll
> try to get it bisected tomorrow, unless anyone gets to it earlier.
this failure was caused by
"namei.c: let follow_link() do put_link() on failure"
and the reason was that we didn't do a proper path_put when failing
inside follow_link(). Fix that should be squashed in below. With this
xfstests 049 is still failing, I'll look into that next.
Index: linux-2.6/fs/namei.c
===================================================================
--- linux-2.6.orig/fs/namei.c 2012-06-18 12:17:08.084097978 +0200
+++ linux-2.6/fs/namei.c 2012-06-18 13:39:29.764224510 +0200
@@ -597,18 +591,19 @@ static inline void put_link(struct namei
static __always_inline int
follow_link(struct path *link, struct nameidata *nd, void **p)
{
- int error;
struct dentry *dentry = link->dentry;
+ int error;
+ char *s;
BUG_ON(nd->flags & LOOKUP_RCU);
if (link->mnt == nd->path.mnt)
mntget(link->mnt);
- if (unlikely(current->total_link_count >= 40)) {
- path_put(&nd->path);
- return -ELOOP;
- }
+ error = -ELOOP;
+ if (unlikely(current->total_link_count >= 40))
+ goto out_put_nd_path;
+
cond_resched();
current->total_link_count++;
@@ -616,31 +611,36 @@ follow_link(struct path *link, struct na
nd_set_link(nd, NULL);
error = security_inode_follow_link(link->dentry, nd);
- if (error) {
- path_put(&nd->path);
- return error;
- }
+ if (error)
+ goto out_put_nd_path;
nd->last_type = LAST_BIND;
*p = dentry->d_inode->i_op->follow_link(dentry, nd);
error = PTR_ERR(*p);
- if (!IS_ERR(*p)) {
- char *s = nd_get_link(nd);
- error = 0;
- if (s)
- error = __vfs_follow_link(nd, s);
- else if (nd->last_type == LAST_BIND) {
- nd->flags |= LOOKUP_JUMPED;
- nd->inode = nd->path.dentry->d_inode;
- if (nd->inode->i_op->follow_link) {
- /* stepped on a _really_ weird one */
- path_put(&nd->path);
- error = -ELOOP;
- }
+ if (IS_ERR(*p))
+ goto out_put_link;
+
+ error = 0;
+ s = nd_get_link(nd);
+ if (s) {
+ error = __vfs_follow_link(nd, s);
+ } else if (nd->last_type == LAST_BIND) {
+ nd->flags |= LOOKUP_JUMPED;
+ nd->inode = nd->path.dentry->d_inode;
+ if (nd->inode->i_op->follow_link) {
+ /* stepped on a _really_ weird one */
+ path_put(&nd->path);
+ error = -ELOOP;
}
- if (unlikely(error))
- put_link(nd, link, p);
}
+ if (unlikely(error))
+ put_link(nd, link, p);
+ return error;
+
+out_put_nd_path:
+ path_put(&nd->path);
+out_put_link:
+ path_put(link);
return error;
}
next prev parent reply other threads:[~2012-06-18 11:58 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-06-05 13:10 [PATCH 00/21] vfs: atomic open v6 (part 2) Miklos Szeredi
2012-06-05 13:10 ` [PATCH 01/21] vfs: do_last(): inline lookup_slow() Miklos Szeredi
2012-06-05 13:10 ` [PATCH 02/21] vfs: do_last(): separate O_CREAT specific code Miklos Szeredi
2012-06-05 13:10 ` [PATCH 03/21] vfs: do_last(): common slow lookup Miklos Szeredi
2012-06-05 13:10 ` [PATCH 04/21] vfs: add lookup_open() Miklos Szeredi
2012-06-05 13:10 ` [PATCH 05/21] vfs: lookup_open(): expand lookup_hash() Miklos Szeredi
2012-06-05 13:10 ` [PATCH 06/21] vfs: add i_op->atomic_open() Miklos Szeredi
2012-06-05 13:10 ` [PATCH 07/21] nfs: implement i_op->atomic_open() Miklos Szeredi
2012-06-05 13:10 ` [PATCH 08/21] nfs: clean up ->create in nfs_rpc_ops Miklos Szeredi
2012-06-05 13:10 ` [PATCH 09/21] nfs: don't use nd->intent.open.flags Miklos Szeredi
2012-06-05 13:10 ` [PATCH 10/21] nfs: don't use intents for checking atomic open Miklos Szeredi
2012-06-05 13:10 ` [PATCH 11/21] fuse: implement i_op->atomic_open() Miklos Szeredi
2012-06-05 13:10 ` [PATCH 12/21] cifs: " Miklos Szeredi
[not found] ` <1338901832-14049-13-git-send-email-miklos-sUDqSbJrdHQHWmgEVkV9KA@public.gmane.org>
2012-07-02 18:54 ` Jeff Layton
2012-06-05 13:10 ` [PATCH 13/21] ceph: remove unused arg from ceph_lookup_open() Miklos Szeredi
2012-06-05 13:10 ` [PATCH 14/21] ceph: implement i_op->atomic_open() Miklos Szeredi
2012-06-05 13:10 ` [PATCH 15/21] 9p: " Miklos Szeredi
2012-06-05 13:10 ` [PATCH 16/21] vfs: remove open intents from nameidata Miklos Szeredi
2012-06-05 13:10 ` [PATCH 17/21] vfs: do_last(): clean up error handling Miklos Szeredi
2012-06-05 13:10 ` [PATCH 18/21] vfs: do_last(): clean up labels Miklos Szeredi
2012-06-05 13:10 ` [PATCH 19/21] vfs: do_last(): clean up bool Miklos Szeredi
2012-06-05 13:10 ` [PATCH 20/21] vfs: do_last(): clean up retry Miklos Szeredi
2012-06-05 13:10 ` [PATCH 21/21] vfs: move O_DIRECT check to common code Miklos Szeredi
2012-06-05 15:39 ` [PATCH 00/21] vfs: atomic open v6 (part 2) Linus Torvalds
2012-06-05 15:50 ` Miklos Szeredi
2012-06-10 3:49 ` Al Viro
2012-06-10 5:54 ` Al Viro
2012-06-10 11:10 ` Al Viro
2012-06-10 17:56 ` Al Viro
2012-06-10 22:27 ` Al Viro
2012-06-13 11:21 ` Christoph Hellwig
2012-06-14 8:08 ` Al Viro
2012-06-17 20:37 ` Christoph Hellwig
2012-06-18 11:58 ` Christoph Hellwig [this message]
2012-06-18 13:12 ` Christoph Hellwig
2012-06-18 14:27 ` Miklos Szeredi
2012-06-22 8:49 ` Al Viro
2012-06-22 10:07 ` Al Viro
2012-06-11 10:57 ` Boaz Harrosh
2012-06-11 15:18 ` Miklos Szeredi
2012-06-11 16:33 ` Miklos Szeredi
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=20120618115804.GA4048@infradead.org \
--to=hch@infradead.org \
--cc=dhowells@redhat.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=miklos@szeredi.hu \
--cc=mszeredi@suse.cz \
--cc=torvalds@linux-foundation.org \
--cc=viro@ZenIV.linux.org.uk \
/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).