blob: 85566abe6f83a5fd7a9a83d3f79ffb9a1cfddf85 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * proc/fs/generic.c --- generic routines for the proc-fs
3 *
4 * This file contains generic proc-fs routines for handling
5 * directories and files.
6 *
7 * Copyright (C) 1991, 1992 Linus Torvalds.
8 * Copyright (C) 1997 Theodore Ts'o
9 */
10
11#include <linux/errno.h>
12#include <linux/time.h>
13#include <linux/proc_fs.h>
14#include <linux/stat.h>
Christoph Hellwig10257742010-06-04 11:30:02 +020015#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Andrew Morton87ebdc02013-02-27 17:03:16 -080018#include <linux/printk.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/init.h>
21#include <linux/idr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/bitops.h>
Steven Rostedt64a07bd2006-03-26 01:36:55 -080023#include <linux/spinlock.h>
Alexey Dobriyan786d7e12007-07-15 23:39:00 -070024#include <linux/completion.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080025#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Adrian Bunkfee781e2006-01-08 01:04:16 -080027#include "internal.h"
28
Waiman Longecf1a3d2015-09-09 15:35:57 -070029static DEFINE_RWLOCK(proc_subdir_lock);
Steven Rostedt64a07bd2006-03-26 01:36:55 -080030
Alexey Dobriyan312ec7e2011-03-23 16:42:52 -070031static int proc_match(unsigned int len, const char *name, struct proc_dir_entry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032{
Nicolas Dichtel710585d2014-12-10 15:45:01 -080033 if (len < de->namelen)
34 return -1;
35 if (len > de->namelen)
36 return 1;
37
38 return memcmp(name, de->name, len);
39}
40
41static struct proc_dir_entry *pde_subdir_first(struct proc_dir_entry *dir)
42{
Nicolas Dichtel2fc1e942014-12-10 15:45:07 -080043 return rb_entry_safe(rb_first(&dir->subdir), struct proc_dir_entry,
44 subdir_node);
Nicolas Dichtel710585d2014-12-10 15:45:01 -080045}
46
47static struct proc_dir_entry *pde_subdir_next(struct proc_dir_entry *dir)
48{
Nicolas Dichtel2fc1e942014-12-10 15:45:07 -080049 return rb_entry_safe(rb_next(&dir->subdir_node), struct proc_dir_entry,
50 subdir_node);
Nicolas Dichtel710585d2014-12-10 15:45:01 -080051}
52
53static struct proc_dir_entry *pde_subdir_find(struct proc_dir_entry *dir,
54 const char *name,
55 unsigned int len)
56{
57 struct rb_node *node = dir->subdir.rb_node;
58
59 while (node) {
Geliang Tang4e4a7fb2017-02-24 15:00:17 -080060 struct proc_dir_entry *de = rb_entry(node,
61 struct proc_dir_entry,
62 subdir_node);
Nicolas Dichtel710585d2014-12-10 15:45:01 -080063 int result = proc_match(len, name, de);
64
65 if (result < 0)
66 node = node->rb_left;
67 else if (result > 0)
68 node = node->rb_right;
69 else
70 return de;
71 }
72 return NULL;
73}
74
75static bool pde_subdir_insert(struct proc_dir_entry *dir,
76 struct proc_dir_entry *de)
77{
78 struct rb_root *root = &dir->subdir;
79 struct rb_node **new = &root->rb_node, *parent = NULL;
80
81 /* Figure out where to put new node */
82 while (*new) {
Geliang Tang4e4a7fb2017-02-24 15:00:17 -080083 struct proc_dir_entry *this = rb_entry(*new,
84 struct proc_dir_entry,
85 subdir_node);
Nicolas Dichtel710585d2014-12-10 15:45:01 -080086 int result = proc_match(de->namelen, de->name, this);
87
88 parent = *new;
89 if (result < 0)
90 new = &(*new)->rb_left;
91 else if (result > 0)
92 new = &(*new)->rb_right;
93 else
94 return false;
95 }
96
97 /* Add new node and rebalance tree. */
98 rb_link_node(&de->subdir_node, parent, new);
99 rb_insert_color(&de->subdir_node, root);
100 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103static int proc_notify_change(struct dentry *dentry, struct iattr *iattr)
104{
David Howells2b0143b2015-03-17 22:25:59 +0000105 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 struct proc_dir_entry *de = PDE(inode);
107 int error;
108
Jan Kara31051c82016-05-26 16:55:18 +0200109 error = setattr_prepare(dentry, iattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 if (error)
Christoph Hellwig10257742010-06-04 11:30:02 +0200111 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Christoph Hellwig10257742010-06-04 11:30:02 +0200113 setattr_copy(inode, iattr);
114 mark_inode_dirty(inode);
Marco Stornelli46f69552012-12-15 11:48:48 +0100115
Rui Xiangcdf7e8d2014-01-23 15:55:41 -0800116 proc_set_user(de, inode->i_uid, inode->i_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 de->mode = inode->i_mode;
Christoph Hellwig10257742010-06-04 11:30:02 +0200118 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
David Howellsa528d352017-01-31 16:46:22 +0000121static int proc_getattr(const struct path *path, struct kstat *stat,
122 u32 request_mask, unsigned int query_flags)
Miklos Szeredi2b579be2005-09-06 15:17:18 -0700123{
David Howellsa528d352017-01-31 16:46:22 +0000124 struct inode *inode = d_inode(path->dentry);
Alexander Kuleshov6bee55f2015-02-12 15:01:03 -0800125 struct proc_dir_entry *de = PDE(inode);
Miklos Szeredi2b579be2005-09-06 15:17:18 -0700126 if (de && de->nlink)
Miklos Szeredibfe86842011-10-28 14:13:29 +0200127 set_nlink(inode, de->nlink);
Miklos Szeredi2b579be2005-09-06 15:17:18 -0700128
129 generic_fillattr(inode, stat);
130 return 0;
131}
132
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800133static const struct inode_operations proc_file_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 .setattr = proc_notify_change,
135};
136
137/*
138 * This function parses a name such as "tty/driver/serial", and
139 * returns the struct proc_dir_entry for "/proc/tty/driver", and
140 * returns "serial" in residual.
141 */
Alexey Dobriyane17a5762010-03-05 13:43:59 -0800142static int __xlate_proc_name(const char *name, struct proc_dir_entry **ret,
143 const char **residual)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
145 const char *cp = name, *next;
146 struct proc_dir_entry *de;
Alexey Dobriyan312ec7e2011-03-23 16:42:52 -0700147 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Alexey Dobriyan7cee4e02008-04-29 01:01:40 -0700149 de = *ret;
150 if (!de)
151 de = &proc_root;
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 while (1) {
154 next = strchr(cp, '/');
155 if (!next)
156 break;
157
158 len = next - cp;
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800159 de = pde_subdir_find(de, cp, len);
Alexey Dobriyan12bac0d2010-03-05 13:44:00 -0800160 if (!de) {
161 WARN(1, "name '%s'\n", name);
Alexey Dobriyane17a5762010-03-05 13:43:59 -0800162 return -ENOENT;
Alexey Dobriyan12bac0d2010-03-05 13:44:00 -0800163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 cp += len + 1;
165 }
166 *residual = cp;
167 *ret = de;
Alexey Dobriyane17a5762010-03-05 13:43:59 -0800168 return 0;
169}
170
171static int xlate_proc_name(const char *name, struct proc_dir_entry **ret,
172 const char **residual)
173{
174 int rv;
175
Waiman Longecf1a3d2015-09-09 15:35:57 -0700176 read_lock(&proc_subdir_lock);
Alexey Dobriyane17a5762010-03-05 13:43:59 -0800177 rv = __xlate_proc_name(name, ret, residual);
Waiman Longecf1a3d2015-09-09 15:35:57 -0700178 read_unlock(&proc_subdir_lock);
Alexey Dobriyane17a5762010-03-05 13:43:59 -0800179 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
Alexey Dobriyan9a185402008-07-26 11:21:37 +0400182static DEFINE_IDA(proc_inum_ida);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Alexey Dobriyan67935df2008-07-26 11:18:28 +0400184#define PROC_DYNAMIC_FIRST 0xF0000000U
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186/*
187 * Return an inode number between PROC_DYNAMIC_FIRST and
188 * 0xffffffff, or zero on failure.
189 */
Eric W. Biederman33d6dce2011-06-17 13:33:20 -0700190int proc_alloc_inum(unsigned int *inum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
Heiner Kallweitcde1b692017-07-10 15:50:52 -0700192 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Heiner Kallweitcde1b692017-07-10 15:50:52 -0700194 i = ida_simple_get(&proc_inum_ida, 0, UINT_MAX - PROC_DYNAMIC_FIRST + 1,
195 GFP_KERNEL);
196 if (i < 0)
197 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Heiner Kallweitcde1b692017-07-10 15:50:52 -0700199 *inum = PROC_DYNAMIC_FIRST + (unsigned int)i;
Eric W. Biederman33d6dce2011-06-17 13:33:20 -0700200 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
Eric W. Biederman33d6dce2011-06-17 13:33:20 -0700203void proc_free_inum(unsigned int inum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Heiner Kallweitcde1b692017-07-10 15:50:52 -0700205 ida_simple_remove(&proc_inum_ida, inum - PROC_DYNAMIC_FIRST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 * Don't create negative dentries here, return -ENOENT by hand
210 * instead.
211 */
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800212struct dentry *proc_lookup_de(struct proc_dir_entry *de, struct inode *dir,
213 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Al Virod3d009c2013-01-25 20:11:22 -0500215 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Waiman Longecf1a3d2015-09-09 15:35:57 -0700217 read_lock(&proc_subdir_lock);
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800218 de = pde_subdir_find(de, dentry->d_name.name, dentry->d_name.len);
219 if (de) {
220 pde_get(de);
Waiman Longecf1a3d2015-09-09 15:35:57 -0700221 read_unlock(&proc_subdir_lock);
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800222 inode = proc_get_inode(dir->i_sb, de);
223 if (!inode)
224 return ERR_PTR(-ENOMEM);
225 d_set_d_op(dentry, &simple_dentry_operations);
226 d_add(dentry, inode);
227 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
Waiman Longecf1a3d2015-09-09 15:35:57 -0700229 read_unlock(&proc_subdir_lock);
Al Virod3d009c2013-01-25 20:11:22 -0500230 return ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231}
232
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800233struct dentry *proc_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400234 unsigned int flags)
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800235{
236 return proc_lookup_de(PDE(dir), dir, dentry);
237}
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239/*
240 * This returns non-zero if at EOF, so that the /proc
241 * root directory can use this and check if it should
242 * continue with the <pid> entries..
243 *
244 * Note that the VFS-layer doesn't care about the return
245 * value of the readdir() call, as long as it's non-negative
246 * for success..
247 */
Al Virof0c3b502013-05-16 12:07:31 -0400248int proc_readdir_de(struct proc_dir_entry *de, struct file *file,
249 struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Al Virof0c3b502013-05-16 12:07:31 -0400253 if (!dir_emit_dots(file, ctx))
254 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Waiman Longecf1a3d2015-09-09 15:35:57 -0700256 read_lock(&proc_subdir_lock);
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800257 de = pde_subdir_first(de);
Al Virof0c3b502013-05-16 12:07:31 -0400258 i = ctx->pos - 2;
259 for (;;) {
260 if (!de) {
Waiman Longecf1a3d2015-09-09 15:35:57 -0700261 read_unlock(&proc_subdir_lock);
Al Virof0c3b502013-05-16 12:07:31 -0400262 return 0;
263 }
264 if (!i)
265 break;
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800266 de = pde_subdir_next(de);
Al Virof0c3b502013-05-16 12:07:31 -0400267 i--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 }
Al Virof0c3b502013-05-16 12:07:31 -0400269
270 do {
271 struct proc_dir_entry *next;
272 pde_get(de);
Waiman Longecf1a3d2015-09-09 15:35:57 -0700273 read_unlock(&proc_subdir_lock);
Al Virof0c3b502013-05-16 12:07:31 -0400274 if (!dir_emit(ctx, de->name, de->namelen,
275 de->low_ino, de->mode >> 12)) {
276 pde_put(de);
277 return 0;
278 }
Waiman Longecf1a3d2015-09-09 15:35:57 -0700279 read_lock(&proc_subdir_lock);
Al Virof0c3b502013-05-16 12:07:31 -0400280 ctx->pos++;
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800281 next = pde_subdir_next(de);
Al Virof0c3b502013-05-16 12:07:31 -0400282 pde_put(de);
283 de = next;
284 } while (de);
Waiman Longecf1a3d2015-09-09 15:35:57 -0700285 read_unlock(&proc_subdir_lock);
Linus Torvaldsfd3930f2013-08-19 16:26:12 -0700286 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
Al Virof0c3b502013-05-16 12:07:31 -0400289int proc_readdir(struct file *file, struct dir_context *ctx)
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800290{
Al Virof0c3b502013-05-16 12:07:31 -0400291 struct inode *inode = file_inode(file);
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800292
Al Virof0c3b502013-05-16 12:07:31 -0400293 return proc_readdir_de(PDE(inode), file, ctx);
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800294}
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296/*
297 * These are the generic /proc directory operations. They
298 * use the in-memory "struct proc_dir_entry" tree to parse
299 * the /proc directory.
300 */
Arjan van de Ven00977a52007-02-12 00:55:34 -0800301static const struct file_operations proc_dir_operations = {
Alexey Dobriyanb4df2b92008-10-27 22:48:36 +0300302 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -0400304 .iterate_shared = proc_readdir,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305};
306
307/*
308 * proc directories can do almost nothing..
309 */
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800310static const struct inode_operations proc_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 .lookup = proc_lookup,
Miklos Szeredi2b579be2005-09-06 15:17:18 -0700312 .getattr = proc_getattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 .setattr = proc_notify_change,
314};
315
316static int proc_register(struct proc_dir_entry * dir, struct proc_dir_entry * dp)
317{
Eric W. Biederman33d6dce2011-06-17 13:33:20 -0700318 int ret;
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800319
Eric W. Biederman33d6dce2011-06-17 13:33:20 -0700320 ret = proc_alloc_inum(&dp->low_ino);
321 if (ret)
322 return ret;
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800323
Waiman Longecf1a3d2015-09-09 15:35:57 -0700324 write_lock(&proc_subdir_lock);
Changli Gao99fc06d2007-07-15 23:40:09 -0700325 dp->parent = dir;
Debabrata Banerjeeb208d542014-12-10 15:45:04 -0800326 if (pde_subdir_insert(dir, dp) == false) {
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800327 WARN(1, "proc_dir_entry '%s/%s' already registered\n",
328 dir->name, dp->name);
Waiman Longecf1a3d2015-09-09 15:35:57 -0700329 write_unlock(&proc_subdir_lock);
Debabrata Banerjeeb208d542014-12-10 15:45:04 -0800330 proc_free_inum(dp->low_ino);
331 return -EEXIST;
332 }
Waiman Longecf1a3d2015-09-09 15:35:57 -0700333 write_unlock(&proc_subdir_lock);
Changli Gao99fc06d2007-07-15 23:40:09 -0700334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return 0;
336}
337
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800338static struct proc_dir_entry *__proc_create(struct proc_dir_entry **parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 const char *name,
Al Virod161a132011-07-24 03:36:29 -0400340 umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 nlink_t nlink)
342{
343 struct proc_dir_entry *ent = NULL;
Alexey Dobriyandbcdb502014-08-08 14:21:25 -0700344 const char *fn;
345 struct qstr qstr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Alexey Dobriyan7cee4e02008-04-29 01:01:40 -0700347 if (xlate_proc_name(name, parent, &fn) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 goto out;
Alexey Dobriyandbcdb502014-08-08 14:21:25 -0700349 qstr.name = fn;
350 qstr.len = strlen(fn);
351 if (qstr.len == 0 || qstr.len >= 256) {
352 WARN(1, "name len %u\n", qstr.len);
353 return NULL;
354 }
355 if (*parent == &proc_root && name_to_int(&qstr) != ~0U) {
356 WARN(1, "create '/proc/%s' by hand\n", qstr.name);
357 return NULL;
358 }
Eric W. Biedermaneb6d38d2015-05-11 16:44:25 -0500359 if (is_empty_pde(*parent)) {
360 WARN(1, "attempt to add to permanently empty directory");
361 return NULL;
362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Alexey Dobriyandbcdb502014-08-08 14:21:25 -0700364 ent = kzalloc(sizeof(struct proc_dir_entry) + qstr.len + 1, GFP_KERNEL);
yan17baa2a2012-10-04 17:15:43 -0700365 if (!ent)
366 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Alexey Dobriyandbcdb502014-08-08 14:21:25 -0700368 memcpy(ent->name, fn, qstr.len + 1);
369 ent->namelen = qstr.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 ent->mode = mode;
371 ent->nlink = nlink;
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800372 ent->subdir = RB_ROOT;
Alexey Dobriyan5a622f22007-12-04 23:45:28 -0800373 atomic_set(&ent->count, 1);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700374 spin_lock_init(&ent->pde_unload_lock);
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700375 INIT_LIST_HEAD(&ent->pde_openers);
Dmitry Torokhovc1104862016-08-10 14:36:01 -0700376 proc_set_user(ent, (*parent)->uid, (*parent)->gid);
377
yan17baa2a2012-10-04 17:15:43 -0700378out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return ent;
380}
381
382struct proc_dir_entry *proc_symlink(const char *name,
383 struct proc_dir_entry *parent, const char *dest)
384{
385 struct proc_dir_entry *ent;
386
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800387 ent = __proc_create(&parent, name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 (S_IFLNK | S_IRUGO | S_IWUGO | S_IXUGO),1);
389
390 if (ent) {
391 ent->data = kmalloc((ent->size=strlen(dest))+1, GFP_KERNEL);
392 if (ent->data) {
393 strcpy((char*)ent->data,dest);
Al Virod443b9f2014-12-25 16:47:49 -0500394 ent->proc_iops = &proc_link_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (proc_register(parent, ent) < 0) {
396 kfree(ent->data);
397 kfree(ent);
398 ent = NULL;
399 }
400 } else {
401 kfree(ent);
402 ent = NULL;
403 }
404 }
405 return ent;
406}
Helight.Xu587d4a12009-12-30 13:24:41 +0800407EXPORT_SYMBOL(proc_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
David Howells270b5ac2013-04-12 02:48:30 +0100409struct proc_dir_entry *proc_mkdir_data(const char *name, umode_t mode,
410 struct proc_dir_entry *parent, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
412 struct proc_dir_entry *ent;
413
David Howells270b5ac2013-04-12 02:48:30 +0100414 if (mode == 0)
415 mode = S_IRUGO | S_IXUGO;
416
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800417 ent = __proc_create(&parent, name, S_IFDIR | mode, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 if (ent) {
David Howells270b5ac2013-04-12 02:48:30 +0100419 ent->data = data;
Al Virod443b9f2014-12-25 16:47:49 -0500420 ent->proc_fops = &proc_dir_operations;
421 ent->proc_iops = &proc_dir_inode_operations;
422 parent->nlink++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 if (proc_register(parent, ent) < 0) {
424 kfree(ent);
Al Virod443b9f2014-12-25 16:47:49 -0500425 parent->nlink--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 ent = NULL;
427 }
428 }
429 return ent;
430}
David Howells270b5ac2013-04-12 02:48:30 +0100431EXPORT_SYMBOL_GPL(proc_mkdir_data);
432
433struct proc_dir_entry *proc_mkdir_mode(const char *name, umode_t mode,
434 struct proc_dir_entry *parent)
435{
436 return proc_mkdir_data(name, mode, parent, NULL);
437}
Alexey Dobriyan011159a2011-05-14 00:12:48 +0300438EXPORT_SYMBOL(proc_mkdir_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440struct proc_dir_entry *proc_mkdir(const char *name,
441 struct proc_dir_entry *parent)
442{
David Howells270b5ac2013-04-12 02:48:30 +0100443 return proc_mkdir_data(name, 0, parent, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
Helight.Xu587d4a12009-12-30 13:24:41 +0800445EXPORT_SYMBOL(proc_mkdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Eric W. Biedermaneb6d38d2015-05-11 16:44:25 -0500447struct proc_dir_entry *proc_create_mount_point(const char *name)
448{
449 umode_t mode = S_IFDIR | S_IRUGO | S_IXUGO;
450 struct proc_dir_entry *ent, *parent = NULL;
451
452 ent = __proc_create(&parent, name, mode, 2);
453 if (ent) {
454 ent->data = NULL;
455 ent->proc_fops = NULL;
456 ent->proc_iops = NULL;
Takashi Iwaid66bb162017-04-28 15:00:15 +0200457 parent->nlink++;
Eric W. Biedermaneb6d38d2015-05-11 16:44:25 -0500458 if (proc_register(parent, ent) < 0) {
459 kfree(ent);
460 parent->nlink--;
461 ent = NULL;
462 }
463 }
464 return ent;
465}
Seth Forsheef97df702016-11-14 11:12:56 +0000466EXPORT_SYMBOL(proc_create_mount_point);
Eric W. Biedermaneb6d38d2015-05-11 16:44:25 -0500467
Al Virod161a132011-07-24 03:36:29 -0400468struct proc_dir_entry *proc_create_data(const char *name, umode_t mode,
Denis V. Lunev59b74352008-04-29 01:02:00 -0700469 struct proc_dir_entry *parent,
470 const struct file_operations *proc_fops,
471 void *data)
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800472{
473 struct proc_dir_entry *pde;
Al Virob6cdc732013-03-30 21:20:14 -0400474 if ((mode & S_IFMT) == 0)
475 mode |= S_IFREG;
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800476
Al Virob6cdc732013-03-30 21:20:14 -0400477 if (!S_ISREG(mode)) {
478 WARN_ON(1); /* use proc_mkdir() */
479 return NULL;
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800480 }
481
Al Virod443b9f2014-12-25 16:47:49 -0500482 BUG_ON(proc_fops == NULL);
483
Al Virob6cdc732013-03-30 21:20:14 -0400484 if ((mode & S_IALLUGO) == 0)
485 mode |= S_IRUGO;
486 pde = __proc_create(&parent, name, mode, 1);
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800487 if (!pde)
488 goto out;
489 pde->proc_fops = proc_fops;
Denis V. Lunev59b74352008-04-29 01:02:00 -0700490 pde->data = data;
Al Virod443b9f2014-12-25 16:47:49 -0500491 pde->proc_iops = &proc_file_inode_operations;
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800492 if (proc_register(parent, pde) < 0)
493 goto out_free;
494 return pde;
495out_free:
496 kfree(pde);
497out:
498 return NULL;
499}
Helight.Xu587d4a12009-12-30 13:24:41 +0800500EXPORT_SYMBOL(proc_create_data);
David Howells271a15e2013-04-12 00:38:51 +0100501
Alexey Dobriyan855d9762017-09-08 16:13:38 -0700502struct proc_dir_entry *proc_create(const char *name, umode_t mode,
503 struct proc_dir_entry *parent,
504 const struct file_operations *proc_fops)
505{
506 return proc_create_data(name, mode, parent, proc_fops, NULL);
507}
508EXPORT_SYMBOL(proc_create);
509
David Howells271a15e2013-04-12 00:38:51 +0100510void proc_set_size(struct proc_dir_entry *de, loff_t size)
511{
512 de->size = size;
513}
514EXPORT_SYMBOL(proc_set_size);
515
516void proc_set_user(struct proc_dir_entry *de, kuid_t uid, kgid_t gid)
517{
518 de->uid = uid;
519 de->gid = gid;
520}
521EXPORT_SYMBOL(proc_set_user);
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800522
Alexey Dobriyan135d5652009-12-15 16:45:39 -0800523static void free_proc_entry(struct proc_dir_entry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
Eric W. Biederman33d6dce2011-06-17 13:33:20 -0700525 proc_free_inum(de->low_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Alexey Dobriyanfd2cbe42008-02-08 04:18:28 -0800527 if (S_ISLNK(de->mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 kfree(de->data);
529 kfree(de);
530}
531
Alexey Dobriyan135d5652009-12-15 16:45:39 -0800532void pde_put(struct proc_dir_entry *pde)
533{
534 if (atomic_dec_and_test(&pde->count))
535 free_proc_entry(pde);
536}
537
Al Viro8ce584c2013-03-30 20:13:46 -0400538/*
539 * Remove a /proc entry and free it if it's not currently in use.
540 */
541void remove_proc_entry(const char *name, struct proc_dir_entry *parent)
542{
Al Viro8ce584c2013-03-30 20:13:46 -0400543 struct proc_dir_entry *de = NULL;
544 const char *fn = name;
545 unsigned int len;
546
Waiman Longecf1a3d2015-09-09 15:35:57 -0700547 write_lock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400548 if (__xlate_proc_name(name, &parent, &fn) != 0) {
Waiman Longecf1a3d2015-09-09 15:35:57 -0700549 write_unlock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400550 return;
551 }
552 len = strlen(fn);
553
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800554 de = pde_subdir_find(parent, fn, len);
555 if (de)
556 rb_erase(&de->subdir_node, &parent->subdir);
Waiman Longecf1a3d2015-09-09 15:35:57 -0700557 write_unlock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400558 if (!de) {
559 WARN(1, "name '%s'\n", name);
560 return;
561 }
562
Al Viro866ad9a72013-04-03 19:07:30 -0400563 proc_entry_rundown(de);
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700564
Alexey Dobriyanf649d6d2008-04-29 01:01:39 -0700565 if (S_ISDIR(de->mode))
566 parent->nlink--;
567 de->nlink = 0;
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800568 WARN(pde_subdir_first(de),
569 "%s: removing non-empty directory '%s/%s', leaking at least '%s'\n",
570 __func__, de->parent->name, de->name, pde_subdir_first(de)->name);
Alexey Dobriyan135d5652009-12-15 16:45:39 -0800571 pde_put(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
Helight.Xu587d4a12009-12-30 13:24:41 +0800573EXPORT_SYMBOL(remove_proc_entry);
Al Viro8ce584c2013-03-30 20:13:46 -0400574
575int remove_proc_subtree(const char *name, struct proc_dir_entry *parent)
576{
Al Viro8ce584c2013-03-30 20:13:46 -0400577 struct proc_dir_entry *root = NULL, *de, *next;
578 const char *fn = name;
579 unsigned int len;
580
Waiman Longecf1a3d2015-09-09 15:35:57 -0700581 write_lock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400582 if (__xlate_proc_name(name, &parent, &fn) != 0) {
Waiman Longecf1a3d2015-09-09 15:35:57 -0700583 write_unlock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400584 return -ENOENT;
585 }
586 len = strlen(fn);
587
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800588 root = pde_subdir_find(parent, fn, len);
Al Viro8ce584c2013-03-30 20:13:46 -0400589 if (!root) {
Waiman Longecf1a3d2015-09-09 15:35:57 -0700590 write_unlock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400591 return -ENOENT;
592 }
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800593 rb_erase(&root->subdir_node, &parent->subdir);
594
Al Viro8ce584c2013-03-30 20:13:46 -0400595 de = root;
596 while (1) {
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800597 next = pde_subdir_first(de);
Al Viro8ce584c2013-03-30 20:13:46 -0400598 if (next) {
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800599 rb_erase(&next->subdir_node, &de->subdir);
Al Viro8ce584c2013-03-30 20:13:46 -0400600 de = next;
601 continue;
602 }
Waiman Longecf1a3d2015-09-09 15:35:57 -0700603 write_unlock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400604
Al Viro866ad9a72013-04-03 19:07:30 -0400605 proc_entry_rundown(de);
Al Viro8ce584c2013-03-30 20:13:46 -0400606 next = de->parent;
607 if (S_ISDIR(de->mode))
608 next->nlink--;
609 de->nlink = 0;
610 if (de == root)
611 break;
612 pde_put(de);
613
Waiman Longecf1a3d2015-09-09 15:35:57 -0700614 write_lock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400615 de = next;
616 }
617 pde_put(root);
618 return 0;
619}
620EXPORT_SYMBOL(remove_proc_subtree);
David Howells4a520d22013-04-12 14:06:01 +0100621
622void *proc_get_parent_data(const struct inode *inode)
623{
624 struct proc_dir_entry *de = PDE(inode);
625 return de->parent->data;
626}
627EXPORT_SYMBOL_GPL(proc_get_parent_data);
David Howellsa8ca16e2013-04-12 17:27:28 +0100628
629void proc_remove(struct proc_dir_entry *de)
630{
631 if (de)
632 remove_proc_subtree(de->name, de->parent);
633}
634EXPORT_SYMBOL(proc_remove);
David Howellsc30480b2013-04-12 18:03:36 +0100635
636void *PDE_DATA(const struct inode *inode)
637{
638 return __PDE_DATA(inode);
639}
640EXPORT_SYMBOL(PDE_DATA);