blob: fb3d2038dc215b9a8bb227a20ae3d4e4766213b7 [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
9#include <linux/fs.h>
10#include <linux/mm.h>
11#include <linux/time.h>
12#include <linux/slab.h>
13#include <linux/vmalloc.h>
14#include <linux/file.h>
15#include <linux/bitops.h>
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070016#include <linux/interrupt.h>
17#include <linux/spinlock.h>
18#include <linux/rcupdate.h>
19#include <linux/workqueue.h>
20
21struct fdtable_defer {
22 spinlock_t lock;
23 struct work_struct wq;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070024 struct fdtable *next;
25};
26
27/*
28 * We use this list to defer free fdtables that have vmalloced
29 * sets/arrays. By keeping a per-cpu list, we avoid having to embed
30 * the work_struct in fdtable itself which avoids a 64 byte (i386) increase in
31 * this per-task structure.
32 */
33static DEFINE_PER_CPU(struct fdtable_defer, fdtable_defer_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35
36/*
37 * Allocate an fd array, using kmalloc or vmalloc.
38 * Note: the array isn't cleared at allocation time.
39 */
40struct file ** alloc_fd_array(int num)
41{
42 struct file **new_fds;
43 int size = num * sizeof(struct file *);
44
45 if (size <= PAGE_SIZE)
46 new_fds = (struct file **) kmalloc(size, GFP_KERNEL);
47 else
48 new_fds = (struct file **) vmalloc(size);
49 return new_fds;
50}
51
52void free_fd_array(struct file **array, int num)
53{
54 int size = num * sizeof(struct file *);
55
56 if (!array) {
57 printk (KERN_ERR "free_fd_array: array = 0 (num = %d)\n", num);
58 return;
59 }
60
61 if (num <= NR_OPEN_DEFAULT) /* Don't free the embedded fd array! */
62 return;
63 else if (size <= PAGE_SIZE)
64 kfree(array);
65 else
66 vfree(array);
67}
68
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070069static void __free_fdtable(struct fdtable *fdt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Vadim Lobanovbbea9f62006-12-10 02:21:12 -080071 free_fdset(fdt->open_fds, fdt->max_fds);
72 free_fdset(fdt->close_on_exec, fdt->max_fds);
Dipankar Sarma0b175a72005-09-15 00:48:42 +053073 free_fd_array(fdt->fd, fdt->max_fds);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070074 kfree(fdt);
75}
76
David Howells65f27f32006-11-22 14:55:48 +000077static void free_fdtable_work(struct work_struct *work)
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070078{
David Howells65f27f32006-11-22 14:55:48 +000079 struct fdtable_defer *f =
80 container_of(work, struct fdtable_defer, wq);
Dipankar Sarmabadf1662005-09-09 13:04:10 -070081 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070083 spin_lock_bh(&f->lock);
84 fdt = f->next;
85 f->next = NULL;
86 spin_unlock_bh(&f->lock);
87 while(fdt) {
88 struct fdtable *next = fdt->next;
89 __free_fdtable(fdt);
90 fdt = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 }
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070092}
93
94static void free_fdtable_rcu(struct rcu_head *rcu)
95{
96 struct fdtable *fdt = container_of(rcu, struct fdtable, rcu);
97 int fdset_size, fdarray_size;
98 struct fdtable_defer *fddef;
99
100 BUG_ON(!fdt);
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800101 fdset_size = fdt->max_fds / 8;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700102 fdarray_size = fdt->max_fds * sizeof(struct file *);
103
104 if (fdt->free_files) {
105 /*
106 * The this fdtable was embedded in the files structure
107 * and the files structure itself was getting destroyed.
108 * It is now safe to free the files structure.
109 */
110 kmem_cache_free(files_cachep, fdt->free_files);
111 return;
112 }
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800113 if (fdt->max_fds <= NR_OPEN_DEFAULT)
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700114 /*
115 * The fdtable was embedded
116 */
117 return;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700118 if (fdset_size <= PAGE_SIZE && fdarray_size <= PAGE_SIZE) {
119 kfree(fdt->open_fds);
120 kfree(fdt->close_on_exec);
121 kfree(fdt->fd);
122 kfree(fdt);
123 } else {
124 fddef = &get_cpu_var(fdtable_defer_list);
125 spin_lock(&fddef->lock);
126 fdt->next = fddef->next;
127 fddef->next = fdt;
Tejun Heo593be072006-12-06 20:36:01 -0800128 /* vmallocs are handled from the workqueue context */
129 schedule_work(&fddef->wq);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700130 spin_unlock(&fddef->lock);
131 put_cpu_var(fdtable_defer_list);
132 }
133}
134
135void free_fdtable(struct fdtable *fdt)
136{
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800137 if (fdt->free_files || fdt->max_fds > NR_OPEN_DEFAULT)
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700138 call_rcu(&fdt->rcu, free_fdtable_rcu);
139}
140
141/*
142 * Expand the fdset in the files_struct. Called with the files spinlock
143 * held for write.
144 */
145static void copy_fdtable(struct fdtable *nfdt, struct fdtable *fdt)
146{
147 int i;
148 int count;
149
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700150 BUG_ON(nfdt->max_fds < fdt->max_fds);
151 /* Copy the existing tables and install the new pointers */
152
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800153 i = fdt->max_fds / (sizeof(unsigned long) * 8);
154 count = (nfdt->max_fds - fdt->max_fds) / 8;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700155
156 /*
157 * Don't copy the entire array if the current fdset is
158 * not yet initialised.
159 */
160 if (i) {
161 memcpy (nfdt->open_fds, fdt->open_fds,
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800162 fdt->max_fds/8);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700163 memcpy (nfdt->close_on_exec, fdt->close_on_exec,
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800164 fdt->max_fds/8);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700165 memset (&nfdt->open_fds->fds_bits[i], 0, count);
166 memset (&nfdt->close_on_exec->fds_bits[i], 0, count);
167 }
168
169 /* Don't copy/clear the array if we are creating a new
170 fd array for fork() */
171 if (fdt->max_fds) {
172 memcpy(nfdt->fd, fdt->fd,
173 fdt->max_fds * sizeof(struct file *));
174 /* clear the remainder of the array */
175 memset(&nfdt->fd[fdt->max_fds], 0,
176 (nfdt->max_fds - fdt->max_fds) *
177 sizeof(struct file *));
178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
181/*
182 * Allocate an fdset array, using kmalloc or vmalloc.
183 * Note: the array isn't cleared at allocation time.
184 */
185fd_set * alloc_fdset(int num)
186{
187 fd_set *new_fdset;
188 int size = num / 8;
189
190 if (size <= PAGE_SIZE)
191 new_fdset = (fd_set *) kmalloc(size, GFP_KERNEL);
192 else
193 new_fdset = (fd_set *) vmalloc(size);
194 return new_fdset;
195}
196
197void free_fdset(fd_set *array, int num)
198{
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800199 if (num <= NR_OPEN_DEFAULT) /* Don't free an embedded fdset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return;
Eric Dumazet0c9e63f2006-03-23 03:00:12 -0800201 else if (num <= 8 * PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 kfree(array);
203 else
204 vfree(array);
205}
206
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700207static struct fdtable *alloc_fdtable(int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700209 struct fdtable *fdt = NULL;
210 int nfds = 0;
211 fd_set *new_openset = NULL, *new_execset = NULL;
212 struct file **new_fds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Eric Dumazet0c9e63f2006-03-23 03:00:12 -0800214 fdt = kzalloc(sizeof(*fdt), GFP_KERNEL);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700215 if (!fdt)
216 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700218 nfds = NR_OPEN_DEFAULT;
219 /*
220 * Expand to the max in easy steps, and keep expanding it until
221 * we have enough for the requested fd array size.
222 */
223 do {
224#if NR_OPEN_DEFAULT < 256
225 if (nfds < 256)
226 nfds = 256;
227 else
228#endif
229 if (nfds < (PAGE_SIZE / sizeof(struct file *)))
230 nfds = PAGE_SIZE / sizeof(struct file *);
231 else {
232 nfds = nfds * 2;
233 if (nfds > NR_OPEN)
234 nfds = NR_OPEN;
235 }
236 } while (nfds <= nr);
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800237
238 new_openset = alloc_fdset(nfds);
239 new_execset = alloc_fdset(nfds);
240 if (!new_openset || !new_execset)
241 goto out;
242 fdt->open_fds = new_openset;
243 fdt->close_on_exec = new_execset;
244
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700245 new_fds = alloc_fd_array(nfds);
246 if (!new_fds)
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800247 goto out;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700248 fdt->fd = new_fds;
249 fdt->max_fds = nfds;
250 fdt->free_files = NULL;
251 return fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252out:
Andrew Morton8b0e3302006-09-27 01:51:02 -0700253 free_fdset(new_openset, nfds);
254 free_fdset(new_execset, nfds);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700255 kfree(fdt);
256 return NULL;
257}
258
259/*
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700260 * Expand the file descriptor table.
261 * This function will allocate a new fdtable and both fd array and fdset, of
262 * the given size.
263 * Return <0 error code on error; 1 on successful completion.
264 * The files->file_lock should be held on entry, and will be held on exit.
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700265 */
266static int expand_fdtable(struct files_struct *files, int nr)
267 __releases(files->file_lock)
268 __acquires(files->file_lock)
269{
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700270 struct fdtable *new_fdt, *cur_fdt;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 spin_unlock(&files->file_lock);
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700273 new_fdt = alloc_fdtable(nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 spin_lock(&files->file_lock);
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700275 if (!new_fdt)
276 return -ENOMEM;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700277 /*
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700278 * Check again since another task may have expanded the fd table while
279 * we dropped the lock
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700280 */
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700281 cur_fdt = files_fdtable(files);
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800282 if (nr >= cur_fdt->max_fds) {
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700283 /* Continue as planned */
284 copy_fdtable(new_fdt, cur_fdt);
285 rcu_assign_pointer(files->fdt, new_fdt);
286 free_fdtable(cur_fdt);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700287 } else {
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700288 /* Somebody else expanded, so undo our attempt */
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700289 __free_fdtable(new_fdt);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700290 }
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700291 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
294/*
295 * Expand files.
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700296 * This function will expand the file structures, if the requested size exceeds
297 * the current capacity and there is room for expansion.
298 * Return <0 error code on error; 0 when nothing done; 1 when files were
299 * expanded and execution may have blocked.
300 * The files->file_lock should be held on entry, and will be held on exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 */
302int expand_files(struct files_struct *files, int nr)
303{
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700304 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700306 fdt = files_fdtable(files);
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700307 /* Do we need to expand? */
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800308 if (nr < fdt->max_fds)
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700309 return 0;
310 /* Can we expand? */
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800311 if (nr >= NR_OPEN)
Vadim Lobanov74d392a2006-09-29 02:01:43 -0700312 return -EMFILE;
313
314 /* All good, so we try */
315 return expand_fdtable(files, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700317
318static void __devinit fdtable_defer_list_init(int cpu)
319{
320 struct fdtable_defer *fddef = &per_cpu(fdtable_defer_list, cpu);
321 spin_lock_init(&fddef->lock);
David Howells65f27f32006-11-22 14:55:48 +0000322 INIT_WORK(&fddef->wq, free_fdtable_work);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700323 fddef->next = NULL;
324}
325
326void __init files_defer_init(void)
327{
328 int i;
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -0800329 for_each_possible_cpu(i)
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700330 fdtable_defer_list_init(i);
331}