Files
RedBear-OS/local/recipes/system/dbus/source/dbus/dbus-sysdeps.c
T
vasilito f31522130f fix: comprehensive boot warnings and exceptions — fixable silenced, unfixable diagnosed
Build system (5 gaps hardened):
- COOKBOOK_OFFLINE defaults to true (fork-mode)
- normalize_patch handles diff -ruN format
- New 'repo validate-patches' command (25/25 relibc patches)
- 14 patched Qt/Wayland/display recipes added to protected list
- relibc archive regenerated with current patch chain

Boot fixes (fixable):
- Full ISO EFI partition: 16 MiB → 1 MiB (matches mini, BIOS hardcoded 2 MiB offset)
- D-Bus system bus: absolute /usr/bin/dbus-daemon path (was skipped)
- redbear-sessiond: absolute /usr/bin/redbear-sessiond path (was skipped)
- daemon framework: silenced spurious INIT_NOTIFY warnings for oneshot_async services (P0-daemon-silence-init-notify.patch)
- udev-shim: demoted INIT_NOTIFY warning to INFO (expected for oneshot_async)
- relibc: comprehensive named semaphores (sem_open/close/unlink) replacing upstream todo!() stubs
- greeterd: Wayland socket timeout 15s → 30s (compositor DRM wait)
- greeter-ui: built and linked (header guard unification, sem_compat stubs removed)
- mc: un-ignored in both configs, fixed glib/libiconv/pcre2 transitive deps
- greeter config: removed stale keymapd dependency from display/greeter services
- prefix toolchain: relibc headers synced, _RELIBC_STDLIB_H guard unified

Unfixable (diagnosed, upstream):
- i2c-hidd: abort on no-I2C-hardware (QEMU) — process::exit → relibc abort
- kded6/greeter-ui: page fault 0x8 — Qt library null deref
- Thread panics fd != -1 — Rust std library on Redox
- DHCP timeout / eth0 MAC — QEMU user-mode networking
- hwrngd/thermald — no hardware RNG/thermal in VM
- live preload allocation — BIOS memory fragmentation, continues on demand
2026-05-05 20:20:37 +01:00

947 lines
23 KiB
C

