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 * $FreeBSD$ 27 */ 28 29 #include <sys/param.h> 30 #include <sys/systm.h> 31 #include <sys/lock.h> 32 #include <sys/mutex.h> 33 #include <sys/sysproto.h> 34 #include <sys/signalvar.h> 35 #include <sys/kernel.h> 36 #include <sys/mount.h> 37 #include <sys/filedesc.h> 38 #include <sys/fcntl.h> 39 #include <sys/acct.h> 40 #include <sys/exec.h> 41 #include <sys/imgact.h> 42 #include <sys/imgact_elf.h> 43 #include <sys/wait.h> 44 #include <sys/malloc.h> 45 #include <sys/proc.h> 46 #include <sys/pioctl.h> 47 #include <sys/namei.h> 48 #include <sys/sysent.h> 49 #include <sys/shm.h> 50 #include <sys/sysctl.h> 51 #include <sys/user.h> 52 #include <sys/vnode.h> 53 54 #include <vm/vm.h> 55 #include <vm/vm_param.h> 56 #include <vm/pmap.h> 57 #include <vm/vm_page.h> 58 #include <vm/vm_map.h> 59 #include <vm/vm_kern.h> 60 #include <vm/vm_extern.h> 61 #include <vm/vm_object.h> 62 #include <vm/vm_pager.h> 63 64 #include <machine/reg.h> 65 66 MALLOC_DEFINE(M_PARGS, "proc-args", "Process arguments"); 67 68 static register_t *exec_copyout_strings __P((struct image_params *)); 69 70 /* XXX This should be vm_size_t. */ 71 static u_long ps_strings = PS_STRINGS; 72 SYSCTL_ULONG(_kern, KERN_PS_STRINGS, ps_strings, CTLFLAG_RD, &ps_strings, 0, ""); 73 74 /* XXX This should be vm_size_t. */ 75 static u_long usrstack = USRSTACK; 76 SYSCTL_ULONG(_kern, KERN_USRSTACK, usrstack, CTLFLAG_RD, &usrstack, 0, ""); 77 78 u_long ps_arg_cache_limit = PAGE_SIZE / 16; 79 SYSCTL_ULONG(_kern, OID_AUTO, ps_arg_cache_limit, CTLFLAG_RW, 80 &ps_arg_cache_limit, 0, ""); 81 82 int ps_argsopen = 1; 83 SYSCTL_INT(_kern, OID_AUTO, ps_argsopen, CTLFLAG_RW, &ps_argsopen, 0, ""); 84 85 /* 86 * Each of the items is a pointer to a `const struct execsw', hence the 87 * double pointer here. 88 */ 89 static const struct execsw **execsw; 90 91 #ifndef _SYS_SYSPROTO_H_ 92 struct execve_args { 93 char *fname; 94 char **argv; 95 char **envv; 96 }; 97 #endif 98 99 /* 100 * execve() system call. 101 * 102 * MPSAFE 103 */ 104 int 105 execve(td, uap) 106 struct thread *td; 107 register struct execve_args *uap; 108 { 109 struct proc *p = td->td_proc; 110 struct nameidata nd, *ndp; 111 struct ucred *newcred, *oldcred; 112 register_t *stack_base; 113 int error, len, i; 114 struct image_params image_params, *imgp; 115 struct vattr attr; 116 int (*img_first) __P((struct image_params *)); 117 struct pargs *pa; 118 119 imgp = &image_params; 120 121 /* 122 * Lock the process and set the P_INEXEC flag to indicate that 123 * it should be left alone until we're done here. This is 124 * necessary to avoid race conditions - e.g. in ptrace() - 125 * that might allow a local user to illicitly obtain elevated 126 * privileges. 127 */ 128 mtx_lock(&Giant); 129 PROC_LOCK(p); 130 KASSERT((p->p_flag & P_INEXEC) == 0, 131 (__FUNCTION__ "(): process already has P_INEXEC flag")); 132 p->p_flag |= P_INEXEC; 133 PROC_UNLOCK(p); 134 135 /* XXXKSE */ 136 /* !!!!!!!! we need abort all the other threads of this process before we */ 137 /* proceed beyond his point! */ 138 139 /* 140 * Initialize part of the common data 141 */ 142 imgp->proc = p; 143 imgp->uap = uap; 144 imgp->attr = &attr; 145 imgp->argc = imgp->envc = 0; 146 imgp->argv0 = NULL; 147 imgp->entry_addr = 0; 148 imgp->vmspace_destroyed = 0; 149 imgp->interpreted = 0; 150 imgp->interpreter_name[0] = '\0'; 151 imgp->auxargs = NULL; 152 imgp->vp = NULL; 153 imgp->firstpage = NULL; 154 imgp->ps_strings = 0; 155 imgp->auxarg_size = 0; 156 157 /* 158 * Allocate temporary demand zeroed space for argument and 159 * environment strings 160 */ 161 imgp->stringbase = (char *)kmem_alloc_wait(exec_map, ARG_MAX + PAGE_SIZE); 162 if (imgp->stringbase == NULL) { 163 error = ENOMEM; 164 goto exec_fail; 165 } 166 imgp->stringp = imgp->stringbase; 167 imgp->stringspace = ARG_MAX; 168 imgp->image_header = imgp->stringbase + ARG_MAX; 169 170 /* 171 * Translate the file name. namei() returns a vnode pointer 172 * in ni_vp amoung other things. 173 */ 174 ndp = &nd; 175 NDINIT(ndp, LOOKUP, LOCKLEAF | FOLLOW | SAVENAME, 176 UIO_USERSPACE, uap->fname, td); 177 178 interpret: 179 180 error = namei(ndp); 181 if (error) { 182 kmem_free_wakeup(exec_map, (vm_offset_t)imgp->stringbase, 183 ARG_MAX + PAGE_SIZE); 184 goto exec_fail; 185 } 186 187 imgp->vp = ndp->ni_vp; 188 imgp->fname = uap->fname; 189 190 /* 191 * Check file permissions (also 'opens' file) 192 */ 193 error = exec_check_permissions(imgp); 194 if (error) { 195 VOP_UNLOCK(imgp->vp, 0, td); 196 goto exec_fail_dealloc; 197 } 198 199 error = exec_map_first_page(imgp); 200 VOP_UNLOCK(imgp->vp, 0, td); 201 if (error) 202 goto exec_fail_dealloc; 203 204 /* 205 * If the current process has a special image activator it 206 * wants to try first, call it. For example, emulating shell 207 * scripts differently. 208 */ 209 error = -1; 210 if ((img_first = imgp->proc->p_sysent->sv_imgact_try) != NULL) 211 error = img_first(imgp); 212 213 /* 214 * Loop through the list of image activators, calling each one. 215 * An activator returns -1 if there is no match, 0 on success, 216 * and an error otherwise. 217 */ 218 for (i = 0; error == -1 && execsw[i]; ++i) { 219 if (execsw[i]->ex_imgact == NULL || 220 execsw[i]->ex_imgact == img_first) { 221 continue; 222 } 223 error = (*execsw[i]->ex_imgact)(imgp); 224 } 225 226 if (error) { 227 if (error == -1) 228 error = ENOEXEC; 229 goto exec_fail_dealloc; 230 } 231 232 /* 233 * Special interpreter operation, cleanup and loop up to try to 234 * activate the interpreter. 235 */ 236 if (imgp->interpreted) { 237 exec_unmap_first_page(imgp); 238 /* free name buffer and old vnode */ 239 NDFREE(ndp, NDF_ONLY_PNBUF); 240 vrele(ndp->ni_vp); 241 /* set new name to that of the interpreter */ 242 NDINIT(ndp, LOOKUP, LOCKLEAF | FOLLOW | SAVENAME, 243 UIO_SYSSPACE, imgp->interpreter_name, td); 244 goto interpret; 245 } 246 247 /* 248 * Copy out strings (args and env) and initialize stack base 249 */ 250 stack_base = exec_copyout_strings(imgp); 251 p->p_vmspace->vm_minsaddr = (char *)stack_base; 252 253 /* 254 * If custom stack fixup routine present for this process 255 * let it do the stack setup. 256 * Else stuff argument count as first item on stack 257 */ 258 if (p->p_sysent->sv_fixup) 259 (*p->p_sysent->sv_fixup)(&stack_base, imgp); 260 else 261 suword(--stack_base, imgp->argc); 262 263 /* 264 * For security and other reasons, the file descriptor table cannot 265 * be shared after an exec. 266 */ 267 if (p->p_fd->fd_refcnt > 1) { 268 struct filedesc *tmp; 269 270 tmp = fdcopy(td); 271 fdfree(td); 272 p->p_fd = tmp; 273 } 274 275 /* 276 * For security and other reasons, signal handlers cannot 277 * be shared after an exec. The new process gets a copy of the old 278 * handlers. In execsigs(), the new process will have its signals 279 * reset. 280 */ 281 if (p->p_procsig->ps_refcnt > 1) { 282 struct procsig *newprocsig; 283 284 MALLOC(newprocsig, struct procsig *, sizeof(struct procsig), 285 M_SUBPROC, M_WAITOK); 286 bcopy(p->p_procsig, newprocsig, sizeof(*newprocsig)); 287 p->p_procsig->ps_refcnt--; 288 p->p_procsig = newprocsig; 289 p->p_procsig->ps_refcnt = 1; 290 if (p->p_sigacts == &p->p_uarea->u_sigacts) 291 panic("shared procsig but private sigacts?"); 292 293 p->p_uarea->u_sigacts = *p->p_sigacts; 294 p->p_sigacts = &p->p_uarea->u_sigacts; 295 } 296 /* Stop profiling */ 297 stopprofclock(p); 298 299 /* close files on exec */ 300 fdcloseexec(td); 301 302 /* reset caught signals */ 303 execsigs(p); 304 305 /* name this process - nameiexec(p, ndp) */ 306 len = min(ndp->ni_cnd.cn_namelen,MAXCOMLEN); 307 bcopy(ndp->ni_cnd.cn_nameptr, p->p_comm, len); 308 p->p_comm[len] = 0; 309 310 /* 311 * mark as execed, wakeup the process that vforked (if any) and tell 312 * it that it now has its own resources back 313 */ 314 PROC_LOCK(p); 315 p->p_flag |= P_EXEC; 316 if (p->p_pptr && (p->p_flag & P_PPWAIT)) { 317 p->p_flag &= ~P_PPWAIT; 318 wakeup((caddr_t)p->p_pptr); 319 } 320 321 /* 322 * Implement image setuid/setgid. 323 * 324 * Don't honor setuid/setgid if the filesystem prohibits it or if 325 * the process is being traced. 326 */ 327 oldcred = p->p_ucred; 328 newcred = NULL; 329 if ((((attr.va_mode & VSUID) && oldcred->cr_uid != attr.va_uid) || 330 ((attr.va_mode & VSGID) && oldcred->cr_gid != attr.va_gid)) && 331 (imgp->vp->v_mount->mnt_flag & MNT_NOSUID) == 0 && 332 (p->p_flag & P_TRACED) == 0) { 333 PROC_UNLOCK(p); 334 /* 335 * Turn off syscall tracing for set-id programs, except for 336 * root. Record any set-id flags first to make sure that 337 * we do not regain any tracing during a possible block. 338 */ 339 setsugid(p); 340 if (p->p_tracep && suser_xxx(oldcred, NULL, PRISON_ROOT)) { 341 struct vnode *vtmp; 342 343 if ((vtmp = p->p_tracep) != NULL) { 344 p->p_tracep = NULL; 345 p->p_traceflag = 0; 346 vrele(vtmp); 347 } 348 } 349 /* 350 * Set the new credentials. 351 */ 352 newcred = crdup(oldcred); 353 if (attr.va_mode & VSUID) 354 change_euid(newcred, attr.va_uid); 355 if (attr.va_mode & VSGID) 356 change_egid(newcred, attr.va_gid); 357 setugidsafety(td); 358 } else { 359 if (oldcred->cr_uid == oldcred->cr_ruid && 360 oldcred->cr_gid == oldcred->cr_rgid) 361 p->p_flag &= ~P_SUGID; 362 PROC_UNLOCK(p); 363 } 364 365 /* 366 * Implement correct POSIX saved-id behavior. 367 * 368 * XXX: It's not clear that the existing behavior is 369 * POSIX-compliant. A number of sources indicate that the saved 370 * uid/gid should only be updated if the new ruid is not equal to 371 * the old ruid, or the new euid is not equal to the old euid and 372 * the new euid is not equal to the old ruid. The FreeBSD code 373 * always updates the saved uid/gid. Also, this code uses the new 374 * (replaced) euid and egid as the source, which may or may not be 375 * the right ones to use. 376 */ 377 if (newcred == NULL) { 378 if (oldcred->cr_svuid != oldcred->cr_uid || 379 oldcred->cr_svgid != oldcred->cr_gid) { 380 newcred = crdup(oldcred); 381 change_svuid(newcred, newcred->cr_uid); 382 change_svgid(newcred, newcred->cr_gid); 383 } 384 } else { 385 change_svuid(newcred, newcred->cr_uid); 386 change_svgid(newcred, newcred->cr_gid); 387 } 388 389 if (newcred != NULL) { 390 PROC_LOCK(p); 391 p->p_ucred = newcred; 392 PROC_UNLOCK(p); 393 crfree(oldcred); 394 } 395 396 /* 397 * Store the vp for use in procfs 398 */ 399 if (p->p_textvp) /* release old reference */ 400 vrele(p->p_textvp); 401 VREF(ndp->ni_vp); 402 p->p_textvp = ndp->ni_vp; 403 404 /* 405 * Notify others that we exec'd, and clear the P_INEXEC flag 406 * as we're now a bona fide freshly-execed process. 407 */ 408 PROC_LOCK(p); 409 KNOTE(&p->p_klist, NOTE_EXEC); 410 p->p_flag &= ~P_INEXEC; 411 412 /* 413 * If tracing the process, trap to debugger so breakpoints 414 * can be set before the program executes. 415 */ 416 _STOPEVENT(p, S_EXEC, 0); 417 418 if (p->p_flag & P_TRACED) 419 psignal(p, SIGTRAP); 420 421 /* clear "fork but no exec" flag, as we _are_ execing */ 422 p->p_acflag &= ~AFORK; 423 424 /* Free any previous argument cache */ 425 pa = p->p_args; 426 p->p_args = NULL; 427 PROC_UNLOCK(p); 428 if (pa != NULL && --pa->ar_ref == 0) 429 FREE(pa, M_PARGS); 430 431 /* Set values passed into the program in registers. */ 432 setregs(td, imgp->entry_addr, (u_long)(uintptr_t)stack_base, 433 imgp->ps_strings); 434 435 /* Cache arguments if they fit inside our allowance */ 436 i = imgp->endargs - imgp->stringbase; 437 if (ps_arg_cache_limit >= i + sizeof(struct pargs)) { 438 MALLOC(pa, struct pargs *, sizeof(struct pargs) + i, 439 M_PARGS, M_WAITOK); 440 pa->ar_ref = 1; 441 pa->ar_length = i; 442 bcopy(imgp->stringbase, pa->ar_args, i); 443 PROC_LOCK(p); 444 p->p_args = pa; 445 PROC_UNLOCK(p); 446 } 447 448 exec_fail_dealloc: 449 450 /* 451 * free various allocated resources 452 */ 453 if (imgp->firstpage) 454 exec_unmap_first_page(imgp); 455 456 if (imgp->stringbase != NULL) 457 kmem_free_wakeup(exec_map, (vm_offset_t)imgp->stringbase, 458 ARG_MAX + PAGE_SIZE); 459 460 if (imgp->vp) { 461 NDFREE(ndp, NDF_ONLY_PNBUF); 462 vrele(imgp->vp); 463 } 464 465 if (error == 0) 466 goto done2; 467 468 exec_fail: 469 /* we're done here, clear P_INEXEC */ 470 PROC_LOCK(p); 471 p->p_flag &= ~P_INEXEC; 472 PROC_UNLOCK(p); 473 474 if (imgp->vmspace_destroyed) { 475 /* sorry, no more process anymore. exit gracefully */ 476 exit1(td, W_EXITCODE(0, SIGABRT)); 477 /* NOT REACHED */ 478 error = 0; 479 } 480 done2: 481 mtx_unlock(&Giant); 482 return (error); 483 } 484 485 int 486 exec_map_first_page(imgp) 487 struct image_params *imgp; 488 { 489 int rv, i; 490 int initial_pagein; 491 vm_page_t ma[VM_INITIAL_PAGEIN]; 492 vm_object_t object; 493 494 GIANT_REQUIRED; 495 496 if (imgp->firstpage) { 497 exec_unmap_first_page(imgp); 498 } 499 500 VOP_GETVOBJECT(imgp->vp, &object); 501 502 ma[0] = vm_page_grab(object, 0, VM_ALLOC_NORMAL | VM_ALLOC_RETRY); 503 504 if ((ma[0]->valid & VM_PAGE_BITS_ALL) != VM_PAGE_BITS_ALL) { 505 initial_pagein = VM_INITIAL_PAGEIN; 506 if (initial_pagein > object->size) 507 initial_pagein = object->size; 508 for (i = 1; i < initial_pagein; i++) { 509 if ((ma[i] = vm_page_lookup(object, i)) != NULL) { 510 if ((ma[i]->flags & PG_BUSY) || ma[i]->busy) 511 break; 512 if (ma[i]->valid) 513 break; 514 vm_page_busy(ma[i]); 515 } else { 516 ma[i] = vm_page_alloc(object, i, VM_ALLOC_NORMAL); 517 if (ma[i] == NULL) 518 break; 519 } 520 } 521 initial_pagein = i; 522 523 rv = vm_pager_get_pages(object, ma, initial_pagein, 0); 524 ma[0] = vm_page_lookup(object, 0); 525 526 if ((rv != VM_PAGER_OK) || (ma[0] == NULL) || (ma[0]->valid == 0)) { 527 if (ma[0]) { 528 vm_page_protect(ma[0], VM_PROT_NONE); 529 vm_page_free(ma[0]); 530 } 531 return EIO; 532 } 533 } 534 535 vm_page_wire(ma[0]); 536 vm_page_wakeup(ma[0]); 537 538 pmap_kenter((vm_offset_t) imgp->image_header, VM_PAGE_TO_PHYS(ma[0])); 539 imgp->firstpage = ma[0]; 540 541 return 0; 542 } 543 544 void 545 exec_unmap_first_page(imgp) 546 struct image_params *imgp; 547 { 548 GIANT_REQUIRED; 549 550 if (imgp->firstpage) { 551 pmap_kremove((vm_offset_t) imgp->image_header); 552 vm_page_unwire(imgp->firstpage, 1); 553 imgp->firstpage = NULL; 554 } 555 } 556 557 /* 558 * Destroy old address space, and allocate a new stack 559 * The new stack is only SGROWSIZ large because it is grown 560 * automatically in trap.c. 561 */ 562 int 563 exec_new_vmspace(imgp) 564 struct image_params *imgp; 565 { 566 int error; 567 struct vmspace *vmspace = imgp->proc->p_vmspace; 568 vm_offset_t stack_addr = USRSTACK - maxssiz; 569 vm_map_t map = &vmspace->vm_map; 570 571 GIANT_REQUIRED; 572 573 imgp->vmspace_destroyed = 1; 574 575 /* 576 * Blow away entire process VM, if address space not shared, 577 * otherwise, create a new VM space so that other threads are 578 * not disrupted 579 */ 580 if (vmspace->vm_refcnt == 1) { 581 if (vmspace->vm_shm) 582 shmexit(imgp->proc); 583 pmap_remove_pages(vmspace_pmap(vmspace), 0, VM_MAXUSER_ADDRESS); 584 vm_map_remove(map, 0, VM_MAXUSER_ADDRESS); 585 } else { 586 vmspace_exec(imgp->proc); 587 vmspace = imgp->proc->p_vmspace; 588 map = &vmspace->vm_map; 589 } 590 591 /* Allocate a new stack */ 592 error = vm_map_stack(&vmspace->vm_map, stack_addr, (vm_size_t)maxssiz, 593 VM_PROT_ALL, VM_PROT_ALL, 0); 594 if (error) 595 return (error); 596 597 #ifdef __ia64__ 598 { 599 /* 600 * Allocate backing store. We really need something 601 * similar to vm_map_stack which can allow the backing 602 * store to grow upwards. This will do for now. 603 */ 604 vm_offset_t bsaddr; 605 bsaddr = USRSTACK - 2*maxssiz; 606 error = vm_map_find(&vmspace->vm_map, 0, 0, &bsaddr, 607 4*PAGE_SIZE, 0, 608 VM_PROT_ALL, VM_PROT_ALL, 0); 609 imgp->proc->p_thread.td_md.md_bspstore = bsaddr; 610 } 611 #endif 612 613 /* vm_ssize and vm_maxsaddr are somewhat antiquated concepts in the 614 * VM_STACK case, but they are still used to monitor the size of the 615 * process stack so we can check the stack rlimit. 616 */ 617 vmspace->vm_ssize = sgrowsiz >> PAGE_SHIFT; 618 vmspace->vm_maxsaddr = (char *)USRSTACK - maxssiz; 619 620 return(0); 621 } 622 623 /* 624 * Copy out argument and environment strings from the old process 625 * address space into the temporary string buffer. 626 */ 627 int 628 exec_extract_strings(imgp) 629 struct image_params *imgp; 630 { 631 char **argv, **envv; 632 char *argp, *envp; 633 int error; 634 size_t length; 635 636 /* 637 * extract arguments first 638 */ 639 640 argv = imgp->uap->argv; 641 642 if (argv) { 643 argp = (caddr_t) (intptr_t) fuword(argv); 644 if (argp == (caddr_t) -1) 645 return (EFAULT); 646 if (argp) 647 argv++; 648 if (imgp->argv0) 649 argp = imgp->argv0; 650 if (argp) { 651 do { 652 if (argp == (caddr_t) -1) 653 return (EFAULT); 654 if ((error = copyinstr(argp, imgp->stringp, 655 imgp->stringspace, &length))) { 656 if (error == ENAMETOOLONG) 657 return(E2BIG); 658 return (error); 659 } 660 imgp->stringspace -= length; 661 imgp->stringp += length; 662 imgp->argc++; 663 } while ((argp = (caddr_t) (intptr_t) fuword(argv++))); 664 } 665 } 666 667 imgp->endargs = imgp->stringp; 668 669 /* 670 * extract environment strings 671 */ 672 673 envv = imgp->uap->envv; 674 675 if (envv) { 676 while ((envp = (caddr_t) (intptr_t) fuword(envv++))) { 677 if (envp == (caddr_t) -1) 678 return (EFAULT); 679 if ((error = copyinstr(envp, imgp->stringp, 680 imgp->stringspace, &length))) { 681 if (error == ENAMETOOLONG) 682 return(E2BIG); 683 return (error); 684 } 685 imgp->stringspace -= length; 686 imgp->stringp += length; 687 imgp->envc++; 688 } 689 } 690 691 return (0); 692 } 693 694 /* 695 * Copy strings out to the new process address space, constructing 696 * new arg and env vector tables. Return a pointer to the base 697 * so that it can be used as the initial stack pointer. 698 */ 699 register_t * 700 exec_copyout_strings(imgp) 701 struct image_params *imgp; 702 { 703 int argc, envc; 704 char **vectp; 705 char *stringp, *destp; 706 register_t *stack_base; 707 struct ps_strings *arginfo; 708 int szsigcode; 709 710 /* 711 * Calculate string base and vector table pointers. 712 * Also deal with signal trampoline code for this exec type. 713 */ 714 arginfo = (struct ps_strings *)PS_STRINGS; 715 szsigcode = *(imgp->proc->p_sysent->sv_szsigcode); 716 destp = (caddr_t)arginfo - szsigcode - SPARE_USRSPACE - 717 roundup((ARG_MAX - imgp->stringspace), sizeof(char *)); 718 719 /* 720 * install sigcode 721 */ 722 if (szsigcode) 723 copyout(imgp->proc->p_sysent->sv_sigcode, 724 ((caddr_t)arginfo - szsigcode), szsigcode); 725 726 /* 727 * If we have a valid auxargs ptr, prepare some room 728 * on the stack. 729 */ 730 if (imgp->auxargs) { 731 /* 732 * 'AT_COUNT*2' is size for the ELF Auxargs data. This is for 733 * lower compatibility. 734 */ 735 imgp->auxarg_size = (imgp->auxarg_size) ? imgp->auxarg_size 736 : (AT_COUNT * 2); 737 /* 738 * The '+ 2' is for the null pointers at the end of each of 739 * the arg and env vector sets,and imgp->auxarg_size is room 740 * for argument of Runtime loader. 741 */ 742 vectp = (char **) (destp - (imgp->argc + imgp->envc + 2 + 743 imgp->auxarg_size) * sizeof(char *)); 744 745 } else 746 /* 747 * The '+ 2' is for the null pointers at the end of each of 748 * the arg and env vector sets 749 */ 750 vectp = (char **) 751 (destp - (imgp->argc + imgp->envc + 2) * sizeof(char *)); 752 753 /* 754 * vectp also becomes our initial stack base 755 */ 756 stack_base = (register_t *)vectp; 757 758 stringp = imgp->stringbase; 759 argc = imgp->argc; 760 envc = imgp->envc; 761 762 /* 763 * Copy out strings - arguments and environment. 764 */ 765 copyout(stringp, destp, ARG_MAX - imgp->stringspace); 766 767 /* 768 * Fill in "ps_strings" struct for ps, w, etc. 769 */ 770 suword(&arginfo->ps_argvstr, (long)(intptr_t)vectp); 771 suword(&arginfo->ps_nargvstr, argc); 772 773 /* 774 * Fill in argument portion of vector table. 775 */ 776 for (; argc > 0; --argc) { 777 suword(vectp++, (long)(intptr_t)destp); 778 while (*stringp++ != 0) 779 destp++; 780 destp++; 781 } 782 783 /* a null vector table pointer separates the argp's from the envp's */ 784 suword(vectp++, 0); 785 786 suword(&arginfo->ps_envstr, (long)(intptr_t)vectp); 787 suword(&arginfo->ps_nenvstr, envc); 788 789 /* 790 * Fill in environment portion of vector table. 791 */ 792 for (; envc > 0; --envc) { 793 suword(vectp++, (long)(intptr_t)destp); 794 while (*stringp++ != 0) 795 destp++; 796 destp++; 797 } 798 799 /* end of vector table is a null pointer */ 800 suword(vectp, 0); 801 802 return (stack_base); 803 } 804 805 /* 806 * Check permissions of file to execute. 807 * Called with imgp->vp locked. 808 * Return 0 for success or error code on failure. 809 */ 810 int 811 exec_check_permissions(imgp) 812 struct image_params *imgp; 813 { 814 struct proc *p = imgp->proc; 815 struct vnode *vp = imgp->vp; 816 struct vattr *attr = imgp->attr; 817 int error; 818 819 /* Get file attributes */ 820 error = VOP_GETATTR(vp, attr, p->p_ucred, curthread); /* XXXKSE */ 821 if (error) 822 return (error); 823 824 /* 825 * 1) Check if file execution is disabled for the filesystem that this 826 * file resides on. 827 * 2) Insure that at least one execute bit is on - otherwise root 828 * will always succeed, and we don't want to happen unless the 829 * file really is executable. 830 * 3) Insure that the file is a regular file. 831 */ 832 if ((vp->v_mount->mnt_flag & MNT_NOEXEC) || 833 ((attr->va_mode & 0111) == 0) || 834 (attr->va_type != VREG)) { 835 return (EACCES); 836 } 837 838 /* 839 * Zero length files can't be exec'd 840 */ 841 if (attr->va_size == 0) 842 return (ENOEXEC); 843 844 /* 845 * Check for execute permission to file based on current credentials. 846 */ 847 error = VOP_ACCESS(vp, VEXEC, p->p_ucred, curthread); /* XXXKSE */ 848 if (error) 849 return (error); 850 851 /* 852 * Check number of open-for-writes on the file and deny execution 853 * if there are any. 854 */ 855 if (vp->v_writecount) 856 return (ETXTBSY); 857 858 /* 859 * Call filesystem specific open routine (which does nothing in the 860 * general case). 861 */ 862 error = VOP_OPEN(vp, FREAD, p->p_ucred, curthread); /* XXXKSE */ 863 if (error) 864 return (error); 865 866 return (0); 867 } 868 869 /* 870 * Exec handler registration 871 */ 872 int 873 exec_register(execsw_arg) 874 const struct execsw *execsw_arg; 875 { 876 const struct execsw **es, **xs, **newexecsw; 877 int count = 2; /* New slot and trailing NULL */ 878 879 if (execsw) 880 for (es = execsw; *es; es++) 881 count++; 882 newexecsw = malloc(count * sizeof(*es), M_TEMP, M_WAITOK); 883 if (newexecsw == NULL) 884 return ENOMEM; 885 xs = newexecsw; 886 if (execsw) 887 for (es = execsw; *es; es++) 888 *xs++ = *es; 889 *xs++ = execsw_arg; 890 *xs = NULL; 891 if (execsw) 892 free(execsw, M_TEMP); 893 execsw = newexecsw; 894 return 0; 895 } 896 897 int 898 exec_unregister(execsw_arg) 899 const struct execsw *execsw_arg; 900 { 901 const struct execsw **es, **xs, **newexecsw; 902 int count = 1; 903 904 if (execsw == NULL) 905 panic("unregister with no handlers left?\n"); 906 907 for (es = execsw; *es; es++) { 908 if (*es == execsw_arg) 909 break; 910 } 911 if (*es == NULL) 912 return ENOENT; 913 for (es = execsw; *es; es++) 914 if (*es != execsw_arg) 915 count++; 916 newexecsw = malloc(count * sizeof(*es), M_TEMP, M_WAITOK); 917 if (newexecsw == NULL) 918 return ENOMEM; 919 xs = newexecsw; 920 for (es = execsw; *es; es++) 921 if (*es != execsw_arg) 922 *xs++ = *es; 923 *xs = NULL; 924 if (execsw) 925 free(execsw, M_TEMP); 926 execsw = newexecsw; 927 return 0; 928 } 929