27#include "dbus-internals.h"
28#include "dbus-sysdeps.h"
29#include "dbus-sysdeps-unix.h"
30#include "dbus-threads.h"
31#include "dbus-protocol.h"
33#include "dbus-transport.h"
34#include "dbus-string.h"
35#include "dbus-userdb.h"
37#include "dbus-credentials.h"
38#include "dbus-nonce.h"
47#include <sys/socket.h>
56#include <netinet/in.h>
57#include <netinet/tcp.h>
62#include <parsec/pdp.h>
63#include <parsec/parsec_cap.h>
78#ifdef HAVE_GETPEERUCRED
84#ifdef HAVE_SYS_RANDOM_H
85#include <sys/random.h>
93#include <systemd/sd-daemon.h>
105#define AI_ADDRCONFIG 0
108#ifndef HAVE_SOCKLEN_T
112#if defined (__sun) || defined (__sun__)
125# define CMSG_ALIGN(len) _CMSG_DATA_ALIGN (len)
128# define CMSG_ALIGN(len) (((len) + sizeof (long) - 1) & \
129 ~(sizeof (long) - 1))
134# define CMSG_SPACE(len) (CMSG_ALIGN (sizeof (struct cmsghdr)) + \
139# define CMSG_LEN(len) (CMSG_ALIGN (sizeof (struct cmsghdr)) + (len))
160 const char **error_str_p)
162 static int const relevant_flag[] = { DBUS_FORCE_STDIN_NULL,
163 DBUS_FORCE_STDOUT_NULL,
164 DBUS_FORCE_STDERR_NULL };
166 const char *error_str =
"Failed mysteriously";
170 _DBUS_STATIC_ASSERT (STDIN_FILENO == 0);
171 _DBUS_STATIC_ASSERT (STDOUT_FILENO == 1);
172 _DBUS_STATIC_ASSERT (STDERR_FILENO == 2);
175 for (i = STDIN_FILENO; i <= STDERR_FILENO; i++)
181 devnull = open (
"/dev/null", O_RDWR);
185 error_str =
"Failed to open /dev/null";
194 if (devnull != i && (flags & relevant_flag[i]) != 0)
196 if (dup2 (devnull, i) < 0)
198 error_str =
"Failed to dup2 /dev/null onto a standard fd";
209 if (devnull > STDERR_FILENO)
212 if (error_str_p !=
NULL)
213 *error_str_p = error_str;
216 return (error_str ==
NULL);
219static dbus_bool_t _dbus_set_fd_nonblocking (
int fd,
223_dbus_open_socket (
int *fd_p,
232 *fd_p = socket (domain, type | SOCK_CLOEXEC, protocol);
233 cloexec_done = *fd_p >= 0;
236 if (*fd_p < 0 && (errno == EINVAL || errno == EPROTOTYPE))
239 *fd_p = socket (domain, type, protocol);
251 _dbus_verbose (
"socket fd %d opened\n", *fd_p);
258 "Failed to open socket: %s",
259 _dbus_strerror (errno));
275_dbus_open_unix_socket (
int *fd,
278 return _dbus_open_socket(fd, PF_UNIX, SOCK_STREAM, 0, error);
329#if HAVE_DECL_MSG_NOSIGNAL
333 data = _dbus_string_get_const_data_len (buffer, start, len);
337 bytes_written = send (fd.fd, data, len, MSG_NOSIGNAL);
339 if (bytes_written < 0 && errno == EINTR)
342 return bytes_written;
366 unsigned int *n_fds) {
367#ifndef HAVE_UNIX_FD_PASSING
385 start = _dbus_string_get_length (buffer);
405 m.msg_controllen = CMSG_SPACE(*n_fds *
sizeof(
int));
409 m.msg_control = alloca(m.msg_controllen);
410 memset(m.msg_control, 0, m.msg_controllen);
416 m.msg_controllen = CMSG_LEN (*n_fds *
sizeof(
int));
420 bytes_read = recvmsg (fd.fd, &m, 0
421#ifdef MSG_CMSG_CLOEXEC
442 for (cm = CMSG_FIRSTHDR(&m); cm; cm = CMSG_NXTHDR(&m, cm))
443 if (cm->cmsg_level == SOL_SOCKET && cm->cmsg_type == SCM_RIGHTS)
446 int *payload = (
int *) CMSG_DATA (cm);
447 size_t payload_len_bytes = (cm->cmsg_len - CMSG_LEN (0));
448 size_t payload_len_fds;
453 _DBUS_STATIC_ASSERT (
sizeof (
size_t) >=
sizeof (
unsigned int));
455 if ((m.msg_flags & MSG_CTRUNC) && CMSG_NXTHDR(&m, cm) ==
NULL &&
456 (
char *) payload + payload_len_bytes >
457 (
char *) m.msg_control + m.msg_controllen)
468 payload_len_bytes = m.msg_controllen -
469 ((
char *) payload - (
char *) m.msg_control);
472 payload_len_fds = payload_len_bytes /
sizeof (int);
474 if (_DBUS_LIKELY (payload_len_fds <= (
size_t) *n_fds))
477 fds_to_use = payload_len_fds;
485 fds_to_use = (size_t) *n_fds;
490 for (i = fds_to_use; i < payload_len_fds; i++)
496 memcpy (fds, payload, fds_to_use *
sizeof (
int));
501 *n_fds = (
unsigned int) fds_to_use;
506 for (i = 0; i < fds_to_use; i++)
515 if (m.msg_flags & MSG_CTRUNC)
526 for (i = 0; i < *n_fds; i++)
549_dbus_write_socket_with_unix_fds(
DBusSocket fd,
556#ifndef HAVE_UNIX_FD_PASSING
565 return _dbus_write_socket_with_unix_fds_two(fd, buffer, start, len,
NULL, 0, 0, fds, n_fds);
570_dbus_write_socket_with_unix_fds_two(
DBusSocket fd,
580#ifndef HAVE_UNIX_FD_PASSING
588 buffer1, start1, len1,
589 buffer2, start2, len2);
602 iov[0].iov_base = (
char*) _dbus_string_get_const_data_len (buffer1, start1, len1);
603 iov[0].iov_len = len1;
607 iov[1].iov_base = (
char*) _dbus_string_get_const_data_len (buffer2, start2, len2);
608 iov[1].iov_len = len2;
613 m.msg_iovlen = buffer2 ? 2 : 1;
617 m.msg_controllen = CMSG_SPACE(n_fds *
sizeof(
int));
618 m.msg_control = alloca(m.msg_controllen);
619 memset(m.msg_control, 0, m.msg_controllen);
621 cm = CMSG_FIRSTHDR(&m);
622 cm->cmsg_level = SOL_SOCKET;
623 cm->cmsg_type = SCM_RIGHTS;
624 cm->cmsg_len = CMSG_LEN(n_fds *
sizeof(
int));
625 memcpy(CMSG_DATA(cm), fds, n_fds *
sizeof(
int));
630 bytes_written = sendmsg (fd.fd, &m, 0
631#
if HAVE_DECL_MSG_NOSIGNAL
636 if (bytes_written < 0 && errno == EINTR)
640 if (bytes_written > 0)
644 return bytes_written;
670#if HAVE_DECL_MSG_NOSIGNAL
671 struct iovec vectors[2];
683 data1 = _dbus_string_get_const_data_len (buffer1, start1, len1);
686 data2 = _dbus_string_get_const_data_len (buffer2, start2, len2);
694 vectors[0].iov_base = (
char*) data1;
695 vectors[0].iov_len = len1;
696 vectors[1].iov_base = (
char*) data2;
697 vectors[1].iov_len = len2;
701 m.msg_iovlen = data2 ? 2 : 1;
705 bytes_written = sendmsg (fd.fd, &m, MSG_NOSIGNAL);
707 if (bytes_written < 0 && errno == EINTR)
710 return bytes_written;
714 buffer2, start2, len2);
745 start = _dbus_string_get_length (buffer);
757 bytes_read = read (fd, data, count);
803 data = _dbus_string_get_const_data_len (buffer, start, len);
807 bytes_written = write (fd, data, len);
809 if (bytes_written < 0 && errno == EINTR)
813 if (bytes_written > 0)
817 return bytes_written;
857 struct iovec vectors[2];
862 data1 = _dbus_string_get_const_data_len (buffer1, start1, len1);
865 data2 = _dbus_string_get_const_data_len (buffer2, start2, len2);
873 vectors[0].iov_base = (
char*) data1;
874 vectors[0].iov_len = len1;
875 vectors[1].iov_base = (
char*) data2;
876 vectors[1].iov_len = len2;
880 bytes_written = writev (fd,
884 if (bytes_written < 0 && errno == EINTR)
887 return bytes_written;
894 if (ret1 == len1 && buffer2 !=
NULL)
908#define _DBUS_MAX_SUN_PATH_LENGTH 99
946 struct sockaddr_un addr;
947 _DBUS_STATIC_ASSERT (
sizeof (addr.sun_path) > _DBUS_MAX_SUN_PATH_LENGTH);
949 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
951 _dbus_verbose (
"connecting to unix socket %s abstract=%d\n",
955 if (!_dbus_open_unix_socket (&fd, error))
957 _DBUS_ASSERT_ERROR_IS_SET(error);
960 _DBUS_ASSERT_ERROR_IS_CLEAR(error);
963 addr.sun_family = AF_UNIX;
964 path_len = strlen (path);
969 addr.sun_path[0] =
'\0';
972 if (path_len > _DBUS_MAX_SUN_PATH_LENGTH)
975 "Abstract socket name too long\n");
980 strncpy (&addr.sun_path[1], path, sizeof (addr.sun_path) - 2);
984 "Operating system does not support abstract socket namespace\n");
991 if (path_len > _DBUS_MAX_SUN_PATH_LENGTH)
994 "Socket name too long\n");
999 strncpy (addr.sun_path, path, sizeof (addr.sun_path) - 1);
1002 if (connect (fd, (
struct sockaddr*) &addr, _DBUS_STRUCT_OFFSET (
struct sockaddr_un, sun_path) + path_len) < 0)
1006 "Failed to connect to socket %s: %s",
1007 path, _dbus_strerror (errno));
1013 if (!_dbus_set_fd_nonblocking (fd, error))
1015 _DBUS_ASSERT_ERROR_IS_SET (error);
1046 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1048 _dbus_verbose (
"connecting to process %s\n", path);
1051 retval = socketpair (AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0, fds);
1052 cloexec_done = (retval >= 0);
1054 if (retval < 0 && (errno == EINVAL || errno == EPROTOTYPE))
1057 retval = socketpair (AF_UNIX, SOCK_STREAM, 0, fds);
1064 "Failed to create socket pair: %s",
1065 _dbus_strerror (errno));
1085 "Failed to fork() to call %s: %s",
1086 path, _dbus_strerror (errno));
1097 dup2 (fds[1], STDIN_FILENO);
1098 dup2 (fds[1], STDOUT_FILENO);
1100 if (fds[1] != STDIN_FILENO &&
1101 fds[1] != STDOUT_FILENO)
1109 execvp (path, (
char *
const *) argv);
1111 fprintf (stderr,
"Failed to execute process %s: %s\n", path, _dbus_strerror (errno));
1119 if (!_dbus_set_fd_nonblocking (fds[0], error))
1121 _DBUS_ASSERT_ERROR_IS_SET (error);
1153 struct sockaddr_un addr;
1155 _DBUS_STATIC_ASSERT (
sizeof (addr.sun_path) > _DBUS_MAX_SUN_PATH_LENGTH);
1157 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1159 _dbus_verbose (
"listening on unix socket %s abstract=%d\n",
1162 if (!_dbus_open_unix_socket (&listen_fd, error))
1164 _DBUS_ASSERT_ERROR_IS_SET(error);
1167 _DBUS_ASSERT_ERROR_IS_CLEAR(error);
1170 addr.sun_family = AF_UNIX;
1171 path_len = strlen (path);
1179 addr.sun_path[0] =
'\0';
1182 if (path_len > _DBUS_MAX_SUN_PATH_LENGTH)
1185 "Abstract socket name too long\n");
1190 strncpy (&addr.sun_path[1], path, sizeof (addr.sun_path) - 2);
1194 "Operating system does not support abstract socket namespace\n");
1214 if (stat (path, &sb) == 0 &&
1215 S_ISSOCK (sb.st_mode))
1219 if (path_len > _DBUS_MAX_SUN_PATH_LENGTH)
1222 "Socket name too long\n");
1227 strncpy (addr.sun_path, path, sizeof (addr.sun_path) - 1);
1230 if (bind (listen_fd, (
struct sockaddr*) &addr, _DBUS_STRUCT_OFFSET (
struct sockaddr_un, sun_path) + path_len) < 0)
1233 "Failed to bind socket \"%s\": %s",
1234 path, _dbus_strerror (errno));
1239 if (listen (listen_fd, SOMAXCONN ) < 0)
1242 "Failed to listen on socket \"%s\": %s",
1243 path, _dbus_strerror (errno));
1248 if (!_dbus_set_fd_nonblocking (listen_fd, error))
1250 _DBUS_ASSERT_ERROR_IS_SET (error);
1258 if (!abstract && chmod (path, 0777) < 0)
1259 _dbus_warn (
"Could not set mode 0777 on socket %s", path);
1284 _dbus_verbose(
"Entry (new socket processing NSP)\n");
1287 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1289 n = sd_listen_fds (
TRUE);
1293 "Failed to acquire systemd socket: %s",
1294 _dbus_strerror (-n));
1301 "No socket received.");
1305 for (fd = SD_LISTEN_FDS_START; fd < SD_LISTEN_FDS_START + n; fd ++)
1307 r = sd_is_socket (fd, AF_UNSPEC, SOCK_STREAM, 1);
1311 "Failed to verify systemd socket type: %s",
1312 _dbus_strerror (-r));
1319 "Passed socket has wrong type.");
1331 "Failed to allocate file handle array.");
1335 for (fd = SD_LISTEN_FDS_START; fd < SD_LISTEN_FDS_START + n; fd ++)
1337 if (!_dbus_set_fd_nonblocking (fd, error))
1339 _DBUS_ASSERT_ERROR_IS_SET (error);
1343 new_fds[fd - SD_LISTEN_FDS_START].fd = fd;
1351 for (fd = SD_LISTEN_FDS_START; fd < SD_LISTEN_FDS_START + n; fd ++)
1360 "dbus was compiled without systemd support");
1368_dbus_error_from_gai (
int gai_res,
1434 return _dbus_connect_tcp_socket_with_nonce (host, port, family, (
const char*)
NULL, error);
1438_dbus_connect_tcp_socket_with_nonce (
const char *host,
1441 const char *noncefile,
1444 int saved_errno = 0;
1448 struct addrinfo hints;
1449 struct addrinfo *ai =
NULL;
1450 const struct addrinfo *tmp;
1453 _DBUS_ASSERT_ERROR_IS_CLEAR(error);
1458 hints.ai_family = AF_UNSPEC;
1459 else if (!strcmp(family,
"ipv4"))
1460 hints.ai_family = AF_INET;
1461 else if (!strcmp(family,
"ipv6"))
1462 hints.ai_family = AF_INET6;
1467 "Unknown address family %s", family);
1468 return _dbus_socket_get_invalid ();
1470 hints.ai_protocol = IPPROTO_TCP;
1471 hints.ai_socktype = SOCK_STREAM;
1472 hints.ai_flags = AI_ADDRCONFIG;
1474 if ((res = getaddrinfo(host, port, &hints, &ai)) != 0)
1477 _dbus_error_from_gai (res, errno),
1478 "Failed to lookup host/port: \"%s:%s\": %s (%d)",
1479 host, port, gai_strerror(res), res);
1480 _dbus_socket_invalidate (&fd);
1487 if (!_dbus_open_socket (&fd.fd, tmp->ai_family, SOCK_STREAM, 0, error))
1489 _DBUS_ASSERT_ERROR_IS_SET(error);
1490 _dbus_socket_invalidate (&fd);
1493 _DBUS_ASSERT_ERROR_IS_CLEAR(error);
1495 if (connect (fd.fd, (
struct sockaddr*) tmp->ai_addr, tmp->ai_addrlen) < 0)
1497 saved_errno = errno;
1499 _dbus_socket_invalidate (&fd);
1503 if (connect_error ==
NULL)
1505 _DBUS_SET_OOM (error);
1510 _dbus_set_error_with_inet_sockaddr (connect_error,
1511 tmp->ai_addr, tmp->ai_addrlen,
1512 "Failed to connect to socket",
1519 _DBUS_SET_OOM (error);
1530 if (!_dbus_socket_is_valid (fd))
1532 _dbus_combine_tcp_errors (&connect_errors,
"Failed to connect",
1537 if (noncefile !=
NULL)
1542 ret = _dbus_send_nonce (fd, &noncefileStr, error);
1547 _dbus_socket_invalidate (&fd);
1552 if (!_dbus_set_fd_nonblocking (fd.fd, error))
1555 _dbus_socket_invalidate (&fd);
1594 const char **retfamily,
1599 int nlisten_fd = 0, res, i;
1603 struct addrinfo hints;
1604 struct addrinfo *ai, *tmp;
1605 unsigned int reuseaddr;
1610 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1615 hints.ai_family = AF_UNSPEC;
1616 else if (!strcmp(family,
"ipv4"))
1617 hints.ai_family = AF_INET;
1618 else if (!strcmp(family,
"ipv6"))
1619 hints.ai_family = AF_INET6;
1624 "Unknown address family %s", family);
1628 hints.ai_protocol = IPPROTO_TCP;
1629 hints.ai_socktype = SOCK_STREAM;
1630 hints.ai_flags = AI_ADDRCONFIG | AI_PASSIVE;
1632 redo_lookup_with_port:
1634 if ((res = getaddrinfo(host, port, &hints, &ai)) != 0 || !ai)
1637 _dbus_error_from_gai (res, errno),
1638 "Failed to lookup host/port: \"%s:%s\": %s (%d)",
1639 host ? host :
"*", port, gai_strerror(res), res);
1646 int fd = -1, tcp_nodelay_on;
1649 if (!_dbus_open_socket (&fd, tmp->ai_family, SOCK_STREAM, 0, error))
1651 _DBUS_ASSERT_ERROR_IS_SET(error);
1654 _DBUS_ASSERT_ERROR_IS_CLEAR(error);
1657 if (setsockopt (fd, SOL_SOCKET, SO_REUSEADDR, &reuseaddr,
sizeof(reuseaddr))==-1)
1659 _dbus_warn (
"Failed to set socket option \"%s:%s\": %s",
1660 host ? host :
"*", port, _dbus_strerror (errno));
1666 if (setsockopt (fd, IPPROTO_TCP, TCP_NODELAY, &tcp_nodelay_on,
sizeof (tcp_nodelay_on)) == -1)
1668 _dbus_warn (
"Failed to set TCP_NODELAY socket option \"%s:%s\": %s",
1669 host ? host :
"*", port, _dbus_strerror (errno));
1672 if (bind (fd, (
struct sockaddr*) tmp->ai_addr, tmp->ai_addrlen) < 0)
1674 saved_errno = errno;
1698 if (bind_error ==
NULL)
1700 _DBUS_SET_OOM (error);
1705 _dbus_set_error_with_inet_sockaddr (bind_error, tmp->ai_addr, tmp->ai_addrlen,
1706 "Failed to bind socket",
1713 _DBUS_SET_OOM (error);
1722 if (listen (fd, 30 ) < 0)
1724 saved_errno = errno;
1726 _dbus_set_error_with_inet_sockaddr (error, tmp->ai_addr, tmp->ai_addrlen,
1727 "Failed to listen on socket",
1737 "Failed to allocate file handle array");
1740 listen_fd = newlisten_fd;
1741 listen_fd[nlisten_fd].fd = fd;
1744 if (tmp->ai_addr->sa_family == AF_INET)
1746 else if (tmp->ai_addr->sa_family == AF_INET6)
1749 if (!_dbus_string_get_length(retport))
1755 if (!port || !strcmp(port,
"0"))
1758 struct sockaddr_storage addr;
1762 addrlen =
sizeof(addr);
1763 result = getsockname(fd, (
struct sockaddr*) &addr, &addrlen);
1767 saved_errno = errno;
1769 "Failed to retrieve socket name for \"%s:%s\": %s",
1770 host ? host :
"*", port, _dbus_strerror (saved_errno));
1774 if ((res = getnameinfo ((
struct sockaddr*)&addr, addrlen,
NULL, 0,
1775 portbuf,
sizeof(portbuf),
1776 NI_NUMERICHOST | NI_NUMERICSERV)) != 0)
1778 saved_errno = errno;
1780 "Failed to resolve port \"%s:%s\": %s (%d)",
1781 host ? host :
"*", port, gai_strerror(res), res);
1792 port = _dbus_string_get_const_data(retport);
1794 goto redo_lookup_with_port;
1813 _dbus_combine_tcp_errors (&bind_errors,
"Failed to bind", host,
1818 if (have_ipv4 && !have_ipv6)
1819 *retfamily =
"ipv4";
1820 else if (!have_ipv4 && have_ipv6)
1821 *retfamily =
"ipv6";
1823 for (i = 0 ; i < nlisten_fd ; i++)
1825 if (!_dbus_set_fd_nonblocking (listen_fd[i].fd, error))
1846 for (i = 0 ; i < nlisten_fd ; i++)
1860write_credentials_byte (
int server_fd,
1864 char buf[1] = {
'\0' };
1865#if defined(HAVE_CMSGCRED)
1868 char cred[CMSG_SPACE (
sizeof (
struct cmsgcred))];
1879 msg.msg_control = (caddr_t) &cmsg;
1880 msg.msg_controllen = CMSG_SPACE (
sizeof (
struct cmsgcred));
1882 cmsg.hdr.cmsg_len = CMSG_LEN (
sizeof (
struct cmsgcred));
1883 cmsg.hdr.cmsg_level = SOL_SOCKET;
1884 cmsg.hdr.cmsg_type = SCM_CREDS;
1887 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1891#if defined(HAVE_CMSGCRED)
1892 bytes_written = sendmsg (server_fd, &msg, 0
1893#
if HAVE_DECL_MSG_NOSIGNAL
1901 if (bytes_written < 0 && errno == EINVAL)
1904 bytes_written = send (server_fd, buf, 1, 0
1905#
if HAVE_DECL_MSG_NOSIGNAL
1911 if (bytes_written < 0 && errno == EINTR)
1914 if (bytes_written < 0)
1917 "Failed to write credentials byte: %s",
1918 _dbus_strerror (errno));
1921 else if (bytes_written == 0)
1924 "wrote zero bytes writing credentials byte");
1930 _dbus_verbose (
"wrote credentials byte\n");
1937add_groups_to_credentials (
int client_fd,
1941#if defined(__linux__) && defined(SO_PEERGROUPS)
1942 _DBUS_STATIC_ASSERT (
sizeof (gid_t) <=
sizeof (
dbus_gid_t));
1944 socklen_t len = 1024;
1952 n_gids = ((size_t) len) /
sizeof (gid_t);
1958 while (getsockopt (client_fd, SOL_SOCKET, SO_PEERGROUPS, buf, &len) < 0)
1963 _dbus_verbose (
"getsockopt failed with %s, len now %lu\n",
1964 _dbus_strerror (e), (
unsigned long) len);
1966 if (e != ERANGE || (
size_t) len <= n_gids *
sizeof (gid_t))
1968 _dbus_verbose (
"Failed to getsockopt(SO_PEERGROUPS): %s\n",
1969 _dbus_strerror (e));
1975 n_gids = ((size_t) len) /
sizeof (gid_t);
1978 if (replacement ==
NULL)
1985 _dbus_verbose (
"will try again with %lu\n", (
unsigned long) len);
1990 _dbus_verbose (
"getsockopt(SO_PEERGROUPS) yielded <= 0 bytes: %ld\n",
1995 if (len > n_gids *
sizeof (gid_t))
1997 _dbus_verbose (
"%lu > %zu", (
unsigned long) len, n_gids *
sizeof (gid_t));
2001 if (len %
sizeof (gid_t) != 0)
2003 _dbus_verbose (
"getsockopt(SO_PEERGROUPS) did not return an "
2004 "integer multiple of sizeof(gid_t): %lu should be "
2006 (
unsigned long) len,
sizeof (gid_t));
2011 n_gids = ((size_t) len) /
sizeof (gid_t);
2019 _dbus_verbose (
"getsockopt(SO_PEERGROUPS) returned a huge number "
2020 "of groups (%lu bytes), ignoring",
2021 (
unsigned long) len);
2027 if (converted_gids ==
NULL)
2033 for (i = 0; i < n_gids; i++)
2037 if (converted_gids[i] == primary)
2038 need_primary =
FALSE;
2043 converted_gids[n_gids] = primary;
2060add_linux_security_label_to_credentials (
int client_fd,
2063#if defined(__linux__) && defined(SO_PEERSEC)
2065 socklen_t len = 1024;
2072 while (getsockopt (client_fd, SOL_SOCKET, SO_PEERSEC,
2073 _dbus_string_get_data (&buf), &len) < 0)
2077 _dbus_verbose (
"getsockopt failed with %s, len now %lu\n",
2078 _dbus_strerror (e), (
unsigned long) len);
2080 if (e != ERANGE || len <= _dbus_string_get_length_uint (&buf))
2082 _dbus_verbose (
"Failed to getsockopt(SO_PEERSEC): %s\n",
2083 _dbus_strerror (e));
2095 _dbus_verbose (
"will try again with %lu\n", (
unsigned long) len);
2100 _dbus_verbose (
"getsockopt(SO_PEERSEC) yielded <= 0 bytes: %lu\n",
2101 (
unsigned long) len);
2105 if (len > _dbus_string_get_length_uint (&buf))
2107 _dbus_verbose (
"%lu > %u", (
unsigned long) len,
2108 _dbus_string_get_length_uint (&buf));
2112 if (_dbus_string_get_byte (&buf, len - 1) == 0)
2116 _dbus_verbose (
"subtracting trailing \\0\n");
2127 if (strlen (_dbus_string_get_const_data (&buf)) != len)
2132 _dbus_verbose (
"security label from kernel had an embedded \\0, "
2137 _dbus_verbose (
"getsockopt(SO_PEERSEC): %lu bytes excluding \\0: %s\n",
2138 (
unsigned long) len,
2139 _dbus_string_get_const_data (&buf));
2142 _dbus_string_get_const_data (&buf)))
2210 BusPDPLinuxID* read_parsecid=
NULL;
2225 char cred[CMSG_SPACE (
sizeof (
struct cmsgcred))];
2233 _DBUS_STATIC_ASSERT (
sizeof (pid_t) <=
sizeof (
dbus_pid_t));
2234 _DBUS_STATIC_ASSERT (
sizeof (uid_t) <=
sizeof (
dbus_uid_t));
2235 _DBUS_STATIC_ASSERT (
sizeof (gid_t) <=
sizeof (
dbus_gid_t));
2241 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2245 iov.iov_base = &buf;
2252#if defined(HAVE_CMSGCRED)
2254 msg.msg_control = (caddr_t) &cmsg;
2255 msg.msg_controllen = CMSG_SPACE (
sizeof (
struct cmsgcred));
2259 bytes_read = recvmsg (client_fd.fd, &msg, 0);
2272 "Failed to read credentials byte: %s",
2273 _dbus_strerror (errno));
2276 else if (bytes_read == 0)
2282 "Failed to read credentials byte (zero-length read)");
2285 else if (buf !=
'\0')
2288 "Credentials byte was not nul");
2292 _dbus_verbose (
"read credentials byte\n");
2305 struct sockpeercred cr;
2309 socklen_t cr_len =
sizeof (cr);
2311 if (getsockopt (client_fd.fd, SOL_SOCKET, SO_PEERCRED, &cr, &cr_len) != 0)
2313 _dbus_verbose (
"Failed to getsockopt(SO_PEERCRED): %s\n",
2314 _dbus_strerror (errno));
2316 else if (cr_len !=
sizeof (cr))
2318 _dbus_verbose (
"Failed to getsockopt(SO_PEERCRED), returned %d bytes, expected %d\n",
2319 cr_len, (
int)
sizeof (cr));
2328 memset(&caps,0xCC,
sizeof(caps));
2330 res_cap=parsec_capget(pid_read,&caps);
2332 _dbus_verbose(
"parsec_capget: %m\n");
2334 _dbus_verbose(
"So: set caps=0\n");
2336 memset(&caps,0,
sizeof(caps));
2339 _dbus_verbose(
"parsec_capget: success\n");
2342 pdpl=pdp_get_peer_label(client_fd.fd);
2344 _dbus_verbose(
"pdp_get_peer_label: %m\n");
2347 _dbus_verbose(
"pdp_get_peer_label: success\n");
2350 if (pid_read && (0==res_cap) && pdpl ){
2352 void* rawlabel=
NULL;
2354 _dbus_verbose(
"call pdpl_get_raw\n");
2355 rawlabel=pdpl_get_raw(pdpl,&sz);
2361 memcpy(&read_parsecid->caps,&caps,
sizeof(caps));
2363 read_parsecid->sz_pdplinux_context=sz;
2365 memcpy(read_parsecid->pdplinux_context,rawlabel,sz);
2367 if (!_dbus_credentials_pdplinux_add_unix_parsec(credentials, read_parsecid)){
2368 _dbus_verbose(
"_dbus_credentials_add_unix_parsec failed!\n");
2371 _dbus_verbose(
"_dbus_credentials_add_unix_parsec OK!\n");
2373 _dbus_pdplinux_show_text_label_info3(
"Label to process", read_parsecid);
2379 _dbus_verbose(
"No memory\n");
2385 _dbus_verbose(
"pdpl_get_raw failed so no caps/no pdpl: %m\n");
2390 _dbus_verbose(
"Get process label and caps for pid=%ld (current pid is %ld) failed: caps - %s, pdp_get_pid - %s\n",
2392 0==res_cap ?
"OK" :
"Failed",
2393 pdpl ?
"OK" :
"Failed");
2396 if (pdpl) pdpl_put(pdpl);
2404 primary_gid_read = cr.gid;
2407#elif defined(HAVE_UNPCBID) && defined(LOCAL_PEEREID)
2411 socklen_t cr_len =
sizeof (cr);
2413 if (getsockopt (client_fd.fd, 0, LOCAL_PEEREID, &cr, &cr_len) != 0)
2415 _dbus_verbose (
"Failed to getsockopt(LOCAL_PEEREID): %s\n",
2416 _dbus_strerror (errno));
2418 else if (cr_len !=
sizeof (cr))
2420 _dbus_verbose (
"Failed to getsockopt(LOCAL_PEEREID), returned %d bytes, expected %d\n",
2421 cr_len, (
int)
sizeof (cr));
2425 pid_read = cr.unp_pid;
2426 uid_read = cr.unp_euid;
2428#elif defined(HAVE_CMSGCRED)
2437 struct cmsgcred *cred;
2438 struct cmsghdr *cmsgp;
2440 for (cmsgp = CMSG_FIRSTHDR (&msg);
2442 cmsgp = CMSG_NXTHDR (&msg, cmsgp))
2444 if (cmsgp->cmsg_type == SCM_CREDS &&
2445 cmsgp->cmsg_level == SOL_SOCKET &&
2446 cmsgp->cmsg_len >= CMSG_LEN (
sizeof (
struct cmsgcred)))
2448 cred = (
struct cmsgcred *) CMSG_DATA (cmsgp);
2449 pid_read = cred->cmcred_pid;
2450 uid_read = cred->cmcred_euid;
2455#elif defined(HAVE_GETPEERUCRED)
2459 ucred_t * ucred =
NULL;
2460 if (getpeerucred (client_fd.fd, &ucred) == 0)
2463 adt_session_data_t *adth =
NULL;
2465 pid_read = ucred_getpid (ucred);
2466 uid_read = ucred_geteuid (ucred);
2469 if (adt_start_session (&adth,
NULL, 0) || (adth ==
NULL))
2471 _dbus_verbose (
"Failed to adt_start_session(): %s\n", _dbus_strerror (errno));
2475 if (adt_set_from_ucred (adth, ucred, ADT_NEW))
2477 _dbus_verbose (
"Failed to adt_set_from_ucred(): %s\n", _dbus_strerror (errno));
2481 adt_export_data_t *data =
NULL;
2482 size_t size = adt_export_session_data (adth, &data);
2485 _dbus_verbose (
"Failed to adt_export_session_data(): %s\n", _dbus_strerror (errno));
2493 (void) adt_end_session (adth);
2499 _dbus_verbose (
"Failed to getpeerucred() credentials: %s\n", _dbus_strerror (errno));
2509#elif defined(HAVE_GETPEEREID)
2527 if (getpeereid (client_fd.fd, &euid, &egid) == 0)
2533 _dbus_verbose (
"Failed to getpeereid() credentials: %s\n", _dbus_strerror (errno));
2537#warning Socket credentials not supported on this Unix OS
2538#warning Please tell https:
2544#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || \
2545 defined(__linux__) || \
2546 defined(__OpenBSD__) || \
2548# error Credentials passing not working on this OS is a regression!
2551 _dbus_verbose (
"Socket credentials not supported on this OS\n");
2555 _dbus_verbose (
"Credentials:"
2566 _DBUS_SET_OOM (error);
2575 _DBUS_SET_OOM (error);
2580 if (!add_linux_security_label_to_credentials (client_fd.fd, credentials))
2582 _DBUS_SET_OOM (error);
2588 if (!add_groups_to_credentials (client_fd.fd, credentials, primary_gid_read))
2590 _DBUS_SET_OOM (error);
2597 if (!_dbus_credentials_pdplinux_add_unix_parsec (credentials, read_parsecid))
2599 _dbus_verbose (
"_dbus_credentials_add_unix_parsec: failed\n");
2600 _DBUS_SET_OOM (error);
2604 _dbus_verbose (
"_dbus_credentials_add_unix_parsec: OK\n");
2633 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2635 if (write_credentials_byte (server_fd.fd, error))
2654 struct sockaddr addr;
2660 addrlen =
sizeof (addr);
2670 client_fd.fd = accept4 (listen_fd.fd, &addr, &addrlen, SOCK_CLOEXEC);
2671 cloexec_done = client_fd.fd >= 0;
2673 if (client_fd.fd < 0 && (errno == ENOSYS || errno == EINVAL))
2676 client_fd.fd = accept (listen_fd.fd, &addr, &addrlen);
2679 if (client_fd.fd < 0)
2685 _dbus_verbose (
"client fd %d accepted\n", client_fd.fd);
2708 const char *directory;
2711 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2713 directory = _dbus_string_get_const_data (dir);
2715 if (stat (directory, &sb) < 0)
2718 "%s", _dbus_strerror (errno));
2723 if (sb.st_uid != geteuid ())
2726 "%s directory is owned by user %lu, not %lu",
2728 (
unsigned long) sb.st_uid,
2729 (
unsigned long) geteuid ());
2733 if ((S_IROTH & sb.st_mode) || (S_IWOTH & sb.st_mode) ||
2734 (S_IRGRP & sb.st_mode) || (S_IWGRP & sb.st_mode))
2737 "%s directory is not private to the user", directory);
2745fill_user_info_from_passwd (
struct passwd *p,
2752 info->
uid = p->pw_uid;
2773 const char *username_c;
2786 if (username !=
NULL)
2787 username_c = _dbus_string_get_const_data (username);
2796#ifdef HAVE_GETPWNAM_R
2802 struct passwd p_str;
2805 buflen = sysconf (_SC_GETPW_R_SIZE_MAX);
2811 if ((
long) buflen <= 0)
2826 result = getpwuid_r (uid, &p_str, buf, buflen,
2829 result = getpwnam_r (username_c, &p_str, buf, buflen,
2832 if (result == ERANGE && buflen < 512 * 1024)
2842 if (result == 0 && p == &p_str)
2844 if (!fill_user_info_from_passwd (p, info, error))
2854 "User \"%s\" unknown or no memory to allocate password entry\n",
2855 username_c ? username_c :
"???");
2856 _dbus_verbose (
"User %s unknown\n", username_c ? username_c :
"???");
2866#warning getpwnam_r() not available, please report this to the dbus maintainers with details of your OS
2871 p = getpwnam (username_c);
2875 if (!fill_user_info_from_passwd (p, info, error))
2883 "User \"%s\" unknown or no memory to allocate password entry\n",
2884 username_c ? username_c :
"???");
2885 _dbus_verbose (
"User %s unknown\n", username_c ? username_c :
"???");
2894#ifdef HAVE_GETGROUPLIST
2899 int initial_buf_count;
2901 initial_buf_count = 17;
2902 buf_count = initial_buf_count;
2910 if (getgrouplist (username_c,
2912 buf, &buf_count) < 0)
2928 if (buf_count == initial_buf_count)
2943 if (getgrouplist (username_c, info->
primary_gid, buf, &buf_count) < 0)
2947 _dbus_warn (
"It appears that username \"%s\" is in more than %d groups.\nProceeding with just the first %d groups.",
2948 username_c, buf_count, buf_count);
2954 "Failed to get groups for username \"%s\" primary GID "
2957 _dbus_strerror (errno));
2972 for (i = 0; i < buf_count; ++i)
2995 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3000 _DBUS_ASSERT_ERROR_IS_SET (error);
3034 return fill_user_info (info, uid,
3057 parsec_caps_t caps={0,0,0};
3059 BusPDPLinuxID* parsecid=
NULL;
3066 _DBUS_STATIC_ASSERT (
sizeof (pid_t) <=
sizeof (
dbus_pid_t));
3067 _DBUS_STATIC_ASSERT (
sizeof (uid_t) <=
sizeof (
dbus_uid_t));
3068 _DBUS_STATIC_ASSERT (
sizeof (gid_t) <=
sizeof (
dbus_gid_t));
3076 memset(&caps,0,
sizeof(caps));
3079 res_cap=parsec_capget(0,&caps);
3080 if (0!=res_cap) _dbus_verbose(
"parsec_capget: %m\n");
3082 pdpl=pdp_get_current();
3083 if (!pdpl) _dbus_verbose(
"pdp_get_current: %m\n");
3085 if ( 0==res_cap && pdpl ){
3089 _dbus_verbose(
"Get caps and label to process pid=%ld\n",curpid);
3091 rawlabel=pdpl_get_raw(pdpl,&sz);
3097 parsecid->caps=caps;
3098 parsecid->sz_pdplinux_context=sz;
3100 memcpy(parsecid->pdplinux_context,rawlabel,sz);
3102 if (!_dbus_credentials_pdplinux_add_unix_parsec(credentials, parsecid)){
3103 _dbus_verbose(
"_dbus_credentials_add_unix_parsec failed so no caps and label\n");
3110 _dbus_verbose(
"No memory\n");
3117 _dbus_verbose(
"pdpl_get_raw failed so no caps and label: %m\n");
3122 _dbus_verbose(
"Get process label and caps for pid=%ld (this is current process) failed: caps - %s, pdp_get_pid - %s\n",
3124 0==res_cap ?
"OK" :
"Failed",
3125 pdpl ?
"OK" :
"Failed");
3130 if (pdpl) pdpl_put(pdpl);
3204static pthread_mutex_t atomic_mutex = PTHREAD_MUTEX_INITIALIZER;
3217 return __sync_add_and_fetch(&atomic->
value, 1)-1;
3221 pthread_mutex_lock (&atomic_mutex);
3222 res = atomic->
value;
3224 pthread_mutex_unlock (&atomic_mutex);
3240 return __sync_sub_and_fetch(&atomic->
value, 1)+1;
3244 pthread_mutex_lock (&atomic_mutex);
3245 res = atomic->
value;
3247 pthread_mutex_unlock (&atomic_mutex);
3264 __sync_synchronize ();
3265 return atomic->
value;
3269 pthread_mutex_lock (&atomic_mutex);
3270 res = atomic->
value;
3271 pthread_mutex_unlock (&atomic_mutex);
3287 __sync_and_and_fetch (&atomic->
value, 0);
3289 pthread_mutex_lock (&atomic_mutex);
3291 pthread_mutex_unlock (&atomic_mutex);
3305 __sync_or_and_fetch (&atomic->
value, 1);
3307 pthread_mutex_lock (&atomic_mutex);
3309 pthread_mutex_unlock (&atomic_mutex);
3324 int timeout_milliseconds)
3326#if defined(HAVE_POLL) && !defined(BROKEN_POLL)
3328 if (timeout_milliseconds < -1)
3330 timeout_milliseconds = -1;
3335 timeout_milliseconds);
3338 fd_set read_set, write_set, err_set;
3344 FD_ZERO (&read_set);
3345 FD_ZERO (&write_set);
3348 for (i = 0; i < n_fds; i++)
3353 FD_SET (fdp->
fd, &read_set);
3356 FD_SET (fdp->
fd, &write_set);
3358 FD_SET (fdp->
fd, &err_set);
3360 max_fd = MAX (max_fd, fdp->
fd);
3363 tv.tv_sec = timeout_milliseconds / 1000;
3364 tv.tv_usec = (timeout_milliseconds % 1000) * 1000;
3366 ready = select (max_fd + 1, &read_set, &write_set, &err_set,
3367 timeout_milliseconds < 0 ?
NULL : &tv);
3371 for (i = 0; i < n_fds; i++)
3377 if (FD_ISSET (fdp->
fd, &read_set))
3380 if (FD_ISSET (fdp->
fd, &write_set))
3383 if (FD_ISSET (fdp->
fd, &err_set))
3403#ifdef HAVE_MONOTONIC_CLOCK
3405 clock_gettime (CLOCK_MONOTONIC, &ts);
3408 *tv_sec = ts.tv_sec;
3410 *tv_usec = ts.tv_nsec / 1000;
3414 gettimeofday (&t,
NULL);
3419 *tv_usec = t.tv_usec;
3436 gettimeofday (&t,
NULL);
3441 *tv_usec = t.tv_usec;
3456 const char *filename_c;
3458 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3460 filename_c = _dbus_string_get_const_data (filename);
3462 if (mkdir (filename_c, 0700) < 0)
3464 if (errno == EEXIST)
3468 "Failed to create directory %s: %s\n",
3469 filename_c, _dbus_strerror (errno));
3488 const char *filename_c;
3490 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3492 filename_c = _dbus_string_get_const_data (filename);
3494 if (mkdir (filename_c, 0700) < 0)
3497 "Failed to create directory %s: %s\n",
3498 filename_c, _dbus_strerror (errno));
3522 if (_dbus_string_get_length (dir) == 0 ||
3523 _dbus_string_get_length (next_component) == 0)
3526 dir_ends_in_slash =
'/' == _dbus_string_get_byte (dir,
3527 _dbus_string_get_length (dir) - 1);
3529 file_starts_with_slash =
'/' == _dbus_string_get_byte (next_component, 0);
3531 if (dir_ends_in_slash && file_starts_with_slash)
3535 else if (!(dir_ends_in_slash || file_starts_with_slash))
3542 _dbus_string_get_length (dir));
3546#define NANOSECONDS_PER_SECOND 1000000000
3548#define MICROSECONDS_PER_SECOND 1000000
3550#define MILLISECONDS_PER_SECOND 1000
3552#define NANOSECONDS_PER_MILLISECOND 1000000
3554#define MICROSECONDS_PER_MILLISECOND 1000
3563#ifdef HAVE_NANOSLEEP
3564 struct timespec req;
3565 struct timespec rem;
3567 req.tv_sec = milliseconds / MILLISECONDS_PER_SECOND;
3568 req.tv_nsec = (milliseconds % MILLISECONDS_PER_SECOND) * NANOSECONDS_PER_MILLISECOND;
3572 while (nanosleep (&req, &rem) < 0 && errno == EINTR)
3574#elif defined (HAVE_USLEEP)
3575 usleep (milliseconds * MICROSECONDS_PER_MILLISECOND);
3577 sleep (MAX (milliseconds / 1000, 1));
3595 int old_len = _dbus_string_get_length (str);
3598#ifdef HAVE_GETRANDOM
3603 _DBUS_SET_OOM (error);
3608 result = getrandom (buffer, n_bytes, GRND_NONBLOCK);
3610 if (result == n_bytes)
3617 fd = open (
"/dev/urandom", O_RDONLY);
3622 "Could not open /dev/urandom: %s",
3623 _dbus_strerror (errno));
3627 _dbus_verbose (
"/dev/urandom fd %d opened\n", fd);
3631 if (result != n_bytes)
3635 "Could not read /dev/urandom: %s",
3636 _dbus_strerror (errno));
3639 "Short read from /dev/urandom");
3646 _dbus_verbose (
"Read %d bytes from /dev/urandom\n",
3674_dbus_strerror (
int error_number)
3678 msg = strerror (error_number);
3691 signal (SIGPIPE, SIG_IGN);
3706 val = fcntl (fd, F_GETFD, 0);
3713 fcntl (fd, F_SETFD, val);
3728 val = fcntl (fd, F_GETFD, 0);
3735 fcntl (fd, F_SETFD, val);
3749 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3758 "Could not close fd %d", fd);
3779#ifdef F_DUPFD_CLOEXEC
3782 new_fd = fcntl(fd, F_DUPFD_CLOEXEC, 3);
3783 cloexec_done = new_fd >= 0;
3785 if (new_fd < 0 && errno == EINVAL)
3788 new_fd = fcntl(fd, F_DUPFD, 3);
3794 "Could not duplicate fd %d", fd);
3798#ifdef F_DUPFD_CLOEXEC
3819 return _dbus_set_fd_nonblocking (fd.fd, error);
3823_dbus_set_fd_nonblocking (
int fd,
3828 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3830 val = fcntl (fd, F_GETFL, 0);
3834 "Failed to get flags from file descriptor %d: %s",
3835 fd, _dbus_strerror (errno));
3836 _dbus_verbose (
"Failed to get flags for fd %d: %s\n", fd,
3837 _dbus_strerror (errno));
3841 if (fcntl (fd, F_SETFL, val | O_NONBLOCK) < 0)
3844 "Failed to set nonblocking flag of file descriptor %d: %s",
3845 fd, _dbus_strerror (errno));
3846 _dbus_verbose (
"Failed to set fd %d nonblocking: %s\n",
3847 fd, _dbus_strerror (errno));
3863#if defined (HAVE_BACKTRACE) && defined (DBUS_BUILT_R_DYNAMIC)
3869 bt_size = backtrace (bt, 500);
3871 syms = backtrace_symbols (bt, bt_size);
3877 fprintf (stderr,
" %s\n", syms[i]);
3883#elif defined (HAVE_BACKTRACE) && ! defined (DBUS_BUILT_R_DYNAMIC)
3884 fprintf (stderr,
" D-Bus not built with -rdynamic so unable to print a backtrace\n");
3886 fprintf (stderr,
" D-Bus not compiled with backtrace support so unable to print a backtrace\n");
3908#ifdef HAVE_SOCKETPAIR
3915 retval = socketpair(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0, fds);
3916 cloexec_done = retval >= 0;
3918 if (retval < 0 && (errno == EINVAL || errno == EPROTOTYPE))
3921 retval = socketpair(AF_UNIX, SOCK_STREAM, 0, fds);
3927 "Could not create full-duplex pipe");
3931 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3942 (!_dbus_set_fd_nonblocking (fds[0],
NULL) ||
3943 !_dbus_set_fd_nonblocking (fds[1],
NULL)))
3946 "Could not set full-duplex pipe nonblocking");
3957 _dbus_verbose (
"full-duplex pipe %d <-> %d\n",
3962 _dbus_warn (
"_dbus_socketpair() not implemented on this OS");
3964 "_dbus_socketpair() not implemented on this OS");
3981 char static_buf[1024];
3982 int bufsize =
sizeof (static_buf);
3986 DBUS_VA_COPY (args_copy, args);
3987 len = vsnprintf (static_buf, bufsize, format, args_copy);
4004 DBUS_VA_COPY (args_copy, args);
4006 if (vsnprintf (static_buf, 1, format, args_copy) == 1)
4025 DBUS_VA_COPY (args_copy, args);
4026 len = vsnprintf (buf, bufsize, format, args_copy);
4051 static const char* tmpdir =
NULL;
4063 tmpdir = getenv(
"TMPDIR");
4069 tmpdir = getenv(
"TMP");
4071 tmpdir = getenv(
"TEMP");
4085#if defined(DBUS_ENABLE_X11_AUTOLAUNCH) || defined(DBUS_ENABLE_LAUNCHD)
4106_read_subprocess_line_argv (
const char *progpath,
4108 const char *
const *argv,
4112 int result_pipe[2] = { -1, -1 };
4113 int errors_pipe[2] = { -1, -1 };
4120 sigset_t new_set, old_set;
4122 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
4129 sigemptyset (&new_set);
4130 sigaddset (&new_set, SIGCHLD);
4131 sigprocmask (SIG_BLOCK, &new_set, &old_set);
4133 orig_len = _dbus_string_get_length (result);
4137 if (pipe (result_pipe) < 0)
4140 "Failed to create a pipe to call %s: %s",
4141 progpath, _dbus_strerror (errno));
4142 _dbus_verbose (
"Failed to create a pipe to call %s: %s\n",
4143 progpath, _dbus_strerror (errno));
4146 if (pipe (errors_pipe) < 0)
4149 "Failed to create a pipe to call %s: %s",
4150 progpath, _dbus_strerror (errno));
4151 _dbus_verbose (
"Failed to create a pipe to call %s: %s\n",
4152 progpath, _dbus_strerror (errno));
4165 "Failed to fork() to call %s: %s",
4166 progpath, _dbus_strerror (errno));
4167 _dbus_verbose (
"Failed to fork() to call %s: %s\n",
4168 progpath, _dbus_strerror (errno));
4175 const char *error_str;
4179 int saved_errno = errno;
4184 if (write (errors_pipe[
WRITE_END], error_str, strlen (error_str)) < 0 ||
4185 write (errors_pipe[
WRITE_END],
": ", 2) < 0)
4190 error_str = _dbus_strerror (saved_errno);
4192 if (write (errors_pipe[
WRITE_END], error_str, strlen (error_str)) < 0)
4204 if (dup2 (result_pipe[
WRITE_END], 1) == -1)
4206 if (dup2 (errors_pipe[
WRITE_END], 2) == -1)
4211 sigprocmask (SIG_SETMASK, &old_set,
NULL);
4214 if (progpath[0] ==
'/')
4216 execv (progpath, (
char *
const *) argv);
4225 execvp (strrchr (progpath,
'/')+1, (
char *
const *) argv);
4228 execvp (progpath, (
char *
const *) argv);
4250 ret = waitpid (pid, &status, 0);
4252 while (ret == -1 && errno == EINTR);
4256 if (!WIFEXITED (status) || WEXITSTATUS (status) != 0 )
4262 _DBUS_SET_OOM (error);
4274 if (_dbus_string_get_length (&error_message) > 0)
4276 "%s terminated abnormally with the following error: %s",
4277 progpath, _dbus_string_get_data (&error_message));
4280 "%s terminated abnormally without any error message",
4288 sigprocmask (SIG_SETMASK, &old_set,
NULL);
4290 _DBUS_ASSERT_ERROR_XOR_BOOL (error, retval);
4292 if (result_pipe[0] != -1)
4293 close (result_pipe[0]);
4294 if (result_pipe[1] != -1)
4295 close (result_pipe[1]);
4296 if (errors_pipe[0] != -1)
4297 close (errors_pipe[0]);
4298 if (errors_pipe[1] != -1)
4299 close (errors_pipe[1]);
4322#ifdef DBUS_ENABLE_X11_AUTOLAUNCH
4323 static const char arg_dbus_launch[] =
"dbus-launch";
4324 static const char arg_autolaunch[] =
"--autolaunch";
4325 static const char arg_binary_syntax[] =
"--binary-syntax";
4326 static const char arg_close_stderr[] =
"--close-stderr";
4331 const char *display;
4332 const char *progpath;
4333 const char *argv[6];
4341 "Unable to autolaunch when setuid");
4345 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
4358 if (display ==
NULL || display[0] ==
'\0')
4361 "Unable to autolaunch a dbus-daemon without a $DISPLAY for X11");
4367 _DBUS_SET_OOM (error);
4376#ifdef DBUS_ENABLE_EMBEDDED_TESTS
4379 if (progpath ==
NULL)
4381 progpath = DBUS_BINDIR
"/dbus-launch";
4388 argv[i] = arg_dbus_launch;
4390 argv[i] = arg_autolaunch;
4392 argv[i] = _dbus_string_get_data (&uuid);
4394 argv[i] = arg_binary_syntax;
4396 argv[i] = arg_close_stderr;
4403 retval = _read_subprocess_line_argv (progpath,
4405 argv, address, error);
4412 "Using X11 for dbus-daemon autolaunch was disabled at compile time, "
4413 "set your DBUS_SESSION_BUS_ADDRESS instead");
4458 if (create_if_not_found)
4470 if (!create_if_not_found)
4473 "D-Bus library appears to be incorrectly set up: "
4474 "see the manual page for dbus-uuidgen to correct "
4475 "this issue. (%s; %s)",
4503 const char *launchd_env_var,
4506#ifdef DBUS_ENABLE_LAUNCHD
4510 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
4515 "Unable to find launchd socket when setuid");
4520 argv[i] =
"launchctl";
4524 argv[i] = (
char*)launchd_env_var;
4531 if (!_read_subprocess_line_argv(argv[0],
TRUE, argv, socket_path, error))
4537 if (_dbus_string_get_length(socket_path) == 0)
4547 "can't lookup socket from launchd; launchd support not compiled in");
4552#ifdef DBUS_ENABLE_LAUNCHD
4562 "Unable to find launchd socket when setuid");
4568 _DBUS_SET_OOM (error);
4583 "launchd did not provide a socket path, "
4584 "verify that org.freedesktop.dbus-session.plist is loaded!");
4590 _DBUS_SET_OOM (error);
4595 _dbus_string_get_length (address)))
4597 _DBUS_SET_OOM (error);
4612 const char *runtime_dir =
_dbus_getenv (
"XDG_RUNTIME_DIR");
4617 if (runtime_dir ==
NULL)
4619 _dbus_verbose (
"XDG_RUNTIME_DIR not found in environment");
4626 _DBUS_SET_OOM (error);
4632 _DBUS_SET_OOM (error);
4636 if (lstat (_dbus_string_get_const_data (&user_bus_path), &stbuf) == -1)
4638 _dbus_verbose (
"XDG_RUNTIME_DIR/bus not available: %s",
4639 _dbus_strerror (errno));
4645 if (stbuf.st_uid != getuid ())
4647 _dbus_verbose (
"XDG_RUNTIME_DIR/bus owned by uid %ld, not our uid %ld",
4648 (
long) stbuf.st_uid, (
long) getuid ());
4654 if ((stbuf.st_mode & S_IFMT) != S_IFSOCK)
4656 _dbus_verbose (
"XDG_RUNTIME_DIR/bus is not a socket: st_mode = 0o%lo",
4657 (
long) stbuf.st_mode);
4666 _DBUS_SET_OOM (error);
4702#ifdef DBUS_ENABLE_LAUNCHD
4704 return _dbus_lookup_session_address_launchd (address, error);
4708 if (!_dbus_lookup_user_bus (supported, address, error))
4710 else if (*supported)
4768#ifdef DBUS_ENABLE_EMBEDDED_TESTS
4770 const char *
override;
4773 if (
override !=
NULL && *
override !=
'\0')
4779 _dbus_verbose (
"Using fake homedir for testing: %s\n",
4780 _dbus_string_get_const_data (&homedir));
4787 if (!already_warned)
4789 _dbus_warn (
"Using %s for testing, set DBUS_TEST_HOMEDIR to avoid",
4790 _dbus_string_get_const_data (&homedir));
4791 already_warned =
TRUE;
4803 directory, _dbus_string_get_length (directory))) {
4817_dbus_daemon_unpublish_session_bus_address (
void)
4834#if EAGAIN == EWOULDBLOCK
4837 return e == EAGAIN || e == EWOULDBLOCK;
4852 const char *filename_c;
4854 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
4856 filename_c = _dbus_string_get_const_data (filename);
4858 if (rmdir (filename_c) != 0)
4861 "Failed to remove directory %s: %s\n",
4862 filename_c, _dbus_strerror (errno));
4882 struct sockaddr_storage storage;
4883 struct sockaddr_un un;
4886 socklen_t sa_len =
sizeof(sa_buf);
4890 if (getsockname(fd.fd, &sa_buf.sa, &sa_len) < 0)
4893 return sa_buf.sa.sa_family == AF_UNIX;
4902close_ignore_error (
int fd)
4912act_on_fds_3_and_up (
void (*func) (
int fd))
4916#if defined(__linux__) && defined(__GLIBC__)
4922 d = opendir (
"/proc/self/fd");
4936 if (de->d_name[0] ==
'.')
4940 l = strtol (de->d_name, &e, 10);
4941 if (errno != 0 || e ==
NULL || *e !=
'\0')
4948 if (fd == dirfd (d))
4959 maxfds = sysconf (_SC_OPEN_MAX);
4968 for (i = 3; i < maxfds; i++)
4979 act_on_fds_3_and_up (close_ignore_error);
5007#if 0 && defined(HAVE_LIBC_ENABLE_SECURE)
5010 extern int __libc_enable_secure;
5011 return __libc_enable_secure;
5013#elif defined(HAVE_ISSETUGID)
5015 return issetugid ();
5017 uid_t ruid, euid, suid;
5018 gid_t rgid, egid, sgid;
5025 if (_DBUS_UNLIKELY (!check_setuid_initialised))
5027#ifdef HAVE_GETRESUID
5028 if (getresuid (&ruid, &euid, &suid) != 0 ||
5029 getresgid (&rgid, &egid, &sgid) != 0)
5032 suid = ruid = getuid ();
5033 sgid = rgid = getgid ();
5038 check_setuid_initialised =
TRUE;
5039 is_setuid = (ruid != euid || ruid != suid ||
5040 rgid != egid || rgid != sgid);
5061 struct sockaddr_storage storage;
5062 struct sockaddr_un un;
5063 struct sockaddr_in ipv4;
5064 struct sockaddr_in6 ipv6;
5066 char hostip[INET6_ADDRSTRLEN];
5067 socklen_t size =
sizeof (socket);
5069 const char *family_name =
NULL;
5072 if (getsockname (fd.fd, &socket.sa, &size))
5075 switch (socket.sa.sa_family)
5078 if (socket.un.sun_path[0]==
'\0')
5088 _DBUS_SET_OOM (error);
5102 _DBUS_SET_OOM (error);
5115 if (_dbus_inet_sockaddr_to_string (&socket, size, hostip,
sizeof (hostip),
5116 &family_name, &port, error))
5119 family_name, port) &&
5126 _DBUS_SET_OOM (error);
5140 "Failed to read address from socket: Unknown socket type.");
5146 "Failed to read address from socket: %s",
5147 _dbus_strerror (errno));
5152_dbus_save_socket_errno (
void)
5158_dbus_restore_socket_errno (
int saved_errno)
5160 errno = saved_errno;
5163static const char *syslog_tag =
"dbus";
5165static DBusLogFlags log_flags = DBUS_LOG_FLAGS_STDERR;
5188 (flags & (DBUS_LOG_FLAGS_STDERR | DBUS_LOG_FLAGS_SYSTEM_LOG)) != 0);
5195 if (log_flags & DBUS_LOG_FLAGS_SYSTEM_LOG)
5196 openlog (tag, LOG_PID, LOG_DAEMON);
5214 if (log_flags & DBUS_LOG_FLAGS_SYSTEM_LOG)
5219 case DBUS_SYSTEM_LOG_INFO:
5220 flags = LOG_DAEMON | LOG_INFO;
5222 case DBUS_SYSTEM_LOG_WARNING:
5223 flags = LOG_DAEMON | LOG_WARNING;
5225 case DBUS_SYSTEM_LOG_SECURITY:
5226 flags = LOG_AUTH | LOG_NOTICE;
5228 case DBUS_SYSTEM_LOG_ERROR:
5229 flags = LOG_DAEMON|LOG_CRIT;
5235 DBUS_VA_COPY (tmp, args);
5236 vsyslog (flags, msg, tmp);
5242 if (log_flags & DBUS_LOG_FLAGS_STDERR)
5245 DBUS_VA_COPY (tmp, args);
5247 vfprintf (stderr, msg, tmp);
5248 fputc (
'\n', stderr);
5262_dbus_get_low_level_socket_errno (
void)
dbus_bool_t _dbus_address_append_escaped(DBusString *escaped, const DBusString *unescaped)
Appends an escaped version of one string to another string, using the D-Bus address escaping mechanis...
void _dbus_credentials_clear(DBusCredentials *credentials)
Clear all credentials in the object.
dbus_uid_t _dbus_credentials_get_unix_uid(DBusCredentials *credentials)
Gets the UNIX user ID in the credentials, or DBUS_UID_UNSET if the credentials object doesn't contain...
dbus_bool_t _dbus_credentials_add_linux_security_label(DBusCredentials *credentials, const char *label)
Add a Linux security label, as used by LSMs such as SELinux, Smack and AppArmor, to the credentials.
void _dbus_credentials_take_unix_gids(DBusCredentials *credentials, dbus_gid_t *gids, size_t n_gids)
Add UNIX group IDs to the credentials, replacing any group IDs that might already have been present.
dbus_bool_t _dbus_credentials_add_unix_uid(DBusCredentials *credentials, dbus_uid_t uid)
Add a UNIX user ID to the credentials.
dbus_bool_t _dbus_credentials_add_pid(DBusCredentials *credentials, dbus_pid_t pid)
Add a UNIX process ID to the credentials.
dbus_bool_t _dbus_credentials_add_adt_audit_data(DBusCredentials *credentials, void *audit_data, dbus_int32_t size)
Add ADT audit data to the credentials.
dbus_bool_t _dbus_credentials_are_anonymous(DBusCredentials *credentials)
Checks whether a credentials object contains a user identity.
#define DBUS_ERROR_INIT
Expands to a suitable initializer for a DBusError on the stack.
void dbus_set_error_const(DBusError *error, const char *name, const char *message)
Assigns an error name and message to a DBusError.
void dbus_error_init(DBusError *error)
Initializes a DBusError structure.
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...
dbus_bool_t dbus_error_is_set(const DBusError *error)
Checks whether an error occurred (the error is set).
#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.
#define _DBUS_UNLOCK(name)
Unlocks a global lock.
#define READ_END
Helps remember which end of the pipe is which.
#define WRITE_END
Helps remember which end of the pipe is which.
#define _DBUS_LOCK(name)
Locks a global lock, initializing it first if necessary.
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_generate_uuid(DBusGUID *uuid, DBusError *error)
Generates a new UUID.
char * _dbus_strdup(const char *str)
Duplicates a string.
dbus_bool_t _dbus_read_uuid_file(const DBusString *filename, DBusGUID *uuid, dbus_bool_t create_if_not_found, DBusError *error)
Reads (and optionally writes) a uuid to a file.
void _dbus_user_database_flush_system(void)
Flushes the system global user database;.
dbus_bool_t _dbus_get_local_machine_uuid_encoded(DBusString *uuid_str, DBusError *error)
Gets the hex-encoded UUID of the machine this function is executed on.
dbus_bool_t _dbus_write_uuid_file(const DBusString *filename, const DBusGUID *uuid, DBusError *error)
Write the give UUID to a file.
dbus_bool_t _dbus_homedir_from_uid(dbus_uid_t uid, DBusString *homedir)
Gets the home directory for the given user.
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().
#define _DBUS_ZERO(object)
Sets all bits in an object to zero.
#define _DBUS_INT32_MAX
Maximum value of type "int32".
void * _dbus_list_pop_first(DBusList **list)
Removes the first value in the list and returns it.
dbus_bool_t _dbus_list_append(DBusList **list, void *data)
Appends a value to the list.
#define NULL
A null pointer, defined appropriately for C or C++.
#define TRUE
Expands to "1".
#define FALSE
Expands to "0".
DBUS_PRIVATE_EXPORT void _dbus_verbose_bytes_of_string(const DBusString *str, int start, int len)
Dump the given part of the string to verbose log.
void dbus_free(void *memory)
Frees a block of memory previously allocated by dbus_malloc() or dbus_malloc0().
void * dbus_realloc(void *memory, size_t bytes)
Resizes a block of memory previously allocated by dbus_malloc() or dbus_malloc0().
#define dbus_new(type, count)
Safe macro for using dbus_malloc().
void * dbus_malloc0(size_t bytes)
Allocates the given number of bytes, as with standard malloc(), but all bytes are initialized to zero...
#define dbus_new0(type, count)
Safe macro for using dbus_malloc0().
void * dbus_malloc(size_t bytes)
Allocates the given number of bytes, as with standard malloc().
#define DBUS_MAXIMUM_MESSAGE_UNIX_FDS
The maximum total number of unix fds in a message.
#define DBUS_ERROR_NOT_SUPPORTED
Requested operation isn't supported (like ENOSYS on UNIX).
#define DBUS_ERROR_BAD_ADDRESS
A D-Bus bus address was malformed.
#define DBUS_ERROR_IO_ERROR
Something went wrong reading or writing to a socket, for example.
#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.
dbus_bool_t _dbus_string_set_length(DBusString *str, int length)
Sets the length of a string.
dbus_bool_t _dbus_string_append(DBusString *str, const char *buffer)
Appends a nul-terminated C-style string to a DBusString.
dbus_bool_t _dbus_string_init(DBusString *str)
Initializes a string.
void _dbus_string_init_const(DBusString *str, const char *value)
Initializes a constant string.
dbus_bool_t _dbus_string_copy(const DBusString *source, int start, DBusString *dest, int insert_at)
Like _dbus_string_move(), but does not delete the section of the source string that's copied to the d...
dbus_bool_t _dbus_string_init_preallocated(DBusString *str, int allocate_size)
Initializes a string that can be up to the given allocation size before it has to realloc.
char * _dbus_string_get_data_len(DBusString *str, int start, int len)
Gets a sub-portion of the raw character buffer from the string.
void _dbus_string_free(DBusString *str)
Frees a string created by _dbus_string_init(), and fills it with the same contents as #_DBUS_STRING_I...
void _dbus_string_shorten(DBusString *str, int length_to_remove)
Makes a string shorter by the given number of bytes.
dbus_bool_t _dbus_string_lengthen(DBusString *str, int additional_length)
Makes a string longer by the given number of bytes.
DBUS_PRIVATE_EXPORT dbus_bool_t _dbus_string_append_uint(DBusString *str, unsigned long value)
Appends an unsigned integer to a DBusString.
dbus_bool_t _dbus_string_append_byte(DBusString *str, unsigned char byte)
Appends a single byte to the string, returning FALSE if not enough memory.
dbus_bool_t _dbus_string_append_printf(DBusString *str, const char *format,...)
Appends a printf-style formatted string to the DBusString.
int _dbus_connect_unix_socket(const char *path, dbus_bool_t abstract, DBusError *error)
Creates a socket and connects it to the UNIX domain socket at the given path.
void _dbus_fd_clear_close_on_exec(int fd)
Sets the file descriptor to not be close-on-exec.
int _dbus_listen_unix_socket(const char *path, dbus_bool_t abstract, DBusError *error)
Creates a socket and binds it to the given path, then listens on the socket.
void _dbus_fd_set_all_close_on_exec(void)
Sets all file descriptors except the first three (i.e.
dbus_bool_t _dbus_close(int fd, DBusError *error)
Closes a file descriptor.
int _dbus_write(int fd, const DBusString *buffer, int start, int len)
Thin wrapper around the write() system call that writes a part of a DBusString and handles EINTR for ...
int _dbus_write_two(int fd, const DBusString *buffer1, int start1, int len1, const DBusString *buffer2, int start2, int len2)
Like _dbus_write() but will use writev() if possible to write both buffers in sequence.
dbus_bool_t _dbus_lookup_launchd_socket(DBusString *socket_path, const char *launchd_env_var, DBusError *error)
quries launchd for a specific env var which holds the socket path.
int _dbus_listen_systemd_sockets(DBusSocket **fds, DBusError *error)
Acquires one or more sockets passed in from systemd.
dbus_bool_t _dbus_append_address_from_socket(DBusSocket fd, DBusString *address, DBusError *error)
Read the address from the socket and append it to the string.
dbus_bool_t _dbus_user_info_fill(DBusUserInfo *info, const DBusString *username, DBusError *error)
Gets user info for the given username.
int _dbus_connect_exec(const char *path, char *const argv[], DBusError *error)
Creates a UNIX domain socket and connects it to the specified process to execute.
void _dbus_close_all(void)
Closes all file descriptors except the first three (i.e.
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.
int _dbus_read(int fd, DBusString *buffer, int count)
Thin wrapper around the read() system call that appends the data it reads to the DBusString buffer.
dbus_bool_t _dbus_ensure_standard_fds(DBusEnsureStandardFdsFlags flags, const char **error_str_p)
Ensure that the standard file descriptors stdin, stdout and stderr are open, by opening /dev/null if ...
dbus_uid_t _dbus_geteuid(void)
Gets our effective UID.
dbus_bool_t _dbus_user_info_fill_uid(DBusUserInfo *info, dbus_uid_t uid, DBusError *error)
Gets user info for the given user ID.
void _dbus_logv(DBusSystemLogSeverity severity, const char *msg, va_list args)
Log a message to the system log file (e.g.
dbus_bool_t _dbus_read_local_machine_uuid(DBusGUID *machine_id, dbus_bool_t create_if_not_found, DBusError *error)
Reads the uuid of the machine we're running on from the dbus configuration.
#define _DBUS_POLLOUT
Writing now will not block.
unsigned long dbus_uid_t
A user ID.
dbus_bool_t _dbus_get_is_errno_eagain_or_ewouldblock(int e)
See if errno is EAGAIN or EWOULDBLOCK (this has to be done differently for Winsock so is abstracted)
unsigned long _dbus_pid_for_log(void)
The only reason this is separate from _dbus_getpid() is to allow it on Windows for logging but not fo...
unsigned long dbus_pid_t
A process ID.
int _dbus_read_socket(DBusSocket fd, DBusString *buffer, int count)
Like _dbus_read(), but only works on sockets so is available on Windows.
void _dbus_exit(int code)
Exit the process, returning the given value.
#define _DBUS_POLLERR
Error condition.
dbus_bool_t _dbus_socket_can_pass_unix_fd(DBusSocket fd)
Checks whether file descriptors may be passed via the socket.
int _dbus_write_socket(DBusSocket fd, const DBusString *buffer, int start, int len)
Like _dbus_write(), but only supports sockets and is thus available on Windows.
void _dbus_atomic_set_nonzero(DBusAtomic *atomic)
Atomically set the value of an integer to something nonzero.
dbus_bool_t _dbus_socketpair(DBusSocket *fd1, DBusSocket *fd2, dbus_bool_t blocking, DBusError *error)
Creates pair of connect sockets (as in socketpair()).
unsigned long dbus_gid_t
A group ID.
int _dbus_read_socket_with_unix_fds(DBusSocket fd, DBusString *buffer, int count, int *fds, unsigned int *n_fds)
Like _dbus_read_socket() but also tries to read unix fds from the socket.
dbus_bool_t _dbus_append_keyring_directory_for_credentials(DBusString *directory, DBusCredentials *credentials)
Appends the directory in which a keyring for the given credentials should be stored.
#define DBUS_UID_UNSET
an invalid UID used to represent an uninitialized dbus_uid_t field
dbus_int32_t _dbus_atomic_dec(DBusAtomic *atomic)
Atomically decrement an integer.
dbus_bool_t _dbus_close_socket(DBusSocket fd, DBusError *error)
Closes a socket.
dbus_bool_t _dbus_read_credentials_socket(DBusSocket client_fd, DBusCredentials *credentials, DBusError *error)
Reads a single byte which must be nul (an error occurs otherwise), and reads unix credentials if avai...
#define DBUS_PID_UNSET
an invalid PID used to represent an uninitialized dbus_pid_t field
const char * _dbus_getenv(const char *varname)
Wrapper for getenv().
dbus_pid_t _dbus_getpid(void)
Gets our process ID.
dbus_int32_t _dbus_atomic_get(DBusAtomic *atomic)
Atomically get the value of an integer.
dbus_bool_t _dbus_set_socket_nonblocking(DBusSocket fd, DBusError *error)
Sets a file descriptor to be nonblocking.
DBusSocket _dbus_connect_tcp_socket(const char *host, const char *port, const char *family, DBusError *error)
Creates a socket and connects to a socket at the given host and port.
void _dbus_disable_sigpipe(void)
signal (SIGPIPE, SIG_IGN);
dbus_bool_t _dbus_check_setuid(void)
NOTE: If you modify this function, please also consider making the corresponding change in GLib.
void _dbus_sleep_milliseconds(int milliseconds)
Sleeps the given number of milliseconds.
#define DBUS_GID_UNSET
an invalid GID used to represent an uninitialized dbus_gid_t field
dbus_bool_t _dbus_check_dir_is_private_to_user(DBusString *dir, DBusError *error)
Checks to make sure the given directory is private to the user.
#define _DBUS_POLLIN
There is data to read.
int _dbus_listen_tcp_socket(const char *host, const char *port, const char *family, DBusString *retport, const char **retfamily, DBusSocket **fds_p, DBusError *error)
Creates a socket and binds it to the given path, then listens on the socket.
dbus_bool_t _dbus_send_credentials_socket(DBusSocket server_fd, DBusError *error)
Sends a single nul byte with our UNIX credentials as ancillary data.
dbus_uid_t _dbus_getuid(void)
Gets our UID.
dbus_bool_t _dbus_credentials_add_from_current_process(DBusCredentials *credentials)
Adds the most important credentials of the current process (the uid and pid) to the passed-in credent...
void _dbus_atomic_set_zero(DBusAtomic *atomic)
Atomically set the value of an integer to 0.
dbus_int32_t _dbus_atomic_inc(DBusAtomic *atomic)
Atomically increments an integer.
dbus_bool_t _dbus_generate_random_bytes(DBusString *str, int n_bytes, DBusError *error)
Generates the given number of securely random bytes, using the best mechanism we can come up with.
#define DBUS_GID_FORMAT
an appropriate printf format for dbus_gid_t
int _dbus_printf_string_upper_bound(const char *format, va_list args)
Measure the length of the given format string and arguments, not including the terminating nul.
void _dbus_get_monotonic_time(long *tv_sec, long *tv_usec)
Get current time, as in gettimeofday().
dbus_bool_t _dbus_delete_directory(const DBusString *filename, DBusError *error)
Removes a directory; Directory must be empty.
#define DBUS_UID_FORMAT
an appropriate printf format for dbus_uid_t
void _dbus_get_real_time(long *tv_sec, long *tv_usec)
Get current time, as in gettimeofday().
int _dbus_poll(DBusPollFD *fds, int n_fds, int timeout_milliseconds)
Wrapper for poll().
dbus_bool_t _dbus_get_autolaunch_address(const char *scope, DBusString *address, DBusError *error)
Returns the address of a new session bus.
int _dbus_write_socket_two(DBusSocket fd, const DBusString *buffer1, int start1, int len1, const DBusString *buffer2, int start2, int len2)
Like _dbus_write_two() but only works on sockets and is thus available on Windows.
dbus_bool_t _dbus_concat_dir_and_file(DBusString *dir, const DBusString *next_component)
Appends the given filename to the given directory.
void _dbus_print_backtrace(void)
On GNU libc systems, print a crude backtrace to stderr.
void _dbus_init_system_log(const char *tag, DBusLogFlags flags)
Initialize the system log.
dbus_bool_t _dbus_lookup_session_address(dbus_bool_t *supported, DBusString *address, DBusError *error)
Determines the address of the session bus by querying a platform-specific method.
DBusSocket _dbus_accept(DBusSocket listen_fd)
Accepts a connection on a listening socket.
dbus_bool_t _dbus_append_user_from_current_process(DBusString *str)
Append to the string the identity we would like to have when we authenticate, on UNIX this is the cur...
void _dbus_flush_caches(void)
Called when the bus daemon is signaled to reload its configuration; any caches should be nuked.
const char * _dbus_get_tmpdir(void)
Gets the temporary files directory by inspecting the environment variables TMPDIR,...
#define DBUS_PID_FORMAT
an appropriate printf format for dbus_pid_t
dbus_bool_t _dbus_ensure_directory(const DBusString *filename, DBusError *error)
Creates a directory; succeeds if the directory is created or already existed.
dbus_bool_t _dbus_create_directory(const DBusString *filename, DBusError *error)
Creates a directory.
dbus_uint32_t dbus_bool_t
A boolean, valid values are TRUE and FALSE.
An atomic integer safe to increment or decrement from multiple threads.
volatile dbus_int32_t value
Value of the atomic integer.
Object representing an exception.
const char * name
public error name field
const char * message
public error message field
short events
Events to poll for.
short revents
Events that occurred.
DBusPollable fd
File descriptor.
Information about a UNIX user.
int n_group_ids
Size of group IDs array.
char * homedir
Home directory.
dbus_gid_t * group_ids
Groups IDs, including above primary group.
dbus_gid_t primary_gid
GID.
A globally unique ID ; we have one for each DBusServer, and also one for each machine with libdbus in...