b9874d0941
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.
54 lines
1.1 KiB
C
54 lines
1.1 KiB
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#include <dirent.h>
|
|
#include <errno.h>
|
|
#include <sys/stat.h>
|
|
|
|
#include "test_helpers.h"
|
|
|
|
#define BUFFER_SIZE 4096
|
|
|
|
#ifndef __GLIBC__
|
|
void read_and_print_directory(int fd) {
|
|
char buffer[BUFFER_SIZE];
|
|
long nread;
|
|
long bpos;
|
|
struct posix_dent *d;
|
|
|
|
for (;;) {
|
|
nread = posix_getdents(fd, buffer, BUFFER_SIZE, 0);
|
|
ERROR_IF(posix_getdents, nread, == -1);
|
|
UNEXP_IF(posix_getdents, nread, < 0);
|
|
|
|
if (nread == 0) {
|
|
break;
|
|
}
|
|
|
|
for (bpos = 0; bpos < nread;) {
|
|
d = (struct posix_dent *) (buffer + bpos);
|
|
printf(" ino = %-10lu name = %s\n", (unsigned long)d->d_ino, d->d_name);
|
|
bpos += d->d_reclen;
|
|
}
|
|
}
|
|
}
|
|
|
|
int main(void) {
|
|
int fd = open("example_dir/", O_RDONLY | O_DIRECTORY);
|
|
ERROR_IF(open, fd, == -1);
|
|
read_and_print_directory(fd);
|
|
|
|
off_t seek_result = lseek(fd, 0, SEEK_SET);
|
|
ERROR_IF(lseek, seek_result, == -1);
|
|
read_and_print_directory(fd);
|
|
|
|
close(fd);
|
|
}
|
|
#else
|
|
|
|
int main(void) {
|
|
// glibc doesn't support posix_getdents & O_DIRECTORY
|
|
}
|
|
#endif
|