MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / fs / file_table.c
blobbcfc9e6f386ac54969a8fdc809e2b72b520ec46d
1 /*
2 * linux/fs/file_table.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
6 */
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>
25 #include <asm/atomic.h>
27 /* sysctl tunables... */
28 struct files_stat_struct files_stat = {
29 .max_files = NR_FILE
32 /* public. Not pretty! */
33 __cacheline_aligned_in_smp DEFINE_SPINLOCK(files_lock);
35 static struct percpu_counter nr_files __cacheline_aligned_in_smp;
37 static inline void file_free_rcu(struct rcu_head *head)
39 struct file *f = container_of(head, struct file, f_u.fu_rcuhead);
40 kmem_cache_free(filp_cachep, f);
43 static inline void file_free(struct file *f)
45 percpu_counter_dec(&nr_files);
46 call_rcu(&f->f_u.fu_rcuhead, file_free_rcu);
50 * Return the total number of open files in the system
52 static int get_nr_files(void)
54 return percpu_counter_read_positive(&nr_files);
58 * Return the maximum number of open files in the system
60 int get_max_files(void)
62 return files_stat.max_files;
64 EXPORT_SYMBOL_GPL(get_max_files);
67 * Handle nr_files sysctl
69 #if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS)
70 int proc_nr_files(ctl_table *table, int write, struct file *filp,
71 void __user *buffer, size_t *lenp, loff_t *ppos)
73 files_stat.nr_files = get_nr_files();
74 return proc_dointvec(table, write, filp, buffer, lenp, ppos);
76 #else
77 int proc_nr_files(ctl_table *table, int write, struct file *filp,
78 void __user *buffer, size_t *lenp, loff_t *ppos)
80 return -ENOSYS;
82 #endif
84 /* Find an unused file structure and return a pointer to it.
85 * Returns NULL, if there are no more free file structures or
86 * we run out of memory.
88 struct file *get_empty_filp(void)
90 struct task_struct *tsk;
91 static int old_max;
92 struct file * f;
95 * Privileged users can go above max_files
97 if (get_nr_files() >= files_stat.max_files && !capable(CAP_SYS_ADMIN)) {
99 * percpu_counters are inaccurate. Do an expensive check before
100 * we go and fail.
102 if (percpu_counter_sum(&nr_files) >= files_stat.max_files)
103 goto over;
106 f = kmem_cache_alloc(filp_cachep, GFP_KERNEL);
107 if (f == NULL)
108 goto fail;
110 percpu_counter_inc(&nr_files);
111 memset(f, 0, sizeof(*f));
112 if (security_file_alloc(f))
113 goto fail_sec;
115 tsk = current;
116 INIT_LIST_HEAD(&f->f_u.fu_list);
117 atomic_set(&f->f_count, 1);
118 rwlock_init(&f->f_owner.lock);
119 f->f_uid = tsk->fsuid;
120 f->f_gid = tsk->fsgid;
121 eventpoll_init_file(f);
122 /* f->f_version: 0 */
123 return f;
125 over:
126 /* Ran out of filps - report that */
127 if (get_nr_files() > old_max) {
128 printk(KERN_INFO "VFS: file-max limit %d reached\n",
129 get_max_files());
130 old_max = get_nr_files();
132 goto fail;
134 fail_sec:
135 file_free(f);
136 fail:
137 return NULL;
140 EXPORT_SYMBOL(get_empty_filp);
142 void fastcall fput(struct file *file)
144 if (atomic_dec_and_test(&file->f_count))
145 __fput(file);
148 EXPORT_SYMBOL(fput);
150 /* __fput is called from task context when aio completion releases the last
151 * last use of a struct file *. Do not use otherwise.
153 void fastcall __fput(struct file *file)
155 struct dentry *dentry = file->f_dentry;
156 struct vfsmount *mnt = file->f_vfsmnt;
157 struct inode *inode = dentry->d_inode;
159 might_sleep();
161 fsnotify_close(file);
163 * The function eventpoll_release() should be the first called
164 * in the file cleanup chain.
166 eventpoll_release(file);
167 locks_remove_flock(file);
169 if (file->f_op && file->f_op->release)
170 file->f_op->release(inode, file);
171 security_file_free(file);
172 #if 0 // mask by Victor Yu. 02-12-2007
173 if (unlikely(S_ISCHR(inode->i_mode) && inode->i_cdev != NULL))
174 cdev_put(inode->i_cdev);
175 #else
176 if (unlikely(S_ISCHR(inode->i_mode) && inode->u.i_cdev != NULL))
177 cdev_put(inode->u.i_cdev);
178 #endif
179 fops_put(file->f_op);
180 if (file->f_mode & FMODE_WRITE)
181 put_write_access(inode);
182 put_pid(file->f_owner.pid);
183 file_kill(file);
184 file->f_dentry = NULL;
185 file->f_vfsmnt = NULL;
186 file_free(file);
187 dput(dentry);
188 mntput(mnt);
191 struct file fastcall *fget(unsigned int fd)
193 struct file *file;
194 struct files_struct *files = current->files;
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;
205 rcu_read_unlock();
207 return file;
210 EXPORT_SYMBOL(fget);
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.
219 struct file fastcall *fget_light(unsigned int fd, int *fput_needed)
221 struct file *file;
222 struct files_struct *files = current->files;
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;
237 rcu_read_unlock();
240 return file;
244 void put_filp(struct file *file)
246 if (atomic_dec_and_test(&file->f_count)) {
247 security_file_free(file);
248 file_kill(file);
249 file_free(file);
253 void file_move(struct file *file, struct list_head *list)
255 if (!list)
256 return;
257 file_list_lock();
258 list_move(&file->f_u.fu_list, list);
259 file_list_unlock();
262 void file_kill(struct file *file)
264 if (!list_empty(&file->f_u.fu_list)) {
265 file_list_lock();
266 list_del_init(&file->f_u.fu_list);
267 file_list_unlock();
271 int fs_may_remount_ro(struct super_block *sb)
273 struct list_head *p;
275 /* Check that no files are currently opened for writing. */
276 file_list_lock();
277 list_for_each(p, &sb->s_files) {
278 struct file *file = list_entry(p, struct file, f_u.fu_list);
279 struct inode *inode = file->f_dentry->d_inode;
281 /* File with pending delete? */
282 if (inode->i_nlink == 0)
283 goto too_bad;
285 /* Writeable file? */
286 if (S_ISREG(inode->i_mode) && (file->f_mode & FMODE_WRITE))
287 goto too_bad;
289 file_list_unlock();
290 return 1; /* Tis' cool bro. */
291 too_bad:
292 file_list_unlock();
293 return 0;
296 void __init files_init(unsigned long mempages)
298 int n;
299 /* One file with associated inode and dcache is very roughly 1K.
300 * Per default don't use more than 10% of our memory for files.
303 n = (mempages * (PAGE_SIZE / 1024)) / 10;
304 files_stat.max_files = n;
305 if (files_stat.max_files < NR_FILE)
306 files_stat.max_files = NR_FILE;
307 files_defer_init();
308 percpu_counter_init(&nr_files, 0);