// https://syzkaller.appspot.com/bug?id=09927d90ed51b9cbb2c33f315af99c8959978025 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef SYS___mount50 #define SYS___mount50 410 #endif #ifndef SYS_mknod #define SYS_mknod 450 #endif #ifndef SYS_mmap #define SYS_mmap 197 #endif #ifndef SYS_open #define SYS_open 5 #endif #ifndef SYS_unmount #define SYS_unmount 22 #endif static unsigned long long procid; static void kill_and_wait(int pid, int* status) { kill(pid, SIGKILL); while (waitpid(-1, status, 0) != pid) { } } static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void execute_one(void); #define WAIT_FLAGS 0 static void loop(void) { int iter = 0; for (;; iter++) { int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } void execute_one(void) { memcpy((void*)0x20000000, "overlay\000", 8); memcpy((void*)0x20000040, ".\000", 2); syscall(SYS___mount50, 0x20000000ul, 0x20000040ul, 0ul, 0x20001080ul, 0ul); memcpy((void*)0x20000200, "./file0\000", 8); syscall(SYS_mknod, 0x20000200ul, 0x2000ul, 0ul); memcpy((void*)0x200001c0, "./file0\000", 8); syscall(SYS_open, 0x200001c0ul, 0x70eul, 0ul); memcpy((void*)0x20000080, ".\000", 2); syscall(SYS_unmount, 0x20000080ul, 0x6879dec5e48d165bul); } int main(void) { syscall(SYS_mmap, 0x20000000ul, 0x1000000ul, 3ul, 0x1012ul, -1, 0ul, 0ul); for (procid = 0; procid < 6; procid++) { if (fork() == 0) { loop(); } } sleep(1000000); return 0; }