// https://syzkaller.appspot.com/bug?id=7f0a5bdbdd9e24a6780456f16719826d6c92b45d // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; 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; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #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 reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } 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); reset_loop(); 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); } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$ext4 arguments: [ // fs: ptr[in, buffer] { // buffer: {65 78 74 34 00} (length 0x5) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x2800700 (8 bytes) // opts: ptr[in, fs_options[ext4_options]] { // fs_options[ext4_options] { // elems: array[fs_opt_elem[ext4_options]] { // fs_opt_elem[ext4_options] { // elem: union ext4_options { // block_validity: buffer: {62 6c 6f 63 6b 5f 76 61 6c 69 64 69 // 74 79} (length 0xe) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // nouser_xattr: buffer: {6e 6f 75 73 65 72 5f 78 61 74 74 72} // (length 0xc) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // nogrpid: buffer: {6e 6f 67 72 70 69 64} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // oldalloc: buffer: {6f 6c 64 61 6c 6c 6f 63} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // grpjquota: buffer: {67 72 70 6a 71 75 6f 74 61 3d} (length // 0xa) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // inode_readahead_blks: fs_opt["inode_readahead_blks", fmt[hex, // flags[ext4_inode_readahead_blks]]] { // name: buffer: {69 6e 6f 64 65 5f 72 65 61 64 61 68 65 61 64 // 5f 62 6c 6b 73} (length 0x14) eq: const = 0x3d (1 bytes) // val: ext4_inode_readahead_blks = 0x8000000 (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // resuid: fs_opt["resuid", fmt[hex, uid]] { // name: buffer: {72 65 73 75 69 64} (length 0x6) // eq: const = 0x3d (1 bytes) // val: uid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // data_err_ignore: buffer: {64 61 74 61 5f 65 72 72 3d 69 67 6e // 6f 72 65} (length 0xf) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // jqfmt_vfsold: buffer: {6a 71 66 6d 74 3d 76 66 73 6f 6c 64} // (length 0xc) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // acl: buffer: {61 63 6c} (length 0x3) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // barrier_val: fs_opt["barrier", fmt[hex, int32]] { // name: buffer: {62 61 72 72 69 65 72} (length 0x7) // eq: const = 0x3d (1 bytes) // val: int32 = 0x7 (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // fs_opt_elem[fs_options_common] { // elem: union fs_options_common { // seclabel: buffer: {73 65 63 6c 61 62 65 6c} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x2 (1 bytes) // size: len = 0x460 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x460) // } // ] // returns fd_dir memcpy((void*)0x200000000300, "ext4\000", 5); memcpy((void*)0x2000000001c0, "./file0\000", 8); memcpy((void*)0x200000000d40, "block_validity", 14); *(uint8_t*)0x200000000d4e = 0x2c; memcpy((void*)0x200000000d4f, "nouser_xattr", 12); *(uint8_t*)0x200000000d5b = 0x2c; memcpy((void*)0x200000000d5c, "nogrpid", 7); *(uint8_t*)0x200000000d63 = 0x2c; memcpy((void*)0x200000000d64, "oldalloc", 8); *(uint8_t*)0x200000000d6c = 0x2c; memcpy((void*)0x200000000d6d, "grpjquota=", 10); *(uint8_t*)0x200000000d77 = 0x2c; memcpy((void*)0x200000000d78, "inode_readahead_blks", 20); *(uint8_t*)0x200000000d8c = 0x3d; sprintf((char*)0x200000000d8d, "0x%016llx", (long long)0x8000000); *(uint8_t*)0x200000000d9f = 0x2c; memcpy((void*)0x200000000da0, "resuid", 6); *(uint8_t*)0x200000000da6 = 0x3d; sprintf((char*)0x200000000da7, "0x%016llx", (long long)0xee01); *(uint8_t*)0x200000000db9 = 0x2c; memcpy((void*)0x200000000dba, "data_err=ignore", 15); *(uint8_t*)0x200000000dc9 = 0x2c; memcpy((void*)0x200000000dca, "jqfmt=vfsold", 12); *(uint8_t*)0x200000000dd6 = 0x2c; memcpy((void*)0x200000000dd7, "acl", 3); *(uint8_t*)0x200000000dda = 0x2c; memcpy((void*)0x200000000ddb, "barrier", 7); *(uint8_t*)0x200000000de2 = 0x3d; sprintf((char*)0x200000000de3, "0x%016llx", (long long)7); *(uint8_t*)0x200000000df5 = 0x2c; memcpy((void*)0x200000000df6, "seclabel", 8); *(uint8_t*)0x200000000dfe = 0x2c; *(uint8_t*)0x200000000dff = 0; memcpy( (void*)0x2000000008c0, "\x78\x9c\xec\xdb\xcf\x6f\x14\x55\x1c\x00\xf0\xef\x4c\x7f\x20\x3f\x5b\x11" "\x7f\x80\xa8\x55\x62\x6c\xfc\xd1\xd2\x82\xca\xc1\x8b\x46\x13\x0f\x18\x4d" "\xf4\x80\xc7\xba\x2d\x84\x50\xa8\xa1\x35\x11\x42\xa4\x1a\x83\x17\x13\x43" "\xa2\x67\xe3\xd1\xc4\xbf\xc0\x9b\x17\xa3\x9e\x4c\xbc\xea\xdd\x90\x10\xed" "\x05\xf4\x54\x33\xb3\x33\x65\x3b\xee\xb6\x14\xb6\xdd\xc2\x7e\x3e\xc9\xb6" "\xef\xed\xbc\x9d\xf7\xbe\x3b\xf3\x66\xde\xcc\x9b\x0d\xa0\x6b\x0d\x65\x7f" "\x92\x88\x1d\x11\xf1\x7b\x44\x0c\xd4\xb3\xcb\x0b\x0c\xd5\xff\x5d\x5f\xb8" "\x50\xfb\x67\xe1\x42\x2d\x89\xc5\xc5\xb7\xff\x4a\xf2\x72\xd7\x16\x2e\xd4" "\xca\xa2\xe5\xe7\xb6\x17\x99\xe1\x34\x22\xfd\x34\x29\x2a\x59\x6e\xf6\xdc" "\xf9\x53\x13\xd3\xd3\x53\x67\x8b\xfc\xe8\xdc\xe9\xf7\x47\x67\xcf\x9d\x7f" "\xee\xe4\xe9\x89\x13\x53\x27\xa6\xce\x8c\x1f\x39\x72\xf8\xd0\xd8\x8b\x2f" "\x8c\x3f\xdf\x96\x38\xb3\xb8\xae\xed\xfb\x68\x66\xff\xde\xd7\xdf\xbd\xfc" "\x46\xed\xd8\xe5\xf7\x7e\xfe\x2e\x6b\xef\x8e\x62\xf9\xb5\x85\xbe\x5a\x5b" "\x2a\x6a\x30\x94\x05\xfe\xf7\x62\xae\xba\xec\xc9\x76\x57\xd6\x61\x3b\x1b" "\xd2\x49\x6f\x07\x1b\xc2\x9a\xf4\x44\x44\xb6\xb9\xfa\xf2\xfe\x3f\x10\x3d" "\x71\x63\xe3\x0d\xc4\x6b\x9f\x74\xb4\x71\xc0\xba\xca\xce\x4d\x5b\x5a\x2f" "\x9e\x5f\x04\xee\x62\x49\x74\xba\x05\x40\x67\x94\x27\xfa\xec\x3a\xbe\x7c" "\x6d\xd0\xd0\x63\x53\xb8\xfa\x72\xfd\x02\x28\x8b\xfb\x7a\xf1\xaa\x2f\xe9" "\x8d\xb4\x28\xd3\x57\xb9\xbe\x6d\xa7\xa1\x88\x38\x36\xff\xef\xd7\xd9\x2b" "\x2a\xf7\x53\x00\x00\xd6\xc3\xe7\xb5\xaf\x8e\xc6\xb3\xcd\xc6\x7f\x69\x3c" "\xd0\x50\x6e\x57\x31\x87\x32\x18\x11\xf7\x46\xc4\xee\x88\xb8\x2f\x22\xf6" "\x44\xc4\xfd\x11\x79\xd9\x07\x23\xe2\xa1\x35\xd6\x5f\x9d\x1a\xfa\xff\xf8" "\x27\xbd\x72\x4b\x81\xdd\xa4\x6c\xfc\xf7\x52\x31\xb7\xb5\x7c\xfc\x57\x8e" "\xfe\x62\xb0\xa7\xc8\xed\xcc\xe3\xef\x4b\x8e\x9f\x9c\x9e\x3a\x58\x7c\x27" "\xc3\xd1\xb7\x25\xcb\x8f\xad\x50\xc7\x0f\xaf\xfe\xf6\x45\xab\x65\x8d\xe3" "\xbf\xec\x95\xd5\x5f\x8e\x05\x8b\x76\x5c\xe9\xad\xdc\xa0\x9b\x9c\x98\x9b" "\xc8\x07\xa5\x6d\x70\xf5\xe3\x88\x7d\xbd\xcd\xe2\x4f\x96\x66\x02\x92\x88" "\xd8\x1b\x11\xfb\xd6\xb6\xea\x5d\x65\xe2\xe4\xd3\xdf\xee\x6f\x55\x68\xf5" "\xf8\x57\xd0\x86\x79\xa6\xc5\x6f\x22\x9e\xaa\x6f\xff\xf9\xa8\xc4\x5f\x4a" "\x56\x9e\x9f\x1c\xbd\x27\xa6\xa7\x0e\x8e\x96\x7b\x45\x83\xc1\xfa\xbf\x5f" "\x7e\xbd\xf4\x56\xab\xfa\x6f\x2b\xfe\x36\xc8\xb6\xff\xb6\xe5\xfb\x7f\xb5" "\xc8\x60\xd2\x38\x5f\x3b\xbb\xfa\x3a\xd3\x4a\xfe\xd2\x1f\x9f\xb5\xbc\xa6" "\xb9\xd5\xfd\xbf\x3f\x79\x27\x3f\x1e\xf5\x17\xef\x7d\x38\x31\x37\x77\x76" "\x2c\xa2\x3f\x39\x9a\xe7\x97\xbd\x3f\x7e\xe3\xb3\x65\xbe\x2c\x9f\xc5\x3f" "\x7c\xa0\x79\xff\xdf\x5d\x7c\x26\x8b\xff\xe1\x88\xc8\x76\xe2\x47\x22\xe2" "\xd1\x88\x78\xac\x68\xfb\xe3\x11\xf1\x44\x44\x1c\x58\xe1\xfb\xf8\xe9\x95" "\xd6\xcb\x36\xc3\xf6\x9f\x6c\x7a\xfc\x5b\xda\xff\x2b\xdb\x7f\xed\x89\x9e" "\x53\x3f\x7e\xdf\xaa\xfe\xa5\xf8\x7b\x63\x85\xed\x7f\x38\x4f\x0d\x17\xef" "\xe4\xc7\xbf\x55\xdc\x6c\x03\x6f\xe7\xbb\x03\x00\x00\x80\x3b\x45\x9a\x3f" "\x03\x9f\xa4\x23\x4b\xe9\x34\x1d\x19\xa9\x3f\xc3\xbf\x27\xb6\xa5\xd3\x33" "\xb3\x73\xcf\x1c\x9f\xf9\xe0\xcc\x64\xfd\x59\xf9\xc1\xe8\x4b\xcb\x3b\x5d" "\x03\x0d\xf7\x43\xc7\x92\xf9\x62\x8d\xf5\xfc\x78\x71\xfb\xab\x5c\x7e\xa8" "\xb8\x6f\xfc\x65\xcf\xd6\x3c\x3f\x52\x9b\x99\x9e\xec\x70\xec\xd0\xed\xb6" "\xb7\xe8\xff\x99\x3f\x7b\x3a\xdd\x3a\x60\xdd\x35\x9b\x47\x1b\xef\xef\x40" "\x43\x80\x0d\x57\xed\xff\x95\x09\xdc\x8b\x6f\x6e\x64\x63\x80\x0d\xe5\xf7" "\xda\xd0\xbd\x56\xe9\xff\xd5\xe7\xb9\x80\xbb\x88\xf3\x3f\x74\xaf\x66\xfd" "\xff\x62\x25\x6f\x2e\x00\xee\x4e\xce\xff\xd0\xbd\xf4\x7f\xe8\x5e\xfa\x3f" "\x74\x2f\xfd\x1f\xba\xd2\xed\xfc\xae\xff\x8e\x4c\x94\xc7\xba\xcd\xd2\x9e" "\x3b\x36\x11\xe9\xa6\x68\x46\xd7\x27\xb6\xc6\xfa\xac\xb9\xc3\x07\x26\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x36\xf9\x2f\x00\x00\xff\xff" "\x48\xc1\xe8\xb5", 1120); syz_mount_image(/*fs=*/0x200000000300, /*dir=*/0x2000000001c0, /*flags=MS_LAZYTIME|MS_I_VERSION|MS_NOATIME|0x300*/ 0x2800700, /*opts=*/0x200000000d40, /*chdir=*/2, /*size=*/0x460, /*img=*/0x2000000008c0); // mount$incfs arguments: [ // src: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // dst: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // type: ptr[in, buffer] { // buffer: {69 6e 63 72 65 6d 65 6e 74 61 6c 2d 66 73 00} (length 0xf) // } // flags: mount_flags = 0x404 (8 bytes) // opts: nil // ] memcpy((void*)0x200000000000, "./file0\000", 8); memcpy((void*)0x200000000140, "./file0\000", 8); memcpy((void*)0x200000000280, "incremental-fs\000", 15); syscall(__NR_mount, /*src=*/0x200000000000ul, /*dst=*/0x200000000140ul, /*type=*/0x200000000280ul, /*flags=MS_NODEV|MS_NOATIME*/ 0x404ul, /*opts=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000, /*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=*/0x200001000000ul, /*len=*/0x1000, /*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; }