Release 4.11 fs/proc/generic.c
/*
* proc/fs/generic.c --- generic routines for the proc-fs
*
* This file contains generic proc-fs routines for handling
* directories and files.
*
* Copyright (C) 1991, 1992 Linus Torvalds.
* Copyright (C) 1997 Theodore Ts'o
*/
#include <linux/errno.h>
#include <linux/time.h>
#include <linux/proc_fs.h>
#include <linux/stat.h>
#include <linux/mm.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/printk.h>
#include <linux/mount.h>
#include <linux/init.h>
#include <linux/idr.h>
#include <linux/bitops.h>
#include <linux/spinlock.h>
#include <linux/completion.h>
#include <linux/uaccess.h>
#include "internal.h"
static DEFINE_RWLOCK(proc_subdir_lock);
static int proc_match(unsigned int len, const char *name, struct proc_dir_entry *de)
{
if (len < de->namelen)
return -1;
if (len > de->namelen)
return 1;
return memcmp(name, de->name, len);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 39 | 70.91% | 1 | 25.00% |
Nicolas Dichtel | 14 | 25.45% | 1 | 25.00% |
Eric W. Biedermann | 1 | 1.82% | 1 | 25.00% |
Alexey Dobriyan | 1 | 1.82% | 1 | 25.00% |
Total | 55 | 100.00% | 4 | 100.00% |
static struct proc_dir_entry *pde_subdir_first(struct proc_dir_entry *dir)
{
return rb_entry_safe(rb_first(&dir->subdir), struct proc_dir_entry,
subdir_node);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Nicolas Dichtel | 30 | 100.00% | 2 | 100.00% |
Total | 30 | 100.00% | 2 | 100.00% |
static struct proc_dir_entry *pde_subdir_next(struct proc_dir_entry *dir)
{
return rb_entry_safe(rb_next(&dir->subdir_node), struct proc_dir_entry,
subdir_node);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Nicolas Dichtel | 30 | 100.00% | 2 | 100.00% |
Total | 30 | 100.00% | 2 | 100.00% |
static struct proc_dir_entry *pde_subdir_find(struct proc_dir_entry *dir,
const char *name,
unsigned int len)
{
struct rb_node *node = dir->subdir.rb_node;
while (node) {
struct proc_dir_entry *de = rb_entry(node,
struct proc_dir_entry,
subdir_node);
int result = proc_match(len, name, de);
if (result < 0)
node = node->rb_left;
else if (result > 0)
node = node->rb_right;
else
return de;
}
return NULL;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Nicolas Dichtel | 97 | 98.98% | 1 | 50.00% |
Geliang Tang | 1 | 1.02% | 1 | 50.00% |
Total | 98 | 100.00% | 2 | 100.00% |
static bool pde_subdir_insert(struct proc_dir_entry *dir,
struct proc_dir_entry *de)
{
struct rb_root *root = &dir->subdir;
struct rb_node **new = &root->rb_node, *parent = NULL;
/* Figure out where to put new node */
while (*new) {
struct proc_dir_entry *this = rb_entry(*new,
struct proc_dir_entry,
subdir_node);
int result = proc_match(de->namelen, de->name, this);
parent = *new;
if (result < 0)
new = &(*new)->rb_left;
else if (result > 0)
new = &(*new)->rb_right;
else
return false;
}
/* Add new node and rebalance tree. */
rb_link_node(&de->subdir_node, parent, new);
rb_insert_color(&de->subdir_node, root);
return true;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Nicolas Dichtel | 149 | 99.33% | 1 | 50.00% |
Geliang Tang | 1 | 0.67% | 1 | 50.00% |
Total | 150 | 100.00% | 2 | 100.00% |
static int proc_notify_change(struct dentry *dentry, struct iattr *iattr)
{
struct inode *inode = d_inode(dentry);
struct proc_dir_entry *de = PDE(inode);
int error;
error = setattr_prepare(dentry, iattr);
if (error)
return error;
setattr_copy(inode, iattr);
mark_inode_dirty(inode);
proc_set_user(de, inode->i_uid, inode->i_gid);
de->mode = inode->i_mode;
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Olaf Dietsche | 51 | 56.04% | 1 | 16.67% |
Christoph Hellwig | 16 | 17.58% | 1 | 16.67% |
Chris Wright | 14 | 15.38% | 1 | 16.67% |
Rui Xiang | 5 | 5.49% | 1 | 16.67% |
David Howells | 3 | 3.30% | 1 | 16.67% |
Jan Kara | 2 | 2.20% | 1 | 16.67% |
Total | 91 | 100.00% | 6 | 100.00% |
static int proc_getattr(const struct path *path, struct kstat *stat,
u32 request_mask, unsigned int query_flags)
{
struct inode *inode = d_inode(path->dentry);
struct proc_dir_entry *de = PDE(inode);
if (de && de->nlink)
set_nlink(inode, de->nlink);
generic_fillattr(inode, stat);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Miklos Szeredi | 57 | 78.08% | 2 | 40.00% |
David Howells | 15 | 20.55% | 2 | 40.00% |
Alexander Kuleshov | 1 | 1.37% | 1 | 20.00% |
Total | 73 | 100.00% | 5 | 100.00% |
static const struct inode_operations proc_file_inode_operations = {
.setattr = proc_notify_change,
};
/*
* This function parses a name such as "tty/driver/serial", and
* returns the struct proc_dir_entry for "/proc/tty/driver", and
* returns "serial" in residual.
*/
static int __xlate_proc_name(const char *name, struct proc_dir_entry **ret,
const char **residual)
{
const char *cp = name, *next;
struct proc_dir_entry *de;
unsigned int len;
de = *ret;
if (!de)
de = &proc_root;
while (1) {
next = strchr(cp, '/');
if (!next)
break;
len = next - cp;
de = pde_subdir_find(de, cp, len);
if (!de) {
WARN(1, "name '%s'\n", name);
return -ENOENT;
}
cp += len + 1;
}
*residual = cp;
*ret = de;
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 101 | 75.37% | 1 | 14.29% |
Alexey Dobriyan | 28 | 20.90% | 4 | 57.14% |
Nicolas Dichtel | 4 | 2.99% | 1 | 14.29% |
Steven Rostedt | 1 | 0.75% | 1 | 14.29% |
Total | 134 | 100.00% | 7 | 100.00% |
static int xlate_proc_name(const char *name, struct proc_dir_entry **ret,
const char **residual)
{
int rv;
read_lock(&proc_subdir_lock);
rv = __xlate_proc_name(name, ret, residual);
read_unlock(&proc_subdir_lock);
return rv;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alexey Dobriyan | 42 | 80.77% | 1 | 25.00% |
Steven Rostedt | 5 | 9.62% | 1 | 25.00% |
Linus Torvalds (pre-git) | 3 | 5.77% | 1 | 25.00% |
Waiman Long | 2 | 3.85% | 1 | 25.00% |
Total | 52 | 100.00% | 4 | 100.00% |
static DEFINE_IDA(proc_inum_ida);
static DEFINE_SPINLOCK(proc_inum_lock); /* protects the above */
#define PROC_DYNAMIC_FIRST 0xF0000000U
/*
* Return an inode number between PROC_DYNAMIC_FIRST and
* 0xffffffff, or zero on failure.
*/
int proc_alloc_inum(unsigned int *inum)
{
unsigned int i;
int error;
retry:
if (!ida_pre_get(&proc_inum_ida, GFP_KERNEL))
return -ENOMEM;
spin_lock_irq(&proc_inum_lock);
error = ida_get_new(&proc_inum_ida, &i);
spin_unlock_irq(&proc_inum_lock);
if (error == -EAGAIN)
goto retry;
else if (error)
return error;
if (i > UINT_MAX - PROC_DYNAMIC_FIRST) {
spin_lock_irq(&proc_inum_lock);
ida_remove(&proc_inum_ida, i);
spin_unlock_irq(&proc_inum_lock);
return -ENOSPC;
}
*inum = PROC_DYNAMIC_FIRST + i;
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alexey Dobriyan | 35 | 29.41% | 3 | 33.33% |
Andrew Morton | 26 | 21.85% | 1 | 11.11% |
Eric W. Biedermann | 21 | 17.65% | 2 | 22.22% |
Corey Minyard | 16 | 13.45% | 1 | 11.11% |
Linus Torvalds (pre-git) | 11 | 9.24% | 1 | 11.11% |
Linus Torvalds | 10 | 8.40% | 1 | 11.11% |
Total | 119 | 100.00% | 9 | 100.00% |
void proc_free_inum(unsigned int inum)
{
unsigned long flags;
spin_lock_irqsave(&proc_inum_lock, flags);
ida_remove(&proc_inum_ida, inum - PROC_DYNAMIC_FIRST);
spin_unlock_irqrestore(&proc_inum_lock, flags);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 14 | 35.90% | 1 | 14.29% |
Eric W. Biedermann | 11 | 28.21% | 2 | 28.57% |
Linus Torvalds | 5 | 12.82% | 1 | 14.29% |
Alexey Dobriyan | 5 | 12.82% | 2 | 28.57% |
Linus Torvalds (pre-git) | 4 | 10.26% | 1 | 14.29% |
Total | 39 | 100.00% | 7 | 100.00% |
/*
* Don't create negative dentries here, return -ENOENT by hand
* instead.
*/
struct dentry *proc_lookup_de(struct proc_dir_entry *de, struct inode *dir,
struct dentry *dentry)
{
struct inode *inode;
read_lock(&proc_subdir_lock);
de = pde_subdir_find(de, dentry->d_name.name, dentry->d_name.len);
if (de) {
pde_get(de);
read_unlock(&proc_subdir_lock);
inode = proc_get_inode(dir->i_sb, de);
if (!inode)
return ERR_PTR(-ENOMEM);
d_set_d_op(dentry, &simple_dentry_operations);
d_add(dentry, inode);
return NULL;
}
read_unlock(&proc_subdir_lock);
return ERR_PTR(-ENOENT);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 68 | 55.28% | 1 | 9.09% |
Nicolas Dichtel | 15 | 12.20% | 1 | 9.09% |
Al Viro | 14 | 11.38% | 3 | 27.27% |
Alexey Dobriyan | 8 | 6.50% | 2 | 18.18% |
Pavel Emelyanov | 6 | 4.88% | 1 | 9.09% |
Steven Rostedt | 5 | 4.07% | 1 | 9.09% |
Nicholas Piggin | 4 | 3.25% | 1 | 9.09% |
Waiman Long | 3 | 2.44% | 1 | 9.09% |
Total | 123 | 100.00% | 11 | 100.00% |
struct dentry *proc_lookup(struct inode *dir, struct dentry *dentry,
unsigned int flags)
{
return proc_lookup_de(PDE(dir), dir, dentry);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Pavel Emelyanov | 31 | 91.18% | 1 | 50.00% |
Al Viro | 3 | 8.82% | 1 | 50.00% |
Total | 34 | 100.00% | 2 | 100.00% |
/*
* This returns non-zero if at EOF, so that the /proc
* root directory can use this and check if it should
* continue with the <pid> entries..
*
* Note that the VFS-layer doesn't care about the return
* value of the readdir() call, as long as it's non-negative
* for success..
*/
int proc_readdir_de(struct proc_dir_entry *de, struct file *file,
struct dir_context *ctx)
{
int i;
if (!dir_emit_dots(file, ctx))
return 0;
read_lock(&proc_subdir_lock);
de = pde_subdir_first(de);
i = ctx->pos - 2;
for (;;) {
if (!de) {
read_unlock(&proc_subdir_lock);
return 0;
}
if (!i)
break;
de = pde_subdir_next(de);
i--;
}
do {
struct proc_dir_entry *next;
pde_get(de);
read_unlock(&proc_subdir_lock);
if (!dir_emit(ctx, de->name, de->namelen,
de->low_ino, de->mode >> 12)) {
pde_put(de);
return 0;
}
read_lock(&proc_subdir_lock);
ctx->pos++;
next = pde_subdir_next(de);
pde_put(de);
de = next;
} while (de);
read_unlock(&proc_subdir_lock);
return 1;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 90 | 46.88% | 2 | 18.18% |
Al Viro | 26 | 13.54% | 1 | 9.09% |
Steven Rostedt | 25 | 13.02% | 1 | 9.09% |
Darrick J. Wong | 24 | 12.50% | 1 | 9.09% |
Nicolas Dichtel | 9 | 4.69% | 1 | 9.09% |
Pavel Emelyanov | 6 | 3.12% | 1 | 9.09% |
Waiman Long | 5 | 2.60% | 1 | 9.09% |
Alexey Dobriyan | 3 | 1.56% | 1 | 9.09% |
Dave Hansen | 3 | 1.56% | 1 | 9.09% |
Linus Torvalds | 1 | 0.52% | 1 | 9.09% |
Total | 192 | 100.00% | 11 | 100.00% |
int proc_readdir(struct file *file, struct dir_context *ctx)
{
struct inode *inode = file_inode(file);
return proc_readdir_de(PDE(inode), file, ctx);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Pavel Emelyanov | 28 | 73.68% | 1 | 33.33% |
Al Viro | 10 | 26.32% | 2 | 66.67% |
Total | 38 | 100.00% | 3 | 100.00% |
/*
* These are the generic /proc directory operations. They
* use the in-memory "struct proc_dir_entry" tree to parse
* the /proc directory.
*/
static const struct file_operations proc_dir_operations = {
.llseek = generic_file_llseek,
.read = generic_read_dir,
.iterate_shared = proc_readdir,
};
/*
* proc directories can do almost nothing..
*/
static const struct inode_operations proc_dir_inode_operations = {
.lookup = proc_lookup,
.getattr = proc_getattr,
.setattr = proc_notify_change,
};
static int proc_register(struct proc_dir_entry * dir, struct proc_dir_entry * dp)
{
int ret;
ret = proc_alloc_inum(&dp->low_ino);
if (ret)
return ret;
write_lock(&proc_subdir_lock);
dp->parent = dir;
if (pde_subdir_insert(dir, dp) == false) {
WARN(1, "proc_dir_entry '%s/%s' already registered\n",
dir->name, dp->name);
write_unlock(&proc_subdir_lock);
proc_free_inum(dp->low_ino);
return -EEXIST;
}
write_unlock(&proc_subdir_lock);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 26 | 25.49% | 2 | 20.00% |
Debabrata Banerjee | 18 | 17.65% | 1 | 10.00% |
Rui Zhang | 17 | 16.67% | 1 | 10.00% |
Eric W. Biedermann | 13 | 12.75% | 1 | 10.00% |
Changli Gao | 10 | 9.80% | 1 | 10.00% |
Nicolas Dichtel | 7 | 6.86% | 1 | 10.00% |
Alexey Dobriyan | 5 | 4.90% | 1 | 10.00% |
Waiman Long | 3 | 2.94% | 1 | 10.00% |
Arjan van de Ven | 3 | 2.94% | 1 | 10.00% |
Total | 102 | 100.00% | 10 | 100.00% |
static struct proc_dir_entry *__proc_create(struct proc_dir_entry **parent,
const char *name,
umode_t mode,
nlink_t nlink)
{
struct proc_dir_entry *ent = NULL;
const char *fn;
struct qstr qstr;
if (xlate_proc_name(name, parent, &fn) != 0)
goto out;
qstr.name = fn;
qstr.len = strlen(fn);
if (qstr.len == 0 || qstr.len >= 256) {
WARN(1, "name len %u\n", qstr.len);
return NULL;
}
if (*parent == &proc_root && name_to_int(&qstr) != ~0U) {
WARN(1, "create '/proc/%s' by hand\n", qstr.name);
return NULL;
}
if (is_empty_pde(*parent)) {
WARN(1, "attempt to add to permanently empty directory");
return NULL;
}
ent = kzalloc(sizeof(struct proc_dir_entry) + qstr.len + 1, GFP_KERNEL);
if (!ent)
goto out;
memcpy(ent->name, fn, qstr.len + 1);
ent->namelen = qstr.len;
ent->mode = mode;
ent->nlink = nlink;
ent->subdir = RB_ROOT;
atomic_set(&ent->count, 1);
spin_lock_init(&ent->pde_unload_lock);
INIT_LIST_HEAD(&ent->pde_openers);
proc_set_user(ent, (*parent)->uid, (*parent)->gid);
out:
return ent;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alexey Dobriyan | 105 | 38.32% | 5 | 33.33% |
Linus Torvalds (pre-git) | 92 | 33.58% | 2 | 13.33% |
Linus Torvalds | 22 | 8.03% | 1 | 6.67% |
Eric W. Biedermann | 20 | 7.30% | 1 | 6.67% |
Dmitry Torokhov | 19 | 6.93% | 1 | 6.67% |
Nicolas Dichtel | 6 | 2.19% | 1 | 6.67% |
Nathan Lynch | 6 | 2.19% | 1 | 6.67% |
David Howells | 2 | 0.73% | 1 | 6.67% |
Al Viro | 1 | 0.36% | 1 | 6.67% |
Yan Hong | 1 | 0.36% | 1 | 6.67% |
Total | 274 | 100.00% | 15 | 100.00% |
struct proc_dir_entry *proc_symlink(const char *name,
struct proc_dir_entry *parent, const char *dest)
{
struct proc_dir_entry *ent;
ent = __proc_create(&parent, name,
(S_IFLNK | S_IRUGO | S_IWUGO | S_IXUGO),1);
if (ent) {
ent->data = kmalloc((ent->size=strlen(dest))+1, GFP_KERNEL);
if (ent->data) {
strcpy((char*)ent->data,dest);
ent->proc_iops = &proc_link_inode_operations;
if (proc_register(parent, ent) < 0) {
kfree(ent->data);
kfree(ent);
ent = NULL;
}
} else {
kfree(ent);
ent = NULL;
}
}
return ent;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 62 | 41.61% | 1 | 20.00% |
Linus Torvalds | 57 | 38.26% | 1 | 20.00% |
Jeff Garzik | 22 | 14.77% | 1 | 20.00% |
Al Viro | 7 | 4.70% | 1 | 20.00% |
Alexey Dobriyan | 1 | 0.67% | 1 | 20.00% |
Total | 149 | 100.00% | 5 | 100.00% |
EXPORT_SYMBOL(proc_symlink);
struct proc_dir_entry *proc_mkdir_data(const char *name, umode_t mode,
struct proc_dir_entry *parent, void *data)
{
struct proc_dir_entry *ent;
if (mode == 0)
mode = S_IRUGO | S_IXUGO;
ent = __proc_create(&parent, name, S_IFDIR | mode, 2);
if (ent) {
ent->data = data;
ent->proc_fops = &proc_dir_operations;
ent->proc_iops = &proc_dir_inode_operations;
parent->nlink++;
if (proc_register(parent, ent) < 0) {
kfree(ent);
parent->nlink--;
ent = NULL;
}
}
return ent;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds | 30 | 25.42% | 1 | 12.50% |
Al Viro | 25 | 21.19% | 2 | 25.00% |
David Howells | 23 | 19.49% | 1 | 12.50% |
Linus Torvalds (pre-git) | 21 | 17.80% | 1 | 12.50% |
Jeff Garzik | 15 | 12.71% | 1 | 12.50% |
Andrew Morton | 3 | 2.54% | 1 | 12.50% |
Alexey Dobriyan | 1 | 0.85% | 1 | 12.50% |
Total | 118 | 100.00% | 8 | 100.00% |
EXPORT_SYMBOL_GPL(proc_mkdir_data);
struct proc_dir_entry *proc_mkdir_mode(const char *name, umode_t mode,
struct proc_dir_entry *parent)
{
return proc_mkdir_data(name, mode, parent, NULL);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Denis V. Lunev | 24 | 75.00% | 1 | 50.00% |
David Howells | 8 | 25.00% | 1 | 50.00% |
Total | 32 | 100.00% | 2 | 100.00% |
EXPORT_SYMBOL(proc_mkdir_mode);
struct proc_dir_entry *proc_mkdir(const char *name,
struct proc_dir_entry *parent)
{
return proc_mkdir_data(name, 0, parent, NULL);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 25 | 86.21% | 1 | 50.00% |
David Howells | 4 | 13.79% | 1 | 50.00% |
Total | 29 | 100.00% | 2 | 100.00% |
EXPORT_SYMBOL(proc_mkdir);
struct proc_dir_entry *proc_create_mount_point(const char *name)
{
umode_t mode = S_IFDIR | S_IRUGO | S_IXUGO;
struct proc_dir_entry *ent, *parent = NULL;
ent = __proc_create(&parent, name, mode, 2);
if (ent) {
ent->data = NULL;
ent->proc_fops = NULL;
ent->proc_iops = NULL;
if (proc_register(parent, ent) < 0) {
kfree(ent);
parent->nlink--;
ent = NULL;
}
}
return ent;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Eric W. Biedermann | 99 | 100.00% | 1 | 100.00% |
Total | 99 | 100.00% | 1 | 100.00% |
EXPORT_SYMBOL(proc_create_mount_point);
struct proc_dir_entry *proc_create_data(const char *name, umode_t mode,
struct proc_dir_entry *parent,
const struct file_operations *proc_fops,
void *data)
{
struct proc_dir_entry *pde;
if ((mode & S_IFMT) == 0)
mode |= S_IFREG;
if (!S_ISREG(mode)) {
WARN_ON(1); /* use proc_mkdir() */
return NULL;
}
BUG_ON(proc_fops == NULL);
if ((mode & S_IALLUGO) == 0)
mode |= S_IRUGO;
pde = __proc_create(&parent, name, mode, 1);
if (!pde)
goto out;
pde->proc_fops = proc_fops;
pde->data = data;
pde->proc_iops = &proc_file_inode_operations;
if (proc_register(parent, pde) < 0)
goto out_free;
return pde;
out_free:
kfree(pde);
out:
return NULL;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alexey Dobriyan | 116 | 72.96% | 1 | 20.00% |
Al Viro | 32 | 20.13% | 3 | 60.00% |
Denis V. Lunev | 11 | 6.92% | 1 | 20.00% |
Total | 159 | 100.00% | 5 | 100.00% |
EXPORT_SYMBOL(proc_create_data);
void proc_set_size(struct proc_dir_entry *de, loff_t size)
{
de->size = size;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Howells | 19 | 100.00% | 1 | 100.00% |
Total | 19 | 100.00% | 1 | 100.00% |
EXPORT_SYMBOL(proc_set_size);
void proc_set_user(struct proc_dir_entry *de, kuid_t uid, kgid_t gid)
{
de->uid = uid;
de->gid = gid;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Howells | 28 | 100.00% | 1 | 100.00% |
Total | 28 | 100.00% | 1 | 100.00% |
EXPORT_SYMBOL(proc_set_user);
static void free_proc_entry(struct proc_dir_entry *de)
{
proc_free_inum(de->low_ino);
if (S_ISLNK(de->mode))
kfree(de->data);
kfree(de);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 34 | 87.18% | 3 | 42.86% |
Andrew Morton | 2 | 5.13% | 1 | 14.29% |
Alexey Dobriyan | 2 | 5.13% | 2 | 28.57% |
Eric W. Biedermann | 1 | 2.56% | 1 | 14.29% |
Total | 39 | 100.00% | 7 | 100.00% |
void pde_put(struct proc_dir_entry *pde)
{
if (atomic_dec_and_test(&pde->count))
free_proc_entry(pde);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alexey Dobriyan | 25 | 100.00% | 1 | 100.00% |
Total | 25 | 100.00% | 1 | 100.00% |
/*
* Remove a /proc entry and free it if it's not currently in use.
*/
void remove_proc_entry(const char *name, struct proc_dir_entry *parent)
{
struct proc_dir_entry *de = NULL;
const char *fn = name;
unsigned int len;
write_lock(&proc_subdir_lock);
if (__xlate_proc_name(name, &parent, &fn) != 0) {
write_unlock(&proc_subdir_lock);
return;
}
len = strlen(fn);
de = pde_subdir_find(parent, fn, len);
if (de)
rb_erase(&de->subdir_node, &parent->subdir);
write_unlock(&proc_subdir_lock);
if (!de) {
WARN(1, "name '%s'\n", name);
return;
}
proc_entry_rundown(de);
if (S_ISDIR(de->mode))
parent->nlink--;
de->nlink = 0;
WARN(pde_subdir_first(de),
"%s: removing non-empty directory '%s/%s', leaking at least '%s'\n",
__func__, de->parent->name, de->name, pde_subdir_first(de)->name);
pde_put(de);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 61 | 33.89% | 3 | 25.00% |
Alexey Dobriyan | 61 | 33.89% | 5 | 41.67% |
Al Viro | 31 | 17.22% | 2 | 16.67% |
Nicolas Dichtel | 24 | 13.33% | 1 | 8.33% |
Waiman Long | 3 | 1.67% | 1 | 8.33% |
Total | 180 | 100.00% | 12 | 100.00% |
EXPORT_SYMBOL(remove_proc_entry);
int remove_proc_subtree(const char *name, struct proc_dir_entry *parent)
{
struct proc_dir_entry *root = NULL, *de, *next;
const char *fn = name;
unsigned int len;
write_lock(&proc_subdir_lock);
if (__xlate_proc_name(name, &parent, &fn) != 0) {
write_unlock(&proc_subdir_lock);
return -ENOENT;
}
len = strlen(fn);
root = pde_subdir_find(parent, fn, len);
if (!root) {
write_unlock(&proc_subdir_lock);
return -ENOENT;
}
rb_erase(&root->subdir_node, &parent->subdir);
de = root;
while (1) {
next = pde_subdir_first(de);
if (next) {
rb_erase(&next->subdir_node, &de->subdir);
de = next;
continue;
}
write_unlock(&proc_subdir_lock);
proc_entry_rundown(de);
next = de->parent;
if (S_ISDIR(de->mode))
next->nlink--;
de->nlink = 0;
if (de == root)
break;
pde_put(de);
write_lock(&proc_subdir_lock);
de = next;
}
pde_put(root);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Al Viro | 133 | 58.33% | 2 | 20.00% |
Alexey Dobriyan | 34 | 14.91% | 2 | 20.00% |
Nicolas Dichtel | 29 | 12.72% | 1 | 10.00% |
Linus Torvalds (pre-git) | 24 | 10.53% | 3 | 30.00% |
Waiman Long | 5 | 2.19% | 1 | 10.00% |
Andrew Morton | 3 | 1.32% | 1 | 10.00% |
Total | 228 | 100.00% | 10 | 100.00% |
EXPORT_SYMBOL(remove_proc_subtree);
void *proc_get_parent_data(const struct inode *inode)
{
struct proc_dir_entry *de = PDE(inode);
return de->parent->data;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Howells | 29 | 100.00% | 1 | 100.00% |
Total | 29 | 100.00% | 1 | 100.00% |
EXPORT_SYMBOL_GPL(proc_get_parent_data);
void proc_remove(struct proc_dir_entry *de)
{
if (de)
remove_proc_subtree(de->name, de->parent);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Howells | 25 | 100.00% | 1 | 100.00% |
Total | 25 | 100.00% | 1 | 100.00% |
EXPORT_SYMBOL(proc_remove);
void *PDE_DATA(const struct inode *inode)
{
return __PDE_DATA(inode);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Howells | 18 | 100.00% | 1 | 100.00% |
Total | 18 | 100.00% | 1 | 100.00% |
EXPORT_SYMBOL(PDE_DATA);
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 681 | 22.59% | 12 | 11.43% |
Alexey Dobriyan | 488 | 16.19% | 21 | 20.00% |
Nicolas Dichtel | 414 | 13.74% | 2 | 1.90% |
Al Viro | 289 | 9.59% | 12 | 11.43% |
David Howells | 203 | 6.74% | 8 | 7.62% |
Eric W. Biedermann | 166 | 5.51% | 4 | 3.81% |
Linus Torvalds | 126 | 4.18% | 4 | 3.81% |
Andrew Morton | 91 | 3.02% | 4 | 3.81% |
Pavel Emelyanov | 71 | 2.36% | 1 | 0.95% |
Olaf Dietsche | 68 | 2.26% | 1 | 0.95% |
Miklos Szeredi | 62 | 2.06% | 2 | 1.90% |
Steven Rostedt | 43 | 1.43% | 1 | 0.95% |
Denis V. Lunev | 38 | 1.26% | 2 | 1.90% |
Jeff Garzik | 37 | 1.23% | 1 | 0.95% |
Darrick J. Wong | 24 | 0.80% | 1 | 0.95% |
Christoph Hellwig | 24 | 0.80% | 2 | 1.90% |
Waiman Long | 22 | 0.73% | 1 | 0.95% |
Zhenwen Xu | 19 | 0.63% | 1 | 0.95% |
Dmitry Torokhov | 19 | 0.63% | 1 | 0.95% |
Debabrata Banerjee | 18 | 0.60% | 1 | 0.95% |
Rui Zhang | 17 | 0.56% | 1 | 0.95% |
Corey Minyard | 16 | 0.53% | 1 | 0.95% |
Chris Wright | 14 | 0.46% | 1 | 0.95% |
Changli Gao | 10 | 0.33% | 1 | 0.95% |
Nathan Lynch | 6 | 0.20% | 1 | 0.95% |
Arjan van de Ven | 6 | 0.20% | 3 | 2.86% |
Art Haas | 6 | 0.20% | 1 | 0.95% |
Rui Xiang | 5 | 0.17% | 1 | 0.95% |
Seth Forshee | 5 | 0.17% | 1 | 0.95% |
Thomas Gleixner | 4 | 0.13% | 1 | 0.95% |
Adrian Bunk | 4 | 0.13% | 2 | 1.90% |
Nicholas Piggin | 4 | 0.13% | 1 | 0.95% |
Tejun Heo | 3 | 0.10% | 1 | 0.95% |
Dave Hansen | 3 | 0.10% | 1 | 0.95% |
Geliang Tang | 2 | 0.07% | 1 | 0.95% |
Jan Kara | 2 | 0.07% | 1 | 0.95% |
Dave Jones | 1 | 0.03% | 1 | 0.95% |
Alexander Kuleshov | 1 | 0.03% | 1 | 0.95% |
Yan Hong | 1 | 0.03% | 1 | 0.95% |
Américo Wang | 1 | 0.03% | 1 | 0.95% |
Total | 3014 | 100.00% | 105 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.