1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-spawn.c Wrapper around fork/exec
4 * Copyright (C) 2002, 2003 Red Hat, Inc.
5 * Copyright (C) 2003 CodeFactory AB
7 * Licensed under the Academic Free License version 1.2
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include "dbus-spawn.h"
25 #include "dbus-sysdeps.h"
26 #include "dbus-internals.h"
27 #include "dbus-test.h"
36 * @addtogroup DBusInternalsUtils
41 * I'm pretty sure this whole spawn file could be made simpler,
42 * if you thought about it a bit.
46 * Enumeration for status of a read()
50 READ_STATUS_OK, /**< Read succeeded */
51 READ_STATUS_ERROR, /**< Some kind of error */
52 READ_STATUS_EOF /**< EOF returned */
65 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
67 retval = READ_STATUS_OK;
76 to_read = sizeof (int) * n_ints_in_buf - bytes;
85 if (chunk < 0 && errno == EINTR)
90 dbus_set_error (error,
91 DBUS_ERROR_SPAWN_FAILED,
92 "Failed to read from child pipe (%s)",
93 _dbus_strerror (errno));
95 retval = READ_STATUS_ERROR;
100 retval = READ_STATUS_EOF;
107 *n_ints_read = (int)(bytes / sizeof(int));
120 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
122 retval = READ_STATUS_OK;
130 to_read = sizeof (pid_t) - bytes;
136 ((char*)buf) + bytes,
138 if (chunk < 0 && errno == EINTR)
143 dbus_set_error (error,
144 DBUS_ERROR_SPAWN_FAILED,
145 "Failed to read from child pipe (%s)",
146 _dbus_strerror (errno));
148 retval = READ_STATUS_ERROR;
153 retval = READ_STATUS_EOF;
163 /* The implementation uses an intermediate child between the main process
164 * and the grandchild. The grandchild is our spawned process. The intermediate
165 * child is a babysitter process; it keeps track of when the grandchild
166 * exits/crashes, and reaps the grandchild.
169 /* Messages from children to parents */
172 CHILD_EXITED, /* This message is followed by the exit status int */
173 CHILD_FORK_FAILED, /* Followed by errno */
174 CHILD_EXEC_FAILED, /* Followed by errno */
175 CHILD_PID /* Followed by pid_t */
178 struct DBusBabysitter
182 char *executable; /**< executable name to use in error messages */
184 int socket_to_babysitter;
185 int error_pipe_from_child;
188 pid_t grandchild_pid;
190 DBusWatchList *watches;
192 DBusWatch *error_watch;
193 DBusWatch *sitter_watch;
197 unsigned int have_child_status : 1;
198 unsigned int have_fork_errnum : 1;
199 unsigned int have_exec_errnum : 1;
202 static DBusBabysitter*
203 _dbus_babysitter_new (void)
205 DBusBabysitter *sitter;
207 sitter = dbus_new0 (DBusBabysitter, 1);
211 sitter->refcount = 1;
213 sitter->socket_to_babysitter = -1;
214 sitter->error_pipe_from_child = -1;
216 sitter->sitter_pid = -1;
217 sitter->grandchild_pid = -1;
219 sitter->watches = _dbus_watch_list_new ();
220 if (sitter->watches == NULL)
226 _dbus_babysitter_unref (sitter);
231 * Increment the reference count on the babysitter object.
233 * @param sitter the babysitter
236 _dbus_babysitter_ref (DBusBabysitter *sitter)
238 _dbus_assert (sitter != NULL);
239 _dbus_assert (sitter->refcount > 0);
241 sitter->refcount += 1;
245 * Decrement the reference count on the babysitter object.
247 * @param sitter the babysitter
250 _dbus_babysitter_unref (DBusBabysitter *sitter)
252 _dbus_assert (sitter != NULL);
253 _dbus_assert (sitter->refcount > 0);
255 sitter->refcount -= 1;
256 if (sitter->refcount == 0)
258 if (sitter->socket_to_babysitter >= 0)
260 close (sitter->socket_to_babysitter);
261 sitter->socket_to_babysitter = -1;
264 if (sitter->error_pipe_from_child >= 0)
266 close (sitter->error_pipe_from_child);
267 sitter->error_pipe_from_child = -1;
270 if (sitter->sitter_pid != -1)
275 /* Reap the babysitter */
277 ret = waitpid (sitter->sitter_pid, &status, 0);
282 else if (errno == ECHILD)
283 _dbus_warn ("Babysitter process not available to be reaped; should not happen\n");
285 _dbus_warn ("Unexpected error %d in waitpid() for babysitter: %s\n",
286 errno, _dbus_strerror (errno));
290 _dbus_verbose ("Reaped %ld, waiting for babysitter %ld\n",
291 (long) ret, (long) sitter->sitter_pid);
293 if (WIFEXITED (sitter->status))
294 _dbus_verbose ("Babysitter exited with status %d\n",
295 WEXITSTATUS (sitter->status));
296 else if (WIFSIGNALED (sitter->status))
297 _dbus_verbose ("Babysitter received signal %d\n",
298 WTERMSIG (sitter->status));
300 _dbus_verbose ("Babysitter exited abnormally\n");
303 sitter->sitter_pid = -1;
306 if (sitter->error_watch)
308 _dbus_watch_invalidate (sitter->error_watch);
309 _dbus_watch_unref (sitter->error_watch);
310 sitter->error_watch = NULL;
313 if (sitter->sitter_watch)
315 _dbus_watch_invalidate (sitter->sitter_watch);
316 _dbus_watch_unref (sitter->sitter_watch);
317 sitter->sitter_watch = NULL;
321 _dbus_watch_list_free (sitter->watches);
323 dbus_free (sitter->executable);
330 read_data (DBusBabysitter *sitter,
338 dbus_error_init (&error);
340 r = read_ints (fd, &what, 1, &got, &error);
344 case READ_STATUS_ERROR:
345 _dbus_warn ("Failed to read data from fd %d: %s\n", fd, error.message);
346 dbus_error_free (&error);
349 case READ_STATUS_EOF:
361 case CHILD_FORK_FAILED:
362 case CHILD_EXEC_FAILED:
366 r = read_ints (fd, &arg, 1, &got, &error);
370 case READ_STATUS_ERROR:
371 _dbus_warn ("Failed to read arg from fd %d: %s\n", fd, error.message);
372 dbus_error_free (&error);
374 case READ_STATUS_EOF:
382 if (what == CHILD_EXITED)
384 sitter->have_child_status = TRUE;
385 sitter->status = arg;
386 _dbus_verbose ("recorded child status exited = %d signaled = %d exitstatus = %d termsig = %d\n",
387 WIFEXITED (sitter->status), WIFSIGNALED (sitter->status),
388 WEXITSTATUS (sitter->status), WTERMSIG (sitter->status));
390 else if (what == CHILD_FORK_FAILED)
392 sitter->have_fork_errnum = TRUE;
393 sitter->errnum = arg;
394 _dbus_verbose ("recorded fork errnum %d\n", sitter->errnum);
396 else if (what == CHILD_EXEC_FAILED)
398 sitter->have_exec_errnum = TRUE;
399 sitter->errnum = arg;
400 _dbus_verbose ("recorded exec errnum %d\n", sitter->errnum);
409 r = read_pid (fd, &pid, &error);
413 case READ_STATUS_ERROR:
414 _dbus_warn ("Failed to read PID from fd %d: %s\n", fd, error.message);
415 dbus_error_free (&error);
417 case READ_STATUS_EOF:
423 sitter->grandchild_pid = pid;
425 _dbus_verbose ("recorded grandchild pid %d\n", sitter->grandchild_pid);
429 _dbus_warn ("Unknown message received from babysitter process\n");
438 close_socket_to_babysitter (DBusBabysitter *sitter)
440 _dbus_verbose ("Closing babysitter\n");
441 close (sitter->socket_to_babysitter);
442 sitter->socket_to_babysitter = -1;
446 close_error_pipe_from_child (DBusBabysitter *sitter)
448 _dbus_verbose ("Closing child error\n");
449 close (sitter->error_pipe_from_child);
450 sitter->error_pipe_from_child = -1;
454 handle_babysitter_socket (DBusBabysitter *sitter,
457 /* Even if we have POLLHUP, we want to keep reading
458 * data until POLLIN goes away; so this function only
459 * looks at HUP/ERR if no IN is set.
461 if (revents & _DBUS_POLLIN)
463 _dbus_verbose ("Reading data from babysitter\n");
464 if (read_data (sitter, sitter->socket_to_babysitter) != READ_STATUS_OK)
465 close_socket_to_babysitter (sitter);
467 else if (revents & (_DBUS_POLLERR | _DBUS_POLLHUP))
469 close_socket_to_babysitter (sitter);
474 handle_error_pipe (DBusBabysitter *sitter,
477 if (revents & _DBUS_POLLIN)
479 _dbus_verbose ("Reading data from child error\n");
480 if (read_data (sitter, sitter->error_pipe_from_child) != READ_STATUS_OK)
481 close_error_pipe_from_child (sitter);
483 else if (revents & (_DBUS_POLLERR | _DBUS_POLLHUP))
485 close_error_pipe_from_child (sitter);
489 /* returns whether there were any poll events handled */
491 babysitter_iteration (DBusBabysitter *sitter,
496 dbus_bool_t descriptors_ready;
498 descriptors_ready = FALSE;
502 if (sitter->error_pipe_from_child >= 0)
504 fds[i].fd = sitter->error_pipe_from_child;
505 fds[i].events = _DBUS_POLLIN;
510 if (sitter->socket_to_babysitter >= 0)
512 fds[i].fd = sitter->socket_to_babysitter;
513 fds[i].events = _DBUS_POLLIN;
522 ret = _dbus_poll (fds, i, 0);
523 if (ret == 0 && block)
524 ret = _dbus_poll (fds, i, -1);
528 descriptors_ready = TRUE;
533 if (fds[i].fd == sitter->error_pipe_from_child)
534 handle_error_pipe (sitter, fds[i].revents);
535 else if (fds[i].fd == sitter->socket_to_babysitter)
536 handle_babysitter_socket (sitter, fds[i].revents);
541 return descriptors_ready;
545 * Macro returns #TRUE if the babysitter still has live sockets open to the
546 * babysitter child or the grandchild.
548 #define LIVE_CHILDREN(sitter) ((sitter)->socket_to_babysitter >= 0 || (sitter)->error_pipe_from_child >= 0)
551 * Blocks until the babysitter process gives us the PID of the spawned grandchild,
552 * then kills the spawned grandchild.
554 * @param sitter the babysitter object
557 _dbus_babysitter_kill_child (DBusBabysitter *sitter)
559 /* be sure we have the PID of the child */
560 while (LIVE_CHILDREN (sitter) &&
561 sitter->grandchild_pid == -1)
562 babysitter_iteration (sitter, TRUE);
564 _dbus_verbose ("Got child PID %ld for killing\n",
565 (long) sitter->grandchild_pid);
567 if (sitter->grandchild_pid == -1)
568 return; /* child is already dead, or we're so hosed we'll never recover */
570 kill (sitter->grandchild_pid, SIGKILL);
574 * Checks whether the child has exited, without blocking.
576 * @param sitter the babysitter
579 _dbus_babysitter_get_child_exited (DBusBabysitter *sitter)
582 /* Be sure we're up-to-date */
583 while (LIVE_CHILDREN (sitter) &&
584 babysitter_iteration (sitter, FALSE))
587 /* We will have exited the babysitter when the child has exited */
588 return sitter->socket_to_babysitter < 0;
592 _dbus_babysitter_block_for_child_exit (DBusBabysitter *sitter)
594 while (LIVE_CHILDREN (sitter))
595 babysitter_iteration (sitter, TRUE);
599 * Sets the #DBusError with an explanation of why the spawned
600 * child process exited (on a signal, or whatever). If
601 * the child process has not exited, does nothing (error
602 * will remain unset).
604 * @param sitter the babysitter
605 * @param error an error to fill in
608 _dbus_babysitter_set_child_exit_error (DBusBabysitter *sitter,
611 if (!_dbus_babysitter_get_child_exited (sitter))
614 /* Note that if exec fails, we will also get a child status
615 * from the babysitter saying the child exited,
616 * so we need to give priority to the exec error
618 if (sitter->have_exec_errnum)
620 dbus_set_error (error, DBUS_ERROR_SPAWN_EXEC_FAILED,
621 "Failed to execute program %s: %s",
622 sitter->executable, _dbus_strerror (sitter->errnum));
624 else if (sitter->have_fork_errnum)
626 dbus_set_error (error, DBUS_ERROR_NO_MEMORY,
627 "Failed to fork a new process %s: %s",
628 sitter->executable, _dbus_strerror (sitter->errnum));
630 else if (sitter->have_child_status)
632 if (WIFEXITED (sitter->status))
633 dbus_set_error (error, DBUS_ERROR_SPAWN_CHILD_EXITED,
634 "Process %s exited with status %d",
635 sitter->executable, WEXITSTATUS (sitter->status));
636 else if (WIFSIGNALED (sitter->status))
637 dbus_set_error (error, DBUS_ERROR_SPAWN_CHILD_SIGNALED,
638 "Process %s received signal %d",
639 sitter->executable, WTERMSIG (sitter->status));
641 dbus_set_error (error, DBUS_ERROR_FAILED,
642 "Process %s exited abnormally",
647 dbus_set_error (error, DBUS_ERROR_FAILED,
648 "Process %s exited, reason unknown",
654 * Sets watch functions to notify us when the
655 * babysitter object needs to read/write file descriptors.
657 * @param sitter the babysitter
658 * @param add_function function to begin monitoring a new descriptor.
659 * @param remove_function function to stop monitoring a descriptor.
660 * @param toggled_function function to notify when the watch is enabled/disabled
661 * @param data data to pass to add_function and remove_function.
662 * @param free_data_function function to be called to free the data.
663 * @returns #FALSE on failure (no memory)
666 _dbus_babysitter_set_watch_functions (DBusBabysitter *sitter,
667 DBusAddWatchFunction add_function,
668 DBusRemoveWatchFunction remove_function,
669 DBusWatchToggledFunction toggled_function,
671 DBusFreeFunction free_data_function)
673 return _dbus_watch_list_set_functions (sitter->watches,
682 * Handles watch when descriptors are ready.
684 * @param sitter the babysitter.
685 * @param watch the watch object
686 * @param condition the descriptor conditions
687 * @returns #FALSE if there wasn't enough memory.
691 _dbus_babysitter_handle_watch (DBusBabysitter *sitter,
693 unsigned int condition)
699 if (condition & DBUS_WATCH_READABLE)
700 revents |= _DBUS_POLLIN;
701 if (condition & DBUS_WATCH_ERROR)
702 revents |= _DBUS_POLLERR;
703 if (condition & DBUS_WATCH_HANGUP)
704 revents |= _DBUS_POLLHUP;
706 fd = dbus_watch_get_fd (watch);
708 if (fd == sitter->error_pipe_from_child)
709 handle_error_pipe (sitter, revents);
710 else if (fd == sitter->socket_to_babysitter)
711 handle_babysitter_socket (sitter, revents);
713 while (LIVE_CHILDREN (sitter) &&
714 babysitter_iteration (sitter, FALSE))
720 /** Helps remember which end of the pipe is which */
722 /** Helps remember which end of the pipe is which */
726 /* Avoids a danger in threaded situations (calling close()
727 * on a file descriptor twice, and another thread has
728 * re-opened it since the first close)
731 close_and_invalidate (int *fd)
750 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
754 dbus_set_error (error,
755 DBUS_ERROR_SPAWN_FAILED,
756 "Failed to create pipe for communicating with child process (%s)",
757 _dbus_strerror (errno));
765 do_write (int fd, const void *buf, size_t count)
767 size_t bytes_written;
774 ret = write (fd, ((const char*)buf) + bytes_written, count - bytes_written);
782 _dbus_warn ("Failed to write data to pipe!\n");
783 _exit (1); /* give up, we suck */
787 bytes_written += ret;
789 if (bytes_written < count)
794 write_err_and_exit (int fd, int msg)
798 do_write (fd, &msg, sizeof (msg));
799 do_write (fd, &en, sizeof (en));
805 write_pid (int fd, pid_t pid)
809 do_write (fd, &msg, sizeof (msg));
810 do_write (fd, &pid, sizeof (pid));
814 write_status_and_exit (int fd, int status)
816 int msg = CHILD_EXITED;
818 do_write (fd, &msg, sizeof (msg));
819 do_write (fd, &status, sizeof (status));
825 do_exec (int child_err_report_fd,
827 DBusSpawnChildSetupFunc child_setup,
830 #ifdef DBUS_BUILD_TESTS
834 _dbus_verbose_reset ();
835 _dbus_verbose ("Child process has PID %lu\n",
839 (* child_setup) (user_data);
841 #ifdef DBUS_BUILD_TESTS
842 max_open = sysconf (_SC_OPEN_MAX);
844 for (i = 3; i < max_open; i++)
848 if (i == child_err_report_fd)
851 retval = fcntl (i, F_GETFD);
853 if (retval != -1 && !(retval & FD_CLOEXEC))
854 _dbus_warn ("Fd %d did not have the close-on-exec flag set!\n", i);
858 execv (argv[0], argv);
861 write_err_and_exit (child_err_report_fd,
866 check_babysit_events (pid_t grandchild_pid,
873 ret = waitpid (grandchild_pid, &status, WNOHANG);
877 _dbus_verbose ("no child exited\n");
879 ; /* no child exited */
883 /* This isn't supposed to happen. */
884 _dbus_warn ("unexpected waitpid() failure in check_babysit_events(): %s\n",
885 _dbus_strerror (errno));
888 else if (ret == grandchild_pid)
891 _dbus_verbose ("reaped child pid %ld\n", (long) ret);
893 write_status_and_exit (parent_pipe, status);
897 _dbus_warn ("waitpid() reaped pid %d that we've never heard of\n",
902 if (revents & _DBUS_POLLIN)
904 _dbus_verbose ("babysitter got POLLIN from parent pipe\n");
907 if (revents & (_DBUS_POLLERR | _DBUS_POLLHUP))
909 /* Parent is gone, so we just exit */
910 _dbus_verbose ("babysitter got POLLERR or POLLHUP from parent\n");
915 static int babysit_sigchld_pipe = -1;
918 babysit_signal_handler (int signo)
922 write (babysit_sigchld_pipe, &b, 1);
928 babysit (pid_t grandchild_pid,
933 /* We don't exec, so we keep parent state, such as the pid that
934 * _dbus_verbose() uses. Reset the pid here.
936 _dbus_verbose_reset ();
938 /* I thought SIGCHLD would just wake up the poll, but
939 * that didn't seem to work, so added this pipe.
940 * Probably the pipe is more likely to work on busted
941 * operating systems anyhow.
943 if (pipe (sigchld_pipe) < 0)
945 _dbus_warn ("Not enough file descriptors to create pipe in babysitter process\n");
949 babysit_sigchld_pipe = sigchld_pipe[WRITE_END];
951 _dbus_set_signal_handler (SIGCHLD, babysit_signal_handler);
953 write_pid (parent_pipe, grandchild_pid);
955 check_babysit_events (grandchild_pid, parent_pipe, 0);
961 pfds[0].fd = parent_pipe;
962 pfds[0].events = _DBUS_POLLIN;
965 pfds[1].fd = sigchld_pipe[READ_END];
966 pfds[1].events = _DBUS_POLLIN;
969 _dbus_poll (pfds, _DBUS_N_ELEMENTS (pfds), -1);
971 if (pfds[0].revents != 0)
973 check_babysit_events (grandchild_pid, parent_pipe, pfds[0].revents);
975 else if (pfds[1].revents & _DBUS_POLLIN)
978 read (sigchld_pipe[READ_END], &b, 1);
979 /* do waitpid check */
980 check_babysit_events (grandchild_pid, parent_pipe, 0);
988 * Spawns a new process. The executable name and argv[0]
989 * are the same, both are provided in argv[0]. The child_setup
990 * function is passed the given user_data and is run in the child
991 * just before calling exec().
993 * Also creates a "babysitter" which tracks the status of the
994 * child process, advising the parent if the child exits.
995 * If the spawn fails, no babysitter is created.
996 * If sitter_p is #NULL, no babysitter is kept.
998 * @param sitter_p return location for babysitter or #NULL
999 * @param argv the executable and arguments
1000 * @param child_setup function to call in child pre-exec()
1001 * @param user_data user data for setup function
1002 * @param error error object to be filled in if function fails
1003 * @returns #TRUE on success, #FALSE if error is filled in
1006 _dbus_spawn_async_with_babysitter (DBusBabysitter **sitter_p,
1008 DBusSpawnChildSetupFunc child_setup,
1012 DBusBabysitter *sitter;
1013 int child_err_report_pipe[2] = { -1, -1 };
1014 int babysitter_pipe[2] = { -1, -1 };
1017 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1022 sitter = _dbus_babysitter_new ();
1025 dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1029 sitter->executable = _dbus_strdup (argv[0]);
1030 if (sitter->executable == NULL)
1032 dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1033 goto cleanup_and_fail;
1036 if (!make_pipe (child_err_report_pipe, error))
1037 goto cleanup_and_fail;
1039 _dbus_fd_set_close_on_exec (child_err_report_pipe[READ_END]);
1041 if (!_dbus_full_duplex_pipe (&babysitter_pipe[0], &babysitter_pipe[1], TRUE, error))
1042 goto cleanup_and_fail;
1044 _dbus_fd_set_close_on_exec (babysitter_pipe[0]);
1045 _dbus_fd_set_close_on_exec (babysitter_pipe[1]);
1047 /* Setting up the babysitter is only useful in the parent,
1048 * but we don't want to run out of memory and fail
1049 * after we've already forked, since then we'd leak
1050 * child processes everywhere.
1052 sitter->error_watch = _dbus_watch_new (child_err_report_pipe[READ_END],
1053 DBUS_WATCH_READABLE,
1055 if (sitter->error_watch == NULL)
1057 dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1058 goto cleanup_and_fail;
1061 if (!_dbus_watch_list_add_watch (sitter->watches, sitter->error_watch))
1063 dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1064 goto cleanup_and_fail;
1067 sitter->sitter_watch = _dbus_watch_new (babysitter_pipe[0],
1068 DBUS_WATCH_READABLE,
1070 if (sitter->sitter_watch == NULL)
1072 dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1073 goto cleanup_and_fail;
1076 if (!_dbus_watch_list_add_watch (sitter->watches, sitter->sitter_watch))
1078 dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1079 goto cleanup_and_fail;
1082 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1088 dbus_set_error (error,
1089 DBUS_ERROR_SPAWN_FORK_FAILED,
1090 "Failed to fork (%s)",
1091 _dbus_strerror (errno));
1092 goto cleanup_and_fail;
1096 /* Immediate child, this is the babysitter process. */
1099 /* Be sure we crash if the parent exits
1100 * and we write to the err_report_pipe
1102 signal (SIGPIPE, SIG_DFL);
1104 /* Close the parent's end of the pipes. */
1105 close_and_invalidate (&child_err_report_pipe[READ_END]);
1106 close_and_invalidate (&babysitter_pipe[0]);
1108 /* Create the child that will exec () */
1109 grandchild_pid = fork ();
1111 if (grandchild_pid < 0)
1113 write_err_and_exit (babysitter_pipe[1],
1115 _dbus_assert_not_reached ("Got to code after write_err_and_exit()");
1117 else if (grandchild_pid == 0)
1119 do_exec (child_err_report_pipe[WRITE_END],
1121 child_setup, user_data);
1122 _dbus_assert_not_reached ("Got to code after exec() - should have exited on error");
1126 babysit (grandchild_pid, babysitter_pipe[1]);
1127 _dbus_assert_not_reached ("Got to code after babysit()");
1132 /* Close the uncared-about ends of the pipes */
1133 close_and_invalidate (&child_err_report_pipe[WRITE_END]);
1134 close_and_invalidate (&babysitter_pipe[1]);
1136 sitter->socket_to_babysitter = babysitter_pipe[0];
1137 babysitter_pipe[0] = -1;
1139 sitter->error_pipe_from_child = child_err_report_pipe[READ_END];
1140 child_err_report_pipe[READ_END] = -1;
1142 sitter->sitter_pid = pid;
1144 if (sitter_p != NULL)
1147 _dbus_babysitter_unref (sitter);
1149 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1156 _DBUS_ASSERT_ERROR_IS_SET (error);
1158 close_and_invalidate (&child_err_report_pipe[READ_END]);
1159 close_and_invalidate (&child_err_report_pipe[WRITE_END]);
1160 close_and_invalidate (&babysitter_pipe[0]);
1161 close_and_invalidate (&babysitter_pipe[1]);
1164 _dbus_babysitter_unref (sitter);
1171 #ifdef DBUS_BUILD_TESTS
1174 check_spawn_nonexistent (void *data)
1176 char *argv[4] = { NULL, NULL, NULL, NULL };
1177 DBusBabysitter *sitter;
1182 dbus_error_init (&error);
1184 /*** Test launching nonexistent binary */
1186 argv[0] = "/this/does/not/exist/32542sdgafgafdg";
1187 if (_dbus_spawn_async_with_babysitter (&sitter, argv,
1191 _dbus_babysitter_block_for_child_exit (sitter);
1192 _dbus_babysitter_set_child_exit_error (sitter, &error);
1196 _dbus_babysitter_unref (sitter);
1198 if (!dbus_error_is_set (&error))
1200 _dbus_warn ("Did not get an error launching nonexistent executable\n");
1204 if (!(dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY) ||
1205 dbus_error_has_name (&error, DBUS_ERROR_SPAWN_EXEC_FAILED)))
1207 _dbus_warn ("Not expecting error when launching nonexistent executable: %s: %s\n",
1208 error.name, error.message);
1209 dbus_error_free (&error);
1213 dbus_error_free (&error);
1219 check_spawn_segfault (void *data)
1221 char *argv[4] = { NULL, NULL, NULL, NULL };
1222 DBusBabysitter *sitter;
1227 dbus_error_init (&error);
1229 /*** Test launching segfault binary */
1231 argv[0] = TEST_SEGFAULT_BINARY;
1232 if (_dbus_spawn_async_with_babysitter (&sitter, argv,
1236 _dbus_babysitter_block_for_child_exit (sitter);
1237 _dbus_babysitter_set_child_exit_error (sitter, &error);
1241 _dbus_babysitter_unref (sitter);
1243 if (!dbus_error_is_set (&error))
1245 _dbus_warn ("Did not get an error launching segfaulting binary\n");
1249 if (!(dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY) ||
1250 dbus_error_has_name (&error, DBUS_ERROR_SPAWN_CHILD_SIGNALED)))
1252 _dbus_warn ("Not expecting error when launching segfaulting executable: %s: %s\n",
1253 error.name, error.message);
1254 dbus_error_free (&error);
1258 dbus_error_free (&error);
1264 check_spawn_exit (void *data)
1266 char *argv[4] = { NULL, NULL, NULL, NULL };
1267 DBusBabysitter *sitter;
1272 dbus_error_init (&error);
1274 /*** Test launching exit failure binary */
1276 argv[0] = TEST_EXIT_BINARY;
1277 if (_dbus_spawn_async_with_babysitter (&sitter, argv,
1281 _dbus_babysitter_block_for_child_exit (sitter);
1282 _dbus_babysitter_set_child_exit_error (sitter, &error);
1286 _dbus_babysitter_unref (sitter);
1288 if (!dbus_error_is_set (&error))
1290 _dbus_warn ("Did not get an error launching binary that exited with failure code\n");
1294 if (!(dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY) ||
1295 dbus_error_has_name (&error, DBUS_ERROR_SPAWN_CHILD_EXITED)))
1297 _dbus_warn ("Not expecting error when launching exiting executable: %s: %s\n",
1298 error.name, error.message);
1299 dbus_error_free (&error);
1303 dbus_error_free (&error);
1309 check_spawn_and_kill (void *data)
1311 char *argv[4] = { NULL, NULL, NULL, NULL };
1312 DBusBabysitter *sitter;
1317 dbus_error_init (&error);
1319 /*** Test launching sleeping binary then killing it */
1321 argv[0] = TEST_SLEEP_FOREVER_BINARY;
1322 if (_dbus_spawn_async_with_babysitter (&sitter, argv,
1326 _dbus_babysitter_kill_child (sitter);
1328 _dbus_babysitter_block_for_child_exit (sitter);
1330 _dbus_babysitter_set_child_exit_error (sitter, &error);
1334 _dbus_babysitter_unref (sitter);
1336 if (!dbus_error_is_set (&error))
1338 _dbus_warn ("Did not get an error after killing spawned binary\n");
1342 if (!(dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY) ||
1343 dbus_error_has_name (&error, DBUS_ERROR_SPAWN_CHILD_SIGNALED)))
1345 _dbus_warn ("Not expecting error when killing executable: %s: %s\n",
1346 error.name, error.message);
1347 dbus_error_free (&error);
1351 dbus_error_free (&error);
1357 _dbus_spawn_test (const char *test_data_dir)
1359 if (!_dbus_test_oom_handling ("spawn_nonexistent",
1360 check_spawn_nonexistent,
1364 if (!_dbus_test_oom_handling ("spawn_segfault",
1365 check_spawn_segfault,
1369 if (!_dbus_test_oom_handling ("spawn_exit",
1374 if (!_dbus_test_oom_handling ("spawn_and_kill",
1375 check_spawn_and_kill,