27#if defined(DBUS_WIN) || !defined(DBUS_UNIX)
28#error "This file only makes sense on Unix OSs"
31#include "dbus-spawn.h"
32#include "dbus-sysdeps-unix.h"
33#include "dbus-internals.h"
35#include "dbus-protocol.h"
50#include <systemd/sd-journal.h>
54# include <crt_externs.h>
55# define environ (*_NSGetEnviron ())
56#elif !HAVE_DECL_ENVIRON
94 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
103 to_read =
sizeof (int) * n_ints_in_buf - bytes;
111 ((
char*)buf) + bytes,
114 if (chunk < 0 && errno == EINTR)
121 "Failed to read from child pipe (%s)",
122 _dbus_strerror (errno));
136 *n_ints_read = (int)(bytes /
sizeof(
int));
149 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
158 to_read =
sizeof (pid_t) - bytes;
166 ((
char*)buf) + bytes,
168 if (chunk < 0 && errno == EINTR)
175 "Failed to read from child pipe (%s)",
176 _dbus_strerror (errno));
271 DBusBabysitterFinishedFunc finished_cb;
282_dbus_babysitter_new (
void)
353 close_socket_to_babysitter (sitter);
355 close_error_pipe_from_child (sitter);
366 ret = waitpid (sitter->
sitter_pid, &status, WNOHANG);
378 ret = waitpid (sitter->
sitter_pid, &status, 0);
380 while (_DBUS_UNLIKELY (ret < 0 && errno == EINTR));
386 _dbus_warn (
"Babysitter process not available to be reaped; should not happen");
388 _dbus_warn (
"Unexpected error %d in waitpid() for babysitter: %s",
389 errno, _dbus_strerror (errno));
393 _dbus_verbose (
"Reaped %ld, waiting for babysitter %ld\n",
396 if (WIFEXITED (sitter->
status))
397 _dbus_verbose (
"Babysitter exited with status %d\n",
398 WEXITSTATUS (sitter->
status));
399 else if (WIFSIGNALED (sitter->
status))
400 _dbus_verbose (
"Babysitter received signal %d\n",
401 WTERMSIG (sitter->
status));
403 _dbus_verbose (
"Babysitter exited abnormally\n");
427 r = read_ints (fd, &what, 1, &got, &error);
452 case CHILD_FORK_FAILED:
453 case CHILD_EXEC_FAILED:
457 r = read_ints (fd, &arg, 1, &got, &error);
476 if (what == CHILD_EXITED)
497 _dbus_verbose (
"recorded child status exited = %d signaled = %d exitstatus = %d termsig = %d\n",
498 WIFEXITED (sitter->
status), WIFSIGNALED (sitter->
status),
499 WEXITSTATUS (sitter->
status), WTERMSIG (sitter->
status));
501 else if (what == CHILD_FORK_FAILED)
505 _dbus_verbose (
"recorded fork errnum %d\n", sitter->
errnum);
507 else if (what == CHILD_EXEC_FAILED)
511 _dbus_verbose (
"recorded exec errnum %d\n", sitter->
errnum);
520 r = read_pid (fd, &pid, &error);
539 _dbus_verbose (
"recorded grandchild pid %d\n", sitter->
grandchild_pid);
543 _dbus_warn (
"Unknown message received from babysitter process");
554 _dbus_verbose (
"Closing babysitter\n");
575 _dbus_verbose (
"Closing child error\n");
603 _dbus_verbose (
"Reading data from babysitter\n");
605 close_socket_to_babysitter (sitter);
609 close_socket_to_babysitter (sitter);
619 _dbus_verbose (
"Reading data from child error\n");
621 close_error_pipe_from_child (sitter);
625 close_error_pipe_from_child (sitter);
638 descriptors_ready =
FALSE;
666 while (ret < 0 && errno == EINTR);
668 if (ret == 0 && block)
674 while (ret < 0 && errno == EINTR);
679 descriptors_ready =
TRUE;
685 handle_error_pipe (sitter, fds[i].revents);
687 handle_babysitter_socket (sitter, fds[i].revents);
692 return descriptors_ready;
699#define LIVE_CHILDREN(sitter) ((sitter)->socket_to_babysitter.fd >= 0 || (sitter)->error_pipe_from_child >= 0)
713 babysitter_iteration (sitter,
TRUE);
715 _dbus_verbose (
"Got child PID %ld for killing\n",
735 babysitter_iteration (sitter,
FALSE))
762 !(WIFEXITED (sitter->
status)))
765 *status = WEXITSTATUS (sitter->
status);
792 "Failed to execute program %s: %s",
798 "Failed to fork a new process %s: %s",
803 if (WIFEXITED (sitter->
status))
805 "Process %s exited with status %d",
807 else if (WIFSIGNALED (sitter->
status))
809 "Process %s received signal %d",
813 "Process %s exited abnormally",
819 "Process %s exited, reason unknown",
854 unsigned int condition,
872 handle_error_pipe (sitter, revents);
874 handle_babysitter_socket (sitter, revents);
877 babysitter_iteration (sitter,
FALSE))
886 sitter->finished_cb !=
NULL)
888 sitter->finished_cb (sitter, sitter->finished_data);
889 sitter->finished_cb =
NULL;
912close_and_invalidate (
int *fd)
936 retval = pipe2 (p, O_CLOEXEC);
937 cloexec_done = retval >= 0;
941 if (retval < 0 && errno == ENOSYS)
947 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
953 "Failed to create pipe for communicating with child process (%s)",
954 _dbus_strerror (errno));
970do_write (
int fd,
const void *buf,
size_t count)
972 size_t bytes_written;
979 ret = write (fd, ((
const char*)buf) + bytes_written, count - bytes_written);
992 bytes_written += ret;
994 if (bytes_written < count)
998static void write_err_and_exit (
int fd,
int msg) _DBUS_GNUC_NORETURN;
1001write_err_and_exit (
int fd,
int msg)
1005 do_write (fd, &msg,
sizeof (msg));
1006 do_write (fd, &en,
sizeof (en));
1012write_pid (
int fd, pid_t pid)
1014 int msg = CHILD_PID;
1016 do_write (fd, &msg,
sizeof (msg));
1017 do_write (fd, &pid,
sizeof (pid));
1020static void write_status_and_exit (
int fd,
int status) _DBUS_GNUC_NORETURN;
1023write_status_and_exit (
int fd,
int status)
1025 int msg = CHILD_EXITED;
1027 do_write (fd, &msg,
sizeof (msg));
1028 do_write (fd, &status,
sizeof (status));
1033static void do_exec (
int child_err_report_fd,
1036 DBusSpawnChildSetupFunc child_setup,
1037 void *user_data) _DBUS_GNUC_NORETURN;
1040do_exec (
int child_err_report_fd,
1043 DBusSpawnChildSetupFunc child_setup,
1046#ifdef DBUS_ENABLE_EMBEDDED_TESTS
1050 _dbus_verbose_reset ();
1055 (* child_setup) (user_data);
1057#ifdef DBUS_ENABLE_EMBEDDED_TESTS
1058 max_open = sysconf (_SC_OPEN_MAX);
1060 for (i = 3; i < max_open; i++)
1064 if (i == child_err_report_fd)
1067 retval = fcntl (i, F_GETFD);
1069 if (retval != -1 && !(retval & FD_CLOEXEC))
1071 char description[256] = { 0 };
1072 char proc_self_fd[256] = { 0 };
1073 size_t description_length =
sizeof (description) - 1;
1075 snprintf (proc_self_fd,
sizeof (proc_self_fd) - 1,
1076 "/proc/self/fd/%d", i);
1077 proc_self_fd[
sizeof (proc_self_fd) - 1] =
'\0';
1079 if (readlink (proc_self_fd, description, description_length) <= 0)
1080 snprintf (description,
sizeof (description) - 1,
"(unknown)");
1082 description[
sizeof (description) - 1] =
'\0';
1083 _dbus_warn (
"Fd %d \"%s\" did not have the close-on-exec flag set!",
1099 pdpl=pdp_get_current();
1102 _dbus_pdplinux_show_text_label_info2(
"New process (i.e. current) label",pdpl);
1103 _dbus_verbose(
"New process UID=%d\n", getuid());
1107 _dbus_verbose(
"New process name %s\n", argv[0]);
1108 _dbus_verbose(
"parameter 1 for execve (%s)\n", argv[1]);
1112 execve (argv[0], argv, envp);
1115#if defined HAVE_PDPLINUX && defined DBUS_ENABLE_VERBOSE_MODE
1116 _dbus_verbose(
"Exec failed\n");
1119 write_err_and_exit (child_err_report_fd,
1124check_babysit_events (pid_t grandchild_pid,
1133 ret = waitpid (grandchild_pid, &status, WNOHANG);
1138 while (ret < 0 && errno == EINTR);
1142 _dbus_verbose (
"no child exited\n");
1149 _dbus_warn (
"unexpected waitpid() failure in check_babysit_events(): %s",
1150 _dbus_strerror (errno));
1153 else if (ret == grandchild_pid)
1156 _dbus_verbose (
"reaped child pid %ld\n", (
long) ret);
1158 write_status_and_exit (parent_pipe, status);
1162 _dbus_warn (
"waitpid() reaped pid %d that we've never heard of",
1169 _dbus_verbose (
"babysitter got POLLIN from parent pipe\n");
1175 _dbus_verbose (
"babysitter got POLLERR or POLLHUP from parent\n");
1182static int babysit_sigchld_pipe = -1;
1185babysit_signal_handler (
int signo)
1189 int saved_errno = errno;
1193 if (write (babysit_sigchld_pipe, &b, 1) <= 0)
1197 errno = saved_errno;
1200static void babysit (pid_t grandchild_pid,
1201 int parent_pipe) _DBUS_GNUC_NORETURN;
1204babysit (pid_t grandchild_pid,
1207 int sigchld_pipe[2];
1212 _dbus_verbose_reset ();
1219 if (pipe (sigchld_pipe) < 0)
1221 _dbus_warn (
"Not enough file descriptors to create pipe in babysitter process");
1225 babysit_sigchld_pipe = sigchld_pipe[
WRITE_END];
1229 write_pid (parent_pipe, grandchild_pid);
1231 check_babysit_events (grandchild_pid, parent_pipe, 0);
1237 pfds[0].
fd = parent_pipe;
1247 _dbus_warn (
"_dbus_poll() error: %s", strerror (errno));
1251 if (pfds[0].revents != 0)
1253 check_babysit_events (grandchild_pid, parent_pipe, pfds[0].revents);
1258 if (read (sigchld_pipe[
READ_END], &b, 1) == -1)
1263 check_babysit_events (grandchild_pid, parent_pipe, 0);
1296 const char *log_name,
1299 DBusSpawnFlags flags,
1300 DBusSpawnChildSetupFunc child_setup,
1310 int child_err_report_pipe[2] = { -1, -1 };
1311 DBusSocket babysitter_pipe[2] = { DBUS_SOCKET_INIT, DBUS_SOCKET_INIT };
1316 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1319 if (sitter_p !=
NULL)
1324 sitter = _dbus_babysitter_new ();
1335 goto cleanup_and_fail;
1344 goto cleanup_and_fail;
1347 if (!make_pipe (child_err_report_pipe, error))
1348 goto cleanup_and_fail;
1351 goto cleanup_and_fail;
1364 goto cleanup_and_fail;
1376 goto cleanup_and_fail;
1385 goto cleanup_and_fail;
1397 goto cleanup_and_fail;
1400 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1402 if (flags & DBUS_SPAWN_SILENCE_OUTPUT)
1404 fd_out = open (
"/dev/null", O_RDONLY);
1409 "Failed to open /dev/null: %s",
1410 _dbus_strerror (errno));
1411 goto cleanup_and_fail;
1419 goto cleanup_and_fail;
1422 else if (flags & DBUS_SPAWN_REDIRECT_OUTPUT)
1428 fd_out = sd_journal_stream_fd (sitter->
log_name, LOG_INFO,
FALSE);
1429 fd_err = sd_journal_stream_fd (sitter->
log_name, LOG_WARNING,
FALSE);
1444 "Failed to fork (%s)",
1445 _dbus_strerror (errno));
1446 goto cleanup_and_fail;
1456 signal (SIGPIPE, SIG_DFL);
1459 close_and_invalidate (&child_err_report_pipe[
READ_END]);
1460 close_and_invalidate (&babysitter_pipe[0].fd);
1466 grandchild_pid = fork ();
1468 if (grandchild_pid < 0)
1470 write_err_and_exit (babysitter_pipe[1].fd,
1474 else if (grandchild_pid == 0)
1484 signal (SIGPIPE, SIG_IGN);
1486 close_and_invalidate (&babysitter_pipe[1].fd);
1491 dup2 (fd_out, STDOUT_FILENO);
1493 dup2 (fd_err, STDERR_FILENO);
1494 close_and_invalidate (&fd_out);
1495 close_and_invalidate (&fd_err);
1497 do_exec (child_err_report_pipe[
WRITE_END],
1500 child_setup, user_data);
1507 _dbus_verbose(
"We are on babysitter !\n");
1508 if(bus_activation_pdplinux_set_proc_label(user_data,connection,(pid_t)grandchild_pid))
1509 _dbus_verbose(
"Set process label success\n");
1511 _dbus_verbose(
"Set process label failed or skipped\n");
1514 close_and_invalidate (&child_err_report_pipe[
WRITE_END]);
1515 close_and_invalidate (&fd_out);
1516 close_and_invalidate (&fd_err);
1517 babysit (grandchild_pid, babysitter_pipe[1].fd);
1524 close_and_invalidate (&child_err_report_pipe[
WRITE_END]);
1525 close_and_invalidate (&babysitter_pipe[1].fd);
1526 close_and_invalidate (&fd_out);
1527 close_and_invalidate (&fd_err);
1530 babysitter_pipe[0].fd = -1;
1533 child_err_report_pipe[
READ_END] = -1;
1537 if (sitter_p !=
NULL)
1542 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1549 _DBUS_ASSERT_ERROR_IS_SET (error);
1551 close_and_invalidate (&child_err_report_pipe[
READ_END]);
1552 close_and_invalidate (&child_err_report_pipe[
WRITE_END]);
1553 close_and_invalidate (&babysitter_pipe[0].fd);
1554 close_and_invalidate (&babysitter_pipe[1].fd);
1555 close_and_invalidate (&fd_out);
1556 close_and_invalidate (&fd_err);
1566 DBusBabysitterFinishedFunc finished,
1569 sitter->finished_cb = finished;
1570 sitter->finished_data = user_data;
1579 babysitter_iteration (sitter,
TRUE);
1594 _dbus_verbose(
"Entry\n");
1595 _dbus_verbose(
"Try to set label to process from connection\n");
1597 _dbus_verbose(
"actdata=%p, connection=%p, pid=%d\n",
1598 actdata,connection,pid);
1600 pdpl=dbus_connection_pdplinux_get_pdpl(connection);
1601 _dbus_pdplinux_show_text_label_info2(
"Connection",pdpl);
1603#ifdef PDP_FORCE_SET_LABEL_AT_ACTIVATION_TIME
1604 if (0!=pdp_set_pid(pid,pdpl))
1605 _dbus_verbose(
"pdp_set_pid failed!\n");
1609 _dbus_verbose(
"Set label skipped by configuration\n");
1610 _dbus_verbose(
"Exit\n");
1613 if (pdpl) pdpl_put(pdpl);
void(* DBusWatchToggledFunction)(DBusWatch *watch, void *data)
Called when dbus_watch_get_enabled() may return a different value than it did before.
dbus_bool_t(* DBusAddWatchFunction)(DBusWatch *watch, void *data)
Called when libdbus needs a new watch to be monitored by the main loop.
void(* DBusRemoveWatchFunction)(DBusWatch *watch, void *data)
Called when libdbus no longer needs a watch to be monitored by the main loop.
@ DBUS_WATCH_READABLE
As in POLLIN.
@ DBUS_WATCH_HANGUP
As in POLLHUP (can't watch for it, but can be present in current state passed to dbus_watch_handle())...
@ DBUS_WATCH_ERROR
As in POLLERR (can't watch for this, but can be present in current state passed to dbus_watch_handle(...
#define DBUS_ERROR_INIT
Expands to a suitable initializer for a DBusError on the stack.
void dbus_set_error(DBusError *error, const char *name, const char *format,...)
Assigns an error name and message to a DBusError.
void dbus_error_free(DBusError *error)
Frees an error that's been set (or just initialized), then reinitializes the error as in dbus_error_i...
#define _dbus_assert_not_reached(explanation)
Aborts with an error message if called.
#define _dbus_assert(condition)
Aborts with an error message if the condition is false.
dbus_bool_t _dbus_babysitter_get_child_exit_status(DBusBabysitter *sitter, int *status)
Gets the exit status of the child.
#define READ_END
Helps remember which end of the pipe is which.
#define WRITE_END
Helps remember which end of the pipe is which.
void _dbus_babysitter_unref(DBusBabysitter *sitter)
Decrement the reference count on the babysitter object.
const char * _dbus_error_from_errno(int error_number)
Converts a UNIX errno, or Windows errno or WinSock error value into a DBusError name.
dbus_bool_t _dbus_babysitter_get_child_exited(DBusBabysitter *sitter)
Checks whether the child has exited, without blocking.
dbus_bool_t _dbus_babysitter_set_watch_functions(DBusBabysitter *sitter, DBusAddWatchFunction add_function, DBusRemoveWatchFunction remove_function, DBusWatchToggledFunction toggled_function, void *data, DBusFreeFunction free_data_function)
Sets watch functions to notify us when the babysitter object needs to read/write file descriptors.
char * _dbus_strdup(const char *str)
Duplicates a string.
void _dbus_babysitter_set_child_exit_error(DBusBabysitter *sitter, DBusError *error)
Sets the DBusError with an explanation of why the spawned child process exited (on a signal,...
ReadStatus
Enumeration for status of a read()
void _dbus_warn(const char *format,...)
Prints a warning message to stderr.
#define _DBUS_N_ELEMENTS(array)
Computes the number of elements in a fixed-size array using sizeof().
void _dbus_babysitter_kill_child(DBusBabysitter *sitter)
Blocks until the babysitter process gives us the PID of the spawned grandchild, then kills the spawne...
DBusBabysitter * _dbus_babysitter_ref(DBusBabysitter *sitter)
Increment the reference count on the babysitter object.
dbus_bool_t _dbus_spawn_async_with_babysitter(DBusBabysitter **sitter_p, const char *log_name, char *const *argv, char *const *env, DBusSpawnFlags flags, DBusSpawnChildSetupFunc child_setup, void *user_data, DBusError *error)
Spawns a new process.
#define LIVE_CHILDREN(sitter)
Macro returns TRUE if the babysitter still has live sockets open to the babysitter child or the grand...
@ READ_STATUS_OK
Read succeeded.
@ READ_STATUS_EOF
EOF returned.
@ READ_STATUS_ERROR
Some kind of error.
#define NULL
A null pointer, defined appropriately for C or C++.
#define TRUE
Expands to "1".
#define FALSE
Expands to "0".
void(* DBusFreeFunction)(void *memory)
The type of a function which frees a block of memory.
void dbus_free(void *memory)
Frees a block of memory previously allocated by dbus_malloc() or dbus_malloc0().
#define dbus_new0(type, count)
Safe macro for using dbus_malloc0().
#define DBUS_ERROR_SPAWN_CHILD_EXITED
While starting a new process, the child exited with a status code.
#define DBUS_ERROR_SPAWN_CHILD_SIGNALED
While starting a new process, the child exited on a signal.
#define DBUS_ERROR_FAILED
A generic error; "something went wrong" - see the error message for more.
#define DBUS_ERROR_SPAWN_EXEC_FAILED
While starting a new process, the exec() call failed.
#define DBUS_ERROR_NO_MEMORY
There was not enough memory to complete an operation.
#define DBUS_ERROR_SPAWN_FAILED
While starting a new process, something went wrong.
#define DBUS_ERROR_SPAWN_FORK_FAILED
While starting a new process, the fork() call failed.
dbus_bool_t _dbus_reset_oom_score_adj(const char **error_str_p)
If the current process has been protected from the Linux OOM killer (the oom_score_adj process parame...
dbus_bool_t _dbus_close(int fd, DBusError *error)
Closes a file descriptor.
void _dbus_set_signal_handler(int sig, DBusSignalHandler handler)
Installs a UNIX signal handler.
int _dbus_dup(int fd, DBusError *error)
Duplicates a file descriptor.
void _dbus_fd_set_close_on_exec(int fd)
Sets the file descriptor to be close on exec.
#define _DBUS_POLLERR
Error condition.
dbus_bool_t _dbus_socketpair(DBusSocket *fd1, DBusSocket *fd2, dbus_bool_t blocking, DBusError *error)
Creates pair of connect sockets (as in socketpair()).
dbus_bool_t _dbus_close_socket(DBusSocket fd, DBusError *error)
Closes a socket.
dbus_pid_t _dbus_getpid(void)
Gets our process ID.
#define _DBUS_POLLHUP
Hung up.
#define _DBUS_POLLIN
There is data to read.
int _dbus_poll(DBusPollFD *fds, int n_fds, int timeout_milliseconds)
Wrapper for poll().
#define DBUS_PID_FORMAT
an appropriate printf format for dbus_pid_t
dbus_uint32_t dbus_bool_t
A boolean, valid values are TRUE and FALSE.
dbus_bool_t _dbus_watch_list_add_watch(DBusWatchList *watch_list, DBusWatch *watch)
Adds a new watch to the watch list, invoking the application DBusAddWatchFunction if appropriate.
DBusWatchList * _dbus_watch_list_new(void)
Creates a new watch list.
void _dbus_watch_list_free(DBusWatchList *watch_list)
Frees a DBusWatchList.
dbus_bool_t _dbus_watch_list_set_functions(DBusWatchList *watch_list, DBusAddWatchFunction add_function, DBusRemoveWatchFunction remove_function, DBusWatchToggledFunction toggled_function, void *data, DBusFreeFunction free_data_function)
Sets the watch functions.
DBusWatch * _dbus_watch_new(DBusPollable fd, unsigned int flags, dbus_bool_t enabled, DBusWatchHandler handler, void *data, DBusFreeFunction free_data_function)
Creates a new DBusWatch.
void _dbus_watch_unref(DBusWatch *watch)
Decrements the reference count of a DBusWatch object and finalizes the object if the count reaches ze...
void _dbus_watch_list_remove_watch(DBusWatchList *watch_list, DBusWatch *watch)
Removes a watch from the watch list, invoking the application's DBusRemoveWatchFunction if appropriat...
void _dbus_watch_invalidate(DBusWatch *watch)
Clears the file descriptor from a now-invalid watch object so that no one tries to use it.
DBUS_EXPORT int dbus_watch_get_socket(DBusWatch *watch)
Returns a socket to be watched, on UNIX this will return -1 if our transport is not socket-based so d...
Babysitter implementation details.
DBusWatch * sitter_watch
Sitter pipe watch.
unsigned int have_exec_errnum
True if we have an error code from exec()
DBusSocket socket_to_babysitter
Connection to the babysitter process.
int status
Exit status code.
unsigned int have_child_status
True if child status has been reaped.
char * log_name
the name under which to log messages about this process being spawned
pid_t sitter_pid
PID Of the babysitter.
int error_pipe_from_child
Connection to the process that does the exec()
int refcount
Reference count.
DBusWatchList * watches
Watches.
DBusWatch * error_watch
Error pipe watch.
pid_t grandchild_pid
PID of the grandchild.
unsigned int have_fork_errnum
True if we have an error code from fork()
Implementation details of DBusConnection.
Object representing an exception.
const char * message
public error message field
short events
Events to poll for.
short revents
Events that occurred.
DBusPollable fd
File descriptor.
DBusWatchList implementation details.
Implementation of DBusWatch.