2 * Server-side process management
4 * Copyright (C) 1998 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
33 #ifdef HAVE_SYS_SOCKET_H
34 # include <sys/socket.h>
42 #define WIN32_NO_STATUS
53 /* process structure */
55 static struct list process_list
= LIST_INIT(process_list
);
56 static int running_processes
, user_processes
;
57 static struct event
*shutdown_event
; /* signaled when shutdown starts */
58 static struct timeout_user
*shutdown_timeout
; /* timeout for server shutdown */
59 static int shutdown_stage
; /* current stage in the shutdown process */
61 /* process operations */
63 static void process_dump( struct object
*obj
, int verbose
);
64 static struct object_type
*process_get_type( struct object
*obj
);
65 static int process_signaled( struct object
*obj
, struct wait_queue_entry
*entry
);
66 static unsigned int process_map_access( struct object
*obj
, unsigned int access
);
67 static struct security_descriptor
*process_get_sd( struct object
*obj
);
68 static void process_poll_event( struct fd
*fd
, int event
);
69 static struct list
*process_get_kernel_obj_list( struct object
*obj
);
70 static void process_destroy( struct object
*obj
);
71 static void terminate_process( struct process
*process
, struct thread
*skip
, int exit_code
);
73 static const struct object_ops process_ops
=
75 sizeof(struct process
), /* size */
76 process_dump
, /* dump */
77 process_get_type
, /* get_type */
78 add_queue
, /* add_queue */
79 remove_queue
, /* remove_queue */
80 process_signaled
, /* signaled */
81 no_satisfied
, /* satisfied */
82 no_signal
, /* signal */
83 no_get_fd
, /* get_fd */
84 process_map_access
, /* map_access */
85 process_get_sd
, /* get_sd */
86 default_set_sd
, /* set_sd */
87 no_get_full_name
, /* get_full_name */
88 no_lookup_name
, /* lookup_name */
89 no_link_name
, /* link_name */
90 NULL
, /* unlink_name */
91 no_open_file
, /* open_file */
92 process_get_kernel_obj_list
, /* get_kernel_obj_list */
93 no_close_handle
, /* close_handle */
94 process_destroy
/* destroy */
97 static const struct fd_ops process_fd_ops
=
99 NULL
, /* get_poll_events */
100 process_poll_event
, /* poll_event */
102 NULL
, /* get_fd_type */
104 NULL
, /* queue_async */
105 NULL
, /* reselect_async */
106 NULL
/* cancel async */
109 /* process startup info */
113 struct object obj
; /* object header */
114 struct process
*process
; /* created process */
115 data_size_t info_size
; /* size of startup info */
116 data_size_t data_size
; /* size of whole startup data */
117 startup_info_t
*data
; /* data for startup info */
120 static void startup_info_dump( struct object
*obj
, int verbose
);
121 static int startup_info_signaled( struct object
*obj
, struct wait_queue_entry
*entry
);
122 static void startup_info_destroy( struct object
*obj
);
124 static const struct object_ops startup_info_ops
=
126 sizeof(struct startup_info
), /* size */
127 startup_info_dump
, /* dump */
128 no_get_type
, /* get_type */
129 add_queue
, /* add_queue */
130 remove_queue
, /* remove_queue */
131 startup_info_signaled
, /* signaled */
132 no_satisfied
, /* satisfied */
133 no_signal
, /* signal */
134 no_get_fd
, /* get_fd */
135 no_map_access
, /* map_access */
136 default_get_sd
, /* get_sd */
137 default_set_sd
, /* set_sd */
138 no_get_full_name
, /* get_full_name */
139 no_lookup_name
, /* lookup_name */
140 no_link_name
, /* link_name */
141 NULL
, /* unlink_name */
142 no_open_file
, /* open_file */
143 no_kernel_obj_list
, /* get_kernel_obj_list */
144 no_close_handle
, /* close_handle */
145 startup_info_destroy
/* destroy */
150 static void job_dump( struct object
*obj
, int verbose
);
151 static struct object_type
*job_get_type( struct object
*obj
);
152 static int job_signaled( struct object
*obj
, struct wait_queue_entry
*entry
);
153 static unsigned int job_map_access( struct object
*obj
, unsigned int access
);
154 static int job_close_handle( struct object
*obj
, struct process
*process
, obj_handle_t handle
);
155 static void job_destroy( struct object
*obj
);
159 struct object obj
; /* object header */
160 struct list process_list
; /* list of all processes */
161 int num_processes
; /* count of running processes */
162 int total_processes
; /* count of processes which have been assigned */
163 unsigned int limit_flags
; /* limit flags */
164 int terminating
; /* job is terminating */
165 int signaled
; /* job is signaled */
166 struct completion
*completion_port
; /* associated completion port */
167 apc_param_t completion_key
; /* key to send with completion messages */
170 static const struct object_ops job_ops
=
172 sizeof(struct job
), /* size */
174 job_get_type
, /* get_type */
175 add_queue
, /* add_queue */
176 remove_queue
, /* remove_queue */
177 job_signaled
, /* signaled */
178 no_satisfied
, /* satisfied */
179 no_signal
, /* signal */
180 no_get_fd
, /* get_fd */
181 job_map_access
, /* map_access */
182 default_get_sd
, /* get_sd */
183 default_set_sd
, /* set_sd */
184 default_get_full_name
, /* get_full_name */
185 no_lookup_name
, /* lookup_name */
186 directory_link_name
, /* link_name */
187 default_unlink_name
, /* unlink_name */
188 no_open_file
, /* open_file */
189 no_kernel_obj_list
, /* get_kernel_obj_list */
190 job_close_handle
, /* close_handle */
191 job_destroy
/* destroy */
194 static struct job
*create_job_object( struct object
*root
, const struct unicode_str
*name
,
195 unsigned int attr
, const struct security_descriptor
*sd
)
199 if ((job
= create_named_object( root
, &job_ops
, name
, attr
, sd
)))
201 if (get_error() != STATUS_OBJECT_NAME_EXISTS
)
203 /* initialize it if it didn't already exist */
204 list_init( &job
->process_list
);
205 job
->num_processes
= 0;
206 job
->total_processes
= 0;
207 job
->limit_flags
= 0;
208 job
->terminating
= 0;
210 job
->completion_port
= NULL
;
211 job
->completion_key
= 0;
217 static struct job
*get_job_obj( struct process
*process
, obj_handle_t handle
, unsigned int access
)
219 return (struct job
*)get_handle_obj( process
, handle
, access
, &job_ops
);
222 static struct object_type
*job_get_type( struct object
*obj
)
224 static const WCHAR name
[] = {'J','o','b'};
225 static const struct unicode_str str
= { name
, sizeof(name
) };
226 return get_object_type( &str
);
229 static unsigned int job_map_access( struct object
*obj
, unsigned int access
)
231 if (access
& GENERIC_READ
) access
|= STANDARD_RIGHTS_READ
;
232 if (access
& GENERIC_WRITE
) access
|= STANDARD_RIGHTS_WRITE
;
233 if (access
& GENERIC_EXECUTE
) access
|= STANDARD_RIGHTS_EXECUTE
;
234 if (access
& GENERIC_ALL
) access
|= JOB_OBJECT_ALL_ACCESS
;
235 return access
& ~(GENERIC_READ
| GENERIC_WRITE
| GENERIC_EXECUTE
| GENERIC_ALL
);
238 static void add_job_completion( struct job
*job
, apc_param_t msg
, apc_param_t pid
)
240 if (job
->completion_port
)
241 add_completion( job
->completion_port
, job
->completion_key
, pid
, STATUS_SUCCESS
, msg
);
244 static void add_job_process( struct job
*job
, struct process
*process
)
246 process
->job
= (struct job
*)grab_object( job
);
247 list_add_tail( &job
->process_list
, &process
->job_entry
);
248 job
->num_processes
++;
249 job
->total_processes
++;
251 add_job_completion( job
, JOB_OBJECT_MSG_NEW_PROCESS
, get_process_id(process
) );
254 /* called when a process has terminated, allow one additional process */
255 static void release_job_process( struct process
*process
)
257 struct job
*job
= process
->job
;
261 assert( job
->num_processes
);
262 job
->num_processes
--;
264 if (!job
->terminating
)
265 add_job_completion( job
, JOB_OBJECT_MSG_EXIT_PROCESS
, get_process_id(process
) );
267 if (!job
->num_processes
)
268 add_job_completion( job
, JOB_OBJECT_MSG_ACTIVE_PROCESS_ZERO
, 0 );
271 static void terminate_job( struct job
*job
, int exit_code
)
273 /* don't report completion events for terminated processes */
274 job
->terminating
= 1;
276 for (;;) /* restart from the beginning of the list every time */
278 struct process
*process
;
280 /* find the first process associated with this job and still running */
281 LIST_FOR_EACH_ENTRY( process
, &job
->process_list
, struct process
, job_entry
)
283 if (process
->running_threads
) break;
285 if (&process
->job_entry
== &job
->process_list
) break; /* no process found */
286 assert( process
->job
== job
);
287 terminate_process( process
, NULL
, exit_code
);
290 job
->terminating
= 0;
292 wake_up( &job
->obj
, 0 );
295 static int job_close_handle( struct object
*obj
, struct process
*process
, obj_handle_t handle
)
297 struct job
*job
= (struct job
*)obj
;
298 assert( obj
->ops
== &job_ops
);
300 if (obj
->handle_count
== 1) /* last handle */
302 if (job
->limit_flags
& JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE
)
303 terminate_job( job
, 0 );
308 static void job_destroy( struct object
*obj
)
310 struct job
*job
= (struct job
*)obj
;
311 assert( obj
->ops
== &job_ops
);
313 assert( !job
->num_processes
);
314 assert( list_empty(&job
->process_list
) );
316 if (job
->completion_port
) release_object( job
->completion_port
);
319 static void job_dump( struct object
*obj
, int verbose
)
321 struct job
*job
= (struct job
*)obj
;
322 assert( obj
->ops
== &job_ops
);
323 fprintf( stderr
, "Job processes=%d\n", list_count(&job
->process_list
) );
326 static int job_signaled( struct object
*obj
, struct wait_queue_entry
*entry
)
328 struct job
*job
= (struct job
*)obj
;
329 return job
->signaled
;
334 void *ptr
; /* entry ptr */
335 unsigned int next
; /* next free entry */
338 static struct ptid_entry
*ptid_entries
; /* array of ptid entries */
339 static unsigned int used_ptid_entries
; /* number of entries in use */
340 static unsigned int alloc_ptid_entries
; /* number of allocated entries */
341 static unsigned int next_free_ptid
; /* next free entry */
342 static unsigned int last_free_ptid
; /* last free entry */
343 static unsigned int num_free_ptids
; /* number of free ptids */
345 static void kill_all_processes(void);
347 #define PTID_OFFSET 8 /* offset for first ptid value */
349 static unsigned int index_from_ptid(unsigned int id
) { return id
/ 4; }
350 static unsigned int ptid_from_index(unsigned int index
) { return index
* 4; }
352 /* allocate a new process or thread id */
353 unsigned int alloc_ptid( void *ptr
)
355 struct ptid_entry
*entry
;
358 if (used_ptid_entries
< alloc_ptid_entries
)
360 index
= used_ptid_entries
+ PTID_OFFSET
;
361 entry
= &ptid_entries
[used_ptid_entries
++];
363 else if (next_free_ptid
&& num_free_ptids
>= 256)
365 index
= next_free_ptid
;
366 entry
= &ptid_entries
[index
- PTID_OFFSET
];
367 if (!(next_free_ptid
= entry
->next
)) last_free_ptid
= 0;
370 else /* need to grow the array */
372 unsigned int count
= alloc_ptid_entries
+ (alloc_ptid_entries
/ 2);
373 if (!count
) count
= 512;
374 if (!(entry
= realloc( ptid_entries
, count
* sizeof(*entry
) )))
376 set_error( STATUS_NO_MEMORY
);
379 ptid_entries
= entry
;
380 alloc_ptid_entries
= count
;
381 index
= used_ptid_entries
+ PTID_OFFSET
;
382 entry
= &ptid_entries
[used_ptid_entries
++];
386 return ptid_from_index( index
);
389 /* free a process or thread id */
390 void free_ptid( unsigned int id
)
392 unsigned int index
= index_from_ptid( id
);
393 struct ptid_entry
*entry
= &ptid_entries
[index
- PTID_OFFSET
];
398 /* append to end of free list so that we don't reuse it too early */
399 if (last_free_ptid
) ptid_entries
[last_free_ptid
- PTID_OFFSET
].next
= index
;
400 else next_free_ptid
= index
;
401 last_free_ptid
= index
;
405 /* retrieve the pointer corresponding to a process or thread id */
406 void *get_ptid_entry( unsigned int id
)
408 unsigned int index
= index_from_ptid( id
);
409 if (index
< PTID_OFFSET
) return NULL
;
410 if (index
- PTID_OFFSET
>= used_ptid_entries
) return NULL
;
411 return ptid_entries
[index
- PTID_OFFSET
].ptr
;
414 /* return the main thread of the process */
415 struct thread
*get_process_first_thread( struct process
*process
)
417 struct list
*ptr
= list_head( &process
->thread_list
);
418 if (!ptr
) return NULL
;
419 return LIST_ENTRY( ptr
, struct thread
, proc_entry
);
422 /* set the state of the process startup info */
423 static void set_process_startup_state( struct process
*process
, enum startup_state state
)
425 if (process
->startup_state
== STARTUP_IN_PROGRESS
) process
->startup_state
= state
;
426 if (process
->startup_info
)
428 wake_up( &process
->startup_info
->obj
, 0 );
429 release_object( process
->startup_info
);
430 process
->startup_info
= NULL
;
434 /* callback for server shutdown */
435 static void server_shutdown_timeout( void *arg
)
437 shutdown_timeout
= NULL
;
438 if (!running_processes
)
440 close_master_socket( 0 );
443 switch(++shutdown_stage
)
445 case 1: /* signal system processes to exit */
446 if (debug_level
) fprintf( stderr
, "wineserver: shutting down\n" );
447 if (shutdown_event
) set_event( shutdown_event
);
448 shutdown_timeout
= add_timeout_user( 2 * -TICKS_PER_SEC
, server_shutdown_timeout
, NULL
);
449 close_master_socket( 4 * -TICKS_PER_SEC
);
451 case 2: /* now forcibly kill all processes (but still wait for SIGKILL timeouts) */
452 kill_all_processes();
457 /* forced shutdown, used for wineserver -k */
458 void shutdown_master_socket(void)
460 kill_all_processes();
462 if (shutdown_timeout
)
464 remove_timeout_user( shutdown_timeout
);
465 shutdown_timeout
= NULL
;
467 close_master_socket( 2 * -TICKS_PER_SEC
); /* for SIGKILL timeouts */
470 /* final cleanup once we are sure a process is really dead */
471 static void process_died( struct process
*process
)
473 if (debug_level
) fprintf( stderr
, "%04x: *process killed*\n", process
->id
);
474 if (!process
->is_system
)
476 if (!--user_processes
&& !shutdown_stage
&& master_socket_timeout
!= TIMEOUT_INFINITE
)
477 shutdown_timeout
= add_timeout_user( master_socket_timeout
, server_shutdown_timeout
, NULL
);
479 release_object( process
);
480 if (!--running_processes
&& shutdown_stage
) close_master_socket( 0 );
483 /* callback for process sigkill timeout */
484 static void process_sigkill( void *private )
486 struct process
*process
= private;
488 process
->sigkill_timeout
= NULL
;
489 kill( process
->unix_pid
, SIGKILL
);
490 process_died( process
);
493 /* start the sigkill timer for a process upon exit */
494 static void start_sigkill_timer( struct process
*process
)
496 grab_object( process
);
497 if (process
->unix_pid
!= -1 && process
->msg_fd
)
498 process
->sigkill_timeout
= add_timeout_user( -TICKS_PER_SEC
, process_sigkill
, process
);
500 process_died( process
);
503 /* create a new process */
504 /* if the function fails the fd is closed */
505 struct process
*create_process( int fd
, struct process
*parent
, int inherit_all
, const startup_info_t
*info
,
506 const struct security_descriptor
*sd
, const obj_handle_t
*handles
,
507 unsigned int handle_count
, struct token
*token
)
509 struct process
*process
;
511 if (!(process
= alloc_object( &process_ops
)))
516 process
->parent_id
= 0;
517 process
->debugger
= NULL
;
518 process
->debug_event
= NULL
;
519 process
->handles
= NULL
;
520 process
->msg_fd
= NULL
;
521 process
->sigkill_timeout
= NULL
;
522 process
->unix_pid
= -1;
523 process
->exit_code
= STILL_ACTIVE
;
524 process
->running_threads
= 0;
525 process
->priority
= PROCESS_PRIOCLASS_NORMAL
;
526 process
->suspend
= 0;
527 process
->is_system
= 0;
528 process
->debug_children
= 1;
529 process
->is_terminating
= 0;
531 process
->console
= NULL
;
532 process
->startup_state
= STARTUP_IN_PROGRESS
;
533 process
->startup_info
= NULL
;
534 process
->idle_event
= NULL
;
535 process
->exe_file
= NULL
;
537 process
->ldt_copy
= 0;
538 process
->dir_cache
= NULL
;
539 process
->winstation
= 0;
540 process
->desktop
= 0;
541 process
->token
= NULL
;
542 process
->trace_data
= 0;
543 process
->rawinput_mouse
= NULL
;
544 process
->rawinput_kbd
= NULL
;
545 list_init( &process
->kernel_object
);
546 list_init( &process
->thread_list
);
547 list_init( &process
->locks
);
548 list_init( &process
->asyncs
);
549 list_init( &process
->classes
);
550 list_init( &process
->views
);
551 list_init( &process
->dlls
);
552 list_init( &process
->rawinput_devices
);
554 process
->end_time
= 0;
555 list_add_tail( &process_list
, &process
->entry
);
557 if (sd
&& !default_set_sd( &process
->obj
, sd
, OWNER_SECURITY_INFORMATION
| GROUP_SECURITY_INFORMATION
|
558 DACL_SECURITY_INFORMATION
| SACL_SECURITY_INFORMATION
))
563 if (!(process
->id
= process
->group_id
= alloc_ptid( process
)))
568 if (!(process
->msg_fd
= create_anonymous_fd( &process_fd_ops
, fd
, &process
->obj
, 0 ))) goto error
;
570 /* create the handle table */
573 process
->handles
= alloc_handle_table( process
, 0 );
574 process
->token
= token_create_admin();
575 process
->affinity
= ~0;
579 obj_handle_t std_handles
[3];
581 std_handles
[0] = info
->hstdin
;
582 std_handles
[1] = info
->hstdout
;
583 std_handles
[2] = info
->hstderr
;
585 process
->parent_id
= parent
->id
;
586 process
->handles
= inherit_all
? copy_handle_table( process
, parent
, handles
, handle_count
, std_handles
)
587 : alloc_handle_table( process
, 0 );
588 /* Note: for security reasons, starting a new process does not attempt
589 * to use the current impersonation token for the new process */
590 process
->token
= token_duplicate( token
? token
: parent
->token
, TRUE
, 0, NULL
, NULL
, 0, NULL
, 0 );
591 process
->affinity
= parent
->affinity
;
593 if (!process
->handles
|| !process
->token
) goto error
;
595 /* Assign a high security label to the token. The default would be medium
596 * but Wine provides admin access to all applications right now so high
597 * makes more sense for the time being. */
598 if (!token_assign_label( process
->token
, security_high_label_sid
))
601 set_fd_events( process
->msg_fd
, POLLIN
); /* start listening to events */
605 if (process
) release_object( process
);
606 /* if we failed to start our first process, close everything down */
607 if (!running_processes
&& master_socket_timeout
!= TIMEOUT_INFINITE
) close_master_socket( 0 );
611 /* initialize the current process and fill in the request */
612 data_size_t
init_process( struct thread
*thread
)
614 struct process
*process
= thread
->process
;
615 struct startup_info
*info
= process
->startup_info
;
618 return info
->data_size
;
621 /* destroy a process when its refcount is 0 */
622 static void process_destroy( struct object
*obj
)
624 struct process
*process
= (struct process
*)obj
;
625 assert( obj
->ops
== &process_ops
);
627 /* we can't have a thread remaining */
628 assert( list_empty( &process
->thread_list
));
629 assert( list_empty( &process
->asyncs
));
631 assert( !process
->sigkill_timeout
); /* timeout should hold a reference to the process */
633 close_process_handles( process
);
634 set_process_startup_state( process
, STARTUP_ABORTED
);
638 list_remove( &process
->job_entry
);
639 release_object( process
->job
);
641 if (process
->console
) release_object( process
->console
);
642 if (process
->msg_fd
) release_object( process
->msg_fd
);
643 list_remove( &process
->entry
);
644 if (process
->idle_event
) release_object( process
->idle_event
);
645 if (process
->exe_file
) release_object( process
->exe_file
);
646 if (process
->id
) free_ptid( process
->id
);
647 if (process
->token
) release_object( process
->token
);
648 free( process
->dir_cache
);
651 /* dump a process on stdout for debugging purposes */
652 static void process_dump( struct object
*obj
, int verbose
)
654 struct process
*process
= (struct process
*)obj
;
655 assert( obj
->ops
== &process_ops
);
657 fprintf( stderr
, "Process id=%04x handles=%p\n", process
->id
, process
->handles
);
660 static struct object_type
*process_get_type( struct object
*obj
)
662 static const WCHAR name
[] = {'P','r','o','c','e','s','s'};
663 static const struct unicode_str str
= { name
, sizeof(name
) };
664 return get_object_type( &str
);
667 static int process_signaled( struct object
*obj
, struct wait_queue_entry
*entry
)
669 struct process
*process
= (struct process
*)obj
;
670 return !process
->running_threads
;
673 static unsigned int process_map_access( struct object
*obj
, unsigned int access
)
675 if (access
& GENERIC_READ
) access
|= STANDARD_RIGHTS_READ
| PROCESS_QUERY_INFORMATION
| PROCESS_VM_READ
;
676 if (access
& GENERIC_WRITE
) access
|= STANDARD_RIGHTS_WRITE
| PROCESS_SET_QUOTA
| PROCESS_SET_INFORMATION
| PROCESS_SUSPEND_RESUME
|
677 PROCESS_VM_WRITE
| PROCESS_DUP_HANDLE
| PROCESS_CREATE_PROCESS
| PROCESS_CREATE_THREAD
| PROCESS_VM_OPERATION
;
678 if (access
& GENERIC_EXECUTE
) access
|= STANDARD_RIGHTS_EXECUTE
| SYNCHRONIZE
| PROCESS_QUERY_LIMITED_INFORMATION
| PROCESS_TERMINATE
;
679 if (access
& GENERIC_ALL
) access
|= PROCESS_ALL_ACCESS
;
681 if (access
& PROCESS_QUERY_INFORMATION
) access
|= PROCESS_QUERY_LIMITED_INFORMATION
;
682 if (access
& PROCESS_SET_INFORMATION
) access
|= PROCESS_SET_LIMITED_INFORMATION
;
684 return access
& ~(GENERIC_READ
| GENERIC_WRITE
| GENERIC_EXECUTE
| GENERIC_ALL
);
687 static struct list
*process_get_kernel_obj_list( struct object
*obj
)
689 struct process
*process
= (struct process
*)obj
;
690 return &process
->kernel_object
;
693 static struct security_descriptor
*process_get_sd( struct object
*obj
)
695 static struct security_descriptor
*process_default_sd
;
697 if (obj
->sd
) return obj
->sd
;
699 if (!process_default_sd
)
701 size_t users_sid_len
= security_sid_len( security_domain_users_sid
);
702 size_t admins_sid_len
= security_sid_len( security_builtin_admins_sid
);
703 size_t dacl_len
= sizeof(ACL
) + 2 * offsetof( ACCESS_ALLOWED_ACE
, SidStart
)
704 + users_sid_len
+ admins_sid_len
;
705 ACCESS_ALLOWED_ACE
*aaa
;
708 process_default_sd
= mem_alloc( sizeof(*process_default_sd
) + admins_sid_len
+ users_sid_len
710 process_default_sd
->control
= SE_DACL_PRESENT
;
711 process_default_sd
->owner_len
= admins_sid_len
;
712 process_default_sd
->group_len
= users_sid_len
;
713 process_default_sd
->sacl_len
= 0;
714 process_default_sd
->dacl_len
= dacl_len
;
715 memcpy( process_default_sd
+ 1, security_builtin_admins_sid
, admins_sid_len
);
716 memcpy( (char *)(process_default_sd
+ 1) + admins_sid_len
, security_domain_users_sid
, users_sid_len
);
718 dacl
= (ACL
*)((char *)(process_default_sd
+ 1) + admins_sid_len
+ users_sid_len
);
719 dacl
->AclRevision
= ACL_REVISION
;
721 dacl
->AclSize
= dacl_len
;
724 aaa
= (ACCESS_ALLOWED_ACE
*)(dacl
+ 1);
725 aaa
->Header
.AceType
= ACCESS_ALLOWED_ACE_TYPE
;
726 aaa
->Header
.AceFlags
= INHERIT_ONLY_ACE
| CONTAINER_INHERIT_ACE
;
727 aaa
->Header
.AceSize
= offsetof( ACCESS_ALLOWED_ACE
, SidStart
) + users_sid_len
;
728 aaa
->Mask
= GENERIC_READ
;
729 memcpy( &aaa
->SidStart
, security_domain_users_sid
, users_sid_len
);
730 aaa
= (ACCESS_ALLOWED_ACE
*)((char *)aaa
+ aaa
->Header
.AceSize
);
731 aaa
->Header
.AceType
= ACCESS_ALLOWED_ACE_TYPE
;
732 aaa
->Header
.AceFlags
= 0;
733 aaa
->Header
.AceSize
= offsetof( ACCESS_ALLOWED_ACE
, SidStart
) + admins_sid_len
;
734 aaa
->Mask
= PROCESS_ALL_ACCESS
;
735 memcpy( &aaa
->SidStart
, security_builtin_admins_sid
, admins_sid_len
);
737 return process_default_sd
;
740 static void process_poll_event( struct fd
*fd
, int event
)
742 struct process
*process
= get_fd_user( fd
);
743 assert( process
->obj
.ops
== &process_ops
);
745 if (event
& (POLLERR
| POLLHUP
)) kill_process( process
, 0 );
746 else if (event
& POLLIN
) receive_fd( process
);
749 static void startup_info_destroy( struct object
*obj
)
751 struct startup_info
*info
= (struct startup_info
*)obj
;
752 assert( obj
->ops
== &startup_info_ops
);
754 if (info
->process
) release_object( info
->process
);
757 static void startup_info_dump( struct object
*obj
, int verbose
)
759 struct startup_info
*info
= (struct startup_info
*)obj
;
760 assert( obj
->ops
== &startup_info_ops
);
762 fputs( "Startup info", stderr
);
764 fprintf( stderr
, " in=%04x out=%04x err=%04x",
765 info
->data
->hstdin
, info
->data
->hstdout
, info
->data
->hstderr
);
766 fputc( '\n', stderr
);
769 static int startup_info_signaled( struct object
*obj
, struct wait_queue_entry
*entry
)
771 struct startup_info
*info
= (struct startup_info
*)obj
;
772 return info
->process
&& info
->process
->startup_state
!= STARTUP_IN_PROGRESS
;
775 /* get a process from an id (and increment the refcount) */
776 struct process
*get_process_from_id( process_id_t id
)
778 struct object
*obj
= get_ptid_entry( id
);
780 if (obj
&& obj
->ops
== &process_ops
) return (struct process
*)grab_object( obj
);
781 set_error( STATUS_INVALID_CID
);
785 /* get a process from a handle (and increment the refcount) */
786 struct process
*get_process_from_handle( obj_handle_t handle
, unsigned int access
)
788 return (struct process
*)get_handle_obj( current
->process
, handle
,
789 access
, &process_ops
);
792 /* find a dll from its base address */
793 static inline struct process_dll
*find_process_dll( struct process
*process
, mod_handle_t base
)
795 struct process_dll
*dll
;
797 LIST_FOR_EACH_ENTRY( dll
, &process
->dlls
, struct process_dll
, entry
)
799 if (dll
->base
== base
) return dll
;
804 /* add a dll to a process list */
805 static struct process_dll
*process_load_dll( struct process
*process
, mod_handle_t base
,
806 const WCHAR
*filename
, data_size_t name_len
)
808 struct process_dll
*dll
;
810 /* make sure we don't already have one with the same base address */
811 if (find_process_dll( process
, base
))
813 set_error( STATUS_INVALID_PARAMETER
);
817 if ((dll
= mem_alloc( sizeof(*dll
) )))
820 dll
->filename
= NULL
;
821 dll
->namelen
= name_len
;
822 if (name_len
&& !(dll
->filename
= memdup( filename
, name_len
)))
827 list_add_tail( &process
->dlls
, &dll
->entry
);
832 /* remove a dll from a process list */
833 static void process_unload_dll( struct process
*process
, mod_handle_t base
)
835 struct process_dll
*dll
= find_process_dll( process
, base
);
837 if (dll
&& (&dll
->entry
!= list_head( &process
->dlls
))) /* main exe can't be unloaded */
839 free( dll
->filename
);
840 list_remove( &dll
->entry
);
842 generate_debug_event( current
, UNLOAD_DLL_DEBUG_EVENT
, &base
);
844 else set_error( STATUS_INVALID_PARAMETER
);
847 /* terminate a process with the given exit code */
848 static void terminate_process( struct process
*process
, struct thread
*skip
, int exit_code
)
850 struct thread
*thread
;
852 grab_object( process
); /* make sure it doesn't get freed when threads die */
853 process
->is_terminating
= 1;
856 LIST_FOR_EACH_ENTRY( thread
, &process
->thread_list
, struct thread
, proc_entry
)
858 if (exit_code
) thread
->exit_code
= exit_code
;
859 if (thread
== skip
) continue;
860 if (thread
->state
== TERMINATED
) continue;
861 kill_thread( thread
, 1 );
864 release_object( process
);
867 /* kill all processes */
868 static void kill_all_processes(void)
872 struct process
*process
;
874 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
876 if (process
->running_threads
) break;
878 if (&process
->entry
== &process_list
) break; /* no process found */
879 terminate_process( process
, NULL
, 1 );
883 /* kill all processes being attached to a console renderer */
884 void kill_console_processes( struct thread
*renderer
, int exit_code
)
886 for (;;) /* restart from the beginning of the list every time */
888 struct process
*process
;
890 /* find the first process being attached to 'renderer' and still running */
891 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
893 if (process
== renderer
->process
) continue;
894 if (!process
->running_threads
) continue;
895 if (process
->console
&& console_get_renderer( process
->console
) == renderer
) break;
897 if (&process
->entry
== &process_list
) break; /* no process found */
898 terminate_process( process
, NULL
, exit_code
);
902 /* a process has been killed (i.e. its last thread died) */
903 static void process_killed( struct process
*process
)
907 assert( list_empty( &process
->thread_list
));
908 process
->end_time
= current_time
;
909 if (!process
->is_system
) close_process_desktop( process
);
910 process
->winstation
= 0;
911 process
->desktop
= 0;
912 close_process_handles( process
);
913 cancel_process_asyncs( process
);
914 if (process
->idle_event
) release_object( process
->idle_event
);
915 if (process
->exe_file
) release_object( process
->exe_file
);
916 process
->idle_event
= NULL
;
917 process
->exe_file
= NULL
;
919 /* close the console attached to this process, if any */
920 free_console( process
);
922 while ((ptr
= list_head( &process
->rawinput_devices
)))
924 struct rawinput_device_entry
*entry
= LIST_ENTRY( ptr
, struct rawinput_device_entry
, entry
);
925 list_remove( &entry
->entry
);
928 while ((ptr
= list_head( &process
->dlls
)))
930 struct process_dll
*dll
= LIST_ENTRY( ptr
, struct process_dll
, entry
);
931 free( dll
->filename
);
932 list_remove( &dll
->entry
);
935 destroy_process_classes( process
);
936 free_mapped_views( process
);
937 free_process_user_handles( process
);
938 remove_process_locks( process
);
939 set_process_startup_state( process
, STARTUP_ABORTED
);
940 finish_process_tracing( process
);
941 release_job_process( process
);
942 start_sigkill_timer( process
);
943 wake_up( &process
->obj
, 0 );
946 /* add a thread to a process running threads list */
947 void add_process_thread( struct process
*process
, struct thread
*thread
)
949 list_add_tail( &process
->thread_list
, &thread
->proc_entry
);
950 if (!process
->running_threads
++)
953 if (!process
->is_system
)
955 if (!user_processes
++ && shutdown_timeout
)
957 remove_timeout_user( shutdown_timeout
);
958 shutdown_timeout
= NULL
;
962 grab_object( thread
);
965 /* remove a thread from a process running threads list */
966 void remove_process_thread( struct process
*process
, struct thread
*thread
)
968 assert( process
->running_threads
> 0 );
969 assert( !list_empty( &process
->thread_list
));
971 list_remove( &thread
->proc_entry
);
973 if (!--process
->running_threads
)
975 /* we have removed the last running thread, exit the process */
976 process
->exit_code
= thread
->exit_code
;
977 generate_debug_event( thread
, EXIT_PROCESS_DEBUG_EVENT
, process
);
978 process_killed( process
);
980 else generate_debug_event( thread
, EXIT_THREAD_DEBUG_EVENT
, thread
);
981 release_object( thread
);
984 /* suspend all the threads of a process */
985 void suspend_process( struct process
*process
)
987 if (!process
->suspend
++)
989 struct list
*ptr
, *next
;
991 LIST_FOR_EACH_SAFE( ptr
, next
, &process
->thread_list
)
993 struct thread
*thread
= LIST_ENTRY( ptr
, struct thread
, proc_entry
);
994 if (!thread
->suspend
) stop_thread( thread
);
999 /* resume all the threads of a process */
1000 void resume_process( struct process
*process
)
1002 assert (process
->suspend
> 0);
1003 if (!--process
->suspend
)
1005 struct list
*ptr
, *next
;
1007 LIST_FOR_EACH_SAFE( ptr
, next
, &process
->thread_list
)
1009 struct thread
*thread
= LIST_ENTRY( ptr
, struct thread
, proc_entry
);
1010 if (!thread
->suspend
) wake_thread( thread
);
1015 /* kill a process on the spot */
1016 void kill_process( struct process
*process
, int violent_death
)
1018 if (!violent_death
&& process
->msg_fd
) /* normal termination on pipe close */
1020 release_object( process
->msg_fd
);
1021 process
->msg_fd
= NULL
;
1024 if (process
->sigkill_timeout
) /* already waiting for it to die */
1026 remove_timeout_user( process
->sigkill_timeout
);
1027 process
->sigkill_timeout
= NULL
;
1028 process_died( process
);
1032 if (violent_death
) terminate_process( process
, NULL
, 1 );
1037 grab_object( process
); /* make sure it doesn't get freed when threads die */
1038 while ((ptr
= list_head( &process
->thread_list
)))
1040 struct thread
*thread
= LIST_ENTRY( ptr
, struct thread
, proc_entry
);
1041 kill_thread( thread
, 0 );
1043 release_object( process
);
1047 /* kill all processes being debugged by a given thread */
1048 void kill_debugged_processes( struct thread
*debugger
, int exit_code
)
1050 for (;;) /* restart from the beginning of the list every time */
1052 struct process
*process
;
1054 /* find the first process being debugged by 'debugger' and still running */
1055 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
1057 if (!process
->running_threads
) continue;
1058 if (process
->debugger
== debugger
) break;
1060 if (&process
->entry
== &process_list
) break; /* no process found */
1061 process
->debugger
= NULL
;
1062 terminate_process( process
, NULL
, exit_code
);
1067 /* detach a debugger from all its debuggees */
1068 void detach_debugged_processes( struct thread
*debugger
)
1070 struct process
*process
;
1072 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
1074 if (process
->debugger
== debugger
&& process
->running_threads
)
1076 debugger_detach( process
, debugger
);
1082 void enum_processes( int (*cb
)(struct process
*, void*), void *user
)
1084 struct list
*ptr
, *next
;
1086 LIST_FOR_EACH_SAFE( ptr
, next
, &process_list
)
1088 struct process
*process
= LIST_ENTRY( ptr
, struct process
, entry
);
1089 if ((cb
)(process
, user
)) break;
1093 /* set the debugged flag in the process PEB */
1094 int set_process_debug_flag( struct process
*process
, int flag
)
1096 char data
= (flag
!= 0);
1098 /* BeingDebugged flag is the byte at offset 2 in the PEB */
1099 return write_process_memory( process
, process
->peb
+ 2, 1, &data
);
1102 /* create a new process */
1103 DECL_HANDLER(new_process
)
1105 struct startup_info
*info
;
1106 const void *info_ptr
;
1107 struct unicode_str name
;
1108 const struct security_descriptor
*sd
;
1109 const struct object_attributes
*objattr
= get_req_object_attributes( &sd
, &name
, NULL
);
1110 struct process
*process
= NULL
;
1111 struct token
*token
= NULL
;
1112 struct process
*parent
;
1113 struct thread
*parent_thread
= current
;
1114 int socket_fd
= thread_get_inflight_fd( current
, req
->socket_fd
);
1115 const obj_handle_t
*handles
= NULL
;
1117 if (socket_fd
== -1)
1119 set_error( STATUS_INVALID_PARAMETER
);
1124 set_error( STATUS_INVALID_PARAMETER
);
1128 if (fcntl( socket_fd
, F_SETFL
, O_NONBLOCK
) == -1)
1130 set_error( STATUS_INVALID_HANDLE
);
1136 set_error( STATUS_SHUTDOWN_IN_PROGRESS
);
1140 if (!is_cpu_supported( req
->cpu
))
1146 if (req
->parent_process
)
1148 if (!(parent
= get_process_from_handle( req
->parent_process
, PROCESS_CREATE_PROCESS
)))
1153 parent_thread
= NULL
;
1155 else parent
= (struct process
*)grab_object( current
->process
);
1157 if (parent
->job
&& (req
->create_flags
& CREATE_BREAKAWAY_FROM_JOB
) &&
1158 !(parent
->job
->limit_flags
& (JOB_OBJECT_LIMIT_BREAKAWAY_OK
| JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK
)))
1160 set_error( STATUS_ACCESS_DENIED
);
1162 release_object( parent
);
1166 /* build the startup info for a new process */
1167 if (!(info
= alloc_object( &startup_info_ops
)))
1170 release_object( parent
);
1173 info
->process
= NULL
;
1176 info_ptr
= get_req_data_after_objattr( objattr
, &info
->data_size
);
1178 if ((req
->handles_size
& 3) || req
->handles_size
> info
->data_size
)
1180 set_error( STATUS_INVALID_PARAMETER
);
1184 if (req
->handles_size
)
1187 info_ptr
= (const char *)info_ptr
+ req
->handles_size
;
1188 info
->data_size
-= req
->handles_size
;
1190 info
->info_size
= min( req
->info_size
, info
->data_size
);
1192 if (req
->info_size
< sizeof(*info
->data
))
1194 /* make sure we have a full startup_info_t structure */
1195 data_size_t env_size
= info
->data_size
- info
->info_size
;
1196 data_size_t info_size
= min( req
->info_size
, FIELD_OFFSET( startup_info_t
, curdir_len
));
1198 if (!(info
->data
= mem_alloc( sizeof(*info
->data
) + env_size
)))
1203 memcpy( info
->data
, info_ptr
, info_size
);
1204 memset( (char *)info
->data
+ info_size
, 0, sizeof(*info
->data
) - info_size
);
1205 memcpy( info
->data
+ 1, (const char *)info_ptr
+ req
->info_size
, env_size
);
1206 info
->info_size
= sizeof(startup_info_t
);
1207 info
->data_size
= info
->info_size
+ env_size
;
1211 data_size_t pos
= sizeof(*info
->data
);
1213 if (!(info
->data
= memdup( info_ptr
, info
->data_size
)))
1218 #define FIXUP_LEN(len) do { (len) = min( (len), info->info_size - pos ); pos += (len); } while(0)
1219 FIXUP_LEN( info
->data
->curdir_len
);
1220 FIXUP_LEN( info
->data
->dllpath_len
);
1221 FIXUP_LEN( info
->data
->imagepath_len
);
1222 FIXUP_LEN( info
->data
->cmdline_len
);
1223 FIXUP_LEN( info
->data
->title_len
);
1224 FIXUP_LEN( info
->data
->desktop_len
);
1225 FIXUP_LEN( info
->data
->shellinfo_len
);
1226 FIXUP_LEN( info
->data
->runtime_len
);
1230 if (req
->token
&& !(token
= get_token_obj( current
->process
, req
->token
, TOKEN_QUERY
| TOKEN_ASSIGN_PRIMARY
)))
1236 if (!(process
= create_process( socket_fd
, parent
, req
->inherit_all
, info
->data
, sd
,
1237 handles
, req
->handles_size
/ sizeof(*handles
), token
)))
1240 process
->startup_info
= (struct startup_info
*)grab_object( info
);
1242 if (req
->exe_file
&&
1243 !(process
->exe_file
= get_file_obj( current
->process
, req
->exe_file
, FILE_READ_DATA
)))
1247 && !(req
->create_flags
& CREATE_BREAKAWAY_FROM_JOB
)
1248 && !(parent
->job
->limit_flags
& JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK
))
1250 add_job_process( parent
->job
, process
);
1253 /* connect to the window station */
1254 connect_process_winstation( process
, parent_thread
, parent
);
1256 /* set the process console */
1257 if (info
->data
->console
> 3)
1258 info
->data
->console
= duplicate_handle( parent
, info
->data
->console
, process
,
1259 0, 0, DUPLICATE_SAME_ACCESS
);
1261 if (!req
->inherit_all
&& !(req
->create_flags
& CREATE_NEW_CONSOLE
))
1263 info
->data
->hstdin
= duplicate_handle( parent
, info
->data
->hstdin
, process
,
1264 0, OBJ_INHERIT
, DUPLICATE_SAME_ACCESS
);
1265 info
->data
->hstdout
= duplicate_handle( parent
, info
->data
->hstdout
, process
,
1266 0, OBJ_INHERIT
, DUPLICATE_SAME_ACCESS
);
1267 info
->data
->hstderr
= duplicate_handle( parent
, info
->data
->hstderr
, process
,
1268 0, OBJ_INHERIT
, DUPLICATE_SAME_ACCESS
);
1269 /* some handles above may have been invalid; this is not an error */
1270 if (get_error() == STATUS_INVALID_HANDLE
||
1271 get_error() == STATUS_OBJECT_TYPE_MISMATCH
) clear_error();
1273 /* attach to the debugger if requested */
1274 if (req
->create_flags
& (DEBUG_PROCESS
| DEBUG_ONLY_THIS_PROCESS
))
1276 set_process_debugger( process
, current
);
1277 process
->debug_children
= !(req
->create_flags
& DEBUG_ONLY_THIS_PROCESS
);
1279 else if (current
->process
->debugger
&& current
->process
->debug_children
)
1281 set_process_debugger( process
, current
->process
->debugger
);
1282 /* debug_children is set to 1 by default */
1285 if (!(req
->create_flags
& CREATE_NEW_PROCESS_GROUP
))
1286 process
->group_id
= parent
->group_id
;
1288 info
->process
= (struct process
*)grab_object( process
);
1289 reply
->info
= alloc_handle( current
->process
, info
, SYNCHRONIZE
, 0 );
1290 reply
->pid
= get_process_id( process
);
1291 reply
->handle
= alloc_handle_no_access_check( current
->process
, process
, req
->access
, objattr
->attributes
);
1294 if (process
) release_object( process
);
1295 if (token
) release_object( token
);
1296 release_object( parent
);
1297 release_object( info
);
1300 /* execute a new process, replacing the existing one */
1301 DECL_HANDLER(exec_process
)
1303 struct process
*process
;
1304 int socket_fd
= thread_get_inflight_fd( current
, req
->socket_fd
);
1306 if (socket_fd
== -1)
1308 set_error( STATUS_INVALID_PARAMETER
);
1311 if (fcntl( socket_fd
, F_SETFL
, O_NONBLOCK
) == -1)
1313 set_error( STATUS_INVALID_HANDLE
);
1319 set_error( STATUS_SHUTDOWN_IN_PROGRESS
);
1323 if (!is_cpu_supported( req
->cpu
))
1328 if (!(process
= create_process( socket_fd
, NULL
, 0, NULL
, NULL
, NULL
, 0, NULL
))) return;
1329 create_thread( -1, process
, NULL
);
1330 release_object( process
);
1333 /* Retrieve information about a newly started process */
1334 DECL_HANDLER(get_new_process_info
)
1336 struct startup_info
*info
;
1338 if ((info
= (struct startup_info
*)get_handle_obj( current
->process
, req
->info
,
1339 0, &startup_info_ops
)))
1341 reply
->success
= is_process_init_done( info
->process
);
1342 reply
->exit_code
= info
->process
->exit_code
;
1343 release_object( info
);
1347 /* Retrieve the new process startup info */
1348 DECL_HANDLER(get_startup_info
)
1350 struct process
*process
= current
->process
;
1351 struct startup_info
*info
= process
->startup_info
;
1356 /* we return the data directly without making a copy so this can only be called once */
1357 reply
->info_size
= info
->info_size
;
1358 size
= info
->data_size
;
1359 if (size
> get_reply_max_size()) size
= get_reply_max_size();
1360 set_reply_data_ptr( info
->data
, size
);
1362 info
->data_size
= 0;
1365 /* signal the end of the process initialization */
1366 DECL_HANDLER(init_process_done
)
1368 struct process_dll
*dll
;
1369 struct process
*process
= current
->process
;
1371 if (is_process_init_done(process
))
1373 set_error( STATUS_INVALID_PARAMETER
);
1376 if (!(dll
= find_process_dll( process
, req
->module
)))
1378 set_error( STATUS_DLL_NOT_FOUND
);
1382 /* main exe is the first in the dll list */
1383 list_remove( &dll
->entry
);
1384 list_add_head( &process
->dlls
, &dll
->entry
);
1386 process
->ldt_copy
= req
->ldt_copy
;
1387 process
->start_time
= current_time
;
1388 current
->entry_point
= req
->entry
;
1389 if (process
->exe_file
) release_object( process
->exe_file
);
1390 process
->exe_file
= NULL
;
1392 init_process_tracing( process
);
1393 generate_startup_debug_events( process
, req
->entry
);
1394 set_process_startup_state( process
, STARTUP_DONE
);
1396 if (req
->gui
) process
->idle_event
= create_event( NULL
, NULL
, 0, 1, 0, NULL
);
1397 if (process
->debugger
) set_process_debug_flag( process
, 1 );
1398 reply
->suspend
= (current
->suspend
|| process
->suspend
);
1401 /* open a handle to a process */
1402 DECL_HANDLER(open_process
)
1404 struct process
*process
= get_process_from_id( req
->pid
);
1408 reply
->handle
= alloc_handle( current
->process
, process
, req
->access
, req
->attributes
);
1409 release_object( process
);
1413 /* terminate a process */
1414 DECL_HANDLER(terminate_process
)
1416 struct process
*process
;
1420 process
= get_process_from_handle( req
->handle
, PROCESS_TERMINATE
);
1421 if (!process
) return;
1423 else process
= (struct process
*)grab_object( current
->process
);
1425 reply
->self
= (current
->process
== process
);
1426 terminate_process( process
, current
, req
->exit_code
);
1427 release_object( process
);
1430 /* fetch information about a process */
1431 DECL_HANDLER(get_process_info
)
1433 struct process
*process
;
1435 if ((process
= get_process_from_handle( req
->handle
, PROCESS_QUERY_LIMITED_INFORMATION
)))
1437 reply
->pid
= get_process_id( process
);
1438 reply
->ppid
= process
->parent_id
;
1439 reply
->exit_code
= process
->exit_code
;
1440 reply
->priority
= process
->priority
;
1441 reply
->affinity
= process
->affinity
;
1442 reply
->peb
= process
->peb
;
1443 reply
->start_time
= process
->start_time
;
1444 reply
->end_time
= process
->end_time
;
1445 reply
->cpu
= process
->cpu
;
1446 reply
->debugger_present
= !!process
->debugger
;
1447 reply
->debug_children
= process
->debug_children
;
1448 if (get_reply_max_size())
1450 const pe_image_info_t
*info
;
1451 struct process_dll
*exe
= get_process_exe_module( process
);
1452 if (exe
&& (info
= get_mapping_image_info( process
, exe
->base
)))
1453 set_reply_data( info
, min( sizeof(*info
), get_reply_max_size() ));
1455 release_object( process
);
1459 /* retrieve information about a process memory usage */
1460 DECL_HANDLER(get_process_vm_counters
)
1462 struct process
*process
= get_process_from_handle( req
->handle
, PROCESS_QUERY_LIMITED_INFORMATION
);
1464 if (!process
) return;
1466 if (process
->unix_pid
!= -1)
1469 char proc_path
[32], line
[256];
1470 unsigned long value
;
1472 sprintf( proc_path
, "/proc/%u/status", process
->unix_pid
);
1473 if ((f
= fopen( proc_path
, "r" )))
1475 while (fgets( line
, sizeof(line
), f
))
1477 if (sscanf( line
, "VmPeak: %lu", &value
))
1478 reply
->peak_virtual_size
= (mem_size_t
)value
* 1024;
1479 else if (sscanf( line
, "VmSize: %lu", &value
))
1480 reply
->virtual_size
= (mem_size_t
)value
* 1024;
1481 else if (sscanf( line
, "VmHWM: %lu", &value
))
1482 reply
->peak_working_set_size
= (mem_size_t
)value
* 1024;
1483 else if (sscanf( line
, "VmRSS: %lu", &value
))
1484 reply
->working_set_size
= (mem_size_t
)value
* 1024;
1485 else if (sscanf( line
, "RssAnon: %lu", &value
))
1486 reply
->pagefile_usage
+= (mem_size_t
)value
* 1024;
1487 else if (sscanf( line
, "VmSwap: %lu", &value
))
1488 reply
->pagefile_usage
+= (mem_size_t
)value
* 1024;
1490 reply
->peak_pagefile_usage
= reply
->pagefile_usage
;
1493 else set_error( STATUS_ACCESS_DENIED
);
1495 else set_error( STATUS_ACCESS_DENIED
);
1497 release_object( process
);
1500 static void set_process_affinity( struct process
*process
, affinity_t affinity
)
1502 struct thread
*thread
;
1504 if (!process
->running_threads
)
1506 set_error( STATUS_PROCESS_IS_TERMINATING
);
1510 process
->affinity
= affinity
;
1512 LIST_FOR_EACH_ENTRY( thread
, &process
->thread_list
, struct thread
, proc_entry
)
1514 set_thread_affinity( thread
, affinity
);
1518 /* set information about a process */
1519 DECL_HANDLER(set_process_info
)
1521 struct process
*process
;
1523 if ((process
= get_process_from_handle( req
->handle
, PROCESS_SET_INFORMATION
)))
1525 if (req
->mask
& SET_PROCESS_INFO_PRIORITY
) process
->priority
= req
->priority
;
1526 if (req
->mask
& SET_PROCESS_INFO_AFFINITY
) set_process_affinity( process
, req
->affinity
);
1527 release_object( process
);
1531 /* read data from a process address space */
1532 DECL_HANDLER(read_process_memory
)
1534 struct process
*process
;
1535 data_size_t len
= get_reply_max_size();
1537 if (!(process
= get_process_from_handle( req
->handle
, PROCESS_VM_READ
))) return;
1541 char *buffer
= mem_alloc( len
);
1544 if (read_process_memory( process
, req
->addr
, len
, buffer
))
1545 set_reply_data_ptr( buffer
, len
);
1550 release_object( process
);
1553 /* write data to a process address space */
1554 DECL_HANDLER(write_process_memory
)
1556 struct process
*process
;
1558 if ((process
= get_process_from_handle( req
->handle
, PROCESS_VM_WRITE
)))
1560 data_size_t len
= get_req_data_size();
1561 if (len
) write_process_memory( process
, req
->addr
, len
, get_req_data() );
1562 else set_error( STATUS_INVALID_PARAMETER
);
1563 release_object( process
);
1567 /* notify the server that a dll has been loaded */
1568 DECL_HANDLER(load_dll
)
1570 struct process_dll
*dll
;
1572 if ((dll
= process_load_dll( current
->process
, req
->base
, get_req_data(), get_req_data_size() )))
1574 dll
->dbg_offset
= req
->dbg_offset
;
1575 dll
->dbg_size
= req
->dbg_size
;
1576 dll
->name
= req
->name
;
1577 /* only generate event if initialization is done */
1578 if (is_process_init_done( current
->process
))
1579 generate_debug_event( current
, LOAD_DLL_DEBUG_EVENT
, dll
);
1583 /* notify the server that a dll is being unloaded */
1584 DECL_HANDLER(unload_dll
)
1586 process_unload_dll( current
->process
, req
->base
);
1589 /* retrieve information about a module in a process */
1590 DECL_HANDLER(get_dll_info
)
1592 struct process
*process
;
1594 if ((process
= get_process_from_handle( req
->handle
, PROCESS_QUERY_LIMITED_INFORMATION
)))
1596 struct process_dll
*dll
;
1598 if (req
->base_address
)
1599 dll
= find_process_dll( process
, req
->base_address
);
1600 else /* NULL means main module */
1601 dll
= list_head( &process
->dlls
) ?
1602 LIST_ENTRY(list_head( &process
->dlls
), struct process_dll
, entry
) : NULL
;
1606 reply
->entry_point
= 0; /* FIXME */
1607 reply
->filename_len
= dll
->namelen
;
1610 if (dll
->namelen
<= get_reply_max_size())
1611 set_reply_data( dll
->filename
, dll
->namelen
);
1613 set_error( STATUS_BUFFER_TOO_SMALL
);
1617 set_error( STATUS_DLL_NOT_FOUND
);
1619 release_object( process
);
1623 /* retrieve the process idle event */
1624 DECL_HANDLER(get_process_idle_event
)
1626 struct process
*process
;
1629 if ((process
= get_process_from_handle( req
->handle
, PROCESS_QUERY_INFORMATION
)))
1631 if (process
->idle_event
&& process
!= current
->process
)
1632 reply
->event
= alloc_handle( current
->process
, process
->idle_event
,
1633 EVENT_ALL_ACCESS
, 0 );
1634 release_object( process
);
1638 /* make the current process a system process */
1639 DECL_HANDLER(make_process_system
)
1641 struct process
*process
= current
->process
;
1643 if (!shutdown_event
)
1645 if (!(shutdown_event
= create_event( NULL
, NULL
, OBJ_PERMANENT
, 1, 0, NULL
))) return;
1646 release_object( shutdown_event
);
1649 if (!(reply
->event
= alloc_handle( current
->process
, shutdown_event
, SYNCHRONIZE
, 0 )))
1652 if (!process
->is_system
)
1654 process
->is_system
= 1;
1655 close_process_desktop( process
);
1656 if (!--user_processes
&& !shutdown_stage
&& master_socket_timeout
!= TIMEOUT_INFINITE
)
1657 shutdown_timeout
= add_timeout_user( master_socket_timeout
, server_shutdown_timeout
, NULL
);
1661 /* create a new job object */
1662 DECL_HANDLER(create_job
)
1665 struct unicode_str name
;
1666 struct object
*root
;
1667 const struct security_descriptor
*sd
;
1668 const struct object_attributes
*objattr
= get_req_object_attributes( &sd
, &name
, &root
);
1670 if (!objattr
) return;
1672 if ((job
= create_job_object( root
, &name
, objattr
->attributes
, sd
)))
1674 if (get_error() == STATUS_OBJECT_NAME_EXISTS
)
1675 reply
->handle
= alloc_handle( current
->process
, job
, req
->access
, objattr
->attributes
);
1677 reply
->handle
= alloc_handle_no_access_check( current
->process
, job
,
1678 req
->access
, objattr
->attributes
);
1679 release_object( job
);
1681 if (root
) release_object( root
);
1684 /* open a job object */
1685 DECL_HANDLER(open_job
)
1687 struct unicode_str name
= get_req_unicode_str();
1689 reply
->handle
= open_object( current
->process
, req
->rootdir
, req
->access
,
1690 &job_ops
, &name
, req
->attributes
);
1693 /* assign a job object to a process */
1694 DECL_HANDLER(assign_job
)
1696 struct process
*process
;
1697 struct job
*job
= get_job_obj( current
->process
, req
->job
, JOB_OBJECT_ASSIGN_PROCESS
);
1701 if ((process
= get_process_from_handle( req
->process
, PROCESS_SET_QUOTA
| PROCESS_TERMINATE
)))
1703 if (!process
->running_threads
)
1704 set_error( STATUS_PROCESS_IS_TERMINATING
);
1705 else if (process
->job
)
1706 set_error( STATUS_ACCESS_DENIED
);
1708 add_job_process( job
, process
);
1709 release_object( process
);
1711 release_object( job
);
1715 /* check if a process is associated with a job */
1716 DECL_HANDLER(process_in_job
)
1718 struct process
*process
;
1721 if (!(process
= get_process_from_handle( req
->process
, PROCESS_QUERY_INFORMATION
)))
1726 set_error( process
->job
? STATUS_PROCESS_IN_JOB
: STATUS_PROCESS_NOT_IN_JOB
);
1728 else if ((job
= get_job_obj( current
->process
, req
->job
, JOB_OBJECT_QUERY
)))
1730 set_error( process
->job
== job
? STATUS_PROCESS_IN_JOB
: STATUS_PROCESS_NOT_IN_JOB
);
1731 release_object( job
);
1733 release_object( process
);
1736 /* retrieve information about a job */
1737 DECL_HANDLER(get_job_info
)
1739 struct job
*job
= get_job_obj( current
->process
, req
->handle
, JOB_OBJECT_QUERY
);
1743 reply
->total_processes
= job
->total_processes
;
1744 reply
->active_processes
= job
->num_processes
;
1745 release_object( job
);
1748 /* terminate all processes associated with the job */
1749 DECL_HANDLER(terminate_job
)
1751 struct job
*job
= get_job_obj( current
->process
, req
->handle
, JOB_OBJECT_TERMINATE
);
1755 terminate_job( job
, req
->status
);
1756 release_object( job
);
1759 /* update limits of the job object */
1760 DECL_HANDLER(set_job_limits
)
1762 struct job
*job
= get_job_obj( current
->process
, req
->handle
, JOB_OBJECT_SET_ATTRIBUTES
);
1766 job
->limit_flags
= req
->limit_flags
;
1767 release_object( job
);
1770 /* set the jobs completion port */
1771 DECL_HANDLER(set_job_completion_port
)
1773 struct job
*job
= get_job_obj( current
->process
, req
->job
, JOB_OBJECT_SET_ATTRIBUTES
);
1777 if (!job
->completion_port
)
1779 job
->completion_port
= get_completion_obj( current
->process
, req
->port
, IO_COMPLETION_MODIFY_STATE
);
1780 job
->completion_key
= req
->key
;
1783 set_error( STATUS_INVALID_PARAMETER
);
1785 release_object( job
);
1788 /* Suspend a process */
1789 DECL_HANDLER(suspend_process
)
1791 struct process
*process
;
1793 if ((process
= get_process_from_handle( req
->handle
, PROCESS_SUSPEND_RESUME
)))
1795 struct list
*ptr
, *next
;
1797 LIST_FOR_EACH_SAFE( ptr
, next
, &process
->thread_list
)
1799 struct thread
*thread
= LIST_ENTRY( ptr
, struct thread
, proc_entry
);
1800 suspend_thread( thread
);
1803 release_object( process
);
1807 /* Resume a process */
1808 DECL_HANDLER(resume_process
)
1810 struct process
*process
;
1812 if ((process
= get_process_from_handle( req
->handle
, PROCESS_SUSPEND_RESUME
)))
1814 struct list
*ptr
, *next
;
1816 LIST_FOR_EACH_SAFE( ptr
, next
, &process
->thread_list
)
1818 struct thread
*thread
= LIST_ENTRY( ptr
, struct thread
, proc_entry
);
1819 resume_thread( thread
);
1822 release_object( process
);
1826 /* Get a list of processes and threads currently running */
1827 DECL_HANDLER(list_processes
)
1829 struct process
*process
;
1830 struct thread
*thread
;
1831 unsigned int pos
= 0;
1834 reply
->process_count
= 0;
1835 reply
->info_size
= 0;
1837 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
1839 struct process_dll
*exe
= get_process_exe_module( process
);
1840 reply
->info_size
= (reply
->info_size
+ 7) & ~7;
1841 reply
->info_size
+= sizeof(struct process_info
);
1842 if (exe
) reply
->info_size
+= exe
->namelen
;
1843 reply
->info_size
= (reply
->info_size
+ 7) & ~7;
1844 reply
->info_size
+= process
->running_threads
* sizeof(struct thread_info
);
1845 reply
->process_count
++;
1848 if (reply
->info_size
> get_reply_max_size())
1850 set_error( STATUS_INFO_LENGTH_MISMATCH
);
1854 if (!(buffer
= set_reply_data_size( reply
->info_size
))) return;
1856 memset( buffer
, 0, reply
->info_size
);
1857 LIST_FOR_EACH_ENTRY( process
, &process_list
, struct process
, entry
)
1859 struct process_info
*process_info
;
1860 struct process_dll
*exe
= get_process_exe_module( process
);
1862 pos
= (pos
+ 7) & ~7;
1863 process_info
= (struct process_info
*)(buffer
+ pos
);
1864 process_info
->start_time
= process
->start_time
;
1865 process_info
->name_len
= exe
? exe
->namelen
: 0;
1866 process_info
->thread_count
= process
->running_threads
;
1867 process_info
->priority
= process
->priority
;
1868 process_info
->pid
= process
->id
;
1869 process_info
->parent_pid
= process
->parent_id
;
1870 process_info
->handle_count
= get_handle_table_count(process
);
1871 process_info
->unix_pid
= process
->unix_pid
;
1872 pos
+= sizeof(*process_info
);
1876 memcpy( buffer
+ pos
, exe
->filename
, exe
->namelen
);
1877 pos
+= exe
->namelen
;
1880 pos
= (pos
+ 7) & ~7;
1881 LIST_FOR_EACH_ENTRY( thread
, &process
->thread_list
, struct thread
, proc_entry
)
1883 struct thread_info
*thread_info
= (struct thread_info
*)(buffer
+ pos
);
1885 thread_info
->start_time
= thread
->creation_time
;
1886 thread_info
->tid
= thread
->id
;
1887 thread_info
->base_priority
= thread
->priority
;
1888 thread_info
->current_priority
= thread
->priority
; /* FIXME */
1889 thread_info
->unix_tid
= thread
->unix_tid
;
1890 pos
+= sizeof(*thread_info
);