// https://syzkaller.appspot.com/bug?id=0e77b741e3a1b835114f0f7f0f3e53e12c9a73bc // 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, 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*)0x20000040, "hfsplus\000", 8); memcpy((void*)0x20000080, "./file0\000", 8); memcpy((void*)0x200000c0, "gid", 3); *(uint8_t*)0x200000c3 = 0x3d; sprintf((char*)0x200000c4, "0x%016llx", (long long)0); *(uint8_t*)0x200000d6 = 0x2c; memcpy((void*)0x200000d7, "nls", 3); *(uint8_t*)0x200000da = 0x3d; memcpy((void*)0x200000db, "cp437", 5); *(uint8_t*)0x200000e0 = 0x2c; memcpy((void*)0x200000e1, "nobarrier", 9); *(uint8_t*)0x200000ea = 0x2c; memcpy((void*)0x200000eb, "gid", 3); *(uint8_t*)0x200000ee = 0x3d; sprintf((char*)0x200000ef, "0x%016llx", (long long)0xee01); *(uint8_t*)0x20000101 = 0x2c; memcpy((void*)0x20000102, "nobarrier", 9); *(uint8_t*)0x2000010b = 0x2c; memcpy((void*)0x2000010c, "force", 5); *(uint8_t*)0x20000111 = 0x2c; memcpy((void*)0x20000112, "type", 4); *(uint8_t*)0x20000116 = 0x3d; memcpy((void*)0x20000117, "\\I^1", 4); *(uint8_t*)0x2000011b = 0x2c; *(uint8_t*)0x2000011c = 0; memcpy( (void*)0x20000340, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xef\xac\xd7\x5b\x3b\x54\xa9" "\xdb\x26\x6d\x40\x95\xb0\x12\xa9\x20\x59\x24\x7e\x91\x0b\xe6\x42\x40\x08" "\xf9\x50\xa1\xaa\x1c\x38\x5b\x89\xd3\x58\xd9\xb8\x95\xed\x22\xb7\x42\xc8" "\xbc\x9f\x90\x38\xf4\x0f\x28\x48\xbe\x71\x42\xe2\x1e\x14\xce\x70\xeb\xd5" "\xc7\x4a\x48\x5c\x7a\xf2\x2d\x68\x66\x67\xed\xb5\xbd\x4e\x1d\xdb\xf1\xda" "\xf0\xf9\x44\xb3\xcf\xf3\xec\x33\xf3\xcc\x6f\x7e\x3b\x33\xbb\x33\x1b\x6b" "\x03\xfc\xdf\x9a\x9f\x48\xf3\x51\x8a\xcc\x4f\xbc\xbd\x5e\xb6\xb7\x36\x67" "\xda\x5b\x9b\x33\x2f\xd4\xdd\xed\x24\x65\xbd\x91\x34\x3b\x45\x8a\xe5\xa4" "\x78\x9c\xdc\x2e\xfb\x8b\x24\x5f\xad\xcb\xf4\x94\x07\x7c\xb2\x34\xf7\xee" "\x67\x5f\x6c\x7d\xde\x69\x35\xeb\xa9\x9a\xbf\xf1\xb4\xe5\x8e\x66\xa3\x9e" "\x32\x9e\x64\xa8\x2e\x0f\x1a\x3e\xd6\x78\x77\x92\xbc\x78\x60\x96\xd6\x51" "\xc7\xda\x33\x63\x99\xb4\x1b\x75\x09\x03\xf7\xe4\x80\x8d\x67\x59\xfc\x84" "\xc7\x2d\x30\x48\xdd\x77\xa7\xa2\xf3\xbe\x79\xc0\x58\x72\x29\xc9\x48\xfd" "\x39\x20\xf5\xd9\xa1\x71\x76\x11\x3e\x1f\xcf\x74\x96\x03\x00\x00\x80\x0b" "\xea\xa5\xed\x6c\x67\x3d\x97\x07\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\x5c\x24\xf5\xef\xff\x17\xf5\xd4\xa8\xcb\x8c\xa7\xe8\xfe\xfe\x7f\xab" "\xfb\x5c\x5d\xbf\xd0\x1e\x0d\x3a\x00\x00\x00\x00\x00\x00\x00\x00\x38\x05" "\x5f\xdf\xce\x76\xd6\x73\xb9\xdb\x7e\x52\x54\xdf\xf9\x5f\xaf\x1a\x57\xaa" "\xc7\xaf\xe4\xc3\xac\x66\x31\x2b\xb9\x99\xf5\x2c\x64\x2d\x6b\x59\xc9\x54" "\x92\xb1\x9e\x81\x5a\xeb\x0b\x6b\x6b\x2b\x53\x47\x58\x72\xba\xef\x92\xd3" "\x67\xb3\xbd\x00\x00\x00\x00\x00\x00\x00\xf0\x3f\xea\x57\x99\xdf\xfd\xfe" "\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\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\x83\x22\x19\xea\x14" "\xd5\x74\xa5\x5b\x1f\x4b\xa3\x99\x4e\x5f\xab\x9c\x6f\x23\xf9\x57\xb7\x7e" "\x41\x14\x7d\x9f\x6d\x9e\x79\x1c\x00\x00\x00\x70\x22\x23\xc7\x58\xe6\xa5" "\xed\x6c\x67\x3d\x97\xbb\xed\x27\x45\x75\xcd\xff\x5a\x75\xbd\x3c\x92\x0f" "\xb3\x9c\xb5\x2c\x65\x2d\xed\x2c\xe6\x6e\x7d\x0d\x5d\x5e\xf5\x37\xb6\x36" "\x67\xda\x5b\x9b\x33\x0f\xcb\xe9\xe0\xb8\xdf\xff\xcf\x33\x85\x51\x8d\x58" "\xdf\x5f\xe8\xbf\xe6\x6b\xd5\x1c\xa3\xb9\x97\xa5\xea\x99\x9b\xb9\x53\x05" "\x73\x37\x8d\x6a\xc9\xd2\xb5\x6e\x3c\xfd\xe3\xfa\x65\x19\x53\xf1\xbd\xda" "\x11\x23\xeb\xde\x1f\x28\x57\xf6\xc7\x43\xef\x22\x0c\xc2\x58\x1d\x5c\x37" "\x23\x93\x75\x6c\x65\x36\x5e\xee\x64\xa0\xa8\x6e\xd4\x24\xfb\x33\xf1\xa5" "\xaf\x4e\x73\xff\x9a\xd2\xc8\xf0\xce\x9a\xa6\xd2\xd8\xb9\xf3\x73\xe5\x39" "\xe4\xfc\x52\x5d\x96\xdb\xf3\xbb\xf3\x96\xf3\x4e\x26\x1a\xa9\x32\x31\xdd" "\xb3\xf7\xbd\xf6\xf4\x4c\x24\xdf\xf8\xdb\x5f\x7e\x7a\xbf\xbd\xfc\xe0\xfe" "\xbd\xd5\x89\xf3\xb3\x49\xc7\xb4\x7f\x9f\x98\xe9\xc9\xc4\xeb\x17\x3a\x13" "\xcf\x7a\x47\x70\xb2\xca\xc4\xd5\x9d\xf6\x7c\x7e\x94\x9f\x64\x22\xe3\x79" "\x27\x2b\x59\xca\xcf\xb2\x90\xb5\x2c\xe6\x49\xdd\xbf\x50\xef\xcf\xe5\xe3" "\xd8\xd3\x33\x75\x7b\x4f\xeb\x9d\x2f\x8b\xa4\x55\xbf\x2e\x9d\xb3\xe8\x51" "\x62\x1a\xcf\x0f\xab\xda\x42\xae\x57\xcb\x5e\xce\x52\x8a\xbc\x9f\xbb\x59" "\xcc\x5b\xd5\xbf\xe9\x4c\xe5\xdb\x99\xcd\x6c\xe6\x7a\x5e\xe1\xab\x87\xc6" "\x5d\x6d\x5b\x75\xd4\x37\x0e\x3b\xea\xff\xde\x37\xf8\x1b\xdf\xac\x2b\xa3" "\x49\x7e\x5f\x97\x83\xd6\x79\x4b\x2d\xf3\xfa\x72\x4f\x5e\x87\x7b\xce\xb9" "\x63\x55\x5f\xef\x33\xbb\x59\x7a\xa5\x9b\x9d\xe1\xbe\x83\x1f\xe7\xdc\xd8" "\xfc\x5a\x5d\x29\xd7\xf1\xeb\xba\x3c\x1f\xf6\x67\x62\xaa\x27\x13\xaf\x3e" "\x7d\x3f\xff\x53\x75\x6c\xac\xb6\x97\x1f\xac\xdc\x5f\xf8\xe0\x90\xf1\x37" "\xf6\xb5\xdf\xac\xcb\x72\x8f\xfb\xed\x91\xdf\x25\xfa\xbf\x14\xa7\xab\xdc" "\x5f\x5e\xc9\x48\x7d\x26\xd9\xbb\x77\x94\x7d\xaf\xee\x9c\x65\xf6\xe6\xab" "\x55\x7f\xe3\xd2\xe9\x6b\x1c\xe8\xbb\x5a\xf5\x15\x45\xf7\x48\xfd\xf1\xa1" "\x47\x6a\xab\xfe\x0c\x77\x70\xa4\xe9\xaa\xef\xf5\xbe\x7d\x33\x55\xdf\xb5" "\x9e\xbe\x3d\x9f\xb7\xf2\x7e\xda\xb9\x7b\x06\xf9\x03\xe0\x84\xc6\x72\xa9" "\x35\xfa\xef\xd1\x7f\x8e\x7e\x3a\xfa\x9b\xd1\xfb\xa3\x6f\x8f\xfc\xe0\x85" "\xef\xbc\xf0\x46\x2b\xc3\xff\x18\xfe\x6e\x73\x72\xe8\xcd\xc6\x1b\xc5\x5f" "\xf3\x69\x7e\xb1\x7b\xfd\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1c\xdf\xea\x47\x1f\x3f" "\x58\x68\xb7\x17\x57\xfa\x57\x1a\x87\x77\x9d\x6e\xa5\xa8\x7f\xc8\xe7\x2c" "\xd6\x75\x16\x95\x91\x24\xe7\x20\x8c\x73\x5a\xe9\xfe\x88\x60\xff\x79\xfe" "\x70\xf4\x01\x6f\x9f\x8b\xcd\xb9\xd0\x95\xa1\x24\xfd\xba\x06\x7c\x62\x02" "\x9e\xbb\x5b\x6b\x0f\x3f\xb8\xb5\xfa\xd1\xc7\xdf\x5a\x7a\xb8\xf0\xde\xe2" "\x7b\x8b\xcb\xc3\xb3\xb3\x73\x93\x73\xb3\x6f\xcd\xdc\xba\xb7\xd4\x5e\x9c" "\xec\x3c\x0e\x3a\x4a\xe0\x79\xd8\x7d\xd3\x1f\x74\x24\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xc0\x51\xf5\xfb\xc3\x80\xeb\x2f\x9e\xc6\xdf\xae\xb4\xfc" "\xcf\x42\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xe0\x54\xcc\x4f\xa4\xf9\x28\x45\xa6\x26\x6f\x4e\x96" "\xed\xad\xcd\x99\x76\x39\x75\xeb\xbb\x73\x36\x93\x34\x1a\x49\xf1\xf3\xa4" "\x78\x9c\xdc\x4e\x67\xca\x58\xcf\x70\x45\xfe\xfc\xb8\xef\x7a\x3e\x59\x9a" "\x7b\xf7\xb3\x2f\xb6\x3e\xdf\x1d\xab\xd9\x99\x3f\x69\xd4\xe5\x09\x6c\xd4" "\x53\xc6\x93\x0c\xd5\xe5\x69\x8d\x77\xe7\xc4\xe3\x15\x3b\x5b\x58\x26\xec" "\x46\x37\x71\x30\x68\xff\x0d\x00\x00\xff\xff\xeb\xf7\xf8\x10", 1617); syz_mount_image(0x20000040, 0x20000080, 0x208010, 0x200000c0, 7, 0x650, 0x20000340); return 0; }