// https://syzkaller.appspot.com/bug?id=698a3ea05055bfb20e5b18fe615c30283f100d3f // 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 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #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"); } 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=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=*/7ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); memcpy((void*)0x20000040, "hfsplus\000", 8); memcpy((void*)0x20000240, "\023\023w\305\3745\324\024T\325\324\035)\255\032`)" "Y\201F\346\276\026nA\255\r\275@T\003<\2373\273\332\202$" "\242\363\327r\347cnH\263<\277p\203r\350\361\271\223>" "\305\022wC\276\"\006 \236\360-\371\313\362\366\350\200\3238/\000", 78); memcpy((void*)0x200003c0, "nobarrier", 9); *(uint8_t*)0x200003c9 = 0x2c; memcpy((void*)0x200003ca, "nobarrier", 9); *(uint8_t*)0x200003d3 = 0x2c; memcpy((void*)0x200003d4, "umask", 5); *(uint8_t*)0x200003d9 = 0x3d; sprintf((char*)0x200003da, "%023llo", (long long)0x7e); *(uint8_t*)0x200003f1 = 0x2c; memcpy((void*)0x200003f2, "nls", 3); *(uint8_t*)0x200003f5 = 0x3d; memcpy((void*)0x200003f6, "iso8859-2", 9); *(uint8_t*)0x200003ff = 0x2c; memcpy((void*)0x20000400, "gid", 3); *(uint8_t*)0x20000403 = 0x3d; sprintf((char*)0x20000404, "0x%016llx", (long long)0); *(uint8_t*)0x20000416 = 0x2c; memcpy((void*)0x20000417, "smackfsfloor", 12); *(uint8_t*)0x20000423 = 0x3d; memcpy((void*)0x20000424, "hfs\006\000\000\000-\vR " "v\375\321\037\331\366\200\2549\2779F\n:m};" "U\202\022\202\226z6\207\233\233\333\217\327#\021\365\030\372?" "\315\263\360Bl>\253\337<" "4\256I60\310\211\250\253\330\304\204X\017\307\216d\026\016\254\234}" "\257\3168\365\252\251\2447\366q\350\321\310\301\354\314l3\362\000", 98); *(uint8_t*)0x20000486 = 0x2c; memcpy((void*)0x20000487, "fscontext", 9); *(uint8_t*)0x20000490 = 0x3d; memcpy((void*)0x20000491, "root", 4); *(uint8_t*)0x20000495 = 0x2c; *(uint8_t*)0x20000496 = 0; memcpy( (void*)0x200010c0, "\x78\x9c\xec\xdd\x4d\x68\x1c\xe7\x1d\x07\xe0\xdf\xac\x56\x2b\xc9\x05\x47" "\x4e\xfc\xd5\x12\x88\x88\x21\x2d\x35\xb5\x25\x0b\xa7\x75\x2f\x75\x4b\x29" "\x3a\x84\x12\xd2\x43\xcf\xc2\x96\x63\xe1\xb5\x1d\x64\xa5\x28\xa1\x34\x4a" "\x3f\xee\x3d\xe4\xd4\x53\x7a\xd0\x2d\xa7\x92\xde\x0d\xe9\xb9\xb9\x94\x5c" "\x75\x0c\x14\x0c\x25\x27\xdf\x5c\x66\x76\x76\xb5\xb2\x56\xbb\x92\x3f\x24" "\x25\x79\x1e\x33\x3b\xef\xcc\xfb\x31\xef\xfc\x67\x67\x5e\xcd\x2c\x66\x02" "\x7c\x6b\x2d\x9c\x4f\xf3\x7e\x8a\x2c\x9c\x7f\x63\xad\x5c\xde\xdc\x98\x6f" "\x6f\x6e\xcc\x4f\xd4\xd9\xed\x24\xad\x24\x8d\xa4\xd9\x99\xa5\xb8\x93\x14" "\x9f\x25\x57\xd3\x99\xf2\xdd\x72\x65\x5d\xbe\xd8\x6d\x3b\x1f\x2d\x5f\x79" "\xeb\x8b\xaf\x36\xbf\xec\x2c\x35\xeb\xa9\x2a\xdf\x18\x56\x6f\x80\xd6\xce" "\x55\xeb\xf5\x94\x99\x24\x63\xbb\xb6\x37\xbe\x4b\x8b\x9f\x3e\x5e\x7c\x5b" "\x7b\xd7\xea\xf9\x68\x1b\x0f\x06\xaf\x2f\x7a\x3d\x2a\x03\x76\xae\x1b\xb8" "\xfc\x6d\x4f\xad\xc2\x73\xf3\x68\x87\xf5\x5e\xde\x27\xff\x19\x59\x7d\x3f" "\xe7\x2d\x70\x44\x15\x9d\x71\x73\x87\xe9\xe4\x58\x92\xc9\x24\xd5\xdf\x04" "\xeb\x9d\x51\xb4\x71\xe0\x1d\x7c\xc6\xd6\x0f\xbb\x03\x00\x00\x00\xb0\x5f" "\x53\xfb\xaf\xf2\xc2\xc3\x3c\xcc\x5a\x8e\x3f\x8f\xee\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xc0\x37\x55\xfd\xfe\xff\xa2\x5e\x6c\xd4\x53\x31\x93\xa2" "\xfb\xfe\xff\x56\x5f\x7e\xeb\x10\xbb\xfa\xa4\x16\xfa\x17\xee\x1f\x5e\x3f" "\x00\x00\x00\x00\x00\x00\x00\xe0\x99\x79\xe5\x61\x1e\x66\x2d\xc7\xbb\xcb" "\x8f\x8a\xea\xf7\xfe\x57\xfb\x7e\xe3\xff\x4e\xde\xcd\xbd\x2c\x65\x25\x17" "\xb2\x96\xc5\xac\x66\x35\x2b\x99\x4b\x32\xdd\xd7\x50\x6b\x6d\x71\x75\x75" "\x65\xae\xaa\x99\x9c\x1c\x52\xf3\x52\x3e\x1f\x50\xf3\xd2\xee\x7d\xbc\xfa" "\x8c\xf7\x19\x00\x00\x00\x00\x00\x00\x00\x8e\xb8\xc9\x11\xf9\xb7\xc6\x77" "\xae\xfb\x63\x16\xb6\x7e\xff\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xa3\xa0\x48\xc6\x3a\xb3\x6a\x3a\xd9\x4d\x4f\xa7\xd1\x4c\x32\x99\xa4" "\x55\x96\x5b\x4f\x3e\xef\xa6\xbf\x26\x8a\x41\x2b\xef\x1f\x7c\x3f\x00\x00" "\x00\xe0\xa9\x4c\x8e\x58\x1e\xe4\x85\x0f\xf2\x30\x6b\x39\xde\x5d\x7e\x54" "\x54\xf7\xfc\xa7\xab\xfb\xe5\xc9\xbc\x9b\x3b\x59\xcd\x72\x56\xd3\xce\x52" "\xae\xd7\xf7\xd0\xe5\x5d\x7f\x63\x73\x63\xbe\xbd\xb9\x31\x7f\xbb\x9c\x76" "\xb6\xfb\xf3\x07\xfb\xea\x7a\xd5\x62\x3a\xcf\x1e\x06\x6f\xf9\x6c\x55\x62" "\x2a\x37\xb2\x5c\xad\xb9\x90\x6b\xb9\x9b\x76\xae\xa7\x51\xd5\x2c\x9d\xdd" "\xdc\x98\x2f\xe7\xb7\x07\xf7\xeb\xc3\xb2\x4f\xc5\xcf\x6a\x43\x7a\x33\xd6" "\x97\xbe\x5e\x7e\x9c\xf9\xb4\x4a\xff\x75\xfb\x53\x84\xe6\xbe\x76\xf1\x09" "\x35\x76\xcd\x99\xae\x72\xc7\x7b\x11\x99\xad\xfb\x56\xd6\x38\xd1\x8d\xc0" "\xe0\x48\x8c\x3c\x3a\xcd\xa1\x5b\x9a\x4b\xa3\xf7\xe4\xe7\xe4\xf0\x2d\x0d" "\x8e\xf9\x87\xc3\xb7\x7e\xec\xb1\x52\xc5\xc0\x47\x37\x87\xe1\xf1\x48\x5c" "\xea\xfb\xf6\x9d\x1e\x1e\x89\xe4\xfb\xff\xfc\xe4\xb7\x37\xdb\x77\x6e\xdd" "\xbc\x71\xef\xfc\x91\xd9\xa3\xc1\x3e\x18\x59\xe2\xf1\x48\xcc\xf7\x45\xe2" "\xcc\x37\x28\x12\xa3\xcd\x56\x91\x38\xd5\x5b\x5e\xc8\xaf\xf2\x9b\x9c\xcf" "\x83\x89\x37\xb3\x92\xe5\xfc\x2e\x8b\x59\xcd\xd2\x4c\x37\x7f\xb1\xf8\xdf" "\xa3\x4a\x19\xc5\x51\x91\xea\xf7\xe6\xa8\x9e\xb4\xea\xe3\xd2\xb9\x7e\x0d" "\xea\xd3\x4c\xb6\xf5\x29\x33\xf9\x65\x95\x5a\xcc\xab\x55\xdd\xe3\x59\x4e" "\x91\xbb\x49\x96\xf2\x7a\xf5\xef\x52\xe6\x7a\x57\x83\xad\x23\x7c\x6a\x0f" "\x67\x7d\x63\x0f\x57\xda\x3e\xe7\x7e\x50\xcd\x7a\x61\xca\xd4\xde\xea\x1d" "\x80\x32\xae\x27\xfa\xe2\xda\x7f\xcd\x9d\xae\xf2\xfa\xd7\x6c\x45\xe9\xc5" "\x81\x51\xea\x8e\x75\x7b\x1f\x8f\xfa\x34\xbf\x57\x27\xca\x16\xfe\x34\x74" "\x7c\x38\x68\x8f\x47\x62\xae\x2f\x12\x2f\xd5\x11\xe8\x8e\xac\xbd\xef\x4b" "\x67\xc5\xdf\xcb\x73\x21\xf7\xda\x77\x6e\xad\xdc\x5c\x7c\x67\x8f\xdb\x7b" "\xad\x9e\x97\x17\x90\xbf\xec\xf6\x7c\xff\x50\x94\x47\xf8\xc5\x4c\xd6\x3b" "\x77\xa2\xfa\x2c\xaa\x73\x6a\xb6\xca\x7b\xa9\x37\xc2\x6e\x8f\x57\xab\xfe" "\xc5\xa5\xa3\xb1\x23\xef\x54\xaf\x5e\xe7\x4c\xfd\x75\xee\xe6\xfa\xb6\x33" "\xf5\xc7\xb9\x9c\xcb\xb9\x52\x95\x3e\x5d\x95\x1e\xdf\x31\x62\x95\x79\x67" "\x7a\x2d\x6d\xbf\x86\x97\x79\x67\xfb\xf2\x06\xfd\xbd\x05\xc0\x91\x77\xec" "\x87\xc7\x5a\x53\xff\x9d\xfa\xf7\xd4\xc7\x53\x7f\x9e\xba\x39\xf5\xc6\xe4" "\x2f\x26\x7e\x32\xf1\x72\x2b\xe3\xff\x1a\xff\x69\x73\x76\xec\xb5\xc6\xcb" "\xc5\x3f\xf2\x71\xfe\xb0\x75\xff\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3c\xb9\x7b\xef" "\xbd\x7f\x6b\xb1\xdd\x5e\x5a\x19\x9c\x68\x0c\xce\x2a\x86\xd7\x5a\x6c\x3f" "\xaa\x5f\x24\x36\xac\xcc\xb6\x44\x51\xbf\x2a\x67\x0f\x85\x8b\x3d\x35\x38" "\x3c\x31\x51\xef\xfe\xd3\xb6\xf3\x0c\x12\xdd\xb7\x35\x8e\x2e\x3c\xf3\x1c" "\xbb\x51\xac\xd7\x07\x6c\x3f\xb5\xba\x6f\x79\x7a\xa2\x8d\x96\x95\x9f\xb8" "\xcf\xdd\x2d\x1f\xe6\x81\x1b\x9d\x98\x79\x76\x0d\x76\xbf\xb0\x4f\xd5\xce" "\xd4\xa0\xe3\x35\x96\x64\x40\xe1\xb1\x11\x17\x8e\x51\xf9\xc0\x91\x77\x71" "\xf5\xf6\x3b\x17\xef\xbd\xf7\xfe\x8f\x96\x6f\x2f\xbe\xbd\xf4\xf6\xd2\x9d" "\xf1\xcb\x97\xaf\xcc\x5e\xb9\xfc\xfa\xfc\xc5\x1b\xcb\xed\xa5\xd9\xce\x67" "\x5f\x85\x03\x79\xf9\x2d\x70\x10\xb6\x06\xfd\xfe\xb5\x8d\xe4\x95\x2a\x31" "\x74\x94\x3f\x3a\x2f\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x80\x6f\x97" "\x83\xf8\xbf\x10\x49\x26\x0e\x7b\x3f\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\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\xaf\xaf\x85\xf3\x69" "\xde\x4f\x91\xb9\xd9\x0b\xb3\xe5\xf2\xe6\xc6\x7c\xbb\x9c\xba\xe9\xad\x92" "\xcd\x24\x8d\x24\xc5\xef\x93\xe2\xb3\xe4\x6a\x3a\x53\xa6\xfb\x9a\x2b\x76" "\xdb\xce\x47\xcb\x57\xde\xfa\xe2\xab\xcd\x2f\xb7\xda\x6a\x76\xcb\x37\x92" "\xf5\x5d\xeb\xed\xcd\x7a\x3d\x65\x66\x7c\xb7\x22\x8d\x6d\x3b\xb2\xe7\xf6" "\x92\x5c\xab\xe7\x43\xb4\xb6\x92\x13\x03\xb2\x8b\x5e\x64\xca\xcf\x73\xdd" "\xc0\xc1\x61\xfb\x7f\x00\x00\x00\xff\xff\x23\xc1\xef\x81", 1742); syz_mount_image(/*fs=*/0x20000040, /*dir=*/0x20000240, /*flags=*/0x800000, /*opts=*/0x200003c0, /*chdir=*/1, /*size=*/0x6cb, /*img=*/0x200010c0); return 0; }