#include "../test.h"
#include <errno.h>
#include <sched.h>
#include <sys/types.h>
#include <sys/wait.h>
#ifdef __linux__
# include <linux/version.h>
#endif
#if __PPC64__ && RHEL_MAJOR == 7 && RHEL_MINOR == 9
# define PPC64_RHEL7_9 1
#endif
#ifndef PPC64_RHEL7_9
static int cloned(void *arg) {
if (unshare(CLONE_NEWUSER) && errno == EINVAL) {
fprintf(stderr, "unshare failed: %d\n", errno);
exit(1);
}
exit(0);
return 0;
}
#endif
int main() {
#ifndef PPC64_RHEL7_9
char stack[64 << 10] __attribute__((aligned(64)));
int pid = clone(cloned, stack + sizeof(stack), SIGCHLD, 0);
if (pid == -1) {
fprintf(stderr, "failed to clone: %d\n", errno);
exit(1);
}
int status = 0;
while (wait(&status) != pid) {
}
if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
fprintf(stderr, "child failed: %d\n", status);
exit(1);
}
#endif
fprintf(stderr, "DONE\n");
}