// https://syzkaller.appspot.com/bug?id=82ad35bc46edf3f7249743dfc76b48af0a13c78e // 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"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } 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=*/0x1ffffffff000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$hfsplus arguments: [ // fs: ptr[in, buffer] { // buffer: {68 66 73 70 6c 75 73 00} (length 0x8) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 00} // (length 0xfa) // } // flags: mount_flags = 0x2000010 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x6f1 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6f1) // } // ] // returns fd_dir memcpy((void*)0x200000000100, "hfsplus\000", 8); memcpy((void*)0x200000002900, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 250); memcpy( (void*)0x200000000d80, "\x78\x9c\xec\xdd\xcf\x6f\x1c\x67\xfd\x07\xf0\xf7\xac\xd7\xae\x37\xdf\x2a" "\x5f\xa7\x4d\x68\x84\x82\x30\x89\x54\x90\x22\x12\x27\x56\x0a\xe1\x82\x41" "\x08\xe5\x50\xa1\xaa\x1c\x7a\xb6\x12\xa7\xb1\xb2\x49\xaa\xc4\x45\x69\x85" "\xc0\x05\x04\x27\x24\x0e\xfd\x03\x0a\x92\x6f\x1c\x10\x12\xf7\xa0\x70\xe1" "\x52\x6e\xbd\xfa\x58\x09\x89\x4b\x04\x52\x54\x0e\x8b\x66\x76\xd6\xde\x5d" "\xaf\x7f\x25\xce\x3a\x94\xd7\x2b\x1a\xcf\x33\xf3\x3c\xf3\xcc\x67\x3f\xf3" "\xcc\x8c\x77\x9d\xd5\x04\xf8\x9f\x75\xe5\x6c\x9a\x0f\x52\xe4\xca\xd9\xd7" "\xef\x97\xcb\xeb\x6b\xf3\xed\xf5\xb5\xf9\x17\xea\xea\x76\x92\xb2\xdc\x48" "\x9a\xdd\x59\x8a\xdb\x49\xf1\x30\x59\x28\xd7\x14\xd9\x9c\xd2\x37\xdf\xe2" "\xc3\xe5\xcb\x6f\x7e\xf2\x68\xfd\xd3\x24\xad\x6e\x5f\xcd\x5e\xfb\x89\x9d" "\xb6\x1b\x61\x44\xdb\xd5\x7a\xca\x6c\xdd\xdf\xec\xc8\x2d\x27\xf7\xba\x8b" "\xd5\x3a\xbc\xbc\x98\xe4\x6a\x3d\x1f\x34\xb5\xd7\xbe\x06\x1a\x2e\x24\x39" "\x53\xcf\xe1\xd0\x75\x06\x35\xd2\x59\xdd\xcf\xe6\xfb\x39\x6f\x81\xe7\x4c" "\xef\xee\x54\x74\xef\x9b\x5b\xcc\x24\x47\x92\x4c\xd7\xbf\x07\xa4\xbe\x3a" "\x34\xc6\x17\xe1\x81\xfa\x4a\xaf\xb0\xaf\xab\x1c\x00\x00\x00\x3c\x87\xfe" "\xdd\xd9\xbd\xcd\xc7\x77\xc6\x11\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x7c\xbe\x54\xcf\xff\x6f\x6d\x2c\x36\xba\xab\x92\xd9\x14\xbd\xe7\xff\x4f" "\xf5\xd6\xd5\xe5\xe7\xd0\xc2\x9e\x5b\x3e\x78\xa6\x71\x00\x00\x00\x00\x00" "\x00\x00\xc0\x78\x7c\xf9\x71\x1e\xe7\x7e\x8e\xf6\x96\x3b\x45\xf5\x37\xff" "\xd3\xd5\xc2\xf1\x7c\xd6\x49\xfe\x2f\xef\xe6\x5e\x96\x72\x37\xe7\x72\x3f" "\x8b\x59\xc9\x4a\xee\xe6\x42\x92\x99\xbe\x8e\xa6\xee\x2f\xae\xac\xdc\xbd" "\xb0\xb1\x65\x69\xf4\x96\x17\x47\x6e\x79\x71\x5c\xaf\x18\x00\x00\x00\x00" "\x00\x00\x00\x3e\x97\x7e\x96\xd6\xe6\xdf\xff\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\xe0\x79\x50\x24\x13\xdd\x59\x35\x1d\xaf\xe7\x99\x49\xa3" "\x99\xcd\xba\xac\x26\x7f\x4b\x32\x75\xd8\xf1\xee\x43\x31\x6a\xe5\x83\xf1" "\xc7\x01\x00\x00\x00\x4f\x65\xfa\x09\xb6\xf9\xff\xc7\x79\x9c\xfb\x39\xda" "\x5b\xee\x14\xd5\x7b\xfe\x2f\x54\xef\x97\xa7\xf3\x6e\x6e\x67\x25\xcb\x59" "\x49\x3b\x4b\xb9\x56\xbf\x87\x2e\xdf\xf5\x37\xd6\xd7\xe6\xdb\xeb\x6b\xf3" "\xb7\xca\xa9\x5c\x1e\xec\xf7\x3b\xff\xd8\x57\x18\x53\x75\x0f\x13\xd5\xd2" "\xa8\x3d\x9f\xac\x5a\xb4\x72\x3d\xcb\xd5\x9a\x73\xb9\x5a\x05\x73\x2d\x8d" "\xee\xbe\xcf\x24\x27\x7b\xf1\xf4\xc5\xd5\xe7\x83\x32\xa6\xe2\xdb\xb5\x3d" "\x46\xd6\xac\xd3\x5a\xee\xec\x37\xdb\x7d\x8a\x70\x20\x06\x3f\x8a\x68\xec" "\xd0\xb2\xb5\x19\x5c\xb2\x91\x91\xb9\x3a\xb6\x72\xcb\x63\xdd\x0c\x14\xd5" "\x07\x35\xc9\x70\x26\x86\x8f\xce\x96\x9d\x35\x07\x96\x66\xaa\x26\x93\x1b" "\x7b\xba\x90\xc6\xc6\x27\x3f\xc7\x9f\x41\xce\x8f\xd4\xf3\xf2\xf5\xfc\xf2" "\x99\xe6\x7c\x2f\xfa\x73\xb1\x91\x89\x46\xaa\x4c\x5c\xec\x8d\xbe\xf2\x9c" "\xd9\x39\x13\xc9\x57\xff\xf4\xfb\xb7\x6e\xb4\x6f\xdf\xbc\x71\xfd\xde\xd9" "\xc3\x7d\x49\xfb\x30\xb1\xcd\xfa\xe1\x31\x31\xdf\x97\x89\x57\xfe\xab\x33" "\xd1\xdc\x67\xfb\xb9\x2a\x13\x27\x36\x96\xaf\xe4\xfb\xf9\x61\xce\x66\x36" "\x6f\xe4\x6e\x96\xf3\xa3\x2c\x66\x25\x4b\xe9\xd4\xf5\x8b\xf5\x78\x2e\x7f" "\xce\xec\x9c\xa9\x85\x81\xa5\x37\x76\x8b\x64\xaa\x3e\x2e\xdd\x63\xb6\x97" "\x98\x66\xf3\xbd\xaa\xb4\x98\xd3\xd5\xb6\x47\xb3\x9c\x22\x77\x72\x2d\x4b" "\x79\xad\xfa\x77\x31\x17\xf2\x8d\x5c\xca\xa5\x5c\xee\x3b\xc2\x27\xb6\x8d" "\xbb\x7a\x6d\xd5\x59\xdf\x18\x3e\xeb\x7b\x47\xfa\xcf\x23\x83\x3f\xf3\xb5" "\xba\x50\x5e\xdd\x7e\xb5\x79\x95\x5b\xd8\xe9\x15\x6f\x37\x3a\x0f\x4a\xf7" "\xda\x5f\xe6\xf5\x58\x5f\x5e\xbb\xa3\xfe\xd1\x46\xab\x63\x7d\xe7\xc1\x5c" "\x5f\x96\x5e\xea\x65\x67\x72\x64\xe7\x4f\x72\x6d\x6c\x7e\xb1\x2e\x94\xfb" "\xf8\xf9\x2e\xf7\x89\xf1\x9a\xa9\x33\x51\x9e\x40\xbd\xbb\x44\x2f\xba\x97" "\xbb\x99\x68\x56\xf7\xa2\xad\xe3\xfc\xb7\x9d\x72\xbb\xb4\x6f\x77\x3a\x37" "\x16\xdf\xd9\xa6\xff\xd5\xa1\xe5\x57\xeb\x79\x39\xac\xd6\xbe\xb4\x5b\xeb" "\x9e\xd1\x87\xe2\x60\x95\xe3\xe5\xa5\x4c\xd7\x57\x92\xc1\xd1\x51\xd6\xbd" "\xbc\x71\x95\xe9\xab\xeb\x6c\x8e\xe5\x6e\xdd\xe0\x1d\xb7\xdc\xee\x44\x55" "\x57\x14\xbd\x33\xf5\x07\xb9\x53\x0d\x80\xad\x67\xea\x54\xfd\x3b\xdc\xd6" "\x9e\x2e\x56\x75\xaf\x0c\xd5\x9d\xaa\xaf\xe1\x65\xdd\xc9\xbe\xba\x81\xdf" "\xb7\x72\x27\xed\x5c\x1b\x43\xfe\x00\x78\x12\x7f\x7d\x6b\xa3\x38\x93\x23" "\x53\xad\xbf\xb7\x3e\x6e\x7d\xd4\xfa\x45\xeb\x46\xeb\xf5\xe9\xef\xbe\xf0" "\xcd\x17\x4e\x4d\x65\xf2\x2f\x93\xdf\x6a\xce\x4d\xbc\xda\x38\x55\xfc\x31" "\x1f\xe5\x27\x9b\xef\xff\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x27\x77\xef\xbd\xf7\x6f" "\x2e\xb6\xdb\x4b\x77\x47\x17\x1a\xdb\x57\x0d\x14\x5a\x19\x5e\xb3\x5b\xcf" "\x43\x85\xa2\x7e\xa0\xcf\xa8\x36\x37\xeb\xa7\x14\xec\xab\xc3\x43\x2e\x4c" "\x27\x19\x58\x53\x3d\xe7\x68\xec\x61\xb4\x86\xc3\xd8\x52\xe8\xfc\x34\x19" "\x7b\x7e\x7a\x0f\x11\x1c\xdd\xe6\xd7\x65\xa1\xb9\xa7\xc3\xbd\x30\xb0\xe6" "\x0f\x5b\x3b\xfc\x60\xf7\x78\x26\x32\x34\x0e\xf7\x70\x5e\x3c\xc3\x42\x23" "\xe3\xdd\xe9\x44\x46\x0f\x80\xc3\xba\x22\x01\xe3\x72\x7e\xe5\xd6\x3b\xe7" "\xef\xbd\xf7\xfe\xd7\x97\x6f\x2d\xbe\xbd\xf4\xf6\xd2\xed\xc9\x4b\x97\x2e" "\xcf\x5d\xbe\xf4\xda\xfc\xf9\xeb\xcb\xed\xa5\xb9\xee\xcf\xc3\x8e\x12\x78" "\x16\x36\x6f\xfa\x87\x1d\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb0\x57" "\xa3\xbe\x18\x70\xfa\xc5\xdd\xbe\x34\xb2\xa5\xd0\x48\x32\xfc\x1d\x0f\xff" "\xb3\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x38\x10\x57\xce\xa6\xf9\x20\x45\x2e\xcc\x9d\x9b\x2b" "\x97\xd7\xd7\xe6\xdb\xe5\xd4\x2b\x6f\xb6\x6c\x26\x69\x34\x92\xe2\xc7\x49" "\xf1\x30\x59\x48\x77\xca\x4c\x5f\x77\x45\x7e\xf7\x30\x9d\x11\xfb\xf9\x70" "\xf9\xf2\x9b\x9f\x3c\x5a\xff\x74\xb3\xaf\x66\xb7\x7d\xd2\xa8\xe7\xdb\xdb" "\xb9\x36\xc9\x6a\x3d\x65\x36\xc9\x44\x3d\x7f\x0a\x03\xfd\x5d\xed\xf5\xb7" "\xf4\xaf\x27\xec\xae\xf8\x67\xef\x35\x94\x09\xfb\xac\xd3\xe9\x2c\x3c\x5d" "\x7c\x70\x30\xfe\x13\x00\x00\xff\xff\x30\x57\xf0\xc4", 1777); syz_mount_image(/*fs=*/0x200000000100, /*dir=*/0x200000002900, /*flags=MS_LAZYTIME|MS_SYNCHRONOUS*/ 0x2000010, /*opts=*/0x200000000c00, /*chdir=*/1, /*size=*/0x6f1, /*img=*/0x200000000d80); return 0; }