blob: 0be423cadb266fb09e319a35c7c2c667e0bc25e4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/file.c
3 *
4 * Copyright (C) 1998-1999, Stephen Tweedie and Bill Hawes
5 *
6 * Manage the dynamic fd arrays in the process files_struct.
7 */
8
Paul Gortmaker630d9c42011-11-16 23:57:37 -05009#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/fs.h>
11#include <linux/mm.h>
Andrew Morton6d4831c2011-04-27 15:26:41 -070012#include <linux/mmzone.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/time.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040014#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/slab.h>
16#include <linux/vmalloc.h>
17#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040018#include <linux/fdtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/bitops.h>
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070020#include <linux/interrupt.h>
21#include <linux/spinlock.h>
22#include <linux/rcupdate.h>
23#include <linux/workqueue.h>
24
25struct fdtable_defer {
26 spinlock_t lock;
27 struct work_struct wq;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070028 struct fdtable *next;
29};
30
Eric Dumazet9cfe0152008-02-06 01:37:16 -080031int sysctl_nr_open __read_mostly = 1024*1024;
Al Viroeceea0b2008-05-10 10:08:32 -040032int sysctl_nr_open_min = BITS_PER_LONG;
33int sysctl_nr_open_max = 1024 * 1024; /* raised later */
Eric Dumazet9cfe0152008-02-06 01:37:16 -080034
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070035/*
36 * We use this list to defer free fdtables that have vmalloced
37 * sets/arrays. By keeping a per-cpu list, we avoid having to embed
38 * the work_struct in fdtable itself which avoids a 64 byte (i386) increase in
39 * this per-task structure.
40 */
41static DEFINE_PER_CPU(struct fdtable_defer, fdtable_defer_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
David Howells1fd36ad2012-02-16 17:49:54 +000043static void *alloc_fdmem(size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
Andrew Morton6d4831c2011-04-27 15:26:41 -070045 /*
46 * Very large allocations can stress page reclaim, so fall back to
47 * vmalloc() if the allocation size will be considered "large" by the VM.
48 */
49 if (size <= (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER)) {
50 void *data = kmalloc(size, GFP_KERNEL|__GFP_NOWARN);
51 if (data != NULL)
52 return data;
53 }
Changli Gaoa892e2d2010-08-10 18:01:35 -070054 return vmalloc(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055}
56
Changli Gaoa892e2d2010-08-10 18:01:35 -070057static void free_fdmem(void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
Changli Gaoa892e2d2010-08-10 18:01:35 -070059 is_vmalloc_addr(ptr) ? vfree(ptr) : kfree(ptr);
Vadim Lobanov5466b452006-12-10 02:21:22 -080060}
61
Changli Gaoa892e2d2010-08-10 18:01:35 -070062static void __free_fdtable(struct fdtable *fdt)
Vadim Lobanov5466b452006-12-10 02:21:22 -080063{
Changli Gaoa892e2d2010-08-10 18:01:35 -070064 free_fdmem(fdt->fd);
65 free_fdmem(fdt->open_fds);
66 kfree(fdt);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070067}
68
David Howells65f27f32006-11-22 14:55:48 +000069static void free_fdtable_work(struct work_struct *work)
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070070{
David Howells65f27f32006-11-22 14:55:48 +000071 struct fdtable_defer *f =
72 container_of(work, struct fdtable_defer, wq);
Dipankar Sarmabadf1662005-09-09 13:04:10 -070073 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070075 spin_lock_bh(&f->lock);
76 fdt = f->next;
77 f->next = NULL;
78 spin_unlock_bh(&f->lock);
79 while(fdt) {
80 struct fdtable *next = fdt->next;
Changli Gaoa892e2d2010-08-10 18:01:35 -070081
82 __free_fdtable(fdt);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070083 fdt = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 }
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070085}
86
Al Viro7cf4dc32012-08-15 19:56:12 -040087static void free_fdtable_rcu(struct rcu_head *rcu)
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070088{
89 struct fdtable *fdt = container_of(rcu, struct fdtable, rcu);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070090 struct fdtable_defer *fddef;
91
92 BUG_ON(!fdt);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070093
Vadim Lobanov4fd45812006-12-10 02:21:17 -080094 if (fdt->max_fds <= NR_OPEN_DEFAULT) {
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070095 /*
Vadim Lobanov4fd45812006-12-10 02:21:17 -080096 * This fdtable is embedded in the files structure and that
97 * structure itself is getting destroyed.
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070098 */
Vadim Lobanov4fd45812006-12-10 02:21:17 -080099 kmem_cache_free(files_cachep,
100 container_of(fdt, struct files_struct, fdtab));
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700101 return;
102 }
Changli Gaoa892e2d2010-08-10 18:01:35 -0700103 if (!is_vmalloc_addr(fdt->fd) && !is_vmalloc_addr(fdt->open_fds)) {
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700104 kfree(fdt->fd);
Vadim Lobanov5466b452006-12-10 02:21:22 -0800105 kfree(fdt->open_fds);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700106 kfree(fdt);
107 } else {
108 fddef = &get_cpu_var(fdtable_defer_list);
109 spin_lock(&fddef->lock);
110 fdt->next = fddef->next;
111 fddef->next = fdt;
Tejun Heo593be072006-12-06 20:36:01 -0800112 /* vmallocs are handled from the workqueue context */
113 schedule_work(&fddef->wq);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700114 spin_unlock(&fddef->lock);
115 put_cpu_var(fdtable_defer_list);
116 }
117}
118
Al Viro7cf4dc32012-08-15 19:56:12 -0400119static inline void free_fdtable(struct fdtable *fdt)
120{
121 call_rcu(&fdt->rcu, free_fdtable_rcu);
122}
123
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700124/*
125 * Expand the fdset in the files_struct. Called with the files spinlock
126 * held for write.
127 */
Vadim Lobanov5466b452006-12-10 02:21:22 -0800128static void copy_fdtable(struct fdtable *nfdt, struct fdtable *ofdt)
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700129{
Vadim Lobanov5466b452006-12-10 02:21:22 -0800130 unsigned int cpy, set;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700131
Vadim Lobanov5466b452006-12-10 02:21:22 -0800132 BUG_ON(nfdt->max_fds < ofdt->max_fds);
Vadim Lobanov5466b452006-12-10 02:21:22 -0800133
134 cpy = ofdt->max_fds * sizeof(struct file *);
135 set = (nfdt->max_fds - ofdt->max_fds) * sizeof(struct file *);
136 memcpy(nfdt->fd, ofdt->fd, cpy);
137 memset((char *)(nfdt->fd) + cpy, 0, set);
138
139 cpy = ofdt->max_fds / BITS_PER_BYTE;
140 set = (nfdt->max_fds - ofdt->max_fds) / BITS_PER_BYTE;
141 memcpy(nfdt->open_fds, ofdt->open_fds, cpy);
142 memset((char *)(nfdt->open_fds) + cpy, 0, set);
143 memcpy(nfdt->close_on_exec, ofdt->close_on_exec, cpy);
144 memset((char *)(nfdt->close_on_exec) + cpy, 0, set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
Vadim Lobanov5466b452006-12-10 02:21:22 -0800147static struct fdtable * alloc_fdtable(unsigned int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Vadim Lobanov5466b452006-12-10 02:21:22 -0800149 struct fdtable *fdt;
David Howells1fd36ad2012-02-16 17:49:54 +0000150 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700152 /*
Vadim Lobanov5466b452006-12-10 02:21:22 -0800153 * Figure out how many fds we actually want to support in this fdtable.
154 * Allocation steps are keyed to the size of the fdarray, since it
155 * grows far faster than any of the other dynamic data. We try to fit
156 * the fdarray into comfortable page-tuned chunks: starting at 1024B
157 * and growing in powers of two from there on.
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700158 */
Vadim Lobanov5466b452006-12-10 02:21:22 -0800159 nr /= (1024 / sizeof(struct file *));
160 nr = roundup_pow_of_two(nr + 1);
161 nr *= (1024 / sizeof(struct file *));
Al Viro5c598b32008-04-27 20:04:15 -0400162 /*
163 * Note that this can drive nr *below* what we had passed if sysctl_nr_open
164 * had been set lower between the check in expand_files() and here. Deal
165 * with that in caller, it's cheaper that way.
166 *
167 * We make sure that nr remains a multiple of BITS_PER_LONG - otherwise
168 * bitmaps handling below becomes unpleasant, to put it mildly...
169 */
170 if (unlikely(nr > sysctl_nr_open))
171 nr = ((sysctl_nr_open - 1) | (BITS_PER_LONG - 1)) + 1;
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800172
Vadim Lobanov5466b452006-12-10 02:21:22 -0800173 fdt = kmalloc(sizeof(struct fdtable), GFP_KERNEL);
174 if (!fdt)
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800175 goto out;
Vadim Lobanov5466b452006-12-10 02:21:22 -0800176 fdt->max_fds = nr;
177 data = alloc_fdmem(nr * sizeof(struct file *));
178 if (!data)
179 goto out_fdt;
David Howells1fd36ad2012-02-16 17:49:54 +0000180 fdt->fd = data;
181
182 data = alloc_fdmem(max_t(size_t,
Vadim Lobanov5466b452006-12-10 02:21:22 -0800183 2 * nr / BITS_PER_BYTE, L1_CACHE_BYTES));
184 if (!data)
185 goto out_arr;
David Howells1fd36ad2012-02-16 17:49:54 +0000186 fdt->open_fds = data;
Vadim Lobanov5466b452006-12-10 02:21:22 -0800187 data += nr / BITS_PER_BYTE;
David Howells1fd36ad2012-02-16 17:49:54 +0000188 fdt->close_on_exec = data;
Vadim Lobanov5466b452006-12-10 02:21:22 -0800189 fdt->next = NULL;
190
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700191 return fdt;
Vadim Lobanov5466b452006-12-10 02:21:22 -0800192
193out_arr:
Changli Gaoa892e2d2010-08-10 18:01:35 -0700194 free_fdmem(fdt->fd);
Vadim Lobanov5466b452006-12-10 02:21:22 -0800195out_fdt:
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700196 kfree(fdt);
Vadim Lobanov5466b452006-12-10 02:21:22 -0800197out:
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700198 return NULL;
199}
200
201/*
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700202 * Expand the file descriptor table.
203 * This function will allocate a new fdtable and both fd array and fdset, of
204 * the given size.
205 * Return <0 error code on error; 1 on successful completion.
206 * The files->file_lock should be held on entry, and will be held on exit.
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700207 */
208static int expand_fdtable(struct files_struct *files, int nr)
209 __releases(files->file_lock)
210 __acquires(files->file_lock)
211{
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700212 struct fdtable *new_fdt, *cur_fdt;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 spin_unlock(&files->file_lock);
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700215 new_fdt = alloc_fdtable(nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 spin_lock(&files->file_lock);
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700217 if (!new_fdt)
218 return -ENOMEM;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700219 /*
Al Viro5c598b32008-04-27 20:04:15 -0400220 * extremely unlikely race - sysctl_nr_open decreased between the check in
221 * caller and alloc_fdtable(). Cheaper to catch it here...
222 */
223 if (unlikely(new_fdt->max_fds <= nr)) {
Changli Gaoa892e2d2010-08-10 18:01:35 -0700224 __free_fdtable(new_fdt);
Al Viro5c598b32008-04-27 20:04:15 -0400225 return -EMFILE;
226 }
227 /*
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700228 * Check again since another task may have expanded the fd table while
229 * we dropped the lock
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700230 */
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700231 cur_fdt = files_fdtable(files);
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800232 if (nr >= cur_fdt->max_fds) {
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700233 /* Continue as planned */
234 copy_fdtable(new_fdt, cur_fdt);
235 rcu_assign_pointer(files->fdt, new_fdt);
Vadim Lobanov4fd45812006-12-10 02:21:17 -0800236 if (cur_fdt->max_fds > NR_OPEN_DEFAULT)
Vadim Lobanov01b2d932006-12-22 01:10:43 -0800237 free_fdtable(cur_fdt);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700238 } else {
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700239 /* Somebody else expanded, so undo our attempt */
Changli Gaoa892e2d2010-08-10 18:01:35 -0700240 __free_fdtable(new_fdt);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700241 }
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700242 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
245/*
246 * Expand files.
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700247 * This function will expand the file structures, if the requested size exceeds
248 * the current capacity and there is room for expansion.
249 * Return <0 error code on error; 0 when nothing done; 1 when files were
250 * expanded and execution may have blocked.
251 * The files->file_lock should be held on entry, and will be held on exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 */
253int expand_files(struct files_struct *files, int nr)
254{
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700255 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700257 fdt = files_fdtable(files);
Al Viro4e1e0182008-07-26 16:01:20 -0400258
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700259 /* Do we need to expand? */
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800260 if (nr < fdt->max_fds)
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700261 return 0;
Al Viro4e1e0182008-07-26 16:01:20 -0400262
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700263 /* Can we expand? */
Eric Dumazet9cfe0152008-02-06 01:37:16 -0800264 if (nr >= sysctl_nr_open)
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700265 return -EMFILE;
266
267 /* All good, so we try */
268 return expand_fdtable(files, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700270
Al Viro02afc6262008-05-08 19:42:56 -0400271static int count_open_files(struct fdtable *fdt)
272{
273 int size = fdt->max_fds;
274 int i;
275
276 /* Find the last open fd */
David Howells1fd36ad2012-02-16 17:49:54 +0000277 for (i = size / BITS_PER_LONG; i > 0; ) {
278 if (fdt->open_fds[--i])
Al Viro02afc6262008-05-08 19:42:56 -0400279 break;
280 }
David Howells1fd36ad2012-02-16 17:49:54 +0000281 i = (i + 1) * BITS_PER_LONG;
Al Viro02afc6262008-05-08 19:42:56 -0400282 return i;
283}
284
Al Viro02afc6262008-05-08 19:42:56 -0400285/*
286 * Allocate a new files structure and copy contents from the
287 * passed in files structure.
288 * errorp will be valid only when the returned files_struct is NULL.
289 */
290struct files_struct *dup_fd(struct files_struct *oldf, int *errorp)
291{
292 struct files_struct *newf;
293 struct file **old_fds, **new_fds;
294 int open_files, size, i;
295 struct fdtable *old_fdt, *new_fdt;
296
297 *errorp = -ENOMEM;
Al Viroafbec7f2008-05-08 21:11:17 -0400298 newf = kmem_cache_alloc(files_cachep, GFP_KERNEL);
Al Viro02afc6262008-05-08 19:42:56 -0400299 if (!newf)
300 goto out;
301
Al Viroafbec7f2008-05-08 21:11:17 -0400302 atomic_set(&newf->count, 1);
303
304 spin_lock_init(&newf->file_lock);
305 newf->next_fd = 0;
306 new_fdt = &newf->fdtab;
307 new_fdt->max_fds = NR_OPEN_DEFAULT;
David Howells1fd36ad2012-02-16 17:49:54 +0000308 new_fdt->close_on_exec = newf->close_on_exec_init;
309 new_fdt->open_fds = newf->open_fds_init;
Al Viroafbec7f2008-05-08 21:11:17 -0400310 new_fdt->fd = &newf->fd_array[0];
Al Viroafbec7f2008-05-08 21:11:17 -0400311 new_fdt->next = NULL;
312
Al Viro02afc6262008-05-08 19:42:56 -0400313 spin_lock(&oldf->file_lock);
314 old_fdt = files_fdtable(oldf);
Al Viro02afc6262008-05-08 19:42:56 -0400315 open_files = count_open_files(old_fdt);
316
317 /*
318 * Check whether we need to allocate a larger fd array and fd set.
Al Viro02afc6262008-05-08 19:42:56 -0400319 */
Al Viroadbecb12008-05-08 21:19:42 -0400320 while (unlikely(open_files > new_fdt->max_fds)) {
Al Viro02afc6262008-05-08 19:42:56 -0400321 spin_unlock(&oldf->file_lock);
Al Viro9dec3c42008-05-08 21:02:45 -0400322
Changli Gaoa892e2d2010-08-10 18:01:35 -0700323 if (new_fdt != &newf->fdtab)
324 __free_fdtable(new_fdt);
Al Viroadbecb12008-05-08 21:19:42 -0400325
Al Viro9dec3c42008-05-08 21:02:45 -0400326 new_fdt = alloc_fdtable(open_files - 1);
327 if (!new_fdt) {
328 *errorp = -ENOMEM;
Al Viro02afc6262008-05-08 19:42:56 -0400329 goto out_release;
Al Viro9dec3c42008-05-08 21:02:45 -0400330 }
331
332 /* beyond sysctl_nr_open; nothing to do */
333 if (unlikely(new_fdt->max_fds < open_files)) {
Changli Gaoa892e2d2010-08-10 18:01:35 -0700334 __free_fdtable(new_fdt);
Al Viro9dec3c42008-05-08 21:02:45 -0400335 *errorp = -EMFILE;
336 goto out_release;
337 }
Al Viro9dec3c42008-05-08 21:02:45 -0400338
Al Viro02afc6262008-05-08 19:42:56 -0400339 /*
340 * Reacquire the oldf lock and a pointer to its fd table
341 * who knows it may have a new bigger fd table. We need
342 * the latest pointer.
343 */
344 spin_lock(&oldf->file_lock);
345 old_fdt = files_fdtable(oldf);
Al Viroadbecb12008-05-08 21:19:42 -0400346 open_files = count_open_files(old_fdt);
Al Viro02afc6262008-05-08 19:42:56 -0400347 }
348
349 old_fds = old_fdt->fd;
350 new_fds = new_fdt->fd;
351
David Howells1fd36ad2012-02-16 17:49:54 +0000352 memcpy(new_fdt->open_fds, old_fdt->open_fds, open_files / 8);
353 memcpy(new_fdt->close_on_exec, old_fdt->close_on_exec, open_files / 8);
Al Viro02afc6262008-05-08 19:42:56 -0400354
355 for (i = open_files; i != 0; i--) {
356 struct file *f = *old_fds++;
357 if (f) {
358 get_file(f);
359 } else {
360 /*
361 * The fd may be claimed in the fd bitmap but not yet
362 * instantiated in the files array if a sibling thread
363 * is partway through open(). So make sure that this
364 * fd is available to the new process.
365 */
David Howells1dce27c2012-02-16 17:49:42 +0000366 __clear_open_fd(open_files - i, new_fdt);
Al Viro02afc6262008-05-08 19:42:56 -0400367 }
368 rcu_assign_pointer(*new_fds++, f);
369 }
370 spin_unlock(&oldf->file_lock);
371
372 /* compute the remainder to be cleared */
373 size = (new_fdt->max_fds - open_files) * sizeof(struct file *);
374
375 /* This is long word aligned thus could use a optimized version */
376 memset(new_fds, 0, size);
377
378 if (new_fdt->max_fds > open_files) {
David Howells1fd36ad2012-02-16 17:49:54 +0000379 int left = (new_fdt->max_fds - open_files) / 8;
380 int start = open_files / BITS_PER_LONG;
Al Viro02afc6262008-05-08 19:42:56 -0400381
David Howells1fd36ad2012-02-16 17:49:54 +0000382 memset(&new_fdt->open_fds[start], 0, left);
383 memset(&new_fdt->close_on_exec[start], 0, left);
Al Viro02afc6262008-05-08 19:42:56 -0400384 }
385
Al Viroafbec7f2008-05-08 21:11:17 -0400386 rcu_assign_pointer(newf->fdt, new_fdt);
387
Al Viro02afc6262008-05-08 19:42:56 -0400388 return newf;
389
390out_release:
391 kmem_cache_free(files_cachep, newf);
392out:
393 return NULL;
394}
395
Al Viro7cf4dc32012-08-15 19:56:12 -0400396static void close_files(struct files_struct * files)
397{
398 int i, j;
399 struct fdtable *fdt;
400
401 j = 0;
402
403 /*
404 * It is safe to dereference the fd table without RCU or
405 * ->file_lock because this is the last reference to the
406 * files structure. But use RCU to shut RCU-lockdep up.
407 */
408 rcu_read_lock();
409 fdt = files_fdtable(files);
410 rcu_read_unlock();
411 for (;;) {
412 unsigned long set;
413 i = j * BITS_PER_LONG;
414 if (i >= fdt->max_fds)
415 break;
416 set = fdt->open_fds[j++];
417 while (set) {
418 if (set & 1) {
419 struct file * file = xchg(&fdt->fd[i], NULL);
420 if (file) {
421 filp_close(file, files);
422 cond_resched();
423 }
424 }
425 i++;
426 set >>= 1;
427 }
428 }
429}
430
431struct files_struct *get_files_struct(struct task_struct *task)
432{
433 struct files_struct *files;
434
435 task_lock(task);
436 files = task->files;
437 if (files)
438 atomic_inc(&files->count);
439 task_unlock(task);
440
441 return files;
442}
443
444void put_files_struct(struct files_struct *files)
445{
446 struct fdtable *fdt;
447
448 if (atomic_dec_and_test(&files->count)) {
449 close_files(files);
450 /*
451 * Free the fd and fdset arrays if we expanded them.
452 * If the fdtable was embedded, pass files for freeing
453 * at the end of the RCU grace period. Otherwise,
454 * you can free files immediately.
455 */
456 rcu_read_lock();
457 fdt = files_fdtable(files);
458 if (fdt != &files->fdtab)
459 kmem_cache_free(files_cachep, files);
460 free_fdtable(fdt);
461 rcu_read_unlock();
462 }
463}
464
465void reset_files_struct(struct files_struct *files)
466{
467 struct task_struct *tsk = current;
468 struct files_struct *old;
469
470 old = tsk->files;
471 task_lock(tsk);
472 tsk->files = files;
473 task_unlock(tsk);
474 put_files_struct(old);
475}
476
477void exit_files(struct task_struct *tsk)
478{
479 struct files_struct * files = tsk->files;
480
481 if (files) {
482 task_lock(tsk);
483 tsk->files = NULL;
484 task_unlock(tsk);
485 put_files_struct(files);
486 }
487}
488
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700489static void __devinit fdtable_defer_list_init(int cpu)
490{
491 struct fdtable_defer *fddef = &per_cpu(fdtable_defer_list, cpu);
492 spin_lock_init(&fddef->lock);
David Howells65f27f32006-11-22 14:55:48 +0000493 INIT_WORK(&fddef->wq, free_fdtable_work);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700494 fddef->next = NULL;
495}
496
497void __init files_defer_init(void)
498{
499 int i;
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -0800500 for_each_possible_cpu(i)
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700501 fdtable_defer_list_init(i);
Al Viroeceea0b2008-05-10 10:08:32 -0400502 sysctl_nr_open_max = min((size_t)INT_MAX, ~(size_t)0/sizeof(void *)) &
503 -BITS_PER_LONG;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700504}
Al Virof52111b2008-05-08 18:19:16 -0400505
506struct files_struct init_files = {
507 .count = ATOMIC_INIT(1),
508 .fdt = &init_files.fdtab,
509 .fdtab = {
510 .max_fds = NR_OPEN_DEFAULT,
511 .fd = &init_files.fd_array[0],
David Howells1fd36ad2012-02-16 17:49:54 +0000512 .close_on_exec = init_files.close_on_exec_init,
513 .open_fds = init_files.open_fds_init,
Al Virof52111b2008-05-08 18:19:16 -0400514 },
515 .file_lock = __SPIN_LOCK_UNLOCKED(init_task.file_lock),
516};
Al Viro1027abe2008-07-30 04:13:04 -0400517
518/*
519 * allocate a file descriptor, mark it busy.
520 */
Al Virodcfadfa2012-08-12 17:27:30 -0400521int __alloc_fd(struct files_struct *files,
522 unsigned start, unsigned end, unsigned flags)
Al Viro1027abe2008-07-30 04:13:04 -0400523{
Al Viro1027abe2008-07-30 04:13:04 -0400524 unsigned int fd;
525 int error;
526 struct fdtable *fdt;
527
528 spin_lock(&files->file_lock);
529repeat:
530 fdt = files_fdtable(files);
531 fd = start;
532 if (fd < files->next_fd)
533 fd = files->next_fd;
534
535 if (fd < fdt->max_fds)
David Howells1fd36ad2012-02-16 17:49:54 +0000536 fd = find_next_zero_bit(fdt->open_fds, fdt->max_fds, fd);
Al Viro1027abe2008-07-30 04:13:04 -0400537
Al Virof33ff992012-08-12 16:17:59 -0400538 /*
539 * N.B. For clone tasks sharing a files structure, this test
540 * will limit the total number of files that can be opened.
541 */
542 error = -EMFILE;
543 if (fd >= end)
544 goto out;
545
Al Viro1027abe2008-07-30 04:13:04 -0400546 error = expand_files(files, fd);
547 if (error < 0)
548 goto out;
549
550 /*
551 * If we needed to expand the fs array we
552 * might have blocked - try again.
553 */
554 if (error)
555 goto repeat;
556
557 if (start <= files->next_fd)
558 files->next_fd = fd + 1;
559
David Howells1dce27c2012-02-16 17:49:42 +0000560 __set_open_fd(fd, fdt);
Al Viro1027abe2008-07-30 04:13:04 -0400561 if (flags & O_CLOEXEC)
David Howells1dce27c2012-02-16 17:49:42 +0000562 __set_close_on_exec(fd, fdt);
Al Viro1027abe2008-07-30 04:13:04 -0400563 else
David Howells1dce27c2012-02-16 17:49:42 +0000564 __clear_close_on_exec(fd, fdt);
Al Viro1027abe2008-07-30 04:13:04 -0400565 error = fd;
566#if 1
567 /* Sanity check */
Paul E. McKenney7dc52152010-02-22 17:04:52 -0800568 if (rcu_dereference_raw(fdt->fd[fd]) != NULL) {
Al Viro1027abe2008-07-30 04:13:04 -0400569 printk(KERN_WARNING "alloc_fd: slot %d not NULL!\n", fd);
570 rcu_assign_pointer(fdt->fd[fd], NULL);
571 }
572#endif
573
574out:
575 spin_unlock(&files->file_lock);
576 return error;
577}
578
Al Virodcfadfa2012-08-12 17:27:30 -0400579int alloc_fd(unsigned start, unsigned flags)
580{
581 return __alloc_fd(current->files, start, rlimit(RLIMIT_NOFILE), flags);
582}
583
Al Viro1a7bd222012-08-12 17:18:05 -0400584int get_unused_fd_flags(unsigned flags)
Al Viro1027abe2008-07-30 04:13:04 -0400585{
Al Virodcfadfa2012-08-12 17:27:30 -0400586 return __alloc_fd(current->files, 0, rlimit(RLIMIT_NOFILE), flags);
Al Viro1027abe2008-07-30 04:13:04 -0400587}
Al Viro1a7bd222012-08-12 17:18:05 -0400588EXPORT_SYMBOL(get_unused_fd_flags);