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