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