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" 32 #include "dbus-file.h" 33 #include "dbus-transport.h" 34 #include "dbus-string.h" 35 #include "dbus-userdb.h" 36 #include "dbus-list.h" 37 #include "dbus-credentials.h" 38 #include "dbus-nonce.h" 40 #include <sys/types.h> 47 #include <sys/socket.h> 56 #include <netinet/in.h> 57 #include <netinet/tcp.h> 60 #include <arpa/inet.h> 77 #ifdef HAVE_GETPEERUCRED 89 #include <systemd/sd-daemon.h> 100 #ifndef AI_ADDRCONFIG 101 #define AI_ADDRCONFIG 0 104 #ifndef HAVE_SOCKLEN_T 105 #define socklen_t int 108 #if defined (__sun) || defined (__sun__) 121 # define CMSG_ALIGN(len) _CMSG_DATA_ALIGN (len) 124 # define CMSG_ALIGN(len) (((len) + sizeof (long) - 1) & \ 125 ~(sizeof (long) - 1)) 130 # define CMSG_SPACE(len) (CMSG_ALIGN (sizeof (struct cmsghdr)) + \ 135 # define CMSG_LEN(len) (CMSG_ALIGN (sizeof (struct cmsghdr)) + (len)) 156 const char **error_str_p)
158 static int const relevant_flag[] = { DBUS_FORCE_STDIN_NULL,
159 DBUS_FORCE_STDOUT_NULL,
160 DBUS_FORCE_STDERR_NULL };
162 const char *error_str =
"Failed mysteriously";
166 _DBUS_STATIC_ASSERT (STDIN_FILENO == 0);
167 _DBUS_STATIC_ASSERT (STDOUT_FILENO == 1);
168 _DBUS_STATIC_ASSERT (STDERR_FILENO == 2);
171 for (i = STDIN_FILENO; i <= STDERR_FILENO; i++)
177 devnull = open (
"/dev/null", O_RDWR);
181 error_str =
"Failed to open /dev/null";
190 if (devnull != i && (flags & relevant_flag[i]) != 0)
192 if (dup2 (devnull, i) < 0)
194 error_str =
"Failed to dup2 /dev/null onto a standard fd";
205 if (devnull > STDERR_FILENO)
208 if (error_str_p !=
NULL)
209 *error_str_p = error_str;
212 return (error_str ==
NULL);
215 static dbus_bool_t _dbus_set_fd_nonblocking (
int fd,
219 _dbus_open_socket (
int *fd_p,
228 *fd_p = socket (domain, type | SOCK_CLOEXEC, protocol);
229 cloexec_done = *fd_p >= 0;
232 if (*fd_p < 0 && (errno == EINVAL || errno == EPROTOTYPE))
235 *fd_p = socket (domain, type, protocol);
247 _dbus_verbose (
"socket fd %d opened\n", *fd_p);
254 "Failed to open socket: %s",
255 _dbus_strerror (errno));
271 _dbus_open_unix_socket (
int *fd,
274 return _dbus_open_socket(fd, PF_UNIX, SOCK_STREAM, 0, error);
325 #if HAVE_DECL_MSG_NOSIGNAL 329 data = _dbus_string_get_const_data_len (buffer, start, len);
333 bytes_written = send (fd.fd, data, len, MSG_NOSIGNAL);
335 if (bytes_written < 0 && errno == EINTR)
338 return bytes_written;
362 unsigned int *n_fds) {
363 #ifndef HAVE_UNIX_FD_PASSING 381 start = _dbus_string_get_length (buffer);
401 m.msg_controllen = CMSG_SPACE(*n_fds *
sizeof(
int));
405 m.msg_control = alloca(m.msg_controllen);
406 memset(m.msg_control, 0, m.msg_controllen);
412 m.msg_controllen = CMSG_LEN (*n_fds *
sizeof(
int));
416 bytes_read = recvmsg (fd.fd, &m, 0
417 #ifdef MSG_CMSG_CLOEXEC
438 if (m.msg_flags & MSG_CTRUNC)
450 for (cm = CMSG_FIRSTHDR(&m); cm; cm = CMSG_NXTHDR(&m, cm))
451 if (cm->cmsg_level == SOL_SOCKET && cm->cmsg_type == SCM_RIGHTS)
454 int *payload = (
int *) CMSG_DATA (cm);
455 size_t payload_len_bytes = (cm->cmsg_len - CMSG_LEN (0));
456 size_t payload_len_fds = payload_len_bytes /
sizeof (int);
461 _DBUS_STATIC_ASSERT (
sizeof (
size_t) >=
sizeof (
unsigned int));
463 if (_DBUS_LIKELY (payload_len_fds <= (
size_t) *n_fds))
466 fds_to_use = payload_len_fds;
474 fds_to_use = (size_t) *n_fds;
479 for (i = fds_to_use; i < payload_len_fds; i++)
485 memcpy (fds, payload, fds_to_use *
sizeof (
int));
490 *n_fds = (
unsigned int) fds_to_use;
495 for (i = 0; i < fds_to_use; i++)
518 _dbus_write_socket_with_unix_fds(
DBusSocket fd,
525 #ifndef HAVE_UNIX_FD_PASSING 534 return _dbus_write_socket_with_unix_fds_two(fd, buffer, start, len,
NULL, 0, 0, fds, n_fds);
539 _dbus_write_socket_with_unix_fds_two(
DBusSocket fd,
549 #ifndef HAVE_UNIX_FD_PASSING 557 buffer1, start1, len1,
558 buffer2, start2, len2);
571 iov[0].iov_base = (
char*) _dbus_string_get_const_data_len (buffer1, start1, len1);
572 iov[0].iov_len = len1;
576 iov[1].iov_base = (
char*) _dbus_string_get_const_data_len (buffer2, start2, len2);
577 iov[1].iov_len = len2;
582 m.msg_iovlen = buffer2 ? 2 : 1;
586 m.msg_controllen = CMSG_SPACE(n_fds *
sizeof(
int));
587 m.msg_control = alloca(m.msg_controllen);
588 memset(m.msg_control, 0, m.msg_controllen);
590 cm = CMSG_FIRSTHDR(&m);
591 cm->cmsg_level = SOL_SOCKET;
592 cm->cmsg_type = SCM_RIGHTS;
593 cm->cmsg_len = CMSG_LEN(n_fds *
sizeof(
int));
594 memcpy(CMSG_DATA(cm), fds, n_fds *
sizeof(
int));
599 bytes_written = sendmsg (fd.fd, &m, 0
600 #
if HAVE_DECL_MSG_NOSIGNAL
605 if (bytes_written < 0 && errno == EINTR)
609 if (bytes_written > 0)
613 return bytes_written;
639 #if HAVE_DECL_MSG_NOSIGNAL 640 struct iovec vectors[2];
652 data1 = _dbus_string_get_const_data_len (buffer1, start1, len1);
655 data2 = _dbus_string_get_const_data_len (buffer2, start2, len2);
663 vectors[0].iov_base = (
char*) data1;
664 vectors[0].iov_len = len1;
665 vectors[1].iov_base = (
char*) data2;
666 vectors[1].iov_len = len2;
670 m.msg_iovlen = data2 ? 2 : 1;
674 bytes_written = sendmsg (fd.fd, &m, MSG_NOSIGNAL);
676 if (bytes_written < 0 && errno == EINTR)
679 return bytes_written;
683 buffer2, start2, len2);
714 start = _dbus_string_get_length (buffer);
726 bytes_read = read (fd, data, count);
772 data = _dbus_string_get_const_data_len (buffer, start, len);
776 bytes_written = write (fd, data, len);
778 if (bytes_written < 0 && errno == EINTR)
782 if (bytes_written > 0)
786 return bytes_written;
826 struct iovec vectors[2];
831 data1 = _dbus_string_get_const_data_len (buffer1, start1, len1);
834 data2 = _dbus_string_get_const_data_len (buffer2, start2, len2);
842 vectors[0].iov_base = (
char*) data1;
843 vectors[0].iov_len = len1;
844 vectors[1].iov_base = (
char*) data2;
845 vectors[1].iov_len = len2;
849 bytes_written = writev (fd,
853 if (bytes_written < 0 && errno == EINTR)
856 return bytes_written;
863 if (ret1 == len1 && buffer2 !=
NULL)
877 #define _DBUS_MAX_SUN_PATH_LENGTH 99 915 struct sockaddr_un addr;
916 _DBUS_STATIC_ASSERT (
sizeof (addr.sun_path) > _DBUS_MAX_SUN_PATH_LENGTH);
918 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
920 _dbus_verbose (
"connecting to unix socket %s abstract=%d\n",
924 if (!_dbus_open_unix_socket (&fd, error))
926 _DBUS_ASSERT_ERROR_IS_SET(error);
929 _DBUS_ASSERT_ERROR_IS_CLEAR(error);
932 addr.sun_family = AF_UNIX;
933 path_len = strlen (path);
938 addr.sun_path[0] =
'\0';
941 if (path_len > _DBUS_MAX_SUN_PATH_LENGTH)
944 "Abstract socket name too long\n");
949 strncpy (&addr.sun_path[1], path, sizeof (addr.sun_path) - 2);
953 "Operating system does not support abstract socket namespace\n");
960 if (path_len > _DBUS_MAX_SUN_PATH_LENGTH)
963 "Socket name too long\n");
968 strncpy (addr.sun_path, path, sizeof (addr.sun_path) - 1);
971 if (connect (fd, (
struct sockaddr*) &addr, _DBUS_STRUCT_OFFSET (
struct sockaddr_un, sun_path) + path_len) < 0)
975 "Failed to connect to socket %s: %s",
976 path, _dbus_strerror (errno));
982 if (!_dbus_set_fd_nonblocking (fd, error))
984 _DBUS_ASSERT_ERROR_IS_SET (error);
1015 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1017 _dbus_verbose (
"connecting to process %s\n", path);
1020 retval = socketpair (AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0, fds);
1021 cloexec_done = (retval >= 0);
1023 if (retval < 0 && (errno == EINVAL || errno == EPROTOTYPE))
1026 retval = socketpair (AF_UNIX, SOCK_STREAM, 0, fds);
1033 "Failed to create socket pair: %s",
1034 _dbus_strerror (errno));
1054 "Failed to fork() to call %s: %s",
1055 path, _dbus_strerror (errno));
1066 dup2 (fds[1], STDIN_FILENO);
1067 dup2 (fds[1], STDOUT_FILENO);
1069 if (fds[1] != STDIN_FILENO &&
1070 fds[1] != STDOUT_FILENO)
1078 execvp (path, (
char *
const *) argv);
1080 fprintf (stderr,
"Failed to execute process %s: %s\n", path, _dbus_strerror (errno));
1088 if (!_dbus_set_fd_nonblocking (fds[0], error))
1090 _DBUS_ASSERT_ERROR_IS_SET (error);
1122 struct sockaddr_un addr;
1124 _DBUS_STATIC_ASSERT (
sizeof (addr.sun_path) > _DBUS_MAX_SUN_PATH_LENGTH);
1126 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1128 _dbus_verbose (
"listening on unix socket %s abstract=%d\n",
1131 if (!_dbus_open_unix_socket (&listen_fd, error))
1133 _DBUS_ASSERT_ERROR_IS_SET(error);
1136 _DBUS_ASSERT_ERROR_IS_CLEAR(error);
1139 addr.sun_family = AF_UNIX;
1140 path_len = strlen (path);
1148 addr.sun_path[0] =
'\0';
1151 if (path_len > _DBUS_MAX_SUN_PATH_LENGTH)
1154 "Abstract socket name too long\n");
1159 strncpy (&addr.sun_path[1], path, sizeof (addr.sun_path) - 2);
1163 "Operating system does not support abstract socket namespace\n");
1183 if (stat (path, &sb) == 0 &&
1184 S_ISSOCK (sb.st_mode))
1188 if (path_len > _DBUS_MAX_SUN_PATH_LENGTH)
1191 "Socket name too long\n");
1196 strncpy (addr.sun_path, path, sizeof (addr.sun_path) - 1);
1199 if (bind (listen_fd, (
struct sockaddr*) &addr, _DBUS_STRUCT_OFFSET (
struct sockaddr_un, sun_path) + path_len) < 0)
1202 "Failed to bind socket \"%s\": %s",
1203 path, _dbus_strerror (errno));
1208 if (listen (listen_fd, SOMAXCONN ) < 0)
1211 "Failed to listen on socket \"%s\": %s",
1212 path, _dbus_strerror (errno));
1217 if (!_dbus_set_fd_nonblocking (listen_fd, error))
1219 _DBUS_ASSERT_ERROR_IS_SET (error);
1227 if (!
abstract && chmod (path, 0777) < 0)
1228 _dbus_warn (
"Could not set mode 0777 on socket %s", path);
1252 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1254 n = sd_listen_fds (
TRUE);
1258 "Failed to acquire systemd socket: %s",
1259 _dbus_strerror (-n));
1266 "No socket received.");
1270 for (fd = SD_LISTEN_FDS_START; fd < SD_LISTEN_FDS_START + n; fd ++)
1272 r = sd_is_socket (fd, AF_UNSPEC, SOCK_STREAM, 1);
1276 "Failed to verify systemd socket type: %s",
1277 _dbus_strerror (-r));
1284 "Passed socket has wrong type.");
1296 "Failed to allocate file handle array.");
1300 for (fd = SD_LISTEN_FDS_START; fd < SD_LISTEN_FDS_START + n; fd ++)
1302 if (!_dbus_set_fd_nonblocking (fd, error))
1304 _DBUS_ASSERT_ERROR_IS_SET (error);
1308 new_fds[fd - SD_LISTEN_FDS_START].fd = fd;
1316 for (fd = SD_LISTEN_FDS_START; fd < SD_LISTEN_FDS_START + n; fd ++)
1325 "dbus was compiled without systemd support");
1333 _dbus_error_from_gai (
int gai_res,
1399 return _dbus_connect_tcp_socket_with_nonce (host, port, family, (
const char*)
NULL, error);
1403 _dbus_connect_tcp_socket_with_nonce (
const char *host,
1406 const char *noncefile,
1409 int saved_errno = 0;
1413 struct addrinfo hints;
1414 struct addrinfo *ai, *tmp;
1417 _DBUS_ASSERT_ERROR_IS_CLEAR(error);
1422 hints.ai_family = AF_UNSPEC;
1423 else if (!strcmp(family,
"ipv4"))
1424 hints.ai_family = AF_INET;
1425 else if (!strcmp(family,
"ipv6"))
1426 hints.ai_family = AF_INET6;
1431 "Unknown address family %s", family);
1432 return _dbus_socket_get_invalid ();
1434 hints.ai_protocol = IPPROTO_TCP;
1435 hints.ai_socktype = SOCK_STREAM;
1436 hints.ai_flags = AI_ADDRCONFIG;
1438 if ((res = getaddrinfo(host, port, &hints, &ai)) != 0)
1441 _dbus_error_from_gai (res, errno),
1442 "Failed to lookup host/port: \"%s:%s\": %s (%d)",
1443 host, port, gai_strerror(res), res);
1444 _dbus_socket_invalidate (&fd);
1451 if (!_dbus_open_socket (&fd.fd, tmp->ai_family, SOCK_STREAM, 0, error))
1454 _DBUS_ASSERT_ERROR_IS_SET(error);
1455 _dbus_socket_invalidate (&fd);
1458 _DBUS_ASSERT_ERROR_IS_CLEAR(error);
1460 if (connect (fd.fd, (
struct sockaddr*) tmp->ai_addr, tmp->ai_addrlen) < 0)
1462 saved_errno = errno;
1464 _dbus_socket_invalidate (&fd);
1468 if (connect_error ==
NULL)
1470 _DBUS_SET_OOM (error);
1475 _dbus_set_error_with_inet_sockaddr (connect_error,
1476 tmp->ai_addr, tmp->ai_addrlen,
1477 "Failed to connect to socket",
1484 _DBUS_SET_OOM (error);
1496 if (!_dbus_socket_is_valid (fd))
1498 _dbus_combine_tcp_errors (&connect_errors,
"Failed to connect",
1503 if (noncefile !=
NULL)
1508 ret = _dbus_send_nonce (fd, &noncefileStr, error);
1513 _dbus_socket_invalidate (&fd);
1518 if (!_dbus_set_fd_nonblocking (fd.fd, error))
1521 _dbus_socket_invalidate (&fd);
1557 const char **retfamily,
1562 int nlisten_fd = 0, res, i;
1566 struct addrinfo hints;
1567 struct addrinfo *ai, *tmp;
1568 unsigned int reuseaddr;
1573 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1578 hints.ai_family = AF_UNSPEC;
1579 else if (!strcmp(family,
"ipv4"))
1580 hints.ai_family = AF_INET;
1581 else if (!strcmp(family,
"ipv6"))
1582 hints.ai_family = AF_INET6;
1587 "Unknown address family %s", family);
1591 hints.ai_protocol = IPPROTO_TCP;
1592 hints.ai_socktype = SOCK_STREAM;
1593 hints.ai_flags = AI_ADDRCONFIG | AI_PASSIVE;
1595 redo_lookup_with_port:
1597 if ((res = getaddrinfo(host, port, &hints, &ai)) != 0 || !ai)
1600 _dbus_error_from_gai (res, errno),
1601 "Failed to lookup host/port: \"%s:%s\": %s (%d)",
1602 host ? host :
"*", port, gai_strerror(res), res);
1609 int fd = -1, tcp_nodelay_on;
1612 if (!_dbus_open_socket (&fd, tmp->ai_family, SOCK_STREAM, 0, error))
1614 _DBUS_ASSERT_ERROR_IS_SET(error);
1617 _DBUS_ASSERT_ERROR_IS_CLEAR(error);
1620 if (setsockopt (fd, SOL_SOCKET, SO_REUSEADDR, &reuseaddr,
sizeof(reuseaddr))==-1)
1622 _dbus_warn (
"Failed to set socket option \"%s:%s\": %s",
1623 host ? host :
"*", port, _dbus_strerror (errno));
1629 if (setsockopt (fd, IPPROTO_TCP, TCP_NODELAY, &tcp_nodelay_on,
sizeof (tcp_nodelay_on)) == -1)
1631 _dbus_warn (
"Failed to set TCP_NODELAY socket option \"%s:%s\": %s",
1632 host ? host :
"*", port, _dbus_strerror (errno));
1635 if (bind (fd, (
struct sockaddr*) tmp->ai_addr, tmp->ai_addrlen) < 0)
1637 saved_errno = errno;
1661 if (bind_error ==
NULL)
1663 _DBUS_SET_OOM (error);
1668 _dbus_set_error_with_inet_sockaddr (bind_error, tmp->ai_addr, tmp->ai_addrlen,
1669 "Failed to bind socket",
1676 _DBUS_SET_OOM (error);
1685 if (listen (fd, 30 ) < 0)
1687 saved_errno = errno;
1689 _dbus_set_error_with_inet_sockaddr (error, tmp->ai_addr, tmp->ai_addrlen,
1690 "Failed to listen on socket",
1700 "Failed to allocate file handle array");
1703 listen_fd = newlisten_fd;
1704 listen_fd[nlisten_fd].fd = fd;
1707 if (tmp->ai_addr->sa_family == AF_INET)
1709 else if (tmp->ai_addr->sa_family == AF_INET6)
1712 if (!_dbus_string_get_length(retport))
1718 if (!port || !strcmp(port,
"0"))
1721 struct sockaddr_storage addr;
1725 addrlen =
sizeof(addr);
1726 result = getsockname(fd, (
struct sockaddr*) &addr, &addrlen);
1730 saved_errno = errno;
1732 "Failed to retrieve socket name for \"%s:%s\": %s",
1733 host ? host :
"*", port, _dbus_strerror (saved_errno));
1737 if ((res = getnameinfo ((
struct sockaddr*)&addr, addrlen,
NULL, 0,
1738 portbuf,
sizeof(portbuf),
1739 NI_NUMERICHOST | NI_NUMERICSERV)) != 0)
1741 saved_errno = errno;
1743 "Failed to resolve port \"%s:%s\": %s (%d)",
1744 host ? host :
"*", port, gai_strerror(res), res);
1755 port = _dbus_string_get_const_data(retport);
1757 goto redo_lookup_with_port;
1776 _dbus_combine_tcp_errors (&bind_errors,
"Failed to bind", host,
1781 if (have_ipv4 && !have_ipv6)
1782 *retfamily =
"ipv4";
1783 else if (!have_ipv4 && have_ipv6)
1784 *retfamily =
"ipv6";
1786 for (i = 0 ; i < nlisten_fd ; i++)
1788 if (!_dbus_set_fd_nonblocking (listen_fd[i].fd, error))
1809 for (i = 0 ; i < nlisten_fd ; i++)
1823 write_credentials_byte (
int server_fd,
1827 char buf[1] = {
'\0' };
1828 #if defined(HAVE_CMSGCRED) 1831 char cred[CMSG_SPACE (
sizeof (
struct cmsgcred))];
1842 msg.msg_control = (caddr_t) &cmsg;
1843 msg.msg_controllen = CMSG_SPACE (
sizeof (
struct cmsgcred));
1845 cmsg.hdr.cmsg_len = CMSG_LEN (
sizeof (
struct cmsgcred));
1846 cmsg.hdr.cmsg_level = SOL_SOCKET;
1847 cmsg.hdr.cmsg_type = SCM_CREDS;
1850 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1854 #if defined(HAVE_CMSGCRED) 1855 bytes_written = sendmsg (server_fd, &msg, 0
1856 #
if HAVE_DECL_MSG_NOSIGNAL
1864 if (bytes_written < 0 && errno == EINVAL)
1867 bytes_written = send (server_fd, buf, 1, 0
1868 #
if HAVE_DECL_MSG_NOSIGNAL
1874 if (bytes_written < 0 && errno == EINTR)
1877 if (bytes_written < 0)
1880 "Failed to write credentials byte: %s",
1881 _dbus_strerror (errno));
1884 else if (bytes_written == 0)
1887 "wrote zero bytes writing credentials byte");
1893 _dbus_verbose (
"wrote credentials byte\n");
1900 add_groups_to_credentials (
int client_fd,
1904 #if defined(__linux__) && defined(SO_PEERGROUPS) 1905 _DBUS_STATIC_ASSERT (
sizeof (gid_t) <=
sizeof (
dbus_gid_t));
1907 socklen_t len = 1024;
1915 n_gids = ((size_t) len) /
sizeof (gid_t);
1921 while (getsockopt (client_fd, SOL_SOCKET, SO_PEERGROUPS, buf, &len) < 0)
1926 _dbus_verbose (
"getsockopt failed with %s, len now %lu\n",
1927 _dbus_strerror (e), (
unsigned long) len);
1929 if (e != ERANGE || (
size_t) len <= n_gids *
sizeof (gid_t))
1931 _dbus_verbose (
"Failed to getsockopt(SO_PEERGROUPS): %s\n",
1932 _dbus_strerror (e));
1938 n_gids = ((size_t) len) /
sizeof (gid_t);
1941 if (replacement ==
NULL)
1948 _dbus_verbose (
"will try again with %lu\n", (
unsigned long) len);
1953 _dbus_verbose (
"getsockopt(SO_PEERGROUPS) yielded <= 0 bytes: %ld\n",
1958 if (len > n_gids *
sizeof (gid_t))
1960 _dbus_verbose (
"%lu > %zu", (
unsigned long) len, n_gids *
sizeof (gid_t));
1964 if (len %
sizeof (gid_t) != 0)
1966 _dbus_verbose (
"getsockopt(SO_PEERGROUPS) did not return an " 1967 "integer multiple of sizeof(gid_t): %lu should be " 1969 (
unsigned long) len,
sizeof (gid_t));
1974 n_gids = ((size_t) len) /
sizeof (gid_t);
1982 _dbus_verbose (
"getsockopt(SO_PEERGROUPS) returned a huge number " 1983 "of groups (%lu bytes), ignoring",
1984 (
unsigned long) len);
1990 if (converted_gids ==
NULL)
1996 for (i = 0; i < n_gids; i++)
2000 if (converted_gids[i] == primary)
2001 need_primary =
FALSE;
2006 converted_gids[n_gids] = primary;
2023 add_linux_security_label_to_credentials (
int client_fd,
2026 #if defined(__linux__) && defined(SO_PEERSEC) 2028 socklen_t len = 1024;
2035 while (getsockopt (client_fd, SOL_SOCKET, SO_PEERSEC,
2036 _dbus_string_get_data (&buf), &len) < 0)
2040 _dbus_verbose (
"getsockopt failed with %s, len now %lu\n",
2041 _dbus_strerror (e), (
unsigned long) len);
2043 if (e != ERANGE || len <= _dbus_string_get_length_uint (&buf))
2045 _dbus_verbose (
"Failed to getsockopt(SO_PEERSEC): %s\n",
2046 _dbus_strerror (e));
2058 _dbus_verbose (
"will try again with %lu\n", (
unsigned long) len);
2063 _dbus_verbose (
"getsockopt(SO_PEERSEC) yielded <= 0 bytes: %lu\n",
2064 (
unsigned long) len);
2068 if (len > _dbus_string_get_length_uint (&buf))
2070 _dbus_verbose (
"%lu > %u", (
unsigned long) len,
2071 _dbus_string_get_length_uint (&buf));
2075 if (_dbus_string_get_byte (&buf, len - 1) == 0)
2079 _dbus_verbose (
"subtracting trailing \\0\n");
2090 if (strlen (_dbus_string_get_const_data (&buf)) != len)
2095 _dbus_verbose (
"security label from kernel had an embedded \\0, " 2100 _dbus_verbose (
"getsockopt(SO_PEERSEC): %lu bytes excluding \\0: %s\n",
2101 (
unsigned long) len,
2102 _dbus_string_get_const_data (&buf));
2105 _dbus_string_get_const_data (&buf)))
2173 #ifdef HAVE_CMSGCRED 2176 char cred[CMSG_SPACE (
sizeof (
struct cmsgcred))];
2184 _DBUS_STATIC_ASSERT (
sizeof (pid_t) <=
sizeof (
dbus_pid_t));
2185 _DBUS_STATIC_ASSERT (
sizeof (uid_t) <=
sizeof (
dbus_uid_t));
2186 _DBUS_STATIC_ASSERT (
sizeof (gid_t) <=
sizeof (
dbus_gid_t));
2192 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2196 iov.iov_base = &buf;
2203 #if defined(HAVE_CMSGCRED) 2205 msg.msg_control = (caddr_t) &cmsg;
2206 msg.msg_controllen = CMSG_SPACE (
sizeof (
struct cmsgcred));
2210 bytes_read = recvmsg (client_fd.fd, &msg, 0);
2223 "Failed to read credentials byte: %s",
2224 _dbus_strerror (errno));
2227 else if (bytes_read == 0)
2233 "Failed to read credentials byte (zero-length read)");
2236 else if (buf !=
'\0')
2239 "Credentials byte was not nul");
2243 _dbus_verbose (
"read credentials byte\n");
2256 struct sockpeercred cr;
2260 socklen_t cr_len =
sizeof (cr);
2262 if (getsockopt (client_fd.fd, SOL_SOCKET, SO_PEERCRED, &cr, &cr_len) != 0)
2264 _dbus_verbose (
"Failed to getsockopt(SO_PEERCRED): %s\n",
2265 _dbus_strerror (errno));
2267 else if (cr_len !=
sizeof (cr))
2269 _dbus_verbose (
"Failed to getsockopt(SO_PEERCRED), returned %d bytes, expected %d\n",
2270 cr_len, (
int)
sizeof (cr));
2280 primary_gid_read = cr.gid;
2283 #elif defined(HAVE_UNPCBID) && defined(LOCAL_PEEREID) 2287 socklen_t cr_len =
sizeof (cr);
2289 if (getsockopt (client_fd.fd, 0, LOCAL_PEEREID, &cr, &cr_len) != 0)
2291 _dbus_verbose (
"Failed to getsockopt(LOCAL_PEEREID): %s\n",
2292 _dbus_strerror (errno));
2294 else if (cr_len !=
sizeof (cr))
2296 _dbus_verbose (
"Failed to getsockopt(LOCAL_PEEREID), returned %d bytes, expected %d\n",
2297 cr_len, (
int)
sizeof (cr));
2301 pid_read = cr.unp_pid;
2302 uid_read = cr.unp_euid;
2304 #elif defined(HAVE_CMSGCRED) 2313 struct cmsgcred *cred;
2314 struct cmsghdr *cmsgp;
2316 for (cmsgp = CMSG_FIRSTHDR (&msg);
2318 cmsgp = CMSG_NXTHDR (&msg, cmsgp))
2320 if (cmsgp->cmsg_type == SCM_CREDS &&
2321 cmsgp->cmsg_level == SOL_SOCKET &&
2322 cmsgp->cmsg_len >= CMSG_LEN (
sizeof (
struct cmsgcred)))
2324 cred = (
struct cmsgcred *) CMSG_DATA (cmsgp);
2325 pid_read = cred->cmcred_pid;
2326 uid_read = cred->cmcred_euid;
2331 #elif defined(HAVE_GETPEERUCRED) 2335 ucred_t * ucred =
NULL;
2336 if (getpeerucred (client_fd.fd, &ucred) == 0)
2339 adt_session_data_t *adth =
NULL;
2341 pid_read = ucred_getpid (ucred);
2342 uid_read = ucred_geteuid (ucred);
2345 if (adt_start_session (&adth,
NULL, 0) || (adth ==
NULL))
2347 _dbus_verbose (
"Failed to adt_start_session(): %s\n", _dbus_strerror (errno));
2351 if (adt_set_from_ucred (adth, ucred, ADT_NEW))
2353 _dbus_verbose (
"Failed to adt_set_from_ucred(): %s\n", _dbus_strerror (errno));
2357 adt_export_data_t *data =
NULL;
2358 size_t size = adt_export_session_data (adth, &data);
2361 _dbus_verbose (
"Failed to adt_export_session_data(): %s\n", _dbus_strerror (errno));
2369 (void) adt_end_session (adth);
2375 _dbus_verbose (
"Failed to getpeerucred() credentials: %s\n", _dbus_strerror (errno));
2385 #elif defined(HAVE_GETPEEREID) 2403 if (getpeereid (client_fd.fd, &euid, &egid) == 0)
2409 _dbus_verbose (
"Failed to getpeereid() credentials: %s\n", _dbus_strerror (errno));
2413 #warning Socket credentials not supported on this Unix OS 2414 #warning Please tell https://bugs.freedesktop.org/enter_bug.cgi?product=DBus 2420 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || \ 2421 defined(__linux__) || \ 2422 defined(__OpenBSD__) || \ 2424 # error Credentials passing not working on this OS is a regression! 2427 _dbus_verbose (
"Socket credentials not supported on this OS\n");
2431 _dbus_verbose (
"Credentials:" 2442 _DBUS_SET_OOM (error);
2451 _DBUS_SET_OOM (error);
2456 if (!add_linux_security_label_to_credentials (client_fd.fd, credentials))
2458 _DBUS_SET_OOM (error);
2464 if (!add_groups_to_credentials (client_fd.fd, credentials, primary_gid_read))
2466 _DBUS_SET_OOM (error);
2494 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2496 if (write_credentials_byte (server_fd.fd, error))
2515 struct sockaddr addr;
2521 addrlen =
sizeof (addr);
2531 client_fd.fd = accept4 (listen_fd.fd, &addr, &addrlen, SOCK_CLOEXEC);
2532 cloexec_done = client_fd.fd >= 0;
2534 if (client_fd.fd < 0 && (errno == ENOSYS || errno == EINVAL))
2537 client_fd.fd = accept (listen_fd.fd, &addr, &addrlen);
2540 if (client_fd.fd < 0)
2546 _dbus_verbose (
"client fd %d accepted\n", client_fd.fd);
2569 const char *directory;
2572 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2574 directory = _dbus_string_get_const_data (dir);
2576 if (stat (directory, &sb) < 0)
2579 "%s", _dbus_strerror (errno));
2584 if (sb.st_uid != geteuid ())
2587 "%s directory is owned by user %lu, not %lu",
2589 (
unsigned long) sb.st_uid,
2590 (
unsigned long) geteuid ());
2594 if ((S_IROTH & sb.st_mode) || (S_IWOTH & sb.st_mode) ||
2595 (S_IRGRP & sb.st_mode) || (S_IWGRP & sb.st_mode))
2598 "%s directory is not private to the user", directory);
2606 fill_user_info_from_passwd (
struct passwd *p,
2613 info->
uid = p->pw_uid;
2634 const char *username_c;
2647 if (username !=
NULL)
2648 username_c = _dbus_string_get_const_data (username);
2657 #if defined (HAVE_POSIX_GETPWNAM_R) || defined (HAVE_NONPOSIX_GETPWNAM_R) 2663 struct passwd p_str;
2666 buflen = sysconf (_SC_GETPW_R_SIZE_MAX);
2672 if ((
long) buflen <= 0)
2686 #ifdef HAVE_POSIX_GETPWNAM_R 2688 result = getpwuid_r (uid, &p_str, buf, buflen,
2691 result = getpwnam_r (username_c, &p_str, buf, buflen,
2695 p = getpwuid_r (uid, &p_str, buf, buflen);
2697 p = getpwnam_r (username_c, &p_str, buf, buflen);
2701 if (result == ERANGE && buflen < 512 * 1024)
2711 if (result == 0 && p == &p_str)
2713 if (!fill_user_info_from_passwd (p, info, error))
2723 "User \"%s\" unknown or no memory to allocate password entry\n",
2724 username_c ? username_c :
"???");
2725 _dbus_verbose (
"User %s unknown\n", username_c ? username_c :
"???");
2738 p = getpwnam (username_c);
2742 if (!fill_user_info_from_passwd (p, info, error))
2750 "User \"%s\" unknown or no memory to allocate password entry\n",
2751 username_c ? username_c :
"???");
2752 _dbus_verbose (
"User %s unknown\n", username_c ? username_c :
"???");
2761 #ifdef HAVE_GETGROUPLIST 2766 int initial_buf_count;
2768 initial_buf_count = 17;
2769 buf_count = initial_buf_count;
2777 if (getgrouplist (username_c,
2779 buf, &buf_count) < 0)
2795 if (buf_count == initial_buf_count)
2810 if (getgrouplist (username_c, info->
primary_gid, buf, &buf_count) < 0)
2814 _dbus_warn (
"It appears that username \"%s\" is in more than %d groups.\nProceeding with just the first %d groups.",
2815 username_c, buf_count, buf_count);
2821 "Failed to get groups for username \"%s\" primary GID " 2824 _dbus_strerror (errno));
2839 for (i = 0; i < buf_count; ++i)
2862 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2867 _DBUS_ASSERT_ERROR_IS_SET (error);
2901 return fill_user_info (info, uid,
2925 _DBUS_STATIC_ASSERT (
sizeof (pid_t) <=
sizeof (
dbus_pid_t));
2926 _DBUS_STATIC_ASSERT (
sizeof (uid_t) <=
sizeof (
dbus_uid_t));
2927 _DBUS_STATIC_ASSERT (
sizeof (gid_t) <=
sizeof (
dbus_gid_t));
3009 if (_dbus_string_get_length (uid_str) == 0)
3011 _dbus_verbose (
"UID string was zero length\n");
3020 _dbus_verbose (
"could not parse string as a UID\n");
3024 if (end != _dbus_string_get_length (uid_str))
3026 _dbus_verbose (
"string contained trailing stuff after UID\n");
3041 static pthread_mutex_t atomic_mutex = PTHREAD_MUTEX_INITIALIZER;
3054 return __sync_add_and_fetch(&atomic->
value, 1)-1;
3058 pthread_mutex_lock (&atomic_mutex);
3059 res = atomic->
value;
3061 pthread_mutex_unlock (&atomic_mutex);
3077 return __sync_sub_and_fetch(&atomic->
value, 1)+1;
3081 pthread_mutex_lock (&atomic_mutex);
3082 res = atomic->
value;
3084 pthread_mutex_unlock (&atomic_mutex);
3101 __sync_synchronize ();
3102 return atomic->
value;
3106 pthread_mutex_lock (&atomic_mutex);
3107 res = atomic->
value;
3108 pthread_mutex_unlock (&atomic_mutex);
3125 int timeout_milliseconds)
3127 #if defined(HAVE_POLL) && !defined(BROKEN_POLL) 3129 if (timeout_milliseconds < -1)
3131 timeout_milliseconds = -1;
3136 timeout_milliseconds);
3139 fd_set read_set, write_set, err_set;
3145 FD_ZERO (&read_set);
3146 FD_ZERO (&write_set);
3149 for (i = 0; i < n_fds; i++)
3154 FD_SET (fdp->
fd, &read_set);
3157 FD_SET (fdp->
fd, &write_set);
3159 FD_SET (fdp->
fd, &err_set);
3161 max_fd = MAX (max_fd, fdp->
fd);
3164 tv.tv_sec = timeout_milliseconds / 1000;
3165 tv.tv_usec = (timeout_milliseconds % 1000) * 1000;
3167 ready = select (max_fd + 1, &read_set, &write_set, &err_set,
3168 timeout_milliseconds < 0 ?
NULL : &tv);
3172 for (i = 0; i < n_fds; i++)
3178 if (FD_ISSET (fdp->
fd, &read_set))
3181 if (FD_ISSET (fdp->
fd, &write_set))
3184 if (FD_ISSET (fdp->
fd, &err_set))
3204 #ifdef HAVE_MONOTONIC_CLOCK 3206 clock_gettime (CLOCK_MONOTONIC, &ts);
3209 *tv_sec = ts.tv_sec;
3211 *tv_usec = ts.tv_nsec / 1000;
3215 gettimeofday (&t,
NULL);
3220 *tv_usec = t.tv_usec;
3237 gettimeofday (&t,
NULL);
3242 *tv_usec = t.tv_usec;
3257 const char *filename_c;
3259 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3261 filename_c = _dbus_string_get_const_data (filename);
3263 if (mkdir (filename_c, 0700) < 0)
3265 if (errno == EEXIST)
3269 "Failed to create directory %s: %s\n",
3270 filename_c, _dbus_strerror (errno));
3289 const char *filename_c;
3291 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3293 filename_c = _dbus_string_get_const_data (filename);
3295 if (mkdir (filename_c, 0700) < 0)
3298 "Failed to create directory %s: %s\n",
3299 filename_c, _dbus_strerror (errno));
3323 if (_dbus_string_get_length (dir) == 0 ||
3324 _dbus_string_get_length (next_component) == 0)
3327 dir_ends_in_slash =
'/' == _dbus_string_get_byte (dir,
3328 _dbus_string_get_length (dir) - 1);
3330 file_starts_with_slash =
'/' == _dbus_string_get_byte (next_component, 0);
3332 if (dir_ends_in_slash && file_starts_with_slash)
3336 else if (!(dir_ends_in_slash || file_starts_with_slash))
3343 _dbus_string_get_length (dir));
3347 #define NANOSECONDS_PER_SECOND 1000000000 3349 #define MICROSECONDS_PER_SECOND 1000000 3351 #define MILLISECONDS_PER_SECOND 1000 3353 #define NANOSECONDS_PER_MILLISECOND 1000000 3355 #define MICROSECONDS_PER_MILLISECOND 1000 3364 #ifdef HAVE_NANOSLEEP 3365 struct timespec req;
3366 struct timespec rem;
3368 req.tv_sec = milliseconds / MILLISECONDS_PER_SECOND;
3369 req.tv_nsec = (milliseconds % MILLISECONDS_PER_SECOND) * NANOSECONDS_PER_MILLISECOND;
3373 while (nanosleep (&req, &rem) < 0 && errno == EINTR)
3375 #elif defined (HAVE_USLEEP) 3376 usleep (milliseconds * MICROSECONDS_PER_MILLISECOND);
3378 sleep (MAX (milliseconds / 1000, 1));
3400 old_len = _dbus_string_get_length (str);
3404 fd = open (
"/dev/urandom", O_RDONLY);
3409 "Could not open /dev/urandom: %s",
3410 _dbus_strerror (errno));
3414 _dbus_verbose (
"/dev/urandom fd %d opened\n", fd);
3418 if (result != n_bytes)
3422 "Could not read /dev/urandom: %s",
3423 _dbus_strerror (errno));
3426 "Short read from /dev/urandom");
3433 _dbus_verbose (
"Read %d bytes from /dev/urandom\n",
3461 _dbus_strerror (
int error_number)
3465 msg = strerror (error_number);
3478 signal (SIGPIPE, SIG_IGN);
3493 val = fcntl (fd, F_GETFD, 0);
3500 fcntl (fd, F_SETFD, val);
3515 val = fcntl (fd, F_GETFD, 0);
3522 fcntl (fd, F_SETFD, val);
3536 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3545 "Could not close fd %d", fd);
3566 #ifdef F_DUPFD_CLOEXEC 3569 new_fd = fcntl(fd, F_DUPFD_CLOEXEC, 3);
3570 cloexec_done = new_fd >= 0;
3572 if (new_fd < 0 && errno == EINVAL)
3575 new_fd = fcntl(fd, F_DUPFD, 3);
3581 "Could not duplicate fd %d", fd);
3585 #ifdef F_DUPFD_CLOEXEC 3606 return _dbus_set_fd_nonblocking (fd.fd, error);
3610 _dbus_set_fd_nonblocking (
int fd,
3615 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3617 val = fcntl (fd, F_GETFL, 0);
3621 "Failed to get flags from file descriptor %d: %s",
3622 fd, _dbus_strerror (errno));
3623 _dbus_verbose (
"Failed to get flags for fd %d: %s\n", fd,
3624 _dbus_strerror (errno));
3628 if (fcntl (fd, F_SETFL, val | O_NONBLOCK) < 0)
3631 "Failed to set nonblocking flag of file descriptor %d: %s",
3632 fd, _dbus_strerror (errno));
3633 _dbus_verbose (
"Failed to set fd %d nonblocking: %s\n",
3634 fd, _dbus_strerror (errno));
3650 #if defined (HAVE_BACKTRACE) && defined (DBUS_BUILT_R_DYNAMIC) 3656 bt_size = backtrace (bt, 500);
3658 syms = backtrace_symbols (bt, bt_size);
3664 fprintf (stderr,
" %s\n", syms[i]);
3670 #elif defined (HAVE_BACKTRACE) && ! defined (DBUS_BUILT_R_DYNAMIC) 3671 fprintf (stderr,
" D-Bus not built with -rdynamic so unable to print a backtrace\n");
3673 fprintf (stderr,
" D-Bus not compiled with backtrace support so unable to print a backtrace\n");
3695 #ifdef HAVE_SOCKETPAIR 3702 retval = socketpair(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0, fds);
3703 cloexec_done = retval >= 0;
3705 if (retval < 0 && (errno == EINVAL || errno == EPROTOTYPE))
3708 retval = socketpair(AF_UNIX, SOCK_STREAM, 0, fds);
3714 "Could not create full-duplex pipe");
3718 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3729 (!_dbus_set_fd_nonblocking (fds[0],
NULL) ||
3730 !_dbus_set_fd_nonblocking (fds[1],
NULL)))
3733 "Could not set full-duplex pipe nonblocking");
3744 _dbus_verbose (
"full-duplex pipe %d <-> %d\n",
3749 _dbus_warn (
"_dbus_socketpair() not implemented on this OS");
3751 "_dbus_socketpair() not implemented on this OS");
3768 char static_buf[1024];
3769 int bufsize =
sizeof (static_buf);
3773 DBUS_VA_COPY (args_copy, args);
3774 len = vsnprintf (static_buf, bufsize, format, args_copy);
3791 DBUS_VA_COPY (args_copy, args);
3793 if (vsnprintf (static_buf, 1, format, args_copy) == 1)
3812 DBUS_VA_COPY (args_copy, args);
3813 len = vsnprintf (buf, bufsize, format, args_copy);
3838 static const char* tmpdir =
NULL;
3850 tmpdir = getenv(
"TMPDIR");
3856 tmpdir = getenv(
"TMP");
3858 tmpdir = getenv(
"TEMP");
3872 #if defined(DBUS_ENABLE_X11_AUTOLAUNCH) || defined(DBUS_ENABLE_LAUNCHD) 3893 _read_subprocess_line_argv (
const char *progpath,
3895 const char *
const *argv,
3899 int result_pipe[2] = { -1, -1 };
3900 int errors_pipe[2] = { -1, -1 };
3907 sigset_t new_set, old_set;
3909 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3916 sigemptyset (&new_set);
3917 sigaddset (&new_set, SIGCHLD);
3918 sigprocmask (SIG_BLOCK, &new_set, &old_set);
3920 orig_len = _dbus_string_get_length (result);
3924 if (pipe (result_pipe) < 0)
3927 "Failed to create a pipe to call %s: %s",
3928 progpath, _dbus_strerror (errno));
3929 _dbus_verbose (
"Failed to create a pipe to call %s: %s\n",
3930 progpath, _dbus_strerror (errno));
3933 if (pipe (errors_pipe) < 0)
3936 "Failed to create a pipe to call %s: %s",
3937 progpath, _dbus_strerror (errno));
3938 _dbus_verbose (
"Failed to create a pipe to call %s: %s\n",
3939 progpath, _dbus_strerror (errno));
3952 "Failed to fork() to call %s: %s",
3953 progpath, _dbus_strerror (errno));
3954 _dbus_verbose (
"Failed to fork() to call %s: %s\n",
3955 progpath, _dbus_strerror (errno));
3962 const char *error_str;
3966 int saved_errno = errno;
3971 if (write (errors_pipe[
WRITE_END], error_str, strlen (error_str)) < 0 ||
3972 write (errors_pipe[WRITE_END],
": ", 2) < 0)
3977 error_str = _dbus_strerror (saved_errno);
3979 if (write (errors_pipe[WRITE_END], error_str, strlen (error_str)) < 0)
3989 close (errors_pipe[READ_END]);
3991 if (dup2 (result_pipe[
WRITE_END], 1) == -1)
3993 if (dup2 (errors_pipe[WRITE_END], 2) == -1)
3998 sigprocmask (SIG_SETMASK, &old_set,
NULL);
4001 if (progpath[0] ==
'/')
4003 execv (progpath, (
char *
const *) argv);
4012 execvp (strrchr (progpath,
'/')+1, (
char *
const *) argv);
4015 execvp (progpath, (
char *
const *) argv);
4023 close (errors_pipe[WRITE_END]);
4037 ret = waitpid (pid, &status, 0);
4039 while (ret == -1 && errno == EINTR);
4043 if (!WIFEXITED (status) || WEXITSTATUS (status) != 0 )
4049 _DBUS_SET_OOM (error);
4061 if (_dbus_string_get_length (&error_message) > 0)
4063 "%s terminated abnormally with the following error: %s",
4064 progpath, _dbus_string_get_data (&error_message));
4067 "%s terminated abnormally without any error message",
4075 sigprocmask (SIG_SETMASK, &old_set,
NULL);
4077 _DBUS_ASSERT_ERROR_XOR_BOOL (error, retval);
4079 if (result_pipe[0] != -1)
4080 close (result_pipe[0]);
4081 if (result_pipe[1] != -1)
4082 close (result_pipe[1]);
4083 if (errors_pipe[0] != -1)
4084 close (errors_pipe[0]);
4085 if (errors_pipe[1] != -1)
4086 close (errors_pipe[1]);
4109 #ifdef DBUS_ENABLE_X11_AUTOLAUNCH 4110 static const char arg_dbus_launch[] =
"dbus-launch";
4111 static const char arg_autolaunch[] =
"--autolaunch";
4112 static const char arg_binary_syntax[] =
"--binary-syntax";
4113 static const char arg_close_stderr[] =
"--close-stderr";
4118 const char *display;
4119 const char *progpath;
4120 const char *argv[6];
4128 "Unable to autolaunch when setuid");
4132 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
4145 if (display ==
NULL || display[0] ==
'\0')
4148 "Unable to autolaunch a dbus-daemon without a $DISPLAY for X11");
4154 _DBUS_SET_OOM (error);
4163 #ifdef DBUS_ENABLE_EMBEDDED_TESTS 4166 if (progpath ==
NULL)
4168 progpath = DBUS_BINDIR
"/dbus-launch";
4175 argv[i] = arg_dbus_launch;
4177 argv[i] = arg_autolaunch;
4179 argv[i] = _dbus_string_get_data (&uuid);
4181 argv[i] = arg_binary_syntax;
4183 argv[i] = arg_close_stderr;
4190 retval = _read_subprocess_line_argv (progpath,
4192 argv, address, error);
4199 "Using X11 for dbus-daemon autolaunch was disabled at compile time, " 4200 "set your DBUS_SESSION_BUS_ADDRESS instead");
4245 if (create_if_not_found)
4257 if (!create_if_not_found)
4260 "D-Bus library appears to be incorrectly set up: " 4261 "see the manual page for dbus-uuidgen to correct " 4262 "this issue. (%s; %s)",
4290 const char *launchd_env_var,
4293 #ifdef DBUS_ENABLE_LAUNCHD 4297 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
4302 "Unable to find launchd socket when setuid");
4307 argv[i] =
"launchctl";
4311 argv[i] = (
char*)launchd_env_var;
4318 if (!_read_subprocess_line_argv(argv[0],
TRUE, argv, socket_path, error))
4324 if (_dbus_string_get_length(socket_path) == 0)
4334 "can't lookup socket from launchd; launchd support not compiled in");
4339 #ifdef DBUS_ENABLE_LAUNCHD 4349 "Unable to find launchd socket when setuid");
4355 _DBUS_SET_OOM (error);
4370 "launchd did not provide a socket path, " 4371 "verify that org.freedesktop.dbus-session.plist is loaded!");
4377 _DBUS_SET_OOM (error);
4382 _dbus_string_get_length (address)))
4384 _DBUS_SET_OOM (error);
4399 const char *runtime_dir =
_dbus_getenv (
"XDG_RUNTIME_DIR");
4404 if (runtime_dir ==
NULL)
4406 _dbus_verbose (
"XDG_RUNTIME_DIR not found in environment");
4413 _DBUS_SET_OOM (error);
4419 _DBUS_SET_OOM (error);
4423 if (lstat (_dbus_string_get_const_data (&user_bus_path), &stbuf) == -1)
4425 _dbus_verbose (
"XDG_RUNTIME_DIR/bus not available: %s",
4426 _dbus_strerror (errno));
4432 if (stbuf.st_uid != getuid ())
4434 _dbus_verbose (
"XDG_RUNTIME_DIR/bus owned by uid %ld, not our uid %ld",
4435 (
long) stbuf.st_uid, (
long) getuid ());
4441 if ((stbuf.st_mode & S_IFMT) != S_IFSOCK)
4443 _dbus_verbose (
"XDG_RUNTIME_DIR/bus is not a socket: st_mode = 0o%lo",
4444 (
long) stbuf.st_mode);
4453 _DBUS_SET_OOM (error);
4489 #ifdef DBUS_ENABLE_LAUNCHD 4491 return _dbus_lookup_session_address_launchd (address, error);
4495 if (!_dbus_lookup_user_bus (supported, address, error))
4497 else if (*supported)
4555 #ifdef DBUS_ENABLE_EMBEDDED_TESTS 4557 const char *
override;
4560 if (
override !=
NULL && *
override !=
'\0')
4566 _dbus_verbose (
"Using fake homedir for testing: %s\n",
4567 _dbus_string_get_const_data (&homedir));
4574 if (!already_warned)
4576 _dbus_warn (
"Using %s for testing, set DBUS_TEST_HOMEDIR to avoid",
4577 _dbus_string_get_const_data (&homedir));
4578 already_warned =
TRUE;
4590 directory, _dbus_string_get_length (directory))) {
4604 _dbus_daemon_publish_session_bus_address (
const char* addr,
4612 _dbus_daemon_unpublish_session_bus_address (
void)
4630 #if EAGAIN == EWOULDBLOCK 4633 return e == EAGAIN || e == EWOULDBLOCK;
4648 const char *filename_c;
4650 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
4652 filename_c = _dbus_string_get_const_data (filename);
4654 if (rmdir (filename_c) != 0)
4657 "Failed to remove directory %s: %s\n",
4658 filename_c, _dbus_strerror (errno));
4678 struct sockaddr_storage storage;
4679 struct sockaddr_un un;
4682 socklen_t sa_len =
sizeof(sa_buf);
4686 if (getsockname(fd.fd, &sa_buf.sa, &sa_len) < 0)
4689 return sa_buf.sa.sa_family == AF_UNIX;
4698 close_ignore_error (
int fd)
4708 act_on_fds_3_and_up (
void (*func) (
int fd))
4718 d = opendir (
"/proc/self/fd");
4732 if (de->d_name[0] ==
'.')
4736 l = strtol (de->d_name, &e, 10);
4737 if (errno != 0 || e ==
NULL || *e !=
'\0')
4744 if (fd == dirfd (d))
4755 maxfds = sysconf (_SC_OPEN_MAX);
4764 for (i = 3; i < maxfds; i++)
4775 act_on_fds_3_and_up (close_ignore_error);
4803 #if 0 && defined(HAVE_LIBC_ENABLE_SECURE) 4806 extern int __libc_enable_secure;
4807 return __libc_enable_secure;
4809 #elif defined(HAVE_ISSETUGID) 4811 return issetugid ();
4813 uid_t ruid, euid, suid;
4814 gid_t rgid, egid, sgid;
4821 if (_DBUS_UNLIKELY (!check_setuid_initialised))
4823 #ifdef HAVE_GETRESUID 4824 if (getresuid (&ruid, &euid, &suid) != 0 ||
4825 getresgid (&rgid, &egid, &sgid) != 0)
4828 suid = ruid = getuid ();
4829 sgid = rgid = getgid ();
4834 check_setuid_initialised =
TRUE;
4835 is_setuid = (ruid != euid || ruid != suid ||
4836 rgid != egid || rgid != sgid);
4857 struct sockaddr_storage storage;
4858 struct sockaddr_un un;
4859 struct sockaddr_in ipv4;
4860 struct sockaddr_in6 ipv6;
4862 char hostip[INET6_ADDRSTRLEN];
4863 socklen_t size =
sizeof (socket);
4865 const char *family_name =
NULL;
4868 if (getsockname (fd.fd, &socket.sa, &size))
4871 switch (socket.sa.sa_family)
4874 if (socket.un.sun_path[0]==
'\0')
4884 _DBUS_SET_OOM (error);
4898 _DBUS_SET_OOM (error);
4911 if (_dbus_inet_sockaddr_to_string (&socket, size, hostip,
sizeof (hostip),
4912 &family_name, &port, error))
4915 family_name, port) &&
4922 _DBUS_SET_OOM (error);
4936 "Failed to read address from socket: Unknown socket type.");
4942 "Failed to read address from socket: %s",
4943 _dbus_strerror (errno));
4948 _dbus_save_socket_errno (
void)
4954 _dbus_restore_socket_errno (
int saved_errno)
4956 errno = saved_errno;
4959 static const char *syslog_tag =
"dbus";
4960 #ifdef HAVE_SYSLOG_H 4961 static DBusLogFlags log_flags = DBUS_LOG_FLAGS_STDERR;
4984 (flags & (DBUS_LOG_FLAGS_STDERR | DBUS_LOG_FLAGS_SYSTEM_LOG)) != 0);
4988 #ifdef HAVE_SYSLOG_H 4991 if (log_flags & DBUS_LOG_FLAGS_SYSTEM_LOG)
4992 openlog (tag, LOG_PID, LOG_DAEMON);
5009 #ifdef HAVE_SYSLOG_H 5010 if (log_flags & DBUS_LOG_FLAGS_SYSTEM_LOG)
5015 case DBUS_SYSTEM_LOG_INFO:
5016 flags = LOG_DAEMON | LOG_INFO;
5018 case DBUS_SYSTEM_LOG_WARNING:
5019 flags = LOG_DAEMON | LOG_WARNING;
5021 case DBUS_SYSTEM_LOG_SECURITY:
5022 flags = LOG_AUTH | LOG_NOTICE;
5024 case DBUS_SYSTEM_LOG_ERROR:
5025 flags = LOG_DAEMON|LOG_CRIT;
5031 DBUS_VA_COPY (tmp, args);
5032 vsyslog (flags, msg, tmp);
5038 if (log_flags & DBUS_LOG_FLAGS_STDERR)
5041 DBUS_VA_COPY (tmp, args);
5043 vfprintf (stderr, msg, tmp);
5044 fputc (
'\n', stderr);
5058 _dbus_get_low_level_socket_errno (
void)
dbus_bool_t _dbus_string_append(DBusString *str, const char *buffer)
Appends a nul-terminated C-style string to a DBusString.
DBUS_PRIVATE_EXPORT dbus_bool_t _dbus_string_parse_int(const DBusString *str, int start, long *value_return, int *end_return)
Parses an integer contained in a DBusString.
An atomic integer safe to increment or decrement from multiple threads.
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_PRIVATE_EXPORT dbus_bool_t _dbus_string_append_uint(DBusString *str, unsigned long value)
Appends an unsigned integer to a DBusString.
const char * message
public error message field
#define NULL
A null pointer, defined appropriately for C or C++.
#define DBUS_ERROR_SPAWN_EXEC_FAILED
While starting a new process, the exec() call failed.
volatile dbus_int32_t value
Value of the atomic integer.
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.
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.
void _dbus_close_all(void)
Closes all file descriptors except the first three (i.e.
dbus_bool_t _dbus_string_lengthen(DBusString *str, int additional_length)
Makes a string longer by the given number of bytes.
dbus_bool_t _dbus_ensure_directory(const DBusString *filename, DBusError *error)
Creates a directory; succeeds if the directory is created or already existed.
void dbus_free(void *memory)
Frees a block of memory previously allocated by dbus_malloc() or dbus_malloc0().
dbus_bool_t _dbus_socketpair(DBusSocket *fd1, DBusSocket *fd2, dbus_bool_t blocking, DBusError *error)
Creates pair of connect sockets (as in socketpair()).
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 ...
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 ...
#define DBUS_ERROR_NOT_SUPPORTED
Requested operation isn't supported (like ENOSYS on UNIX).
#define dbus_new(type, count)
Safe macro for using dbus_malloc().
#define DBUS_GID_FORMAT
an appropriate printf format for dbus_gid_t
#define DBUS_PID_FORMAT
an appropriate printf format for dbus_pid_t
dbus_bool_t _dbus_generate_uuid(DBusGUID *uuid, DBusError *error)
Generates a new UUID.
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.
#define _dbus_assert(condition)
Aborts with an error message if the condition is false.
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.
#define DBUS_ERROR_INIT
Expands to a suitable initializer for a DBusError on the stack.
dbus_bool_t _dbus_check_setuid(void)
NOTE: If you modify this function, please also consider making the corresponding change in GLib...
void _dbus_user_database_flush_system(void)
Flushes the system global user database;.
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_gid_t primary_gid
GID.
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...
A globally unique ID ; we have one for each DBusServer, and also one for each machine with libdbus in...
dbus_pid_t _dbus_getpid(void)
Gets our process ID.
#define _DBUS_POLLIN
There is data to read.
dbus_bool_t _dbus_concat_dir_and_file(DBusString *dir, const DBusString *next_component)
Appends the given filename to the given directory.
char * _dbus_string_get_data_len(DBusString *str, int start, int len)
Gets a sub-portion of the raw character buffer from the string.
int _dbus_read_socket(DBusSocket fd, DBusString *buffer, int count)
Like _dbus_read(), but only works on sockets so is available on Windows.
#define DBUS_MAXIMUM_MESSAGE_UNIX_FDS
The maximum total number of unix fds in a message.
dbus_bool_t _dbus_string_init(DBusString *str)
Initializes a string.
#define DBUS_ERROR_IO_ERROR
Something went wrong reading or writing to a socket, for example.
int _dbus_dup(int fd, DBusError *error)
Duplicates a file descriptor.
void _dbus_string_shorten(DBusString *str, int length_to_remove)
Makes a string shorter by the given number of bytes.
short events
Events to poll for.
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...
#define DBUS_PID_UNSET
an invalid PID used to represent an uninitialized dbus_pid_t field
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_bool_t _dbus_close_socket(DBusSocket fd, DBusError *error)
Closes a socket.
void _dbus_credentials_clear(DBusCredentials *credentials)
Clear all credentials in the object.
#define DBUS_UID_UNSET
an invalid UID used to represent an uninitialized dbus_uid_t field
dbus_bool_t _dbus_parse_uid(const DBusString *uid_str, dbus_uid_t *uid)
Gets a UID from a UID string.
dbus_bool_t _dbus_get_autolaunch_address(const char *scope, DBusString *address, DBusError *error)
Returns the address of a new session bus.
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_user_info_fill(DBusUserInfo *info, const DBusString *username, DBusError *error)
Gets user info for the given username.
dbus_bool_t _dbus_homedir_from_uid(dbus_uid_t uid, DBusString *homedir)
Gets the home directory for the given user.
unsigned long dbus_pid_t
A process ID.
dbus_gid_t * group_ids
Groups IDs, including above primary group.
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.
void * dbus_malloc(size_t bytes)
Allocates the given number of bytes, as with standard malloc().
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...
#define dbus_new0(type, count)
Safe macro for using dbus_malloc0().
dbus_bool_t _dbus_credentials_are_anonymous(DBusCredentials *credentials)
Checks whether a credentials object contains a user identity.
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) ...
dbus_uint32_t dbus_bool_t
A boolean, valid values are TRUE and FALSE.
void _dbus_string_init_const(DBusString *str, const char *value)
Initializes a constant string.
int n_group_ids
Size of group IDs array.
void _dbus_fd_clear_close_on_exec(int fd)
Sets the file descriptor to not be close-on-exec.
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...
int _dbus_listen_systemd_sockets(DBusSocket **fds, DBusError *error)
Acquires one or more sockets passed in from systemd.
#define _DBUS_POLLOUT
Writing now will not block.
void _dbus_warn(const char *format,...)
Prints a warning message to stderr.
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.
DBusSocket _dbus_accept(DBusSocket listen_fd)
Accepts a connection on a listening socket.
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...
dbus_int32_t _dbus_atomic_inc(DBusAtomic *atomic)
Atomically increments an integer.
dbus_bool_t _dbus_list_append(DBusList **list, void *data)
Appends a value to the list.
void _dbus_print_backtrace(void)
On GNU libc systems, print a crude backtrace to stderr.
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_string_append_printf(DBusString *str, const char *format,...)
Appends a printf-style formatted string to the DBusString.
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.
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...
dbus_bool_t _dbus_create_directory(const DBusString *filename, DBusError *error)
Creates a directory.
dbus_bool_t _dbus_delete_directory(const DBusString *filename, DBusError *error)
Removes a directory; Directory must be empty.
Object representing an exception.
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_get_monotonic_time(long *tv_sec, long *tv_usec)
Get current time, as in gettimeofday().
void _dbus_disable_sigpipe(void)
signal (SIGPIPE, SIG_IGN);
void * _dbus_list_pop_first(DBusList **list)
Removes the first value in the list and returns it.
#define DBUS_ERROR_BAD_ADDRESS
A D-Bus bus address was malformed.
void dbus_set_error(DBusError *error, const char *name, const char *format,...)
Assigns an error name and message to a DBusError.
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.
#define _DBUS_N_ELEMENTS(array)
Computes the number of elements in a fixed-size array using sizeof().
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.
void _dbus_flush_caches(void)
Called when the bus daemon is signaled to reload its configuration; any caches should be nuked...
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. ...
const char * _dbus_get_tmpdir(void)
Gets the temporary files directory by inspecting the environment variables TMPDIR, TMP, and TEMP in that order.
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.
#define _DBUS_UNLOCK(name)
Unlocks a global lock.
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...
#define DBUS_GID_UNSET
an invalid GID used to represent an uninitialized dbus_gid_t field
void _dbus_fd_set_all_close_on_exec(void)
Sets all file descriptors except the first three (i.e.
dbus_uid_t _dbus_geteuid(void)
Gets our effective 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...
#define TRUE
Expands to "1".
DBusPollable fd
File descriptor.
#define _dbus_assert_not_reached(explanation)
Aborts with an error message if called.
dbus_bool_t _dbus_credentials_add_pid(DBusCredentials *credentials, dbus_pid_t pid)
Add a UNIX process ID to the credentials.
#define DBUS_ERROR_FAILED
A generic error; "something went wrong" - see the error message for more.
const char * name
public error name field
#define READ_END
Helps remember which end of the pipe is which.
#define DBUS_UID_FORMAT
an appropriate printf format for dbus_uid_t
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.
char * homedir
Home directory.
void _dbus_exit(int code)
Exit the process, returning the given value.
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...
void _dbus_fd_set_close_on_exec(int fd)
Sets the file descriptor to be close on exec.
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_error_init(DBusError *error)
Initializes a DBusError structure.
dbus_int32_t _dbus_atomic_dec(DBusAtomic *atomic)
Atomically decrement an integer.
dbus_uid_t _dbus_getuid(void)
Gets our UID.
void _dbus_init_system_log(const char *tag, DBusLogFlags flags)
Initialize the system log.
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...
dbus_bool_t _dbus_user_info_fill_uid(DBusUserInfo *info, dbus_uid_t uid, DBusError *error)
Gets user info for the given user ID.
dbus_bool_t _dbus_set_socket_nonblocking(DBusSocket fd, DBusError *error)
Sets a file descriptor to be nonblocking.
#define DBUS_ERROR_NO_MEMORY
There was not enough memory to complete an operation.
#define _DBUS_INT32_MAX
Maximum value of type "int32".
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. ...
dbus_bool_t _dbus_close(int fd, DBusError *error)
Closes a file descriptor.
void _dbus_logv(DBusSystemLogSeverity severity, const char *msg, va_list args)
Log a message to the system log file (e.g.
#define FALSE
Expands to "0".
dbus_bool_t _dbus_write_uuid_file(const DBusString *filename, const DBusGUID *uuid, DBusError *error)
Write the give UUID to a file.
void dbus_set_error_const(DBusError *error, const char *name, const char *message)
Assigns an error name and message to a DBusError.
dbus_bool_t _dbus_string_set_length(DBusString *str, int length)
Sets the length of a string.
#define _DBUS_LOCK(name)
Locks a global lock, initializing it first if necessary.
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.
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_int32_t _dbus_atomic_get(DBusAtomic *atomic)
Atomically get the value of an integer.
void _dbus_sleep_milliseconds(int milliseconds)
Sleeps the given number of milliseconds.
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.
#define WRITE_END
Helps remember which end of the pipe is which.
unsigned long dbus_gid_t
A group ID.
void * dbus_realloc(void *memory, size_t bytes)
Resizes a block of memory previously allocated by dbus_malloc() or dbus_malloc0().
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...
char * _dbus_strdup(const char *str)
Duplicates a string.
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.
#define _DBUS_ZERO(object)
Sets all bits in an object to zero.
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_socket_can_pass_unix_fd(DBusSocket fd)
Checks whether file descriptors may be passed via the socket.
const char * _dbus_getenv(const char *varname)
Wrapper for getenv().
unsigned long dbus_uid_t
A user ID.
int _dbus_poll(DBusPollFD *fds, int n_fds, int timeout_milliseconds)
Wrapper for poll().
short revents
Events that occurred.
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.
dbus_bool_t dbus_error_is_set(const DBusError *error)
Checks whether an error occurred (the error is set).
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_get_real_time(long *tv_sec, long *tv_usec)
Get current time, as in gettimeofday().
Information about a UNIX user.
#define _DBUS_POLLERR
Error condition.