1 /*- 2 * Copyright (c) 1993, David Greenman 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24 * SUCH DAMAGE. 25 */ 26 27 #include <sys/cdefs.h> 28 __FBSDID("$FreeBSD$"); 29 30 #include "opt_capsicum.h" 31 #include "opt_hwpmc_hooks.h" 32 #include "opt_kdtrace.h" 33 #include "opt_ktrace.h" 34 #include "opt_vm.h" 35 36 #include <sys/param.h> 37 #include <sys/capability.h> 38 #include <sys/systm.h> 39 #include <sys/capability.h> 40 #include <sys/eventhandler.h> 41 #include <sys/lock.h> 42 #include <sys/mutex.h> 43 #include <sys/sysproto.h> 44 #include <sys/signalvar.h> 45 #include <sys/kernel.h> 46 #include <sys/mount.h> 47 #include <sys/filedesc.h> 48 #include <sys/fcntl.h> 49 #include <sys/acct.h> 50 #include <sys/exec.h> 51 #include <sys/imgact.h> 52 #include <sys/imgact_elf.h> 53 #include <sys/wait.h> 54 #include <sys/malloc.h> 55 #include <sys/priv.h> 56 #include <sys/proc.h> 57 #include <sys/pioctl.h> 58 #include <sys/namei.h> 59 #include <sys/resourcevar.h> 60 #include <sys/sdt.h> 61 #include <sys/sf_buf.h> 62 #include <sys/syscallsubr.h> 63 #include <sys/sysent.h> 64 #include <sys/shm.h> 65 #include <sys/sysctl.h> 66 #include <sys/vnode.h> 67 #include <sys/stat.h> 68 #ifdef KTRACE 69 #include <sys/ktrace.h> 70 #endif 71 72 #include <vm/vm.h> 73 #include <vm/vm_param.h> 74 #include <vm/pmap.h> 75 #include <vm/vm_page.h> 76 #include <vm/vm_map.h> 77 #include <vm/vm_kern.h> 78 #include <vm/vm_extern.h> 79 #include <vm/vm_object.h> 80 #include <vm/vm_pager.h> 81 82 #ifdef HWPMC_HOOKS 83 #include <sys/pmckern.h> 84 #endif 85 86 #include <machine/reg.h> 87 88 #include <security/audit/audit.h> 89 #include <security/mac/mac_framework.h> 90 91 #ifdef KDTRACE_HOOKS 92 #include <sys/dtrace_bsd.h> 93 dtrace_execexit_func_t dtrace_fasttrap_exec; 94 #endif 95 96 SDT_PROVIDER_DECLARE(proc); 97 SDT_PROBE_DEFINE(proc, kernel, , exec, exec); 98 SDT_PROBE_ARGTYPE(proc, kernel, , exec, 0, "char *"); 99 SDT_PROBE_DEFINE(proc, kernel, , exec_failure, exec-failure); 100 SDT_PROBE_ARGTYPE(proc, kernel, , exec_failure, 0, "int"); 101 SDT_PROBE_DEFINE(proc, kernel, , exec_success, exec-success); 102 SDT_PROBE_ARGTYPE(proc, kernel, , exec_success, 0, "char *"); 103 104 MALLOC_DEFINE(M_PARGS, "proc-args", "Process arguments"); 105 106 static int sysctl_kern_ps_strings(SYSCTL_HANDLER_ARGS); 107 static int sysctl_kern_usrstack(SYSCTL_HANDLER_ARGS); 108 static int sysctl_kern_stackprot(SYSCTL_HANDLER_ARGS); 109 static int do_execve(struct thread *td, struct image_args *args, 110 struct mac *mac_p); 111 112 /* XXX This should be vm_size_t. */ 113 SYSCTL_PROC(_kern, KERN_PS_STRINGS, ps_strings, CTLTYPE_ULONG|CTLFLAG_RD, 114 NULL, 0, sysctl_kern_ps_strings, "LU", ""); 115 116 /* XXX This should be vm_size_t. */ 117 SYSCTL_PROC(_kern, KERN_USRSTACK, usrstack, CTLTYPE_ULONG|CTLFLAG_RD| 118 CTLFLAG_CAPRD, NULL, 0, sysctl_kern_usrstack, "LU", ""); 119 120 SYSCTL_PROC(_kern, OID_AUTO, stackprot, CTLTYPE_INT|CTLFLAG_RD, 121 NULL, 0, sysctl_kern_stackprot, "I", ""); 122 123 u_long ps_arg_cache_limit = PAGE_SIZE / 16; 124 SYSCTL_ULONG(_kern, OID_AUTO, ps_arg_cache_limit, CTLFLAG_RW, 125 &ps_arg_cache_limit, 0, ""); 126 127 static int map_at_zero = 0; 128 TUNABLE_INT("security.bsd.map_at_zero", &map_at_zero); 129 SYSCTL_INT(_security_bsd, OID_AUTO, map_at_zero, CTLFLAG_RW, &map_at_zero, 0, 130 "Permit processes to map an object at virtual address 0."); 131 132 static int 133 sysctl_kern_ps_strings(SYSCTL_HANDLER_ARGS) 134 { 135 struct proc *p; 136 int error; 137 138 p = curproc; 139 #ifdef SCTL_MASK32 140 if (req->flags & SCTL_MASK32) { 141 unsigned int val; 142 val = (unsigned int)p->p_sysent->sv_psstrings; 143 error = SYSCTL_OUT(req, &val, sizeof(val)); 144 } else 145 #endif 146 error = SYSCTL_OUT(req, &p->p_sysent->sv_psstrings, 147 sizeof(p->p_sysent->sv_psstrings)); 148 return error; 149 } 150 151 static int 152 sysctl_kern_usrstack(SYSCTL_HANDLER_ARGS) 153 { 154 struct proc *p; 155 int error; 156 157 p = curproc; 158 #ifdef SCTL_MASK32 159 if (req->flags & SCTL_MASK32) { 160 unsigned int val; 161 val = (unsigned int)p->p_sysent->sv_usrstack; 162 error = SYSCTL_OUT(req, &val, sizeof(val)); 163 } else 164 #endif 165 error = SYSCTL_OUT(req, &p->p_sysent->sv_usrstack, 166 sizeof(p->p_sysent->sv_usrstack)); 167 return error; 168 } 169 170 static int 171 sysctl_kern_stackprot(SYSCTL_HANDLER_ARGS) 172 { 173 struct proc *p; 174 175 p = curproc; 176 return (SYSCTL_OUT(req, &p->p_sysent->sv_stackprot, 177 sizeof(p->p_sysent->sv_stackprot))); 178 } 179 180 /* 181 * Each of the items is a pointer to a `const struct execsw', hence the 182 * double pointer here. 183 */ 184 static const struct execsw **execsw; 185 186 #ifndef _SYS_SYSPROTO_H_ 187 struct execve_args { 188 char *fname; 189 char **argv; 190 char **envv; 191 }; 192 #endif 193 194 int 195 sys_execve(td, uap) 196 struct thread *td; 197 struct execve_args /* { 198 char *fname; 199 char **argv; 200 char **envv; 201 } */ *uap; 202 { 203 int error; 204 struct image_args args; 205 206 error = exec_copyin_args(&args, uap->fname, UIO_USERSPACE, 207 uap->argv, uap->envv); 208 if (error == 0) 209 error = kern_execve(td, &args, NULL); 210 return (error); 211 } 212 213 #ifndef _SYS_SYSPROTO_H_ 214 struct fexecve_args { 215 int fd; 216 char **argv; 217 char **envv; 218 } 219 #endif 220 int 221 sys_fexecve(struct thread *td, struct fexecve_args *uap) 222 { 223 int error; 224 struct image_args args; 225 226 error = exec_copyin_args(&args, NULL, UIO_SYSSPACE, 227 uap->argv, uap->envv); 228 if (error == 0) { 229 args.fd = uap->fd; 230 error = kern_execve(td, &args, NULL); 231 } 232 return (error); 233 } 234 235 #ifndef _SYS_SYSPROTO_H_ 236 struct __mac_execve_args { 237 char *fname; 238 char **argv; 239 char **envv; 240 struct mac *mac_p; 241 }; 242 #endif 243 244 int 245 sys___mac_execve(td, uap) 246 struct thread *td; 247 struct __mac_execve_args /* { 248 char *fname; 249 char **argv; 250 char **envv; 251 struct mac *mac_p; 252 } */ *uap; 253 { 254 #ifdef MAC 255 int error; 256 struct image_args args; 257 258 error = exec_copyin_args(&args, uap->fname, UIO_USERSPACE, 259 uap->argv, uap->envv); 260 if (error == 0) 261 error = kern_execve(td, &args, uap->mac_p); 262 return (error); 263 #else 264 return (ENOSYS); 265 #endif 266 } 267 268 /* 269 * XXX: kern_execve has the astonishing property of not always returning to 270 * the caller. If sufficiently bad things happen during the call to 271 * do_execve(), it can end up calling exit1(); as a result, callers must 272 * avoid doing anything which they might need to undo (e.g., allocating 273 * memory). 274 */ 275 int 276 kern_execve(td, args, mac_p) 277 struct thread *td; 278 struct image_args *args; 279 struct mac *mac_p; 280 { 281 struct proc *p = td->td_proc; 282 int error; 283 284 AUDIT_ARG_ARGV(args->begin_argv, args->argc, 285 args->begin_envv - args->begin_argv); 286 AUDIT_ARG_ENVV(args->begin_envv, args->envc, 287 args->endp - args->begin_envv); 288 if (p->p_flag & P_HADTHREADS) { 289 PROC_LOCK(p); 290 if (thread_single(SINGLE_BOUNDARY)) { 291 PROC_UNLOCK(p); 292 exec_free_args(args); 293 return (ERESTART); /* Try again later. */ 294 } 295 PROC_UNLOCK(p); 296 } 297 298 error = do_execve(td, args, mac_p); 299 300 if (p->p_flag & P_HADTHREADS) { 301 PROC_LOCK(p); 302 /* 303 * If success, we upgrade to SINGLE_EXIT state to 304 * force other threads to suicide. 305 */ 306 if (error == 0) 307 thread_single(SINGLE_EXIT); 308 else 309 thread_single_end(); 310 PROC_UNLOCK(p); 311 } 312 313 return (error); 314 } 315 316 /* 317 * In-kernel implementation of execve(). All arguments are assumed to be 318 * userspace pointers from the passed thread. 319 */ 320 static int 321 do_execve(td, args, mac_p) 322 struct thread *td; 323 struct image_args *args; 324 struct mac *mac_p; 325 { 326 struct proc *p = td->td_proc; 327 struct nameidata nd; 328 struct ucred *newcred = NULL, *oldcred; 329 struct uidinfo *euip; 330 register_t *stack_base; 331 int error, i; 332 struct image_params image_params, *imgp; 333 struct vattr attr; 334 int (*img_first)(struct image_params *); 335 struct pargs *oldargs = NULL, *newargs = NULL; 336 struct sigacts *oldsigacts, *newsigacts; 337 #ifdef KTRACE 338 struct vnode *tracevp = NULL; 339 struct ucred *tracecred = NULL; 340 #endif 341 struct vnode *textvp = NULL, *binvp = NULL; 342 int credential_changing; 343 int vfslocked; 344 int textset; 345 #ifdef MAC 346 struct label *interpvplabel = NULL; 347 int will_transition; 348 #endif 349 #ifdef HWPMC_HOOKS 350 struct pmckern_procexec pe; 351 #endif 352 static const char fexecv_proc_title[] = "(fexecv)"; 353 354 vfslocked = 0; 355 imgp = &image_params; 356 357 /* 358 * Lock the process and set the P_INEXEC flag to indicate that 359 * it should be left alone until we're done here. This is 360 * necessary to avoid race conditions - e.g. in ptrace() - 361 * that might allow a local user to illicitly obtain elevated 362 * privileges. 363 */ 364 PROC_LOCK(p); 365 KASSERT((p->p_flag & P_INEXEC) == 0, 366 ("%s(): process already has P_INEXEC flag", __func__)); 367 p->p_flag |= P_INEXEC; 368 PROC_UNLOCK(p); 369 370 /* 371 * Initialize part of the common data 372 */ 373 imgp->proc = p; 374 imgp->execlabel = NULL; 375 imgp->attr = &attr; 376 imgp->entry_addr = 0; 377 imgp->reloc_base = 0; 378 imgp->vmspace_destroyed = 0; 379 imgp->interpreted = 0; 380 imgp->opened = 0; 381 imgp->interpreter_name = NULL; 382 imgp->auxargs = NULL; 383 imgp->vp = NULL; 384 imgp->object = NULL; 385 imgp->firstpage = NULL; 386 imgp->ps_strings = 0; 387 imgp->auxarg_size = 0; 388 imgp->args = args; 389 imgp->execpath = imgp->freepath = NULL; 390 imgp->execpathp = 0; 391 imgp->canary = 0; 392 imgp->canarylen = 0; 393 imgp->pagesizes = 0; 394 imgp->pagesizeslen = 0; 395 imgp->stack_prot = 0; 396 397 #ifdef MAC 398 error = mac_execve_enter(imgp, mac_p); 399 if (error) 400 goto exec_fail; 401 #endif 402 403 imgp->image_header = NULL; 404 405 /* 406 * Translate the file name. namei() returns a vnode pointer 407 * in ni_vp amoung other things. 408 * 409 * XXXAUDIT: It would be desirable to also audit the name of the 410 * interpreter if this is an interpreted binary. 411 */ 412 if (args->fname != NULL) { 413 NDINIT(&nd, LOOKUP, ISOPEN | LOCKLEAF | FOLLOW | SAVENAME 414 | MPSAFE | AUDITVNODE1, UIO_SYSSPACE, args->fname, td); 415 } 416 417 SDT_PROBE(proc, kernel, , exec, args->fname, 0, 0, 0, 0 ); 418 419 interpret: 420 if (args->fname != NULL) { 421 #ifdef CAPABILITY_MODE 422 /* 423 * While capability mode can't reach this point via direct 424 * path arguments to execve(), we also don't allow 425 * interpreters to be used in capability mode (for now). 426 * Catch indirect lookups and return a permissions error. 427 */ 428 if (IN_CAPABILITY_MODE(td)) { 429 error = ECAPMODE; 430 goto exec_fail; 431 } 432 #endif 433 error = namei(&nd); 434 if (error) 435 goto exec_fail; 436 437 vfslocked = NDHASGIANT(&nd); 438 binvp = nd.ni_vp; 439 imgp->vp = binvp; 440 } else { 441 AUDIT_ARG_FD(args->fd); 442 /* 443 * Some might argue that CAP_READ and/or CAP_MMAP should also 444 * be required here; such arguments will be entertained. 445 */ 446 error = fgetvp_read(td, args->fd, CAP_FEXECVE, &binvp); 447 if (error) 448 goto exec_fail; 449 vfslocked = VFS_LOCK_GIANT(binvp->v_mount); 450 vn_lock(binvp, LK_EXCLUSIVE | LK_RETRY); 451 AUDIT_ARG_VNODE1(binvp); 452 imgp->vp = binvp; 453 } 454 455 /* 456 * Check file permissions (also 'opens' file) 457 */ 458 error = exec_check_permissions(imgp); 459 if (error) 460 goto exec_fail_dealloc; 461 462 imgp->object = imgp->vp->v_object; 463 if (imgp->object != NULL) 464 vm_object_reference(imgp->object); 465 466 /* 467 * Set VV_TEXT now so no one can write to the executable while we're 468 * activating it. 469 * 470 * Remember if this was set before and unset it in case this is not 471 * actually an executable image. 472 */ 473 textset = imgp->vp->v_vflag & VV_TEXT; 474 ASSERT_VOP_ELOCKED(imgp->vp, "vv_text"); 475 imgp->vp->v_vflag |= VV_TEXT; 476 477 error = exec_map_first_page(imgp); 478 if (error) 479 goto exec_fail_dealloc; 480 481 imgp->proc->p_osrel = 0; 482 /* 483 * If the current process has a special image activator it 484 * wants to try first, call it. For example, emulating shell 485 * scripts differently. 486 */ 487 error = -1; 488 if ((img_first = imgp->proc->p_sysent->sv_imgact_try) != NULL) 489 error = img_first(imgp); 490 491 /* 492 * Loop through the list of image activators, calling each one. 493 * An activator returns -1 if there is no match, 0 on success, 494 * and an error otherwise. 495 */ 496 for (i = 0; error == -1 && execsw[i]; ++i) { 497 if (execsw[i]->ex_imgact == NULL || 498 execsw[i]->ex_imgact == img_first) { 499 continue; 500 } 501 error = (*execsw[i]->ex_imgact)(imgp); 502 } 503 504 if (error) { 505 if (error == -1) { 506 if (textset == 0) { 507 ASSERT_VOP_ELOCKED(imgp->vp, "vv_text"); 508 imgp->vp->v_vflag &= ~VV_TEXT; 509 } 510 error = ENOEXEC; 511 } 512 goto exec_fail_dealloc; 513 } 514 515 /* 516 * Special interpreter operation, cleanup and loop up to try to 517 * activate the interpreter. 518 */ 519 if (imgp->interpreted) { 520 exec_unmap_first_page(imgp); 521 /* 522 * VV_TEXT needs to be unset for scripts. There is a short 523 * period before we determine that something is a script where 524 * VV_TEXT will be set. The vnode lock is held over this 525 * entire period so nothing should illegitimately be blocked. 526 */ 527 imgp->vp->v_vflag &= ~VV_TEXT; 528 /* free name buffer and old vnode */ 529 if (args->fname != NULL) 530 NDFREE(&nd, NDF_ONLY_PNBUF); 531 #ifdef MAC 532 mac_execve_interpreter_enter(binvp, &interpvplabel); 533 #endif 534 if (imgp->opened) { 535 VOP_CLOSE(binvp, FREAD, td->td_ucred, td); 536 imgp->opened = 0; 537 } 538 vput(binvp); 539 vm_object_deallocate(imgp->object); 540 imgp->object = NULL; 541 VFS_UNLOCK_GIANT(vfslocked); 542 vfslocked = 0; 543 /* set new name to that of the interpreter */ 544 NDINIT(&nd, LOOKUP, LOCKLEAF | FOLLOW | SAVENAME | MPSAFE, 545 UIO_SYSSPACE, imgp->interpreter_name, td); 546 args->fname = imgp->interpreter_name; 547 goto interpret; 548 } 549 550 /* 551 * NB: We unlock the vnode here because it is believed that none 552 * of the sv_copyout_strings/sv_fixup operations require the vnode. 553 */ 554 VOP_UNLOCK(imgp->vp, 0); 555 556 /* 557 * Do the best to calculate the full path to the image file. 558 */ 559 if (imgp->auxargs != NULL && 560 ((args->fname != NULL && args->fname[0] == '/') || 561 vn_fullpath(td, imgp->vp, &imgp->execpath, &imgp->freepath) != 0)) 562 imgp->execpath = args->fname; 563 564 /* 565 * Copy out strings (args and env) and initialize stack base 566 */ 567 if (p->p_sysent->sv_copyout_strings) 568 stack_base = (*p->p_sysent->sv_copyout_strings)(imgp); 569 else 570 stack_base = exec_copyout_strings(imgp); 571 572 /* 573 * If custom stack fixup routine present for this process 574 * let it do the stack setup. 575 * Else stuff argument count as first item on stack 576 */ 577 if (p->p_sysent->sv_fixup != NULL) 578 (*p->p_sysent->sv_fixup)(&stack_base, imgp); 579 else 580 suword(--stack_base, imgp->args->argc); 581 582 /* 583 * For security and other reasons, the file descriptor table cannot 584 * be shared after an exec. 585 */ 586 fdunshare(p, td); 587 588 /* 589 * Malloc things before we need locks. 590 */ 591 newcred = crget(); 592 euip = uifind(attr.va_uid); 593 i = imgp->args->begin_envv - imgp->args->begin_argv; 594 /* Cache arguments if they fit inside our allowance */ 595 if (ps_arg_cache_limit >= i + sizeof(struct pargs)) { 596 newargs = pargs_alloc(i); 597 bcopy(imgp->args->begin_argv, newargs->ar_args, i); 598 } 599 600 /* close files on exec */ 601 fdcloseexec(td); 602 vn_lock(imgp->vp, LK_SHARED | LK_RETRY); 603 604 /* Get a reference to the vnode prior to locking the proc */ 605 VREF(binvp); 606 607 /* 608 * For security and other reasons, signal handlers cannot 609 * be shared after an exec. The new process gets a copy of the old 610 * handlers. In execsigs(), the new process will have its signals 611 * reset. 612 */ 613 PROC_LOCK(p); 614 oldcred = crcopysafe(p, newcred); 615 if (sigacts_shared(p->p_sigacts)) { 616 oldsigacts = p->p_sigacts; 617 PROC_UNLOCK(p); 618 newsigacts = sigacts_alloc(); 619 sigacts_copy(newsigacts, oldsigacts); 620 PROC_LOCK(p); 621 p->p_sigacts = newsigacts; 622 } else 623 oldsigacts = NULL; 624 625 /* Stop profiling */ 626 stopprofclock(p); 627 628 /* reset caught signals */ 629 execsigs(p); 630 631 /* name this process - nameiexec(p, ndp) */ 632 bzero(p->p_comm, sizeof(p->p_comm)); 633 if (args->fname) 634 bcopy(nd.ni_cnd.cn_nameptr, p->p_comm, 635 min(nd.ni_cnd.cn_namelen, MAXCOMLEN)); 636 else if (vn_commname(binvp, p->p_comm, sizeof(p->p_comm)) != 0) 637 bcopy(fexecv_proc_title, p->p_comm, sizeof(fexecv_proc_title)); 638 bcopy(p->p_comm, td->td_name, sizeof(td->td_name)); 639 640 /* 641 * mark as execed, wakeup the process that vforked (if any) and tell 642 * it that it now has its own resources back 643 */ 644 p->p_flag |= P_EXEC; 645 if (p->p_pptr && (p->p_flag & P_PPWAIT)) { 646 p->p_flag &= ~P_PPWAIT; 647 cv_broadcast(&p->p_pwait); 648 } 649 650 /* 651 * Implement image setuid/setgid. 652 * 653 * Don't honor setuid/setgid if the filesystem prohibits it or if 654 * the process is being traced. 655 * 656 * We disable setuid/setgid/etc in compatibility mode on the basis 657 * that most setugid applications are not written with that 658 * environment in mind, and will therefore almost certainly operate 659 * incorrectly. In principle there's no reason that setugid 660 * applications might not be useful in capability mode, so we may want 661 * to reconsider this conservative design choice in the future. 662 * 663 * XXXMAC: For the time being, use NOSUID to also prohibit 664 * transitions on the file system. 665 */ 666 credential_changing = 0; 667 credential_changing |= (attr.va_mode & S_ISUID) && oldcred->cr_uid != 668 attr.va_uid; 669 credential_changing |= (attr.va_mode & S_ISGID) && oldcred->cr_gid != 670 attr.va_gid; 671 #ifdef MAC 672 will_transition = mac_vnode_execve_will_transition(oldcred, imgp->vp, 673 interpvplabel, imgp); 674 credential_changing |= will_transition; 675 #endif 676 677 if (credential_changing && 678 #ifdef CAPABILITY_MODE 679 ((oldcred->cr_flags & CRED_FLAG_CAPMODE) == 0) && 680 #endif 681 (imgp->vp->v_mount->mnt_flag & MNT_NOSUID) == 0 && 682 (p->p_flag & P_TRACED) == 0) { 683 /* 684 * Turn off syscall tracing for set-id programs, except for 685 * root. Record any set-id flags first to make sure that 686 * we do not regain any tracing during a possible block. 687 */ 688 setsugid(p); 689 690 #ifdef KTRACE 691 if (priv_check_cred(oldcred, PRIV_DEBUG_DIFFCRED, 0)) 692 ktrprocexec(p, &tracecred, &tracevp); 693 #endif 694 /* 695 * Close any file descriptors 0..2 that reference procfs, 696 * then make sure file descriptors 0..2 are in use. 697 * 698 * setugidsafety() may call closef() and then pfind() 699 * which may grab the process lock. 700 * fdcheckstd() may call falloc() which may block to 701 * allocate memory, so temporarily drop the process lock. 702 */ 703 PROC_UNLOCK(p); 704 VOP_UNLOCK(imgp->vp, 0); 705 setugidsafety(td); 706 error = fdcheckstd(td); 707 vn_lock(imgp->vp, LK_SHARED | LK_RETRY); 708 if (error != 0) 709 goto done1; 710 PROC_LOCK(p); 711 /* 712 * Set the new credentials. 713 */ 714 if (attr.va_mode & S_ISUID) 715 change_euid(newcred, euip); 716 if (attr.va_mode & S_ISGID) 717 change_egid(newcred, attr.va_gid); 718 #ifdef MAC 719 if (will_transition) { 720 mac_vnode_execve_transition(oldcred, newcred, imgp->vp, 721 interpvplabel, imgp); 722 } 723 #endif 724 /* 725 * Implement correct POSIX saved-id behavior. 726 * 727 * XXXMAC: Note that the current logic will save the 728 * uid and gid if a MAC domain transition occurs, even 729 * though maybe it shouldn't. 730 */ 731 change_svuid(newcred, newcred->cr_uid); 732 change_svgid(newcred, newcred->cr_gid); 733 p->p_ucred = newcred; 734 newcred = NULL; 735 } else { 736 if (oldcred->cr_uid == oldcred->cr_ruid && 737 oldcred->cr_gid == oldcred->cr_rgid) 738 p->p_flag &= ~P_SUGID; 739 /* 740 * Implement correct POSIX saved-id behavior. 741 * 742 * XXX: It's not clear that the existing behavior is 743 * POSIX-compliant. A number of sources indicate that the 744 * saved uid/gid should only be updated if the new ruid is 745 * not equal to the old ruid, or the new euid is not equal 746 * to the old euid and the new euid is not equal to the old 747 * ruid. The FreeBSD code always updates the saved uid/gid. 748 * Also, this code uses the new (replaced) euid and egid as 749 * the source, which may or may not be the right ones to use. 750 */ 751 if (oldcred->cr_svuid != oldcred->cr_uid || 752 oldcred->cr_svgid != oldcred->cr_gid) { 753 change_svuid(newcred, newcred->cr_uid); 754 change_svgid(newcred, newcred->cr_gid); 755 p->p_ucred = newcred; 756 newcred = NULL; 757 } 758 } 759 760 /* 761 * Store the vp for use in procfs. This vnode was referenced prior 762 * to locking the proc lock. 763 */ 764 textvp = p->p_textvp; 765 p->p_textvp = binvp; 766 767 #ifdef KDTRACE_HOOKS 768 /* 769 * Tell the DTrace fasttrap provider about the exec if it 770 * has declared an interest. 771 */ 772 if (dtrace_fasttrap_exec) 773 dtrace_fasttrap_exec(p); 774 #endif 775 776 /* 777 * Notify others that we exec'd, and clear the P_INEXEC flag 778 * as we're now a bona fide freshly-execed process. 779 */ 780 KNOTE_LOCKED(&p->p_klist, NOTE_EXEC); 781 p->p_flag &= ~P_INEXEC; 782 783 /* clear "fork but no exec" flag, as we _are_ execing */ 784 p->p_acflag &= ~AFORK; 785 786 /* 787 * Free any previous argument cache and replace it with 788 * the new argument cache, if any. 789 */ 790 oldargs = p->p_args; 791 p->p_args = newargs; 792 newargs = NULL; 793 794 #ifdef HWPMC_HOOKS 795 /* 796 * Check if system-wide sampling is in effect or if the 797 * current process is using PMCs. If so, do exec() time 798 * processing. This processing needs to happen AFTER the 799 * P_INEXEC flag is cleared. 800 * 801 * The proc lock needs to be released before taking the PMC 802 * SX. 803 */ 804 if (PMC_SYSTEM_SAMPLING_ACTIVE() || PMC_PROC_IS_USING_PMCS(p)) { 805 PROC_UNLOCK(p); 806 VOP_UNLOCK(imgp->vp, 0); 807 pe.pm_credentialschanged = credential_changing; 808 pe.pm_entryaddr = imgp->entry_addr; 809 810 PMC_CALL_HOOK_X(td, PMC_FN_PROCESS_EXEC, (void *) &pe); 811 vn_lock(imgp->vp, LK_SHARED | LK_RETRY); 812 } else 813 PROC_UNLOCK(p); 814 #else /* !HWPMC_HOOKS */ 815 PROC_UNLOCK(p); 816 #endif 817 818 /* Set values passed into the program in registers. */ 819 if (p->p_sysent->sv_setregs) 820 (*p->p_sysent->sv_setregs)(td, imgp, 821 (u_long)(uintptr_t)stack_base); 822 else 823 exec_setregs(td, imgp, (u_long)(uintptr_t)stack_base); 824 825 vfs_mark_atime(imgp->vp, td->td_ucred); 826 827 SDT_PROBE(proc, kernel, , exec_success, args->fname, 0, 0, 0, 0); 828 829 done1: 830 /* 831 * Free any resources malloc'd earlier that we didn't use. 832 */ 833 uifree(euip); 834 if (newcred == NULL) 835 crfree(oldcred); 836 else 837 crfree(newcred); 838 VOP_UNLOCK(imgp->vp, 0); 839 840 /* 841 * Handle deferred decrement of ref counts. 842 */ 843 if (textvp != NULL) { 844 int tvfslocked; 845 846 tvfslocked = VFS_LOCK_GIANT(textvp->v_mount); 847 vrele(textvp); 848 VFS_UNLOCK_GIANT(tvfslocked); 849 } 850 if (binvp && error != 0) 851 vrele(binvp); 852 #ifdef KTRACE 853 if (tracevp != NULL) { 854 int tvfslocked; 855 856 tvfslocked = VFS_LOCK_GIANT(tracevp->v_mount); 857 vrele(tracevp); 858 VFS_UNLOCK_GIANT(tvfslocked); 859 } 860 if (tracecred != NULL) 861 crfree(tracecred); 862 #endif 863 vn_lock(imgp->vp, LK_SHARED | LK_RETRY); 864 pargs_drop(oldargs); 865 pargs_drop(newargs); 866 if (oldsigacts != NULL) 867 sigacts_free(oldsigacts); 868 869 exec_fail_dealloc: 870 871 /* 872 * free various allocated resources 873 */ 874 if (imgp->firstpage != NULL) 875 exec_unmap_first_page(imgp); 876 877 if (imgp->vp != NULL) { 878 if (args->fname) 879 NDFREE(&nd, NDF_ONLY_PNBUF); 880 if (imgp->opened) 881 VOP_CLOSE(imgp->vp, FREAD, td->td_ucred, td); 882 vput(imgp->vp); 883 } 884 885 if (imgp->object != NULL) 886 vm_object_deallocate(imgp->object); 887 888 free(imgp->freepath, M_TEMP); 889 890 if (error == 0) { 891 PROC_LOCK(p); 892 td->td_dbgflags |= TDB_EXEC; 893 PROC_UNLOCK(p); 894 895 /* 896 * Stop the process here if its stop event mask has 897 * the S_EXEC bit set. 898 */ 899 STOPEVENT(p, S_EXEC, 0); 900 goto done2; 901 } 902 903 exec_fail: 904 /* we're done here, clear P_INEXEC */ 905 PROC_LOCK(p); 906 p->p_flag &= ~P_INEXEC; 907 PROC_UNLOCK(p); 908 909 SDT_PROBE(proc, kernel, , exec_failure, error, 0, 0, 0, 0); 910 911 done2: 912 #ifdef MAC 913 mac_execve_exit(imgp); 914 mac_execve_interpreter_exit(interpvplabel); 915 #endif 916 VFS_UNLOCK_GIANT(vfslocked); 917 exec_free_args(args); 918 919 if (error && imgp->vmspace_destroyed) { 920 /* sorry, no more process anymore. exit gracefully */ 921 exit1(td, W_EXITCODE(0, SIGABRT)); 922 /* NOT REACHED */ 923 } 924 925 #ifdef KTRACE 926 if (error == 0) 927 ktrprocctor(p); 928 #endif 929 930 return (error); 931 } 932 933 int 934 exec_map_first_page(imgp) 935 struct image_params *imgp; 936 { 937 int rv, i; 938 int initial_pagein; 939 vm_page_t ma[VM_INITIAL_PAGEIN]; 940 vm_object_t object; 941 942 if (imgp->firstpage != NULL) 943 exec_unmap_first_page(imgp); 944 945 object = imgp->vp->v_object; 946 if (object == NULL) 947 return (EACCES); 948 VM_OBJECT_LOCK(object); 949 #if VM_NRESERVLEVEL > 0 950 if ((object->flags & OBJ_COLORED) == 0) { 951 object->flags |= OBJ_COLORED; 952 object->pg_color = 0; 953 } 954 #endif 955 ma[0] = vm_page_grab(object, 0, VM_ALLOC_NORMAL | VM_ALLOC_RETRY); 956 if (ma[0]->valid != VM_PAGE_BITS_ALL) { 957 initial_pagein = VM_INITIAL_PAGEIN; 958 if (initial_pagein > object->size) 959 initial_pagein = object->size; 960 for (i = 1; i < initial_pagein; i++) { 961 if ((ma[i] = vm_page_next(ma[i - 1])) != NULL) { 962 if (ma[i]->valid) 963 break; 964 if ((ma[i]->oflags & VPO_BUSY) || ma[i]->busy) 965 break; 966 vm_page_busy(ma[i]); 967 } else { 968 ma[i] = vm_page_alloc(object, i, 969 VM_ALLOC_NORMAL | VM_ALLOC_IFNOTCACHED); 970 if (ma[i] == NULL) 971 break; 972 } 973 } 974 initial_pagein = i; 975 rv = vm_pager_get_pages(object, ma, initial_pagein, 0); 976 ma[0] = vm_page_lookup(object, 0); 977 if ((rv != VM_PAGER_OK) || (ma[0] == NULL)) { 978 if (ma[0] != NULL) { 979 vm_page_lock(ma[0]); 980 vm_page_free(ma[0]); 981 vm_page_unlock(ma[0]); 982 } 983 VM_OBJECT_UNLOCK(object); 984 return (EIO); 985 } 986 } 987 vm_page_lock(ma[0]); 988 vm_page_hold(ma[0]); 989 vm_page_unlock(ma[0]); 990 vm_page_wakeup(ma[0]); 991 VM_OBJECT_UNLOCK(object); 992 993 imgp->firstpage = sf_buf_alloc(ma[0], 0); 994 imgp->image_header = (char *)sf_buf_kva(imgp->firstpage); 995 996 return (0); 997 } 998 999 void 1000 exec_unmap_first_page(imgp) 1001 struct image_params *imgp; 1002 { 1003 vm_page_t m; 1004 1005 if (imgp->firstpage != NULL) { 1006 m = sf_buf_page(imgp->firstpage); 1007 sf_buf_free(imgp->firstpage); 1008 imgp->firstpage = NULL; 1009 vm_page_lock(m); 1010 vm_page_unhold(m); 1011 vm_page_unlock(m); 1012 } 1013 } 1014 1015 /* 1016 * Destroy old address space, and allocate a new stack 1017 * The new stack is only SGROWSIZ large because it is grown 1018 * automatically in trap.c. 1019 */ 1020 int 1021 exec_new_vmspace(imgp, sv) 1022 struct image_params *imgp; 1023 struct sysentvec *sv; 1024 { 1025 int error; 1026 struct proc *p = imgp->proc; 1027 struct vmspace *vmspace = p->p_vmspace; 1028 vm_object_t obj; 1029 vm_offset_t sv_minuser, stack_addr; 1030 vm_map_t map; 1031 u_long ssiz; 1032 1033 imgp->vmspace_destroyed = 1; 1034 imgp->sysent = sv; 1035 1036 /* May be called with Giant held */ 1037 EVENTHANDLER_INVOKE(process_exec, p, imgp); 1038 1039 /* 1040 * Blow away entire process VM, if address space not shared, 1041 * otherwise, create a new VM space so that other threads are 1042 * not disrupted 1043 */ 1044 map = &vmspace->vm_map; 1045 if (map_at_zero) 1046 sv_minuser = sv->sv_minuser; 1047 else 1048 sv_minuser = MAX(sv->sv_minuser, PAGE_SIZE); 1049 if (vmspace->vm_refcnt == 1 && vm_map_min(map) == sv_minuser && 1050 vm_map_max(map) == sv->sv_maxuser) { 1051 shmexit(vmspace); 1052 pmap_remove_pages(vmspace_pmap(vmspace)); 1053 vm_map_remove(map, vm_map_min(map), vm_map_max(map)); 1054 } else { 1055 error = vmspace_exec(p, sv_minuser, sv->sv_maxuser); 1056 if (error) 1057 return (error); 1058 vmspace = p->p_vmspace; 1059 map = &vmspace->vm_map; 1060 } 1061 1062 /* Map a shared page */ 1063 obj = sv->sv_shared_page_obj; 1064 if (obj != NULL) { 1065 vm_object_reference(obj); 1066 error = vm_map_fixed(map, obj, 0, 1067 sv->sv_shared_page_base, sv->sv_shared_page_len, 1068 VM_PROT_READ | VM_PROT_EXECUTE, VM_PROT_ALL, 1069 MAP_COPY_ON_WRITE | MAP_ACC_NO_CHARGE); 1070 if (error) { 1071 vm_object_deallocate(obj); 1072 return (error); 1073 } 1074 } 1075 1076 /* Allocate a new stack */ 1077 if (sv->sv_maxssiz != NULL) 1078 ssiz = *sv->sv_maxssiz; 1079 else 1080 ssiz = maxssiz; 1081 stack_addr = sv->sv_usrstack - ssiz; 1082 error = vm_map_stack(map, stack_addr, (vm_size_t)ssiz, 1083 obj != NULL && imgp->stack_prot != 0 ? imgp->stack_prot : 1084 sv->sv_stackprot, 1085 VM_PROT_ALL, MAP_STACK_GROWS_DOWN); 1086 if (error) 1087 return (error); 1088 1089 #ifdef __ia64__ 1090 /* Allocate a new register stack */ 1091 stack_addr = IA64_BACKINGSTORE; 1092 error = vm_map_stack(map, stack_addr, (vm_size_t)ssiz, 1093 sv->sv_stackprot, VM_PROT_ALL, MAP_STACK_GROWS_UP); 1094 if (error) 1095 return (error); 1096 #endif 1097 1098 /* vm_ssize and vm_maxsaddr are somewhat antiquated concepts in the 1099 * VM_STACK case, but they are still used to monitor the size of the 1100 * process stack so we can check the stack rlimit. 1101 */ 1102 vmspace->vm_ssize = sgrowsiz >> PAGE_SHIFT; 1103 vmspace->vm_maxsaddr = (char *)sv->sv_usrstack - ssiz; 1104 1105 return (0); 1106 } 1107 1108 /* 1109 * Copy out argument and environment strings from the old process address 1110 * space into the temporary string buffer. 1111 */ 1112 int 1113 exec_copyin_args(struct image_args *args, char *fname, 1114 enum uio_seg segflg, char **argv, char **envv) 1115 { 1116 char *argp, *envp; 1117 int error; 1118 size_t length; 1119 1120 bzero(args, sizeof(*args)); 1121 if (argv == NULL) 1122 return (EFAULT); 1123 1124 /* 1125 * Allocate demand-paged memory for the file name, argument, and 1126 * environment strings. 1127 */ 1128 error = exec_alloc_args(args); 1129 if (error != 0) 1130 return (error); 1131 1132 /* 1133 * Copy the file name. 1134 */ 1135 if (fname != NULL) { 1136 args->fname = args->buf; 1137 error = (segflg == UIO_SYSSPACE) ? 1138 copystr(fname, args->fname, PATH_MAX, &length) : 1139 copyinstr(fname, args->fname, PATH_MAX, &length); 1140 if (error != 0) 1141 goto err_exit; 1142 } else 1143 length = 0; 1144 1145 args->begin_argv = args->buf + length; 1146 args->endp = args->begin_argv; 1147 args->stringspace = ARG_MAX; 1148 1149 /* 1150 * extract arguments first 1151 */ 1152 while ((argp = (caddr_t) (intptr_t) fuword(argv++))) { 1153 if (argp == (caddr_t) -1) { 1154 error = EFAULT; 1155 goto err_exit; 1156 } 1157 if ((error = copyinstr(argp, args->endp, 1158 args->stringspace, &length))) { 1159 if (error == ENAMETOOLONG) 1160 error = E2BIG; 1161 goto err_exit; 1162 } 1163 args->stringspace -= length; 1164 args->endp += length; 1165 args->argc++; 1166 } 1167 1168 args->begin_envv = args->endp; 1169 1170 /* 1171 * extract environment strings 1172 */ 1173 if (envv) { 1174 while ((envp = (caddr_t)(intptr_t)fuword(envv++))) { 1175 if (envp == (caddr_t)-1) { 1176 error = EFAULT; 1177 goto err_exit; 1178 } 1179 if ((error = copyinstr(envp, args->endp, 1180 args->stringspace, &length))) { 1181 if (error == ENAMETOOLONG) 1182 error = E2BIG; 1183 goto err_exit; 1184 } 1185 args->stringspace -= length; 1186 args->endp += length; 1187 args->envc++; 1188 } 1189 } 1190 1191 return (0); 1192 1193 err_exit: 1194 exec_free_args(args); 1195 return (error); 1196 } 1197 1198 /* 1199 * Allocate temporary demand-paged, zero-filled memory for the file name, 1200 * argument, and environment strings. Returns zero if the allocation succeeds 1201 * and ENOMEM otherwise. 1202 */ 1203 int 1204 exec_alloc_args(struct image_args *args) 1205 { 1206 1207 args->buf = (char *)kmem_alloc_wait(exec_map, PATH_MAX + ARG_MAX); 1208 return (args->buf != NULL ? 0 : ENOMEM); 1209 } 1210 1211 void 1212 exec_free_args(struct image_args *args) 1213 { 1214 1215 if (args->buf != NULL) { 1216 kmem_free_wakeup(exec_map, (vm_offset_t)args->buf, 1217 PATH_MAX + ARG_MAX); 1218 args->buf = NULL; 1219 } 1220 if (args->fname_buf != NULL) { 1221 free(args->fname_buf, M_TEMP); 1222 args->fname_buf = NULL; 1223 } 1224 } 1225 1226 /* 1227 * Copy strings out to the new process address space, constructing new arg 1228 * and env vector tables. Return a pointer to the base so that it can be used 1229 * as the initial stack pointer. 1230 */ 1231 register_t * 1232 exec_copyout_strings(imgp) 1233 struct image_params *imgp; 1234 { 1235 int argc, envc; 1236 char **vectp; 1237 char *stringp, *destp; 1238 register_t *stack_base; 1239 struct ps_strings *arginfo; 1240 struct proc *p; 1241 size_t execpath_len; 1242 int szsigcode, szps; 1243 char canary[sizeof(long) * 8]; 1244 1245 szps = sizeof(pagesizes[0]) * MAXPAGESIZES; 1246 /* 1247 * Calculate string base and vector table pointers. 1248 * Also deal with signal trampoline code for this exec type. 1249 */ 1250 if (imgp->execpath != NULL && imgp->auxargs != NULL) 1251 execpath_len = strlen(imgp->execpath) + 1; 1252 else 1253 execpath_len = 0; 1254 p = imgp->proc; 1255 szsigcode = 0; 1256 arginfo = (struct ps_strings *)p->p_sysent->sv_psstrings; 1257 if (p->p_sysent->sv_sigcode_base == 0) { 1258 if (p->p_sysent->sv_szsigcode != NULL) 1259 szsigcode = *(p->p_sysent->sv_szsigcode); 1260 } 1261 destp = (caddr_t)arginfo - szsigcode - SPARE_USRSPACE - 1262 roundup(execpath_len, sizeof(char *)) - 1263 roundup(sizeof(canary), sizeof(char *)) - 1264 roundup(szps, sizeof(char *)) - 1265 roundup((ARG_MAX - imgp->args->stringspace), sizeof(char *)); 1266 1267 /* 1268 * install sigcode 1269 */ 1270 if (szsigcode != 0) 1271 copyout(p->p_sysent->sv_sigcode, ((caddr_t)arginfo - 1272 szsigcode), szsigcode); 1273 1274 /* 1275 * Copy the image path for the rtld. 1276 */ 1277 if (execpath_len != 0) { 1278 imgp->execpathp = (uintptr_t)arginfo - szsigcode - execpath_len; 1279 copyout(imgp->execpath, (void *)imgp->execpathp, 1280 execpath_len); 1281 } 1282 1283 /* 1284 * Prepare the canary for SSP. 1285 */ 1286 arc4rand(canary, sizeof(canary), 0); 1287 imgp->canary = (uintptr_t)arginfo - szsigcode - execpath_len - 1288 sizeof(canary); 1289 copyout(canary, (void *)imgp->canary, sizeof(canary)); 1290 imgp->canarylen = sizeof(canary); 1291 1292 /* 1293 * Prepare the pagesizes array. 1294 */ 1295 imgp->pagesizes = (uintptr_t)arginfo - szsigcode - execpath_len - 1296 roundup(sizeof(canary), sizeof(char *)) - szps; 1297 copyout(pagesizes, (void *)imgp->pagesizes, szps); 1298 imgp->pagesizeslen = szps; 1299 1300 /* 1301 * If we have a valid auxargs ptr, prepare some room 1302 * on the stack. 1303 */ 1304 if (imgp->auxargs) { 1305 /* 1306 * 'AT_COUNT*2' is size for the ELF Auxargs data. This is for 1307 * lower compatibility. 1308 */ 1309 imgp->auxarg_size = (imgp->auxarg_size) ? imgp->auxarg_size : 1310 (AT_COUNT * 2); 1311 /* 1312 * The '+ 2' is for the null pointers at the end of each of 1313 * the arg and env vector sets,and imgp->auxarg_size is room 1314 * for argument of Runtime loader. 1315 */ 1316 vectp = (char **)(destp - (imgp->args->argc + 1317 imgp->args->envc + 2 + imgp->auxarg_size) 1318 * sizeof(char *)); 1319 } else { 1320 /* 1321 * The '+ 2' is for the null pointers at the end of each of 1322 * the arg and env vector sets 1323 */ 1324 vectp = (char **)(destp - (imgp->args->argc + imgp->args->envc + 2) * 1325 sizeof(char *)); 1326 } 1327 1328 /* 1329 * vectp also becomes our initial stack base 1330 */ 1331 stack_base = (register_t *)vectp; 1332 1333 stringp = imgp->args->begin_argv; 1334 argc = imgp->args->argc; 1335 envc = imgp->args->envc; 1336 1337 /* 1338 * Copy out strings - arguments and environment. 1339 */ 1340 copyout(stringp, destp, ARG_MAX - imgp->args->stringspace); 1341 1342 /* 1343 * Fill in "ps_strings" struct for ps, w, etc. 1344 */ 1345 suword(&arginfo->ps_argvstr, (long)(intptr_t)vectp); 1346 suword32(&arginfo->ps_nargvstr, argc); 1347 1348 /* 1349 * Fill in argument portion of vector table. 1350 */ 1351 for (; argc > 0; --argc) { 1352 suword(vectp++, (long)(intptr_t)destp); 1353 while (*stringp++ != 0) 1354 destp++; 1355 destp++; 1356 } 1357 1358 /* a null vector table pointer separates the argp's from the envp's */ 1359 suword(vectp++, 0); 1360 1361 suword(&arginfo->ps_envstr, (long)(intptr_t)vectp); 1362 suword32(&arginfo->ps_nenvstr, envc); 1363 1364 /* 1365 * Fill in environment portion of vector table. 1366 */ 1367 for (; envc > 0; --envc) { 1368 suword(vectp++, (long)(intptr_t)destp); 1369 while (*stringp++ != 0) 1370 destp++; 1371 destp++; 1372 } 1373 1374 /* end of vector table is a null pointer */ 1375 suword(vectp, 0); 1376 1377 return (stack_base); 1378 } 1379 1380 /* 1381 * Check permissions of file to execute. 1382 * Called with imgp->vp locked. 1383 * Return 0 for success or error code on failure. 1384 */ 1385 int 1386 exec_check_permissions(imgp) 1387 struct image_params *imgp; 1388 { 1389 struct vnode *vp = imgp->vp; 1390 struct vattr *attr = imgp->attr; 1391 struct thread *td; 1392 int error; 1393 1394 td = curthread; 1395 1396 /* Get file attributes */ 1397 error = VOP_GETATTR(vp, attr, td->td_ucred); 1398 if (error) 1399 return (error); 1400 1401 #ifdef MAC 1402 error = mac_vnode_check_exec(td->td_ucred, imgp->vp, imgp); 1403 if (error) 1404 return (error); 1405 #endif 1406 1407 /* 1408 * 1) Check if file execution is disabled for the filesystem that 1409 * this file resides on. 1410 * 2) Ensure that at least one execute bit is on. Otherwise, a 1411 * privileged user will always succeed, and we don't want this 1412 * to happen unless the file really is executable. 1413 * 3) Ensure that the file is a regular file. 1414 */ 1415 if ((vp->v_mount->mnt_flag & MNT_NOEXEC) || 1416 (attr->va_mode & (S_IXUSR | S_IXGRP | S_IXOTH)) == 0 || 1417 (attr->va_type != VREG)) 1418 return (EACCES); 1419 1420 /* 1421 * Zero length files can't be exec'd 1422 */ 1423 if (attr->va_size == 0) 1424 return (ENOEXEC); 1425 1426 /* 1427 * Check for execute permission to file based on current credentials. 1428 */ 1429 error = VOP_ACCESS(vp, VEXEC, td->td_ucred, td); 1430 if (error) 1431 return (error); 1432 1433 /* 1434 * Check number of open-for-writes on the file and deny execution 1435 * if there are any. 1436 */ 1437 if (vp->v_writecount) 1438 return (ETXTBSY); 1439 1440 /* 1441 * Call filesystem specific open routine (which does nothing in the 1442 * general case). 1443 */ 1444 error = VOP_OPEN(vp, FREAD, td->td_ucred, td, NULL); 1445 if (error == 0) 1446 imgp->opened = 1; 1447 return (error); 1448 } 1449 1450 /* 1451 * Exec handler registration 1452 */ 1453 int 1454 exec_register(execsw_arg) 1455 const struct execsw *execsw_arg; 1456 { 1457 const struct execsw **es, **xs, **newexecsw; 1458 int count = 2; /* New slot and trailing NULL */ 1459 1460 if (execsw) 1461 for (es = execsw; *es; es++) 1462 count++; 1463 newexecsw = malloc(count * sizeof(*es), M_TEMP, M_WAITOK); 1464 if (newexecsw == NULL) 1465 return (ENOMEM); 1466 xs = newexecsw; 1467 if (execsw) 1468 for (es = execsw; *es; es++) 1469 *xs++ = *es; 1470 *xs++ = execsw_arg; 1471 *xs = NULL; 1472 if (execsw) 1473 free(execsw, M_TEMP); 1474 execsw = newexecsw; 1475 return (0); 1476 } 1477 1478 int 1479 exec_unregister(execsw_arg) 1480 const struct execsw *execsw_arg; 1481 { 1482 const struct execsw **es, **xs, **newexecsw; 1483 int count = 1; 1484 1485 if (execsw == NULL) 1486 panic("unregister with no handlers left?\n"); 1487 1488 for (es = execsw; *es; es++) { 1489 if (*es == execsw_arg) 1490 break; 1491 } 1492 if (*es == NULL) 1493 return (ENOENT); 1494 for (es = execsw; *es; es++) 1495 if (*es != execsw_arg) 1496 count++; 1497 newexecsw = malloc(count * sizeof(*es), M_TEMP, M_WAITOK); 1498 if (newexecsw == NULL) 1499 return (ENOMEM); 1500 xs = newexecsw; 1501 for (es = execsw; *es; es++) 1502 if (*es != execsw_arg) 1503 *xs++ = *es; 1504 *xs = NULL; 1505 if (execsw) 1506 free(execsw, M_TEMP); 1507 execsw = newexecsw; 1508 return (0); 1509 } 1510 1511 static vm_object_t shared_page_obj; 1512 static int shared_page_free; 1513 1514 int 1515 shared_page_fill(int size, int align, const char *data) 1516 { 1517 vm_page_t m; 1518 struct sf_buf *s; 1519 vm_offset_t sk; 1520 int res; 1521 1522 VM_OBJECT_LOCK(shared_page_obj); 1523 m = vm_page_grab(shared_page_obj, 0, VM_ALLOC_RETRY); 1524 res = roundup(shared_page_free, align); 1525 if (res + size >= IDX_TO_OFF(shared_page_obj->size)) 1526 res = -1; 1527 else { 1528 VM_OBJECT_UNLOCK(shared_page_obj); 1529 s = sf_buf_alloc(m, SFB_DEFAULT); 1530 sk = sf_buf_kva(s); 1531 bcopy(data, (void *)(sk + res), size); 1532 shared_page_free = res + size; 1533 sf_buf_free(s); 1534 VM_OBJECT_LOCK(shared_page_obj); 1535 } 1536 vm_page_wakeup(m); 1537 VM_OBJECT_UNLOCK(shared_page_obj); 1538 return (res); 1539 } 1540 1541 static void 1542 shared_page_init(void *dummy __unused) 1543 { 1544 vm_page_t m; 1545 1546 shared_page_obj = vm_pager_allocate(OBJT_PHYS, 0, PAGE_SIZE, 1547 VM_PROT_DEFAULT, 0, NULL); 1548 VM_OBJECT_LOCK(shared_page_obj); 1549 m = vm_page_grab(shared_page_obj, 0, VM_ALLOC_RETRY | VM_ALLOC_NOBUSY | 1550 VM_ALLOC_ZERO); 1551 m->valid = VM_PAGE_BITS_ALL; 1552 VM_OBJECT_UNLOCK(shared_page_obj); 1553 } 1554 1555 SYSINIT(shp, SI_SUB_EXEC, SI_ORDER_FIRST, (sysinit_cfunc_t)shared_page_init, 1556 NULL); 1557 1558 void 1559 exec_sysvec_init(void *param) 1560 { 1561 struct sysentvec *sv; 1562 1563 sv = (struct sysentvec *)param; 1564 1565 if ((sv->sv_flags & SV_SHP) == 0) 1566 return; 1567 sv->sv_shared_page_obj = shared_page_obj; 1568 sv->sv_sigcode_base = sv->sv_shared_page_base + 1569 shared_page_fill(*(sv->sv_szsigcode), 16, sv->sv_sigcode); 1570 } 1571