Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 24869
b: refs/heads/master
c: 972410b
h: refs/heads/master
i:
  24867: 7a1b38c
v: v3
  • Loading branch information
Paolo 'Blaisorblade' Giarrusso authored and Linus Torvalds committed Mar 31, 2006
1 parent ba872e5 commit 279b88c
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fbdf2161552a2065047e5df2dbf9ebf69d66a0e9
refs/heads/master: 972410b0232e97609fcefc8e408fe3037fcd607b
6 changes: 5 additions & 1 deletion trunk/arch/um/include/kern_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,11 @@ extern void *get_current(void);
extern struct task_struct *get_task(int pid, int require);
extern void machine_halt(void);
extern int is_syscall(unsigned long addr);
extern void arch_switch(void);

extern void arch_switch_to_tt(struct task_struct *from, struct task_struct *to);

extern void arch_switch_to_skas(struct task_struct *from, struct task_struct *to);

extern void free_irq(unsigned int, void *);
extern int cpu(void);

Expand Down
5 changes: 5 additions & 0 deletions trunk/arch/um/include/sysdep-i386/ptrace.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@
#define MAX_REG_NR (UM_FRAME_SIZE / sizeof(unsigned long))
#define MAX_REG_OFFSET (UM_FRAME_SIZE)

#ifdef UML_CONFIG_PT_PROXY
extern void update_debugregs(int seq);
#else
static inline void update_debugregs(int seq) {}
#endif


/* syscall emulation path in ptrace */

Expand Down
2 changes: 2 additions & 0 deletions trunk/arch/um/kernel/skas/process_kern.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ void switch_to_skas(void *prev, void *next)
switch_threads(&from->thread.mode.skas.switch_buf,
to->thread.mode.skas.switch_buf);

arch_switch_to_skas(current->thread.prev_sched, current);

if(current->pid == 0)
switch_timers(1);
}
Expand Down
10 changes: 8 additions & 2 deletions trunk/arch/um/kernel/tt/process_kern.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@ void switch_to_tt(void *prev, void *next)

c = 0;

/* Notice that here we "up" the semaphore on which "to" is waiting, and
* below (the read) we wait on this semaphore (which is implemented by
* switch_pipe) and go sleeping. Thus, after that, we have resumed in
* "to", and can't use any more the value of "from" (which is outdated),
* nor the value in "to" (since it was the task which stole us the CPU,
* which we don't care about). */

err = os_write_file(to->thread.mode.tt.switch_pipe[1], &c, sizeof(c));
if(err != sizeof(c))
panic("write of switch_pipe failed, err = %d", -err);
Expand All @@ -77,7 +84,7 @@ void switch_to_tt(void *prev, void *next)
change_sig(SIGALRM, alrm);
change_sig(SIGPROF, prof);

arch_switch();
arch_switch_to_tt(prev_sched, current);

flush_tlb_all();
local_irq_restore(flags);
Expand Down Expand Up @@ -141,7 +148,6 @@ static void new_thread_handler(int sig)
set_cmdline("(kernel thread)");

change_sig(SIGUSR1, 1);
change_sig(SIGVTALRM, 1);
change_sig(SIGPROF, 1);
local_irq_enable();
if(!run_kernel_thread(fn, arg, &current->thread.exec_buf))
Expand Down
8 changes: 6 additions & 2 deletions trunk/arch/um/sys-i386/ptrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,13 @@
#include "sysdep/sigcontext.h"
#include "sysdep/sc.h"

void arch_switch(void)
void arch_switch_to_tt(struct task_struct *from, struct task_struct *to)
{
update_debugregs(to->thread.arch.debugregs_seq);
}

void arch_switch_to_skas(struct task_struct *from, struct task_struct *to)
{
update_debugregs(current->thread.arch.debugregs_seq);
}

int is_syscall(unsigned long addr)
Expand Down
10 changes: 9 additions & 1 deletion trunk/arch/um/sys-i386/ptrace_user.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include "sysdep/thread.h"
#include "user.h"
#include "os.h"
#include "uml-config.h"

int ptrace_getregs(long pid, unsigned long *regs_out)
{
Expand Down Expand Up @@ -43,6 +44,7 @@ int ptrace_setfpregs(long pid, unsigned long *regs)
return 0;
}

/* All the below stuff is of interest for TT mode only */
static void write_debugregs(int pid, unsigned long *regs)
{
struct user *dummy;
Expand Down Expand Up @@ -75,7 +77,6 @@ static void read_debugregs(int pid, unsigned long *regs)

/* Accessed only by the tracing thread */
static unsigned long kernel_debugregs[8] = { [ 0 ... 7 ] = 0 };
static int debugregs_seq = 0;

void arch_enter_kernel(void *task, int pid)
{
Expand All @@ -89,6 +90,11 @@ void arch_leave_kernel(void *task, int pid)
write_debugregs(pid, TASK_DEBUGREGS(task));
}

#ifdef UML_CONFIG_PT_PROXY
/* Accessed only by the tracing thread */
static int debugregs_seq;

/* Only called by the ptrace proxy */
void ptrace_pokeuser(unsigned long addr, unsigned long data)
{
if((addr < offsetof(struct user, u_debugreg[0])) ||
Expand All @@ -109,6 +115,7 @@ static void update_debugregs_cb(void *arg)
write_debugregs(pid, kernel_debugregs);
}

/* Optimized out in its header when not defined */
void update_debugregs(int seq)
{
int me;
Expand All @@ -118,6 +125,7 @@ void update_debugregs(int seq)
me = os_getpid();
initial_thread_cb(update_debugregs_cb, &me);
}
#endif

/*
* Overrides for Emacs so that we follow Linus's tabbing style.
Expand Down

0 comments on commit 279b88c

Please sign in to comment.