]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
kernfs: add missing kernfs_active() checks in directory operations
authorTejun Heo <tj@kernel.org>
Mon, 3 Feb 2014 19:09:11 +0000 (14:09 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 7 Feb 2014 23:52:48 +0000 (15:52 -0800)
kernfs_iop_lookup(), kernfs_dir_pos() and kernfs_dir_next_pos() were
missing kernfs_active() tests before using the found kernfs_node.  As
deactivated state is currently visible only while a node is being
removed, this doesn't pose an actual problem.  e.g. lookup succeeding
on a deactivated node doesn't harm anything as the eventual file
operations are gonna fail and those failures are indistinguishible
from the cases in which the lookups had happened before the node was
deactivated.

However, we're gonna allow new nodes to be created deactivated and
then activated explicitly by the kernfs user when it sees fit.  This
is to support atomically making multiple nodes visible to userland and
thus those nodes must not be visible to userland before activated.

Let's plug the lookup and readdir holes so that deactivated nodes are
invisible to userland.

Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/kernfs/dir.c

index f58d2f16eaf74344625d3f2d97e109b56b1e2aeb..89f8462f337e907dc0305fa51edc606cdc208ef0 100644 (file)
@@ -629,7 +629,7 @@ static struct dentry *kernfs_iop_lookup(struct inode *dir,
        kn = kernfs_find_ns(parent, dentry->d_name.name, ns);
 
        /* no such entry */
-       if (!kn) {
+       if (!kn || !kernfs_active(kn)) {
                ret = NULL;
                goto out_unlock;
        }
@@ -1112,8 +1112,8 @@ static struct kernfs_node *kernfs_dir_pos(const void *ns,
                                break;
                }
        }
-       /* Skip over entries in the wrong namespace */
-       while (pos && pos->ns != ns) {
+       /* Skip over entries which are dying/dead or in the wrong namespace */
+       while (pos && (!kernfs_active(pos) || pos->ns != ns)) {
                struct rb_node *node = rb_next(&pos->rb);
                if (!node)
                        pos = NULL;
@@ -1127,14 +1127,15 @@ static struct kernfs_node *kernfs_dir_next_pos(const void *ns,
        struct kernfs_node *parent, ino_t ino, struct kernfs_node *pos)
 {
        pos = kernfs_dir_pos(ns, parent, ino, pos);
-       if (pos)
+       if (pos) {
                do {
                        struct rb_node *node = rb_next(&pos->rb);
                        if (!node)
                                pos = NULL;
                        else
                                pos = rb_to_kn(node);
-               } while (pos && pos->ns != ns);
+               } while (pos && (!kernfs_active(pos) || pos->ns != ns));
+       }
        return pos;
 }