1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1982, 1986, 1989, 1991, 1993 5 * The Regents of the University of California. All rights reserved. 6 * (c) UNIX System Laboratories, Inc. 7 * All or some portions of this file are derived from material licensed 8 * to the University of California by American Telephone and Telegraph 9 * Co. or Unix System Laboratories, Inc. and are reproduced herein with 10 * the permission of UNIX System Laboratories, Inc. 11 * 12 * Redistribution and use in source and binary forms, with or without 13 * modification, are permitted provided that the following conditions 14 * are met: 15 * 1. Redistributions of source code must retain the above copyright 16 * notice, this list of conditions and the following disclaimer. 17 * 2. Redistributions in binary form must reproduce the above copyright 18 * notice, this list of conditions and the following disclaimer in the 19 * documentation and/or other materials provided with the distribution. 20 * 3. Neither the name of the University nor the names of its contributors 21 * may be used to endorse or promote products derived from this software 22 * without specific prior written permission. 23 * 24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 34 * SUCH DAMAGE. 35 * 36 * @(#)kern_descrip.c 8.6 (Berkeley) 4/19/94 37 */ 38 39 #include <sys/cdefs.h> 40 __FBSDID("$FreeBSD$"); 41 42 #include "opt_capsicum.h" 43 #include "opt_ddb.h" 44 #include "opt_ktrace.h" 45 46 #include <sys/param.h> 47 #include <sys/systm.h> 48 49 #include <sys/capsicum.h> 50 #include <sys/conf.h> 51 #include <sys/fcntl.h> 52 #include <sys/file.h> 53 #include <sys/filedesc.h> 54 #include <sys/filio.h> 55 #include <sys/jail.h> 56 #include <sys/kernel.h> 57 #include <sys/limits.h> 58 #include <sys/lock.h> 59 #include <sys/malloc.h> 60 #include <sys/mount.h> 61 #include <sys/mutex.h> 62 #include <sys/namei.h> 63 #include <sys/selinfo.h> 64 #include <sys/priv.h> 65 #include <sys/proc.h> 66 #include <sys/protosw.h> 67 #include <sys/racct.h> 68 #include <sys/resourcevar.h> 69 #include <sys/sbuf.h> 70 #include <sys/signalvar.h> 71 #include <sys/kdb.h> 72 #include <sys/stat.h> 73 #include <sys/sx.h> 74 #include <sys/syscallsubr.h> 75 #include <sys/sysctl.h> 76 #include <sys/sysproto.h> 77 #include <sys/unistd.h> 78 #include <sys/user.h> 79 #include <sys/vnode.h> 80 #ifdef KTRACE 81 #include <sys/ktrace.h> 82 #endif 83 84 #include <net/vnet.h> 85 86 #include <security/audit/audit.h> 87 88 #include <vm/uma.h> 89 #include <vm/vm.h> 90 91 #include <ddb/ddb.h> 92 93 static MALLOC_DEFINE(M_FILEDESC, "filedesc", "Open file descriptor table"); 94 static MALLOC_DEFINE(M_FILEDESC_TO_LEADER, "filedesc_to_leader", 95 "file desc to leader structures"); 96 static MALLOC_DEFINE(M_SIGIO, "sigio", "sigio structures"); 97 MALLOC_DEFINE(M_FILECAPS, "filecaps", "descriptor capabilities"); 98 99 MALLOC_DECLARE(M_FADVISE); 100 101 static __read_mostly uma_zone_t file_zone; 102 static __read_mostly uma_zone_t filedesc0_zone; 103 104 static int closefp(struct filedesc *fdp, int fd, struct file *fp, 105 struct thread *td, int holdleaders); 106 static int fd_first_free(struct filedesc *fdp, int low, int size); 107 static int fd_last_used(struct filedesc *fdp, int size); 108 static void fdgrowtable(struct filedesc *fdp, int nfd); 109 static void fdgrowtable_exp(struct filedesc *fdp, int nfd); 110 static void fdunused(struct filedesc *fdp, int fd); 111 static void fdused(struct filedesc *fdp, int fd); 112 static int getmaxfd(struct thread *td); 113 static u_long *filecaps_copy_prep(const struct filecaps *src); 114 static void filecaps_copy_finish(const struct filecaps *src, 115 struct filecaps *dst, u_long *ioctls); 116 static u_long *filecaps_free_prep(struct filecaps *fcaps); 117 static void filecaps_free_finish(u_long *ioctls); 118 119 /* 120 * Each process has: 121 * 122 * - An array of open file descriptors (fd_ofiles) 123 * - An array of file flags (fd_ofileflags) 124 * - A bitmap recording which descriptors are in use (fd_map) 125 * 126 * A process starts out with NDFILE descriptors. The value of NDFILE has 127 * been selected based the historical limit of 20 open files, and an 128 * assumption that the majority of processes, especially short-lived 129 * processes like shells, will never need more. 130 * 131 * If this initial allocation is exhausted, a larger descriptor table and 132 * map are allocated dynamically, and the pointers in the process's struct 133 * filedesc are updated to point to those. This is repeated every time 134 * the process runs out of file descriptors (provided it hasn't hit its 135 * resource limit). 136 * 137 * Since threads may hold references to individual descriptor table 138 * entries, the tables are never freed. Instead, they are placed on a 139 * linked list and freed only when the struct filedesc is released. 140 */ 141 #define NDFILE 20 142 #define NDSLOTSIZE sizeof(NDSLOTTYPE) 143 #define NDENTRIES (NDSLOTSIZE * __CHAR_BIT) 144 #define NDSLOT(x) ((x) / NDENTRIES) 145 #define NDBIT(x) ((NDSLOTTYPE)1 << ((x) % NDENTRIES)) 146 #define NDSLOTS(x) (((x) + NDENTRIES - 1) / NDENTRIES) 147 148 /* 149 * SLIST entry used to keep track of ofiles which must be reclaimed when 150 * the process exits. 151 */ 152 struct freetable { 153 struct fdescenttbl *ft_table; 154 SLIST_ENTRY(freetable) ft_next; 155 }; 156 157 /* 158 * Initial allocation: a filedesc structure + the head of SLIST used to 159 * keep track of old ofiles + enough space for NDFILE descriptors. 160 */ 161 162 struct fdescenttbl0 { 163 int fdt_nfiles; 164 struct filedescent fdt_ofiles[NDFILE]; 165 }; 166 167 struct filedesc0 { 168 struct filedesc fd_fd; 169 SLIST_HEAD(, freetable) fd_free; 170 struct fdescenttbl0 fd_dfiles; 171 NDSLOTTYPE fd_dmap[NDSLOTS(NDFILE)]; 172 }; 173 174 /* 175 * Descriptor management. 176 */ 177 volatile int __exclusive_cache_line openfiles; /* actual number of open files */ 178 struct mtx sigio_lock; /* mtx to protect pointers to sigio */ 179 void __read_mostly (*mq_fdclose)(struct thread *td, int fd, struct file *fp); 180 181 /* 182 * If low >= size, just return low. Otherwise find the first zero bit in the 183 * given bitmap, starting at low and not exceeding size - 1. Return size if 184 * not found. 185 */ 186 static int 187 fd_first_free(struct filedesc *fdp, int low, int size) 188 { 189 NDSLOTTYPE *map = fdp->fd_map; 190 NDSLOTTYPE mask; 191 int off, maxoff; 192 193 if (low >= size) 194 return (low); 195 196 off = NDSLOT(low); 197 if (low % NDENTRIES) { 198 mask = ~(~(NDSLOTTYPE)0 >> (NDENTRIES - (low % NDENTRIES))); 199 if ((mask &= ~map[off]) != 0UL) 200 return (off * NDENTRIES + ffsl(mask) - 1); 201 ++off; 202 } 203 for (maxoff = NDSLOTS(size); off < maxoff; ++off) 204 if (map[off] != ~0UL) 205 return (off * NDENTRIES + ffsl(~map[off]) - 1); 206 return (size); 207 } 208 209 /* 210 * Find the highest non-zero bit in the given bitmap, starting at 0 and 211 * not exceeding size - 1. Return -1 if not found. 212 */ 213 static int 214 fd_last_used(struct filedesc *fdp, int size) 215 { 216 NDSLOTTYPE *map = fdp->fd_map; 217 NDSLOTTYPE mask; 218 int off, minoff; 219 220 off = NDSLOT(size); 221 if (size % NDENTRIES) { 222 mask = ~(~(NDSLOTTYPE)0 << (size % NDENTRIES)); 223 if ((mask &= map[off]) != 0) 224 return (off * NDENTRIES + flsl(mask) - 1); 225 --off; 226 } 227 for (minoff = NDSLOT(0); off >= minoff; --off) 228 if (map[off] != 0) 229 return (off * NDENTRIES + flsl(map[off]) - 1); 230 return (-1); 231 } 232 233 static int 234 fdisused(struct filedesc *fdp, int fd) 235 { 236 237 KASSERT(fd >= 0 && fd < fdp->fd_nfiles, 238 ("file descriptor %d out of range (0, %d)", fd, fdp->fd_nfiles)); 239 240 return ((fdp->fd_map[NDSLOT(fd)] & NDBIT(fd)) != 0); 241 } 242 243 /* 244 * Mark a file descriptor as used. 245 */ 246 static void 247 fdused_init(struct filedesc *fdp, int fd) 248 { 249 250 KASSERT(!fdisused(fdp, fd), ("fd=%d is already used", fd)); 251 252 fdp->fd_map[NDSLOT(fd)] |= NDBIT(fd); 253 } 254 255 static void 256 fdused(struct filedesc *fdp, int fd) 257 { 258 259 FILEDESC_XLOCK_ASSERT(fdp); 260 261 fdused_init(fdp, fd); 262 if (fd > fdp->fd_lastfile) 263 fdp->fd_lastfile = fd; 264 if (fd == fdp->fd_freefile) 265 fdp->fd_freefile++; 266 } 267 268 /* 269 * Mark a file descriptor as unused. 270 */ 271 static void 272 fdunused(struct filedesc *fdp, int fd) 273 { 274 275 FILEDESC_XLOCK_ASSERT(fdp); 276 277 KASSERT(fdisused(fdp, fd), ("fd=%d is already unused", fd)); 278 KASSERT(fdp->fd_ofiles[fd].fde_file == NULL, 279 ("fd=%d is still in use", fd)); 280 281 fdp->fd_map[NDSLOT(fd)] &= ~NDBIT(fd); 282 if (fd < fdp->fd_freefile) 283 fdp->fd_freefile = fd; 284 if (fd == fdp->fd_lastfile) 285 fdp->fd_lastfile = fd_last_used(fdp, fd); 286 } 287 288 /* 289 * Free a file descriptor. 290 * 291 * Avoid some work if fdp is about to be destroyed. 292 */ 293 static inline void 294 fdefree_last(struct filedescent *fde) 295 { 296 297 filecaps_free(&fde->fde_caps); 298 } 299 300 static inline void 301 fdfree(struct filedesc *fdp, int fd) 302 { 303 struct filedescent *fde; 304 305 fde = &fdp->fd_ofiles[fd]; 306 #ifdef CAPABILITIES 307 seq_write_begin(&fde->fde_seq); 308 #endif 309 fde->fde_file = NULL; 310 #ifdef CAPABILITIES 311 seq_write_end(&fde->fde_seq); 312 #endif 313 fdefree_last(fde); 314 fdunused(fdp, fd); 315 } 316 317 void 318 pwd_ensure_dirs(void) 319 { 320 struct filedesc *fdp; 321 322 fdp = curproc->p_fd; 323 FILEDESC_XLOCK(fdp); 324 if (fdp->fd_cdir == NULL) { 325 fdp->fd_cdir = rootvnode; 326 vrefact(rootvnode); 327 } 328 if (fdp->fd_rdir == NULL) { 329 fdp->fd_rdir = rootvnode; 330 vrefact(rootvnode); 331 } 332 FILEDESC_XUNLOCK(fdp); 333 } 334 335 /* 336 * System calls on descriptors. 337 */ 338 #ifndef _SYS_SYSPROTO_H_ 339 struct getdtablesize_args { 340 int dummy; 341 }; 342 #endif 343 /* ARGSUSED */ 344 int 345 sys_getdtablesize(struct thread *td, struct getdtablesize_args *uap) 346 { 347 #ifdef RACCT 348 uint64_t lim; 349 #endif 350 351 td->td_retval[0] = getmaxfd(td); 352 #ifdef RACCT 353 PROC_LOCK(td->td_proc); 354 lim = racct_get_limit(td->td_proc, RACCT_NOFILE); 355 PROC_UNLOCK(td->td_proc); 356 if (lim < td->td_retval[0]) 357 td->td_retval[0] = lim; 358 #endif 359 return (0); 360 } 361 362 /* 363 * Duplicate a file descriptor to a particular value. 364 * 365 * Note: keep in mind that a potential race condition exists when closing 366 * descriptors from a shared descriptor table (via rfork). 367 */ 368 #ifndef _SYS_SYSPROTO_H_ 369 struct dup2_args { 370 u_int from; 371 u_int to; 372 }; 373 #endif 374 /* ARGSUSED */ 375 int 376 sys_dup2(struct thread *td, struct dup2_args *uap) 377 { 378 379 return (kern_dup(td, FDDUP_FIXED, 0, (int)uap->from, (int)uap->to)); 380 } 381 382 /* 383 * Duplicate a file descriptor. 384 */ 385 #ifndef _SYS_SYSPROTO_H_ 386 struct dup_args { 387 u_int fd; 388 }; 389 #endif 390 /* ARGSUSED */ 391 int 392 sys_dup(struct thread *td, struct dup_args *uap) 393 { 394 395 return (kern_dup(td, FDDUP_NORMAL, 0, (int)uap->fd, 0)); 396 } 397 398 /* 399 * The file control system call. 400 */ 401 #ifndef _SYS_SYSPROTO_H_ 402 struct fcntl_args { 403 int fd; 404 int cmd; 405 long arg; 406 }; 407 #endif 408 /* ARGSUSED */ 409 int 410 sys_fcntl(struct thread *td, struct fcntl_args *uap) 411 { 412 413 return (kern_fcntl_freebsd(td, uap->fd, uap->cmd, uap->arg)); 414 } 415 416 int 417 kern_fcntl_freebsd(struct thread *td, int fd, int cmd, long arg) 418 { 419 struct flock fl; 420 struct __oflock ofl; 421 intptr_t arg1; 422 int error, newcmd; 423 424 error = 0; 425 newcmd = cmd; 426 switch (cmd) { 427 case F_OGETLK: 428 case F_OSETLK: 429 case F_OSETLKW: 430 /* 431 * Convert old flock structure to new. 432 */ 433 error = copyin((void *)(intptr_t)arg, &ofl, sizeof(ofl)); 434 fl.l_start = ofl.l_start; 435 fl.l_len = ofl.l_len; 436 fl.l_pid = ofl.l_pid; 437 fl.l_type = ofl.l_type; 438 fl.l_whence = ofl.l_whence; 439 fl.l_sysid = 0; 440 441 switch (cmd) { 442 case F_OGETLK: 443 newcmd = F_GETLK; 444 break; 445 case F_OSETLK: 446 newcmd = F_SETLK; 447 break; 448 case F_OSETLKW: 449 newcmd = F_SETLKW; 450 break; 451 } 452 arg1 = (intptr_t)&fl; 453 break; 454 case F_GETLK: 455 case F_SETLK: 456 case F_SETLKW: 457 case F_SETLK_REMOTE: 458 error = copyin((void *)(intptr_t)arg, &fl, sizeof(fl)); 459 arg1 = (intptr_t)&fl; 460 break; 461 default: 462 arg1 = arg; 463 break; 464 } 465 if (error) 466 return (error); 467 error = kern_fcntl(td, fd, newcmd, arg1); 468 if (error) 469 return (error); 470 if (cmd == F_OGETLK) { 471 ofl.l_start = fl.l_start; 472 ofl.l_len = fl.l_len; 473 ofl.l_pid = fl.l_pid; 474 ofl.l_type = fl.l_type; 475 ofl.l_whence = fl.l_whence; 476 error = copyout(&ofl, (void *)(intptr_t)arg, sizeof(ofl)); 477 } else if (cmd == F_GETLK) { 478 error = copyout(&fl, (void *)(intptr_t)arg, sizeof(fl)); 479 } 480 return (error); 481 } 482 483 int 484 kern_fcntl(struct thread *td, int fd, int cmd, intptr_t arg) 485 { 486 struct filedesc *fdp; 487 struct flock *flp; 488 struct file *fp, *fp2; 489 struct filedescent *fde; 490 struct proc *p; 491 struct vnode *vp; 492 int error, flg, tmp; 493 uint64_t bsize; 494 off_t foffset; 495 496 error = 0; 497 flg = F_POSIX; 498 p = td->td_proc; 499 fdp = p->p_fd; 500 501 AUDIT_ARG_FD(cmd); 502 AUDIT_ARG_CMD(cmd); 503 switch (cmd) { 504 case F_DUPFD: 505 tmp = arg; 506 error = kern_dup(td, FDDUP_FCNTL, 0, fd, tmp); 507 break; 508 509 case F_DUPFD_CLOEXEC: 510 tmp = arg; 511 error = kern_dup(td, FDDUP_FCNTL, FDDUP_FLAG_CLOEXEC, fd, tmp); 512 break; 513 514 case F_DUP2FD: 515 tmp = arg; 516 error = kern_dup(td, FDDUP_FIXED, 0, fd, tmp); 517 break; 518 519 case F_DUP2FD_CLOEXEC: 520 tmp = arg; 521 error = kern_dup(td, FDDUP_FIXED, FDDUP_FLAG_CLOEXEC, fd, tmp); 522 break; 523 524 case F_GETFD: 525 error = EBADF; 526 FILEDESC_SLOCK(fdp); 527 fde = fdeget_locked(fdp, fd); 528 if (fde != NULL) { 529 td->td_retval[0] = 530 (fde->fde_flags & UF_EXCLOSE) ? FD_CLOEXEC : 0; 531 error = 0; 532 } 533 FILEDESC_SUNLOCK(fdp); 534 break; 535 536 case F_SETFD: 537 error = EBADF; 538 FILEDESC_XLOCK(fdp); 539 fde = fdeget_locked(fdp, fd); 540 if (fde != NULL) { 541 fde->fde_flags = (fde->fde_flags & ~UF_EXCLOSE) | 542 (arg & FD_CLOEXEC ? UF_EXCLOSE : 0); 543 error = 0; 544 } 545 FILEDESC_XUNLOCK(fdp); 546 break; 547 548 case F_GETFL: 549 error = fget_fcntl(td, fd, &cap_fcntl_rights, F_GETFL, &fp); 550 if (error != 0) 551 break; 552 td->td_retval[0] = OFLAGS(fp->f_flag); 553 fdrop(fp, td); 554 break; 555 556 case F_SETFL: 557 error = fget_fcntl(td, fd, &cap_fcntl_rights, F_SETFL, &fp); 558 if (error != 0) 559 break; 560 do { 561 tmp = flg = fp->f_flag; 562 tmp &= ~FCNTLFLAGS; 563 tmp |= FFLAGS(arg & ~O_ACCMODE) & FCNTLFLAGS; 564 } while(atomic_cmpset_int(&fp->f_flag, flg, tmp) == 0); 565 tmp = fp->f_flag & FNONBLOCK; 566 error = fo_ioctl(fp, FIONBIO, &tmp, td->td_ucred, td); 567 if (error != 0) { 568 fdrop(fp, td); 569 break; 570 } 571 tmp = fp->f_flag & FASYNC; 572 error = fo_ioctl(fp, FIOASYNC, &tmp, td->td_ucred, td); 573 if (error == 0) { 574 fdrop(fp, td); 575 break; 576 } 577 atomic_clear_int(&fp->f_flag, FNONBLOCK); 578 tmp = 0; 579 (void)fo_ioctl(fp, FIONBIO, &tmp, td->td_ucred, td); 580 fdrop(fp, td); 581 break; 582 583 case F_GETOWN: 584 error = fget_fcntl(td, fd, &cap_fcntl_rights, F_GETOWN, &fp); 585 if (error != 0) 586 break; 587 error = fo_ioctl(fp, FIOGETOWN, &tmp, td->td_ucred, td); 588 if (error == 0) 589 td->td_retval[0] = tmp; 590 fdrop(fp, td); 591 break; 592 593 case F_SETOWN: 594 error = fget_fcntl(td, fd, &cap_fcntl_rights, F_SETOWN, &fp); 595 if (error != 0) 596 break; 597 tmp = arg; 598 error = fo_ioctl(fp, FIOSETOWN, &tmp, td->td_ucred, td); 599 fdrop(fp, td); 600 break; 601 602 case F_SETLK_REMOTE: 603 error = priv_check(td, PRIV_NFS_LOCKD); 604 if (error) 605 return (error); 606 flg = F_REMOTE; 607 goto do_setlk; 608 609 case F_SETLKW: 610 flg |= F_WAIT; 611 /* FALLTHROUGH F_SETLK */ 612 613 case F_SETLK: 614 do_setlk: 615 error = fget_unlocked(fdp, fd, &cap_flock_rights, &fp, NULL); 616 if (error != 0) 617 break; 618 if (fp->f_type != DTYPE_VNODE) { 619 error = EBADF; 620 fdrop(fp, td); 621 break; 622 } 623 624 flp = (struct flock *)arg; 625 if (flp->l_whence == SEEK_CUR) { 626 foffset = foffset_get(fp); 627 if (foffset < 0 || 628 (flp->l_start > 0 && 629 foffset > OFF_MAX - flp->l_start)) { 630 error = EOVERFLOW; 631 fdrop(fp, td); 632 break; 633 } 634 flp->l_start += foffset; 635 } 636 637 vp = fp->f_vnode; 638 switch (flp->l_type) { 639 case F_RDLCK: 640 if ((fp->f_flag & FREAD) == 0) { 641 error = EBADF; 642 break; 643 } 644 if ((p->p_leader->p_flag & P_ADVLOCK) == 0) { 645 PROC_LOCK(p->p_leader); 646 p->p_leader->p_flag |= P_ADVLOCK; 647 PROC_UNLOCK(p->p_leader); 648 } 649 error = VOP_ADVLOCK(vp, (caddr_t)p->p_leader, F_SETLK, 650 flp, flg); 651 break; 652 case F_WRLCK: 653 if ((fp->f_flag & FWRITE) == 0) { 654 error = EBADF; 655 break; 656 } 657 if ((p->p_leader->p_flag & P_ADVLOCK) == 0) { 658 PROC_LOCK(p->p_leader); 659 p->p_leader->p_flag |= P_ADVLOCK; 660 PROC_UNLOCK(p->p_leader); 661 } 662 error = VOP_ADVLOCK(vp, (caddr_t)p->p_leader, F_SETLK, 663 flp, flg); 664 break; 665 case F_UNLCK: 666 error = VOP_ADVLOCK(vp, (caddr_t)p->p_leader, F_UNLCK, 667 flp, flg); 668 break; 669 case F_UNLCKSYS: 670 /* 671 * Temporary api for testing remote lock 672 * infrastructure. 673 */ 674 if (flg != F_REMOTE) { 675 error = EINVAL; 676 break; 677 } 678 error = VOP_ADVLOCK(vp, (caddr_t)p->p_leader, 679 F_UNLCKSYS, flp, flg); 680 break; 681 default: 682 error = EINVAL; 683 break; 684 } 685 if (error != 0 || flp->l_type == F_UNLCK || 686 flp->l_type == F_UNLCKSYS) { 687 fdrop(fp, td); 688 break; 689 } 690 691 /* 692 * Check for a race with close. 693 * 694 * The vnode is now advisory locked (or unlocked, but this case 695 * is not really important) as the caller requested. 696 * We had to drop the filedesc lock, so we need to recheck if 697 * the descriptor is still valid, because if it was closed 698 * in the meantime we need to remove advisory lock from the 699 * vnode - close on any descriptor leading to an advisory 700 * locked vnode, removes that lock. 701 * We will return 0 on purpose in that case, as the result of 702 * successful advisory lock might have been externally visible 703 * already. This is fine - effectively we pretend to the caller 704 * that the closing thread was a bit slower and that the 705 * advisory lock succeeded before the close. 706 */ 707 error = fget_unlocked(fdp, fd, &cap_no_rights, &fp2, NULL); 708 if (error != 0) { 709 fdrop(fp, td); 710 break; 711 } 712 if (fp != fp2) { 713 flp->l_whence = SEEK_SET; 714 flp->l_start = 0; 715 flp->l_len = 0; 716 flp->l_type = F_UNLCK; 717 (void) VOP_ADVLOCK(vp, (caddr_t)p->p_leader, 718 F_UNLCK, flp, F_POSIX); 719 } 720 fdrop(fp, td); 721 fdrop(fp2, td); 722 break; 723 724 case F_GETLK: 725 error = fget_unlocked(fdp, fd, &cap_flock_rights, &fp, NULL); 726 if (error != 0) 727 break; 728 if (fp->f_type != DTYPE_VNODE) { 729 error = EBADF; 730 fdrop(fp, td); 731 break; 732 } 733 flp = (struct flock *)arg; 734 if (flp->l_type != F_RDLCK && flp->l_type != F_WRLCK && 735 flp->l_type != F_UNLCK) { 736 error = EINVAL; 737 fdrop(fp, td); 738 break; 739 } 740 if (flp->l_whence == SEEK_CUR) { 741 foffset = foffset_get(fp); 742 if ((flp->l_start > 0 && 743 foffset > OFF_MAX - flp->l_start) || 744 (flp->l_start < 0 && 745 foffset < OFF_MIN - flp->l_start)) { 746 error = EOVERFLOW; 747 fdrop(fp, td); 748 break; 749 } 750 flp->l_start += foffset; 751 } 752 vp = fp->f_vnode; 753 error = VOP_ADVLOCK(vp, (caddr_t)p->p_leader, F_GETLK, flp, 754 F_POSIX); 755 fdrop(fp, td); 756 break; 757 758 case F_RDAHEAD: 759 arg = arg ? 128 * 1024: 0; 760 /* FALLTHROUGH */ 761 case F_READAHEAD: 762 error = fget_unlocked(fdp, fd, &cap_no_rights, &fp, NULL); 763 if (error != 0) 764 break; 765 if (fp->f_type != DTYPE_VNODE) { 766 fdrop(fp, td); 767 error = EBADF; 768 break; 769 } 770 vp = fp->f_vnode; 771 /* 772 * Exclusive lock synchronizes against f_seqcount reads and 773 * writes in sequential_heuristic(). 774 */ 775 error = vn_lock(vp, LK_EXCLUSIVE); 776 if (error != 0) { 777 fdrop(fp, td); 778 break; 779 } 780 if (arg >= 0) { 781 bsize = fp->f_vnode->v_mount->mnt_stat.f_iosize; 782 fp->f_seqcount = (arg + bsize - 1) / bsize; 783 atomic_set_int(&fp->f_flag, FRDAHEAD); 784 } else { 785 atomic_clear_int(&fp->f_flag, FRDAHEAD); 786 } 787 VOP_UNLOCK(vp, 0); 788 fdrop(fp, td); 789 break; 790 791 default: 792 error = EINVAL; 793 break; 794 } 795 return (error); 796 } 797 798 static int 799 getmaxfd(struct thread *td) 800 { 801 802 return (min((int)lim_cur(td, RLIMIT_NOFILE), maxfilesperproc)); 803 } 804 805 /* 806 * Common code for dup, dup2, fcntl(F_DUPFD) and fcntl(F_DUP2FD). 807 */ 808 int 809 kern_dup(struct thread *td, u_int mode, int flags, int old, int new) 810 { 811 struct filedesc *fdp; 812 struct filedescent *oldfde, *newfde; 813 struct proc *p; 814 struct file *delfp; 815 u_long *oioctls, *nioctls; 816 int error, maxfd; 817 818 p = td->td_proc; 819 fdp = p->p_fd; 820 oioctls = NULL; 821 822 MPASS((flags & ~(FDDUP_FLAG_CLOEXEC)) == 0); 823 MPASS(mode < FDDUP_LASTMODE); 824 825 AUDIT_ARG_FD(old); 826 /* XXXRW: if (flags & FDDUP_FIXED) AUDIT_ARG_FD2(new); */ 827 828 /* 829 * Verify we have a valid descriptor to dup from and possibly to 830 * dup to. Unlike dup() and dup2(), fcntl()'s F_DUPFD should 831 * return EINVAL when the new descriptor is out of bounds. 832 */ 833 if (old < 0) 834 return (EBADF); 835 if (new < 0) 836 return (mode == FDDUP_FCNTL ? EINVAL : EBADF); 837 maxfd = getmaxfd(td); 838 if (new >= maxfd) 839 return (mode == FDDUP_FCNTL ? EINVAL : EBADF); 840 841 error = EBADF; 842 FILEDESC_XLOCK(fdp); 843 if (fget_locked(fdp, old) == NULL) 844 goto unlock; 845 if ((mode == FDDUP_FIXED || mode == FDDUP_MUSTREPLACE) && old == new) { 846 td->td_retval[0] = new; 847 if (flags & FDDUP_FLAG_CLOEXEC) 848 fdp->fd_ofiles[new].fde_flags |= UF_EXCLOSE; 849 error = 0; 850 goto unlock; 851 } 852 853 /* 854 * If the caller specified a file descriptor, make sure the file 855 * table is large enough to hold it, and grab it. Otherwise, just 856 * allocate a new descriptor the usual way. 857 */ 858 switch (mode) { 859 case FDDUP_NORMAL: 860 case FDDUP_FCNTL: 861 if ((error = fdalloc(td, new, &new)) != 0) 862 goto unlock; 863 break; 864 case FDDUP_MUSTREPLACE: 865 /* Target file descriptor must exist. */ 866 if (fget_locked(fdp, new) == NULL) 867 goto unlock; 868 break; 869 case FDDUP_FIXED: 870 if (new >= fdp->fd_nfiles) { 871 /* 872 * The resource limits are here instead of e.g. 873 * fdalloc(), because the file descriptor table may be 874 * shared between processes, so we can't really use 875 * racct_add()/racct_sub(). Instead of counting the 876 * number of actually allocated descriptors, just put 877 * the limit on the size of the file descriptor table. 878 */ 879 #ifdef RACCT 880 if (RACCT_ENABLED()) { 881 error = racct_set_unlocked(p, RACCT_NOFILE, new + 1); 882 if (error != 0) { 883 error = EMFILE; 884 goto unlock; 885 } 886 } 887 #endif 888 fdgrowtable_exp(fdp, new + 1); 889 } 890 if (!fdisused(fdp, new)) 891 fdused(fdp, new); 892 break; 893 default: 894 KASSERT(0, ("%s unsupported mode %d", __func__, mode)); 895 } 896 897 KASSERT(old != new, ("new fd is same as old")); 898 899 oldfde = &fdp->fd_ofiles[old]; 900 fhold(oldfde->fde_file); 901 newfde = &fdp->fd_ofiles[new]; 902 delfp = newfde->fde_file; 903 904 oioctls = filecaps_free_prep(&newfde->fde_caps); 905 nioctls = filecaps_copy_prep(&oldfde->fde_caps); 906 907 /* 908 * Duplicate the source descriptor. 909 */ 910 #ifdef CAPABILITIES 911 seq_write_begin(&newfde->fde_seq); 912 #endif 913 memcpy(newfde, oldfde, fde_change_size); 914 filecaps_copy_finish(&oldfde->fde_caps, &newfde->fde_caps, 915 nioctls); 916 if ((flags & FDDUP_FLAG_CLOEXEC) != 0) 917 newfde->fde_flags = oldfde->fde_flags | UF_EXCLOSE; 918 else 919 newfde->fde_flags = oldfde->fde_flags & ~UF_EXCLOSE; 920 #ifdef CAPABILITIES 921 seq_write_end(&newfde->fde_seq); 922 #endif 923 td->td_retval[0] = new; 924 925 error = 0; 926 927 if (delfp != NULL) { 928 (void) closefp(fdp, new, delfp, td, 1); 929 FILEDESC_UNLOCK_ASSERT(fdp); 930 } else { 931 unlock: 932 FILEDESC_XUNLOCK(fdp); 933 } 934 935 filecaps_free_finish(oioctls); 936 return (error); 937 } 938 939 /* 940 * If sigio is on the list associated with a process or process group, 941 * disable signalling from the device, remove sigio from the list and 942 * free sigio. 943 */ 944 void 945 funsetown(struct sigio **sigiop) 946 { 947 struct sigio *sigio; 948 949 if (*sigiop == NULL) 950 return; 951 SIGIO_LOCK(); 952 sigio = *sigiop; 953 if (sigio == NULL) { 954 SIGIO_UNLOCK(); 955 return; 956 } 957 *(sigio->sio_myref) = NULL; 958 if ((sigio)->sio_pgid < 0) { 959 struct pgrp *pg = (sigio)->sio_pgrp; 960 PGRP_LOCK(pg); 961 SLIST_REMOVE(&sigio->sio_pgrp->pg_sigiolst, sigio, 962 sigio, sio_pgsigio); 963 PGRP_UNLOCK(pg); 964 } else { 965 struct proc *p = (sigio)->sio_proc; 966 PROC_LOCK(p); 967 SLIST_REMOVE(&sigio->sio_proc->p_sigiolst, sigio, 968 sigio, sio_pgsigio); 969 PROC_UNLOCK(p); 970 } 971 SIGIO_UNLOCK(); 972 crfree(sigio->sio_ucred); 973 free(sigio, M_SIGIO); 974 } 975 976 /* 977 * Free a list of sigio structures. 978 * We only need to lock the SIGIO_LOCK because we have made ourselves 979 * inaccessible to callers of fsetown and therefore do not need to lock 980 * the proc or pgrp struct for the list manipulation. 981 */ 982 void 983 funsetownlst(struct sigiolst *sigiolst) 984 { 985 struct proc *p; 986 struct pgrp *pg; 987 struct sigio *sigio; 988 989 sigio = SLIST_FIRST(sigiolst); 990 if (sigio == NULL) 991 return; 992 p = NULL; 993 pg = NULL; 994 995 /* 996 * Every entry of the list should belong 997 * to a single proc or pgrp. 998 */ 999 if (sigio->sio_pgid < 0) { 1000 pg = sigio->sio_pgrp; 1001 PGRP_LOCK_ASSERT(pg, MA_NOTOWNED); 1002 } else /* if (sigio->sio_pgid > 0) */ { 1003 p = sigio->sio_proc; 1004 PROC_LOCK_ASSERT(p, MA_NOTOWNED); 1005 } 1006 1007 SIGIO_LOCK(); 1008 while ((sigio = SLIST_FIRST(sigiolst)) != NULL) { 1009 *(sigio->sio_myref) = NULL; 1010 if (pg != NULL) { 1011 KASSERT(sigio->sio_pgid < 0, 1012 ("Proc sigio in pgrp sigio list")); 1013 KASSERT(sigio->sio_pgrp == pg, 1014 ("Bogus pgrp in sigio list")); 1015 PGRP_LOCK(pg); 1016 SLIST_REMOVE(&pg->pg_sigiolst, sigio, sigio, 1017 sio_pgsigio); 1018 PGRP_UNLOCK(pg); 1019 } else /* if (p != NULL) */ { 1020 KASSERT(sigio->sio_pgid > 0, 1021 ("Pgrp sigio in proc sigio list")); 1022 KASSERT(sigio->sio_proc == p, 1023 ("Bogus proc in sigio list")); 1024 PROC_LOCK(p); 1025 SLIST_REMOVE(&p->p_sigiolst, sigio, sigio, 1026 sio_pgsigio); 1027 PROC_UNLOCK(p); 1028 } 1029 SIGIO_UNLOCK(); 1030 crfree(sigio->sio_ucred); 1031 free(sigio, M_SIGIO); 1032 SIGIO_LOCK(); 1033 } 1034 SIGIO_UNLOCK(); 1035 } 1036 1037 /* 1038 * This is common code for FIOSETOWN ioctl called by fcntl(fd, F_SETOWN, arg). 1039 * 1040 * After permission checking, add a sigio structure to the sigio list for 1041 * the process or process group. 1042 */ 1043 int 1044 fsetown(pid_t pgid, struct sigio **sigiop) 1045 { 1046 struct proc *proc; 1047 struct pgrp *pgrp; 1048 struct sigio *sigio; 1049 int ret; 1050 1051 if (pgid == 0) { 1052 funsetown(sigiop); 1053 return (0); 1054 } 1055 1056 ret = 0; 1057 1058 /* Allocate and fill in the new sigio out of locks. */ 1059 sigio = malloc(sizeof(struct sigio), M_SIGIO, M_WAITOK); 1060 sigio->sio_pgid = pgid; 1061 sigio->sio_ucred = crhold(curthread->td_ucred); 1062 sigio->sio_myref = sigiop; 1063 1064 sx_slock(&proctree_lock); 1065 if (pgid > 0) { 1066 proc = pfind(pgid); 1067 if (proc == NULL) { 1068 ret = ESRCH; 1069 goto fail; 1070 } 1071 1072 /* 1073 * Policy - Don't allow a process to FSETOWN a process 1074 * in another session. 1075 * 1076 * Remove this test to allow maximum flexibility or 1077 * restrict FSETOWN to the current process or process 1078 * group for maximum safety. 1079 */ 1080 PROC_UNLOCK(proc); 1081 if (proc->p_session != curthread->td_proc->p_session) { 1082 ret = EPERM; 1083 goto fail; 1084 } 1085 1086 pgrp = NULL; 1087 } else /* if (pgid < 0) */ { 1088 pgrp = pgfind(-pgid); 1089 if (pgrp == NULL) { 1090 ret = ESRCH; 1091 goto fail; 1092 } 1093 PGRP_UNLOCK(pgrp); 1094 1095 /* 1096 * Policy - Don't allow a process to FSETOWN a process 1097 * in another session. 1098 * 1099 * Remove this test to allow maximum flexibility or 1100 * restrict FSETOWN to the current process or process 1101 * group for maximum safety. 1102 */ 1103 if (pgrp->pg_session != curthread->td_proc->p_session) { 1104 ret = EPERM; 1105 goto fail; 1106 } 1107 1108 proc = NULL; 1109 } 1110 funsetown(sigiop); 1111 if (pgid > 0) { 1112 PROC_LOCK(proc); 1113 /* 1114 * Since funsetownlst() is called without the proctree 1115 * locked, we need to check for P_WEXIT. 1116 * XXX: is ESRCH correct? 1117 */ 1118 if ((proc->p_flag & P_WEXIT) != 0) { 1119 PROC_UNLOCK(proc); 1120 ret = ESRCH; 1121 goto fail; 1122 } 1123 SLIST_INSERT_HEAD(&proc->p_sigiolst, sigio, sio_pgsigio); 1124 sigio->sio_proc = proc; 1125 PROC_UNLOCK(proc); 1126 } else { 1127 PGRP_LOCK(pgrp); 1128 SLIST_INSERT_HEAD(&pgrp->pg_sigiolst, sigio, sio_pgsigio); 1129 sigio->sio_pgrp = pgrp; 1130 PGRP_UNLOCK(pgrp); 1131 } 1132 sx_sunlock(&proctree_lock); 1133 SIGIO_LOCK(); 1134 *sigiop = sigio; 1135 SIGIO_UNLOCK(); 1136 return (0); 1137 1138 fail: 1139 sx_sunlock(&proctree_lock); 1140 crfree(sigio->sio_ucred); 1141 free(sigio, M_SIGIO); 1142 return (ret); 1143 } 1144 1145 /* 1146 * This is common code for FIOGETOWN ioctl called by fcntl(fd, F_GETOWN, arg). 1147 */ 1148 pid_t 1149 fgetown(struct sigio **sigiop) 1150 { 1151 pid_t pgid; 1152 1153 SIGIO_LOCK(); 1154 pgid = (*sigiop != NULL) ? (*sigiop)->sio_pgid : 0; 1155 SIGIO_UNLOCK(); 1156 return (pgid); 1157 } 1158 1159 /* 1160 * Function drops the filedesc lock on return. 1161 */ 1162 static int 1163 closefp(struct filedesc *fdp, int fd, struct file *fp, struct thread *td, 1164 int holdleaders) 1165 { 1166 int error; 1167 1168 FILEDESC_XLOCK_ASSERT(fdp); 1169 1170 if (holdleaders) { 1171 if (td->td_proc->p_fdtol != NULL) { 1172 /* 1173 * Ask fdfree() to sleep to ensure that all relevant 1174 * process leaders can be traversed in closef(). 1175 */ 1176 fdp->fd_holdleaderscount++; 1177 } else { 1178 holdleaders = 0; 1179 } 1180 } 1181 1182 /* 1183 * We now hold the fp reference that used to be owned by the 1184 * descriptor array. We have to unlock the FILEDESC *AFTER* 1185 * knote_fdclose to prevent a race of the fd getting opened, a knote 1186 * added, and deleteing a knote for the new fd. 1187 */ 1188 if (__predict_false(!TAILQ_EMPTY(&fdp->fd_kqlist))) 1189 knote_fdclose(td, fd); 1190 1191 /* 1192 * We need to notify mqueue if the object is of type mqueue. 1193 */ 1194 if (__predict_false(fp->f_type == DTYPE_MQUEUE)) 1195 mq_fdclose(td, fd, fp); 1196 FILEDESC_XUNLOCK(fdp); 1197 1198 error = closef(fp, td); 1199 if (holdleaders) { 1200 FILEDESC_XLOCK(fdp); 1201 fdp->fd_holdleaderscount--; 1202 if (fdp->fd_holdleaderscount == 0 && 1203 fdp->fd_holdleaderswakeup != 0) { 1204 fdp->fd_holdleaderswakeup = 0; 1205 wakeup(&fdp->fd_holdleaderscount); 1206 } 1207 FILEDESC_XUNLOCK(fdp); 1208 } 1209 return (error); 1210 } 1211 1212 /* 1213 * Close a file descriptor. 1214 */ 1215 #ifndef _SYS_SYSPROTO_H_ 1216 struct close_args { 1217 int fd; 1218 }; 1219 #endif 1220 /* ARGSUSED */ 1221 int 1222 sys_close(struct thread *td, struct close_args *uap) 1223 { 1224 1225 return (kern_close(td, uap->fd)); 1226 } 1227 1228 int 1229 kern_close(struct thread *td, int fd) 1230 { 1231 struct filedesc *fdp; 1232 struct file *fp; 1233 1234 fdp = td->td_proc->p_fd; 1235 1236 AUDIT_SYSCLOSE(td, fd); 1237 1238 FILEDESC_XLOCK(fdp); 1239 if ((fp = fget_locked(fdp, fd)) == NULL) { 1240 FILEDESC_XUNLOCK(fdp); 1241 return (EBADF); 1242 } 1243 fdfree(fdp, fd); 1244 1245 /* closefp() drops the FILEDESC lock for us. */ 1246 return (closefp(fdp, fd, fp, td, 1)); 1247 } 1248 1249 /* 1250 * Close open file descriptors. 1251 */ 1252 #ifndef _SYS_SYSPROTO_H_ 1253 struct closefrom_args { 1254 int lowfd; 1255 }; 1256 #endif 1257 /* ARGSUSED */ 1258 int 1259 sys_closefrom(struct thread *td, struct closefrom_args *uap) 1260 { 1261 struct filedesc *fdp; 1262 int fd; 1263 1264 fdp = td->td_proc->p_fd; 1265 AUDIT_ARG_FD(uap->lowfd); 1266 1267 /* 1268 * Treat negative starting file descriptor values identical to 1269 * closefrom(0) which closes all files. 1270 */ 1271 if (uap->lowfd < 0) 1272 uap->lowfd = 0; 1273 FILEDESC_SLOCK(fdp); 1274 for (fd = uap->lowfd; fd <= fdp->fd_lastfile; fd++) { 1275 if (fdp->fd_ofiles[fd].fde_file != NULL) { 1276 FILEDESC_SUNLOCK(fdp); 1277 (void)kern_close(td, fd); 1278 FILEDESC_SLOCK(fdp); 1279 } 1280 } 1281 FILEDESC_SUNLOCK(fdp); 1282 return (0); 1283 } 1284 1285 #if defined(COMPAT_43) 1286 /* 1287 * Return status information about a file descriptor. 1288 */ 1289 #ifndef _SYS_SYSPROTO_H_ 1290 struct ofstat_args { 1291 int fd; 1292 struct ostat *sb; 1293 }; 1294 #endif 1295 /* ARGSUSED */ 1296 int 1297 ofstat(struct thread *td, struct ofstat_args *uap) 1298 { 1299 struct ostat oub; 1300 struct stat ub; 1301 int error; 1302 1303 error = kern_fstat(td, uap->fd, &ub); 1304 if (error == 0) { 1305 cvtstat(&ub, &oub); 1306 error = copyout(&oub, uap->sb, sizeof(oub)); 1307 } 1308 return (error); 1309 } 1310 #endif /* COMPAT_43 */ 1311 1312 #if defined(COMPAT_FREEBSD11) 1313 int 1314 freebsd11_fstat(struct thread *td, struct freebsd11_fstat_args *uap) 1315 { 1316 struct stat sb; 1317 struct freebsd11_stat osb; 1318 int error; 1319 1320 error = kern_fstat(td, uap->fd, &sb); 1321 if (error != 0) 1322 return (error); 1323 error = freebsd11_cvtstat(&sb, &osb); 1324 if (error == 0) 1325 error = copyout(&osb, uap->sb, sizeof(osb)); 1326 return (error); 1327 } 1328 #endif /* COMPAT_FREEBSD11 */ 1329 1330 /* 1331 * Return status information about a file descriptor. 1332 */ 1333 #ifndef _SYS_SYSPROTO_H_ 1334 struct fstat_args { 1335 int fd; 1336 struct stat *sb; 1337 }; 1338 #endif 1339 /* ARGSUSED */ 1340 int 1341 sys_fstat(struct thread *td, struct fstat_args *uap) 1342 { 1343 struct stat ub; 1344 int error; 1345 1346 error = kern_fstat(td, uap->fd, &ub); 1347 if (error == 0) 1348 error = copyout(&ub, uap->sb, sizeof(ub)); 1349 return (error); 1350 } 1351 1352 int 1353 kern_fstat(struct thread *td, int fd, struct stat *sbp) 1354 { 1355 struct file *fp; 1356 int error; 1357 1358 AUDIT_ARG_FD(fd); 1359 1360 error = fget(td, fd, &cap_fstat_rights, &fp); 1361 if (error != 0) 1362 return (error); 1363 1364 AUDIT_ARG_FILE(td->td_proc, fp); 1365 1366 error = fo_stat(fp, sbp, td->td_ucred, td); 1367 fdrop(fp, td); 1368 #ifdef __STAT_TIME_T_EXT 1369 if (error == 0) { 1370 sbp->st_atim_ext = 0; 1371 sbp->st_mtim_ext = 0; 1372 sbp->st_ctim_ext = 0; 1373 sbp->st_btim_ext = 0; 1374 } 1375 #endif 1376 #ifdef KTRACE 1377 if (error == 0 && KTRPOINT(td, KTR_STRUCT)) 1378 ktrstat(sbp); 1379 #endif 1380 return (error); 1381 } 1382 1383 #if defined(COMPAT_FREEBSD11) 1384 /* 1385 * Return status information about a file descriptor. 1386 */ 1387 #ifndef _SYS_SYSPROTO_H_ 1388 struct freebsd11_nfstat_args { 1389 int fd; 1390 struct nstat *sb; 1391 }; 1392 #endif 1393 /* ARGSUSED */ 1394 int 1395 freebsd11_nfstat(struct thread *td, struct freebsd11_nfstat_args *uap) 1396 { 1397 struct nstat nub; 1398 struct stat ub; 1399 int error; 1400 1401 error = kern_fstat(td, uap->fd, &ub); 1402 if (error == 0) { 1403 freebsd11_cvtnstat(&ub, &nub); 1404 error = copyout(&nub, uap->sb, sizeof(nub)); 1405 } 1406 return (error); 1407 } 1408 #endif /* COMPAT_FREEBSD11 */ 1409 1410 /* 1411 * Return pathconf information about a file descriptor. 1412 */ 1413 #ifndef _SYS_SYSPROTO_H_ 1414 struct fpathconf_args { 1415 int fd; 1416 int name; 1417 }; 1418 #endif 1419 /* ARGSUSED */ 1420 int 1421 sys_fpathconf(struct thread *td, struct fpathconf_args *uap) 1422 { 1423 long value; 1424 int error; 1425 1426 error = kern_fpathconf(td, uap->fd, uap->name, &value); 1427 if (error == 0) 1428 td->td_retval[0] = value; 1429 return (error); 1430 } 1431 1432 int 1433 kern_fpathconf(struct thread *td, int fd, int name, long *valuep) 1434 { 1435 struct file *fp; 1436 struct vnode *vp; 1437 int error; 1438 1439 error = fget(td, fd, &cap_fpathconf_rights, &fp); 1440 if (error != 0) 1441 return (error); 1442 1443 if (name == _PC_ASYNC_IO) { 1444 *valuep = _POSIX_ASYNCHRONOUS_IO; 1445 goto out; 1446 } 1447 vp = fp->f_vnode; 1448 if (vp != NULL) { 1449 vn_lock(vp, LK_SHARED | LK_RETRY); 1450 error = VOP_PATHCONF(vp, name, valuep); 1451 VOP_UNLOCK(vp, 0); 1452 } else if (fp->f_type == DTYPE_PIPE || fp->f_type == DTYPE_SOCKET) { 1453 if (name != _PC_PIPE_BUF) { 1454 error = EINVAL; 1455 } else { 1456 *valuep = PIPE_BUF; 1457 error = 0; 1458 } 1459 } else { 1460 error = EOPNOTSUPP; 1461 } 1462 out: 1463 fdrop(fp, td); 1464 return (error); 1465 } 1466 1467 /* 1468 * Copy filecaps structure allocating memory for ioctls array if needed. 1469 * 1470 * The last parameter indicates whether the fdtable is locked. If it is not and 1471 * ioctls are encountered, copying fails and the caller must lock the table. 1472 * 1473 * Note that if the table was not locked, the caller has to check the relevant 1474 * sequence counter to determine whether the operation was successful. 1475 */ 1476 bool 1477 filecaps_copy(const struct filecaps *src, struct filecaps *dst, bool locked) 1478 { 1479 size_t size; 1480 1481 if (src->fc_ioctls != NULL && !locked) 1482 return (false); 1483 memcpy(dst, src, sizeof(*src)); 1484 if (src->fc_ioctls == NULL) 1485 return (true); 1486 1487 KASSERT(src->fc_nioctls > 0, 1488 ("fc_ioctls != NULL, but fc_nioctls=%hd", src->fc_nioctls)); 1489 1490 size = sizeof(src->fc_ioctls[0]) * src->fc_nioctls; 1491 dst->fc_ioctls = malloc(size, M_FILECAPS, M_WAITOK); 1492 memcpy(dst->fc_ioctls, src->fc_ioctls, size); 1493 return (true); 1494 } 1495 1496 static u_long * 1497 filecaps_copy_prep(const struct filecaps *src) 1498 { 1499 u_long *ioctls; 1500 size_t size; 1501 1502 if (__predict_true(src->fc_ioctls == NULL)) 1503 return (NULL); 1504 1505 KASSERT(src->fc_nioctls > 0, 1506 ("fc_ioctls != NULL, but fc_nioctls=%hd", src->fc_nioctls)); 1507 1508 size = sizeof(src->fc_ioctls[0]) * src->fc_nioctls; 1509 ioctls = malloc(size, M_FILECAPS, M_WAITOK); 1510 return (ioctls); 1511 } 1512 1513 static void 1514 filecaps_copy_finish(const struct filecaps *src, struct filecaps *dst, 1515 u_long *ioctls) 1516 { 1517 size_t size; 1518 1519 *dst = *src; 1520 if (__predict_true(src->fc_ioctls == NULL)) { 1521 MPASS(ioctls == NULL); 1522 return; 1523 } 1524 1525 size = sizeof(src->fc_ioctls[0]) * src->fc_nioctls; 1526 dst->fc_ioctls = ioctls; 1527 bcopy(src->fc_ioctls, dst->fc_ioctls, size); 1528 } 1529 1530 /* 1531 * Move filecaps structure to the new place and clear the old place. 1532 */ 1533 void 1534 filecaps_move(struct filecaps *src, struct filecaps *dst) 1535 { 1536 1537 *dst = *src; 1538 bzero(src, sizeof(*src)); 1539 } 1540 1541 /* 1542 * Fill the given filecaps structure with full rights. 1543 */ 1544 static void 1545 filecaps_fill(struct filecaps *fcaps) 1546 { 1547 1548 CAP_ALL(&fcaps->fc_rights); 1549 fcaps->fc_ioctls = NULL; 1550 fcaps->fc_nioctls = -1; 1551 fcaps->fc_fcntls = CAP_FCNTL_ALL; 1552 } 1553 1554 /* 1555 * Free memory allocated within filecaps structure. 1556 */ 1557 void 1558 filecaps_free(struct filecaps *fcaps) 1559 { 1560 1561 free(fcaps->fc_ioctls, M_FILECAPS); 1562 bzero(fcaps, sizeof(*fcaps)); 1563 } 1564 1565 static u_long * 1566 filecaps_free_prep(struct filecaps *fcaps) 1567 { 1568 u_long *ioctls; 1569 1570 ioctls = fcaps->fc_ioctls; 1571 bzero(fcaps, sizeof(*fcaps)); 1572 return (ioctls); 1573 } 1574 1575 static void 1576 filecaps_free_finish(u_long *ioctls) 1577 { 1578 1579 free(ioctls, M_FILECAPS); 1580 } 1581 1582 /* 1583 * Validate the given filecaps structure. 1584 */ 1585 static void 1586 filecaps_validate(const struct filecaps *fcaps, const char *func) 1587 { 1588 1589 KASSERT(cap_rights_is_valid(&fcaps->fc_rights), 1590 ("%s: invalid rights", func)); 1591 KASSERT((fcaps->fc_fcntls & ~CAP_FCNTL_ALL) == 0, 1592 ("%s: invalid fcntls", func)); 1593 KASSERT(fcaps->fc_fcntls == 0 || 1594 cap_rights_is_set(&fcaps->fc_rights, CAP_FCNTL), 1595 ("%s: fcntls without CAP_FCNTL", func)); 1596 KASSERT(fcaps->fc_ioctls != NULL ? fcaps->fc_nioctls > 0 : 1597 (fcaps->fc_nioctls == -1 || fcaps->fc_nioctls == 0), 1598 ("%s: invalid ioctls", func)); 1599 KASSERT(fcaps->fc_nioctls == 0 || 1600 cap_rights_is_set(&fcaps->fc_rights, CAP_IOCTL), 1601 ("%s: ioctls without CAP_IOCTL", func)); 1602 } 1603 1604 static void 1605 fdgrowtable_exp(struct filedesc *fdp, int nfd) 1606 { 1607 int nfd1; 1608 1609 FILEDESC_XLOCK_ASSERT(fdp); 1610 1611 nfd1 = fdp->fd_nfiles * 2; 1612 if (nfd1 < nfd) 1613 nfd1 = nfd; 1614 fdgrowtable(fdp, nfd1); 1615 } 1616 1617 /* 1618 * Grow the file table to accommodate (at least) nfd descriptors. 1619 */ 1620 static void 1621 fdgrowtable(struct filedesc *fdp, int nfd) 1622 { 1623 struct filedesc0 *fdp0; 1624 struct freetable *ft; 1625 struct fdescenttbl *ntable; 1626 struct fdescenttbl *otable; 1627 int nnfiles, onfiles; 1628 NDSLOTTYPE *nmap, *omap; 1629 1630 /* 1631 * If lastfile is -1 this struct filedesc was just allocated and we are 1632 * growing it to accommodate for the one we are going to copy from. There 1633 * is no need to have a lock on this one as it's not visible to anyone. 1634 */ 1635 if (fdp->fd_lastfile != -1) 1636 FILEDESC_XLOCK_ASSERT(fdp); 1637 1638 KASSERT(fdp->fd_nfiles > 0, ("zero-length file table")); 1639 1640 /* save old values */ 1641 onfiles = fdp->fd_nfiles; 1642 otable = fdp->fd_files; 1643 omap = fdp->fd_map; 1644 1645 /* compute the size of the new table */ 1646 nnfiles = NDSLOTS(nfd) * NDENTRIES; /* round up */ 1647 if (nnfiles <= onfiles) 1648 /* the table is already large enough */ 1649 return; 1650 1651 /* 1652 * Allocate a new table. We need enough space for the number of 1653 * entries, file entries themselves and the struct freetable we will use 1654 * when we decommission the table and place it on the freelist. 1655 * We place the struct freetable in the middle so we don't have 1656 * to worry about padding. 1657 */ 1658 ntable = malloc(offsetof(struct fdescenttbl, fdt_ofiles) + 1659 nnfiles * sizeof(ntable->fdt_ofiles[0]) + 1660 sizeof(struct freetable), 1661 M_FILEDESC, M_ZERO | M_WAITOK); 1662 /* copy the old data */ 1663 ntable->fdt_nfiles = nnfiles; 1664 memcpy(ntable->fdt_ofiles, otable->fdt_ofiles, 1665 onfiles * sizeof(ntable->fdt_ofiles[0])); 1666 1667 /* 1668 * Allocate a new map only if the old is not large enough. It will 1669 * grow at a slower rate than the table as it can map more 1670 * entries than the table can hold. 1671 */ 1672 if (NDSLOTS(nnfiles) > NDSLOTS(onfiles)) { 1673 nmap = malloc(NDSLOTS(nnfiles) * NDSLOTSIZE, M_FILEDESC, 1674 M_ZERO | M_WAITOK); 1675 /* copy over the old data and update the pointer */ 1676 memcpy(nmap, omap, NDSLOTS(onfiles) * sizeof(*omap)); 1677 fdp->fd_map = nmap; 1678 } 1679 1680 /* 1681 * Make sure that ntable is correctly initialized before we replace 1682 * fd_files poiner. Otherwise fget_unlocked() may see inconsistent 1683 * data. 1684 */ 1685 atomic_store_rel_ptr((volatile void *)&fdp->fd_files, (uintptr_t)ntable); 1686 1687 /* 1688 * Do not free the old file table, as some threads may still 1689 * reference entries within it. Instead, place it on a freelist 1690 * which will be processed when the struct filedesc is released. 1691 * 1692 * Note that if onfiles == NDFILE, we're dealing with the original 1693 * static allocation contained within (struct filedesc0 *)fdp, 1694 * which must not be freed. 1695 */ 1696 if (onfiles > NDFILE) { 1697 ft = (struct freetable *)&otable->fdt_ofiles[onfiles]; 1698 fdp0 = (struct filedesc0 *)fdp; 1699 ft->ft_table = otable; 1700 SLIST_INSERT_HEAD(&fdp0->fd_free, ft, ft_next); 1701 } 1702 /* 1703 * The map does not have the same possibility of threads still 1704 * holding references to it. So always free it as long as it 1705 * does not reference the original static allocation. 1706 */ 1707 if (NDSLOTS(onfiles) > NDSLOTS(NDFILE)) 1708 free(omap, M_FILEDESC); 1709 } 1710 1711 /* 1712 * Allocate a file descriptor for the process. 1713 */ 1714 int 1715 fdalloc(struct thread *td, int minfd, int *result) 1716 { 1717 struct proc *p = td->td_proc; 1718 struct filedesc *fdp = p->p_fd; 1719 int fd, maxfd, allocfd; 1720 #ifdef RACCT 1721 int error; 1722 #endif 1723 1724 FILEDESC_XLOCK_ASSERT(fdp); 1725 1726 if (fdp->fd_freefile > minfd) 1727 minfd = fdp->fd_freefile; 1728 1729 maxfd = getmaxfd(td); 1730 1731 /* 1732 * Search the bitmap for a free descriptor starting at minfd. 1733 * If none is found, grow the file table. 1734 */ 1735 fd = fd_first_free(fdp, minfd, fdp->fd_nfiles); 1736 if (fd >= maxfd) 1737 return (EMFILE); 1738 if (fd >= fdp->fd_nfiles) { 1739 allocfd = min(fd * 2, maxfd); 1740 #ifdef RACCT 1741 if (RACCT_ENABLED()) { 1742 error = racct_set_unlocked(p, RACCT_NOFILE, allocfd); 1743 if (error != 0) 1744 return (EMFILE); 1745 } 1746 #endif 1747 /* 1748 * fd is already equal to first free descriptor >= minfd, so 1749 * we only need to grow the table and we are done. 1750 */ 1751 fdgrowtable_exp(fdp, allocfd); 1752 } 1753 1754 /* 1755 * Perform some sanity checks, then mark the file descriptor as 1756 * used and return it to the caller. 1757 */ 1758 KASSERT(fd >= 0 && fd < min(maxfd, fdp->fd_nfiles), 1759 ("invalid descriptor %d", fd)); 1760 KASSERT(!fdisused(fdp, fd), 1761 ("fd_first_free() returned non-free descriptor")); 1762 KASSERT(fdp->fd_ofiles[fd].fde_file == NULL, 1763 ("file descriptor isn't free")); 1764 fdused(fdp, fd); 1765 *result = fd; 1766 return (0); 1767 } 1768 1769 /* 1770 * Allocate n file descriptors for the process. 1771 */ 1772 int 1773 fdallocn(struct thread *td, int minfd, int *fds, int n) 1774 { 1775 struct proc *p = td->td_proc; 1776 struct filedesc *fdp = p->p_fd; 1777 int i; 1778 1779 FILEDESC_XLOCK_ASSERT(fdp); 1780 1781 for (i = 0; i < n; i++) 1782 if (fdalloc(td, 0, &fds[i]) != 0) 1783 break; 1784 1785 if (i < n) { 1786 for (i--; i >= 0; i--) 1787 fdunused(fdp, fds[i]); 1788 return (EMFILE); 1789 } 1790 1791 return (0); 1792 } 1793 1794 /* 1795 * Create a new open file structure and allocate a file descriptor for the 1796 * process that refers to it. We add one reference to the file for the 1797 * descriptor table and one reference for resultfp. This is to prevent us 1798 * being preempted and the entry in the descriptor table closed after we 1799 * release the FILEDESC lock. 1800 */ 1801 int 1802 falloc_caps(struct thread *td, struct file **resultfp, int *resultfd, int flags, 1803 struct filecaps *fcaps) 1804 { 1805 struct file *fp; 1806 int error, fd; 1807 1808 error = falloc_noinstall(td, &fp); 1809 if (error) 1810 return (error); /* no reference held on error */ 1811 1812 error = finstall(td, fp, &fd, flags, fcaps); 1813 if (error) { 1814 fdrop(fp, td); /* one reference (fp only) */ 1815 return (error); 1816 } 1817 1818 if (resultfp != NULL) 1819 *resultfp = fp; /* copy out result */ 1820 else 1821 fdrop(fp, td); /* release local reference */ 1822 1823 if (resultfd != NULL) 1824 *resultfd = fd; 1825 1826 return (0); 1827 } 1828 1829 /* 1830 * Create a new open file structure without allocating a file descriptor. 1831 */ 1832 int 1833 falloc_noinstall(struct thread *td, struct file **resultfp) 1834 { 1835 struct file *fp; 1836 int maxuserfiles = maxfiles - (maxfiles / 20); 1837 int openfiles_new; 1838 static struct timeval lastfail; 1839 static int curfail; 1840 1841 KASSERT(resultfp != NULL, ("%s: resultfp == NULL", __func__)); 1842 1843 openfiles_new = atomic_fetchadd_int(&openfiles, 1) + 1; 1844 if ((openfiles_new >= maxuserfiles && 1845 priv_check(td, PRIV_MAXFILES) != 0) || 1846 openfiles_new >= maxfiles) { 1847 atomic_subtract_int(&openfiles, 1); 1848 if (ppsratecheck(&lastfail, &curfail, 1)) { 1849 printf("kern.maxfiles limit exceeded by uid %i, (%s) " 1850 "please see tuning(7).\n", td->td_ucred->cr_ruid, td->td_proc->p_comm); 1851 } 1852 return (ENFILE); 1853 } 1854 fp = uma_zalloc(file_zone, M_WAITOK); 1855 bzero(fp, sizeof(*fp)); 1856 refcount_init(&fp->f_count, 1); 1857 fp->f_cred = crhold(td->td_ucred); 1858 fp->f_ops = &badfileops; 1859 *resultfp = fp; 1860 return (0); 1861 } 1862 1863 /* 1864 * Install a file in a file descriptor table. 1865 */ 1866 void 1867 _finstall(struct filedesc *fdp, struct file *fp, int fd, int flags, 1868 struct filecaps *fcaps) 1869 { 1870 struct filedescent *fde; 1871 1872 MPASS(fp != NULL); 1873 if (fcaps != NULL) 1874 filecaps_validate(fcaps, __func__); 1875 FILEDESC_XLOCK_ASSERT(fdp); 1876 1877 fde = &fdp->fd_ofiles[fd]; 1878 #ifdef CAPABILITIES 1879 seq_write_begin(&fde->fde_seq); 1880 #endif 1881 fde->fde_file = fp; 1882 fde->fde_flags = (flags & O_CLOEXEC) != 0 ? UF_EXCLOSE : 0; 1883 if (fcaps != NULL) 1884 filecaps_move(fcaps, &fde->fde_caps); 1885 else 1886 filecaps_fill(&fde->fde_caps); 1887 #ifdef CAPABILITIES 1888 seq_write_end(&fde->fde_seq); 1889 #endif 1890 } 1891 1892 int 1893 finstall(struct thread *td, struct file *fp, int *fd, int flags, 1894 struct filecaps *fcaps) 1895 { 1896 struct filedesc *fdp = td->td_proc->p_fd; 1897 int error; 1898 1899 MPASS(fd != NULL); 1900 1901 FILEDESC_XLOCK(fdp); 1902 if ((error = fdalloc(td, 0, fd))) { 1903 FILEDESC_XUNLOCK(fdp); 1904 return (error); 1905 } 1906 fhold(fp); 1907 _finstall(fdp, fp, *fd, flags, fcaps); 1908 FILEDESC_XUNLOCK(fdp); 1909 return (0); 1910 } 1911 1912 /* 1913 * Build a new filedesc structure from another. 1914 * Copy the current, root, and jail root vnode references. 1915 * 1916 * If fdp is not NULL, return with it shared locked. 1917 */ 1918 struct filedesc * 1919 fdinit(struct filedesc *fdp, bool prepfiles) 1920 { 1921 struct filedesc0 *newfdp0; 1922 struct filedesc *newfdp; 1923 1924 newfdp0 = uma_zalloc(filedesc0_zone, M_WAITOK | M_ZERO); 1925 newfdp = &newfdp0->fd_fd; 1926 1927 /* Create the file descriptor table. */ 1928 FILEDESC_LOCK_INIT(newfdp); 1929 refcount_init(&newfdp->fd_refcnt, 1); 1930 refcount_init(&newfdp->fd_holdcnt, 1); 1931 newfdp->fd_cmask = CMASK; 1932 newfdp->fd_map = newfdp0->fd_dmap; 1933 newfdp->fd_lastfile = -1; 1934 newfdp->fd_files = (struct fdescenttbl *)&newfdp0->fd_dfiles; 1935 newfdp->fd_files->fdt_nfiles = NDFILE; 1936 1937 if (fdp == NULL) 1938 return (newfdp); 1939 1940 if (prepfiles && fdp->fd_lastfile >= newfdp->fd_nfiles) 1941 fdgrowtable(newfdp, fdp->fd_lastfile + 1); 1942 1943 FILEDESC_SLOCK(fdp); 1944 newfdp->fd_cdir = fdp->fd_cdir; 1945 if (newfdp->fd_cdir) 1946 vrefact(newfdp->fd_cdir); 1947 newfdp->fd_rdir = fdp->fd_rdir; 1948 if (newfdp->fd_rdir) 1949 vrefact(newfdp->fd_rdir); 1950 newfdp->fd_jdir = fdp->fd_jdir; 1951 if (newfdp->fd_jdir) 1952 vrefact(newfdp->fd_jdir); 1953 1954 if (!prepfiles) { 1955 FILEDESC_SUNLOCK(fdp); 1956 } else { 1957 while (fdp->fd_lastfile >= newfdp->fd_nfiles) { 1958 FILEDESC_SUNLOCK(fdp); 1959 fdgrowtable(newfdp, fdp->fd_lastfile + 1); 1960 FILEDESC_SLOCK(fdp); 1961 } 1962 } 1963 1964 return (newfdp); 1965 } 1966 1967 static struct filedesc * 1968 fdhold(struct proc *p) 1969 { 1970 struct filedesc *fdp; 1971 1972 PROC_LOCK_ASSERT(p, MA_OWNED); 1973 fdp = p->p_fd; 1974 if (fdp != NULL) 1975 refcount_acquire(&fdp->fd_holdcnt); 1976 return (fdp); 1977 } 1978 1979 static void 1980 fddrop(struct filedesc *fdp) 1981 { 1982 1983 if (fdp->fd_holdcnt > 1) { 1984 if (refcount_release(&fdp->fd_holdcnt) == 0) 1985 return; 1986 } 1987 1988 FILEDESC_LOCK_DESTROY(fdp); 1989 uma_zfree(filedesc0_zone, fdp); 1990 } 1991 1992 /* 1993 * Share a filedesc structure. 1994 */ 1995 struct filedesc * 1996 fdshare(struct filedesc *fdp) 1997 { 1998 1999 refcount_acquire(&fdp->fd_refcnt); 2000 return (fdp); 2001 } 2002 2003 /* 2004 * Unshare a filedesc structure, if necessary by making a copy 2005 */ 2006 void 2007 fdunshare(struct thread *td) 2008 { 2009 struct filedesc *tmp; 2010 struct proc *p = td->td_proc; 2011 2012 if (p->p_fd->fd_refcnt == 1) 2013 return; 2014 2015 tmp = fdcopy(p->p_fd); 2016 fdescfree(td); 2017 p->p_fd = tmp; 2018 } 2019 2020 void 2021 fdinstall_remapped(struct thread *td, struct filedesc *fdp) 2022 { 2023 2024 fdescfree(td); 2025 td->td_proc->p_fd = fdp; 2026 } 2027 2028 /* 2029 * Copy a filedesc structure. A NULL pointer in returns a NULL reference, 2030 * this is to ease callers, not catch errors. 2031 */ 2032 struct filedesc * 2033 fdcopy(struct filedesc *fdp) 2034 { 2035 struct filedesc *newfdp; 2036 struct filedescent *nfde, *ofde; 2037 int i; 2038 2039 MPASS(fdp != NULL); 2040 2041 newfdp = fdinit(fdp, true); 2042 /* copy all passable descriptors (i.e. not kqueue) */ 2043 newfdp->fd_freefile = -1; 2044 for (i = 0; i <= fdp->fd_lastfile; ++i) { 2045 ofde = &fdp->fd_ofiles[i]; 2046 if (ofde->fde_file == NULL || 2047 (ofde->fde_file->f_ops->fo_flags & DFLAG_PASSABLE) == 0) { 2048 if (newfdp->fd_freefile == -1) 2049 newfdp->fd_freefile = i; 2050 continue; 2051 } 2052 nfde = &newfdp->fd_ofiles[i]; 2053 *nfde = *ofde; 2054 filecaps_copy(&ofde->fde_caps, &nfde->fde_caps, true); 2055 fhold(nfde->fde_file); 2056 fdused_init(newfdp, i); 2057 newfdp->fd_lastfile = i; 2058 } 2059 if (newfdp->fd_freefile == -1) 2060 newfdp->fd_freefile = i; 2061 newfdp->fd_cmask = fdp->fd_cmask; 2062 FILEDESC_SUNLOCK(fdp); 2063 return (newfdp); 2064 } 2065 2066 /* 2067 * Copies a filedesc structure, while remapping all file descriptors 2068 * stored inside using a translation table. 2069 * 2070 * File descriptors are copied over to the new file descriptor table, 2071 * regardless of whether the close-on-exec flag is set. 2072 */ 2073 int 2074 fdcopy_remapped(struct filedesc *fdp, const int *fds, size_t nfds, 2075 struct filedesc **ret) 2076 { 2077 struct filedesc *newfdp; 2078 struct filedescent *nfde, *ofde; 2079 int error, i; 2080 2081 MPASS(fdp != NULL); 2082 2083 newfdp = fdinit(fdp, true); 2084 if (nfds > fdp->fd_lastfile + 1) { 2085 /* New table cannot be larger than the old one. */ 2086 error = E2BIG; 2087 goto bad; 2088 } 2089 /* Copy all passable descriptors (i.e. not kqueue). */ 2090 newfdp->fd_freefile = nfds; 2091 for (i = 0; i < nfds; ++i) { 2092 if (fds[i] < 0 || fds[i] > fdp->fd_lastfile) { 2093 /* File descriptor out of bounds. */ 2094 error = EBADF; 2095 goto bad; 2096 } 2097 ofde = &fdp->fd_ofiles[fds[i]]; 2098 if (ofde->fde_file == NULL) { 2099 /* Unused file descriptor. */ 2100 error = EBADF; 2101 goto bad; 2102 } 2103 if ((ofde->fde_file->f_ops->fo_flags & DFLAG_PASSABLE) == 0) { 2104 /* File descriptor cannot be passed. */ 2105 error = EINVAL; 2106 goto bad; 2107 } 2108 nfde = &newfdp->fd_ofiles[i]; 2109 *nfde = *ofde; 2110 filecaps_copy(&ofde->fde_caps, &nfde->fde_caps, true); 2111 fhold(nfde->fde_file); 2112 fdused_init(newfdp, i); 2113 newfdp->fd_lastfile = i; 2114 } 2115 newfdp->fd_cmask = fdp->fd_cmask; 2116 FILEDESC_SUNLOCK(fdp); 2117 *ret = newfdp; 2118 return (0); 2119 bad: 2120 FILEDESC_SUNLOCK(fdp); 2121 fdescfree_remapped(newfdp); 2122 return (error); 2123 } 2124 2125 /* 2126 * Clear POSIX style locks. This is only used when fdp looses a reference (i.e. 2127 * one of processes using it exits) and the table used to be shared. 2128 */ 2129 static void 2130 fdclearlocks(struct thread *td) 2131 { 2132 struct filedesc *fdp; 2133 struct filedesc_to_leader *fdtol; 2134 struct flock lf; 2135 struct file *fp; 2136 struct proc *p; 2137 struct vnode *vp; 2138 int i; 2139 2140 p = td->td_proc; 2141 fdp = p->p_fd; 2142 fdtol = p->p_fdtol; 2143 MPASS(fdtol != NULL); 2144 2145 FILEDESC_XLOCK(fdp); 2146 KASSERT(fdtol->fdl_refcount > 0, 2147 ("filedesc_to_refcount botch: fdl_refcount=%d", 2148 fdtol->fdl_refcount)); 2149 if (fdtol->fdl_refcount == 1 && 2150 (p->p_leader->p_flag & P_ADVLOCK) != 0) { 2151 for (i = 0; i <= fdp->fd_lastfile; i++) { 2152 fp = fdp->fd_ofiles[i].fde_file; 2153 if (fp == NULL || fp->f_type != DTYPE_VNODE) 2154 continue; 2155 fhold(fp); 2156 FILEDESC_XUNLOCK(fdp); 2157 lf.l_whence = SEEK_SET; 2158 lf.l_start = 0; 2159 lf.l_len = 0; 2160 lf.l_type = F_UNLCK; 2161 vp = fp->f_vnode; 2162 (void) VOP_ADVLOCK(vp, 2163 (caddr_t)p->p_leader, F_UNLCK, 2164 &lf, F_POSIX); 2165 FILEDESC_XLOCK(fdp); 2166 fdrop(fp, td); 2167 } 2168 } 2169 retry: 2170 if (fdtol->fdl_refcount == 1) { 2171 if (fdp->fd_holdleaderscount > 0 && 2172 (p->p_leader->p_flag & P_ADVLOCK) != 0) { 2173 /* 2174 * close() or kern_dup() has cleared a reference 2175 * in a shared file descriptor table. 2176 */ 2177 fdp->fd_holdleaderswakeup = 1; 2178 sx_sleep(&fdp->fd_holdleaderscount, 2179 FILEDESC_LOCK(fdp), PLOCK, "fdlhold", 0); 2180 goto retry; 2181 } 2182 if (fdtol->fdl_holdcount > 0) { 2183 /* 2184 * Ensure that fdtol->fdl_leader remains 2185 * valid in closef(). 2186 */ 2187 fdtol->fdl_wakeup = 1; 2188 sx_sleep(fdtol, FILEDESC_LOCK(fdp), PLOCK, 2189 "fdlhold", 0); 2190 goto retry; 2191 } 2192 } 2193 fdtol->fdl_refcount--; 2194 if (fdtol->fdl_refcount == 0 && 2195 fdtol->fdl_holdcount == 0) { 2196 fdtol->fdl_next->fdl_prev = fdtol->fdl_prev; 2197 fdtol->fdl_prev->fdl_next = fdtol->fdl_next; 2198 } else 2199 fdtol = NULL; 2200 p->p_fdtol = NULL; 2201 FILEDESC_XUNLOCK(fdp); 2202 if (fdtol != NULL) 2203 free(fdtol, M_FILEDESC_TO_LEADER); 2204 } 2205 2206 /* 2207 * Release a filedesc structure. 2208 */ 2209 static void 2210 fdescfree_fds(struct thread *td, struct filedesc *fdp, bool needclose) 2211 { 2212 struct filedesc0 *fdp0; 2213 struct freetable *ft, *tft; 2214 struct filedescent *fde; 2215 struct file *fp; 2216 int i; 2217 2218 for (i = 0; i <= fdp->fd_lastfile; i++) { 2219 fde = &fdp->fd_ofiles[i]; 2220 fp = fde->fde_file; 2221 if (fp != NULL) { 2222 fdefree_last(fde); 2223 if (needclose) 2224 (void) closef(fp, td); 2225 else 2226 fdrop(fp, td); 2227 } 2228 } 2229 2230 if (NDSLOTS(fdp->fd_nfiles) > NDSLOTS(NDFILE)) 2231 free(fdp->fd_map, M_FILEDESC); 2232 if (fdp->fd_nfiles > NDFILE) 2233 free(fdp->fd_files, M_FILEDESC); 2234 2235 fdp0 = (struct filedesc0 *)fdp; 2236 SLIST_FOREACH_SAFE(ft, &fdp0->fd_free, ft_next, tft) 2237 free(ft->ft_table, M_FILEDESC); 2238 2239 fddrop(fdp); 2240 } 2241 2242 void 2243 fdescfree(struct thread *td) 2244 { 2245 struct proc *p; 2246 struct filedesc *fdp; 2247 struct vnode *cdir, *jdir, *rdir; 2248 2249 p = td->td_proc; 2250 fdp = p->p_fd; 2251 MPASS(fdp != NULL); 2252 2253 #ifdef RACCT 2254 if (RACCT_ENABLED()) 2255 racct_set_unlocked(p, RACCT_NOFILE, 0); 2256 #endif 2257 2258 if (p->p_fdtol != NULL) 2259 fdclearlocks(td); 2260 2261 PROC_LOCK(p); 2262 p->p_fd = NULL; 2263 PROC_UNLOCK(p); 2264 2265 if (refcount_release(&fdp->fd_refcnt) == 0) 2266 return; 2267 2268 FILEDESC_XLOCK(fdp); 2269 cdir = fdp->fd_cdir; 2270 fdp->fd_cdir = NULL; 2271 rdir = fdp->fd_rdir; 2272 fdp->fd_rdir = NULL; 2273 jdir = fdp->fd_jdir; 2274 fdp->fd_jdir = NULL; 2275 FILEDESC_XUNLOCK(fdp); 2276 2277 if (cdir != NULL) 2278 vrele(cdir); 2279 if (rdir != NULL) 2280 vrele(rdir); 2281 if (jdir != NULL) 2282 vrele(jdir); 2283 2284 fdescfree_fds(td, fdp, 1); 2285 } 2286 2287 void 2288 fdescfree_remapped(struct filedesc *fdp) 2289 { 2290 2291 if (fdp->fd_cdir != NULL) 2292 vrele(fdp->fd_cdir); 2293 if (fdp->fd_rdir != NULL) 2294 vrele(fdp->fd_rdir); 2295 if (fdp->fd_jdir != NULL) 2296 vrele(fdp->fd_jdir); 2297 2298 fdescfree_fds(curthread, fdp, 0); 2299 } 2300 2301 /* 2302 * For setugid programs, we don't want to people to use that setugidness 2303 * to generate error messages which write to a file which otherwise would 2304 * otherwise be off-limits to the process. We check for filesystems where 2305 * the vnode can change out from under us after execve (like [lin]procfs). 2306 * 2307 * Since fdsetugidsafety calls this only for fd 0, 1 and 2, this check is 2308 * sufficient. We also don't check for setugidness since we know we are. 2309 */ 2310 static bool 2311 is_unsafe(struct file *fp) 2312 { 2313 struct vnode *vp; 2314 2315 if (fp->f_type != DTYPE_VNODE) 2316 return (false); 2317 2318 vp = fp->f_vnode; 2319 return ((vp->v_vflag & VV_PROCDEP) != 0); 2320 } 2321 2322 /* 2323 * Make this setguid thing safe, if at all possible. 2324 */ 2325 void 2326 fdsetugidsafety(struct thread *td) 2327 { 2328 struct filedesc *fdp; 2329 struct file *fp; 2330 int i; 2331 2332 fdp = td->td_proc->p_fd; 2333 KASSERT(fdp->fd_refcnt == 1, ("the fdtable should not be shared")); 2334 MPASS(fdp->fd_nfiles >= 3); 2335 for (i = 0; i <= 2; i++) { 2336 fp = fdp->fd_ofiles[i].fde_file; 2337 if (fp != NULL && is_unsafe(fp)) { 2338 FILEDESC_XLOCK(fdp); 2339 knote_fdclose(td, i); 2340 /* 2341 * NULL-out descriptor prior to close to avoid 2342 * a race while close blocks. 2343 */ 2344 fdfree(fdp, i); 2345 FILEDESC_XUNLOCK(fdp); 2346 (void) closef(fp, td); 2347 } 2348 } 2349 } 2350 2351 /* 2352 * If a specific file object occupies a specific file descriptor, close the 2353 * file descriptor entry and drop a reference on the file object. This is a 2354 * convenience function to handle a subsequent error in a function that calls 2355 * falloc() that handles the race that another thread might have closed the 2356 * file descriptor out from under the thread creating the file object. 2357 */ 2358 void 2359 fdclose(struct thread *td, struct file *fp, int idx) 2360 { 2361 struct filedesc *fdp = td->td_proc->p_fd; 2362 2363 FILEDESC_XLOCK(fdp); 2364 if (fdp->fd_ofiles[idx].fde_file == fp) { 2365 fdfree(fdp, idx); 2366 FILEDESC_XUNLOCK(fdp); 2367 fdrop(fp, td); 2368 } else 2369 FILEDESC_XUNLOCK(fdp); 2370 } 2371 2372 /* 2373 * Close any files on exec? 2374 */ 2375 void 2376 fdcloseexec(struct thread *td) 2377 { 2378 struct filedesc *fdp; 2379 struct filedescent *fde; 2380 struct file *fp; 2381 int i; 2382 2383 fdp = td->td_proc->p_fd; 2384 KASSERT(fdp->fd_refcnt == 1, ("the fdtable should not be shared")); 2385 for (i = 0; i <= fdp->fd_lastfile; i++) { 2386 fde = &fdp->fd_ofiles[i]; 2387 fp = fde->fde_file; 2388 if (fp != NULL && (fp->f_type == DTYPE_MQUEUE || 2389 (fde->fde_flags & UF_EXCLOSE))) { 2390 FILEDESC_XLOCK(fdp); 2391 fdfree(fdp, i); 2392 (void) closefp(fdp, i, fp, td, 0); 2393 FILEDESC_UNLOCK_ASSERT(fdp); 2394 } 2395 } 2396 } 2397 2398 /* 2399 * It is unsafe for set[ug]id processes to be started with file 2400 * descriptors 0..2 closed, as these descriptors are given implicit 2401 * significance in the Standard C library. fdcheckstd() will create a 2402 * descriptor referencing /dev/null for each of stdin, stdout, and 2403 * stderr that is not already open. 2404 */ 2405 int 2406 fdcheckstd(struct thread *td) 2407 { 2408 struct filedesc *fdp; 2409 register_t save; 2410 int i, error, devnull; 2411 2412 fdp = td->td_proc->p_fd; 2413 KASSERT(fdp->fd_refcnt == 1, ("the fdtable should not be shared")); 2414 MPASS(fdp->fd_nfiles >= 3); 2415 devnull = -1; 2416 for (i = 0; i <= 2; i++) { 2417 if (fdp->fd_ofiles[i].fde_file != NULL) 2418 continue; 2419 2420 save = td->td_retval[0]; 2421 if (devnull != -1) { 2422 error = kern_dup(td, FDDUP_FIXED, 0, devnull, i); 2423 } else { 2424 error = kern_openat(td, AT_FDCWD, "/dev/null", 2425 UIO_SYSSPACE, O_RDWR, 0); 2426 if (error == 0) { 2427 devnull = td->td_retval[0]; 2428 KASSERT(devnull == i, ("we didn't get our fd")); 2429 } 2430 } 2431 td->td_retval[0] = save; 2432 if (error != 0) 2433 return (error); 2434 } 2435 return (0); 2436 } 2437 2438 /* 2439 * Internal form of close. Decrement reference count on file structure. 2440 * Note: td may be NULL when closing a file that was being passed in a 2441 * message. 2442 * 2443 * XXXRW: Giant is not required for the caller, but often will be held; this 2444 * makes it moderately likely the Giant will be recursed in the VFS case. 2445 */ 2446 int 2447 closef(struct file *fp, struct thread *td) 2448 { 2449 struct vnode *vp; 2450 struct flock lf; 2451 struct filedesc_to_leader *fdtol; 2452 struct filedesc *fdp; 2453 2454 /* 2455 * POSIX record locking dictates that any close releases ALL 2456 * locks owned by this process. This is handled by setting 2457 * a flag in the unlock to free ONLY locks obeying POSIX 2458 * semantics, and not to free BSD-style file locks. 2459 * If the descriptor was in a message, POSIX-style locks 2460 * aren't passed with the descriptor, and the thread pointer 2461 * will be NULL. Callers should be careful only to pass a 2462 * NULL thread pointer when there really is no owning 2463 * context that might have locks, or the locks will be 2464 * leaked. 2465 */ 2466 if (fp->f_type == DTYPE_VNODE && td != NULL) { 2467 vp = fp->f_vnode; 2468 if ((td->td_proc->p_leader->p_flag & P_ADVLOCK) != 0) { 2469 lf.l_whence = SEEK_SET; 2470 lf.l_start = 0; 2471 lf.l_len = 0; 2472 lf.l_type = F_UNLCK; 2473 (void) VOP_ADVLOCK(vp, (caddr_t)td->td_proc->p_leader, 2474 F_UNLCK, &lf, F_POSIX); 2475 } 2476 fdtol = td->td_proc->p_fdtol; 2477 if (fdtol != NULL) { 2478 /* 2479 * Handle special case where file descriptor table is 2480 * shared between multiple process leaders. 2481 */ 2482 fdp = td->td_proc->p_fd; 2483 FILEDESC_XLOCK(fdp); 2484 for (fdtol = fdtol->fdl_next; 2485 fdtol != td->td_proc->p_fdtol; 2486 fdtol = fdtol->fdl_next) { 2487 if ((fdtol->fdl_leader->p_flag & 2488 P_ADVLOCK) == 0) 2489 continue; 2490 fdtol->fdl_holdcount++; 2491 FILEDESC_XUNLOCK(fdp); 2492 lf.l_whence = SEEK_SET; 2493 lf.l_start = 0; 2494 lf.l_len = 0; 2495 lf.l_type = F_UNLCK; 2496 vp = fp->f_vnode; 2497 (void) VOP_ADVLOCK(vp, 2498 (caddr_t)fdtol->fdl_leader, F_UNLCK, &lf, 2499 F_POSIX); 2500 FILEDESC_XLOCK(fdp); 2501 fdtol->fdl_holdcount--; 2502 if (fdtol->fdl_holdcount == 0 && 2503 fdtol->fdl_wakeup != 0) { 2504 fdtol->fdl_wakeup = 0; 2505 wakeup(fdtol); 2506 } 2507 } 2508 FILEDESC_XUNLOCK(fdp); 2509 } 2510 } 2511 return (fdrop(fp, td)); 2512 } 2513 2514 /* 2515 * Initialize the file pointer with the specified properties. 2516 * 2517 * The ops are set with release semantics to be certain that the flags, type, 2518 * and data are visible when ops is. This is to prevent ops methods from being 2519 * called with bad data. 2520 */ 2521 void 2522 finit(struct file *fp, u_int flag, short type, void *data, struct fileops *ops) 2523 { 2524 fp->f_data = data; 2525 fp->f_flag = flag; 2526 fp->f_type = type; 2527 atomic_store_rel_ptr((volatile uintptr_t *)&fp->f_ops, (uintptr_t)ops); 2528 } 2529 2530 int 2531 fget_cap_locked(struct filedesc *fdp, int fd, cap_rights_t *needrightsp, 2532 struct file **fpp, struct filecaps *havecapsp) 2533 { 2534 struct filedescent *fde; 2535 int error; 2536 2537 FILEDESC_LOCK_ASSERT(fdp); 2538 2539 fde = fdeget_locked(fdp, fd); 2540 if (fde == NULL) { 2541 error = EBADF; 2542 goto out; 2543 } 2544 2545 #ifdef CAPABILITIES 2546 error = cap_check(cap_rights_fde_inline(fde), needrightsp); 2547 if (error != 0) 2548 goto out; 2549 #endif 2550 2551 if (havecapsp != NULL) 2552 filecaps_copy(&fde->fde_caps, havecapsp, true); 2553 2554 *fpp = fde->fde_file; 2555 2556 error = 0; 2557 out: 2558 return (error); 2559 } 2560 2561 int 2562 fget_cap(struct thread *td, int fd, cap_rights_t *needrightsp, 2563 struct file **fpp, struct filecaps *havecapsp) 2564 { 2565 struct filedesc *fdp = td->td_proc->p_fd; 2566 int error; 2567 #ifndef CAPABILITIES 2568 error = fget_unlocked(fdp, fd, needrightsp, fpp, NULL); 2569 if (error == 0 && havecapsp != NULL) 2570 filecaps_fill(havecapsp); 2571 #else 2572 struct file *fp; 2573 seq_t seq; 2574 2575 for (;;) { 2576 error = fget_unlocked(fdp, fd, needrightsp, &fp, &seq); 2577 if (error != 0) 2578 return (error); 2579 2580 if (havecapsp != NULL) { 2581 if (!filecaps_copy(&fdp->fd_ofiles[fd].fde_caps, 2582 havecapsp, false)) { 2583 fdrop(fp, td); 2584 goto get_locked; 2585 } 2586 } 2587 2588 if (!fd_modified(fdp, fd, seq)) 2589 break; 2590 fdrop(fp, td); 2591 } 2592 2593 *fpp = fp; 2594 return (0); 2595 2596 get_locked: 2597 FILEDESC_SLOCK(fdp); 2598 error = fget_cap_locked(fdp, fd, needrightsp, fpp, havecapsp); 2599 if (error == 0) 2600 fhold(*fpp); 2601 FILEDESC_SUNLOCK(fdp); 2602 #endif 2603 return (error); 2604 } 2605 2606 int 2607 fget_unlocked(struct filedesc *fdp, int fd, cap_rights_t *needrightsp, 2608 struct file **fpp, seq_t *seqp) 2609 { 2610 #ifdef CAPABILITIES 2611 const struct filedescent *fde; 2612 #endif 2613 const struct fdescenttbl *fdt; 2614 struct file *fp; 2615 u_int count; 2616 #ifdef CAPABILITIES 2617 seq_t seq; 2618 cap_rights_t haverights; 2619 int error; 2620 #endif 2621 2622 fdt = fdp->fd_files; 2623 if (__predict_false((u_int)fd >= fdt->fdt_nfiles)) 2624 return (EBADF); 2625 /* 2626 * Fetch the descriptor locklessly. We avoid fdrop() races by 2627 * never raising a refcount above 0. To accomplish this we have 2628 * to use a cmpset loop rather than an atomic_add. The descriptor 2629 * must be re-verified once we acquire a reference to be certain 2630 * that the identity is still correct and we did not lose a race 2631 * due to preemption. 2632 */ 2633 for (;;) { 2634 #ifdef CAPABILITIES 2635 seq = seq_read(fd_seq(fdt, fd)); 2636 fde = &fdt->fdt_ofiles[fd]; 2637 haverights = *cap_rights_fde_inline(fde); 2638 fp = fde->fde_file; 2639 if (!seq_consistent(fd_seq(fdt, fd), seq)) 2640 continue; 2641 #else 2642 fp = fdt->fdt_ofiles[fd].fde_file; 2643 #endif 2644 if (fp == NULL) 2645 return (EBADF); 2646 #ifdef CAPABILITIES 2647 error = cap_check(&haverights, needrightsp); 2648 if (error != 0) 2649 return (error); 2650 #endif 2651 count = fp->f_count; 2652 retry: 2653 if (count == 0) { 2654 /* 2655 * Force a reload. Other thread could reallocate the 2656 * table before this fd was closed, so it possible that 2657 * there is a stale fp pointer in cached version. 2658 */ 2659 fdt = *(const struct fdescenttbl * const volatile *)&(fdp->fd_files); 2660 continue; 2661 } 2662 /* 2663 * Use an acquire barrier to force re-reading of fdt so it is 2664 * refreshed for verification. 2665 */ 2666 if (atomic_fcmpset_acq_int(&fp->f_count, &count, count + 1) == 0) 2667 goto retry; 2668 fdt = fdp->fd_files; 2669 #ifdef CAPABILITIES 2670 if (seq_consistent_nomb(fd_seq(fdt, fd), seq)) 2671 #else 2672 if (fp == fdt->fdt_ofiles[fd].fde_file) 2673 #endif 2674 break; 2675 fdrop(fp, curthread); 2676 } 2677 *fpp = fp; 2678 if (seqp != NULL) { 2679 #ifdef CAPABILITIES 2680 *seqp = seq; 2681 #endif 2682 } 2683 return (0); 2684 } 2685 2686 /* 2687 * Extract the file pointer associated with the specified descriptor for the 2688 * current user process. 2689 * 2690 * If the descriptor doesn't exist or doesn't match 'flags', EBADF is 2691 * returned. 2692 * 2693 * File's rights will be checked against the capability rights mask. 2694 * 2695 * If an error occurred the non-zero error is returned and *fpp is set to 2696 * NULL. Otherwise *fpp is held and set and zero is returned. Caller is 2697 * responsible for fdrop(). 2698 */ 2699 static __inline int 2700 _fget(struct thread *td, int fd, struct file **fpp, int flags, 2701 cap_rights_t *needrightsp, seq_t *seqp) 2702 { 2703 struct filedesc *fdp; 2704 struct file *fp; 2705 int error; 2706 2707 *fpp = NULL; 2708 fdp = td->td_proc->p_fd; 2709 error = fget_unlocked(fdp, fd, needrightsp, &fp, seqp); 2710 if (error != 0) 2711 return (error); 2712 if (fp->f_ops == &badfileops) { 2713 fdrop(fp, td); 2714 return (EBADF); 2715 } 2716 2717 /* 2718 * FREAD and FWRITE failure return EBADF as per POSIX. 2719 */ 2720 error = 0; 2721 switch (flags) { 2722 case FREAD: 2723 case FWRITE: 2724 if ((fp->f_flag & flags) == 0) 2725 error = EBADF; 2726 break; 2727 case FEXEC: 2728 if ((fp->f_flag & (FREAD | FEXEC)) == 0 || 2729 ((fp->f_flag & FWRITE) != 0)) 2730 error = EBADF; 2731 break; 2732 case 0: 2733 break; 2734 default: 2735 KASSERT(0, ("wrong flags")); 2736 } 2737 2738 if (error != 0) { 2739 fdrop(fp, td); 2740 return (error); 2741 } 2742 2743 *fpp = fp; 2744 return (0); 2745 } 2746 2747 int 2748 fget(struct thread *td, int fd, cap_rights_t *rightsp, struct file **fpp) 2749 { 2750 2751 return (_fget(td, fd, fpp, 0, rightsp, NULL)); 2752 } 2753 2754 int 2755 fget_mmap(struct thread *td, int fd, cap_rights_t *rightsp, u_char *maxprotp, 2756 struct file **fpp) 2757 { 2758 int error; 2759 #ifndef CAPABILITIES 2760 error = _fget(td, fd, fpp, 0, rightsp, NULL); 2761 if (maxprotp != NULL) 2762 *maxprotp = VM_PROT_ALL; 2763 #else 2764 struct filedesc *fdp = td->td_proc->p_fd; 2765 seq_t seq; 2766 2767 MPASS(cap_rights_is_set(rightsp, CAP_MMAP)); 2768 for (;;) { 2769 error = _fget(td, fd, fpp, 0, rightsp, &seq); 2770 if (error != 0) 2771 return (error); 2772 /* 2773 * If requested, convert capability rights to access flags. 2774 */ 2775 if (maxprotp != NULL) 2776 *maxprotp = cap_rights_to_vmprot(cap_rights(fdp, fd)); 2777 if (!fd_modified(fdp, fd, seq)) 2778 break; 2779 fdrop(*fpp, td); 2780 } 2781 #endif 2782 return (error); 2783 } 2784 2785 int 2786 fget_read(struct thread *td, int fd, cap_rights_t *rightsp, struct file **fpp) 2787 { 2788 2789 return (_fget(td, fd, fpp, FREAD, rightsp, NULL)); 2790 } 2791 2792 int 2793 fget_write(struct thread *td, int fd, cap_rights_t *rightsp, struct file **fpp) 2794 { 2795 2796 return (_fget(td, fd, fpp, FWRITE, rightsp, NULL)); 2797 } 2798 2799 int 2800 fget_fcntl(struct thread *td, int fd, cap_rights_t *rightsp, int needfcntl, 2801 struct file **fpp) 2802 { 2803 struct filedesc *fdp = td->td_proc->p_fd; 2804 #ifndef CAPABILITIES 2805 return (fget_unlocked(fdp, fd, rightsp, fpp, NULL)); 2806 #else 2807 int error; 2808 seq_t seq; 2809 2810 MPASS(cap_rights_is_set(rightsp, CAP_FCNTL)); 2811 for (;;) { 2812 error = fget_unlocked(fdp, fd, rightsp, fpp, &seq); 2813 if (error != 0) 2814 return (error); 2815 error = cap_fcntl_check(fdp, fd, needfcntl); 2816 if (!fd_modified(fdp, fd, seq)) 2817 break; 2818 fdrop(*fpp, td); 2819 } 2820 if (error != 0) { 2821 fdrop(*fpp, td); 2822 *fpp = NULL; 2823 } 2824 return (error); 2825 #endif 2826 } 2827 2828 /* 2829 * Like fget() but loads the underlying vnode, or returns an error if the 2830 * descriptor does not represent a vnode. Note that pipes use vnodes but 2831 * never have VM objects. The returned vnode will be vref()'d. 2832 * 2833 * XXX: what about the unused flags ? 2834 */ 2835 static __inline int 2836 _fgetvp(struct thread *td, int fd, int flags, cap_rights_t *needrightsp, 2837 struct vnode **vpp) 2838 { 2839 struct file *fp; 2840 int error; 2841 2842 *vpp = NULL; 2843 error = _fget(td, fd, &fp, flags, needrightsp, NULL); 2844 if (error != 0) 2845 return (error); 2846 if (fp->f_vnode == NULL) { 2847 error = EINVAL; 2848 } else { 2849 *vpp = fp->f_vnode; 2850 vrefact(*vpp); 2851 } 2852 fdrop(fp, td); 2853 2854 return (error); 2855 } 2856 2857 int 2858 fgetvp(struct thread *td, int fd, cap_rights_t *rightsp, struct vnode **vpp) 2859 { 2860 2861 return (_fgetvp(td, fd, 0, rightsp, vpp)); 2862 } 2863 2864 int 2865 fgetvp_rights(struct thread *td, int fd, cap_rights_t *needrightsp, 2866 struct filecaps *havecaps, struct vnode **vpp) 2867 { 2868 struct filedesc *fdp; 2869 struct filecaps caps; 2870 struct file *fp; 2871 int error; 2872 2873 fdp = td->td_proc->p_fd; 2874 error = fget_cap_locked(fdp, fd, needrightsp, &fp, &caps); 2875 if (error != 0) 2876 return (error); 2877 if (fp->f_ops == &badfileops) { 2878 error = EBADF; 2879 goto out; 2880 } 2881 if (fp->f_vnode == NULL) { 2882 error = EINVAL; 2883 goto out; 2884 } 2885 2886 *havecaps = caps; 2887 *vpp = fp->f_vnode; 2888 vrefact(*vpp); 2889 2890 return (0); 2891 out: 2892 filecaps_free(&caps); 2893 return (error); 2894 } 2895 2896 int 2897 fgetvp_read(struct thread *td, int fd, cap_rights_t *rightsp, struct vnode **vpp) 2898 { 2899 2900 return (_fgetvp(td, fd, FREAD, rightsp, vpp)); 2901 } 2902 2903 int 2904 fgetvp_exec(struct thread *td, int fd, cap_rights_t *rightsp, struct vnode **vpp) 2905 { 2906 2907 return (_fgetvp(td, fd, FEXEC, rightsp, vpp)); 2908 } 2909 2910 #ifdef notyet 2911 int 2912 fgetvp_write(struct thread *td, int fd, cap_rights_t *rightsp, 2913 struct vnode **vpp) 2914 { 2915 2916 return (_fgetvp(td, fd, FWRITE, rightsp, vpp)); 2917 } 2918 #endif 2919 2920 /* 2921 * Handle the last reference to a file being closed. 2922 * 2923 * Without the noinline attribute clang keeps inlining the func thorough this 2924 * file when fdrop is used. 2925 */ 2926 int __noinline 2927 _fdrop(struct file *fp, struct thread *td) 2928 { 2929 int error; 2930 2931 if (fp->f_count != 0) 2932 panic("fdrop: count %d", fp->f_count); 2933 error = fo_close(fp, td); 2934 atomic_subtract_int(&openfiles, 1); 2935 crfree(fp->f_cred); 2936 free(fp->f_advice, M_FADVISE); 2937 uma_zfree(file_zone, fp); 2938 2939 return (error); 2940 } 2941 2942 /* 2943 * Apply an advisory lock on a file descriptor. 2944 * 2945 * Just attempt to get a record lock of the requested type on the entire file 2946 * (l_whence = SEEK_SET, l_start = 0, l_len = 0). 2947 */ 2948 #ifndef _SYS_SYSPROTO_H_ 2949 struct flock_args { 2950 int fd; 2951 int how; 2952 }; 2953 #endif 2954 /* ARGSUSED */ 2955 int 2956 sys_flock(struct thread *td, struct flock_args *uap) 2957 { 2958 struct file *fp; 2959 struct vnode *vp; 2960 struct flock lf; 2961 int error; 2962 2963 error = fget(td, uap->fd, &cap_flock_rights, &fp); 2964 if (error != 0) 2965 return (error); 2966 if (fp->f_type != DTYPE_VNODE) { 2967 fdrop(fp, td); 2968 return (EOPNOTSUPP); 2969 } 2970 2971 vp = fp->f_vnode; 2972 lf.l_whence = SEEK_SET; 2973 lf.l_start = 0; 2974 lf.l_len = 0; 2975 if (uap->how & LOCK_UN) { 2976 lf.l_type = F_UNLCK; 2977 atomic_clear_int(&fp->f_flag, FHASLOCK); 2978 error = VOP_ADVLOCK(vp, (caddr_t)fp, F_UNLCK, &lf, F_FLOCK); 2979 goto done2; 2980 } 2981 if (uap->how & LOCK_EX) 2982 lf.l_type = F_WRLCK; 2983 else if (uap->how & LOCK_SH) 2984 lf.l_type = F_RDLCK; 2985 else { 2986 error = EBADF; 2987 goto done2; 2988 } 2989 atomic_set_int(&fp->f_flag, FHASLOCK); 2990 error = VOP_ADVLOCK(vp, (caddr_t)fp, F_SETLK, &lf, 2991 (uap->how & LOCK_NB) ? F_FLOCK : F_FLOCK | F_WAIT); 2992 done2: 2993 fdrop(fp, td); 2994 return (error); 2995 } 2996 /* 2997 * Duplicate the specified descriptor to a free descriptor. 2998 */ 2999 int 3000 dupfdopen(struct thread *td, struct filedesc *fdp, int dfd, int mode, 3001 int openerror, int *indxp) 3002 { 3003 struct filedescent *newfde, *oldfde; 3004 struct file *fp; 3005 u_long *ioctls; 3006 int error, indx; 3007 3008 KASSERT(openerror == ENODEV || openerror == ENXIO, 3009 ("unexpected error %d in %s", openerror, __func__)); 3010 3011 /* 3012 * If the to-be-dup'd fd number is greater than the allowed number 3013 * of file descriptors, or the fd to be dup'd has already been 3014 * closed, then reject. 3015 */ 3016 FILEDESC_XLOCK(fdp); 3017 if ((fp = fget_locked(fdp, dfd)) == NULL) { 3018 FILEDESC_XUNLOCK(fdp); 3019 return (EBADF); 3020 } 3021 3022 error = fdalloc(td, 0, &indx); 3023 if (error != 0) { 3024 FILEDESC_XUNLOCK(fdp); 3025 return (error); 3026 } 3027 3028 /* 3029 * There are two cases of interest here. 3030 * 3031 * For ENODEV simply dup (dfd) to file descriptor (indx) and return. 3032 * 3033 * For ENXIO steal away the file structure from (dfd) and store it in 3034 * (indx). (dfd) is effectively closed by this operation. 3035 */ 3036 switch (openerror) { 3037 case ENODEV: 3038 /* 3039 * Check that the mode the file is being opened for is a 3040 * subset of the mode of the existing descriptor. 3041 */ 3042 if (((mode & (FREAD|FWRITE)) | fp->f_flag) != fp->f_flag) { 3043 fdunused(fdp, indx); 3044 FILEDESC_XUNLOCK(fdp); 3045 return (EACCES); 3046 } 3047 fhold(fp); 3048 newfde = &fdp->fd_ofiles[indx]; 3049 oldfde = &fdp->fd_ofiles[dfd]; 3050 ioctls = filecaps_copy_prep(&oldfde->fde_caps); 3051 #ifdef CAPABILITIES 3052 seq_write_begin(&newfde->fde_seq); 3053 #endif 3054 memcpy(newfde, oldfde, fde_change_size); 3055 filecaps_copy_finish(&oldfde->fde_caps, &newfde->fde_caps, 3056 ioctls); 3057 #ifdef CAPABILITIES 3058 seq_write_end(&newfde->fde_seq); 3059 #endif 3060 break; 3061 case ENXIO: 3062 /* 3063 * Steal away the file pointer from dfd and stuff it into indx. 3064 */ 3065 newfde = &fdp->fd_ofiles[indx]; 3066 oldfde = &fdp->fd_ofiles[dfd]; 3067 #ifdef CAPABILITIES 3068 seq_write_begin(&newfde->fde_seq); 3069 #endif 3070 memcpy(newfde, oldfde, fde_change_size); 3071 oldfde->fde_file = NULL; 3072 fdunused(fdp, dfd); 3073 #ifdef CAPABILITIES 3074 seq_write_end(&newfde->fde_seq); 3075 #endif 3076 break; 3077 } 3078 FILEDESC_XUNLOCK(fdp); 3079 *indxp = indx; 3080 return (0); 3081 } 3082 3083 /* 3084 * This sysctl determines if we will allow a process to chroot(2) if it 3085 * has a directory open: 3086 * 0: disallowed for all processes. 3087 * 1: allowed for processes that were not already chroot(2)'ed. 3088 * 2: allowed for all processes. 3089 */ 3090 3091 static int chroot_allow_open_directories = 1; 3092 3093 SYSCTL_INT(_kern, OID_AUTO, chroot_allow_open_directories, CTLFLAG_RW, 3094 &chroot_allow_open_directories, 0, 3095 "Allow a process to chroot(2) if it has a directory open"); 3096 3097 /* 3098 * Helper function for raised chroot(2) security function: Refuse if 3099 * any filedescriptors are open directories. 3100 */ 3101 static int 3102 chroot_refuse_vdir_fds(struct filedesc *fdp) 3103 { 3104 struct vnode *vp; 3105 struct file *fp; 3106 int fd; 3107 3108 FILEDESC_LOCK_ASSERT(fdp); 3109 3110 for (fd = 0; fd <= fdp->fd_lastfile; fd++) { 3111 fp = fget_locked(fdp, fd); 3112 if (fp == NULL) 3113 continue; 3114 if (fp->f_type == DTYPE_VNODE) { 3115 vp = fp->f_vnode; 3116 if (vp->v_type == VDIR) 3117 return (EPERM); 3118 } 3119 } 3120 return (0); 3121 } 3122 3123 /* 3124 * Common routine for kern_chroot() and jail_attach(). The caller is 3125 * responsible for invoking priv_check() and mac_vnode_check_chroot() to 3126 * authorize this operation. 3127 */ 3128 int 3129 pwd_chroot(struct thread *td, struct vnode *vp) 3130 { 3131 struct filedesc *fdp; 3132 struct vnode *oldvp; 3133 int error; 3134 3135 fdp = td->td_proc->p_fd; 3136 FILEDESC_XLOCK(fdp); 3137 if (chroot_allow_open_directories == 0 || 3138 (chroot_allow_open_directories == 1 && fdp->fd_rdir != rootvnode)) { 3139 error = chroot_refuse_vdir_fds(fdp); 3140 if (error != 0) { 3141 FILEDESC_XUNLOCK(fdp); 3142 return (error); 3143 } 3144 } 3145 oldvp = fdp->fd_rdir; 3146 vrefact(vp); 3147 fdp->fd_rdir = vp; 3148 if (fdp->fd_jdir == NULL) { 3149 vrefact(vp); 3150 fdp->fd_jdir = vp; 3151 } 3152 FILEDESC_XUNLOCK(fdp); 3153 vrele(oldvp); 3154 return (0); 3155 } 3156 3157 void 3158 pwd_chdir(struct thread *td, struct vnode *vp) 3159 { 3160 struct filedesc *fdp; 3161 struct vnode *oldvp; 3162 3163 fdp = td->td_proc->p_fd; 3164 FILEDESC_XLOCK(fdp); 3165 VNASSERT(vp->v_usecount > 0, vp, 3166 ("chdir to a vnode with zero usecount")); 3167 oldvp = fdp->fd_cdir; 3168 fdp->fd_cdir = vp; 3169 FILEDESC_XUNLOCK(fdp); 3170 vrele(oldvp); 3171 } 3172 3173 /* 3174 * Scan all active processes and prisons to see if any of them have a current 3175 * or root directory of `olddp'. If so, replace them with the new mount point. 3176 */ 3177 void 3178 mountcheckdirs(struct vnode *olddp, struct vnode *newdp) 3179 { 3180 struct filedesc *fdp; 3181 struct prison *pr; 3182 struct proc *p; 3183 int nrele; 3184 3185 if (vrefcnt(olddp) == 1) 3186 return; 3187 nrele = 0; 3188 sx_slock(&allproc_lock); 3189 FOREACH_PROC_IN_SYSTEM(p) { 3190 PROC_LOCK(p); 3191 fdp = fdhold(p); 3192 PROC_UNLOCK(p); 3193 if (fdp == NULL) 3194 continue; 3195 FILEDESC_XLOCK(fdp); 3196 if (fdp->fd_cdir == olddp) { 3197 vrefact(newdp); 3198 fdp->fd_cdir = newdp; 3199 nrele++; 3200 } 3201 if (fdp->fd_rdir == olddp) { 3202 vrefact(newdp); 3203 fdp->fd_rdir = newdp; 3204 nrele++; 3205 } 3206 if (fdp->fd_jdir == olddp) { 3207 vrefact(newdp); 3208 fdp->fd_jdir = newdp; 3209 nrele++; 3210 } 3211 FILEDESC_XUNLOCK(fdp); 3212 fddrop(fdp); 3213 } 3214 sx_sunlock(&allproc_lock); 3215 if (rootvnode == olddp) { 3216 vrefact(newdp); 3217 rootvnode = newdp; 3218 nrele++; 3219 } 3220 mtx_lock(&prison0.pr_mtx); 3221 if (prison0.pr_root == olddp) { 3222 vrefact(newdp); 3223 prison0.pr_root = newdp; 3224 nrele++; 3225 } 3226 mtx_unlock(&prison0.pr_mtx); 3227 sx_slock(&allprison_lock); 3228 TAILQ_FOREACH(pr, &allprison, pr_list) { 3229 mtx_lock(&pr->pr_mtx); 3230 if (pr->pr_root == olddp) { 3231 vrefact(newdp); 3232 pr->pr_root = newdp; 3233 nrele++; 3234 } 3235 mtx_unlock(&pr->pr_mtx); 3236 } 3237 sx_sunlock(&allprison_lock); 3238 while (nrele--) 3239 vrele(olddp); 3240 } 3241 3242 struct filedesc_to_leader * 3243 filedesc_to_leader_alloc(struct filedesc_to_leader *old, struct filedesc *fdp, struct proc *leader) 3244 { 3245 struct filedesc_to_leader *fdtol; 3246 3247 fdtol = malloc(sizeof(struct filedesc_to_leader), 3248 M_FILEDESC_TO_LEADER, M_WAITOK); 3249 fdtol->fdl_refcount = 1; 3250 fdtol->fdl_holdcount = 0; 3251 fdtol->fdl_wakeup = 0; 3252 fdtol->fdl_leader = leader; 3253 if (old != NULL) { 3254 FILEDESC_XLOCK(fdp); 3255 fdtol->fdl_next = old->fdl_next; 3256 fdtol->fdl_prev = old; 3257 old->fdl_next = fdtol; 3258 fdtol->fdl_next->fdl_prev = fdtol; 3259 FILEDESC_XUNLOCK(fdp); 3260 } else { 3261 fdtol->fdl_next = fdtol; 3262 fdtol->fdl_prev = fdtol; 3263 } 3264 return (fdtol); 3265 } 3266 3267 static int 3268 sysctl_kern_proc_nfds(SYSCTL_HANDLER_ARGS) 3269 { 3270 struct filedesc *fdp; 3271 int i, count, slots; 3272 3273 if (*(int *)arg1 != 0) 3274 return (EINVAL); 3275 3276 fdp = curproc->p_fd; 3277 count = 0; 3278 FILEDESC_SLOCK(fdp); 3279 slots = NDSLOTS(fdp->fd_lastfile + 1); 3280 for (i = 0; i < slots; i++) 3281 count += bitcountl(fdp->fd_map[i]); 3282 FILEDESC_SUNLOCK(fdp); 3283 3284 return (SYSCTL_OUT(req, &count, sizeof(count))); 3285 } 3286 3287 static SYSCTL_NODE(_kern_proc, KERN_PROC_NFDS, nfds, 3288 CTLFLAG_RD|CTLFLAG_CAPRD|CTLFLAG_MPSAFE, sysctl_kern_proc_nfds, 3289 "Number of open file descriptors"); 3290 3291 /* 3292 * Get file structures globally. 3293 */ 3294 static int 3295 sysctl_kern_file(SYSCTL_HANDLER_ARGS) 3296 { 3297 struct xfile xf; 3298 struct filedesc *fdp; 3299 struct file *fp; 3300 struct proc *p; 3301 int error, n; 3302 3303 error = sysctl_wire_old_buffer(req, 0); 3304 if (error != 0) 3305 return (error); 3306 if (req->oldptr == NULL) { 3307 n = 0; 3308 sx_slock(&allproc_lock); 3309 FOREACH_PROC_IN_SYSTEM(p) { 3310 PROC_LOCK(p); 3311 if (p->p_state == PRS_NEW) { 3312 PROC_UNLOCK(p); 3313 continue; 3314 } 3315 fdp = fdhold(p); 3316 PROC_UNLOCK(p); 3317 if (fdp == NULL) 3318 continue; 3319 /* overestimates sparse tables. */ 3320 if (fdp->fd_lastfile > 0) 3321 n += fdp->fd_lastfile; 3322 fddrop(fdp); 3323 } 3324 sx_sunlock(&allproc_lock); 3325 return (SYSCTL_OUT(req, 0, n * sizeof(xf))); 3326 } 3327 error = 0; 3328 bzero(&xf, sizeof(xf)); 3329 xf.xf_size = sizeof(xf); 3330 sx_slock(&allproc_lock); 3331 FOREACH_PROC_IN_SYSTEM(p) { 3332 PROC_LOCK(p); 3333 if (p->p_state == PRS_NEW) { 3334 PROC_UNLOCK(p); 3335 continue; 3336 } 3337 if (p_cansee(req->td, p) != 0) { 3338 PROC_UNLOCK(p); 3339 continue; 3340 } 3341 xf.xf_pid = p->p_pid; 3342 xf.xf_uid = p->p_ucred->cr_uid; 3343 fdp = fdhold(p); 3344 PROC_UNLOCK(p); 3345 if (fdp == NULL) 3346 continue; 3347 FILEDESC_SLOCK(fdp); 3348 for (n = 0; fdp->fd_refcnt > 0 && n <= fdp->fd_lastfile; ++n) { 3349 if ((fp = fdp->fd_ofiles[n].fde_file) == NULL) 3350 continue; 3351 xf.xf_fd = n; 3352 xf.xf_file = (uintptr_t)fp; 3353 xf.xf_data = (uintptr_t)fp->f_data; 3354 xf.xf_vnode = (uintptr_t)fp->f_vnode; 3355 xf.xf_type = (uintptr_t)fp->f_type; 3356 xf.xf_count = fp->f_count; 3357 xf.xf_msgcount = 0; 3358 xf.xf_offset = foffset_get(fp); 3359 xf.xf_flag = fp->f_flag; 3360 error = SYSCTL_OUT(req, &xf, sizeof(xf)); 3361 if (error) 3362 break; 3363 } 3364 FILEDESC_SUNLOCK(fdp); 3365 fddrop(fdp); 3366 if (error) 3367 break; 3368 } 3369 sx_sunlock(&allproc_lock); 3370 return (error); 3371 } 3372 3373 SYSCTL_PROC(_kern, KERN_FILE, file, CTLTYPE_OPAQUE|CTLFLAG_RD|CTLFLAG_MPSAFE, 3374 0, 0, sysctl_kern_file, "S,xfile", "Entire file table"); 3375 3376 #ifdef KINFO_FILE_SIZE 3377 CTASSERT(sizeof(struct kinfo_file) == KINFO_FILE_SIZE); 3378 #endif 3379 3380 static int 3381 xlate_fflags(int fflags) 3382 { 3383 static const struct { 3384 int fflag; 3385 int kf_fflag; 3386 } fflags_table[] = { 3387 { FAPPEND, KF_FLAG_APPEND }, 3388 { FASYNC, KF_FLAG_ASYNC }, 3389 { FFSYNC, KF_FLAG_FSYNC }, 3390 { FHASLOCK, KF_FLAG_HASLOCK }, 3391 { FNONBLOCK, KF_FLAG_NONBLOCK }, 3392 { FREAD, KF_FLAG_READ }, 3393 { FWRITE, KF_FLAG_WRITE }, 3394 { O_CREAT, KF_FLAG_CREAT }, 3395 { O_DIRECT, KF_FLAG_DIRECT }, 3396 { O_EXCL, KF_FLAG_EXCL }, 3397 { O_EXEC, KF_FLAG_EXEC }, 3398 { O_EXLOCK, KF_FLAG_EXLOCK }, 3399 { O_NOFOLLOW, KF_FLAG_NOFOLLOW }, 3400 { O_SHLOCK, KF_FLAG_SHLOCK }, 3401 { O_TRUNC, KF_FLAG_TRUNC } 3402 }; 3403 unsigned int i; 3404 int kflags; 3405 3406 kflags = 0; 3407 for (i = 0; i < nitems(fflags_table); i++) 3408 if (fflags & fflags_table[i].fflag) 3409 kflags |= fflags_table[i].kf_fflag; 3410 return (kflags); 3411 } 3412 3413 /* Trim unused data from kf_path by truncating the structure size. */ 3414 static void 3415 pack_kinfo(struct kinfo_file *kif) 3416 { 3417 3418 kif->kf_structsize = offsetof(struct kinfo_file, kf_path) + 3419 strlen(kif->kf_path) + 1; 3420 kif->kf_structsize = roundup(kif->kf_structsize, sizeof(uint64_t)); 3421 } 3422 3423 static void 3424 export_file_to_kinfo(struct file *fp, int fd, cap_rights_t *rightsp, 3425 struct kinfo_file *kif, struct filedesc *fdp, int flags) 3426 { 3427 int error; 3428 3429 bzero(kif, sizeof(*kif)); 3430 3431 /* Set a default type to allow for empty fill_kinfo() methods. */ 3432 kif->kf_type = KF_TYPE_UNKNOWN; 3433 kif->kf_flags = xlate_fflags(fp->f_flag); 3434 if (rightsp != NULL) 3435 kif->kf_cap_rights = *rightsp; 3436 else 3437 cap_rights_init(&kif->kf_cap_rights); 3438 kif->kf_fd = fd; 3439 kif->kf_ref_count = fp->f_count; 3440 kif->kf_offset = foffset_get(fp); 3441 3442 /* 3443 * This may drop the filedesc lock, so the 'fp' cannot be 3444 * accessed after this call. 3445 */ 3446 error = fo_fill_kinfo(fp, kif, fdp); 3447 if (error == 0) 3448 kif->kf_status |= KF_ATTR_VALID; 3449 if ((flags & KERN_FILEDESC_PACK_KINFO) != 0) 3450 pack_kinfo(kif); 3451 else 3452 kif->kf_structsize = roundup2(sizeof(*kif), sizeof(uint64_t)); 3453 } 3454 3455 static void 3456 export_vnode_to_kinfo(struct vnode *vp, int fd, int fflags, 3457 struct kinfo_file *kif, int flags) 3458 { 3459 int error; 3460 3461 bzero(kif, sizeof(*kif)); 3462 3463 kif->kf_type = KF_TYPE_VNODE; 3464 error = vn_fill_kinfo_vnode(vp, kif); 3465 if (error == 0) 3466 kif->kf_status |= KF_ATTR_VALID; 3467 kif->kf_flags = xlate_fflags(fflags); 3468 cap_rights_init(&kif->kf_cap_rights); 3469 kif->kf_fd = fd; 3470 kif->kf_ref_count = -1; 3471 kif->kf_offset = -1; 3472 if ((flags & KERN_FILEDESC_PACK_KINFO) != 0) 3473 pack_kinfo(kif); 3474 else 3475 kif->kf_structsize = roundup2(sizeof(*kif), sizeof(uint64_t)); 3476 vrele(vp); 3477 } 3478 3479 struct export_fd_buf { 3480 struct filedesc *fdp; 3481 struct sbuf *sb; 3482 ssize_t remainder; 3483 struct kinfo_file kif; 3484 int flags; 3485 }; 3486 3487 static int 3488 export_kinfo_to_sb(struct export_fd_buf *efbuf) 3489 { 3490 struct kinfo_file *kif; 3491 3492 kif = &efbuf->kif; 3493 if (efbuf->remainder != -1) { 3494 if (efbuf->remainder < kif->kf_structsize) { 3495 /* Terminate export. */ 3496 efbuf->remainder = 0; 3497 return (0); 3498 } 3499 efbuf->remainder -= kif->kf_structsize; 3500 } 3501 return (sbuf_bcat(efbuf->sb, kif, kif->kf_structsize) == 0 ? 0 : ENOMEM); 3502 } 3503 3504 static int 3505 export_file_to_sb(struct file *fp, int fd, cap_rights_t *rightsp, 3506 struct export_fd_buf *efbuf) 3507 { 3508 int error; 3509 3510 if (efbuf->remainder == 0) 3511 return (0); 3512 export_file_to_kinfo(fp, fd, rightsp, &efbuf->kif, efbuf->fdp, 3513 efbuf->flags); 3514 FILEDESC_SUNLOCK(efbuf->fdp); 3515 error = export_kinfo_to_sb(efbuf); 3516 FILEDESC_SLOCK(efbuf->fdp); 3517 return (error); 3518 } 3519 3520 static int 3521 export_vnode_to_sb(struct vnode *vp, int fd, int fflags, 3522 struct export_fd_buf *efbuf) 3523 { 3524 int error; 3525 3526 if (efbuf->remainder == 0) 3527 return (0); 3528 if (efbuf->fdp != NULL) 3529 FILEDESC_SUNLOCK(efbuf->fdp); 3530 export_vnode_to_kinfo(vp, fd, fflags, &efbuf->kif, efbuf->flags); 3531 error = export_kinfo_to_sb(efbuf); 3532 if (efbuf->fdp != NULL) 3533 FILEDESC_SLOCK(efbuf->fdp); 3534 return (error); 3535 } 3536 3537 /* 3538 * Store a process file descriptor information to sbuf. 3539 * 3540 * Takes a locked proc as argument, and returns with the proc unlocked. 3541 */ 3542 int 3543 kern_proc_filedesc_out(struct proc *p, struct sbuf *sb, ssize_t maxlen, 3544 int flags) 3545 { 3546 struct file *fp; 3547 struct filedesc *fdp; 3548 struct export_fd_buf *efbuf; 3549 struct vnode *cttyvp, *textvp, *tracevp; 3550 int error, i; 3551 cap_rights_t rights; 3552 3553 PROC_LOCK_ASSERT(p, MA_OWNED); 3554 3555 /* ktrace vnode */ 3556 tracevp = p->p_tracevp; 3557 if (tracevp != NULL) 3558 vrefact(tracevp); 3559 /* text vnode */ 3560 textvp = p->p_textvp; 3561 if (textvp != NULL) 3562 vrefact(textvp); 3563 /* Controlling tty. */ 3564 cttyvp = NULL; 3565 if (p->p_pgrp != NULL && p->p_pgrp->pg_session != NULL) { 3566 cttyvp = p->p_pgrp->pg_session->s_ttyvp; 3567 if (cttyvp != NULL) 3568 vrefact(cttyvp); 3569 } 3570 fdp = fdhold(p); 3571 PROC_UNLOCK(p); 3572 efbuf = malloc(sizeof(*efbuf), M_TEMP, M_WAITOK); 3573 efbuf->fdp = NULL; 3574 efbuf->sb = sb; 3575 efbuf->remainder = maxlen; 3576 efbuf->flags = flags; 3577 if (tracevp != NULL) 3578 export_vnode_to_sb(tracevp, KF_FD_TYPE_TRACE, FREAD | FWRITE, 3579 efbuf); 3580 if (textvp != NULL) 3581 export_vnode_to_sb(textvp, KF_FD_TYPE_TEXT, FREAD, efbuf); 3582 if (cttyvp != NULL) 3583 export_vnode_to_sb(cttyvp, KF_FD_TYPE_CTTY, FREAD | FWRITE, 3584 efbuf); 3585 error = 0; 3586 if (fdp == NULL) 3587 goto fail; 3588 efbuf->fdp = fdp; 3589 FILEDESC_SLOCK(fdp); 3590 /* working directory */ 3591 if (fdp->fd_cdir != NULL) { 3592 vrefact(fdp->fd_cdir); 3593 export_vnode_to_sb(fdp->fd_cdir, KF_FD_TYPE_CWD, FREAD, efbuf); 3594 } 3595 /* root directory */ 3596 if (fdp->fd_rdir != NULL) { 3597 vrefact(fdp->fd_rdir); 3598 export_vnode_to_sb(fdp->fd_rdir, KF_FD_TYPE_ROOT, FREAD, efbuf); 3599 } 3600 /* jail directory */ 3601 if (fdp->fd_jdir != NULL) { 3602 vrefact(fdp->fd_jdir); 3603 export_vnode_to_sb(fdp->fd_jdir, KF_FD_TYPE_JAIL, FREAD, efbuf); 3604 } 3605 for (i = 0; fdp->fd_refcnt > 0 && i <= fdp->fd_lastfile; i++) { 3606 if ((fp = fdp->fd_ofiles[i].fde_file) == NULL) 3607 continue; 3608 #ifdef CAPABILITIES 3609 rights = *cap_rights(fdp, i); 3610 #else /* !CAPABILITIES */ 3611 rights = cap_no_rights; 3612 #endif 3613 /* 3614 * Create sysctl entry. It is OK to drop the filedesc 3615 * lock inside of export_file_to_sb() as we will 3616 * re-validate and re-evaluate its properties when the 3617 * loop continues. 3618 */ 3619 error = export_file_to_sb(fp, i, &rights, efbuf); 3620 if (error != 0 || efbuf->remainder == 0) 3621 break; 3622 } 3623 FILEDESC_SUNLOCK(fdp); 3624 fddrop(fdp); 3625 fail: 3626 free(efbuf, M_TEMP); 3627 return (error); 3628 } 3629 3630 #define FILEDESC_SBUF_SIZE (sizeof(struct kinfo_file) * 5) 3631 3632 /* 3633 * Get per-process file descriptors for use by procstat(1), et al. 3634 */ 3635 static int 3636 sysctl_kern_proc_filedesc(SYSCTL_HANDLER_ARGS) 3637 { 3638 struct sbuf sb; 3639 struct proc *p; 3640 ssize_t maxlen; 3641 int error, error2, *name; 3642 3643 name = (int *)arg1; 3644 3645 sbuf_new_for_sysctl(&sb, NULL, FILEDESC_SBUF_SIZE, req); 3646 sbuf_clear_flags(&sb, SBUF_INCLUDENUL); 3647 error = pget((pid_t)name[0], PGET_CANDEBUG | PGET_NOTWEXIT, &p); 3648 if (error != 0) { 3649 sbuf_delete(&sb); 3650 return (error); 3651 } 3652 maxlen = req->oldptr != NULL ? req->oldlen : -1; 3653 error = kern_proc_filedesc_out(p, &sb, maxlen, 3654 KERN_FILEDESC_PACK_KINFO); 3655 error2 = sbuf_finish(&sb); 3656 sbuf_delete(&sb); 3657 return (error != 0 ? error : error2); 3658 } 3659 3660 #ifdef COMPAT_FREEBSD7 3661 #ifdef KINFO_OFILE_SIZE 3662 CTASSERT(sizeof(struct kinfo_ofile) == KINFO_OFILE_SIZE); 3663 #endif 3664 3665 static void 3666 kinfo_to_okinfo(struct kinfo_file *kif, struct kinfo_ofile *okif) 3667 { 3668 3669 okif->kf_structsize = sizeof(*okif); 3670 okif->kf_type = kif->kf_type; 3671 okif->kf_fd = kif->kf_fd; 3672 okif->kf_ref_count = kif->kf_ref_count; 3673 okif->kf_flags = kif->kf_flags & (KF_FLAG_READ | KF_FLAG_WRITE | 3674 KF_FLAG_APPEND | KF_FLAG_ASYNC | KF_FLAG_FSYNC | KF_FLAG_NONBLOCK | 3675 KF_FLAG_DIRECT | KF_FLAG_HASLOCK); 3676 okif->kf_offset = kif->kf_offset; 3677 if (kif->kf_type == KF_TYPE_VNODE) 3678 okif->kf_vnode_type = kif->kf_un.kf_file.kf_file_type; 3679 else 3680 okif->kf_vnode_type = KF_VTYPE_VNON; 3681 strlcpy(okif->kf_path, kif->kf_path, sizeof(okif->kf_path)); 3682 if (kif->kf_type == KF_TYPE_SOCKET) { 3683 okif->kf_sock_domain = kif->kf_un.kf_sock.kf_sock_domain0; 3684 okif->kf_sock_type = kif->kf_un.kf_sock.kf_sock_type0; 3685 okif->kf_sock_protocol = kif->kf_un.kf_sock.kf_sock_protocol0; 3686 okif->kf_sa_local = kif->kf_un.kf_sock.kf_sa_local; 3687 okif->kf_sa_peer = kif->kf_un.kf_sock.kf_sa_peer; 3688 } else { 3689 okif->kf_sa_local.ss_family = AF_UNSPEC; 3690 okif->kf_sa_peer.ss_family = AF_UNSPEC; 3691 } 3692 } 3693 3694 static int 3695 export_vnode_for_osysctl(struct vnode *vp, int type, struct kinfo_file *kif, 3696 struct kinfo_ofile *okif, struct filedesc *fdp, struct sysctl_req *req) 3697 { 3698 int error; 3699 3700 vrefact(vp); 3701 FILEDESC_SUNLOCK(fdp); 3702 export_vnode_to_kinfo(vp, type, 0, kif, KERN_FILEDESC_PACK_KINFO); 3703 kinfo_to_okinfo(kif, okif); 3704 error = SYSCTL_OUT(req, okif, sizeof(*okif)); 3705 FILEDESC_SLOCK(fdp); 3706 return (error); 3707 } 3708 3709 /* 3710 * Get per-process file descriptors for use by procstat(1), et al. 3711 */ 3712 static int 3713 sysctl_kern_proc_ofiledesc(SYSCTL_HANDLER_ARGS) 3714 { 3715 struct kinfo_ofile *okif; 3716 struct kinfo_file *kif; 3717 struct filedesc *fdp; 3718 int error, i, *name; 3719 struct file *fp; 3720 struct proc *p; 3721 3722 name = (int *)arg1; 3723 error = pget((pid_t)name[0], PGET_CANDEBUG | PGET_NOTWEXIT, &p); 3724 if (error != 0) 3725 return (error); 3726 fdp = fdhold(p); 3727 PROC_UNLOCK(p); 3728 if (fdp == NULL) 3729 return (ENOENT); 3730 kif = malloc(sizeof(*kif), M_TEMP, M_WAITOK); 3731 okif = malloc(sizeof(*okif), M_TEMP, M_WAITOK); 3732 FILEDESC_SLOCK(fdp); 3733 if (fdp->fd_cdir != NULL) 3734 export_vnode_for_osysctl(fdp->fd_cdir, KF_FD_TYPE_CWD, kif, 3735 okif, fdp, req); 3736 if (fdp->fd_rdir != NULL) 3737 export_vnode_for_osysctl(fdp->fd_rdir, KF_FD_TYPE_ROOT, kif, 3738 okif, fdp, req); 3739 if (fdp->fd_jdir != NULL) 3740 export_vnode_for_osysctl(fdp->fd_jdir, KF_FD_TYPE_JAIL, kif, 3741 okif, fdp, req); 3742 for (i = 0; fdp->fd_refcnt > 0 && i <= fdp->fd_lastfile; i++) { 3743 if ((fp = fdp->fd_ofiles[i].fde_file) == NULL) 3744 continue; 3745 export_file_to_kinfo(fp, i, NULL, kif, fdp, 3746 KERN_FILEDESC_PACK_KINFO); 3747 FILEDESC_SUNLOCK(fdp); 3748 kinfo_to_okinfo(kif, okif); 3749 error = SYSCTL_OUT(req, okif, sizeof(*okif)); 3750 FILEDESC_SLOCK(fdp); 3751 if (error) 3752 break; 3753 } 3754 FILEDESC_SUNLOCK(fdp); 3755 fddrop(fdp); 3756 free(kif, M_TEMP); 3757 free(okif, M_TEMP); 3758 return (0); 3759 } 3760 3761 static SYSCTL_NODE(_kern_proc, KERN_PROC_OFILEDESC, ofiledesc, 3762 CTLFLAG_RD|CTLFLAG_MPSAFE, sysctl_kern_proc_ofiledesc, 3763 "Process ofiledesc entries"); 3764 #endif /* COMPAT_FREEBSD7 */ 3765 3766 int 3767 vntype_to_kinfo(int vtype) 3768 { 3769 struct { 3770 int vtype; 3771 int kf_vtype; 3772 } vtypes_table[] = { 3773 { VBAD, KF_VTYPE_VBAD }, 3774 { VBLK, KF_VTYPE_VBLK }, 3775 { VCHR, KF_VTYPE_VCHR }, 3776 { VDIR, KF_VTYPE_VDIR }, 3777 { VFIFO, KF_VTYPE_VFIFO }, 3778 { VLNK, KF_VTYPE_VLNK }, 3779 { VNON, KF_VTYPE_VNON }, 3780 { VREG, KF_VTYPE_VREG }, 3781 { VSOCK, KF_VTYPE_VSOCK } 3782 }; 3783 unsigned int i; 3784 3785 /* 3786 * Perform vtype translation. 3787 */ 3788 for (i = 0; i < nitems(vtypes_table); i++) 3789 if (vtypes_table[i].vtype == vtype) 3790 return (vtypes_table[i].kf_vtype); 3791 3792 return (KF_VTYPE_UNKNOWN); 3793 } 3794 3795 static SYSCTL_NODE(_kern_proc, KERN_PROC_FILEDESC, filedesc, 3796 CTLFLAG_RD|CTLFLAG_MPSAFE, sysctl_kern_proc_filedesc, 3797 "Process filedesc entries"); 3798 3799 /* 3800 * Store a process current working directory information to sbuf. 3801 * 3802 * Takes a locked proc as argument, and returns with the proc unlocked. 3803 */ 3804 int 3805 kern_proc_cwd_out(struct proc *p, struct sbuf *sb, ssize_t maxlen) 3806 { 3807 struct filedesc *fdp; 3808 struct export_fd_buf *efbuf; 3809 int error; 3810 3811 PROC_LOCK_ASSERT(p, MA_OWNED); 3812 3813 fdp = fdhold(p); 3814 PROC_UNLOCK(p); 3815 if (fdp == NULL) 3816 return (EINVAL); 3817 3818 efbuf = malloc(sizeof(*efbuf), M_TEMP, M_WAITOK); 3819 efbuf->fdp = fdp; 3820 efbuf->sb = sb; 3821 efbuf->remainder = maxlen; 3822 3823 FILEDESC_SLOCK(fdp); 3824 if (fdp->fd_cdir == NULL) 3825 error = EINVAL; 3826 else { 3827 vrefact(fdp->fd_cdir); 3828 error = export_vnode_to_sb(fdp->fd_cdir, KF_FD_TYPE_CWD, 3829 FREAD, efbuf); 3830 } 3831 FILEDESC_SUNLOCK(fdp); 3832 fddrop(fdp); 3833 free(efbuf, M_TEMP); 3834 return (error); 3835 } 3836 3837 /* 3838 * Get per-process current working directory. 3839 */ 3840 static int 3841 sysctl_kern_proc_cwd(SYSCTL_HANDLER_ARGS) 3842 { 3843 struct sbuf sb; 3844 struct proc *p; 3845 ssize_t maxlen; 3846 int error, error2, *name; 3847 3848 name = (int *)arg1; 3849 3850 sbuf_new_for_sysctl(&sb, NULL, sizeof(struct kinfo_file), req); 3851 sbuf_clear_flags(&sb, SBUF_INCLUDENUL); 3852 error = pget((pid_t)name[0], PGET_CANDEBUG | PGET_NOTWEXIT, &p); 3853 if (error != 0) { 3854 sbuf_delete(&sb); 3855 return (error); 3856 } 3857 maxlen = req->oldptr != NULL ? req->oldlen : -1; 3858 error = kern_proc_cwd_out(p, &sb, maxlen); 3859 error2 = sbuf_finish(&sb); 3860 sbuf_delete(&sb); 3861 return (error != 0 ? error : error2); 3862 } 3863 3864 static SYSCTL_NODE(_kern_proc, KERN_PROC_CWD, cwd, CTLFLAG_RD|CTLFLAG_MPSAFE, 3865 sysctl_kern_proc_cwd, "Process current working directory"); 3866 3867 #ifdef DDB 3868 /* 3869 * For the purposes of debugging, generate a human-readable string for the 3870 * file type. 3871 */ 3872 static const char * 3873 file_type_to_name(short type) 3874 { 3875 3876 switch (type) { 3877 case 0: 3878 return ("zero"); 3879 case DTYPE_VNODE: 3880 return ("vnode"); 3881 case DTYPE_SOCKET: 3882 return ("socket"); 3883 case DTYPE_PIPE: 3884 return ("pipe"); 3885 case DTYPE_FIFO: 3886 return ("fifo"); 3887 case DTYPE_KQUEUE: 3888 return ("kqueue"); 3889 case DTYPE_CRYPTO: 3890 return ("crypto"); 3891 case DTYPE_MQUEUE: 3892 return ("mqueue"); 3893 case DTYPE_SHM: 3894 return ("shm"); 3895 case DTYPE_SEM: 3896 return ("ksem"); 3897 case DTYPE_PTS: 3898 return ("pts"); 3899 case DTYPE_DEV: 3900 return ("dev"); 3901 case DTYPE_PROCDESC: 3902 return ("proc"); 3903 case DTYPE_LINUXEFD: 3904 return ("levent"); 3905 case DTYPE_LINUXTFD: 3906 return ("ltimer"); 3907 default: 3908 return ("unkn"); 3909 } 3910 } 3911 3912 /* 3913 * For the purposes of debugging, identify a process (if any, perhaps one of 3914 * many) that references the passed file in its file descriptor array. Return 3915 * NULL if none. 3916 */ 3917 static struct proc * 3918 file_to_first_proc(struct file *fp) 3919 { 3920 struct filedesc *fdp; 3921 struct proc *p; 3922 int n; 3923 3924 FOREACH_PROC_IN_SYSTEM(p) { 3925 if (p->p_state == PRS_NEW) 3926 continue; 3927 fdp = p->p_fd; 3928 if (fdp == NULL) 3929 continue; 3930 for (n = 0; n <= fdp->fd_lastfile; n++) { 3931 if (fp == fdp->fd_ofiles[n].fde_file) 3932 return (p); 3933 } 3934 } 3935 return (NULL); 3936 } 3937 3938 static void 3939 db_print_file(struct file *fp, int header) 3940 { 3941 #define XPTRWIDTH ((int)howmany(sizeof(void *) * NBBY, 4)) 3942 struct proc *p; 3943 3944 if (header) 3945 db_printf("%*s %6s %*s %8s %4s %5s %6s %*s %5s %s\n", 3946 XPTRWIDTH, "File", "Type", XPTRWIDTH, "Data", "Flag", 3947 "GCFl", "Count", "MCount", XPTRWIDTH, "Vnode", "FPID", 3948 "FCmd"); 3949 p = file_to_first_proc(fp); 3950 db_printf("%*p %6s %*p %08x %04x %5d %6d %*p %5d %s\n", XPTRWIDTH, 3951 fp, file_type_to_name(fp->f_type), XPTRWIDTH, fp->f_data, 3952 fp->f_flag, 0, fp->f_count, 0, XPTRWIDTH, fp->f_vnode, 3953 p != NULL ? p->p_pid : -1, p != NULL ? p->p_comm : "-"); 3954 3955 #undef XPTRWIDTH 3956 } 3957 3958 DB_SHOW_COMMAND(file, db_show_file) 3959 { 3960 struct file *fp; 3961 3962 if (!have_addr) { 3963 db_printf("usage: show file <addr>\n"); 3964 return; 3965 } 3966 fp = (struct file *)addr; 3967 db_print_file(fp, 1); 3968 } 3969 3970 DB_SHOW_COMMAND(files, db_show_files) 3971 { 3972 struct filedesc *fdp; 3973 struct file *fp; 3974 struct proc *p; 3975 int header; 3976 int n; 3977 3978 header = 1; 3979 FOREACH_PROC_IN_SYSTEM(p) { 3980 if (p->p_state == PRS_NEW) 3981 continue; 3982 if ((fdp = p->p_fd) == NULL) 3983 continue; 3984 for (n = 0; n <= fdp->fd_lastfile; ++n) { 3985 if ((fp = fdp->fd_ofiles[n].fde_file) == NULL) 3986 continue; 3987 db_print_file(fp, header); 3988 header = 0; 3989 } 3990 } 3991 } 3992 #endif 3993 3994 SYSCTL_INT(_kern, KERN_MAXFILESPERPROC, maxfilesperproc, CTLFLAG_RW, 3995 &maxfilesperproc, 0, "Maximum files allowed open per process"); 3996 3997 SYSCTL_INT(_kern, KERN_MAXFILES, maxfiles, CTLFLAG_RW, 3998 &maxfiles, 0, "Maximum number of files"); 3999 4000 SYSCTL_INT(_kern, OID_AUTO, openfiles, CTLFLAG_RD, 4001 __DEVOLATILE(int *, &openfiles), 0, "System-wide number of open files"); 4002 4003 /* ARGSUSED*/ 4004 static void 4005 filelistinit(void *dummy) 4006 { 4007 4008 file_zone = uma_zcreate("Files", sizeof(struct file), NULL, NULL, 4009 NULL, NULL, UMA_ALIGN_PTR, UMA_ZONE_NOFREE); 4010 filedesc0_zone = uma_zcreate("filedesc0", sizeof(struct filedesc0), 4011 NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0); 4012 mtx_init(&sigio_lock, "sigio lock", NULL, MTX_DEF); 4013 } 4014 SYSINIT(select, SI_SUB_LOCK, SI_ORDER_FIRST, filelistinit, NULL); 4015 4016 /*-------------------------------------------------------------------*/ 4017 4018 static int 4019 badfo_readwrite(struct file *fp, struct uio *uio, struct ucred *active_cred, 4020 int flags, struct thread *td) 4021 { 4022 4023 return (EBADF); 4024 } 4025 4026 static int 4027 badfo_truncate(struct file *fp, off_t length, struct ucred *active_cred, 4028 struct thread *td) 4029 { 4030 4031 return (EINVAL); 4032 } 4033 4034 static int 4035 badfo_ioctl(struct file *fp, u_long com, void *data, struct ucred *active_cred, 4036 struct thread *td) 4037 { 4038 4039 return (EBADF); 4040 } 4041 4042 static int 4043 badfo_poll(struct file *fp, int events, struct ucred *active_cred, 4044 struct thread *td) 4045 { 4046 4047 return (0); 4048 } 4049 4050 static int 4051 badfo_kqfilter(struct file *fp, struct knote *kn) 4052 { 4053 4054 return (EBADF); 4055 } 4056 4057 static int 4058 badfo_stat(struct file *fp, struct stat *sb, struct ucred *active_cred, 4059 struct thread *td) 4060 { 4061 4062 return (EBADF); 4063 } 4064 4065 static int 4066 badfo_close(struct file *fp, struct thread *td) 4067 { 4068 4069 return (0); 4070 } 4071 4072 static int 4073 badfo_chmod(struct file *fp, mode_t mode, struct ucred *active_cred, 4074 struct thread *td) 4075 { 4076 4077 return (EBADF); 4078 } 4079 4080 static int 4081 badfo_chown(struct file *fp, uid_t uid, gid_t gid, struct ucred *active_cred, 4082 struct thread *td) 4083 { 4084 4085 return (EBADF); 4086 } 4087 4088 static int 4089 badfo_sendfile(struct file *fp, int sockfd, struct uio *hdr_uio, 4090 struct uio *trl_uio, off_t offset, size_t nbytes, off_t *sent, int flags, 4091 struct thread *td) 4092 { 4093 4094 return (EBADF); 4095 } 4096 4097 static int 4098 badfo_fill_kinfo(struct file *fp, struct kinfo_file *kif, struct filedesc *fdp) 4099 { 4100 4101 return (0); 4102 } 4103 4104 struct fileops badfileops = { 4105 .fo_read = badfo_readwrite, 4106 .fo_write = badfo_readwrite, 4107 .fo_truncate = badfo_truncate, 4108 .fo_ioctl = badfo_ioctl, 4109 .fo_poll = badfo_poll, 4110 .fo_kqfilter = badfo_kqfilter, 4111 .fo_stat = badfo_stat, 4112 .fo_close = badfo_close, 4113 .fo_chmod = badfo_chmod, 4114 .fo_chown = badfo_chown, 4115 .fo_sendfile = badfo_sendfile, 4116 .fo_fill_kinfo = badfo_fill_kinfo, 4117 }; 4118 4119 int 4120 invfo_rdwr(struct file *fp, struct uio *uio, struct ucred *active_cred, 4121 int flags, struct thread *td) 4122 { 4123 4124 return (EOPNOTSUPP); 4125 } 4126 4127 int 4128 invfo_truncate(struct file *fp, off_t length, struct ucred *active_cred, 4129 struct thread *td) 4130 { 4131 4132 return (EINVAL); 4133 } 4134 4135 int 4136 invfo_ioctl(struct file *fp, u_long com, void *data, 4137 struct ucred *active_cred, struct thread *td) 4138 { 4139 4140 return (ENOTTY); 4141 } 4142 4143 int 4144 invfo_poll(struct file *fp, int events, struct ucred *active_cred, 4145 struct thread *td) 4146 { 4147 4148 return (poll_no_poll(events)); 4149 } 4150 4151 int 4152 invfo_kqfilter(struct file *fp, struct knote *kn) 4153 { 4154 4155 return (EINVAL); 4156 } 4157 4158 int 4159 invfo_chmod(struct file *fp, mode_t mode, struct ucred *active_cred, 4160 struct thread *td) 4161 { 4162 4163 return (EINVAL); 4164 } 4165 4166 int 4167 invfo_chown(struct file *fp, uid_t uid, gid_t gid, struct ucred *active_cred, 4168 struct thread *td) 4169 { 4170 4171 return (EINVAL); 4172 } 4173 4174 int 4175 invfo_sendfile(struct file *fp, int sockfd, struct uio *hdr_uio, 4176 struct uio *trl_uio, off_t offset, size_t nbytes, off_t *sent, int flags, 4177 struct thread *td) 4178 { 4179 4180 return (EINVAL); 4181 } 4182 4183 /*-------------------------------------------------------------------*/ 4184 4185 /* 4186 * File Descriptor pseudo-device driver (/dev/fd/). 4187 * 4188 * Opening minor device N dup()s the file (if any) connected to file 4189 * descriptor N belonging to the calling process. Note that this driver 4190 * consists of only the ``open()'' routine, because all subsequent 4191 * references to this file will be direct to the other driver. 4192 * 4193 * XXX: we could give this one a cloning event handler if necessary. 4194 */ 4195 4196 /* ARGSUSED */ 4197 static int 4198 fdopen(struct cdev *dev, int mode, int type, struct thread *td) 4199 { 4200 4201 /* 4202 * XXX Kludge: set curthread->td_dupfd to contain the value of the 4203 * the file descriptor being sought for duplication. The error 4204 * return ensures that the vnode for this device will be released 4205 * by vn_open. Open will detect this special error and take the 4206 * actions in dupfdopen below. Other callers of vn_open or VOP_OPEN 4207 * will simply report the error. 4208 */ 4209 td->td_dupfd = dev2unit(dev); 4210 return (ENODEV); 4211 } 4212 4213 static struct cdevsw fildesc_cdevsw = { 4214 .d_version = D_VERSION, 4215 .d_open = fdopen, 4216 .d_name = "FD", 4217 }; 4218 4219 static void 4220 fildesc_drvinit(void *unused) 4221 { 4222 struct cdev *dev; 4223 4224 dev = make_dev_credf(MAKEDEV_ETERNAL, &fildesc_cdevsw, 0, NULL, 4225 UID_ROOT, GID_WHEEL, 0666, "fd/0"); 4226 make_dev_alias(dev, "stdin"); 4227 dev = make_dev_credf(MAKEDEV_ETERNAL, &fildesc_cdevsw, 1, NULL, 4228 UID_ROOT, GID_WHEEL, 0666, "fd/1"); 4229 make_dev_alias(dev, "stdout"); 4230 dev = make_dev_credf(MAKEDEV_ETERNAL, &fildesc_cdevsw, 2, NULL, 4231 UID_ROOT, GID_WHEEL, 0666, "fd/2"); 4232 make_dev_alias(dev, "stderr"); 4233 } 4234 4235 SYSINIT(fildescdev, SI_SUB_DRIVERS, SI_ORDER_MIDDLE, fildesc_drvinit, NULL); 4236