// 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, max_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 void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } 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, 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) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); 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) reset_loop_device(loopname); errno = err; return res; } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20000000, "hfsplus\000", 8); memcpy((void*)0x20000040, "./bus\000", 6); memcpy( (void*)0x200003c0, "\x78\x9c\xec\xdd\xcf\x6f\x1c\x67\x19\x07\xf0\xef\xac\xd7\x1b\x6f\x88\x52" "\xa7\x4d\x20\x42\x45\x58\x89\x54\x90\x22\x52\x27\x56\x0a\xe1\x82\x41\x08" "\xe5\x50\xa1\xaa\x1c\x38\x5b\x89\xd3\x58\xd9\x24\xc8\x71\x51\xa8\x10\xb8" "\x80\xe0\x84\xc4\xa1\x7f\x40\x41\xf2\x8d\x13\x12\xf7\xa0\x70\x2e\xb7\x5e" "\x7d\xac\x84\xc4\x25\xe2\x10\xf5\xb2\x68\x66\x67\xed\xb5\xbd\x8e\xbd\xf1" "\xcf\xd0\xcf\x27\x1a\xbf\xef\xec\xfb\xce\xbb\xcf\x3e\xf3\xce\x8c\x67\x9d" "\xd5\x06\xf8\xc2\xba\x71\x29\xcd\xc7\x29\x72\xe3\xd2\xdb\x8f\xca\xf5\xd5" "\x95\x99\xce\xea\xca\xcc\x89\xba\xb9\x93\xa4\xac\x37\x92\x66\xaf\x48\x71" "\x3f\x29\x9e\x24\xb3\x65\x7b\x31\xb0\x64\xa0\xdc\xe2\xa3\x85\xeb\xef\x7e" "\xfa\x74\xf5\xb3\xde\x5a\xb3\x5e\xaa\xfe\x63\xcf\xdb\x6e\x88\x21\x7d\x97" "\xeb\x25\x53\xf5\x78\x53\x43\xb7\x1c\xdf\xed\x53\x2c\xd7\xe1\xe5\x54\x92" "\x9b\x75\xb9\x51\x6b\xb7\x63\x6d\xe8\x58\x26\xed\x62\x5d\xc2\x91\xeb\x6e" "\xb1\x3c\xca\xe6\xa3\x1c\xb7\xc0\x31\xd3\xbf\x3a\x15\xbd\xeb\xe6\x16\x93" "\xc9\xc9\x24\x13\xf5\xef\x01\xa9\xcf\x0e\x8d\xc3\x8b\xf0\x60\x8c\x74\x96" "\x03\x00\x00\x80\x97\xd4\x27\x0f\x8e\x3a\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\x78\xf9\x8c\xf7\x8a\xa2\x5e\x1a\x75\x99\xa9\x14\xfd\xef\xff\x6f" "\xf5\x1f\xab\xeb\xc7\xd0\xec\xae\x7b\x3e\x3e\xd0\x38\x00\x00\x00\x00\x00" "\x00\x00\xe0\x70\x7c\xfd\x59\x9e\xe5\x51\x4e\xf7\xd7\xbb\x45\xf5\x37\xff" "\x0b\xd5\xca\xd9\x7c\xde\x4d\xbe\x94\xf7\xf3\x30\xf3\x59\xcc\xe5\x3c\xca" "\x5c\x96\xb2\x94\xc5\x5c\x49\x32\x39\x30\x50\xeb\xd1\xdc\xd2\xd2\xe2\x95" "\xb5\x2d\x4b\xc3\xb7\xbc\x3a\x74\xcb\xab\x87\xf5\x8a\x01\x00\x00\x00\x00" "\x00\x00\xe0\xff\xd2\x6f\xd2\x5e\xff\xfb\x3f\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x1c\x07\x45\x32\xd6\x2b\xaa\xe5\x6c\x5d\x66\x32\x8d\x66" "\xd6\xdb\xb2\x9c\xfc\x2b\x49\xeb\xa8\xe3\x1d\x41\x31\xec\xc1\x89\xc3\x8f" "\x03\x00\x00\x00\xf6\xe4\x45\xee\x65\x5f\x79\x96\x67\x79\x94\xd3\xfd\xf5" "\x6e\x51\xdd\xf3\x7f\xb9\xba\x5f\x9e\xc8\xfb\xb9\x9f\xa5\x2c\x64\x29\x9d" "\xcc\xe7\x56\x7d\x0f\x5d\xde\xf5\x37\x56\x57\x66\x3a\xab\x2b\x33\xf7\xca" "\x65\xf3\xa8\xad\x7c\xff\x3f\x23\x85\x51\x8d\x58\xbf\xbf\x30\xfc\x99\xcf" "\x57\x3d\xda\xb9\x9d\x85\xea\x91\xcb\xb9\x59\x05\x73\x2b\x8d\x6a\xcb\x5c" "\x4c\xce\xf7\xe3\x19\x1e\xd7\x87\x65\x4c\xc5\xf7\x6a\xbb\x8c\xac\x59\xa7" "\xb5\x7c\xb2\x3f\x6d\xf7\x2e\xc2\xbe\x78\x3c\x62\xff\xc9\x32\xb8\x24\xb7" "\x33\x5e\x3f\xd2\x8b\xad\xcc\xc6\x99\x5e\x06\x8a\xea\x8d\x9a\x64\x73\x26" "\x76\xdc\x3b\xcd\xcd\xcf\x94\x46\xc6\xd7\x72\x7f\x25\x8d\xb5\x77\x7e\xce" "\x1e\x40\xce\x4f\x0e\xbc\x9e\xdf\x1f\x68\xce\x47\xb5\x96\x89\x46\xaa\x4c" "\x5c\xed\xcf\xbe\xf2\x98\x79\x7e\x26\x92\x6f\xfc\xfd\xaf\x3f\xbd\xd3\xb9" "\x7f\xf7\xce\xed\x87\x97\x8e\xcf\x4b\xda\xc1\xd8\x36\x8f\x6f\x9e\x13\x33" "\x03\x99\xf8\xca\x4b\x9d\x89\xe6\x88\xfd\xa7\xab\x4c\x9c\x5b\x5b\xbf\x91" "\x1f\xe5\x27\xb9\x94\xa9\xbc\x93\xc5\x2c\xe4\xe7\x99\xcb\x52\xe6\xd3\xad" "\xdb\xe7\xea\xf9\x5c\xfe\x9c\x7c\x7e\xa6\x66\x37\xac\xbd\xb3\x53\x24\xad" "\x7a\xbf\xf4\xf6\xd9\x6e\x62\x9a\xca\x0f\xab\xda\x5c\x2e\x54\xdb\x9e\xce" "\x42\x8a\x3c\xc8\xad\xcc\xe7\xad\xea\xdf\xd5\x5c\xc9\xb7\x73\x2d\xd7\x72" "\x7d\x60\x0f\x9f\xdb\x36\xee\xea\xb5\x55\x47\x7d\x63\xf3\x51\xdf\xdf\xd3" "\xff\x18\x1a\xfc\xc5\x6f\xd6\x95\x76\x92\x3f\xd4\xe5\x96\x1c\x6c\xb2\xdd" "\xec\xdc\x2f\xbd\x73\x7f\x99\xd7\x33\x03\x79\xed\xcd\xfa\xa7\x6b\xbd\xce" "\x0c\x1c\x07\xd3\x03\x59\x7a\xb5\x9f\x9d\xf1\xa1\x83\xbf\xc8\xb9\xb1\xf9" "\xd5\xba\x52\x3e\xc7\x6f\xeb\xf2\x78\x98\xac\x33\x51\x1e\x40\xfd\xab\x44" "\x3f\xba\xd7\x7a\x99\x68\x56\xd7\xa2\xad\xf3\xfc\xcf\xdd\xea\x1a\xd6\xb9" "\x7f\x77\xf1\xce\xdc\xcf\xb6\x19\x7f\x39\xa7\x36\xac\xbf\x51\x97\xe5\xb4" "\x5a\xf9\xda\x6e\xa3\x1c\xbe\x2b\xf6\x57\x39\x5f\x5e\xcd\x44\x7d\x26\xd9" "\x38\x3b\xca\xb6\xd7\xd6\xce\x32\x67\x36\x5c\x55\x5b\xf5\x5f\x5c\x7a\x6d" "\x8d\x2d\x6d\xe7\xaa\xb6\xa2\xe8\x1f\xa9\x3f\xce\x83\x6a\x02\x6c\x3d\x52" "\x5b\xf5\xef\x70\x5b\x47\xba\x5a\xb5\xb5\x87\xb6\xcd\x54\x6d\xe7\x07\xda" "\x36\xfc\xbe\x95\x07\xe9\xe4\xd6\x21\xe4\x0f\x80\x3d\x9a\xcc\xc9\x56\xfb" "\xdf\xed\x4f\xda\x1f\xb7\x7f\xd7\xbe\xd3\x7e\x7b\xe2\x07\x27\xbe\x73\xe2" "\xf5\x56\xc6\xff\x39\xfe\xdd\xe6\xf4\xd8\x1b\x8d\xd7\x8b\xbf\xe5\xe3\xfc" "\x6a\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\x78\x71\x0f\x7f\xf1\xc1\xdd\xb9\x4e" "\x67\x7e\x71\x78\xa5\xd1\xe9\x9c\xa8\x7b\x6e\xdb\x67\x78\x65\xa7\x91\x37" "\x55\x8a\xfa\x0b\x7d\x46\xdb\xea\xf8\x56\x26\x36\x67\xac\xfa\x9e\xa3\x43" "\x0f\xa3\x5d\x87\xd1\x7d\x65\xbb\x3e\xdd\x5f\x27\x87\x9e\x9f\xfe\x97\x08" "\x0e\xef\xf3\xc7\xb2\xd2\xcc\x6e\x06\x9c\xdd\xa9\xcf\x87\x47\x3a\x13\xc6" "\x8e\x7c\x1e\xee\x5c\x19\xcb\xf0\x09\x70\x84\x27\x25\xe0\x50\xbc\xb9\x74" "\xaf\x99\xe4\x83\x6f\x2d\xdc\x9b\x7b\x6f\xfe\xbd\xf9\xfb\xe3\xd7\xae\x5d" "\x9f\xbe\x7e\xed\xad\x99\x37\x6f\x2f\x74\xe6\xa7\x7b\x3f\x8f\x3a\x4a\xe0" "\x20\xac\x5f\xf4\x8f\x3a\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\xb7" "\x86\x7d\x30\xe0\xc2\xa9\x91\x3f\xed\x33\xec\x33\x1e\xfe\x67\x21\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xb0\x2f\x6e\x5c\x4a\xf3\x71\x8a\x5c\x99\xbe\x3c\x5d\xae\xaf\xae\xcc" "\x74\xca\xa5\x5f\x5f\xef\xd9\x4c\xd2\x68\x24\xc5\x2f\x93\xe2\x49\x32\x9b" "\xde\x92\xc9\x81\xe1\x8a\xfc\xe5\x49\xba\x43\x9e\xe7\xa3\x85\xeb\xef\x7e" "\xfa\x74\xf5\xb3\xf5\xb1\x9a\xbd\xfe\x49\xa3\x2e\xf7\x60\xb9\x5e\x32\x95" "\x64\xac\x2e\xf7\x6b\xbc\x9b\x7b\x1e\xaf\xf8\x6f\xf5\x0a\x4f\xf4\xd6\x3e" "\xef\x76\xbb\xb3\x7b\x8b\x0f\xf6\xc7\xff\x02\x00\x00\xff\xff\xcb\x4c\xef" "\x4e", 1711); syz_mount_image(/*fs=*/0x20000000, /*dir=*/0x20000040, /*flags=MS_LAZYTIME|MS_SYNCHRONOUS*/ 0x2000010, /*opts=*/0x20000100, /*chdir=*/0x81, /*size=*/0x6af, /*img=*/0x200003c0); return 0; }