// https://syzkaller.appspot.com/bug?id=1c97b623449a4e11fcb780d670b28e6f4727296b // 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=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*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=*/0x1000ul, /*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$ext4 arguments: [ // fs: ptr[in, buffer] { // buffer: {65 78 74 34 00} (length 0x5) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[in, fs_options[ext4_options]] { // fs_options[ext4_options] { // elems: array[fs_opt_elem[ext4_options]] { // fs_opt_elem[ext4_options] { // elem: union ext4_options { // nobarrier: buffer: {6e 6f 62 61 72 72 69 65 72} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // dioread_nolock: buffer: {64 69 6f 72 65 61 64 5f 6e 6f 6c 6f // 63 6b} (length 0xe) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // debug_want_extra_isize: fs_opt["debug_want_extra_isize", // fmt[hex, int32]] { // name: buffer: {64 65 62 75 67 5f 77 61 6e 74 5f 65 78 74 72 // 61 5f 69 73 69 7a 65} (length 0x16) eq: const = 0x3d (1 // bytes) val: int32 = 0x5a (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // prjquota: buffer: {70 72 6a 71 75 6f 74 61} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // max_dir_size_kb: fs_opt["max_dir_size_kb", fmt[hex, int32]] { // name: buffer: {6d 61 78 5f 64 69 72 5f 73 69 7a 65 5f 6b 62} // (length 0xf) eq: const = 0x3d (1 bytes) val: int32 = 0x4 (18 // bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // nobarrier: buffer: {6e 6f 62 61 72 72 69 65 72} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // nodelalloc: buffer: {6e 6f 64 65 6c 61 6c 6c 6f 63} (length // 0xa) // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x485 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x485) // } // ] // returns fd_dir memcpy((void*)0x200000000180, "ext4\000", 5); memcpy((void*)0x200000000040, "./file1\000", 8); memcpy((void*)0x200000000b40, "nobarrier", 9); *(uint8_t*)0x200000000b49 = 0x2c; memcpy((void*)0x200000000b4a, "dioread_nolock", 14); *(uint8_t*)0x200000000b58 = 0x2c; memcpy((void*)0x200000000b59, "debug_want_extra_isize", 22); *(uint8_t*)0x200000000b6f = 0x3d; sprintf((char*)0x200000000b70, "0x%016llx", (long long)0x5a); *(uint8_t*)0x200000000b82 = 0x2c; memcpy((void*)0x200000000b83, "prjquota", 8); *(uint8_t*)0x200000000b8b = 0x2c; memcpy((void*)0x200000000b8c, "max_dir_size_kb", 15); *(uint8_t*)0x200000000b9b = 0x3d; sprintf((char*)0x200000000b9c, "0x%016llx", (long long)4); *(uint8_t*)0x200000000bae = 0x2c; memcpy((void*)0x200000000baf, "nobarrier", 9); *(uint8_t*)0x200000000bb8 = 0x2c; memcpy((void*)0x200000000bb9, "nodelalloc", 10); *(uint8_t*)0x200000000bc3 = 0x2c; *(uint8_t*)0x200000000bc4 = 0; memcpy( (void*)0x200000000640, "\x78\x9c\xec\xdb\xcb\x6b\x5c\xd5\x1f\x00\xf0\xef\xbd\x79\xb5\xbf\x3e\xd2" "\x5f\xad\x8f\xd6\xaa\xd1\x22\x04\xc5\xa4\x49\xab\x76\xe1\x46\x51\x10\xa9" "\x28\xa8\x50\x97\x31\x99\x96\xd0\x69\x23\x4d\x14\x5b\x8b\x4d\x45\x5c\x09" "\x52\xd0\x75\x71\x29\xfa\x17\xb8\x52\x04\x51\x57\x42\xb7\xae\x5c\x49\xa1" "\x68\x37\x6d\x5d\x45\xee\x9d\x7b\xd3\xc9\x74\x26\x4d\xcd\xa4\x93\xc7\xe7" "\x03\x93\x9c\x73\x1f\x73\xce\x77\xce\x7d\x9c\x7b\xce\x4c\x00\x1b\xd6\x40" "\xf6\x27\x89\xd8\x1a\x11\xbf\x47\x44\x7f\x2d\xbb\x70\x83\x81\xda\xbf\xeb" "\x57\xcf\x8e\xdf\xb8\x7a\x76\x3c\x89\xb9\xb9\x37\xfe\x4a\xf2\xed\xae\x5d" "\x3d\x3b\x5e\x6e\x5a\xee\xb7\xa5\xc8\x0c\xa6\x11\xe9\x27\x49\x51\xc8\x42" "\xd3\xa7\xcf\x1c\x1f\xab\x56\x2b\xa7\x8a\xfc\xf0\xcc\x89\x77\x87\xa7\x4f" "\x9f\x79\xea\xfd\x13\x63\xc7\x2a\xc7\x2a\x27\x47\x0f\x1d\x3a\x78\x60\xe4" "\xd9\x67\x46\x9f\x6e\x4b\x9c\x59\x5c\xd7\xf6\x7c\x34\xb5\x77\xf7\xcb\x6f" "\x5f\x78\x75\xfc\xc8\x85\x77\x7e\xf9\x36\xab\xef\xd6\x62\x7d\x7d\x1c\xed" "\x32\x90\x05\xfe\xf7\x5c\xae\x71\xdd\xe3\xed\x2e\xac\xc3\xb6\xd5\xa5\x93" "\xee\xa5\xec\xd1\xb5\x72\x95\x61\xc9\xb2\x56\xc8\x9a\xab\x27\x3f\xff\xfb" "\xa3\x2b\x6e\x36\x5e\x7f\xbc\xf4\x71\x47\x2b\x07\xac\xa8\xec\xde\xd4\xd7" "\x7a\xf5\xec\x1c\xb0\x8e\x25\xd1\xe9\x1a\x00\x9d\x51\xde\xe8\xb3\xe7\xdf" "\xf2\x75\x97\xba\x1e\xab\xc2\x95\xe7\x6b\x0f\x40\x59\xdc\xd7\x8b\x57\x6d" "\x4d\x77\xa4\xc5\x36\x3d\x0d\xcf\xb7\xed\x34\x10\x11\x47\x66\xff\xb9\x98" "\xbd\x62\x85\xc6\x21\x00\x00\xea\x7d\x36\xfe\xe5\xe1\xde\x88\xf8\xf0\xc6" "\x37\xaf\x64\x7d\x8f\xfe\x88\xe8\x8b\x88\xb7\xe6\xfb\x87\x7f\xe4\xdb\x6d" "\x2f\xe6\x50\x76\x44\xc4\xff\x23\x62\x67\x44\xdc\x13\x11\xbb\x22\xe2\xde" "\x88\xb8\x2f\x22\xee\x8f\x88\x07\x96\x59\x9f\x5b\xfb\x3f\xe9\xe5\x65\xbe" "\xe5\xa2\xb2\xfe\xdf\x73\xc5\xdc\xd6\xc2\xfe\x5f\xd9\xfb\x8b\x1d\x5d\x45" "\x6e\x5b\x1e\x7f\x4f\x72\x74\xb2\x5a\xd9\x1f\x7d\xf9\x67\x32\x18\x3d\x7d" "\x59\x7e\x64\x91\x32\x7e\x78\xf1\xd2\xe7\xad\xd6\xd5\xf7\xff\xb2\x57\x56" "\x7e\xd9\x17\x2c\xea\x71\xb9\xbb\x61\x80\x6e\x62\x6c\x66\x2c\xef\x94\xb6" "\xc1\x95\xf3\x11\x7b\xba\x9b\xc5\x9f\xcc\xcf\x04\x24\x11\xb1\x3b\x22\xf6" "\xdc\xd9\x5b\x6f\x2f\x13\x93\x4f\x7c\xbd\xb7\xd5\x46\xcd\xe3\xbf\x76\x71" "\x49\x25\x2c\x69\x9e\x69\x71\x73\x5f\x65\xe1\xcd\x66\xf1\xcf\x46\x43\xfc" "\xa5\xa4\x7e\x7e\x72\xf2\x96\xf9\xc9\xe1\x4d\x51\xad\xec\x1f\xae\x1d\x15" "\xcd\xfc\xfa\xdb\xa7\xaf\xb7\x2a\xff\xf6\xed\xbf\xb2\xae\x54\x6a\xff\xeb" "\xda\xbf\x71\x93\x1d\x49\xfd\x7c\xed\x74\x7b\xcb\xff\x8f\xc7\x7f\xda\x9b" "\xbc\x99\xcf\x33\xf7\x16\xcb\x3e\x18\x9b\x99\x39\x35\x12\xd1\x9b\x1c\xce" "\xf3\x0b\x96\x8f\xde\xdc\xb7\xcc\x97\xdb\x67\xc7\xff\xe0\xbe\xe6\xe7\xff" "\xce\x62\x9f\x2c\xfe\x07\x23\x22\x3b\x88\x1f\x8a\x88\x87\x23\xe2\x91\xa2" "\xee\x8f\x46\xc4\x63\x11\xb1\x6f\x91\x18\x7f\x7e\xe1\xf6\xf1\x47\xda\xa1" "\xf6\x3f\x1f\x31\xd1\xf4\xfa\x37\x7f\xfc\x37\xb4\xff\x9d\x27\xba\x8e\xff" "\xf4\x5d\xab\xf2\x9b\xb5\xff\xf7\xb7\xb4\xff\xc1\x3c\x35\x58\x2c\xc9\xaf" "\x7f\xb7\xd1\xac\x3a\xd9\xe5\xa2\xb1\x82\xcb\xf9\xec\x00\x00\x00\x60\xad" "\x48\xf3\xef\xc0\x27\xe9\xd0\x7c\x3a\x4d\x87\x86\x6a\xdf\xe1\xdf\x15\xff" "\x4b\xab\x53\xd3\x33\x4f\x1e\x9d\x7a\xef\xe4\x44\x5c\xda\x5e\x1b\xff\x4c" "\xcb\x91\xae\xfe\x62\x3c\xb4\x3a\x59\xad\x8c\x24\xb3\xc5\x3b\xd6\xc6\x47" "\x47\x8b\xb1\xe2\x72\xbc\xf4\x40\x31\x6e\xfc\x45\xd7\xe6\x3c\x3f\x34\x3e" "\x55\x9d\xe8\x70\xec\xb0\xd1\x6d\x69\x71\xfe\x67\xfe\xf4\x13\x0d\x58\xef" "\x36\x37\x5d\x3a\xda\x7b\xd7\x2b\x02\x74\x40\xe3\x3c\x7a\xba\x30\x7b\xee" "\xb5\x70\x31\x80\xf5\xaa\x0d\xdf\xa3\x01\xd6\xa8\xf2\xfc\x6f\xf1\xbc\x5f" "\xff\x3b\x18\x60\x9d\x71\xff\x87\x8d\xab\xd9\xf9\x7f\xae\x21\x6f\x2e\x00" "\xd6\x27\xf7\x7f\xd8\xb8\x9c\xff\xb0\x41\xa5\x3f\x2e\x63\x67\x4f\x05\xb0" "\xd6\xb9\xff\xc3\x86\xb4\x9c\xdf\xf5\xaf\x60\x62\xd3\xea\xa8\x46\x67\x12" "\xab\xb5\x51\xf2\x44\x44\x99\x48\x57\x45\x7d\x24\x56\x28\xd1\xe9\x2b\x13" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x7b\xfc\x1b\x00\x00\xff" "\xff\x03\xd3\xef\x0d", 1157); syz_mount_image(/*fs=*/0x200000000180, /*dir=*/0x200000000040, /*flags=*/0, /*opts=*/0x200000000b40, /*chdir=*/1, /*size=*/0x485, /*img=*/0x200000000640); return 0; }