f31522130f
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
121 lines
2.5 KiB
C
121 lines
2.5 KiB
C
/*
|
|
* Copyright (c) 2023 Ralf Habacker
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "dbus/dbus-resources.h"
|
|
#include "dbus/dbus-test.h"
|
|
#include "dbus/dbus-test-tap.h"
|
|
#include "test/test-utils.h"
|
|
|
|
#include <pthread.h>
|
|
|
|
static dbus_bool_t verbose = FALSE;
|
|
static DBusCounter *counter = NULL;
|
|
|
|
static void* unix_fd_thread1 (void *arg _DBUS_GNUC_UNUSED)
|
|
{
|
|
long i;
|
|
for (i=0; i < 10000; i++)
|
|
{
|
|
long j;
|
|
_dbus_counter_adjust_unix_fd (counter, 1);
|
|
j = _dbus_counter_get_unix_fd_value (counter);
|
|
if (verbose)
|
|
_dbus_test_diag ("write %ld\n", j);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
static void* unix_fd_thread2 (void *arg _DBUS_GNUC_UNUSED)
|
|
{
|
|
long j = 0;
|
|
do
|
|
{
|
|
j = _dbus_counter_get_unix_fd_value (counter);
|
|
if (verbose)
|
|
_dbus_test_diag ("read %ld\n", j);
|
|
} while (j < 10000);
|
|
return NULL;
|
|
}
|
|
|
|
static void* size_value_thread1 (void *arg _DBUS_GNUC_UNUSED)
|
|
{
|
|
long i;
|
|
for (i=0; i < 10000; i++)
|
|
{
|
|
long j;
|
|
_dbus_counter_adjust_size (counter, 1);
|
|
j = _dbus_counter_get_size_value (counter);
|
|
if (verbose)
|
|
_dbus_test_diag ("write %ld\n", j);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
static void* size_value_thread2 (void *arg _DBUS_GNUC_UNUSED)
|
|
{
|
|
long j = 0;
|
|
do
|
|
{
|
|
j = _dbus_counter_get_size_value (counter);
|
|
if (verbose)
|
|
_dbus_test_diag("read %ld\n", j);
|
|
} while (j < 10000);
|
|
return NULL;
|
|
}
|
|
|
|
static dbus_bool_t
|
|
_dbus_counter_unix_fd_test (const char *test_data_dir _DBUS_GNUC_UNUSED)
|
|
{
|
|
pthread_t tid[2];
|
|
dbus_bool_t ret = TRUE;
|
|
counter = _dbus_counter_new ();
|
|
|
|
pthread_create (&(tid[0]), NULL, &unix_fd_thread1, NULL);
|
|
pthread_create (&(tid[1]), NULL, &unix_fd_thread2, NULL);
|
|
|
|
pthread_join (tid[0], NULL);
|
|
pthread_join (tid[1], NULL);
|
|
|
|
_dbus_counter_unref (counter);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static dbus_bool_t
|
|
_dbus_counter_size_value_test (const char *test_data_dir _DBUS_GNUC_UNUSED)
|
|
{
|
|
pthread_t tid[2];
|
|
dbus_bool_t ret = TRUE;
|
|
counter = _dbus_counter_new ();
|
|
|
|
pthread_create (&(tid[0]), NULL, &size_value_thread1, NULL);
|
|
pthread_create (&(tid[1]), NULL, &size_value_thread2, NULL);
|
|
|
|
pthread_join (tid[0], NULL);
|
|
pthread_join (tid[1], NULL);
|
|
|
|
_dbus_counter_unref (counter);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static const DBusTestCase test[] =
|
|
{
|
|
{ "unix_fd", _dbus_counter_unix_fd_test },
|
|
{ "size", _dbus_counter_size_value_test },
|
|
};
|
|
|
|
|
|
int
|
|
main (int argc,
|
|
char **argv)
|
|
{
|
|
return _dbus_test_main (argc, argv, sizeof(test) / sizeof (DBusTestCase), test,
|
|
DBUS_TEST_FLAGS_CHECK_MEMORY_LEAKS,
|
|
NULL, NULL);
|
|
}
|