// https://syzkaller.appspot.com/bug?id=86d590f642a6d325d2f9dc9571e6702bed1a77ee // 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, 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 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, loopfd = -1, 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) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; 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) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } 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*)0x2001f1c0, "ntfs\000", 5); memcpy((void*)0x20000000, "./file0\000", 8); *(uint8_t*)0x20000040 = 0; memcpy( (void*)0x200009c0, "\x78\x9c\xec\x9d\x4f\x6c\x1b\x59\x1d\xc7\xbf\x33\x76\xea\xb4\x49\xdb\x24" "\x54\x28\x0b\x87\x9d\x22\xb3\xaa\x04\x8a\x2c\x60\x25\x6e\xcd\x3f\xa7\x71" "\x95\x26\xd9\xc4\xa9\xca\x85\xc6\x25\xee\xd6\x34\x1b\x7b\x63\x57\x6c\x50" "\x01\x73\x5b\xc4\x25\x47\xc4\x65\x7b\x5c\x21\x0e\x91\xe0\x80\x84\x84\xf6" "\xc8\xa5\x82\x23\x42\x1c\x40\xda\x5b\x2f\x95\x38\xb0\x07\x54\xaf\xe6\xcd" "\x7b\xe3\xf9\xe3\x49\x9c\x7f\x76\x92\xdf\xf7\x23\xb5\xef\xe5\x79\xfc\xe6" "\xcd\x7c\xf3\x1c\x7f\xdf\x9f\xdf\xbc\x5a\xd9\x5d\x2c\xce\xad\x3a\x8e\xe3" "\x60\xc4\x82\xc7\x17\x08\xd1\x44\x13\x2d\xfd\x5a\x5a\x97\xb5\x74\xea\x16" "\xff\xf7\x3a\xf0\xbf\xdf\xfe\xf2\xce\xb7\xea\x7f\x9b\xc1\x30\x70\xed\xed" "\xbf\x7c\xf8\xfc\xf7\xdf\xf8\xac\x31\x74\xff\x8f\xd7\xfe\x9c\xc1\xcb\x91" "\x1f\xbe\x7a\xfd\x9d\xcf\x5f\x7e\xf5\xe5\x5b\xaf\xde\x14\x9f\x54\xea\x4e" "\xa5\xee\x6c\x55\x1b\x4e\xc9\x79\x54\xad\x36\x4a\x8f\x36\xcb\xce\x46\xa5" "\xfe\x74\xc2\x59\xde\x2c\x97\xea\x65\xa7\xb2\x55\x2f\x6f\x87\x5e\x7e\xbc" "\x59\xad\xd5\x76\x9c\xd2\xd6\xc6\xd5\x2b\xb5\xed\x72\xbd\xee\x94\xb6\x76" "\x9c\xa7\xe5\x1d\xa7\x51\x75\x1a\xdb\x3b\x4e\xe9\xfd\x52\x65\xcb\x99\x98" "\x98\x70\xae\x5e\x01\xe9\x92\xb5\xdf\xf5\xbb\x05\x84\x10\x42\x08\x21\x84" "\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x4e\x86\x56\x0b\x19\x37" "\xbd\xdd\xef\x86\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21" "\x84\x10\x42\x08\x21\xe4\xc8\xcc\x15\x16\xf2\x39\x5c\xf6\x7f\xb6\x60\x61" "\x1e\x16\x3e\xb5\x00\x8c\xb4\x8f\x33\xfb\xfe\x07\x13\xea\x71\x0f\x5d\x57" "\xb9\x71\xf5\xff\xbc\x9f\xdb\x9f\x4b\x5d\xb6\x33\x07\xe0\x89\x5f\xbf\x8d" "\xbb\x2a\x67\x61\x40\x95\x0d\xa0\x59\xcc\x6d\xfd\xfa\xcd\x3f\xac\xa4\x14" "\x7b\x3a\x80\x81\x4e\xcd\x79\xd3\xa9\x2c\xee\x61\x0e\x45\xfd\x73\x53\xb7" "\xdd\xc2\xa4\x8e\x6e\xe0\x71\x57\xa7\x7e\xc9\x9e\xbe\x23\xeb\xe1\x74\xf4" "\x76\xfa\xe6\xf0\x6d\x0b\x7b\xa1\x7a\x52\xb1\xeb\x99\x34\x99\x91\x50\xe2" "\xa7\xa3\x96\xad\xd2\x56\xab\xd5\xea\xf2\x16\x1d\x81\x24\x35\x89\x0c\xa8" "\xbf\x6c\xa8\xbf\x6c\xa8\xbf\x6c\xa8\xbf\x6c\xa8\xbf\x6c\xa8\xbf\x6c\x06" "\x13\xfd\xff\x93\x88\xff\x4f\x69\xef\x6b\x27\xd4\x94\xe4\xff\x0f\xf2\xe5" "\x1d\xfd\xbf\x15\x2f\x72\xfd\x7f\xcd\xaf\xdf\xc6\xca\x61\xfd\xbf\x31\xdc" "\x3a\x35\xe7\x1d\xf4\xfd\xff\x3d\x54\xb0\x8d\x6d\x5d\x9e\x34\x0e\x90\x0a" "\x57\x83\x68\xbd\x26\xbd\x99\xf6\x6c\xfb\xe9\xfa\x77\x42\x8e\x43\x52\x6f" "\x26\x32\xa0\xfe\xb2\xa1\xfe\xb2\xa1\xfe\xb2\xa1\xfe\xb2\xa1\xfe\xb2\xb1" "\x63\xfe\xdf\xde\xc7\xff\xdb\xe7\xd9\xff\xfb\x2b\x18\xbc\x34\xe8\xff\x17" "\x50\xc5\xfb\x98\x43\x05\x9b\x28\xeb\xf2\x24\xff\x6f\xe2\x24\xf8\xfe\x3f" "\x52\xaf\x49\x6f\x4e\xa6\xd4\x9b\xfa\xe3\xff\xad\x74\x77\xc7\xb1\xff\x5f" "\x70\x3e\xef\xd0\x95\x02\x50\x7f\xd9\x50\x7f\xd9\x50\x7f\xd9\x50\x7f\xd9" "\x50\x7f\xd9\x50\x7f\xd9\xc4\xfd\x7f\x4a\xfb\xff\xd7\x11\xff\x7f\x29\x30" "\x06\xd0\x89\x11\xed\x97\x8d\xff\xcf\x1d\xd1\xff\x87\xd7\xf9\x5b\x58\x3e" "\xb4\xcf\x0f\x63\xea\xcf\xa4\xb2\xb8\x8f\x2a\x36\xf1\x0c\x1f\xa0\xac\xea" "\x6d\xfa\xe7\xb1\xb1\xe1\x9f\x31\xdd\x74\xaf\xc3\xec\x07\xb8\xa1\x5e\xfd" "\x9e\xbe\xee\x1b\xf8\xc4\x1a\x83\xe5\x9d\x65\x60\x4c\xbf\x5f\x95\x79\x07" "\x0c\x38\x00\x1c\x1b\xa1\x63\xa2\xaf\x41\x8f\x95\xe4\xfc\xf3\xa7\x31\xa6" "\x73\x75\xec\xe0\xa7\x78\x8a\x12\x36\xd5\x68\x84\x59\x8f\x50\x03\x70\xcb" "\x3f\x7e\x00\xc3\x91\xfd\x15\x29\x7d\xe5\x4d\xbf\x7c\xdc\x5f\xad\x30\x9e" "\x38\x0e\xc1\xfe\x2f\x1b\xea\x2f\x1b\xea\x2f\x1b\xea\x2f\x1b\xea\x2f\x1b" "\xea\x2f\x1b\xea\x2f\x9b\xb8\xff\x4f\x6b\xff\xff\x62\x28\xbe\xff\x3f\xed" "\xff\xc6\x14\x63\x35\x9d\xa4\xff\x3f\xd6\x3c\xbf\x79\xfa\xbf\x4e\x83\xf3" "\xfc\x53\x68\xa0\x81\x6d\xcc\xa2\x8c\xc7\xba\x3c\x3c\x0e\x90\xea\x7a\x1c" "\xe0\x57\x88\x8f\x03\xa8\xb2\x43\x8e\x03\x28\xbf\x7e\xc5\x9c\xdf\x7a\x6e" "\x06\x30\xb2\x58\x45\x11\x53\x58\xc4\x2c\xa6\xb0\x82\x59\x3c\x44\x01\x8b" "\x98\xc3\x12\x56\x70\x0f\x53\x28\xa2\x80\x25\x2c\x76\xad\x75\x27\x92\xfb" "\x7f\x40\x7a\xb5\xd6\x21\xa7\xf3\xf3\x7e\xfb\xdc\x16\x14\xb1\x82\x02\xa6" "\xb1\x86\x22\xf2\x78\x88\x05\x14\x54\xbb\x4f\x1f\x27\x90\x6f\x06\xf2\x2d" "\x4d\x16\x73\x28\x60\x41\xb5\x6a\x11\x53\xb8\x87\xfc\xe9\x35\xa6\x19\x2f" "\xca\x05\xf2\xd3\x00\x66\x4d\x5e\xdf\xf2\x2c\x96\x30\x8d\xbb\xc8\x63\x06" "\x45\xa5\xed\x6c\x37\x67\x3a\xb1\xc7\x74\x78\xeb\x57\xec\x40\x5e\x63\x99" "\xf6\xad\xaa\xb6\xad\x29\x85\x8b\xf8\x01\x1e\x62\x16\x79\xac\x62\x46\x95" "\x2c\xa3\xa8\x7e\x13\x4f\x8b\xe5\x40\xbe\xb3\xbe\xf7\xb1\x84\x05\xac\x29" "\x65\x7b\xa0\x71\x84\xf5\x40\x7e\x32\xd8\x93\x2c\x93\x0b\xb7\xef\xe4\xfb" "\xee\xfe\xd4\x22\xed\x1b\xd6\x79\x93\x66\xd5\xe7\x8a\x8d\xa9\x53\x6c\xc3" "\x7e\x74\xe8\x32\x8a\xb6\xbe\x05\xf5\xd9\x97\xc7\x03\x3c\xc4\x0a\x96\xb0" "\xd4\x93\xcf\x15\xc3\x6e\x20\x3f\x79\x60\xfb\xa6\xb0\x80\x05\x2c\x61\xa6" "\x27\xda\xba\xbc\x08\xe4\xa3\xfd\xe3\xb2\xd2\x77\x5a\xf5\x5b\xf7\xb7\x6d" "\x39\xb1\x96\xd3\xfb\xfe\xb7\xb7\x4f\xfb\xbc\xfb\xb7\x82\x3c\x96\xd5\xdf" "\xb6\x55\xd5\x43\x96\xb1\xa4\xee\x69\x6f\x54\xfe\x2c\xa1\x7d\x46\xec\x2c" "\xf2\x98\xea\x43\xbf\x35\xfc\x3d\xd2\x24\xb3\x53\xd7\xa4\x5e\xfb\x8e\xcb" "\xd1\xf5\xff\x77\xe2\x2b\xde\x1f\x90\xac\xea\x0f\x77\x70\x07\x79\xf5\xdd" "\x65\x4d\xdd\xbb\x05\xff\x6f\xc9\xaa\xfa\xee\x90\x57\x9f\xda\xa7\x42\x60" "\x26\xa8\x99\xf4\xc2\x19\xa6\x37\xeb\x46\xe9\xff\x64\x43\xfd\x65\x13\xf7" "\xff\x03\xca\xff\xa7\x30\x62\xc7\xe7\xff\x5d\x0f\x9e\x09\x39\x9b\x36\x07" "\xf9\xff\xe9\x77\xdf\xfd\x30\x98\x9a\xf2\x77\x22\xf5\xe4\x42\xfb\x08\x2c" "\xe5\x8a\x8e\x39\xff\xaf\xae\xc2\x4a\x4d\xa8\x9f\x97\x43\xeb\xfa\xdb\xbf" "\xff\xe6\x8d\xfe\x77\x3d\x6d\x30\xbf\x3d\x12\x4e\x47\xed\x19\x95\xba\xdf" "\x0f\x1f\xb8\x99\xb4\x37\x6e\xf0\x7d\xfd\x16\xf7\x7b\xe1\x77\x91\x53\xd7" "\x61\xe9\x1b\x63\x96\x52\xdc\xd2\xff\x82\x8d\x1c\x8f\x44\x07\x7c\xa1\xdb" "\x68\xa5\x27\xf5\x1d\x0f\x33\x1f\xbc\xe1\x1d\x52\x73\xfe\x51\xcb\xf3\x42" "\x7b\x66\xdd\x40\xda\x5b\x67\x30\x18\x6a\x67\xc6\x6f\x0b\xe3\x14\x48\x24" "\xd3\xef\x06\x90\x1e\xd2\xfa\x45\xb4\x84\xfa\xcb\x86\xfa\xcb\x86\xfa\x9f" "\x7f\xf4\x80\x5a\xec\xb3\xbd\x1b\xa8\xbf\x6c\xa8\xbf\x6c\x32\x31\xff\x0f" "\xe5\x31\x2d\xac\x77\xd8\xff\x7f\xa9\xcf\xfb\xff\x83\xf1\xff\x0f\xbd\x2f" "\x40\x5f\x8b\xf1\xf7\xc1\x7d\x01\xd3\xa8\xa0\x81\x0f\x50\x42\x2d\x71\xdf" "\xbf\x21\x1a\xb7\x3f\x1a\xfe\x6f\xd4\x9a\x53\xe9\xf9\xf0\xd3\x1c\xff\x93" "\x0d\xf5\x97\x0d\xf5\x97\x0d\xf5\x97\x0d\xf5\x97\x0d\xf5\x97\x0d\xf5\x97" "\x4d\x7c\xfe\x3f\xa3\xd7\xff\xff\xb5\xc3\xf3\xff\x32\x3d\xdf\xff\x6f\x63" "\xe1\xb0\x3e\xdf\x2c\x0c\xd7\xa9\xa9\x7f\x40\xf9\xfc\x2a\xaa\x68\xa8\x9f" "\xcf\xc2\xba\xff\x4e\xe3\x0c\x49\xeb\x10\xa2\xe9\xa8\xae\xe7\x78\xe3\x0c" "\xec\xff\xb2\xa1\xfe\x17\x98\xf8\x43\x47\x63\x50\x7f\xd9\x50\x7f\xd9\x50" "\x7f\xd9\x50\x7f\xd9\x50\x7f\xd9\xc4\xfd\xff\xa0\xf6\xff\x1f\x77\xf0\xff" "\x83\x67\x26\xfe\x7f\xea\x08\xf1\xff\xc3\x04\xe3\x02\x4c\xa3\x84\x0d\xcc" "\xa8\xd8\x80\x75\x78\x7e\x3a\x1c\x47\xcf\xf6\x73\xcd\xd0\xfa\xfc\x76\xb5" "\x6f\x74\xd6\x5f\x9f\xff\xfa\xed\x70\xaa\x31\x67\xb3\x5b\xde\x1b\xfa\xbb" "\x4e\x80\xfd\x5f\x36\xd4\x5f\x36\xd4\x5f\x36\xd4\x5f\x36\xd4\x5f\x36\xd4" "\x5f\x36\xd4\x5f\x36\x71\xff\x7f\x59\xf9\xff\xcb\xf8\x53\x64\xff\xff\x80" "\x7a\xcd\x7d\x47\xa1\x63\x4d\xc7\xf0\xff\x4e\xb4\x2e\xeb\xc0\xf5\xff\x27" "\xf2\x5c\x00\x75\xde\x4c\x2a\x8b\x55\x94\xf1\x23\x3c\xf3\x77\xc3\xb4\xfd" "\x7d\xbb\x7f\x98\xf9\xf8\xf6\xfe\x7b\xef\x11\x7b\xff\x47\x38\x75\x6b\x9b" "\xc5\x2a\x46\xa7\xee\xa8\x9f\x77\x4d\x2c\x24\x1d\x27\x60\xd7\xdf\x7f\xef" "\x1e\xe7\xd5\x36\x86\x70\x9c\x80\x66\x20\x66\xcd\xb8\x5a\x81\xe0\x5e\xbf" "\x17\xf9\xe7\xbd\xec\x1f\xd4\xfd\x31\xa9\x39\xee\x39\x80\x02\x0a\xb1\xe3" "\x5f\x8f\xa5\xbe\x70\x2b\x36\x29\x42\xc7\xdb\x21\xfd\x6c\xdd\xde\x17\x68" "\xc7\x0b\x68\x06\xda\x5b\xd0\xda\x8f\x44\xda\x5b\x0b\xc4\x1b\xbb\xa1\xcf" "\x7f\xcb\x3c\x0f\x31\xe1\xdc\xd1\xe3\x92\xae\x29\xda\xbe\xf3\xb1\xaf\xe2" "\xbc\xc0\xcf\x7f\xd9\x50\x7f\xd9\x50\x7f\xd9\x50\x7f\xd9\x50\x7f\x89\xb4" "\xbf\x43\x53\x7f\xd9\xc4\xfd\xff\x15\x3d\xff\xff\x69\x87\xf9\xff\x2b\x7d" "\x9c\xff\x1f\x09\xf9\xff\xd4\x11\xfc\xbf\xed\x5f\x33\x22\xfb\xff\xd7\x50" "\xc3\x0c\x4a\xa8\xa3\xac\xbc\x6e\xa7\x75\xf9\x66\x16\xff\x9b\x81\x7b\x17" "\x4e\x3d\x6e\x3a\x1f\xab\xd4\xac\xef\xc7\x80\xb7\x7e\xc0\xd1\x71\xf8\xb2" "\x28\x60\x0b\x8f\x51\xd5\xc7\x9b\xc1\x8f\xe1\xca\xd7\x9f\xfe\xe4\xe7\xff" "\xfa\x67\xf4\xba\x4f\xd7\xef\xb2\xff\xcb\x86\xfa\xcb\x86\xfa\xcb\x86\xfa" "\xcb\x86\xfa\xcb\x86\xfa\xcb\x86\xfa\xcb\x26\xee\xff\x87\x74\xfc\xff\x5d" "\x3b\x1e\xff\x6f\xe8\xc8\xfe\xdf\x6c\x45\xed\xce\xff\xf7\x68\xfe\x5f\x5d" "\x9d\xeb\xff\xf3\xf8\x08\x0d\x94\xb1\x85\x0d\x35\xff\xfd\x91\x65\xe6\xbf" "\x6d\x3c\xb0\x0e\x8e\xeb\x3f\x6f\x79\xff\x5c\xde\xf2\xae\x00\xeb\xfa\x29" "\x41\x43\xfa\xff\xc3\xb6\xef\x1d\x3d\x34\x70\x29\x95\xc5\x12\x1e\xe1\xc7" "\x28\xf8\x31\x0a\x4e\xae\x7e\x5b\xd5\xff\x1e\x9e\xa9\xb8\x08\x25\x00\x5f" "\xd3\xf5\x3f\xd1\xcf\x76\x3b\x6e\xfb\x07\x53\x59\xac\xa0\x8c\x1a\x4a\xd8" "\x56\x23\x2c\x61\x38\xaf\xdf\x4f\xf8\xf9\x2f\x1b\xea\x2f\x1b\xea\x2f\x1b" "\xea\x2f\x1b\xea\x2f\x1b\xea\x2f\x9b\xb8\xff\x1f\xd6\xf1\xff\x73\x1d\xe2" "\xff\x0f\xf7\x20\xfe\x5f\x38\x2e\x9f\xdd\x75\x5c\xbe\x4f\xac\x78\x5c\x3e" "\x55\x76\x94\xe7\xf1\xfb\xe7\xb7\xfc\xdc\xc5\xf4\xa7\xec\xff\xb2\xa1\xfe" "\xb2\xa1\xfe\xf2\x08\x3c\x0d\xbd\x8b\x08\x91\xe4\x22\xc3\xfe\x2f\x1b\xea" "\x2f\x1b\xea\x2f\x9b\xb8\xff\xbf\xba\x8f\xff\xbf\x7a\x78\xff\xff\xb3\xff" "\x00\xf4\xff\x67\x16\xf6\x7f\xd9\x50\x7f\xd9\x50\x7f\xd9\x50\x7f\xd9\x50" "\x7f\xd9\x50\x7f\xd9\x50\x7f\xd9\xc4\xfd\xff\xb5\x7d\xfc\xff\x35\xce\xff" "\x5f\x30\xd8\xff\x65\x43\xfd\x65\x43\xfd\x65\x43\xfd\x65\x43\xfd\x65\x43" "\xfd\x65\x43\xfd\x65\x13\xf7\xff\xd7\xf7\xf1\xff\xd7\xe9\xff\x2f\x18\xec" "\xff\xb2\xa1\xfe\xb2\xa1\xfe\xb2\xa1\xfe\xb2\xa1\xfe\xb2\xa1\xfe\xb2\xa1" "\xfe\xb2\x89\xfb\x7f\xe3\xe3\x7f\x83\xb0\xff\xb7\xfc\x77\x74\xe6\xa4\xfc" "\xff\xc5\xf4\xd9\x67\x15\xf6\x7f\xd9\x50\x7f\xd9\x50\x7f\xd9\x50\x7f\xd9" "\x50\x7f\xd9\x50\x7f\xd9\x50\x7f\xd9\xc4\xfd\xff\x28\xfd\xbf\x20\xd8\xff" "\x65\x43\xfd\x65\x43\xfd\x65\x43\xfd\x65\x43\xfd\x65\x43\xfd\x65\x43\xfd" "\x65\x13\xf7\xff\x63\xf4\xff\x82\x60\xff\x97\x0d\xf5\x97\x0d\xf5\x97\x0d" "\xf5\x97\x0d\xf5\x97\x0d\xf5\x97\x0d\xf5\x97\x4d\xdc\xff\x7f\x85\xfe\xff" "\x62\xd2\xf1\x59\x4f\xec\xff\xb2\xa1\xfe\xb2\xa1\xfe\xb2\xa1\xfe\xb2\xa1" "\xfe\xb2\xa1\xfe\xe7\x84\x2f\x03\x00\x00\xff\xff\xb3\x4c\x02\xd5", 2428); syz_mount_image(/*fs=*/0x2001f1c0, /*dir=*/0x20000000, /*flags=*/4, /*opts=*/0x20000040, /*chdir=*/1, /*size=*/0x97a, /*img=*/0x200009c0); return 0; }