kern_descrip.c revision 1.62 1 1.62 sommerfe /* $NetBSD: kern_descrip.c,v 1.62 1999/12/08 18:53:56 sommerfeld Exp $ */
2 1.22 cgd
3 1.16 cgd /*
4 1.17 cgd * Copyright (c) 1982, 1986, 1989, 1991, 1993
5 1.17 cgd * The Regents of the University of California. All rights reserved.
6 1.16 cgd * (c) UNIX System Laboratories, Inc.
7 1.16 cgd * All or some portions of this file are derived from material licensed
8 1.16 cgd * to the University of California by American Telephone and Telegraph
9 1.16 cgd * Co. or Unix System Laboratories, Inc. and are reproduced herein with
10 1.16 cgd * the permission of UNIX System Laboratories, Inc.
11 1.16 cgd *
12 1.16 cgd * Redistribution and use in source and binary forms, with or without
13 1.16 cgd * modification, are permitted provided that the following conditions
14 1.16 cgd * are met:
15 1.16 cgd * 1. Redistributions of source code must retain the above copyright
16 1.16 cgd * notice, this list of conditions and the following disclaimer.
17 1.16 cgd * 2. Redistributions in binary form must reproduce the above copyright
18 1.16 cgd * notice, this list of conditions and the following disclaimer in the
19 1.16 cgd * documentation and/or other materials provided with the distribution.
20 1.16 cgd * 3. All advertising materials mentioning features or use of this software
21 1.16 cgd * must display the following acknowledgement:
22 1.16 cgd * This product includes software developed by the University of
23 1.16 cgd * California, Berkeley and its contributors.
24 1.16 cgd * 4. Neither the name of the University nor the names of its contributors
25 1.16 cgd * may be used to endorse or promote products derived from this software
26 1.16 cgd * without specific prior written permission.
27 1.16 cgd *
28 1.16 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 1.16 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 1.16 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 1.16 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 1.16 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 1.16 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 1.16 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 1.16 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 1.16 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 1.16 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 1.16 cgd * SUCH DAMAGE.
39 1.16 cgd *
40 1.51 fvdl * @(#)kern_descrip.c 8.8 (Berkeley) 2/14/95
41 1.16 cgd */
42 1.50 mrg
43 1.16 cgd #include <sys/param.h>
44 1.16 cgd #include <sys/systm.h>
45 1.16 cgd #include <sys/filedesc.h>
46 1.16 cgd #include <sys/kernel.h>
47 1.16 cgd #include <sys/vnode.h>
48 1.16 cgd #include <sys/proc.h>
49 1.16 cgd #include <sys/file.h>
50 1.16 cgd #include <sys/socket.h>
51 1.16 cgd #include <sys/socketvar.h>
52 1.16 cgd #include <sys/stat.h>
53 1.16 cgd #include <sys/ioctl.h>
54 1.16 cgd #include <sys/fcntl.h>
55 1.16 cgd #include <sys/malloc.h>
56 1.55 thorpej #include <sys/pool.h>
57 1.16 cgd #include <sys/syslog.h>
58 1.17 cgd #include <sys/unistd.h>
59 1.16 cgd #include <sys/resourcevar.h>
60 1.42 christos #include <sys/conf.h>
61 1.16 cgd
62 1.25 cgd #include <sys/mount.h>
63 1.25 cgd #include <sys/syscallargs.h>
64 1.25 cgd
65 1.38 christos #include <vm/vm.h>
66 1.38 christos
67 1.16 cgd /*
68 1.16 cgd * Descriptor management.
69 1.16 cgd */
70 1.24 mycroft struct filelist filehead; /* head of list of open files */
71 1.24 mycroft int nfiles; /* actual number of open files */
72 1.55 thorpej struct pool file_pool; /* memory pool for file structures */
73 1.58 thorpej struct pool cwdi_pool; /* memory pool for cwdinfo structures */
74 1.16 cgd
75 1.38 christos static __inline void fd_used __P((struct filedesc *, int));
76 1.38 christos static __inline void fd_unused __P((struct filedesc *, int));
77 1.59 thorpej int finishdup __P((struct proc *, int, int, register_t *));
78 1.38 christos
79 1.38 christos static __inline void
80 1.27 mycroft fd_used(fdp, fd)
81 1.27 mycroft register struct filedesc *fdp;
82 1.27 mycroft register int fd;
83 1.27 mycroft {
84 1.27 mycroft
85 1.27 mycroft if (fd > fdp->fd_lastfile)
86 1.27 mycroft fdp->fd_lastfile = fd;
87 1.27 mycroft }
88 1.27 mycroft
89 1.38 christos static __inline void
90 1.27 mycroft fd_unused(fdp, fd)
91 1.27 mycroft register struct filedesc *fdp;
92 1.27 mycroft register int fd;
93 1.27 mycroft {
94 1.27 mycroft
95 1.27 mycroft if (fd < fdp->fd_freefile)
96 1.27 mycroft fdp->fd_freefile = fd;
97 1.27 mycroft #ifdef DIAGNOSTIC
98 1.27 mycroft if (fd > fdp->fd_lastfile)
99 1.27 mycroft panic("fd_unused: fd_lastfile inconsistent");
100 1.27 mycroft #endif
101 1.27 mycroft if (fd == fdp->fd_lastfile) {
102 1.27 mycroft do {
103 1.27 mycroft fd--;
104 1.27 mycroft } while (fd >= 0 && fdp->fd_ofiles[fd] == NULL);
105 1.27 mycroft fdp->fd_lastfile = fd;
106 1.27 mycroft }
107 1.27 mycroft }
108 1.27 mycroft
109 1.16 cgd /*
110 1.16 cgd * System calls on descriptors.
111 1.16 cgd */
112 1.18 cgd
113 1.16 cgd /*
114 1.16 cgd * Duplicate a file descriptor.
115 1.16 cgd */
116 1.16 cgd /* ARGSUSED */
117 1.38 christos int
118 1.37 mycroft sys_dup(p, v, retval)
119 1.16 cgd struct proc *p;
120 1.36 thorpej void *v;
121 1.36 thorpej register_t *retval;
122 1.36 thorpej {
123 1.37 mycroft struct sys_dup_args /* {
124 1.45 mycroft syscallarg(int) fd;
125 1.36 thorpej } */ *uap = v;
126 1.59 thorpej struct file *fp;
127 1.27 mycroft register struct filedesc *fdp = p->p_fd;
128 1.27 mycroft register int old = SCARG(uap, fd);
129 1.27 mycroft int new;
130 1.27 mycroft int error;
131 1.16 cgd
132 1.59 thorpej if ((u_int)old >= fdp->fd_nfiles ||
133 1.59 thorpej (fp = fdp->fd_ofiles[old]) == NULL ||
134 1.59 thorpej (fp->f_iflags & FIF_WANTCLOSE) != 0)
135 1.16 cgd return (EBADF);
136 1.59 thorpej
137 1.59 thorpej FILE_USE(fp);
138 1.59 thorpej
139 1.59 thorpej if ((error = fdalloc(p, 0, &new)) != 0) {
140 1.59 thorpej FILE_UNUSE(fp, p);
141 1.16 cgd return (error);
142 1.59 thorpej }
143 1.59 thorpej
144 1.59 thorpej /* finishdup() will unuse the descriptors for us */
145 1.59 thorpej return (finishdup(p, old, new, retval));
146 1.16 cgd }
147 1.16 cgd
148 1.16 cgd /*
149 1.16 cgd * Duplicate a file descriptor to a particular value.
150 1.16 cgd */
151 1.16 cgd /* ARGSUSED */
152 1.38 christos int
153 1.37 mycroft sys_dup2(p, v, retval)
154 1.16 cgd struct proc *p;
155 1.36 thorpej void *v;
156 1.36 thorpej register_t *retval;
157 1.36 thorpej {
158 1.37 mycroft struct sys_dup2_args /* {
159 1.45 mycroft syscallarg(int) from;
160 1.45 mycroft syscallarg(int) to;
161 1.36 thorpej } */ *uap = v;
162 1.59 thorpej struct file *fp;
163 1.16 cgd register struct filedesc *fdp = p->p_fd;
164 1.27 mycroft register int old = SCARG(uap, from), new = SCARG(uap, to);
165 1.16 cgd int i, error;
166 1.16 cgd
167 1.59 thorpej if ((u_int)old >= fdp->fd_nfiles ||
168 1.59 thorpej (fp = fdp->fd_ofiles[old]) == NULL ||
169 1.59 thorpej (fp->f_iflags & FIF_WANTCLOSE) != 0 ||
170 1.27 mycroft (u_int)new >= p->p_rlimit[RLIMIT_NOFILE].rlim_cur ||
171 1.27 mycroft (u_int)new >= maxfiles)
172 1.16 cgd return (EBADF);
173 1.17 cgd if (old == new) {
174 1.17 cgd *retval = new;
175 1.16 cgd return (0);
176 1.17 cgd }
177 1.59 thorpej
178 1.59 thorpej FILE_USE(fp);
179 1.59 thorpej
180 1.16 cgd if (new >= fdp->fd_nfiles) {
181 1.59 thorpej if ((error = fdalloc(p, new, &i)) != 0) {
182 1.59 thorpej FILE_UNUSE(fp, p);
183 1.16 cgd return (error);
184 1.59 thorpej }
185 1.16 cgd if (new != i)
186 1.16 cgd panic("dup2: fdalloc");
187 1.27 mycroft } else {
188 1.34 mycroft (void) fdrelease(p, new);
189 1.16 cgd }
190 1.59 thorpej
191 1.59 thorpej /* finishdup() will unuse the descriptors for us */
192 1.59 thorpej return (finishdup(p, old, new, retval));
193 1.16 cgd }
194 1.16 cgd
195 1.61 wrstuden int fcntl_forfs __P((int, struct proc *, int, void *));
196 1.61 wrstuden
197 1.16 cgd /*
198 1.16 cgd * The file control system call.
199 1.16 cgd */
200 1.16 cgd /* ARGSUSED */
201 1.38 christos int
202 1.37 mycroft sys_fcntl(p, v, retval)
203 1.16 cgd struct proc *p;
204 1.36 thorpej void *v;
205 1.36 thorpej register_t *retval;
206 1.36 thorpej {
207 1.37 mycroft register struct sys_fcntl_args /* {
208 1.25 cgd syscallarg(int) fd;
209 1.25 cgd syscallarg(int) cmd;
210 1.26 cgd syscallarg(void *) arg;
211 1.36 thorpej } */ *uap = v;
212 1.27 mycroft int fd = SCARG(uap, fd);
213 1.16 cgd register struct filedesc *fdp = p->p_fd;
214 1.16 cgd register struct file *fp;
215 1.16 cgd struct vnode *vp;
216 1.61 wrstuden int i, tmp, error = 0, flg = F_POSIX, cmd;
217 1.16 cgd struct flock fl;
218 1.27 mycroft int newmin;
219 1.16 cgd
220 1.27 mycroft if ((u_int)fd >= fdp->fd_nfiles ||
221 1.59 thorpej (fp = fdp->fd_ofiles[fd]) == NULL ||
222 1.59 thorpej (fp->f_iflags & FIF_WANTCLOSE) != 0)
223 1.16 cgd return (EBADF);
224 1.59 thorpej
225 1.59 thorpej FILE_USE(fp);
226 1.59 thorpej
227 1.61 wrstuden cmd = SCARG(uap, cmd);
228 1.61 wrstuden if ((cmd & F_FSCTL)) {
229 1.61 wrstuden error = fcntl_forfs(fd, p, cmd, SCARG(uap, arg));
230 1.61 wrstuden goto out;
231 1.61 wrstuden }
232 1.61 wrstuden
233 1.61 wrstuden switch (cmd) {
234 1.17 cgd
235 1.16 cgd case F_DUPFD:
236 1.30 cgd newmin = (long)SCARG(uap, arg);
237 1.27 mycroft if ((u_int)newmin >= p->p_rlimit[RLIMIT_NOFILE].rlim_cur ||
238 1.59 thorpej (u_int)newmin >= maxfiles) {
239 1.59 thorpej error = EINVAL;
240 1.59 thorpej goto out;
241 1.59 thorpej }
242 1.38 christos if ((error = fdalloc(p, newmin, &i)) != 0)
243 1.59 thorpej goto out;
244 1.59 thorpej
245 1.59 thorpej /* finishdup() will unuse the descriptors for us */
246 1.59 thorpej return (finishdup(p, fd, i, retval));
247 1.16 cgd
248 1.16 cgd case F_GETFD:
249 1.27 mycroft *retval = fdp->fd_ofileflags[fd] & UF_EXCLOSE ? 1 : 0;
250 1.59 thorpej break;
251 1.16 cgd
252 1.16 cgd case F_SETFD:
253 1.27 mycroft if ((long)SCARG(uap, arg) & 1)
254 1.27 mycroft fdp->fd_ofileflags[fd] |= UF_EXCLOSE;
255 1.27 mycroft else
256 1.27 mycroft fdp->fd_ofileflags[fd] &= ~UF_EXCLOSE;
257 1.59 thorpej break;
258 1.16 cgd
259 1.16 cgd case F_GETFL:
260 1.16 cgd *retval = OFLAGS(fp->f_flag);
261 1.59 thorpej break;
262 1.16 cgd
263 1.16 cgd case F_SETFL:
264 1.61 wrstuden tmp = FFLAGS((long)SCARG(uap, arg)) & FCNTLFLAGS;
265 1.61 wrstuden error = (*fp->f_ops->fo_fcntl)(fp, F_SETFL, (caddr_t)&tmp, p);
266 1.61 wrstuden if (error)
267 1.62 sommerfe goto out;
268 1.16 cgd fp->f_flag &= ~FCNTLFLAGS;
269 1.61 wrstuden fp->f_flag |= tmp;
270 1.16 cgd tmp = fp->f_flag & FNONBLOCK;
271 1.16 cgd error = (*fp->f_ops->fo_ioctl)(fp, FIONBIO, (caddr_t)&tmp, p);
272 1.16 cgd if (error)
273 1.59 thorpej goto out;
274 1.16 cgd tmp = fp->f_flag & FASYNC;
275 1.16 cgd error = (*fp->f_ops->fo_ioctl)(fp, FIOASYNC, (caddr_t)&tmp, p);
276 1.59 thorpej if (error == 0)
277 1.59 thorpej goto out;
278 1.16 cgd fp->f_flag &= ~FNONBLOCK;
279 1.16 cgd tmp = 0;
280 1.16 cgd (void) (*fp->f_ops->fo_ioctl)(fp, FIONBIO, (caddr_t)&tmp, p);
281 1.59 thorpej break;
282 1.16 cgd
283 1.16 cgd case F_GETOWN:
284 1.16 cgd if (fp->f_type == DTYPE_SOCKET) {
285 1.16 cgd *retval = ((struct socket *)fp->f_data)->so_pgid;
286 1.59 thorpej goto out;
287 1.16 cgd }
288 1.16 cgd error = (*fp->f_ops->fo_ioctl)
289 1.41 cgd (fp, TIOCGPGRP, (caddr_t)retval, p);
290 1.16 cgd *retval = -*retval;
291 1.59 thorpej break;
292 1.16 cgd
293 1.16 cgd case F_SETOWN:
294 1.16 cgd if (fp->f_type == DTYPE_SOCKET) {
295 1.25 cgd ((struct socket *)fp->f_data)->so_pgid =
296 1.25 cgd (long)SCARG(uap, arg);
297 1.59 thorpej goto out;
298 1.16 cgd }
299 1.25 cgd if ((long)SCARG(uap, arg) <= 0) {
300 1.25 cgd SCARG(uap, arg) = (void *)(-(long)SCARG(uap, arg));
301 1.16 cgd } else {
302 1.25 cgd struct proc *p1 = pfind((long)SCARG(uap, arg));
303 1.59 thorpej if (p1 == 0) {
304 1.59 thorpej error = ESRCH;
305 1.59 thorpej goto out;
306 1.59 thorpej }
307 1.26 cgd SCARG(uap, arg) = (void *)(long)p1->p_pgrp->pg_id;
308 1.16 cgd }
309 1.59 thorpej error = (*fp->f_ops->fo_ioctl)
310 1.59 thorpej (fp, TIOCSPGRP, (caddr_t)&SCARG(uap, arg), p);
311 1.59 thorpej break;
312 1.16 cgd
313 1.16 cgd case F_SETLKW:
314 1.16 cgd flg |= F_WAIT;
315 1.16 cgd /* Fall into F_SETLK */
316 1.16 cgd
317 1.16 cgd case F_SETLK:
318 1.59 thorpej if (fp->f_type != DTYPE_VNODE) {
319 1.59 thorpej error = EINVAL;
320 1.59 thorpej goto out;
321 1.59 thorpej }
322 1.16 cgd vp = (struct vnode *)fp->f_data;
323 1.16 cgd /* Copy in the lock structure */
324 1.25 cgd error = copyin((caddr_t)SCARG(uap, arg), (caddr_t)&fl,
325 1.52 perry sizeof(fl));
326 1.16 cgd if (error)
327 1.59 thorpej goto out;
328 1.16 cgd if (fl.l_whence == SEEK_CUR)
329 1.16 cgd fl.l_start += fp->f_offset;
330 1.16 cgd switch (fl.l_type) {
331 1.16 cgd case F_RDLCK:
332 1.59 thorpej if ((fp->f_flag & FREAD) == 0) {
333 1.59 thorpej error = EBADF;
334 1.59 thorpej goto out;
335 1.59 thorpej }
336 1.16 cgd p->p_flag |= P_ADVLOCK;
337 1.59 thorpej error = VOP_ADVLOCK(vp, (caddr_t)p, F_SETLK, &fl, flg);
338 1.59 thorpej goto out;
339 1.16 cgd
340 1.16 cgd case F_WRLCK:
341 1.59 thorpej if ((fp->f_flag & FWRITE) == 0) {
342 1.59 thorpej error = EBADF;
343 1.59 thorpej goto out;
344 1.59 thorpej }
345 1.16 cgd p->p_flag |= P_ADVLOCK;
346 1.59 thorpej error = VOP_ADVLOCK(vp, (caddr_t)p, F_SETLK, &fl, flg);
347 1.59 thorpej goto out;
348 1.16 cgd
349 1.16 cgd case F_UNLCK:
350 1.59 thorpej error = VOP_ADVLOCK(vp, (caddr_t)p, F_UNLCK, &fl,
351 1.59 thorpej F_POSIX);
352 1.59 thorpej goto out;
353 1.16 cgd
354 1.16 cgd default:
355 1.59 thorpej error = EINVAL;
356 1.59 thorpej goto out;
357 1.16 cgd }
358 1.16 cgd
359 1.16 cgd case F_GETLK:
360 1.59 thorpej if (fp->f_type != DTYPE_VNODE) {
361 1.59 thorpej error = EINVAL;
362 1.59 thorpej goto out;
363 1.59 thorpej }
364 1.16 cgd vp = (struct vnode *)fp->f_data;
365 1.16 cgd /* Copy in the lock structure */
366 1.25 cgd error = copyin((caddr_t)SCARG(uap, arg), (caddr_t)&fl,
367 1.52 perry sizeof(fl));
368 1.16 cgd if (error)
369 1.59 thorpej goto out;
370 1.16 cgd if (fl.l_whence == SEEK_CUR)
371 1.16 cgd fl.l_start += fp->f_offset;
372 1.43 kleink if (fl.l_type != F_RDLCK &&
373 1.43 kleink fl.l_type != F_WRLCK &&
374 1.59 thorpej fl.l_type != F_UNLCK) {
375 1.59 thorpej error = EINVAL;
376 1.59 thorpej goto out;
377 1.59 thorpej }
378 1.38 christos error = VOP_ADVLOCK(vp, (caddr_t)p, F_GETLK, &fl, F_POSIX);
379 1.38 christos if (error)
380 1.59 thorpej goto out;
381 1.59 thorpej error = copyout((caddr_t)&fl, (caddr_t)SCARG(uap, arg),
382 1.59 thorpej sizeof(fl));
383 1.59 thorpej break;
384 1.16 cgd
385 1.16 cgd default:
386 1.59 thorpej error = EINVAL;
387 1.16 cgd }
388 1.59 thorpej
389 1.59 thorpej out:
390 1.59 thorpej FILE_UNUSE(fp, p);
391 1.59 thorpej return (error);
392 1.16 cgd }
393 1.16 cgd
394 1.16 cgd /*
395 1.17 cgd * Common code for dup, dup2, and fcntl(F_DUPFD).
396 1.17 cgd */
397 1.17 cgd int
398 1.59 thorpej finishdup(p, old, new, retval)
399 1.59 thorpej struct proc *p;
400 1.59 thorpej int old, new;
401 1.25 cgd register_t *retval;
402 1.17 cgd {
403 1.59 thorpej struct filedesc *fdp = p->p_fd;
404 1.59 thorpej struct file *fp;
405 1.59 thorpej
406 1.59 thorpej /*
407 1.59 thorpej * Note: `old' is already used for us.
408 1.59 thorpej */
409 1.17 cgd
410 1.17 cgd fp = fdp->fd_ofiles[old];
411 1.17 cgd fdp->fd_ofiles[new] = fp;
412 1.17 cgd fdp->fd_ofileflags[new] = fdp->fd_ofileflags[old] &~ UF_EXCLOSE;
413 1.17 cgd fp->f_count++;
414 1.27 mycroft fd_used(fdp, new);
415 1.17 cgd *retval = new;
416 1.59 thorpej FILE_UNUSE(fp, p);
417 1.17 cgd return (0);
418 1.17 cgd }
419 1.17 cgd
420 1.27 mycroft int
421 1.34 mycroft fdrelease(p, fd)
422 1.27 mycroft struct proc *p;
423 1.27 mycroft int fd;
424 1.27 mycroft {
425 1.27 mycroft register struct filedesc *fdp = p->p_fd;
426 1.27 mycroft register struct file **fpp, *fp;
427 1.27 mycroft register char *pf;
428 1.27 mycroft
429 1.27 mycroft fpp = &fdp->fd_ofiles[fd];
430 1.27 mycroft fp = *fpp;
431 1.27 mycroft if (fp == NULL)
432 1.27 mycroft return (EBADF);
433 1.59 thorpej
434 1.59 thorpej FILE_USE(fp);
435 1.59 thorpej
436 1.27 mycroft pf = &fdp->fd_ofileflags[fd];
437 1.49 mrg if (*pf & UF_MAPPED) {
438 1.49 mrg /* XXX: USELESS? XXXCDC check it */
439 1.49 mrg p->p_fd->fd_ofileflags[fd] &= ~UF_MAPPED;
440 1.49 mrg }
441 1.27 mycroft *fpp = NULL;
442 1.27 mycroft *pf = 0;
443 1.27 mycroft fd_unused(fdp, fd);
444 1.27 mycroft return (closef(fp, p));
445 1.27 mycroft }
446 1.27 mycroft
447 1.17 cgd /*
448 1.16 cgd * Close a file descriptor.
449 1.16 cgd */
450 1.16 cgd /* ARGSUSED */
451 1.38 christos int
452 1.37 mycroft sys_close(p, v, retval)
453 1.16 cgd struct proc *p;
454 1.36 thorpej void *v;
455 1.36 thorpej register_t *retval;
456 1.36 thorpej {
457 1.37 mycroft struct sys_close_args /* {
458 1.25 cgd syscallarg(int) fd;
459 1.36 thorpej } */ *uap = v;
460 1.27 mycroft int fd = SCARG(uap, fd);
461 1.16 cgd register struct filedesc *fdp = p->p_fd;
462 1.16 cgd
463 1.27 mycroft if ((u_int)fd >= fdp->fd_nfiles)
464 1.16 cgd return (EBADF);
465 1.34 mycroft return (fdrelease(p, fd));
466 1.16 cgd }
467 1.16 cgd
468 1.17 cgd /*
469 1.17 cgd * Return status information about a file descriptor.
470 1.17 cgd */
471 1.16 cgd /* ARGSUSED */
472 1.38 christos int
473 1.47 thorpej sys___fstat13(p, v, retval)
474 1.16 cgd struct proc *p;
475 1.36 thorpej void *v;
476 1.36 thorpej register_t *retval;
477 1.36 thorpej {
478 1.47 thorpej register struct sys___fstat13_args /* {
479 1.25 cgd syscallarg(int) fd;
480 1.25 cgd syscallarg(struct stat *) sb;
481 1.36 thorpej } */ *uap = v;
482 1.27 mycroft int fd = SCARG(uap, fd);
483 1.16 cgd register struct filedesc *fdp = p->p_fd;
484 1.16 cgd register struct file *fp;
485 1.16 cgd struct stat ub;
486 1.16 cgd int error;
487 1.16 cgd
488 1.27 mycroft if ((u_int)fd >= fdp->fd_nfiles ||
489 1.59 thorpej (fp = fdp->fd_ofiles[fd]) == NULL ||
490 1.59 thorpej (fp->f_iflags & FIF_WANTCLOSE) != 0)
491 1.16 cgd return (EBADF);
492 1.59 thorpej
493 1.59 thorpej FILE_USE(fp);
494 1.59 thorpej
495 1.16 cgd switch (fp->f_type) {
496 1.16 cgd
497 1.16 cgd case DTYPE_VNODE:
498 1.16 cgd error = vn_stat((struct vnode *)fp->f_data, &ub, p);
499 1.16 cgd break;
500 1.16 cgd
501 1.16 cgd case DTYPE_SOCKET:
502 1.16 cgd error = soo_stat((struct socket *)fp->f_data, &ub);
503 1.16 cgd break;
504 1.16 cgd
505 1.16 cgd default:
506 1.16 cgd panic("fstat");
507 1.16 cgd /*NOTREACHED*/
508 1.16 cgd }
509 1.16 cgd if (error == 0)
510 1.52 perry error = copyout(&ub, SCARG(uap, sb), sizeof(ub));
511 1.59 thorpej FILE_UNUSE(fp, p);
512 1.16 cgd return (error);
513 1.16 cgd }
514 1.16 cgd
515 1.16 cgd /*
516 1.16 cgd * Return pathconf information about a file descriptor.
517 1.16 cgd */
518 1.16 cgd /* ARGSUSED */
519 1.38 christos int
520 1.37 mycroft sys_fpathconf(p, v, retval)
521 1.16 cgd struct proc *p;
522 1.36 thorpej void *v;
523 1.36 thorpej register_t *retval;
524 1.36 thorpej {
525 1.37 mycroft register struct sys_fpathconf_args /* {
526 1.25 cgd syscallarg(int) fd;
527 1.25 cgd syscallarg(int) name;
528 1.36 thorpej } */ *uap = v;
529 1.27 mycroft int fd = SCARG(uap, fd);
530 1.17 cgd struct filedesc *fdp = p->p_fd;
531 1.17 cgd struct file *fp;
532 1.17 cgd struct vnode *vp;
533 1.59 thorpej int error = 0;
534 1.17 cgd
535 1.27 mycroft if ((u_int)fd >= fdp->fd_nfiles ||
536 1.59 thorpej (fp = fdp->fd_ofiles[fd]) == NULL ||
537 1.59 thorpej (fp->f_iflags & FIF_WANTCLOSE) != 0)
538 1.17 cgd return (EBADF);
539 1.59 thorpej
540 1.59 thorpej FILE_USE(fp);
541 1.59 thorpej
542 1.17 cgd switch (fp->f_type) {
543 1.16 cgd
544 1.17 cgd case DTYPE_SOCKET:
545 1.25 cgd if (SCARG(uap, name) != _PC_PIPE_BUF)
546 1.59 thorpej error = EINVAL;
547 1.59 thorpej else
548 1.59 thorpej *retval = PIPE_BUF;
549 1.59 thorpej break;
550 1.17 cgd
551 1.17 cgd case DTYPE_VNODE:
552 1.17 cgd vp = (struct vnode *)fp->f_data;
553 1.59 thorpej error = VOP_PATHCONF(vp, SCARG(uap, name), retval);
554 1.59 thorpej break;
555 1.17 cgd
556 1.17 cgd default:
557 1.17 cgd panic("fpathconf");
558 1.17 cgd }
559 1.59 thorpej
560 1.59 thorpej FILE_UNUSE(fp, p);
561 1.59 thorpej return (error);
562 1.16 cgd }
563 1.16 cgd
564 1.16 cgd /*
565 1.16 cgd * Allocate a file descriptor for the process.
566 1.16 cgd */
567 1.16 cgd int fdexpand;
568 1.16 cgd
569 1.38 christos int
570 1.16 cgd fdalloc(p, want, result)
571 1.16 cgd struct proc *p;
572 1.16 cgd int want;
573 1.16 cgd int *result;
574 1.16 cgd {
575 1.16 cgd register struct filedesc *fdp = p->p_fd;
576 1.16 cgd register int i;
577 1.16 cgd int lim, last, nfiles;
578 1.16 cgd struct file **newofile;
579 1.16 cgd char *newofileflags;
580 1.16 cgd
581 1.16 cgd /*
582 1.16 cgd * Search for a free descriptor starting at the higher
583 1.16 cgd * of want or fd_freefile. If that fails, consider
584 1.16 cgd * expanding the ofile array.
585 1.16 cgd */
586 1.17 cgd lim = min((int)p->p_rlimit[RLIMIT_NOFILE].rlim_cur, maxfiles);
587 1.16 cgd for (;;) {
588 1.16 cgd last = min(fdp->fd_nfiles, lim);
589 1.16 cgd if ((i = want) < fdp->fd_freefile)
590 1.16 cgd i = fdp->fd_freefile;
591 1.16 cgd for (; i < last; i++) {
592 1.16 cgd if (fdp->fd_ofiles[i] == NULL) {
593 1.27 mycroft fd_used(fdp, i);
594 1.16 cgd if (want <= fdp->fd_freefile)
595 1.16 cgd fdp->fd_freefile = i;
596 1.16 cgd *result = i;
597 1.16 cgd return (0);
598 1.16 cgd }
599 1.16 cgd }
600 1.16 cgd
601 1.16 cgd /*
602 1.16 cgd * No space in current array. Expand?
603 1.16 cgd */
604 1.16 cgd if (fdp->fd_nfiles >= lim)
605 1.16 cgd return (EMFILE);
606 1.16 cgd if (fdp->fd_nfiles < NDEXTENT)
607 1.16 cgd nfiles = NDEXTENT;
608 1.16 cgd else
609 1.16 cgd nfiles = 2 * fdp->fd_nfiles;
610 1.16 cgd MALLOC(newofile, struct file **, nfiles * OFILESIZE,
611 1.16 cgd M_FILEDESC, M_WAITOK);
612 1.16 cgd newofileflags = (char *) &newofile[nfiles];
613 1.16 cgd /*
614 1.16 cgd * Copy the existing ofile and ofileflags arrays
615 1.16 cgd * and zero the new portion of each array.
616 1.16 cgd */
617 1.53 perry memcpy(newofile, fdp->fd_ofiles,
618 1.16 cgd (i = sizeof(struct file *) * fdp->fd_nfiles));
619 1.53 perry memset((char *)newofile + i, 0, nfiles * sizeof(struct file *) - i);
620 1.53 perry memcpy(newofileflags, fdp->fd_ofileflags,
621 1.16 cgd (i = sizeof(char) * fdp->fd_nfiles));
622 1.53 perry memset(newofileflags + i, 0, nfiles * sizeof(char) - i);
623 1.16 cgd if (fdp->fd_nfiles > NDFILE)
624 1.16 cgd FREE(fdp->fd_ofiles, M_FILEDESC);
625 1.16 cgd fdp->fd_ofiles = newofile;
626 1.16 cgd fdp->fd_ofileflags = newofileflags;
627 1.16 cgd fdp->fd_nfiles = nfiles;
628 1.16 cgd fdexpand++;
629 1.16 cgd }
630 1.16 cgd }
631 1.16 cgd
632 1.16 cgd /*
633 1.16 cgd * Check to see whether n user file descriptors
634 1.16 cgd * are available to the process p.
635 1.16 cgd */
636 1.38 christos int
637 1.16 cgd fdavail(p, n)
638 1.16 cgd struct proc *p;
639 1.16 cgd register int n;
640 1.16 cgd {
641 1.16 cgd register struct filedesc *fdp = p->p_fd;
642 1.16 cgd register struct file **fpp;
643 1.17 cgd register int i, lim;
644 1.16 cgd
645 1.17 cgd lim = min((int)p->p_rlimit[RLIMIT_NOFILE].rlim_cur, maxfiles);
646 1.17 cgd if ((i = lim - fdp->fd_nfiles) > 0 && (n -= i) <= 0)
647 1.16 cgd return (1);
648 1.16 cgd fpp = &fdp->fd_ofiles[fdp->fd_freefile];
649 1.56 sommerfe for (i = min(lim,fdp->fd_nfiles) - fdp->fd_freefile; --i >= 0; fpp++)
650 1.16 cgd if (*fpp == NULL && --n <= 0)
651 1.16 cgd return (1);
652 1.16 cgd return (0);
653 1.16 cgd }
654 1.16 cgd
655 1.16 cgd /*
656 1.55 thorpej * Initialize the data structures necessary for managing files.
657 1.55 thorpej */
658 1.55 thorpej void
659 1.55 thorpej finit()
660 1.55 thorpej {
661 1.55 thorpej
662 1.55 thorpej pool_init(&file_pool, sizeof(struct file), 0, 0, 0, "filepl",
663 1.55 thorpej 0, pool_page_alloc_nointr, pool_page_free_nointr, M_FILE);
664 1.58 thorpej pool_init(&cwdi_pool, sizeof(struct cwdinfo), 0, 0, 0, "cwdipl",
665 1.58 thorpej 0, pool_page_alloc_nointr, pool_page_free_nointr, M_FILEDESC);
666 1.55 thorpej }
667 1.55 thorpej
668 1.55 thorpej /*
669 1.16 cgd * Create a new open file structure and allocate
670 1.16 cgd * a file decriptor for the process that refers to it.
671 1.16 cgd */
672 1.38 christos int
673 1.16 cgd falloc(p, resultfp, resultfd)
674 1.16 cgd register struct proc *p;
675 1.16 cgd struct file **resultfp;
676 1.16 cgd int *resultfd;
677 1.16 cgd {
678 1.24 mycroft register struct file *fp, *fq;
679 1.16 cgd int error, i;
680 1.16 cgd
681 1.38 christos if ((error = fdalloc(p, 0, &i)) != 0)
682 1.16 cgd return (error);
683 1.16 cgd if (nfiles >= maxfiles) {
684 1.16 cgd tablefull("file");
685 1.16 cgd return (ENFILE);
686 1.16 cgd }
687 1.16 cgd /*
688 1.16 cgd * Allocate a new file descriptor.
689 1.16 cgd * If the process has file descriptor zero open, add to the list
690 1.16 cgd * of open files at that point, otherwise put it at the front of
691 1.16 cgd * the list of open files.
692 1.16 cgd */
693 1.16 cgd nfiles++;
694 1.55 thorpej fp = pool_get(&file_pool, PR_WAITOK);
695 1.53 perry memset(fp, 0, sizeof(struct file));
696 1.38 christos if ((fq = p->p_fd->fd_ofiles[0]) != NULL) {
697 1.24 mycroft LIST_INSERT_AFTER(fq, fp, f_list);
698 1.24 mycroft } else {
699 1.24 mycroft LIST_INSERT_HEAD(&filehead, fp, f_list);
700 1.24 mycroft }
701 1.16 cgd p->p_fd->fd_ofiles[i] = fp;
702 1.16 cgd fp->f_count = 1;
703 1.16 cgd fp->f_cred = p->p_ucred;
704 1.16 cgd crhold(fp->f_cred);
705 1.59 thorpej if (resultfp) {
706 1.59 thorpej FILE_USE(fp);
707 1.16 cgd *resultfp = fp;
708 1.59 thorpej }
709 1.16 cgd if (resultfd)
710 1.16 cgd *resultfd = i;
711 1.16 cgd return (0);
712 1.16 cgd }
713 1.16 cgd
714 1.16 cgd /*
715 1.16 cgd * Free a file descriptor.
716 1.16 cgd */
717 1.38 christos void
718 1.16 cgd ffree(fp)
719 1.16 cgd register struct file *fp;
720 1.16 cgd {
721 1.59 thorpej
722 1.59 thorpej #ifdef DIAGNOSTIC
723 1.59 thorpej if (fp->f_usecount)
724 1.59 thorpej panic("ffree");
725 1.59 thorpej #endif
726 1.59 thorpej
727 1.24 mycroft LIST_REMOVE(fp, f_list);
728 1.16 cgd crfree(fp->f_cred);
729 1.16 cgd #ifdef DIAGNOSTIC
730 1.16 cgd fp->f_count = 0;
731 1.16 cgd #endif
732 1.16 cgd nfiles--;
733 1.55 thorpej pool_put(&file_pool, fp);
734 1.48 thorpej }
735 1.48 thorpej
736 1.48 thorpej /*
737 1.58 thorpej * Create an initial cwdinfo structure, using the same current and root
738 1.58 thorpej * directories as p.
739 1.58 thorpej */
740 1.58 thorpej struct cwdinfo *
741 1.58 thorpej cwdinit(p)
742 1.58 thorpej struct proc *p;
743 1.58 thorpej {
744 1.58 thorpej struct cwdinfo *cwdi;
745 1.58 thorpej
746 1.58 thorpej cwdi = pool_get(&cwdi_pool, PR_WAITOK);
747 1.58 thorpej
748 1.58 thorpej cwdi->cwdi_cdir = p->p_cwdi->cwdi_cdir;
749 1.58 thorpej VREF(cwdi->cwdi_cdir);
750 1.58 thorpej cwdi->cwdi_rdir = p->p_cwdi->cwdi_rdir;
751 1.58 thorpej if (cwdi->cwdi_rdir)
752 1.58 thorpej VREF(cwdi->cwdi_rdir);
753 1.60 christos cwdi->cwdi_cmask = p->p_cwdi->cwdi_cmask;
754 1.58 thorpej cwdi->cwdi_refcnt = 1;
755 1.58 thorpej
756 1.58 thorpej return (cwdi);
757 1.58 thorpej }
758 1.58 thorpej
759 1.58 thorpej /*
760 1.58 thorpej * Make p2 share p1's cwdinfo.
761 1.58 thorpej */
762 1.58 thorpej void
763 1.58 thorpej cwdshare(p1, p2)
764 1.58 thorpej struct proc *p1, *p2;
765 1.58 thorpej {
766 1.58 thorpej
767 1.58 thorpej p2->p_cwdi = p1->p_cwdi;
768 1.58 thorpej p1->p_cwdi->cwdi_refcnt++;
769 1.58 thorpej }
770 1.58 thorpej
771 1.58 thorpej /*
772 1.58 thorpej * Make this process not share its cwdinfo structure, maintaining
773 1.58 thorpej * all cwdinfo state.
774 1.58 thorpej */
775 1.58 thorpej void
776 1.58 thorpej cwdunshare(p)
777 1.58 thorpej struct proc *p;
778 1.58 thorpej {
779 1.58 thorpej struct cwdinfo *newcwdi;
780 1.58 thorpej
781 1.58 thorpej if (p->p_cwdi->cwdi_refcnt == 1)
782 1.58 thorpej return;
783 1.58 thorpej
784 1.58 thorpej newcwdi = cwdinit(p);
785 1.58 thorpej cwdfree(p);
786 1.58 thorpej p->p_cwdi = newcwdi;
787 1.58 thorpej }
788 1.58 thorpej
789 1.58 thorpej /*
790 1.58 thorpej * Release a cwdinfo structure.
791 1.58 thorpej */
792 1.58 thorpej void
793 1.58 thorpej cwdfree(p)
794 1.58 thorpej struct proc *p;
795 1.58 thorpej {
796 1.58 thorpej struct cwdinfo *cwdi = p->p_cwdi;
797 1.58 thorpej
798 1.58 thorpej if (--cwdi->cwdi_refcnt > 0)
799 1.58 thorpej return;
800 1.58 thorpej
801 1.58 thorpej p->p_cwdi = NULL;
802 1.58 thorpej
803 1.58 thorpej vrele(cwdi->cwdi_cdir);
804 1.58 thorpej if (cwdi->cwdi_rdir)
805 1.58 thorpej vrele(cwdi->cwdi_rdir);
806 1.58 thorpej pool_put(&cwdi_pool, cwdi);
807 1.58 thorpej }
808 1.58 thorpej
809 1.58 thorpej /*
810 1.48 thorpej * Create an initial filedesc structure, using the same current and root
811 1.48 thorpej * directories as p.
812 1.48 thorpej */
813 1.48 thorpej struct filedesc *
814 1.48 thorpej fdinit(p)
815 1.48 thorpej struct proc *p;
816 1.48 thorpej {
817 1.48 thorpej struct filedesc0 *newfdp;
818 1.48 thorpej
819 1.48 thorpej MALLOC(newfdp, struct filedesc0 *, sizeof(struct filedesc0),
820 1.48 thorpej M_FILEDESC, M_WAITOK);
821 1.53 perry memset(newfdp, 0, sizeof(struct filedesc0));
822 1.48 thorpej
823 1.48 thorpej fdinit1(newfdp);
824 1.48 thorpej
825 1.48 thorpej return (&newfdp->fd_fd);
826 1.48 thorpej }
827 1.48 thorpej
828 1.48 thorpej /*
829 1.48 thorpej * Initialize a file descriptor table.
830 1.48 thorpej */
831 1.48 thorpej void
832 1.48 thorpej fdinit1(newfdp)
833 1.48 thorpej struct filedesc0 *newfdp;
834 1.48 thorpej {
835 1.48 thorpej
836 1.48 thorpej newfdp->fd_fd.fd_refcnt = 1;
837 1.48 thorpej newfdp->fd_fd.fd_ofiles = newfdp->fd_dfiles;
838 1.48 thorpej newfdp->fd_fd.fd_ofileflags = newfdp->fd_dfileflags;
839 1.48 thorpej newfdp->fd_fd.fd_nfiles = NDFILE;
840 1.48 thorpej }
841 1.48 thorpej
842 1.48 thorpej /*
843 1.48 thorpej * Make p2 share p1's filedesc structure.
844 1.48 thorpej */
845 1.48 thorpej void
846 1.48 thorpej fdshare(p1, p2)
847 1.48 thorpej struct proc *p1, *p2;
848 1.48 thorpej {
849 1.48 thorpej
850 1.48 thorpej p2->p_fd = p1->p_fd;
851 1.48 thorpej p1->p_fd->fd_refcnt++;
852 1.48 thorpej }
853 1.48 thorpej
854 1.48 thorpej /*
855 1.48 thorpej * Make this process not share its filedesc structure, maintaining
856 1.48 thorpej * all file descriptor state.
857 1.48 thorpej */
858 1.48 thorpej void
859 1.48 thorpej fdunshare(p)
860 1.48 thorpej struct proc *p;
861 1.48 thorpej {
862 1.48 thorpej struct filedesc *newfd;
863 1.48 thorpej
864 1.48 thorpej if (p->p_fd->fd_refcnt == 1)
865 1.48 thorpej return;
866 1.48 thorpej
867 1.48 thorpej newfd = fdcopy(p);
868 1.48 thorpej fdfree(p);
869 1.48 thorpej p->p_fd = newfd;
870 1.48 thorpej }
871 1.48 thorpej
872 1.48 thorpej /*
873 1.48 thorpej * Clear a process's fd table.
874 1.48 thorpej */
875 1.48 thorpej void
876 1.48 thorpej fdclear(p)
877 1.48 thorpej struct proc *p;
878 1.48 thorpej {
879 1.48 thorpej struct filedesc *newfd;
880 1.48 thorpej
881 1.48 thorpej newfd = fdinit(p);
882 1.48 thorpej fdfree(p);
883 1.48 thorpej p->p_fd = newfd;
884 1.16 cgd }
885 1.16 cgd
886 1.16 cgd /*
887 1.16 cgd * Copy a filedesc structure.
888 1.16 cgd */
889 1.16 cgd struct filedesc *
890 1.16 cgd fdcopy(p)
891 1.16 cgd struct proc *p;
892 1.16 cgd {
893 1.16 cgd register struct filedesc *newfdp, *fdp = p->p_fd;
894 1.16 cgd register struct file **fpp;
895 1.16 cgd register int i;
896 1.16 cgd
897 1.16 cgd MALLOC(newfdp, struct filedesc *, sizeof(struct filedesc0),
898 1.16 cgd M_FILEDESC, M_WAITOK);
899 1.53 perry memcpy(newfdp, fdp, sizeof(struct filedesc));
900 1.16 cgd newfdp->fd_refcnt = 1;
901 1.16 cgd
902 1.16 cgd /*
903 1.16 cgd * If the number of open files fits in the internal arrays
904 1.16 cgd * of the open file structure, use them, otherwise allocate
905 1.16 cgd * additional memory for the number of descriptors currently
906 1.16 cgd * in use.
907 1.16 cgd */
908 1.16 cgd if (newfdp->fd_lastfile < NDFILE) {
909 1.16 cgd newfdp->fd_ofiles = ((struct filedesc0 *) newfdp)->fd_dfiles;
910 1.16 cgd newfdp->fd_ofileflags =
911 1.16 cgd ((struct filedesc0 *) newfdp)->fd_dfileflags;
912 1.16 cgd i = NDFILE;
913 1.16 cgd } else {
914 1.16 cgd /*
915 1.16 cgd * Compute the smallest multiple of NDEXTENT needed
916 1.16 cgd * for the file descriptors currently in use,
917 1.16 cgd * allowing the table to shrink.
918 1.16 cgd */
919 1.16 cgd i = newfdp->fd_nfiles;
920 1.27 mycroft while (i >= 2 * NDEXTENT && i > newfdp->fd_lastfile * 2)
921 1.16 cgd i /= 2;
922 1.16 cgd MALLOC(newfdp->fd_ofiles, struct file **, i * OFILESIZE,
923 1.16 cgd M_FILEDESC, M_WAITOK);
924 1.16 cgd newfdp->fd_ofileflags = (char *) &newfdp->fd_ofiles[i];
925 1.16 cgd }
926 1.16 cgd newfdp->fd_nfiles = i;
927 1.53 perry memcpy(newfdp->fd_ofiles, fdp->fd_ofiles, i * sizeof(struct file **));
928 1.53 perry memcpy(newfdp->fd_ofileflags, fdp->fd_ofileflags, i * sizeof(char));
929 1.16 cgd fpp = newfdp->fd_ofiles;
930 1.27 mycroft for (i = newfdp->fd_lastfile; i >= 0; i--, fpp++)
931 1.16 cgd if (*fpp != NULL)
932 1.16 cgd (*fpp)->f_count++;
933 1.16 cgd return (newfdp);
934 1.16 cgd }
935 1.16 cgd
936 1.16 cgd /*
937 1.16 cgd * Release a filedesc structure.
938 1.16 cgd */
939 1.16 cgd void
940 1.16 cgd fdfree(p)
941 1.16 cgd struct proc *p;
942 1.16 cgd {
943 1.16 cgd register struct filedesc *fdp = p->p_fd;
944 1.32 mycroft register struct file **fpp, *fp;
945 1.16 cgd register int i;
946 1.16 cgd
947 1.16 cgd if (--fdp->fd_refcnt > 0)
948 1.16 cgd return;
949 1.16 cgd fpp = fdp->fd_ofiles;
950 1.32 mycroft for (i = fdp->fd_lastfile; i >= 0; i--, fpp++) {
951 1.32 mycroft fp = *fpp;
952 1.32 mycroft if (fp != NULL) {
953 1.32 mycroft *fpp = NULL;
954 1.59 thorpej FILE_USE(fp);
955 1.32 mycroft (void) closef(fp, p);
956 1.32 mycroft }
957 1.32 mycroft }
958 1.32 mycroft p->p_fd = NULL;
959 1.16 cgd if (fdp->fd_nfiles > NDFILE)
960 1.16 cgd FREE(fdp->fd_ofiles, M_FILEDESC);
961 1.16 cgd FREE(fdp, M_FILEDESC);
962 1.16 cgd }
963 1.16 cgd
964 1.16 cgd /*
965 1.16 cgd * Internal form of close.
966 1.16 cgd * Decrement reference count on file structure.
967 1.17 cgd * Note: p may be NULL when closing a file
968 1.17 cgd * that was being passed in a message.
969 1.59 thorpej *
970 1.59 thorpej * Note: we expect the caller is holding a usecount, and expects us
971 1.59 thorpej * to drop it (the caller thinks the file is going away forever).
972 1.16 cgd */
973 1.38 christos int
974 1.16 cgd closef(fp, p)
975 1.16 cgd register struct file *fp;
976 1.16 cgd register struct proc *p;
977 1.16 cgd {
978 1.16 cgd struct vnode *vp;
979 1.16 cgd struct flock lf;
980 1.16 cgd int error;
981 1.16 cgd
982 1.16 cgd if (fp == NULL)
983 1.16 cgd return (0);
984 1.59 thorpej
985 1.16 cgd /*
986 1.16 cgd * POSIX record locking dictates that any close releases ALL
987 1.16 cgd * locks owned by this process. This is handled by setting
988 1.16 cgd * a flag in the unlock to free ONLY locks obeying POSIX
989 1.16 cgd * semantics, and not to free BSD-style file locks.
990 1.17 cgd * If the descriptor was in a message, POSIX-style locks
991 1.17 cgd * aren't passed with the descriptor.
992 1.16 cgd */
993 1.16 cgd if (p && (p->p_flag & P_ADVLOCK) && fp->f_type == DTYPE_VNODE) {
994 1.16 cgd lf.l_whence = SEEK_SET;
995 1.16 cgd lf.l_start = 0;
996 1.16 cgd lf.l_len = 0;
997 1.16 cgd lf.l_type = F_UNLCK;
998 1.16 cgd vp = (struct vnode *)fp->f_data;
999 1.16 cgd (void) VOP_ADVLOCK(vp, (caddr_t)p, F_UNLCK, &lf, F_POSIX);
1000 1.16 cgd }
1001 1.59 thorpej
1002 1.59 thorpej /*
1003 1.59 thorpej * If WANTCLOSE is set, then the reference count on the file
1004 1.59 thorpej * is 0, but there were multiple users of the file. This can
1005 1.59 thorpej * happen if a filedesc structure is shared by multiple
1006 1.59 thorpej * processes.
1007 1.59 thorpej */
1008 1.59 thorpej if (fp->f_iflags & FIF_WANTCLOSE) {
1009 1.59 thorpej /*
1010 1.59 thorpej * Another user of the file is already closing, and is
1011 1.59 thorpej * simply waiting for other users of the file to drain.
1012 1.59 thorpej * Release our usecount, and wake up the closer if it
1013 1.59 thorpej * is the only remaining use.
1014 1.59 thorpej */
1015 1.59 thorpej #ifdef DIAGNOSTIC
1016 1.59 thorpej if (fp->f_count != 0)
1017 1.59 thorpej panic("closef: wantclose and count != 0");
1018 1.59 thorpej if (fp->f_usecount < 2)
1019 1.59 thorpej panic("closef: wantclose and usecount < 2");
1020 1.59 thorpej #endif
1021 1.59 thorpej if (--fp->f_usecount == 1)
1022 1.59 thorpej wakeup(&fp->f_usecount);
1023 1.16 cgd return (0);
1024 1.59 thorpej } else {
1025 1.59 thorpej /*
1026 1.59 thorpej * Decrement the reference count. If we were not the
1027 1.59 thorpej * last reference, then release our use and just
1028 1.59 thorpej * return.
1029 1.59 thorpej */
1030 1.59 thorpej if (--fp->f_count > 0) {
1031 1.59 thorpej #ifdef DIAGNOSTIC
1032 1.59 thorpej if (fp->f_usecount < 1)
1033 1.59 thorpej panic("closef: no wantclose and usecount < 1");
1034 1.59 thorpej #endif
1035 1.59 thorpej fp->f_usecount--;
1036 1.59 thorpej return (0);
1037 1.59 thorpej }
1038 1.59 thorpej if (fp->f_count < 0)
1039 1.59 thorpej panic("closef: count < 0");
1040 1.59 thorpej }
1041 1.59 thorpej
1042 1.59 thorpej /*
1043 1.59 thorpej * The reference count is now 0. However, there may be
1044 1.59 thorpej * multiple potential users of this file. This can happen
1045 1.59 thorpej * if multiple processes shared a single filedesc structure.
1046 1.59 thorpej *
1047 1.59 thorpej * Notify these potential users that the file is closing.
1048 1.59 thorpej * This will prevent them from adding additional uses to
1049 1.59 thorpej * the file.
1050 1.59 thorpej */
1051 1.59 thorpej fp->f_iflags |= FIF_WANTCLOSE;
1052 1.59 thorpej
1053 1.59 thorpej /*
1054 1.59 thorpej * We expect the caller to add a use to the file. So, if we
1055 1.59 thorpej * are the last user, usecount will be 1. If it is not, we
1056 1.59 thorpej * must wait for the usecount to drain. When it drains back
1057 1.59 thorpej * to 1, we will be awakened so that we may proceed with the
1058 1.59 thorpej * close.
1059 1.59 thorpej */
1060 1.59 thorpej #ifdef DIAGNOSTIC
1061 1.59 thorpej if (fp->f_usecount < 1)
1062 1.59 thorpej panic("closef: usecount < 1");
1063 1.59 thorpej #endif
1064 1.59 thorpej while (fp->f_usecount > 1)
1065 1.59 thorpej (void) tsleep(&fp->f_usecount, PRIBIO, "closef", 0);
1066 1.59 thorpej #ifdef DIAGNOSTIC
1067 1.59 thorpej if (fp->f_usecount != 1)
1068 1.59 thorpej panic("closef: usecount != 1");
1069 1.59 thorpej #endif
1070 1.59 thorpej
1071 1.16 cgd if ((fp->f_flag & FHASLOCK) && fp->f_type == DTYPE_VNODE) {
1072 1.16 cgd lf.l_whence = SEEK_SET;
1073 1.16 cgd lf.l_start = 0;
1074 1.16 cgd lf.l_len = 0;
1075 1.16 cgd lf.l_type = F_UNLCK;
1076 1.16 cgd vp = (struct vnode *)fp->f_data;
1077 1.16 cgd (void) VOP_ADVLOCK(vp, (caddr_t)fp, F_UNLCK, &lf, F_FLOCK);
1078 1.16 cgd }
1079 1.17 cgd if (fp->f_ops)
1080 1.17 cgd error = (*fp->f_ops->fo_close)(fp, p);
1081 1.17 cgd else
1082 1.17 cgd error = 0;
1083 1.59 thorpej
1084 1.59 thorpej /* Nothing references the file now, drop the final use (us). */
1085 1.59 thorpej fp->f_usecount--;
1086 1.59 thorpej
1087 1.16 cgd ffree(fp);
1088 1.16 cgd return (error);
1089 1.16 cgd }
1090 1.16 cgd
1091 1.16 cgd /*
1092 1.16 cgd * Apply an advisory lock on a file descriptor.
1093 1.16 cgd *
1094 1.16 cgd * Just attempt to get a record lock of the requested type on
1095 1.16 cgd * the entire file (l_whence = SEEK_SET, l_start = 0, l_len = 0).
1096 1.16 cgd */
1097 1.16 cgd /* ARGSUSED */
1098 1.38 christos int
1099 1.37 mycroft sys_flock(p, v, retval)
1100 1.16 cgd struct proc *p;
1101 1.36 thorpej void *v;
1102 1.36 thorpej register_t *retval;
1103 1.36 thorpej {
1104 1.37 mycroft register struct sys_flock_args /* {
1105 1.25 cgd syscallarg(int) fd;
1106 1.25 cgd syscallarg(int) how;
1107 1.36 thorpej } */ *uap = v;
1108 1.27 mycroft int fd = SCARG(uap, fd);
1109 1.27 mycroft int how = SCARG(uap, how);
1110 1.16 cgd register struct filedesc *fdp = p->p_fd;
1111 1.16 cgd register struct file *fp;
1112 1.16 cgd struct vnode *vp;
1113 1.16 cgd struct flock lf;
1114 1.59 thorpej int error = 0;
1115 1.16 cgd
1116 1.27 mycroft if ((u_int)fd >= fdp->fd_nfiles ||
1117 1.59 thorpej (fp = fdp->fd_ofiles[fd]) == NULL ||
1118 1.59 thorpej (fp->f_iflags & FIF_WANTCLOSE) != 0)
1119 1.16 cgd return (EBADF);
1120 1.59 thorpej
1121 1.59 thorpej FILE_USE(fp);
1122 1.59 thorpej
1123 1.59 thorpej if (fp->f_type != DTYPE_VNODE) {
1124 1.59 thorpej error = EOPNOTSUPP;
1125 1.59 thorpej goto out;
1126 1.59 thorpej }
1127 1.59 thorpej
1128 1.16 cgd vp = (struct vnode *)fp->f_data;
1129 1.16 cgd lf.l_whence = SEEK_SET;
1130 1.16 cgd lf.l_start = 0;
1131 1.16 cgd lf.l_len = 0;
1132 1.27 mycroft if (how & LOCK_UN) {
1133 1.16 cgd lf.l_type = F_UNLCK;
1134 1.16 cgd fp->f_flag &= ~FHASLOCK;
1135 1.59 thorpej error = VOP_ADVLOCK(vp, (caddr_t)fp, F_UNLCK, &lf, F_FLOCK);
1136 1.59 thorpej goto out;
1137 1.16 cgd }
1138 1.27 mycroft if (how & LOCK_EX)
1139 1.16 cgd lf.l_type = F_WRLCK;
1140 1.27 mycroft else if (how & LOCK_SH)
1141 1.16 cgd lf.l_type = F_RDLCK;
1142 1.59 thorpej else {
1143 1.59 thorpej error = EINVAL;
1144 1.59 thorpej goto out;
1145 1.59 thorpej }
1146 1.16 cgd fp->f_flag |= FHASLOCK;
1147 1.27 mycroft if (how & LOCK_NB)
1148 1.59 thorpej error = VOP_ADVLOCK(vp, (caddr_t)fp, F_SETLK, &lf, F_FLOCK);
1149 1.59 thorpej else
1150 1.59 thorpej error = VOP_ADVLOCK(vp, (caddr_t)fp, F_SETLK, &lf,
1151 1.59 thorpej F_FLOCK|F_WAIT);
1152 1.59 thorpej out:
1153 1.59 thorpej FILE_UNUSE(fp, p);
1154 1.59 thorpej return (error);
1155 1.16 cgd }
1156 1.16 cgd
1157 1.16 cgd /*
1158 1.16 cgd * File Descriptor pseudo-device driver (/dev/fd/).
1159 1.16 cgd *
1160 1.16 cgd * Opening minor device N dup()s the file (if any) connected to file
1161 1.16 cgd * descriptor N belonging to the calling process. Note that this driver
1162 1.16 cgd * consists of only the ``open()'' routine, because all subsequent
1163 1.16 cgd * references to this file will be direct to the other driver.
1164 1.16 cgd */
1165 1.16 cgd /* ARGSUSED */
1166 1.28 mycroft int
1167 1.40 christos filedescopen(dev, mode, type, p)
1168 1.16 cgd dev_t dev;
1169 1.16 cgd int mode, type;
1170 1.16 cgd struct proc *p;
1171 1.16 cgd {
1172 1.16 cgd
1173 1.28 mycroft /*
1174 1.28 mycroft * XXX Kludge: set curproc->p_dupfd to contain the value of the
1175 1.28 mycroft * the file descriptor being sought for duplication. The error
1176 1.28 mycroft * return ensures that the vnode for this device will be released
1177 1.28 mycroft * by vn_open. Open will detect this special error and take the
1178 1.28 mycroft * actions in dupfdopen below. Other callers of vn_open or VOP_OPEN
1179 1.28 mycroft * will simply report the error.
1180 1.28 mycroft */
1181 1.28 mycroft p->p_dupfd = minor(dev);
1182 1.28 mycroft return (ENODEV);
1183 1.27 mycroft }
1184 1.27 mycroft
1185 1.28 mycroft /*
1186 1.28 mycroft * Duplicate the specified descriptor to a free descriptor.
1187 1.28 mycroft */
1188 1.27 mycroft int
1189 1.59 thorpej dupfdopen(p, indx, dfd, mode, error)
1190 1.59 thorpej struct proc *p;
1191 1.59 thorpej int indx, dfd, mode, error;
1192 1.28 mycroft {
1193 1.59 thorpej struct filedesc *fdp = p->p_fd;
1194 1.59 thorpej struct file *wfp;
1195 1.27 mycroft struct file *fp;
1196 1.27 mycroft
1197 1.27 mycroft /*
1198 1.27 mycroft * If the to-be-dup'd fd number is greater than the allowed number
1199 1.27 mycroft * of file descriptors, or the fd to be dup'd has already been
1200 1.27 mycroft * closed, reject. Note, check for new == old is necessary as
1201 1.27 mycroft * falloc could allocate an already closed to-be-dup'd descriptor
1202 1.27 mycroft * as the new descriptor.
1203 1.27 mycroft */
1204 1.28 mycroft fp = fdp->fd_ofiles[indx];
1205 1.28 mycroft if ((u_int)dfd >= fdp->fd_nfiles ||
1206 1.59 thorpej (wfp = fdp->fd_ofiles[dfd]) == NULL ||
1207 1.59 thorpej (wfp->f_iflags & FIF_WANTCLOSE) != 0 ||
1208 1.59 thorpej fp == wfp)
1209 1.27 mycroft return (EBADF);
1210 1.27 mycroft
1211 1.59 thorpej FILE_USE(wfp);
1212 1.59 thorpej
1213 1.27 mycroft /*
1214 1.28 mycroft * There are two cases of interest here.
1215 1.28 mycroft *
1216 1.28 mycroft * For ENODEV simply dup (dfd) to file descriptor
1217 1.28 mycroft * (indx) and return.
1218 1.28 mycroft *
1219 1.28 mycroft * For ENXIO steal away the file structure from (dfd) and
1220 1.28 mycroft * store it in (indx). (dfd) is effectively closed by
1221 1.28 mycroft * this operation.
1222 1.28 mycroft *
1223 1.28 mycroft * Any other error code is just returned.
1224 1.27 mycroft */
1225 1.28 mycroft switch (error) {
1226 1.28 mycroft case ENODEV:
1227 1.28 mycroft /*
1228 1.28 mycroft * Check that the mode the file is being opened for is a
1229 1.28 mycroft * subset of the mode of the existing descriptor.
1230 1.28 mycroft */
1231 1.59 thorpej if (((mode & (FREAD|FWRITE)) | wfp->f_flag) != wfp->f_flag) {
1232 1.59 thorpej FILE_UNUSE(wfp, p);
1233 1.28 mycroft return (EACCES);
1234 1.59 thorpej }
1235 1.28 mycroft fdp->fd_ofiles[indx] = wfp;
1236 1.28 mycroft fdp->fd_ofileflags[indx] = fdp->fd_ofileflags[dfd];
1237 1.28 mycroft wfp->f_count++;
1238 1.28 mycroft fd_used(fdp, indx);
1239 1.59 thorpej FILE_UNUSE(wfp, p);
1240 1.28 mycroft return (0);
1241 1.27 mycroft
1242 1.28 mycroft case ENXIO:
1243 1.28 mycroft /*
1244 1.28 mycroft * Steal away the file pointer from dfd, and stuff it into indx.
1245 1.28 mycroft */
1246 1.28 mycroft fdp->fd_ofiles[indx] = fdp->fd_ofiles[dfd];
1247 1.28 mycroft fdp->fd_ofileflags[indx] = fdp->fd_ofileflags[dfd];
1248 1.28 mycroft fdp->fd_ofiles[dfd] = NULL;
1249 1.28 mycroft fdp->fd_ofileflags[dfd] = 0;
1250 1.28 mycroft /*
1251 1.28 mycroft * Complete the clean up of the filedesc structure by
1252 1.28 mycroft * recomputing the various hints.
1253 1.28 mycroft */
1254 1.28 mycroft fd_used(fdp, indx);
1255 1.28 mycroft fd_unused(fdp, dfd);
1256 1.59 thorpej FILE_UNUSE(wfp, p);
1257 1.28 mycroft return (0);
1258 1.16 cgd
1259 1.28 mycroft default:
1260 1.59 thorpej FILE_UNUSE(wfp, p);
1261 1.28 mycroft return (error);
1262 1.28 mycroft }
1263 1.28 mycroft /* NOTREACHED */
1264 1.61 wrstuden }
1265 1.61 wrstuden
1266 1.61 wrstuden /*
1267 1.61 wrstuden * fcntl call which is being passed to the file's fs.
1268 1.61 wrstuden */
1269 1.61 wrstuden int
1270 1.61 wrstuden fcntl_forfs(fd, p, cmd, arg)
1271 1.61 wrstuden int fd, cmd;
1272 1.61 wrstuden struct proc *p;
1273 1.61 wrstuden void *arg;
1274 1.61 wrstuden {
1275 1.61 wrstuden register struct file *fp;
1276 1.61 wrstuden register struct filedesc *fdp;
1277 1.61 wrstuden register int error;
1278 1.61 wrstuden register u_int size;
1279 1.61 wrstuden caddr_t data, memp;
1280 1.61 wrstuden #define STK_PARAMS 128
1281 1.61 wrstuden char stkbuf[STK_PARAMS];
1282 1.61 wrstuden
1283 1.61 wrstuden /* fd's value was validated in sys_fcntl before calling this routine */
1284 1.61 wrstuden fdp = p->p_fd;
1285 1.61 wrstuden fp = fdp->fd_ofiles[fd];
1286 1.61 wrstuden
1287 1.61 wrstuden if ((fp->f_flag & (FREAD | FWRITE)) == 0)
1288 1.61 wrstuden return (EBADF);
1289 1.61 wrstuden
1290 1.61 wrstuden /*
1291 1.61 wrstuden * Interpret high order word to find amount of data to be
1292 1.61 wrstuden * copied to/from the user's address space.
1293 1.61 wrstuden */
1294 1.61 wrstuden size = (size_t)F_PARAM_LEN(cmd);
1295 1.61 wrstuden if (size > F_PARAM_MAX)
1296 1.61 wrstuden return (EINVAL);
1297 1.61 wrstuden memp = NULL;
1298 1.61 wrstuden if (size > sizeof(stkbuf)) {
1299 1.61 wrstuden memp = (caddr_t)malloc((u_long)size, M_IOCTLOPS, M_WAITOK);
1300 1.61 wrstuden data = memp;
1301 1.61 wrstuden } else
1302 1.61 wrstuden data = stkbuf;
1303 1.61 wrstuden if (cmd & F_FSIN) {
1304 1.61 wrstuden if (size) {
1305 1.61 wrstuden error = copyin(arg, data, size);
1306 1.61 wrstuden if (error) {
1307 1.61 wrstuden if (memp)
1308 1.61 wrstuden free(memp, M_IOCTLOPS);
1309 1.61 wrstuden return (error);
1310 1.61 wrstuden }
1311 1.61 wrstuden } else
1312 1.61 wrstuden *(caddr_t *)data = arg;
1313 1.61 wrstuden } else if ((cmd & F_FSOUT) && size)
1314 1.61 wrstuden /*
1315 1.61 wrstuden * Zero the buffer so the user always
1316 1.61 wrstuden * gets back something deterministic.
1317 1.61 wrstuden */
1318 1.61 wrstuden memset(data, 0, size);
1319 1.61 wrstuden else if (cmd & F_FSVOID)
1320 1.61 wrstuden *(caddr_t *)data = arg;
1321 1.61 wrstuden
1322 1.61 wrstuden
1323 1.61 wrstuden error = (*fp->f_ops->fo_fcntl)(fp, cmd, data, p);
1324 1.61 wrstuden
1325 1.61 wrstuden /*
1326 1.61 wrstuden * Copy any data to user, size was
1327 1.61 wrstuden * already set and checked above.
1328 1.61 wrstuden */
1329 1.61 wrstuden if (error == 0 && (cmd & F_FSOUT) && size)
1330 1.61 wrstuden error = copyout(data, arg, size);
1331 1.61 wrstuden if (memp)
1332 1.61 wrstuden free(memp, M_IOCTLOPS);
1333 1.61 wrstuden return (error);
1334 1.27 mycroft }
1335 1.16 cgd
1336 1.27 mycroft /*
1337 1.27 mycroft * Close any files on exec?
1338 1.27 mycroft */
1339 1.27 mycroft void
1340 1.27 mycroft fdcloseexec(p)
1341 1.27 mycroft struct proc *p;
1342 1.27 mycroft {
1343 1.27 mycroft register struct filedesc *fdp = p->p_fd;
1344 1.27 mycroft register int fd;
1345 1.16 cgd
1346 1.27 mycroft for (fd = 0; fd <= fdp->fd_lastfile; fd++)
1347 1.27 mycroft if (fdp->fd_ofileflags[fd] & UF_EXCLOSE)
1348 1.34 mycroft (void) fdrelease(p, fd);
1349 1.16 cgd }
1350