// https://syzkaller.appspot.com/bug?id=5ad1ed3a619ba3c399ed12d966256d040a9bd249 // 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_chdir #define SYS_chdir 12 #endif #ifndef SYS_compat_40_mount #define SYS_compat_40_mount 21 #endif #ifndef SYS_ioctl #define SYS_ioctl 54 #endif #ifndef SYS_mkdir #define SYS_mkdir 136 #endif #ifndef SYS_mmap #define SYS_mmap 197 #endif #ifndef SYS_open #define SYS_open 5 #endif #ifndef SYS_renameat #define SYS_renameat 458 #endif #ifndef SYS_symlink #define SYS_symlink 57 #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; } } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; memcpy((void*)0x20000080, ".\000", 2); memcpy((void*)0x20000240, "./file0\000", 8); syscall(SYS_symlink, /*old=*/0x20000080ul, /*new=*/0x20000240ul); *(uint32_t*)0x20000100 = 1; *(uint32_t*)0x20000104 = 0; *(uint64_t*)0x20000108 = 0; syscall(SYS_ioctl, /*fd=*/0xffffff9c, /*cmd=*/0xc0105766ul, /*arg=*/0x20000100ul); memcpy((void*)0x20000040, "tmpfs\000", 6); memcpy((void*)0x200000c0, "./file0\000", 8); syscall(SYS_compat_40_mount, /*type=*/0x20000040ul, /*path=*/0x200000c0ul, /*flags=*/0ul, /*data=*/0x20000100ul); memcpy((void*)0x20000400, "./file0\000", 8); syscall(SYS_mkdir, /*path=*/0x20000400ul, /*mode=*/0ul); memcpy((void*)0x20000000, "overlay\000", 8); memcpy((void*)0x20000040, ".\000", 2); syscall(SYS___mount50, /*type=*/0x20000000ul, /*path=*/0x20000040ul, /*flags=*/0ul, /*data=*/0x20001080ul, /*len=*/0ul); memcpy((void*)0x20000280, "./file0\000", 8); syscall(SYS_chdir, /*dir=*/0x20000280ul); res = syscall(SYS_open, /*file=*/0ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[0] = res; memcpy((void*)0x20000080, "./file0\000", 8); memcpy((void*)0x20000000, "./file1\000", 8); syscall(SYS_renameat, /*oldfd=*/r[0], /*old=*/0x20000080ul, /*newfd=*/r[0], /*new=*/0x20000000ul); } int main(void) { syscall(SYS_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=*/3ul, /*flags=*/0x1012ul, /*fd=*/-1, /*pad=*/0ul, /*offset=*/0ul); for (procid = 0; procid < 6; procid++) { if (fork() == 0) { loop(); } } sleep(1000000); return 0; }