linux 2.6.16.38 w/ vs2.0.3-rc1
[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/config.h>
9 #include <linux/string.h>
10 #include <linux/slab.h>
11 #include <linux/file.h>
12 #include <linux/init.h>
13 #include <linux/module.h>
14 #include <linux/smp_lock.h>
15 #include <linux/fs.h>
16 #include <linux/security.h>
17 #include <linux/eventpoll.h>
18 #include <linux/rcupdate.h>
19 #include <linux/mount.h>
20 #include <linux/capability.h>
21 #include <linux/cdev.h>
22 #include <linux/fsnotify.h>
23 #include <linux/sysctl.h>
24 #include <linux/percpu_counter.h>
25 #include <linux/vs_base.h>
26 #include <linux/vs_context.h>
27 #include <linux/vs_limit.h>
28
29 #include <asm/atomic.h>
30
31 /* sysctl tunables... */
32 struct files_stat_struct files_stat = {
33         .max_files = NR_FILE
34 };
35
36 /* public. Not pretty! */
37 __cacheline_aligned_in_smp DEFINE_SPINLOCK(files_lock);
38
39 static struct percpu_counter nr_files __cacheline_aligned_in_smp;
40
41 static inline void file_free_rcu(struct rcu_head *head)
42 {
43         struct file *f =  container_of(head, struct file, f_u.fu_rcuhead);
44         kmem_cache_free(filp_cachep, f);
45 }
46
47 static inline void file_free(struct file *f)
48 {
49         percpu_counter_dec(&nr_files);
50         call_rcu(&f->f_u.fu_rcuhead, file_free_rcu);
51 }
52
53 /*
54  * Return the total number of open files in the system
55  */
56 static int get_nr_files(void)
57 {
58         return percpu_counter_read_positive(&nr_files);
59 }
60
61 /*
62  * Return the maximum number of open files in the system
63  */
64 int get_max_files(void)
65 {
66         return files_stat.max_files;
67 }
68 EXPORT_SYMBOL_GPL(get_max_files);
69
70 /*
71  * Handle nr_files sysctl
72  */
73 #if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS)
74 int proc_nr_files(ctl_table *table, int write, struct file *filp,
75                      void __user *buffer, size_t *lenp, loff_t *ppos)
76 {
77         files_stat.nr_files = get_nr_files();
78         return proc_dointvec(table, write, filp, buffer, lenp, ppos);
79 }
80 #else
81 int proc_nr_files(ctl_table *table, int write, struct file *filp,
82                      void __user *buffer, size_t *lenp, loff_t *ppos)
83 {
84         return -ENOSYS;
85 }
86 #endif
87
88 /* Find an unused file structure and return a pointer to it.
89  * Returns NULL, if there are no more free file structures or
90  * we run out of memory.
91  */
92 struct file *get_empty_filp(void)
93 {
94         static int old_max;
95         struct file * f;
96
97         /*
98          * Privileged users can go above max_files
99          */
100         if (get_nr_files() >= files_stat.max_files && !capable(CAP_SYS_ADMIN)) {
101                 /*
102                  * percpu_counters are inaccurate.  Do an expensive check before
103                  * we go and fail.
104                  */
105                 if (percpu_counter_sum(&nr_files) >= files_stat.max_files)
106                         goto over;
107         }
108
109         f = kmem_cache_alloc(filp_cachep, GFP_KERNEL);
110         if (f == NULL)
111                 goto fail;
112
113         percpu_counter_inc(&nr_files);
114         memset(f, 0, sizeof(*f));
115         if (security_file_alloc(f))
116                 goto fail_sec;
117
118         eventpoll_init_file(f);
119         atomic_set(&f->f_count, 1);
120         f->f_uid = current->fsuid;
121         f->f_gid = current->fsgid;
122         rwlock_init(&f->f_owner.lock);
123         /* f->f_version: 0 */
124         INIT_LIST_HEAD(&f->f_u.fu_list);
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(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
244 void put_filp(struct file *file)
245 {
246         if (atomic_dec_and_test(&file->f_count)) {
247                 security_file_free(file);
248                 vx_files_dec(file);
249                 file->f_xid = 0;
250                 file_kill(file);
251                 file_free(file);
252         }
253 }
254
255 void file_move(struct file *file, struct list_head *list)
256 {
257         if (!list)
258                 return;
259         file_list_lock();
260         list_move(&file->f_u.fu_list, list);
261         file_list_unlock();
262 }
263
264 void file_kill(struct file *file)
265 {
266         if (!list_empty(&file->f_u.fu_list)) {
267                 file_list_lock();
268                 list_del_init(&file->f_u.fu_list);
269                 file_list_unlock();
270         }
271 }
272
273 int fs_may_remount_ro(struct super_block *sb)
274 {
275         struct list_head *p;
276
277         /* Check that no files are currently opened for writing. */
278         file_list_lock();
279         list_for_each(p, &sb->s_files) {
280                 struct file *file = list_entry(p, struct file, f_u.fu_list);
281                 struct inode *inode = file->f_dentry->d_inode;
282
283                 /* File with pending delete? */
284                 if (inode->i_nlink == 0)
285                         goto too_bad;
286
287                 /* Writeable file? */
288                 if (S_ISREG(inode->i_mode) && (file->f_mode & FMODE_WRITE))
289                         goto too_bad;
290         }
291         file_list_unlock();
292         return 1; /* Tis' cool bro. */
293 too_bad:
294         file_list_unlock();
295         return 0;
296 }
297
298 void __init files_init(unsigned long mempages)
299
300         int n; 
301         /* One file with associated inode and dcache is very roughly 1K. 
302          * Per default don't use more than 10% of our memory for files. 
303          */ 
304
305         n = (mempages * (PAGE_SIZE / 1024)) / 10;
306         files_stat.max_files = n; 
307         if (files_stat.max_files < NR_FILE)
308                 files_stat.max_files = NR_FILE;
309         files_defer_init();
310         percpu_counter_init(&nr_files);
311