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