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