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

84 lines
1.5 KiB
C

#include <fcntl.h>
#include <stdio.h>
#include <sys/select.h>
#include <unistd.h>
#include "test_helpers.h"
int file_test(void) {
int fd = open("select.c", 0, 0);
if (fd < 0) {
perror("open");
return -1;
}
printf("Testing select on file\n");
fd_set read;
FD_ZERO(&read);
FD_SET(fd, &read);
printf("Is set before? %d\n", FD_ISSET(fd, &read));
int nfds = select(fd + 1, &read, NULL, NULL, NULL);
if (nfds < 0) {
perror("select");
return 1;
}
printf("Amount of things ready: %d\n", nfds);
printf("Is set after? %d\n", FD_ISSET(fd, &read));
close(fd);
return 0;
}
int pipe_test(void) {
int pipefd[2];
if (pipe2(pipefd, O_NONBLOCK) < 0) {
perror("pipe");
return 1;
}
char c = 'c';
if (write(pipefd[1], &c, sizeof(c)) < 0) {
perror("write");
return 1;
}
printf("Testing select on pipe\n");
fd_set read;
FD_ZERO(&read);
FD_SET(pipefd[0], &read);
printf("Is set before? %d\n", FD_ISSET(pipefd[0], &read));
int nfds = select(pipefd[0] + 1, &read, NULL, NULL, NULL);
if (nfds < 0) {
perror("select");
return 1;
}
printf("Amount of things ready: %d\n", nfds);
printf("Is set after? %d\n", FD_ISSET(pipefd[0], &read));
close(pipefd[0]);
close(pipefd[1]);
return 0;
}
int main(void) {
if (file_test()) {
return 1;
}
if (pipe_test()) {
return 1;
}
return 0;
}