1999-05-15 10:48:19 +00:00
|
|
|
/*
|
|
|
|
* Wine server processes
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999 Alexandre Julliard
|
2002-03-09 23:29:33 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
1999-05-15 10:48:19 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_SERVER_PROCESS_H
|
|
|
|
#define __WINE_SERVER_PROCESS_H
|
|
|
|
|
|
|
|
#include "object.h"
|
|
|
|
|
2000-05-30 20:32:06 +00:00
|
|
|
struct atom_table;
|
2002-10-02 23:49:30 +00:00
|
|
|
struct handle_table;
|
2002-05-24 21:20:27 +00:00
|
|
|
struct startup_info;
|
2015-04-03 06:19:45 +00:00
|
|
|
struct job;
|
2000-05-30 19:48:18 +00:00
|
|
|
|
2002-05-25 21:15:03 +00:00
|
|
|
/* process startup state */
|
|
|
|
enum startup_state { STARTUP_IN_PROGRESS, STARTUP_DONE, STARTUP_ABORTED };
|
|
|
|
|
1999-05-15 10:48:19 +00:00
|
|
|
/* process structures */
|
|
|
|
|
1999-05-16 16:54:54 +00:00
|
|
|
struct process
|
|
|
|
{
|
|
|
|
struct object obj; /* object header */
|
2005-02-25 19:31:26 +00:00
|
|
|
struct list entry; /* entry in system-wide process list */
|
2016-04-21 10:34:07 +00:00
|
|
|
process_id_t parent_id; /* parent process id (at the time of creation) */
|
2005-03-01 10:56:18 +00:00
|
|
|
struct list thread_list; /* thread list */
|
2021-01-28 10:06:09 +00:00
|
|
|
struct debug_obj *debug_obj; /* debug object debugging this process */
|
2019-08-06 13:05:36 +00:00
|
|
|
struct debug_event *debug_event; /* debug event being sent to debugger */
|
2002-10-02 23:49:30 +00:00
|
|
|
struct handle_table *handles; /* handle entries */
|
2003-02-19 00:33:32 +00:00
|
|
|
struct fd *msg_fd; /* fd for sendmsg/recvmsg */
|
2003-02-01 01:38:40 +00:00
|
|
|
process_id_t id; /* id of the process */
|
|
|
|
process_id_t group_id; /* group id of the process */
|
2021-07-01 13:26:47 +00:00
|
|
|
unsigned int session_id; /* session id */
|
2006-08-14 18:19:42 +00:00
|
|
|
struct timeout_user *sigkill_timeout; /* timeout for final SIGKILL */
|
2021-11-10 09:26:45 +00:00
|
|
|
timeout_t sigkill_delay; /* delay before final SIGKILL */
|
2021-04-23 10:14:04 +00:00
|
|
|
unsigned short machine; /* client machine type */
|
2006-08-14 18:19:42 +00:00
|
|
|
int unix_pid; /* Unix pid for final SIGKILL */
|
1999-05-16 16:54:54 +00:00
|
|
|
int exit_code; /* process exit code */
|
|
|
|
int running_threads; /* number of threads running in this process */
|
2007-04-17 18:08:59 +00:00
|
|
|
timeout_t start_time; /* absolute time at process start */
|
|
|
|
timeout_t end_time; /* absolute time at process end */
|
2009-01-19 13:15:51 +00:00
|
|
|
affinity_t affinity; /* process affinity mask */
|
1999-05-16 16:54:54 +00:00
|
|
|
int priority; /* priority class */
|
|
|
|
int suspend; /* global process suspend count */
|
2011-10-09 21:26:03 +00:00
|
|
|
unsigned int is_system:1; /* is it a system process? */
|
|
|
|
unsigned int debug_children:1;/* also debug all child processes */
|
2013-05-06 06:39:27 +00:00
|
|
|
unsigned int is_terminating:1;/* is process terminating? */
|
2021-03-11 20:51:37 +00:00
|
|
|
data_size_t imagelen; /* length of image path in bytes */
|
|
|
|
WCHAR *image; /* main exe image full path */
|
2021-04-23 10:14:04 +00:00
|
|
|
struct job *job; /* job object associated with this process */
|
2015-03-31 22:10:16 +00:00
|
|
|
struct list job_entry; /* list entry for job object */
|
2016-12-01 11:10:23 +00:00
|
|
|
struct list asyncs; /* list of async object owned by the process */
|
2003-03-18 05:04:33 +00:00
|
|
|
struct list locks; /* list of file locks owned by the process */
|
2003-12-10 04:08:06 +00:00
|
|
|
struct list classes; /* window classes owned by the process */
|
2020-11-27 17:13:30 +00:00
|
|
|
struct console *console; /* console input */
|
2002-05-25 21:15:03 +00:00
|
|
|
enum startup_state startup_state; /* startup state */
|
2002-05-24 21:20:27 +00:00
|
|
|
struct startup_info *startup_info; /* startup info while init is in progress */
|
2000-05-30 19:48:18 +00:00
|
|
|
struct event *idle_event; /* event for input idle */
|
2005-06-08 18:44:50 +00:00
|
|
|
obj_handle_t winstation; /* main handle to process window station */
|
2005-06-09 12:07:12 +00:00
|
|
|
obj_handle_t desktop; /* handle to desktop to use for new threads */
|
2003-07-24 00:07:00 +00:00
|
|
|
struct token *token; /* security token associated with this process */
|
2017-09-26 12:11:49 +00:00
|
|
|
struct list views; /* list of memory views */
|
2008-12-30 22:02:33 +00:00
|
|
|
client_ptr_t peb; /* PEB address in client address space */
|
2008-12-30 21:47:48 +00:00
|
|
|
client_ptr_t ldt_copy; /* pointer to LDT copy in client addr space */
|
2016-05-02 05:39:16 +00:00
|
|
|
struct dir_cache *dir_cache; /* map of client-side directory cache */
|
2006-12-29 15:56:11 +00:00
|
|
|
unsigned int trace_data; /* opaque data used by the process tracing mechanism */
|
2022-07-28 08:27:30 +00:00
|
|
|
struct rawinput_device *rawinput_devices; /* list of registered rawinput devices */
|
|
|
|
unsigned int rawinput_device_count; /* number of registered rawinput devices */
|
2012-09-10 22:27:04 +00:00
|
|
|
const struct rawinput_device *rawinput_mouse; /* rawinput mouse device, if any */
|
2012-09-12 09:30:54 +00:00
|
|
|
const struct rawinput_device *rawinput_kbd; /* rawinput keyboard device, if any */
|
2019-04-19 16:24:30 +00:00
|
|
|
struct list kernel_object; /* list of kernel object pointers */
|
2021-12-31 11:51:43 +00:00
|
|
|
pe_image_info_t image_info; /* main exe image info */
|
1999-05-16 16:54:54 +00:00
|
|
|
};
|
1999-05-15 10:48:19 +00:00
|
|
|
|
|
|
|
/* process functions */
|
|
|
|
|
2003-02-01 01:38:40 +00:00
|
|
|
extern unsigned int alloc_ptid( void *ptr );
|
|
|
|
extern void free_ptid( unsigned int id );
|
|
|
|
extern void *get_ptid_entry( unsigned int id );
|
2021-04-16 09:43:14 +00:00
|
|
|
extern struct process *create_process( int fd, struct process *parent, unsigned int flags, const startup_info_t *info,
|
2020-09-22 10:24:21 +00:00
|
|
|
const struct security_descriptor *sd, const obj_handle_t *handles,
|
2020-09-24 04:44:55 +00:00
|
|
|
unsigned int handle_count, struct token *token );
|
2021-02-02 09:18:26 +00:00
|
|
|
extern data_size_t get_process_startup_info_size( struct process *process );
|
2005-03-01 10:56:18 +00:00
|
|
|
extern struct thread *get_process_first_thread( struct process *process );
|
2002-10-03 19:54:57 +00:00
|
|
|
extern struct process *get_process_from_id( process_id_t id );
|
2002-05-30 20:12:58 +00:00
|
|
|
extern struct process *get_process_from_handle( obj_handle_t handle, unsigned int access );
|
2021-02-01 10:08:44 +00:00
|
|
|
extern struct debug_obj *get_debug_obj( struct process *process, obj_handle_t handle, unsigned int access );
|
1999-05-16 16:54:54 +00:00
|
|
|
extern int process_set_debugger( struct process *process, struct thread *thread );
|
2021-01-28 10:06:09 +00:00
|
|
|
extern void debugger_detach( struct process *process, struct debug_obj *debug_obj );
|
2003-10-14 01:30:42 +00:00
|
|
|
extern int set_process_debug_flag( struct process *process, int flag );
|
2002-02-27 01:28:30 +00:00
|
|
|
|
1999-05-15 10:48:19 +00:00
|
|
|
extern void add_process_thread( struct process *process,
|
|
|
|
struct thread *thread );
|
|
|
|
extern void remove_process_thread( struct process *process,
|
|
|
|
struct thread *thread );
|
1999-05-16 16:54:54 +00:00
|
|
|
extern void suspend_process( struct process *process );
|
|
|
|
extern void resume_process( struct process *process );
|
2006-09-21 09:14:45 +00:00
|
|
|
extern void kill_process( struct process *process, int violent_death );
|
2001-12-04 20:17:43 +00:00
|
|
|
extern void kill_console_processes( struct thread *renderer, int exit_code );
|
2021-01-28 10:06:09 +00:00
|
|
|
extern void detach_debugged_processes( struct debug_obj *debug_obj, int exit_code );
|
2002-06-02 21:22:22 +00:00
|
|
|
extern void enum_processes( int (*cb)(struct process*, void*), void *user);
|
2006-12-29 15:56:11 +00:00
|
|
|
|
2007-05-11 10:46:32 +00:00
|
|
|
/* console functions */
|
2020-11-27 17:13:30 +00:00
|
|
|
extern struct thread *console_get_renderer( struct console *console );
|
2007-05-11 10:46:32 +00:00
|
|
|
|
2006-12-29 19:38:49 +00:00
|
|
|
/* process tracing mechanism to use */
|
|
|
|
#ifdef __APPLE__
|
|
|
|
#define USE_MACH
|
2007-03-09 12:40:41 +00:00
|
|
|
#elif defined(__sun)
|
|
|
|
#define USE_PROCFS
|
2006-12-29 19:38:49 +00:00
|
|
|
#else
|
|
|
|
#define USE_PTRACE
|
|
|
|
#endif
|
|
|
|
|
2006-12-29 15:56:11 +00:00
|
|
|
extern void init_tracing_mechanism(void);
|
|
|
|
extern void init_process_tracing( struct process *process );
|
|
|
|
extern void finish_process_tracing( struct process *process );
|
2008-12-30 13:11:58 +00:00
|
|
|
extern int read_process_memory( struct process *process, client_ptr_t ptr, data_size_t size, char *dest );
|
|
|
|
extern int write_process_memory( struct process *process, client_ptr_t ptr, data_size_t size, const char *src );
|
1999-05-15 10:48:19 +00:00
|
|
|
|
2007-03-17 10:52:14 +00:00
|
|
|
static inline process_id_t get_process_id( struct process *process ) { return process->id; }
|
2003-02-01 01:38:40 +00:00
|
|
|
|
2007-03-17 10:52:14 +00:00
|
|
|
static inline int is_process_init_done( struct process *process )
|
2002-05-25 21:15:03 +00:00
|
|
|
{
|
|
|
|
return process->startup_state == STARTUP_DONE;
|
|
|
|
}
|
2000-03-08 12:01:30 +00:00
|
|
|
|
2021-07-01 13:26:47 +00:00
|
|
|
static const unsigned int default_session_id = 1;
|
|
|
|
|
1999-05-15 10:48:19 +00:00
|
|
|
#endif /* __WINE_SERVER_PROCESS_H */
|