1 /* gspawn.c - Process launching
3 * Copyright 2000 Red Hat, Inc.
4 * g_execvpe implementation based on GNU libc execvp:
5 * Copyright 1991, 92, 95, 96, 97, 98, 99 Free Software Foundation, Inc.
7 * GLib is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public License as
9 * published by the Free Software Foundation; either version 2 of the
10 * License, or (at your option) any later version.
12 * GLib is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with GLib; see the file COPYING.LIB. If not, write
19 * to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
26 #include <sys/types.h>
33 #include <stdlib.h> /* for fdwalk */
36 #ifdef HAVE_SYS_SELECT_H
37 #include <sys/select.h>
38 #endif /* HAVE_SYS_SELECT_H */
40 #ifdef HAVE_SYS_RESOURCE_H
41 #include <sys/resource.h>
42 #endif /* HAVE_SYS_RESOURCE_H */
46 #include "glib/gstdio.h"
52 #include "gstrfuncs.h"
53 #include "gtestutils.h"
60 * @Short_description: process launching
61 * @Title: Spawning Processes
66 static gint g_execute (const gchar *file,
70 gboolean search_path_from_envp);
72 static gboolean make_pipe (gint p[2],
74 static gboolean fork_exec_with_pipes (gboolean intermediate_child,
75 const gchar *working_directory,
78 gboolean close_descriptors,
80 gboolean search_path_from_envp,
81 gboolean stdout_to_null,
82 gboolean stderr_to_null,
83 gboolean child_inherits_stdin,
84 gboolean file_and_argv_zero,
85 GSpawnChildSetupFunc child_setup,
89 gint *standard_output,
93 G_DEFINE_QUARK (g-exec-error-quark, g_spawn_error)
94 G_DEFINE_QUARK (g-spawn-exit-error-quark, g_spawn_exit_error)
98 * @working_directory: (allow-none): child's current working directory, or %NULL to inherit parent's
99 * @argv: (array zero-terminated=1): child's argument vector
100 * @envp: (array zero-terminated=1) (allow-none): child's environment, or %NULL to inherit parent's
101 * @flags: flags from #GSpawnFlags
102 * @child_setup: (scope async) (allow-none): function to run in the child just before exec()
103 * @user_data: (closure): user data for @child_setup
104 * @child_pid: (out) (allow-none): return location for child process reference, or %NULL
105 * @error: return location for error
107 * See g_spawn_async_with_pipes() for a full description; this function
108 * simply calls the g_spawn_async_with_pipes() without any pipes.
110 * You should call g_spawn_close_pid() on the returned child process
111 * reference when you don't need it any more.
114 * If you are writing a GTK+ application, and the program you
115 * are spawning is a graphical application, too, then you may
116 * want to use gdk_spawn_on_screen() instead to ensure that
117 * the spawned program opens its windows on the right screen.
120 * <note><para> Note that the returned @child_pid on Windows is a
121 * handle to the child process and not its identifier. Process handles
122 * and process identifiers are different concepts on Windows.
125 * Return value: %TRUE on success, %FALSE if error is set
128 g_spawn_async (const gchar *working_directory,
132 GSpawnChildSetupFunc child_setup,
137 g_return_val_if_fail (argv != NULL, FALSE);
139 return g_spawn_async_with_pipes (working_directory,
149 /* Avoids a danger in threaded situations (calling close()
150 * on a file descriptor twice, and another thread has
151 * re-opened it since the first close)
154 close_and_invalidate (gint *fd)
160 (void) g_close (*fd, NULL);
165 /* Some versions of OS X define READ_OK in public headers */
170 READ_FAILED = 0, /* FALSE */
176 read_data (GString *str,
184 bytes = read (fd, buf, 4096);
190 g_string_append_len (str, buf, bytes);
193 else if (errno == EINTR)
202 _("Failed to read data from child process (%s)"),
211 * @working_directory: (allow-none): child's current working directory, or %NULL to inherit parent's
212 * @argv: (array zero-terminated=1): child's argument vector
213 * @envp: (array zero-terminated=1) (allow-none): child's environment, or %NULL to inherit parent's
214 * @flags: flags from #GSpawnFlags
215 * @child_setup: (scope async) (allow-none): function to run in the child just before exec()
216 * @user_data: (closure): user data for @child_setup
217 * @standard_output: (out) (array zero-terminated=1) (element-type guint8) (allow-none): return location for child output, or %NULL
218 * @standard_error: (out) (array zero-terminated=1) (element-type guint8) (allow-none): return location for child error messages, or %NULL
219 * @exit_status: (out) (allow-none): return location for child exit status, as returned by waitpid(), or %NULL
220 * @error: return location for error, or %NULL
222 * Executes a child synchronously (waits for the child to exit before returning).
223 * All output from the child is stored in @standard_output and @standard_error,
224 * if those parameters are non-%NULL. Note that you must set the
225 * %G_SPAWN_STDOUT_TO_DEV_NULL and %G_SPAWN_STDERR_TO_DEV_NULL flags when
226 * passing %NULL for @standard_output and @standard_error.
228 * If @exit_status is non-%NULL, the platform-specific exit status of
229 * the child is stored there; see the documentation of
230 * g_spawn_check_exit_status() for how to use and interpret this.
231 * Note that it is invalid to pass %G_SPAWN_DO_NOT_REAP_CHILD in
234 * If an error occurs, no data is returned in @standard_output,
235 * @standard_error, or @exit_status.
237 * This function calls g_spawn_async_with_pipes() internally; see that
238 * function for full details on the other parameters and details on
239 * how these functions work on Windows.
241 * Return value: %TRUE on success, %FALSE if an error was set.
244 g_spawn_sync (const gchar *working_directory,
248 GSpawnChildSetupFunc child_setup,
250 gchar **standard_output,
251 gchar **standard_error,
260 GString *outstr = NULL;
261 GString *errstr = NULL;
265 g_return_val_if_fail (argv != NULL, FALSE);
266 g_return_val_if_fail (!(flags & G_SPAWN_DO_NOT_REAP_CHILD), FALSE);
267 g_return_val_if_fail (standard_output == NULL ||
268 !(flags & G_SPAWN_STDOUT_TO_DEV_NULL), FALSE);
269 g_return_val_if_fail (standard_error == NULL ||
270 !(flags & G_SPAWN_STDERR_TO_DEV_NULL), FALSE);
272 /* Just to ensure segfaults if callers try to use
273 * these when an error is reported.
276 *standard_output = NULL;
279 *standard_error = NULL;
281 if (!fork_exec_with_pipes (FALSE,
285 !(flags & G_SPAWN_LEAVE_DESCRIPTORS_OPEN),
286 (flags & G_SPAWN_SEARCH_PATH) != 0,
287 (flags & G_SPAWN_SEARCH_PATH_FROM_ENVP) != 0,
288 (flags & G_SPAWN_STDOUT_TO_DEV_NULL) != 0,
289 (flags & G_SPAWN_STDERR_TO_DEV_NULL) != 0,
290 (flags & G_SPAWN_CHILD_INHERITS_STDIN) != 0,
291 (flags & G_SPAWN_FILE_AND_ARGV_ZERO) != 0,
296 standard_output ? &outpipe : NULL,
297 standard_error ? &errpipe : NULL,
301 /* Read data from child. */
307 outstr = g_string_new (NULL);
312 errstr = g_string_new (NULL);
315 /* Read data until we get EOF on both pipes. */
324 FD_SET (outpipe, &fds);
326 FD_SET (errpipe, &fds);
328 ret = select (MAX (outpipe, errpipe) + 1,
331 NULL /* no timeout */);
345 _("Unexpected error in select() reading data from a child process (%s)"),
351 if (outpipe >= 0 && FD_ISSET (outpipe, &fds))
353 switch (read_data (outstr, outpipe, error))
359 close_and_invalidate (&outpipe);
370 if (errpipe >= 0 && FD_ISSET (errpipe, &fds))
372 switch (read_data (errstr, errpipe, error))
378 close_and_invalidate (&errpipe);
390 /* These should only be open still if we had an error. */
393 close_and_invalidate (&outpipe);
395 close_and_invalidate (&errpipe);
397 /* Wait for child to exit, even if we have
402 ret = waitpid (pid, &status, 0);
408 else if (errno == ECHILD)
412 g_warning ("In call to g_spawn_sync(), exit status of a child process was requested but ECHILD was received by waitpid(). Most likely the process is ignoring SIGCHLD, or some other thread is invoking waitpid() with a nonpositive first argument; either behavior can break applications that use g_spawn_sync either directly or indirectly.");
416 /* We don't need the exit status. */
421 if (!failed) /* avoid error pileups */
430 _("Unexpected error in waitpid() (%s)"),
439 g_string_free (outstr, TRUE);
441 g_string_free (errstr, TRUE);
448 *exit_status = status;
451 *standard_output = g_string_free (outstr, FALSE);
454 *standard_error = g_string_free (errstr, FALSE);
461 * g_spawn_async_with_pipes:
462 * @working_directory: (allow-none): child's current working directory, or %NULL to inherit parent's, in the GLib file name encoding
463 * @argv: (array zero-terminated=1): child's argument vector, in the GLib file name encoding
464 * @envp: (array zero-terminated=1) (allow-none): child's environment, or %NULL to inherit parent's, in the GLib file name encoding
465 * @flags: flags from #GSpawnFlags
466 * @child_setup: (scope async) (allow-none): function to run in the child just before exec()
467 * @user_data: (closure): user data for @child_setup
468 * @child_pid: (out) (allow-none): return location for child process ID, or %NULL
469 * @standard_input: (out) (allow-none): return location for file descriptor to write to child's stdin, or %NULL
470 * @standard_output: (out) (allow-none): return location for file descriptor to read child's stdout, or %NULL
471 * @standard_error: (out) (allow-none): return location for file descriptor to read child's stderr, or %NULL
472 * @error: return location for error
474 * Executes a child program asynchronously (your program will not
475 * block waiting for the child to exit). The child program is
476 * specified by the only argument that must be provided, @argv. @argv
477 * should be a %NULL-terminated array of strings, to be passed as the
478 * argument vector for the child. The first string in @argv is of
479 * course the name of the program to execute. By default, the name of
480 * the program must be a full path. If @flags contains the
481 * %G_SPAWN_SEARCH_PATH flag, the <envar>PATH</envar> environment variable
482 * is used to search for the executable. If @flags contains the
483 * %G_SPAWN_SEARCH_PATH_FROM_ENVP flag, the <envar>PATH</envar> variable from
484 * @envp is used to search for the executable.
485 * If both the %G_SPAWN_SEARCH_PATH and %G_SPAWN_SEARCH_PATH_FROM_ENVP
486 * flags are set, the <envar>PATH</envar> variable from @envp takes precedence
487 * over the environment variable.
489 * If the program name is not a full path and %G_SPAWN_SEARCH_PATH flag is not
490 * used, then the program will be run from the current directory (or
491 * @working_directory, if specified); this might be unexpected or even
492 * dangerous in some cases when the current directory is world-writable.
494 * On Windows, note that all the string or string vector arguments to
495 * this function and the other g_spawn*() functions are in UTF-8, the
496 * GLib file name encoding. Unicode characters that are not part of
497 * the system codepage passed in these arguments will be correctly
498 * available in the spawned program only if it uses wide character API
499 * to retrieve its command line. For C programs built with Microsoft's
500 * tools it is enough to make the program have a wmain() instead of
501 * main(). wmain() has a wide character argument vector as parameter.
503 * At least currently, mingw doesn't support wmain(), so if you use
504 * mingw to develop the spawned program, it will have to call the
505 * undocumented function __wgetmainargs() to get the wide character
506 * argument vector and environment. See gspawn-win32-helper.c in the
507 * GLib sources or init.c in the mingw runtime sources for a prototype
508 * for that function. Alternatively, you can retrieve the Win32 system
509 * level wide character command line passed to the spawned program
510 * using the GetCommandLineW() function.
512 * On Windows the low-level child process creation API
513 * <function>CreateProcess()</function> doesn't use argument vectors,
514 * but a command line. The C runtime library's
515 * <function>spawn*()</function> family of functions (which
516 * g_spawn_async_with_pipes() eventually calls) paste the argument
517 * vector elements together into a command line, and the C runtime startup code
518 * does a corresponding reconstruction of an argument vector from the
519 * command line, to be passed to main(). Complications arise when you have
520 * argument vector elements that contain spaces of double quotes. The
521 * <function>spawn*()</function> functions don't do any quoting or
522 * escaping, but on the other hand the startup code does do unquoting
523 * and unescaping in order to enable receiving arguments with embedded
524 * spaces or double quotes. To work around this asymmetry,
525 * g_spawn_async_with_pipes() will do quoting and escaping on argument
526 * vector elements that need it before calling the C runtime
529 * The returned @child_pid on Windows is a handle to the child
530 * process, not its identifier. Process handles and process
531 * identifiers are different concepts on Windows.
533 * @envp is a %NULL-terminated array of strings, where each string
534 * has the form <literal>KEY=VALUE</literal>. This will become
535 * the child's environment. If @envp is %NULL, the child inherits its
536 * parent's environment.
538 * @flags should be the bitwise OR of any flags you want to affect the
539 * function's behaviour. The %G_SPAWN_DO_NOT_REAP_CHILD means that the
540 * child will not automatically be reaped; you must use a child watch to
541 * be notified about the death of the child process. Eventually you must
542 * call g_spawn_close_pid() on the @child_pid, in order to free
543 * resources which may be associated with the child process. (On Unix,
544 * using a child watch is equivalent to calling waitpid() or handling
545 * the <literal>SIGCHLD</literal> signal manually. On Windows, calling g_spawn_close_pid()
546 * is equivalent to calling CloseHandle() on the process handle returned
547 * in @child_pid). See g_child_watch_add().
549 * %G_SPAWN_LEAVE_DESCRIPTORS_OPEN means that the parent's open file
550 * descriptors will be inherited by the child; otherwise all
551 * descriptors except stdin/stdout/stderr will be closed before
552 * calling exec() in the child. %G_SPAWN_SEARCH_PATH
553 * means that <literal>argv[0]</literal> need not be an absolute path, it
554 * will be looked for in the <envar>PATH</envar> environment variable.
555 * %G_SPAWN_SEARCH_PATH_FROM_ENVP means need not be an absolute path, it
556 * will be looked for in the <envar>PATH</envar> variable from @envp. If
557 * both %G_SPAWN_SEARCH_PATH and %G_SPAWN_SEARCH_PATH_FROM_ENVP are used,
558 * the value from @envp takes precedence over the environment.
559 * %G_SPAWN_STDOUT_TO_DEV_NULL means that the child's standard output will
560 * be discarded, instead of going to the same location as the parent's
561 * standard output. If you use this flag, @standard_output must be %NULL.
562 * %G_SPAWN_STDERR_TO_DEV_NULL means that the child's standard error
563 * will be discarded, instead of going to the same location as the parent's
564 * standard error. If you use this flag, @standard_error must be %NULL.
565 * %G_SPAWN_CHILD_INHERITS_STDIN means that the child will inherit the parent's
566 * standard input (by default, the child's standard input is attached to
567 * /dev/null). If you use this flag, @standard_input must be %NULL.
568 * %G_SPAWN_FILE_AND_ARGV_ZERO means that the first element of @argv is
569 * the file to execute, while the remaining elements are the
570 * actual argument vector to pass to the file. Normally
571 * g_spawn_async_with_pipes() uses @argv[0] as the file to execute, and
572 * passes all of @argv to the child.
574 * @child_setup and @user_data are a function and user data. On POSIX
575 * platforms, the function is called in the child after GLib has
576 * performed all the setup it plans to perform (including creating
577 * pipes, closing file descriptors, etc.) but before calling
578 * exec(). That is, @child_setup is called just
579 * before calling exec() in the child. Obviously
580 * actions taken in this function will only affect the child, not the
583 * On Windows, there is no separate fork() and exec()
584 * functionality. Child processes are created and run with a single
585 * API call, CreateProcess(). There is no sensible thing @child_setup
586 * could be used for on Windows so it is ignored and not called.
588 * If non-%NULL, @child_pid will on Unix be filled with the child's
589 * process ID. You can use the process ID to send signals to the
590 * child, or to use g_child_watch_add() (or waitpid()) if you specified the
591 * %G_SPAWN_DO_NOT_REAP_CHILD flag. On Windows, @child_pid will be
592 * filled with a handle to the child process only if you specified the
593 * %G_SPAWN_DO_NOT_REAP_CHILD flag. You can then access the child
594 * process using the Win32 API, for example wait for its termination
595 * with the <function>WaitFor*()</function> functions, or examine its
596 * exit code with GetExitCodeProcess(). You should close the handle
597 * with CloseHandle() or g_spawn_close_pid() when you no longer need it.
599 * If non-%NULL, the @standard_input, @standard_output, @standard_error
600 * locations will be filled with file descriptors for writing to the child's
601 * standard input or reading from its standard output or standard error.
602 * The caller of g_spawn_async_with_pipes() must close these file descriptors
603 * when they are no longer in use. If these parameters are %NULL, the corresponding
604 * pipe won't be created.
606 * If @standard_input is NULL, the child's standard input is attached to
607 * /dev/null unless %G_SPAWN_CHILD_INHERITS_STDIN is set.
609 * If @standard_error is NULL, the child's standard error goes to the same
610 * location as the parent's standard error unless %G_SPAWN_STDERR_TO_DEV_NULL
613 * If @standard_output is NULL, the child's standard output goes to the same
614 * location as the parent's standard output unless %G_SPAWN_STDOUT_TO_DEV_NULL
617 * @error can be %NULL to ignore errors, or non-%NULL to report errors.
618 * If an error is set, the function returns %FALSE. Errors
619 * are reported even if they occur in the child (for example if the
620 * executable in <literal>argv[0]</literal> is not found). Typically
621 * the <literal>message</literal> field of returned errors should be displayed
622 * to users. Possible errors are those from the #G_SPAWN_ERROR domain.
624 * If an error occurs, @child_pid, @standard_input, @standard_output,
625 * and @standard_error will not be filled with valid values.
627 * If @child_pid is not %NULL and an error does not occur then the returned
628 * process reference must be closed using g_spawn_close_pid().
631 * If you are writing a GTK+ application, and the program you
632 * are spawning is a graphical application, too, then you may
633 * want to use gdk_spawn_on_screen_with_pipes() instead to ensure that
634 * the spawned program opens its windows on the right screen.
637 * Return value: %TRUE on success, %FALSE if an error was set
640 g_spawn_async_with_pipes (const gchar *working_directory,
644 GSpawnChildSetupFunc child_setup,
647 gint *standard_input,
648 gint *standard_output,
649 gint *standard_error,
652 g_return_val_if_fail (argv != NULL, FALSE);
653 g_return_val_if_fail (standard_output == NULL ||
654 !(flags & G_SPAWN_STDOUT_TO_DEV_NULL), FALSE);
655 g_return_val_if_fail (standard_error == NULL ||
656 !(flags & G_SPAWN_STDERR_TO_DEV_NULL), FALSE);
657 /* can't inherit stdin if we have an input pipe. */
658 g_return_val_if_fail (standard_input == NULL ||
659 !(flags & G_SPAWN_CHILD_INHERITS_STDIN), FALSE);
661 return fork_exec_with_pipes (!(flags & G_SPAWN_DO_NOT_REAP_CHILD),
665 !(flags & G_SPAWN_LEAVE_DESCRIPTORS_OPEN),
666 (flags & G_SPAWN_SEARCH_PATH) != 0,
667 (flags & G_SPAWN_SEARCH_PATH_FROM_ENVP) != 0,
668 (flags & G_SPAWN_STDOUT_TO_DEV_NULL) != 0,
669 (flags & G_SPAWN_STDERR_TO_DEV_NULL) != 0,
670 (flags & G_SPAWN_CHILD_INHERITS_STDIN) != 0,
671 (flags & G_SPAWN_FILE_AND_ARGV_ZERO) != 0,
682 * g_spawn_command_line_sync:
683 * @command_line: a command line
684 * @standard_output: (out) (array zero-terminated=1) (element-type guint8) (allow-none): return location for child output
685 * @standard_error: (out) (array zero-terminated=1) (element-type guint8) (allow-none): return location for child errors
686 * @exit_status: (out) (allow-none): return location for child exit status, as returned by waitpid()
687 * @error: return location for errors
689 * A simple version of g_spawn_sync() with little-used parameters
690 * removed, taking a command line instead of an argument vector. See
691 * g_spawn_sync() for full details. @command_line will be parsed by
692 * g_shell_parse_argv(). Unlike g_spawn_sync(), the %G_SPAWN_SEARCH_PATH flag
693 * is enabled. Note that %G_SPAWN_SEARCH_PATH can have security
694 * implications, so consider using g_spawn_sync() directly if
695 * appropriate. Possible errors are those from g_spawn_sync() and those
696 * from g_shell_parse_argv().
698 * If @exit_status is non-%NULL, the platform-specific exit status of
699 * the child is stored there; see the documentation of
700 * g_spawn_check_exit_status() for how to use and interpret this.
702 * On Windows, please note the implications of g_shell_parse_argv()
703 * parsing @command_line. Parsing is done according to Unix shell rules, not
704 * Windows command interpreter rules.
705 * Space is a separator, and backslashes are
706 * special. Thus you cannot simply pass a @command_line containing
707 * canonical Windows paths, like "c:\\program files\\app\\app.exe", as
708 * the backslashes will be eaten, and the space will act as a
709 * separator. You need to enclose such paths with single quotes, like
710 * "'c:\\program files\\app\\app.exe' 'e:\\folder\\argument.txt'".
712 * Return value: %TRUE on success, %FALSE if an error was set
715 g_spawn_command_line_sync (const gchar *command_line,
716 gchar **standard_output,
717 gchar **standard_error,
724 g_return_val_if_fail (command_line != NULL, FALSE);
726 if (!g_shell_parse_argv (command_line,
731 retval = g_spawn_sync (NULL,
747 * g_spawn_command_line_async:
748 * @command_line: a command line
749 * @error: return location for errors
751 * A simple version of g_spawn_async() that parses a command line with
752 * g_shell_parse_argv() and passes it to g_spawn_async(). Runs a
753 * command line in the background. Unlike g_spawn_async(), the
754 * %G_SPAWN_SEARCH_PATH flag is enabled, other flags are not. Note
755 * that %G_SPAWN_SEARCH_PATH can have security implications, so
756 * consider using g_spawn_async() directly if appropriate. Possible
757 * errors are those from g_shell_parse_argv() and g_spawn_async().
759 * The same concerns on Windows apply as for g_spawn_command_line_sync().
761 * Return value: %TRUE on success, %FALSE if error is set.
764 g_spawn_command_line_async (const gchar *command_line,
770 g_return_val_if_fail (command_line != NULL, FALSE);
772 if (!g_shell_parse_argv (command_line,
777 retval = g_spawn_async (NULL,
791 * g_spawn_check_exit_status:
792 * @exit_status: An exit code as returned from g_spawn_sync()
795 * Set @error if @exit_status indicates the child exited abnormally
796 * (e.g. with a nonzero exit code, or via a fatal signal).
798 * The g_spawn_sync() and g_child_watch_add() family of APIs return an
799 * exit status for subprocesses encoded in a platform-specific way.
800 * On Unix, this is guaranteed to be in the same format
801 * <literal>waitpid(2)</literal> returns, and on Windows it is
802 * guaranteed to be the result of
803 * <literal>GetExitCodeProcess()</literal>. Prior to the introduction
804 * of this function in GLib 2.34, interpreting @exit_status required
805 * use of platform-specific APIs, which is problematic for software
806 * using GLib as a cross-platform layer.
808 * Additionally, many programs simply want to determine whether or not
809 * the child exited successfully, and either propagate a #GError or
810 * print a message to standard error. In that common case, this
811 * function can be used. Note that the error message in @error will
812 * contain human-readable information about the exit status.
814 * The <literal>domain</literal> and <literal>code</literal> of @error
815 * have special semantics in the case where the process has an "exit
816 * code", as opposed to being killed by a signal. On Unix, this
817 * happens if <literal>WIFEXITED</literal> would be true of
818 * @exit_status. On Windows, it is always the case.
820 * The special semantics are that the actual exit code will be the
821 * code set in @error, and the domain will be %G_SPAWN_EXIT_ERROR.
822 * This allows you to differentiate between different exit codes.
824 * If the process was terminated by some means other than an exit
825 * status, the domain will be %G_SPAWN_ERROR, and the code will be
826 * %G_SPAWN_ERROR_FAILED.
828 * This function just offers convenience; you can of course also check
829 * the available platform via a macro such as %G_OS_UNIX, and use
830 * <literal>WIFEXITED()</literal> and <literal>WEXITSTATUS()</literal>
831 * on @exit_status directly. Do not attempt to scan or parse the
832 * error message string; it may be translated and/or change in future
835 * Returns: %TRUE if child exited successfully, %FALSE otherwise (and @error will be set)
839 g_spawn_check_exit_status (gint exit_status,
842 gboolean ret = FALSE;
844 if (WIFEXITED (exit_status))
846 if (WEXITSTATUS (exit_status) != 0)
848 g_set_error (error, G_SPAWN_EXIT_ERROR, WEXITSTATUS (exit_status),
849 _("Child process exited with code %ld"),
850 (long) WEXITSTATUS (exit_status));
854 else if (WIFSIGNALED (exit_status))
856 g_set_error (error, G_SPAWN_ERROR, G_SPAWN_ERROR_FAILED,
857 _("Child process killed by signal %ld"),
858 (long) WTERMSIG (exit_status));
861 else if (WIFSTOPPED (exit_status))
863 g_set_error (error, G_SPAWN_ERROR, G_SPAWN_ERROR_FAILED,
864 _("Child process stopped by signal %ld"),
865 (long) WSTOPSIG (exit_status));
870 g_set_error (error, G_SPAWN_ERROR, G_SPAWN_ERROR_FAILED,
871 _("Child process exited abnormally"));
881 exec_err_to_g_error (gint en)
887 return G_SPAWN_ERROR_ACCES;
893 return G_SPAWN_ERROR_PERM;
899 return G_SPAWN_ERROR_TOO_BIG;
905 return G_SPAWN_ERROR_NOEXEC;
911 return G_SPAWN_ERROR_NAMETOOLONG;
917 return G_SPAWN_ERROR_NOENT;
923 return G_SPAWN_ERROR_NOMEM;
929 return G_SPAWN_ERROR_NOTDIR;
935 return G_SPAWN_ERROR_LOOP;
941 return G_SPAWN_ERROR_TXTBUSY;
947 return G_SPAWN_ERROR_IO;
953 return G_SPAWN_ERROR_NFILE;
959 return G_SPAWN_ERROR_MFILE;
965 return G_SPAWN_ERROR_INVAL;
971 return G_SPAWN_ERROR_ISDIR;
977 return G_SPAWN_ERROR_LIBBAD;
982 return G_SPAWN_ERROR_FAILED;
988 write_all (gint fd, gconstpointer vbuf, gsize to_write)
990 gchar *buf = (gchar *) vbuf;
994 gssize count = write (fd, buf, to_write);
1012 write_err_and_exit (gint fd, gint msg)
1016 write_all (fd, &msg, sizeof(msg));
1017 write_all (fd, &en, sizeof(en));
1023 set_cloexec (void *data, gint fd)
1025 if (fd >= GPOINTER_TO_INT (data))
1026 fcntl (fd, F_SETFD, FD_CLOEXEC);
1033 fdwalk (int (*cb)(void *data, int fd), void *data)
1039 #ifdef HAVE_SYS_RESOURCE_H
1046 if ((d = opendir("/proc/self/fd"))) {
1049 while ((de = readdir(d))) {
1053 if (de->d_name[0] == '.')
1057 l = strtol(de->d_name, &e, 10);
1058 if (errno != 0 || !e || *e)
1063 if ((glong) fd != l)
1069 if ((res = cb (data, fd)) != 0)
1077 /* If /proc is not mounted or not accessible we fall back to the old
1082 #ifdef HAVE_SYS_RESOURCE_H
1084 if (getrlimit(RLIMIT_NOFILE, &rl) == 0 && rl.rlim_max != RLIM_INFINITY)
1085 open_max = rl.rlim_max;
1088 open_max = sysconf (_SC_OPEN_MAX);
1090 for (fd = 0; fd < open_max; fd++)
1091 if ((res = cb (data, fd)) != 0)
1099 sane_dup2 (gint fd1, gint fd2)
1104 ret = dup2 (fd1, fd2);
1105 if (ret < 0 && errno == EINTR)
1112 sane_open (const char *path, gint mode)
1117 ret = open (path, mode);
1118 if (ret < 0 && errno == EINTR)
1133 do_exec (gint child_err_report_fd,
1137 const gchar *working_directory,
1140 gboolean close_descriptors,
1141 gboolean search_path,
1142 gboolean search_path_from_envp,
1143 gboolean stdout_to_null,
1144 gboolean stderr_to_null,
1145 gboolean child_inherits_stdin,
1146 gboolean file_and_argv_zero,
1147 GSpawnChildSetupFunc child_setup,
1150 if (working_directory && chdir (working_directory) < 0)
1151 write_err_and_exit (child_err_report_fd,
1152 CHILD_CHDIR_FAILED);
1154 /* Close all file descriptors but stdin stdout and stderr as
1155 * soon as we exec. Note that this includes
1156 * child_err_report_fd, which keeps the parent from blocking
1157 * forever on the other end of that pipe.
1159 if (close_descriptors)
1161 fdwalk (set_cloexec, GINT_TO_POINTER(3));
1165 /* We need to do child_err_report_fd anyway */
1166 set_cloexec (GINT_TO_POINTER(0), child_err_report_fd);
1169 /* Redirect pipes as required */
1173 /* dup2 can't actually fail here I don't think */
1175 if (sane_dup2 (stdin_fd, 0) < 0)
1176 write_err_and_exit (child_err_report_fd,
1179 /* ignore this if it doesn't work */
1180 close_and_invalidate (&stdin_fd);
1182 else if (!child_inherits_stdin)
1184 /* Keep process from blocking on a read of stdin */
1185 gint read_null = open ("/dev/null", O_RDONLY);
1186 g_assert (read_null != -1);
1187 sane_dup2 (read_null, 0);
1188 close_and_invalidate (&read_null);
1193 /* dup2 can't actually fail here I don't think */
1195 if (sane_dup2 (stdout_fd, 1) < 0)
1196 write_err_and_exit (child_err_report_fd,
1199 /* ignore this if it doesn't work */
1200 close_and_invalidate (&stdout_fd);
1202 else if (stdout_to_null)
1204 gint write_null = sane_open ("/dev/null", O_WRONLY);
1205 g_assert (write_null != -1);
1206 sane_dup2 (write_null, 1);
1207 close_and_invalidate (&write_null);
1212 /* dup2 can't actually fail here I don't think */
1214 if (sane_dup2 (stderr_fd, 2) < 0)
1215 write_err_and_exit (child_err_report_fd,
1218 /* ignore this if it doesn't work */
1219 close_and_invalidate (&stderr_fd);
1221 else if (stderr_to_null)
1223 gint write_null = sane_open ("/dev/null", O_WRONLY);
1224 sane_dup2 (write_null, 2);
1225 close_and_invalidate (&write_null);
1228 /* Call user function just before we exec */
1231 (* child_setup) (user_data);
1235 file_and_argv_zero ? argv + 1 : argv,
1236 envp, search_path, search_path_from_envp);
1239 write_err_and_exit (child_err_report_fd,
1256 if (bytes >= sizeof(gint)*2)
1257 break; /* give up, who knows what happened, should not be
1263 ((gchar*)buf) + bytes,
1264 sizeof(gint) * n_ints_in_buf - bytes);
1265 if (chunk < 0 && errno == EINTR)
1272 /* Some weird shit happened, bail out */
1275 G_SPAWN_ERROR_FAILED,
1276 _("Failed to read from child pipe (%s)"),
1277 g_strerror (errsv));
1281 else if (chunk == 0)
1283 else /* chunk > 0 */
1287 *n_ints_read = (gint)(bytes / sizeof(gint));
1293 fork_exec_with_pipes (gboolean intermediate_child,
1294 const gchar *working_directory,
1297 gboolean close_descriptors,
1298 gboolean search_path,
1299 gboolean search_path_from_envp,
1300 gboolean stdout_to_null,
1301 gboolean stderr_to_null,
1302 gboolean child_inherits_stdin,
1303 gboolean file_and_argv_zero,
1304 GSpawnChildSetupFunc child_setup,
1307 gint *standard_input,
1308 gint *standard_output,
1309 gint *standard_error,
1313 gint stdin_pipe[2] = { -1, -1 };
1314 gint stdout_pipe[2] = { -1, -1 };
1315 gint stderr_pipe[2] = { -1, -1 };
1316 gint child_err_report_pipe[2] = { -1, -1 };
1317 gint child_pid_report_pipe[2] = { -1, -1 };
1320 if (!make_pipe (child_err_report_pipe, error))
1323 if (intermediate_child && !make_pipe (child_pid_report_pipe, error))
1324 goto cleanup_and_fail;
1326 if (standard_input && !make_pipe (stdin_pipe, error))
1327 goto cleanup_and_fail;
1329 if (standard_output && !make_pipe (stdout_pipe, error))
1330 goto cleanup_and_fail;
1332 if (standard_error && !make_pipe (stderr_pipe, error))
1333 goto cleanup_and_fail;
1344 _("Failed to fork (%s)"),
1345 g_strerror (errsv));
1347 goto cleanup_and_fail;
1351 /* Immediate child. This may or may not be the child that
1352 * actually execs the new process.
1355 /* Reset some signal handlers that we may use */
1356 signal (SIGCHLD, SIG_DFL);
1357 signal (SIGINT, SIG_DFL);
1358 signal (SIGTERM, SIG_DFL);
1359 signal (SIGHUP, SIG_DFL);
1361 /* Be sure we crash if the parent exits
1362 * and we write to the err_report_pipe
1364 signal (SIGPIPE, SIG_DFL);
1366 /* Close the parent's end of the pipes;
1367 * not needed in the close_descriptors case,
1370 close_and_invalidate (&child_err_report_pipe[0]);
1371 close_and_invalidate (&child_pid_report_pipe[0]);
1372 close_and_invalidate (&stdin_pipe[1]);
1373 close_and_invalidate (&stdout_pipe[0]);
1374 close_and_invalidate (&stderr_pipe[0]);
1376 if (intermediate_child)
1378 /* We need to fork an intermediate child that launches the
1379 * final child. The purpose of the intermediate child
1380 * is to exit, so we can waitpid() it immediately.
1381 * Then the grandchild will not become a zombie.
1383 GPid grandchild_pid;
1385 grandchild_pid = fork ();
1387 if (grandchild_pid < 0)
1389 /* report -1 as child PID */
1390 write_all (child_pid_report_pipe[1], &grandchild_pid,
1391 sizeof(grandchild_pid));
1393 write_err_and_exit (child_err_report_pipe[1],
1396 else if (grandchild_pid == 0)
1398 do_exec (child_err_report_pipe[1],
1407 search_path_from_envp,
1410 child_inherits_stdin,
1417 write_all (child_pid_report_pipe[1], &grandchild_pid, sizeof(grandchild_pid));
1418 close_and_invalidate (&child_pid_report_pipe[1]);
1425 /* Just run the child.
1428 do_exec (child_err_report_pipe[1],
1437 search_path_from_envp,
1440 child_inherits_stdin,
1453 /* Close the uncared-about ends of the pipes */
1454 close_and_invalidate (&child_err_report_pipe[1]);
1455 close_and_invalidate (&child_pid_report_pipe[1]);
1456 close_and_invalidate (&stdin_pipe[0]);
1457 close_and_invalidate (&stdout_pipe[1]);
1458 close_and_invalidate (&stderr_pipe[1]);
1460 /* If we had an intermediate child, reap it */
1461 if (intermediate_child)
1464 if (waitpid (pid, &status, 0) < 0)
1468 else if (errno == ECHILD)
1469 ; /* do nothing, child already reaped */
1471 g_warning ("waitpid() should not fail in "
1472 "'fork_exec_with_pipes'");
1477 if (!read_ints (child_err_report_pipe[0],
1480 goto cleanup_and_fail;
1484 /* Error from the child. */
1488 case CHILD_CHDIR_FAILED:
1491 G_SPAWN_ERROR_CHDIR,
1492 _("Failed to change to directory '%s' (%s)"),
1494 g_strerror (buf[1]));
1498 case CHILD_EXEC_FAILED:
1501 exec_err_to_g_error (buf[1]),
1502 _("Failed to execute child process \"%s\" (%s)"),
1504 g_strerror (buf[1]));
1508 case CHILD_DUP2_FAILED:
1511 G_SPAWN_ERROR_FAILED,
1512 _("Failed to redirect output or input of child process (%s)"),
1513 g_strerror (buf[1]));
1517 case CHILD_FORK_FAILED:
1521 _("Failed to fork child process (%s)"),
1522 g_strerror (buf[1]));
1528 G_SPAWN_ERROR_FAILED,
1529 _("Unknown error executing child process \"%s\""),
1534 goto cleanup_and_fail;
1537 /* Get child pid from intermediate child pipe. */
1538 if (intermediate_child)
1542 if (!read_ints (child_pid_report_pipe[0],
1543 buf, 1, &n_ints, error))
1544 goto cleanup_and_fail;
1552 G_SPAWN_ERROR_FAILED,
1553 _("Failed to read enough data from child pid pipe (%s)"),
1554 g_strerror (errsv));
1555 goto cleanup_and_fail;
1559 /* we have the child pid */
1564 /* Success against all odds! return the information */
1565 close_and_invalidate (&child_err_report_pipe[0]);
1566 close_and_invalidate (&child_pid_report_pipe[0]);
1572 *standard_input = stdin_pipe[1];
1573 if (standard_output)
1574 *standard_output = stdout_pipe[0];
1576 *standard_error = stderr_pipe[0];
1583 /* There was an error from the Child, reap the child to avoid it being
1590 if (waitpid (pid, NULL, 0) < 0)
1594 else if (errno == ECHILD)
1595 ; /* do nothing, child already reaped */
1597 g_warning ("waitpid() should not fail in "
1598 "'fork_exec_with_pipes'");
1602 close_and_invalidate (&child_err_report_pipe[0]);
1603 close_and_invalidate (&child_err_report_pipe[1]);
1604 close_and_invalidate (&child_pid_report_pipe[0]);
1605 close_and_invalidate (&child_pid_report_pipe[1]);
1606 close_and_invalidate (&stdin_pipe[0]);
1607 close_and_invalidate (&stdin_pipe[1]);
1608 close_and_invalidate (&stdout_pipe[0]);
1609 close_and_invalidate (&stdout_pipe[1]);
1610 close_and_invalidate (&stderr_pipe[0]);
1611 close_and_invalidate (&stderr_pipe[1]);
1617 make_pipe (gint p[2],
1625 G_SPAWN_ERROR_FAILED,
1626 _("Failed to create pipe for communicating with child process (%s)"),
1627 g_strerror (errsv));
1634 /* Based on execvp from GNU C Library */
1637 script_execute (const gchar *file,
1641 /* Count the arguments. */
1646 /* Construct an argument list for the shell. */
1650 new_argv = g_new0 (gchar*, argc + 2); /* /bin/sh and NULL */
1652 new_argv[0] = (char *) "/bin/sh";
1653 new_argv[1] = (char *) file;
1656 new_argv[argc + 1] = argv[argc];
1660 /* Execute the shell. */
1662 execve (new_argv[0], new_argv, envp);
1664 execv (new_argv[0], new_argv);
1671 my_strchrnul (const gchar *str, gchar c)
1673 gchar *p = (gchar*) str;
1674 while (*p && (*p != c))
1681 g_execute (const gchar *file,
1684 gboolean search_path,
1685 gboolean search_path_from_envp)
1689 /* We check the simple case first. */
1694 if (!(search_path || search_path_from_envp) || strchr (file, '/') != NULL)
1696 /* Don't search when it contains a slash. */
1698 execve (file, argv, envp);
1702 if (errno == ENOEXEC)
1703 script_execute (file, argv, envp);
1707 gboolean got_eacces = 0;
1708 const gchar *path, *p;
1709 gchar *name, *freeme;
1714 if (search_path_from_envp)
1715 path = g_environ_getenv (envp, "PATH");
1716 if (search_path && path == NULL)
1717 path = g_getenv ("PATH");
1721 /* There is no 'PATH' in the environment. The default
1722 * search path in libc is the current directory followed by
1723 * the path 'confstr' returns for '_CS_PATH'.
1726 /* In GLib we put . last, for security, and don't use the
1727 * unportable confstr(); UNIX98 does not actually specify
1728 * what to search if PATH is unset. POSIX may, dunno.
1731 path = "/bin:/usr/bin:.";
1734 len = strlen (file) + 1;
1735 pathlen = strlen (path);
1736 freeme = name = g_malloc (pathlen + len + 1);
1738 /* Copy the file name at the top, including '\0' */
1739 memcpy (name + pathlen + 1, file, len);
1740 name = name + pathlen;
1741 /* And add the slash before the filename */
1750 p = my_strchrnul (path, ':');
1753 /* Two adjacent colons, or a colon at the beginning or the end
1754 * of 'PATH' means to search the current directory.
1758 startp = memcpy (name - (p - path), path, p - path);
1760 /* Try to execute this name. If it works, execv will not return. */
1762 execve (startp, argv, envp);
1764 execv (startp, argv);
1766 if (errno == ENOEXEC)
1767 script_execute (startp, argv, envp);
1772 /* Record the we got a 'Permission denied' error. If we end
1773 * up finding no executable we can use, we want to diagnose
1774 * that we did find one but were denied access.
1787 /* Those errors indicate the file is missing or not executable
1788 * by us, in which case we want to just try the next path
1795 /* Some strange filesystems like AFS return even
1796 * stranger error numbers. They cannot reasonably mean anything
1797 * else so ignore those, too.
1802 /* Some other error means we found an executable file, but
1803 * something went wrong executing it; return the error to our
1810 while (*p++ != '\0');
1812 /* We tried every element and none of them worked. */
1814 /* At least one failure was due to permissions, so report that
1822 /* Return the error from the last attempt (probably ENOENT). */
1827 * g_spawn_close_pid:
1828 * @pid: The process reference to close
1830 * On some platforms, notably Windows, the #GPid type represents a resource
1831 * which must be closed to prevent resource leaking. g_spawn_close_pid()
1832 * is provided for this purpose. It should be used on all platforms, even
1833 * though it doesn't do anything under UNIX.
1836 g_spawn_close_pid (GPid pid)