blob: 4f8e53568b22d24ba1334fbc95363b8d5b2fd765 [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>
15#include <linux/module.h>
16#include <linux/mount.h>
17#include <linux/smp_lock.h>
18#include <linux/init.h>
19#include <linux/idr.h>
20#include <linux/namei.h>
21#include <linux/bitops.h>
Steven Rostedt64a07bd2006-03-26 01:36:55 -080022#include <linux/spinlock.h>
Alexey Dobriyan786d7e12007-07-15 23:39:00 -070023#include <linux/completion.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/uaccess.h>
25
Adrian Bunkfee781e2006-01-08 01:04:16 -080026#include "internal.h"
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028static ssize_t proc_file_read(struct file *file, char __user *buf,
29 size_t nbytes, loff_t *ppos);
30static ssize_t proc_file_write(struct file *file, const char __user *buffer,
31 size_t count, loff_t *ppos);
32static loff_t proc_file_lseek(struct file *, loff_t, int);
33
Steven Rostedt64a07bd2006-03-26 01:36:55 -080034DEFINE_SPINLOCK(proc_subdir_lock);
35
Eric W. Biederman77b14db2007-02-14 00:34:12 -080036static int proc_match(int len, const char *name, struct proc_dir_entry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
38 if (de->namelen != len)
39 return 0;
40 return !memcmp(name, de->name, len);
41}
42
Arjan van de Ven00977a52007-02-12 00:55:34 -080043static const struct file_operations proc_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 .llseek = proc_file_lseek,
45 .read = proc_file_read,
46 .write = proc_file_write,
47};
48
49/* buffer size is one page but our output routines use some slack for overruns */
50#define PROC_BLOCK_SIZE (PAGE_SIZE - 1024)
51
52static ssize_t
53proc_file_read(struct file *file, char __user *buf, size_t nbytes,
54 loff_t *ppos)
55{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -080056 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 char *page;
58 ssize_t retval=0;
59 int eof=0;
60 ssize_t n, count;
61 char *start;
62 struct proc_dir_entry * dp;
Linus Torvalds8b90db02005-12-30 08:39:10 -080063 unsigned long long pos;
64
65 /*
66 * Gaah, please just use "seq_file" instead. The legacy /proc
67 * interfaces cut loff_t down to off_t for reads, and ignore
68 * the offset entirely for writes..
69 */
70 pos = *ppos;
71 if (pos > MAX_NON_LFS)
72 return 0;
73 if (nbytes > MAX_NON_LFS - pos)
74 nbytes = MAX_NON_LFS - pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 dp = PDE(inode);
77 if (!(page = (char*) __get_free_page(GFP_KERNEL)))
78 return -ENOMEM;
79
80 while ((nbytes > 0) && !eof) {
81 count = min_t(size_t, PROC_BLOCK_SIZE, nbytes);
82
83 start = NULL;
84 if (dp->get_info) {
85 /* Handle old net routines */
86 n = dp->get_info(page, &start, *ppos, count);
87 if (n < count)
88 eof = 1;
89 } else if (dp->read_proc) {
90 /*
91 * How to be a proc read function
92 * ------------------------------
93 * Prototype:
94 * int f(char *buffer, char **start, off_t offset,
95 * int count, int *peof, void *dat)
96 *
97 * Assume that the buffer is "count" bytes in size.
98 *
99 * If you know you have supplied all the data you
100 * have, set *peof.
101 *
102 * You have three ways to return data:
103 * 0) Leave *start = NULL. (This is the default.)
104 * Put the data of the requested offset at that
105 * offset within the buffer. Return the number (n)
106 * of bytes there are from the beginning of the
107 * buffer up to the last byte of data. If the
108 * number of supplied bytes (= n - offset) is
109 * greater than zero and you didn't signal eof
110 * and the reader is prepared to take more data
111 * you will be called again with the requested
112 * offset advanced by the number of bytes
113 * absorbed. This interface is useful for files
114 * no larger than the buffer.
115 * 1) Set *start = an unsigned long value less than
116 * the buffer address but greater than zero.
117 * Put the data of the requested offset at the
118 * beginning of the buffer. Return the number of
119 * bytes of data placed there. If this number is
120 * greater than zero and you didn't signal eof
121 * and the reader is prepared to take more data
122 * you will be called again with the requested
123 * offset advanced by *start. This interface is
124 * useful when you have a large file consisting
125 * of a series of blocks which you want to count
126 * and return as wholes.
127 * (Hack by Paul.Russell@rustcorp.com.au)
128 * 2) Set *start = an address within the buffer.
129 * Put the data of the requested offset at *start.
130 * Return the number of bytes of data placed there.
131 * If this number is greater than zero and you
132 * didn't signal eof and the reader is prepared to
133 * take more data you will be called again with the
134 * requested offset advanced by the number of bytes
135 * absorbed.
136 */
137 n = dp->read_proc(page, &start, *ppos,
138 count, &eof, dp->data);
139 } else
140 break;
141
142 if (n == 0) /* end of file */
143 break;
144 if (n < 0) { /* error */
145 if (retval == 0)
146 retval = n;
147 break;
148 }
149
150 if (start == NULL) {
151 if (n > PAGE_SIZE) {
152 printk(KERN_ERR
153 "proc_file_read: Apparent buffer overflow!\n");
154 n = PAGE_SIZE;
155 }
156 n -= *ppos;
157 if (n <= 0)
158 break;
159 if (n > count)
160 n = count;
161 start = page + *ppos;
162 } else if (start < page) {
163 if (n > PAGE_SIZE) {
164 printk(KERN_ERR
165 "proc_file_read: Apparent buffer overflow!\n");
166 n = PAGE_SIZE;
167 }
168 if (n > count) {
169 /*
170 * Don't reduce n because doing so might
171 * cut off part of a data block.
172 */
173 printk(KERN_WARNING
174 "proc_file_read: Read count exceeded\n");
175 }
176 } else /* start >= page */ {
177 unsigned long startoff = (unsigned long)(start - page);
178 if (n > (PAGE_SIZE - startoff)) {
179 printk(KERN_ERR
180 "proc_file_read: Apparent buffer overflow!\n");
181 n = PAGE_SIZE - startoff;
182 }
183 if (n > count)
184 n = count;
185 }
186
187 n -= copy_to_user(buf, start < page ? page : start, n);
188 if (n == 0) {
189 if (retval == 0)
190 retval = -EFAULT;
191 break;
192 }
193
194 *ppos += start < page ? (unsigned long)start : n;
195 nbytes -= n;
196 buf += n;
197 retval += n;
198 }
199 free_page((unsigned long) page);
200 return retval;
201}
202
203static ssize_t
204proc_file_write(struct file *file, const char __user *buffer,
205 size_t count, loff_t *ppos)
206{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800207 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 struct proc_dir_entry * dp;
209
210 dp = PDE(inode);
211
212 if (!dp->write_proc)
213 return -EIO;
214
215 /* FIXME: does this routine need ppos? probably... */
216 return dp->write_proc(file, buffer, count, dp->data);
217}
218
219
220static loff_t
221proc_file_lseek(struct file *file, loff_t offset, int orig)
222{
Linus Torvalds8b90db02005-12-30 08:39:10 -0800223 loff_t retval = -EINVAL;
224 switch (orig) {
225 case 1:
226 offset += file->f_pos;
227 /* fallthrough */
228 case 0:
229 if (offset < 0 || offset > MAX_NON_LFS)
230 break;
231 file->f_pos = retval = offset;
232 }
233 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
236static int proc_notify_change(struct dentry *dentry, struct iattr *iattr)
237{
238 struct inode *inode = dentry->d_inode;
239 struct proc_dir_entry *de = PDE(inode);
240 int error;
241
242 error = inode_change_ok(inode, iattr);
243 if (error)
244 goto out;
245
246 error = inode_setattr(inode, iattr);
247 if (error)
248 goto out;
249
250 de->uid = inode->i_uid;
251 de->gid = inode->i_gid;
252 de->mode = inode->i_mode;
253out:
254 return error;
255}
256
Miklos Szeredi2b579be2005-09-06 15:17:18 -0700257static int proc_getattr(struct vfsmount *mnt, struct dentry *dentry,
258 struct kstat *stat)
259{
260 struct inode *inode = dentry->d_inode;
261 struct proc_dir_entry *de = PROC_I(inode)->pde;
262 if (de && de->nlink)
263 inode->i_nlink = de->nlink;
264
265 generic_fillattr(inode, stat);
266 return 0;
267}
268
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800269static const struct inode_operations proc_file_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 .setattr = proc_notify_change,
271};
272
273/*
274 * This function parses a name such as "tty/driver/serial", and
275 * returns the struct proc_dir_entry for "/proc/tty/driver", and
276 * returns "serial" in residual.
277 */
278static int xlate_proc_name(const char *name,
279 struct proc_dir_entry **ret, const char **residual)
280{
281 const char *cp = name, *next;
282 struct proc_dir_entry *de;
283 int len;
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800284 int rtn = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800286 spin_lock(&proc_subdir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 de = &proc_root;
288 while (1) {
289 next = strchr(cp, '/');
290 if (!next)
291 break;
292
293 len = next - cp;
294 for (de = de->subdir; de ; de = de->next) {
295 if (proc_match(len, cp, de))
296 break;
297 }
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800298 if (!de) {
299 rtn = -ENOENT;
300 goto out;
301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 cp += len + 1;
303 }
304 *residual = cp;
305 *ret = de;
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800306out:
307 spin_unlock(&proc_subdir_lock);
308 return rtn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
311static DEFINE_IDR(proc_inum_idr);
312static DEFINE_SPINLOCK(proc_inum_lock); /* protects the above */
313
314#define PROC_DYNAMIC_FIRST 0xF0000000UL
315
316/*
317 * Return an inode number between PROC_DYNAMIC_FIRST and
318 * 0xffffffff, or zero on failure.
319 */
320static unsigned int get_inode_number(void)
321{
322 int i, inum = 0;
323 int error;
324
325retry:
326 if (idr_pre_get(&proc_inum_idr, GFP_KERNEL) == 0)
327 return 0;
328
329 spin_lock(&proc_inum_lock);
330 error = idr_get_new(&proc_inum_idr, NULL, &i);
331 spin_unlock(&proc_inum_lock);
332 if (error == -EAGAIN)
333 goto retry;
334 else if (error)
335 return 0;
336
337 inum = (i & MAX_ID_MASK) + PROC_DYNAMIC_FIRST;
338
339 /* inum will never be more than 0xf0ffffff, so no check
340 * for overflow.
341 */
342
343 return inum;
344}
345
346static void release_inode_number(unsigned int inum)
347{
348 int id = (inum - PROC_DYNAMIC_FIRST) | ~MAX_ID_MASK;
349
350 spin_lock(&proc_inum_lock);
351 idr_remove(&proc_inum_idr, id);
352 spin_unlock(&proc_inum_lock);
353}
354
Al Viro008b1502005-08-20 00:17:39 +0100355static void *proc_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 nd_set_link(nd, PDE(dentry->d_inode)->data);
Al Viro008b1502005-08-20 00:17:39 +0100358 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800361static const struct inode_operations proc_link_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 .readlink = generic_readlink,
363 .follow_link = proc_follow_link,
364};
365
366/*
367 * As some entries in /proc are volatile, we want to
368 * get rid of unused dentries. This could be made
369 * smarter: we could keep a "volatile" flag in the
370 * inode to indicate which ones to keep.
371 */
372static int proc_delete_dentry(struct dentry * dentry)
373{
374 return 1;
375}
376
377static struct dentry_operations proc_dentry_operations =
378{
379 .d_delete = proc_delete_dentry,
380};
381
382/*
383 * Don't create negative dentries here, return -ENOENT by hand
384 * instead.
385 */
386struct dentry *proc_lookup(struct inode * dir, struct dentry *dentry, struct nameidata *nd)
387{
388 struct inode *inode = NULL;
389 struct proc_dir_entry * de;
390 int error = -ENOENT;
391
392 lock_kernel();
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800393 spin_lock(&proc_subdir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 de = PDE(dir);
395 if (de) {
396 for (de = de->subdir; de ; de = de->next) {
397 if (de->namelen != dentry->d_name.len)
398 continue;
399 if (!memcmp(dentry->d_name.name, de->name, de->namelen)) {
400 unsigned int ino = de->low_ino;
401
Alexey Dobriyan76956502007-05-08 00:25:45 -0700402 de_get(de);
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800403 spin_unlock(&proc_subdir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 error = -EINVAL;
405 inode = proc_get_inode(dir->i_sb, ino, de);
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800406 spin_lock(&proc_subdir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 break;
408 }
409 }
410 }
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800411 spin_unlock(&proc_subdir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 unlock_kernel();
413
414 if (inode) {
415 dentry->d_op = &proc_dentry_operations;
416 d_add(dentry, inode);
417 return NULL;
418 }
Alexey Dobriyan76956502007-05-08 00:25:45 -0700419 de_put(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 return ERR_PTR(error);
421}
422
423/*
424 * This returns non-zero if at EOF, so that the /proc
425 * root directory can use this and check if it should
426 * continue with the <pid> entries..
427 *
428 * Note that the VFS-layer doesn't care about the return
429 * value of the readdir() call, as long as it's non-negative
430 * for success..
431 */
432int proc_readdir(struct file * filp,
433 void * dirent, filldir_t filldir)
434{
435 struct proc_dir_entry * de;
436 unsigned int ino;
437 int i;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800438 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 int ret = 0;
440
441 lock_kernel();
442
443 ino = inode->i_ino;
444 de = PDE(inode);
445 if (!de) {
446 ret = -EINVAL;
447 goto out;
448 }
449 i = filp->f_pos;
450 switch (i) {
451 case 0:
452 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
453 goto out;
454 i++;
455 filp->f_pos++;
456 /* fall through */
457 case 1:
458 if (filldir(dirent, "..", 2, i,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800459 parent_ino(filp->f_path.dentry),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 DT_DIR) < 0)
461 goto out;
462 i++;
463 filp->f_pos++;
464 /* fall through */
465 default:
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800466 spin_lock(&proc_subdir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 de = de->subdir;
468 i -= 2;
469 for (;;) {
470 if (!de) {
471 ret = 1;
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800472 spin_unlock(&proc_subdir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 goto out;
474 }
475 if (!i)
476 break;
477 de = de->next;
478 i--;
479 }
480
481 do {
Darrick J. Wong59cd0cb2007-05-08 00:25:47 -0700482 struct proc_dir_entry *next;
483
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800484 /* filldir passes info to user space */
Darrick J. Wong59cd0cb2007-05-08 00:25:47 -0700485 de_get(de);
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800486 spin_unlock(&proc_subdir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 if (filldir(dirent, de->name, de->namelen, filp->f_pos,
Darrick J. Wong59cd0cb2007-05-08 00:25:47 -0700488 de->low_ino, de->mode >> 12) < 0) {
489 de_put(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 goto out;
Darrick J. Wong59cd0cb2007-05-08 00:25:47 -0700491 }
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800492 spin_lock(&proc_subdir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 filp->f_pos++;
Darrick J. Wong59cd0cb2007-05-08 00:25:47 -0700494 next = de->next;
495 de_put(de);
496 de = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 } while (de);
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800498 spin_unlock(&proc_subdir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
500 ret = 1;
501out: unlock_kernel();
502 return ret;
503}
504
505/*
506 * These are the generic /proc directory operations. They
507 * use the in-memory "struct proc_dir_entry" tree to parse
508 * the /proc directory.
509 */
Arjan van de Ven00977a52007-02-12 00:55:34 -0800510static const struct file_operations proc_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 .read = generic_read_dir,
512 .readdir = proc_readdir,
513};
514
515/*
516 * proc directories can do almost nothing..
517 */
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800518static const struct inode_operations proc_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 .lookup = proc_lookup,
Miklos Szeredi2b579be2005-09-06 15:17:18 -0700520 .getattr = proc_getattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 .setattr = proc_notify_change,
522};
523
524static int proc_register(struct proc_dir_entry * dir, struct proc_dir_entry * dp)
525{
526 unsigned int i;
527
528 i = get_inode_number();
529 if (i == 0)
530 return -EAGAIN;
531 dp->low_ino = i;
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800532
533 spin_lock(&proc_subdir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 dp->next = dir->subdir;
535 dp->parent = dir;
536 dir->subdir = dp;
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800537 spin_unlock(&proc_subdir_lock);
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (S_ISDIR(dp->mode)) {
540 if (dp->proc_iops == NULL) {
541 dp->proc_fops = &proc_dir_operations;
542 dp->proc_iops = &proc_dir_inode_operations;
543 }
544 dir->nlink++;
545 } else if (S_ISLNK(dp->mode)) {
546 if (dp->proc_iops == NULL)
547 dp->proc_iops = &proc_link_inode_operations;
548 } else if (S_ISREG(dp->mode)) {
549 if (dp->proc_fops == NULL)
550 dp->proc_fops = &proc_file_operations;
551 if (dp->proc_iops == NULL)
552 dp->proc_iops = &proc_file_inode_operations;
553 }
554 return 0;
555}
556
557/*
558 * Kill an inode that got unregistered..
559 */
560static void proc_kill_inodes(struct proc_dir_entry *de)
561{
562 struct list_head *p;
563 struct super_block *sb = proc_mnt->mnt_sb;
564
565 /*
566 * Actually it's a partial revoke().
567 */
568 file_list_lock();
569 list_for_each(p, &sb->s_files) {
Eric Dumazet2f512012005-10-30 15:02:16 -0800570 struct file * filp = list_entry(p, struct file, f_u.fu_list);
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800571 struct dentry * dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 struct inode * inode;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800573 const struct file_operations *fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 if (dentry->d_op != &proc_dentry_operations)
576 continue;
577 inode = dentry->d_inode;
578 if (PDE(inode) != de)
579 continue;
580 fops = filp->f_op;
581 filp->f_op = NULL;
582 fops_put(fops);
583 }
584 file_list_unlock();
585}
586
587static struct proc_dir_entry *proc_create(struct proc_dir_entry **parent,
588 const char *name,
589 mode_t mode,
590 nlink_t nlink)
591{
592 struct proc_dir_entry *ent = NULL;
593 const char *fn = name;
594 int len;
595
596 /* make sure name is valid */
597 if (!name || !strlen(name)) goto out;
598
599 if (!(*parent) && xlate_proc_name(name, parent, &fn) != 0)
600 goto out;
601
602 /* At this point there must not be any '/' characters beyond *fn */
603 if (strchr(fn, '/'))
604 goto out;
605
606 len = strlen(fn);
607
608 ent = kmalloc(sizeof(struct proc_dir_entry) + len + 1, GFP_KERNEL);
609 if (!ent) goto out;
610
611 memset(ent, 0, sizeof(struct proc_dir_entry));
612 memcpy(((char *) ent) + sizeof(struct proc_dir_entry), fn, len + 1);
613 ent->name = ((char *) ent) + sizeof(*ent);
614 ent->namelen = len;
615 ent->mode = mode;
616 ent->nlink = nlink;
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700617 ent->pde_users = 0;
618 spin_lock_init(&ent->pde_unload_lock);
619 ent->pde_unload_completion = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 out:
621 return ent;
622}
623
624struct proc_dir_entry *proc_symlink(const char *name,
625 struct proc_dir_entry *parent, const char *dest)
626{
627 struct proc_dir_entry *ent;
628
629 ent = proc_create(&parent,name,
630 (S_IFLNK | S_IRUGO | S_IWUGO | S_IXUGO),1);
631
632 if (ent) {
633 ent->data = kmalloc((ent->size=strlen(dest))+1, GFP_KERNEL);
634 if (ent->data) {
635 strcpy((char*)ent->data,dest);
636 if (proc_register(parent, ent) < 0) {
637 kfree(ent->data);
638 kfree(ent);
639 ent = NULL;
640 }
641 } else {
642 kfree(ent);
643 ent = NULL;
644 }
645 }
646 return ent;
647}
648
649struct proc_dir_entry *proc_mkdir_mode(const char *name, mode_t mode,
650 struct proc_dir_entry *parent)
651{
652 struct proc_dir_entry *ent;
653
654 ent = proc_create(&parent, name, S_IFDIR | mode, 2);
655 if (ent) {
656 ent->proc_fops = &proc_dir_operations;
657 ent->proc_iops = &proc_dir_inode_operations;
658
659 if (proc_register(parent, ent) < 0) {
660 kfree(ent);
661 ent = NULL;
662 }
663 }
664 return ent;
665}
666
667struct proc_dir_entry *proc_mkdir(const char *name,
668 struct proc_dir_entry *parent)
669{
670 return proc_mkdir_mode(name, S_IRUGO | S_IXUGO, parent);
671}
672
673struct proc_dir_entry *create_proc_entry(const char *name, mode_t mode,
674 struct proc_dir_entry *parent)
675{
676 struct proc_dir_entry *ent;
677 nlink_t nlink;
678
679 if (S_ISDIR(mode)) {
680 if ((mode & S_IALLUGO) == 0)
681 mode |= S_IRUGO | S_IXUGO;
682 nlink = 2;
683 } else {
684 if ((mode & S_IFMT) == 0)
685 mode |= S_IFREG;
686 if ((mode & S_IALLUGO) == 0)
687 mode |= S_IRUGO;
688 nlink = 1;
689 }
690
691 ent = proc_create(&parent,name,mode,nlink);
692 if (ent) {
693 if (S_ISDIR(mode)) {
694 ent->proc_fops = &proc_dir_operations;
695 ent->proc_iops = &proc_dir_inode_operations;
696 }
697 if (proc_register(parent, ent) < 0) {
698 kfree(ent);
699 ent = NULL;
700 }
701 }
702 return ent;
703}
704
705void free_proc_entry(struct proc_dir_entry *de)
706{
707 unsigned int ino = de->low_ino;
708
709 if (ino < PROC_DYNAMIC_FIRST)
710 return;
711
712 release_inode_number(ino);
713
714 if (S_ISLNK(de->mode) && de->data)
715 kfree(de->data);
716 kfree(de);
717}
718
719/*
720 * Remove a /proc entry and free it if it's not currently in use.
721 * If it is in use, we set the 'deleted' flag.
722 */
723void remove_proc_entry(const char *name, struct proc_dir_entry *parent)
724{
725 struct proc_dir_entry **p;
726 struct proc_dir_entry *de;
727 const char *fn = name;
728 int len;
729
730 if (!parent && xlate_proc_name(name, &parent, &fn) != 0)
731 goto out;
732 len = strlen(fn);
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800733
734 spin_lock(&proc_subdir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 for (p = &parent->subdir; *p; p=&(*p)->next ) {
736 if (!proc_match(len, fn, *p))
737 continue;
738 de = *p;
739 *p = de->next;
740 de->next = NULL;
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700741
742 spin_lock(&de->pde_unload_lock);
743 /*
744 * Stop accepting new callers into module. If you're
745 * dynamically allocating ->proc_fops, save a pointer somewhere.
746 */
747 de->proc_fops = NULL;
748 /* Wait until all existing callers into module are done. */
749 if (de->pde_users > 0) {
750 DECLARE_COMPLETION_ONSTACK(c);
751
752 if (!de->pde_unload_completion)
753 de->pde_unload_completion = &c;
754
755 spin_unlock(&de->pde_unload_lock);
756 spin_unlock(&proc_subdir_lock);
757
758 wait_for_completion(de->pde_unload_completion);
759
760 spin_lock(&proc_subdir_lock);
761 goto continue_removing;
762 }
763 spin_unlock(&de->pde_unload_lock);
764
765continue_removing:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (S_ISDIR(de->mode))
767 parent->nlink--;
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700768 if (!S_ISREG(de->mode))
769 proc_kill_inodes(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 de->nlink = 0;
771 WARN_ON(de->subdir);
772 if (!atomic_read(&de->count))
773 free_proc_entry(de);
774 else {
775 de->deleted = 1;
776 printk("remove_proc_entry: %s/%s busy, count=%d\n",
777 parent->name, de->name, atomic_read(&de->count));
778 }
779 break;
780 }
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800781 spin_unlock(&proc_subdir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782out:
783 return;
784}