2006-09-27 08:50:40 +00:00
|
|
|
/*
|
2007-10-16 08:27:00 +00:00
|
|
|
* Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
2005-04-16 22:20:36 +00:00
|
|
|
* Copyright 2003 PathScale, Inc.
|
|
|
|
* Licensed under the GPL
|
|
|
|
*/
|
|
|
|
|
2008-02-05 06:31:14 +00:00
|
|
|
#include <linux/stddef.h>
|
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/hardirq.h>
|
|
|
|
#include <linux/gfp.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/personality.h>
|
|
|
|
#include <linux/proc_fs.h>
|
|
|
|
#include <linux/ptrace.h>
|
|
|
|
#include <linux/random.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/tick.h>
|
|
|
|
#include <linux/threads.h>
|
|
|
|
#include <asm/current.h>
|
|
|
|
#include <asm/pgtable.h>
|
|
|
|
#include <asm/uaccess.h>
|
2007-05-06 21:51:08 +00:00
|
|
|
#include "as-layout.h"
|
2007-10-16 08:27:00 +00:00
|
|
|
#include "kern_util.h"
|
2005-04-16 22:20:36 +00:00
|
|
|
#include "os.h"
|
2007-10-16 08:26:58 +00:00
|
|
|
#include "skas.h"
|
2007-10-16 08:27:00 +00:00
|
|
|
#include "tlb.h"
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-10-16 08:27:00 +00:00
|
|
|
/*
|
|
|
|
* This is a per-cpu array. A processor only modifies its entry and it only
|
2005-04-16 22:20:36 +00:00
|
|
|
* cares about its entry, so it's OK if another processor is modifying its
|
|
|
|
* entry.
|
|
|
|
*/
|
|
|
|
struct cpu_task cpu_tasks[NR_CPUS] = { [0 ... NR_CPUS - 1] = { -1, NULL } };
|
|
|
|
|
2008-02-05 06:31:03 +00:00
|
|
|
static inline int external_pid(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2007-10-16 08:26:58 +00:00
|
|
|
/* FIXME: Need to look up userspace_pid by cpu */
|
2007-10-16 08:27:00 +00:00
|
|
|
return userspace_pid[0];
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int pid_to_processor_id(int pid)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2008-02-05 06:31:14 +00:00
|
|
|
for (i = 0; i < ncpus; i++) {
|
2007-10-16 08:27:00 +00:00
|
|
|
if (cpu_tasks[i].pid == pid)
|
2007-05-06 21:51:21 +00:00
|
|
|
return i;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2007-05-06 21:51:21 +00:00
|
|
|
return -1;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void free_stack(unsigned long stack, int order)
|
|
|
|
{
|
|
|
|
free_pages(stack, order);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned long alloc_stack(int order, int atomic)
|
|
|
|
{
|
|
|
|
unsigned long page;
|
2005-10-21 07:22:24 +00:00
|
|
|
gfp_t flags = GFP_KERNEL;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-23 04:44:20 +00:00
|
|
|
if (atomic)
|
|
|
|
flags = GFP_ATOMIC;
|
2005-04-16 22:20:36 +00:00
|
|
|
page = __get_free_pages(flags, order);
|
2007-10-16 08:26:46 +00:00
|
|
|
|
2007-05-06 21:51:21 +00:00
|
|
|
return page;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
|
|
|
|
{
|
|
|
|
int pid;
|
|
|
|
|
|
|
|
current->thread.request.u.thread.proc = fn;
|
|
|
|
current->thread.request.u.thread.arg = arg;
|
2005-06-25 21:55:21 +00:00
|
|
|
pid = do_fork(CLONE_VM | CLONE_UNTRACED | flags, 0,
|
|
|
|
¤t->thread.regs, 0, NULL, NULL);
|
2007-05-06 21:51:21 +00:00
|
|
|
return pid;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2007-05-06 21:51:21 +00:00
|
|
|
static inline void set_current(struct task_struct *task)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2006-01-12 09:05:48 +00:00
|
|
|
cpu_tasks[task_thread_info(task)->cpu] = ((struct cpu_task)
|
2008-02-05 06:31:03 +00:00
|
|
|
{ external_pid(), task });
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2008-02-05 06:30:49 +00:00
|
|
|
extern void arch_switch_to(struct task_struct *to);
|
2007-10-16 08:26:58 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
void *_switch_to(void *prev, void *next, void *last)
|
|
|
|
{
|
2006-09-27 08:50:40 +00:00
|
|
|
struct task_struct *from = prev;
|
2008-02-05 06:30:49 +00:00
|
|
|
struct task_struct *to = next;
|
2005-09-17 02:27:43 +00:00
|
|
|
|
2006-09-27 08:50:40 +00:00
|
|
|
to->thread.prev_sched = from;
|
|
|
|
set_current(to);
|
2005-09-17 02:27:43 +00:00
|
|
|
|
[PATCH] uml: breakpoint an arbitrary thread
This patch implements a stack trace for a thread, not unlike sysrq-t does.
The advantage to this is that a break point can be placed on showreqs, so that
upon showing the stack, you jump immediately into the debugger. While sysrq-t
does the same thing, sysrq-t shows *all* threads stacks. It also doesn't work
right now. In the future, I thought it might be acceptable to make this show
all pids stacks, but perhaps leaving well enough alone and just using sysrq-t
would be okay. For now, upon receiving the stack command, UML switches
context to that thread, dumps its registers, and then switches context back to
the original thread. Since UML compacts all threads into one of 4 host
threads, this sort of mechanism could be expanded in the future to include
other debugging helpers that sysrq does not cover.
Note by jdike - The main benefit to this is that it brings an arbitrary thread
back into context, where it can be examined by gdb. The fact that it dumps it
stack is secondary. This provides the capability to examine a sleeping
thread, which has existed in tt mode, but not in skas mode until now.
Also, the other threads, that sysrq doesn't cover, can be gdb-ed directly
anyway.
Signed-off-by: Allan Graves<allan.graves@gmail.com>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-09-17 02:27:46 +00:00
|
|
|
do {
|
2007-10-16 08:26:56 +00:00
|
|
|
current->thread.saved_task = NULL;
|
2007-10-16 08:26:58 +00:00
|
|
|
|
2008-02-05 06:31:14 +00:00
|
|
|
switch_threads(&from->thread.switch_buf,
|
|
|
|
&to->thread.switch_buf);
|
2007-10-16 08:26:58 +00:00
|
|
|
|
2008-02-05 06:30:49 +00:00
|
|
|
arch_switch_to(current);
|
2007-10-16 08:26:58 +00:00
|
|
|
|
2007-10-16 08:27:00 +00:00
|
|
|
if (current->thread.saved_task)
|
[PATCH] uml: breakpoint an arbitrary thread
This patch implements a stack trace for a thread, not unlike sysrq-t does.
The advantage to this is that a break point can be placed on showreqs, so that
upon showing the stack, you jump immediately into the debugger. While sysrq-t
does the same thing, sysrq-t shows *all* threads stacks. It also doesn't work
right now. In the future, I thought it might be acceptable to make this show
all pids stacks, but perhaps leaving well enough alone and just using sysrq-t
would be okay. For now, upon receiving the stack command, UML switches
context to that thread, dumps its registers, and then switches context back to
the original thread. Since UML compacts all threads into one of 4 host
threads, this sort of mechanism could be expanded in the future to include
other debugging helpers that sysrq does not cover.
Note by jdike - The main benefit to this is that it brings an arbitrary thread
back into context, where it can be examined by gdb. The fact that it dumps it
stack is secondary. This provides the capability to examine a sleeping
thread, which has existed in tt mode, but not in skas mode until now.
Also, the other threads, that sysrq doesn't cover, can be gdb-ed directly
anyway.
Signed-off-by: Allan Graves<allan.graves@gmail.com>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-09-17 02:27:46 +00:00
|
|
|
show_regs(&(current->thread.regs));
|
2008-02-05 06:31:14 +00:00
|
|
|
to = current->thread.saved_task;
|
|
|
|
from = current;
|
2008-02-05 06:30:49 +00:00
|
|
|
} while (current->thread.saved_task);
|
2005-09-17 02:27:43 +00:00
|
|
|
|
2007-05-06 21:51:21 +00:00
|
|
|
return current->thread.prev_sched;
|
2005-09-17 02:27:43 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void interrupt_end(void)
|
|
|
|
{
|
2007-10-16 08:27:00 +00:00
|
|
|
if (need_resched())
|
2007-05-06 21:51:21 +00:00
|
|
|
schedule();
|
2007-10-16 08:27:00 +00:00
|
|
|
if (test_tsk_thread_flag(current, TIF_SIGPENDING))
|
2007-05-06 21:51:21 +00:00
|
|
|
do_signal();
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void exit_thread(void)
|
|
|
|
{
|
|
|
|
}
|
2006-09-27 08:50:40 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
void *get_current(void)
|
|
|
|
{
|
2007-05-06 21:51:21 +00:00
|
|
|
return current;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2007-10-16 08:27:00 +00:00
|
|
|
/*
|
|
|
|
* This is called magically, by its address being stuffed in a jmp_buf
|
2007-10-16 08:26:58 +00:00
|
|
|
* and being longjmp-d to.
|
|
|
|
*/
|
|
|
|
void new_thread_handler(void)
|
|
|
|
{
|
|
|
|
int (*fn)(void *), n;
|
|
|
|
void *arg;
|
|
|
|
|
2007-10-16 08:27:00 +00:00
|
|
|
if (current->thread.prev_sched != NULL)
|
2007-10-16 08:26:58 +00:00
|
|
|
schedule_tail(current->thread.prev_sched);
|
|
|
|
current->thread.prev_sched = NULL;
|
|
|
|
|
|
|
|
fn = current->thread.request.u.thread.proc;
|
|
|
|
arg = current->thread.request.u.thread.arg;
|
|
|
|
|
2007-10-16 08:27:00 +00:00
|
|
|
/*
|
|
|
|
* The return value is 1 if the kernel thread execs a process,
|
2007-10-16 08:26:58 +00:00
|
|
|
* 0 if it just exits
|
|
|
|
*/
|
|
|
|
n = run_kernel_thread(fn, arg, ¤t->thread.exec_buf);
|
2007-10-16 08:27:00 +00:00
|
|
|
if (n == 1) {
|
2007-10-16 08:26:58 +00:00
|
|
|
/* Handle any immediate reschedules or signals */
|
|
|
|
interrupt_end();
|
|
|
|
userspace(¤t->thread.regs.regs);
|
|
|
|
}
|
|
|
|
else do_exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Called magically, see new_thread_handler above */
|
|
|
|
void fork_handler(void)
|
|
|
|
{
|
|
|
|
force_flush_all();
|
|
|
|
|
|
|
|
schedule_tail(current->thread.prev_sched);
|
|
|
|
|
2007-10-16 08:27:00 +00:00
|
|
|
/*
|
|
|
|
* XXX: if interrupt_end() calls schedule, this call to
|
2007-10-16 08:26:58 +00:00
|
|
|
* arch_switch_to isn't needed. We could want to apply this to
|
2007-10-16 08:27:00 +00:00
|
|
|
* improve performance. -bb
|
|
|
|
*/
|
2008-02-05 06:30:49 +00:00
|
|
|
arch_switch_to(current);
|
2007-10-16 08:26:58 +00:00
|
|
|
|
|
|
|
current->thread.prev_sched = NULL;
|
|
|
|
|
|
|
|
/* Handle any immediate reschedules or signals */
|
|
|
|
interrupt_end();
|
|
|
|
|
|
|
|
userspace(¤t->thread.regs.regs);
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
int copy_thread(int nr, unsigned long clone_flags, unsigned long sp,
|
2006-09-27 08:50:40 +00:00
|
|
|
unsigned long stack_top, struct task_struct * p,
|
2005-04-16 22:20:36 +00:00
|
|
|
struct pt_regs *regs)
|
|
|
|
{
|
2007-10-16 08:26:58 +00:00
|
|
|
void (*handler)(void);
|
|
|
|
int ret = 0;
|
2006-03-31 10:30:22 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
p->thread = (struct thread_struct) INIT_THREAD;
|
2006-03-31 10:30:22 +00:00
|
|
|
|
2007-10-16 08:27:00 +00:00
|
|
|
if (current->thread.forking) {
|
2007-10-16 08:26:58 +00:00
|
|
|
memcpy(&p->thread.regs.regs, ®s->regs,
|
|
|
|
sizeof(p->thread.regs.regs));
|
2007-10-16 08:27:07 +00:00
|
|
|
REGS_SET_SYSCALL_RETURN(p->thread.regs.regs.gp, 0);
|
2007-10-16 08:27:00 +00:00
|
|
|
if (sp != 0)
|
2007-10-16 08:27:07 +00:00
|
|
|
REGS_SP(p->thread.regs.regs.gp) = sp;
|
2006-03-31 10:30:22 +00:00
|
|
|
|
2007-10-16 08:26:58 +00:00
|
|
|
handler = fork_handler;
|
2006-03-31 10:30:22 +00:00
|
|
|
|
2007-10-16 08:26:58 +00:00
|
|
|
arch_copy_thread(¤t->thread.arch, &p->thread.arch);
|
|
|
|
}
|
|
|
|
else {
|
2008-02-05 06:30:57 +00:00
|
|
|
get_safe_registers(p->thread.regs.regs.gp);
|
2007-10-16 08:26:58 +00:00
|
|
|
p->thread.request.u.thread = current->thread.request.u.thread;
|
|
|
|
handler = new_thread_handler;
|
|
|
|
}
|
|
|
|
|
|
|
|
new_thread(task_stack_page(p), &p->thread.switch_buf, handler);
|
|
|
|
|
|
|
|
if (current->thread.forking) {
|
|
|
|
clear_flushed_tls(p);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set a new TLS for the child thread?
|
|
|
|
*/
|
|
|
|
if (clone_flags & CLONE_SETTLS)
|
|
|
|
ret = arch_copy_tls(p);
|
|
|
|
}
|
2006-03-31 10:30:22 +00:00
|
|
|
|
|
|
|
return ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void initial_thread_cb(void (*proc)(void *), void *arg)
|
|
|
|
{
|
|
|
|
int save_kmalloc_ok = kmalloc_ok;
|
|
|
|
|
|
|
|
kmalloc_ok = 0;
|
2007-10-16 08:26:56 +00:00
|
|
|
initial_thread_cb_skas(proc, arg);
|
2005-04-16 22:20:36 +00:00
|
|
|
kmalloc_ok = save_kmalloc_ok;
|
|
|
|
}
|
2006-09-27 08:50:40 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
void default_idle(void)
|
|
|
|
{
|
2007-10-16 08:27:26 +00:00
|
|
|
unsigned long long nsecs;
|
|
|
|
|
2008-02-05 06:31:14 +00:00
|
|
|
while (1) {
|
2005-04-16 22:20:36 +00:00
|
|
|
/* endless idle loop with no priority at all */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* although we are an idle CPU, we do not want to
|
|
|
|
* get into the scheduler unnecessarily.
|
|
|
|
*/
|
2007-10-16 08:27:00 +00:00
|
|
|
if (need_resched())
|
2005-04-16 22:20:36 +00:00
|
|
|
schedule();
|
2006-09-27 08:50:40 +00:00
|
|
|
|
2007-10-16 08:27:25 +00:00
|
|
|
tick_nohz_stop_sched_tick();
|
2007-10-16 08:27:26 +00:00
|
|
|
nsecs = disable_timer();
|
|
|
|
idle_sleep(nsecs);
|
2007-10-16 08:27:25 +00:00
|
|
|
tick_nohz_restart_sched_tick();
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cpu_idle(void)
|
|
|
|
{
|
2008-02-05 06:30:54 +00:00
|
|
|
cpu_tasks[current_thread_info()->cpu].pid = os_getpid();
|
2007-10-16 08:26:58 +00:00
|
|
|
default_idle();
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2006-01-19 01:42:58 +00:00
|
|
|
int __cant_sleep(void) {
|
|
|
|
return in_atomic() || irqs_disabled() || in_interrupt();
|
|
|
|
/* Is in_interrupt() really needed? */
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int user_context(unsigned long sp)
|
|
|
|
{
|
|
|
|
unsigned long stack;
|
|
|
|
|
|
|
|
stack = sp & (PAGE_MASK << CONFIG_KERNEL_STACK_ORDER);
|
2008-02-05 06:30:54 +00:00
|
|
|
return stack != (unsigned long) current_thread_info();
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
extern exitcall_t __uml_exitcall_begin, __uml_exitcall_end;
|
|
|
|
|
|
|
|
void do_uml_exitcalls(void)
|
|
|
|
{
|
|
|
|
exitcall_t *call;
|
|
|
|
|
|
|
|
call = &__uml_exitcall_end;
|
|
|
|
while (--call >= &__uml_exitcall_begin)
|
|
|
|
(*call)();
|
|
|
|
}
|
|
|
|
|
2008-02-05 06:30:41 +00:00
|
|
|
char *uml_strdup(const char *string)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-06-23 07:09:04 +00:00
|
|
|
return kstrdup(string, GFP_KERNEL);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int copy_to_user_proc(void __user *to, void *from, int size)
|
|
|
|
{
|
2007-05-06 21:51:21 +00:00
|
|
|
return copy_to_user(to, from, size);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int copy_from_user_proc(void *to, void __user *from, int size)
|
|
|
|
{
|
2007-05-06 21:51:21 +00:00
|
|
|
return copy_from_user(to, from, size);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int clear_user_proc(void __user *buf, int size)
|
|
|
|
{
|
2007-05-06 21:51:21 +00:00
|
|
|
return clear_user(buf, size);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int strlen_user_proc(char __user *str)
|
|
|
|
{
|
2007-05-06 21:51:21 +00:00
|
|
|
return strlen_user(str);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int smp_sigio_handler(void)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_SMP
|
2008-02-05 06:30:54 +00:00
|
|
|
int cpu = current_thread_info()->cpu;
|
2005-04-16 22:20:36 +00:00
|
|
|
IPI_handler(cpu);
|
2007-10-16 08:27:00 +00:00
|
|
|
if (cpu != 0)
|
2007-05-06 21:51:21 +00:00
|
|
|
return 1;
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
2007-05-06 21:51:21 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int cpu(void)
|
|
|
|
{
|
2008-02-05 06:30:54 +00:00
|
|
|
return current_thread_info()->cpu;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static atomic_t using_sysemu = ATOMIC_INIT(0);
|
|
|
|
int sysemu_supported;
|
|
|
|
|
|
|
|
void set_using_sysemu(int value)
|
|
|
|
{
|
|
|
|
if (value > sysemu_supported)
|
|
|
|
return;
|
|
|
|
atomic_set(&using_sysemu, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
int get_using_sysemu(void)
|
|
|
|
{
|
|
|
|
return atomic_read(&using_sysemu);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int proc_read_sysemu(char *buf, char **start, off_t offset, int size,int *eof, void *data)
|
|
|
|
{
|
2007-10-16 08:27:00 +00:00
|
|
|
if (snprintf(buf, size, "%d\n", get_using_sysemu()) < size)
|
|
|
|
/* No overflow */
|
2005-04-16 22:20:36 +00:00
|
|
|
*eof = 1;
|
|
|
|
|
|
|
|
return strlen(buf);
|
|
|
|
}
|
|
|
|
|
2006-03-31 10:30:15 +00:00
|
|
|
static int proc_write_sysemu(struct file *file,const char __user *buf, unsigned long count,void *data)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
char tmp[2];
|
|
|
|
|
|
|
|
if (copy_from_user(tmp, buf, 1))
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
if (tmp[0] >= '0' && tmp[0] <= '2')
|
|
|
|
set_using_sysemu(tmp[0] - '0');
|
2007-10-16 08:27:00 +00:00
|
|
|
/* We use the first char, but pretend to write everything */
|
|
|
|
return count;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int __init make_proc_sysemu(void)
|
|
|
|
{
|
|
|
|
struct proc_dir_entry *ent;
|
|
|
|
if (!sysemu_supported)
|
|
|
|
return 0;
|
|
|
|
|
2008-04-29 08:01:44 +00:00
|
|
|
ent = create_proc_entry("sysemu", 0600, NULL);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (ent == NULL)
|
|
|
|
{
|
2005-07-29 04:16:12 +00:00
|
|
|
printk(KERN_WARNING "Failed to register /proc/sysemu\n");
|
2007-05-06 21:51:21 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ent->read_proc = proc_read_sysemu;
|
|
|
|
ent->write_proc = proc_write_sysemu;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
late_initcall(make_proc_sysemu);
|
|
|
|
|
|
|
|
int singlestepping(void * t)
|
|
|
|
{
|
|
|
|
struct task_struct *task = t ? t : current;
|
|
|
|
|
2008-02-05 06:31:14 +00:00
|
|
|
if (!(task->ptrace & PT_DTRACE))
|
2007-10-16 08:27:00 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (task->thread.singlestep_syscall)
|
2007-10-16 08:27:00 +00:00
|
|
|
return 1;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
2005-05-07 04:30:53 +00:00
|
|
|
/*
|
|
|
|
* Only x86 and x86_64 have an arch_align_stack().
|
|
|
|
* All other arches have "#define arch_align_stack(x) (x)"
|
|
|
|
* in their asm/system.h
|
|
|
|
* As this is included in UML from asm-um/system-generic.h,
|
|
|
|
* we can use it to behave as the subarch does.
|
|
|
|
*/
|
|
|
|
#ifndef arch_align_stack
|
2005-04-16 22:20:36 +00:00
|
|
|
unsigned long arch_align_stack(unsigned long sp)
|
|
|
|
{
|
2006-09-26 06:33:01 +00:00
|
|
|
if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
|
2005-04-16 22:20:36 +00:00
|
|
|
sp -= get_random_int() % 8192;
|
|
|
|
return sp & ~0xf;
|
|
|
|
}
|
2005-05-07 04:30:53 +00:00
|
|
|
#endif
|
2008-02-05 06:30:36 +00:00
|
|
|
|
|
|
|
unsigned long get_wchan(struct task_struct *p)
|
|
|
|
{
|
|
|
|
unsigned long stack_page, sp, ip;
|
|
|
|
bool seen_sched = 0;
|
|
|
|
|
|
|
|
if ((p == NULL) || (p == current) || (p->state == TASK_RUNNING))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
stack_page = (unsigned long) task_stack_page(p);
|
|
|
|
/* Bail if the process has no kernel stack for some reason */
|
|
|
|
if (stack_page == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
sp = p->thread.switch_buf->JB_SP;
|
|
|
|
/*
|
|
|
|
* Bail if the stack pointer is below the bottom of the kernel
|
|
|
|
* stack for some reason
|
|
|
|
*/
|
|
|
|
if (sp < stack_page)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
while (sp < stack_page + THREAD_SIZE) {
|
|
|
|
ip = *((unsigned long *) sp);
|
|
|
|
if (in_sched_functions(ip))
|
|
|
|
/* Ignore everything until we're above the scheduler */
|
|
|
|
seen_sched = 1;
|
|
|
|
else if (kernel_text_address(ip) && seen_sched)
|
|
|
|
return ip;
|
|
|
|
|
|
|
|
sp += sizeof(unsigned long);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
uml: header untangling
Untangle UML headers somewhat and add some includes where they were
needed explicitly, but gotten accidentally via some other header.
arch/um/include/um_uaccess.h loses asm/fixmap.h because it uses no
fixmap stuff and gains elf.h, because it needs FIXADDR_USER_*, and
archsetjmp.h, because it needs jmp_buf.
pmd_alloc_one is uninlined because it needs mm_struct, and that's
inconvenient to provide in asm-um/pgtable-3level.h.
elf_core_copy_fpregs is also uninlined from elf-i386.h and
elf-x86_64.h, which duplicated the code anyway, to
arch/um/kernel/process.c, so that the reference to current_thread
doesn't pull sched.h or anything related into asm/elf.h.
arch/um/sys-i386/ldt.c, arch/um/kernel/tlb.c and
arch/um/kernel/skas/uaccess.c got sched.h because they dereference
task_structs. Its includes of linux and asm headers got turned from
"" to <>.
arch/um/sys-i386/bug.c gets asm/errno.h because it needs errno
constants.
asm/elf-i386 gets asm/user.h because it needs user_regs_struct.
asm/fixmap.h gets page.h because it needs PAGE_SIZE and PAGE_MASK and
system.h for BUG_ON.
asm/pgtable doesn't need sched.h.
asm/processor-generic.h defined mm_segment_t, but didn't use it. So,
that definition is moved to uaccess.h, which defines a bunch of
mm_segment_t-related stuff. thread_info.h uses mm_segment_t, and
includes uaccess.h, which causes a recursion. So, the definition is
placed above the include of thread_info. in uaccess.h. thread_info.h
also gets page.h because it needs PAGE_SIZE.
ObCheckpatchViolationJustification - I'm not adding a typedef; I'm
moving mm_segment_t from one place to another.
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-05 06:30:53 +00:00
|
|
|
|
|
|
|
int elf_core_copy_fpregs(struct task_struct *t, elf_fpregset_t *fpu)
|
|
|
|
{
|
|
|
|
int cpu = current_thread_info()->cpu;
|
|
|
|
|
|
|
|
return save_fp_registers(userspace_pid[cpu], (unsigned long *) fpu);
|
|
|
|
}
|
|
|
|
|