Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[wrt350n-kernel.git] / fs / proc / generic.c
blob3f8f450df6b0b16c51c1c2c1eb1b29a8c860c0f0
1 /*
2 * proc/fs/generic.c --- generic routines for the proc-fs
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 */
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>
22 #include <linux/spinlock.h>
23 #include <linux/completion.h>
24 #include <asm/uaccess.h>
26 #include "internal.h"
28 DEFINE_SPINLOCK(proc_subdir_lock);
30 static int proc_match(int len, const char *name, struct proc_dir_entry *de)
32 if (de->namelen != len)
33 return 0;
34 return !memcmp(name, de->name, len);
37 /* buffer size is one page but our output routines use some slack for overruns */
38 #define PROC_BLOCK_SIZE (PAGE_SIZE - 1024)
40 static ssize_t
41 proc_file_read(struct file *file, char __user *buf, size_t nbytes,
42 loff_t *ppos)
44 struct inode * inode = file->f_path.dentry->d_inode;
45 char *page;
46 ssize_t retval=0;
47 int eof=0;
48 ssize_t n, count;
49 char *start;
50 struct proc_dir_entry * dp;
51 unsigned long long pos;
54 * Gaah, please just use "seq_file" instead. The legacy /proc
55 * interfaces cut loff_t down to off_t for reads, and ignore
56 * the offset entirely for writes..
58 pos = *ppos;
59 if (pos > MAX_NON_LFS)
60 return 0;
61 if (nbytes > MAX_NON_LFS - pos)
62 nbytes = MAX_NON_LFS - pos;
64 dp = PDE(inode);
65 if (!(page = (char*) __get_free_page(GFP_TEMPORARY)))
66 return -ENOMEM;
68 while ((nbytes > 0) && !eof) {
69 count = min_t(size_t, PROC_BLOCK_SIZE, nbytes);
71 start = NULL;
72 if (dp->get_info) {
73 /* Handle old net routines */
74 n = dp->get_info(page, &start, *ppos, count);
75 if (n < count)
76 eof = 1;
77 } else if (dp->read_proc) {
79 * How to be a proc read function
80 * ------------------------------
81 * Prototype:
82 * int f(char *buffer, char **start, off_t offset,
83 * int count, int *peof, void *dat)
85 * Assume that the buffer is "count" bytes in size.
87 * If you know you have supplied all the data you
88 * have, set *peof.
90 * You have three ways to return data:
91 * 0) Leave *start = NULL. (This is the default.)
92 * Put the data of the requested offset at that
93 * offset within the buffer. Return the number (n)
94 * of bytes there are from the beginning of the
95 * buffer up to the last byte of data. If the
96 * number of supplied bytes (= n - offset) is
97 * greater than zero and you didn't signal eof
98 * and the reader is prepared to take more data
99 * you will be called again with the requested
100 * offset advanced by the number of bytes
101 * absorbed. This interface is useful for files
102 * no larger than the buffer.
103 * 1) Set *start = an unsigned long value less than
104 * the buffer address but greater than zero.
105 * Put the data of the requested offset at the
106 * beginning of the buffer. Return the number of
107 * bytes of data placed there. If this number is
108 * greater than zero and you didn't signal eof
109 * and the reader is prepared to take more data
110 * you will be called again with the requested
111 * offset advanced by *start. This interface is
112 * useful when you have a large file consisting
113 * of a series of blocks which you want to count
114 * and return as wholes.
115 * (Hack by Paul.Russell@rustcorp.com.au)
116 * 2) Set *start = an address within the buffer.
117 * Put the data of the requested offset at *start.
118 * Return the number of bytes of data placed there.
119 * If this number is greater than zero and you
120 * didn't signal eof and the reader is prepared to
121 * take more data you will be called again with the
122 * requested offset advanced by the number of bytes
123 * absorbed.
125 n = dp->read_proc(page, &start, *ppos,
126 count, &eof, dp->data);
127 } else
128 break;
130 if (n == 0) /* end of file */
131 break;
132 if (n < 0) { /* error */
133 if (retval == 0)
134 retval = n;
135 break;
138 if (start == NULL) {
139 if (n > PAGE_SIZE) {
140 printk(KERN_ERR
141 "proc_file_read: Apparent buffer overflow!\n");
142 n = PAGE_SIZE;
144 n -= *ppos;
145 if (n <= 0)
146 break;
147 if (n > count)
148 n = count;
149 start = page + *ppos;
150 } else if (start < page) {
151 if (n > PAGE_SIZE) {
152 printk(KERN_ERR
153 "proc_file_read: Apparent buffer overflow!\n");
154 n = PAGE_SIZE;
156 if (n > count) {
158 * Don't reduce n because doing so might
159 * cut off part of a data block.
161 printk(KERN_WARNING
162 "proc_file_read: Read count exceeded\n");
164 } else /* start >= page */ {
165 unsigned long startoff = (unsigned long)(start - page);
166 if (n > (PAGE_SIZE - startoff)) {
167 printk(KERN_ERR
168 "proc_file_read: Apparent buffer overflow!\n");
169 n = PAGE_SIZE - startoff;
171 if (n > count)
172 n = count;
175 n -= copy_to_user(buf, start < page ? page : start, n);
176 if (n == 0) {
177 if (retval == 0)
178 retval = -EFAULT;
179 break;
182 *ppos += start < page ? (unsigned long)start : n;
183 nbytes -= n;
184 buf += n;
185 retval += n;
187 free_page((unsigned long) page);
188 return retval;
191 static ssize_t
192 proc_file_write(struct file *file, const char __user *buffer,
193 size_t count, loff_t *ppos)
195 struct inode *inode = file->f_path.dentry->d_inode;
196 struct proc_dir_entry * dp;
198 dp = PDE(inode);
200 if (!dp->write_proc)
201 return -EIO;
203 /* FIXME: does this routine need ppos? probably... */
204 return dp->write_proc(file, buffer, count, dp->data);
208 static loff_t
209 proc_file_lseek(struct file *file, loff_t offset, int orig)
211 loff_t retval = -EINVAL;
212 switch (orig) {
213 case 1:
214 offset += file->f_pos;
215 /* fallthrough */
216 case 0:
217 if (offset < 0 || offset > MAX_NON_LFS)
218 break;
219 file->f_pos = retval = offset;
221 return retval;
224 static const struct file_operations proc_file_operations = {
225 .llseek = proc_file_lseek,
226 .read = proc_file_read,
227 .write = proc_file_write,
230 static int proc_notify_change(struct dentry *dentry, struct iattr *iattr)
232 struct inode *inode = dentry->d_inode;
233 struct proc_dir_entry *de = PDE(inode);
234 int error;
236 error = inode_change_ok(inode, iattr);
237 if (error)
238 goto out;
240 error = inode_setattr(inode, iattr);
241 if (error)
242 goto out;
244 de->uid = inode->i_uid;
245 de->gid = inode->i_gid;
246 de->mode = inode->i_mode;
247 out:
248 return error;
251 static int proc_getattr(struct vfsmount *mnt, struct dentry *dentry,
252 struct kstat *stat)
254 struct inode *inode = dentry->d_inode;
255 struct proc_dir_entry *de = PROC_I(inode)->pde;
256 if (de && de->nlink)
257 inode->i_nlink = de->nlink;
259 generic_fillattr(inode, stat);
260 return 0;
263 static const struct inode_operations proc_file_inode_operations = {
264 .setattr = proc_notify_change,
268 * This function parses a name such as "tty/driver/serial", and
269 * returns the struct proc_dir_entry for "/proc/tty/driver", and
270 * returns "serial" in residual.
272 static int xlate_proc_name(const char *name,
273 struct proc_dir_entry **ret, const char **residual)
275 const char *cp = name, *next;
276 struct proc_dir_entry *de;
277 int len;
278 int rtn = 0;
280 spin_lock(&proc_subdir_lock);
281 de = &proc_root;
282 while (1) {
283 next = strchr(cp, '/');
284 if (!next)
285 break;
287 len = next - cp;
288 for (de = de->subdir; de ; de = de->next) {
289 if (proc_match(len, cp, de))
290 break;
292 if (!de) {
293 rtn = -ENOENT;
294 goto out;
296 cp += len + 1;
298 *residual = cp;
299 *ret = de;
300 out:
301 spin_unlock(&proc_subdir_lock);
302 return rtn;
305 static DEFINE_IDR(proc_inum_idr);
306 static DEFINE_SPINLOCK(proc_inum_lock); /* protects the above */
308 #define PROC_DYNAMIC_FIRST 0xF0000000UL
311 * Return an inode number between PROC_DYNAMIC_FIRST and
312 * 0xffffffff, or zero on failure.
314 static unsigned int get_inode_number(void)
316 int i, inum = 0;
317 int error;
319 retry:
320 if (idr_pre_get(&proc_inum_idr, GFP_KERNEL) == 0)
321 return 0;
323 spin_lock(&proc_inum_lock);
324 error = idr_get_new(&proc_inum_idr, NULL, &i);
325 spin_unlock(&proc_inum_lock);
326 if (error == -EAGAIN)
327 goto retry;
328 else if (error)
329 return 0;
331 inum = (i & MAX_ID_MASK) + PROC_DYNAMIC_FIRST;
333 /* inum will never be more than 0xf0ffffff, so no check
334 * for overflow.
337 return inum;
340 static void release_inode_number(unsigned int inum)
342 int id = (inum - PROC_DYNAMIC_FIRST) | ~MAX_ID_MASK;
344 spin_lock(&proc_inum_lock);
345 idr_remove(&proc_inum_idr, id);
346 spin_unlock(&proc_inum_lock);
349 static void *proc_follow_link(struct dentry *dentry, struct nameidata *nd)
351 nd_set_link(nd, PDE(dentry->d_inode)->data);
352 return NULL;
355 static const struct inode_operations proc_link_inode_operations = {
356 .readlink = generic_readlink,
357 .follow_link = proc_follow_link,
361 * As some entries in /proc are volatile, we want to
362 * get rid of unused dentries. This could be made
363 * smarter: we could keep a "volatile" flag in the
364 * inode to indicate which ones to keep.
366 static int proc_delete_dentry(struct dentry * dentry)
368 return 1;
371 static struct dentry_operations proc_dentry_operations =
373 .d_delete = proc_delete_dentry,
377 * Don't create negative dentries here, return -ENOENT by hand
378 * instead.
380 <<<<<<< HEAD:fs/proc/generic.c
381 struct dentry *proc_lookup(struct inode * dir, struct dentry *dentry, struct nameidata *nd)
382 =======
383 struct dentry *proc_lookup_de(struct proc_dir_entry *de, struct inode *dir,
384 struct dentry *dentry)
385 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:fs/proc/generic.c
387 struct inode *inode = NULL;
388 <<<<<<< HEAD:fs/proc/generic.c
389 struct proc_dir_entry * de;
390 =======
391 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:fs/proc/generic.c
392 int error = -ENOENT;
394 lock_kernel();
395 spin_lock(&proc_subdir_lock);
396 <<<<<<< HEAD:fs/proc/generic.c
397 de = PDE(dir);
398 =======
399 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:fs/proc/generic.c
400 if (de) {
401 for (de = de->subdir; de ; de = de->next) {
402 if (de->namelen != dentry->d_name.len)
403 continue;
404 if (!memcmp(dentry->d_name.name, de->name, de->namelen)) {
405 unsigned int ino;
407 <<<<<<< HEAD:fs/proc/generic.c
408 if (de->shadow_proc)
409 de = de->shadow_proc(current, de);
410 =======
411 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:fs/proc/generic.c
412 ino = de->low_ino;
413 de_get(de);
414 spin_unlock(&proc_subdir_lock);
415 error = -EINVAL;
416 inode = proc_get_inode(dir->i_sb, ino, de);
417 goto out_unlock;
421 spin_unlock(&proc_subdir_lock);
422 out_unlock:
423 unlock_kernel();
425 if (inode) {
426 dentry->d_op = &proc_dentry_operations;
427 d_add(dentry, inode);
428 return NULL;
430 de_put(de);
431 return ERR_PTR(error);
434 <<<<<<< HEAD:fs/proc/generic.c
435 =======
436 struct dentry *proc_lookup(struct inode *dir, struct dentry *dentry,
437 struct nameidata *nd)
439 return proc_lookup_de(PDE(dir), dir, dentry);
442 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:fs/proc/generic.c
444 * This returns non-zero if at EOF, so that the /proc
445 * root directory can use this and check if it should
446 * continue with the <pid> entries..
448 * Note that the VFS-layer doesn't care about the return
449 * value of the readdir() call, as long as it's non-negative
450 * for success..
452 <<<<<<< HEAD:fs/proc/generic.c
453 int proc_readdir(struct file * filp,
454 void * dirent, filldir_t filldir)
455 =======
456 int proc_readdir_de(struct proc_dir_entry *de, struct file *filp, void *dirent,
457 filldir_t filldir)
458 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:fs/proc/generic.c
460 <<<<<<< HEAD:fs/proc/generic.c
461 struct proc_dir_entry * de;
462 =======
463 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:fs/proc/generic.c
464 unsigned int ino;
465 int i;
466 struct inode *inode = filp->f_path.dentry->d_inode;
467 int ret = 0;
469 lock_kernel();
471 ino = inode->i_ino;
472 <<<<<<< HEAD:fs/proc/generic.c
473 de = PDE(inode);
474 =======
475 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:fs/proc/generic.c
476 if (!de) {
477 ret = -EINVAL;
478 goto out;
480 i = filp->f_pos;
481 switch (i) {
482 case 0:
483 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
484 goto out;
485 i++;
486 filp->f_pos++;
487 /* fall through */
488 case 1:
489 if (filldir(dirent, "..", 2, i,
490 parent_ino(filp->f_path.dentry),
491 DT_DIR) < 0)
492 goto out;
493 i++;
494 filp->f_pos++;
495 /* fall through */
496 default:
497 spin_lock(&proc_subdir_lock);
498 de = de->subdir;
499 i -= 2;
500 for (;;) {
501 if (!de) {
502 ret = 1;
503 spin_unlock(&proc_subdir_lock);
504 goto out;
506 if (!i)
507 break;
508 de = de->next;
509 i--;
512 do {
513 struct proc_dir_entry *next;
515 /* filldir passes info to user space */
516 de_get(de);
517 spin_unlock(&proc_subdir_lock);
518 if (filldir(dirent, de->name, de->namelen, filp->f_pos,
519 de->low_ino, de->mode >> 12) < 0) {
520 de_put(de);
521 goto out;
523 spin_lock(&proc_subdir_lock);
524 filp->f_pos++;
525 next = de->next;
526 de_put(de);
527 de = next;
528 } while (de);
529 spin_unlock(&proc_subdir_lock);
531 ret = 1;
532 out: unlock_kernel();
533 return ret;
536 <<<<<<< HEAD:fs/proc/generic.c
537 =======
538 int proc_readdir(struct file *filp, void *dirent, filldir_t filldir)
540 struct inode *inode = filp->f_path.dentry->d_inode;
542 return proc_readdir_de(PDE(inode), filp, dirent, filldir);
545 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:fs/proc/generic.c
547 * These are the generic /proc directory operations. They
548 * use the in-memory "struct proc_dir_entry" tree to parse
549 * the /proc directory.
551 static const struct file_operations proc_dir_operations = {
552 .read = generic_read_dir,
553 .readdir = proc_readdir,
557 * proc directories can do almost nothing..
559 static const struct inode_operations proc_dir_inode_operations = {
560 .lookup = proc_lookup,
561 .getattr = proc_getattr,
562 .setattr = proc_notify_change,
565 static int proc_register(struct proc_dir_entry * dir, struct proc_dir_entry * dp)
567 unsigned int i;
568 struct proc_dir_entry *tmp;
570 i = get_inode_number();
571 if (i == 0)
572 return -EAGAIN;
573 dp->low_ino = i;
575 if (S_ISDIR(dp->mode)) {
576 if (dp->proc_iops == NULL) {
577 dp->proc_fops = &proc_dir_operations;
578 dp->proc_iops = &proc_dir_inode_operations;
580 dir->nlink++;
581 } else if (S_ISLNK(dp->mode)) {
582 if (dp->proc_iops == NULL)
583 dp->proc_iops = &proc_link_inode_operations;
584 } else if (S_ISREG(dp->mode)) {
585 if (dp->proc_fops == NULL)
586 dp->proc_fops = &proc_file_operations;
587 if (dp->proc_iops == NULL)
588 dp->proc_iops = &proc_file_inode_operations;
591 spin_lock(&proc_subdir_lock);
593 for (tmp = dir->subdir; tmp; tmp = tmp->next)
594 if (strcmp(tmp->name, dp->name) == 0) {
595 printk(KERN_WARNING "proc_dir_entry '%s' already "
596 "registered\n", dp->name);
597 dump_stack();
598 break;
601 dp->next = dir->subdir;
602 dp->parent = dir;
603 dir->subdir = dp;
604 spin_unlock(&proc_subdir_lock);
606 return 0;
609 static struct proc_dir_entry *__proc_create(struct proc_dir_entry **parent,
610 const char *name,
611 mode_t mode,
612 nlink_t nlink)
614 struct proc_dir_entry *ent = NULL;
615 const char *fn = name;
616 int len;
618 /* make sure name is valid */
619 if (!name || !strlen(name)) goto out;
621 if (!(*parent) && xlate_proc_name(name, parent, &fn) != 0)
622 goto out;
624 /* At this point there must not be any '/' characters beyond *fn */
625 if (strchr(fn, '/'))
626 goto out;
628 len = strlen(fn);
630 ent = kmalloc(sizeof(struct proc_dir_entry) + len + 1, GFP_KERNEL);
631 if (!ent) goto out;
633 memset(ent, 0, sizeof(struct proc_dir_entry));
634 memcpy(((char *) ent) + sizeof(struct proc_dir_entry), fn, len + 1);
635 ent->name = ((char *) ent) + sizeof(*ent);
636 ent->namelen = len;
637 ent->mode = mode;
638 ent->nlink = nlink;
639 atomic_set(&ent->count, 1);
640 ent->pde_users = 0;
641 spin_lock_init(&ent->pde_unload_lock);
642 ent->pde_unload_completion = NULL;
643 out:
644 return ent;
647 struct proc_dir_entry *proc_symlink(const char *name,
648 struct proc_dir_entry *parent, const char *dest)
650 struct proc_dir_entry *ent;
652 ent = __proc_create(&parent, name,
653 (S_IFLNK | S_IRUGO | S_IWUGO | S_IXUGO),1);
655 if (ent) {
656 ent->data = kmalloc((ent->size=strlen(dest))+1, GFP_KERNEL);
657 if (ent->data) {
658 strcpy((char*)ent->data,dest);
659 if (proc_register(parent, ent) < 0) {
660 kfree(ent->data);
661 kfree(ent);
662 ent = NULL;
664 } else {
665 kfree(ent);
666 ent = NULL;
669 return ent;
672 struct proc_dir_entry *proc_mkdir_mode(const char *name, mode_t mode,
673 struct proc_dir_entry *parent)
675 struct proc_dir_entry *ent;
677 ent = __proc_create(&parent, name, S_IFDIR | mode, 2);
678 if (ent) {
679 if (proc_register(parent, ent) < 0) {
680 kfree(ent);
681 ent = NULL;
684 return ent;
687 struct proc_dir_entry *proc_mkdir(const char *name,
688 struct proc_dir_entry *parent)
690 return proc_mkdir_mode(name, S_IRUGO | S_IXUGO, parent);
693 struct proc_dir_entry *create_proc_entry(const char *name, mode_t mode,
694 struct proc_dir_entry *parent)
696 struct proc_dir_entry *ent;
697 nlink_t nlink;
699 if (S_ISDIR(mode)) {
700 if ((mode & S_IALLUGO) == 0)
701 mode |= S_IRUGO | S_IXUGO;
702 nlink = 2;
703 } else {
704 if ((mode & S_IFMT) == 0)
705 mode |= S_IFREG;
706 if ((mode & S_IALLUGO) == 0)
707 mode |= S_IRUGO;
708 nlink = 1;
711 ent = __proc_create(&parent, name, mode, nlink);
712 if (ent) {
713 if (proc_register(parent, ent) < 0) {
714 kfree(ent);
715 ent = NULL;
718 return ent;
721 struct proc_dir_entry *proc_create(const char *name, mode_t mode,
722 struct proc_dir_entry *parent,
723 const struct file_operations *proc_fops)
725 struct proc_dir_entry *pde;
726 nlink_t nlink;
728 if (S_ISDIR(mode)) {
729 if ((mode & S_IALLUGO) == 0)
730 mode |= S_IRUGO | S_IXUGO;
731 nlink = 2;
732 } else {
733 if ((mode & S_IFMT) == 0)
734 mode |= S_IFREG;
735 if ((mode & S_IALLUGO) == 0)
736 mode |= S_IRUGO;
737 nlink = 1;
740 pde = __proc_create(&parent, name, mode, nlink);
741 if (!pde)
742 goto out;
743 pde->proc_fops = proc_fops;
744 if (proc_register(parent, pde) < 0)
745 goto out_free;
746 return pde;
747 out_free:
748 kfree(pde);
749 out:
750 return NULL;
753 void free_proc_entry(struct proc_dir_entry *de)
755 unsigned int ino = de->low_ino;
757 if (ino < PROC_DYNAMIC_FIRST)
758 return;
760 release_inode_number(ino);
762 if (S_ISLNK(de->mode))
763 kfree(de->data);
764 kfree(de);
768 * Remove a /proc entry and free it if it's not currently in use.
770 void remove_proc_entry(const char *name, struct proc_dir_entry *parent)
772 struct proc_dir_entry **p;
773 struct proc_dir_entry *de;
774 const char *fn = name;
775 int len;
777 if (!parent && xlate_proc_name(name, &parent, &fn) != 0)
778 goto out;
779 len = strlen(fn);
781 spin_lock(&proc_subdir_lock);
782 for (p = &parent->subdir; *p; p=&(*p)->next ) {
783 if (!proc_match(len, fn, *p))
784 continue;
785 de = *p;
786 *p = de->next;
787 de->next = NULL;
789 spin_lock(&de->pde_unload_lock);
791 * Stop accepting new callers into module. If you're
792 * dynamically allocating ->proc_fops, save a pointer somewhere.
794 de->proc_fops = NULL;
795 /* Wait until all existing callers into module are done. */
796 if (de->pde_users > 0) {
797 DECLARE_COMPLETION_ONSTACK(c);
799 if (!de->pde_unload_completion)
800 de->pde_unload_completion = &c;
802 spin_unlock(&de->pde_unload_lock);
803 spin_unlock(&proc_subdir_lock);
805 wait_for_completion(de->pde_unload_completion);
807 spin_lock(&proc_subdir_lock);
808 goto continue_removing;
810 spin_unlock(&de->pde_unload_lock);
812 continue_removing:
813 if (S_ISDIR(de->mode))
814 parent->nlink--;
815 de->nlink = 0;
816 WARN_ON(de->subdir);
817 if (atomic_dec_and_test(&de->count))
818 free_proc_entry(de);
819 break;
821 spin_unlock(&proc_subdir_lock);
822 out:
823 return;