// https://syzkaller.appspot.com/bug?id=32d088e6c507954a24788b592f0d3c3abdb98121 // 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 #ifndef __NR_dup #define __NR_dup 23 #endif #ifndef __NR_mknodat #define __NR_mknodat 33 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_mount #define __NR_mount 40 #endif #ifndef __NR_openat #define __NR_openat 56 #endif #ifndef __NR_pipe2 #define __NR_pipe2 59 #endif #ifndef __NR_read #define __NR_read 63 #endif #ifndef __NR_socket #define __NR_socket 198 #endif #ifndef __NR_write #define __NR_write 64 #endif 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 bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } 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); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void execute_one(void); #define WAIT_FLAGS __WALL 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); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[5] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // socket$xdp arguments: [ // domain: const = 0x2c (8 bytes) // type: const = 0x3 (8 bytes) // proto: const = 0x0 (4 bytes) // ] // returns sock_xdp res = syscall(__NR_socket, /*domain=*/0x2cul, /*type=*/3ul, /*proto=*/0); if (res != -1) r[0] = res; // mmap$xdp arguments: [ // addr: VMA[0x2000] // len: len = 0x2000 (8 bytes) // prot: mmap_prot = 0x0 (8 bytes) // flags: mmap_flags = 0x11 (8 bytes) // fd: sock_xdp (resource) // offset: xdp_mmap_offsets = 0x0 (8 bytes) // ] syscall(__NR_mmap, /*addr=*/0x20002000ul, /*len=*/0x2000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_SHARED*/ 0x11ul, /*fd=*/r[0], /*offset=*/0ul); // mknodat arguments: [ // dirfd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // mode: mknod_mode = 0x0 (8 bytes) // dev: int32 = 0x0 (4 bytes) // ] memcpy((void*)0x20000040, "./file0\000", 8); syscall(__NR_mknodat, /*dirfd=*/0xffffff9c, /*file=*/0x20000040ul, /*mode=*/0ul, /*dev=*/0); // pipe2$9p arguments: [ // pipefd: ptr[out, pipe_9p] { // pipe_9p { // rfd: rfd9p (resource) // wfd: wfd9p (resource) // } // } // flags: pipe_flags = 0x0 (8 bytes) // ] res = syscall(__NR_pipe2, /*pipefd=*/0x200001c0ul, /*flags=*/0ul); if (res != -1) { r[1] = *(uint32_t*)0x200001c0; r[2] = *(uint32_t*)0x200001c4; } // write$P9_RVERSION arguments: [ // fd: wfd9p (resource) // data: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {15 00 00 00 65 ff ff 01 7f 00 0e 08 00 39 50 32 // 30 30 30} (length 0x13) // } // } // } // size: bytesize = 0x15 (8 bytes) // ] memcpy((void*)0x20000300, "\x15\x00\x00\x00\x65\xff\xff\x01\x7f\x00\x0e\x08\x00\x39\x50\x32\x30" "\x30\x30", 19); syscall(__NR_write, /*fd=*/r[2], /*data=*/0x20000300ul, /*size=*/0x15ul); // dup arguments: [ // oldfd: fd (resource) // ] // returns fd res = syscall(__NR_dup, /*oldfd=*/r[2]); if (res != -1) r[3] = res; // write$FUSE_BMAP arguments: [ // fd: fd_fuse (resource) // arg: ptr[in, fuse_out_t[fuse_unique, fuse_bmap_out]] { // fuse_out_t[fuse_unique, fuse_bmap_out] { // len: len = 0x18 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: fuse_unique (resource) // payload: fuse_bmap_out { // block: int64 = 0x0 (8 bytes) // } // } // } // len: bytesize = 0x18 (8 bytes) // ] *(uint32_t*)0x20000000 = 0x18; *(uint32_t*)0x20000004 = 0; *(uint64_t*)0x20000008 = 0; *(uint64_t*)0x20000010 = 0; syscall(__NR_write, /*fd=*/r[3], /*arg=*/0x20000000ul, /*len=*/0x18ul); // write$FUSE_DIRENTPLUS arguments: [ // fd: fd_fuse (resource) // arg: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {b0} (length 0x1) // } // } // } // len: bytesize = 0xb0 (8 bytes) // ] memset((void*)0x200003c0, 176, 1); syscall(__NR_write, /*fd=*/r[3], /*arg=*/0x200003c0ul, /*len=*/0xb0ul); // write$FUSE_GETXATTR arguments: [ // fd: fd_fuse (resource) // arg: ptr[in, fuse_out_t[fuse_unique, fuse_getxattr_out]] { // fuse_out_t[fuse_unique, fuse_getxattr_out] { // len: len = 0x18 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: fuse_unique (resource) // payload: fuse_getxattr_out { // size: int32 = 0x0 (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // } // len: bytesize = 0x18 (8 bytes) // ] *(uint32_t*)0x200000c0 = 0x18; *(uint32_t*)0x200000c4 = 0; *(uint64_t*)0x200000c8 = 0; *(uint32_t*)0x200000d0 = 0; *(uint32_t*)0x200000d4 = 0; syscall(__NR_write, /*fd=*/r[3], /*arg=*/0x200000c0ul, /*len=*/0x18ul); // write$FUSE_INIT arguments: [ // fd: fd_fuse (resource) // arg: ptr[in, fuse_out_t[fuse_unique, fuse_init_out]] { // fuse_out_t[fuse_unique, fuse_init_out] { // len: len = 0x50 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: fuse_unique (resource) // payload: fuse_init_out { // major: const = 0x7 (4 bytes) // minor: const = 0x2b (4 bytes) // max_readahead: int32 = 0x0 (4 bytes) // flags: fuse_init_flags = 0x0 (4 bytes) // max_background: int16 = 0x0 (2 bytes) // congestion_threshold: int16 = 0x0 (2 bytes) // max_write: int32 = 0x0 (4 bytes) // time_gran: int32 = 0x0 (4 bytes) // max_pages: const = 0x0 (2 bytes) // map_alignment: const = 0x0 (2 bytes) // flags2: fuse_init_flags2 = 0x0 (4 bytes) // max_stack_depth: int32 = 0x0 (4 bytes) // unused: buffer: {00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00} (length 0x18) // } // } // } // len: bytesize = 0x50 (8 bytes) // ] *(uint32_t*)0x20000200 = 0x50; *(uint32_t*)0x20000204 = 0; *(uint64_t*)0x20000208 = 0; *(uint32_t*)0x20000210 = 7; *(uint32_t*)0x20000214 = 0x2b; *(uint32_t*)0x20000218 = 0; *(uint32_t*)0x2000021c = 0; *(uint16_t*)0x20000220 = 0; *(uint16_t*)0x20000222 = 0; *(uint32_t*)0x20000224 = 0; *(uint32_t*)0x20000228 = 0; *(uint16_t*)0x2000022c = 0; *(uint16_t*)0x2000022e = 0; *(uint32_t*)0x20000230 = 0; *(uint32_t*)0x20000234 = 0; memset((void*)0x20000238, 0, 24); syscall(__NR_write, /*fd=*/r[3], /*arg=*/0x20000200ul, /*len=*/0x50ul); // mount$9p_fd arguments: [ // src: const = 0x0 (8 bytes) // dst: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // type: ptr[in, buffer] { // buffer: {39 70 00} (length 0x3) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[in, p9_options_fd] { // p9_options_fd { // trans: buffer: {74 72 61 6e 73 3d 66 64 2c} (length 0x9) // rfdno: fs_opt["rfdno", fmt[hex, rfd9p]] { // name: buffer: {72 66 64 6e 6f} (length 0x5) // eq: const = 0x3d (1 bytes) // val: rfd9p (resource) // } // comma0: const = 0x2c (1 bytes) // wfdno: fs_opt["wfdno", fmt[hex, fd]] { // name: buffer: {77 66 64 6e 6f} (length 0x5) // eq: const = 0x3d (1 bytes) // val: fd (resource) // } // comma1: const = 0x2c (1 bytes) // opts: fs_options[p9_options] { // elems: array[fs_opt_elem[p9_options]] { // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // } // ] memcpy((void*)0x200002c0, "./file0\000", 8); memcpy((void*)0x20000080, "9p\000", 3); memcpy((void*)0x20000100, "trans=fd,", 9); memcpy((void*)0x20000109, "rfdno", 5); *(uint8_t*)0x2000010e = 0x3d; sprintf((char*)0x2000010f, "0x%016llx", (long long)r[1]); *(uint8_t*)0x20000121 = 0x2c; memcpy((void*)0x20000122, "wfdno", 5); *(uint8_t*)0x20000127 = 0x3d; sprintf((char*)0x20000128, "0x%016llx", (long long)r[3]); *(uint8_t*)0x2000013a = 0x2c; *(uint8_t*)0x2000013b = 0; syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x200002c0ul, /*type=*/0x20000080ul, /*flags=*/0ul, /*opts=*/0x20000100ul); // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: open_flags = 0x40800 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x20000180, "./file0\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000180ul, /*flags=O_NONBLOCK|O_NOATIME*/ 0x40800, /*mode=*/0); if (res != -1) r[4] = res; // read$FUSE arguments: [ // fd: fd_fuse (resource) // buf: ptr[out, fuse_in[read_buffer]] { // fuse_in[read_buffer] { // len: len = 0x2020 (4 bytes) // opcode: int32 = 0x0 (4 bytes) // unique: fuse_unique (resource) // uid: uid (resource) // gid: gid (resource) // pid: pid (resource) // padding: int32 = 0x0 (4 bytes) // payload: buffer: (DirOut) // } // } // len: bytesize = 0x2020 (8 bytes) // ] syscall(__NR_read, /*fd=*/r[4], /*buf=*/0x20002ac0ul, /*len=*/0x2020ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }