Files
RedBear-OS/recipes/tests/unistd/setid.c
T
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

29 lines
747 B
C

/*
* The process joins process group 0.
*/
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include "test_helpers.h"
int main(void) {
int pg_status = setpgid(getpid(), 0);
ERROR_IF(setpgid, pg_status, == -1);
UNEXP_IF(setpgid, pg_status, != 0);
printf("%d belongs to process group %d\n", getpid(), getpgrp());
int reg_status = setregid(-1, -1);
ERROR_IF(setregid, reg_status, == -1);
UNEXP_IF(setregid, reg_status, != 0);
printf("%d has egid %d and gid %d\n", getpid(), getegid(), getgid());
int reu_status = setreuid(-1, -1);
ERROR_IF(setreuid, reu_status, == -1);
UNEXP_IF(setreuid, reu_status, != 0);
printf("%d has euid %d and uid %d\n", getpid(), geteuid(), getuid());
}