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