1996-09-03 07:12:17 +04:00
|
|
|
/* $NetBSD: hpux_exec.c,v 1.4 1996/09/03 03:12:19 mycroft Exp $ */
|
Get COMPAT_HPUX partially working on the hp300. Notable improvements:
* It compiles (and links).
* Make use of "/emul/hpux" where applicable.
* Untangle a bit, pulling some funtions from the monolithic
hpux_compat.c into hpux_file.c, hpux_exec.c, etc.
* Fix a couple of bugs.
Yet to do:
* Move hp300-specific functions into hp300/hp300/hpux_machdep.c.
* Make everything work properly (you laugh...)
These changes are sufficient to run some simple HP-UX 9.x executables,
including ls(1) (which will read password and group information from the
YP server correctly, albeit slowly), a simple "hello world", uname(1),
and a few other odds and ends. Dynamically linked executables work, and
demand-paging _seems_ to work properly. Major problems:
* socket and/or signal handling appears to need some work yet.
* 99% sure I didn't do exactly the right thing adjusting for the
fact that "kstack" is gone now.
* ktrace(1)'ing some executables (HP-UX telnet(1) is what I tried)
causes the HP-UX executable to dump core with a SIGSEGV for an
as of yet unknown reason.
This is mostly meant as a checkpoint/snapshot, to make it easier for others
to track progress on this code, and hack on it themselves. It's certainly
better off now than before.
1995-11-28 11:39:45 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1995 Jason R. Thorpe. All rights reserved.
|
|
|
|
* Copyright (c) 1993, 1994 Christopher G. Demetriou
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* This product includes software developed by Christopher G. Demetriou.
|
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Glue for exec'ing HP-UX executables and the HP-UX execv() system call.
|
|
|
|
* Based on sys/kern/exec_aout.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/namei.h>
|
|
|
|
#include <sys/user.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#include <vm/vm.h>
|
|
|
|
#include <vm/vm_param.h>
|
|
|
|
#include <vm/vm_map.h>
|
|
|
|
|
|
|
|
#include <machine/cpu.h>
|
|
|
|
#include <machine/reg.h>
|
|
|
|
|
|
|
|
#include <sys/syscallargs.h>
|
|
|
|
|
|
|
|
#include <compat/hpux/hpux.h>
|
|
|
|
#include <compat/hpux/hpux_util.h>
|
|
|
|
#include <compat/hpux/hpux_syscall.h>
|
|
|
|
#include <compat/hpux/hpux_syscallargs.h>
|
|
|
|
|
1996-01-06 15:44:06 +03:00
|
|
|
#include <machine/hpux_machdep.h>
|
|
|
|
|
Get COMPAT_HPUX partially working on the hp300. Notable improvements:
* It compiles (and links).
* Make use of "/emul/hpux" where applicable.
* Untangle a bit, pulling some funtions from the monolithic
hpux_compat.c into hpux_file.c, hpux_exec.c, etc.
* Fix a couple of bugs.
Yet to do:
* Move hp300-specific functions into hp300/hp300/hpux_machdep.c.
* Make everything work properly (you laugh...)
These changes are sufficient to run some simple HP-UX 9.x executables,
including ls(1) (which will read password and group information from the
YP server correctly, albeit slowly), a simple "hello world", uname(1),
and a few other odds and ends. Dynamically linked executables work, and
demand-paging _seems_ to work properly. Major problems:
* socket and/or signal handling appears to need some work yet.
* 99% sure I didn't do exactly the right thing adjusting for the
fact that "kstack" is gone now.
* ktrace(1)'ing some executables (HP-UX telnet(1) is what I tried)
causes the HP-UX executable to dump core with a SIGSEGV for an
as of yet unknown reason.
This is mostly meant as a checkpoint/snapshot, to make it easier for others
to track progress on this code, and hack on it themselves. It's certainly
better off now than before.
1995-11-28 11:39:45 +03:00
|
|
|
const char hpux_emul_path[] = "/emul/hpux";
|
|
|
|
extern char sigcode[], esigcode[];
|
|
|
|
extern struct sysent hpux_sysent[];
|
|
|
|
extern char *hpux_syscallnames[];
|
|
|
|
extern int bsdtohpuxerrnomap[];
|
|
|
|
|
|
|
|
static int exec_hpux_prep_nmagic __P((struct proc *, struct exec_package *));
|
|
|
|
static int exec_hpux_prep_zmagic __P((struct proc *, struct exec_package *));
|
|
|
|
static int exec_hpux_prep_omagic __P((struct proc *, struct exec_package *));
|
|
|
|
|
|
|
|
struct emul emul_hpux = {
|
|
|
|
"hpux",
|
|
|
|
bsdtohpuxerrnomap,
|
|
|
|
sendsig,
|
|
|
|
HPUX_SYS_syscall,
|
|
|
|
HPUX_SYS_MAXSYSCALL,
|
|
|
|
hpux_sysent,
|
|
|
|
hpux_syscallnames,
|
|
|
|
0,
|
|
|
|
copyargs,
|
|
|
|
setregs,
|
|
|
|
sigcode,
|
|
|
|
esigcode,
|
|
|
|
};
|
|
|
|
|
|
|
|
int
|
|
|
|
exec_hpux_makecmds(p, epp)
|
|
|
|
struct proc *p;
|
|
|
|
struct exec_package *epp;
|
|
|
|
{
|
|
|
|
struct hpux_exec *hpux_ep = epp->ep_hdr;
|
|
|
|
short sysid, magic;
|
|
|
|
int error = ENOEXEC;
|
|
|
|
|
|
|
|
magic = HPUX_MAGIC(hpux_ep);
|
|
|
|
sysid = HPUX_SYSID(hpux_ep);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX This will lose if there's ever an hp700 port.
|
|
|
|
*/
|
|
|
|
if (sysid != MID_HPUX)
|
|
|
|
return (ENOEXEC);
|
|
|
|
|
|
|
|
switch (magic) {
|
|
|
|
case OMAGIC:
|
|
|
|
error = exec_hpux_prep_omagic(p, epp);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NMAGIC:
|
|
|
|
error = exec_hpux_prep_nmagic(p, epp);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ZMAGIC:
|
|
|
|
error = exec_hpux_prep_zmagic(p, epp);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (error == 0) {
|
|
|
|
/* set up our emulation information */
|
|
|
|
epp->ep_emul = &emul_hpux;
|
|
|
|
} else
|
|
|
|
kill_vmcmds(&epp->ep_vmcmds);
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
exec_hpux_prep_nmagic(p, epp)
|
|
|
|
struct proc *p;
|
|
|
|
struct exec_package *epp;
|
|
|
|
{
|
|
|
|
struct hpux_exec *execp = epp->ep_hdr;
|
|
|
|
long bsize, baddr;
|
|
|
|
|
|
|
|
epp->ep_taddr = 0;
|
|
|
|
epp->ep_tsize = execp->ha_text;
|
|
|
|
epp->ep_daddr = epp->ep_taddr + roundup(execp->ha_text, HPUX__LDPGSZ);
|
|
|
|
epp->ep_dsize = execp->ha_data + execp->ha_bss;
|
|
|
|
epp->ep_entry = execp->ha_entry;
|
|
|
|
|
|
|
|
/* set up command for text segment */
|
|
|
|
NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn, execp->ha_text,
|
|
|
|
epp->ep_taddr, epp->ep_vp, HPUX_TXTOFF(*execp, NMAGIC),
|
|
|
|
VM_PROT_READ|VM_PROT_EXECUTE);
|
|
|
|
|
|
|
|
/* set up command for data segment */
|
|
|
|
NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn, execp->ha_data,
|
|
|
|
epp->ep_daddr, epp->ep_vp, HPUX_DATAOFF(*execp, NMAGIC),
|
|
|
|
VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
|
|
|
|
|
|
|
|
/* set up command for bss segment */
|
|
|
|
baddr = roundup(epp->ep_daddr + execp->ha_data, NBPG);
|
|
|
|
bsize = epp->ep_daddr + epp->ep_dsize - baddr;
|
|
|
|
if (bsize > 0)
|
|
|
|
NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_zero, bsize, baddr,
|
|
|
|
NULLVP, 0, VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
|
|
|
|
|
|
|
|
return (exec_aout_setup_stack(p, epp));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
exec_hpux_prep_zmagic(p, epp)
|
|
|
|
struct proc *p;
|
|
|
|
struct exec_package *epp;
|
|
|
|
{
|
|
|
|
struct hpux_exec *execp = epp->ep_hdr;
|
1995-12-08 10:54:43 +03:00
|
|
|
long bsize, baddr;
|
|
|
|
long nontext;
|
Get COMPAT_HPUX partially working on the hp300. Notable improvements:
* It compiles (and links).
* Make use of "/emul/hpux" where applicable.
* Untangle a bit, pulling some funtions from the monolithic
hpux_compat.c into hpux_file.c, hpux_exec.c, etc.
* Fix a couple of bugs.
Yet to do:
* Move hp300-specific functions into hp300/hp300/hpux_machdep.c.
* Make everything work properly (you laugh...)
These changes are sufficient to run some simple HP-UX 9.x executables,
including ls(1) (which will read password and group information from the
YP server correctly, albeit slowly), a simple "hello world", uname(1),
and a few other odds and ends. Dynamically linked executables work, and
demand-paging _seems_ to work properly. Major problems:
* socket and/or signal handling appears to need some work yet.
* 99% sure I didn't do exactly the right thing adjusting for the
fact that "kstack" is gone now.
* ktrace(1)'ing some executables (HP-UX telnet(1) is what I tried)
causes the HP-UX executable to dump core with a SIGSEGV for an
as of yet unknown reason.
This is mostly meant as a checkpoint/snapshot, to make it easier for others
to track progress on this code, and hack on it themselves. It's certainly
better off now than before.
1995-11-28 11:39:45 +03:00
|
|
|
int (*vm_func) __P((struct proc *, struct exec_vmcmd *));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check if vnode is in open for writing, because we want to
|
|
|
|
* demand-page out of it. If it is, don't do it, for various
|
|
|
|
* reasons.
|
|
|
|
*/
|
|
|
|
if ((execp->ha_text != 0 || execp->ha_data != 0) &&
|
|
|
|
epp->ep_vp->v_writecount != 0)
|
|
|
|
return (ETXTBSY);
|
|
|
|
epp->ep_vp->v_flag |= VTEXT;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* HP-UX ZMAGIC executables need to have their segment
|
|
|
|
* sizes frobbed.
|
|
|
|
*/
|
|
|
|
nontext = execp->ha_data + execp->ha_bss;
|
|
|
|
execp->ha_text = ctob(btoc(execp->ha_text));
|
|
|
|
execp->ha_data = ctob(btoc(execp->ha_data));
|
|
|
|
execp->ha_bss = nontext - execp->ha_data;
|
|
|
|
if (execp->ha_bss < 0)
|
|
|
|
execp->ha_bss = 0;
|
|
|
|
|
|
|
|
epp->ep_taddr = 0;
|
|
|
|
epp->ep_tsize = execp->ha_text;
|
|
|
|
epp->ep_daddr = epp->ep_taddr + roundup(execp->ha_text, HPUX__LDPGSZ);
|
|
|
|
epp->ep_dsize = execp->ha_data + execp->ha_bss;
|
|
|
|
epp->ep_entry = execp->ha_entry;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If our __LDPGSZ doesn't match HP-UX's, we can't demand-page
|
|
|
|
* the executable.
|
|
|
|
*/
|
|
|
|
if (__LDPGSZ == HPUX__LDPGSZ)
|
|
|
|
vm_func = vmcmd_map_pagedvn;
|
|
|
|
else
|
|
|
|
vm_func = vmcmd_map_readvn;
|
|
|
|
|
|
|
|
/* set up command for text segment */
|
|
|
|
NEW_VMCMD(&epp->ep_vmcmds, vm_func, execp->ha_text,
|
|
|
|
epp->ep_taddr, epp->ep_vp, HPUX_TXTOFF(*execp, ZMAGIC),
|
|
|
|
VM_PROT_READ|VM_PROT_EXECUTE);
|
|
|
|
|
|
|
|
/* set up command for data segment */
|
|
|
|
NEW_VMCMD(&epp->ep_vmcmds, vm_func, execp->ha_data,
|
|
|
|
epp->ep_daddr, epp->ep_vp, HPUX_DATAOFF(*execp, ZMAGIC),
|
|
|
|
VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
|
|
|
|
|
|
|
|
/* set up command for bss segment */
|
|
|
|
baddr = roundup(epp->ep_daddr + execp->ha_data, NBPG);
|
|
|
|
bsize = epp->ep_daddr + epp->ep_dsize - baddr;
|
|
|
|
if (bsize > 0)
|
|
|
|
NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_zero, bsize, baddr,
|
|
|
|
NULLVP, 0, VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
|
|
|
|
|
|
|
|
return (exec_aout_setup_stack(p, epp));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* HP-UX's version of OMAGIC.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
exec_hpux_prep_omagic(p, epp)
|
|
|
|
struct proc *p;
|
|
|
|
struct exec_package *epp;
|
|
|
|
{
|
|
|
|
struct hpux_exec *execp = epp->ep_hdr;
|
|
|
|
long dsize, bsize, baddr;
|
|
|
|
|
|
|
|
epp->ep_taddr = 0;
|
|
|
|
epp->ep_tsize = execp->ha_text;
|
|
|
|
epp->ep_daddr = epp->ep_taddr + roundup(execp->ha_text, HPUX__LDPGSZ);
|
|
|
|
epp->ep_dsize = execp->ha_data + execp->ha_bss;
|
|
|
|
epp->ep_entry = execp->ha_entry;
|
|
|
|
|
|
|
|
/* set up command for text and data segments */
|
|
|
|
NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn,
|
|
|
|
execp->ha_text + execp->ha_data, epp->ep_taddr, epp->ep_vp,
|
|
|
|
HPUX_TXTOFF(*execp, OMAGIC),
|
|
|
|
VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
|
|
|
|
|
|
|
|
/* set up command for bss segment */
|
|
|
|
baddr = roundup(epp->ep_daddr + execp->ha_data, NBPG);
|
|
|
|
bsize = epp->ep_daddr + epp->ep_dsize - baddr;
|
|
|
|
if (bsize > 0)
|
|
|
|
NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_zero, bsize, baddr,
|
|
|
|
NULLVP, 0, VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure (# of pages) mapped above equals (vm_tsize + vm_dsize);
|
|
|
|
* obreak(2) relies on this fact. Both `vm_tsize' and `vm_dsize' are
|
|
|
|
* computed (in execve(2)) by rounding *up* `ep_tsize' and `ep_dsize'
|
|
|
|
* respectively to page boundaries.
|
|
|
|
* Compensate `ep_dsize' for the amount of data covered by the last
|
|
|
|
* text page.
|
|
|
|
*/
|
|
|
|
dsize = epp->ep_dsize + execp->ha_text - roundup(execp->ha_text, NBPG);
|
|
|
|
epp->ep_dsize = (dsize > 0) ? dsize : 0;
|
|
|
|
return (exec_aout_setup_stack(p, epp));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The HP-UX execv(2) system call.
|
|
|
|
*
|
|
|
|
* Just check the alternate emulation path, and pass it on to the NetBSD
|
|
|
|
* execve().
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
hpux_sys_execv(p, v, retval)
|
|
|
|
struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
|
|
|
struct hpux_sys_execv_args /* {
|
|
|
|
syscallarg(char *) path;
|
|
|
|
syscallarg(char **) argv;
|
|
|
|
} */ *uap = v;
|
|
|
|
struct sys_execve_args ap;
|
|
|
|
caddr_t sg;
|
|
|
|
|
|
|
|
sg = stackgap_init(p->p_emul);
|
|
|
|
HPUX_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
|
|
|
|
|
|
|
|
SCARG(&ap, path) = SCARG(uap, path);
|
|
|
|
SCARG(&ap, argp) = SCARG(uap, argp);
|
|
|
|
SCARG(&ap, envp) = NULL;
|
|
|
|
|
|
|
|
return sys_execve(p, &ap, retval);
|
|
|
|
}
|
1996-09-03 07:12:17 +04:00
|
|
|
|
|
|
|
int
|
|
|
|
hpux_sys_execve(p, v, retval)
|
|
|
|
struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
|
|
|
struct hpux_sys_execve_args /* {
|
|
|
|
syscallarg(char *) path;
|
|
|
|
syscallarg(char **) argv;
|
|
|
|
syscallarg(char **) envp;
|
|
|
|
} */ *uap = v;
|
|
|
|
struct sys_execve_args ap;
|
|
|
|
caddr_t sg;
|
|
|
|
|
|
|
|
sg = stackgap_init(p->p_emul);
|
|
|
|
HPUX_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
|
|
|
|
|
|
|
|
SCARG(&ap, path) = SCARG(uap, path);
|
|
|
|
SCARG(&ap, argp) = SCARG(uap, argp);
|
|
|
|
SCARG(&ap, envp) = SCARG(uap, envp);
|
|
|
|
|
|
|
|
return sys_execve(p, &ap, retval);
|
|
|
|
}
|