]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
get_net_ns_by_fd() oopses if proc_ns_fget() returns an error
authorAl Viro <viro@ZenIV.linux.org.uk>
Sun, 5 Jun 2011 00:37:35 +0000 (00:37 +0000)
committerDavid S. Miller <davem@davemloft.net>
Sun, 5 Jun 2011 21:11:09 +0000 (14:11 -0700)
BTW, looking through the code related to struct net lifetime rules has
caught something else:

struct net *get_net_ns_by_fd(int fd)
{
        ...
        file = proc_ns_fget(fd);
        if (!file)
                goto out;

        ei = PROC_I(file->f_dentry->d_inode);

while in proc_ns_fget() we have two return ERR_PTR(...) and not a single
path that would return NULL.  The other caller of proc_ns_fget() treats
ERR_PTR() correctly...

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/net_namespace.c

index 6c6b86d0da155c057488cc66fcea108bebf7f391..e41e5110c65ca2aa1ae57ddfd970caee49a6312f 100644 (file)
@@ -310,19 +310,17 @@ struct net *get_net_ns_by_fd(int fd)
        struct file *file;
        struct net *net;
 
-       net = ERR_PTR(-EINVAL);
        file = proc_ns_fget(fd);
-       if (!file)
-               goto out;
+       if (IS_ERR(file))
+               return ERR_CAST(file);
 
        ei = PROC_I(file->f_dentry->d_inode);
-       if (ei->ns_ops != &netns_operations)
-               goto out;
+       if (ei->ns_ops == &netns_operations)
+               net = get_net(ei->ns);
+       else
+               net = ERR_PTR(-EINVAL);
 
-       net = get_net(ei->ns);
-out:
-       if (file)
-               fput(file);
+       fput(file);
        return net;
 }