cregit-Linux how code gets into the kernel

Release 4.10 fs/proc/proc_net.c

Directory: fs/proc
/*
 *  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/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

PersonTokensPropCommitsCommitProp
david howellsdavid howells21100.00%1100.00%
Total21100.00%1100.00%


static struct net *get_proc_net(const struct inode *inode) { return maybe_get_net(PDE_NET(PDE(inode))); }

Contributors

PersonTokensPropCommitsCommitProp
adrian bunkadrian bunk26100.00%1100.00%
Total26100.00%1100.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

PersonTokensPropCommitsCommitProp
denis v. lunevdenis v. lunev9995.19%150.00%
hideaki yoshifujihideaki yoshifuji54.81%150.00%
Total104100.00%2100.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

PersonTokensPropCommitsCommitProp
pavel emelianovpavel emelianov93100.00%1100.00%
Total93100.00%1100.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

PersonTokensPropCommitsCommitProp
denis v. lunevdenis v. lunev4090.91%150.00%
hideaki yoshifujihideaki yoshifuji49.09%150.00%
Total44100.00%2100.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

PersonTokensPropCommitsCommitProp
pavel emelianovpavel emelianov39100.00%1100.00%
Total39100.00%1100.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

PersonTokensPropCommitsCommitProp
pavel emelianovpavel emelianov7886.67%150.00%
eric w. biedermaneric w. biederman1213.33%150.00%
Total90100.00%2100.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

PersonTokensPropCommitsCommitProp
pavel emelianovpavel emelianov7396.05%150.00%
al viroal viro33.95%150.00%
Total76100.00%2100.00%


static int proc_tgid_net_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat) { struct inode *inode = d_inode(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

PersonTokensPropCommitsCommitProp
pavel emelianovpavel emelianov7396.05%150.00%
david howellsdavid howells33.95%150.00%
Total76100.00%2100.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

PersonTokensPropCommitsCommitProp
pavel emelianovpavel emelianov5885.29%133.33%
al viroal viro1014.71%266.67%
Total68100.00%3100.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

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller9043.06%114.29%
dmitry torokhovdmitry torokhov6531.10%114.29%
pavel emelianovpavel emelianov3215.31%228.57%
david howellsdavid howells136.22%114.29%
nicolas dichtelnicolas dichtel62.87%114.29%
denis v. lunevdenis v. lunev31.44%114.29%
Total209100.00%7100.00%


static __net_exit void proc_net_ns_exit(struct net *net) { remove_proc_entry("stat", net->proc_net); kfree(net->proc_net); }

Contributors

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller2692.86%133.33%
pavel emelianovpavel emelianov27.14%266.67%
Total28100.00%3100.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

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller2083.33%125.00%
pavel emelianovpavel emelianov312.50%250.00%
linus torvaldslinus torvalds14.17%125.00%
Total24100.00%4100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
pavel emelianovpavel emelianov49448.24%416.00%
david s. millerdavid s. miller19118.65%14.00%
denis v. lunevdenis v. lunev15615.23%312.00%
dmitry torokhovdmitry torokhov686.64%14.00%
david howellsdavid howells373.61%312.00%
adrian bunkadrian bunk272.64%28.00%
al viroal viro141.37%416.00%
eric w. biedermaneric w. biederman121.17%14.00%
hideaki yoshifujihideaki yoshifuji90.88%14.00%
nicolas dichtelnicolas dichtel60.59%14.00%
alexey dobriyanalexey dobriyan50.49%14.00%
tejun heotejun heo30.29%14.00%
linus torvaldslinus torvalds20.20%28.00%
Total1024100.00%25100.00%
Directory: fs/proc
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.