// https://syzkaller.appspot.com/bug?id=52f49945e11c819a517e82efb26459856b2daee8 // 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 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; } } } uint64_t r[5] = {0xffffffffffffffff, 0xffffffffffffffff, 0x0, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; memcpy((void*)0x20000200, "/dev/filemon\000", 13); res = syscall(SYS_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x20000200ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[0] = res; res = syscall(SYS_socket, /*domain=*/2ul, /*type=*/5ul, /*proto=*/0x84); if (res != -1) r[1] = res; syscall(SYS_setsockopt, /*fd=*/r[1], /*level=*/0x84, /*opt=*/0x21, /*val=*/0ul, /*len=*/0ul); res = syscall(SYS_setsid); if (res != -1) r[2] = res; *(uint32_t*)0x20000040 = r[2]; syscall(SYS_ioctl, /*fd=*/r[0], /*cmd=*/0xc0045302ul, /*arg=*/0x20000040ul); memcpy((void*)0x20000200, "/dev/filemon\000", 13); res = syscall(SYS_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x20000200ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[3] = res; res = syscall(SYS_socket, /*domain=*/2ul, /*type=*/5ul, /*proto=*/0x84); if (res != -1) r[4] = res; *(uint16_t*)0x20000000 = 0; *(uint16_t*)0x20000002 = 0x1200; *(uint32_t*)0x20000004 = 0; *(uint32_t*)0x20000008 = 0; *(uint32_t*)0x2000000c = 0; syscall(SYS_setsockopt, /*fd=*/r[4], /*level=*/0x84, /*opt=*/0x21, /*val=*/0x20000000ul, /*len=*/0x10ul); *(uint32_t*)0x20000180 = r[4]; syscall(SYS_ioctl, /*fd=*/r[3], /*cmd=*/0xc0045301ul, /*arg=*/0x20000180ul); syscall(SYS_setsid); syscall(SYS_ioctl, /*fd=*/r[3], /*cmd=*/0xc0045302ul, /*arg=*/0ul); memcpy((void*)0x20000200, "/dev/filemon\000", 13); syscall(SYS_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x20000200ul, /*flags=*/0ul, /*mode=*/0ul); } int main(void) { syscall(SYS_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=*/7ul, /*flags=*/0x1012ul, /*fd=*/-1, /*offset=*/0ul); for (procid = 0; procid < 4; procid++) { if (fork() == 0) { loop(); } } sleep(1000000); return 0; }