// https://syzkaller.appspot.com/bug?id=99e8a87bf3ba165db441a63bcc04e743202e81b7 // 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; 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; } } } #ifndef SYS_connect #define SYS_connect 98 #endif #ifndef SYS_getgid #define SYS_getgid 47 #endif #ifndef SYS_getgroups #define SYS_getgroups 79 #endif #ifndef SYS_getsockopt #define SYS_getsockopt 118 #endif #ifndef SYS_lstat #define SYS_lstat 441 #endif #ifndef SYS_mmap #define SYS_mmap 197 #endif #ifndef SYS_sendmsg #define SYS_sendmsg 28 #endif #ifndef SYS_socket #define SYS_socket 394 #endif uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; syscall(SYS_lstat, 0ul, 0ul); res = syscall(SYS_socket, 0x18ul, 1ul, 0); if (res != -1) r[0] = res; syscall(SYS_connect, r[0], 0ul, 0ul); syscall(SYS_getgid); *(uint32_t*)0x20000200 = 0; syscall(SYS_getsockopt, -1, 0xffff, 0x11, 0ul, 0x20000200ul); *(uint32_t*)0x20000240 = -1; *(uint32_t*)0x20000244 = 0; *(uint32_t*)0x20000248 = 0; *(uint32_t*)0x2000024c = -1; *(uint32_t*)0x20000250 = -1; syscall(SYS_getgroups, 5ul, 0x20000240ul); res = syscall(SYS_socket, 0x18ul, 1ul, 0); if (res != -1) r[1] = res; syscall(SYS_sendmsg, r[1], 0ul, 0ul); } 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; }