Merge remote-tracking branch 'mfoliveira/ppc64el-v2'
[mono.git] / eglib / src / gspawn.c
1 /*
2  * Spawning processes.
3  *
4  * Author:
5  *   Gonzalo Paniagua Javier (gonzalo@novell.com
6  *
7  * (C) 2006 Novell, Inc.
8  *
9  * Permission is hereby granted, free of charge, to any person obtaining
10  * a copy of this software and associated documentation files (the
11  * "Software"), to deal in the Software without restriction, including
12  * without limitation the rights to use, copy, modify, merge, publish,
13  * distribute, sublicense, and/or sell copies of the Software, and to
14  * permit persons to whom the Software is furnished to do so, subject to
15  * the following conditions:
16  *
17  * The above copyright notice and this permission notice shall be
18  * included in all copies or substantial portions of the Software.
19  *
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27  */
28 #include <config.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <errno.h>
32 #include <fcntl.h>
33 #include <sys/types.h>
34
35 #include <glib.h>
36
37 #ifdef HAVE_UNISTD_H
38 #ifndef __USE_GNU
39 #define __USE_GNU
40 #endif
41 #include <unistd.h>
42 #endif
43
44 #ifdef HAVE_SYS_SELECT_H
45 #include <sys/select.h>
46 #endif
47
48 #ifdef HAVE_SYS_TIME_H
49 #include <sys/time.h>
50 #endif
51
52 #ifdef HAVE_SYS_WAIT_H
53 #include <sys/wait.h>
54 #endif
55
56 #ifdef HAVE_SYS_RESOURCE_H
57 #  include <sys/resource.h>
58 #endif
59
60 #ifdef G_OS_WIN32
61 #include <io.h>
62 #include <winsock2.h>
63 #define open _open
64 #define close _close
65 #define read _read
66 #define write _write
67 /* windows pipe api details: http://msdn2.microsoft.com/en-us/library/edze9h7e(VS.80).aspx */
68 #define pipe(x) _pipe(x, 256, 0)
69 #endif
70
71 #define set_error(msg, ...) do { if (error != NULL) *error = g_error_new (G_LOG_DOMAIN, 1, msg, __VA_ARGS__); } while (0)
72 #define set_error_cond(cond,msg, ...) do { if ((cond) && error != NULL) *error = g_error_new (G_LOG_DOMAIN, 1, msg, __VA_ARGS__); } while (0)
73 #define set_error_status(status,msg, ...) do { if (error != NULL) *error = g_error_new (G_LOG_DOMAIN, status, msg, __VA_ARGS__); } while (0)
74 #define NO_INTR(var,cmd) do { (var) = (cmd); } while ((var) == -1 && errno == EINTR)
75 #define CLOSE_PIPE(p) do { close (p [0]); close (p [1]); } while (0)
76
77 #if defined(__APPLE__) && !defined (__arm__)
78 /* Apple defines this in crt_externs.h but doesn't provide that header for 
79  * arm-apple-darwin9.  We'll manually define the symbol on Apple as it does
80  * in fact exist on all implementations (so far) 
81  */
82 gchar ***_NSGetEnviron();
83 #define environ (*_NSGetEnviron())
84 #elif defined(_MSC_VER)
85 /* MS defines this in stdlib.h */
86 #else
87 extern char **environ;
88 #endif
89
90 #ifndef G_OS_WIN32
91 static int
92 safe_read (int fd, gchar *buffer, gint count, GError **error)
93 {
94         int res;
95
96         NO_INTR (res, read (fd, buffer, count));
97         set_error_cond (res == -1, "%s", "Error reading from pipe.");
98         return res;
99 }
100
101 static int
102 read_pipes (int outfd, gchar **out_str, int errfd, gchar **err_str, GError **error)
103 {
104         fd_set rfds;
105         int res;
106         gboolean out_closed;
107         gboolean err_closed;
108         GString *out = NULL;
109         GString *err = NULL;
110         gchar *buffer = NULL;
111         gint nread;
112
113         out_closed = (outfd < 0);
114         err_closed = (errfd < 0);
115         if (out_str) {
116                 *out_str = NULL;
117                 out = g_string_new ("");
118         }       
119
120         if (err_str) {
121                 *err_str = NULL;
122                 err = g_string_new ("");
123         }       
124
125         do {
126                 if (out_closed && err_closed)
127                         break;
128
129 #ifdef _MSC_VER
130 #pragma warning(push)
131 #pragma warning(disable:4389)
132 #endif
133
134                 FD_ZERO (&rfds);
135                 if (!out_closed && outfd >= 0)
136                         FD_SET (outfd, &rfds);
137                 if (!err_closed && errfd >= 0)
138                         FD_SET (errfd, &rfds);
139
140 #ifdef _MSC_VER
141 #pragma warning(pop)
142 #endif
143
144                 res = select (MAX (outfd, errfd) + 1, &rfds, NULL, NULL, NULL);
145                 if (res > 0) {
146                         if (buffer == NULL)
147                                 buffer = g_malloc (1024);
148                         if (!out_closed && FD_ISSET (outfd, &rfds)) {
149                                 nread = safe_read (outfd, buffer, 1024, error);
150                                 if (nread < 0) {
151                                         close (errfd);
152                                         close (outfd);
153                                         return -1;
154                                 }
155                                 g_string_append_len (out, buffer, nread);
156                                 if (nread <= 0) {
157                                         out_closed = TRUE;
158                                         close (outfd);
159                                 }
160                         }
161
162                         if (!err_closed && FD_ISSET (errfd, &rfds)) {
163                                 nread = safe_read (errfd, buffer, 1024, error);
164                                 if (nread < 0) {
165                                         close (errfd);
166                                         close (outfd);
167                                         return -1;
168                                 }
169                                 g_string_append_len (err, buffer, nread);
170                                 if (nread <= 0) {
171                                         err_closed = TRUE;
172                                         close (errfd);
173                                 }
174                         }
175                 }
176         } while (res > 0 || (res == -1 && errno == EINTR));
177
178         g_free (buffer);
179         if (out_str)
180                 *out_str = g_string_free (out, FALSE);
181
182         if (err_str)
183                 *err_str = g_string_free (err, FALSE);
184
185         return 0;
186 }
187
188 static gboolean
189 create_pipe (int *fds, GError **error)
190 {
191         if (pipe (fds) == -1) {
192                 set_error ("%s", "Error creating pipe.");
193                 return FALSE;
194         }
195         return TRUE;
196 }
197 #endif /* G_OS_WIN32 */
198
199 static int
200 write_all (int fd, const void *vbuf, size_t n)
201 {
202         const char *buf = (const char *) vbuf;
203         size_t nwritten = 0;
204         int w;
205         
206         do {
207                 do {
208                         w = write (fd, buf + nwritten, n - nwritten);
209                 } while (w == -1 && errno == EINTR);
210                 
211                 if (w == -1)
212                         return -1;
213                 
214                 nwritten += w;
215         } while (nwritten < n);
216         
217         return nwritten;
218 }
219
220 #ifndef G_OS_WIN32
221 static int
222 g_getdtablesize (void)
223 {
224 #ifdef HAVE_GETRLIMIT
225         struct rlimit limit;
226         int res;
227
228         res = getrlimit (RLIMIT_NOFILE, &limit);
229         g_assert (res == 0);
230         return limit.rlim_cur;
231 #else
232         return getdtablesize ();
233 #endif
234 }
235 #endif
236
237 gboolean
238 g_spawn_command_line_sync (const gchar *command_line,
239                                 gchar **standard_output,
240                                 gchar **standard_error,
241                                 gint *exit_status,
242                                 GError **error)
243 {
244 #ifdef G_OS_WIN32
245 #else
246         pid_t pid;
247         gchar **argv;
248         gint argc;
249         int stdout_pipe [2] = { -1, -1 };
250         int stderr_pipe [2] = { -1, -1 };
251         int status;
252         int res;
253         
254         if (!g_shell_parse_argv (command_line, &argc, &argv, error))
255                 return FALSE;
256
257         if (standard_output && !create_pipe (stdout_pipe, error))
258                 return FALSE;
259
260         if (standard_error && !create_pipe (stderr_pipe, error)) {
261                 if (standard_output) {
262                         CLOSE_PIPE (stdout_pipe);
263                 }
264                 return FALSE;
265         }
266
267         pid = fork ();
268         if (pid == 0) {
269                 gint i;
270
271                 if (standard_output) {
272                         close (stdout_pipe [0]);
273                         dup2 (stdout_pipe [1], STDOUT_FILENO);
274                 }
275
276                 if (standard_error) {
277                         close (stderr_pipe [0]);
278                         dup2 (stderr_pipe [1], STDERR_FILENO);
279                 }
280                 for (i = g_getdtablesize () - 1; i >= 3; i--)
281                         close (i);
282
283                 /* G_SPAWN_SEARCH_PATH is always enabled for g_spawn_command_line_sync */
284                 if (!g_path_is_absolute (argv [0])) {
285                         gchar *arg0;
286
287                         arg0 = g_find_program_in_path (argv [0]);
288                         if (arg0 == NULL) {
289                                 exit (1);
290                         }
291                         //g_free (argv [0]);
292                         argv [0] = arg0;
293                 }
294                 execv (argv [0], argv);
295                 exit (1); /* TODO: What now? */
296         }
297
298         g_strfreev (argv);
299         if (standard_output)
300                 close (stdout_pipe [1]);
301
302         if (standard_error)
303                 close (stderr_pipe [1]);
304
305         if (standard_output || standard_error) {
306                 res = read_pipes (stdout_pipe [0], standard_output, stderr_pipe [0], standard_error, error);
307                 if (res) {
308                         waitpid (pid, &status, WNOHANG); /* avoid zombie */
309                         return FALSE;
310                 }
311         }
312
313         NO_INTR (res, waitpid (pid, &status, 0));
314
315         /* TODO: What if error? */
316         if (WIFEXITED (status) && exit_status) {
317                 *exit_status = WEXITSTATUS (status);
318         }
319 #endif
320         return TRUE;
321 }
322
323 /*
324  * This is the only use we have in mono/metadata
325 !g_spawn_async_with_pipes (NULL, (char**)addr_argv, NULL, G_SPAWN_SEARCH_PATH, NULL, NULL, &child_pid, &ch_in, &ch_out, NULL, NULL)
326 */
327 gboolean
328 g_spawn_async_with_pipes (const gchar *working_directory,
329                         gchar **argv,
330                         gchar **envp,
331                         GSpawnFlags flags,
332                         GSpawnChildSetupFunc child_setup,
333                         gpointer user_data,
334                         GPid *child_pid,
335                         gint *standard_input,
336                         gint *standard_output,
337                         gint *standard_error,
338                         GError **error)
339 {
340 #ifdef G_OS_WIN32
341 #else
342         pid_t pid;
343         int info_pipe [2];
344         int in_pipe [2] = { -1, -1 };
345         int out_pipe [2] = { -1, -1 };
346         int err_pipe [2] = { -1, -1 };
347         int status;
348
349         g_return_val_if_fail (argv != NULL, FALSE); /* Only mandatory arg */
350
351         if (!create_pipe (info_pipe, error))
352                 return FALSE;
353
354         if (standard_output && !create_pipe (out_pipe, error)) {
355                 CLOSE_PIPE (info_pipe);
356                 return FALSE;
357         }
358
359         if (standard_error && !create_pipe (err_pipe, error)) {
360                 CLOSE_PIPE (info_pipe);
361                 CLOSE_PIPE (out_pipe);
362                 return FALSE;
363         }
364
365         if (standard_input && !create_pipe (in_pipe, error)) {
366                 CLOSE_PIPE (info_pipe);
367                 CLOSE_PIPE (out_pipe);
368                 CLOSE_PIPE (err_pipe);
369                 return FALSE;
370         }
371
372         pid = fork ();
373         if (pid == -1) {
374                 CLOSE_PIPE (info_pipe);
375                 CLOSE_PIPE (out_pipe);
376                 CLOSE_PIPE (err_pipe);
377                 CLOSE_PIPE (in_pipe);
378                 set_error ("%s", "Error in fork ()");
379                 return FALSE;
380         }
381
382         if (pid == 0) {
383                 /* No zombie left behind */
384                 if ((flags & G_SPAWN_DO_NOT_REAP_CHILD) == 0) {
385                         pid = fork ();
386                 }
387
388                 if (pid != 0) {
389                         exit (pid == -1 ? 1 : 0);
390                 }  else {
391                         gint i;
392                         int fd;
393                         gchar *arg0;
394                         gchar **actual_args;
395                         gint unused;
396
397                         close (info_pipe [0]);
398                         close (in_pipe [1]);
399                         close (out_pipe [0]);
400                         close (err_pipe [0]);
401
402                         /* when exec* succeeds, we want to close this fd, which will return
403                          * a 0 read on the parent. We're not supposed to keep it open forever.
404                          * If exec fails, we still can write the error to it before closing.
405                          */
406                         fcntl (info_pipe [1], F_SETFD, FD_CLOEXEC);
407
408                         if ((flags & G_SPAWN_DO_NOT_REAP_CHILD) == 0) {
409                                 pid = getpid ();
410                                 NO_INTR (unused, write_all (info_pipe [1], &pid, sizeof (pid_t)));
411                         }
412
413                         if (working_directory && chdir (working_directory) == -1) {
414                                 int err = errno;
415                                 NO_INTR (unused, write_all (info_pipe [1], &err, sizeof (int)));
416                                 exit (0);
417                         }
418
419                         if (standard_output) {
420                                 dup2 (out_pipe [1], STDOUT_FILENO);
421                         } else if ((flags & G_SPAWN_STDOUT_TO_DEV_NULL) != 0) {
422                                 fd = open ("/dev/null", O_WRONLY);
423                                 dup2 (fd, STDOUT_FILENO);
424                         }
425
426                         if (standard_error) {
427                                 dup2 (err_pipe [1], STDERR_FILENO);
428                         } else if ((flags & G_SPAWN_STDERR_TO_DEV_NULL) != 0) {
429                                 fd = open ("/dev/null", O_WRONLY);
430                                 dup2 (fd, STDERR_FILENO);
431                         }
432
433                         if (standard_input) {
434                                 dup2 (in_pipe [0], STDIN_FILENO);
435                         } else if ((flags & G_SPAWN_CHILD_INHERITS_STDIN) == 0) {
436                                 fd = open ("/dev/null", O_RDONLY);
437                                 dup2 (fd, STDIN_FILENO);
438                         }
439
440                         if ((flags & G_SPAWN_LEAVE_DESCRIPTORS_OPEN) != 0) {
441                                 for (i = g_getdtablesize () - 1; i >= 3; i--)
442                                         close (i);
443                         }
444
445                         actual_args = ((flags & G_SPAWN_FILE_AND_ARGV_ZERO) == 0) ? argv : argv + 1;
446                         if (envp == NULL)
447                                 envp = environ;
448
449                         if (child_setup)
450                                 child_setup (user_data);
451
452                         arg0 = argv [0];
453                         if (!g_path_is_absolute (arg0) || (flags & G_SPAWN_SEARCH_PATH) != 0) {
454                                 arg0 = g_find_program_in_path (argv [0]);
455                                 if (arg0 == NULL) {
456                                         int err = ENOENT;
457                                         write_all (info_pipe [1], &err, sizeof (int));
458                                         exit (0);
459                                 }
460                         }
461
462                         execve (arg0, actual_args, envp);
463                         write_all (info_pipe [1], &errno, sizeof (int));
464                         exit (0);
465                 }
466         } else if ((flags & G_SPAWN_DO_NOT_REAP_CHILD) == 0) {
467                 int w;
468                 /* Wait for the first child if two are created */
469                 NO_INTR (w, waitpid (pid, &status, 0));
470                 if (status == 1 || w == -1) {
471                         CLOSE_PIPE (info_pipe);
472                         CLOSE_PIPE (out_pipe);
473                         CLOSE_PIPE (err_pipe);
474                         CLOSE_PIPE (in_pipe);
475                         set_error ("Error in fork (): %d", status);
476                         return FALSE;
477                 }
478         }
479         close (info_pipe [1]);
480         close (in_pipe [0]);
481         close (out_pipe [1]);
482         close (err_pipe [1]);
483
484         if ((flags & G_SPAWN_DO_NOT_REAP_CHILD) == 0) {
485                 int x;
486                 NO_INTR (x, read (info_pipe [0], &pid, sizeof (pid_t))); /* if we read < sizeof (pid_t)... */
487         }
488
489         if (child_pid) {
490                 *child_pid = pid;
491         }
492
493         if (read (info_pipe [0], &status, sizeof (int)) != 0) {
494                 close (info_pipe [0]);
495                 close (in_pipe [0]);
496                 close (out_pipe [1]);
497                 close (err_pipe [1]);
498                 set_error_status (status, "Error in exec (%d -> %s)", status, strerror (status));
499                 return FALSE;
500         }
501
502         close (info_pipe [0]);
503         if (standard_input)
504                 *standard_input = in_pipe [1];
505         if (standard_output)
506                 *standard_output = out_pipe [0];
507         if (standard_error)
508                 *standard_error = err_pipe [0];
509 #endif
510         return TRUE;
511 }
512
513