1994-05-25 09:21:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1993, David Greenman
|
|
|
|
* All rights reserved.
|
1994-05-24 10:09:53 +00:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
1994-05-25 09:21:21 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
1994-05-24 10:09:53 +00:00
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
1994-05-25 09:21:21 +00:00
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
1994-05-24 10:09:53 +00:00
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1998-10-28 13:37:02 +00:00
|
|
|
* $Id: kern_exec.c,v 1.87 1998/10/16 03:55:00 peter Exp $
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
1994-05-25 09:21:21 +00:00
|
|
|
#include <sys/systm.h>
|
1995-11-12 06:43:28 +00:00
|
|
|
#include <sys/sysproto.h>
|
1994-05-25 09:21:21 +00:00
|
|
|
#include <sys/signalvar.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/mount.h>
|
1994-10-02 17:35:40 +00:00
|
|
|
#include <sys/filedesc.h>
|
1995-10-21 08:38:13 +00:00
|
|
|
#include <sys/fcntl.h>
|
1994-05-25 09:21:21 +00:00
|
|
|
#include <sys/acct.h>
|
|
|
|
#include <sys/exec.h>
|
|
|
|
#include <sys/imgact.h>
|
1996-03-10 08:42:54 +00:00
|
|
|
#include <sys/imgact_elf.h>
|
1994-05-25 09:21:21 +00:00
|
|
|
#include <sys/wait.h>
|
1996-05-01 02:43:13 +00:00
|
|
|
#include <sys/proc.h>
|
1997-12-06 04:11:14 +00:00
|
|
|
#include <sys/pioctl.h>
|
1998-10-16 03:55:01 +00:00
|
|
|
#include <sys/malloc.h>
|
1996-05-01 02:43:13 +00:00
|
|
|
#include <sys/namei.h>
|
1995-02-14 19:23:22 +00:00
|
|
|
#include <sys/sysent.h>
|
1994-10-02 17:35:40 +00:00
|
|
|
#include <sys/shm.h>
|
1996-02-24 14:32:53 +00:00
|
|
|
#include <sys/sysctl.h>
|
1996-05-01 02:43:13 +00:00
|
|
|
#include <sys/vnode.h>
|
1997-03-31 11:11:26 +00:00
|
|
|
#include <sys/buf.h>
|
1994-05-25 09:21:21 +00:00
|
|
|
|
|
|
|
#include <vm/vm.h>
|
1995-12-07 12:48:31 +00:00
|
|
|
#include <vm/vm_param.h>
|
|
|
|
#include <vm/vm_prot.h>
|
1997-02-10 02:22:35 +00:00
|
|
|
#include <sys/lock.h>
|
1995-12-07 12:48:31 +00:00
|
|
|
#include <vm/pmap.h>
|
1998-01-11 21:35:38 +00:00
|
|
|
#include <vm/vm_page.h>
|
1995-12-07 12:48:31 +00:00
|
|
|
#include <vm/vm_map.h>
|
1994-05-25 09:21:21 +00:00
|
|
|
#include <vm/vm_kern.h>
|
1995-12-07 12:48:31 +00:00
|
|
|
#include <vm/vm_extern.h>
|
1997-04-18 02:43:05 +00:00
|
|
|
#include <vm/vm_object.h>
|
1997-12-27 02:56:39 +00:00
|
|
|
#include <vm/vm_zone.h>
|
1998-01-11 21:35:38 +00:00
|
|
|
#include <vm/vm_pager.h>
|
1994-05-25 09:21:21 +00:00
|
|
|
|
|
|
|
#include <machine/reg.h>
|
|
|
|
|
1998-06-07 17:13:14 +00:00
|
|
|
static long *exec_copyout_strings __P((struct image_params *));
|
1994-05-25 09:21:21 +00:00
|
|
|
|
1996-06-03 04:09:36 +00:00
|
|
|
static struct ps_strings *ps_strings = PS_STRINGS;
|
1998-08-24 08:39:39 +00:00
|
|
|
SYSCTL_INTPTR(_kern, KERN_PS_STRINGS, ps_strings, 0, &ps_strings, 0, "");
|
1996-02-24 14:32:53 +00:00
|
|
|
|
|
|
|
static caddr_t usrstack = (caddr_t)USRSTACK;
|
1998-08-24 08:39:39 +00:00
|
|
|
SYSCTL_INTPTR(_kern, KERN_USRSTACK, usrstack, 0, &usrstack, 0, "");
|
1994-05-25 09:21:21 +00:00
|
|
|
/*
|
1998-10-16 03:55:01 +00:00
|
|
|
* Each of the items is a pointer to a `const struct execsw', hence the
|
|
|
|
* double pointer here.
|
1994-05-25 09:21:21 +00:00
|
|
|
*/
|
1998-10-16 03:55:01 +00:00
|
|
|
static const struct execsw **execsw;
|
1994-05-25 09:21:21 +00:00
|
|
|
|
1995-11-12 06:43:28 +00:00
|
|
|
#ifndef _SYS_SYSPROTO_H_
|
1995-10-08 00:06:22 +00:00
|
|
|
struct execve_args {
|
|
|
|
char *fname;
|
|
|
|
char **argv;
|
|
|
|
char **envv;
|
|
|
|
};
|
1995-11-12 06:43:28 +00:00
|
|
|
#endif
|
1995-10-08 00:06:22 +00:00
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
/*
|
|
|
|
* execve() system call.
|
|
|
|
*/
|
|
|
|
int
|
1997-11-06 19:29:57 +00:00
|
|
|
execve(p, uap)
|
1994-05-25 09:21:21 +00:00
|
|
|
struct proc *p;
|
|
|
|
register struct execve_args *uap;
|
|
|
|
{
|
|
|
|
struct nameidata nd, *ndp;
|
1998-06-07 17:13:14 +00:00
|
|
|
long *stack_base;
|
1994-09-25 19:34:02 +00:00
|
|
|
int error, len, i;
|
1995-11-06 12:52:37 +00:00
|
|
|
struct image_params image_params, *imgp;
|
1994-05-25 09:21:21 +00:00
|
|
|
struct vattr attr;
|
|
|
|
|
1995-11-06 12:52:37 +00:00
|
|
|
imgp = &image_params;
|
1994-05-25 09:21:21 +00:00
|
|
|
|
|
|
|
/*
|
1995-11-06 12:52:37 +00:00
|
|
|
* Initialize part of the common data
|
1994-05-25 09:21:21 +00:00
|
|
|
*/
|
1995-11-06 12:52:37 +00:00
|
|
|
imgp->proc = p;
|
|
|
|
imgp->uap = uap;
|
|
|
|
imgp->attr = &attr;
|
|
|
|
imgp->argc = imgp->envc = 0;
|
1997-04-23 22:07:05 +00:00
|
|
|
imgp->argv0 = NULL;
|
1995-11-06 12:52:37 +00:00
|
|
|
imgp->entry_addr = 0;
|
|
|
|
imgp->vmspace_destroyed = 0;
|
|
|
|
imgp->interpreted = 0;
|
|
|
|
imgp->interpreter_name[0] = '\0';
|
1996-03-10 08:42:54 +00:00
|
|
|
imgp->auxargs = NULL;
|
1998-01-11 21:35:38 +00:00
|
|
|
imgp->vp = NULL;
|
|
|
|
imgp->firstpage = NULL;
|
1994-05-25 09:21:21 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate temporary demand zeroed space for argument and
|
|
|
|
* environment strings
|
|
|
|
*/
|
1998-01-11 21:35:38 +00:00
|
|
|
imgp->stringbase = (char *)kmem_alloc_wait(exec_map, ARG_MAX + PAGE_SIZE);
|
1995-11-13 10:45:22 +00:00
|
|
|
if (imgp->stringbase == NULL) {
|
1994-05-25 09:21:21 +00:00
|
|
|
error = ENOMEM;
|
|
|
|
goto exec_fail;
|
|
|
|
}
|
1995-11-06 12:52:37 +00:00
|
|
|
imgp->stringp = imgp->stringbase;
|
|
|
|
imgp->stringspace = ARG_MAX;
|
1998-01-11 21:35:38 +00:00
|
|
|
imgp->image_header = imgp->stringbase + ARG_MAX;
|
1994-05-25 09:21:21 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Translate the file name. namei() returns a vnode pointer
|
|
|
|
* in ni_vp amoung other things.
|
|
|
|
*/
|
|
|
|
ndp = &nd;
|
1995-03-25 01:20:38 +00:00
|
|
|
NDINIT(ndp, LOOKUP, LOCKLEAF | FOLLOW | SAVENAME,
|
1995-03-25 01:34:21 +00:00
|
|
|
UIO_USERSPACE, uap->fname, p);
|
1994-05-25 09:21:21 +00:00
|
|
|
|
|
|
|
interpret:
|
|
|
|
|
|
|
|
error = namei(ndp);
|
|
|
|
if (error) {
|
1998-01-11 21:35:38 +00:00
|
|
|
kmem_free_wakeup(exec_map, (vm_offset_t)imgp->stringbase,
|
|
|
|
ARG_MAX + PAGE_SIZE);
|
1995-05-30 08:16:23 +00:00
|
|
|
goto exec_fail;
|
1994-05-25 09:21:21 +00:00
|
|
|
}
|
|
|
|
|
1995-11-06 12:52:37 +00:00
|
|
|
imgp->vp = ndp->ni_vp;
|
1994-05-25 09:21:21 +00:00
|
|
|
|
1995-03-19 23:08:12 +00:00
|
|
|
/*
|
1995-03-19 23:27:57 +00:00
|
|
|
* Check file permissions (also 'opens' file)
|
1995-03-19 23:08:12 +00:00
|
|
|
*/
|
1995-11-06 12:52:37 +00:00
|
|
|
error = exec_check_permissions(imgp);
|
1997-04-04 01:30:33 +00:00
|
|
|
if (error) {
|
|
|
|
VOP_UNLOCK(imgp->vp, 0, p);
|
1994-05-25 09:21:21 +00:00
|
|
|
goto exec_fail_dealloc;
|
1997-04-04 01:30:33 +00:00
|
|
|
}
|
1994-05-25 09:21:21 +00:00
|
|
|
|
1998-01-11 21:35:38 +00:00
|
|
|
error = exec_map_first_page(imgp);
|
1997-03-31 11:11:26 +00:00
|
|
|
VOP_UNLOCK(imgp->vp, 0, p);
|
1997-04-04 04:17:11 +00:00
|
|
|
if (error)
|
1994-05-25 09:21:21 +00:00
|
|
|
goto exec_fail_dealloc;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Loop through list of image activators, calling each one.
|
|
|
|
* If there is no match, the activator returns -1. If there
|
|
|
|
* is a match, but there was an error during the activation,
|
|
|
|
* the error is returned. Otherwise 0 means success. If the
|
|
|
|
* image is interpreted, loop back up and try activating
|
|
|
|
* the interpreter.
|
|
|
|
*/
|
|
|
|
for (i = 0; execsw[i]; ++i) {
|
|
|
|
if (execsw[i]->ex_imgact)
|
1995-11-06 12:52:37 +00:00
|
|
|
error = (*execsw[i]->ex_imgact)(imgp);
|
1994-05-25 09:21:21 +00:00
|
|
|
else
|
|
|
|
continue;
|
|
|
|
if (error == -1)
|
|
|
|
continue;
|
|
|
|
if (error)
|
|
|
|
goto exec_fail_dealloc;
|
1995-11-06 12:52:37 +00:00
|
|
|
if (imgp->interpreted) {
|
1998-01-11 21:35:38 +00:00
|
|
|
exec_unmap_first_page(imgp);
|
1994-05-25 09:21:21 +00:00
|
|
|
/* free old vnode and name buffer */
|
1995-03-19 23:08:12 +00:00
|
|
|
vrele(ndp->ni_vp);
|
1997-09-21 04:24:27 +00:00
|
|
|
zfree(namei_zone, ndp->ni_cnd.cn_pnbuf);
|
1994-05-25 09:21:21 +00:00
|
|
|
/* set new name to that of the interpreter */
|
1995-03-25 01:20:38 +00:00
|
|
|
NDINIT(ndp, LOOKUP, LOCKLEAF | FOLLOW | SAVENAME,
|
1995-11-06 12:52:37 +00:00
|
|
|
UIO_SYSSPACE, imgp->interpreter_name, p);
|
1994-05-25 09:21:21 +00:00
|
|
|
goto interpret;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* If we made it through all the activators and none matched, exit. */
|
|
|
|
if (error == -1) {
|
|
|
|
error = ENOEXEC;
|
|
|
|
goto exec_fail_dealloc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copy out strings (args and env) and initialize stack base
|
|
|
|
*/
|
1995-11-06 12:52:37 +00:00
|
|
|
stack_base = exec_copyout_strings(imgp);
|
1994-05-25 09:21:21 +00:00
|
|
|
p->p_vmspace->vm_minsaddr = (char *)stack_base;
|
|
|
|
|
|
|
|
/*
|
1995-02-14 19:23:22 +00:00
|
|
|
* If custom stack fixup routine present for this process
|
|
|
|
* let it do the stack setup.
|
|
|
|
* Else stuff argument count as first item on stack
|
1994-05-25 09:21:21 +00:00
|
|
|
*/
|
1995-02-14 19:23:22 +00:00
|
|
|
if (p->p_sysent->sv_fixup)
|
1995-11-06 12:52:37 +00:00
|
|
|
(*p->p_sysent->sv_fixup)(&stack_base, imgp);
|
1995-02-14 19:23:22 +00:00
|
|
|
else
|
1995-11-06 12:52:37 +00:00
|
|
|
suword(--stack_base, imgp->argc);
|
1994-05-25 09:21:21 +00:00
|
|
|
|
1997-08-04 05:39:24 +00:00
|
|
|
/*
|
|
|
|
* For security and other reasons, the file descriptor table cannot
|
|
|
|
* be shared after an exec.
|
|
|
|
*/
|
|
|
|
if (p->p_fd->fd_refcnt > 1) {
|
|
|
|
struct filedesc *tmp;
|
|
|
|
|
|
|
|
tmp = fdcopy(p);
|
|
|
|
fdfree(p);
|
|
|
|
p->p_fd = tmp;
|
|
|
|
}
|
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
/* close files on exec */
|
|
|
|
fdcloseexec(p);
|
|
|
|
|
|
|
|
/* reset caught signals */
|
|
|
|
execsigs(p);
|
|
|
|
|
|
|
|
/* name this process - nameiexec(p, ndp) */
|
|
|
|
len = min(ndp->ni_cnd.cn_namelen,MAXCOMLEN);
|
|
|
|
bcopy(ndp->ni_cnd.cn_nameptr, p->p_comm, len);
|
|
|
|
p->p_comm[len] = 0;
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
/*
|
1996-04-29 15:07:59 +00:00
|
|
|
* mark as execed, wakeup the process that vforked (if any) and tell
|
1998-04-17 22:37:19 +00:00
|
|
|
* it that it now has its own resources back
|
1994-05-25 09:21:21 +00:00
|
|
|
*/
|
|
|
|
p->p_flag |= P_EXEC;
|
|
|
|
if (p->p_pptr && (p->p_flag & P_PPWAIT)) {
|
|
|
|
p->p_flag &= ~P_PPWAIT;
|
|
|
|
wakeup((caddr_t)p->p_pptr);
|
|
|
|
}
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
/*
|
1997-08-04 05:39:24 +00:00
|
|
|
* Implement image setuid/setgid.
|
|
|
|
*
|
|
|
|
* Don't honor setuid/setgid if the filesystem prohibits it or if
|
|
|
|
* the process is being traced.
|
1994-05-25 09:21:21 +00:00
|
|
|
*/
|
1997-10-15 18:28:34 +00:00
|
|
|
if ((attr.va_mode & VSUID && p->p_ucred->cr_uid != attr.va_uid ||
|
|
|
|
attr.va_mode & VSGID && p->p_ucred->cr_gid != attr.va_gid) &&
|
1997-08-04 05:39:24 +00:00
|
|
|
(imgp->vp->v_mount->mnt_flag & MNT_NOSUID) == 0 &&
|
1995-11-06 12:52:37 +00:00
|
|
|
(p->p_flag & P_TRACED) == 0) {
|
|
|
|
/*
|
|
|
|
* Turn off syscall tracing for set-id programs, except for
|
|
|
|
* root.
|
|
|
|
*/
|
|
|
|
if (p->p_tracep && suser(p->p_ucred, &p->p_acflag)) {
|
|
|
|
p->p_traceflag = 0;
|
|
|
|
vrele(p->p_tracep);
|
|
|
|
p->p_tracep = NULL;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Set the new credentials.
|
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
p->p_ucred = crcopy(p->p_ucred);
|
1995-11-06 12:52:37 +00:00
|
|
|
if (attr.va_mode & VSUID)
|
|
|
|
p->p_ucred->cr_uid = attr.va_uid;
|
|
|
|
if (attr.va_mode & VSGID)
|
1997-10-15 18:28:34 +00:00
|
|
|
p->p_ucred->cr_gid = attr.va_gid;
|
1997-12-20 03:05:47 +00:00
|
|
|
setsugid(p);
|
1995-11-06 12:52:37 +00:00
|
|
|
} else {
|
Make our v_usecount vnode reference count work identically to the
original BSD code. The association between the vnode and the vm_object
no longer includes reference counts. The major difference is that
vm_object's are no longer freed gratuitiously from the vnode, and so
once an object is created for the vnode, it will last as long as the
vnode does.
When a vnode object reference count is incremented, then the underlying
vnode reference count is incremented also. The two "objects" are now
more intimately related, and so the interactions are now much less
complex.
When vnodes are now normally placed onto the free queue with an object still
attached. The rundown of the object happens at vnode rundown time, and
happens with exactly the same filesystem semantics of the original VFS
code. There is absolutely no need for vnode_pager_uncache and other
travesties like that anymore.
A side-effect of these changes is that SMP locking should be much simpler,
the I/O copyin/copyout optimizations work, NFS should be more ponderable,
and further work on layered filesystems should be less frustrating, because
of the totally coherent management of the vnode objects and vnodes.
Please be careful with your system while running this code, but I would
greatly appreciate feedback as soon a reasonably possible.
1998-01-06 05:26:17 +00:00
|
|
|
if (p->p_ucred->cr_uid == p->p_cred->p_ruid &&
|
1997-02-19 03:51:34 +00:00
|
|
|
p->p_ucred->cr_gid == p->p_cred->p_rgid)
|
|
|
|
p->p_flag &= ~P_SUGID;
|
1994-05-25 09:21:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1995-11-06 12:52:37 +00:00
|
|
|
* Implement correct POSIX saved-id behavior.
|
1994-05-25 09:21:21 +00:00
|
|
|
*/
|
|
|
|
p->p_cred->p_svuid = p->p_ucred->cr_uid;
|
|
|
|
p->p_cred->p_svgid = p->p_ucred->cr_gid;
|
|
|
|
|
1994-09-24 16:58:43 +00:00
|
|
|
/*
|
|
|
|
* Store the vp for use in procfs
|
|
|
|
*/
|
|
|
|
if (p->p_textvp) /* release old reference */
|
|
|
|
vrele(p->p_textvp);
|
|
|
|
VREF(ndp->ni_vp);
|
|
|
|
p->p_textvp = ndp->ni_vp;
|
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
/*
|
|
|
|
* If tracing the process, trap to debugger so breakpoints
|
|
|
|
* can be set before the program executes.
|
|
|
|
*/
|
1997-12-06 04:11:14 +00:00
|
|
|
STOPEVENT(p, S_EXEC, 0);
|
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
if (p->p_flag & P_TRACED)
|
|
|
|
psignal(p, SIGTRAP);
|
|
|
|
|
|
|
|
/* clear "fork but no exec" flag, as we _are_ execing */
|
|
|
|
p->p_acflag &= ~AFORK;
|
|
|
|
|
|
|
|
/* Set entry address */
|
1998-07-15 06:19:33 +00:00
|
|
|
setregs(p, imgp->entry_addr, (u_long)(uintptr_t)stack_base);
|
1994-05-25 09:21:21 +00:00
|
|
|
|
1998-01-11 21:35:38 +00:00
|
|
|
exec_fail_dealloc:
|
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
/*
|
|
|
|
* free various allocated resources
|
|
|
|
*/
|
1998-01-11 21:35:38 +00:00
|
|
|
if (imgp->firstpage)
|
|
|
|
exec_unmap_first_page(imgp);
|
1994-05-25 09:21:21 +00:00
|
|
|
|
1995-11-13 10:45:22 +00:00
|
|
|
if (imgp->stringbase != NULL)
|
1998-01-11 21:35:38 +00:00
|
|
|
kmem_free_wakeup(exec_map, (vm_offset_t)imgp->stringbase,
|
|
|
|
ARG_MAX + PAGE_SIZE);
|
|
|
|
|
1997-04-04 07:30:06 +00:00
|
|
|
if (ndp->ni_vp) {
|
1995-03-19 23:08:12 +00:00
|
|
|
vrele(ndp->ni_vp);
|
1997-09-21 04:24:27 +00:00
|
|
|
zfree(namei_zone, ndp->ni_cnd.cn_pnbuf);
|
1997-04-04 07:30:06 +00:00
|
|
|
}
|
1994-05-25 09:21:21 +00:00
|
|
|
|
1998-01-11 21:35:38 +00:00
|
|
|
if (error == 0)
|
|
|
|
return (0);
|
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
exec_fail:
|
1995-11-06 12:52:37 +00:00
|
|
|
if (imgp->vmspace_destroyed) {
|
1994-05-25 09:21:21 +00:00
|
|
|
/* sorry, no more process anymore. exit gracefully */
|
|
|
|
exit1(p, W_EXITCODE(0, SIGABRT));
|
|
|
|
/* NOT REACHED */
|
|
|
|
return(0);
|
|
|
|
} else {
|
|
|
|
return(error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-01-11 21:35:38 +00:00
|
|
|
int
|
|
|
|
exec_map_first_page(imgp)
|
|
|
|
struct image_params *imgp;
|
|
|
|
{
|
1998-02-05 03:32:49 +00:00
|
|
|
int s, rv, i;
|
|
|
|
int initial_pagein;
|
|
|
|
vm_page_t ma[VM_INITIAL_PAGEIN];
|
1998-01-11 21:35:38 +00:00
|
|
|
vm_object_t object;
|
|
|
|
|
|
|
|
|
|
|
|
if (imgp->firstpage) {
|
|
|
|
exec_unmap_first_page(imgp);
|
|
|
|
}
|
|
|
|
|
|
|
|
object = imgp->vp->v_object;
|
|
|
|
s = splvm();
|
|
|
|
|
1998-02-05 03:32:49 +00:00
|
|
|
ma[0] = vm_page_grab(object, 0, VM_ALLOC_NORMAL | VM_ALLOC_RETRY);
|
|
|
|
|
|
|
|
if ((ma[0]->valid & VM_PAGE_BITS_ALL) != VM_PAGE_BITS_ALL) {
|
|
|
|
initial_pagein = VM_INITIAL_PAGEIN;
|
|
|
|
if (initial_pagein > object->size)
|
|
|
|
initial_pagein = object->size;
|
|
|
|
for (i = 1; i < initial_pagein; i++) {
|
|
|
|
if (ma[i] = vm_page_lookup(object, i)) {
|
|
|
|
if ((ma[i]->flags & PG_BUSY) || ma[i]->busy)
|
|
|
|
break;
|
|
|
|
if (ma[i]->valid)
|
|
|
|
break;
|
1998-09-04 08:06:57 +00:00
|
|
|
vm_page_busy(ma[i]);
|
1998-02-05 03:32:49 +00:00
|
|
|
} else {
|
|
|
|
ma[i] = vm_page_alloc(object, i, VM_ALLOC_NORMAL);
|
|
|
|
if (ma[i] == NULL)
|
|
|
|
break;
|
|
|
|
}
|
1998-01-11 21:35:38 +00:00
|
|
|
}
|
1998-02-05 03:32:49 +00:00
|
|
|
initial_pagein = i;
|
1998-01-11 21:35:38 +00:00
|
|
|
|
1998-02-05 03:32:49 +00:00
|
|
|
rv = vm_pager_get_pages(object, ma, initial_pagein, 0);
|
|
|
|
ma[0] = vm_page_lookup(object, 0);
|
1998-01-11 21:35:38 +00:00
|
|
|
|
1998-03-08 06:21:33 +00:00
|
|
|
if ((rv != VM_PAGER_OK) || (ma[0] == NULL) || (ma[0]->valid == 0)) {
|
1998-06-07 17:13:14 +00:00
|
|
|
if (ma[0]) {
|
|
|
|
vm_page_protect(ma[0], VM_PROT_NONE);
|
|
|
|
vm_page_free(ma[0]);
|
|
|
|
}
|
1998-01-11 21:35:38 +00:00
|
|
|
splx(s);
|
|
|
|
return EIO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-02-05 03:32:49 +00:00
|
|
|
vm_page_wire(ma[0]);
|
1998-09-04 08:06:57 +00:00
|
|
|
vm_page_wakeup(ma[0]);
|
1998-01-11 21:35:38 +00:00
|
|
|
splx(s);
|
|
|
|
|
1998-02-05 03:32:49 +00:00
|
|
|
pmap_kenter((vm_offset_t) imgp->image_header, VM_PAGE_TO_PHYS(ma[0]));
|
|
|
|
imgp->firstpage = ma[0];
|
1998-01-11 21:35:38 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
exec_unmap_first_page(imgp)
|
|
|
|
struct image_params *imgp;
|
|
|
|
{
|
|
|
|
if (imgp->firstpage) {
|
|
|
|
pmap_kremove((vm_offset_t) imgp->image_header);
|
1998-10-28 13:37:02 +00:00
|
|
|
vm_page_unwire(imgp->firstpage, 1);
|
1998-01-11 21:35:38 +00:00
|
|
|
imgp->firstpage = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
/*
|
|
|
|
* Destroy old address space, and allocate a new stack
|
|
|
|
* The new stack is only SGROWSIZ large because it is grown
|
|
|
|
* automatically in trap.c.
|
|
|
|
*/
|
|
|
|
int
|
1995-11-06 12:52:37 +00:00
|
|
|
exec_new_vmspace(imgp)
|
|
|
|
struct image_params *imgp;
|
1994-05-25 09:21:21 +00:00
|
|
|
{
|
|
|
|
int error;
|
1995-11-06 12:52:37 +00:00
|
|
|
struct vmspace *vmspace = imgp->proc->p_vmspace;
|
1994-05-25 09:21:21 +00:00
|
|
|
caddr_t stack_addr = (caddr_t) (USRSTACK - SGROWSIZ);
|
1997-04-11 23:37:23 +00:00
|
|
|
vm_map_t map = &vmspace->vm_map;
|
1994-05-25 09:21:21 +00:00
|
|
|
|
1995-11-06 12:52:37 +00:00
|
|
|
imgp->vmspace_destroyed = 1;
|
1994-05-25 09:21:21 +00:00
|
|
|
|
1997-04-11 23:37:23 +00:00
|
|
|
/*
|
|
|
|
* Blow away entire process VM, if address space not shared,
|
|
|
|
* otherwise, create a new VM space so that other threads are
|
|
|
|
* not disrupted
|
|
|
|
*/
|
|
|
|
if (vmspace->vm_refcnt == 1) {
|
|
|
|
if (vmspace->vm_shm)
|
|
|
|
shmexit(imgp->proc);
|
|
|
|
pmap_remove_pages(&vmspace->vm_pmap, 0, USRSTACK);
|
|
|
|
vm_map_remove(map, 0, USRSTACK);
|
|
|
|
} else {
|
1997-04-13 03:05:31 +00:00
|
|
|
vmspace_exec(imgp->proc);
|
|
|
|
vmspace = imgp->proc->p_vmspace;
|
1997-04-11 23:37:23 +00:00
|
|
|
map = &vmspace->vm_map;
|
|
|
|
}
|
1994-05-25 09:21:21 +00:00
|
|
|
|
|
|
|
/* Allocate a new stack */
|
1998-01-11 21:35:38 +00:00
|
|
|
error = vm_map_insert(&vmspace->vm_map, NULL, 0,
|
|
|
|
(vm_offset_t) stack_addr, (vm_offset_t) USRSTACK,
|
|
|
|
VM_PROT_ALL, VM_PROT_ALL, 0);
|
1994-05-25 09:21:21 +00:00
|
|
|
if (error)
|
1998-01-11 21:35:38 +00:00
|
|
|
return (error);
|
1994-05-25 09:21:21 +00:00
|
|
|
|
|
|
|
vmspace->vm_ssize = SGROWSIZ >> PAGE_SHIFT;
|
|
|
|
|
|
|
|
/* Initialize maximum stack address */
|
|
|
|
vmspace->vm_maxsaddr = (char *)USRSTACK - MAXSSIZ;
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copy out argument and environment strings from the old process
|
|
|
|
* address space into the temporary string buffer.
|
|
|
|
*/
|
|
|
|
int
|
1995-11-06 12:52:37 +00:00
|
|
|
exec_extract_strings(imgp)
|
|
|
|
struct image_params *imgp;
|
1994-05-25 09:21:21 +00:00
|
|
|
{
|
|
|
|
char **argv, **envv;
|
|
|
|
char *argp, *envp;
|
1998-06-07 17:13:14 +00:00
|
|
|
int error;
|
|
|
|
size_t length;
|
1994-05-25 09:21:21 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* extract arguments first
|
|
|
|
*/
|
|
|
|
|
1995-11-06 12:52:37 +00:00
|
|
|
argv = imgp->uap->argv;
|
1994-05-25 09:21:21 +00:00
|
|
|
|
1994-08-24 10:53:53 +00:00
|
|
|
if (argv) {
|
1998-07-15 06:19:33 +00:00
|
|
|
argp = (caddr_t) (intptr_t) fuword(argv);
|
1997-04-23 22:07:05 +00:00
|
|
|
if (argp == (caddr_t) -1)
|
|
|
|
return (EFAULT);
|
|
|
|
if (argp)
|
|
|
|
argv++;
|
|
|
|
if (imgp->argv0)
|
|
|
|
argp = imgp->argv0;
|
|
|
|
if (argp) {
|
|
|
|
do {
|
|
|
|
if (argp == (caddr_t) -1)
|
|
|
|
return (EFAULT);
|
|
|
|
if ((error = copyinstr(argp, imgp->stringp,
|
|
|
|
imgp->stringspace, &length))) {
|
|
|
|
if (error == ENAMETOOLONG)
|
|
|
|
return(E2BIG);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
imgp->stringspace -= length;
|
|
|
|
imgp->stringp += length;
|
|
|
|
imgp->argc++;
|
1998-07-15 06:19:33 +00:00
|
|
|
} while ((argp = (caddr_t) (intptr_t) fuword(argv++)));
|
1994-05-25 09:21:21 +00:00
|
|
|
}
|
1997-04-23 22:07:05 +00:00
|
|
|
}
|
1994-05-25 09:21:21 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* extract environment strings
|
|
|
|
*/
|
|
|
|
|
1995-11-06 12:52:37 +00:00
|
|
|
envv = imgp->uap->envv;
|
1994-05-25 09:21:21 +00:00
|
|
|
|
1994-08-24 10:53:53 +00:00
|
|
|
if (envv) {
|
1998-07-15 06:19:33 +00:00
|
|
|
while ((envp = (caddr_t) (intptr_t) fuword(envv++))) {
|
1994-05-25 09:21:21 +00:00
|
|
|
if (envp == (caddr_t) -1)
|
|
|
|
return (EFAULT);
|
1995-11-06 12:52:37 +00:00
|
|
|
if ((error = copyinstr(envp, imgp->stringp,
|
|
|
|
imgp->stringspace, &length))) {
|
1994-08-24 10:53:53 +00:00
|
|
|
if (error == ENAMETOOLONG)
|
1994-05-25 09:21:21 +00:00
|
|
|
return(E2BIG);
|
1994-08-24 10:53:53 +00:00
|
|
|
return (error);
|
|
|
|
}
|
1995-11-06 12:52:37 +00:00
|
|
|
imgp->stringspace -= length;
|
|
|
|
imgp->stringp += length;
|
|
|
|
imgp->envc++;
|
1994-05-25 09:21:21 +00:00
|
|
|
}
|
1994-08-24 10:53:53 +00:00
|
|
|
}
|
1994-05-25 09:21:21 +00:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copy strings out to the new process address space, constructing
|
|
|
|
* new arg and env vector tables. Return a pointer to the base
|
|
|
|
* so that it can be used as the initial stack pointer.
|
|
|
|
*/
|
1998-06-07 17:13:14 +00:00
|
|
|
long *
|
1995-11-06 12:52:37 +00:00
|
|
|
exec_copyout_strings(imgp)
|
|
|
|
struct image_params *imgp;
|
1994-05-25 09:21:21 +00:00
|
|
|
{
|
|
|
|
int argc, envc;
|
|
|
|
char **vectp;
|
|
|
|
char *stringp, *destp;
|
1998-06-07 17:13:14 +00:00
|
|
|
long *stack_base;
|
1994-08-06 09:06:31 +00:00
|
|
|
struct ps_strings *arginfo;
|
Mega-commit for Linux emulator update.. This has been stress tested under
netscape-2.0 for Linux running all the Java stuff. The scrollbars are now
working, at least on my machine. (whew! :-)
I'm uncomfortable with the size of this commit, but it's too
inter-dependant to easily seperate out.
The main changes:
COMPAT_LINUX is *GONE*. Most of the code has been moved out of the i386
machine dependent section into the linux emulator itself. The int 0x80
syscall code was almost identical to the lcall 7,0 code and a minor tweak
allows them to both be used with the same C code. All kernels can now
just modload the lkm and it'll DTRT without having to rebuild the kernel
first. Like IBCS2, you can statically compile it in with "options LINUX".
A pile of new syscalls implemented, including getdents(), llseek(),
readv(), writev(), msync(), personality(). The Linux-ELF libraries want
to use some of these.
linux_select() now obeys Linux semantics, ie: returns the time remaining
of the timeout value rather than leaving it the original value.
Quite a few bugs removed, including incorrect arguments being used in
syscalls.. eg: mixups between passing the sigset as an int, vs passing
it as a pointer and doing a copyin(), missing return values, unhandled
cases, SIOC* ioctls, etc.
The build for the code has changed. i386/conf/files now knows how
to build linux_genassym and generate linux_assym.h on the fly.
Supporting changes elsewhere in the kernel:
The user-mode signal trampoline has moved from the U area to immediately
below the top of the stack (below PS_STRINGS). This allows the different
binary emulations to have their own signal trampoline code (which gets rid
of the hardwired syscall 103 (sigreturn on BSD, syslog on Linux)) and so
that the emulator can provide the exact "struct sigcontext *" argument to
the program's signal handlers.
The sigstack's "ss_flags" now uses SS_DISABLE and SS_ONSTACK flags, which
have the same values as the re-used SA_DISABLE and SA_ONSTACK which are
intended for sigaction only. This enables the support of a SA_RESETHAND
flag to sigaction to implement the gross SYSV and Linux SA_ONESHOT signal
semantics where the signal handler is reset when it's triggered.
makesyscalls.sh no longer appends the struct sysentvec on the end of the
generated init_sysent.c code. It's a lot saner to have it in a seperate
file rather than trying to update the structure inside the awk script. :-)
At exec time, the dozen bytes or so of signal trampoline code are copied
to the top of the user's stack, rather than obtaining the trampoline code
the old way by getting a clone of the parent's user area. This allows
Linux and native binaries to freely exec each other without getting
trampolines mixed up.
1996-03-02 19:38:20 +00:00
|
|
|
int szsigcode;
|
1994-05-25 09:21:21 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Calculate string base and vector table pointers.
|
Mega-commit for Linux emulator update.. This has been stress tested under
netscape-2.0 for Linux running all the Java stuff. The scrollbars are now
working, at least on my machine. (whew! :-)
I'm uncomfortable with the size of this commit, but it's too
inter-dependant to easily seperate out.
The main changes:
COMPAT_LINUX is *GONE*. Most of the code has been moved out of the i386
machine dependent section into the linux emulator itself. The int 0x80
syscall code was almost identical to the lcall 7,0 code and a minor tweak
allows them to both be used with the same C code. All kernels can now
just modload the lkm and it'll DTRT without having to rebuild the kernel
first. Like IBCS2, you can statically compile it in with "options LINUX".
A pile of new syscalls implemented, including getdents(), llseek(),
readv(), writev(), msync(), personality(). The Linux-ELF libraries want
to use some of these.
linux_select() now obeys Linux semantics, ie: returns the time remaining
of the timeout value rather than leaving it the original value.
Quite a few bugs removed, including incorrect arguments being used in
syscalls.. eg: mixups between passing the sigset as an int, vs passing
it as a pointer and doing a copyin(), missing return values, unhandled
cases, SIOC* ioctls, etc.
The build for the code has changed. i386/conf/files now knows how
to build linux_genassym and generate linux_assym.h on the fly.
Supporting changes elsewhere in the kernel:
The user-mode signal trampoline has moved from the U area to immediately
below the top of the stack (below PS_STRINGS). This allows the different
binary emulations to have their own signal trampoline code (which gets rid
of the hardwired syscall 103 (sigreturn on BSD, syslog on Linux)) and so
that the emulator can provide the exact "struct sigcontext *" argument to
the program's signal handlers.
The sigstack's "ss_flags" now uses SS_DISABLE and SS_ONSTACK flags, which
have the same values as the re-used SA_DISABLE and SA_ONSTACK which are
intended for sigaction only. This enables the support of a SA_RESETHAND
flag to sigaction to implement the gross SYSV and Linux SA_ONESHOT signal
semantics where the signal handler is reset when it's triggered.
makesyscalls.sh no longer appends the struct sysentvec on the end of the
generated init_sysent.c code. It's a lot saner to have it in a seperate
file rather than trying to update the structure inside the awk script. :-)
At exec time, the dozen bytes or so of signal trampoline code are copied
to the top of the user's stack, rather than obtaining the trampoline code
the old way by getting a clone of the parent's user area. This allows
Linux and native binaries to freely exec each other without getting
trampolines mixed up.
1996-03-02 19:38:20 +00:00
|
|
|
* Also deal with signal trampoline code for this exec type.
|
1994-05-25 09:21:21 +00:00
|
|
|
*/
|
1994-08-06 09:06:31 +00:00
|
|
|
arginfo = PS_STRINGS;
|
Mega-commit for Linux emulator update.. This has been stress tested under
netscape-2.0 for Linux running all the Java stuff. The scrollbars are now
working, at least on my machine. (whew! :-)
I'm uncomfortable with the size of this commit, but it's too
inter-dependant to easily seperate out.
The main changes:
COMPAT_LINUX is *GONE*. Most of the code has been moved out of the i386
machine dependent section into the linux emulator itself. The int 0x80
syscall code was almost identical to the lcall 7,0 code and a minor tweak
allows them to both be used with the same C code. All kernels can now
just modload the lkm and it'll DTRT without having to rebuild the kernel
first. Like IBCS2, you can statically compile it in with "options LINUX".
A pile of new syscalls implemented, including getdents(), llseek(),
readv(), writev(), msync(), personality(). The Linux-ELF libraries want
to use some of these.
linux_select() now obeys Linux semantics, ie: returns the time remaining
of the timeout value rather than leaving it the original value.
Quite a few bugs removed, including incorrect arguments being used in
syscalls.. eg: mixups between passing the sigset as an int, vs passing
it as a pointer and doing a copyin(), missing return values, unhandled
cases, SIOC* ioctls, etc.
The build for the code has changed. i386/conf/files now knows how
to build linux_genassym and generate linux_assym.h on the fly.
Supporting changes elsewhere in the kernel:
The user-mode signal trampoline has moved from the U area to immediately
below the top of the stack (below PS_STRINGS). This allows the different
binary emulations to have their own signal trampoline code (which gets rid
of the hardwired syscall 103 (sigreturn on BSD, syslog on Linux)) and so
that the emulator can provide the exact "struct sigcontext *" argument to
the program's signal handlers.
The sigstack's "ss_flags" now uses SS_DISABLE and SS_ONSTACK flags, which
have the same values as the re-used SA_DISABLE and SA_ONSTACK which are
intended for sigaction only. This enables the support of a SA_RESETHAND
flag to sigaction to implement the gross SYSV and Linux SA_ONESHOT signal
semantics where the signal handler is reset when it's triggered.
makesyscalls.sh no longer appends the struct sysentvec on the end of the
generated init_sysent.c code. It's a lot saner to have it in a seperate
file rather than trying to update the structure inside the awk script. :-)
At exec time, the dozen bytes or so of signal trampoline code are copied
to the top of the user's stack, rather than obtaining the trampoline code
the old way by getting a clone of the parent's user area. This allows
Linux and native binaries to freely exec each other without getting
trampolines mixed up.
1996-03-02 19:38:20 +00:00
|
|
|
szsigcode = *(imgp->proc->p_sysent->sv_szsigcode);
|
|
|
|
destp = (caddr_t)arginfo - szsigcode - SPARE_USRSPACE -
|
1995-12-09 04:29:11 +00:00
|
|
|
roundup((ARG_MAX - imgp->stringspace), sizeof(char *));
|
|
|
|
|
Mega-commit for Linux emulator update.. This has been stress tested under
netscape-2.0 for Linux running all the Java stuff. The scrollbars are now
working, at least on my machine. (whew! :-)
I'm uncomfortable with the size of this commit, but it's too
inter-dependant to easily seperate out.
The main changes:
COMPAT_LINUX is *GONE*. Most of the code has been moved out of the i386
machine dependent section into the linux emulator itself. The int 0x80
syscall code was almost identical to the lcall 7,0 code and a minor tweak
allows them to both be used with the same C code. All kernels can now
just modload the lkm and it'll DTRT without having to rebuild the kernel
first. Like IBCS2, you can statically compile it in with "options LINUX".
A pile of new syscalls implemented, including getdents(), llseek(),
readv(), writev(), msync(), personality(). The Linux-ELF libraries want
to use some of these.
linux_select() now obeys Linux semantics, ie: returns the time remaining
of the timeout value rather than leaving it the original value.
Quite a few bugs removed, including incorrect arguments being used in
syscalls.. eg: mixups between passing the sigset as an int, vs passing
it as a pointer and doing a copyin(), missing return values, unhandled
cases, SIOC* ioctls, etc.
The build for the code has changed. i386/conf/files now knows how
to build linux_genassym and generate linux_assym.h on the fly.
Supporting changes elsewhere in the kernel:
The user-mode signal trampoline has moved from the U area to immediately
below the top of the stack (below PS_STRINGS). This allows the different
binary emulations to have their own signal trampoline code (which gets rid
of the hardwired syscall 103 (sigreturn on BSD, syslog on Linux)) and so
that the emulator can provide the exact "struct sigcontext *" argument to
the program's signal handlers.
The sigstack's "ss_flags" now uses SS_DISABLE and SS_ONSTACK flags, which
have the same values as the re-used SA_DISABLE and SA_ONSTACK which are
intended for sigaction only. This enables the support of a SA_RESETHAND
flag to sigaction to implement the gross SYSV and Linux SA_ONESHOT signal
semantics where the signal handler is reset when it's triggered.
makesyscalls.sh no longer appends the struct sysentvec on the end of the
generated init_sysent.c code. It's a lot saner to have it in a seperate
file rather than trying to update the structure inside the awk script. :-)
At exec time, the dozen bytes or so of signal trampoline code are copied
to the top of the user's stack, rather than obtaining the trampoline code
the old way by getting a clone of the parent's user area. This allows
Linux and native binaries to freely exec each other without getting
trampolines mixed up.
1996-03-02 19:38:20 +00:00
|
|
|
/*
|
|
|
|
* install sigcode
|
|
|
|
*/
|
|
|
|
if (szsigcode)
|
|
|
|
copyout(imgp->proc->p_sysent->sv_sigcode,
|
|
|
|
((caddr_t)arginfo - szsigcode), szsigcode);
|
|
|
|
|
1996-03-10 08:42:54 +00:00
|
|
|
/*
|
|
|
|
* If we have a valid auxargs ptr, prepare some room
|
|
|
|
* on the stack.
|
|
|
|
*/
|
|
|
|
if (imgp->auxargs)
|
|
|
|
/*
|
|
|
|
* The '+ 2' is for the null pointers at the end of each of the
|
|
|
|
* arg and env vector sets, and 'AT_COUNT*2' is room for the
|
|
|
|
* ELF Auxargs data.
|
|
|
|
*/
|
|
|
|
vectp = (char **)(destp - (imgp->argc + imgp->envc + 2 +
|
|
|
|
AT_COUNT*2) * sizeof(char*));
|
|
|
|
else
|
1994-05-25 09:21:21 +00:00
|
|
|
/*
|
|
|
|
* The '+ 2' is for the null pointers at the end of each of the
|
1996-03-10 08:42:54 +00:00
|
|
|
* arg and env vector sets
|
1994-05-25 09:21:21 +00:00
|
|
|
*/
|
1996-03-10 08:42:54 +00:00
|
|
|
vectp = (char **)
|
|
|
|
(destp - (imgp->argc + imgp->envc + 2) * sizeof(char*));
|
1994-05-25 09:21:21 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* vectp also becomes our initial stack base
|
|
|
|
*/
|
1998-06-07 17:13:14 +00:00
|
|
|
stack_base = (long *)vectp;
|
1994-05-25 09:21:21 +00:00
|
|
|
|
1995-11-06 12:52:37 +00:00
|
|
|
stringp = imgp->stringbase;
|
|
|
|
argc = imgp->argc;
|
|
|
|
envc = imgp->envc;
|
1994-05-25 09:21:21 +00:00
|
|
|
|
1995-03-01 04:09:50 +00:00
|
|
|
/*
|
|
|
|
* Copy out strings - arguments and environment.
|
|
|
|
*/
|
1995-11-06 12:52:37 +00:00
|
|
|
copyout(stringp, destp, ARG_MAX - imgp->stringspace);
|
1995-03-01 04:09:50 +00:00
|
|
|
|
1994-08-06 09:06:31 +00:00
|
|
|
/*
|
|
|
|
* Fill in "ps_strings" struct for ps, w, etc.
|
|
|
|
*/
|
1998-07-15 06:19:33 +00:00
|
|
|
suword(&arginfo->ps_argvstr, (long)(intptr_t)vectp);
|
1995-03-01 04:09:50 +00:00
|
|
|
suword(&arginfo->ps_nargvstr, argc);
|
1994-08-06 09:06:31 +00:00
|
|
|
|
|
|
|
/*
|
1995-03-01 04:09:50 +00:00
|
|
|
* Fill in argument portion of vector table.
|
1994-08-06 09:06:31 +00:00
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
for (; argc > 0; --argc) {
|
1998-07-15 06:19:33 +00:00
|
|
|
suword(vectp++, (long)(intptr_t)destp);
|
1995-03-01 04:09:50 +00:00
|
|
|
while (*stringp++ != 0)
|
|
|
|
destp++;
|
|
|
|
destp++;
|
1994-05-25 09:21:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* a null vector table pointer seperates the argp's from the envp's */
|
1996-07-12 04:12:25 +00:00
|
|
|
suword(vectp++, 0);
|
1994-05-25 09:21:21 +00:00
|
|
|
|
1998-07-15 06:19:33 +00:00
|
|
|
suword(&arginfo->ps_envstr, (long)(intptr_t)vectp);
|
1995-03-01 04:09:50 +00:00
|
|
|
suword(&arginfo->ps_nenvstr, envc);
|
1994-08-06 09:06:31 +00:00
|
|
|
|
|
|
|
/*
|
1995-03-01 04:09:50 +00:00
|
|
|
* Fill in environment portion of vector table.
|
1994-08-06 09:06:31 +00:00
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
for (; envc > 0; --envc) {
|
1998-07-15 06:19:33 +00:00
|
|
|
suword(vectp++, (long)(intptr_t)destp);
|
1995-03-01 04:09:50 +00:00
|
|
|
while (*stringp++ != 0)
|
|
|
|
destp++;
|
|
|
|
destp++;
|
1994-05-25 09:21:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* end of vector table is a null pointer */
|
1996-07-12 04:12:25 +00:00
|
|
|
suword(vectp, 0);
|
1994-05-25 09:21:21 +00:00
|
|
|
|
|
|
|
return (stack_base);
|
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
/*
|
1994-05-25 09:21:21 +00:00
|
|
|
* Check permissions of file to execute.
|
|
|
|
* Return 0 for success or error code on failure.
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
1998-03-02 05:47:58 +00:00
|
|
|
int
|
1995-11-06 12:52:37 +00:00
|
|
|
exec_check_permissions(imgp)
|
|
|
|
struct image_params *imgp;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-11-06 12:52:37 +00:00
|
|
|
struct proc *p = imgp->proc;
|
|
|
|
struct vnode *vp = imgp->vp;
|
|
|
|
struct vattr *attr = imgp->attr;
|
1994-05-25 09:21:21 +00:00
|
|
|
int error;
|
|
|
|
|
|
|
|
/* Get file attributes */
|
1995-11-06 12:52:37 +00:00
|
|
|
error = VOP_GETATTR(vp, attr, p->p_ucred, p);
|
1994-05-25 09:21:21 +00:00
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 1) Check if file execution is disabled for the filesystem that this
|
|
|
|
* file resides on.
|
|
|
|
* 2) Insure that at least one execute bit is on - otherwise root
|
|
|
|
* will always succeed, and we don't want to happen unless the
|
|
|
|
* file really is executable.
|
|
|
|
* 3) Insure that the file is a regular file.
|
|
|
|
*/
|
1995-11-06 12:52:37 +00:00
|
|
|
if ((vp->v_mount->mnt_flag & MNT_NOEXEC) ||
|
1994-05-25 09:21:21 +00:00
|
|
|
((attr->va_mode & 0111) == 0) ||
|
|
|
|
(attr->va_type != VREG)) {
|
|
|
|
return (EACCES);
|
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
/*
|
1994-05-25 09:21:21 +00:00
|
|
|
* Zero length files can't be exec'd
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
if (attr->va_size == 0)
|
|
|
|
return (ENOEXEC);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check for execute permission to file based on current credentials.
|
|
|
|
*/
|
1995-11-06 12:52:37 +00:00
|
|
|
error = VOP_ACCESS(vp, VEXEC, p->p_ucred, p);
|
1994-05-25 09:21:21 +00:00
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
|
1997-04-04 04:17:11 +00:00
|
|
|
/*
|
|
|
|
* Check number of open-for-writes on the file and deny execution
|
|
|
|
* if there are any.
|
|
|
|
*/
|
|
|
|
if (vp->v_writecount)
|
|
|
|
return (ETXTBSY);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Call filesystem specific open routine (which does nothing in the
|
|
|
|
* general case).
|
|
|
|
*/
|
1995-11-06 12:52:37 +00:00
|
|
|
error = VOP_OPEN(vp, FREAD, p->p_ucred, p);
|
1994-05-25 09:21:21 +00:00
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
return (0);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1998-10-16 03:55:01 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Exec handler registration
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
exec_register(execsw_arg)
|
|
|
|
const struct execsw *execsw_arg;
|
|
|
|
{
|
|
|
|
const struct execsw **es, **xs, **newexecsw;
|
|
|
|
int count = 2; /* New slot and trailing NULL */
|
|
|
|
|
|
|
|
if (execsw)
|
|
|
|
for (es = execsw; *es; es++)
|
|
|
|
count++;
|
|
|
|
newexecsw = malloc(count * sizeof(*es), M_TEMP, M_WAITOK);
|
|
|
|
if (newexecsw == NULL)
|
|
|
|
return ENOMEM;
|
|
|
|
xs = newexecsw;
|
|
|
|
if (execsw)
|
|
|
|
for (es = execsw; *es; es++)
|
|
|
|
*xs++ = *es;
|
|
|
|
*xs++ = execsw_arg;
|
|
|
|
*xs = NULL;
|
|
|
|
if (execsw)
|
|
|
|
free(execsw, M_TEMP);
|
|
|
|
execsw = newexecsw;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
exec_unregister(execsw_arg)
|
|
|
|
const struct execsw *execsw_arg;
|
|
|
|
{
|
|
|
|
const struct execsw **es, **xs, **newexecsw;
|
|
|
|
int count = 1;
|
|
|
|
|
|
|
|
if (execsw == NULL)
|
|
|
|
panic("unregister with no handlers left?\n");
|
|
|
|
|
|
|
|
for (es = execsw; *es; es++) {
|
|
|
|
if (*es == execsw_arg)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (*es == NULL)
|
|
|
|
return ENOENT;
|
|
|
|
for (es = execsw; *es; es++)
|
|
|
|
if (*es != execsw_arg)
|
|
|
|
count++;
|
|
|
|
newexecsw = malloc(count * sizeof(*es), M_TEMP, M_WAITOK);
|
|
|
|
if (newexecsw == NULL)
|
|
|
|
return ENOMEM;
|
|
|
|
xs = newexecsw;
|
|
|
|
for (es = execsw; *es; es++)
|
|
|
|
if (*es != execsw_arg)
|
|
|
|
*xs++ = *es;
|
|
|
|
*xs = NULL;
|
|
|
|
if (execsw)
|
|
|
|
free(execsw, M_TEMP);
|
|
|
|
execsw = newexecsw;
|
|
|
|
return 0;
|
|
|
|
}
|