/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
/* dbus-sysdeps.c Wrappers around system/libc features shared between UNIX and Windows (internal to D-Bus implementation)
*
* Copyright (C) 2002, 2003, 2006 Red Hat, Inc.
* Copyright (C) 2003 CodeFactory AB
*
* SPDX-License-Identifier: AFL-2.1 OR GPL-2.0-or-later
*
* Licensed under the Academic Free License version 2.1
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include <config.h>
#include "dbus-internals.h"
#include "dbus-sysdeps.h"
#include "dbus-threads.h"
#include "dbus-protocol.h"
#include "dbus-string.h"
#include "dbus-list.h"
#include "dbus-misc.h"
/* NOTE: If you include any unix/windows-specific headers here, you are probably doing something
* wrong and should be putting some code in dbus-sysdeps-unix.c or dbus-sysdeps-win.c.
*
* These are the standard ANSI C headers...
*/
#if HAVE_LOCALE_H
#include <locale.h>
#endif
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#ifdef HAVE_ERRNO_H
#include <errno.h>
#endif
#ifdef DBUS_WIN
#include <stdlib.h>
#elif (defined __APPLE__)
# include <crt_externs.h>
# define environ (*_NSGetEnviron())
#elif HAVE_DECL_ENVIRON && defined(HAVE_UNISTD_H)
# include <unistd.h>
#else
extern char **environ;
#endif
#ifdef DBUS_WIN
#include "dbus-sockets-win.h"
#else
#include <arpa/inet.h>
#include <netinet/in.h>
#include <sys/socket.h>
#endif
/**
* @defgroup DBusSysdeps Internal system-dependent API
* @ingroup DBusInternals
* @brief Internal system-dependent API available on UNIX and Windows
*
* The system-dependent API has a dual purpose. First, it encapsulates
* all usage of operating system APIs for ease of auditing and to
* avoid cluttering the rest of the code with bizarre OS quirks and
* headers. Second, it abstracts different operating system APIs for
* portability.
*
* @{
*/
/**
* Aborts the program with SIGABRT (dumping core).
*/
void
_dbus_abort (void)
{
const char *s;
_dbus_print_backtrace ();
s = _dbus_getenv ("DBUS_BLOCK_ON_ABORT");
if (s && *s)
{
/* don't use _dbus_warn here since it can _dbus_abort() */
fprintf (stderr, " Process %lu sleeping for gdb attach\n", _dbus_pid_for_log ());
_dbus_sleep_milliseconds (1000 * 180);
}
abort ();
_dbus_exit (1); /* in case someone manages to ignore SIGABRT ? */
}
/**
* @ingroup DBusMisc
*
* Wrapper for setenv(). If the value is #NULL, unsets
* the environment variable.
*
* There is an unfixable memleak in that it is unsafe to
* free memory malloced for use with setenv. This is because
* we can not rely on internal implementation details of
* the underlying libc library.
*
* This function is not thread-safe, because altering the environment
* in Unix is not thread-safe in general.
*
* @param varname name of environment variable
* @param value value of environment variable, or #NULL to unset
* @returns #TRUE on success, #FALSE if not enough memory.
*/
dbus_bool_t
dbus_setenv (const char *varname,
const char *value)
{
_dbus_assert (varname != NULL);
if (value == NULL)
{
#ifdef HAVE_UNSETENV
unsetenv (varname);
return TRUE;
#else
char *putenv_value;
size_t len;
len = strlen (varname);
/* Use system malloc to avoid memleaks that dbus_malloc
* will get upset about.
*/
putenv_value = malloc (len + 2);
if (putenv_value == NULL)
return FALSE;
strcpy (putenv_value, varname);
#if defined(DBUS_WIN)
strcat (putenv_value, "=");
#endif
return (putenv (putenv_value) == 0);
#endif
}
else
{
#ifdef HAVE_SETENV
return (setenv (varname, value, TRUE) == 0);
#else
char *putenv_value;
size_t len;
size_t varname_len;
size_t value_len;
varname_len = strlen (varname);
value_len = strlen (value);
len = varname_len + value_len + 1 /* '=' */ ;
/* Use system malloc to avoid memleaks that dbus_malloc
* will get upset about.
*/
putenv_value = malloc (len + 1);
if (putenv_value == NULL)
return FALSE;
strcpy (putenv_value, varname);
strcpy (putenv_value + varname_len, "=");
strcpy (putenv_value + varname_len + 1, value);
return (putenv (putenv_value) == 0);
#endif
}
}
/**
* Wrapper for getenv().
*
* @param varname name of environment variable
* @returns value of environment variable or #NULL if unset
*/
const char*
_dbus_getenv (const char *varname)
{
/* Don't respect any environment variables if the current process is
* setuid. This is the equivalent of glibc's __secure_getenv().
*/
if (_dbus_check_setuid ())
return NULL;
return getenv (varname);
}
/**
* Wrapper for clearenv().
*
* @returns #TRUE on success.
*/
dbus_bool_t
_dbus_clearenv (void)
{
dbus_bool_t rc = TRUE;
#ifdef HAVE_CLEARENV
if (clearenv () != 0)
rc = FALSE;
#else
if (environ != NULL)
environ[0] = NULL;
#endif
return rc;
}
/**
* Split paths into a list of char strings
*
* @param dirs string with pathes
* @param suffix string concated to each path in dirs
* @param dir_list contains a list of splitted pathes
* return #TRUE is pathes could be splittes,#FALSE in oom case
*/
dbus_bool_t
_dbus_split_paths_and_append (DBusString *dirs,
const char *suffix,
DBusList **dir_list)
{
int start;
int i;
int len;
char *cpath;
DBusString file_suffix;
start = 0;
i = 0;
_dbus_string_init_const (&file_suffix, suffix);
len = _dbus_string_get_length (dirs);
while (_dbus_string_find (dirs, start, _DBUS_PATH_SEPARATOR, &i))
{
DBusString path;
if (!_dbus_string_init (&path))
goto oom;
if (!_dbus_string_copy_len (dirs,
start,
i - start,
&path,
0))
{
_dbus_string_free (&path);
goto oom;
}
_dbus_string_chop_white (&path);
/* check for an empty path */
if (_dbus_string_get_length (&path) == 0)
goto next;
if (!_dbus_concat_dir_and_file (&path,
&file_suffix))
{
_dbus_string_free (&path);
goto oom;
}
if (!_dbus_string_copy_data(&path, &cpath))
{
_dbus_string_free (&path);
goto oom;
}
if (!_dbus_list_append (dir_list, cpath))
{
_dbus_string_free (&path);
dbus_free (cpath);
goto oom;
}
next:
_dbus_string_free (&path);
start = i + 1;
}
if (start != len)
{
DBusString path;
if (!_dbus_string_init (&path))
goto oom;
if (!_dbus_string_copy_len (dirs,
start,
len - start,
&path,
0))
{
_dbus_string_free (&path);
goto oom;
}
if (!_dbus_concat_dir_and_file (&path,
&file_suffix))
{
_dbus_string_free (&path);
goto oom;
}
if (!_dbus_string_copy_data(&path, &cpath))
{
_dbus_string_free (&path);
goto oom;
}
if (!_dbus_list_append (dir_list, cpath))
{
_dbus_string_free (&path);
dbus_free (cpath);
goto oom;
}
_dbus_string_free (&path);
}
return TRUE;
oom:
_dbus_list_clear_full (dir_list, dbus_free);
return FALSE;
}
/** @} */
/**
* @addtogroup DBusString
*
* @{
*/
/**
* Parses an integer contained in a DBusString. Either return parameter
* may be #NULL if you aren't interested in it. The integer is parsed
* and stored in value_return. Return parameters are not initialized
* if the function returns #FALSE.
*
* @param str the string
* @param start the byte index of the start of the integer
* @param value_return return location of the integer value or #NULL
* @param end_return return location of the end of the integer, or #NULL
* @returns #TRUE on success
*/
dbus_bool_t
_dbus_string_parse_int (const DBusString *str,
int start,
long *value_return,
int *end_return)
{
long v;
const char *p;
char *end;
p = _dbus_string_get_const_data_len (str, start,
_dbus_string_get_length (str) - start);
end = NULL;
_dbus_set_errno_to_zero ();
v = strtol (p, &end, 0);
if (end == NULL || end == p || errno != 0)
return FALSE;
if (value_return)
*value_return = v;
if (end_return)
*end_return = start + (end - p);
return TRUE;
}
/**
* Parses an unsigned integer contained in a DBusString. Either return
* parameter may be #NULL if you aren't interested in it. The integer
* is parsed and stored in value_return. Return parameters are not
* initialized if the function returns #FALSE.
*
* @param str the string
* @param start the byte index of the start of the integer
* @param value_return return location of the integer value or #NULL
* @param end_return return location of the end of the integer, or #NULL
* @returns #TRUE on success
*/
dbus_bool_t
_dbus_string_parse_uint (const DBusString *str,
int start,
unsigned long *value_return,
int *end_return)
{
unsigned long v;
const char *p;
char *end;
p = _dbus_string_get_const_data_len (str, start,
_dbus_string_get_length (str) - start);
end = NULL;
_dbus_set_errno_to_zero ();
v = strtoul (p, &end, 0);
if (end == NULL || end == p || errno != 0)
return FALSE;
if (value_return)
*value_return = v;
if (end_return)
*end_return = start + (end - p);
return TRUE;
}
/**
* Parses a dbus_int64_t integer contained in a DBusString. Either return parameter
* may be #NULL if you aren't interested in it. The integer is parsed
* and stored in value_return. Return parameters are not initialized
* if the function returns #FALSE.
*
* @param str the string
* @param start the byte index of the start of the integer
* @param value_return return location of the integer value or #NULL
* @param end_return return location of the end of the integer, or #NULL
* @returns #TRUE on success
*/
dbus_bool_t
_dbus_string_parse_int64 (const DBusString *str,
int start,
dbus_int64_t *value_return,
int *end_return)
{
dbus_int64_t v;
const char *p;
char *end;
p = _dbus_string_get_const_data_len (str, start,
_dbus_string_get_length (str) - start);
end = NULL;
_dbus_set_errno_to_zero ();
v = strtoll (p, &end, 0);
if (end == NULL || end == p || errno != 0)
return FALSE;
if (value_return)
*value_return = v;
if (end_return)
*end_return = start + (end - p);
return TRUE;
}
/** @} */ /* DBusString group */
/**
* @addtogroup DBusInternalsUtils
* @{
*/
/**
* Fills n_bytes of the given buffer with random bytes.
*
* @param buffer an allocated buffer
* @param n_bytes the number of bytes in buffer to write to
* @param error location to store reason for failure
* @returns #TRUE on success
*/
dbus_bool_t
_dbus_generate_random_bytes_buffer (char *buffer,
int n_bytes,
DBusError *error)
{
DBusString str;
if (!_dbus_string_init (&str))
{
_DBUS_SET_OOM (error);
return FALSE;
}
if (!_dbus_generate_random_bytes (&str, n_bytes, error))
{
_dbus_string_free (&str);
return FALSE;
}
_dbus_string_copy_to_buffer (&str, buffer, n_bytes);
_dbus_string_free (&str);
return TRUE;
}
/**
* Generates the given number of random bytes, where the bytes are
* chosen from the alphanumeric ASCII subset.
*
* @param str the string
* @param n_bytes the number of random ASCII bytes to append to string
* @param error location to store reason for failure
* @returns #TRUE on success, #FALSE if no memory or other failure
*/
dbus_bool_t
_dbus_generate_random_ascii (DBusString *str,
int n_bytes,
DBusError *error)
{
static const char letters[] =
"ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz";
int i;
int len;
if (!_dbus_generate_random_bytes (str, n_bytes, error))
return FALSE;
len = _dbus_string_get_length (str);
i = len - n_bytes;
while (i < len)
{
_dbus_string_set_byte (str, i,
letters[_dbus_string_get_byte (str, i) %
(sizeof (letters) - 1)]);
++i;
}
_dbus_assert (_dbus_string_validate_ascii (str, len - n_bytes,
n_bytes));
return TRUE;
}
/**
* Converts a UNIX errno, or Windows errno or WinSock error value into
* a #DBusError name.
*
* @todo should cover more errnos, specifically those
* from open().
*
* @param error_number the errno.
* @returns an error name
*/
const char*
_dbus_error_from_errno (int error_number)
{
switch (error_number)
{
case 0:
return DBUS_ERROR_FAILED;
#ifdef EPROTONOSUPPORT
case EPROTONOSUPPORT:
return DBUS_ERROR_NOT_SUPPORTED;
#elif defined(WSAEPROTONOSUPPORT)
case WSAEPROTONOSUPPORT:
return DBUS_ERROR_NOT_SUPPORTED;
#endif
#ifdef EAFNOSUPPORT
case EAFNOSUPPORT:
return DBUS_ERROR_NOT_SUPPORTED;
#elif defined(WSAEAFNOSUPPORT)
case WSAEAFNOSUPPORT:
return DBUS_ERROR_NOT_SUPPORTED;
#endif
#ifdef ENFILE
case ENFILE:
return DBUS_ERROR_LIMITS_EXCEEDED; /* kernel out of memory */
#endif
#ifdef EMFILE
case EMFILE:
return DBUS_ERROR_LIMITS_EXCEEDED;
#endif
#ifdef EACCES
case EACCES:
return DBUS_ERROR_ACCESS_DENIED;
#endif
#ifdef EPERM
case EPERM:
return DBUS_ERROR_ACCESS_DENIED;
#endif
#ifdef ENOBUFS
case ENOBUFS:
return DBUS_ERROR_NO_MEMORY;
#endif
#ifdef ENOMEM
case ENOMEM:
return DBUS_ERROR_NO_MEMORY;
#endif
#ifdef ECONNREFUSED
case ECONNREFUSED:
return DBUS_ERROR_NO_SERVER;
#elif defined(WSAECONNREFUSED)
case WSAECONNREFUSED:
return DBUS_ERROR_NO_SERVER;
#endif
#ifdef ETIMEDOUT
case ETIMEDOUT:
return DBUS_ERROR_TIMEOUT;
#elif defined(WSAETIMEDOUT)
case WSAETIMEDOUT:
return DBUS_ERROR_TIMEOUT;
#endif
#ifdef ENETUNREACH
case ENETUNREACH:
return DBUS_ERROR_NO_NETWORK;
#elif defined(WSAENETUNREACH)
case WSAENETUNREACH:
return DBUS_ERROR_NO_NETWORK;
#endif
#ifdef EADDRINUSE
case EADDRINUSE:
return DBUS_ERROR_ADDRESS_IN_USE;
#elif defined(WSAEADDRINUSE)
case WSAEADDRINUSE:
return DBUS_ERROR_ADDRESS_IN_USE;
#endif
#ifdef EEXIST
case EEXIST:
return DBUS_ERROR_FILE_EXISTS;
#endif
#ifdef ENOENT
case ENOENT:
return DBUS_ERROR_FILE_NOT_FOUND;
#endif
default:
return DBUS_ERROR_FAILED;
}
}
/**
* Converts the current system errno value into a #DBusError name.
*
* @returns an error name
*/
const char*
_dbus_error_from_system_errno (void)
{
return _dbus_error_from_errno (errno);
}
/**
* Assign 0 to the global errno variable
*/
void
_dbus_set_errno_to_zero (void)
{
#ifdef DBUS_WINCE
SetLastError (0);
#else
errno = 0;
#endif
}
/**
* See if errno is ENOMEM
* @returns #TRUE if e == ENOMEM
*/
dbus_bool_t
_dbus_get_is_errno_enomem (int e)
{
return e == ENOMEM;
}
/**
* See if errno is EINTR
* @returns #TRUE if e == EINTR
*/
dbus_bool_t
_dbus_get_is_errno_eintr (int e)
{
return e == EINTR;
}
/**
* See if errno is EPIPE
* @returns #TRUE if errno == EPIPE
*/
dbus_bool_t
_dbus_get_is_errno_epipe (int e)
{
return e == EPIPE;
}
/**
* See if errno is ETOOMANYREFS
* @returns #TRUE if errno == ETOOMANYREFS
*/
dbus_bool_t
_dbus_get_is_errno_etoomanyrefs (int e)
{
#ifdef ETOOMANYREFS
return e == ETOOMANYREFS;
#else
return FALSE;
#endif
}
/**
* Get error message from errno
* @returns _dbus_strerror(errno)
*/
const char*
_dbus_strerror_from_errno (void)
{
return _dbus_strerror (errno);
}
/**
* Log a message to the system log file (e.g. syslog on Unix) and/or stderr.
*
* @param severity a severity value
* @param msg a printf-style format string
*/
void
_dbus_log (DBusSystemLogSeverity severity,
const char *msg,
...)
{
va_list args;
va_start (args, msg);
_dbus_logv (severity, msg, args);
va_end (args);
}
/*
* Try to convert the IPv4 or IPv6 address pointed to by
* sockaddr_pointer into a string.
*
* @param sockaddr_pointer A struct sockaddr_in or struct sockaddr_in6
* @param len The length of the struct pointed to by sockaddr_pointer
* @param string An array to write the address into
* @param string_len Length of string (should usually be at least INET6_ADDRSTRLEN)
* @param family_name Used to return "ipv4" or "ipv6", or NULL to ignore
* @param port Used to return the port number, or NULL to ignore
* @returns #FALSE with errno set if the address family was not understood
*/
dbus_bool_t
_dbus_inet_sockaddr_to_string (const void *sockaddr_pointer,
size_t len,
char *string,
size_t string_len,
const char **family_name,
dbus_uint16_t *port,
DBusError *error)
{
union
{
struct sockaddr sa;
struct sockaddr_storage storage;
struct sockaddr_in ipv4;
struct sockaddr_in6 ipv6;
} addr;
int saved_errno;
if (len > sizeof (addr))
return FALSE;
_DBUS_ZERO (addr);
memcpy (&addr, sockaddr_pointer, len);
switch (addr.sa.sa_family)
{
case AF_INET:
if (inet_ntop (AF_INET, &addr.ipv4.sin_addr, string, string_len) != NULL)
{
if (family_name != NULL)
*family_name = "ipv4";
if (port != NULL)
*port = ntohs (addr.ipv4.sin_port);
return TRUE;
}
else
{
saved_errno = _dbus_get_low_level_socket_errno ();
dbus_set_error (error, _dbus_error_from_errno (saved_errno),
"Failed to get identity of IPv4 socket: %s",
_dbus_strerror (saved_errno));
}
return FALSE;
#ifdef AF_INET6
case AF_INET6:
if (inet_ntop (AF_INET6, &addr.ipv6.sin6_addr, string, string_len) != NULL)
{
if (family_name != NULL)
*family_name = "ipv6";
if (port != NULL)
*port = ntohs (addr.ipv6.sin6_port);
return TRUE;
}
else
{
saved_errno = _dbus_get_low_level_socket_errno ();
dbus_set_error (error, _dbus_error_from_errno (saved_errno),
"Failed to get identity of IPv6 socket: %s",
_dbus_strerror (saved_errno));
}
return FALSE;
#endif
default:
dbus_set_error (error, DBUS_ERROR_FAILED,
"Failed to get identity of socket: unknown family");
return FALSE;
}
}
/*
* Format an error appropriate for saved_errno for the IPv4 or IPv6
* address pointed to by sockaddr_pointer of length sockaddr_len.
*
* @param error The error to set
* @param sockaddr_pointer A struct sockaddr_in or struct sockaddr_in6
* @param len The length of the struct pointed to by sockaddr_pointer
* @param description A prefix like "Failed to listen on socket"
* @param saved_errno The OS-level error number to use
*/
void
_dbus_set_error_with_inet_sockaddr (DBusError *error,
const void *sockaddr_pointer,
size_t len,
const char *description,
int saved_errno)
{
char string[INET6_ADDRSTRLEN];
dbus_uint16_t port;
const struct sockaddr *addr = sockaddr_pointer;
if (_dbus_inet_sockaddr_to_string (sockaddr_pointer, len,
string, sizeof (string), NULL, &port,
NULL))
{
dbus_set_error (error, _dbus_error_from_errno (saved_errno),
"%s \"%s\" port %u: %s",
description, string, port, _dbus_strerror (saved_errno));
}
else
{
dbus_set_error (error, _dbus_error_from_errno (saved_errno),
"%s <address of unknown family %d>: %s",
description, addr->sa_family,
_dbus_strerror (saved_errno));
}
}
void
_dbus_combine_tcp_errors (DBusList **sources,
const char *summary,
const char *host,
const char *port,
DBusError *dest)
{
DBusString message = _DBUS_STRING_INIT_INVALID;
if (_dbus_list_length_is_one (sources))
{
/* If there was exactly one error, just use it */
dbus_move_error (_dbus_list_get_first (sources), dest);
}
else
{
DBusList *iter;
const char *name = NULL;
/* If there was more than one error, concatenate all the
* errors' diagnostic messages, and use their common error
* name, or DBUS_ERROR_FAILED if more than one name is
* represented */
if (!_dbus_string_init (&message))
{
_DBUS_SET_OOM (dest);
goto out;
}
for (iter = _dbus_list_get_first_link (sources);
iter != NULL;
iter = _dbus_list_get_next_link (sources, iter))
{
DBusError *error = iter->data;
if (name == NULL)
{
/* no error names known yet, try to use this one */
name = error->name;
}
else if (strcmp (name, error->name) != 0)
{
/* errors of two different names exist, reconcile by
* using FAILED */
name = DBUS_ERROR_FAILED;
}
if ((_dbus_string_get_length (&message) > 0 &&
!_dbus_string_append (&message, "; ")) ||
!_dbus_string_append (&message, error->message))
{
_DBUS_SET_OOM (dest);
goto out;
}
}
if (name == NULL)
name = DBUS_ERROR_FAILED;
dbus_set_error (dest, name, "%s to \"%s\":%s (%s)",
summary, host ? host : "*", port ? port : "0",
_dbus_string_get_const_data (&message));
}
out:
_dbus_string_free (&message);
}
/** @} end of sysdeps */
/* tests in dbus-sysdeps-util.c */