blob: 04c4804cbdef89bb219573fc3db18b9d6a02a149 [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
Alexey Dobriyanb4884f22018-04-10 16:31:52 -070011#include <linux/cache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/errno.h>
13#include <linux/time.h>
14#include <linux/proc_fs.h>
15#include <linux/stat.h>
Christoph Hellwig10257742010-06-04 11:30:02 +020016#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Andrew Morton87ebdc02013-02-27 17:03:16 -080019#include <linux/printk.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/init.h>
22#include <linux/idr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/bitops.h>
Steven Rostedt64a07bd2006-03-26 01:36:55 -080024#include <linux/spinlock.h>
Alexey Dobriyan786d7e12007-07-15 23:39:00 -070025#include <linux/completion.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080026#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Adrian Bunkfee781e2006-01-08 01:04:16 -080028#include "internal.h"
29
Waiman Longecf1a3d2015-09-09 15:35:57 -070030static DEFINE_RWLOCK(proc_subdir_lock);
Steven Rostedt64a07bd2006-03-26 01:36:55 -080031
Alexey Dobriyanb4884f22018-04-10 16:31:52 -070032struct kmem_cache *proc_dir_entry_cache __ro_after_init;
33
34void pde_free(struct proc_dir_entry *pde)
35{
36 if (S_ISLNK(pde->mode))
37 kfree(pde->data);
38 if (pde->name != pde->inline_name)
39 kfree(pde->name);
40 kmem_cache_free(proc_dir_entry_cache, pde);
41}
42
Alexey Dobriyan93ad5bc2018-02-06 15:37:31 -080043static int proc_match(const char *name, struct proc_dir_entry *de, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
Nicolas Dichtel710585d2014-12-10 15:45:01 -080045 if (len < de->namelen)
46 return -1;
47 if (len > de->namelen)
48 return 1;
49
50 return memcmp(name, de->name, len);
51}
52
53static struct proc_dir_entry *pde_subdir_first(struct proc_dir_entry *dir)
54{
Alexey Dobriyan4f113432018-04-10 16:32:20 -070055 return rb_entry_safe(rb_first(&dir->subdir), struct proc_dir_entry,
56 subdir_node);
Nicolas Dichtel710585d2014-12-10 15:45:01 -080057}
58
59static struct proc_dir_entry *pde_subdir_next(struct proc_dir_entry *dir)
60{
Nicolas Dichtel2fc1e942014-12-10 15:45:07 -080061 return rb_entry_safe(rb_next(&dir->subdir_node), struct proc_dir_entry,
62 subdir_node);
Nicolas Dichtel710585d2014-12-10 15:45:01 -080063}
64
65static struct proc_dir_entry *pde_subdir_find(struct proc_dir_entry *dir,
66 const char *name,
67 unsigned int len)
68{
Alexey Dobriyan4f113432018-04-10 16:32:20 -070069 struct rb_node *node = dir->subdir.rb_node;
Nicolas Dichtel710585d2014-12-10 15:45:01 -080070
71 while (node) {
Geliang Tang4e4a7fb2017-02-24 15:00:17 -080072 struct proc_dir_entry *de = rb_entry(node,
73 struct proc_dir_entry,
74 subdir_node);
Alexey Dobriyan93ad5bc2018-02-06 15:37:31 -080075 int result = proc_match(name, de, len);
Nicolas Dichtel710585d2014-12-10 15:45:01 -080076
77 if (result < 0)
78 node = node->rb_left;
79 else if (result > 0)
80 node = node->rb_right;
81 else
82 return de;
83 }
84 return NULL;
85}
86
87static bool pde_subdir_insert(struct proc_dir_entry *dir,
88 struct proc_dir_entry *de)
89{
Alexey Dobriyan4f113432018-04-10 16:32:20 -070090 struct rb_root *root = &dir->subdir;
91 struct rb_node **new = &root->rb_node, *parent = NULL;
Nicolas Dichtel710585d2014-12-10 15:45:01 -080092
93 /* Figure out where to put new node */
94 while (*new) {
Geliang Tang4e4a7fb2017-02-24 15:00:17 -080095 struct proc_dir_entry *this = rb_entry(*new,
96 struct proc_dir_entry,
97 subdir_node);
Alexey Dobriyan93ad5bc2018-02-06 15:37:31 -080098 int result = proc_match(de->name, this, de->namelen);
Nicolas Dichtel710585d2014-12-10 15:45:01 -080099
100 parent = *new;
101 if (result < 0)
102 new = &(*new)->rb_left;
Alexey Dobriyan4f113432018-04-10 16:32:20 -0700103 else if (result > 0)
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800104 new = &(*new)->rb_right;
Alexey Dobriyan4f113432018-04-10 16:32:20 -0700105 else
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800106 return false;
107 }
108
109 /* Add new node and rebalance tree. */
110 rb_link_node(&de->subdir_node, parent, new);
Alexey Dobriyan4f113432018-04-10 16:32:20 -0700111 rb_insert_color(&de->subdir_node, root);
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800112 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115static int proc_notify_change(struct dentry *dentry, struct iattr *iattr)
116{
David Howells2b0143b2015-03-17 22:25:59 +0000117 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 struct proc_dir_entry *de = PDE(inode);
119 int error;
120
Jan Kara31051c82016-05-26 16:55:18 +0200121 error = setattr_prepare(dentry, iattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 if (error)
Christoph Hellwig10257742010-06-04 11:30:02 +0200123 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Christoph Hellwig10257742010-06-04 11:30:02 +0200125 setattr_copy(inode, iattr);
126 mark_inode_dirty(inode);
Marco Stornelli46f69552012-12-15 11:48:48 +0100127
Rui Xiangcdf7e8d2014-01-23 15:55:41 -0800128 proc_set_user(de, inode->i_uid, inode->i_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 de->mode = inode->i_mode;
Christoph Hellwig10257742010-06-04 11:30:02 +0200130 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
David Howellsa528d352017-01-31 16:46:22 +0000133static int proc_getattr(const struct path *path, struct kstat *stat,
134 u32 request_mask, unsigned int query_flags)
Miklos Szeredi2b579be2005-09-06 15:17:18 -0700135{
David Howellsa528d352017-01-31 16:46:22 +0000136 struct inode *inode = d_inode(path->dentry);
Alexander Kuleshov6bee55f2015-02-12 15:01:03 -0800137 struct proc_dir_entry *de = PDE(inode);
Miklos Szeredi2b579be2005-09-06 15:17:18 -0700138 if (de && de->nlink)
Miklos Szeredibfe86842011-10-28 14:13:29 +0200139 set_nlink(inode, de->nlink);
Miklos Szeredi2b579be2005-09-06 15:17:18 -0700140
141 generic_fillattr(inode, stat);
142 return 0;
143}
144
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800145static const struct inode_operations proc_file_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 .setattr = proc_notify_change,
147};
148
149/*
150 * This function parses a name such as "tty/driver/serial", and
151 * returns the struct proc_dir_entry for "/proc/tty/driver", and
152 * returns "serial" in residual.
153 */
Alexey Dobriyane17a5762010-03-05 13:43:59 -0800154static int __xlate_proc_name(const char *name, struct proc_dir_entry **ret,
155 const char **residual)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
157 const char *cp = name, *next;
158 struct proc_dir_entry *de;
Alexey Dobriyan312ec7e2011-03-23 16:42:52 -0700159 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Alexey Dobriyan7cee4e02008-04-29 01:01:40 -0700161 de = *ret;
162 if (!de)
163 de = &proc_root;
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 while (1) {
166 next = strchr(cp, '/');
167 if (!next)
168 break;
169
170 len = next - cp;
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800171 de = pde_subdir_find(de, cp, len);
Alexey Dobriyan12bac0d2010-03-05 13:44:00 -0800172 if (!de) {
173 WARN(1, "name '%s'\n", name);
Alexey Dobriyane17a5762010-03-05 13:43:59 -0800174 return -ENOENT;
Alexey Dobriyan12bac0d2010-03-05 13:44:00 -0800175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 cp += len + 1;
177 }
178 *residual = cp;
179 *ret = de;
Alexey Dobriyane17a5762010-03-05 13:43:59 -0800180 return 0;
181}
182
183static int xlate_proc_name(const char *name, struct proc_dir_entry **ret,
184 const char **residual)
185{
186 int rv;
187
Waiman Longecf1a3d2015-09-09 15:35:57 -0700188 read_lock(&proc_subdir_lock);
Alexey Dobriyane17a5762010-03-05 13:43:59 -0800189 rv = __xlate_proc_name(name, ret, residual);
Waiman Longecf1a3d2015-09-09 15:35:57 -0700190 read_unlock(&proc_subdir_lock);
Alexey Dobriyane17a5762010-03-05 13:43:59 -0800191 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
Alexey Dobriyan9a185402008-07-26 11:21:37 +0400194static DEFINE_IDA(proc_inum_ida);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Alexey Dobriyan67935df2008-07-26 11:18:28 +0400196#define PROC_DYNAMIC_FIRST 0xF0000000U
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198/*
199 * Return an inode number between PROC_DYNAMIC_FIRST and
200 * 0xffffffff, or zero on failure.
201 */
Eric W. Biederman33d6dce2011-06-17 13:33:20 -0700202int proc_alloc_inum(unsigned int *inum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Heiner Kallweitcde1b692017-07-10 15:50:52 -0700204 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Heiner Kallweitcde1b692017-07-10 15:50:52 -0700206 i = ida_simple_get(&proc_inum_ida, 0, UINT_MAX - PROC_DYNAMIC_FIRST + 1,
207 GFP_KERNEL);
208 if (i < 0)
209 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Heiner Kallweitcde1b692017-07-10 15:50:52 -0700211 *inum = PROC_DYNAMIC_FIRST + (unsigned int)i;
Eric W. Biederman33d6dce2011-06-17 13:33:20 -0700212 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
Eric W. Biederman33d6dce2011-06-17 13:33:20 -0700215void proc_free_inum(unsigned int inum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
Heiner Kallweitcde1b692017-07-10 15:50:52 -0700217 ida_simple_remove(&proc_inum_ida, inum - PROC_DYNAMIC_FIRST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 * Don't create negative dentries here, return -ENOENT by hand
222 * instead.
223 */
Alexey Dobriyan93ad5bc2018-02-06 15:37:31 -0800224struct dentry *proc_lookup_de(struct inode *dir, struct dentry *dentry,
225 struct proc_dir_entry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Al Virod3d009c2013-01-25 20:11:22 -0500227 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Waiman Longecf1a3d2015-09-09 15:35:57 -0700229 read_lock(&proc_subdir_lock);
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800230 de = pde_subdir_find(de, dentry->d_name.name, dentry->d_name.len);
231 if (de) {
232 pde_get(de);
Waiman Longecf1a3d2015-09-09 15:35:57 -0700233 read_unlock(&proc_subdir_lock);
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800234 inode = proc_get_inode(dir->i_sb, de);
235 if (!inode)
236 return ERR_PTR(-ENOMEM);
237 d_set_d_op(dentry, &simple_dentry_operations);
238 d_add(dentry, inode);
239 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 }
Waiman Longecf1a3d2015-09-09 15:35:57 -0700241 read_unlock(&proc_subdir_lock);
Al Virod3d009c2013-01-25 20:11:22 -0500242 return ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800245struct dentry *proc_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400246 unsigned int flags)
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800247{
Alexey Dobriyan93ad5bc2018-02-06 15:37:31 -0800248 return proc_lookup_de(dir, dentry, PDE(dir));
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800249}
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251/*
252 * This returns non-zero if at EOF, so that the /proc
253 * root directory can use this and check if it should
254 * continue with the <pid> entries..
255 *
256 * Note that the VFS-layer doesn't care about the return
257 * value of the readdir() call, as long as it's non-negative
258 * for success..
259 */
Alexey Dobriyan93ad5bc2018-02-06 15:37:31 -0800260int proc_readdir_de(struct file *file, struct dir_context *ctx,
261 struct proc_dir_entry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Al Virof0c3b502013-05-16 12:07:31 -0400265 if (!dir_emit_dots(file, ctx))
266 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Waiman Longecf1a3d2015-09-09 15:35:57 -0700268 read_lock(&proc_subdir_lock);
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800269 de = pde_subdir_first(de);
Al Virof0c3b502013-05-16 12:07:31 -0400270 i = ctx->pos - 2;
271 for (;;) {
272 if (!de) {
Waiman Longecf1a3d2015-09-09 15:35:57 -0700273 read_unlock(&proc_subdir_lock);
Al Virof0c3b502013-05-16 12:07:31 -0400274 return 0;
275 }
276 if (!i)
277 break;
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800278 de = pde_subdir_next(de);
Al Virof0c3b502013-05-16 12:07:31 -0400279 i--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
Al Virof0c3b502013-05-16 12:07:31 -0400281
282 do {
283 struct proc_dir_entry *next;
284 pde_get(de);
Waiman Longecf1a3d2015-09-09 15:35:57 -0700285 read_unlock(&proc_subdir_lock);
Al Virof0c3b502013-05-16 12:07:31 -0400286 if (!dir_emit(ctx, de->name, de->namelen,
287 de->low_ino, de->mode >> 12)) {
288 pde_put(de);
289 return 0;
290 }
Waiman Longecf1a3d2015-09-09 15:35:57 -0700291 read_lock(&proc_subdir_lock);
Al Virof0c3b502013-05-16 12:07:31 -0400292 ctx->pos++;
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800293 next = pde_subdir_next(de);
Al Virof0c3b502013-05-16 12:07:31 -0400294 pde_put(de);
295 de = next;
296 } while (de);
Waiman Longecf1a3d2015-09-09 15:35:57 -0700297 read_unlock(&proc_subdir_lock);
Linus Torvaldsfd3930f2013-08-19 16:26:12 -0700298 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300
Al Virof0c3b502013-05-16 12:07:31 -0400301int proc_readdir(struct file *file, struct dir_context *ctx)
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800302{
Al Virof0c3b502013-05-16 12:07:31 -0400303 struct inode *inode = file_inode(file);
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800304
Alexey Dobriyan93ad5bc2018-02-06 15:37:31 -0800305 return proc_readdir_de(file, ctx, PDE(inode));
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800306}
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308/*
309 * These are the generic /proc directory operations. They
310 * use the in-memory "struct proc_dir_entry" tree to parse
311 * the /proc directory.
312 */
Arjan van de Ven00977a52007-02-12 00:55:34 -0800313static const struct file_operations proc_dir_operations = {
Alexey Dobriyanb4df2b92008-10-27 22:48:36 +0300314 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -0400316 .iterate_shared = proc_readdir,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317};
318
319/*
320 * proc directories can do almost nothing..
321 */
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800322static const struct inode_operations proc_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 .lookup = proc_lookup,
Miklos Szeredi2b579be2005-09-06 15:17:18 -0700324 .getattr = proc_getattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 .setattr = proc_notify_change,
326};
327
328static int proc_register(struct proc_dir_entry * dir, struct proc_dir_entry * dp)
329{
Eric W. Biederman33d6dce2011-06-17 13:33:20 -0700330 int ret;
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800331
Eric W. Biederman33d6dce2011-06-17 13:33:20 -0700332 ret = proc_alloc_inum(&dp->low_ino);
333 if (ret)
334 return ret;
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800335
Waiman Longecf1a3d2015-09-09 15:35:57 -0700336 write_lock(&proc_subdir_lock);
Changli Gao99fc06d2007-07-15 23:40:09 -0700337 dp->parent = dir;
Debabrata Banerjeeb208d542014-12-10 15:45:04 -0800338 if (pde_subdir_insert(dir, dp) == false) {
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800339 WARN(1, "proc_dir_entry '%s/%s' already registered\n",
340 dir->name, dp->name);
Waiman Longecf1a3d2015-09-09 15:35:57 -0700341 write_unlock(&proc_subdir_lock);
Debabrata Banerjeeb208d542014-12-10 15:45:04 -0800342 proc_free_inum(dp->low_ino);
343 return -EEXIST;
344 }
Waiman Longecf1a3d2015-09-09 15:35:57 -0700345 write_unlock(&proc_subdir_lock);
Changli Gao99fc06d2007-07-15 23:40:09 -0700346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return 0;
348}
349
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800350static struct proc_dir_entry *__proc_create(struct proc_dir_entry **parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 const char *name,
Al Virod161a132011-07-24 03:36:29 -0400352 umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 nlink_t nlink)
354{
355 struct proc_dir_entry *ent = NULL;
Alexey Dobriyandbcdb502014-08-08 14:21:25 -0700356 const char *fn;
357 struct qstr qstr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Alexey Dobriyan7cee4e02008-04-29 01:01:40 -0700359 if (xlate_proc_name(name, parent, &fn) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 goto out;
Alexey Dobriyandbcdb502014-08-08 14:21:25 -0700361 qstr.name = fn;
362 qstr.len = strlen(fn);
363 if (qstr.len == 0 || qstr.len >= 256) {
364 WARN(1, "name len %u\n", qstr.len);
365 return NULL;
366 }
Alexey Dobriyanb77d70d2018-04-10 16:32:11 -0700367 if (qstr.len == 1 && fn[0] == '.') {
368 WARN(1, "name '.'\n");
369 return NULL;
370 }
371 if (qstr.len == 2 && fn[0] == '.' && fn[1] == '.') {
372 WARN(1, "name '..'\n");
373 return NULL;
374 }
Alexey Dobriyandbcdb502014-08-08 14:21:25 -0700375 if (*parent == &proc_root && name_to_int(&qstr) != ~0U) {
376 WARN(1, "create '/proc/%s' by hand\n", qstr.name);
377 return NULL;
378 }
Eric W. Biedermaneb6d38d2015-05-11 16:44:25 -0500379 if (is_empty_pde(*parent)) {
380 WARN(1, "attempt to add to permanently empty directory");
381 return NULL;
382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Alexey Dobriyanb4884f22018-04-10 16:31:52 -0700384 ent = kmem_cache_zalloc(proc_dir_entry_cache, GFP_KERNEL);
yan17baa2a2012-10-04 17:15:43 -0700385 if (!ent)
386 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Alexey Dobriyanb4884f22018-04-10 16:31:52 -0700388 if (qstr.len + 1 <= sizeof(ent->inline_name)) {
389 ent->name = ent->inline_name;
390 } else {
391 ent->name = kmalloc(qstr.len + 1, GFP_KERNEL);
392 if (!ent->name) {
393 pde_free(ent);
394 return NULL;
395 }
396 }
397
Alexey Dobriyandbcdb502014-08-08 14:21:25 -0700398 memcpy(ent->name, fn, qstr.len + 1);
399 ent->namelen = qstr.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 ent->mode = mode;
401 ent->nlink = nlink;
Alexey Dobriyan4f113432018-04-10 16:32:20 -0700402 ent->subdir = RB_ROOT;
Alexey Dobriyan9cdd83e2018-04-10 16:32:14 -0700403 refcount_set(&ent->refcnt, 1);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700404 spin_lock_init(&ent->pde_unload_lock);
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700405 INIT_LIST_HEAD(&ent->pde_openers);
Dmitry Torokhovc1104862016-08-10 14:36:01 -0700406 proc_set_user(ent, (*parent)->uid, (*parent)->gid);
407
yan17baa2a2012-10-04 17:15:43 -0700408out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return ent;
410}
411
412struct proc_dir_entry *proc_symlink(const char *name,
413 struct proc_dir_entry *parent, const char *dest)
414{
415 struct proc_dir_entry *ent;
416
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800417 ent = __proc_create(&parent, name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 (S_IFLNK | S_IRUGO | S_IWUGO | S_IXUGO),1);
419
420 if (ent) {
421 ent->data = kmalloc((ent->size=strlen(dest))+1, GFP_KERNEL);
422 if (ent->data) {
423 strcpy((char*)ent->data,dest);
Al Virod443b9f2014-12-25 16:47:49 -0500424 ent->proc_iops = &proc_link_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (proc_register(parent, ent) < 0) {
Alexey Dobriyanb4884f22018-04-10 16:31:52 -0700426 pde_free(ent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 ent = NULL;
428 }
429 } else {
Alexey Dobriyanb4884f22018-04-10 16:31:52 -0700430 pde_free(ent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 ent = NULL;
432 }
433 }
434 return ent;
435}
Helight.Xu587d4a12009-12-30 13:24:41 +0800436EXPORT_SYMBOL(proc_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
David Howells270b5ac2013-04-12 02:48:30 +0100438struct proc_dir_entry *proc_mkdir_data(const char *name, umode_t mode,
439 struct proc_dir_entry *parent, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 struct proc_dir_entry *ent;
442
David Howells270b5ac2013-04-12 02:48:30 +0100443 if (mode == 0)
444 mode = S_IRUGO | S_IXUGO;
445
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800446 ent = __proc_create(&parent, name, S_IFDIR | mode, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (ent) {
David Howells270b5ac2013-04-12 02:48:30 +0100448 ent->data = data;
Al Virod443b9f2014-12-25 16:47:49 -0500449 ent->proc_fops = &proc_dir_operations;
450 ent->proc_iops = &proc_dir_inode_operations;
451 parent->nlink++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 if (proc_register(parent, ent) < 0) {
Alexey Dobriyanb4884f22018-04-10 16:31:52 -0700453 pde_free(ent);
Al Virod443b9f2014-12-25 16:47:49 -0500454 parent->nlink--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 ent = NULL;
456 }
457 }
458 return ent;
459}
David Howells270b5ac2013-04-12 02:48:30 +0100460EXPORT_SYMBOL_GPL(proc_mkdir_data);
461
462struct proc_dir_entry *proc_mkdir_mode(const char *name, umode_t mode,
463 struct proc_dir_entry *parent)
464{
465 return proc_mkdir_data(name, mode, parent, NULL);
466}
Alexey Dobriyan011159a2011-05-14 00:12:48 +0300467EXPORT_SYMBOL(proc_mkdir_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469struct proc_dir_entry *proc_mkdir(const char *name,
470 struct proc_dir_entry *parent)
471{
David Howells270b5ac2013-04-12 02:48:30 +0100472 return proc_mkdir_data(name, 0, parent, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
Helight.Xu587d4a12009-12-30 13:24:41 +0800474EXPORT_SYMBOL(proc_mkdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Eric W. Biedermaneb6d38d2015-05-11 16:44:25 -0500476struct proc_dir_entry *proc_create_mount_point(const char *name)
477{
478 umode_t mode = S_IFDIR | S_IRUGO | S_IXUGO;
479 struct proc_dir_entry *ent, *parent = NULL;
480
481 ent = __proc_create(&parent, name, mode, 2);
482 if (ent) {
483 ent->data = NULL;
484 ent->proc_fops = NULL;
485 ent->proc_iops = NULL;
Takashi Iwaid66bb162017-04-28 15:00:15 +0200486 parent->nlink++;
Eric W. Biedermaneb6d38d2015-05-11 16:44:25 -0500487 if (proc_register(parent, ent) < 0) {
Alexey Dobriyanb4884f22018-04-10 16:31:52 -0700488 pde_free(ent);
Eric W. Biedermaneb6d38d2015-05-11 16:44:25 -0500489 parent->nlink--;
490 ent = NULL;
491 }
492 }
493 return ent;
494}
Seth Forsheef97df702016-11-14 11:12:56 +0000495EXPORT_SYMBOL(proc_create_mount_point);
Eric W. Biedermaneb6d38d2015-05-11 16:44:25 -0500496
Al Virod161a132011-07-24 03:36:29 -0400497struct proc_dir_entry *proc_create_data(const char *name, umode_t mode,
Denis V. Lunev59b74352008-04-29 01:02:00 -0700498 struct proc_dir_entry *parent,
499 const struct file_operations *proc_fops,
500 void *data)
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800501{
502 struct proc_dir_entry *pde;
Al Virob6cdc732013-03-30 21:20:14 -0400503 if ((mode & S_IFMT) == 0)
504 mode |= S_IFREG;
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800505
Al Virob6cdc732013-03-30 21:20:14 -0400506 if (!S_ISREG(mode)) {
507 WARN_ON(1); /* use proc_mkdir() */
508 return NULL;
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800509 }
510
Al Virod443b9f2014-12-25 16:47:49 -0500511 BUG_ON(proc_fops == NULL);
512
Al Virob6cdc732013-03-30 21:20:14 -0400513 if ((mode & S_IALLUGO) == 0)
514 mode |= S_IRUGO;
515 pde = __proc_create(&parent, name, mode, 1);
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800516 if (!pde)
517 goto out;
518 pde->proc_fops = proc_fops;
Denis V. Lunev59b74352008-04-29 01:02:00 -0700519 pde->data = data;
Al Virod443b9f2014-12-25 16:47:49 -0500520 pde->proc_iops = &proc_file_inode_operations;
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800521 if (proc_register(parent, pde) < 0)
522 goto out_free;
523 return pde;
524out_free:
Alexey Dobriyanb4884f22018-04-10 16:31:52 -0700525 pde_free(pde);
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800526out:
527 return NULL;
528}
Helight.Xu587d4a12009-12-30 13:24:41 +0800529EXPORT_SYMBOL(proc_create_data);
David Howells271a15e2013-04-12 00:38:51 +0100530
Alexey Dobriyan855d9762017-09-08 16:13:38 -0700531struct proc_dir_entry *proc_create(const char *name, umode_t mode,
532 struct proc_dir_entry *parent,
533 const struct file_operations *proc_fops)
534{
535 return proc_create_data(name, mode, parent, proc_fops, NULL);
536}
537EXPORT_SYMBOL(proc_create);
538
David Howells271a15e2013-04-12 00:38:51 +0100539void proc_set_size(struct proc_dir_entry *de, loff_t size)
540{
541 de->size = size;
542}
543EXPORT_SYMBOL(proc_set_size);
544
545void proc_set_user(struct proc_dir_entry *de, kuid_t uid, kgid_t gid)
546{
547 de->uid = uid;
548 de->gid = gid;
549}
550EXPORT_SYMBOL(proc_set_user);
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800551
Alexey Dobriyan135d5652009-12-15 16:45:39 -0800552void pde_put(struct proc_dir_entry *pde)
553{
Alexey Dobriyan9cdd83e2018-04-10 16:32:14 -0700554 if (refcount_dec_and_test(&pde->refcnt)) {
Alexey Dobriyanb4884f22018-04-10 16:31:52 -0700555 proc_free_inum(pde->low_ino);
556 pde_free(pde);
557 }
Alexey Dobriyan135d5652009-12-15 16:45:39 -0800558}
559
Al Viro8ce584c2013-03-30 20:13:46 -0400560/*
561 * Remove a /proc entry and free it if it's not currently in use.
562 */
563void remove_proc_entry(const char *name, struct proc_dir_entry *parent)
564{
Al Viro8ce584c2013-03-30 20:13:46 -0400565 struct proc_dir_entry *de = NULL;
566 const char *fn = name;
567 unsigned int len;
568
Waiman Longecf1a3d2015-09-09 15:35:57 -0700569 write_lock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400570 if (__xlate_proc_name(name, &parent, &fn) != 0) {
Waiman Longecf1a3d2015-09-09 15:35:57 -0700571 write_unlock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400572 return;
573 }
574 len = strlen(fn);
575
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800576 de = pde_subdir_find(parent, fn, len);
577 if (de)
Alexey Dobriyan4f113432018-04-10 16:32:20 -0700578 rb_erase(&de->subdir_node, &parent->subdir);
Waiman Longecf1a3d2015-09-09 15:35:57 -0700579 write_unlock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400580 if (!de) {
581 WARN(1, "name '%s'\n", name);
582 return;
583 }
584
Al Viro866ad9a72013-04-03 19:07:30 -0400585 proc_entry_rundown(de);
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700586
Alexey Dobriyanf649d6d2008-04-29 01:01:39 -0700587 if (S_ISDIR(de->mode))
588 parent->nlink--;
589 de->nlink = 0;
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800590 WARN(pde_subdir_first(de),
591 "%s: removing non-empty directory '%s/%s', leaking at least '%s'\n",
592 __func__, de->parent->name, de->name, pde_subdir_first(de)->name);
Alexey Dobriyan135d5652009-12-15 16:45:39 -0800593 pde_put(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
Helight.Xu587d4a12009-12-30 13:24:41 +0800595EXPORT_SYMBOL(remove_proc_entry);
Al Viro8ce584c2013-03-30 20:13:46 -0400596
597int remove_proc_subtree(const char *name, struct proc_dir_entry *parent)
598{
Al Viro8ce584c2013-03-30 20:13:46 -0400599 struct proc_dir_entry *root = NULL, *de, *next;
600 const char *fn = name;
601 unsigned int len;
602
Waiman Longecf1a3d2015-09-09 15:35:57 -0700603 write_lock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400604 if (__xlate_proc_name(name, &parent, &fn) != 0) {
Waiman Longecf1a3d2015-09-09 15:35:57 -0700605 write_unlock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400606 return -ENOENT;
607 }
608 len = strlen(fn);
609
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800610 root = pde_subdir_find(parent, fn, len);
Al Viro8ce584c2013-03-30 20:13:46 -0400611 if (!root) {
Waiman Longecf1a3d2015-09-09 15:35:57 -0700612 write_unlock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400613 return -ENOENT;
614 }
Alexey Dobriyan4f113432018-04-10 16:32:20 -0700615 rb_erase(&root->subdir_node, &parent->subdir);
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800616
Al Viro8ce584c2013-03-30 20:13:46 -0400617 de = root;
618 while (1) {
Nicolas Dichtel710585d2014-12-10 15:45:01 -0800619 next = pde_subdir_first(de);
Al Viro8ce584c2013-03-30 20:13:46 -0400620 if (next) {
Alexey Dobriyan4f113432018-04-10 16:32:20 -0700621 rb_erase(&next->subdir_node, &de->subdir);
Al Viro8ce584c2013-03-30 20:13:46 -0400622 de = next;
623 continue;
624 }
Waiman Longecf1a3d2015-09-09 15:35:57 -0700625 write_unlock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400626
Al Viro866ad9a72013-04-03 19:07:30 -0400627 proc_entry_rundown(de);
Al Viro8ce584c2013-03-30 20:13:46 -0400628 next = de->parent;
629 if (S_ISDIR(de->mode))
630 next->nlink--;
631 de->nlink = 0;
632 if (de == root)
633 break;
634 pde_put(de);
635
Waiman Longecf1a3d2015-09-09 15:35:57 -0700636 write_lock(&proc_subdir_lock);
Al Viro8ce584c2013-03-30 20:13:46 -0400637 de = next;
638 }
639 pde_put(root);
640 return 0;
641}
642EXPORT_SYMBOL(remove_proc_subtree);
David Howells4a520d22013-04-12 14:06:01 +0100643
644void *proc_get_parent_data(const struct inode *inode)
645{
646 struct proc_dir_entry *de = PDE(inode);
647 return de->parent->data;
648}
649EXPORT_SYMBOL_GPL(proc_get_parent_data);
David Howellsa8ca16e2013-04-12 17:27:28 +0100650
651void proc_remove(struct proc_dir_entry *de)
652{
653 if (de)
654 remove_proc_subtree(de->name, de->parent);
655}
656EXPORT_SYMBOL(proc_remove);
David Howellsc30480b2013-04-12 18:03:36 +0100657
658void *PDE_DATA(const struct inode *inode)
659{
660 return __PDE_DATA(inode);
661}
662EXPORT_SYMBOL(PDE_DATA);