sys_descrip.c revision 1.52 1 1.52 kre /* $NetBSD: sys_descrip.c,v 1.52 2025/07/16 19:14:13 kre Exp $ */
2 1.1 ad
3 1.1 ad /*-
4 1.37 ad * Copyright (c) 2008, 2020 The NetBSD Foundation, Inc.
5 1.1 ad * All rights reserved.
6 1.1 ad *
7 1.1 ad * Redistribution and use in source and binary forms, with or without
8 1.1 ad * modification, are permitted provided that the following conditions
9 1.1 ad * are met:
10 1.1 ad * 1. Redistributions of source code must retain the above copyright
11 1.1 ad * notice, this list of conditions and the following disclaimer.
12 1.1 ad * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 ad * notice, this list of conditions and the following disclaimer in the
14 1.1 ad * documentation and/or other materials provided with the distribution.
15 1.1 ad *
16 1.1 ad * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17 1.1 ad * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18 1.1 ad * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 1.1 ad * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20 1.1 ad * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 1.1 ad * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 1.1 ad * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 1.1 ad * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 1.1 ad * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 1.1 ad * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 1.1 ad * POSSIBILITY OF SUCH DAMAGE.
27 1.1 ad */
28 1.1 ad
29 1.1 ad /*
30 1.1 ad * Copyright (c) 1982, 1986, 1989, 1991, 1993
31 1.1 ad * The Regents of the University of California. All rights reserved.
32 1.1 ad * (c) UNIX System Laboratories, Inc.
33 1.1 ad * All or some portions of this file are derived from material licensed
34 1.1 ad * to the University of California by American Telephone and Telegraph
35 1.1 ad * Co. or Unix System Laboratories, Inc. and are reproduced herein with
36 1.1 ad * the permission of UNIX System Laboratories, Inc.
37 1.1 ad *
38 1.1 ad * Redistribution and use in source and binary forms, with or without
39 1.1 ad * modification, are permitted provided that the following conditions
40 1.1 ad * are met:
41 1.1 ad * 1. Redistributions of source code must retain the above copyright
42 1.1 ad * notice, this list of conditions and the following disclaimer.
43 1.1 ad * 2. Redistributions in binary form must reproduce the above copyright
44 1.1 ad * notice, this list of conditions and the following disclaimer in the
45 1.1 ad * documentation and/or other materials provided with the distribution.
46 1.1 ad * 3. Neither the name of the University nor the names of its contributors
47 1.1 ad * may be used to endorse or promote products derived from this software
48 1.1 ad * without specific prior written permission.
49 1.1 ad *
50 1.1 ad * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
51 1.1 ad * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
52 1.1 ad * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
53 1.1 ad * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
54 1.1 ad * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
55 1.1 ad * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
56 1.1 ad * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
57 1.1 ad * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
58 1.1 ad * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
59 1.1 ad * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60 1.1 ad * SUCH DAMAGE.
61 1.1 ad *
62 1.1 ad * @(#)kern_descrip.c 8.8 (Berkeley) 2/14/95
63 1.1 ad */
64 1.1 ad
65 1.1 ad /*
66 1.1 ad * System calls on descriptors.
67 1.1 ad */
68 1.1 ad
69 1.1 ad #include <sys/cdefs.h>
70 1.52 kre __KERNEL_RCSID(0, "$NetBSD: sys_descrip.c,v 1.52 2025/07/16 19:14:13 kre Exp $");
71 1.1 ad
72 1.1 ad #include <sys/param.h>
73 1.1 ad #include <sys/systm.h>
74 1.1 ad #include <sys/filedesc.h>
75 1.1 ad #include <sys/kernel.h>
76 1.1 ad #include <sys/vnode.h>
77 1.1 ad #include <sys/proc.h>
78 1.1 ad #include <sys/file.h>
79 1.1 ad #include <sys/namei.h>
80 1.1 ad #include <sys/socket.h>
81 1.1 ad #include <sys/socketvar.h>
82 1.1 ad #include <sys/stat.h>
83 1.1 ad #include <sys/ioctl.h>
84 1.1 ad #include <sys/fcntl.h>
85 1.10 yamt #include <sys/kmem.h>
86 1.1 ad #include <sys/pool.h>
87 1.1 ad #include <sys/syslog.h>
88 1.1 ad #include <sys/unistd.h>
89 1.1 ad #include <sys/resourcevar.h>
90 1.1 ad #include <sys/conf.h>
91 1.1 ad #include <sys/event.h>
92 1.1 ad #include <sys/kauth.h>
93 1.1 ad #include <sys/atomic.h>
94 1.1 ad #include <sys/mount.h>
95 1.1 ad #include <sys/syscallargs.h>
96 1.1 ad
97 1.15 yamt #include <uvm/uvm_readahead.h>
98 1.15 yamt
99 1.1 ad /*
100 1.1 ad * Duplicate a file descriptor.
101 1.1 ad */
102 1.1 ad int
103 1.1 ad sys_dup(struct lwp *l, const struct sys_dup_args *uap, register_t *retval)
104 1.1 ad {
105 1.1 ad /* {
106 1.1 ad syscallarg(int) fd;
107 1.1 ad } */
108 1.29 matt int error, newfd, oldfd;
109 1.1 ad file_t *fp;
110 1.1 ad
111 1.29 matt oldfd = SCARG(uap, fd);
112 1.1 ad
113 1.29 matt if ((fp = fd_getfile(oldfd)) == NULL) {
114 1.1 ad return EBADF;
115 1.1 ad }
116 1.52 kre error = fd_dup(fp, 0, &newfd, false, false);
117 1.29 matt fd_putfile(oldfd);
118 1.29 matt *retval = newfd;
119 1.1 ad return error;
120 1.1 ad }
121 1.1 ad
122 1.1 ad /*
123 1.1 ad * Duplicate a file descriptor to a particular value.
124 1.1 ad */
125 1.26 martin int
126 1.22 christos dodup(struct lwp *l, int from, int to, int flags, register_t *retval)
127 1.1 ad {
128 1.22 christos int error;
129 1.1 ad file_t *fp;
130 1.1 ad
131 1.22 christos if ((fp = fd_getfile(from)) == NULL)
132 1.1 ad return EBADF;
133 1.8 ad mutex_enter(&fp->f_lock);
134 1.8 ad fp->f_count++;
135 1.8 ad mutex_exit(&fp->f_lock);
136 1.22 christos fd_putfile(from);
137 1.8 ad
138 1.22 christos if ((u_int)to >= curproc->p_rlimit[RLIMIT_NOFILE].rlim_cur ||
139 1.22 christos (u_int)to >= maxfiles)
140 1.1 ad error = EBADF;
141 1.22 christos else if (from == to)
142 1.1 ad error = 0;
143 1.22 christos else
144 1.22 christos error = fd_dup2(fp, to, flags);
145 1.8 ad closef(fp);
146 1.22 christos *retval = to;
147 1.1 ad
148 1.6 njoly return error;
149 1.1 ad }
150 1.1 ad
151 1.22 christos int
152 1.51 martin sys___dup3100(struct lwp *l, const struct sys___dup3100_args *uap, register_t *retval)
153 1.22 christos {
154 1.22 christos /* {
155 1.22 christos syscallarg(int) from;
156 1.22 christos syscallarg(int) to;
157 1.22 christos syscallarg(int) flags;
158 1.22 christos } */
159 1.49 christos if (SCARG(uap, from) == SCARG(uap, to))
160 1.49 christos return EINVAL;
161 1.22 christos return dodup(l, SCARG(uap, from), SCARG(uap, to), SCARG(uap, flags),
162 1.22 christos retval);
163 1.22 christos }
164 1.22 christos
165 1.22 christos int
166 1.22 christos sys_dup2(struct lwp *l, const struct sys_dup2_args *uap, register_t *retval)
167 1.22 christos {
168 1.22 christos /* {
169 1.22 christos syscallarg(int) from;
170 1.22 christos syscallarg(int) to;
171 1.22 christos } */
172 1.22 christos return dodup(l, SCARG(uap, from), SCARG(uap, to), 0, retval);
173 1.22 christos }
174 1.22 christos
175 1.1 ad /*
176 1.1 ad * fcntl call which is being passed to the file's fs.
177 1.1 ad */
178 1.1 ad static int
179 1.1 ad fcntl_forfs(int fd, file_t *fp, int cmd, void *arg)
180 1.1 ad {
181 1.1 ad int error;
182 1.1 ad u_int size;
183 1.1 ad void *data, *memp;
184 1.1 ad #define STK_PARAMS 128
185 1.1 ad char stkbuf[STK_PARAMS];
186 1.1 ad
187 1.1 ad if ((fp->f_flag & (FREAD | FWRITE)) == 0)
188 1.1 ad return (EBADF);
189 1.1 ad
190 1.1 ad /*
191 1.1 ad * Interpret high order word to find amount of data to be
192 1.1 ad * copied to/from the user's address space.
193 1.1 ad */
194 1.1 ad size = (size_t)F_PARAM_LEN(cmd);
195 1.1 ad if (size > F_PARAM_MAX)
196 1.1 ad return (EINVAL);
197 1.1 ad memp = NULL;
198 1.1 ad if (size > sizeof(stkbuf)) {
199 1.1 ad memp = kmem_alloc(size, KM_SLEEP);
200 1.1 ad data = memp;
201 1.1 ad } else
202 1.1 ad data = stkbuf;
203 1.1 ad if (cmd & F_FSIN) {
204 1.1 ad if (size) {
205 1.1 ad error = copyin(arg, data, size);
206 1.1 ad if (error) {
207 1.1 ad if (memp)
208 1.1 ad kmem_free(memp, size);
209 1.1 ad return (error);
210 1.1 ad }
211 1.1 ad } else
212 1.1 ad *(void **)data = arg;
213 1.1 ad } else if ((cmd & F_FSOUT) != 0 && size != 0) {
214 1.1 ad /*
215 1.1 ad * Zero the buffer so the user always
216 1.1 ad * gets back something deterministic.
217 1.1 ad */
218 1.1 ad memset(data, 0, size);
219 1.1 ad } else if (cmd & F_FSVOID)
220 1.1 ad *(void **)data = arg;
221 1.1 ad
222 1.1 ad
223 1.1 ad error = (*fp->f_ops->fo_fcntl)(fp, cmd, data);
224 1.1 ad
225 1.1 ad /*
226 1.1 ad * Copy any data to user, size was
227 1.1 ad * already set and checked above.
228 1.1 ad */
229 1.1 ad if (error == 0 && (cmd & F_FSOUT) && size)
230 1.1 ad error = copyout(data, arg, size);
231 1.1 ad if (memp)
232 1.1 ad kmem_free(memp, size);
233 1.1 ad return (error);
234 1.1 ad }
235 1.1 ad
236 1.1 ad int
237 1.1 ad do_fcntl_lock(int fd, int cmd, struct flock *fl)
238 1.1 ad {
239 1.45 riastrad struct file *fp = NULL;
240 1.1 ad proc_t *p;
241 1.41 riastrad int (*fo_advlock)(struct file *, void *, int, struct flock *, int);
242 1.1 ad int error, flg;
243 1.1 ad
244 1.45 riastrad if ((fp = fd_getfile(fd)) == NULL) {
245 1.45 riastrad error = EBADF;
246 1.45 riastrad goto out;
247 1.45 riastrad }
248 1.44 riastrad if ((fo_advlock = fp->f_ops->fo_advlock) == NULL) {
249 1.44 riastrad error = EINVAL;
250 1.44 riastrad goto out;
251 1.44 riastrad }
252 1.1 ad
253 1.1 ad flg = F_POSIX;
254 1.1 ad p = curproc;
255 1.1 ad
256 1.1 ad switch (cmd) {
257 1.1 ad case F_SETLKW:
258 1.1 ad flg |= F_WAIT;
259 1.1 ad /* Fall into F_SETLK */
260 1.1 ad
261 1.32 mrg /* FALLTHROUGH */
262 1.1 ad case F_SETLK:
263 1.1 ad switch (fl->l_type) {
264 1.1 ad case F_RDLCK:
265 1.1 ad if ((fp->f_flag & FREAD) == 0) {
266 1.1 ad error = EBADF;
267 1.1 ad break;
268 1.1 ad }
269 1.1 ad if ((p->p_flag & PK_ADVLOCK) == 0) {
270 1.2 ad mutex_enter(p->p_lock);
271 1.1 ad p->p_flag |= PK_ADVLOCK;
272 1.2 ad mutex_exit(p->p_lock);
273 1.1 ad }
274 1.41 riastrad error = (*fo_advlock)(fp, p, F_SETLK, fl, flg);
275 1.1 ad break;
276 1.1 ad
277 1.1 ad case F_WRLCK:
278 1.1 ad if ((fp->f_flag & FWRITE) == 0) {
279 1.1 ad error = EBADF;
280 1.1 ad break;
281 1.1 ad }
282 1.1 ad if ((p->p_flag & PK_ADVLOCK) == 0) {
283 1.2 ad mutex_enter(p->p_lock);
284 1.1 ad p->p_flag |= PK_ADVLOCK;
285 1.2 ad mutex_exit(p->p_lock);
286 1.1 ad }
287 1.41 riastrad error = (*fo_advlock)(fp, p, F_SETLK, fl, flg);
288 1.1 ad break;
289 1.1 ad
290 1.1 ad case F_UNLCK:
291 1.41 riastrad error = (*fo_advlock)(fp, p, F_UNLCK, fl, F_POSIX);
292 1.1 ad break;
293 1.1 ad
294 1.1 ad default:
295 1.1 ad error = EINVAL;
296 1.1 ad break;
297 1.1 ad }
298 1.1 ad break;
299 1.1 ad
300 1.1 ad case F_GETLK:
301 1.1 ad if (fl->l_type != F_RDLCK &&
302 1.1 ad fl->l_type != F_WRLCK &&
303 1.1 ad fl->l_type != F_UNLCK) {
304 1.1 ad error = EINVAL;
305 1.1 ad break;
306 1.1 ad }
307 1.41 riastrad error = (*fo_advlock)(fp, p, F_GETLK, fl, F_POSIX);
308 1.1 ad break;
309 1.1 ad
310 1.1 ad default:
311 1.1 ad error = EINVAL;
312 1.1 ad break;
313 1.1 ad }
314 1.1 ad
315 1.45 riastrad out: if (fp)
316 1.45 riastrad fd_putfile(fd);
317 1.1 ad return error;
318 1.1 ad }
319 1.1 ad
320 1.1 ad /*
321 1.1 ad * The file control system call.
322 1.1 ad */
323 1.1 ad int
324 1.1 ad sys_fcntl(struct lwp *l, const struct sys_fcntl_args *uap, register_t *retval)
325 1.1 ad {
326 1.1 ad /* {
327 1.1 ad syscallarg(int) fd;
328 1.1 ad syscallarg(int) cmd;
329 1.1 ad syscallarg(void *) arg;
330 1.1 ad } */
331 1.1 ad int fd, i, tmp, error, cmd, newmin;
332 1.1 ad filedesc_t *fdp;
333 1.36 riastrad fdtab_t *dt;
334 1.1 ad file_t *fp;
335 1.48 christos char *kpath;
336 1.1 ad struct flock fl;
337 1.22 christos bool cloexec = false;
338 1.52 kre bool clofork = false;
339 1.1 ad
340 1.1 ad fd = SCARG(uap, fd);
341 1.1 ad cmd = SCARG(uap, cmd);
342 1.4 ad fdp = l->l_fd;
343 1.1 ad error = 0;
344 1.1 ad
345 1.1 ad switch (cmd) {
346 1.1 ad case F_CLOSEM:
347 1.1 ad if (fd < 0)
348 1.1 ad return EBADF;
349 1.1 ad while ((i = fdp->fd_lastfile) >= fd) {
350 1.1 ad if (fd_getfile(i) == NULL) {
351 1.1 ad /* Another thread has updated. */
352 1.1 ad continue;
353 1.1 ad }
354 1.1 ad fd_close(i);
355 1.1 ad }
356 1.1 ad return 0;
357 1.1 ad
358 1.1 ad case F_MAXFD:
359 1.1 ad *retval = fdp->fd_lastfile;
360 1.1 ad return 0;
361 1.1 ad
362 1.1 ad case F_SETLKW:
363 1.1 ad case F_SETLK:
364 1.1 ad case F_GETLK:
365 1.1 ad error = copyin(SCARG(uap, arg), &fl, sizeof(fl));
366 1.1 ad if (error)
367 1.1 ad return error;
368 1.1 ad error = do_fcntl_lock(fd, cmd, &fl);
369 1.1 ad if (cmd == F_GETLK && error == 0)
370 1.1 ad error = copyout(&fl, SCARG(uap, arg), sizeof(fl));
371 1.1 ad return error;
372 1.1 ad
373 1.1 ad default:
374 1.1 ad /* Handled below */
375 1.1 ad break;
376 1.1 ad }
377 1.1 ad
378 1.1 ad if ((fp = fd_getfile(fd)) == NULL)
379 1.35 christos return EBADF;
380 1.1 ad
381 1.1 ad if ((cmd & F_FSCTL)) {
382 1.1 ad error = fcntl_forfs(fd, fp, cmd, SCARG(uap, arg));
383 1.1 ad fd_putfile(fd);
384 1.1 ad return error;
385 1.1 ad }
386 1.1 ad
387 1.1 ad switch (cmd) {
388 1.52 kre case F_DUPFD_CLOFORK:
389 1.52 kre clofork = true;
390 1.52 kre goto f_dupfd;
391 1.52 kre case F_DUPFD_CLOBOTH:
392 1.52 kre clofork = true;
393 1.52 kre /*FALLTHROUGH*/
394 1.22 christos case F_DUPFD_CLOEXEC:
395 1.22 christos cloexec = true;
396 1.22 christos /*FALLTHROUGH*/
397 1.1 ad case F_DUPFD:
398 1.52 kre f_dupfd:;
399 1.1 ad newmin = (long)SCARG(uap, arg);
400 1.4 ad if ((u_int)newmin >=
401 1.4 ad l->l_proc->p_rlimit[RLIMIT_NOFILE].rlim_cur ||
402 1.1 ad (u_int)newmin >= maxfiles) {
403 1.1 ad fd_putfile(fd);
404 1.1 ad return EINVAL;
405 1.1 ad }
406 1.52 kre error = fd_dup(fp, newmin, &i, cloexec, clofork);
407 1.1 ad *retval = i;
408 1.1 ad break;
409 1.1 ad
410 1.1 ad case F_GETFD:
411 1.36 riastrad dt = atomic_load_consume(&fdp->fd_dt);
412 1.52 kre *retval = (dt->dt_ff[fd]->ff_exclose ? FD_CLOEXEC : 0) |
413 1.52 kre (dt->dt_ff[fd]->ff_foclose ? FD_CLOFORK: 0);
414 1.1 ad break;
415 1.1 ad
416 1.1 ad case F_SETFD:
417 1.52 kre tmp = (intptr_t)SCARG(uap, arg);
418 1.52 kre fd_set_exclose(l, fd, (tmp & FD_CLOEXEC) != 0);
419 1.52 kre fd_set_foclose(l, fd, (tmp & FD_CLOFORK) != 0);
420 1.1 ad break;
421 1.1 ad
422 1.24 christos case F_GETNOSIGPIPE:
423 1.24 christos *retval = (fp->f_flag & FNOSIGPIPE) != 0;
424 1.24 christos break;
425 1.24 christos
426 1.24 christos case F_SETNOSIGPIPE:
427 1.24 christos if (SCARG(uap, arg))
428 1.25 christos atomic_or_uint(&fp->f_flag, FNOSIGPIPE);
429 1.24 christos else
430 1.25 christos atomic_and_uint(&fp->f_flag, ~FNOSIGPIPE);
431 1.24 christos *retval = 0;
432 1.24 christos break;
433 1.24 christos
434 1.1 ad case F_GETFL:
435 1.1 ad *retval = OFLAGS(fp->f_flag);
436 1.1 ad break;
437 1.1 ad
438 1.1 ad case F_SETFL:
439 1.1 ad /* XXX not guaranteed to be atomic. */
440 1.1 ad tmp = FFLAGS((long)SCARG(uap, arg)) & FCNTLFLAGS;
441 1.1 ad error = (*fp->f_ops->fo_fcntl)(fp, F_SETFL, &tmp);
442 1.1 ad if (error)
443 1.1 ad break;
444 1.1 ad i = tmp ^ fp->f_flag;
445 1.1 ad if (i & FNONBLOCK) {
446 1.1 ad int flgs = tmp & FNONBLOCK;
447 1.1 ad error = (*fp->f_ops->fo_ioctl)(fp, FIONBIO, &flgs);
448 1.1 ad if (error) {
449 1.1 ad (*fp->f_ops->fo_fcntl)(fp, F_SETFL,
450 1.1 ad &fp->f_flag);
451 1.1 ad break;
452 1.1 ad }
453 1.1 ad }
454 1.1 ad if (i & FASYNC) {
455 1.1 ad int flgs = tmp & FASYNC;
456 1.1 ad error = (*fp->f_ops->fo_ioctl)(fp, FIOASYNC, &flgs);
457 1.1 ad if (error) {
458 1.1 ad if (i & FNONBLOCK) {
459 1.1 ad tmp = fp->f_flag & FNONBLOCK;
460 1.1 ad (void)(*fp->f_ops->fo_ioctl)(fp,
461 1.1 ad FIONBIO, &tmp);
462 1.1 ad }
463 1.1 ad (*fp->f_ops->fo_fcntl)(fp, F_SETFL,
464 1.1 ad &fp->f_flag);
465 1.1 ad break;
466 1.1 ad }
467 1.1 ad }
468 1.1 ad fp->f_flag = (fp->f_flag & ~FCNTLFLAGS) | tmp;
469 1.1 ad break;
470 1.1 ad
471 1.1 ad case F_GETOWN:
472 1.1 ad error = (*fp->f_ops->fo_ioctl)(fp, FIOGETOWN, &tmp);
473 1.1 ad *retval = tmp;
474 1.1 ad break;
475 1.1 ad
476 1.1 ad case F_SETOWN:
477 1.7 rmind tmp = (int)(uintptr_t) SCARG(uap, arg);
478 1.1 ad error = (*fp->f_ops->fo_ioctl)(fp, FIOSETOWN, &tmp);
479 1.1 ad break;
480 1.1 ad
481 1.35 christos case F_GETPATH:
482 1.48 christos kpath = PNBUF_GET();
483 1.48 christos
484 1.48 christos /* vnodes need extra context, so are handled separately */
485 1.48 christos if (fp->f_type == DTYPE_VNODE)
486 1.48 christos error = vnode_to_path(kpath, MAXPATHLEN, fp->f_vnode,
487 1.48 christos l, l->l_proc);
488 1.48 christos else
489 1.48 christos error = (*fp->f_ops->fo_fcntl)(fp, F_GETPATH, kpath);
490 1.48 christos
491 1.48 christos if (error == 0)
492 1.48 christos error = copyoutstr(kpath, SCARG(uap, arg), MAXPATHLEN,
493 1.48 christos NULL);
494 1.48 christos
495 1.48 christos PNBUF_PUT(kpath);
496 1.48 christos break;
497 1.48 christos
498 1.48 christos case F_ADD_SEALS:
499 1.48 christos tmp = (int)(uintptr_t) SCARG(uap, arg);
500 1.48 christos error = (*fp->f_ops->fo_fcntl)(fp, F_ADD_SEALS, &tmp);
501 1.48 christos break;
502 1.48 christos
503 1.48 christos case F_GET_SEALS:
504 1.48 christos error = (*fp->f_ops->fo_fcntl)(fp, F_GET_SEALS, &tmp);
505 1.48 christos *retval = tmp;
506 1.35 christos break;
507 1.35 christos
508 1.1 ad default:
509 1.1 ad error = EINVAL;
510 1.1 ad }
511 1.1 ad
512 1.1 ad fd_putfile(fd);
513 1.1 ad return (error);
514 1.1 ad }
515 1.1 ad
516 1.1 ad /*
517 1.1 ad * Close a file descriptor.
518 1.1 ad */
519 1.1 ad int
520 1.1 ad sys_close(struct lwp *l, const struct sys_close_args *uap, register_t *retval)
521 1.1 ad {
522 1.1 ad /* {
523 1.1 ad syscallarg(int) fd;
524 1.1 ad } */
525 1.27 riastrad int error;
526 1.33 christos int fd = SCARG(uap, fd);
527 1.1 ad
528 1.33 christos if (fd_getfile(fd) == NULL) {
529 1.1 ad return EBADF;
530 1.1 ad }
531 1.27 riastrad
532 1.33 christos error = fd_close(fd);
533 1.27 riastrad if (error == ERESTART) {
534 1.27 riastrad #ifdef DIAGNOSTIC
535 1.33 christos printf("%s[%d]: close(%d) returned ERESTART\n",
536 1.33 christos l->l_proc->p_comm, (int)l->l_proc->p_pid, fd);
537 1.27 riastrad #endif
538 1.27 riastrad error = EINTR;
539 1.27 riastrad }
540 1.27 riastrad
541 1.27 riastrad return error;
542 1.1 ad }
543 1.1 ad
544 1.1 ad /*
545 1.1 ad * Return status information about a file descriptor.
546 1.1 ad * Common function for compat code.
547 1.1 ad */
548 1.1 ad int
549 1.1 ad do_sys_fstat(int fd, struct stat *sb)
550 1.1 ad {
551 1.1 ad file_t *fp;
552 1.1 ad int error;
553 1.1 ad
554 1.1 ad if ((fp = fd_getfile(fd)) == NULL) {
555 1.1 ad return EBADF;
556 1.1 ad }
557 1.1 ad error = (*fp->f_ops->fo_stat)(fp, sb);
558 1.1 ad fd_putfile(fd);
559 1.1 ad
560 1.1 ad return error;
561 1.1 ad }
562 1.1 ad
563 1.1 ad /*
564 1.1 ad * Return status information about a file descriptor.
565 1.1 ad */
566 1.1 ad int
567 1.9 christos sys___fstat50(struct lwp *l, const struct sys___fstat50_args *uap,
568 1.1 ad register_t *retval)
569 1.1 ad {
570 1.1 ad /* {
571 1.1 ad syscallarg(int) fd;
572 1.1 ad syscallarg(struct stat *) sb;
573 1.1 ad } */
574 1.1 ad struct stat sb;
575 1.1 ad int error;
576 1.1 ad
577 1.1 ad error = do_sys_fstat(SCARG(uap, fd), &sb);
578 1.1 ad if (error == 0) {
579 1.1 ad error = copyout(&sb, SCARG(uap, sb), sizeof(sb));
580 1.1 ad }
581 1.1 ad return error;
582 1.1 ad }
583 1.1 ad
584 1.1 ad /*
585 1.1 ad * Return pathconf information about a file descriptor.
586 1.1 ad */
587 1.1 ad int
588 1.1 ad sys_fpathconf(struct lwp *l, const struct sys_fpathconf_args *uap,
589 1.1 ad register_t *retval)
590 1.1 ad {
591 1.1 ad /* {
592 1.1 ad syscallarg(int) fd;
593 1.1 ad syscallarg(int) name;
594 1.1 ad } */
595 1.42 riastrad int fd, name, error;
596 1.1 ad file_t *fp;
597 1.1 ad
598 1.1 ad fd = SCARG(uap, fd);
599 1.42 riastrad name = SCARG(uap, name);
600 1.1 ad error = 0;
601 1.1 ad
602 1.42 riastrad if ((fp = fd_getfile(fd)) == NULL)
603 1.42 riastrad return EBADF;
604 1.42 riastrad if (fp->f_ops->fo_fpathconf == NULL)
605 1.1 ad error = EOPNOTSUPP;
606 1.42 riastrad else
607 1.42 riastrad error = (*fp->f_ops->fo_fpathconf)(fp, name, retval);
608 1.1 ad fd_putfile(fd);
609 1.42 riastrad return error;
610 1.1 ad }
611 1.1 ad
612 1.1 ad /*
613 1.1 ad * Apply an advisory lock on a file descriptor.
614 1.1 ad *
615 1.1 ad * Just attempt to get a record lock of the requested type on
616 1.1 ad * the entire file (l_whence = SEEK_SET, l_start = 0, l_len = 0).
617 1.1 ad */
618 1.1 ad /* ARGSUSED */
619 1.1 ad int
620 1.1 ad sys_flock(struct lwp *l, const struct sys_flock_args *uap, register_t *retval)
621 1.1 ad {
622 1.1 ad /* {
623 1.1 ad syscallarg(int) fd;
624 1.1 ad syscallarg(int) how;
625 1.1 ad } */
626 1.1 ad int fd, how, error;
627 1.45 riastrad struct file *fp = NULL;
628 1.41 riastrad int (*fo_advlock)(struct file *, void *, int, struct flock *, int);
629 1.1 ad struct flock lf;
630 1.1 ad
631 1.1 ad fd = SCARG(uap, fd);
632 1.1 ad how = SCARG(uap, how);
633 1.1 ad
634 1.45 riastrad if ((fp = fd_getfile(fd)) == NULL) {
635 1.45 riastrad error = EBADF;
636 1.45 riastrad goto out;
637 1.45 riastrad }
638 1.44 riastrad if ((fo_advlock = fp->f_ops->fo_advlock) == NULL) {
639 1.46 riastrad KASSERT((atomic_load_relaxed(&fp->f_flag) & FHASLOCK) == 0);
640 1.44 riastrad error = EOPNOTSUPP;
641 1.44 riastrad goto out;
642 1.44 riastrad }
643 1.1 ad
644 1.1 ad lf.l_whence = SEEK_SET;
645 1.1 ad lf.l_start = 0;
646 1.1 ad lf.l_len = 0;
647 1.17 njoly
648 1.17 njoly switch (how & ~LOCK_NB) {
649 1.17 njoly case LOCK_UN:
650 1.1 ad lf.l_type = F_UNLCK;
651 1.1 ad atomic_and_uint(&fp->f_flag, ~FHASLOCK);
652 1.41 riastrad error = (*fo_advlock)(fp, fp, F_UNLCK, &lf, F_FLOCK);
653 1.45 riastrad goto out;
654 1.17 njoly case LOCK_EX:
655 1.1 ad lf.l_type = F_WRLCK;
656 1.17 njoly break;
657 1.17 njoly case LOCK_SH:
658 1.1 ad lf.l_type = F_RDLCK;
659 1.17 njoly break;
660 1.17 njoly default:
661 1.45 riastrad error = EINVAL;
662 1.45 riastrad goto out;
663 1.1 ad }
664 1.17 njoly
665 1.1 ad atomic_or_uint(&fp->f_flag, FHASLOCK);
666 1.1 ad if (how & LOCK_NB) {
667 1.41 riastrad error = (*fo_advlock)(fp, fp, F_SETLK, &lf, F_FLOCK);
668 1.1 ad } else {
669 1.41 riastrad error = (*fo_advlock)(fp, fp, F_SETLK, &lf, F_FLOCK|F_WAIT);
670 1.1 ad }
671 1.45 riastrad out: if (fp)
672 1.45 riastrad fd_putfile(fd);
673 1.1 ad return error;
674 1.1 ad }
675 1.1 ad
676 1.1 ad int
677 1.1 ad do_posix_fadvise(int fd, off_t offset, off_t len, int advice)
678 1.1 ad {
679 1.1 ad file_t *fp;
680 1.1 ad int error;
681 1.18 rmind
682 1.43 riastrad if ((fp = fd_getfile(fd)) == NULL)
683 1.43 riastrad return EBADF;
684 1.43 riastrad if (fp->f_ops->fo_posix_fadvise == NULL) {
685 1.43 riastrad error = EOPNOTSUPP;
686 1.16 yamt } else {
687 1.43 riastrad error = (*fp->f_ops->fo_posix_fadvise)(fp, offset, len,
688 1.43 riastrad advice);
689 1.1 ad }
690 1.1 ad fd_putfile(fd);
691 1.1 ad return error;
692 1.1 ad }
693 1.1 ad
694 1.1 ad int
695 1.1 ad sys___posix_fadvise50(struct lwp *l,
696 1.1 ad const struct sys___posix_fadvise50_args *uap,
697 1.1 ad register_t *retval)
698 1.1 ad {
699 1.1 ad /* {
700 1.1 ad syscallarg(int) fd;
701 1.1 ad syscallarg(int) pad;
702 1.1 ad syscallarg(off_t) offset;
703 1.1 ad syscallarg(off_t) len;
704 1.1 ad syscallarg(int) advice;
705 1.1 ad } */
706 1.1 ad
707 1.11 skrll *retval = do_posix_fadvise(SCARG(uap, fd), SCARG(uap, offset),
708 1.1 ad SCARG(uap, len), SCARG(uap, advice));
709 1.11 skrll
710 1.11 skrll return 0;
711 1.1 ad }
712 1.22 christos
713 1.22 christos int
714 1.22 christos sys_pipe(struct lwp *l, const void *v, register_t *retval)
715 1.22 christos {
716 1.31 kamil int fd[2], error;
717 1.31 kamil
718 1.31 kamil if ((error = pipe1(l, fd, 0)) != 0)
719 1.31 kamil return error;
720 1.31 kamil
721 1.31 kamil retval[0] = fd[0];
722 1.31 kamil retval[1] = fd[1];
723 1.31 kamil
724 1.31 kamil return 0;
725 1.22 christos }
726 1.22 christos
727 1.22 christos int
728 1.22 christos sys_pipe2(struct lwp *l, const struct sys_pipe2_args *uap, register_t *retval)
729 1.22 christos {
730 1.22 christos /* {
731 1.22 christos syscallarg(int[2]) fildes;
732 1.22 christos syscallarg(int) flags;
733 1.22 christos } */
734 1.22 christos int fd[2], error;
735 1.22 christos
736 1.31 kamil if ((error = pipe1(l, fd, SCARG(uap, flags))) != 0)
737 1.22 christos return error;
738 1.31 kamil
739 1.23 christos if ((error = copyout(fd, SCARG(uap, fildes), sizeof(fd))) != 0)
740 1.23 christos return error;
741 1.23 christos retval[0] = 0;
742 1.23 christos return 0;
743 1.22 christos }
744