| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 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 |  | 
| Al Viro | 1027abe | 2008-07-30 04:13:04 -0400 | [diff] [blame] | 9 | #include <linux/module.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/fs.h> | 
|  | 11 | #include <linux/mm.h> | 
|  | 12 | #include <linux/time.h> | 
| Alexey Dobriyan | d43c36d | 2009-10-07 17:09:06 +0400 | [diff] [blame] | 13 | #include <linux/sched.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/slab.h> | 
|  | 15 | #include <linux/vmalloc.h> | 
|  | 16 | #include <linux/file.h> | 
| Al Viro | 9f3acc3 | 2008-04-24 07:44:08 -0400 | [diff] [blame] | 17 | #include <linux/fdtable.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/bitops.h> | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 19 | #include <linux/interrupt.h> | 
|  | 20 | #include <linux/spinlock.h> | 
|  | 21 | #include <linux/rcupdate.h> | 
|  | 22 | #include <linux/workqueue.h> | 
|  | 23 |  | 
|  | 24 | struct fdtable_defer { | 
|  | 25 | spinlock_t lock; | 
|  | 26 | struct work_struct wq; | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 27 | struct fdtable *next; | 
|  | 28 | }; | 
|  | 29 |  | 
| Eric Dumazet | 9cfe015 | 2008-02-06 01:37:16 -0800 | [diff] [blame] | 30 | int sysctl_nr_open __read_mostly = 1024*1024; | 
| Al Viro | eceea0b | 2008-05-10 10:08:32 -0400 | [diff] [blame] | 31 | int sysctl_nr_open_min = BITS_PER_LONG; | 
|  | 32 | int sysctl_nr_open_max = 1024 * 1024; /* raised later */ | 
| Eric Dumazet | 9cfe015 | 2008-02-06 01:37:16 -0800 | [diff] [blame] | 33 |  | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 34 | /* | 
|  | 35 | * We use this list to defer free fdtables that have vmalloced | 
|  | 36 | * sets/arrays. By keeping a per-cpu list, we avoid having to embed | 
|  | 37 | * the work_struct in fdtable itself which avoids a 64 byte (i386) increase in | 
|  | 38 | * this per-task structure. | 
|  | 39 | */ | 
|  | 40 | static DEFINE_PER_CPU(struct fdtable_defer, fdtable_defer_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 |  | 
| Changli Gao | a892e2d | 2010-08-10 18:01:35 -0700 | [diff] [blame] | 42 | static inline void *alloc_fdmem(unsigned int size) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | { | 
| Changli Gao | a892e2d | 2010-08-10 18:01:35 -0700 | [diff] [blame] | 44 | void *data; | 
|  | 45 |  | 
|  | 46 | data = kmalloc(size, GFP_KERNEL|__GFP_NOWARN); | 
|  | 47 | if (data != NULL) | 
|  | 48 | return data; | 
|  | 49 |  | 
|  | 50 | return vmalloc(size); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | } | 
|  | 52 |  | 
| Changli Gao | a892e2d | 2010-08-10 18:01:35 -0700 | [diff] [blame] | 53 | static void free_fdmem(void *ptr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | { | 
| Changli Gao | a892e2d | 2010-08-10 18:01:35 -0700 | [diff] [blame] | 55 | is_vmalloc_addr(ptr) ? vfree(ptr) : kfree(ptr); | 
| Vadim Lobanov | 5466b45 | 2006-12-10 02:21:22 -0800 | [diff] [blame] | 56 | } | 
|  | 57 |  | 
| Changli Gao | a892e2d | 2010-08-10 18:01:35 -0700 | [diff] [blame] | 58 | static void __free_fdtable(struct fdtable *fdt) | 
| Vadim Lobanov | 5466b45 | 2006-12-10 02:21:22 -0800 | [diff] [blame] | 59 | { | 
| Changli Gao | a892e2d | 2010-08-10 18:01:35 -0700 | [diff] [blame] | 60 | free_fdmem(fdt->fd); | 
|  | 61 | free_fdmem(fdt->open_fds); | 
|  | 62 | kfree(fdt); | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 63 | } | 
|  | 64 |  | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 65 | static void free_fdtable_work(struct work_struct *work) | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 66 | { | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 67 | struct fdtable_defer *f = | 
|  | 68 | container_of(work, struct fdtable_defer, wq); | 
| Dipankar Sarma | badf166 | 2005-09-09 13:04:10 -0700 | [diff] [blame] | 69 | struct fdtable *fdt; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 |  | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 71 | spin_lock_bh(&f->lock); | 
|  | 72 | fdt = f->next; | 
|  | 73 | f->next = NULL; | 
|  | 74 | spin_unlock_bh(&f->lock); | 
|  | 75 | while(fdt) { | 
|  | 76 | struct fdtable *next = fdt->next; | 
| Changli Gao | a892e2d | 2010-08-10 18:01:35 -0700 | [diff] [blame] | 77 |  | 
|  | 78 | __free_fdtable(fdt); | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 79 | fdt = next; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | } | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 81 | } | 
|  | 82 |  | 
| Vadim Lobanov | 4fd4581 | 2006-12-10 02:21:17 -0800 | [diff] [blame] | 83 | void free_fdtable_rcu(struct rcu_head *rcu) | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 84 | { | 
|  | 85 | struct fdtable *fdt = container_of(rcu, struct fdtable, rcu); | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 86 | struct fdtable_defer *fddef; | 
|  | 87 |  | 
|  | 88 | BUG_ON(!fdt); | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 89 |  | 
| Vadim Lobanov | 4fd4581 | 2006-12-10 02:21:17 -0800 | [diff] [blame] | 90 | if (fdt->max_fds <= NR_OPEN_DEFAULT) { | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 91 | /* | 
| Vadim Lobanov | 4fd4581 | 2006-12-10 02:21:17 -0800 | [diff] [blame] | 92 | * This fdtable is embedded in the files structure and that | 
|  | 93 | * structure itself is getting destroyed. | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 94 | */ | 
| Vadim Lobanov | 4fd4581 | 2006-12-10 02:21:17 -0800 | [diff] [blame] | 95 | kmem_cache_free(files_cachep, | 
|  | 96 | container_of(fdt, struct files_struct, fdtab)); | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 97 | return; | 
|  | 98 | } | 
| Changli Gao | a892e2d | 2010-08-10 18:01:35 -0700 | [diff] [blame] | 99 | if (!is_vmalloc_addr(fdt->fd) && !is_vmalloc_addr(fdt->open_fds)) { | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 100 | kfree(fdt->fd); | 
| Vadim Lobanov | 5466b45 | 2006-12-10 02:21:22 -0800 | [diff] [blame] | 101 | kfree(fdt->open_fds); | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 102 | kfree(fdt); | 
|  | 103 | } else { | 
|  | 104 | fddef = &get_cpu_var(fdtable_defer_list); | 
|  | 105 | spin_lock(&fddef->lock); | 
|  | 106 | fdt->next = fddef->next; | 
|  | 107 | fddef->next = fdt; | 
| Tejun Heo | 593be07 | 2006-12-06 20:36:01 -0800 | [diff] [blame] | 108 | /* vmallocs are handled from the workqueue context */ | 
|  | 109 | schedule_work(&fddef->wq); | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 110 | spin_unlock(&fddef->lock); | 
|  | 111 | put_cpu_var(fdtable_defer_list); | 
|  | 112 | } | 
|  | 113 | } | 
|  | 114 |  | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 115 | /* | 
|  | 116 | * Expand the fdset in the files_struct.  Called with the files spinlock | 
|  | 117 | * held for write. | 
|  | 118 | */ | 
| Vadim Lobanov | 5466b45 | 2006-12-10 02:21:22 -0800 | [diff] [blame] | 119 | static void copy_fdtable(struct fdtable *nfdt, struct fdtable *ofdt) | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 120 | { | 
| Vadim Lobanov | 5466b45 | 2006-12-10 02:21:22 -0800 | [diff] [blame] | 121 | unsigned int cpy, set; | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 122 |  | 
| Vadim Lobanov | 5466b45 | 2006-12-10 02:21:22 -0800 | [diff] [blame] | 123 | BUG_ON(nfdt->max_fds < ofdt->max_fds); | 
| Vadim Lobanov | 5466b45 | 2006-12-10 02:21:22 -0800 | [diff] [blame] | 124 |  | 
|  | 125 | cpy = ofdt->max_fds * sizeof(struct file *); | 
|  | 126 | set = (nfdt->max_fds - ofdt->max_fds) * sizeof(struct file *); | 
|  | 127 | memcpy(nfdt->fd, ofdt->fd, cpy); | 
|  | 128 | memset((char *)(nfdt->fd) + cpy, 0, set); | 
|  | 129 |  | 
|  | 130 | cpy = ofdt->max_fds / BITS_PER_BYTE; | 
|  | 131 | set = (nfdt->max_fds - ofdt->max_fds) / BITS_PER_BYTE; | 
|  | 132 | memcpy(nfdt->open_fds, ofdt->open_fds, cpy); | 
|  | 133 | memset((char *)(nfdt->open_fds) + cpy, 0, set); | 
|  | 134 | memcpy(nfdt->close_on_exec, ofdt->close_on_exec, cpy); | 
|  | 135 | memset((char *)(nfdt->close_on_exec) + cpy, 0, set); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | } | 
|  | 137 |  | 
| Vadim Lobanov | 5466b45 | 2006-12-10 02:21:22 -0800 | [diff] [blame] | 138 | static struct fdtable * alloc_fdtable(unsigned int nr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | { | 
| Vadim Lobanov | 5466b45 | 2006-12-10 02:21:22 -0800 | [diff] [blame] | 140 | struct fdtable *fdt; | 
|  | 141 | char *data; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 |  | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 143 | /* | 
| Vadim Lobanov | 5466b45 | 2006-12-10 02:21:22 -0800 | [diff] [blame] | 144 | * Figure out how many fds we actually want to support in this fdtable. | 
|  | 145 | * Allocation steps are keyed to the size of the fdarray, since it | 
|  | 146 | * grows far faster than any of the other dynamic data. We try to fit | 
|  | 147 | * the fdarray into comfortable page-tuned chunks: starting at 1024B | 
|  | 148 | * and growing in powers of two from there on. | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 149 | */ | 
| Vadim Lobanov | 5466b45 | 2006-12-10 02:21:22 -0800 | [diff] [blame] | 150 | nr /= (1024 / sizeof(struct file *)); | 
|  | 151 | nr = roundup_pow_of_two(nr + 1); | 
|  | 152 | nr *= (1024 / sizeof(struct file *)); | 
| Al Viro | 5c598b3 | 2008-04-27 20:04:15 -0400 | [diff] [blame] | 153 | /* | 
|  | 154 | * Note that this can drive nr *below* what we had passed if sysctl_nr_open | 
|  | 155 | * had been set lower between the check in expand_files() and here.  Deal | 
|  | 156 | * with that in caller, it's cheaper that way. | 
|  | 157 | * | 
|  | 158 | * We make sure that nr remains a multiple of BITS_PER_LONG - otherwise | 
|  | 159 | * bitmaps handling below becomes unpleasant, to put it mildly... | 
|  | 160 | */ | 
|  | 161 | if (unlikely(nr > sysctl_nr_open)) | 
|  | 162 | nr = ((sysctl_nr_open - 1) | (BITS_PER_LONG - 1)) + 1; | 
| Vadim Lobanov | bbea9f6 | 2006-12-10 02:21:12 -0800 | [diff] [blame] | 163 |  | 
| Vadim Lobanov | 5466b45 | 2006-12-10 02:21:22 -0800 | [diff] [blame] | 164 | fdt = kmalloc(sizeof(struct fdtable), GFP_KERNEL); | 
|  | 165 | if (!fdt) | 
| Vadim Lobanov | bbea9f6 | 2006-12-10 02:21:12 -0800 | [diff] [blame] | 166 | goto out; | 
| Vadim Lobanov | 5466b45 | 2006-12-10 02:21:22 -0800 | [diff] [blame] | 167 | fdt->max_fds = nr; | 
|  | 168 | data = alloc_fdmem(nr * sizeof(struct file *)); | 
|  | 169 | if (!data) | 
|  | 170 | goto out_fdt; | 
|  | 171 | fdt->fd = (struct file **)data; | 
|  | 172 | data = alloc_fdmem(max_t(unsigned int, | 
|  | 173 | 2 * nr / BITS_PER_BYTE, L1_CACHE_BYTES)); | 
|  | 174 | if (!data) | 
|  | 175 | goto out_arr; | 
|  | 176 | fdt->open_fds = (fd_set *)data; | 
|  | 177 | data += nr / BITS_PER_BYTE; | 
|  | 178 | fdt->close_on_exec = (fd_set *)data; | 
| Vadim Lobanov | 5466b45 | 2006-12-10 02:21:22 -0800 | [diff] [blame] | 179 | fdt->next = NULL; | 
|  | 180 |  | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 181 | return fdt; | 
| Vadim Lobanov | 5466b45 | 2006-12-10 02:21:22 -0800 | [diff] [blame] | 182 |  | 
|  | 183 | out_arr: | 
| Changli Gao | a892e2d | 2010-08-10 18:01:35 -0700 | [diff] [blame] | 184 | free_fdmem(fdt->fd); | 
| Vadim Lobanov | 5466b45 | 2006-12-10 02:21:22 -0800 | [diff] [blame] | 185 | out_fdt: | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 186 | kfree(fdt); | 
| Vadim Lobanov | 5466b45 | 2006-12-10 02:21:22 -0800 | [diff] [blame] | 187 | out: | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 188 | return NULL; | 
|  | 189 | } | 
|  | 190 |  | 
|  | 191 | /* | 
| Vadim Lobanov | 74d392a | 2006-09-29 02:01:43 -0700 | [diff] [blame] | 192 | * Expand the file descriptor table. | 
|  | 193 | * This function will allocate a new fdtable and both fd array and fdset, of | 
|  | 194 | * the given size. | 
|  | 195 | * Return <0 error code on error; 1 on successful completion. | 
|  | 196 | * The files->file_lock should be held on entry, and will be held on exit. | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 197 | */ | 
|  | 198 | static int expand_fdtable(struct files_struct *files, int nr) | 
|  | 199 | __releases(files->file_lock) | 
|  | 200 | __acquires(files->file_lock) | 
|  | 201 | { | 
| Vadim Lobanov | 74d392a | 2006-09-29 02:01:43 -0700 | [diff] [blame] | 202 | struct fdtable *new_fdt, *cur_fdt; | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 203 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | spin_unlock(&files->file_lock); | 
| Vadim Lobanov | 74d392a | 2006-09-29 02:01:43 -0700 | [diff] [blame] | 205 | new_fdt = alloc_fdtable(nr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | spin_lock(&files->file_lock); | 
| Vadim Lobanov | 74d392a | 2006-09-29 02:01:43 -0700 | [diff] [blame] | 207 | if (!new_fdt) | 
|  | 208 | return -ENOMEM; | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 209 | /* | 
| Al Viro | 5c598b3 | 2008-04-27 20:04:15 -0400 | [diff] [blame] | 210 | * extremely unlikely race - sysctl_nr_open decreased between the check in | 
|  | 211 | * caller and alloc_fdtable().  Cheaper to catch it here... | 
|  | 212 | */ | 
|  | 213 | if (unlikely(new_fdt->max_fds <= nr)) { | 
| Changli Gao | a892e2d | 2010-08-10 18:01:35 -0700 | [diff] [blame] | 214 | __free_fdtable(new_fdt); | 
| Al Viro | 5c598b3 | 2008-04-27 20:04:15 -0400 | [diff] [blame] | 215 | return -EMFILE; | 
|  | 216 | } | 
|  | 217 | /* | 
| Vadim Lobanov | 74d392a | 2006-09-29 02:01:43 -0700 | [diff] [blame] | 218 | * Check again since another task may have expanded the fd table while | 
|  | 219 | * we dropped the lock | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 220 | */ | 
| Vadim Lobanov | 74d392a | 2006-09-29 02:01:43 -0700 | [diff] [blame] | 221 | cur_fdt = files_fdtable(files); | 
| Vadim Lobanov | bbea9f6 | 2006-12-10 02:21:12 -0800 | [diff] [blame] | 222 | if (nr >= cur_fdt->max_fds) { | 
| Vadim Lobanov | 74d392a | 2006-09-29 02:01:43 -0700 | [diff] [blame] | 223 | /* Continue as planned */ | 
|  | 224 | copy_fdtable(new_fdt, cur_fdt); | 
|  | 225 | rcu_assign_pointer(files->fdt, new_fdt); | 
| Vadim Lobanov | 4fd4581 | 2006-12-10 02:21:17 -0800 | [diff] [blame] | 226 | if (cur_fdt->max_fds > NR_OPEN_DEFAULT) | 
| Vadim Lobanov | 01b2d93 | 2006-12-22 01:10:43 -0800 | [diff] [blame] | 227 | free_fdtable(cur_fdt); | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 228 | } else { | 
| Vadim Lobanov | 74d392a | 2006-09-29 02:01:43 -0700 | [diff] [blame] | 229 | /* Somebody else expanded, so undo our attempt */ | 
| Changli Gao | a892e2d | 2010-08-10 18:01:35 -0700 | [diff] [blame] | 230 | __free_fdtable(new_fdt); | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 231 | } | 
| Vadim Lobanov | 74d392a | 2006-09-29 02:01:43 -0700 | [diff] [blame] | 232 | return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | } | 
|  | 234 |  | 
|  | 235 | /* | 
|  | 236 | * Expand files. | 
| Vadim Lobanov | 74d392a | 2006-09-29 02:01:43 -0700 | [diff] [blame] | 237 | * This function will expand the file structures, if the requested size exceeds | 
|  | 238 | * the current capacity and there is room for expansion. | 
|  | 239 | * Return <0 error code on error; 0 when nothing done; 1 when files were | 
|  | 240 | * expanded and execution may have blocked. | 
|  | 241 | * The files->file_lock should be held on entry, and will be held on exit. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | */ | 
|  | 243 | int expand_files(struct files_struct *files, int nr) | 
|  | 244 | { | 
| Dipankar Sarma | badf166 | 2005-09-09 13:04:10 -0700 | [diff] [blame] | 245 | struct fdtable *fdt; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 |  | 
| Dipankar Sarma | badf166 | 2005-09-09 13:04:10 -0700 | [diff] [blame] | 247 | fdt = files_fdtable(files); | 
| Al Viro | 4e1e018 | 2008-07-26 16:01:20 -0400 | [diff] [blame] | 248 |  | 
|  | 249 | /* | 
|  | 250 | * N.B. For clone tasks sharing a files structure, this test | 
|  | 251 | * will limit the total number of files that can be opened. | 
|  | 252 | */ | 
| Jiri Slaby | d554ed89 | 2010-03-05 13:42:42 -0800 | [diff] [blame] | 253 | if (nr >= rlimit(RLIMIT_NOFILE)) | 
| Al Viro | 4e1e018 | 2008-07-26 16:01:20 -0400 | [diff] [blame] | 254 | return -EMFILE; | 
|  | 255 |  | 
| Vadim Lobanov | 74d392a | 2006-09-29 02:01:43 -0700 | [diff] [blame] | 256 | /* Do we need to expand? */ | 
| Vadim Lobanov | bbea9f6 | 2006-12-10 02:21:12 -0800 | [diff] [blame] | 257 | if (nr < fdt->max_fds) | 
| Vadim Lobanov | 74d392a | 2006-09-29 02:01:43 -0700 | [diff] [blame] | 258 | return 0; | 
| Al Viro | 4e1e018 | 2008-07-26 16:01:20 -0400 | [diff] [blame] | 259 |  | 
| Vadim Lobanov | 74d392a | 2006-09-29 02:01:43 -0700 | [diff] [blame] | 260 | /* Can we expand? */ | 
| Eric Dumazet | 9cfe015 | 2008-02-06 01:37:16 -0800 | [diff] [blame] | 261 | if (nr >= sysctl_nr_open) | 
| Vadim Lobanov | 74d392a | 2006-09-29 02:01:43 -0700 | [diff] [blame] | 262 | return -EMFILE; | 
|  | 263 |  | 
|  | 264 | /* All good, so we try */ | 
|  | 265 | return expand_fdtable(files, nr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | } | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 267 |  | 
| Al Viro | 02afc62 | 2008-05-08 19:42:56 -0400 | [diff] [blame] | 268 | static int count_open_files(struct fdtable *fdt) | 
|  | 269 | { | 
|  | 270 | int size = fdt->max_fds; | 
|  | 271 | int i; | 
|  | 272 |  | 
|  | 273 | /* Find the last open fd */ | 
|  | 274 | for (i = size/(8*sizeof(long)); i > 0; ) { | 
|  | 275 | if (fdt->open_fds->fds_bits[--i]) | 
|  | 276 | break; | 
|  | 277 | } | 
|  | 278 | i = (i+1) * 8 * sizeof(long); | 
|  | 279 | return i; | 
|  | 280 | } | 
|  | 281 |  | 
| Al Viro | 02afc62 | 2008-05-08 19:42:56 -0400 | [diff] [blame] | 282 | /* | 
|  | 283 | * Allocate a new files structure and copy contents from the | 
|  | 284 | * passed in files structure. | 
|  | 285 | * errorp will be valid only when the returned files_struct is NULL. | 
|  | 286 | */ | 
|  | 287 | struct files_struct *dup_fd(struct files_struct *oldf, int *errorp) | 
|  | 288 | { | 
|  | 289 | struct files_struct *newf; | 
|  | 290 | struct file **old_fds, **new_fds; | 
|  | 291 | int open_files, size, i; | 
|  | 292 | struct fdtable *old_fdt, *new_fdt; | 
|  | 293 |  | 
|  | 294 | *errorp = -ENOMEM; | 
| Al Viro | afbec7f | 2008-05-08 21:11:17 -0400 | [diff] [blame] | 295 | newf = kmem_cache_alloc(files_cachep, GFP_KERNEL); | 
| Al Viro | 02afc62 | 2008-05-08 19:42:56 -0400 | [diff] [blame] | 296 | if (!newf) | 
|  | 297 | goto out; | 
|  | 298 |  | 
| Al Viro | afbec7f | 2008-05-08 21:11:17 -0400 | [diff] [blame] | 299 | atomic_set(&newf->count, 1); | 
|  | 300 |  | 
|  | 301 | spin_lock_init(&newf->file_lock); | 
|  | 302 | newf->next_fd = 0; | 
|  | 303 | new_fdt = &newf->fdtab; | 
|  | 304 | new_fdt->max_fds = NR_OPEN_DEFAULT; | 
|  | 305 | new_fdt->close_on_exec = (fd_set *)&newf->close_on_exec_init; | 
|  | 306 | new_fdt->open_fds = (fd_set *)&newf->open_fds_init; | 
|  | 307 | new_fdt->fd = &newf->fd_array[0]; | 
| Al Viro | afbec7f | 2008-05-08 21:11:17 -0400 | [diff] [blame] | 308 | new_fdt->next = NULL; | 
|  | 309 |  | 
| Al Viro | 02afc62 | 2008-05-08 19:42:56 -0400 | [diff] [blame] | 310 | spin_lock(&oldf->file_lock); | 
|  | 311 | old_fdt = files_fdtable(oldf); | 
| Al Viro | 02afc62 | 2008-05-08 19:42:56 -0400 | [diff] [blame] | 312 | open_files = count_open_files(old_fdt); | 
|  | 313 |  | 
|  | 314 | /* | 
|  | 315 | * Check whether we need to allocate a larger fd array and fd set. | 
| Al Viro | 02afc62 | 2008-05-08 19:42:56 -0400 | [diff] [blame] | 316 | */ | 
| Al Viro | adbecb1 | 2008-05-08 21:19:42 -0400 | [diff] [blame] | 317 | while (unlikely(open_files > new_fdt->max_fds)) { | 
| Al Viro | 02afc62 | 2008-05-08 19:42:56 -0400 | [diff] [blame] | 318 | spin_unlock(&oldf->file_lock); | 
| Al Viro | 9dec3c4 | 2008-05-08 21:02:45 -0400 | [diff] [blame] | 319 |  | 
| Changli Gao | a892e2d | 2010-08-10 18:01:35 -0700 | [diff] [blame] | 320 | if (new_fdt != &newf->fdtab) | 
|  | 321 | __free_fdtable(new_fdt); | 
| Al Viro | adbecb1 | 2008-05-08 21:19:42 -0400 | [diff] [blame] | 322 |  | 
| Al Viro | 9dec3c4 | 2008-05-08 21:02:45 -0400 | [diff] [blame] | 323 | new_fdt = alloc_fdtable(open_files - 1); | 
|  | 324 | if (!new_fdt) { | 
|  | 325 | *errorp = -ENOMEM; | 
| Al Viro | 02afc62 | 2008-05-08 19:42:56 -0400 | [diff] [blame] | 326 | goto out_release; | 
| Al Viro | 9dec3c4 | 2008-05-08 21:02:45 -0400 | [diff] [blame] | 327 | } | 
|  | 328 |  | 
|  | 329 | /* beyond sysctl_nr_open; nothing to do */ | 
|  | 330 | if (unlikely(new_fdt->max_fds < open_files)) { | 
| Changli Gao | a892e2d | 2010-08-10 18:01:35 -0700 | [diff] [blame] | 331 | __free_fdtable(new_fdt); | 
| Al Viro | 9dec3c4 | 2008-05-08 21:02:45 -0400 | [diff] [blame] | 332 | *errorp = -EMFILE; | 
|  | 333 | goto out_release; | 
|  | 334 | } | 
| Al Viro | 9dec3c4 | 2008-05-08 21:02:45 -0400 | [diff] [blame] | 335 |  | 
| Al Viro | 02afc62 | 2008-05-08 19:42:56 -0400 | [diff] [blame] | 336 | /* | 
|  | 337 | * Reacquire the oldf lock and a pointer to its fd table | 
|  | 338 | * who knows it may have a new bigger fd table. We need | 
|  | 339 | * the latest pointer. | 
|  | 340 | */ | 
|  | 341 | spin_lock(&oldf->file_lock); | 
|  | 342 | old_fdt = files_fdtable(oldf); | 
| Al Viro | adbecb1 | 2008-05-08 21:19:42 -0400 | [diff] [blame] | 343 | open_files = count_open_files(old_fdt); | 
| Al Viro | 02afc62 | 2008-05-08 19:42:56 -0400 | [diff] [blame] | 344 | } | 
|  | 345 |  | 
|  | 346 | old_fds = old_fdt->fd; | 
|  | 347 | new_fds = new_fdt->fd; | 
|  | 348 |  | 
|  | 349 | memcpy(new_fdt->open_fds->fds_bits, | 
|  | 350 | old_fdt->open_fds->fds_bits, open_files/8); | 
|  | 351 | memcpy(new_fdt->close_on_exec->fds_bits, | 
|  | 352 | old_fdt->close_on_exec->fds_bits, open_files/8); | 
|  | 353 |  | 
|  | 354 | for (i = open_files; i != 0; i--) { | 
|  | 355 | struct file *f = *old_fds++; | 
|  | 356 | if (f) { | 
|  | 357 | get_file(f); | 
|  | 358 | } else { | 
|  | 359 | /* | 
|  | 360 | * The fd may be claimed in the fd bitmap but not yet | 
|  | 361 | * instantiated in the files array if a sibling thread | 
|  | 362 | * is partway through open().  So make sure that this | 
|  | 363 | * fd is available to the new process. | 
|  | 364 | */ | 
|  | 365 | FD_CLR(open_files - i, new_fdt->open_fds); | 
|  | 366 | } | 
|  | 367 | rcu_assign_pointer(*new_fds++, f); | 
|  | 368 | } | 
|  | 369 | spin_unlock(&oldf->file_lock); | 
|  | 370 |  | 
|  | 371 | /* compute the remainder to be cleared */ | 
|  | 372 | size = (new_fdt->max_fds - open_files) * sizeof(struct file *); | 
|  | 373 |  | 
|  | 374 | /* This is long word aligned thus could use a optimized version */ | 
|  | 375 | memset(new_fds, 0, size); | 
|  | 376 |  | 
|  | 377 | if (new_fdt->max_fds > open_files) { | 
|  | 378 | int left = (new_fdt->max_fds-open_files)/8; | 
|  | 379 | int start = open_files / (8 * sizeof(unsigned long)); | 
|  | 380 |  | 
|  | 381 | memset(&new_fdt->open_fds->fds_bits[start], 0, left); | 
|  | 382 | memset(&new_fdt->close_on_exec->fds_bits[start], 0, left); | 
|  | 383 | } | 
|  | 384 |  | 
| Al Viro | afbec7f | 2008-05-08 21:11:17 -0400 | [diff] [blame] | 385 | rcu_assign_pointer(newf->fdt, new_fdt); | 
|  | 386 |  | 
| Al Viro | 02afc62 | 2008-05-08 19:42:56 -0400 | [diff] [blame] | 387 | return newf; | 
|  | 388 |  | 
|  | 389 | out_release: | 
|  | 390 | kmem_cache_free(files_cachep, newf); | 
|  | 391 | out: | 
|  | 392 | return NULL; | 
|  | 393 | } | 
|  | 394 |  | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 395 | static void __devinit fdtable_defer_list_init(int cpu) | 
|  | 396 | { | 
|  | 397 | struct fdtable_defer *fddef = &per_cpu(fdtable_defer_list, cpu); | 
|  | 398 | spin_lock_init(&fddef->lock); | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 399 | INIT_WORK(&fddef->wq, free_fdtable_work); | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 400 | fddef->next = NULL; | 
|  | 401 | } | 
|  | 402 |  | 
|  | 403 | void __init files_defer_init(void) | 
|  | 404 | { | 
|  | 405 | int i; | 
| KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 406 | for_each_possible_cpu(i) | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 407 | fdtable_defer_list_init(i); | 
| Al Viro | eceea0b | 2008-05-10 10:08:32 -0400 | [diff] [blame] | 408 | sysctl_nr_open_max = min((size_t)INT_MAX, ~(size_t)0/sizeof(void *)) & | 
|  | 409 | -BITS_PER_LONG; | 
| Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 410 | } | 
| Al Viro | f52111b | 2008-05-08 18:19:16 -0400 | [diff] [blame] | 411 |  | 
|  | 412 | struct files_struct init_files = { | 
|  | 413 | .count		= ATOMIC_INIT(1), | 
|  | 414 | .fdt		= &init_files.fdtab, | 
|  | 415 | .fdtab		= { | 
|  | 416 | .max_fds	= NR_OPEN_DEFAULT, | 
|  | 417 | .fd		= &init_files.fd_array[0], | 
|  | 418 | .close_on_exec	= (fd_set *)&init_files.close_on_exec_init, | 
|  | 419 | .open_fds	= (fd_set *)&init_files.open_fds_init, | 
| Al Viro | f52111b | 2008-05-08 18:19:16 -0400 | [diff] [blame] | 420 | }, | 
|  | 421 | .file_lock	= __SPIN_LOCK_UNLOCKED(init_task.file_lock), | 
|  | 422 | }; | 
| Al Viro | 1027abe | 2008-07-30 04:13:04 -0400 | [diff] [blame] | 423 |  | 
|  | 424 | /* | 
|  | 425 | * allocate a file descriptor, mark it busy. | 
|  | 426 | */ | 
|  | 427 | int alloc_fd(unsigned start, unsigned flags) | 
|  | 428 | { | 
|  | 429 | struct files_struct *files = current->files; | 
|  | 430 | unsigned int fd; | 
|  | 431 | int error; | 
|  | 432 | struct fdtable *fdt; | 
|  | 433 |  | 
|  | 434 | spin_lock(&files->file_lock); | 
|  | 435 | repeat: | 
|  | 436 | fdt = files_fdtable(files); | 
|  | 437 | fd = start; | 
|  | 438 | if (fd < files->next_fd) | 
|  | 439 | fd = files->next_fd; | 
|  | 440 |  | 
|  | 441 | if (fd < fdt->max_fds) | 
|  | 442 | fd = find_next_zero_bit(fdt->open_fds->fds_bits, | 
|  | 443 | fdt->max_fds, fd); | 
|  | 444 |  | 
|  | 445 | error = expand_files(files, fd); | 
|  | 446 | if (error < 0) | 
|  | 447 | goto out; | 
|  | 448 |  | 
|  | 449 | /* | 
|  | 450 | * If we needed to expand the fs array we | 
|  | 451 | * might have blocked - try again. | 
|  | 452 | */ | 
|  | 453 | if (error) | 
|  | 454 | goto repeat; | 
|  | 455 |  | 
|  | 456 | if (start <= files->next_fd) | 
|  | 457 | files->next_fd = fd + 1; | 
|  | 458 |  | 
|  | 459 | FD_SET(fd, fdt->open_fds); | 
|  | 460 | if (flags & O_CLOEXEC) | 
|  | 461 | FD_SET(fd, fdt->close_on_exec); | 
|  | 462 | else | 
|  | 463 | FD_CLR(fd, fdt->close_on_exec); | 
|  | 464 | error = fd; | 
|  | 465 | #if 1 | 
|  | 466 | /* Sanity check */ | 
| Paul E. McKenney | 7dc5215 | 2010-02-22 17:04:52 -0800 | [diff] [blame] | 467 | if (rcu_dereference_raw(fdt->fd[fd]) != NULL) { | 
| Al Viro | 1027abe | 2008-07-30 04:13:04 -0400 | [diff] [blame] | 468 | printk(KERN_WARNING "alloc_fd: slot %d not NULL!\n", fd); | 
|  | 469 | rcu_assign_pointer(fdt->fd[fd], NULL); | 
|  | 470 | } | 
|  | 471 | #endif | 
|  | 472 |  | 
|  | 473 | out: | 
|  | 474 | spin_unlock(&files->file_lock); | 
|  | 475 | return error; | 
|  | 476 | } | 
|  | 477 |  | 
|  | 478 | int get_unused_fd(void) | 
|  | 479 | { | 
|  | 480 | return alloc_fd(0, 0); | 
|  | 481 | } | 
|  | 482 | EXPORT_SYMBOL(get_unused_fd); |