1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * proc/fs/generic.c --- generic routines for the proc-fs
4 *
5 * This file contains generic proc-fs routines for handling
6 * directories and files.
7 *
8 * Copyright (C) 1991, 1992 Linus Torvalds.
9 * Copyright (C) 1997 Theodore Ts'o
10 */
11
12 #include <linux/cache.h>
13 #include <linux/errno.h>
14 #include <linux/time.h>
15 #include <linux/proc_fs.h>
16 #include <linux/stat.h>
17 #include <linux/mm.h>
18 #include <linux/module.h>
19 #include <linux/namei.h>
20 #include <linux/slab.h>
21 #include <linux/printk.h>
22 #include <linux/mount.h>
23 #include <linux/init.h>
24 #include <linux/idr.h>
25 #include <linux/bitops.h>
26 #include <linux/spinlock.h>
27 #include <linux/completion.h>
28 #include <linux/uaccess.h>
29 #include <linux/seq_file.h>
30
31 #include "internal.h"
32
33 static DEFINE_RWLOCK(proc_subdir_lock);
34
35 struct kmem_cache *proc_dir_entry_cache __ro_after_init;
36
pde_free(struct proc_dir_entry * pde)37 void pde_free(struct proc_dir_entry *pde)
38 {
39 if (S_ISLNK(pde->mode))
40 kfree(pde->data);
41 if (pde->name != pde->inline_name)
42 kfree(pde->name);
43 kmem_cache_free(proc_dir_entry_cache, pde);
44 }
45
proc_match(const char * name,struct proc_dir_entry * de,unsigned int len)46 static int proc_match(const char *name, struct proc_dir_entry *de, unsigned int len)
47 {
48 if (len < de->namelen)
49 return -1;
50 if (len > de->namelen)
51 return 1;
52
53 return memcmp(name, de->name, len);
54 }
55
pde_subdir_first(struct proc_dir_entry * dir)56 static struct proc_dir_entry *pde_subdir_first(struct proc_dir_entry *dir)
57 {
58 return rb_entry_safe(rb_first(&dir->subdir), struct proc_dir_entry,
59 subdir_node);
60 }
61
pde_subdir_next(struct proc_dir_entry * dir)62 static struct proc_dir_entry *pde_subdir_next(struct proc_dir_entry *dir)
63 {
64 return rb_entry_safe(rb_next(&dir->subdir_node), struct proc_dir_entry,
65 subdir_node);
66 }
67
pde_subdir_find(struct proc_dir_entry * dir,const char * name,unsigned int len)68 static struct proc_dir_entry *pde_subdir_find(struct proc_dir_entry *dir,
69 const char *name,
70 unsigned int len)
71 {
72 struct rb_node *node = dir->subdir.rb_node;
73
74 while (node) {
75 struct proc_dir_entry *de = rb_entry(node,
76 struct proc_dir_entry,
77 subdir_node);
78 int result = proc_match(name, de, len);
79
80 if (result < 0)
81 node = node->rb_left;
82 else if (result > 0)
83 node = node->rb_right;
84 else
85 return de;
86 }
87 return NULL;
88 }
89
pde_subdir_insert(struct proc_dir_entry * dir,struct proc_dir_entry * de)90 static bool pde_subdir_insert(struct proc_dir_entry *dir,
91 struct proc_dir_entry *de)
92 {
93 struct rb_root *root = &dir->subdir;
94 struct rb_node **new = &root->rb_node, *parent = NULL;
95
96 /* Figure out where to put new node */
97 while (*new) {
98 struct proc_dir_entry *this = rb_entry(*new,
99 struct proc_dir_entry,
100 subdir_node);
101 int result = proc_match(de->name, this, de->namelen);
102
103 parent = *new;
104 if (result < 0)
105 new = &(*new)->rb_left;
106 else if (result > 0)
107 new = &(*new)->rb_right;
108 else
109 return false;
110 }
111
112 /* Add new node and rebalance tree. */
113 rb_link_node(&de->subdir_node, parent, new);
114 rb_insert_color(&de->subdir_node, root);
115 return true;
116 }
117
proc_notify_change(struct dentry * dentry,struct iattr * iattr)118 static int proc_notify_change(struct dentry *dentry, struct iattr *iattr)
119 {
120 struct inode *inode = d_inode(dentry);
121 struct proc_dir_entry *de = PDE(inode);
122 int error;
123
124 error = setattr_prepare(dentry, iattr);
125 if (error)
126 return error;
127
128 setattr_copy(inode, iattr);
129 mark_inode_dirty(inode);
130
131 proc_set_user(de, inode->i_uid, inode->i_gid);
132 de->mode = inode->i_mode;
133 return 0;
134 }
135
proc_getattr(const struct path * path,struct kstat * stat,u32 request_mask,unsigned int query_flags)136 static int proc_getattr(const struct path *path, struct kstat *stat,
137 u32 request_mask, unsigned int query_flags)
138 {
139 struct inode *inode = d_inode(path->dentry);
140 struct proc_dir_entry *de = PDE(inode);
141 if (de) {
142 nlink_t nlink = READ_ONCE(de->nlink);
143 if (nlink > 0) {
144 set_nlink(inode, nlink);
145 }
146 }
147
148 generic_fillattr(inode, stat);
149 return 0;
150 }
151
152 static const struct inode_operations proc_file_inode_operations = {
153 .setattr = proc_notify_change,
154 };
155
156 /*
157 * This function parses a name such as "tty/driver/serial", and
158 * returns the struct proc_dir_entry for "/proc/tty/driver", and
159 * returns "serial" in residual.
160 */
__xlate_proc_name(const char * name,struct proc_dir_entry ** ret,const char ** residual)161 static int __xlate_proc_name(const char *name, struct proc_dir_entry **ret,
162 const char **residual)
163 {
164 const char *cp = name, *next;
165 struct proc_dir_entry *de;
166 unsigned int len;
167
168 de = *ret;
169 if (!de)
170 de = &proc_root;
171
172 while (1) {
173 next = strchr(cp, '/');
174 if (!next)
175 break;
176
177 len = next - cp;
178 de = pde_subdir_find(de, cp, len);
179 if (!de) {
180 WARN(1, "name '%s'\n", name);
181 return -ENOENT;
182 }
183 cp += len + 1;
184 }
185 *residual = cp;
186 *ret = de;
187 return 0;
188 }
189
xlate_proc_name(const char * name,struct proc_dir_entry ** ret,const char ** residual)190 static int xlate_proc_name(const char *name, struct proc_dir_entry **ret,
191 const char **residual)
192 {
193 int rv;
194
195 read_lock(&proc_subdir_lock);
196 rv = __xlate_proc_name(name, ret, residual);
197 read_unlock(&proc_subdir_lock);
198 return rv;
199 }
200
201 static DEFINE_IDA(proc_inum_ida);
202
203 #define PROC_DYNAMIC_FIRST 0xF0000000U
204
205 /*
206 * Return an inode number between PROC_DYNAMIC_FIRST and
207 * 0xffffffff, or zero on failure.
208 */
proc_alloc_inum(unsigned int * inum)209 int proc_alloc_inum(unsigned int *inum)
210 {
211 int i;
212
213 i = ida_simple_get(&proc_inum_ida, 0, UINT_MAX - PROC_DYNAMIC_FIRST + 1,
214 GFP_KERNEL);
215 if (i < 0)
216 return i;
217
218 *inum = PROC_DYNAMIC_FIRST + (unsigned int)i;
219 return 0;
220 }
221
proc_free_inum(unsigned int inum)222 void proc_free_inum(unsigned int inum)
223 {
224 ida_simple_remove(&proc_inum_ida, inum - PROC_DYNAMIC_FIRST);
225 }
226
proc_misc_d_revalidate(struct dentry * dentry,unsigned int flags)227 static int proc_misc_d_revalidate(struct dentry *dentry, unsigned int flags)
228 {
229 if (flags & LOOKUP_RCU)
230 return -ECHILD;
231
232 if (atomic_read(&PDE(d_inode(dentry))->in_use) < 0)
233 return 0; /* revalidate */
234 return 1;
235 }
236
proc_misc_d_delete(const struct dentry * dentry)237 static int proc_misc_d_delete(const struct dentry *dentry)
238 {
239 return atomic_read(&PDE(d_inode(dentry))->in_use) < 0;
240 }
241
242 static const struct dentry_operations proc_misc_dentry_ops = {
243 .d_revalidate = proc_misc_d_revalidate,
244 .d_delete = proc_misc_d_delete,
245 };
246
247 /*
248 * Don't create negative dentries here, return -ENOENT by hand
249 * instead.
250 */
proc_lookup_de(struct inode * dir,struct dentry * dentry,struct proc_dir_entry * de)251 struct dentry *proc_lookup_de(struct inode *dir, struct dentry *dentry,
252 struct proc_dir_entry *de)
253 {
254 struct inode *inode;
255
256 read_lock(&proc_subdir_lock);
257 de = pde_subdir_find(de, dentry->d_name.name, dentry->d_name.len);
258 if (de) {
259 pde_get(de);
260 read_unlock(&proc_subdir_lock);
261 inode = proc_get_inode(dir->i_sb, de);
262 if (!inode)
263 return ERR_PTR(-ENOMEM);
264 d_set_d_op(dentry, de->proc_dops);
265 return d_splice_alias(inode, dentry);
266 }
267 read_unlock(&proc_subdir_lock);
268 return ERR_PTR(-ENOENT);
269 }
270
proc_lookup(struct inode * dir,struct dentry * dentry,unsigned int flags)271 struct dentry *proc_lookup(struct inode *dir, struct dentry *dentry,
272 unsigned int flags)
273 {
274 return proc_lookup_de(dir, dentry, PDE(dir));
275 }
276
277 /*
278 * This returns non-zero if at EOF, so that the /proc
279 * root directory can use this and check if it should
280 * continue with the <pid> entries..
281 *
282 * Note that the VFS-layer doesn't care about the return
283 * value of the readdir() call, as long as it's non-negative
284 * for success..
285 */
proc_readdir_de(struct file * file,struct dir_context * ctx,struct proc_dir_entry * de)286 int proc_readdir_de(struct file *file, struct dir_context *ctx,
287 struct proc_dir_entry *de)
288 {
289 int i;
290
291 if (!dir_emit_dots(file, ctx))
292 return 0;
293
294 i = ctx->pos - 2;
295 read_lock(&proc_subdir_lock);
296 de = pde_subdir_first(de);
297 for (;;) {
298 if (!de) {
299 read_unlock(&proc_subdir_lock);
300 return 0;
301 }
302 if (!i)
303 break;
304 de = pde_subdir_next(de);
305 i--;
306 }
307
308 do {
309 struct proc_dir_entry *next;
310 pde_get(de);
311 read_unlock(&proc_subdir_lock);
312 if (!dir_emit(ctx, de->name, de->namelen,
313 de->low_ino, de->mode >> 12)) {
314 pde_put(de);
315 return 0;
316 }
317 ctx->pos++;
318 read_lock(&proc_subdir_lock);
319 next = pde_subdir_next(de);
320 pde_put(de);
321 de = next;
322 } while (de);
323 read_unlock(&proc_subdir_lock);
324 return 1;
325 }
326
proc_readdir(struct file * file,struct dir_context * ctx)327 int proc_readdir(struct file *file, struct dir_context *ctx)
328 {
329 struct inode *inode = file_inode(file);
330
331 return proc_readdir_de(file, ctx, PDE(inode));
332 }
333
334 /*
335 * These are the generic /proc directory operations. They
336 * use the in-memory "struct proc_dir_entry" tree to parse
337 * the /proc directory.
338 */
339 static const struct file_operations proc_dir_operations = {
340 .llseek = generic_file_llseek,
341 .read = generic_read_dir,
342 .iterate_shared = proc_readdir,
343 };
344
proc_net_d_revalidate(struct dentry * dentry,unsigned int flags)345 static int proc_net_d_revalidate(struct dentry *dentry, unsigned int flags)
346 {
347 return 0;
348 }
349
350 const struct dentry_operations proc_net_dentry_ops = {
351 .d_revalidate = proc_net_d_revalidate,
352 .d_delete = always_delete_dentry,
353 };
354
355 /*
356 * proc directories can do almost nothing..
357 */
358 static const struct inode_operations proc_dir_inode_operations = {
359 .lookup = proc_lookup,
360 .getattr = proc_getattr,
361 .setattr = proc_notify_change,
362 };
363
364 /* returns the registered entry, or frees dp and returns NULL on failure */
proc_register(struct proc_dir_entry * dir,struct proc_dir_entry * dp)365 struct proc_dir_entry *proc_register(struct proc_dir_entry *dir,
366 struct proc_dir_entry *dp)
367 {
368 if (proc_alloc_inum(&dp->low_ino))
369 goto out_free_entry;
370
371 write_lock(&proc_subdir_lock);
372 dp->parent = dir;
373 if (pde_subdir_insert(dir, dp) == false) {
374 WARN(1, "proc_dir_entry '%s/%s' already registered\n",
375 dir->name, dp->name);
376 write_unlock(&proc_subdir_lock);
377 goto out_free_inum;
378 }
379 dir->nlink++;
380 write_unlock(&proc_subdir_lock);
381
382 return dp;
383 out_free_inum:
384 proc_free_inum(dp->low_ino);
385 out_free_entry:
386 pde_free(dp);
387 return NULL;
388 }
389
__proc_create(struct proc_dir_entry ** parent,const char * name,umode_t mode,nlink_t nlink)390 static struct proc_dir_entry *__proc_create(struct proc_dir_entry **parent,
391 const char *name,
392 umode_t mode,
393 nlink_t nlink)
394 {
395 struct proc_dir_entry *ent = NULL;
396 const char *fn;
397 struct qstr qstr;
398
399 if (xlate_proc_name(name, parent, &fn) != 0)
400 goto out;
401 qstr.name = fn;
402 qstr.len = strlen(fn);
403 if (qstr.len == 0 || qstr.len >= 256) {
404 WARN(1, "name len %u\n", qstr.len);
405 return NULL;
406 }
407 if (qstr.len == 1 && fn[0] == '.') {
408 WARN(1, "name '.'\n");
409 return NULL;
410 }
411 if (qstr.len == 2 && fn[0] == '.' && fn[1] == '.') {
412 WARN(1, "name '..'\n");
413 return NULL;
414 }
415 if (*parent == &proc_root && name_to_int(&qstr) != ~0U) {
416 WARN(1, "create '/proc/%s' by hand\n", qstr.name);
417 return NULL;
418 }
419 if (is_empty_pde(*parent)) {
420 WARN(1, "attempt to add to permanently empty directory");
421 return NULL;
422 }
423
424 ent = kmem_cache_zalloc(proc_dir_entry_cache, GFP_KERNEL);
425 if (!ent)
426 goto out;
427
428 if (qstr.len + 1 <= SIZEOF_PDE_INLINE_NAME) {
429 ent->name = ent->inline_name;
430 } else {
431 ent->name = kmalloc(qstr.len + 1, GFP_KERNEL);
432 if (!ent->name) {
433 pde_free(ent);
434 return NULL;
435 }
436 }
437
438 memcpy(ent->name, fn, qstr.len + 1);
439 ent->namelen = qstr.len;
440 ent->mode = mode;
441 ent->nlink = nlink;
442 ent->subdir = RB_ROOT;
443 refcount_set(&ent->refcnt, 1);
444 spin_lock_init(&ent->pde_unload_lock);
445 INIT_LIST_HEAD(&ent->pde_openers);
446 proc_set_user(ent, (*parent)->uid, (*parent)->gid);
447
448 ent->proc_dops = &proc_misc_dentry_ops;
449 /* Revalidate everything under /proc/${pid}/net */
450 if ((*parent)->proc_dops == &proc_net_dentry_ops)
451 pde_force_lookup(ent);
452
453 out:
454 return ent;
455 }
456
proc_symlink(const char * name,struct proc_dir_entry * parent,const char * dest)457 struct proc_dir_entry *proc_symlink(const char *name,
458 struct proc_dir_entry *parent, const char *dest)
459 {
460 struct proc_dir_entry *ent;
461
462 ent = __proc_create(&parent, name,
463 (S_IFLNK | S_IRUGO | S_IWUGO | S_IXUGO),1);
464
465 if (ent) {
466 ent->data = kmalloc((ent->size=strlen(dest))+1, GFP_KERNEL);
467 if (ent->data) {
468 strcpy((char*)ent->data,dest);
469 ent->proc_iops = &proc_link_inode_operations;
470 ent = proc_register(parent, ent);
471 } else {
472 pde_free(ent);
473 ent = NULL;
474 }
475 }
476 return ent;
477 }
478 EXPORT_SYMBOL(proc_symlink);
479
_proc_mkdir(const char * name,umode_t mode,struct proc_dir_entry * parent,void * data,bool force_lookup)480 struct proc_dir_entry *_proc_mkdir(const char *name, umode_t mode,
481 struct proc_dir_entry *parent, void *data, bool force_lookup)
482 {
483 struct proc_dir_entry *ent;
484
485 if (mode == 0)
486 mode = S_IRUGO | S_IXUGO;
487
488 ent = __proc_create(&parent, name, S_IFDIR | mode, 2);
489 if (ent) {
490 ent->data = data;
491 ent->proc_fops = &proc_dir_operations;
492 ent->proc_iops = &proc_dir_inode_operations;
493 if (force_lookup) {
494 pde_force_lookup(ent);
495 }
496 ent = proc_register(parent, ent);
497 }
498 return ent;
499 }
500 EXPORT_SYMBOL_GPL(_proc_mkdir);
501
proc_mkdir_data(const char * name,umode_t mode,struct proc_dir_entry * parent,void * data)502 struct proc_dir_entry *proc_mkdir_data(const char *name, umode_t mode,
503 struct proc_dir_entry *parent, void *data)
504 {
505 return _proc_mkdir(name, mode, parent, data, false);
506 }
507 EXPORT_SYMBOL_GPL(proc_mkdir_data);
508
proc_mkdir_mode(const char * name,umode_t mode,struct proc_dir_entry * parent)509 struct proc_dir_entry *proc_mkdir_mode(const char *name, umode_t mode,
510 struct proc_dir_entry *parent)
511 {
512 return proc_mkdir_data(name, mode, parent, NULL);
513 }
514 EXPORT_SYMBOL(proc_mkdir_mode);
515
proc_mkdir(const char * name,struct proc_dir_entry * parent)516 struct proc_dir_entry *proc_mkdir(const char *name,
517 struct proc_dir_entry *parent)
518 {
519 return proc_mkdir_data(name, 0, parent, NULL);
520 }
521 EXPORT_SYMBOL(proc_mkdir);
522
proc_create_mount_point(const char * name)523 struct proc_dir_entry *proc_create_mount_point(const char *name)
524 {
525 umode_t mode = S_IFDIR | S_IRUGO | S_IXUGO;
526 struct proc_dir_entry *ent, *parent = NULL;
527
528 ent = __proc_create(&parent, name, mode, 2);
529 if (ent) {
530 ent->data = NULL;
531 ent->proc_fops = NULL;
532 ent->proc_iops = NULL;
533 ent = proc_register(parent, ent);
534 }
535 return ent;
536 }
537 EXPORT_SYMBOL(proc_create_mount_point);
538
proc_create_reg(const char * name,umode_t mode,struct proc_dir_entry ** parent,void * data)539 struct proc_dir_entry *proc_create_reg(const char *name, umode_t mode,
540 struct proc_dir_entry **parent, void *data)
541 {
542 struct proc_dir_entry *p;
543
544 if ((mode & S_IFMT) == 0)
545 mode |= S_IFREG;
546 if ((mode & S_IALLUGO) == 0)
547 mode |= S_IRUGO;
548 if (WARN_ON_ONCE(!S_ISREG(mode)))
549 return NULL;
550
551 p = __proc_create(parent, name, mode, 1);
552 if (p) {
553 p->proc_iops = &proc_file_inode_operations;
554 p->data = data;
555 }
556 return p;
557 }
558
proc_create_data(const char * name,umode_t mode,struct proc_dir_entry * parent,const struct file_operations * proc_fops,void * data)559 struct proc_dir_entry *proc_create_data(const char *name, umode_t mode,
560 struct proc_dir_entry *parent,
561 const struct file_operations *proc_fops, void *data)
562 {
563 struct proc_dir_entry *p;
564
565 BUG_ON(proc_fops == NULL);
566
567 p = proc_create_reg(name, mode, &parent, data);
568 if (!p)
569 return NULL;
570 p->proc_fops = proc_fops;
571 return proc_register(parent, p);
572 }
573 EXPORT_SYMBOL(proc_create_data);
574
proc_create(const char * name,umode_t mode,struct proc_dir_entry * parent,const struct file_operations * proc_fops)575 struct proc_dir_entry *proc_create(const char *name, umode_t mode,
576 struct proc_dir_entry *parent,
577 const struct file_operations *proc_fops)
578 {
579 return proc_create_data(name, mode, parent, proc_fops, NULL);
580 }
581 EXPORT_SYMBOL(proc_create);
582
proc_seq_open(struct inode * inode,struct file * file)583 static int proc_seq_open(struct inode *inode, struct file *file)
584 {
585 struct proc_dir_entry *de = PDE(inode);
586
587 if (de->state_size)
588 return seq_open_private(file, de->seq_ops, de->state_size);
589 return seq_open(file, de->seq_ops);
590 }
591
proc_seq_release(struct inode * inode,struct file * file)592 static int proc_seq_release(struct inode *inode, struct file *file)
593 {
594 struct proc_dir_entry *de = PDE(inode);
595
596 if (de->state_size)
597 return seq_release_private(inode, file);
598 return seq_release(inode, file);
599 }
600
601 static const struct file_operations proc_seq_fops = {
602 .open = proc_seq_open,
603 .read = seq_read,
604 .llseek = seq_lseek,
605 .release = proc_seq_release,
606 };
607
proc_create_seq_private(const char * name,umode_t mode,struct proc_dir_entry * parent,const struct seq_operations * ops,unsigned int state_size,void * data)608 struct proc_dir_entry *proc_create_seq_private(const char *name, umode_t mode,
609 struct proc_dir_entry *parent, const struct seq_operations *ops,
610 unsigned int state_size, void *data)
611 {
612 struct proc_dir_entry *p;
613
614 p = proc_create_reg(name, mode, &parent, data);
615 if (!p)
616 return NULL;
617 p->proc_fops = &proc_seq_fops;
618 p->seq_ops = ops;
619 p->state_size = state_size;
620 return proc_register(parent, p);
621 }
622 EXPORT_SYMBOL(proc_create_seq_private);
623
proc_single_open(struct inode * inode,struct file * file)624 static int proc_single_open(struct inode *inode, struct file *file)
625 {
626 struct proc_dir_entry *de = PDE(inode);
627
628 return single_open(file, de->single_show, de->data);
629 }
630
631 static const struct file_operations proc_single_fops = {
632 .open = proc_single_open,
633 .read = seq_read,
634 .llseek = seq_lseek,
635 .release = single_release,
636 };
637
proc_create_single_data(const char * name,umode_t mode,struct proc_dir_entry * parent,int (* show)(struct seq_file *,void *),void * data)638 struct proc_dir_entry *proc_create_single_data(const char *name, umode_t mode,
639 struct proc_dir_entry *parent,
640 int (*show)(struct seq_file *, void *), void *data)
641 {
642 struct proc_dir_entry *p;
643
644 p = proc_create_reg(name, mode, &parent, data);
645 if (!p)
646 return NULL;
647 p->proc_fops = &proc_single_fops;
648 p->single_show = show;
649 return proc_register(parent, p);
650 }
651 EXPORT_SYMBOL(proc_create_single_data);
652
proc_set_size(struct proc_dir_entry * de,loff_t size)653 void proc_set_size(struct proc_dir_entry *de, loff_t size)
654 {
655 de->size = size;
656 }
657 EXPORT_SYMBOL(proc_set_size);
658
proc_set_user(struct proc_dir_entry * de,kuid_t uid,kgid_t gid)659 void proc_set_user(struct proc_dir_entry *de, kuid_t uid, kgid_t gid)
660 {
661 de->uid = uid;
662 de->gid = gid;
663 }
664 EXPORT_SYMBOL(proc_set_user);
665
pde_put(struct proc_dir_entry * pde)666 void pde_put(struct proc_dir_entry *pde)
667 {
668 if (refcount_dec_and_test(&pde->refcnt)) {
669 proc_free_inum(pde->low_ino);
670 pde_free(pde);
671 }
672 }
673
674 /*
675 * Remove a /proc entry and free it if it's not currently in use.
676 */
remove_proc_entry(const char * name,struct proc_dir_entry * parent)677 void remove_proc_entry(const char *name, struct proc_dir_entry *parent)
678 {
679 struct proc_dir_entry *de = NULL;
680 const char *fn = name;
681 unsigned int len;
682
683 write_lock(&proc_subdir_lock);
684 if (__xlate_proc_name(name, &parent, &fn) != 0) {
685 write_unlock(&proc_subdir_lock);
686 return;
687 }
688 len = strlen(fn);
689
690 de = pde_subdir_find(parent, fn, len);
691 if (de) {
692 rb_erase(&de->subdir_node, &parent->subdir);
693 if (S_ISDIR(de->mode)) {
694 parent->nlink--;
695 }
696 }
697 write_unlock(&proc_subdir_lock);
698 if (!de) {
699 WARN(1, "name '%s'\n", name);
700 return;
701 }
702
703 proc_entry_rundown(de);
704
705 WARN(pde_subdir_first(de),
706 "%s: removing non-empty directory '%s/%s', leaking at least '%s'\n",
707 __func__, de->parent->name, de->name, pde_subdir_first(de)->name);
708 pde_put(de);
709 }
710 EXPORT_SYMBOL(remove_proc_entry);
711
remove_proc_subtree(const char * name,struct proc_dir_entry * parent)712 int remove_proc_subtree(const char *name, struct proc_dir_entry *parent)
713 {
714 struct proc_dir_entry *root = NULL, *de, *next;
715 const char *fn = name;
716 unsigned int len;
717
718 write_lock(&proc_subdir_lock);
719 if (__xlate_proc_name(name, &parent, &fn) != 0) {
720 write_unlock(&proc_subdir_lock);
721 return -ENOENT;
722 }
723 len = strlen(fn);
724
725 root = pde_subdir_find(parent, fn, len);
726 if (!root) {
727 write_unlock(&proc_subdir_lock);
728 return -ENOENT;
729 }
730 rb_erase(&root->subdir_node, &parent->subdir);
731
732 de = root;
733 while (1) {
734 next = pde_subdir_first(de);
735 if (next) {
736 rb_erase(&next->subdir_node, &de->subdir);
737 de = next;
738 continue;
739 }
740 next = de->parent;
741 if (S_ISDIR(de->mode))
742 next->nlink--;
743 write_unlock(&proc_subdir_lock);
744
745 proc_entry_rundown(de);
746 if (de == root)
747 break;
748 pde_put(de);
749
750 write_lock(&proc_subdir_lock);
751 de = next;
752 }
753 pde_put(root);
754 return 0;
755 }
756 EXPORT_SYMBOL(remove_proc_subtree);
757
proc_get_parent_data(const struct inode * inode)758 void *proc_get_parent_data(const struct inode *inode)
759 {
760 struct proc_dir_entry *de = PDE(inode);
761 return de->parent->data;
762 }
763 EXPORT_SYMBOL_GPL(proc_get_parent_data);
764
proc_remove(struct proc_dir_entry * de)765 void proc_remove(struct proc_dir_entry *de)
766 {
767 if (de)
768 remove_proc_subtree(de->name, de->parent);
769 }
770 EXPORT_SYMBOL(proc_remove);
771
PDE_DATA(const struct inode * inode)772 void *PDE_DATA(const struct inode *inode)
773 {
774 return __PDE_DATA(inode);
775 }
776 EXPORT_SYMBOL(PDE_DATA);
777
778 /*
779 * Pull a user buffer into memory and pass it to the file's write handler if
780 * one is supplied. The ->write() method is permitted to modify the
781 * kernel-side buffer.
782 */
proc_simple_write(struct file * f,const char __user * ubuf,size_t size,loff_t * _pos)783 ssize_t proc_simple_write(struct file *f, const char __user *ubuf, size_t size,
784 loff_t *_pos)
785 {
786 struct proc_dir_entry *pde = PDE(file_inode(f));
787 char *buf;
788 int ret;
789
790 if (!pde->write)
791 return -EACCES;
792 if (size == 0 || size > PAGE_SIZE - 1)
793 return -EINVAL;
794 buf = memdup_user_nul(ubuf, size);
795 if (IS_ERR(buf))
796 return PTR_ERR(buf);
797 ret = pde->write(f, buf, size);
798 kfree(buf);
799 return ret == 0 ? size : ret;
800 }
801