md: fix up switching md arrays between read-only and read-write
[linux-2.6/mini2440.git] / fs / proc / inode.c
blob6f4e8dc97da1f24f6313b4425efa323fe82a644c
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/completion.h>
14 #include <linux/poll.h>
15 #include <linux/file.h>
16 #include <linux/limits.h>
17 #include <linux/init.h>
18 #include <linux/module.h>
19 #include <linux/smp_lock.h>
21 #include <asm/system.h>
22 #include <asm/uaccess.h>
24 #include "internal.h"
26 struct proc_dir_entry *de_get(struct proc_dir_entry *de)
28 atomic_inc(&de->count);
29 return de;
33 * Decrements the use count and checks for deferred deletion.
35 void de_put(struct proc_dir_entry *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 free_proc_entry(de);
46 unlock_kernel();
50 * Decrement the use count of the proc_dir_entry.
52 static void proc_delete_inode(struct inode *inode)
54 struct proc_dir_entry *de;
56 truncate_inode_pages(&inode->i_data, 0);
58 /* Stop tracking associated processes */
59 put_pid(PROC_I(inode)->pid);
61 /* Let go of any associated proc directory entry */
62 de = PROC_I(inode)->pde;
63 if (de) {
64 if (de->owner)
65 module_put(de->owner);
66 de_put(de);
68 clear_inode(inode);
71 struct vfsmount *proc_mnt;
73 static struct kmem_cache * proc_inode_cachep;
75 static struct inode *proc_alloc_inode(struct super_block *sb)
77 struct proc_inode *ei;
78 struct inode *inode;
80 ei = (struct proc_inode *)kmem_cache_alloc(proc_inode_cachep, GFP_KERNEL);
81 if (!ei)
82 return NULL;
83 ei->pid = NULL;
84 ei->fd = 0;
85 ei->op.proc_get_link = NULL;
86 ei->pde = NULL;
87 inode = &ei->vfs_inode;
88 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
89 return inode;
92 static void proc_destroy_inode(struct inode *inode)
94 kmem_cache_free(proc_inode_cachep, PROC_I(inode));
97 static void init_once(struct kmem_cache * cachep, void *foo)
99 struct proc_inode *ei = (struct proc_inode *) foo;
101 inode_init_once(&ei->vfs_inode);
104 int __init proc_init_inodecache(void)
106 proc_inode_cachep = kmem_cache_create("proc_inode_cache",
107 sizeof(struct proc_inode),
108 0, (SLAB_RECLAIM_ACCOUNT|
109 SLAB_MEM_SPREAD|SLAB_PANIC),
110 init_once);
111 return 0;
114 static int proc_remount(struct super_block *sb, int *flags, char *data)
116 *flags |= MS_NODIRATIME;
117 return 0;
120 static const struct super_operations proc_sops = {
121 .alloc_inode = proc_alloc_inode,
122 .destroy_inode = proc_destroy_inode,
123 .drop_inode = generic_delete_inode,
124 .delete_inode = proc_delete_inode,
125 .statfs = simple_statfs,
126 .remount_fs = proc_remount,
129 static void pde_users_dec(struct proc_dir_entry *pde)
131 spin_lock(&pde->pde_unload_lock);
132 pde->pde_users--;
133 if (pde->pde_unload_completion && pde->pde_users == 0)
134 complete(pde->pde_unload_completion);
135 spin_unlock(&pde->pde_unload_lock);
138 static loff_t proc_reg_llseek(struct file *file, loff_t offset, int whence)
140 struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
141 loff_t rv = -EINVAL;
142 loff_t (*llseek)(struct file *, loff_t, int);
144 spin_lock(&pde->pde_unload_lock);
146 * remove_proc_entry() is going to delete PDE (as part of module
147 * cleanup sequence). No new callers into module allowed.
149 if (!pde->proc_fops) {
150 spin_unlock(&pde->pde_unload_lock);
151 return rv;
154 * Bump refcount so that remove_proc_entry will wail for ->llseek to
155 * complete.
157 pde->pde_users++;
159 * Save function pointer under lock, to protect against ->proc_fops
160 * NULL'ifying right after ->pde_unload_lock is dropped.
162 llseek = pde->proc_fops->llseek;
163 spin_unlock(&pde->pde_unload_lock);
165 if (!llseek)
166 llseek = default_llseek;
167 rv = llseek(file, offset, whence);
169 pde_users_dec(pde);
170 return rv;
173 static ssize_t proc_reg_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
175 struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
176 ssize_t rv = -EIO;
177 ssize_t (*read)(struct file *, char __user *, size_t, loff_t *);
179 spin_lock(&pde->pde_unload_lock);
180 if (!pde->proc_fops) {
181 spin_unlock(&pde->pde_unload_lock);
182 return rv;
184 pde->pde_users++;
185 read = pde->proc_fops->read;
186 spin_unlock(&pde->pde_unload_lock);
188 if (read)
189 rv = read(file, buf, count, ppos);
191 pde_users_dec(pde);
192 return rv;
195 static ssize_t proc_reg_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
197 struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
198 ssize_t rv = -EIO;
199 ssize_t (*write)(struct file *, const char __user *, size_t, loff_t *);
201 spin_lock(&pde->pde_unload_lock);
202 if (!pde->proc_fops) {
203 spin_unlock(&pde->pde_unload_lock);
204 return rv;
206 pde->pde_users++;
207 write = pde->proc_fops->write;
208 spin_unlock(&pde->pde_unload_lock);
210 if (write)
211 rv = write(file, buf, count, ppos);
213 pde_users_dec(pde);
214 return rv;
217 static unsigned int proc_reg_poll(struct file *file, struct poll_table_struct *pts)
219 struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
220 unsigned int rv = DEFAULT_POLLMASK;
221 unsigned int (*poll)(struct file *, struct poll_table_struct *);
223 spin_lock(&pde->pde_unload_lock);
224 if (!pde->proc_fops) {
225 spin_unlock(&pde->pde_unload_lock);
226 return rv;
228 pde->pde_users++;
229 poll = pde->proc_fops->poll;
230 spin_unlock(&pde->pde_unload_lock);
232 if (poll)
233 rv = poll(file, pts);
235 pde_users_dec(pde);
236 return rv;
239 static long proc_reg_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
241 struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
242 long rv = -ENOTTY;
243 long (*unlocked_ioctl)(struct file *, unsigned int, unsigned long);
244 int (*ioctl)(struct inode *, struct file *, unsigned int, unsigned long);
246 spin_lock(&pde->pde_unload_lock);
247 if (!pde->proc_fops) {
248 spin_unlock(&pde->pde_unload_lock);
249 return rv;
251 pde->pde_users++;
252 unlocked_ioctl = pde->proc_fops->unlocked_ioctl;
253 ioctl = pde->proc_fops->ioctl;
254 spin_unlock(&pde->pde_unload_lock);
256 if (unlocked_ioctl) {
257 rv = unlocked_ioctl(file, cmd, arg);
258 if (rv == -ENOIOCTLCMD)
259 rv = -EINVAL;
260 } else if (ioctl) {
261 lock_kernel();
262 rv = ioctl(file->f_path.dentry->d_inode, file, cmd, arg);
263 unlock_kernel();
266 pde_users_dec(pde);
267 return rv;
270 #ifdef CONFIG_COMPAT
271 static long proc_reg_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
273 struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
274 long rv = -ENOTTY;
275 long (*compat_ioctl)(struct file *, unsigned int, unsigned long);
277 spin_lock(&pde->pde_unload_lock);
278 if (!pde->proc_fops) {
279 spin_unlock(&pde->pde_unload_lock);
280 return rv;
282 pde->pde_users++;
283 compat_ioctl = pde->proc_fops->compat_ioctl;
284 spin_unlock(&pde->pde_unload_lock);
286 if (compat_ioctl)
287 rv = compat_ioctl(file, cmd, arg);
289 pde_users_dec(pde);
290 return rv;
292 #endif
294 static int proc_reg_mmap(struct file *file, struct vm_area_struct *vma)
296 struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
297 int rv = -EIO;
298 int (*mmap)(struct file *, struct vm_area_struct *);
300 spin_lock(&pde->pde_unload_lock);
301 if (!pde->proc_fops) {
302 spin_unlock(&pde->pde_unload_lock);
303 return rv;
305 pde->pde_users++;
306 mmap = pde->proc_fops->mmap;
307 spin_unlock(&pde->pde_unload_lock);
309 if (mmap)
310 rv = mmap(file, vma);
312 pde_users_dec(pde);
313 return rv;
316 static int proc_reg_open(struct inode *inode, struct file *file)
318 struct proc_dir_entry *pde = PDE(inode);
319 int rv = 0;
320 int (*open)(struct inode *, struct file *);
322 spin_lock(&pde->pde_unload_lock);
323 if (!pde->proc_fops) {
324 spin_unlock(&pde->pde_unload_lock);
325 return rv;
327 pde->pde_users++;
328 open = pde->proc_fops->open;
329 spin_unlock(&pde->pde_unload_lock);
331 if (open)
332 rv = open(inode, file);
334 pde_users_dec(pde);
335 return rv;
338 static int proc_reg_release(struct inode *inode, struct file *file)
340 struct proc_dir_entry *pde = PDE(inode);
341 int rv = 0;
342 int (*release)(struct inode *, struct file *);
344 spin_lock(&pde->pde_unload_lock);
345 if (!pde->proc_fops) {
346 spin_unlock(&pde->pde_unload_lock);
347 return rv;
349 pde->pde_users++;
350 release = pde->proc_fops->release;
351 spin_unlock(&pde->pde_unload_lock);
353 if (release)
354 rv = release(inode, file);
356 pde_users_dec(pde);
357 return rv;
360 static const struct file_operations proc_reg_file_ops = {
361 .llseek = proc_reg_llseek,
362 .read = proc_reg_read,
363 .write = proc_reg_write,
364 .poll = proc_reg_poll,
365 .unlocked_ioctl = proc_reg_unlocked_ioctl,
366 #ifdef CONFIG_COMPAT
367 .compat_ioctl = proc_reg_compat_ioctl,
368 #endif
369 .mmap = proc_reg_mmap,
370 .open = proc_reg_open,
371 .release = proc_reg_release,
374 #ifdef CONFIG_COMPAT
375 static const struct file_operations proc_reg_file_ops_no_compat = {
376 .llseek = proc_reg_llseek,
377 .read = proc_reg_read,
378 .write = proc_reg_write,
379 .poll = proc_reg_poll,
380 .unlocked_ioctl = proc_reg_unlocked_ioctl,
381 .mmap = proc_reg_mmap,
382 .open = proc_reg_open,
383 .release = proc_reg_release,
385 #endif
387 struct inode *proc_get_inode(struct super_block *sb, unsigned int ino,
388 struct proc_dir_entry *de)
390 struct inode * inode;
392 if (!try_module_get(de->owner))
393 goto out_mod;
395 inode = iget_locked(sb, ino);
396 if (!inode)
397 goto out_ino;
398 if (inode->i_state & I_NEW) {
399 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
400 PROC_I(inode)->fd = 0;
401 PROC_I(inode)->pde = de;
403 if (de->mode) {
404 inode->i_mode = de->mode;
405 inode->i_uid = de->uid;
406 inode->i_gid = de->gid;
408 if (de->size)
409 inode->i_size = de->size;
410 if (de->nlink)
411 inode->i_nlink = de->nlink;
412 if (de->proc_iops)
413 inode->i_op = de->proc_iops;
414 if (de->proc_fops) {
415 if (S_ISREG(inode->i_mode)) {
416 #ifdef CONFIG_COMPAT
417 if (!de->proc_fops->compat_ioctl)
418 inode->i_fop =
419 &proc_reg_file_ops_no_compat;
420 else
421 #endif
422 inode->i_fop = &proc_reg_file_ops;
423 } else {
424 inode->i_fop = de->proc_fops;
427 unlock_new_inode(inode);
429 return inode;
431 out_ino:
432 module_put(de->owner);
433 out_mod:
434 return NULL;
437 int proc_fill_super(struct super_block *s)
439 struct inode * root_inode;
441 s->s_flags |= MS_NODIRATIME | MS_NOSUID | MS_NOEXEC;
442 s->s_blocksize = 1024;
443 s->s_blocksize_bits = 10;
444 s->s_magic = PROC_SUPER_MAGIC;
445 s->s_op = &proc_sops;
446 s->s_time_gran = 1;
448 de_get(&proc_root);
449 root_inode = proc_get_inode(s, PROC_ROOT_INO, &proc_root);
450 if (!root_inode)
451 goto out_no_root;
452 root_inode->i_uid = 0;
453 root_inode->i_gid = 0;
454 s->s_root = d_alloc_root(root_inode);
455 if (!s->s_root)
456 goto out_no_root;
457 return 0;
459 out_no_root:
460 printk("proc_read_super: get root inode failed\n");
461 iput(root_inode);
462 de_put(&proc_root);
463 return -ENOMEM;