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