// https://syzkaller.appspot.com/bug?id=9bcce2bee542fa9e87b18b57267db95c9e91db0e // 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 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) { errno = EMSGSIZE; return -1; } 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*)0x20000600, "hfsplus\000", 8); memcpy((void*)0x200000c0, "\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*)0x20000000, "nodecompose", 11); *(uint8_t*)0x2000000b = 0x2c; memcpy((void*)0x2000000c, "decompose", 9); *(uint8_t*)0x20000015 = 0x2c; memcpy((void*)0x20000016, "nodecompose", 11); *(uint8_t*)0x20000021 = 0x2c; memcpy((void*)0x20000022, "part", 4); *(uint8_t*)0x20000026 = 0x3d; sprintf((char*)0x20000027, "0x%016llx", (long long)0x6045); *(uint8_t*)0x20000039 = 0x2c; *(uint8_t*)0x2000003a = 0; memcpy( (void*)0x20000c80, "\x78\x9c\xec\xdd\xcd\x6b\x1c\xe7\x1d\x07\xf0\xef\xac\x56\xb2\xe5\x82\xbc" "\x49\xec\xc4\x2d\x81\x8a\x18\xd2\x82\xa8\xad\x17\x94\x56\xbd\xc4\x0d\xa5" "\xe8\x10\x4a\x48\x0f\x3d\x0b\x5b\x8e\x85\xd7\x4a\x90\x94\xa2\x84\x52\xdc" "\xf7\x6b\x0f\xf9\x03\xd2\x83\x6e\x3d\x15\x7a\xeb\xc1\x90\x9e\xdb\x5b\xae" "\x3a\x06\x0a\xbd\xe4\xa4\x43\x41\x65\x66\x67\xa5\x4d\xb4\x52\xb4\xb5\xa5" "\x5d\xb5\x9f\x8f\x99\x7d\x9e\x67\x9e\x99\x67\x7e\xcf\x6f\x67\x66\x77\xb5" "\x98\x0d\xf0\x7f\x6b\x79\x26\xcd\x27\x29\xb2\x3c\xf3\xe6\x76\xd9\xde\xdd" "\x59\x68\xef\xee\x2c\x5c\xaa\xbb\xdb\x49\xca\x7a\x23\x69\x76\x8a\x14\xeb" "\x49\xf1\x49\x72\x27\x9d\x25\x5f\x2f\x57\xd6\xdb\x17\xc7\x1d\xe7\xa3\xb5" "\xa5\xb7\x3f\xfd\x7c\xf7\xb3\x54\x03\x35\x3b\x45\x67\xfb\x72\xd0\xd7\x9f" "\x6e\x16\x8f\xeb\x25\xd3\x49\xc6\xea\xf2\xa8\xf1\xff\x6a\xbc\xbb\xc7\x8e" "\x77\x5a\xc5\x41\x66\xca\x84\xdd\xec\x26\x0e\x86\x6d\xff\x88\xc7\x83\xec" "\x7e\xec\xf5\x0e\x5c\x1c\x45\xe7\x75\xf3\x88\x56\x72\x25\xc9\xe5\xfa\x7d" "\x40\xea\xbb\x43\xe3\x7c\xa3\x7b\xf6\x06\xba\xcb\x01\x00\x00\xc0\x05\x75" "\x75\x2f\x7b\xd9\xce\xd4\xb0\xe3\x00\x00\x00\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" "\x8b\xa4\xfe\xfd\xff\xa2\x5e\x1a\xdd\xfa\x74\x8a\xee\xef\xff\x4f\xd4\xeb" "\x52\xd7\x2f\xb4\x27\xc3\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x9e\x81\x6f" "\xee\x65\x2f\xdb\x99\xea\xb6\xf7\x8b\xea\x3b\xff\x57\xaa\xc6\xb5\xea\xf1" "\x6b\x79\x3f\x9b\x59\xcd\x46\x6e\x65\x3b\x2b\xd9\xca\x56\x36\x32\x97\xa4" "\xd5\x33\xd0\xc4\xf6\xca\xd6\xd6\xc6\xdc\x29\xf6\x9c\xef\xbb\xe7\xfc\xf9" "\xcc\x17\x00\x00\x00\x00\x00\x00\x00\xfe\x47\xfd\x2a\xcb\x87\xdf\xff\x03" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\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\x28\x28\xfe\xbd\xbf\xbf\x9f" "\x14\xe9\x2c\xd7\xea\xb2\x68\xa5\xd1\x4c\x72\xb9\x6e\xe7\x71\xf2\x8f\x24" "\x13\xc3\x8e\xf7\x69\x3d\x19\x76\x00\x00\x00\x00\x70\x0e\xae\xee\x65\x2f" "\xdb\x99\xea\xb6\xf7\x8b\xea\x33\xff\x74\xf5\x39\xff\x72\xde\xcf\x7a\xb6" "\xb2\x96\xad\xb4\xb3\x9a\x7b\x9d\xcf\xfe\xd5\xa7\xfe\xc6\xee\xce\x42\x7b" "\x77\x67\xe1\x51\xb9\x1c\x1d\xf7\x07\xff\x1a\x28\x8c\x6a\xc4\x24\x63\x55" "\xab\xdf\x91\x6f\x54\x5b\x4c\xe6\x7e\xd6\xaa\x35\xb7\x72\x37\xef\xa6\x9d" "\x7b\x69\x54\x7b\x96\x6e\x74\xe3\xe9\x1f\xd7\x2f\xcb\x98\x8a\xd7\x6b\xa7" "\x8c\xec\x5e\x5d\x96\x33\xff\x43\xf7\xaf\x1f\x23\xa1\x55\x65\x64\xfc\x20" "\x23\xb3\x75\x6c\x65\x36\x9e\x3b\x39\x13\x03\x3e\x3b\x5f\x3e\xd2\x5c\x1a" "\x07\x7f\xf9\xb9\x36\x48\xce\xc7\x4e\x77\xbc\x2b\x75\x59\xce\xe7\x77\x23" "\x9d\xf3\xf9\x9e\xb3\xef\xc5\xc3\x2c\x8c\xa7\xdf\x55\xf1\xad\xbf\xfc\xe9" "\xa7\x0f\xda\xeb\x0f\x1f\xdc\xdf\x9c\x19\x9d\x29\x7d\x85\xa9\x63\xd6\xb7" "\x92\x37\xfe\xda\x93\x89\x85\x9e\x4c\xbc\x74\xf2\x39\x71\x41\x33\x71\x9c" "\xd9\xea\x9c\xb8\x7e\xd0\x5e\xce\x8f\xf2\x93\xcc\x64\x3a\x6f\x65\x23\x6b" "\xf9\x59\x56\xb2\x95\xd5\x4c\xe7\x87\x55\x6d\xa5\x3e\x9f\xcb\xc7\xd6\xc9" "\x99\xba\xf3\x85\xd6\x5b\x5f\x15\xc9\x44\x7d\x86\x76\x2e\xb3\xc1\x62\x7a" "\xa5\xda\x77\x2a\x6b\xf9\x71\xde\xcd\xbd\xac\xe6\xb5\xea\xdf\x7c\xe6\xf2" "\xdd\x2c\x66\x31\x4b\x3d\xcf\xf0\xf5\x3e\x71\xf7\x04\x5b\x5d\xf5\x8d\xc1" "\xee\xb4\x37\xbf\x5d\x57\x26\x93\xfc\xbe\x2e\x47\x43\x99\xd7\xe7\x7a\xf2" "\xda\x7b\xcf\x6d\x55\x7d\xbd\x6b\x0e\xb3\xf4\xfc\xb3\x7f\x3d\x6a\x7e\xa3" "\xae\x94\xc7\xf8\x75\x59\x8e\x4c\x9a\xbe\x9c\x89\xb9\x9e\x4c\xbc\x70\x72" "\x26\xfe\xb8\x5f\x3e\x6e\xb6\xd7\x1f\x6e\x3c\x58\x79\xef\x94\xc7\x7b\xb5" "\x2e\xcb\xeb\xe8\xb7\x23\xf5\x2a\x51\x9e\x2f\xcf\x97\x4f\x56\xd5\xfa\xe2" "\xd9\x51\xf6\xbd\xd0\xb7\x6f\xae\xea\xbb\x76\xd0\xd7\x38\xd2\x77\xfd\xa0" "\xaf\x7b\xa5\xe6\x98\x2b\xb5\xdc\xfa\xc5\xbe\x23\xcd\x57\x7d\x2f\xf5\xed" "\x5b\xa8\xfa\x6e\xf4\xf4\xf5\x7b\xbf\x05\xc0\xc8\x6b\xe5\xca\xc4\xe4\x3f" "\x27\xff\x3e\xf9\xf1\xe4\x6f\x26\x1f\x4c\xbe\x79\xf9\x8d\x4b\xdf\xbb\xf4" "\xf2\x44\xc6\xff\x36\xfe\xfd\xe6\xec\xd8\xab\x8d\x97\x8b\x3f\xe7\xe3\xfc" "\xe2\xd8\x77\xf9\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x00\x36\x3f\xf8\xf0\xe1\x4a\xbb" "\xbd\xba\x31\xe4\x4a\x51\xff\x90\xcf\xa8\xc4\x33\x40\x65\xff\x6a\x72\x76" "\x87\x18\x4b\x32\x2a\x33\x3d\xe3\x4a\xf7\x47\xa3\x46\x25\x9e\x33\xac\x34" "\xeb\xa9\x8e\x4a\x3c\x7d\x2a\x43\xbc\x29\x01\xe7\xe2\xf6\xd6\xa3\xf7\x6e" "\x6f\x7e\xf0\xe1\x77\xd6\x1e\xad\xbc\xb3\xfa\xce\xea\xfa\xf8\xe2\xe2\xd2" "\xec\xd2\xe2\x6b\x0b\xb7\xef\xaf\xb5\x57\x67\x3b\x8f\xc3\x8e\x12\x38\x0b" "\x87\x2f\xfa\xc3\x8e\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x38\xad\xf3" "\xf8\xef\x04\xc3\x9e\x23\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\xb1\x2d\xcf\xa4\xf9\x24\x45\xe6" "\x66\x6f\xcd\x96\xed\xdd\x9d\x85\x76\xb9\x74\xeb\x87\x5b\x36\x93\x34\x92" "\x14\x3f\x4f\x8a\x4f\x92\x3b\xe9\x2c\x69\xf5\x0c\x57\x1c\x77\x9c\x8f\xd6" "\x96\xde\xfe\xf4\xf3\xdd\xcf\x0e\xc7\x6a\x76\xb7\x6f\x9c\xb4\xdf\xe9\x3c" "\xae\x97\x4c\x27\x19\xab\xcb\x67\x35\xde\xdd\xa7\x1e\xaf\x38\x98\x61\x99" "\xb0\x9b\xdd\xc4\xc1\xb0\xfd\x27\x00\x00\xff\xff\x59\xb3\x04\xfe", 1564); syz_mount_image(0x20000600, 0x200000c0, 0x2a14010, 0x20000000, 5, 0x61c, 0x20000c80); return 0; }