2006-01-19 02:42:46 +01:00
|
|
|
/*
|
2007-10-16 10:27:00 +02:00
|
|
|
* Copyright (C) 2002- 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
2006-01-19 02:42:46 +01:00
|
|
|
* Licensed under the GPL
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sched.h>
|
2007-10-16 10:27:00 +02:00
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
2006-01-19 02:42:46 +01:00
|
|
|
#include <sys/mman.h>
|
2007-10-16 10:27:00 +02:00
|
|
|
#include <sys/ptrace.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <asm/unistd.h>
|
|
|
|
#include "as-layout.h"
|
2006-01-19 02:42:46 +01:00
|
|
|
#include "chan_user.h"
|
2007-10-16 10:27:00 +02:00
|
|
|
#include "kern_constants.h"
|
2008-02-05 07:30:46 +01:00
|
|
|
#include "kern_util.h"
|
2006-01-19 02:42:46 +01:00
|
|
|
#include "mem.h"
|
2007-10-16 10:27:00 +02:00
|
|
|
#include "os.h"
|
2006-01-19 02:42:46 +01:00
|
|
|
#include "process.h"
|
2007-10-16 10:27:00 +02:00
|
|
|
#include "proc_mm.h"
|
|
|
|
#include "ptrace_user.h"
|
|
|
|
#include "registers.h"
|
|
|
|
#include "skas.h"
|
|
|
|
#include "skas_ptrace.h"
|
|
|
|
#include "user.h"
|
|
|
|
#include "sysdep/stub.h"
|
2006-01-19 02:42:46 +01:00
|
|
|
|
|
|
|
int is_skas_winch(int pid, int fd, void *data)
|
|
|
|
{
|
2007-10-16 10:27:11 +02:00
|
|
|
if (pid != getpgrp())
|
2007-10-16 10:27:00 +02:00
|
|
|
return 0;
|
2006-01-19 02:42:46 +01:00
|
|
|
|
2007-07-16 08:38:55 +02:00
|
|
|
register_winch_irq(-1, fd, -1, data, 0);
|
2007-10-16 10:27:00 +02:00
|
|
|
return 1;
|
2006-01-19 02:42:46 +01:00
|
|
|
}
|
|
|
|
|
2007-05-06 23:51:29 +02:00
|
|
|
static int ptrace_dump_regs(int pid)
|
|
|
|
{
|
2008-02-05 07:30:58 +01:00
|
|
|
unsigned long regs[MAX_REG_NR];
|
|
|
|
int i;
|
2007-05-06 23:51:29 +02:00
|
|
|
|
2008-02-05 07:30:58 +01:00
|
|
|
if (ptrace(PTRACE_GETREGS, pid, 0, regs) < 0)
|
|
|
|
return -errno;
|
2007-10-16 10:27:00 +02:00
|
|
|
|
|
|
|
printk(UM_KERN_ERR "Stub registers -\n");
|
|
|
|
for (i = 0; i < ARRAY_SIZE(regs); i++)
|
|
|
|
printk(UM_KERN_ERR "\t%d - %lx\n", i, regs[i]);
|
2007-05-06 23:51:29 +02:00
|
|
|
|
2008-02-05 07:30:58 +01:00
|
|
|
return 0;
|
2007-05-06 23:51:29 +02:00
|
|
|
}
|
|
|
|
|
2007-05-06 23:51:48 +02:00
|
|
|
/*
|
|
|
|
* Signals that are OK to receive in the stub - we'll just continue it.
|
|
|
|
* SIGWINCH will happen when UML is inside a detached screen.
|
|
|
|
*/
|
2008-02-05 07:30:56 +01:00
|
|
|
#define STUB_SIG_MASK (1 << SIGVTALRM)
|
2007-05-06 23:51:48 +02:00
|
|
|
|
|
|
|
/* Signals that the stub will finish with - anything else is an error */
|
2008-02-05 07:30:56 +01:00
|
|
|
#define STUB_DONE_MASK (1 << SIGTRAP)
|
2007-05-06 23:51:48 +02:00
|
|
|
|
|
|
|
void wait_stub_done(int pid)
|
2006-01-19 02:42:46 +01:00
|
|
|
{
|
|
|
|
int n, status, err;
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
while (1) {
|
2007-12-18 01:19:46 +01:00
|
|
|
CATCH_EINTR(n = waitpid(pid, &status, WUNTRACED | __WALL));
|
2007-10-16 10:27:00 +02:00
|
|
|
if ((n < 0) || !WIFSTOPPED(status))
|
2007-05-06 23:51:48 +02:00
|
|
|
goto bad_wait;
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (((1 << WSTOPSIG(status)) & STUB_SIG_MASK) == 0)
|
2007-05-06 23:51:48 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
err = ptrace(PTRACE_CONT, pid, 0, 0);
|
2008-02-05 07:30:58 +01:00
|
|
|
if (err) {
|
|
|
|
printk(UM_KERN_ERR "wait_stub_done : continue failed, "
|
|
|
|
"errno = %d\n", errno);
|
|
|
|
fatal_sigsegv();
|
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
}
|
2007-05-06 23:51:48 +02:00
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (((1 << WSTOPSIG(status)) & STUB_DONE_MASK) != 0)
|
2007-05-06 23:51:48 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
bad_wait:
|
|
|
|
err = ptrace_dump_regs(pid);
|
2007-10-16 10:27:00 +02:00
|
|
|
if (err)
|
|
|
|
printk(UM_KERN_ERR "Failed to get registers from stub, "
|
|
|
|
"errno = %d\n", -err);
|
2008-02-05 07:30:58 +01:00
|
|
|
printk(UM_KERN_ERR "wait_stub_done : failed to wait for SIGTRAP, "
|
|
|
|
"pid = %d, n = %d, errno = %d, status = 0x%x\n", pid, n, errno,
|
|
|
|
status);
|
|
|
|
fatal_sigsegv();
|
2006-01-19 02:42:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
extern unsigned long current_stub_stack(void);
|
|
|
|
|
|
|
|
void get_skas_faultinfo(int pid, struct faultinfo * fi)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (ptrace_faultinfo) {
|
2006-01-19 02:42:46 +01:00
|
|
|
err = ptrace(PTRACE_FAULTINFO, pid, 0, fi);
|
2008-02-05 07:30:58 +01:00
|
|
|
if (err) {
|
|
|
|
printk(UM_KERN_ERR "get_skas_faultinfo - "
|
|
|
|
"PTRACE_FAULTINFO failed, errno = %d\n", errno);
|
|
|
|
fatal_sigsegv();
|
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
|
|
|
|
/* Special handling for i386, which has different structs */
|
|
|
|
if (sizeof(struct ptrace_faultinfo) < sizeof(struct faultinfo))
|
|
|
|
memset((char *)fi + sizeof(struct ptrace_faultinfo), 0,
|
|
|
|
sizeof(struct faultinfo) -
|
|
|
|
sizeof(struct ptrace_faultinfo));
|
|
|
|
}
|
|
|
|
else {
|
uml: fix FP register corruption
Commit ee3d9bd4de1ed93d2a7ee41c331ed30a1c7b8acd ("uml: simplify SIGSEGV
handling"), while greatly simplifying the kernel SIGSEGV handler that
runs in the process address space, introduced a bug which corrupts FP
state in the process.
Previously, the SIGSEGV handler called the sigreturn system call by hand - it
couldn't return through the restorer provided to it because that could try to
call the libc restorer which likely wouldn't exist in the process address
space. So, it blocked off some signals, including SIGUSR1, on entry to the
SIGSEGV handler, queued a SIGUSR1 to itself, and invoked sigreturn. The
SIGUSR1 was delivered, and was visible to the UML kernel after sigreturn
finished.
The commit eliminated the signal masking and the call to sigreturn. The
handler simply hits itself with a SIGTRAP to let the UML kernel know that it
is finished. UML then restores the process registers, which effectively
longjmps the process out of the signal handler, skipping sigreturn's restoring
of register state and the signal mask.
The bug is that the host apparently sets used_fp to 0 when it saves the
process FP state in the sigcontext on the process signal stack. Thus, when
the process is longjmped out of the handler, its FP state is corrupt because
it wasn't saved on the context switch to the UML kernel.
This manifested itself as sleep hanging. For some reason, sleep uses floating
point in order to calculate the sleep interval. When a page fault corrupts
its FP state, it is faked into essentially sleeping forever.
This patch saves the FP state before entering the SIGSEGV handler and restores
it afterwards.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2008-02-24 00:23:49 +01:00
|
|
|
unsigned long fpregs[FP_SIZE];
|
|
|
|
|
|
|
|
err = get_fp_registers(pid, fpregs);
|
|
|
|
if (err < 0) {
|
|
|
|
printk(UM_KERN_ERR "save_fp_registers returned %d\n",
|
|
|
|
err);
|
|
|
|
fatal_sigsegv();
|
|
|
|
}
|
2007-05-06 23:51:48 +02:00
|
|
|
err = ptrace(PTRACE_CONT, pid, 0, SIGSEGV);
|
2008-02-05 07:30:58 +01:00
|
|
|
if (err) {
|
|
|
|
printk(UM_KERN_ERR "Failed to continue stub, pid = %d, "
|
|
|
|
"errno = %d\n", pid, errno);
|
|
|
|
fatal_sigsegv();
|
|
|
|
}
|
2007-05-06 23:51:48 +02:00
|
|
|
wait_stub_done(pid);
|
2006-01-19 02:42:46 +01:00
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
/*
|
|
|
|
* faultinfo is prepared by the stub-segv-handler at start of
|
2006-01-19 02:42:46 +01:00
|
|
|
* the stub stack page. We just have to copy it.
|
|
|
|
*/
|
|
|
|
memcpy(fi, (void *)current_stub_stack(), sizeof(*fi));
|
uml: fix FP register corruption
Commit ee3d9bd4de1ed93d2a7ee41c331ed30a1c7b8acd ("uml: simplify SIGSEGV
handling"), while greatly simplifying the kernel SIGSEGV handler that
runs in the process address space, introduced a bug which corrupts FP
state in the process.
Previously, the SIGSEGV handler called the sigreturn system call by hand - it
couldn't return through the restorer provided to it because that could try to
call the libc restorer which likely wouldn't exist in the process address
space. So, it blocked off some signals, including SIGUSR1, on entry to the
SIGSEGV handler, queued a SIGUSR1 to itself, and invoked sigreturn. The
SIGUSR1 was delivered, and was visible to the UML kernel after sigreturn
finished.
The commit eliminated the signal masking and the call to sigreturn. The
handler simply hits itself with a SIGTRAP to let the UML kernel know that it
is finished. UML then restores the process registers, which effectively
longjmps the process out of the signal handler, skipping sigreturn's restoring
of register state and the signal mask.
The bug is that the host apparently sets used_fp to 0 when it saves the
process FP state in the sigcontext on the process signal stack. Thus, when
the process is longjmped out of the handler, its FP state is corrupt because
it wasn't saved on the context switch to the UML kernel.
This manifested itself as sleep hanging. For some reason, sleep uses floating
point in order to calculate the sleep interval. When a page fault corrupts
its FP state, it is faked into essentially sleeping forever.
This patch saves the FP state before entering the SIGSEGV handler and restores
it afterwards.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2008-02-24 00:23:49 +01:00
|
|
|
|
|
|
|
err = put_fp_registers(pid, fpregs);
|
|
|
|
if (err < 0) {
|
|
|
|
printk(UM_KERN_ERR "put_fp_registers returned %d\n",
|
|
|
|
err);
|
|
|
|
fatal_sigsegv();
|
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-16 10:26:58 +02:00
|
|
|
static void handle_segv(int pid, struct uml_pt_regs * regs)
|
2006-01-19 02:42:46 +01:00
|
|
|
{
|
2007-10-16 10:26:58 +02:00
|
|
|
get_skas_faultinfo(pid, ®s->faultinfo);
|
|
|
|
segv(regs->faultinfo, 0, 1, NULL);
|
2006-01-19 02:42:46 +01:00
|
|
|
}
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
/*
|
|
|
|
* To use the same value of using_sysemu as the caller, ask it that value
|
|
|
|
* (in local_using_sysemu
|
|
|
|
*/
|
|
|
|
static void handle_trap(int pid, struct uml_pt_regs *regs,
|
|
|
|
int local_using_sysemu)
|
2006-01-19 02:42:46 +01:00
|
|
|
{
|
|
|
|
int err, status;
|
|
|
|
|
2008-02-05 07:31:12 +01:00
|
|
|
if ((UPT_IP(regs) >= STUB_START) && (UPT_IP(regs) < STUB_END))
|
|
|
|
fatal_sigsegv();
|
|
|
|
|
2006-01-19 02:42:46 +01:00
|
|
|
/* Mark this as a syscall */
|
2007-10-16 10:27:07 +02:00
|
|
|
UPT_SYSCALL_NR(regs) = PT_SYSCALL_NR(regs->gp);
|
2006-01-19 02:42:46 +01:00
|
|
|
|
|
|
|
if (!local_using_sysemu)
|
|
|
|
{
|
|
|
|
err = ptrace(PTRACE_POKEUSR, pid, PT_SYSCALL_NR_OFFSET,
|
|
|
|
__NR_getpid);
|
2008-02-05 07:30:58 +01:00
|
|
|
if (err < 0) {
|
|
|
|
printk(UM_KERN_ERR "handle_trap - nullifying syscall "
|
|
|
|
"failed, errno = %d\n", errno);
|
|
|
|
fatal_sigsegv();
|
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
|
|
|
|
err = ptrace(PTRACE_SYSCALL, pid, 0, 0);
|
2008-02-05 07:30:58 +01:00
|
|
|
if (err < 0) {
|
|
|
|
printk(UM_KERN_ERR "handle_trap - continuing to end of "
|
|
|
|
"syscall failed, errno = %d\n", errno);
|
|
|
|
fatal_sigsegv();
|
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
|
2007-12-18 01:19:46 +01:00
|
|
|
CATCH_EINTR(err = waitpid(pid, &status, WUNTRACED | __WALL));
|
2007-10-16 10:27:00 +02:00
|
|
|
if ((err < 0) || !WIFSTOPPED(status) ||
|
2008-02-05 07:30:58 +01:00
|
|
|
(WSTOPSIG(status) != SIGTRAP + 0x80)) {
|
|
|
|
err = ptrace_dump_regs(pid);
|
|
|
|
if (err)
|
|
|
|
printk(UM_KERN_ERR "Failed to get registers "
|
2007-10-16 10:27:00 +02:00
|
|
|
"from process, errno = %d\n", -err);
|
2008-02-05 07:30:58 +01:00
|
|
|
printk(UM_KERN_ERR "handle_trap - failed to wait at "
|
|
|
|
"end of syscall, errno = %d, status = %d\n",
|
|
|
|
errno, status);
|
|
|
|
fatal_sigsegv();
|
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
handle_syscall(regs);
|
|
|
|
}
|
|
|
|
|
|
|
|
extern int __syscall_stub_start;
|
|
|
|
|
|
|
|
static int userspace_tramp(void *stack)
|
|
|
|
{
|
|
|
|
void *addr;
|
2006-09-26 08:33:05 +02:00
|
|
|
int err;
|
2006-01-19 02:42:46 +01:00
|
|
|
|
|
|
|
ptrace(PTRACE_TRACEME, 0, 0, 0);
|
|
|
|
|
2007-10-16 10:27:35 +02:00
|
|
|
signal(SIGTERM, SIG_DFL);
|
2008-02-05 07:30:56 +01:00
|
|
|
signal(SIGWINCH, SIG_IGN);
|
2007-10-16 10:27:22 +02:00
|
|
|
err = set_interval();
|
2008-02-05 07:30:58 +01:00
|
|
|
if (err) {
|
|
|
|
printk(UM_KERN_ERR "userspace_tramp - setting timer failed, "
|
|
|
|
"errno = %d\n", err);
|
|
|
|
exit(1);
|
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (!proc_mm) {
|
|
|
|
/*
|
|
|
|
* This has a pte, but it can't be mapped in with the usual
|
2006-01-19 02:42:46 +01:00
|
|
|
* tlb_flush mechanism because this is part of that mechanism
|
|
|
|
*/
|
2006-01-19 02:42:48 +01:00
|
|
|
int fd;
|
2007-10-16 10:27:00 +02:00
|
|
|
unsigned long long offset;
|
2006-01-19 02:42:48 +01:00
|
|
|
fd = phys_mapping(to_phys(&__syscall_stub_start), &offset);
|
uml: fix stub address calculations
The calculation of CONFIG_STUB_CODE and CONFIG_STUB_DATA didn't take into
account anything but 3G/1G and 2G/2G, leaving the other vmsplits out in the
cold.
I'd rather not duplicate the four known host vmsplit cases for each of these
symbols. I'd also like to calculate them based on the highest userspace
address.
The Kconfig language seems not to allow calculation of hex constants, so I
moved this to as-layout.h. CONFIG_STUB_CODE, CONFIG_STUB_DATA, and
CONFIG_STUB_START are now gone. In their place are STUB_CODE, STUB_DATA, and
STUB_START in as-layout.h.
i386 and x86_64 seem to differ as to whether an unadorned constant is an int
or a long, so I cast them to unsigned long so they can be printed
consistently. However, they are also used in stub.S, where C types don't work
so well. So, there are ASM_ versions of these constants for use in stub.S. I
also ifdef-ed the non-asm-friendly portion of as-layout.h.
With this in place, most of the rest of this patch is changing CONFIG_STUB_*
to STUB_*, except in stub.S, where they are changed to ASM_STUB_*.
defconfig has the old symbols deleted.
I also print these addresses out in case there is any problem mapping them on
the host.
The two stub.S files had some trailing whitespace, so that is cleaned up here.
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-16 10:27:33 +02:00
|
|
|
addr = mmap64((void *) STUB_CODE, UM_KERN_PAGE_SIZE,
|
2006-01-19 02:42:48 +01:00
|
|
|
PROT_EXEC, MAP_FIXED | MAP_PRIVATE, fd, offset);
|
2007-10-16 10:27:00 +02:00
|
|
|
if (addr == MAP_FAILED) {
|
uml: fix stub address calculations
The calculation of CONFIG_STUB_CODE and CONFIG_STUB_DATA didn't take into
account anything but 3G/1G and 2G/2G, leaving the other vmsplits out in the
cold.
I'd rather not duplicate the four known host vmsplit cases for each of these
symbols. I'd also like to calculate them based on the highest userspace
address.
The Kconfig language seems not to allow calculation of hex constants, so I
moved this to as-layout.h. CONFIG_STUB_CODE, CONFIG_STUB_DATA, and
CONFIG_STUB_START are now gone. In their place are STUB_CODE, STUB_DATA, and
STUB_START in as-layout.h.
i386 and x86_64 seem to differ as to whether an unadorned constant is an int
or a long, so I cast them to unsigned long so they can be printed
consistently. However, they are also used in stub.S, where C types don't work
so well. So, there are ASM_ versions of these constants for use in stub.S. I
also ifdef-ed the non-asm-friendly portion of as-layout.h.
With this in place, most of the rest of this patch is changing CONFIG_STUB_*
to STUB_*, except in stub.S, where they are changed to ASM_STUB_*.
defconfig has the old symbols deleted.
I also print these addresses out in case there is any problem mapping them on
the host.
The two stub.S files had some trailing whitespace, so that is cleaned up here.
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-16 10:27:33 +02:00
|
|
|
printk(UM_KERN_ERR "mapping mmap stub at 0x%lx failed, "
|
|
|
|
"errno = %d\n", STUB_CODE, errno);
|
2006-01-19 02:42:46 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (stack != NULL) {
|
2006-01-19 02:42:46 +01:00
|
|
|
fd = phys_mapping(to_phys(stack), &offset);
|
uml: fix stub address calculations
The calculation of CONFIG_STUB_CODE and CONFIG_STUB_DATA didn't take into
account anything but 3G/1G and 2G/2G, leaving the other vmsplits out in the
cold.
I'd rather not duplicate the four known host vmsplit cases for each of these
symbols. I'd also like to calculate them based on the highest userspace
address.
The Kconfig language seems not to allow calculation of hex constants, so I
moved this to as-layout.h. CONFIG_STUB_CODE, CONFIG_STUB_DATA, and
CONFIG_STUB_START are now gone. In their place are STUB_CODE, STUB_DATA, and
STUB_START in as-layout.h.
i386 and x86_64 seem to differ as to whether an unadorned constant is an int
or a long, so I cast them to unsigned long so they can be printed
consistently. However, they are also used in stub.S, where C types don't work
so well. So, there are ASM_ versions of these constants for use in stub.S. I
also ifdef-ed the non-asm-friendly portion of as-layout.h.
With this in place, most of the rest of this patch is changing CONFIG_STUB_*
to STUB_*, except in stub.S, where they are changed to ASM_STUB_*.
defconfig has the old symbols deleted.
I also print these addresses out in case there is any problem mapping them on
the host.
The two stub.S files had some trailing whitespace, so that is cleaned up here.
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-16 10:27:33 +02:00
|
|
|
addr = mmap((void *) STUB_DATA,
|
2007-05-06 23:51:22 +02:00
|
|
|
UM_KERN_PAGE_SIZE, PROT_READ | PROT_WRITE,
|
2006-01-19 02:42:46 +01:00
|
|
|
MAP_FIXED | MAP_SHARED, fd, offset);
|
2007-10-16 10:27:00 +02:00
|
|
|
if (addr == MAP_FAILED) {
|
|
|
|
printk(UM_KERN_ERR "mapping segfault stack "
|
uml: fix stub address calculations
The calculation of CONFIG_STUB_CODE and CONFIG_STUB_DATA didn't take into
account anything but 3G/1G and 2G/2G, leaving the other vmsplits out in the
cold.
I'd rather not duplicate the four known host vmsplit cases for each of these
symbols. I'd also like to calculate them based on the highest userspace
address.
The Kconfig language seems not to allow calculation of hex constants, so I
moved this to as-layout.h. CONFIG_STUB_CODE, CONFIG_STUB_DATA, and
CONFIG_STUB_START are now gone. In their place are STUB_CODE, STUB_DATA, and
STUB_START in as-layout.h.
i386 and x86_64 seem to differ as to whether an unadorned constant is an int
or a long, so I cast them to unsigned long so they can be printed
consistently. However, they are also used in stub.S, where C types don't work
so well. So, there are ASM_ versions of these constants for use in stub.S. I
also ifdef-ed the non-asm-friendly portion of as-layout.h.
With this in place, most of the rest of this patch is changing CONFIG_STUB_*
to STUB_*, except in stub.S, where they are changed to ASM_STUB_*.
defconfig has the old symbols deleted.
I also print these addresses out in case there is any problem mapping them on
the host.
The two stub.S files had some trailing whitespace, so that is cleaned up here.
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-16 10:27:33 +02:00
|
|
|
"at 0x%lx failed, errno = %d\n",
|
|
|
|
STUB_DATA, errno);
|
2006-01-19 02:42:46 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-10-16 10:27:00 +02:00
|
|
|
if (!ptrace_faultinfo && (stack != NULL)) {
|
2006-09-26 08:33:04 +02:00
|
|
|
struct sigaction sa;
|
|
|
|
|
uml: fix stub address calculations
The calculation of CONFIG_STUB_CODE and CONFIG_STUB_DATA didn't take into
account anything but 3G/1G and 2G/2G, leaving the other vmsplits out in the
cold.
I'd rather not duplicate the four known host vmsplit cases for each of these
symbols. I'd also like to calculate them based on the highest userspace
address.
The Kconfig language seems not to allow calculation of hex constants, so I
moved this to as-layout.h. CONFIG_STUB_CODE, CONFIG_STUB_DATA, and
CONFIG_STUB_START are now gone. In their place are STUB_CODE, STUB_DATA, and
STUB_START in as-layout.h.
i386 and x86_64 seem to differ as to whether an unadorned constant is an int
or a long, so I cast them to unsigned long so they can be printed
consistently. However, they are also used in stub.S, where C types don't work
so well. So, there are ASM_ versions of these constants for use in stub.S. I
also ifdef-ed the non-asm-friendly portion of as-layout.h.
With this in place, most of the rest of this patch is changing CONFIG_STUB_*
to STUB_*, except in stub.S, where they are changed to ASM_STUB_*.
defconfig has the old symbols deleted.
I also print these addresses out in case there is any problem mapping them on
the host.
The two stub.S files had some trailing whitespace, so that is cleaned up here.
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-16 10:27:33 +02:00
|
|
|
unsigned long v = STUB_CODE +
|
2006-01-19 02:42:46 +01:00
|
|
|
(unsigned long) stub_segv_handler -
|
|
|
|
(unsigned long) &__syscall_stub_start;
|
|
|
|
|
uml: fix stub address calculations
The calculation of CONFIG_STUB_CODE and CONFIG_STUB_DATA didn't take into
account anything but 3G/1G and 2G/2G, leaving the other vmsplits out in the
cold.
I'd rather not duplicate the four known host vmsplit cases for each of these
symbols. I'd also like to calculate them based on the highest userspace
address.
The Kconfig language seems not to allow calculation of hex constants, so I
moved this to as-layout.h. CONFIG_STUB_CODE, CONFIG_STUB_DATA, and
CONFIG_STUB_START are now gone. In their place are STUB_CODE, STUB_DATA, and
STUB_START in as-layout.h.
i386 and x86_64 seem to differ as to whether an unadorned constant is an int
or a long, so I cast them to unsigned long so they can be printed
consistently. However, they are also used in stub.S, where C types don't work
so well. So, there are ASM_ versions of these constants for use in stub.S. I
also ifdef-ed the non-asm-friendly portion of as-layout.h.
With this in place, most of the rest of this patch is changing CONFIG_STUB_*
to STUB_*, except in stub.S, where they are changed to ASM_STUB_*.
defconfig has the old symbols deleted.
I also print these addresses out in case there is any problem mapping them on
the host.
The two stub.S files had some trailing whitespace, so that is cleaned up here.
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-16 10:27:33 +02:00
|
|
|
set_sigstack((void *) STUB_DATA, UM_KERN_PAGE_SIZE);
|
2006-09-26 08:33:04 +02:00
|
|
|
sigemptyset(&sa.sa_mask);
|
2008-02-05 07:30:56 +01:00
|
|
|
sa.sa_flags = SA_ONSTACK | SA_NODEFER;
|
2006-09-26 08:33:04 +02:00
|
|
|
sa.sa_handler = (void *) v;
|
|
|
|
sa.sa_restorer = NULL;
|
2008-02-05 07:30:58 +01:00
|
|
|
if (sigaction(SIGSEGV, &sa, NULL) < 0) {
|
|
|
|
printk(UM_KERN_ERR "userspace_tramp - setting SIGSEGV "
|
|
|
|
"handler failed - errno = %d\n", errno);
|
|
|
|
exit(1);
|
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
}
|
|
|
|
|
2007-10-16 10:27:11 +02:00
|
|
|
kill(os_getpid(), SIGSTOP);
|
2007-10-16 10:27:00 +02:00
|
|
|
return 0;
|
2006-01-19 02:42:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Each element set once, and only accessed by a single processor anyway */
|
|
|
|
#undef NR_CPUS
|
|
|
|
#define NR_CPUS 1
|
|
|
|
int userspace_pid[NR_CPUS];
|
|
|
|
|
|
|
|
int start_userspace(unsigned long stub_stack)
|
|
|
|
{
|
|
|
|
void *stack;
|
|
|
|
unsigned long sp;
|
2008-02-05 07:30:58 +01:00
|
|
|
int pid, status, n, flags, err;
|
2006-01-19 02:42:46 +01:00
|
|
|
|
2007-06-16 19:16:09 +02:00
|
|
|
stack = mmap(NULL, UM_KERN_PAGE_SIZE,
|
|
|
|
PROT_READ | PROT_WRITE | PROT_EXEC,
|
2006-01-19 02:42:46 +01:00
|
|
|
MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
|
2008-02-05 07:30:58 +01:00
|
|
|
if (stack == MAP_FAILED) {
|
|
|
|
err = -errno;
|
|
|
|
printk(UM_KERN_ERR "start_userspace : mmap failed, "
|
2008-02-05 07:31:21 +01:00
|
|
|
"errno = %d\n", errno);
|
2008-02-05 07:30:58 +01:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2007-06-16 19:16:09 +02:00
|
|
|
sp = (unsigned long) stack + UM_KERN_PAGE_SIZE - sizeof(void *);
|
2006-01-19 02:42:46 +01:00
|
|
|
|
2007-12-18 01:19:46 +01:00
|
|
|
flags = CLONE_FILES;
|
2007-10-16 10:27:00 +02:00
|
|
|
if (proc_mm)
|
|
|
|
flags |= CLONE_VM;
|
2007-12-18 01:19:46 +01:00
|
|
|
else
|
|
|
|
flags |= SIGCHLD;
|
2007-10-16 10:27:00 +02:00
|
|
|
|
2006-01-19 02:42:46 +01:00
|
|
|
pid = clone(userspace_tramp, (void *) sp, flags, (void *) stub_stack);
|
2008-02-05 07:30:58 +01:00
|
|
|
if (pid < 0) {
|
|
|
|
err = -errno;
|
|
|
|
printk(UM_KERN_ERR "start_userspace : clone failed, "
|
2008-02-05 07:31:21 +01:00
|
|
|
"errno = %d\n", errno);
|
2008-02-05 07:30:58 +01:00
|
|
|
return err;
|
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
|
|
|
|
do {
|
2007-12-18 01:19:46 +01:00
|
|
|
CATCH_EINTR(n = waitpid(pid, &status, WUNTRACED | __WALL));
|
2008-02-05 07:30:58 +01:00
|
|
|
if (n < 0) {
|
|
|
|
err = -errno;
|
|
|
|
printk(UM_KERN_ERR "start_userspace : wait failed, "
|
2008-02-05 07:31:21 +01:00
|
|
|
"errno = %d\n", errno);
|
2008-02-05 07:30:58 +01:00
|
|
|
goto out_kill;
|
|
|
|
}
|
2007-10-16 10:27:00 +02:00
|
|
|
} while (WIFSTOPPED(status) && (WSTOPSIG(status) == SIGVTALRM));
|
2006-01-19 02:42:46 +01:00
|
|
|
|
2008-02-05 07:30:58 +01:00
|
|
|
if (!WIFSTOPPED(status) || (WSTOPSIG(status) != SIGSTOP)) {
|
|
|
|
err = -EINVAL;
|
|
|
|
printk(UM_KERN_ERR "start_userspace : expected SIGSTOP, got "
|
2008-02-05 07:31:21 +01:00
|
|
|
"status = %d\n", status);
|
2008-02-05 07:30:58 +01:00
|
|
|
goto out_kill;
|
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (ptrace(PTRACE_OLDSETOPTIONS, pid, NULL,
|
2008-02-05 07:30:58 +01:00
|
|
|
(void *) PTRACE_O_TRACESYSGOOD) < 0) {
|
|
|
|
err = -errno;
|
|
|
|
printk(UM_KERN_ERR "start_userspace : PTRACE_OLDSETOPTIONS "
|
|
|
|
"failed, errno = %d\n", errno);
|
|
|
|
goto out_kill;
|
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
|
2008-02-05 07:30:58 +01:00
|
|
|
if (munmap(stack, UM_KERN_PAGE_SIZE) < 0) {
|
|
|
|
err = -errno;
|
|
|
|
printk(UM_KERN_ERR "start_userspace : munmap failed, "
|
|
|
|
"errno = %d\n", errno);
|
|
|
|
goto out_kill;
|
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
return pid;
|
2008-02-05 07:30:58 +01:00
|
|
|
|
|
|
|
out_kill:
|
|
|
|
os_kill_ptraced_process(pid, 1);
|
|
|
|
return err;
|
2006-01-19 02:42:46 +01:00
|
|
|
}
|
|
|
|
|
2007-10-16 10:26:58 +02:00
|
|
|
void userspace(struct uml_pt_regs *regs)
|
2006-01-19 02:42:46 +01:00
|
|
|
{
|
2007-10-16 10:27:25 +02:00
|
|
|
struct itimerval timer;
|
|
|
|
unsigned long long nsecs, now;
|
2006-01-19 02:42:46 +01:00
|
|
|
int err, status, op, pid = userspace_pid[0];
|
2007-05-11 07:22:32 +02:00
|
|
|
/* To prevent races if using_sysemu changes under us.*/
|
|
|
|
int local_using_sysemu;
|
2006-01-19 02:42:46 +01:00
|
|
|
|
2007-10-16 10:27:25 +02:00
|
|
|
if (getitimer(ITIMER_VIRTUAL, &timer))
|
2008-02-08 13:22:08 +01:00
|
|
|
printk(UM_KERN_ERR "Failed to get itimer, errno = %d\n", errno);
|
2007-10-16 10:27:28 +02:00
|
|
|
nsecs = timer.it_value.tv_sec * UM_NSEC_PER_SEC +
|
|
|
|
timer.it_value.tv_usec * UM_NSEC_PER_USEC;
|
2007-10-16 10:27:25 +02:00
|
|
|
nsecs += os_nsecs();
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
while (1) {
|
2008-02-05 07:30:58 +01:00
|
|
|
/*
|
|
|
|
* This can legitimately fail if the process loads a
|
|
|
|
* bogus value into a segment register. It will
|
|
|
|
* segfault and PTRACE_GETREGS will read that value
|
|
|
|
* out of the process. However, PTRACE_SETREGS will
|
|
|
|
* fail. In this case, there is nothing to do but
|
|
|
|
* just kill the process.
|
|
|
|
*/
|
2008-02-05 07:30:57 +01:00
|
|
|
if (ptrace(PTRACE_SETREGS, pid, 0, regs->gp))
|
2008-02-05 07:30:58 +01:00
|
|
|
fatal_sigsegv();
|
2006-01-19 02:42:46 +01:00
|
|
|
|
|
|
|
/* Now we set local_using_sysemu to be used for one loop */
|
|
|
|
local_using_sysemu = get_using_sysemu();
|
|
|
|
|
2007-05-11 07:22:32 +02:00
|
|
|
op = SELECT_PTRACE_OPERATION(local_using_sysemu,
|
|
|
|
singlestepping(NULL));
|
2006-01-19 02:42:46 +01:00
|
|
|
|
2008-02-05 07:30:58 +01:00
|
|
|
if (ptrace(op, pid, 0, 0)) {
|
|
|
|
printk(UM_KERN_ERR "userspace - ptrace continue "
|
|
|
|
"failed, op = %d, errno = %d\n", op, errno);
|
|
|
|
fatal_sigsegv();
|
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
|
2007-12-18 01:19:46 +01:00
|
|
|
CATCH_EINTR(err = waitpid(pid, &status, WUNTRACED | __WALL));
|
2008-02-05 07:30:58 +01:00
|
|
|
if (err < 0) {
|
|
|
|
printk(UM_KERN_ERR "userspace - wait failed, "
|
|
|
|
"errno = %d\n", errno);
|
|
|
|
fatal_sigsegv();
|
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
|
2007-10-16 10:26:58 +02:00
|
|
|
regs->is_user = 1;
|
2008-02-05 07:30:58 +01:00
|
|
|
if (ptrace(PTRACE_GETREGS, pid, 0, regs->gp)) {
|
|
|
|
printk(UM_KERN_ERR "userspace - PTRACE_GETREGS failed, "
|
|
|
|
"errno = %d\n", errno);
|
|
|
|
fatal_sigsegv();
|
|
|
|
}
|
2008-02-05 07:30:57 +01:00
|
|
|
|
2006-01-19 02:42:46 +01:00
|
|
|
UPT_SYSCALL_NR(regs) = -1; /* Assume: It's not a syscall */
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (WIFSTOPPED(status)) {
|
2007-05-06 23:51:48 +02:00
|
|
|
int sig = WSTOPSIG(status);
|
2008-02-08 13:22:08 +01:00
|
|
|
switch (sig) {
|
2006-01-19 02:42:46 +01:00
|
|
|
case SIGSEGV:
|
2007-10-16 10:27:00 +02:00
|
|
|
if (PTRACE_FULL_FAULTINFO ||
|
|
|
|
!ptrace_faultinfo) {
|
|
|
|
get_skas_faultinfo(pid,
|
|
|
|
®s->faultinfo);
|
2007-05-06 23:51:48 +02:00
|
|
|
(*sig_info[SIGSEGV])(SIGSEGV, regs);
|
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
else handle_segv(pid, regs);
|
|
|
|
break;
|
|
|
|
case SIGTRAP + 0x80:
|
|
|
|
handle_trap(pid, regs, local_using_sysemu);
|
|
|
|
break;
|
|
|
|
case SIGTRAP:
|
|
|
|
relay_signal(SIGTRAP, regs);
|
|
|
|
break;
|
|
|
|
case SIGVTALRM:
|
2007-10-16 10:27:25 +02:00
|
|
|
now = os_nsecs();
|
2008-02-05 07:30:57 +01:00
|
|
|
if (now < nsecs)
|
2007-10-16 10:27:25 +02:00
|
|
|
break;
|
|
|
|
block_signals();
|
|
|
|
(*sig_info[sig])(sig, regs);
|
|
|
|
unblock_signals();
|
2007-10-16 10:27:28 +02:00
|
|
|
nsecs = timer.it_value.tv_sec *
|
|
|
|
UM_NSEC_PER_SEC +
|
|
|
|
timer.it_value.tv_usec *
|
|
|
|
UM_NSEC_PER_USEC;
|
2007-10-16 10:27:25 +02:00
|
|
|
nsecs += os_nsecs();
|
|
|
|
break;
|
|
|
|
case SIGIO:
|
2006-01-19 02:42:46 +01:00
|
|
|
case SIGILL:
|
|
|
|
case SIGBUS:
|
|
|
|
case SIGFPE:
|
|
|
|
case SIGWINCH:
|
2007-05-06 23:51:48 +02:00
|
|
|
block_signals();
|
|
|
|
(*sig_info[sig])(sig, regs);
|
|
|
|
unblock_signals();
|
2006-01-19 02:42:46 +01:00
|
|
|
break;
|
|
|
|
default:
|
2007-10-16 10:27:00 +02:00
|
|
|
printk(UM_KERN_ERR "userspace - child stopped "
|
|
|
|
"with signal %d\n", sig);
|
2008-02-05 07:30:58 +01:00
|
|
|
fatal_sigsegv();
|
2006-01-19 02:42:46 +01:00
|
|
|
}
|
|
|
|
pid = userspace_pid[0];
|
|
|
|
interrupt_end();
|
|
|
|
|
|
|
|
/* Avoid -ERESTARTSYS handling in host */
|
2007-10-16 10:27:00 +02:00
|
|
|
if (PT_SYSCALL_NR_OFFSET != PT_SYSCALL_RET_OFFSET)
|
2007-10-16 10:27:07 +02:00
|
|
|
PT_SYSCALL_NR(regs->gp) = -1;
|
2006-01-19 02:42:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-06 23:51:48 +02:00
|
|
|
static unsigned long thread_regs[MAX_REG_NR];
|
|
|
|
|
|
|
|
static int __init init_thread_regs(void)
|
|
|
|
{
|
2007-10-16 10:26:47 +02:00
|
|
|
get_safe_registers(thread_regs);
|
2007-05-06 23:51:48 +02:00
|
|
|
/* Set parent's instruction pointer to start of clone-stub */
|
uml: fix stub address calculations
The calculation of CONFIG_STUB_CODE and CONFIG_STUB_DATA didn't take into
account anything but 3G/1G and 2G/2G, leaving the other vmsplits out in the
cold.
I'd rather not duplicate the four known host vmsplit cases for each of these
symbols. I'd also like to calculate them based on the highest userspace
address.
The Kconfig language seems not to allow calculation of hex constants, so I
moved this to as-layout.h. CONFIG_STUB_CODE, CONFIG_STUB_DATA, and
CONFIG_STUB_START are now gone. In their place are STUB_CODE, STUB_DATA, and
STUB_START in as-layout.h.
i386 and x86_64 seem to differ as to whether an unadorned constant is an int
or a long, so I cast them to unsigned long so they can be printed
consistently. However, they are also used in stub.S, where C types don't work
so well. So, there are ASM_ versions of these constants for use in stub.S. I
also ifdef-ed the non-asm-friendly portion of as-layout.h.
With this in place, most of the rest of this patch is changing CONFIG_STUB_*
to STUB_*, except in stub.S, where they are changed to ASM_STUB_*.
defconfig has the old symbols deleted.
I also print these addresses out in case there is any problem mapping them on
the host.
The two stub.S files had some trailing whitespace, so that is cleaned up here.
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-16 10:27:33 +02:00
|
|
|
thread_regs[REGS_IP_INDEX] = STUB_CODE +
|
2007-05-06 23:51:48 +02:00
|
|
|
(unsigned long) stub_clone_handler -
|
|
|
|
(unsigned long) &__syscall_stub_start;
|
uml: fix stub address calculations
The calculation of CONFIG_STUB_CODE and CONFIG_STUB_DATA didn't take into
account anything but 3G/1G and 2G/2G, leaving the other vmsplits out in the
cold.
I'd rather not duplicate the four known host vmsplit cases for each of these
symbols. I'd also like to calculate them based on the highest userspace
address.
The Kconfig language seems not to allow calculation of hex constants, so I
moved this to as-layout.h. CONFIG_STUB_CODE, CONFIG_STUB_DATA, and
CONFIG_STUB_START are now gone. In their place are STUB_CODE, STUB_DATA, and
STUB_START in as-layout.h.
i386 and x86_64 seem to differ as to whether an unadorned constant is an int
or a long, so I cast them to unsigned long so they can be printed
consistently. However, they are also used in stub.S, where C types don't work
so well. So, there are ASM_ versions of these constants for use in stub.S. I
also ifdef-ed the non-asm-friendly portion of as-layout.h.
With this in place, most of the rest of this patch is changing CONFIG_STUB_*
to STUB_*, except in stub.S, where they are changed to ASM_STUB_*.
defconfig has the old symbols deleted.
I also print these addresses out in case there is any problem mapping them on
the host.
The two stub.S files had some trailing whitespace, so that is cleaned up here.
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-16 10:27:33 +02:00
|
|
|
thread_regs[REGS_SP_INDEX] = STUB_DATA + UM_KERN_PAGE_SIZE -
|
2007-05-06 23:51:48 +02:00
|
|
|
sizeof(void *);
|
|
|
|
#ifdef __SIGNAL_FRAMESIZE
|
|
|
|
thread_regs[REGS_SP_INDEX] -= __SIGNAL_FRAMESIZE;
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
__initcall(init_thread_regs);
|
|
|
|
|
2006-01-19 02:42:46 +01:00
|
|
|
int copy_context_skas0(unsigned long new_stack, int pid)
|
|
|
|
{
|
2007-10-16 10:27:28 +02:00
|
|
|
struct timeval tv = { .tv_sec = 0, .tv_usec = UM_USEC_PER_SEC / UM_HZ };
|
2006-01-19 02:42:46 +01:00
|
|
|
int err;
|
|
|
|
unsigned long current_stack = current_stub_stack();
|
|
|
|
struct stub_data *data = (struct stub_data *) current_stack;
|
|
|
|
struct stub_data *child_data = (struct stub_data *) new_stack;
|
2007-10-16 10:27:05 +02:00
|
|
|
unsigned long long new_offset;
|
2006-01-19 02:42:46 +01:00
|
|
|
int new_fd = phys_mapping(to_phys((void *)new_stack), &new_offset);
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
/*
|
|
|
|
* prepare offset and fd of child's stack as argument for parent's
|
2006-01-19 02:42:46 +01:00
|
|
|
* and child's mmap2 calls
|
|
|
|
*/
|
|
|
|
*data = ((struct stub_data) { .offset = MMAP_OFFSET(new_offset),
|
|
|
|
.fd = new_fd,
|
|
|
|
.timer = ((struct itimerval)
|
2007-10-16 10:27:25 +02:00
|
|
|
{ .it_value = tv,
|
|
|
|
.it_interval = tv }) });
|
|
|
|
|
2007-05-06 23:51:48 +02:00
|
|
|
err = ptrace_setregs(pid, thread_regs);
|
2008-02-05 07:30:58 +01:00
|
|
|
if (err < 0) {
|
|
|
|
err = -errno;
|
|
|
|
printk(UM_KERN_ERR "copy_context_skas0 : PTRACE_SETREGS "
|
|
|
|
"failed, pid = %d, errno = %d\n", pid, -err);
|
|
|
|
return err;
|
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
|
|
|
|
/* set a well known return code for detection of child write failure */
|
|
|
|
child_data->err = 12345678;
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
/*
|
|
|
|
* Wait, until parent has finished its work: read child's pid from
|
2006-01-19 02:42:46 +01:00
|
|
|
* parent's stack, and check, if bad result.
|
|
|
|
*/
|
2007-05-06 23:51:48 +02:00
|
|
|
err = ptrace(PTRACE_CONT, pid, 0, 0);
|
2008-02-05 07:30:58 +01:00
|
|
|
if (err) {
|
|
|
|
err = -errno;
|
|
|
|
printk(UM_KERN_ERR "Failed to continue new process, pid = %d, "
|
|
|
|
"errno = %d\n", pid, errno);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2007-05-06 23:51:48 +02:00
|
|
|
wait_stub_done(pid);
|
2006-01-19 02:42:46 +01:00
|
|
|
|
|
|
|
pid = data->err;
|
2008-02-05 07:30:58 +01:00
|
|
|
if (pid < 0) {
|
|
|
|
printk(UM_KERN_ERR "copy_context_skas0 - stub-parent reports "
|
|
|
|
"error %d\n", -pid);
|
|
|
|
return pid;
|
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
/*
|
|
|
|
* Wait, until child has finished too: read child's result from
|
2006-01-19 02:42:46 +01:00
|
|
|
* child's stack and check it.
|
|
|
|
*/
|
2007-05-06 23:51:48 +02:00
|
|
|
wait_stub_done(pid);
|
2008-02-05 07:30:58 +01:00
|
|
|
if (child_data->err != STUB_DATA) {
|
|
|
|
printk(UM_KERN_ERR "copy_context_skas0 - stub-child reports "
|
|
|
|
"error %ld\n", child_data->err);
|
|
|
|
err = child_data->err;
|
|
|
|
goto out_kill;
|
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
|
|
|
|
if (ptrace(PTRACE_OLDSETOPTIONS, pid, NULL,
|
2008-02-05 07:30:58 +01:00
|
|
|
(void *)PTRACE_O_TRACESYSGOOD) < 0) {
|
|
|
|
err = -errno;
|
|
|
|
printk(UM_KERN_ERR "copy_context_skas0 : PTRACE_OLDSETOPTIONS "
|
|
|
|
"failed, errno = %d\n", errno);
|
|
|
|
goto out_kill;
|
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
|
|
|
|
return pid;
|
2008-02-05 07:30:58 +01:00
|
|
|
|
|
|
|
out_kill:
|
|
|
|
os_kill_ptraced_process(pid, 1);
|
|
|
|
return err;
|
2006-01-19 02:42:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is used only, if stub pages are needed, while proc_mm is
|
2007-05-06 23:51:33 +02:00
|
|
|
* available. Opening /proc/mm creates a new mm_context, which lacks
|
2006-01-19 02:42:46 +01:00
|
|
|
* the stub-pages. Thus, we map them using /proc/mm-fd
|
|
|
|
*/
|
2008-02-05 07:30:58 +01:00
|
|
|
int map_stub_pages(int fd, unsigned long code, unsigned long data,
|
|
|
|
unsigned long stack)
|
2006-01-19 02:42:46 +01:00
|
|
|
{
|
|
|
|
struct proc_mm_op mmop;
|
|
|
|
int n;
|
2007-10-16 10:27:05 +02:00
|
|
|
unsigned long long code_offset;
|
2006-01-19 02:42:48 +01:00
|
|
|
int code_fd = phys_mapping(to_phys((void *) &__syscall_stub_start),
|
|
|
|
&code_offset);
|
2006-01-19 02:42:46 +01:00
|
|
|
|
|
|
|
mmop = ((struct proc_mm_op) { .op = MM_MMAP,
|
|
|
|
.u =
|
|
|
|
{ .mmap =
|
|
|
|
{ .addr = code,
|
2007-06-16 19:16:09 +02:00
|
|
|
.len = UM_KERN_PAGE_SIZE,
|
2006-01-19 02:42:46 +01:00
|
|
|
.prot = PROT_EXEC,
|
|
|
|
.flags = MAP_FIXED | MAP_PRIVATE,
|
2006-01-19 02:42:48 +01:00
|
|
|
.fd = code_fd,
|
|
|
|
.offset = code_offset
|
2006-01-19 02:42:46 +01:00
|
|
|
} } });
|
2007-05-06 23:51:35 +02:00
|
|
|
CATCH_EINTR(n = write(fd, &mmop, sizeof(mmop)));
|
2007-10-16 10:27:00 +02:00
|
|
|
if (n != sizeof(mmop)) {
|
2007-05-06 23:51:35 +02:00
|
|
|
n = errno;
|
2007-10-16 10:27:00 +02:00
|
|
|
printk(UM_KERN_ERR "mmap args - addr = 0x%lx, fd = %d, "
|
|
|
|
"offset = %llx\n", code, code_fd,
|
|
|
|
(unsigned long long) code_offset);
|
2008-02-05 07:30:58 +01:00
|
|
|
printk(UM_KERN_ERR "map_stub_pages : /proc/mm map for code "
|
|
|
|
"failed, err = %d\n", n);
|
|
|
|
return -n;
|
2007-03-06 10:42:19 +01:00
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (stack) {
|
2007-10-16 10:27:05 +02:00
|
|
|
unsigned long long map_offset;
|
2006-01-19 02:42:46 +01:00
|
|
|
int map_fd = phys_mapping(to_phys((void *)stack), &map_offset);
|
|
|
|
mmop = ((struct proc_mm_op)
|
|
|
|
{ .op = MM_MMAP,
|
|
|
|
.u =
|
|
|
|
{ .mmap =
|
|
|
|
{ .addr = data,
|
2007-06-16 19:16:09 +02:00
|
|
|
.len = UM_KERN_PAGE_SIZE,
|
2006-01-19 02:42:46 +01:00
|
|
|
.prot = PROT_READ | PROT_WRITE,
|
|
|
|
.flags = MAP_FIXED | MAP_SHARED,
|
|
|
|
.fd = map_fd,
|
|
|
|
.offset = map_offset
|
|
|
|
} } });
|
2007-05-06 23:51:35 +02:00
|
|
|
CATCH_EINTR(n = write(fd, &mmop, sizeof(mmop)));
|
2008-02-05 07:30:58 +01:00
|
|
|
if (n != sizeof(mmop)) {
|
|
|
|
n = errno;
|
|
|
|
printk(UM_KERN_ERR "map_stub_pages : /proc/mm map for "
|
|
|
|
"data failed, err = %d\n", n);
|
|
|
|
return -n;
|
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
}
|
2008-02-05 07:30:58 +01:00
|
|
|
|
|
|
|
return 0;
|
2006-01-19 02:42:46 +01:00
|
|
|
}
|
|
|
|
|
[PATCH] uml: thread creation tidying
fork on UML has always somewhat subtle. The underlying cause has been the
need to initialize a stack for the new process. The only portable way to
initialize a new stack is to set it as the alternate signal stack and take a
signal. The signal handler does whatever initialization is needed and jumps
back to the original stack, where the fork processing is finished. The basic
context switching mechanism is a jmp_buf for each process. You switch to a
new process by longjmping to its jmp_buf.
Now that UML has its own implementation of setjmp and longjmp, and I can poke
around inside a jmp_buf without fear that libc will change the structure, a
much simpler mechanism is possible. The jmpbuf can simply be initialized by
hand.
This eliminates -
the need to set up and remove the alternate signal stack
sending and handling a signal
the signal blocking needed around the stack switching, since
there is no stack switching
setting up the jmp_buf needed to jump back to the original
stack after the new one is set up
In addition, since jmp_buf is now defined by UML, and not by libc, it can be
embedded in the thread struct. This makes it unnecessary to have it exist on
the stack, where it used to be. It also simplifies interfaces, since the
switch jmp_buf used to be a void * inside the thread struct, and functions
which took it as an argument needed to define a jmp_buf variable and assign it
from the void *.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-09-27 10:50:40 +02:00
|
|
|
void new_thread(void *stack, jmp_buf *buf, void (*handler)(void))
|
2006-01-19 02:42:46 +01:00
|
|
|
{
|
[PATCH] uml: thread creation tidying
fork on UML has always somewhat subtle. The underlying cause has been the
need to initialize a stack for the new process. The only portable way to
initialize a new stack is to set it as the alternate signal stack and take a
signal. The signal handler does whatever initialization is needed and jumps
back to the original stack, where the fork processing is finished. The basic
context switching mechanism is a jmp_buf for each process. You switch to a
new process by longjmping to its jmp_buf.
Now that UML has its own implementation of setjmp and longjmp, and I can poke
around inside a jmp_buf without fear that libc will change the structure, a
much simpler mechanism is possible. The jmpbuf can simply be initialized by
hand.
This eliminates -
the need to set up and remove the alternate signal stack
sending and handling a signal
the signal blocking needed around the stack switching, since
there is no stack switching
setting up the jmp_buf needed to jump back to the original
stack after the new one is set up
In addition, since jmp_buf is now defined by UML, and not by libc, it can be
embedded in the thread struct. This makes it unnecessary to have it exist on
the stack, where it used to be. It also simplifies interfaces, since the
switch jmp_buf used to be a void * inside the thread struct, and functions
which took it as an argument needed to define a jmp_buf variable and assign it
from the void *.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-09-27 10:50:40 +02:00
|
|
|
(*buf)[0].JB_IP = (unsigned long) handler;
|
2007-05-11 07:22:31 +02:00
|
|
|
(*buf)[0].JB_SP = (unsigned long) stack + UM_THREAD_SIZE -
|
|
|
|
sizeof(void *);
|
2006-01-19 02:42:46 +01:00
|
|
|
}
|
|
|
|
|
2006-02-07 21:58:43 +01:00
|
|
|
#define INIT_JMP_NEW_THREAD 0
|
[PATCH] uml: thread creation tidying
fork on UML has always somewhat subtle. The underlying cause has been the
need to initialize a stack for the new process. The only portable way to
initialize a new stack is to set it as the alternate signal stack and take a
signal. The signal handler does whatever initialization is needed and jumps
back to the original stack, where the fork processing is finished. The basic
context switching mechanism is a jmp_buf for each process. You switch to a
new process by longjmping to its jmp_buf.
Now that UML has its own implementation of setjmp and longjmp, and I can poke
around inside a jmp_buf without fear that libc will change the structure, a
much simpler mechanism is possible. The jmpbuf can simply be initialized by
hand.
This eliminates -
the need to set up and remove the alternate signal stack
sending and handling a signal
the signal blocking needed around the stack switching, since
there is no stack switching
setting up the jmp_buf needed to jump back to the original
stack after the new one is set up
In addition, since jmp_buf is now defined by UML, and not by libc, it can be
embedded in the thread struct. This makes it unnecessary to have it exist on
the stack, where it used to be. It also simplifies interfaces, since the
switch jmp_buf used to be a void * inside the thread struct, and functions
which took it as an argument needed to define a jmp_buf variable and assign it
from the void *.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-09-27 10:50:40 +02:00
|
|
|
#define INIT_JMP_CALLBACK 1
|
|
|
|
#define INIT_JMP_HALT 2
|
|
|
|
#define INIT_JMP_REBOOT 3
|
2006-01-19 02:42:46 +01:00
|
|
|
|
[PATCH] uml: thread creation tidying
fork on UML has always somewhat subtle. The underlying cause has been the
need to initialize a stack for the new process. The only portable way to
initialize a new stack is to set it as the alternate signal stack and take a
signal. The signal handler does whatever initialization is needed and jumps
back to the original stack, where the fork processing is finished. The basic
context switching mechanism is a jmp_buf for each process. You switch to a
new process by longjmping to its jmp_buf.
Now that UML has its own implementation of setjmp and longjmp, and I can poke
around inside a jmp_buf without fear that libc will change the structure, a
much simpler mechanism is possible. The jmpbuf can simply be initialized by
hand.
This eliminates -
the need to set up and remove the alternate signal stack
sending and handling a signal
the signal blocking needed around the stack switching, since
there is no stack switching
setting up the jmp_buf needed to jump back to the original
stack after the new one is set up
In addition, since jmp_buf is now defined by UML, and not by libc, it can be
embedded in the thread struct. This makes it unnecessary to have it exist on
the stack, where it used to be. It also simplifies interfaces, since the
switch jmp_buf used to be a void * inside the thread struct, and functions
which took it as an argument needed to define a jmp_buf variable and assign it
from the void *.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-09-27 10:50:40 +02:00
|
|
|
void switch_threads(jmp_buf *me, jmp_buf *you)
|
2006-01-19 02:42:46 +01:00
|
|
|
{
|
2007-10-16 10:27:00 +02:00
|
|
|
if (UML_SETJMP(me) == 0)
|
[PATCH] uml: thread creation tidying
fork on UML has always somewhat subtle. The underlying cause has been the
need to initialize a stack for the new process. The only portable way to
initialize a new stack is to set it as the alternate signal stack and take a
signal. The signal handler does whatever initialization is needed and jumps
back to the original stack, where the fork processing is finished. The basic
context switching mechanism is a jmp_buf for each process. You switch to a
new process by longjmping to its jmp_buf.
Now that UML has its own implementation of setjmp and longjmp, and I can poke
around inside a jmp_buf without fear that libc will change the structure, a
much simpler mechanism is possible. The jmpbuf can simply be initialized by
hand.
This eliminates -
the need to set up and remove the alternate signal stack
sending and handling a signal
the signal blocking needed around the stack switching, since
there is no stack switching
setting up the jmp_buf needed to jump back to the original
stack after the new one is set up
In addition, since jmp_buf is now defined by UML, and not by libc, it can be
embedded in the thread struct. This makes it unnecessary to have it exist on
the stack, where it used to be. It also simplifies interfaces, since the
switch jmp_buf used to be a void * inside the thread struct, and functions
which took it as an argument needed to define a jmp_buf variable and assign it
from the void *.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-09-27 10:50:40 +02:00
|
|
|
UML_LONGJMP(you, 1);
|
2006-01-19 02:42:46 +01:00
|
|
|
}
|
|
|
|
|
2006-04-19 07:21:41 +02:00
|
|
|
static jmp_buf initial_jmpbuf;
|
2006-01-19 02:42:46 +01:00
|
|
|
|
|
|
|
/* XXX Make these percpu */
|
|
|
|
static void (*cb_proc)(void *arg);
|
|
|
|
static void *cb_arg;
|
2006-04-19 07:21:41 +02:00
|
|
|
static jmp_buf *cb_back;
|
2006-01-19 02:42:46 +01:00
|
|
|
|
[PATCH] uml: thread creation tidying
fork on UML has always somewhat subtle. The underlying cause has been the
need to initialize a stack for the new process. The only portable way to
initialize a new stack is to set it as the alternate signal stack and take a
signal. The signal handler does whatever initialization is needed and jumps
back to the original stack, where the fork processing is finished. The basic
context switching mechanism is a jmp_buf for each process. You switch to a
new process by longjmping to its jmp_buf.
Now that UML has its own implementation of setjmp and longjmp, and I can poke
around inside a jmp_buf without fear that libc will change the structure, a
much simpler mechanism is possible. The jmpbuf can simply be initialized by
hand.
This eliminates -
the need to set up and remove the alternate signal stack
sending and handling a signal
the signal blocking needed around the stack switching, since
there is no stack switching
setting up the jmp_buf needed to jump back to the original
stack after the new one is set up
In addition, since jmp_buf is now defined by UML, and not by libc, it can be
embedded in the thread struct. This makes it unnecessary to have it exist on
the stack, where it used to be. It also simplifies interfaces, since the
switch jmp_buf used to be a void * inside the thread struct, and functions
which took it as an argument needed to define a jmp_buf variable and assign it
from the void *.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-09-27 10:50:40 +02:00
|
|
|
int start_idle_thread(void *stack, jmp_buf *switch_buf)
|
2006-01-19 02:42:46 +01:00
|
|
|
{
|
2006-07-14 09:24:02 +02:00
|
|
|
int n;
|
2006-01-19 02:42:46 +01:00
|
|
|
|
|
|
|
set_handler(SIGWINCH, (__sighandler_t) sig_handler,
|
2007-10-16 10:27:27 +02:00
|
|
|
SA_ONSTACK | SA_RESTART, SIGUSR1, SIGIO, SIGVTALRM, -1);
|
2006-01-19 02:42:46 +01:00
|
|
|
|
2007-05-06 23:51:40 +02:00
|
|
|
/*
|
|
|
|
* Can't use UML_SETJMP or UML_LONGJMP here because they save
|
|
|
|
* and restore signals, with the possible side-effect of
|
|
|
|
* trying to handle any signals which came when they were
|
|
|
|
* blocked, which can't be done on this stack.
|
|
|
|
* Signals must be blocked when jumping back here and restored
|
|
|
|
* after returning to the jumper.
|
|
|
|
*/
|
|
|
|
n = setjmp(initial_jmpbuf);
|
2008-02-08 13:22:08 +01:00
|
|
|
switch (n) {
|
2006-01-19 02:42:46 +01:00
|
|
|
case INIT_JMP_NEW_THREAD:
|
[PATCH] uml: thread creation tidying
fork on UML has always somewhat subtle. The underlying cause has been the
need to initialize a stack for the new process. The only portable way to
initialize a new stack is to set it as the alternate signal stack and take a
signal. The signal handler does whatever initialization is needed and jumps
back to the original stack, where the fork processing is finished. The basic
context switching mechanism is a jmp_buf for each process. You switch to a
new process by longjmping to its jmp_buf.
Now that UML has its own implementation of setjmp and longjmp, and I can poke
around inside a jmp_buf without fear that libc will change the structure, a
much simpler mechanism is possible. The jmpbuf can simply be initialized by
hand.
This eliminates -
the need to set up and remove the alternate signal stack
sending and handling a signal
the signal blocking needed around the stack switching, since
there is no stack switching
setting up the jmp_buf needed to jump back to the original
stack after the new one is set up
In addition, since jmp_buf is now defined by UML, and not by libc, it can be
embedded in the thread struct. This makes it unnecessary to have it exist on
the stack, where it used to be. It also simplifies interfaces, since the
switch jmp_buf used to be a void * inside the thread struct, and functions
which took it as an argument needed to define a jmp_buf variable and assign it
from the void *.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-09-27 10:50:40 +02:00
|
|
|
(*switch_buf)[0].JB_IP = (unsigned long) new_thread_handler;
|
|
|
|
(*switch_buf)[0].JB_SP = (unsigned long) stack +
|
2007-05-11 07:22:31 +02:00
|
|
|
UM_THREAD_SIZE - sizeof(void *);
|
2006-01-19 02:42:46 +01:00
|
|
|
break;
|
|
|
|
case INIT_JMP_CALLBACK:
|
|
|
|
(*cb_proc)(cb_arg);
|
2007-05-06 23:51:40 +02:00
|
|
|
longjmp(*cb_back, 1);
|
2006-01-19 02:42:46 +01:00
|
|
|
break;
|
|
|
|
case INIT_JMP_HALT:
|
|
|
|
kmalloc_ok = 0;
|
2007-10-16 10:27:00 +02:00
|
|
|
return 0;
|
2006-01-19 02:42:46 +01:00
|
|
|
case INIT_JMP_REBOOT:
|
|
|
|
kmalloc_ok = 0;
|
2007-10-16 10:27:00 +02:00
|
|
|
return 1;
|
2006-01-19 02:42:46 +01:00
|
|
|
default:
|
2008-02-05 07:30:58 +01:00
|
|
|
printk(UM_KERN_ERR "Bad sigsetjmp return in "
|
|
|
|
"start_idle_thread - %d\n", n);
|
|
|
|
fatal_sigsegv();
|
2006-01-19 02:42:46 +01:00
|
|
|
}
|
2007-05-06 23:51:40 +02:00
|
|
|
longjmp(*switch_buf, 1);
|
2006-01-19 02:42:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void initial_thread_cb_skas(void (*proc)(void *), void *arg)
|
|
|
|
{
|
2006-04-19 07:21:41 +02:00
|
|
|
jmp_buf here;
|
2006-01-19 02:42:46 +01:00
|
|
|
|
|
|
|
cb_proc = proc;
|
|
|
|
cb_arg = arg;
|
|
|
|
cb_back = &here;
|
|
|
|
|
|
|
|
block_signals();
|
2007-10-16 10:27:00 +02:00
|
|
|
if (UML_SETJMP(&here) == 0)
|
2006-04-19 07:21:41 +02:00
|
|
|
UML_LONGJMP(&initial_jmpbuf, INIT_JMP_CALLBACK);
|
2006-01-19 02:42:46 +01:00
|
|
|
unblock_signals();
|
|
|
|
|
|
|
|
cb_proc = NULL;
|
|
|
|
cb_arg = NULL;
|
|
|
|
cb_back = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void halt_skas(void)
|
|
|
|
{
|
|
|
|
block_signals();
|
2006-04-19 07:21:41 +02:00
|
|
|
UML_LONGJMP(&initial_jmpbuf, INIT_JMP_HALT);
|
2006-01-19 02:42:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void reboot_skas(void)
|
|
|
|
{
|
|
|
|
block_signals();
|
2006-04-19 07:21:41 +02:00
|
|
|
UML_LONGJMP(&initial_jmpbuf, INIT_JMP_REBOOT);
|
2006-01-19 02:42:46 +01:00
|
|
|
}
|
|
|
|
|
2007-10-16 10:26:58 +02:00
|
|
|
void __switch_mm(struct mm_id *mm_idp)
|
2006-01-19 02:42:46 +01:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
2007-10-16 10:26:58 +02:00
|
|
|
/* FIXME: need cpu pid in __switch_mm */
|
2007-10-16 10:27:00 +02:00
|
|
|
if (proc_mm) {
|
2006-01-19 02:42:46 +01:00
|
|
|
err = ptrace(PTRACE_SWITCH_MM, userspace_pid[0], 0,
|
|
|
|
mm_idp->u.mm_fd);
|
2008-02-05 07:30:58 +01:00
|
|
|
if (err) {
|
|
|
|
printk(UM_KERN_ERR "__switch_mm - PTRACE_SWITCH_MM "
|
|
|
|
"failed, errno = %d\n", errno);
|
|
|
|
fatal_sigsegv();
|
|
|
|
}
|
2006-01-19 02:42:46 +01:00
|
|
|
}
|
|
|
|
else userspace_pid[0] = mm_idp->u.pid;
|
|
|
|
}
|