// https://syzkaller.appspot.com/bug?id=0a27ee0bd593db7d3e998fbe8b4f22f2112d73ec // 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 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[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; res = syscall(SYS_socket, 0x1cul, 1ul, 0x84); if (res != -1) r[0] = res; *(uint8_t*)0x20000000 = 0x1c; *(uint8_t*)0x20000001 = 0x1c; *(uint16_t*)0x20000002 = htobe16(0x4e22); *(uint32_t*)0x20000004 = 0; memset((void*)0x20000008, 0, 16); *(uint32_t*)0x20000018 = 0; syscall(SYS_bind, r[0], 0x20000000ul, 0x1cul); syscall(SYS_listen, r[0], 5); res = syscall(SYS_socket, 0x1cul, 1ul, 0x84); if (res != -1) r[1] = res; memset((void*)0x20000240, 202, 1); *(uint8_t*)0x20000040 = 0x1c; *(uint8_t*)0x20000041 = 0x1c; *(uint16_t*)0x20000042 = htobe16(0x4e22); *(uint32_t*)0x20000044 = 0; *(uint64_t*)0x20000048 = htobe64(0); *(uint64_t*)0x20000050 = htobe64(1); *(uint32_t*)0x20000058 = 0; syscall(SYS_sendto, r[1], 0x20000240ul, 1ul, 0ul, 0x20000040ul, 0x1cul); *(uint8_t*)0x20000080 = 1; *(uint8_t*)0x20000081 = 9; *(uint8_t*)0x20000082 = 9; *(uint8_t*)0x20000083 = 1; *(uint8_t*)0x20000084 = 0xce; *(uint8_t*)0x20000085 = 8; *(uint8_t*)0x20000086 = 3; *(uint8_t*)0x20000087 = 0x7f; *(uint8_t*)0x20000088 = 0; *(uint8_t*)0x20000089 = 0x75; *(uint8_t*)0x2000008a = 2; syscall(SYS_setsockopt, r[0], 0x84, 0xc, 0x20000080ul, 0xbul); } int main(void) { syscall(SYS_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x1012ul, -1, 0ul); loop(); return 0; }