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