Files
vasilito b9874d0941 feat: USB storage read/write proof + full Red Bear OS tree sync
Add redbear-usb-storage-check in-guest binary that validates USB mass
storage read and write I/O: discovers /scheme/disk/ devices, writes a
test pattern to sector 2048, reads it back, verifies match, restores
original content. Updates test-usb-storage-qemu.sh with write-proof
verification step.

Includes all accumulated Red Bear OS work: kernel patches, relibc
patches, driver infrastructure, DRM/GPU, KDE recipes, firmware,
validation tooling, build system hardening, and documentation.
2026-05-03 23:03:24 +01:00

54 lines
1.0 KiB
C

#include <assert.h>
#include <signal.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include "test_helpers.h"
void action(int sig, siginfo_t *info, void *context) {
assert (sig == SIGUSR1);
(void)info;
(void)context;
char *msg = "Signal handler\n";
write(1, msg, strlen(msg));
_exit(0);
}
int main(void) {
int status;
struct sigaction act;
act.sa_sigaction = action;
act.sa_flags = SA_RESTART;
sigemptyset(&act.sa_mask);
status = sigaction(SIGUSR1, &act, NULL);
ERROR_IF(sigaction, status, == -1);
int fds[2];
status = pipe(fds);
ERROR_IF(pipe, status, == -1);
int parent = getpid();
status = fork();
ERROR_IF(fork, status, == -1);
if (status == 0) {
for (int i = 0; i < 1000; i++) {
status = kill(parent, SIGUSR1);
ERROR_IF(kill, status, == -1);
}
return 0;
}
char buffer[1];
status = read(fds[0], buffer, 1);
ERROR_IF(read, status, == -1);
return 1;
}