Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / proc / inode.c
blob133c28685105613c5f92c50b52e26c6b97d7bde6
1 /*
2 * linux/fs/proc/inode.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
7 #include <linux/time.h>
8 #include <linux/proc_fs.h>
9 #include <linux/kernel.h>
10 #include <linux/mm.h>
11 #include <linux/string.h>
12 #include <linux/stat.h>
13 #include <linux/file.h>
14 #include <linux/limits.h>
15 #include <linux/init.h>
16 #include <linux/module.h>
17 #include <linux/smp_lock.h>
19 #include <asm/system.h>
20 #include <asm/uaccess.h>
22 extern void free_proc_entry(struct proc_dir_entry *);
24 static inline struct proc_dir_entry * de_get(struct proc_dir_entry *de)
26 if (de)
27 atomic_inc(&de->count);
28 return de;
32 * Decrements the use count and checks for deferred deletion.
34 static void de_put(struct proc_dir_entry *de)
36 if (de) {
37 lock_kernel();
38 if (!atomic_read(&de->count)) {
39 printk("de_put: entry %s already free!\n", de->name);
40 unlock_kernel();
41 return;
44 if (atomic_dec_and_test(&de->count)) {
45 if (de->deleted) {
46 printk("de_put: deferred delete of %s\n",
47 de->name);
48 free_proc_entry(de);
51 unlock_kernel();
56 * Decrement the use count of the proc_dir_entry.
58 static void proc_delete_inode(struct inode *inode)
60 struct proc_dir_entry *de;
61 struct task_struct *tsk;
63 /* Let go of any associated process */
64 tsk = PROC_I(inode)->task;
65 if (tsk)
66 put_task_struct(tsk);
68 /* Let go of any associated proc directory entry */
69 de = PROC_I(inode)->pde;
70 if (de) {
71 if (de->owner)
72 module_put(de->owner);
73 de_put(de);
75 clear_inode(inode);
78 struct vfsmount *proc_mnt;
80 static void proc_read_inode(struct inode * inode)
82 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
85 static kmem_cache_t * proc_inode_cachep;
87 static struct inode *proc_alloc_inode(struct super_block *sb)
89 struct proc_inode *ei;
90 struct inode *inode;
92 ei = (struct proc_inode *)kmem_cache_alloc(proc_inode_cachep, SLAB_KERNEL);
93 if (!ei)
94 return NULL;
95 ei->task = NULL;
96 ei->type = 0;
97 ei->op.proc_get_link = NULL;
98 ei->pde = NULL;
99 inode = &ei->vfs_inode;
100 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
101 return inode;
104 static void proc_destroy_inode(struct inode *inode)
106 kmem_cache_free(proc_inode_cachep, PROC_I(inode));
109 static void init_once(void * foo, kmem_cache_t * cachep, unsigned long flags)
111 struct proc_inode *ei = (struct proc_inode *) foo;
113 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
114 SLAB_CTOR_CONSTRUCTOR)
115 inode_init_once(&ei->vfs_inode);
118 int __init proc_init_inodecache(void)
120 proc_inode_cachep = kmem_cache_create("proc_inode_cache",
121 sizeof(struct proc_inode),
122 0, SLAB_RECLAIM_ACCOUNT,
123 init_once, NULL);
124 if (proc_inode_cachep == NULL)
125 return -ENOMEM;
126 return 0;
129 static int proc_remount(struct super_block *sb, int *flags, char *data)
131 *flags |= MS_NODIRATIME;
132 return 0;
135 static struct super_operations proc_sops = {
136 .alloc_inode = proc_alloc_inode,
137 .destroy_inode = proc_destroy_inode,
138 .read_inode = proc_read_inode,
139 .drop_inode = generic_delete_inode,
140 .delete_inode = proc_delete_inode,
141 .statfs = simple_statfs,
142 .remount_fs = proc_remount,
145 struct inode *proc_get_inode(struct super_block *sb, unsigned int ino,
146 struct proc_dir_entry *de)
148 struct inode * inode;
151 * Increment the use count so the dir entry can't disappear.
153 de_get(de);
155 WARN_ON(de && de->deleted);
157 inode = iget(sb, ino);
158 if (!inode)
159 goto out_fail;
161 PROC_I(inode)->pde = de;
162 if (de) {
163 if (de->mode) {
164 inode->i_mode = de->mode;
165 inode->i_uid = de->uid;
166 inode->i_gid = de->gid;
168 if (de->size)
169 inode->i_size = de->size;
170 if (de->nlink)
171 inode->i_nlink = de->nlink;
172 if (!try_module_get(de->owner))
173 goto out_fail;
174 if (de->proc_iops)
175 inode->i_op = de->proc_iops;
176 if (de->proc_fops)
177 inode->i_fop = de->proc_fops;
180 out:
181 return inode;
183 out_fail:
184 de_put(de);
185 goto out;
188 int proc_fill_super(struct super_block *s, void *data, int silent)
190 struct inode * root_inode;
192 s->s_flags |= MS_NODIRATIME;
193 s->s_blocksize = 1024;
194 s->s_blocksize_bits = 10;
195 s->s_magic = PROC_SUPER_MAGIC;
196 s->s_op = &proc_sops;
197 s->s_time_gran = 1;
199 root_inode = proc_get_inode(s, PROC_ROOT_INO, &proc_root);
200 if (!root_inode)
201 goto out_no_root;
203 * Fixup the root inode's nlink value
205 root_inode->i_nlink += nr_processes();
206 root_inode->i_uid = 0;
207 root_inode->i_gid = 0;
208 s->s_root = d_alloc_root(root_inode);
209 if (!s->s_root)
210 goto out_no_root;
211 return 0;
213 out_no_root:
214 printk("proc_read_super: get root inode failed\n");
215 iput(root_inode);
216 return -ENOMEM;
218 MODULE_LICENSE("GPL");