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