From cd1c7fc056decda40f62d99438dda69d005fd7ed Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Fri, 29 Dec 2006 16:56:11 +0100 Subject: [PATCH] server: Add hooks to support process tracing mechanisms other than ptrace. --- server/process.c | 3 +++ server/process.h | 5 +++++ server/ptrace.c | 17 +++++++++++++++++ server/request.c | 3 +++ 4 files changed, 28 insertions(+) diff --git a/server/process.c b/server/process.c index 217710a0835..001afcbed97 100644 --- a/server/process.c +++ b/server/process.c @@ -284,6 +284,7 @@ struct thread *create_process( int fd, struct thread *parent_thread, int inherit process->winstation = 0; process->desktop = 0; process->token = token_create_admin(); + process->trace_data = 0; list_init( &process->thread_list ); list_init( &process->locks ); list_init( &process->classes ); @@ -343,6 +344,7 @@ data_size_t init_process( struct thread *thread ) struct process *process = thread->process; struct startup_info *info = process->startup_info; + init_process_tracing( process ); if (!info) return 0; return info->data_size; } @@ -599,6 +601,7 @@ static void process_killed( struct process *process ) destroy_process_classes( process ); remove_process_locks( process ); set_process_startup_state( process, STARTUP_ABORTED ); + finish_process_tracing( process ); start_sigkill_timer( process ); wake_up( &process->obj, 0 ); } diff --git a/server/process.h b/server/process.h index af84719d64d..6d5d676ad14 100644 --- a/server/process.h +++ b/server/process.h @@ -80,6 +80,7 @@ struct process struct list dlls; /* list of loaded dlls */ void *peb; /* PEB address in client address space */ void *ldt_copy; /* pointer to LDT copy in client addr space */ + unsigned int trace_data; /* opaque data used by the process tracing mechanism */ }; struct process_snapshot @@ -128,6 +129,10 @@ extern void detach_debugged_processes( struct thread *debugger ); extern struct process_snapshot *process_snap( int *count ); extern struct module_snapshot *module_snap( struct process *process, int *count ); extern void enum_processes( int (*cb)(struct process*, void*), void *user); + +extern void init_tracing_mechanism(void); +extern void init_process_tracing( struct process *process ); +extern void finish_process_tracing( struct process *process ); extern int read_process_memory( struct process *process, const void *ptr, data_size_t size, char *dest ); extern int write_process_memory( struct process *process, void *ptr, data_size_t size, const char *src ); diff --git a/server/ptrace.c b/server/ptrace.c index c7aa0881351..7b0bfa0754f 100644 --- a/server/ptrace.c +++ b/server/ptrace.c @@ -223,6 +223,23 @@ static inline int tkill( int tgid, int pid, int sig ) return -1; } +/* initialize the process tracing mechanism */ +void init_tracing_mechanism(void) +{ + /* no initialization needed for ptrace */ +} + +/* initialize the per-process tracing mechanism */ +void init_process_tracing( struct process *process ) +{ + /* ptrace setup is done on-demand */ +} + +/* terminate the per-process tracing mechanism */ +void finish_process_tracing( struct process *process ) +{ +} + /* send a Unix signal to a specific thread */ int send_thread_signal( struct thread *thread, int sig ) { diff --git a/server/request.c b/server/request.c index 07cc5fbd8fb..c01a70ea874 100644 --- a/server/request.c +++ b/server/request.c @@ -800,6 +800,9 @@ void open_master_socket(void) /* init startup time */ gettimeofday( &server_start_time, NULL ); + + /* init the process tracing mechanism */ + init_tracing_mechanism(); } /* master socket timer expiration handler */ -- 2.11.4.GIT