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