Files
RedBear-OS/local/recipes/system/dbus/source/test/manual-dir-iter.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

99 lines
2.0 KiB
C

/*
* Copyright 2014 Ralf Habacker
* SPDX-License-Identifier: MIT
*/
#include <config.h>
#include "test-utils.h"
#include "dbus/dbus-macros.h"
#include "dbus/dbus-sysdeps.h"
static void oom (const char *doing) _DBUS_GNUC_NORETURN;
static void die (const char *message) _DBUS_GNUC_NORETURN;
void
oom (const char *doing)
{
fprintf (stderr, "*** manual-dir-iter: OOM while %s\n", doing);
exit (1);
}
void
die (const char *message)
{
fprintf (stderr, "*** manual-dir-iter: %s\n", message);
exit (1);
}
static void
debug (const char *message)
{
fprintf (stdout, "+++ manual-dir-iter: %s\n", message);
}
int
main (int argc,
char **argv)
{
DBusString filename;
DBusString dirname;
DBusError tmp_error;
DBusDirIter *dir;
if (argc != 2)
die ("syntax: manual-dir-iter <path>");
dbus_error_init (&tmp_error);
if (!_dbus_string_init (&filename))
oom ("init filename");
if (!_dbus_string_init (&dirname))
oom ("init dirname");
if (!_dbus_string_append (&dirname, argv[1]))
oom ("append argv[1]");
dir = _dbus_directory_open (&dirname, &tmp_error);
if (dir == NULL)
{
fprintf (stderr, "could not open directory: %s: %s\n",
tmp_error.name, tmp_error.message);
exit(1);
}
while (_dbus_directory_get_next_file (dir, &filename, &tmp_error))
{
DBusString full_path;
if (!_dbus_string_init (&full_path))
{
oom ("init full_path");
}
if (!_dbus_string_copy (&dirname, 0, &full_path, 0))
{
oom ("copying full_path to dirname");
}
if (!_dbus_concat_dir_and_file (&full_path, &filename))
{
oom ("concat full_path");
}
debug (_dbus_string_get_const_data (&filename));
_dbus_string_free (&full_path);
}
if (dbus_error_is_set (&tmp_error))
die (tmp_error.message);
_dbus_string_free (&filename);
if (dir)
_dbus_directory_close (dir);
_dbus_verbose ("*** Test dir name exiting\n");
return 0;
}