Files
RedBear-OS/local/recipes/system/seatd/source/libseat/backend/noop.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

137 lines
3.0 KiB
C

#include <assert.h>
#include <errno.h>
#include <fcntl.h>
#include <poll.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <unistd.h>
#include "backend.h"
#include "log.h"
struct backend_noop {
struct libseat base;
const struct libseat_seat_listener *seat_listener;
void *seat_listener_data;
bool initial_setup;
int sockets[2];
};
extern const struct seat_impl noop_impl;
static struct backend_noop *backend_noop_from_libseat_backend(struct libseat *base) {
assert(base->impl == &noop_impl);
return (struct backend_noop *)base;
}
static void destroy(struct backend_noop *backend) {
close(backend->sockets[0]);
close(backend->sockets[1]);
free(backend);
}
static int close_seat(struct libseat *base) {
struct backend_noop *backend = backend_noop_from_libseat_backend(base);
destroy(backend);
return 0;
}
static int disable_seat(struct libseat *base) {
(void)base;
return 0;
}
static const char *seat_name(struct libseat *base) {
(void)base;
return "seat0";
}
static int open_device(struct libseat *base, const char *path, int *fd) {
(void)base;
int tmpfd = open(path, O_RDWR | O_NOCTTY | O_NOFOLLOW | O_CLOEXEC | O_NONBLOCK);
if (tmpfd < 0) {
log_errorf("Failed to open device: %s", strerror(errno));
return -1;
}
*fd = tmpfd;
return tmpfd;
}
static int close_device(struct libseat *base, int device_id) {
(void)base;
(void)device_id;
return 0;
}
static int switch_session(struct libseat *base, int s) {
(void)base;
(void)s;
log_errorf("No-op backend cannot switch to session %d", s);
return -1;
}
static int get_fd(struct libseat *base) {
struct backend_noop *backend = backend_noop_from_libseat_backend(base);
return backend->sockets[0];
}
static int dispatch_background(struct libseat *base, int timeout) {
struct backend_noop *backend = backend_noop_from_libseat_backend(base);
if (backend->initial_setup) {
backend->initial_setup = false;
backend->seat_listener->enable_seat(&backend->base, backend->seat_listener_data);
}
struct pollfd fd = {
.fd = backend->sockets[0],
.events = POLLIN,
};
if (poll(&fd, 1, timeout) < 0) {
if (errno == EAGAIN || errno == EINTR) {
return 0;
} else {
return -1;
}
}
return 0;
}
static struct libseat *noop_open_seat(const struct libseat_seat_listener *listener, void *data) {
struct backend_noop *backend = calloc(1, sizeof(struct backend_noop));
if (backend == NULL) {
return NULL;
}
if (socketpair(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0, backend->sockets) != 0) {
log_errorf("socketpair() failed: %s", strerror(errno));
free(backend);
return NULL;
}
backend->initial_setup = true;
backend->seat_listener = listener;
backend->seat_listener_data = data;
backend->base.impl = &noop_impl;
return &backend->base;
}
const struct seat_impl noop_impl = {
.open_seat = noop_open_seat,
.disable_seat = disable_seat,
.close_seat = close_seat,
.seat_name = seat_name,
.open_device = open_device,
.close_device = close_device,
.switch_session = switch_session,
.get_fd = get_fd,
.dispatch = dispatch_background,
};