Release 4.11 fs/proc/proc_net.c
/*
* linux/fs/proc/net.c
*
* Copyright (C) 2007
*
* Author: Eric Biederman <ebiederm@xmission.com>
*
* proc net directory handling functions
*/
#include <linux/uaccess.h>
#include <linux/errno.h>
#include <linux/time.h>
#include <linux/proc_fs.h>
#include <linux/stat.h>
#include <linux/slab.h>
#include <linux/init.h>
#include <linux/sched.h>
#include <linux/sched/task.h>
#include <linux/module.h>
#include <linux/bitops.h>
#include <linux/mount.h>
#include <linux/nsproxy.h>
#include <linux/uidgid.h>
#include <net/net_namespace.h>
#include <linux/seq_file.h>
#include "internal.h"
static inline struct net *PDE_NET(struct proc_dir_entry *pde)
{
return pde->parent->data;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Howells | 21 | 100.00% | 1 | 100.00% |
Total | 21 | 100.00% | 1 | 100.00% |
static struct net *get_proc_net(const struct inode *inode)
{
return maybe_get_net(PDE_NET(PDE(inode)));
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Adrian Bunk | 26 | 100.00% | 1 | 100.00% |
Total | 26 | 100.00% | 1 | 100.00% |
int seq_open_net(struct inode *ino, struct file *f,
const struct seq_operations *ops, int size)
{
struct net *net;
struct seq_net_private *p;
BUG_ON(size < sizeof(*p));
net = get_proc_net(ino);
if (net == NULL)
return -ENXIO;
p = __seq_open_private(f, ops, size);
if (p == NULL) {
put_net(net);
return -ENOMEM;
}
#ifdef CONFIG_NET_NS
p->net = net;
#endif
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Denis V. Lunev | 99 | 95.19% | 1 | 50.00% |
Hideaki Yoshifuji / 吉藤英明 | 5 | 4.81% | 1 | 50.00% |
Total | 104 | 100.00% | 2 | 100.00% |
EXPORT_SYMBOL_GPL(seq_open_net);
int single_open_net(struct inode *inode, struct file *file,
int (*show)(struct seq_file *, void *))
{
int err;
struct net *net;
err = -ENXIO;
net = get_proc_net(inode);
if (net == NULL)
goto err_net;
err = single_open(file, show, net);
if (err < 0)
goto err_open;
return 0;
err_open:
put_net(net);
err_net:
return err;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Pavel Emelyanov | 93 | 100.00% | 1 | 100.00% |
Total | 93 | 100.00% | 1 | 100.00% |
EXPORT_SYMBOL_GPL(single_open_net);
int seq_release_net(struct inode *ino, struct file *f)
{
struct seq_file *seq;
seq = f->private_data;
put_net(seq_file_net(seq));
seq_release_private(ino, f);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Denis V. Lunev | 40 | 90.91% | 1 | 50.00% |
Hideaki Yoshifuji / 吉藤英明 | 4 | 9.09% | 1 | 50.00% |
Total | 44 | 100.00% | 2 | 100.00% |
EXPORT_SYMBOL_GPL(seq_release_net);
int single_release_net(struct inode *ino, struct file *f)
{
struct seq_file *seq = f->private_data;
put_net(seq->private);
return single_release(ino, f);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Pavel Emelyanov | 39 | 100.00% | 1 | 100.00% |
Total | 39 | 100.00% | 1 | 100.00% |
EXPORT_SYMBOL_GPL(single_release_net);
static struct net *get_proc_task_net(struct inode *dir)
{
struct task_struct *task;
struct nsproxy *ns;
struct net *net = NULL;
rcu_read_lock();
task = pid_task(proc_pid(dir), PIDTYPE_PID);
if (task != NULL) {
task_lock(task);
ns = task->nsproxy;
if (ns != NULL)
net = get_net(ns->net_ns);
task_unlock(task);
}
rcu_read_unlock();
return net;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Pavel Emelyanov | 78 | 86.67% | 1 | 50.00% |
Eric W. Biedermann | 12 | 13.33% | 1 | 50.00% |
Total | 90 | 100.00% | 2 | 100.00% |
static struct dentry *proc_tgid_net_lookup(struct inode *dir,
struct dentry *dentry, unsigned int flags)
{
struct dentry *de;
struct net *net;
de = ERR_PTR(-ENOENT);
net = get_proc_task_net(dir);
if (net != NULL) {
de = proc_lookup_de(net->proc_net, dir, dentry);
put_net(net);
}
return de;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Pavel Emelyanov | 73 | 96.05% | 1 | 50.00% |
Al Viro | 3 | 3.95% | 1 | 50.00% |
Total | 76 | 100.00% | 2 | 100.00% |
static int proc_tgid_net_getattr(const struct path *path, struct kstat *stat,
u32 request_mask, unsigned int query_flags)
{
struct inode *inode = d_inode(path->dentry);
struct net *net;
net = get_proc_task_net(inode);
generic_fillattr(inode, stat);
if (net != NULL) {
stat->nlink = net->proc_net->nlink;
put_net(net);
}
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Pavel Emelyanov | 66 | 81.48% | 1 | 33.33% |
David Howells | 15 | 18.52% | 2 | 66.67% |
Total | 81 | 100.00% | 3 | 100.00% |
const struct inode_operations proc_net_inode_operations = {
.lookup = proc_tgid_net_lookup,
.getattr = proc_tgid_net_getattr,
};
static int proc_tgid_net_readdir(struct file *file, struct dir_context *ctx)
{
int ret;
struct net *net;
ret = -EINVAL;
net = get_proc_task_net(file_inode(file));
if (net != NULL) {
ret = proc_readdir_de(net->proc_net, file, ctx);
put_net(net);
}
return ret;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Pavel Emelyanov | 58 | 85.29% | 1 | 33.33% |
Al Viro | 10 | 14.71% | 2 | 66.67% |
Total | 68 | 100.00% | 3 | 100.00% |
const struct file_operations proc_net_operations = {
.llseek = generic_file_llseek,
.read = generic_read_dir,
.iterate_shared = proc_tgid_net_readdir,
};
static __net_init int proc_net_ns_init(struct net *net)
{
struct proc_dir_entry *netd, *net_statd;
kuid_t uid;
kgid_t gid;
int err;
err = -ENOMEM;
netd = kzalloc(sizeof(*netd) + 4, GFP_KERNEL);
if (!netd)
goto out;
netd->subdir = RB_ROOT;
netd->data = net;
netd->nlink = 2;
netd->namelen = 3;
netd->parent = &proc_root;
memcpy(netd->name, "net", 4);
uid = make_kuid(net->user_ns, 0);
if (!uid_valid(uid))
uid = netd->uid;
gid = make_kgid(net->user_ns, 0);
if (!gid_valid(gid))
gid = netd->gid;
proc_set_user(netd, uid, gid);
err = -EEXIST;
net_statd = proc_net_mkdir(net, "stat", netd);
if (!net_statd)
goto free_net;
net->proc_net = netd;
net->proc_net_stat = net_statd;
return 0;
free_net:
kfree(netd);
out:
return err;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 90 | 43.06% | 1 | 14.29% |
Dmitry Torokhov | 65 | 31.10% | 1 | 14.29% |
Pavel Emelyanov | 32 | 15.31% | 2 | 28.57% |
David Howells | 13 | 6.22% | 1 | 14.29% |
Nicolas Dichtel | 6 | 2.87% | 1 | 14.29% |
Denis V. Lunev | 3 | 1.44% | 1 | 14.29% |
Total | 209 | 100.00% | 7 | 100.00% |
static __net_exit void proc_net_ns_exit(struct net *net)
{
remove_proc_entry("stat", net->proc_net);
kfree(net->proc_net);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 26 | 92.86% | 1 | 33.33% |
Pavel Emelyanov | 2 | 7.14% | 2 | 66.67% |
Total | 28 | 100.00% | 3 | 100.00% |
static struct pernet_operations __net_initdata proc_net_ns_ops = {
.init = proc_net_ns_init,
.exit = proc_net_ns_exit,
};
int __init proc_net_init(void)
{
proc_symlink("net", NULL, "self/net");
return register_pernet_subsys(&proc_net_ns_ops);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 20 | 83.33% | 1 | 25.00% |
Pavel Emelyanov | 3 | 12.50% | 2 | 50.00% |
Linus Torvalds | 1 | 4.17% | 1 | 25.00% |
Total | 24 | 100.00% | 4 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Pavel Emelyanov | 487 | 47.19% | 4 | 14.81% |
David S. Miller | 191 | 18.51% | 1 | 3.70% |
Denis V. Lunev | 156 | 15.12% | 3 | 11.11% |
Dmitry Torokhov | 68 | 6.59% | 1 | 3.70% |
David Howells | 49 | 4.75% | 4 | 14.81% |
Adrian Bunk | 27 | 2.62% | 2 | 7.41% |
Al Viro | 14 | 1.36% | 4 | 14.81% |
Eric W. Biedermann | 12 | 1.16% | 1 | 3.70% |
Hideaki Yoshifuji / 吉藤英明 | 9 | 0.87% | 1 | 3.70% |
Nicolas Dichtel | 6 | 0.58% | 1 | 3.70% |
Alexey Dobriyan | 5 | 0.48% | 1 | 3.70% |
Tejun Heo | 3 | 0.29% | 1 | 3.70% |
Ingo Molnar | 3 | 0.29% | 1 | 3.70% |
Linus Torvalds | 2 | 0.19% | 2 | 7.41% |
Total | 1032 | 100.00% | 27 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.