// https://syzkaller.appspot.com/bug?id=5f7057792442fc4510748669138bf0a3e85ee100 // 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 #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 use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void __attribute__((noinline)) remove_dir(const char* dir) { DIR* dp = opendir(dir); if (dp == NULL) { if (errno == EACCES) { if (rmdir(dir)) exit(1); return; } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } if (unlink(filename)) { exit(1); } } closedir(dp); while (rmdir(dir)) { exit(1); } } #define CAST static void execute_one(void); #define WAIT_FLAGS 0 static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); 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; } remove_dir(cwdbuf); } } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; memcpy((void*)0x20000040, "./file0\000", 8); ((intptr_t(*)(intptr_t, intptr_t, intptr_t))CAST(open))( /*file=*/0x20000040, /*flags=*/0x70e, /*mode=*/0); ((intptr_t(*)(intptr_t, intptr_t, intptr_t, intptr_t))CAST(socketpair))( /*domain=*/1, /*type=*/5, /*proto=*/0, /*fds=*/0); ((intptr_t(*)(intptr_t, intptr_t))CAST(setregid))(/*rgid=*/0, /*egid=*/0); memcpy((void*)0x20000000, "./file0\000", 8); ((intptr_t(*)(intptr_t, intptr_t, intptr_t, intptr_t))CAST(ktrace))( /*tracefile=*/0x20000000, /*ops=*/4, /*trpoints=*/0x1024, /*pid=*/0); memcpy((void*)0x20000080, "./file0\000", 8); ((intptr_t(*)(intptr_t, intptr_t, intptr_t, intptr_t))CAST(ktrace))( /*tracefile=*/0x20000080, /*ops=*/2, /*trpoints=*/0, /*pid=*/0); res = -1; res = ((intptr_t(*)(intptr_t, intptr_t, intptr_t, intptr_t))CAST(openat))( /*fd=*/0xffffffffffffff9c, /*file=*/0, /*flags=*/0x462, /*mode=*/0); if (res != -1) r[0] = res; ((intptr_t(*)(intptr_t, intptr_t, intptr_t))CAST(ioctl))( /*fd=*/r[0], /*cmd=*/0x8020426c, /*arg=*/0); res = -1; res = ((intptr_t(*)(intptr_t, intptr_t, intptr_t, intptr_t))CAST(openat))( /*fd=*/0xffffffffffffff9c, /*file=*/0, /*flags=*/0x462, /*mode=*/0); if (res != -1) r[1] = res; *(uint32_t*)0x20000100 = 0; *(uint64_t*)0x20000108 = 0; ((intptr_t(*)(intptr_t, intptr_t, intptr_t))CAST(ioctl))( /*fd=*/r[1], /*cmd=*/0x80104277, /*arg=*/0x20000100); ((intptr_t(*)(intptr_t, intptr_t, intptr_t))CAST(write))( /*fd=*/r[1], /*buf=*/0, /*count=*/0); } int main(void) { ((intptr_t(*)(intptr_t, intptr_t, intptr_t, intptr_t, intptr_t, intptr_t))CAST(mmap))(/*addr=*/0x20000000, /*len=*/0x1000000, /*prot=*/3, /*flags=*/0x1012, /*fd=*/-1, /*offset=*/0); for (procid = 0; procid < 8; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }