4 * Copyright (C) 1998-1999, Stephen Tweedie and Bill Hawes
6 * Manage the dynamic fd arrays in the process files_struct.
11 #include <linux/sched.h>
12 #include <linux/malloc.h>
13 #include <linux/vmalloc.h>
15 #include <asm/bitops.h>
19 * Allocate an fd array, using __get_free_page() if possible.
20 * Note: the array isn't cleared at allocation time.
22 struct file
** alloc_fd_array(int num
)
24 struct file
**new_fds
;
25 int size
= num
* sizeof(struct file
*);
27 if (size
<= PAGE_SIZE
)
28 new_fds
= (struct file
**) kmalloc(size
, GFP_KERNEL
);
30 new_fds
= (struct file
**) vmalloc(size
);
34 void free_fd_array(struct file
**array
, int num
)
36 int size
= num
* sizeof(struct file
*);
39 printk (KERN_ERR __FUNCTION__
"array = 0 (num = %d)\n", num
);
43 if (num
<= NR_OPEN_DEFAULT
) /* Don't free the embedded fd array! */
45 else if (size
<= PAGE_SIZE
)
52 * Expand the fd array in the files_struct. Called with the files
53 * spinlock held for write.
56 int expand_fd_array(struct files_struct
*files
, int nr
)
58 struct file
**new_fds
;
63 if (files
->max_fds
>= NR_OPEN
|| nr
>= NR_OPEN
)
66 nfds
= files
->max_fds
;
67 write_unlock(&files
->file_lock
);
70 * Expand to the max in easy steps, and keep expanding it until
71 * we have enough for the requested fd array size.
75 #if NR_OPEN_DEFAULT < 256
80 if (nfds
< (PAGE_SIZE
/ sizeof(struct file
*)))
81 nfds
= PAGE_SIZE
/ sizeof(struct file
*);
90 new_fds
= alloc_fd_array(nfds
);
91 write_lock(&files
->file_lock
);
95 /* Copy the existing array and install the new pointer */
97 if (nfds
> files
->max_fds
) {
98 struct file
**old_fds
;
101 old_fds
= xchg(&files
->fd
, new_fds
);
102 i
= xchg(&files
->max_fds
, nfds
);
104 /* Don't copy/clear the array if we are creating a new
105 fd array for fork() */
107 memcpy(new_fds
, old_fds
, i
* sizeof(struct file
*));
108 /* clear the remainder of the array */
109 memset(&new_fds
[i
], 0,
110 (nfds
-i
) * sizeof(struct file
*));
112 write_unlock(&files
->file_lock
);
113 free_fd_array(old_fds
, i
);
114 write_lock(&files
->file_lock
);
117 /* Somebody expanded the array while we slept ... */
118 write_unlock(&files
->file_lock
);
119 free_fd_array(new_fds
, nfds
);
120 write_lock(&files
->file_lock
);
128 * Allocate an fdset array, using __get_free_page() if possible.
129 * Note: the array isn't cleared at allocation time.
131 fd_set
* alloc_fdset(int num
)
136 if (size
<= PAGE_SIZE
)
137 new_fdset
= (fd_set
*) kmalloc(size
, GFP_KERNEL
);
139 new_fdset
= (fd_set
*) vmalloc(size
);
143 void free_fdset(fd_set
*array
, int num
)
148 printk (KERN_ERR __FUNCTION__
"array = 0 (num = %d)\n", num
);
152 if (num
<= __FD_SETSIZE
) /* Don't free an embedded fdset */
154 else if (size
<= PAGE_SIZE
)
161 * Expand the fdset in the files_struct. Called with the files spinlock
164 int expand_fdset(struct files_struct
*files
, int nr
)
166 fd_set
*new_openset
= 0, *new_execset
= 0;
170 if (files
->max_fdset
>= NR_OPEN
|| nr
>= NR_OPEN
)
173 nfds
= files
->max_fdset
;
174 write_unlock(&files
->file_lock
);
176 /* Expand to the max in easy steps */
178 if (nfds
< (PAGE_SIZE
* 8))
179 nfds
= PAGE_SIZE
* 8;
185 } while (nfds
<= nr
);
188 new_openset
= alloc_fdset(nfds
);
189 new_execset
= alloc_fdset(nfds
);
190 write_lock(&files
->file_lock
);
191 if (!new_openset
|| !new_execset
)
196 /* Copy the existing tables and install the new pointers */
197 if (nfds
> files
->max_fdset
) {
198 int i
= files
->max_fdset
/ (sizeof(unsigned long) * 8);
199 int count
= (nfds
- files
->max_fdset
) / 8;
202 * Don't copy the entire array if the current fdset is
203 * not yet initialised.
206 memcpy (new_openset
, files
->open_fds
, files
->max_fdset
/8);
207 memcpy (new_execset
, files
->close_on_exec
, files
->max_fdset
/8);
208 memset (&new_openset
->fds_bits
[i
], 0, count
);
209 memset (&new_execset
->fds_bits
[i
], 0, count
);
212 nfds
= xchg(&files
->max_fdset
, nfds
);
213 new_openset
= xchg(&files
->open_fds
, new_openset
);
214 new_execset
= xchg(&files
->close_on_exec
, new_execset
);
215 write_unlock(&files
->file_lock
);
216 free_fdset (new_openset
, nfds
);
217 free_fdset (new_execset
, nfds
);
218 write_lock(&files
->file_lock
);
221 /* Somebody expanded the array while we slept ... */
224 write_unlock(&files
->file_lock
);
226 free_fdset(new_openset
, nfds
);
228 free_fdset(new_execset
, nfds
);
229 write_lock(&files
->file_lock
);