Merge to Fedora kernel-2.6.18-1.2224_FC5 patched with stable patch-2.6.18.1-vs2.0...
[linux-2.6.git] / fs / file_table.c
1 /*
2  *  linux/fs/file_table.c
3  *
4  *  Copyright (C) 1991, 1992  Linus Torvalds
5  *  Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
6  */
7
8 #include <linux/string.h>
9 #include <linux/slab.h>
10 #include <linux/file.h>
11 #include <linux/init.h>
12 #include <linux/module.h>
13 #include <linux/smp_lock.h>
14 #include <linux/fs.h>
15 #include <linux/security.h>
16 #include <linux/eventpoll.h>
17 #include <linux/rcupdate.h>
18 #include <linux/mount.h>
19 #include <linux/capability.h>
20 #include <linux/cdev.h>
21 #include <linux/fsnotify.h>
22 #include <linux/sysctl.h>
23 #include <linux/percpu_counter.h>
24 #include <linux/vs_limit.h>
25 #include <linux/vs_context.h>
26
27 #include <asm/atomic.h>
28
29 /* sysctl tunables... */
30 struct files_stat_struct files_stat = {
31         .max_files = NR_FILE
32 };
33
34 /* public. Not pretty! */
35 __cacheline_aligned_in_smp DEFINE_SPINLOCK(files_lock);
36
37 static struct percpu_counter nr_files __cacheline_aligned_in_smp;
38
39 static inline void file_free_rcu(struct rcu_head *head)
40 {
41         struct file *f =  container_of(head, struct file, f_u.fu_rcuhead);
42         kmem_cache_free(filp_cachep, f);
43 }
44
45 static inline void file_free(struct file *f)
46 {
47         percpu_counter_dec(&nr_files);
48         call_rcu(&f->f_u.fu_rcuhead, file_free_rcu);
49 }
50
51 /*
52  * Return the total number of open files in the system
53  */
54 static int get_nr_files(void)
55 {
56         return percpu_counter_read_positive(&nr_files);
57 }
58
59 /*
60  * Return the maximum number of open files in the system
61  */
62 int get_max_files(void)
63 {
64         return files_stat.max_files;
65 }
66 EXPORT_SYMBOL_GPL(get_max_files);
67
68 /*
69  * Handle nr_files sysctl
70  */
71 #if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS)
72 int proc_nr_files(ctl_table *table, int write, struct file *filp,
73                      void __user *buffer, size_t *lenp, loff_t *ppos)
74 {
75         files_stat.nr_files = get_nr_files();
76         return proc_dointvec(table, write, filp, buffer, lenp, ppos);
77 }
78 #else
79 int proc_nr_files(ctl_table *table, int write, struct file *filp,
80                      void __user *buffer, size_t *lenp, loff_t *ppos)
81 {
82         return -ENOSYS;
83 }
84 #endif
85
86 /* Find an unused file structure and return a pointer to it.
87  * Returns NULL, if there are no more free file structures or
88  * we run out of memory.
89  */
90 struct file *get_empty_filp(void)
91 {
92         struct task_struct *tsk;
93         static int old_max;
94         struct file * f;
95
96         /*
97          * Privileged users can go above max_files
98          */
99         if (get_nr_files() >= files_stat.max_files && !capable(CAP_SYS_ADMIN)) {
100                 /*
101                  * percpu_counters are inaccurate.  Do an expensive check before
102                  * we go and fail.
103                  */
104                 if (percpu_counter_sum(&nr_files) >= files_stat.max_files)
105                         goto over;
106         }
107
108         f = kmem_cache_alloc(filp_cachep, GFP_KERNEL);
109         if (f == NULL)
110                 goto fail;
111
112         percpu_counter_inc(&nr_files);
113         memset(f, 0, sizeof(*f));
114         if (security_file_alloc(f))
115                 goto fail_sec;
116
117         tsk = current;
118         INIT_LIST_HEAD(&f->f_u.fu_list);
119         atomic_set(&f->f_count, 1);
120         rwlock_init(&f->f_owner.lock);
121         f->f_uid = tsk->fsuid;
122         f->f_gid = tsk->fsgid;
123         eventpoll_init_file(f);
124         /* f->f_version: 0 */
125         f->f_xid = vx_current_xid();
126         vx_files_inc(f);
127         return f;
128
129 over:
130         /* Ran out of filps - report that */
131         if (get_nr_files() > old_max) {
132                 printk(KERN_INFO "VFS: file-max limit %d reached\n",
133                                         get_max_files());
134                 old_max = get_nr_files();
135         }
136         goto fail;
137
138 fail_sec:
139         file_free(f);
140 fail:
141         return NULL;
142 }
143
144 EXPORT_SYMBOL(get_empty_filp);
145
146 void fastcall fput(struct file *file)
147 {
148         if (atomic_dec_and_test(&file->f_count))
149                 __fput(file);
150 }
151
152 EXPORT_SYMBOL(fput);
153
154 /* __fput is called from task context when aio completion releases the last
155  * last use of a struct file *.  Do not use otherwise.
156  */
157 void fastcall __fput(struct file *file)
158 {
159         struct dentry *dentry = file->f_dentry;
160         struct vfsmount *mnt = file->f_vfsmnt;
161         struct inode *inode = dentry->d_inode;
162
163         might_sleep();
164
165         fsnotify_close(file);
166         /*
167          * The function eventpoll_release() should be the first called
168          * in the file cleanup chain.
169          */
170         eventpoll_release(file);
171         locks_remove_flock(file);
172
173         if (file->f_op && file->f_op->release)
174                 file->f_op->release(inode, file);
175         security_file_free(file);
176         if (unlikely(S_ISCHR(inode->i_mode) && inode->i_cdev != NULL))
177                 cdev_put(inode->i_cdev);
178         fops_put(file->f_op);
179         if (file->f_mode & FMODE_WRITE)
180                 put_write_access(inode);
181         vx_files_dec(file);
182         file->f_xid = 0;
183         file_kill(file);
184         file->f_dentry = NULL;
185         file->f_vfsmnt = NULL;
186         file_free(file);
187         dput(dentry);
188         mntput(mnt);
189 }
190
191 struct file fastcall *fget(unsigned int fd)
192 {
193         struct file *file;
194         struct files_struct *files = current->files;
195
196         rcu_read_lock();
197         file = fcheck_files(files, fd);
198         if (file) {
199                 if (!atomic_inc_not_zero(&file->f_count)) {
200                         /* File object ref couldn't be taken */
201                         rcu_read_unlock();
202                         return NULL;
203                 }
204         }
205         rcu_read_unlock();
206
207         return file;
208 }
209
210 EXPORT_SYMBOL(fget);
211
212 /*
213  * Lightweight file lookup - no refcnt increment if fd table isn't shared. 
214  * You can use this only if it is guranteed that the current task already 
215  * holds a refcnt to that file. That check has to be done at fget() only
216  * and a flag is returned to be passed to the corresponding fput_light().
217  * There must not be a cloning between an fget_light/fput_light pair.
218  */
219 struct file fastcall *fget_light(unsigned int fd, int *fput_needed)
220 {
221         struct file *file;
222         struct files_struct *files = current->files;
223
224         *fput_needed = 0;
225         if (likely((atomic_read(&files->count) == 1))) {
226                 file = fcheck_files(files, fd);
227         } else {
228                 rcu_read_lock();
229                 file = fcheck_files(files, fd);
230                 if (file) {
231                         if (atomic_inc_not_zero(&file->f_count))
232                                 *fput_needed = 1;
233                         else
234                                 /* Didn't get the reference, someone's freed */
235                                 file = NULL;
236                 }
237                 rcu_read_unlock();
238         }
239
240         return file;
241 }
242
243 EXPORT_SYMBOL_GPL(fget_light);
244
245 void put_filp(struct file *file)
246 {
247         if (atomic_dec_and_test(&file->f_count)) {
248                 security_file_free(file);
249                 vx_files_dec(file);
250                 file->f_xid = 0;
251                 file_kill(file);
252                 file_free(file);
253         }
254 }
255
256 void file_move(struct file *file, struct list_head *list)
257 {
258         if (!list)
259                 return;
260         file_list_lock();
261         list_move(&file->f_u.fu_list, list);
262         file_list_unlock();
263 }
264
265 void file_kill(struct file *file)
266 {
267         if (!list_empty(&file->f_u.fu_list)) {
268                 file_list_lock();
269                 list_del_init(&file->f_u.fu_list);
270                 file_list_unlock();
271         }
272 }
273
274 int fs_may_remount_ro(struct super_block *sb)
275 {
276         struct list_head *p;
277
278         /* Check that no files are currently opened for writing. */
279         file_list_lock();
280         list_for_each(p, &sb->s_files) {
281                 struct file *file = list_entry(p, struct file, f_u.fu_list);
282                 struct inode *inode = file->f_dentry->d_inode;
283
284                 /* File with pending delete? */
285                 if (inode->i_nlink == 0)
286                         goto too_bad;
287
288                 /* Writeable file? */
289                 if (S_ISREG(inode->i_mode) && (file->f_mode & FMODE_WRITE))
290                         goto too_bad;
291         }
292         file_list_unlock();
293         return 1; /* Tis' cool bro. */
294 too_bad:
295         file_list_unlock();
296         return 0;
297 }
298
299 void __init files_init(unsigned long mempages)
300
301         int n; 
302         /* One file with associated inode and dcache is very roughly 1K. 
303          * Per default don't use more than 10% of our memory for files. 
304          */ 
305
306         n = (mempages * (PAGE_SIZE / 1024)) / 10;
307         files_stat.max_files = n; 
308         if (files_stat.max_files < NR_FILE)
309                 files_stat.max_files = NR_FILE;
310         files_defer_init();
311         percpu_counter_init(&nr_files, 0);
312