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