Files
RedBear-OS/local/recipes/system/dbus/source/test/uid-permissions.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

268 lines
7.2 KiB
C

/* Integration tests for the dbus-daemon's uid-based hardening
*
* Author: Simon McVittie <simon.mcvittie@collabora.co.uk>
* Copyright © 2010-2011 Nokia Corporation
* Copyright © 2015 Collabora Ltd.
* SPDX-License-Identifier: MIT
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation files
* (the "Software"), to deal in the Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include <config.h>
#include "test-utils-glib.h"
#include <gio/gio.h>
typedef struct {
gboolean skip;
TestMainContext *ctx;
DBusError e;
GError *ge;
GPid daemon_pid;
DBusConnection *conn;
} Fixture;
typedef struct {
const char *config_file;
TestUser user;
gboolean expect_success;
} Config;
static void
setup (Fixture *f,
gconstpointer context)
{
const Config *config = context;
gchar *address;
f->ctx = test_main_context_get ();
f->ge = NULL;
dbus_error_init (&f->e);
address = test_get_dbus_daemon (config ? config->config_file : NULL,
TEST_USER_MESSAGEBUS, NULL,
&f->daemon_pid);
if (address == NULL)
{
f->skip = TRUE;
return;
}
f->conn = test_try_connect_to_bus_as_user (f->ctx, address,
config ? config->user : TEST_USER_ME, &f->ge);
if (f->conn == NULL &&
g_error_matches (f->ge, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED))
{
g_test_skip (f->ge->message);
g_clear_error (&f->ge);
f->skip = TRUE;
}
g_assert_no_error (f->ge);
g_free (address);
}
static void
test_uae (Fixture *f,
gconstpointer context)
{
const Config *config = context;
DBusMessage *m = NULL;
DBusMessage *reply = NULL;
DBusMessageIter args_iter;
DBusMessageIter arr_iter;
if (f->skip)
return;
m = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
DBUS_PATH_DBUS, DBUS_INTERFACE_DBUS, "UpdateActivationEnvironment");
if (m == NULL)
g_error ("OOM");
dbus_message_iter_init_append (m, &args_iter);
/* Append an empty a{ss} (string => string dictionary). */
if (!dbus_message_iter_open_container (&args_iter, DBUS_TYPE_ARRAY,
"{ss}", &arr_iter) ||
!dbus_message_iter_close_container (&args_iter, &arr_iter))
g_error ("OOM");
reply = test_main_context_call_and_wait (f->ctx, f->conn, m,
DBUS_TIMEOUT_USE_DEFAULT);
if (config->expect_success)
{
/* it succeeds */
g_assert_cmpint (dbus_message_get_type (reply), ==,
DBUS_MESSAGE_TYPE_METHOD_RETURN);
}
else
{
/* it fails, yielding an error message with one string argument */
g_assert_cmpint (dbus_message_get_type (reply), ==, DBUS_MESSAGE_TYPE_ERROR);
g_assert_cmpstr (dbus_message_get_error_name (reply), ==,
DBUS_ERROR_ACCESS_DENIED);
g_assert_cmpstr (dbus_message_get_signature (reply), ==, "s");
}
dbus_clear_message (&reply);
dbus_clear_message (&m);
}
static void
test_monitor (Fixture *f,
gconstpointer context)
{
const Config *config = context;
DBusMessage *m = NULL;
DBusMessage *reply = NULL;
DBusMessageIter args_iter;
DBusMessageIter arr_iter;
dbus_uint32_t no_flags = 0;
if (f->skip)
return;
m = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
DBUS_PATH_DBUS, DBUS_INTERFACE_MONITORING, "BecomeMonitor");
if (m == NULL)
g_error ("OOM");
dbus_message_iter_init_append (m, &args_iter);
/* Append an empty as (string array). */
if (!dbus_message_iter_open_container (&args_iter, DBUS_TYPE_ARRAY,
"s", &arr_iter) ||
!dbus_message_iter_close_container (&args_iter, &arr_iter) ||
!dbus_message_iter_append_basic (&args_iter,
DBUS_TYPE_UINT32, &no_flags))
g_error ("OOM");
reply = test_main_context_call_and_wait (f->ctx, f->conn, m,
DBUS_TIMEOUT_USE_DEFAULT);
if (config->expect_success)
{
/* it succeeds */
g_assert_cmpint (dbus_message_get_type (reply), ==,
DBUS_MESSAGE_TYPE_METHOD_RETURN);
}
else
{
/* it fails, yielding an error message with one string argument */
g_assert_cmpint (dbus_message_get_type (reply), ==, DBUS_MESSAGE_TYPE_ERROR);
g_assert_cmpstr (dbus_message_get_error_name (reply), ==,
DBUS_ERROR_ACCESS_DENIED);
g_assert_cmpstr (dbus_message_get_signature (reply), ==, "s");
}
dbus_clear_message (&reply);
dbus_clear_message (&m);
}
/*
* Assert that AddServer() can be called by the owner of the bus
* (TEST_USER_MESSAGEBUS) or by root, but cannot be called by other
* users for now.
*/
static void
teardown (Fixture *f,
gconstpointer context G_GNUC_UNUSED)
{
dbus_error_free (&f->e);
g_clear_error (&f->ge);
if (f->conn != NULL)
{
test_connection_shutdown (f->ctx, f->conn);
dbus_connection_close (f->conn);
dbus_connection_unref (f->conn);
f->conn = NULL;
}
if (f->daemon_pid != 0)
{
test_kill_pid (f->daemon_pid);
g_spawn_close_pid (f->daemon_pid);
f->daemon_pid = 0;
}
test_main_context_unref (f->ctx);
}
static Config root_ok_config = {
"valid-config-files/multi-user.conf",
TEST_USER_ROOT,
TRUE
};
static Config messagebus_ok_config = {
"valid-config-files/multi-user.conf",
TEST_USER_MESSAGEBUS,
TRUE
};
static Config other_fail_config = {
"valid-config-files/multi-user.conf",
TEST_USER_OTHER,
FALSE
};
int
main (int argc,
char **argv)
{
int ret;
test_init (&argc, &argv);
/* UpdateActivationEnvironment used to be allowed by dbus-daemon for root
* and messagebus but not for other users (although system.conf forbids it
* for everyone, and it's useless). It is now hard-coded to fail on a
* system bus for everyone, so don't assert that root and messagebus
* may call it; continue to assert that it is denied for unprivileged
* users though. */
g_test_add ("/uid-permissions/uae/other", Fixture, &other_fail_config,
setup, test_uae, teardown);
/* BecomeMonitor has the behaviour that UAE used to have. */
g_test_add ("/uid-permissions/monitor/root", Fixture, &root_ok_config,
setup, test_monitor, teardown);
g_test_add ("/uid-permissions/monitor/messagebus", Fixture, &messagebus_ok_config,
setup, test_monitor, teardown);
g_test_add ("/uid-permissions/monitor/other", Fixture, &other_fail_config,
setup, test_monitor, teardown);
ret = g_test_run ();
dbus_shutdown ();
return ret;
}