// https://syzkaller.appspot.com/bug?id=993b0da2d863e7891c6daeb542e03dd1d37e2d0f // 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 #ifndef SYS_compat_43_ommap #define SYS_compat_43_ommap 71 #endif #ifndef SYS_ioctl #define SYS_ioctl 54 #endif #ifndef SYS_madvise #define SYS_madvise 75 #endif #ifndef SYS_mknod #define SYS_mknod 450 #endif #ifndef SYS_mmap #define SYS_mmap 197 #endif #ifndef SYS_mprotect #define SYS_mprotect 74 #endif #ifndef SYS_open #define SYS_open 5 #endif #ifndef SYS_sendmsg #define SYS_sendmsg 28 #endif #ifndef SYS_sendto #define SYS_sendto 133 #endif #ifndef SYS_setsockopt #define SYS_setsockopt 105 #endif #ifndef SYS_socket #define SYS_socket 394 #endif #ifndef SYS_socketpair #define SYS_socketpair 135 #endif #ifndef SYS_writev #define SYS_writev 121 #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 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); } } 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*)0x20000280, "./file0\000", 8); syscall(SYS_mknod, /*file=*/0x20000280ul, /*mode=S_IFCHR*/ 0x2000ul, /*dev=*/0x200ul); for (int i = 0; i < 32; i++) { syscall(SYS_mknod, /*file=*/0x20000280ul, /*mode=S_IFCHR*/ 0x2000ul, /*dev=*/0x200ul); } res = syscall(SYS_socket, /*domain=PF_APPLETALK*/ 0x10ul, /*type=SOCK_DGRAM*/ 2ul, /*proto=*/0); if (res != -1) r[0] = res; syscall(SYS_mknod, /*file=*/0ul, /*mode=S_IRUSR|S_IFIFO*/ 0x1100ul, /*dev=*/0ul); syscall(SYS_socketpair, /*domain=*/1ul, /*type=SOCK_DGRAM*/ 2ul, /*proto=*/0, /*fds=*/0ul); syscall(SYS_madvise, /*addr=*/0x20000000ul, /*len=*/0x800000ul, /*advice=MADV_FREE*/ 6ul); syscall(SYS_sendto, /*fd=*/-1, /*buf=*/0ul, /*len=*/0ul, /*f=*/0ul, /*addr=*/0ul, /*addrlen=*/0ul); memcpy((void*)0x20000000, "./file0\000", 8); res = syscall(SYS_open, /*file=*/0x20000000ul, /*flags=O_RDWR*/ 2ul, /*mode=*/0ul); if (res != -1) r[1] = res; *(uint64_t*)0x20000340 = 0x20000000; *(uint64_t*)0x20000348 = 0x2cfea; syscall(SYS_writev, /*fd=*/r[1], /*vec=*/0x20000340ul, /*vlen=*/0x1000000000000013ul); for (int i = 0; i < 32; i++) { syscall(SYS_writev, /*fd=*/r[1], /*vec=*/0x20000340ul, /*vlen=*/0x1000000000000013ul); } syscall(SYS_open, /*file=*/0ul, /*flags=*/0ul, /*mode=*/0ul); syscall(SYS_setsockopt, /*fd=*/-1, /*level=*/0, /*optname=*/0, /*optval=*/0ul, /*optlen=*/0ul); *(uint64_t*)0x20000180 = 0x8000000000000032; syscall(SYS_ioctl, /*fd=*/-1, /*cmd=*/0x80206910ul, /*arg=*/0x20000180ul); syscall(SYS_open, /*file=*/0ul, /*flags=*/0ul, /*mode=*/0ul); syscall(SYS_mprotect, /*addr=*/0x20000000ul, /*len=*/0x800000ul, /*prot=PROT_READ|PROT_EXEC*/ 5ul); for (int i = 0; i < 64; i++) { syscall(SYS_mprotect, /*addr=*/0x20000000ul, /*len=*/0x800000ul, /*prot=PROT_READ|PROT_EXEC*/ 5ul); } memcpy((void*)0x20000040, "\x03\x00\x00\x00", 4); syscall(SYS_setsockopt, /*fd=*/-1, /*level=*/0x29, /*optname=*/9, /*optval=*/0x20000040ul, /*optlen=*/4ul); *(uint64_t*)0x200001c0 = 0; *(uint32_t*)0x200001c8 = 0; *(uint64_t*)0x200001d0 = 0; *(uint64_t*)0x200001d8 = 0; *(uint64_t*)0x200001e0 = 0; *(uint64_t*)0x200001e8 = 0; *(uint32_t*)0x200001f0 = 0; syscall(SYS_sendmsg, /*fd=*/r[0], /*msg=*/0x200001c0ul, /*f=MSG_EOR|MSG_DONTROUTE|MSG_OOB*/ 0xdul); syscall(SYS_mmap, /*addr=*/0x20000000ul, /*len=*/0x2000ul, /*prot=*/0ul, /*flags=MAP_FIXED*/ 0x10ul, /*fd=*/-1, /*pad=*/0ul, /*offset=*/0ul); syscall(SYS_compat_43_ommap, /*addr=*/0x20670000ul, /*len=*/0x4000ul, /*prot=PROT_READ|PROT_EXEC*/ 5ul, /*flags=*/0ul, /*fd=*/-1, /*pos=*/0ul); } int main(void) { syscall(SYS_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ*/ 3ul, /*flags=MAP_PRIVATE|MAP_FIXED|MAP_ANON*/ 0x1012ul, /*fd=*/-1, /*pad=*/0ul, /*offset=*/0ul); for (procid = 0; procid < 6; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }