aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorAl Viro <viro@ZenIV.linux.org.uk>2011-06-04 20:37:35 -0400
committerDavid S. Miller <davem@davemloft.net>2011-06-05 17:11:09 -0400
commitc316e6a3084cef1a5857cd66bb5429c969f06c93 (patch)
tree4e50df4d1c0d3df5db7fb8df51225adc950c417e /net
parent23c79d31a3dd2602ee1a5ff31303b2d7a2d3c159 (diff)
get_net_ns_by_fd() oopses if proc_ns_fget() returns an error
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>
Diffstat (limited to 'net')
-rw-r--r--net/core/net_namespace.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/net/core/net_namespace.c b/net/core/net_namespace.c
index 6c6b86d0da15..e41e5110c65c 100644
--- a/net/core/net_namespace.c
+++ b/net/core/net_namespace.c
@@ -310,19 +310,17 @@ struct net *get_net_ns_by_fd(int fd)
310 struct file *file; 310 struct file *file;
311 struct net *net; 311 struct net *net;
312 312
313 net = ERR_PTR(-EINVAL);
314 file = proc_ns_fget(fd); 313 file = proc_ns_fget(fd);
315 if (!file) 314 if (IS_ERR(file))
316 goto out; 315 return ERR_CAST(file);
317 316
318 ei = PROC_I(file->f_dentry->d_inode); 317 ei = PROC_I(file->f_dentry->d_inode);
319 if (ei->ns_ops != &netns_operations) 318 if (ei->ns_ops == &netns_operations)
320 goto out; 319 net = get_net(ei->ns);
320 else
321 net = ERR_PTR(-EINVAL);
321 322
322 net = get_net(ei->ns); 323 fput(file);
323out:
324 if (file)
325 fput(file);
326 return net; 324 return net;
327} 325}
328 326