Merge pull request #2346 from xmcclure/proxy-load-fail
[mono.git] / mono / io-layer / processes.c
1 /*
2  * processes.c:  Process handles
3  *
4  * Author:
5  *      Dick Porter (dick@ximian.com)
6  *
7  * (C) 2002-2011 Novell, Inc.
8  * Copyright 2011 Xamarin Inc
9  */
10
11 #include <config.h>
12 #include <glib.h>
13 #include <stdio.h>
14 #include <string.h>
15 #include <pthread.h>
16 #include <sched.h>
17 #include <sys/time.h>
18 #include <errno.h>
19 #include <sys/types.h>
20 #include <sys/stat.h>
21 #include <unistd.h>
22 #ifdef HAVE_SIGNAL_H
23 #include <signal.h>
24 #endif
25 #include <sys/time.h>
26 #include <fcntl.h>
27 #ifdef HAVE_SYS_PARAM_H
28 #include <sys/param.h>
29 #endif
30 #include <ctype.h>
31
32 #ifdef HAVE_SYS_WAIT_H
33 #include <sys/wait.h>
34 #endif
35 #ifdef HAVE_SYS_RESOURCE_H
36 #include <sys/resource.h>
37 #endif
38
39 #ifdef HAVE_SYS_MKDEV_H
40 #include <sys/mkdev.h>
41 #endif
42
43 #ifdef HAVE_UTIME_H
44 #include <utime.h>
45 #endif
46
47 /* sys/resource.h (for rusage) is required when using osx 10.3 (but not 10.4) */
48 #ifdef __APPLE__
49 #include <TargetConditionals.h>
50 #include <sys/resource.h>
51 #ifdef HAVE_LIBPROC_H
52 /* proc_name */
53 #include <libproc.h>
54 #endif
55 #endif
56
57 #if defined(PLATFORM_MACOSX) || defined(__OpenBSD__) || defined(__FreeBSD__)
58 #include <sys/proc.h>
59 #include <sys/sysctl.h>
60 #  if !defined(__OpenBSD__)
61 #    include <sys/utsname.h>
62 #  endif
63 #  if defined(__FreeBSD__)
64 #    include <sys/user.h>  /* struct kinfo_proc */
65 #  endif
66 #endif
67
68 #ifdef PLATFORM_SOLARIS
69 /* procfs.h cannot be included if this define is set, but it seems to work fine if it is undefined */
70 #if _FILE_OFFSET_BITS == 64
71 #undef _FILE_OFFSET_BITS
72 #include <procfs.h>
73 #define _FILE_OFFSET_BITS 64
74 #else
75 #include <procfs.h>
76 #endif
77 #endif
78
79 #ifdef __HAIKU__
80 #include <KernelKit.h>
81 #endif
82
83 #include <mono/io-layer/wapi.h>
84 #include <mono/io-layer/wapi-private.h>
85 #include <mono/io-layer/handles-private.h>
86 #include <mono/io-layer/process-private.h>
87 #include <mono/io-layer/threads.h>
88 #include <mono/utils/strenc.h>
89 #include <mono/utils/mono-path.h>
90 #include <mono/io-layer/timefuncs-private.h>
91 #include <mono/utils/mono-time.h>
92 #include <mono/utils/mono-membar.h>
93 #include <mono/utils/mono-os-mutex.h>
94 #include <mono/utils/mono-signal-handler.h>
95 #include <mono/utils/mono-proclib.h>
96 #include <mono/utils/mono-once.h>
97
98 /* The process' environment strings */
99 #if defined(__APPLE__)
100 #if defined (TARGET_OSX)
101 /* Apple defines this in crt_externs.h but doesn't provide that header for 
102  * arm-apple-darwin9.  We'll manually define the symbol on Apple as it does
103  * in fact exist on all implementations (so far) 
104  */
105 gchar ***_NSGetEnviron(void);
106 #define environ (*_NSGetEnviron())
107 #else
108 static char *mono_environ[1] = { NULL };
109 #define environ mono_environ
110 #endif /* defined (TARGET_OSX) */
111 #else
112 extern char **environ;
113 #endif
114
115 #if 0
116 #define DEBUG(...) g_message(__VA_ARGS__)
117 #define DEBUG_ENABLED 1
118 #else
119 #define DEBUG(...)
120 #endif
121
122 static guint32 process_wait (gpointer handle, guint32 timeout, gboolean alertable);
123 static void process_close (gpointer handle, gpointer data);
124 static gboolean is_pid_valid (pid_t pid);
125
126 #if !(defined(PLATFORM_MACOSX) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__HAIKU__))
127 static FILE *
128 open_process_map (int pid, const char *mode);
129 #endif
130
131 struct _WapiHandleOps _wapi_process_ops = {
132         process_close,          /* close_shared */
133         NULL,                           /* signal */
134         NULL,                           /* own */
135         NULL,                           /* is_owned */
136         process_wait,                   /* special_wait */
137         NULL                            /* prewait */   
138 };
139
140 #if HAVE_SIGACTION
141 static struct sigaction previous_chld_sa;
142 #endif
143 static mono_once_t process_sig_chld_once = MONO_ONCE_INIT;
144 static void process_add_sigchld_handler (void);
145
146 /* The signal-safe logic to use mono_processes goes like this:
147  * - The list must be safe to traverse for the signal handler at all times.
148  *   It's safe to: prepend an entry (which is a single store to 'mono_processes'),
149  *   unlink an entry (assuming the unlinked entry isn't freed and doesn't 
150  *   change its 'next' pointer so that it can still be traversed).
151  * When cleaning up we first unlink an entry, then we verify that
152  * the read lock isn't locked. Then we can free the entry, since
153  * we know that nobody is using the old version of the list (including
154  * the unlinked entry).
155  * We also need to lock when adding and cleaning up so that those two
156  * operations don't mess with eachother. (This lock is not used in the
157  * signal handler)
158  */
159 static struct MonoProcess *mono_processes = NULL;
160 static volatile gint32 mono_processes_cleaning_up = 0;
161 static mono_mutex_t mono_processes_mutex;
162 static void mono_processes_cleanup (void);
163
164 static gpointer current_process;
165 static char *cli_launcher;
166
167 static WapiHandle_process *
168 lookup_process_handle (gpointer handle)
169 {
170         WapiHandle_process *process_data;
171         gboolean ret;
172
173         ret = _wapi_lookup_handle (handle, WAPI_HANDLE_PROCESS,
174                                                            (gpointer *)&process_data);
175         if (!ret)
176                 return NULL;
177         return process_data;
178 }
179
180 /* Check if a pid is valid - i.e. if a process exists with this pid. */
181 static gboolean
182 is_pid_valid (pid_t pid)
183 {
184         gboolean result = FALSE;
185
186 #if defined(HOST_WATCHOS)
187         result = TRUE; // TODO: Rewrite using sysctl
188 #elif defined(PLATFORM_MACOSX) || defined(__OpenBSD__) || defined(__FreeBSD__)
189         if (((kill(pid, 0) == 0) || (errno == EPERM)) && pid != 0)
190                 result = TRUE;
191 #elif defined(__HAIKU__)
192         team_info teamInfo;
193         if (get_team_info ((team_id)pid, &teamInfo) == B_OK)
194                 result = TRUE;
195 #else
196         char *dir = g_strdup_printf ("/proc/%d", pid);
197         if (!access (dir, F_OK))
198                 result = TRUE;
199         g_free (dir);
200 #endif
201         
202         return result;
203 }
204
205 static void
206 process_set_defaults (WapiHandle_process *process_handle)
207 {
208         /* These seem to be the defaults on w2k */
209         process_handle->min_working_set = 204800;
210         process_handle->max_working_set = 1413120;
211         
212         _wapi_time_t_to_filetime (time (NULL), &process_handle->create_time);
213 }
214
215 static int
216 len16 (const gunichar2 *str)
217 {
218         int len = 0;
219         
220         while (*str++ != 0)
221                 len++;
222
223         return len;
224 }
225
226 static gunichar2 *
227 utf16_concat (const gunichar2 *first, ...)
228 {
229         va_list args;
230         int total = 0, i;
231         const gunichar2 *s;
232         gunichar2 *ret;
233
234         va_start (args, first);
235         total += len16 (first);
236         for (s = va_arg (args, gunichar2 *); s != NULL; s = va_arg(args, gunichar2 *)){
237                 total += len16 (s);
238         }
239         va_end (args);
240
241         ret = g_new (gunichar2, total + 1);
242         if (ret == NULL)
243                 return NULL;
244
245         ret [total] = 0;
246         i = 0;
247         for (s = first; *s != 0; s++)
248                 ret [i++] = *s;
249         va_start (args, first);
250         for (s = va_arg (args, gunichar2 *); s != NULL; s = va_arg (args, gunichar2 *)){
251                 const gunichar2 *p;
252                 
253                 for (p = s; *p != 0; p++)
254                         ret [i++] = *p;
255         }
256         va_end (args);
257         
258         return ret;
259 }
260
261 static const gunichar2 utf16_space_bytes [2] = { 0x20, 0 };
262 static const gunichar2 *utf16_space = utf16_space_bytes; 
263 static const gunichar2 utf16_quote_bytes [2] = { 0x22, 0 };
264 static const gunichar2 *utf16_quote = utf16_quote_bytes;
265
266 #ifdef DEBUG_ENABLED
267 /* Useful in gdb */
268 void
269 print_utf16 (gunichar2 *str)
270 {
271         char *res;
272
273         res = g_utf16_to_utf8 (str, -1, NULL, NULL, NULL);
274         g_print ("%s\n", res);
275         g_free (res);
276 }
277 #endif
278
279 /* Implemented as just a wrapper around CreateProcess () */
280 gboolean
281 ShellExecuteEx (WapiShellExecuteInfo *sei)
282 {
283         gboolean ret;
284         WapiProcessInformation process_info;
285         gunichar2 *args;
286         
287         if (sei == NULL) {
288                 /* w2k just segfaults here, but we can do better than
289                  * that
290                  */
291                 SetLastError (ERROR_INVALID_PARAMETER);
292                 return FALSE;
293         }
294
295         if (sei->lpFile == NULL)
296                 /* w2k returns TRUE for this, for some reason. */
297                 return TRUE;
298         
299         /* Put both executable and parameters into the second argument
300          * to CreateProcess (), so it searches $PATH.  The conversion
301          * into and back out of utf8 is because there is no
302          * g_strdup_printf () equivalent for gunichar2 :-(
303          */
304         args = utf16_concat (utf16_quote, sei->lpFile, utf16_quote, sei->lpParameters == NULL ? NULL : utf16_space, sei->lpParameters, NULL);
305         if (args == NULL) {
306                 SetLastError (ERROR_INVALID_DATA);
307                 return FALSE;
308         }
309         ret = CreateProcess (NULL, args, NULL, NULL, TRUE,
310                              CREATE_UNICODE_ENVIRONMENT, NULL,
311                              sei->lpDirectory, NULL, &process_info);
312         g_free (args);
313
314         if (!ret && GetLastError () == ERROR_OUTOFMEMORY)
315                 return ret;
316         
317         if (!ret) {
318                 static char *handler;
319                 static gunichar2 *handler_utf16;
320                 
321                 if (handler_utf16 == (gunichar2 *)-1)
322                         return FALSE;
323
324 #ifdef PLATFORM_MACOSX
325                 handler = g_strdup ("/usr/bin/open");
326 #else
327                 /*
328                  * On Linux, try: xdg-open, the FreeDesktop standard way of doing it,
329                  * if that fails, try to use gnome-open, then kfmclient
330                  */
331                 handler = g_find_program_in_path ("xdg-open");
332                 if (handler == NULL){
333                         handler = g_find_program_in_path ("gnome-open");
334                         if (handler == NULL){
335                                 handler = g_find_program_in_path ("kfmclient");
336                                 if (handler == NULL){
337                                         handler_utf16 = (gunichar2 *) -1;
338                                         return FALSE;
339                                 } else {
340                                         /* kfmclient needs exec argument */
341                                         char *old = handler;
342                                         handler = g_strconcat (old, " exec",
343                                                                NULL);
344                                         g_free (old);
345                                 }
346                         }
347                 }
348 #endif
349                 handler_utf16 = g_utf8_to_utf16 (handler, -1, NULL, NULL, NULL);
350                 g_free (handler);
351
352                 /* Put quotes around the filename, in case it's a url
353                  * that contains #'s (CreateProcess() calls
354                  * g_shell_parse_argv(), which deliberately throws
355                  * away anything after an unquoted #).  Fixes bug
356                  * 371567.
357                  */
358                 args = utf16_concat (handler_utf16, utf16_space, utf16_quote,
359                                      sei->lpFile, utf16_quote,
360                                      sei->lpParameters == NULL ? NULL : utf16_space,
361                                      sei->lpParameters, NULL);
362                 if (args == NULL) {
363                         SetLastError (ERROR_INVALID_DATA);
364                         return FALSE;
365                 }
366                 ret = CreateProcess (NULL, args, NULL, NULL, TRUE,
367                                      CREATE_UNICODE_ENVIRONMENT, NULL,
368                                      sei->lpDirectory, NULL, &process_info);
369                 g_free (args);
370                 if (!ret) {
371                         if (GetLastError () != ERROR_OUTOFMEMORY)
372                                 SetLastError (ERROR_INVALID_DATA);
373                         return FALSE;
374                 }
375                 /* Shell exec should not return a process handle when it spawned a GUI thing, like a browser. */
376                 CloseHandle (process_info.hProcess);
377                 process_info.hProcess = NULL;
378         }
379         
380         if (sei->fMask & SEE_MASK_NOCLOSEPROCESS)
381                 sei->hProcess = process_info.hProcess;
382         else
383                 CloseHandle (process_info.hProcess);
384         
385         return ret;
386 }
387
388 static gboolean
389 is_managed_binary (const char *filename)
390 {
391         int original_errno = errno;
392 #if defined(HAVE_LARGE_FILE_SUPPORT) && defined(O_LARGEFILE)
393         int file = open (filename, O_RDONLY | O_LARGEFILE);
394 #else
395         int file = open (filename, O_RDONLY);
396 #endif
397         off_t new_offset;
398         unsigned char buffer[8];
399         off_t file_size, optional_header_offset;
400         off_t pe_header_offset;
401         gboolean managed = FALSE;
402         int num_read;
403         guint32 first_word, second_word;
404         
405         /* If we are unable to open the file, then we definitely
406          * can't say that it is managed. The child mono process
407          * probably wouldn't be able to open it anyway.
408          */
409         if (file < 0) {
410                 errno = original_errno;
411                 return FALSE;
412         }
413
414         /* Retrieve the length of the file for future sanity checks. */
415         file_size = lseek (file, 0, SEEK_END);
416         lseek (file, 0, SEEK_SET);
417
418         /* We know we need to read a header field at offset 60. */
419         if (file_size < 64)
420                 goto leave;
421
422         num_read = read (file, buffer, 2);
423
424         if ((num_read != 2) || (buffer[0] != 'M') || (buffer[1] != 'Z'))
425                 goto leave;
426
427         new_offset = lseek (file, 60, SEEK_SET);
428
429         if (new_offset != 60)
430                 goto leave;
431         
432         num_read = read (file, buffer, 4);
433
434         if (num_read != 4)
435                 goto leave;
436         pe_header_offset =  buffer[0]
437                 | (buffer[1] <<  8)
438                 | (buffer[2] << 16)
439                 | (buffer[3] << 24);
440         
441         if (pe_header_offset + 24 > file_size)
442                 goto leave;
443
444         new_offset = lseek (file, pe_header_offset, SEEK_SET);
445
446         if (new_offset != pe_header_offset)
447                 goto leave;
448
449         num_read = read (file, buffer, 4);
450
451         if ((num_read != 4) || (buffer[0] != 'P') || (buffer[1] != 'E') || (buffer[2] != 0) || (buffer[3] != 0))
452                 goto leave;
453
454         /*
455          * Verify that the header we want in the optional header data
456          * is present in this binary.
457          */
458         new_offset = lseek (file, pe_header_offset + 20, SEEK_SET);
459
460         if (new_offset != pe_header_offset + 20)
461                 goto leave;
462
463         num_read = read (file, buffer, 2);
464
465         if ((num_read != 2) || ((buffer[0] | (buffer[1] << 8)) < 216))
466                 goto leave;
467
468         /* Read the CLR header address and size fields. These will be
469          * zero if the binary is not managed.
470          */
471         optional_header_offset = pe_header_offset + 24;
472         new_offset = lseek (file, optional_header_offset + 208, SEEK_SET);
473
474         if (new_offset != optional_header_offset + 208)
475                 goto leave;
476
477         num_read = read (file, buffer, 8);
478         
479         /* We are not concerned with endianness, only with
480          * whether it is zero or not.
481          */
482         first_word = *(guint32 *)&buffer[0];
483         second_word = *(guint32 *)&buffer[4];
484         
485         if ((num_read != 8) || (first_word == 0) || (second_word == 0))
486                 goto leave;
487         
488         managed = TRUE;
489
490 leave:
491         close (file);
492         errno = original_errno;
493         return managed;
494 }
495
496 gboolean
497 CreateProcessWithLogonW (const gunichar2 *username,
498                                                  const gunichar2 *domain,
499                                                  const gunichar2 *password,
500                                                  const guint32 logonFlags,
501                                                  const gunichar2 *appname,
502                                                  const gunichar2 *cmdline,
503                                                  guint32 create_flags,
504                                                  gpointer env,
505                                                  const gunichar2 *cwd,
506                                                  WapiStartupInfo *startup,
507                                                  WapiProcessInformation *process_info)
508 {
509         /* FIXME: use user information */
510         return CreateProcess (appname, cmdline, NULL, NULL, FALSE, create_flags, env, cwd, startup, process_info);
511 }
512
513 static gboolean
514 is_readable_or_executable (const char *prog)
515 {
516         struct stat buf;
517         int a = access (prog, R_OK);
518         int b = access (prog, X_OK);
519         if (a != 0 && b != 0)
520                 return FALSE;
521         if (stat (prog, &buf))
522                 return FALSE;
523         if (S_ISREG (buf.st_mode))
524                 return TRUE;
525         return FALSE;
526 }
527
528 static gboolean
529 is_executable (const char *prog)
530 {
531         struct stat buf;
532         if (access (prog, X_OK) != 0)
533                 return FALSE;
534         if (stat (prog, &buf))
535                 return FALSE;
536         if (S_ISREG (buf.st_mode))
537                 return TRUE;
538         return FALSE;
539 }
540
541 static void
542 switch_dir_separators (char *path)
543 {
544         size_t i, pathLength = strlen(path);
545         
546         /* Turn all the slashes round the right way, except for \' */
547         /* There are probably other characters that need to be excluded as well. */
548         for (i = 0; i < pathLength; i++) {
549                 if (path[i] == '\\' && i < pathLength - 1 && path[i+1] != '\'' )
550                         path[i] = '/';
551         }
552 }
553
554 gboolean CreateProcess (const gunichar2 *appname, const gunichar2 *cmdline,
555                         WapiSecurityAttributes *process_attrs G_GNUC_UNUSED,
556                         WapiSecurityAttributes *thread_attrs G_GNUC_UNUSED,
557                         gboolean inherit_handles, guint32 create_flags,
558                         gpointer new_environ, const gunichar2 *cwd,
559                         WapiStartupInfo *startup,
560                         WapiProcessInformation *process_info)
561 {
562 #if defined (HAVE_FORK) && defined (HAVE_EXECVE)
563         char *cmd = NULL, *prog = NULL, *full_prog = NULL, *args = NULL, *args_after_prog = NULL;
564         char *dir = NULL, **env_strings = NULL, **argv = NULL;
565         guint32 i, env_count = 0;
566         gboolean ret = FALSE;
567         gpointer handle;
568         WapiHandle_process process_handle = {0}, *process_handle_data;
569         GError *gerr = NULL;
570         int in_fd, out_fd, err_fd;
571         pid_t pid;
572         int thr_ret;
573         int startup_pipe [2] = {-1, -1};
574         int dummy;
575         struct MonoProcess *mono_process;
576         gboolean fork_failed = FALSE;
577
578         mono_once (&process_sig_chld_once, process_add_sigchld_handler);
579
580         /* appname and cmdline specify the executable and its args:
581          *
582          * If appname is not NULL, it is the name of the executable.
583          * Otherwise the executable is the first token in cmdline.
584          *
585          * Executable searching:
586          *
587          * If appname is not NULL, it can specify the full path and
588          * file name, or else a partial name and the current directory
589          * will be used.  There is no additional searching.
590          *
591          * If appname is NULL, the first whitespace-delimited token in
592          * cmdline is used.  If the name does not contain a full
593          * directory path, the search sequence is:
594          *
595          * 1) The directory containing the current process
596          * 2) The current working directory
597          * 3) The windows system directory  (Ignored)
598          * 4) The windows directory (Ignored)
599          * 5) $PATH
600          *
601          * Just to make things more interesting, tokens can contain
602          * white space if they are surrounded by quotation marks.  I'm
603          * beginning to understand just why windows apps are generally
604          * so crap, with an API like this :-(
605          */
606         if (appname != NULL) {
607                 cmd = mono_unicode_to_external (appname);
608                 if (cmd == NULL) {
609                         DEBUG ("%s: unicode conversion returned NULL",
610                                    __func__);
611
612                         SetLastError (ERROR_PATH_NOT_FOUND);
613                         goto free_strings;
614                 }
615
616                 switch_dir_separators(cmd);
617         }
618         
619         if (cmdline != NULL) {
620                 args = mono_unicode_to_external (cmdline);
621                 if (args == NULL) {
622                         DEBUG ("%s: unicode conversion returned NULL", __func__);
623
624                         SetLastError (ERROR_PATH_NOT_FOUND);
625                         goto free_strings;
626                 }
627         }
628
629         if (cwd != NULL) {
630                 dir = mono_unicode_to_external (cwd);
631                 if (dir == NULL) {
632                         DEBUG ("%s: unicode conversion returned NULL", __func__);
633
634                         SetLastError (ERROR_PATH_NOT_FOUND);
635                         goto free_strings;
636                 }
637
638                 /* Turn all the slashes round the right way */
639                 switch_dir_separators(dir);
640         }
641         
642
643         /* We can't put off locating the executable any longer :-( */
644         if (cmd != NULL) {
645                 char *unquoted;
646                 if (g_ascii_isalpha (cmd[0]) && (cmd[1] == ':')) {
647                         /* Strip off the drive letter.  I can't
648                          * believe that CP/M holdover is still
649                          * visible...
650                          */
651                         g_memmove (cmd, cmd+2, strlen (cmd)-2);
652                         cmd[strlen (cmd)-2] = '\0';
653                 }
654
655                 unquoted = g_shell_unquote (cmd, NULL);
656                 if (unquoted[0] == '/') {
657                         /* Assume full path given */
658                         prog = g_strdup (unquoted);
659
660                         /* Executable existing ? */
661                         if (!is_readable_or_executable (prog)) {
662                                 DEBUG ("%s: Couldn't find executable %s",
663                                            __func__, prog);
664                                 g_free (unquoted);
665                                 SetLastError (ERROR_FILE_NOT_FOUND);
666                                 goto free_strings;
667                         }
668                 } else {
669                         /* Search for file named by cmd in the current
670                          * directory
671                          */
672                         char *curdir = g_get_current_dir ();
673
674                         prog = g_strdup_printf ("%s/%s", curdir, unquoted);
675                         g_free (curdir);
676
677                         /* And make sure it's readable */
678                         if (!is_readable_or_executable (prog)) {
679                                 DEBUG ("%s: Couldn't find executable %s",
680                                            __func__, prog);
681                                 g_free (unquoted);
682                                 SetLastError (ERROR_FILE_NOT_FOUND);
683                                 goto free_strings;
684                         }
685                 }
686                 g_free (unquoted);
687
688                 args_after_prog = args;
689         } else {
690                 char *token = NULL;
691                 char quote;
692                 
693                 /* Dig out the first token from args, taking quotation
694                  * marks into account
695                  */
696
697                 /* First, strip off all leading whitespace */
698                 args = g_strchug (args);
699                 
700                 /* args_after_prog points to the contents of args
701                  * after token has been set (otherwise argv[0] is
702                  * duplicated)
703                  */
704                 args_after_prog = args;
705
706                 /* Assume the opening quote will always be the first
707                  * character
708                  */
709                 if (args[0] == '\"' || args [0] == '\'') {
710                         quote = args [0];
711                         for (i = 1; args[i] != '\0' && args[i] != quote; i++);
712                         if (args [i + 1] == '\0' || g_ascii_isspace (args[i+1])) {
713                                 /* We found the first token */
714                                 token = g_strndup (args+1, i-1);
715                                 args_after_prog = g_strchug (args + i + 1);
716                         } else {
717                                 /* Quotation mark appeared in the
718                                  * middle of the token.  Just give the
719                                  * whole first token, quotes and all,
720                                  * to exec.
721                                  */
722                         }
723                 }
724                 
725                 if (token == NULL) {
726                         /* No quote mark, or malformed */
727                         for (i = 0; args[i] != '\0'; i++) {
728                                 if (g_ascii_isspace (args[i])) {
729                                         token = g_strndup (args, i);
730                                         args_after_prog = args + i + 1;
731                                         break;
732                                 }
733                         }
734                 }
735
736                 if (token == NULL && args[0] != '\0') {
737                         /* Must be just one token in the string */
738                         token = g_strdup (args);
739                         args_after_prog = NULL;
740                 }
741                 
742                 if (token == NULL) {
743                         /* Give up */
744                         DEBUG ("%s: Couldn't find what to exec", __func__);
745
746                         SetLastError (ERROR_PATH_NOT_FOUND);
747                         goto free_strings;
748                 }
749                 
750                 /* Turn all the slashes round the right way. Only for
751                  * the prg. name
752                  */
753                 switch_dir_separators(token);
754
755                 if (g_ascii_isalpha (token[0]) && (token[1] == ':')) {
756                         /* Strip off the drive letter.  I can't
757                          * believe that CP/M holdover is still
758                          * visible...
759                          */
760                         g_memmove (token, token+2, strlen (token)-2);
761                         token[strlen (token)-2] = '\0';
762                 }
763
764                 if (token[0] == '/') {
765                         /* Assume full path given */
766                         prog = g_strdup (token);
767                         
768                         /* Executable existing ? */
769                         if (!is_readable_or_executable (prog)) {
770                                 DEBUG ("%s: Couldn't find executable %s",
771                                            __func__, token);
772                                 g_free (token);
773                                 SetLastError (ERROR_FILE_NOT_FOUND);
774                                 goto free_strings;
775                         }
776                 } else {
777                         char *curdir = g_get_current_dir ();
778
779                         /* FIXME: Need to record the directory
780                          * containing the current process, and check
781                          * that for the new executable as the first
782                          * place to look
783                          */
784
785                         prog = g_strdup_printf ("%s/%s", curdir, token);
786                         g_free (curdir);
787
788                         /* I assume X_OK is the criterion to use,
789                          * rather than F_OK
790                          *
791                          * X_OK is too strict *if* the target is a CLR binary
792                          */
793                         if (!is_readable_or_executable (prog)) {
794                                 g_free (prog);
795                                 prog = g_find_program_in_path (token);
796                                 if (prog == NULL) {
797                                         DEBUG ("%s: Couldn't find executable %s", __func__, token);
798
799                                         g_free (token);
800                                         SetLastError (ERROR_FILE_NOT_FOUND);
801                                         goto free_strings;
802                                 }
803                         }
804                 }
805
806                 g_free (token);
807         }
808
809         DEBUG ("%s: Exec prog [%s] args [%s]", __func__, prog,
810                    args_after_prog);
811         
812         /* Check for CLR binaries; if found, we will try to invoke
813          * them using the same mono binary that started us.
814          */
815         if (is_managed_binary (prog)) {
816                 gunichar2 *newapp = NULL, *newcmd;
817                 gsize bytes_ignored;
818
819                 if (cli_launcher)
820                         newapp = mono_unicode_from_external (cli_launcher, &bytes_ignored);
821                 else
822                         newapp = mono_unicode_from_external ("mono", &bytes_ignored);
823
824                 if (newapp != NULL) {
825                         if (appname != NULL) {
826                                 newcmd = utf16_concat (utf16_quote, newapp, utf16_quote, utf16_space,
827                                                        appname, utf16_space,
828                                                        cmdline, NULL);
829                         } else {
830                                 newcmd = utf16_concat (utf16_quote, newapp, utf16_quote, utf16_space,
831                                                        cmdline, NULL);
832                         }
833                         
834                         g_free ((gunichar2 *)newapp);
835                         
836                         if (newcmd != NULL) {
837                                 ret = CreateProcess (NULL, newcmd,
838                                                      process_attrs,
839                                                      thread_attrs,
840                                                      inherit_handles,
841                                                      create_flags, new_environ,
842                                                      cwd, startup,
843                                                      process_info);
844                                 
845                                 g_free ((gunichar2 *)newcmd);
846                                 
847                                 goto free_strings;
848                         }
849                 }
850         } else {
851                 if (!is_executable (prog)) {
852                         DEBUG ("%s: Executable permisson not set on %s", __func__, prog);
853                         SetLastError (ERROR_ACCESS_DENIED);
854                         goto free_strings;
855                 }
856         }
857
858         if (args_after_prog != NULL && *args_after_prog) {
859                 char *qprog;
860
861                 qprog = g_shell_quote (prog);
862                 full_prog = g_strconcat (qprog, " ", args_after_prog, NULL);
863                 g_free (qprog);
864         } else {
865                 full_prog = g_shell_quote (prog);
866         }
867
868         ret = g_shell_parse_argv (full_prog, NULL, &argv, &gerr);
869         if (ret == FALSE) {
870                 g_message ("CreateProcess: %s\n", gerr->message);
871                 g_error_free (gerr);
872                 gerr = NULL;
873                 goto free_strings;
874         }
875
876         if (startup != NULL && startup->dwFlags & STARTF_USESTDHANDLES) {
877                 in_fd = GPOINTER_TO_UINT (startup->hStdInput);
878                 out_fd = GPOINTER_TO_UINT (startup->hStdOutput);
879                 err_fd = GPOINTER_TO_UINT (startup->hStdError);
880         } else {
881                 in_fd = GPOINTER_TO_UINT (GetStdHandle (STD_INPUT_HANDLE));
882                 out_fd = GPOINTER_TO_UINT (GetStdHandle (STD_OUTPUT_HANDLE));
883                 err_fd = GPOINTER_TO_UINT (GetStdHandle (STD_ERROR_HANDLE));
884         }
885         
886         process_handle.proc_name = g_strdup (prog);
887
888         process_set_defaults (&process_handle);
889         
890         handle = _wapi_handle_new (WAPI_HANDLE_PROCESS, &process_handle);
891         if (handle == _WAPI_HANDLE_INVALID) {
892                 g_warning ("%s: error creating process handle", __func__);
893
894                 ret = FALSE;
895                 SetLastError (ERROR_OUTOFMEMORY);
896                 goto free_strings;
897         }
898
899         /* new_environ is a block of NULL-terminated strings, which
900          * is itself NULL-terminated. Of course, passing an array of
901          * string pointers would have made things too easy :-(
902          *
903          * If new_environ is not NULL it specifies the entire set of
904          * environment variables in the new process.  Otherwise the
905          * new process inherits the same environment.
906          */
907         if (new_environ) {
908                 gunichar2 *new_environp;
909
910                 /* Count the number of strings */
911                 for (new_environp = (gunichar2 *)new_environ; *new_environp;
912                      new_environp++) {
913                         env_count++;
914                         while (*new_environp) {
915                                 new_environp++;
916                         }
917                 }
918
919                 /* +2: one for the process handle value, and the last
920                  * one is NULL
921                  */
922                 env_strings = g_new0 (char *, env_count + 2);
923                 
924                 /* Copy each environ string into 'strings' turning it
925                  * into utf8 (or the requested encoding) at the same
926                  * time
927                  */
928                 env_count = 0;
929                 for (new_environp = (gunichar2 *)new_environ; *new_environp;
930                      new_environp++) {
931                         env_strings[env_count] = mono_unicode_to_external (new_environp);
932                         env_count++;
933                         while (*new_environp) {
934                                 new_environp++;
935                         }
936                 }
937         } else {
938                 for (i = 0; environ[i] != NULL; i++)
939                         env_count++;
940
941                 /* +2: one for the process handle value, and the last
942                  * one is NULL
943                  */
944                 env_strings = g_new0 (char *, env_count + 2);
945                 
946                 /* Copy each environ string into 'strings' turning it
947                  * into utf8 (or the requested encoding) at the same
948                  * time
949                  */
950                 env_count = 0;
951                 for (i = 0; environ[i] != NULL; i++) {
952                         env_strings[env_count] = g_strdup (environ[i]);
953                         env_count++;
954                 }
955         }
956
957         /* Create a pipe to make sure the child doesn't exit before 
958          * we can add the process to the linked list of mono_processes */
959         if (pipe (startup_pipe) == -1) {
960                 /* Could not create the pipe to synchroniz process startup. We'll just not synchronize.
961                  * This is just for a very hard to hit race condition in the first place */
962                 startup_pipe [0] = startup_pipe [1] = -1;
963                 DEBUG ("%s: new process startup not synchronized. We may not notice if the newly created process exits immediately.", __func__);
964         }
965
966         thr_ret = _wapi_handle_lock_shared_handles ();
967         g_assert (thr_ret == 0);
968         
969         pid = fork ();
970         if (pid == -1) {
971                 /* Error */
972                 SetLastError (ERROR_OUTOFMEMORY);
973                 ret = FALSE;
974                 fork_failed = TRUE;
975                 goto cleanup;
976         } else if (pid == 0) {
977                 /* Child */
978                 
979                 if (startup_pipe [0] != -1) {
980                         /* Wait until the parent has updated it's internal data */
981                         ssize_t _i G_GNUC_UNUSED = read (startup_pipe [0], &dummy, 1);
982                         DEBUG ("%s: child: parent has completed its setup", __func__);
983                         close (startup_pipe [0]);
984                         close (startup_pipe [1]);
985                 }
986                 
987                 /* should we detach from the process group? */
988
989                 /* Connect stdin, stdout and stderr */
990                 dup2 (in_fd, 0);
991                 dup2 (out_fd, 1);
992                 dup2 (err_fd, 2);
993
994                 if (inherit_handles != TRUE) {
995                         /* FIXME: do something here */
996                 }
997                 
998                 /* Close all file descriptors */
999                 for (i = wapi_getdtablesize () - 1; i > 2; i--)
1000                         close (i);
1001
1002 #ifdef DEBUG_ENABLED
1003                 DEBUG ("%s: exec()ing [%s] in dir [%s]", __func__, cmd,
1004                            dir == NULL?".":dir);
1005                 for (i = 0; argv[i] != NULL; i++)
1006                         g_message ("arg %d: [%s]", i, argv[i]);
1007                 
1008                 for (i = 0; env_strings[i] != NULL; i++)
1009                         g_message ("env %d: [%s]", i, env_strings[i]);
1010 #endif
1011
1012                 /* set cwd */
1013                 if (dir != NULL && chdir (dir) == -1) {
1014                         /* set error */
1015                         _exit (-1);
1016                 }
1017                 
1018                 /* exec */
1019                 execve (argv[0], argv, env_strings);
1020                 
1021                 /* set error */
1022                 _exit (-1);
1023         }
1024         /* parent */
1025         
1026         process_handle_data = lookup_process_handle (handle);
1027         if (!process_handle_data) {
1028                 g_warning ("%s: error looking up process handle %p", __func__,
1029                            handle);
1030                 _wapi_handle_unref (handle);
1031                 goto cleanup;
1032         }
1033         
1034         process_handle_data->id = pid;
1035
1036         /* Add our mono_process into the linked list of mono_processes */
1037         mono_process = (struct MonoProcess *) g_malloc0 (sizeof (struct MonoProcess));
1038         mono_process->pid = pid;
1039         mono_process->handle_count = 1;
1040         if (mono_os_sem_init (&mono_process->exit_sem, 0) != 0) {
1041                 /* If we can't create the exit semaphore, we just don't add anything
1042                  * to our list of mono processes. Waiting on the process will return 
1043                  * immediately. */
1044                 g_warning ("%s: could not create exit semaphore for process.", strerror (errno));
1045                 g_free (mono_process);
1046         } else {
1047                 /* Keep the process handle artificially alive until the process
1048                  * exits so that the information in the handle isn't lost. */
1049                 _wapi_handle_ref (handle);
1050                 mono_process->handle = handle;
1051
1052                 process_handle_data->mono_process = mono_process;
1053
1054                 mono_os_mutex_lock (&mono_processes_mutex);
1055                 mono_process->next = mono_processes;
1056                 mono_processes = mono_process;
1057                 mono_os_mutex_unlock (&mono_processes_mutex);
1058         }
1059         
1060         if (process_info != NULL) {
1061                 process_info->hProcess = handle;
1062                 process_info->dwProcessId = pid;
1063
1064                 /* FIXME: we might need to handle the thread info some
1065                  * day
1066                  */
1067                 process_info->hThread = INVALID_HANDLE_VALUE;
1068                 process_info->dwThreadId = 0;
1069         }
1070
1071 cleanup:
1072         _wapi_handle_unlock_shared_handles ();
1073
1074         if (fork_failed)
1075                 _wapi_handle_unref (handle);
1076
1077         if (startup_pipe [1] != -1) {
1078                 /* Write 1 byte, doesn't matter what */
1079                 ssize_t _i G_GNUC_UNUSED = write (startup_pipe [1], startup_pipe, 1);
1080                 close (startup_pipe [0]);
1081                 close (startup_pipe [1]);
1082         }
1083
1084 free_strings:
1085         if (cmd)
1086                 g_free (cmd);
1087         if (full_prog)
1088                 g_free (full_prog);
1089         if (prog)
1090                 g_free (prog);
1091         if (args)
1092                 g_free (args);
1093         if (dir)
1094                 g_free (dir);
1095         if (env_strings)
1096                 g_strfreev (env_strings);
1097         if (argv)
1098                 g_strfreev (argv);
1099         
1100         DEBUG ("%s: returning handle %p for pid %d", __func__, handle,
1101                    pid);
1102
1103         /* Check if something needs to be cleaned up. */
1104         mono_processes_cleanup ();
1105         
1106         return ret;
1107 #else
1108         SetLastError (ERROR_NOT_SUPPORTED);
1109         return FALSE;
1110 #endif // defined (HAVE_FORK) && defined (HAVE_EXECVE)
1111 }
1112                 
1113 static void
1114 process_set_name (WapiHandle_process *process_handle)
1115 {
1116         char *progname, *utf8_progname, *slash;
1117         
1118         progname = g_get_prgname ();
1119         utf8_progname = mono_utf8_from_external (progname);
1120
1121         DEBUG ("%s: using [%s] as prog name", __func__, progname);
1122
1123         if (utf8_progname) {
1124                 slash = strrchr (utf8_progname, '/');
1125                 if (slash)
1126                         process_handle->proc_name = g_strdup (slash+1);
1127                 else
1128                         process_handle->proc_name = g_strdup (utf8_progname);
1129                 g_free (utf8_progname);
1130         }
1131 }
1132
1133 void
1134 wapi_processes_init (void)
1135 {
1136         pid_t pid = _wapi_getpid ();
1137         WapiHandle_process process_handle = {0};
1138
1139         _wapi_handle_register_capabilities (WAPI_HANDLE_PROCESS,
1140                 (WapiHandleCapability)(WAPI_HANDLE_CAP_WAIT | WAPI_HANDLE_CAP_SPECIAL_WAIT));
1141         
1142         process_handle.id = pid;
1143
1144         process_set_defaults (&process_handle);
1145         process_set_name (&process_handle);
1146
1147         current_process = _wapi_handle_new (WAPI_HANDLE_PROCESS,
1148                                             &process_handle);
1149         g_assert (current_process);
1150
1151         mono_os_mutex_init (&mono_processes_mutex);
1152 }
1153
1154 gpointer
1155 _wapi_process_duplicate (void)
1156 {
1157         _wapi_handle_ref (current_process);
1158         
1159         return current_process;
1160 }
1161
1162 /* Returns a pseudo handle that doesn't need to be closed afterwards */
1163 gpointer
1164 GetCurrentProcess (void)
1165 {
1166         return _WAPI_PROCESS_CURRENT;
1167 }
1168
1169 guint32
1170 GetProcessId (gpointer handle)
1171 {
1172         WapiHandle_process *process_handle;
1173
1174         if (WAPI_IS_PSEUDO_PROCESS_HANDLE (handle))
1175                 /* This is a pseudo handle */
1176                 return WAPI_HANDLE_TO_PID (handle);
1177         
1178         process_handle = lookup_process_handle (handle);
1179         if (!process_handle) {
1180                 SetLastError (ERROR_INVALID_HANDLE);
1181                 return 0;
1182         }
1183         
1184         return process_handle->id;
1185 }
1186
1187 static gboolean
1188 process_open_compare (gpointer handle, gpointer user_data)
1189 {
1190         pid_t wanted_pid;
1191         WapiHandle_process *process_handle;
1192         pid_t checking_pid;
1193
1194         g_assert (!WAPI_IS_PSEUDO_PROCESS_HANDLE (handle));
1195         
1196         process_handle = lookup_process_handle (handle);
1197         g_assert (process_handle);
1198         
1199         DEBUG ("%s: looking at process %d", __func__, process_handle->id);
1200
1201         checking_pid = process_handle->id;
1202
1203         if (checking_pid == 0)
1204                 return FALSE;
1205         
1206         wanted_pid = GPOINTER_TO_UINT (user_data);
1207
1208         /* It's possible to have more than one process handle with the
1209          * same pid, but only the one running process can be
1210          * unsignalled
1211          */
1212         if (checking_pid == wanted_pid &&
1213             !_wapi_handle_issignalled (handle)) {
1214                 /* If the handle is blown away in the window between
1215                  * returning TRUE here and _wapi_search_handle pinging
1216                  * the timestamp, the search will continue
1217                  */
1218                 return TRUE;
1219         } else {
1220                 return FALSE;
1221         }
1222 }
1223
1224 gboolean
1225 CloseProcess (gpointer handle)
1226 {
1227         if (WAPI_IS_PSEUDO_PROCESS_HANDLE (handle))
1228                 return TRUE;
1229         return CloseHandle (handle);
1230 }
1231
1232 /*
1233  * The caller owns the returned handle and must call CloseProcess () on it to clean it up.
1234  */
1235 gpointer
1236 OpenProcess (guint32 req_access G_GNUC_UNUSED, gboolean inherit G_GNUC_UNUSED, guint32 pid)
1237 {
1238         /* Find the process handle that corresponds to pid */
1239         gpointer handle = NULL;
1240         
1241         DEBUG ("%s: looking for process %d", __func__, pid);
1242
1243         handle = _wapi_search_handle (WAPI_HANDLE_PROCESS,
1244                                       process_open_compare,
1245                                       GUINT_TO_POINTER (pid), NULL, TRUE);
1246         if (handle == 0) {
1247                 if (is_pid_valid (pid)) {
1248                         /* Return a pseudo handle for processes we
1249                          * don't have handles for
1250                          */
1251                         return WAPI_PID_TO_HANDLE (pid);
1252                 } else {
1253                         DEBUG ("%s: Can't find pid %d", __func__, pid);
1254
1255                         SetLastError (ERROR_PROC_NOT_FOUND);
1256         
1257                         return NULL;
1258                 }
1259         }
1260
1261         /* _wapi_search_handle () already added a ref */
1262         return handle;
1263 }
1264
1265 gboolean
1266 GetExitCodeProcess (gpointer process, guint32 *code)
1267 {
1268         WapiHandle_process *process_handle;
1269         guint32 pid = -1;
1270         
1271         if (!code)
1272                 return FALSE;
1273         
1274         if (WAPI_IS_PSEUDO_PROCESS_HANDLE (process)) {
1275                 pid = WAPI_HANDLE_TO_PID (process);
1276                 /* This is a pseudo handle, so we don't know what the
1277                  * exit code was, but we can check whether it's alive or not
1278                  */
1279                 if (is_pid_valid (pid)) {
1280                         *code = STILL_ACTIVE;
1281                         return TRUE;
1282                 } else {
1283                         return FALSE;
1284                 }
1285         }
1286
1287         process_handle = lookup_process_handle (process);
1288         if (!process_handle) {
1289                 DEBUG ("%s: Can't find process %p", __func__, process);
1290                 
1291                 return FALSE;
1292         }
1293
1294         if (process_handle->id == _wapi_getpid ()) {
1295                 *code = STILL_ACTIVE;
1296                 return TRUE;
1297         }
1298
1299         /* A process handle is only signalled if the process has exited
1300          * and has been waited for */
1301
1302         /* Make sure any process exit has been noticed, before
1303          * checking if the process is signalled.  Fixes bug 325463.
1304          */
1305         process_wait (process, 0, TRUE);
1306         
1307         if (_wapi_handle_issignalled (process))
1308                 *code = process_handle->exitstatus;
1309         else
1310                 *code = STILL_ACTIVE;
1311         
1312         return TRUE;
1313 }
1314
1315 gboolean
1316 GetProcessTimes (gpointer process, WapiFileTime *create_time,
1317                                  WapiFileTime *exit_time, WapiFileTime *kernel_time,
1318                                  WapiFileTime *user_time)
1319 {
1320         WapiHandle_process *process_handle;
1321         gboolean ku_times_set = FALSE;
1322         
1323         if (create_time == NULL || exit_time == NULL || kernel_time == NULL ||
1324                 user_time == NULL)
1325                 /* Not sure if w32 allows NULLs here or not */
1326                 return FALSE;
1327         
1328         if (WAPI_IS_PSEUDO_PROCESS_HANDLE (process)) {
1329                 gpointer pid = GINT_TO_POINTER (WAPI_HANDLE_TO_PID(process));
1330                 gint64 start_ticks, user_ticks, kernel_ticks;
1331
1332                 mono_process_get_times (pid, &start_ticks, &user_ticks, &kernel_ticks);
1333
1334                 _wapi_guint64_to_filetime (start_ticks, create_time);
1335                 _wapi_guint64_to_filetime (user_ticks, kernel_time);
1336                 _wapi_guint64_to_filetime (kernel_ticks, user_time);
1337
1338                 return TRUE;
1339         }
1340
1341         process_handle = lookup_process_handle (process);
1342         if (!process_handle) {
1343                 DEBUG ("%s: Can't find process %p", __func__, process);
1344                 
1345                 return FALSE;
1346         }
1347         
1348         *create_time = process_handle->create_time;
1349
1350         /* A process handle is only signalled if the process has
1351          * exited.  Otherwise exit_time isn't set
1352          */
1353         if (_wapi_handle_issignalled (process))
1354                 *exit_time = process_handle->exit_time;
1355
1356 #ifdef HAVE_GETRUSAGE
1357         if (process_handle->id == getpid ()) {
1358                 struct rusage time_data;
1359                 if (getrusage (RUSAGE_SELF, &time_data) == 0) {
1360                         guint64 tick_val;
1361                         ku_times_set = TRUE;
1362                         tick_val = (guint64)time_data.ru_utime.tv_sec * 10000000 + (guint64)time_data.ru_utime.tv_usec * 10;
1363                         _wapi_guint64_to_filetime (tick_val, user_time);
1364                         tick_val = (guint64)time_data.ru_stime.tv_sec * 10000000 + (guint64)time_data.ru_stime.tv_usec * 10;
1365                         _wapi_guint64_to_filetime (tick_val, kernel_time);
1366                 }
1367         }
1368 #endif
1369         if (!ku_times_set) {
1370                 memset (kernel_time, 0, sizeof (WapiFileTime));
1371                 memset (user_time, 0, sizeof (WapiFileTime));
1372         }
1373
1374         return TRUE;
1375 }
1376
1377 typedef struct
1378 {
1379         gpointer address_start;
1380         gpointer address_end;
1381         char *perms;
1382         gpointer address_offset;
1383         guint64 device;
1384         guint64 inode;
1385         char *filename;
1386 } WapiProcModule;
1387
1388 static void free_procmodule (WapiProcModule *mod)
1389 {
1390         if (mod->perms != NULL) {
1391                 g_free (mod->perms);
1392         }
1393         if (mod->filename != NULL) {
1394                 g_free (mod->filename);
1395         }
1396         g_free (mod);
1397 }
1398
1399 static gint find_procmodule (gconstpointer a, gconstpointer b)
1400 {
1401         WapiProcModule *want = (WapiProcModule *)a;
1402         WapiProcModule *compare = (WapiProcModule *)b;
1403         
1404         if ((want->device == compare->device) &&
1405             (want->inode == compare->inode)) {
1406                 return(0);
1407         } else {
1408                 return(1);
1409         }
1410 }
1411
1412 #ifdef PLATFORM_MACOSX
1413 #include <mach-o/dyld.h>
1414 #include <mach-o/getsect.h>
1415
1416 static GSList *load_modules (void)
1417 {
1418         GSList *ret = NULL;
1419         WapiProcModule *mod;
1420         uint32_t count = _dyld_image_count ();
1421         int i = 0;
1422
1423         for (i = 0; i < count; i++) {
1424 #if SIZEOF_VOID_P == 8
1425                 const struct mach_header_64 *hdr;
1426                 const struct section_64 *sec;
1427 #else
1428                 const struct mach_header *hdr;
1429                 const struct section *sec;
1430 #endif
1431                 const char *name;
1432
1433                 name = _dyld_get_image_name (i);
1434 #if SIZEOF_VOID_P == 8
1435                 hdr = (const struct mach_header_64*)_dyld_get_image_header (i);
1436                 sec = getsectbynamefromheader_64 (hdr, SEG_DATA, SECT_DATA);
1437 #else
1438                 hdr = _dyld_get_image_header (i);
1439                 sec = getsectbynamefromheader (hdr, SEG_DATA, SECT_DATA);
1440 #endif
1441
1442                 /* Some dynlibs do not have data sections on osx (#533893) */
1443                 if (sec == 0) {
1444                         continue;
1445                 }
1446                         
1447                 mod = g_new0 (WapiProcModule, 1);
1448                 mod->address_start = GINT_TO_POINTER (sec->addr);
1449                 mod->address_end = GINT_TO_POINTER (sec->addr+sec->size);
1450                 mod->perms = g_strdup ("r--p");
1451                 mod->address_offset = 0;
1452                 mod->device = makedev (0, 0);
1453                 mod->inode = i;
1454                 mod->filename = g_strdup (name); 
1455                 
1456                 if (g_slist_find_custom (ret, mod, find_procmodule) == NULL) {
1457                         ret = g_slist_prepend (ret, mod);
1458                 } else {
1459                         free_procmodule (mod);
1460                 }
1461         }
1462
1463         ret = g_slist_reverse (ret);
1464         
1465         return(ret);
1466 }
1467 #elif defined(__OpenBSD__) || defined(__FreeBSD__)
1468 #include <link.h>
1469 static int load_modules_callback (struct dl_phdr_info *info, size_t size, void *ptr)
1470 {
1471         if (size < offsetof (struct dl_phdr_info, dlpi_phnum)
1472             + sizeof (info->dlpi_phnum))
1473                 return (-1);
1474
1475         struct dl_phdr_info *cpy = calloc(1, sizeof(struct dl_phdr_info));
1476         if (!cpy)
1477                 return (-1);
1478
1479         memcpy(cpy, info, sizeof(*info));
1480
1481         g_ptr_array_add ((GPtrArray *)ptr, cpy);
1482
1483         return (0);
1484 }
1485
1486 static GSList *load_modules (void)
1487 {
1488         GSList *ret = NULL;
1489         WapiProcModule *mod;
1490         GPtrArray *dlarray = g_ptr_array_new();
1491         int i;
1492
1493         if (dl_iterate_phdr(load_modules_callback, dlarray) < 0)
1494                 return (ret);
1495
1496         for (i = 0; i < dlarray->len; i++) {
1497                 struct dl_phdr_info *info = g_ptr_array_index (dlarray, i);
1498
1499                 mod = g_new0 (WapiProcModule, 1);
1500                 mod->address_start = (gpointer)(info->dlpi_addr + info->dlpi_phdr[0].p_vaddr);
1501                 mod->address_end = (gpointer)(info->dlpi_addr +
1502                                        info->dlpi_phdr[info->dlpi_phnum - 1].p_vaddr);
1503                 mod->perms = g_strdup ("r--p");
1504                 mod->address_offset = 0;
1505                 mod->inode = i;
1506                 mod->filename = g_strdup (info->dlpi_name); 
1507
1508                 DEBUG ("%s: inode=%d, filename=%s, address_start=%p, address_end=%p", __func__,
1509                                    mod->inode, mod->filename, mod->address_start, mod->address_end);
1510
1511                 free(info);
1512
1513                 if (g_slist_find_custom (ret, mod, find_procmodule) == NULL) {
1514                         ret = g_slist_prepend (ret, mod);
1515                 } else {
1516                         free_procmodule (mod);
1517                 }
1518         }
1519
1520         g_ptr_array_free (dlarray, TRUE);
1521
1522         ret = g_slist_reverse (ret);
1523
1524         return(ret);
1525 }
1526 #elif defined(__HAIKU__)
1527
1528 static GSList *load_modules (void)
1529 {
1530         GSList *ret = NULL;
1531         WapiProcModule *mod;
1532         int32 cookie = 0;
1533         image_info imageInfo;
1534
1535         while (get_next_image_info (B_CURRENT_TEAM, &cookie, &imageInfo) == B_OK) {
1536                 mod = g_new0 (WapiProcModule, 1);
1537                 mod->device = imageInfo.device;
1538                 mod->inode = imageInfo.node;
1539                 mod->filename = g_strdup (imageInfo.name);
1540                 mod->address_start = MIN (imageInfo.text, imageInfo.data);
1541                 mod->address_end = MAX ((uint8_t*)imageInfo.text + imageInfo.text_size,
1542                         (uint8_t*)imageInfo.data + imageInfo.data_size);
1543                 mod->perms = g_strdup ("r--p");
1544                 mod->address_offset = 0;
1545
1546                 if (g_slist_find_custom (ret, mod, find_procmodule) == NULL) {
1547                         ret = g_slist_prepend (ret, mod);
1548                 } else {
1549                         free_procmodule (mod);
1550                 }
1551         }
1552
1553         ret = g_slist_reverse (ret);
1554
1555         return ret;
1556 }
1557 #else
1558 static GSList *load_modules (FILE *fp)
1559 {
1560         GSList *ret = NULL;
1561         WapiProcModule *mod;
1562         char buf[MAXPATHLEN + 1], *p, *endp;
1563         char *start_start, *end_start, *prot_start, *offset_start;
1564         char *maj_dev_start, *min_dev_start, *inode_start, prot_buf[5];
1565         gpointer address_start, address_end, address_offset;
1566         guint32 maj_dev, min_dev;
1567         guint64 inode;
1568         guint64 device;
1569         
1570         while (fgets (buf, sizeof(buf), fp)) {
1571                 p = buf;
1572                 while (g_ascii_isspace (*p)) ++p;
1573                 start_start = p;
1574                 if (!g_ascii_isxdigit (*start_start)) {
1575                         continue;
1576                 }
1577                 address_start = (gpointer)strtoul (start_start, &endp, 16);
1578                 p = endp;
1579                 if (*p != '-') {
1580                         continue;
1581                 }
1582                 
1583                 ++p;
1584                 end_start = p;
1585                 if (!g_ascii_isxdigit (*end_start)) {
1586                         continue;
1587                 }
1588                 address_end = (gpointer)strtoul (end_start, &endp, 16);
1589                 p = endp;
1590                 if (!g_ascii_isspace (*p)) {
1591                         continue;
1592                 }
1593                 
1594                 while (g_ascii_isspace (*p)) ++p;
1595                 prot_start = p;
1596                 if (*prot_start != 'r' && *prot_start != '-') {
1597                         continue;
1598                 }
1599                 memcpy (prot_buf, prot_start, 4);
1600                 prot_buf[4] = '\0';
1601                 while (!g_ascii_isspace (*p)) ++p;
1602                 
1603                 while (g_ascii_isspace (*p)) ++p;
1604                 offset_start = p;
1605                 if (!g_ascii_isxdigit (*offset_start)) {
1606                         continue;
1607                 }
1608                 address_offset = (gpointer)strtoul (offset_start, &endp, 16);
1609                 p = endp;
1610                 if (!g_ascii_isspace (*p)) {
1611                         continue;
1612                 }
1613                 
1614                 while(g_ascii_isspace (*p)) ++p;
1615                 maj_dev_start = p;
1616                 if (!g_ascii_isxdigit (*maj_dev_start)) {
1617                         continue;
1618                 }
1619                 maj_dev = strtoul (maj_dev_start, &endp, 16);
1620                 p = endp;
1621                 if (*p != ':') {
1622                         continue;
1623                 }
1624                 
1625                 ++p;
1626                 min_dev_start = p;
1627                 if (!g_ascii_isxdigit (*min_dev_start)) {
1628                         continue;
1629                 }
1630                 min_dev = strtoul (min_dev_start, &endp, 16);
1631                 p = endp;
1632                 if (!g_ascii_isspace (*p)) {
1633                         continue;
1634                 }
1635                 
1636                 while (g_ascii_isspace (*p)) ++p;
1637                 inode_start = p;
1638                 if (!g_ascii_isxdigit (*inode_start)) {
1639                         continue;
1640                 }
1641                 inode = (guint64)strtol (inode_start, &endp, 10);
1642                 p = endp;
1643                 if (!g_ascii_isspace (*p)) {
1644                         continue;
1645                 }
1646
1647                 device = makedev ((int)maj_dev, (int)min_dev);
1648                 if ((device == 0) &&
1649                     (inode == 0)) {
1650                         continue;
1651                 }
1652                 
1653                 while(g_ascii_isspace (*p)) ++p;
1654                 /* p now points to the filename */
1655
1656                 mod = g_new0 (WapiProcModule, 1);
1657                 mod->address_start = address_start;
1658                 mod->address_end = address_end;
1659                 mod->perms = g_strdup (prot_buf);
1660                 mod->address_offset = address_offset;
1661                 mod->device = device;
1662                 mod->inode = inode;
1663                 mod->filename = g_strdup (g_strstrip (p));
1664                 
1665                 if (g_slist_find_custom (ret, mod, find_procmodule) == NULL) {
1666                         ret = g_slist_prepend (ret, mod);
1667                 } else {
1668                         free_procmodule (mod);
1669                 }
1670         }
1671
1672         ret = g_slist_reverse (ret);
1673         
1674         return(ret);
1675 }
1676 #endif
1677
1678 static gboolean match_procname_to_modulename (char *procname, char *modulename)
1679 {
1680         char* lastsep = NULL;
1681         char* lastsep2 = NULL;
1682         char* pname = NULL;
1683         char* mname = NULL;
1684         gboolean result = FALSE;
1685
1686         if (procname == NULL || modulename == NULL)
1687                 return (FALSE);
1688
1689         DEBUG ("%s: procname=\"%s\", modulename=\"%s\"", __func__, procname, modulename);
1690         pname = mono_path_resolve_symlinks (procname);
1691         mname = mono_path_resolve_symlinks (modulename);
1692
1693         if (!strcmp (pname, mname))
1694                 result = TRUE;
1695
1696         if (!result) {
1697                 lastsep = strrchr (mname, '/');
1698                 if (lastsep)
1699                         if (!strcmp (lastsep+1, pname))
1700                                 result = TRUE;
1701                 if (!result) {
1702                         lastsep2 = strrchr (pname, '/');
1703                         if (lastsep2){
1704                                 if (lastsep) {
1705                                         if (!strcmp (lastsep+1, lastsep2+1))
1706                                                 result = TRUE;
1707                                 } else {
1708                                         if (!strcmp (mname, lastsep2+1))
1709                                                 result = TRUE;
1710                                 }
1711                         }
1712                 }
1713         }
1714
1715         g_free (pname);
1716         g_free (mname);
1717
1718         DEBUG ("%s: result is %d", __func__, result);
1719         return result;
1720 }
1721
1722 #if !(defined(PLATFORM_MACOSX) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__HAIKU__))
1723 static FILE *
1724 open_process_map (int pid, const char *mode)
1725 {
1726         FILE *fp = NULL;
1727         const char *proc_path[] = {
1728                 "/proc/%d/maps",        /* GNU/Linux */
1729                 "/proc/%d/map",         /* FreeBSD */
1730                 NULL
1731         };
1732         int i;
1733         char *filename;
1734
1735         for (i = 0; fp == NULL && proc_path [i]; i++) {
1736                 filename = g_strdup_printf (proc_path[i], pid);
1737                 fp = fopen (filename, mode);
1738                 g_free (filename);
1739         }
1740
1741         return fp;
1742 }
1743 #endif
1744
1745 static char *get_process_name_from_proc (pid_t pid);
1746
1747 gboolean EnumProcessModules (gpointer process, gpointer *modules,
1748                              guint32 size, guint32 *needed)
1749 {
1750         WapiHandle_process *process_handle;
1751 #if !defined(__OpenBSD__) && !defined(PLATFORM_MACOSX) && !defined(__FreeBSD__)
1752         FILE *fp;
1753 #endif
1754         GSList *mods = NULL;
1755         WapiProcModule *module;
1756         guint32 count, avail = size / sizeof(gpointer);
1757         int i;
1758         pid_t pid;
1759         char *proc_name = NULL;
1760         
1761         /* Store modules in an array of pointers (main module as
1762          * modules[0]), using the load address for each module as a
1763          * token.  (Use 'NULL' as an alternative for the main module
1764          * so that the simple implementation can just return one item
1765          * for now.)  Get the info from /proc/<pid>/maps on linux,
1766          * /proc/<pid>/map on FreeBSD, other systems will have to
1767          * implement /dev/kmem reading or whatever other horrid
1768          * technique is needed.
1769          */
1770         if (size < sizeof(gpointer))
1771                 return FALSE;
1772
1773         if (WAPI_IS_PSEUDO_PROCESS_HANDLE (process)) {
1774                 pid = WAPI_HANDLE_TO_PID (process);
1775                 proc_name = get_process_name_from_proc (pid);
1776         } else {
1777                 process_handle = lookup_process_handle (process);
1778                 if (!process_handle) {
1779                         DEBUG ("%s: Can't find process %p", __func__, process);
1780                 
1781                         return FALSE;
1782                 }
1783                 pid = process_handle->id;
1784                 proc_name = g_strdup (process_handle->proc_name);
1785         }
1786         
1787 #if defined(PLATFORM_MACOSX) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__HAIKU__)
1788         mods = load_modules ();
1789         if (!proc_name) {
1790                 modules[0] = NULL;
1791                 *needed = sizeof(gpointer);
1792                 return TRUE;
1793         }
1794 #else
1795         fp = open_process_map (pid, "r");
1796         if (!fp) {
1797                 /* No /proc/<pid>/maps so just return the main module
1798                  * shortcut for now
1799                  */
1800                 modules[0] = NULL;
1801                 *needed = sizeof(gpointer);
1802                 g_free (proc_name);
1803                 return TRUE;
1804         }
1805         mods = load_modules (fp);
1806         fclose (fp);
1807 #endif
1808         count = g_slist_length (mods);
1809                 
1810         /* count + 1 to leave slot 0 for the main module */
1811         *needed = sizeof(gpointer) * (count + 1);
1812
1813         /*
1814          * Use the NULL shortcut, as the first line in
1815          * /proc/<pid>/maps isn't the executable, and we need
1816          * that first in the returned list. Check the module name 
1817          * to see if it ends with the proc name and substitute 
1818          * the first entry with it.  FIXME if this turns out to 
1819          * be a problem.
1820          */
1821         modules[0] = NULL;
1822         for (i = 0; i < (avail - 1) && i < count; i++) {
1823                 module = (WapiProcModule *)g_slist_nth_data (mods, i);
1824                 if (modules[0] != NULL)
1825                         modules[i] = module->address_start;
1826                 else if (match_procname_to_modulename (proc_name, module->filename))
1827                         modules[0] = module->address_start;
1828                 else
1829                         modules[i + 1] = module->address_start;
1830         }
1831                 
1832         for (i = 0; i < count; i++) {
1833                 free_procmodule ((WapiProcModule *)g_slist_nth_data (mods, i));
1834         }
1835         g_slist_free (mods);
1836         g_free (proc_name);
1837         
1838         return TRUE;
1839 }
1840
1841 static char *
1842 get_process_name_from_proc (pid_t pid)
1843 {
1844 #if defined(__OpenBSD__) || defined(__FreeBSD__)
1845         int mib [6];
1846         size_t size;
1847         struct kinfo_proc *pi;
1848 #elif defined(PLATFORM_MACOSX)
1849 #if !(!defined (__mono_ppc__) && defined (TARGET_OSX))
1850         size_t size;
1851         struct kinfo_proc *pi;
1852         int mib[] = { CTL_KERN, KERN_PROC, KERN_PROC_PID, pid };
1853 #endif
1854 #else
1855         FILE *fp;
1856         char *filename = NULL;
1857 #endif
1858         char buf[256];
1859         char *ret = NULL;
1860
1861 #if defined(PLATFORM_SOLARIS)
1862         filename = g_strdup_printf ("/proc/%d/psinfo", pid);
1863         if ((fp = fopen (filename, "r")) != NULL) {
1864                 struct psinfo info;
1865                 int nread;
1866
1867                 nread = fread (&info, sizeof (info), 1, fp);
1868                 if (nread == 1) {
1869                         ret = g_strdup (info.pr_fname);
1870                 }
1871
1872                 fclose (fp);
1873         }
1874         g_free (filename);
1875 #elif defined(PLATFORM_MACOSX)
1876 #if !defined (__mono_ppc__) && defined (TARGET_OSX)
1877         /* No proc name on OSX < 10.5 nor ppc nor iOS */
1878         memset (buf, '\0', sizeof(buf));
1879         proc_name (pid, buf, sizeof(buf));
1880
1881         // Fixes proc_name triming values to 15 characters #32539
1882         if (strlen (buf) >= MAXCOMLEN - 1) {
1883                 char path_buf [PROC_PIDPATHINFO_MAXSIZE];
1884                 char *name_buf;
1885                 int path_len;
1886
1887                 memset (path_buf, '\0', sizeof(path_buf));
1888                 path_len = proc_pidpath (pid, path_buf, sizeof(path_buf));
1889
1890                 if (path_len > 0 && path_len < sizeof(path_buf)) {
1891                         name_buf = path_buf + path_len;
1892                         for(;name_buf > path_buf; name_buf--) {
1893                                 if (name_buf [0] == '/') {
1894                                         name_buf++;
1895                                         break;
1896                                 }
1897                         }
1898
1899                         if (memcmp (buf, name_buf, MAXCOMLEN - 1) == 0)
1900                                 ret = g_strdup (name_buf);
1901                 }
1902         }
1903
1904         if (ret == NULL && strlen (buf) > 0)
1905                 ret = g_strdup (buf);
1906 #else
1907         if (sysctl(mib, 4, NULL, &size, NULL, 0) < 0)
1908                 return(ret);
1909
1910         if ((pi = malloc(size)) == NULL)
1911                 return(ret);
1912
1913         if (sysctl (mib, 4, pi, &size, NULL, 0) < 0) {
1914                 if (errno == ENOMEM) {
1915                         free(pi);
1916                         DEBUG ("%s: Didn't allocate enough memory for kproc info", __func__);
1917                 }
1918                 return(ret);
1919         }
1920
1921         if (strlen (pi->kp_proc.p_comm) > 0)
1922                 ret = g_strdup (pi->kp_proc.p_comm);
1923
1924         free(pi);
1925 #endif
1926 #elif defined(__FreeBSD__)
1927         mib [0] = CTL_KERN;
1928         mib [1] = KERN_PROC;
1929         mib [2] = KERN_PROC_PID;
1930         mib [3] = pid;
1931         if (sysctl(mib, 4, NULL, &size, NULL, 0) < 0) {
1932                 DEBUG ("%s: sysctl() failed: %d", __func__, errno);
1933                 return(ret);
1934         }
1935
1936         if ((pi = malloc(size)) == NULL)
1937                 return(ret);
1938
1939         if (sysctl (mib, 4, pi, &size, NULL, 0) < 0) {
1940                 if (errno == ENOMEM) {
1941                         free(pi);
1942                         DEBUG ("%s: Didn't allocate enough memory for kproc info", __func__);
1943                 }
1944                 return(ret);
1945         }
1946
1947         if (strlen (pi->ki_comm) > 0)
1948                 ret = g_strdup (pi->ki_comm);
1949         free(pi);
1950 #elif defined(__OpenBSD__)
1951         mib [0] = CTL_KERN;
1952         mib [1] = KERN_PROC;
1953         mib [2] = KERN_PROC_PID;
1954         mib [3] = pid;
1955         mib [4] = sizeof(struct kinfo_proc);
1956         mib [5] = 0;
1957
1958 retry:
1959         if (sysctl(mib, 6, NULL, &size, NULL, 0) < 0) {
1960                 DEBUG ("%s: sysctl() failed: %d", __func__, errno);
1961                 return(ret);
1962         }
1963
1964         if ((pi = malloc(size)) == NULL)
1965                 return(ret);
1966
1967         mib[5] = (int)(size / sizeof(struct kinfo_proc));
1968
1969         if ((sysctl (mib, 6, pi, &size, NULL, 0) < 0) ||
1970                 (size != sizeof (struct kinfo_proc))) {
1971                 if (errno == ENOMEM) {
1972                         free(pi);
1973                         goto retry;
1974                 }
1975                 return(ret);
1976         }
1977
1978 #if defined(__OpenBSD__)
1979         if (strlen (pi->p_comm) > 0)
1980                 ret = g_strdup (pi->p_comm);
1981 #elif defined(__FreeBSD__)
1982         if (strlen (pi->ki_comm) > 0)
1983                 ret = g_strdup (pi->ki_comm);
1984 #endif
1985
1986         free(pi);
1987 #elif defined(__HAIKU__)
1988         image_info imageInfo;
1989         int32 cookie = 0;
1990
1991         if (get_next_image_info ((team_id)pid, &cookie, &imageInfo) == B_OK) {
1992                 ret = g_strdup (imageInfo.name);
1993         }
1994 #else
1995         memset (buf, '\0', sizeof(buf));
1996         filename = g_strdup_printf ("/proc/%d/exe", pid);
1997         if (readlink (filename, buf, 255) > 0) {
1998                 ret = g_strdup (buf);
1999         }
2000         g_free (filename);
2001
2002         if (ret != NULL) {
2003                 return(ret);
2004         }
2005
2006         filename = g_strdup_printf ("/proc/%d/cmdline", pid);
2007         if ((fp = fopen (filename, "r")) != NULL) {
2008                 if (fgets (buf, 256, fp) != NULL) {
2009                         ret = g_strdup (buf);
2010                 }
2011                 
2012                 fclose (fp);
2013         }
2014         g_free (filename);
2015
2016         if (ret != NULL) {
2017                 return(ret);
2018         }
2019         
2020         filename = g_strdup_printf ("/proc/%d/stat", pid);
2021         if ((fp = fopen (filename, "r")) != NULL) {
2022                 if (fgets (buf, 256, fp) != NULL) {
2023                         char *start, *end;
2024                         
2025                         start = strchr (buf, '(');
2026                         if (start != NULL) {
2027                                 end = strchr (start + 1, ')');
2028                                 
2029                                 if (end != NULL) {
2030                                         ret = g_strndup (start + 1,
2031                                                          end - start - 1);
2032                                 }
2033                         }
2034                 }
2035                 
2036                 fclose (fp);
2037         }
2038         g_free (filename);
2039 #endif
2040
2041         return ret;
2042 }
2043
2044 /*
2045  * wapi_process_get_path:
2046  *
2047  *   Return the full path of the executable of the process PID, or NULL if it cannot be determined.
2048  * Returns malloc-ed memory.
2049  */
2050 char*
2051 wapi_process_get_path (pid_t pid)
2052 {
2053 #if defined(PLATFORM_MACOSX) && !defined(__mono_ppc__) && defined(TARGET_OSX)
2054         char buf [PROC_PIDPATHINFO_MAXSIZE];
2055         int res;
2056
2057         res = proc_pidpath (pid, buf, sizeof (buf));
2058         if (res <= 0)
2059                 return NULL;
2060         if (buf [0] == '\0')
2061                 return NULL;
2062         return g_strdup (buf);
2063 #else
2064         return get_process_name_from_proc (pid);
2065 #endif
2066 }
2067
2068 /*
2069  * wapi_process_set_cli_launcher:
2070  *
2071  *   Set the full path of the runtime executable used to launch managed exe's.
2072  */
2073 void
2074 wapi_process_set_cli_launcher (char *path)
2075 {
2076         g_free (cli_launcher);
2077         cli_launcher = path ? g_strdup (path) : NULL;
2078 }
2079
2080 static guint32
2081 get_module_name (gpointer process, gpointer module,
2082                                  gunichar2 *basename, guint32 size,
2083                                  gboolean base)
2084 {
2085         WapiHandle_process *process_handle;
2086         pid_t pid;
2087         gunichar2 *procname;
2088         char *procname_ext = NULL;
2089         glong len;
2090         gsize bytes;
2091 #if !defined(__OpenBSD__) && !defined(PLATFORM_MACOSX) && !defined(__FreeBSD__)
2092         FILE *fp;
2093 #endif
2094         GSList *mods = NULL;
2095         WapiProcModule *found_module;
2096         guint32 count;
2097         int i;
2098         char *proc_name = NULL;
2099         
2100         DEBUG ("%s: Getting module base name, process handle %p module %p",
2101                    __func__, process, module);
2102
2103         size = size * sizeof (gunichar2); /* adjust for unicode characters */
2104
2105         if (basename == NULL || size == 0)
2106                 return 0;
2107         
2108         if (WAPI_IS_PSEUDO_PROCESS_HANDLE (process)) {
2109                 /* This is a pseudo handle */
2110                 pid = (pid_t)WAPI_HANDLE_TO_PID (process);
2111                 proc_name = get_process_name_from_proc (pid);
2112         } else {
2113                 process_handle = lookup_process_handle (process);
2114                 if (!process_handle) {
2115                         DEBUG ("%s: Can't find process %p", __func__,
2116                                    process);
2117                         
2118                         return 0;
2119                 }
2120                 pid = process_handle->id;
2121                 proc_name = g_strdup (process_handle->proc_name);
2122         }
2123
2124         /* Look up the address in /proc/<pid>/maps */
2125 #if defined(PLATFORM_MACOSX) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__HAIKU__)
2126         mods = load_modules ();
2127 #else
2128         fp = open_process_map (pid, "r");
2129         if (fp == NULL) {
2130                 if (errno == EACCES && module == NULL && base == TRUE) {
2131                         procname_ext = get_process_name_from_proc (pid);
2132                 } else {
2133                         /* No /proc/<pid>/maps, so just return failure
2134                          * for now
2135                          */
2136                         g_free (proc_name);
2137                         return 0;
2138                 }
2139         } else {
2140                 mods = load_modules (fp);
2141                 fclose (fp);
2142         }
2143 #endif
2144         count = g_slist_length (mods);
2145
2146         /* If module != NULL compare the address.
2147          * If module == NULL we are looking for the main module.
2148          * The best we can do for now check it the module name end with the process name.
2149          */
2150         for (i = 0; i < count; i++) {
2151                 found_module = (WapiProcModule *)g_slist_nth_data (mods, i);
2152                 if (procname_ext == NULL &&
2153                         ((module == NULL && match_procname_to_modulename (proc_name, found_module->filename)) ||
2154                          (module != NULL && found_module->address_start == module))) {
2155                         if (base)
2156                                 procname_ext = g_path_get_basename (found_module->filename);
2157                         else
2158                                 procname_ext = g_strdup (found_module->filename);
2159                 }
2160
2161                 free_procmodule (found_module);
2162         }
2163
2164         if (procname_ext == NULL) {
2165                 /* If it's *still* null, we might have hit the
2166                  * case where reading /proc/$pid/maps gives an
2167                  * empty file for this user.
2168                  */
2169                 procname_ext = get_process_name_from_proc (pid);
2170         }
2171
2172         g_slist_free (mods);
2173         g_free (proc_name);
2174
2175         if (procname_ext) {
2176                 DEBUG ("%s: Process name is [%s]", __func__,
2177                            procname_ext);
2178
2179                 procname = mono_unicode_from_external (procname_ext, &bytes);
2180                 if (procname == NULL) {
2181                         /* bugger */
2182                         g_free (procname_ext);
2183                         return 0;
2184                 }
2185                 
2186                 len = (bytes / 2);
2187                 
2188                 /* Add the terminator */
2189                 bytes += 2;
2190                 
2191                 if (size < bytes) {
2192                         DEBUG ("%s: Size %d smaller than needed (%ld); truncating", __func__, size, bytes);
2193
2194                         memcpy (basename, procname, size);
2195                 } else {
2196                         DEBUG ("%s: Size %d larger than needed (%ld)",
2197                                    __func__, size, bytes);
2198
2199                         memcpy (basename, procname, bytes);
2200                 }
2201                 
2202                 g_free (procname);
2203                 g_free (procname_ext);
2204                 
2205                 return len;
2206         }
2207         
2208         return 0;
2209 }
2210
2211 static guint32
2212 get_module_filename (gpointer process, gpointer module,
2213                                          gunichar2 *basename, guint32 size)
2214 {
2215         int pid, len;
2216         gsize bytes;
2217         char *path;
2218         gunichar2 *proc_path;
2219         
2220         size *= sizeof (gunichar2); /* adjust for unicode characters */
2221
2222         if (basename == NULL || size == 0)
2223                 return 0;
2224
2225         pid = GetProcessId (process);
2226
2227         path = wapi_process_get_path (pid);
2228         if (path == NULL)
2229                 return 0;
2230
2231         proc_path = mono_unicode_from_external (path, &bytes);
2232         g_free (path);
2233
2234         if (proc_path == NULL)
2235                 return 0;
2236
2237         len = (bytes / 2);
2238         
2239         /* Add the terminator */
2240         bytes += 2;
2241
2242         if (size < bytes) {
2243                 DEBUG ("%s: Size %d smaller than needed (%ld); truncating", __func__, size, bytes);
2244
2245                 memcpy (basename, proc_path, size);
2246         } else {
2247                 DEBUG ("%s: Size %d larger than needed (%ld)",
2248                            __func__, size, bytes);
2249
2250                 memcpy (basename, proc_path, bytes);
2251         }
2252
2253         g_free (proc_path);
2254
2255         return len;
2256 }
2257
2258 guint32
2259 GetModuleBaseName (gpointer process, gpointer module,
2260                                    gunichar2 *basename, guint32 size)
2261 {
2262         return get_module_name (process, module, basename, size, TRUE);
2263 }
2264
2265 guint32
2266 GetModuleFileNameEx (gpointer process, gpointer module,
2267                                          gunichar2 *filename, guint32 size)
2268 {
2269         return get_module_filename (process, module, filename, size);
2270 }
2271
2272 gboolean
2273 GetModuleInformation (gpointer process, gpointer module,
2274                                           WapiModuleInfo *modinfo, guint32 size)
2275 {
2276         WapiHandle_process *process_handle;
2277         pid_t pid;
2278 #if !defined(__OpenBSD__) && !defined(PLATFORM_MACOSX) && !defined(__FreeBSD__)
2279         FILE *fp;
2280 #endif
2281         GSList *mods = NULL;
2282         WapiProcModule *found_module;
2283         guint32 count;
2284         int i;
2285         gboolean ret = FALSE;
2286         char *proc_name = NULL;
2287         
2288         DEBUG ("%s: Getting module info, process handle %p module %p",
2289                    __func__, process, module);
2290
2291         if (modinfo == NULL || size < sizeof (WapiModuleInfo))
2292                 return FALSE;
2293         
2294         if (WAPI_IS_PSEUDO_PROCESS_HANDLE (process)) {
2295                 pid = (pid_t)WAPI_HANDLE_TO_PID (process);
2296                 proc_name = get_process_name_from_proc (pid);
2297         } else {
2298                 process_handle = lookup_process_handle (process);
2299                 if (!process_handle) {
2300                         DEBUG ("%s: Can't find process %p", __func__,
2301                                    process);
2302                         
2303                         return FALSE;
2304                 }
2305                 pid = process_handle->id;
2306                 proc_name = g_strdup (process_handle->proc_name);
2307         }
2308
2309 #if defined(PLATFORM_MACOSX) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__HAIKU__)
2310         mods = load_modules ();
2311 #else
2312         /* Look up the address in /proc/<pid>/maps */
2313         if ((fp = open_process_map (pid, "r")) == NULL) {
2314                 /* No /proc/<pid>/maps, so just return failure
2315                  * for now
2316                  */
2317                 g_free (proc_name);
2318                 return FALSE;
2319         }
2320         mods = load_modules (fp);
2321         fclose (fp);
2322 #endif
2323         count = g_slist_length (mods);
2324
2325         /* If module != NULL compare the address.
2326          * If module == NULL we are looking for the main module.
2327          * The best we can do for now check it the module name end with the process name.
2328          */
2329         for (i = 0; i < count; i++) {
2330                         found_module = (WapiProcModule *)g_slist_nth_data (mods, i);
2331                         if (ret == FALSE &&
2332                                 ((module == NULL && match_procname_to_modulename (proc_name, found_module->filename)) ||
2333                                  (module != NULL && found_module->address_start == module))) {
2334                                 modinfo->lpBaseOfDll = found_module->address_start;
2335                                 modinfo->SizeOfImage = (gsize)(found_module->address_end) - (gsize)(found_module->address_start);
2336                                 modinfo->EntryPoint = found_module->address_offset;
2337                                 ret = TRUE;
2338                         }
2339
2340                         free_procmodule (found_module);
2341         }
2342
2343         g_slist_free (mods);
2344         g_free (proc_name);
2345
2346         return ret;
2347 }
2348
2349 gboolean
2350 GetProcessWorkingSetSize (gpointer process, size_t *min, size_t *max)
2351 {
2352         WapiHandle_process *process_handle;
2353         
2354         if (min == NULL || max == NULL)
2355                 /* Not sure if w32 allows NULLs here or not */
2356                 return FALSE;
2357         
2358         if (WAPI_IS_PSEUDO_PROCESS_HANDLE (process))
2359                 /* This is a pseudo handle, so just fail for now */
2360                 return FALSE;
2361         
2362         process_handle = lookup_process_handle (process);
2363         if (!process_handle) {
2364                 DEBUG ("%s: Can't find process %p", __func__, process);
2365                 
2366                 return FALSE;
2367         }
2368
2369         *min = process_handle->min_working_set;
2370         *max = process_handle->max_working_set;
2371         
2372         return TRUE;
2373 }
2374
2375 gboolean
2376 SetProcessWorkingSetSize (gpointer process, size_t min, size_t max)
2377 {
2378         WapiHandle_process *process_handle;
2379
2380         if (WAPI_IS_PSEUDO_PROCESS_HANDLE (process))
2381                 /* This is a pseudo handle, so just fail for now
2382                  */
2383                 return FALSE;
2384
2385         process_handle = lookup_process_handle (process);
2386         if (!process_handle) {
2387                 DEBUG ("%s: Can't find process %p", __func__, process);
2388                 
2389                 return FALSE;
2390         }
2391
2392         process_handle->min_working_set = min;
2393         process_handle->max_working_set = max;
2394         
2395         return TRUE;
2396 }
2397
2398
2399 gboolean
2400 TerminateProcess (gpointer process, gint32 exitCode)
2401 {
2402 #if defined(HAVE_KILL)
2403         WapiHandle_process *process_handle;
2404         int signo;
2405         int ret;
2406         pid_t pid;
2407         
2408         if (WAPI_IS_PSEUDO_PROCESS_HANDLE (process)) {
2409                 /* This is a pseudo handle */
2410                 pid = (pid_t)WAPI_HANDLE_TO_PID (process);
2411         } else {
2412                 process_handle = lookup_process_handle (process);
2413                 if (!process_handle) {
2414                         DEBUG ("%s: Can't find process %p", __func__, process);
2415                         SetLastError (ERROR_INVALID_HANDLE);
2416                         return FALSE;
2417                 }
2418                 pid = process_handle->id;
2419         }
2420
2421         signo = (exitCode == -1) ? SIGKILL : SIGTERM;
2422         ret = kill (pid, signo);
2423         if (ret == -1) {
2424                 switch (errno) {
2425                 case EINVAL:
2426                         SetLastError (ERROR_INVALID_PARAMETER);
2427                         break;
2428                 case EPERM:
2429                         SetLastError (ERROR_ACCESS_DENIED);
2430                         break;
2431                 case ESRCH:
2432                         SetLastError (ERROR_PROC_NOT_FOUND);
2433                         break;
2434                 default:
2435                         SetLastError (ERROR_GEN_FAILURE);
2436                 }
2437         }
2438         
2439         return (ret == 0);
2440 #else
2441         g_error ("kill() is not supported by this platform");
2442         return FALSE;
2443 #endif
2444 }
2445
2446 guint32
2447 GetPriorityClass (gpointer process)
2448 {
2449 #ifdef HAVE_GETPRIORITY
2450         WapiHandle_process *process_handle;
2451         int ret;
2452         pid_t pid;
2453         
2454         if (WAPI_IS_PSEUDO_PROCESS_HANDLE (process)) {
2455                 /* This is a pseudo handle */
2456                 pid = (pid_t)WAPI_HANDLE_TO_PID (process);
2457         } else {
2458                 process_handle = lookup_process_handle (process);
2459                 if (!process_handle) {
2460                         SetLastError (ERROR_INVALID_HANDLE);
2461                         return FALSE;
2462                 }
2463                 pid = process_handle->id;
2464         }
2465
2466         errno = 0;
2467         ret = getpriority (PRIO_PROCESS, pid);
2468         if (ret == -1 && errno != 0) {
2469                 switch (errno) {
2470                 case EPERM:
2471                 case EACCES:
2472                         SetLastError (ERROR_ACCESS_DENIED);
2473                         break;
2474                 case ESRCH:
2475                         SetLastError (ERROR_PROC_NOT_FOUND);
2476                         break;
2477                 default:
2478                         SetLastError (ERROR_GEN_FAILURE);
2479                 }
2480                 return FALSE;
2481         }
2482
2483         if (ret == 0)
2484                 return NORMAL_PRIORITY_CLASS;
2485         else if (ret < -15)
2486                 return REALTIME_PRIORITY_CLASS;
2487         else if (ret < -10)
2488                 return HIGH_PRIORITY_CLASS;
2489         else if (ret < 0)
2490                 return ABOVE_NORMAL_PRIORITY_CLASS;
2491         else if (ret > 10)
2492                 return IDLE_PRIORITY_CLASS;
2493         else if (ret > 0)
2494                 return BELOW_NORMAL_PRIORITY_CLASS;
2495
2496         return NORMAL_PRIORITY_CLASS;
2497 #else
2498         SetLastError (ERROR_NOT_SUPPORTED);
2499         return 0;
2500 #endif
2501 }
2502
2503 gboolean
2504 SetPriorityClass (gpointer process, guint32  priority_class)
2505 {
2506 #ifdef HAVE_SETPRIORITY
2507         WapiHandle_process *process_handle;
2508         int ret;
2509         int prio;
2510         pid_t pid;
2511         
2512         if (WAPI_IS_PSEUDO_PROCESS_HANDLE (process)) {
2513                 /* This is a pseudo handle */
2514                 pid = (pid_t)WAPI_HANDLE_TO_PID (process);
2515         } else {
2516                 process_handle = lookup_process_handle (process);
2517                 if (!process_handle) {
2518                         SetLastError (ERROR_INVALID_HANDLE);
2519                         return FALSE;
2520                 }
2521                 pid = process_handle->id;
2522         }
2523
2524         switch (priority_class) {
2525         case IDLE_PRIORITY_CLASS:
2526                 prio = 19;
2527                 break;
2528         case BELOW_NORMAL_PRIORITY_CLASS:
2529                 prio = 10;
2530                 break;
2531         case NORMAL_PRIORITY_CLASS:
2532                 prio = 0;
2533                 break;
2534         case ABOVE_NORMAL_PRIORITY_CLASS:
2535                 prio = -5;
2536                 break;
2537         case HIGH_PRIORITY_CLASS:
2538                 prio = -11;
2539                 break;
2540         case REALTIME_PRIORITY_CLASS:
2541                 prio = -20;
2542                 break;
2543         default:
2544                 SetLastError (ERROR_INVALID_PARAMETER);
2545                 return FALSE;
2546         }
2547
2548         ret = setpriority (PRIO_PROCESS, pid, prio);
2549         if (ret == -1) {
2550                 switch (errno) {
2551                 case EPERM:
2552                 case EACCES:
2553                         SetLastError (ERROR_ACCESS_DENIED);
2554                         break;
2555                 case ESRCH:
2556                         SetLastError (ERROR_PROC_NOT_FOUND);
2557                         break;
2558                 default:
2559                         SetLastError (ERROR_GEN_FAILURE);
2560                 }
2561         }
2562
2563         return ret == 0;
2564 #else
2565         SetLastError (ERROR_NOT_SUPPORTED);
2566         return FALSE;
2567 #endif
2568 }
2569
2570 static void
2571 mono_processes_cleanup (void)
2572 {
2573         struct MonoProcess *mp;
2574         struct MonoProcess *prev = NULL;
2575         GSList *finished = NULL;
2576         GSList *l;
2577         gpointer unref_handle;
2578
2579         DEBUG ("%s", __func__);
2580
2581         /* Ensure we're not in here in multiple threads at once, nor recursive. */
2582         if (InterlockedCompareExchange (&mono_processes_cleaning_up, 1, 0) != 0)
2583                 return;
2584
2585         for (mp = mono_processes; mp; mp = mp->next) {
2586                 if (mp->pid == 0 && mp->handle) {
2587                         /* This process has exited and we need to remove the artifical ref
2588                          * on the handle */
2589                         mono_os_mutex_lock (&mono_processes_mutex);
2590                         unref_handle = mp->handle;
2591                         mp->handle = NULL;
2592                         mono_os_mutex_unlock (&mono_processes_mutex);
2593                         if (unref_handle)
2594                                 _wapi_handle_unref (unref_handle);
2595                 }
2596         }
2597
2598         /*
2599          * Remove processes which exited from the mono_processes list.
2600          * We need to synchronize with the sigchld handler here, which runs
2601          * asynchronously. The handler requires that the mono_processes list
2602          * remain valid.
2603          */
2604         mono_os_mutex_lock (&mono_processes_mutex);
2605
2606         mp = mono_processes;
2607         while (mp) {
2608                 if (mp->handle_count == 0 && mp->freeable) {
2609                         /*
2610                          * Unlink the entry.
2611                          * This code can run parallel with the sigchld handler, but the
2612                          * modifications it makes are safe.
2613                          */
2614                         if (mp == mono_processes)
2615                                 mono_processes = mp->next;
2616                         else
2617                                 prev->next = mp->next;
2618                         finished = g_slist_prepend (finished, mp);
2619
2620                         mp = mp->next;
2621                 } else {
2622                         prev = mp;
2623                         mp = mp->next;
2624                 }
2625         }
2626
2627         mono_memory_barrier ();
2628
2629         for (l = finished; l; l = l->next) {
2630                 /*
2631                  * All the entries in the finished list are unlinked from mono_processes, and
2632                  * they have the 'finished' flag set, which means the sigchld handler is done
2633                  * accessing them.
2634                  */
2635                 mp = (MonoProcess *)l->data;
2636                 mono_os_sem_destroy (&mp->exit_sem);
2637                 g_free (mp);
2638         }
2639         g_slist_free (finished);
2640
2641         mono_os_mutex_unlock (&mono_processes_mutex);
2642
2643         DEBUG ("%s done", __func__);
2644
2645         InterlockedDecrement (&mono_processes_cleaning_up);
2646 }
2647
2648 static void
2649 process_close (gpointer handle, gpointer data)
2650 {
2651         WapiHandle_process *process_handle;
2652
2653         DEBUG ("%s", __func__);
2654
2655         process_handle = (WapiHandle_process *) data;
2656         g_free (process_handle->proc_name);
2657         process_handle->proc_name = NULL;
2658         if (process_handle->mono_process)
2659                 InterlockedDecrement (&process_handle->mono_process->handle_count);
2660         mono_processes_cleanup ();
2661 }
2662
2663 #if HAVE_SIGACTION
2664 MONO_SIGNAL_HANDLER_FUNC (static, mono_sigchld_signal_handler, (int _dummy, siginfo_t *info, void *context))
2665 {
2666         int status;
2667         int pid;
2668         struct MonoProcess *p;
2669
2670         DEBUG ("SIG CHILD handler for pid: %i\n", info->si_pid);
2671
2672         do {
2673                 do {
2674                         pid = waitpid (-1, &status, WNOHANG);
2675                 } while (pid == -1 && errno == EINTR);
2676
2677                 if (pid <= 0)
2678                         break;
2679
2680                 DEBUG ("child ended: %i", pid);
2681
2682                 /*
2683                  * This can run concurrently with the code in the rest of this module.
2684                  */
2685                 for (p = mono_processes; p; p = p->next) {
2686                         if (p->pid == pid) {
2687                                 break;
2688                         }
2689                 }
2690                 if (p) {
2691                         p->pid = 0; /* this pid doesn't exist anymore, clear it */
2692                         p->status = status;
2693                         mono_os_sem_post (&p->exit_sem);
2694                         mono_memory_barrier ();
2695                         /* Mark this as freeable, the pointer becomes invalid afterwards */
2696                         p->freeable = TRUE;
2697                 }
2698         } while (1);
2699
2700         DEBUG ("SIG CHILD handler: done looping.");
2701 }
2702
2703 #endif
2704
2705 static void
2706 process_add_sigchld_handler (void)
2707 {
2708 #if HAVE_SIGACTION
2709         struct sigaction sa;
2710
2711         sa.sa_sigaction = mono_sigchld_signal_handler;
2712         sigemptyset (&sa.sa_mask);
2713         sa.sa_flags = SA_NOCLDSTOP | SA_SIGINFO;
2714         g_assert (sigaction (SIGCHLD, &sa, &previous_chld_sa) != -1);
2715         DEBUG ("Added SIGCHLD handler");
2716 #endif
2717 }
2718
2719 static guint32
2720 process_wait (gpointer handle, guint32 timeout, gboolean alertable)
2721 {
2722         WapiHandle_process *process_handle;
2723         pid_t pid G_GNUC_UNUSED, ret;
2724         int status;
2725         guint32 start;
2726         guint32 now;
2727         struct MonoProcess *mp;
2728
2729         /* FIXME: We can now easily wait on processes that aren't our own children,
2730          * but WaitFor*Object won't call us for pseudo handles. */
2731         g_assert ((GPOINTER_TO_UINT (handle) & _WAPI_PROCESS_UNHANDLED) != _WAPI_PROCESS_UNHANDLED);
2732
2733         DEBUG ("%s (%p, %u)", __func__, handle, timeout);
2734
2735         process_handle = lookup_process_handle (handle);
2736         if (!process_handle) {
2737                 g_warning ("%s: error looking up process handle %p", __func__, handle);
2738                 return WAIT_FAILED;
2739         }
2740
2741         if (process_handle->exited) {
2742                 /* We've already done this one */
2743                 DEBUG ("%s (%p, %u): Process already exited", __func__, handle, timeout);
2744                 return WAIT_OBJECT_0;
2745         }
2746
2747         pid = process_handle->id;
2748
2749         DEBUG ("%s (%p, %u): PID: %d", __func__, handle, timeout, pid);
2750
2751         /* We don't need to lock mono_processes here, the entry
2752          * has a handle_count > 0 which means it will not be freed. */
2753         mp = process_handle->mono_process;
2754         g_assert (mp);
2755
2756         start = mono_msec_ticks ();
2757         now = start;
2758
2759         while (1) {
2760                 if (timeout != INFINITE) {
2761                         DEBUG ("%s (%p, %u): waiting on semaphore for %li ms...", 
2762                                    __func__, handle, timeout, (timeout - (now - start)));
2763                         ret = mono_os_sem_timedwait (&mp->exit_sem, (timeout - (now - start)), alertable ? MONO_SEM_FLAGS_ALERTABLE : MONO_SEM_FLAGS_NONE);
2764                 } else {
2765                         DEBUG ("%s (%p, %u): waiting on semaphore forever...", 
2766                                    __func__, handle, timeout);
2767                         ret = mono_os_sem_wait (&mp->exit_sem, alertable ? MONO_SEM_FLAGS_ALERTABLE : MONO_SEM_FLAGS_NONE);
2768                 }
2769
2770                 if (ret == -1 && errno != EINTR && errno != ETIMEDOUT) {
2771                         DEBUG ("%s (%p, %u): sem_timedwait failure: %s", 
2772                                    __func__, handle, timeout, g_strerror (errno));
2773                         /* Should we return a failure here? */
2774                 }
2775
2776                 if (ret == 0) {
2777                         /* Success, process has exited */
2778                         mono_os_sem_post (&mp->exit_sem);
2779                         break;
2780                 }
2781
2782                 if (timeout == 0) {
2783                         DEBUG ("%s (%p, %u): WAIT_TIMEOUT (timeout = 0)", __func__, handle, timeout);
2784                         return WAIT_TIMEOUT;
2785                 }
2786
2787                 now = mono_msec_ticks ();
2788                 if (now - start >= timeout) {
2789                         DEBUG ("%s (%p, %u): WAIT_TIMEOUT", __func__, handle, timeout);
2790                         return WAIT_TIMEOUT;
2791                 }
2792                 
2793                 if (alertable && _wapi_thread_cur_apc_pending ()) {
2794                         DEBUG ("%s (%p, %u): WAIT_IO_COMPLETION", __func__, handle, timeout);
2795                         return WAIT_IO_COMPLETION;
2796                 }
2797         }
2798
2799         /* Process must have exited */
2800         DEBUG ("%s (%p, %u): Waited successfully", __func__, handle, timeout);
2801
2802         ret = _wapi_handle_lock_shared_handles ();
2803         g_assert (ret == 0);
2804
2805         status = mp ? mp->status : 0;
2806         if (WIFSIGNALED (status))
2807                 process_handle->exitstatus = 128 + WTERMSIG (status);
2808         else
2809                 process_handle->exitstatus = WEXITSTATUS (status);
2810         _wapi_time_t_to_filetime (time (NULL), &process_handle->exit_time);
2811
2812         process_handle->exited = TRUE;
2813
2814         DEBUG ("%s (%p, %u): Setting pid %d signalled, exit status %d",
2815                    __func__, handle, timeout, process_handle->id, process_handle->exitstatus);
2816
2817         _wapi_handle_set_signal_state (handle, TRUE, TRUE);
2818
2819         _wapi_handle_unlock_shared_handles ();
2820
2821         return WAIT_OBJECT_0;
2822 }
2823
2824 void
2825 wapi_processes_cleanup (void)
2826 {
2827         g_free (cli_launcher);
2828 }