blob: a3a0705f8f5128d3131c7d32861286a9be41299d [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
Vadim Lobanov4fd45812006-12-10 02:21:17 -080087void 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
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700119/*
120 * Expand the fdset in the files_struct. Called with the files spinlock
121 * held for write.
122 */
Vadim Lobanov5466b452006-12-10 02:21:22 -0800123static void copy_fdtable(struct fdtable *nfdt, struct fdtable *ofdt)
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700124{
Vadim Lobanov5466b452006-12-10 02:21:22 -0800125 unsigned int cpy, set;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700126
Vadim Lobanov5466b452006-12-10 02:21:22 -0800127 BUG_ON(nfdt->max_fds < ofdt->max_fds);
Vadim Lobanov5466b452006-12-10 02:21:22 -0800128
129 cpy = ofdt->max_fds * sizeof(struct file *);
130 set = (nfdt->max_fds - ofdt->max_fds) * sizeof(struct file *);
131 memcpy(nfdt->fd, ofdt->fd, cpy);
132 memset((char *)(nfdt->fd) + cpy, 0, set);
133
134 cpy = ofdt->max_fds / BITS_PER_BYTE;
135 set = (nfdt->max_fds - ofdt->max_fds) / BITS_PER_BYTE;
136 memcpy(nfdt->open_fds, ofdt->open_fds, cpy);
137 memset((char *)(nfdt->open_fds) + cpy, 0, set);
138 memcpy(nfdt->close_on_exec, ofdt->close_on_exec, cpy);
139 memset((char *)(nfdt->close_on_exec) + cpy, 0, set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
Vadim Lobanov5466b452006-12-10 02:21:22 -0800142static struct fdtable * alloc_fdtable(unsigned int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Vadim Lobanov5466b452006-12-10 02:21:22 -0800144 struct fdtable *fdt;
David Howells1fd36ad2012-02-16 17:49:54 +0000145 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700147 /*
Vadim Lobanov5466b452006-12-10 02:21:22 -0800148 * Figure out how many fds we actually want to support in this fdtable.
149 * Allocation steps are keyed to the size of the fdarray, since it
150 * grows far faster than any of the other dynamic data. We try to fit
151 * the fdarray into comfortable page-tuned chunks: starting at 1024B
152 * and growing in powers of two from there on.
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700153 */
Vadim Lobanov5466b452006-12-10 02:21:22 -0800154 nr /= (1024 / sizeof(struct file *));
155 nr = roundup_pow_of_two(nr + 1);
156 nr *= (1024 / sizeof(struct file *));
Al Viro5c598b32008-04-27 20:04:15 -0400157 /*
158 * Note that this can drive nr *below* what we had passed if sysctl_nr_open
159 * had been set lower between the check in expand_files() and here. Deal
160 * with that in caller, it's cheaper that way.
161 *
162 * We make sure that nr remains a multiple of BITS_PER_LONG - otherwise
163 * bitmaps handling below becomes unpleasant, to put it mildly...
164 */
165 if (unlikely(nr > sysctl_nr_open))
166 nr = ((sysctl_nr_open - 1) | (BITS_PER_LONG - 1)) + 1;
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800167
Vadim Lobanov5466b452006-12-10 02:21:22 -0800168 fdt = kmalloc(sizeof(struct fdtable), GFP_KERNEL);
169 if (!fdt)
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800170 goto out;
Vadim Lobanov5466b452006-12-10 02:21:22 -0800171 fdt->max_fds = nr;
172 data = alloc_fdmem(nr * sizeof(struct file *));
173 if (!data)
174 goto out_fdt;
David Howells1fd36ad2012-02-16 17:49:54 +0000175 fdt->fd = data;
176
177 data = alloc_fdmem(max_t(size_t,
Vadim Lobanov5466b452006-12-10 02:21:22 -0800178 2 * nr / BITS_PER_BYTE, L1_CACHE_BYTES));
179 if (!data)
180 goto out_arr;
David Howells1fd36ad2012-02-16 17:49:54 +0000181 fdt->open_fds = data;
Vadim Lobanov5466b452006-12-10 02:21:22 -0800182 data += nr / BITS_PER_BYTE;
David Howells1fd36ad2012-02-16 17:49:54 +0000183 fdt->close_on_exec = data;
Vadim Lobanov5466b452006-12-10 02:21:22 -0800184 fdt->next = NULL;
185
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700186 return fdt;
Vadim Lobanov5466b452006-12-10 02:21:22 -0800187
188out_arr:
Changli Gaoa892e2d2010-08-10 18:01:35 -0700189 free_fdmem(fdt->fd);
Vadim Lobanov5466b452006-12-10 02:21:22 -0800190out_fdt:
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700191 kfree(fdt);
Vadim Lobanov5466b452006-12-10 02:21:22 -0800192out:
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700193 return NULL;
194}
195
196/*
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700197 * Expand the file descriptor table.
198 * This function will allocate a new fdtable and both fd array and fdset, of
199 * the given size.
200 * Return <0 error code on error; 1 on successful completion.
201 * The files->file_lock should be held on entry, and will be held on exit.
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700202 */
203static int expand_fdtable(struct files_struct *files, int nr)
204 __releases(files->file_lock)
205 __acquires(files->file_lock)
206{
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700207 struct fdtable *new_fdt, *cur_fdt;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 spin_unlock(&files->file_lock);
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700210 new_fdt = alloc_fdtable(nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 spin_lock(&files->file_lock);
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700212 if (!new_fdt)
213 return -ENOMEM;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700214 /*
Al Viro5c598b32008-04-27 20:04:15 -0400215 * extremely unlikely race - sysctl_nr_open decreased between the check in
216 * caller and alloc_fdtable(). Cheaper to catch it here...
217 */
218 if (unlikely(new_fdt->max_fds <= nr)) {
Changli Gaoa892e2d2010-08-10 18:01:35 -0700219 __free_fdtable(new_fdt);
Al Viro5c598b32008-04-27 20:04:15 -0400220 return -EMFILE;
221 }
222 /*
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700223 * Check again since another task may have expanded the fd table while
224 * we dropped the lock
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700225 */
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700226 cur_fdt = files_fdtable(files);
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800227 if (nr >= cur_fdt->max_fds) {
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700228 /* Continue as planned */
229 copy_fdtable(new_fdt, cur_fdt);
230 rcu_assign_pointer(files->fdt, new_fdt);
Vadim Lobanov4fd45812006-12-10 02:21:17 -0800231 if (cur_fdt->max_fds > NR_OPEN_DEFAULT)
Vadim Lobanov01b2d932006-12-22 01:10:43 -0800232 free_fdtable(cur_fdt);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700233 } else {
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700234 /* Somebody else expanded, so undo our attempt */
Changli Gaoa892e2d2010-08-10 18:01:35 -0700235 __free_fdtable(new_fdt);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700236 }
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700237 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
240/*
241 * Expand files.
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700242 * This function will expand the file structures, if the requested size exceeds
243 * the current capacity and there is room for expansion.
244 * Return <0 error code on error; 0 when nothing done; 1 when files were
245 * expanded and execution may have blocked.
246 * The files->file_lock should be held on entry, and will be held on exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 */
248int expand_files(struct files_struct *files, int nr)
249{
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700250 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700252 fdt = files_fdtable(files);
Al Viro4e1e0182008-07-26 16:01:20 -0400253
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700254 /* Do we need to expand? */
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800255 if (nr < fdt->max_fds)
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700256 return 0;
Al Viro4e1e0182008-07-26 16:01:20 -0400257
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700258 /* Can we expand? */
Eric Dumazet9cfe0152008-02-06 01:37:16 -0800259 if (nr >= sysctl_nr_open)
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700260 return -EMFILE;
261
262 /* All good, so we try */
263 return expand_fdtable(files, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700265
Al Viro02afc6262008-05-08 19:42:56 -0400266static int count_open_files(struct fdtable *fdt)
267{
268 int size = fdt->max_fds;
269 int i;
270
271 /* Find the last open fd */
David Howells1fd36ad2012-02-16 17:49:54 +0000272 for (i = size / BITS_PER_LONG; i > 0; ) {
273 if (fdt->open_fds[--i])
Al Viro02afc6262008-05-08 19:42:56 -0400274 break;
275 }
David Howells1fd36ad2012-02-16 17:49:54 +0000276 i = (i + 1) * BITS_PER_LONG;
Al Viro02afc6262008-05-08 19:42:56 -0400277 return i;
278}
279
Al Viro02afc6262008-05-08 19:42:56 -0400280/*
281 * Allocate a new files structure and copy contents from the
282 * passed in files structure.
283 * errorp will be valid only when the returned files_struct is NULL.
284 */
285struct files_struct *dup_fd(struct files_struct *oldf, int *errorp)
286{
287 struct files_struct *newf;
288 struct file **old_fds, **new_fds;
289 int open_files, size, i;
290 struct fdtable *old_fdt, *new_fdt;
291
292 *errorp = -ENOMEM;
Al Viroafbec7f2008-05-08 21:11:17 -0400293 newf = kmem_cache_alloc(files_cachep, GFP_KERNEL);
Al Viro02afc6262008-05-08 19:42:56 -0400294 if (!newf)
295 goto out;
296
Al Viroafbec7f2008-05-08 21:11:17 -0400297 atomic_set(&newf->count, 1);
298
299 spin_lock_init(&newf->file_lock);
300 newf->next_fd = 0;
301 new_fdt = &newf->fdtab;
302 new_fdt->max_fds = NR_OPEN_DEFAULT;
David Howells1fd36ad2012-02-16 17:49:54 +0000303 new_fdt->close_on_exec = newf->close_on_exec_init;
304 new_fdt->open_fds = newf->open_fds_init;
Al Viroafbec7f2008-05-08 21:11:17 -0400305 new_fdt->fd = &newf->fd_array[0];
Al Viroafbec7f2008-05-08 21:11:17 -0400306 new_fdt->next = NULL;
307
Al Viro02afc6262008-05-08 19:42:56 -0400308 spin_lock(&oldf->file_lock);
309 old_fdt = files_fdtable(oldf);
Al Viro02afc6262008-05-08 19:42:56 -0400310 open_files = count_open_files(old_fdt);
311
312 /*
313 * Check whether we need to allocate a larger fd array and fd set.
Al Viro02afc6262008-05-08 19:42:56 -0400314 */
Al Viroadbecb12008-05-08 21:19:42 -0400315 while (unlikely(open_files > new_fdt->max_fds)) {
Al Viro02afc6262008-05-08 19:42:56 -0400316 spin_unlock(&oldf->file_lock);
Al Viro9dec3c42008-05-08 21:02:45 -0400317
Changli Gaoa892e2d2010-08-10 18:01:35 -0700318 if (new_fdt != &newf->fdtab)
319 __free_fdtable(new_fdt);
Al Viroadbecb12008-05-08 21:19:42 -0400320
Al Viro9dec3c42008-05-08 21:02:45 -0400321 new_fdt = alloc_fdtable(open_files - 1);
322 if (!new_fdt) {
323 *errorp = -ENOMEM;
Al Viro02afc6262008-05-08 19:42:56 -0400324 goto out_release;
Al Viro9dec3c42008-05-08 21:02:45 -0400325 }
326
327 /* beyond sysctl_nr_open; nothing to do */
328 if (unlikely(new_fdt->max_fds < open_files)) {
Changli Gaoa892e2d2010-08-10 18:01:35 -0700329 __free_fdtable(new_fdt);
Al Viro9dec3c42008-05-08 21:02:45 -0400330 *errorp = -EMFILE;
331 goto out_release;
332 }
Al Viro9dec3c42008-05-08 21:02:45 -0400333
Al Viro02afc6262008-05-08 19:42:56 -0400334 /*
335 * Reacquire the oldf lock and a pointer to its fd table
336 * who knows it may have a new bigger fd table. We need
337 * the latest pointer.
338 */
339 spin_lock(&oldf->file_lock);
340 old_fdt = files_fdtable(oldf);
Al Viroadbecb12008-05-08 21:19:42 -0400341 open_files = count_open_files(old_fdt);
Al Viro02afc6262008-05-08 19:42:56 -0400342 }
343
344 old_fds = old_fdt->fd;
345 new_fds = new_fdt->fd;
346
David Howells1fd36ad2012-02-16 17:49:54 +0000347 memcpy(new_fdt->open_fds, old_fdt->open_fds, open_files / 8);
348 memcpy(new_fdt->close_on_exec, old_fdt->close_on_exec, open_files / 8);
Al Viro02afc6262008-05-08 19:42:56 -0400349
350 for (i = open_files; i != 0; i--) {
351 struct file *f = *old_fds++;
352 if (f) {
353 get_file(f);
354 } else {
355 /*
356 * The fd may be claimed in the fd bitmap but not yet
357 * instantiated in the files array if a sibling thread
358 * is partway through open(). So make sure that this
359 * fd is available to the new process.
360 */
David Howells1dce27c2012-02-16 17:49:42 +0000361 __clear_open_fd(open_files - i, new_fdt);
Al Viro02afc6262008-05-08 19:42:56 -0400362 }
363 rcu_assign_pointer(*new_fds++, f);
364 }
365 spin_unlock(&oldf->file_lock);
366
367 /* compute the remainder to be cleared */
368 size = (new_fdt->max_fds - open_files) * sizeof(struct file *);
369
370 /* This is long word aligned thus could use a optimized version */
371 memset(new_fds, 0, size);
372
373 if (new_fdt->max_fds > open_files) {
David Howells1fd36ad2012-02-16 17:49:54 +0000374 int left = (new_fdt->max_fds - open_files) / 8;
375 int start = open_files / BITS_PER_LONG;
Al Viro02afc6262008-05-08 19:42:56 -0400376
David Howells1fd36ad2012-02-16 17:49:54 +0000377 memset(&new_fdt->open_fds[start], 0, left);
378 memset(&new_fdt->close_on_exec[start], 0, left);
Al Viro02afc6262008-05-08 19:42:56 -0400379 }
380
Al Viroafbec7f2008-05-08 21:11:17 -0400381 rcu_assign_pointer(newf->fdt, new_fdt);
382
Al Viro02afc6262008-05-08 19:42:56 -0400383 return newf;
384
385out_release:
386 kmem_cache_free(files_cachep, newf);
387out:
388 return NULL;
389}
390
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700391static void __devinit fdtable_defer_list_init(int cpu)
392{
393 struct fdtable_defer *fddef = &per_cpu(fdtable_defer_list, cpu);
394 spin_lock_init(&fddef->lock);
David Howells65f27f32006-11-22 14:55:48 +0000395 INIT_WORK(&fddef->wq, free_fdtable_work);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700396 fddef->next = NULL;
397}
398
399void __init files_defer_init(void)
400{
401 int i;
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -0800402 for_each_possible_cpu(i)
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700403 fdtable_defer_list_init(i);
Al Viroeceea0b2008-05-10 10:08:32 -0400404 sysctl_nr_open_max = min((size_t)INT_MAX, ~(size_t)0/sizeof(void *)) &
405 -BITS_PER_LONG;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700406}
Al Virof52111b2008-05-08 18:19:16 -0400407
408struct files_struct init_files = {
409 .count = ATOMIC_INIT(1),
410 .fdt = &init_files.fdtab,
411 .fdtab = {
412 .max_fds = NR_OPEN_DEFAULT,
413 .fd = &init_files.fd_array[0],
David Howells1fd36ad2012-02-16 17:49:54 +0000414 .close_on_exec = init_files.close_on_exec_init,
415 .open_fds = init_files.open_fds_init,
Al Virof52111b2008-05-08 18:19:16 -0400416 },
417 .file_lock = __SPIN_LOCK_UNLOCKED(init_task.file_lock),
418};
Al Viro1027abe2008-07-30 04:13:04 -0400419
420/*
421 * allocate a file descriptor, mark it busy.
422 */
Al Virodcfadfa2012-08-12 17:27:30 -0400423int __alloc_fd(struct files_struct *files,
424 unsigned start, unsigned end, unsigned flags)
Al Viro1027abe2008-07-30 04:13:04 -0400425{
Al Viro1027abe2008-07-30 04:13:04 -0400426 unsigned int fd;
427 int error;
428 struct fdtable *fdt;
429
430 spin_lock(&files->file_lock);
431repeat:
432 fdt = files_fdtable(files);
433 fd = start;
434 if (fd < files->next_fd)
435 fd = files->next_fd;
436
437 if (fd < fdt->max_fds)
David Howells1fd36ad2012-02-16 17:49:54 +0000438 fd = find_next_zero_bit(fdt->open_fds, fdt->max_fds, fd);
Al Viro1027abe2008-07-30 04:13:04 -0400439
Al Virof33ff992012-08-12 16:17:59 -0400440 /*
441 * N.B. For clone tasks sharing a files structure, this test
442 * will limit the total number of files that can be opened.
443 */
444 error = -EMFILE;
445 if (fd >= end)
446 goto out;
447
Al Viro1027abe2008-07-30 04:13:04 -0400448 error = expand_files(files, fd);
449 if (error < 0)
450 goto out;
451
452 /*
453 * If we needed to expand the fs array we
454 * might have blocked - try again.
455 */
456 if (error)
457 goto repeat;
458
459 if (start <= files->next_fd)
460 files->next_fd = fd + 1;
461
David Howells1dce27c2012-02-16 17:49:42 +0000462 __set_open_fd(fd, fdt);
Al Viro1027abe2008-07-30 04:13:04 -0400463 if (flags & O_CLOEXEC)
David Howells1dce27c2012-02-16 17:49:42 +0000464 __set_close_on_exec(fd, fdt);
Al Viro1027abe2008-07-30 04:13:04 -0400465 else
David Howells1dce27c2012-02-16 17:49:42 +0000466 __clear_close_on_exec(fd, fdt);
Al Viro1027abe2008-07-30 04:13:04 -0400467 error = fd;
468#if 1
469 /* Sanity check */
Paul E. McKenney7dc52152010-02-22 17:04:52 -0800470 if (rcu_dereference_raw(fdt->fd[fd]) != NULL) {
Al Viro1027abe2008-07-30 04:13:04 -0400471 printk(KERN_WARNING "alloc_fd: slot %d not NULL!\n", fd);
472 rcu_assign_pointer(fdt->fd[fd], NULL);
473 }
474#endif
475
476out:
477 spin_unlock(&files->file_lock);
478 return error;
479}
480
Al Virodcfadfa2012-08-12 17:27:30 -0400481int alloc_fd(unsigned start, unsigned flags)
482{
483 return __alloc_fd(current->files, start, rlimit(RLIMIT_NOFILE), flags);
484}
485
Al Viro1a7bd222012-08-12 17:18:05 -0400486int get_unused_fd_flags(unsigned flags)
Al Viro1027abe2008-07-30 04:13:04 -0400487{
Al Virodcfadfa2012-08-12 17:27:30 -0400488 return __alloc_fd(current->files, 0, rlimit(RLIMIT_NOFILE), flags);
Al Viro1027abe2008-07-30 04:13:04 -0400489}
Al Viro1a7bd222012-08-12 17:18:05 -0400490EXPORT_SYMBOL(get_unused_fd_flags);