2002-12-15 03:40:24 +03:00
|
|
|
/* $NetBSD: mach_exec.c,v 1.15 2002/12/15 00:40:25 manu Exp $ */
|
2001-07-14 06:10:59 +04:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Christos Zoulas.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``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 FOUNDATION OR CONTRIBUTORS
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2001-11-13 05:07:52 +03:00
|
|
|
#include <sys/cdefs.h>
|
2002-12-15 03:40:24 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: mach_exec.c,v 1.15 2002/12/15 00:40:25 manu Exp $");
|
2001-11-13 05:07:52 +03:00
|
|
|
|
2001-07-14 06:10:59 +04:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/exec.h>
|
2002-12-13 02:18:20 +03:00
|
|
|
#include <sys/queue.h>
|
We now have the exact stack initial stack layout of Darwin:
macho_hdr, argc, *argv, NULL, *envp, NULL, progname, NULL,
*progname, **argv, **envp
Where progname is a pointer to the program name as given in the first
argument to execve(), and macho_hdr a pointer to the Mach-O header at
the beginning of the executable file.
2002-11-21 22:53:40 +03:00
|
|
|
#include <sys/exec_macho.h>
|
2001-07-14 06:10:59 +04:00
|
|
|
#include <sys/malloc.h>
|
|
|
|
|
|
|
|
#include <sys/syscall.h>
|
|
|
|
|
2002-11-12 22:01:18 +03:00
|
|
|
#include <uvm/uvm_extern.h>
|
|
|
|
#include <uvm/uvm_param.h>
|
|
|
|
|
2001-07-14 06:10:59 +04:00
|
|
|
#include <compat/mach/mach_types.h>
|
2002-12-13 02:18:20 +03:00
|
|
|
#include <compat/mach/mach_message.h>
|
2002-12-15 03:40:24 +03:00
|
|
|
#include <compat/mach/mach_port.h>
|
2002-12-13 02:18:20 +03:00
|
|
|
#include <compat/mach/mach_semaphore.h>
|
2001-07-14 06:10:59 +04:00
|
|
|
#include <compat/mach/mach_exec.h>
|
|
|
|
|
2002-12-15 03:40:24 +03:00
|
|
|
static int mach_cold = 1; /* Have we initialized COMPAT_MACH structures? */
|
|
|
|
|
2002-12-07 18:33:01 +03:00
|
|
|
static void mach_e_proc_exec(struct proc *, struct exec_package *);
|
|
|
|
static void mach_e_proc_fork(struct proc *, struct proc *);
|
|
|
|
static void mach_e_proc_exit(struct proc *);
|
2002-12-15 03:40:24 +03:00
|
|
|
static void mach_init(void);
|
2002-12-07 18:33:01 +03:00
|
|
|
|
2001-07-14 06:10:59 +04:00
|
|
|
extern char sigcode[], esigcode[];
|
|
|
|
extern struct sysent sysent[];
|
|
|
|
#ifdef SYSCALL_DEBUG
|
|
|
|
extern const char * const syscallnames[];
|
|
|
|
#endif
|
|
|
|
#ifndef __HAVE_SYSCALL_INTERN
|
2002-11-29 00:21:32 +03:00
|
|
|
void syscall(void);
|
2001-07-14 06:10:59 +04:00
|
|
|
#else
|
2002-11-29 00:21:32 +03:00
|
|
|
void mach_syscall_intern(struct proc *);
|
2001-07-14 06:10:59 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
const struct emul emul_mach = {
|
|
|
|
"mach",
|
|
|
|
"/emul/mach",
|
|
|
|
#ifndef __HAVE_MINIMAL_EMUL
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
SYS_syscall,
|
2002-11-01 22:26:21 +03:00
|
|
|
SYS_NSYSENT,
|
2001-07-14 06:10:59 +04:00
|
|
|
#endif
|
|
|
|
sysent,
|
|
|
|
#ifdef SYSCALL_DEBUG
|
|
|
|
syscallnames,
|
|
|
|
#else
|
|
|
|
NULL,
|
|
|
|
#endif
|
|
|
|
sendsig,
|
|
|
|
trapsignal,
|
|
|
|
sigcode,
|
|
|
|
esigcode,
|
2001-09-18 23:36:32 +04:00
|
|
|
setregs,
|
2002-12-07 18:33:01 +03:00
|
|
|
mach_e_proc_exec,
|
|
|
|
mach_e_proc_fork,
|
|
|
|
mach_e_proc_exit,
|
2001-07-14 06:10:59 +04:00
|
|
|
#ifdef __HAVE_SYSCALL_INTERN
|
|
|
|
mach_syscall_intern,
|
|
|
|
#else
|
|
|
|
syscall,
|
|
|
|
#endif
|
- Introduce a e_fault field in struct proc to provide emulation specific
memory fault handler. IRIX uses irix_vm_fault, and all other emulation
use NULL, which means to use uvm_fault.
- While we are there, explicitely set to NULL the uninitialized fields in
struct emul: e_fault and e_sysctl on most ports
- e_fault is used by the trap handler, for now only on mips. In order to avoid
intrusive modifications in UVM, the function pointed by e_fault does not
has exactly the same protoype as uvm_fault:
int uvm_fault __P((struct vm_map *, vaddr_t, vm_fault_t, vm_prot_t));
int e_fault __P((struct proc *, vaddr_t, vm_fault_t, vm_prot_t));
- In IRIX share groups, all the VM space is shared, except one page.
This bounds us to have different VM spaces and synchronize modifications
to the VM space accross share group members. We need an IRIX specific hook
to the page fault handler in order to propagate VM space modifications
caused by page faults.
2002-09-22 01:14:54 +04:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2001-07-14 06:10:59 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copy arguments onto the stack in the normal way, but add some
|
|
|
|
* extra information in case of dynamic binding.
|
We now have the exact stack initial stack layout of Darwin:
macho_hdr, argc, *argv, NULL, *envp, NULL, progname, NULL,
*progname, **argv, **envp
Where progname is a pointer to the program name as given in the first
argument to execve(), and macho_hdr a pointer to the Mach-O header at
the beginning of the executable file.
2002-11-21 22:53:40 +03:00
|
|
|
* XXX This needs a cleanup: it is not used anymore by the Darwin
|
|
|
|
* emulation, and it probably contains Darwin specific bits.
|
2001-07-14 06:10:59 +04:00
|
|
|
*/
|
2001-07-30 01:26:07 +04:00
|
|
|
int
|
2002-12-07 18:33:01 +03:00
|
|
|
exec_mach_copyargs(p, pack, arginfo, stackp, argp)
|
|
|
|
struct proc *p;
|
|
|
|
struct exec_package *pack;
|
|
|
|
struct ps_strings *arginfo;
|
|
|
|
char **stackp;
|
|
|
|
void *argp;
|
2001-07-14 06:10:59 +04:00
|
|
|
{
|
We now have the exact stack initial stack layout of Darwin:
macho_hdr, argc, *argv, NULL, *envp, NULL, progname, NULL,
*progname, **argv, **envp
Where progname is a pointer to the program name as given in the first
argument to execve(), and macho_hdr a pointer to the Mach-O header at
the beginning of the executable file.
2002-11-21 22:53:40 +03:00
|
|
|
struct exec_macho_emul_arg *emea;
|
2001-07-14 06:10:59 +04:00
|
|
|
size_t len;
|
|
|
|
size_t zero = 0;
|
2002-11-12 22:01:18 +03:00
|
|
|
int pagelen = PAGE_SIZE;
|
2001-07-30 01:26:07 +04:00
|
|
|
int error;
|
We now have the exact stack initial stack layout of Darwin:
macho_hdr, argc, *argv, NULL, *envp, NULL, progname, NULL,
*progname, **argv, **envp
Where progname is a pointer to the program name as given in the first
argument to execve(), and macho_hdr a pointer to the Mach-O header at
the beginning of the executable file.
2002-11-21 22:53:40 +03:00
|
|
|
|
|
|
|
emea = (struct exec_macho_emul_arg *)pack->ep_emul_arg;
|
|
|
|
|
|
|
|
*stackp -= 16;
|
2001-07-14 06:10:59 +04:00
|
|
|
|
2002-11-12 22:01:18 +03:00
|
|
|
if ((error = copyout(&pagelen, *stackp, sizeof(pagelen))) != 0) {
|
|
|
|
DPRINTF(("mach: copyout pagelen failed\n"));
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
*stackp += sizeof(pagelen);
|
|
|
|
|
2002-08-27 01:05:59 +04:00
|
|
|
if ((error = copyargs(p, pack, arginfo, stackp, argp)) != 0) {
|
2001-07-30 01:26:07 +04:00
|
|
|
DPRINTF(("mach: copyargs failed\n"));
|
|
|
|
return error;
|
|
|
|
}
|
2001-07-14 06:10:59 +04:00
|
|
|
|
2001-07-30 01:26:07 +04:00
|
|
|
if ((error = copyout(&zero, *stackp, sizeof(zero))) != 0) {
|
|
|
|
DPRINTF(("mach: copyout first zero failed\n"));
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
*stackp += sizeof(zero);
|
2001-07-14 06:10:59 +04:00
|
|
|
|
We now have the exact stack initial stack layout of Darwin:
macho_hdr, argc, *argv, NULL, *envp, NULL, progname, NULL,
*progname, **argv, **envp
Where progname is a pointer to the program name as given in the first
argument to execve(), and macho_hdr a pointer to the Mach-O header at
the beginning of the executable file.
2002-11-21 22:53:40 +03:00
|
|
|
if ((error = copyoutstr(emea->filename,
|
|
|
|
*stackp, MAXPATHLEN, &len)) != 0) {
|
2001-07-30 01:26:07 +04:00
|
|
|
DPRINTF(("mach: copyout path failed\n"));
|
|
|
|
return error;
|
|
|
|
}
|
2001-10-28 07:47:27 +03:00
|
|
|
*stackp += len + 1;
|
|
|
|
|
|
|
|
/* We don't need this anymore */
|
We now have the exact stack initial stack layout of Darwin:
macho_hdr, argc, *argv, NULL, *envp, NULL, progname, NULL,
*progname, **argv, **envp
Where progname is a pointer to the program name as given in the first
argument to execve(), and macho_hdr a pointer to the Mach-O header at
the beginning of the executable file.
2002-11-21 22:53:40 +03:00
|
|
|
free(pack->ep_emul_arg, M_EXEC);
|
2001-10-28 07:47:27 +03:00
|
|
|
pack->ep_emul_arg = NULL;
|
2001-07-14 06:10:59 +04:00
|
|
|
|
|
|
|
len = len % sizeof(zero);
|
|
|
|
if (len) {
|
2001-07-30 01:26:07 +04:00
|
|
|
if ((error = copyout(&zero, *stackp, len)) != 0) {
|
|
|
|
DPRINTF(("mach: zero align %d failed\n", len));
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
*stackp += len;
|
2001-07-14 06:10:59 +04:00
|
|
|
}
|
|
|
|
|
2001-07-30 01:26:07 +04:00
|
|
|
if ((error = copyout(&zero, *stackp, sizeof(zero))) != 0) {
|
|
|
|
DPRINTF(("mach: copyout second zero failed\n"));
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
*stackp += sizeof(zero);
|
2001-07-14 06:10:59 +04:00
|
|
|
|
2001-07-30 01:26:07 +04:00
|
|
|
return 0;
|
2001-07-14 06:10:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2002-12-07 18:33:01 +03:00
|
|
|
exec_mach_probe(path)
|
|
|
|
char **path;
|
|
|
|
{
|
2001-10-28 07:47:27 +03:00
|
|
|
*path = (char *)emul_mach.e_path;
|
2001-07-14 06:10:59 +04:00
|
|
|
return 0;
|
|
|
|
}
|
2002-12-07 18:33:01 +03:00
|
|
|
|
|
|
|
static void
|
|
|
|
mach_e_proc_exec(p, epp)
|
|
|
|
struct proc *p;
|
|
|
|
struct exec_package *epp;
|
|
|
|
{
|
|
|
|
mach_e_proc_init(p, p->p_vmspace);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
mach_e_proc_fork(p, parent)
|
|
|
|
struct proc *p;
|
|
|
|
struct proc *parent;
|
|
|
|
{
|
|
|
|
struct mach_emuldata *med1;
|
|
|
|
struct mach_emuldata *med2;
|
|
|
|
|
|
|
|
p->p_emuldata = NULL;
|
|
|
|
|
|
|
|
/* Use parent's vmspace because our vmspace may not be setup yet */
|
|
|
|
mach_e_proc_init(p, parent->p_vmspace);
|
|
|
|
|
|
|
|
med1 = p->p_emuldata;
|
|
|
|
med2 = parent->p_emuldata;
|
|
|
|
|
|
|
|
(void)memcpy(med1, med2, sizeof(struct mach_emuldata));
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
mach_e_proc_init(p, vmspace)
|
|
|
|
struct proc *p;
|
|
|
|
struct vmspace *vmspace;
|
|
|
|
{
|
|
|
|
struct mach_emuldata *med;
|
|
|
|
|
2002-12-15 03:40:24 +03:00
|
|
|
/*
|
|
|
|
* Initialize various things if needed.
|
|
|
|
* XXX Not the best place for that.
|
|
|
|
*/
|
|
|
|
if (mach_cold == 1)
|
|
|
|
mach_init();
|
|
|
|
|
2002-12-07 18:33:01 +03:00
|
|
|
if (!p->p_emuldata)
|
|
|
|
p->p_emuldata = malloc(sizeof(struct mach_emuldata),
|
|
|
|
M_EMULDATA, M_WAITOK | M_ZERO);
|
|
|
|
|
|
|
|
med = (struct mach_emuldata *)p->p_emuldata;
|
|
|
|
med->med_p = 0;
|
|
|
|
|
2002-12-15 03:40:24 +03:00
|
|
|
LIST_INIT(&med->med_recv);
|
|
|
|
LIST_INIT(&med->med_send);
|
|
|
|
LIST_INIT(&med->med_sendonce);
|
|
|
|
lockinit(&med->med_rlock, PZERO|PCATCH, "mach_port", 0, 0);
|
|
|
|
lockinit(&med->med_slock, PZERO|PCATCH, "mach_port", 0, 0);
|
|
|
|
lockinit(&med->med_solock, PZERO|PCATCH, "mach_port", 0, 0);
|
|
|
|
|
|
|
|
med->med_bootstrap = mach_port_get(NULL);
|
|
|
|
med->med_kernel = mach_port_get(NULL);
|
|
|
|
med->med_host = mach_port_get(NULL);
|
|
|
|
|
|
|
|
/* Make sure they will not be deallocated */
|
|
|
|
med->med_bootstrap->mp_refcount++;
|
|
|
|
med->med_kernel->mp_refcount++;
|
|
|
|
med->med_host->mp_refcount++;
|
2002-12-13 02:18:20 +03:00
|
|
|
|
2002-12-07 18:33:01 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
mach_e_proc_exit(p)
|
|
|
|
struct proc *p;
|
|
|
|
{
|
|
|
|
free(p->p_emuldata, M_EMULDATA);
|
|
|
|
p->p_emuldata = NULL;
|
|
|
|
|
2002-12-13 02:18:20 +03:00
|
|
|
mach_semaphore_cleanup(p);
|
|
|
|
|
2002-12-07 18:33:01 +03:00
|
|
|
return;
|
|
|
|
}
|
2002-12-15 03:40:24 +03:00
|
|
|
|
|
|
|
static void
|
|
|
|
mach_init(void)
|
|
|
|
{
|
|
|
|
mach_semaphore_init();
|
|
|
|
mach_message_init();
|
|
|
|
mach_port_init();
|
|
|
|
|
|
|
|
mach_cold = 0;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|