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