// 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; //% 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; } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*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=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; 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 32 00} (length 0x8) // } // flags: mount_flags = 0x404 (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 { // init_itable_val: fs_opt["init_itable", fmt[hex, int32]] { // name: buffer: {69 6e 69 74 5f 69 74 61 62 6c 65} (length // 0xb) eq: const = 0x3d (1 bytes) val: int32 = 0x0 (18 bytes) // } // } // 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 { // debug_want_extra_isize: fs_opt["debug_want_extra_isize", // fmt[hex, int32]] { // name: buffer: {64 65 62 75 67 5f 77 61 6e 74 5f 65 78 74 72 // 61 5f 69 73 69 7a 65} (length 0x16) eq: const = 0x3d (1 // bytes) val: int32 = 0x6a (18 bytes) // } // } // 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 { // minixdf: buffer: {6d 69 6e 69 78 64 66} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // quota: buffer: {71 75 6f 74 61} (length 0x5) // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x3 (1 bytes) // size: len = 0x442 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x442) // } // ] // returns fd_dir memcpy((void*)0x200000000040, "ext4\000", 5); memcpy((void*)0x2000000001c0, "./file2\000", 8); memcpy((void*)0x200000000300, "init_itable", 11); *(uint8_t*)0x20000000030b = 0x3d; sprintf((char*)0x20000000030c, "0x%016llx", (long long)0); *(uint8_t*)0x20000000031e = 0x2c; memcpy((void*)0x20000000031f, "jqfmt=vfsold", 12); *(uint8_t*)0x20000000032b = 0x2c; memcpy((void*)0x20000000032c, "debug_want_extra_isize", 22); *(uint8_t*)0x200000000342 = 0x3d; sprintf((char*)0x200000000343, "0x%016llx", (long long)0x6a); *(uint8_t*)0x200000000355 = 0x2c; memcpy((void*)0x200000000356, "jqfmt=vfsold", 12); *(uint8_t*)0x200000000362 = 0x2c; memcpy((void*)0x200000000363, "minixdf", 7); *(uint8_t*)0x20000000036a = 0x2c; memcpy((void*)0x20000000036b, "quota", 5); *(uint8_t*)0x200000000370 = 0x2c; *(uint8_t*)0x200000000371 = 0; memcpy( (void*)0x200000001180, "\x78\x9c\xec\xdc\xcd\x6f\x1b\x45\x1b\x00\xf0\x67\xed\xa4\x7d\xfb\x99\xbc" "\x55\xf9\x68\x5a\x20\x50\x10\x11\x1f\x49\x93\x96\xd2\x03\x17\x10\x48\x1c" "\x40\x42\x82\x43\x39\x86\x24\xad\x42\xdd\x06\x35\x46\xa2\x55\x04\x01\xa1" "\x72\x44\x95\xb8\x23\x8e\x48\xfc\x05\x9c\xe0\x82\x80\x13\x12\x57\xb8\xa3" "\x4a\x15\xca\xa5\x85\x93\xd1\xda\xde\xc4\x76\xec\x34\x71\x9d\x2c\xd4\xbf" "\x9f\xb4\xed\xcc\xee\x38\x33\x8f\x77\xc7\x9e\xd9\xc9\x26\x80\xbe\x35\x9a" "\xfe\x93\x44\xec\x8f\x88\xdf\x22\x62\xa8\x96\x6d\x2e\x30\x5a\xfb\xef\xf6" "\xca\xd2\xcc\x5f\x2b\x4b\x33\x49\x54\x2a\x6f\xfe\x99\x54\xcb\xdd\x5a\x59" "\x9a\xc9\x8a\x66\xaf\xdb\x97\x65\x06\x22\x0a\x9f\x26\x71\xb4\x4d\xbd\x8b" "\x57\xae\x5e\x98\x2e\x95\xe6\x2e\xd7\xf3\x13\xe5\x8b\xef\x4d\x2c\x5e\xb9" "\xfa\xec\xfc\xc5\xe9\xf3\x73\xe7\xe7\x2e\x4d\x9d\x39\x73\xea\xe4\xe4\xf3" "\xa7\xa7\x9e\xeb\x49\x9c\x69\x5c\xb7\x46\x3e\x5c\x38\x76\xe4\xd5\xb7\xaf" "\xbf\x3e\x73\xf6\xfa\x3b\x3f\x7d\x93\x64\xf1\xb7\xc4\xd1\x23\xa3\x1b\x1d" "\x7c\xa2\x52\xe9\x71\x75\xf9\x3a\xd0\x90\x4e\x06\x72\x6c\x08\x5b\x52\xac" "\x75\xd3\x18\xac\xf6\xff\xa1\x28\xc6\xda\xc9\x1b\x8a\x57\x3e\x69\x28\x5a" "\x3e\x98\x4b\x0b\x81\xed\x52\xa9\x54\x2a\xf7\x77\x3e\xbc\x5c\x01\xee\x61" "\x49\xe4\xdd\x02\x20\x1f\xd9\x17\x7d\x3a\xff\xcd\xb6\x88\x28\xec\xd0\xf0" "\x23\x77\x37\x5f\xac\x4d\x80\xd2\xb8\x6f\xd7\xb7\xda\x91\x81\xd5\x37\x61" "\xb0\x65\x7e\xdb\x4b\xa3\x11\x71\x76\xf9\xef\x2f\xd3\x2d\xb6\xe7\x3e\x04" "\x00\x40\x93\xef\xd2\xf1\xcf\x33\xeb\xc6\x7f\xd5\x21\x60\xe3\x7d\xa1\x83" "\xf5\x35\x94\xe1\x88\xf8\x7f\x44\x1c\x8a\x88\xd3\x11\x71\x38\x22\xee\x8b" "\xa8\x96\x7d\x20\x22\x1e\xdc\x62\xfd\xad\x8b\x24\xeb\xc7\x3f\x85\x1b\x5d" "\x05\xb6\x49\xe9\xf8\xef\x85\xfa\xda\x56\xf3\xf8\x6f\x75\x08\x3c\x5c\xac" "\xe7\x0e\x54\xe3\x1f\x4c\xce\xcd\x97\xe6\x4e\xd4\xdf\x93\xb1\x18\xdc\x9d" "\xe6\x27\x37\xa8\xe3\xfb\x97\x7f\xfd\xbc\xd3\xb1\xc6\xf1\x5f\xba\xa5\xf5" "\x67\x63\xc1\x7a\x3b\x6e\x0c\xec\x6e\x7e\xcd\xec\x74\x79\xfa\x6e\x62\x6e" "\x74\xf3\xe3\x88\x91\x81\x76\xf1\x27\xab\x2b\x01\x49\x44\x1c\x89\x88\x91" "\x2e\xeb\x98\x7f\xea\xeb\x63\x9d\x8e\xdd\x39\xfe\x0d\xf4\x60\x9d\xa9\xf2" "\x55\xc4\x93\xb5\xf3\xbf\x1c\x2d\xf1\x67\x92\x8d\xd7\x27\x27\xfe\x17\xa5" "\xb9\x13\x13\xd9\x55\xb1\xde\xcf\xbf\x5c\x7b\xa3\x53\xfd\x77\x15\x7f\x0f" "\xa4\xe7\x7f\x6f\xdb\xeb\x7f\x35\xfe\xe1\xa4\x71\xbd\x76\x71\xeb\x75\x5c" "\xfb\xfd\xb3\x8e\x73\x9a\x6e\xaf\xff\x5d\xc9\x5b\x4d\xfb\x3e\x98\x2e\x97" "\x2f\x4f\x46\xec\x4a\x5e\xab\x35\xba\x71\xff\x54\x4b\xb9\xa9\xb5\xf2\x69" "\xfc\x63\xc7\xdb\xf7\xff\x43\xb1\xf6\x4e\x1c\x8d\x88\xf4\x22\x7e\x28\x22" "\x1e\x8e\x88\x47\xea\x6d\x7f\x34\x22\x1e\x8b\x88\xe3\x1b\xc4\xff\xe3\x4b" "\x8f\xbf\xdb\x7d\xfc\xdb\x2b\x8d\x7f\x76\x4b\xe7\x7f\x2d\xb1\x2b\x5a\xf7" "\xb4\x4f\x14\x2f\xfc\xf0\x6d\x53\xa5\xc3\x5b\x89\x3f\x3d\xff\xa7\xaa\xa9" "\xb1\xfa\x9e\xcd\x7c\xfe\x6d\xa6\x5d\xdd\x5d\xcd\x00\x00\x00\xf0\xdf\x53" "\x88\x88\xfd\x91\x14\xc6\x57\xd3\x85\xc2\xf8\x78\xed\x77\xf8\x0f\xc7\xde" "\x42\x69\x61\xb1\xfc\xf4\xb9\x85\xf7\x2f\xcd\xd6\x9e\x11\x18\x8e\xc1\x42" "\x76\xa7\x6b\xa8\xe1\x7e\xe8\x64\x7d\x5a\x9f\xe5\xa7\x5a\xf2\x27\xeb\xf7" "\x8d\xbf\x28\xee\xa9\xe6\xc7\x67\x16\x4a\xb3\x79\x07\x0f\x7d\x6e\x5f\x87" "\xfe\x9f\xfa\xa3\x98\x77\xeb\x80\x6d\xe7\x79\x2d\xe8\x5f\xfa\x3f\xf4\x2f" "\xfd\x1f\xfa\x97\xfe\x0f\xfd\xab\x4d\xff\xdf\x93\x47\x3b\x80\x9d\xd7\xee" "\xfb\xff\xa3\x1c\xda\x01\xec\xbc\x96\xfe\x6f\xd9\x0f\xfa\x88\xf9\x3f\xf4" "\xaf\x6e\xfa\x7f\xdf\xfc\x85\x20\xb8\xc7\xf9\xfe\x87\xbe\xb4\xb8\x27\xee" "\xfc\x90\xbc\x84\xc4\xba\x44\x14\xfe\x15\xcd\x90\x48\x13\xd9\x70\xbc\x87" "\x3f\x39\xef\x4f\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\xde" "\xf8\x27\x00\x00\xff\xff\x16\x6b\xe3\xe7", 1090); syz_mount_image(/*fs=*/0x200000000040, /*dir=*/0x2000000001c0, /*flags=MS_NODEV|MS_NOATIME*/ 0x404, /*opts=*/0x200000000300, /*chdir=*/3, /*size=*/0x442, /*img=*/0x200000001180); return 0; }