blob: ee27feb34cf4d50fc867dc138198c2da9cd7d9ef [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 -0700183static DEFINE_SPINLOCK(proc_inum_lock); /* protects the above */
184
Alexey Dobriyan67935df2008-07-26 11:18:28 +0400185#define PROC_DYNAMIC_FIRST 0xF0000000U
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187/*
188 * Return an inode number between PROC_DYNAMIC_FIRST and
189 * 0xffffffff, or zero on failure.
190 */
Eric W. Biederman33d6dce2011-06-17 13:33:20 -0700191int proc_alloc_inum(unsigned int *inum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Alexey Dobriyan67935df2008-07-26 11:18:28 +0400193 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 int error;
195
196retry:
Eric W. Biederman33d6dce2011-06-17 13:33:20 -0700197 if (!ida_pre_get(&proc_inum_ida, GFP_KERNEL))
198 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Eric W. Biedermandfb2ea42012-12-21 20:38:00 -0800200 spin_lock_irq(&proc_inum_lock);
Alexey Dobriyan9a185402008-07-26 11:21:37 +0400201 error = ida_get_new(&proc_inum_ida, &i);
Eric W. Biedermandfb2ea42012-12-21 20:38:00 -0800202 spin_unlock_irq(&proc_inum_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if (error == -EAGAIN)
204 goto retry;
205 else if (error)
Eric W. Biederman33d6dce2011-06-17 13:33:20 -0700206 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Alexey Dobriyan67935df2008-07-26 11:18:28 +0400208 if (i > UINT_MAX - PROC_DYNAMIC_FIRST) {
Eric W. Biedermandfb2ea42012-12-21 20:38:00 -0800209 spin_lock_irq(&proc_inum_lock);
Alexey Dobriyan9a185402008-07-26 11:21:37 +0400210 ida_remove(&proc_inum_ida, i);
Eric W. Biedermandfb2ea42012-12-21 20:38:00 -0800211 spin_unlock_irq(&proc_inum_lock);
Eric W. Biederman33d6dce2011-06-17 13:33:20 -0700212 return -ENOSPC;
Alexey Dobriyan67935df2008-07-26 11:18:28 +0400213 }
Eric W. Biederman33d6dce2011-06-17 13:33:20 -0700214 *inum = PROC_DYNAMIC_FIRST + i;
215 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
Eric W. Biederman33d6dce2011-06-17 13:33:20 -0700218void proc_free_inum(unsigned int inum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Eric W. Biedermandfb2ea42012-12-21 20:38:00 -0800220 unsigned long flags;
221 spin_lock_irqsave(&proc_inum_lock, flags);
Alexey Dobriyan9a185402008-07-26 11:21:37 +0400222 ida_remove(&proc_inum_ida, inum - PROC_DYNAMIC_FIRST);
Eric W. Biedermandfb2ea42012-12-21 20:38:00 -0800223 spin_unlock_irqrestore(&proc_inum_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 * Don't create negative dentries here, return -ENOENT by hand
228 * instead.
229 */
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800230struct dentry *proc_lookup_de(struct proc_dir_entry *de, struct inode *dir,
231 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Al Virod3d009c2013-01-25 20:11:22 -0500233 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Waiman Longecf1a3d2015-09-09 15:35:57 -0700235 read_lock(&proc_subdir_lock);
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800236 de = pde_subdir_find(de, dentry->d_name.name, dentry->d_name.len);
237 if (de) {
238 pde_get(de);
Waiman Longecf1a3d2015-09-09 15:35:57 -0700239 read_unlock(&proc_subdir_lock);
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800240 inode = proc_get_inode(dir->i_sb, de);
241 if (!inode)
242 return ERR_PTR(-ENOMEM);
243 d_set_d_op(dentry, &simple_dentry_operations);
244 d_add(dentry, inode);
245 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
Waiman Longecf1a3d2015-09-09 15:35:57 -0700247 read_unlock(&proc_subdir_lock);
Al Virod3d009c2013-01-25 20:11:22 -0500248 return ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800251struct dentry *proc_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400252 unsigned int flags)
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800253{
254 return proc_lookup_de(PDE(dir), dir, dentry);
255}
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257/*
258 * This returns non-zero if at EOF, so that the /proc
259 * root directory can use this and check if it should
260 * continue with the <pid> entries..
261 *
262 * Note that the VFS-layer doesn't care about the return
263 * value of the readdir() call, as long as it's non-negative
264 * for success..
265 */
Al Virof0c3b502013-05-16 12:07:31 -0400266int proc_readdir_de(struct proc_dir_entry *de, struct file *file,
267 struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Al Virof0c3b502013-05-16 12:07:31 -0400271 if (!dir_emit_dots(file, ctx))
272 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Waiman Longecf1a3d2015-09-09 15:35:57 -0700274 read_lock(&proc_subdir_lock);
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800275 de = pde_subdir_first(de);
Al Virof0c3b502013-05-16 12:07:31 -0400276 i = ctx->pos - 2;
277 for (;;) {
278 if (!de) {
Waiman Longecf1a3d2015-09-09 15:35:57 -0700279 read_unlock(&proc_subdir_lock);
Al Virof0c3b502013-05-16 12:07:31 -0400280 return 0;
281 }
282 if (!i)
283 break;
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800284 de = pde_subdir_next(de);
Al Virof0c3b502013-05-16 12:07:31 -0400285 i--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
Al Virof0c3b502013-05-16 12:07:31 -0400287
288 do {
289 struct proc_dir_entry *next;
290 pde_get(de);
Waiman Longecf1a3d2015-09-09 15:35:57 -0700291 read_unlock(&proc_subdir_lock);
Al Virof0c3b502013-05-16 12:07:31 -0400292 if (!dir_emit(ctx, de->name, de->namelen,
293 de->low_ino, de->mode >> 12)) {
294 pde_put(de);
295 return 0;
296 }
Waiman Longecf1a3d2015-09-09 15:35:57 -0700297 read_lock(&proc_subdir_lock);
Al Virof0c3b502013-05-16 12:07:31 -0400298 ctx->pos++;
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800299 next = pde_subdir_next(de);
Al Virof0c3b502013-05-16 12:07:31 -0400300 pde_put(de);
301 de = next;
302 } while (de);
Waiman Longecf1a3d2015-09-09 15:35:57 -0700303 read_unlock(&proc_subdir_lock);
Linus Torvaldsfd3930f2013-08-19 16:26:12 -0700304 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
Al Virof0c3b502013-05-16 12:07:31 -0400307int proc_readdir(struct file *file, struct dir_context *ctx)
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800308{
Al Virof0c3b502013-05-16 12:07:31 -0400309 struct inode *inode = file_inode(file);
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800310
Al Virof0c3b502013-05-16 12:07:31 -0400311 return proc_readdir_de(PDE(inode), file, ctx);
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800312}
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314/*
315 * These are the generic /proc directory operations. They
316 * use the in-memory "struct proc_dir_entry" tree to parse
317 * the /proc directory.
318 */
Arjan van de Ven00977a52007-02-12 00:55:34 -0800319static const struct file_operations proc_dir_operations = {
Alexey Dobriyanb4df2b92008-10-27 22:48:36 +0300320 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -0400322 .iterate_shared = proc_readdir,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323};
324
325/*
326 * proc directories can do almost nothing..
327 */
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800328static const struct inode_operations proc_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 .lookup = proc_lookup,
Miklos Szeredi2b579be2005-09-06 15:17:18 -0700330 .getattr = proc_getattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 .setattr = proc_notify_change,
332};
333
334static int proc_register(struct proc_dir_entry * dir, struct proc_dir_entry * dp)
335{
Eric W. Biederman33d6dce2011-06-17 13:33:20 -0700336 int ret;
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800337
Eric W. Biederman33d6dce2011-06-17 13:33:20 -0700338 ret = proc_alloc_inum(&dp->low_ino);
339 if (ret)
340 return ret;
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800341
Waiman Longecf1a3d2015-09-09 15:35:57 -0700342 write_lock(&proc_subdir_lock);
Changli Gao99fc06d2007-07-15 23:40:09 -0700343 dp->parent = dir;
Debabrata Banerjeeb208d542014-12-10 15:45:04 -0800344 if (pde_subdir_insert(dir, dp) == false) {
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800345 WARN(1, "proc_dir_entry '%s/%s' already registered\n",
346 dir->name, dp->name);
Waiman Longecf1a3d2015-09-09 15:35:57 -0700347 write_unlock(&proc_subdir_lock);
Debabrata Banerjeeb208d542014-12-10 15:45:04 -0800348 proc_free_inum(dp->low_ino);
349 return -EEXIST;
350 }
Waiman Longecf1a3d2015-09-09 15:35:57 -0700351 write_unlock(&proc_subdir_lock);
Changli Gao99fc06d2007-07-15 23:40:09 -0700352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 return 0;
354}
355
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800356static struct proc_dir_entry *__proc_create(struct proc_dir_entry **parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 const char *name,
Al Virod161a132011-07-24 03:36:29 -0400358 umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 nlink_t nlink)
360{
361 struct proc_dir_entry *ent = NULL;
Alexey Dobriyandbcdb502014-08-08 14:21:25 -0700362 const char *fn;
363 struct qstr qstr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Alexey Dobriyan7cee4e02008-04-29 01:01:40 -0700365 if (xlate_proc_name(name, parent, &fn) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 goto out;
Alexey Dobriyandbcdb502014-08-08 14:21:25 -0700367 qstr.name = fn;
368 qstr.len = strlen(fn);
369 if (qstr.len == 0 || qstr.len >= 256) {
370 WARN(1, "name len %u\n", qstr.len);
371 return NULL;
372 }
373 if (*parent == &proc_root && name_to_int(&qstr) != ~0U) {
374 WARN(1, "create '/proc/%s' by hand\n", qstr.name);
375 return NULL;
376 }
Eric W. Biedermaneb6d38d2015-05-11 16:44:25 -0500377 if (is_empty_pde(*parent)) {
378 WARN(1, "attempt to add to permanently empty directory");
379 return NULL;
380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Alexey Dobriyandbcdb502014-08-08 14:21:25 -0700382 ent = kzalloc(sizeof(struct proc_dir_entry) + qstr.len + 1, GFP_KERNEL);
yan17baa2a2012-10-04 17:15:43 -0700383 if (!ent)
384 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Alexey Dobriyandbcdb502014-08-08 14:21:25 -0700386 memcpy(ent->name, fn, qstr.len + 1);
387 ent->namelen = qstr.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 ent->mode = mode;
389 ent->nlink = nlink;
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800390 ent->subdir = RB_ROOT;
Alexey Dobriyan5a622f22007-12-04 23:45:28 -0800391 atomic_set(&ent->count, 1);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700392 spin_lock_init(&ent->pde_unload_lock);
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700393 INIT_LIST_HEAD(&ent->pde_openers);
Dmitry Torokhovc1104862016-08-10 14:36:01 -0700394 proc_set_user(ent, (*parent)->uid, (*parent)->gid);
395
yan17baa2a2012-10-04 17:15:43 -0700396out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return ent;
398}
399
400struct proc_dir_entry *proc_symlink(const char *name,
401 struct proc_dir_entry *parent, const char *dest)
402{
403 struct proc_dir_entry *ent;
404
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800405 ent = __proc_create(&parent, name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 (S_IFLNK | S_IRUGO | S_IWUGO | S_IXUGO),1);
407
408 if (ent) {
409 ent->data = kmalloc((ent->size=strlen(dest))+1, GFP_KERNEL);
410 if (ent->data) {
411 strcpy((char*)ent->data,dest);
Al Virod443b9f2014-12-25 16:47:49 -0500412 ent->proc_iops = &proc_link_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (proc_register(parent, ent) < 0) {
414 kfree(ent->data);
415 kfree(ent);
416 ent = NULL;
417 }
418 } else {
419 kfree(ent);
420 ent = NULL;
421 }
422 }
423 return ent;
424}
Helight.Xu587d4a12009-12-30 13:24:41 +0800425EXPORT_SYMBOL(proc_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
David Howells270b5ac2013-04-12 02:48:30 +0100427struct proc_dir_entry *proc_mkdir_data(const char *name, umode_t mode,
428 struct proc_dir_entry *parent, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
430 struct proc_dir_entry *ent;
431
David Howells270b5ac2013-04-12 02:48:30 +0100432 if (mode == 0)
433 mode = S_IRUGO | S_IXUGO;
434
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800435 ent = __proc_create(&parent, name, S_IFDIR | mode, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (ent) {
David Howells270b5ac2013-04-12 02:48:30 +0100437 ent->data = data;
Al Virod443b9f2014-12-25 16:47:49 -0500438 ent->proc_fops = &proc_dir_operations;
439 ent->proc_iops = &proc_dir_inode_operations;
440 parent->nlink++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (proc_register(parent, ent) < 0) {
442 kfree(ent);
Al Virod443b9f2014-12-25 16:47:49 -0500443 parent->nlink--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 ent = NULL;
445 }
446 }
447 return ent;
448}
David Howells270b5ac2013-04-12 02:48:30 +0100449EXPORT_SYMBOL_GPL(proc_mkdir_data);
450
451struct proc_dir_entry *proc_mkdir_mode(const char *name, umode_t mode,
452 struct proc_dir_entry *parent)
453{
454 return proc_mkdir_data(name, mode, parent, NULL);
455}
Alexey Dobriyan011159a2011-05-14 00:12:48 +0300456EXPORT_SYMBOL(proc_mkdir_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458struct proc_dir_entry *proc_mkdir(const char *name,
459 struct proc_dir_entry *parent)
460{
David Howells270b5ac2013-04-12 02:48:30 +0100461 return proc_mkdir_data(name, 0, parent, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
Helight.Xu587d4a12009-12-30 13:24:41 +0800463EXPORT_SYMBOL(proc_mkdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Eric W. Biedermaneb6d38d2015-05-11 16:44:25 -0500465struct proc_dir_entry *proc_create_mount_point(const char *name)
466{
467 umode_t mode = S_IFDIR | S_IRUGO | S_IXUGO;
468 struct proc_dir_entry *ent, *parent = NULL;
469
470 ent = __proc_create(&parent, name, mode, 2);
471 if (ent) {
472 ent->data = NULL;
473 ent->proc_fops = NULL;
474 ent->proc_iops = NULL;
475 if (proc_register(parent, ent) < 0) {
476 kfree(ent);
477 parent->nlink--;
478 ent = NULL;
479 }
480 }
481 return ent;
482}
Seth Forsheef97df702016-11-14 11:12:56 +0000483EXPORT_SYMBOL(proc_create_mount_point);
Eric W. Biedermaneb6d38d2015-05-11 16:44:25 -0500484
Al Virod161a132011-07-24 03:36:29 -0400485struct proc_dir_entry *proc_create_data(const char *name, umode_t mode,
Denis V. Lunev59b74352008-04-29 01:02:00 -0700486 struct proc_dir_entry *parent,
487 const struct file_operations *proc_fops,
488 void *data)
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800489{
490 struct proc_dir_entry *pde;
Al Virob6cdc732013-03-30 21:20:14 -0400491 if ((mode & S_IFMT) == 0)
492 mode |= S_IFREG;
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800493
Al Virob6cdc732013-03-30 21:20:14 -0400494 if (!S_ISREG(mode)) {
495 WARN_ON(1); /* use proc_mkdir() */
496 return NULL;
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800497 }
498
Al Virod443b9f2014-12-25 16:47:49 -0500499 BUG_ON(proc_fops == NULL);
500
Al Virob6cdc732013-03-30 21:20:14 -0400501 if ((mode & S_IALLUGO) == 0)
502 mode |= S_IRUGO;
503 pde = __proc_create(&parent, name, mode, 1);
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800504 if (!pde)
505 goto out;
506 pde->proc_fops = proc_fops;
Denis V. Lunev59b74352008-04-29 01:02:00 -0700507 pde->data = data;
Al Virod443b9f2014-12-25 16:47:49 -0500508 pde->proc_iops = &proc_file_inode_operations;
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800509 if (proc_register(parent, pde) < 0)
510 goto out_free;
511 return pde;
512out_free:
513 kfree(pde);
514out:
515 return NULL;
516}
Helight.Xu587d4a12009-12-30 13:24:41 +0800517EXPORT_SYMBOL(proc_create_data);
David Howells271a15e2013-04-12 00:38:51 +0100518
519void proc_set_size(struct proc_dir_entry *de, loff_t size)
520{
521 de->size = size;
522}
523EXPORT_SYMBOL(proc_set_size);
524
525void proc_set_user(struct proc_dir_entry *de, kuid_t uid, kgid_t gid)
526{
527 de->uid = uid;
528 de->gid = gid;
529}
530EXPORT_SYMBOL(proc_set_user);
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800531
Alexey Dobriyan135d5652009-12-15 16:45:39 -0800532static void free_proc_entry(struct proc_dir_entry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
Eric W. Biederman33d6dce2011-06-17 13:33:20 -0700534 proc_free_inum(de->low_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Alexey Dobriyanfd2cbe42008-02-08 04:18:28 -0800536 if (S_ISLNK(de->mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 kfree(de->data);
538 kfree(de);
539}
540
Alexey Dobriyan135d5652009-12-15 16:45:39 -0800541void pde_put(struct proc_dir_entry *pde)
542{
543 if (atomic_dec_and_test(&pde->count))
544 free_proc_entry(pde);
545}
546
Al Viro8ce584c2013-03-30 20:13:46 -0400547/*
548 * Remove a /proc entry and free it if it's not currently in use.
549 */
550void remove_proc_entry(const char *name, struct proc_dir_entry *parent)
551{
Al Viro8ce584c2013-03-30 20:13:46 -0400552 struct proc_dir_entry *de = NULL;
553 const char *fn = name;
554 unsigned int len;
555
Waiman Longecf1a3d2015-09-09 15:35:57 -0700556 write_lock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400557 if (__xlate_proc_name(name, &parent, &fn) != 0) {
Waiman Longecf1a3d2015-09-09 15:35:57 -0700558 write_unlock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400559 return;
560 }
561 len = strlen(fn);
562
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800563 de = pde_subdir_find(parent, fn, len);
564 if (de)
565 rb_erase(&de->subdir_node, &parent->subdir);
Waiman Longecf1a3d2015-09-09 15:35:57 -0700566 write_unlock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400567 if (!de) {
568 WARN(1, "name '%s'\n", name);
569 return;
570 }
571
Al Viro866ad9a2013-04-03 19:07:30 -0400572 proc_entry_rundown(de);
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700573
Alexey Dobriyanf649d6d2008-04-29 01:01:39 -0700574 if (S_ISDIR(de->mode))
575 parent->nlink--;
576 de->nlink = 0;
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800577 WARN(pde_subdir_first(de),
578 "%s: removing non-empty directory '%s/%s', leaking at least '%s'\n",
579 __func__, de->parent->name, de->name, pde_subdir_first(de)->name);
Alexey Dobriyan135d5652009-12-15 16:45:39 -0800580 pde_put(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
Helight.Xu587d4a12009-12-30 13:24:41 +0800582EXPORT_SYMBOL(remove_proc_entry);
Al Viro8ce584c2013-03-30 20:13:46 -0400583
584int remove_proc_subtree(const char *name, struct proc_dir_entry *parent)
585{
Al Viro8ce584c2013-03-30 20:13:46 -0400586 struct proc_dir_entry *root = NULL, *de, *next;
587 const char *fn = name;
588 unsigned int len;
589
Waiman Longecf1a3d2015-09-09 15:35:57 -0700590 write_lock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400591 if (__xlate_proc_name(name, &parent, &fn) != 0) {
Waiman Longecf1a3d2015-09-09 15:35:57 -0700592 write_unlock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400593 return -ENOENT;
594 }
595 len = strlen(fn);
596
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800597 root = pde_subdir_find(parent, fn, len);
Al Viro8ce584c2013-03-30 20:13:46 -0400598 if (!root) {
Waiman Longecf1a3d2015-09-09 15:35:57 -0700599 write_unlock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400600 return -ENOENT;
601 }
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800602 rb_erase(&root->subdir_node, &parent->subdir);
603
Al Viro8ce584c2013-03-30 20:13:46 -0400604 de = root;
605 while (1) {
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800606 next = pde_subdir_first(de);
Al Viro8ce584c2013-03-30 20:13:46 -0400607 if (next) {
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800608 rb_erase(&next->subdir_node, &de->subdir);
Al Viro8ce584c2013-03-30 20:13:46 -0400609 de = next;
610 continue;
611 }
Waiman Longecf1a3d2015-09-09 15:35:57 -0700612 write_unlock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400613
Al Viro866ad9a2013-04-03 19:07:30 -0400614 proc_entry_rundown(de);
Al Viro8ce584c2013-03-30 20:13:46 -0400615 next = de->parent;
616 if (S_ISDIR(de->mode))
617 next->nlink--;
618 de->nlink = 0;
619 if (de == root)
620 break;
621 pde_put(de);
622
Waiman Longecf1a3d2015-09-09 15:35:57 -0700623 write_lock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400624 de = next;
625 }
626 pde_put(root);
627 return 0;
628}
629EXPORT_SYMBOL(remove_proc_subtree);
David Howells4a520d22013-04-12 14:06:01 +0100630
631void *proc_get_parent_data(const struct inode *inode)
632{
633 struct proc_dir_entry *de = PDE(inode);
634 return de->parent->data;
635}
636EXPORT_SYMBOL_GPL(proc_get_parent_data);
David Howellsa8ca16e2013-04-12 17:27:28 +0100637
638void proc_remove(struct proc_dir_entry *de)
639{
640 if (de)
641 remove_proc_subtree(de->name, de->parent);
642}
643EXPORT_SYMBOL(proc_remove);
David Howellsc30480b2013-04-12 18:03:36 +0100644
645void *PDE_DATA(const struct inode *inode)
646{
647 return __PDE_DATA(inode);
648}
649EXPORT_SYMBOL(PDE_DATA);