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.
7 * Copyright (C) 1991, 1992 Linus Torvalds.
8 * Copyright (C) 1997 Theodore Ts'o
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/init.h>
18 #include <linux/idr.h>
19 #include <linux/namei.h>
20 #include <linux/bitops.h>
21 #include <linux/spinlock.h>
22 #include <linux/completion.h>
23 #include <asm/uaccess.h>
27 DEFINE_SPINLOCK(proc_subdir_lock);
29 static int proc_match(int len, const char *name, struct proc_dir_entry *de)
31 if (de->namelen != len)
33 return !memcmp(name, de->name, len);
36 /* buffer size is one page but our output routines use some slack for overruns */
37 #define PROC_BLOCK_SIZE (PAGE_SIZE - 1024)
40 proc_file_read(struct file *file, char __user *buf, size_t nbytes,
43 struct inode * inode = file->f_path.dentry->d_inode;
49 struct proc_dir_entry * dp;
50 unsigned long long pos;
53 * Gaah, please just use "seq_file" instead. The legacy /proc
54 * interfaces cut loff_t down to off_t for reads, and ignore
55 * the offset entirely for writes..
58 if (pos > MAX_NON_LFS)
60 if (nbytes > MAX_NON_LFS - pos)
61 nbytes = MAX_NON_LFS - pos;
64 if (!(page = (char*) __get_free_page(GFP_TEMPORARY)))
67 while ((nbytes > 0) && !eof) {
68 count = min_t(size_t, PROC_BLOCK_SIZE, nbytes);
73 * How to be a proc read function
74 * ------------------------------
76 * int f(char *buffer, char **start, off_t offset,
77 * int count, int *peof, void *dat)
79 * Assume that the buffer is "count" bytes in size.
81 * If you know you have supplied all the data you
84 * You have three ways to return data:
85 * 0) Leave *start = NULL. (This is the default.)
86 * Put the data of the requested offset at that
87 * offset within the buffer. Return the number (n)
88 * of bytes there are from the beginning of the
89 * buffer up to the last byte of data. If the
90 * number of supplied bytes (= n - offset) is
91 * greater than zero and you didn't signal eof
92 * and the reader is prepared to take more data
93 * you will be called again with the requested
94 * offset advanced by the number of bytes
95 * absorbed. This interface is useful for files
96 * no larger than the buffer.
97 * 1) Set *start = an unsigned long value less than
98 * the buffer address but greater than zero.
99 * Put the data of the requested offset at the
100 * beginning of the buffer. Return the number of
101 * bytes of data placed there. If this number is
102 * greater than zero and you didn't signal eof
103 * and the reader is prepared to take more data
104 * you will be called again with the requested
105 * offset advanced by *start. This interface is
106 * useful when you have a large file consisting
107 * of a series of blocks which you want to count
108 * and return as wholes.
109 * (Hack by Paul.Russell@rustcorp.com.au)
110 * 2) Set *start = an address within the buffer.
111 * Put the data of the requested offset at *start.
112 * Return the number of bytes of data placed there.
113 * If this number is greater than zero and you
114 * didn't signal eof and the reader is prepared to
115 * take more data you will be called again with the
116 * requested offset advanced by the number of bytes
119 n = dp->read_proc(page, &start, *ppos,
120 count, &eof, dp->data);
124 if (n == 0) /* end of file */
126 if (n < 0) { /* error */
135 "proc_file_read: Apparent buffer overflow!\n");
143 start = page + *ppos;
144 } else if (start < page) {
147 "proc_file_read: Apparent buffer overflow!\n");
152 * Don't reduce n because doing so might
153 * cut off part of a data block.
156 "proc_file_read: Read count exceeded\n");
158 } else /* start >= page */ {
159 unsigned long startoff = (unsigned long)(start - page);
160 if (n > (PAGE_SIZE - startoff)) {
162 "proc_file_read: Apparent buffer overflow!\n");
163 n = PAGE_SIZE - startoff;
169 n -= copy_to_user(buf, start < page ? page : start, n);
176 *ppos += start < page ? (unsigned long)start : n;
181 free_page((unsigned long) page);
186 proc_file_write(struct file *file, const char __user *buffer,
187 size_t count, loff_t *ppos)
189 struct inode *inode = file->f_path.dentry->d_inode;
190 struct proc_dir_entry * dp;
197 /* FIXME: does this routine need ppos? probably... */
198 return dp->write_proc(file, buffer, count, dp->data);
203 proc_file_lseek(struct file *file, loff_t offset, int orig)
205 loff_t retval = -EINVAL;
208 offset += file->f_pos;
211 if (offset < 0 || offset > MAX_NON_LFS)
213 file->f_pos = retval = offset;
218 static const struct file_operations proc_file_operations = {
219 .llseek = proc_file_lseek,
220 .read = proc_file_read,
221 .write = proc_file_write,
224 static int proc_notify_change(struct dentry *dentry, struct iattr *iattr)
226 struct inode *inode = dentry->d_inode;
227 struct proc_dir_entry *de = PDE(inode);
230 error = inode_change_ok(inode, iattr);
234 error = inode_setattr(inode, iattr);
238 de->uid = inode->i_uid;
239 de->gid = inode->i_gid;
240 de->mode = inode->i_mode;
245 static int proc_getattr(struct vfsmount *mnt, struct dentry *dentry,
248 struct inode *inode = dentry->d_inode;
249 struct proc_dir_entry *de = PROC_I(inode)->pde;
251 inode->i_nlink = de->nlink;
253 generic_fillattr(inode, stat);
257 static const struct inode_operations proc_file_inode_operations = {
258 .setattr = proc_notify_change,
262 * This function parses a name such as "tty/driver/serial", and
263 * returns the struct proc_dir_entry for "/proc/tty/driver", and
264 * returns "serial" in residual.
266 static int xlate_proc_name(const char *name,
267 struct proc_dir_entry **ret, const char **residual)
269 const char *cp = name, *next;
270 struct proc_dir_entry *de;
278 spin_lock(&proc_subdir_lock);
280 next = strchr(cp, '/');
285 for (de = de->subdir; de ; de = de->next) {
286 if (proc_match(len, cp, de))
298 spin_unlock(&proc_subdir_lock);
302 static DEFINE_IDA(proc_inum_ida);
303 static DEFINE_SPINLOCK(proc_inum_lock); /* protects the above */
305 #define PROC_DYNAMIC_FIRST 0xF0000000U
308 * Return an inode number between PROC_DYNAMIC_FIRST and
309 * 0xffffffff, or zero on failure.
311 static unsigned int get_inode_number(void)
317 if (ida_pre_get(&proc_inum_ida, GFP_KERNEL) == 0)
320 spin_lock(&proc_inum_lock);
321 error = ida_get_new(&proc_inum_ida, &i);
322 spin_unlock(&proc_inum_lock);
323 if (error == -EAGAIN)
328 if (i > UINT_MAX - PROC_DYNAMIC_FIRST) {
329 spin_lock(&proc_inum_lock);
330 ida_remove(&proc_inum_ida, i);
331 spin_unlock(&proc_inum_lock);
334 return PROC_DYNAMIC_FIRST + i;
337 static void release_inode_number(unsigned int inum)
339 spin_lock(&proc_inum_lock);
340 ida_remove(&proc_inum_ida, inum - PROC_DYNAMIC_FIRST);
341 spin_unlock(&proc_inum_lock);
344 static void *proc_follow_link(struct dentry *dentry, struct nameidata *nd)
346 nd_set_link(nd, PDE(dentry->d_inode)->data);
350 static const struct inode_operations proc_link_inode_operations = {
351 .readlink = generic_readlink,
352 .follow_link = proc_follow_link,
356 * As some entries in /proc are volatile, we want to
357 * get rid of unused dentries. This could be made
358 * smarter: we could keep a "volatile" flag in the
359 * inode to indicate which ones to keep.
361 static int proc_delete_dentry(struct dentry * dentry)
366 static const struct dentry_operations proc_dentry_operations =
368 .d_delete = proc_delete_dentry,
372 * Don't create negative dentries here, return -ENOENT by hand
375 struct dentry *proc_lookup_de(struct proc_dir_entry *de, struct inode *dir,
376 struct dentry *dentry)
378 struct inode *inode = NULL;
381 spin_lock(&proc_subdir_lock);
382 for (de = de->subdir; de ; de = de->next) {
383 if (de->namelen != dentry->d_name.len)
385 if (!memcmp(dentry->d_name.name, de->name, de->namelen)) {
390 spin_unlock(&proc_subdir_lock);
392 inode = proc_get_inode(dir->i_sb, ino, de);
396 spin_unlock(&proc_subdir_lock);
400 dentry->d_op = &proc_dentry_operations;
401 d_add(dentry, inode);
406 return ERR_PTR(error);
409 struct dentry *proc_lookup(struct inode *dir, struct dentry *dentry,
410 struct nameidata *nd)
412 return proc_lookup_de(PDE(dir), dir, dentry);
416 * This returns non-zero if at EOF, so that the /proc
417 * root directory can use this and check if it should
418 * continue with the <pid> entries..
420 * Note that the VFS-layer doesn't care about the return
421 * value of the readdir() call, as long as it's non-negative
424 int proc_readdir_de(struct proc_dir_entry *de, struct file *filp, void *dirent,
429 struct inode *inode = filp->f_path.dentry->d_inode;
436 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
442 if (filldir(dirent, "..", 2, i,
443 parent_ino(filp->f_path.dentry),
450 spin_lock(&proc_subdir_lock);
456 spin_unlock(&proc_subdir_lock);
466 struct proc_dir_entry *next;
468 /* filldir passes info to user space */
470 spin_unlock(&proc_subdir_lock);
471 if (filldir(dirent, de->name, de->namelen, filp->f_pos,
472 de->low_ino, de->mode >> 12) < 0) {
476 spin_lock(&proc_subdir_lock);
482 spin_unlock(&proc_subdir_lock);
489 int proc_readdir(struct file *filp, void *dirent, filldir_t filldir)
491 struct inode *inode = filp->f_path.dentry->d_inode;
493 return proc_readdir_de(PDE(inode), filp, dirent, filldir);
497 * These are the generic /proc directory operations. They
498 * use the in-memory "struct proc_dir_entry" tree to parse
499 * the /proc directory.
501 static const struct file_operations proc_dir_operations = {
502 .llseek = generic_file_llseek,
503 .read = generic_read_dir,
504 .readdir = proc_readdir,
508 * proc directories can do almost nothing..
510 static const struct inode_operations proc_dir_inode_operations = {
511 .lookup = proc_lookup,
512 .getattr = proc_getattr,
513 .setattr = proc_notify_change,
516 static int proc_register(struct proc_dir_entry * dir, struct proc_dir_entry * dp)
519 struct proc_dir_entry *tmp;
521 i = get_inode_number();
526 if (S_ISDIR(dp->mode)) {
527 if (dp->proc_iops == NULL) {
528 dp->proc_fops = &proc_dir_operations;
529 dp->proc_iops = &proc_dir_inode_operations;
532 } else if (S_ISLNK(dp->mode)) {
533 if (dp->proc_iops == NULL)
534 dp->proc_iops = &proc_link_inode_operations;
535 } else if (S_ISREG(dp->mode)) {
536 if (dp->proc_fops == NULL)
537 dp->proc_fops = &proc_file_operations;
538 if (dp->proc_iops == NULL)
539 dp->proc_iops = &proc_file_inode_operations;
542 spin_lock(&proc_subdir_lock);
544 for (tmp = dir->subdir; tmp; tmp = tmp->next)
545 if (strcmp(tmp->name, dp->name) == 0) {
546 WARN(1, KERN_WARNING "proc_dir_entry '%s/%s' already registered\n",
547 dir->name, dp->name);
551 dp->next = dir->subdir;
554 spin_unlock(&proc_subdir_lock);
559 static struct proc_dir_entry *__proc_create(struct proc_dir_entry **parent,
564 struct proc_dir_entry *ent = NULL;
565 const char *fn = name;
568 /* make sure name is valid */
569 if (!name || !strlen(name)) goto out;
571 if (xlate_proc_name(name, parent, &fn) != 0)
574 /* At this point there must not be any '/' characters beyond *fn */
580 ent = kmalloc(sizeof(struct proc_dir_entry) + len + 1, GFP_KERNEL);
583 memset(ent, 0, sizeof(struct proc_dir_entry));
584 memcpy(((char *) ent) + sizeof(struct proc_dir_entry), fn, len + 1);
585 ent->name = ((char *) ent) + sizeof(*ent);
589 atomic_set(&ent->count, 1);
591 spin_lock_init(&ent->pde_unload_lock);
592 ent->pde_unload_completion = NULL;
593 INIT_LIST_HEAD(&ent->pde_openers);
598 struct proc_dir_entry *proc_symlink(const char *name,
599 struct proc_dir_entry *parent, const char *dest)
601 struct proc_dir_entry *ent;
603 ent = __proc_create(&parent, name,
604 (S_IFLNK | S_IRUGO | S_IWUGO | S_IXUGO),1);
607 ent->data = kmalloc((ent->size=strlen(dest))+1, GFP_KERNEL);
609 strcpy((char*)ent->data,dest);
610 if (proc_register(parent, ent) < 0) {
623 struct proc_dir_entry *proc_mkdir_mode(const char *name, mode_t mode,
624 struct proc_dir_entry *parent)
626 struct proc_dir_entry *ent;
628 ent = __proc_create(&parent, name, S_IFDIR | mode, 2);
630 if (proc_register(parent, ent) < 0) {
638 struct proc_dir_entry *proc_net_mkdir(struct net *net, const char *name,
639 struct proc_dir_entry *parent)
641 struct proc_dir_entry *ent;
643 ent = __proc_create(&parent, name, S_IFDIR | S_IRUGO | S_IXUGO, 2);
646 if (proc_register(parent, ent) < 0) {
653 EXPORT_SYMBOL_GPL(proc_net_mkdir);
655 struct proc_dir_entry *proc_mkdir(const char *name,
656 struct proc_dir_entry *parent)
658 return proc_mkdir_mode(name, S_IRUGO | S_IXUGO, parent);
661 struct proc_dir_entry *create_proc_entry(const char *name, mode_t mode,
662 struct proc_dir_entry *parent)
664 struct proc_dir_entry *ent;
668 if ((mode & S_IALLUGO) == 0)
669 mode |= S_IRUGO | S_IXUGO;
672 if ((mode & S_IFMT) == 0)
674 if ((mode & S_IALLUGO) == 0)
679 ent = __proc_create(&parent, name, mode, nlink);
681 if (proc_register(parent, ent) < 0) {
689 struct proc_dir_entry *proc_create_data(const char *name, mode_t mode,
690 struct proc_dir_entry *parent,
691 const struct file_operations *proc_fops,
694 struct proc_dir_entry *pde;
698 if ((mode & S_IALLUGO) == 0)
699 mode |= S_IRUGO | S_IXUGO;
702 if ((mode & S_IFMT) == 0)
704 if ((mode & S_IALLUGO) == 0)
709 pde = __proc_create(&parent, name, mode, nlink);
712 pde->proc_fops = proc_fops;
714 if (proc_register(parent, pde) < 0)
723 void free_proc_entry(struct proc_dir_entry *de)
725 unsigned int ino = de->low_ino;
727 if (ino < PROC_DYNAMIC_FIRST)
730 release_inode_number(ino);
732 if (S_ISLNK(de->mode))
738 * Remove a /proc entry and free it if it's not currently in use.
740 void remove_proc_entry(const char *name, struct proc_dir_entry *parent)
742 struct proc_dir_entry **p;
743 struct proc_dir_entry *de = NULL;
744 const char *fn = name;
747 if (xlate_proc_name(name, &parent, &fn) != 0)
751 spin_lock(&proc_subdir_lock);
752 for (p = &parent->subdir; *p; p=&(*p)->next ) {
753 if (proc_match(len, fn, *p)) {
760 spin_unlock(&proc_subdir_lock);
764 spin_lock(&de->pde_unload_lock);
766 * Stop accepting new callers into module. If you're
767 * dynamically allocating ->proc_fops, save a pointer somewhere.
769 de->proc_fops = NULL;
770 /* Wait until all existing callers into module are done. */
771 if (de->pde_users > 0) {
772 DECLARE_COMPLETION_ONSTACK(c);
774 if (!de->pde_unload_completion)
775 de->pde_unload_completion = &c;
777 spin_unlock(&de->pde_unload_lock);
779 wait_for_completion(de->pde_unload_completion);
781 goto continue_removing;
783 spin_unlock(&de->pde_unload_lock);
786 spin_lock(&de->pde_unload_lock);
787 while (!list_empty(&de->pde_openers)) {
788 struct pde_opener *pdeo;
790 pdeo = list_first_entry(&de->pde_openers, struct pde_opener, lh);
792 spin_unlock(&de->pde_unload_lock);
793 pdeo->release(pdeo->inode, pdeo->file);
795 spin_lock(&de->pde_unload_lock);
797 spin_unlock(&de->pde_unload_lock);
799 if (S_ISDIR(de->mode))
802 WARN(de->subdir, KERN_WARNING "%s: removing non-empty directory "
803 "'%s/%s', leaking at least '%s'\n", __func__,
804 de->parent->name, de->name, de->subdir->name);
805 if (atomic_dec_and_test(&de->count))