// 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); memcpy((void*)0x20000000, "hfsplus\000", 8); memcpy((void*)0x20000080, "./bus\000", 6); memcpy( (void*)0x20000d00, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xef\xac\xd7\x8e\x1d\xaa\xe0" "\xb4\x49\x1b\xa1\x22\xa2\x44\x2a\x48\x11\x89\x63\xcb\x05\x73\x21\x20\x84" "\x2c\x51\xa1\xa8\x1c\x38\x5b\x89\xd3\x58\xd9\x38\x95\xed\x22\xb7\x42\xe0" "\x02\x82\x13\x12\x87\xfe\x01\x05\xc9\x37\x4e\x48\xdc\x83\xc2\xb9\xdc\x7a" "\xf5\xb1\x12\x12\x97\x88\x43\xc4\xc5\x68\x66\x67\xed\xb5\x77\x1d\xdb\x89" "\x5f\xe1\xf3\x89\xc6\xcf\x33\xf3\x3c\xf3\xcc\x6f\x7f\xf3\xb6\x2f\x59\x6d" "\x80\xff\x5b\xd3\xd7\xd2\x7c\x9c\x22\xd3\xd7\xde\x59\x2e\xe7\xd7\x56\x27" "\x5a\x6b\xab\x13\x67\xea\xe6\x56\x92\xb2\xde\x48\x9a\xed\x22\xc5\x7c\x52" "\x3c\x49\x6e\x95\xed\x45\xd7\x94\xae\xb2\xc7\x27\x73\x53\xef\x7e\xfe\x74" "\xed\x8b\xf6\x5c\xb3\x9e\xaa\xfe\x8d\xe7\xad\xd7\x47\x9f\xbe\x2b\xf5\x94" "\xcb\x49\x06\xea\xb2\xd7\xe0\x5e\x37\xb1\x65\xbc\x3b\x49\x5e\xe9\xe9\x32" "\xb4\xd7\xb1\xb6\x74\x2c\x93\x76\xb5\x2e\xe1\xd8\xad\xf7\x58\xd9\xcf\xea" "\xfb\x39\x6f\x81\x13\xa6\x73\x77\x2a\xda\xf7\xcd\x1e\xa3\xc9\xd9\x24\xc3" "\xf5\xf3\x80\xd4\x57\x87\xc6\xd1\x45\x78\x38\xf6\x75\x95\x03\x00\x00\x80" "\x53\xea\xb3\x47\xc7\x1d\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\x9c\x3e" "\xf5\xef\xff\x17\xf5\xd4\xa8\xcb\x5c\x4e\xd1\xf9\xfd\xff\xa1\xce\xb2\xba" "\x7e\xaa\x3d\x3e\xee\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x00\x7c\xed\x59" "\x9e\x65\x39\xe7\x3a\xf3\xeb\x45\xf5\x99\xff\x95\x6a\xe6\x42\xfe\xb3\x9e" "\x7c\x29\x1f\x64\x31\xb3\x59\xc8\xf5\x2c\x67\x26\x4b\x59\xca\x42\x6e\x26" "\x19\xed\x1a\x68\x68\x79\x66\x69\x69\xe1\xe6\xc6\x9a\xa5\xfe\x6b\x8e\xf7" "\x5d\x73\xfc\xa8\x1e\x31\x00\x00\x00\x00\x00\x00\x00\xfc\x4f\xfa\x55\xa6" "\x37\x3f\xff\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\x80\x93\xa0\x48" "\x06\xda\x45\x35\x5d\xe8\xd4\x47\xd3\x68\xb6\xab\x19\x2a\xff\xac\x24\xff" "\xe8\xd4\x4f\x89\xa2\x67\xc9\x8f\x6e\xef\xd4\x02\x00\x00\x00\x27\xd6\xf0" "\x0b\xac\xf3\xe5\x67\x79\x96\xe5\x9c\xeb\xcc\xaf\x17\xd5\x6b\xfe\xd7\xab" "\x57\xc5\xc3\xf9\x20\xf3\x59\xca\x5c\x96\xd2\xca\x6c\xee\xd6\xaf\x94\xcb" "\x57\xfd\x8d\xb5\xd5\x89\xd6\xda\xea\xc4\xc3\x72\xea\x1d\xf7\x7b\xff\xda" "\x57\x18\xd5\x88\x69\xbf\xf7\xd0\x7f\xcb\x97\xaa\x1e\x23\xb9\x97\xb9\x6a" "\xc9\xf5\xdc\xa9\x82\xb9\x9b\x46\xb5\x66\xe9\x52\x27\x9e\xfe\x71\x7d\x5c" "\xc6\x54\x7c\xb7\xb6\xc7\xc8\x9a\x75\x5a\xcb\x8d\xfd\xe1\x50\xdf\x2b\x78" "\xbc\xcf\xfe\xa3\x65\x70\xc9\x46\x46\xc6\xea\xd8\xca\x6c\x9c\x6f\x67\xa0" "\xa8\xde\xa8\x49\xb6\x67\x62\xd7\xbd\xd3\xdc\xbe\xa5\x34\x32\xb8\xb1\xa5" "\x9b\x69\x6c\xbc\xf3\x73\xe1\x10\x72\x7e\xb6\x2e\xcb\xc7\xf3\xdb\x13\xf5" "\xfe\xcc\x46\x26\x1a\xa9\x32\x31\xde\x75\xf4\xbd\xfe\xfc\x4c\x24\x5f\xff" "\xeb\x9f\x7f\x7a\xbf\x35\xff\xe0\xfe\xbd\xc5\x6b\x27\xe7\x21\xed\x62\x60" "\x87\xe5\xdb\x8f\x89\x89\xae\x4c\xbc\x71\xaa\x33\xd1\xdc\x67\xff\xb1\x2a" "\x13\x17\x37\xe6\xa7\xf3\xc3\xfc\x24\xd7\x72\x39\xb7\xb3\x90\xb9\xfc\x2c" "\x33\x59\xca\x6c\xd6\xeb\xf6\x99\xfa\x78\x2e\xff\x8e\x3e\x3f\x53\xb7\xb6" "\xcc\xdd\xde\x2d\x92\xa1\x7a\xbf\xb4\xf7\x59\xbf\x98\x56\xb6\xc5\x74\x39" "\x3f\xa8\x6a\x33\xb9\x52\xad\x7b\x2e\x73\x29\xf2\x28\x77\x33\x9b\xb7\xab" "\x7f\xe3\xb9\x99\x6f\x65\x32\x93\x99\xea\xda\xc3\x17\x77\x8c\xbb\x7a\x6c" "\xd5\x59\xdf\xd8\x7e\xd6\x77\xf6\xf4\xdf\xfa\x06\x7f\xf5\x1b\x75\x65\x24" "\xc9\xef\xea\xb2\x27\x07\xdb\xec\x74\x74\x1e\x94\xf6\xb5\xbf\xcc\xeb\xf9" "\xae\xbc\xb6\x8f\xfa\xa7\x1b\xbd\xce\x77\x9d\x07\x63\x5d\x59\x7a\xb5\x93" "\x9d\xc1\xbe\x83\xbf\xc8\xb5\xb1\xf9\x95\xba\x52\x6e\xe3\xd7\x75\x79\x32" "\x8c\xd6\x99\x28\x4f\xa0\xce\x5d\xa2\x13\xdd\x6b\xed\x4c\x34\xab\x7b\x51" "\xef\x71\xfe\xc7\xea\xdc\x58\x6c\xcd\x3f\x58\xb8\x3f\xf3\xfe\x0e\xe3\xaf" "\x6c\x9b\x7f\xab\x2e\xcb\xc3\x6a\xf5\xab\x7b\x8d\xb2\xff\xae\x38\x58\xe5" "\xf1\xf2\x6a\x86\xeb\x2b\xc9\xd6\xa3\xa3\x6c\x7b\x6d\xe3\x2a\x73\x7e\xcb" "\x5d\x75\xa8\xfe\xc4\xa5\xdd\xd6\xe8\x69\xbb\x58\xb5\x15\x45\xe7\x4c\xfd" "\xf1\x8e\x67\xea\x50\xfd\x1c\xae\x77\xa4\xf1\xaa\xed\x8d\xbe\x6d\x13\x55" "\xdb\xa5\xae\xb6\x2d\xcf\xb7\xf2\x28\xad\xdc\x3d\x82\xfc\x01\xf0\x92\x46" "\x73\x76\x68\xe4\x9f\x23\x9f\x8d\x7c\x3a\xf2\x9b\x91\xfb\x23\xef\x0c\x7f" "\xff\xcc\xb7\xcf\xbc\x39\x94\xc1\xbf\x0f\x7e\xa7\x39\x36\xf0\x56\xe3\xcd" "\xe2\x2f\xf9\x34\xbf\xd8\x7c\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\xbc\xb8\xc5\x0f" "\x3f\x7a\x30\xd3\x6a\xcd\x2e\xf4\xaf\x34\x76\x6e\xda\xa5\xb2\xdb\xc8\xdb" "\x2a\x45\xfd\x83\x3e\x2f\xb4\xad\x13\x58\x19\x4e\xb2\x65\xc9\x60\xb9\xe0" "\xc8\xc3\x18\xd9\x1e\x46\x4f\x65\xfd\x97\xc9\x91\xe7\xa7\xf3\x23\x82\xfd" "\xfb\xfc\xbe\xac\x34\xb3\x97\x01\x6f\xed\xd6\xe7\xe3\x63\x3f\x12\x4e\x7a" "\x65\x20\xfd\x0f\x80\x63\xbe\x30\x01\x87\xee\xc6\xd2\xc3\xf7\x6f\x2c\x7e" "\xf8\xd1\x37\xe7\x1e\xce\xbc\x37\xfb\xde\xec\xfc\xe0\xe4\xe4\xd4\xd8\xd4" "\xe4\xdb\x13\x37\xee\xcd\xb5\x66\xc7\xda\x7f\x8f\x3b\x4a\xe0\x30\x6c\xde" "\xf4\x8f\x3b\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\xaf\xfa\x7d\x31" "\xe0\xca\x2b\xbb\x7d\x69\x64\x4f\xdf\xf1\xf0\x3f\x0b\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" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x03" "\x31\x7d\x2d\xcd\xc7\x29\x72\x73\xec\xfa\x58\x39\xbf\xb6\x3a\xd1\x2a\xa7" "\x4e\x7d\xb3\x67\x33\x49\xa3\x91\x14\x3f\x4f\x8a\x27\xc9\xad\xb4\xa7\x8c" "\x76\x0d\x57\xe4\x4f\x4f\xb2\xde\x67\x3b\x9f\xcc\x4d\xbd\xfb\xf9\xd3\xb5" "\x2f\x36\xc7\x6a\xb6\xfb\x27\x8d\xba\x7c\x09\x2b\xf5\x94\xcb\x49\x06\xea" "\xf2\xa0\xc6\xbb\xf3\xd2\xe3\x15\xff\xee\x3c\xc2\x32\x61\x57\x3b\x89\x83" "\xe3\xf6\xdf\x00\x00\x00\xff\xff\xdc\xa7\xf4\xe7", 1686); syz_mount_image(/*fs=*/0x20000000, /*dir=*/0x20000080, /*flags=MS_SYNCHRONOUS*/ 0x10, /*opts=*/0x200013c0, /*chdir=*/0, /*size=*/0x696, /*img=*/0x20000d00); return 0; }