2005-09-13 05:42:32 +04:00
|
|
|
/* $NetBSD: darwin_exec.c,v 1.42 2005/09/13 01:42:32 christos Exp $ */
|
2002-11-13 02:40:19 +03:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 2002 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Emmanuel Dreyfus.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2002-12-30 21:44:33 +03:00
|
|
|
#include "opt_compat_darwin.h" /* For COMPAT_DARWIN in mach_port.h */
|
2002-11-13 02:40:19 +03:00
|
|
|
#include <sys/cdefs.h>
|
2005-09-13 05:42:32 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: darwin_exec.c,v 1.42 2005/09/13 01:42:32 christos Exp $");
|
2003-06-23 15:00:59 +04:00
|
|
|
|
|
|
|
#include "opt_syscall_debug.h"
|
2002-11-13 02:40:19 +03:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/exec.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/syscall.h>
|
2002-12-24 15:15:45 +03:00
|
|
|
#include <sys/sysctl.h>
|
2003-08-30 03:11:40 +04:00
|
|
|
#include <sys/conf.h>
|
2002-11-21 02:54:39 +03:00
|
|
|
#include <sys/exec_macho.h>
|
2002-11-13 02:40:19 +03:00
|
|
|
|
|
|
|
#include <uvm/uvm_extern.h>
|
|
|
|
#include <uvm/uvm_param.h>
|
|
|
|
|
2003-08-30 03:11:40 +04:00
|
|
|
#include <dev/wscons/wsconsio.h>
|
|
|
|
|
2004-07-03 04:14:30 +04:00
|
|
|
#include <machine/darwin_machdep.h>
|
|
|
|
|
2005-09-13 05:42:32 +04:00
|
|
|
#include <compat/sys/signal.h>
|
|
|
|
|
2003-09-30 23:49:00 +04:00
|
|
|
#include <compat/common/compat_util.h>
|
|
|
|
|
2002-11-13 02:40:19 +03:00
|
|
|
#include <compat/mach/mach_types.h>
|
2002-12-30 21:44:33 +03:00
|
|
|
#include <compat/mach/mach_message.h>
|
2002-11-13 02:40:19 +03:00
|
|
|
#include <compat/mach/mach_exec.h>
|
2002-12-30 21:44:33 +03:00
|
|
|
#include <compat/mach/mach_port.h>
|
2002-11-13 02:40:19 +03:00
|
|
|
|
|
|
|
#include <compat/darwin/darwin_exec.h>
|
2004-07-03 04:14:30 +04:00
|
|
|
#include <compat/darwin/darwin_commpage.h>
|
2002-11-27 02:54:09 +03:00
|
|
|
#include <compat/darwin/darwin_signal.h>
|
2002-11-13 02:40:19 +03:00
|
|
|
#include <compat/darwin/darwin_syscall.h>
|
2002-12-24 15:15:45 +03:00
|
|
|
#include <compat/darwin/darwin_sysctl.h>
|
2003-10-25 14:43:45 +04:00
|
|
|
#include <compat/darwin/darwin_iokit.h>
|
|
|
|
#include <compat/darwin/darwin_iohidsystem.h>
|
2002-11-13 02:40:19 +03:00
|
|
|
|
2003-08-30 03:11:40 +04:00
|
|
|
/* Redefined from sys/dev/wscons/wsdisplay.c */
|
|
|
|
extern const struct cdevsw wsdisplay_cdevsw;
|
|
|
|
|
2002-12-07 18:33:01 +03:00
|
|
|
static void darwin_e_proc_exec(struct proc *, struct exec_package *);
|
2004-08-08 12:42:03 +04:00
|
|
|
static void darwin_e_proc_fork(struct proc *, struct proc *, int);
|
2002-12-07 18:33:01 +03:00
|
|
|
static void darwin_e_proc_exit(struct proc *);
|
|
|
|
static void darwin_e_proc_init(struct proc *, struct vmspace *);
|
|
|
|
|
2002-11-13 02:40:19 +03:00
|
|
|
extern struct sysent darwin_sysent[];
|
|
|
|
#ifdef SYSCALL_DEBUG
|
|
|
|
extern const char * const darwin_syscallnames[];
|
|
|
|
#endif
|
|
|
|
#ifndef __HAVE_SYSCALL_INTERN
|
2002-11-29 00:23:54 +03:00
|
|
|
void syscall(void);
|
2002-11-13 02:40:19 +03:00
|
|
|
#else
|
2002-11-29 00:23:54 +03:00
|
|
|
void mach_syscall_intern(struct proc *);
|
2002-11-13 02:40:19 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
const struct emul emul_darwin = {
|
|
|
|
"darwin",
|
|
|
|
"/emul/darwin",
|
|
|
|
#ifndef __HAVE_MINIMAL_EMUL
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
DARWIN_SYS_syscall,
|
|
|
|
DARWIN_SYS_NSYSENT,
|
|
|
|
#endif
|
|
|
|
darwin_sysent,
|
|
|
|
#ifdef SYSCALL_DEBUG
|
|
|
|
darwin_syscallnames,
|
|
|
|
#else
|
|
|
|
NULL,
|
|
|
|
#endif
|
2002-11-27 02:54:09 +03:00
|
|
|
darwin_sendsig,
|
First work on Mach exceptions. Things that can turn into signals on UNIX
may turn into exceptions on Mach: a small message sent by the kernel to
the task that requested the exception.
On Darwin, when an exception is sent, no signal can be delivered.
TODO: more exceptions: arithmetic, bad instructions, emulation, s
software, and syscalls (plain and Mach). There is also RPC alert, but
I have no idea about what it is.
While we are there, remove some user ktrace in notification code, and add
a NODEF qualifier in mach_services.master: it will be used for notifications
and exceptions, where the kernel is always client and never server: we
don't want the message to be displayed as "unimplemented xxx" in kdump (thus
UNIMPL is not good), but we don't want to generate the server prototype
(therefore, STD is not good either). NODEF will declare it normally in the
name tables without creating the prototype.
2003-11-17 04:52:14 +03:00
|
|
|
darwin_trapsignal,
|
Move the sigfilter hook to a more adequate location, and rename it to better
fit what it does.
The softsignal feature is used in Darwin to trace processes. When the
traced process gets a signal, this raises an exception. The debugger will
receive the exception message, use ptrace with PT_THUPDATE to pass the
signal to the child or discard it, and then it will send a reply to the
exception message, to resume the child.
With the hook at the beginnng of kpsignal2, we are in the context of the
signal sender, which can be the kill(1) command, for instance. We cannot
afford to sleep until the debugger tells us if the signal should be
delivered or not.
Therefore, the hook to generate the Mach exception must be in the traced
process context. That was we can sleep awaiting for the debugger opinion
about the signal, this is not a problem. The hook is hence located into
issignal, at the place where normally SIGCHILD is sent to the debugger,
whereas the traced process is stopped. If the hook returns 0, we bypass
thoses operations, the Mach exception mecanism will take care of notifying
the debugger (through a Mach exception), and stop the faulting thread.
2003-12-25 01:53:59 +03:00
|
|
|
darwin_tracesig,
|
2003-09-10 20:44:56 +04:00
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2002-11-13 02:40:19 +03:00
|
|
|
setregs,
|
2002-12-07 18:33:01 +03:00
|
|
|
darwin_e_proc_exec,
|
|
|
|
darwin_e_proc_fork,
|
|
|
|
darwin_e_proc_exit,
|
2003-12-20 22:43:17 +03:00
|
|
|
mach_e_lwp_fork,
|
|
|
|
mach_e_lwp_exit,
|
2002-11-13 02:40:19 +03:00
|
|
|
#ifdef __HAVE_SYSCALL_INTERN
|
|
|
|
mach_syscall_intern,
|
|
|
|
#else
|
|
|
|
syscall,
|
|
|
|
#endif
|
2003-12-05 20:34:56 +03:00
|
|
|
NULL,
|
2005-03-26 08:12:34 +03:00
|
|
|
NULL,
|
|
|
|
|
|
|
|
uvm_default_mapaddr,
|
2002-11-13 02:40:19 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copy arguments onto the stack in the normal way, but add some
|
|
|
|
* extra information in case of dynamic binding.
|
|
|
|
*/
|
|
|
|
int
|
2003-06-30 02:28:00 +04:00
|
|
|
exec_darwin_copyargs(p, pack, arginfo, stackp, argp)
|
|
|
|
struct proc *p;
|
2002-12-07 18:33:01 +03:00
|
|
|
struct exec_package *pack;
|
|
|
|
struct ps_strings *arginfo;
|
|
|
|
char **stackp;
|
|
|
|
void *argp;
|
2002-11-13 02:40:19 +03: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;
|
2002-11-21 02:54:39 +03:00
|
|
|
struct exec_macho_object_header *macho_hdr;
|
|
|
|
char **cpp, *dp, *sp, *progname;
|
2002-11-13 02:40:19 +03:00
|
|
|
size_t len;
|
2002-11-21 02:54:39 +03:00
|
|
|
void *nullp = NULL;
|
|
|
|
long argc, envc;
|
2002-11-13 02:40:19 +03:00
|
|
|
int error;
|
|
|
|
|
2005-02-27 01:58:54 +03:00
|
|
|
/*
|
2004-07-03 04:14:30 +04:00
|
|
|
* Prepare the comm pages
|
|
|
|
*/
|
|
|
|
if ((error = darwin_commpage_map(p)) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up the stack
|
|
|
|
*/
|
2002-11-23 20:35:06 +03:00
|
|
|
*stackp = (char *)(((unsigned long)*stackp - 1) & ~0xfUL);
|
2002-11-13 02:40:19 +03: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
|
|
|
emea = (struct exec_macho_emul_arg *)pack->ep_emul_arg;
|
2003-10-19 11:52:22 +04:00
|
|
|
|
|
|
|
if (emea->dynamic == 1) {
|
|
|
|
macho_hdr = (struct exec_macho_object_header *)emea->macho_hdr;
|
|
|
|
error = copyout(&macho_hdr, *stackp, sizeof(macho_hdr));
|
|
|
|
if (error != 0)
|
|
|
|
return error;
|
|
|
|
*stackp += sizeof(macho_hdr);
|
|
|
|
}
|
2002-11-13 02:40:19 +03:00
|
|
|
|
2002-11-21 02:54:39 +03:00
|
|
|
cpp = (char **)*stackp;
|
|
|
|
argc = arginfo->ps_nargvstr;
|
|
|
|
envc = arginfo->ps_nenvstr;
|
|
|
|
if ((error = copyout(&argc, cpp++, sizeof(argc))) != 0)
|
2002-11-13 02:40:19 +03:00
|
|
|
return 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
|
|
|
dp = (char *) (cpp + argc + envc + 4);
|
2002-11-21 02:54:39 +03:00
|
|
|
|
2005-02-27 01:58:54 +03:00
|
|
|
if ((error = copyoutstr(emea->filename, dp,
|
2004-07-22 01:45:34 +04:00
|
|
|
(ARG_MAX < MAXPATHLEN) ? ARG_MAX : MAXPATHLEN, &len)) != 0)
|
2002-11-21 02:54:39 +03:00
|
|
|
return 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
|
|
|
progname = dp;
|
2002-11-21 02:54:39 +03:00
|
|
|
dp += len;
|
|
|
|
|
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
|
|
|
sp = argp;
|
2002-11-21 02:54:39 +03:00
|
|
|
arginfo->ps_argvstr = cpp; /* remember location of argv for later */
|
|
|
|
for (; --argc >= 0; sp += len, dp += len)
|
|
|
|
if ((error = copyout(&dp, cpp++, sizeof(dp))) != 0 ||
|
|
|
|
(error = copyoutstr(sp, dp, ARG_MAX, &len)) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
if ((error = copyout(&nullp, cpp++, sizeof(nullp))) != 0)
|
2002-11-13 02:40:19 +03:00
|
|
|
return error;
|
2002-11-21 02:54:39 +03:00
|
|
|
|
|
|
|
arginfo->ps_envstr = cpp; /* remember location of envp for later */
|
|
|
|
for (; --envc >= 0; sp += len, dp += len)
|
|
|
|
if ((error = copyout(&dp, cpp++, sizeof(dp))) != 0 ||
|
|
|
|
(error = copyoutstr(sp, dp, ARG_MAX, &len)) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
if ((error = copyout(&nullp, cpp++, sizeof(nullp))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
if ((error = copyout(&progname, cpp++, sizeof(progname))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
if ((error = copyout(&nullp, cpp++, sizeof(nullp))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
*stackp = (char *)cpp;
|
2002-11-13 02:40:19 +03:00
|
|
|
|
|
|
|
/* 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);
|
2002-11-13 02:40:19 +03:00
|
|
|
pack->ep_emul_arg = NULL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2002-12-07 18:33:01 +03:00
|
|
|
exec_darwin_probe(path)
|
2005-05-30 02:08:16 +04:00
|
|
|
const char **path;
|
2002-12-07 18:33:01 +03:00
|
|
|
{
|
2005-05-30 02:08:16 +04:00
|
|
|
*path = emul_darwin.e_path;
|
2002-11-13 02:40:19 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2002-12-07 18:33:01 +03:00
|
|
|
|
2005-02-27 01:58:54 +03:00
|
|
|
static void
|
2002-12-07 18:33:01 +03:00
|
|
|
darwin_e_proc_exec(p, epp)
|
|
|
|
struct proc *p;
|
|
|
|
struct exec_package *epp;
|
|
|
|
{
|
2002-12-28 03:15:23 +03:00
|
|
|
struct darwin_emuldata *ded;
|
|
|
|
|
2002-12-07 18:33:01 +03:00
|
|
|
darwin_e_proc_init(p, p->p_vmspace);
|
|
|
|
|
2003-11-18 04:40:18 +03:00
|
|
|
/* Setup the mach_emuldata part of darwin_emuldata */
|
|
|
|
mach_e_proc_exec(p, epp);
|
|
|
|
|
2002-12-28 03:15:23 +03:00
|
|
|
ded = (struct darwin_emuldata *)p->p_emuldata;
|
|
|
|
if (p->p_pid == darwin_init_pid)
|
|
|
|
ded->ded_fakepid = 1;
|
|
|
|
#ifdef DEBUG_DARWIN
|
|
|
|
printf("pid %d exec'd: fakepid = %d\n", p->p_pid, ded->ded_fakepid);
|
|
|
|
#endif
|
2003-09-30 23:49:00 +04:00
|
|
|
|
2002-12-07 18:33:01 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-02-27 01:58:54 +03:00
|
|
|
static void
|
2004-08-08 12:42:03 +04:00
|
|
|
darwin_e_proc_fork(p, parent, forkflags)
|
2002-12-07 18:33:01 +03:00
|
|
|
struct proc *p;
|
|
|
|
struct proc *parent;
|
2004-08-08 12:42:03 +04:00
|
|
|
int forkflags;
|
2002-12-07 18:33:01 +03:00
|
|
|
{
|
|
|
|
struct darwin_emuldata *ded1;
|
|
|
|
struct darwin_emuldata *ded2;
|
2003-01-03 16:40:04 +03:00
|
|
|
char *ed1, *ed2;
|
|
|
|
size_t len;
|
2002-12-07 18:33:01 +03:00
|
|
|
|
|
|
|
p->p_emuldata = NULL;
|
|
|
|
|
|
|
|
/* Use parent's vmspace because our vmspace may not be setup yet */
|
|
|
|
darwin_e_proc_init(p, parent->p_vmspace);
|
|
|
|
|
2005-02-27 01:58:54 +03:00
|
|
|
/*
|
|
|
|
* Setup the mach_emuldata part of darwin_emuldata
|
|
|
|
* The null third argument asks to not re-allocate
|
2003-11-21 01:05:25 +03:00
|
|
|
* p->p_emuldata again.
|
|
|
|
*/
|
|
|
|
mach_e_proc_fork1(p, parent, 0);
|
2003-11-18 04:40:18 +03:00
|
|
|
|
2002-12-07 18:33:01 +03:00
|
|
|
ded1 = p->p_emuldata;
|
|
|
|
ded2 = parent->p_emuldata;
|
|
|
|
|
2003-11-21 01:05:25 +03:00
|
|
|
ed1 = (char *)ded1 + sizeof(struct mach_emuldata);;
|
|
|
|
ed2 = (char *)ded2 + sizeof(struct mach_emuldata);;
|
2003-01-03 16:40:04 +03:00
|
|
|
len = sizeof(struct darwin_emuldata) - sizeof(struct mach_emuldata);
|
2003-11-21 01:05:25 +03:00
|
|
|
|
2003-01-03 16:40:04 +03:00
|
|
|
(void)memcpy(ed1, ed2, len);
|
2002-12-07 18:33:01 +03:00
|
|
|
|
2003-01-03 17:47:27 +03:00
|
|
|
if ((ded2->ded_fakepid == 1) && (darwin_init_pid != 0)) {
|
2002-12-28 03:15:23 +03:00
|
|
|
darwin_init_pid = 0;
|
|
|
|
ded1->ded_fakepid = 2;
|
|
|
|
} else {
|
|
|
|
ded1->ded_fakepid = 0;
|
|
|
|
}
|
|
|
|
#ifdef DEBUG_DARWIN
|
|
|
|
printf("pid %d fork'd: fakepid = %d\n", p->p_pid, ded1->ded_fakepid);
|
|
|
|
#endif
|
|
|
|
|
2002-12-07 18:33:01 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-02-27 01:58:54 +03:00
|
|
|
static void
|
2002-12-07 18:33:01 +03:00
|
|
|
darwin_e_proc_init(p, vmspace)
|
|
|
|
struct proc *p;
|
|
|
|
struct vmspace *vmspace;
|
|
|
|
{
|
2002-12-28 03:15:23 +03:00
|
|
|
struct darwin_emuldata *ded;
|
|
|
|
|
|
|
|
if (!p->p_emuldata) {
|
2002-12-07 18:33:01 +03:00
|
|
|
p->p_emuldata = malloc(sizeof(struct darwin_emuldata),
|
|
|
|
M_EMULDATA, M_WAITOK | M_ZERO);
|
|
|
|
|
2002-12-28 03:15:23 +03:00
|
|
|
}
|
2003-01-03 17:47:27 +03:00
|
|
|
ded = (struct darwin_emuldata *)p->p_emuldata;
|
|
|
|
ded->ded_fakepid = 0;
|
2003-08-30 03:11:40 +04:00
|
|
|
ded->ded_wsdev = NODEV;
|
2003-12-28 01:06:19 +03:00
|
|
|
ded->ded_vramoffset = NULL;
|
2002-12-28 03:15:23 +03:00
|
|
|
|
2003-11-18 04:40:18 +03:00
|
|
|
/* Initalize the mach_emuldata part of darwin_emuldata */
|
2002-12-07 18:33:01 +03:00
|
|
|
mach_e_proc_init(p, vmspace);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-02-27 01:58:54 +03:00
|
|
|
static void
|
2002-12-07 18:33:01 +03:00
|
|
|
darwin_e_proc_exit(p)
|
|
|
|
struct proc *p;
|
|
|
|
{
|
2002-12-30 21:44:33 +03:00
|
|
|
struct darwin_emuldata *ded;
|
2003-08-30 03:11:40 +04:00
|
|
|
int error, mode;
|
2003-09-30 23:49:00 +04:00
|
|
|
struct wsdisplay_cmap cmap;
|
|
|
|
u_char *red;
|
|
|
|
u_char *green;
|
|
|
|
u_char *blue;
|
|
|
|
u_char kred[256];
|
|
|
|
u_char kgreen[256];
|
|
|
|
u_char kblue[256];
|
|
|
|
caddr_t sg = stackgap_init(p, 0);
|
2002-12-30 21:44:33 +03:00
|
|
|
|
|
|
|
ded = p->p_emuldata;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* mach_init is setting the bootstrap port for other processes.
|
2005-02-27 01:58:54 +03:00
|
|
|
* If mach_init dies, we want to restore the original bootstrap
|
2002-12-30 21:44:33 +03:00
|
|
|
* port.
|
|
|
|
*/
|
|
|
|
if (ded->ded_fakepid == 2)
|
|
|
|
mach_bootstrap_port = mach_saved_bootstrap_port;
|
|
|
|
|
2003-10-25 14:43:45 +04:00
|
|
|
/*
|
|
|
|
* Terminate the iohidsystem kernel thread.
|
|
|
|
* We need to post a fake event in case
|
|
|
|
* the thread is sleeping for an event.
|
|
|
|
*/
|
|
|
|
if (ded->ded_hidsystem_finished != NULL) {
|
|
|
|
*ded->ded_hidsystem_finished = 1;
|
|
|
|
darwin_iohidsystem_postfake(p);
|
|
|
|
wakeup(ded->ded_hidsystem_finished);
|
|
|
|
}
|
|
|
|
|
2005-02-27 01:58:54 +03:00
|
|
|
/*
|
|
|
|
* Restore text mode and black and white colormap
|
2003-10-25 14:43:45 +04:00
|
|
|
*/
|
2003-08-30 03:11:40 +04:00
|
|
|
if (ded->ded_wsdev != NODEV) {
|
|
|
|
mode = WSDISPLAYIO_MODE_EMUL;
|
|
|
|
error = (*wsdisplay_cdevsw.d_ioctl)(ded->ded_wsdev,
|
|
|
|
WSDISPLAYIO_SMODE, (caddr_t)&mode, 0, p);
|
|
|
|
#ifdef DEBUG_DARWIN
|
|
|
|
if (error != 0)
|
|
|
|
printf("Unable to switch back to text mode\n");
|
|
|
|
#endif
|
2003-09-30 23:49:00 +04:00
|
|
|
red = stackgap_alloc(p, &sg, 256);
|
|
|
|
green = stackgap_alloc(p, &sg, 256);
|
|
|
|
blue = stackgap_alloc(p, &sg, 256);
|
|
|
|
|
|
|
|
(void)memset(kred, 255, 256);
|
|
|
|
(void)memset(kgreen, 255, 256);
|
|
|
|
(void)memset(kblue, 255, 256);
|
|
|
|
|
|
|
|
kred[0] = 0;
|
|
|
|
kgreen[0] = 0;
|
|
|
|
kblue[0] = 0;
|
|
|
|
|
|
|
|
cmap.index = 0;
|
|
|
|
cmap.count = 256;
|
|
|
|
cmap.red = red;
|
|
|
|
cmap.green = green;
|
|
|
|
cmap.blue = blue;
|
|
|
|
|
|
|
|
if (((error = copyout(kred, red, 256)) != 0) ||
|
|
|
|
((error = copyout(kgreen, green, 256)) != 0) ||
|
|
|
|
((error = copyout(kblue, blue, 256)) != 0))
|
|
|
|
error = (*wsdisplay_cdevsw.d_ioctl)(ded->ded_wsdev,
|
|
|
|
WSDISPLAYIO_PUTCMAP, (caddr_t)&cmap, 0, p);
|
|
|
|
#ifdef DEBUG_DARWIN
|
|
|
|
if (error != 0)
|
|
|
|
printf("Cannot revert colormap (error %d)\n", error);
|
|
|
|
#endif
|
|
|
|
|
2003-08-30 03:11:40 +04:00
|
|
|
}
|
2005-02-27 01:58:54 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Cleanup mach_emuldata part of darwin_emuldata
|
2003-11-18 04:40:18 +03:00
|
|
|
* It will also free p->p_emuldata.
|
|
|
|
*/
|
2002-12-31 18:47:37 +03:00
|
|
|
mach_e_proc_exit(p);
|
2002-12-07 18:33:01 +03:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2004-07-03 04:14:30 +04:00
|
|
|
|
|
|
|
int
|
|
|
|
darwin_exec_setup_stack(p, epp)
|
|
|
|
struct proc *p;
|
|
|
|
struct exec_package *epp;
|
|
|
|
{
|
|
|
|
u_long max_stack_size;
|
|
|
|
u_long access_linear_min, access_size;
|
|
|
|
u_long noaccess_linear_min, noaccess_size;
|
|
|
|
|
|
|
|
if (epp->ep_flags & EXEC_32) {
|
|
|
|
epp->ep_minsaddr = DARWIN_USRSTACK32;
|
|
|
|
max_stack_size = MAXSSIZ;
|
|
|
|
} else {
|
|
|
|
epp->ep_minsaddr = DARWIN_USRSTACK;
|
|
|
|
max_stack_size = MAXSSIZ;
|
|
|
|
}
|
2005-02-27 01:58:54 +03:00
|
|
|
epp->ep_maxsaddr = (u_long)STACK_GROW(epp->ep_minsaddr,
|
2004-07-03 04:14:30 +04:00
|
|
|
max_stack_size);
|
|
|
|
epp->ep_ssize = p->p_rlimit[RLIMIT_STACK].rlim_cur;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* set up commands for stack. note that this takes *two*, one to
|
|
|
|
* map the part of the stack which we can access, and one to map
|
|
|
|
* the part which we can't.
|
|
|
|
*
|
|
|
|
* arguably, it could be made into one, but that would require the
|
|
|
|
* addition of another mapping proc, which is unnecessary
|
|
|
|
*/
|
|
|
|
access_size = epp->ep_ssize;
|
|
|
|
access_linear_min = (u_long)STACK_ALLOC(epp->ep_minsaddr, access_size);
|
|
|
|
noaccess_size = max_stack_size - access_size;
|
2005-02-27 01:58:54 +03:00
|
|
|
noaccess_linear_min = (u_long)STACK_ALLOC(STACK_GROW(epp->ep_minsaddr,
|
2004-07-03 04:14:30 +04:00
|
|
|
access_size), noaccess_size);
|
|
|
|
if (noaccess_size > 0) {
|
|
|
|
NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_zero, noaccess_size,
|
|
|
|
noaccess_linear_min, NULL, 0, VM_PROT_NONE);
|
|
|
|
}
|
|
|
|
KASSERT(access_size > 0);
|
|
|
|
NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_zero, access_size,
|
|
|
|
access_linear_min, NULL, 0, VM_PROT_READ | VM_PROT_WRITE);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|