// https://syzkaller.appspot.com/bug?id=bdab52f7dfb55d315f87d0290fd0f2912164bed1 // 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 #include static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; if (__atomic_load_n(&skip_segv, __ATOMIC_RELAXED) && (addr < prog_start || addr > prog_end)) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ { \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ } 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; for (iter = 0;; 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 < 5 * 1000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[3] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { long res = 0; res = syscall(SYS_socketpair, 1, 1, 0, 0x20000300); if (res != -1) NONFAILING(r[0] = *(uint32_t*)0x20000300); NONFAILING(memcpy((void*)0x20000480, "./file0\000", 8)); res = syscall(SYS_open, 0x20000480, 0x80000000000206, 0); if (res != -1) r[1] = res; res = syscall(SYS_dup, r[1]); if (res != -1) r[2] = res; NONFAILING(*(uint64_t*)0x200004c0 = 0x200000c0); NONFAILING(memcpy((void*)0x200000c0, "\x1a\x0d\x3b\x98\x74\x2d\xcf\xb0\x71\x6e\x54\xab\x8a\x52" "\x9c\x8e\x86\x8b\x3e", 19)); NONFAILING(*(uint64_t*)0x200004c8 = 0x13); NONFAILING(*(uint64_t*)0x200004d0 = 0); NONFAILING(*(uint64_t*)0x200004d8 = 0); syscall(SYS_pwritev, r[1], 0x200004c0, 2, 0); syscall(SYS_fcntl, r[2], 4, 0x10044); syscall(SYS_fsync, r[1]); syscall(SYS_read, r[2], 0x20000000, 0x6d999); syscall(SYS_sendfile, r[2], r[0], 0, 0x257f); } int main(void) { syscall(SYS_mmap, 0x20000000, 0x1000000, 3, 0x1012, -1, 0); install_segv_handler(); loop(); return 0; }