// https://syzkaller.appspot.com/bug?id=f5b30c5511e9f91516bef7d4ff05cda5c6677f03 // 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=*/0x3ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x400000000000ul, /*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=*/0x400001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x400000000140, "udf\000", 4); memcpy((void*)0x400000000080, "./bus\000", 6); *(uint8_t*)0x400000000400 = 0; sprintf((char*)0x400000000401, "%023llo", (long long)0); *(uint16_t*)0x400000000418 = 0; sprintf((char*)0x40000000041a, "0x%016llx", (long long)-1); sprintf((char*)0x40000000042c, "0x%016llx", (long long)-1); *(uint16_t*)0x40000000043e = 0; *(uint8_t*)0x400000000440 = -1; *(uint16_t*)0x400000000441 = -1; *(uint16_t*)0x400000000443 = -1; memcpy( (void*)0x400000001cc0, "\x78\x9c\xec\xdd\x4f\x6c\x1c\xd7\x7d\x07\xf0\xdf\x1b\x2d\x45\x52\x6e\x2b" "\x26\x4e\x54\xbb\xb5\x8b\x4d\x5b\xa4\x32\x63\xb9\xb2\xa4\x98\x8a\x55\xb8" "\xab\x9a\x66\x1b\x40\x96\x89\x50\xcc\x2d\x00\x57\xe4\x4a\x5d\x98\x22\x09" "\x92\x6a\x64\x37\x6d\x98\x5e\x7a\xe8\x21\x40\x51\xf4\x90\x13\x81\xd6\x28" "\x90\xa2\x81\xd1\x14\x45\x8f\x6c\xeb\x02\xc9\xc5\x87\xc2\xa7\x9e\x88\x16" "\x36\x82\xa2\x07\xb6\x08\x10\xf4\x10\x6c\x30\xb3\x6f\xc5\xd5\x3f\x4b\x32" "\x49\x89\xb2\x3f\x1f\x9b\xfa\xce\xce\xbe\x37\xf3\xde\xcc\x78\x46\x16\xf4" "\xe6\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\xf1\x3b" "\xaf\x9c\x3d\xfe\x7c\x7a\xd8\xad\x00\x00\x1e\xa4\xf3\x53\x5f\x39\x7e\xc2" "\xf3\x1f\x00\x3e\x51\x2e\xf8\xff\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd8\xef\x52\x14\xf1\x78\xa4\x58\x3a\xbf\x95\x66\xaa\xcf\x5d\x43" "\xe7\xda\x0b\x57\xaf\x4d\x8f\x4f\xdc\xbe\xda\x70\xaa\x6a\x1e\xa8\xca\x97" "\x3f\x43\xcf\x9f\x38\x79\xea\x8b\x2f\x8c\x9d\xee\xe5\x87\xd7\xdf\x6d\x4f" "\xc6\x6b\x53\x17\xce\xd6\x5f\x5e\xbc\xb2\xb4\xdc\x5a\x59\x69\xcd\xd5\xa7" "\x17\xda\xb3\x8b\x73\xad\x7b\xde\xc2\x4e\xeb\xdf\x6c\xb4\x3a\x00\xf5\x2b" "\xaf\x5f\x9d\xbb\x74\x69\xa5\x7e\xe2\xb9\x93\x37\x7c\x7d\x6d\xe4\x83\xc1" "\xc7\x8e\x8c\x9c\x19\x7b\xe6\xd8\xd3\xbd\xb2\xd3\xe3\x13\x13\x53\x7d\x65" "\x6a\x03\x1f\x79\xef\xb7\xb8\xd3\x08\x8f\x83\x51\xc4\xb1\x48\xf1\xec\xf7" "\x7e\x94\x9a\x11\x51\xc4\xce\x8f\xc5\x5d\xae\x9d\xbd\x36\x5c\x75\x62\xb4" "\xea\xc4\xf4\xf8\x44\xd5\x91\xf9\x76\x73\x61\xb5\xfc\x72\xb2\x77\x20\x8a" "\x88\x7a\x5f\xa5\x46\xef\x18\x3d\x80\x73\xb1\x23\x8d\x88\xb5\xb2\xf9\x65" "\x83\x47\xcb\xee\x4d\x2d\x35\x97\x9b\x17\xe7\x5b\xf5\xc9\xe6\xf2\x6a\x7b" "\xb5\xbd\xb8\x30\x99\xba\xad\x2d\xfb\x53\x8f\x22\x4e\xa7\x88\xf5\x88\xd8" "\x1c\xbc\x75\x73\x03\x51\x44\x2d\x52\x7c\xe7\xf0\x56\xba\x18\x11\x07\x7a" "\xc7\xe1\x0b\xd5\xc0\xe0\x3b\xb7\xa3\xd8\xc3\x3e\xde\x83\xb2\x9d\xf5\x81" "\x88\xf5\xe2\x11\x38\x67\xfb\xd8\x60\x14\xf1\x6a\xa4\xf8\xf1\x3b\x45\xcc" "\x96\xc7\x2c\xff\xc4\xe7\x23\x5e\x2d\xf3\x1f\x23\xde\x2a\xf3\xa5\x88\x54" "\x5e\x18\xa7\x22\xde\xaf\xae\xa3\xe1\x87\xdc\x72\x76\x43\x2d\x8a\xf8\xb3" "\xf2\xfc\x9f\xd9\x4a\x73\xd5\xfd\xa0\x77\x5f\x39\xf7\xd5\xfa\x97\x17\x2e" "\x2d\xf6\x95\xed\xdd\x57\x1e\xf9\xe7\xc3\x83\xb4\xcf\xef\x4d\x43\x51\x44" "\xb3\xba\xe3\x6f\xa5\x8f\xfe\x9b\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x76\xdb\x70\x14\xf1\x64\xa4\x78\xe5\xdf\xff\xa0\x1a\x57" "\x1c\xd5\xb8\xf4\xc3\x67\xc6\x7e\x77\xe4\xe7\xfb\xc7\x8c\x3f\x71\x97\xed" "\x94\x65\x9f\x8b\x88\xb5\xe2\xde\xc6\xe4\x1e\xcc\x43\x88\x27\xd3\x64\x4a" "\x0f\x79\x2c\xf1\x27\xd9\x50\x14\xf1\x47\x79\xfc\xdf\xb7\x1e\x76\x63\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3e\xd1\x8a\x78" "\x2f\x52\xbc\xf8\xee\xd1\xb4\x1e\xfd\x73\x8a\xb7\x17\x2e\xd7\x2f\x34\x2f" "\xce\x77\x67\x85\xed\xcd\xfd\xdb\x9b\x33\xbd\xd3\xe9\x74\xea\xa9\x9b\x8d" "\x9c\x33\x39\xd7\x72\xae\xe7\xdc\xc8\xb9\x99\x33\x8a\x5c\x3f\x67\x23\xe7" "\x4c\xce\xb5\x9c\xeb\x39\x37\x72\x6e\xe6\x8c\x03\xb9\x7e\xce\x46\xce\x99" "\x9c\x6b\x39\xd7\x73\x6e\xe4\xdc\xcc\x19\xb5\x5c\x3f\x67\x23\xe7\x4c\xce" "\xb5\x9c\xeb\x39\x37\x72\x6e\xe6\x8c\x7d\x32\x77\x2f\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xc7\x49\x11\x45\xfc\x34\x52\x7c\xfb\xeb\x5b\x29" "\x52\x44\x34\x22\x66\xa2\x9b\x1b\x83\xbd\x32\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\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\xc3\x34\x98\x8a\xf8" "\x7e\xa4\xa8\xff\x5e\xe3\xfa\xba\x5a\x44\xa4\xea\xdf\xae\xa3\xe5\x2f\xa7" "\xa2\x71\xb0\xcc\x4f\x47\x63\xac\xcc\x97\xa2\x71\x36\x67\xb3\xca\x5a\xe3" "\x5b\x0f\xa1\xfd\xec\xcc\x40\x2a\xe2\x87\x91\x62\x70\xe8\xed\xeb\x27\x3c" "\x9f\xff\x81\xee\xa7\xeb\x97\x41\xbc\xf5\x8d\xed\x4f\xbf\x54\xeb\xe6\x81" "\xde\x97\x23\x1f\x0c\x3e\x76\xe4\xf0\x99\xb1\x89\x5f\x79\xe2\x4e\xcb\xe9" "\x76\x0d\x18\x3d\xd7\x5e\xb8\x7a\xad\x3e\x3d\x3e\x31\x31\xd5\xb7\xba\x96" "\xf7\xfe\xe9\xbe\x75\x23\x79\xbf\xc5\xee\x74\x9d\x88\x58\x79\xe3\xcd\xd7" "\x9b\xf3\xf3\xad\x65\x0b\x9f\x8c\x85\x5a\x77\xa1\x16\xbb\xba\xe5\xe1\x88" "\xdd\xdd\xe0\xee\x2d\xd4\xba\x0b\xf9\x7e\x15\x0f\xbd\x3d\x77\x58\x68\xec" "\x8f\x66\x6c\x2f\x44\x75\xef\xbf\xed\x3d\x9b\x8f\x8d\xf2\xf9\xff\x7e\xa4" "\xf8\xcd\x77\xff\xa3\xf7\xc0\xef\x3d\xff\x7f\xae\xfb\xe9\xfa\x13\x3e\x7e" "\xf2\xc7\xdb\xcf\xff\x17\x6f\xde\xd0\x1e\x3d\xff\x1f\xef\x5b\xf7\x62\xfe" "\xdd\xc8\x40\x2d\x62\x68\xf5\xca\xd2\xc0\x91\x88\xa1\x95\x37\xde\x3c\xd6" "\xbe\xd2\xbc\xdc\xba\xdc\x5a\x38\x75\xfc\xf8\x97\xc6\xc6\xbe\x74\xf2\xf8" "\xc0\xc1\x88\xa1\x4b\xed\xf9\x56\xdf\xd2\x8e\x0f\x15\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xc0\x83\x95\x8a\xf8\xed\x48\xd1\xfc\xe1\x56" "\xaa\x47\xc4\xb5\x6a\xbc\xd6\xc8\x99\xb1\x67\x8e\x3d\x7d\x20\x0e\x54\xe3" "\xad\x6e\x18\xb7\xf5\xda\xd4\x85\xb3\xf5\x97\x17\xaf\x2c\x2d\xb7\x56\x56" "\x5a\x73\xf5\xe9\x85\xf6\xec\xe2\x5c\xeb\x5e\x77\x37\x54\x0d\xf7\x9a\x1e" "\x9f\xd8\x93\xce\xdc\xd5\xf0\x1e\xb7\x7f\x78\xe8\xe5\xc5\xa5\x37\x96\xdb" "\x97\x7f\x7f\xf5\xb6\xdf\x1f\x1a\x3a\x7b\x71\x65\x75\xb9\x39\x7b\xfb\xaf" "\x63\x38\x8a\x88\x46\xff\x9a\xd1\xaa\xc1\xd3\xe3\x13\x55\xa3\xe7\xdb\xcd" "\x85\xaa\xea\xe4\x2e\x0d\xcc\x1c\x48\x45\xfc\x67\xa4\x98\x3d\x55\x4f\x9f" "\xcb\xeb\xf2\xf8\xbf\x32\xde\x1b\xe8\x2b\xdb\x3f\xfe\x7f\xad\x6f\x7d\xb5" "\xbc\x47\xe3\xff\x3e\x75\xd3\x7e\x52\x2a\xe2\x27\x91\xe2\x37\xfe\xfc\x89" "\xf8\x5c\xd5\xce\x43\x71\xcb\x31\xcb\xe5\xfe\x3a\x52\x8c\x9e\x7e\x2a\x97" "\x8b\x83\x65\xb9\x5e\x1b\xba\xef\x15\xe8\x8e\x0c\x2c\xcb\xfe\x6f\xa4\xf8" "\xfb\x9f\xde\x58\xb6\xd7\xf7\xc7\xb7\xcb\x3e\x7f\x7f\x47\x77\xff\x2b\xcf" "\xff\xe1\x48\xf1\xfd\x3f\xfd\x6e\xfc\x6a\x5e\x77\xe3\xfb\x1f\xb6\xc7\x7f" "\xf6\x9f\xff\x43\x37\x6f\x68\x8f\xce\xff\x67\xfa\xd6\x1d\xba\xe1\x7d\x05" "\x3b\xee\x3a\xf9\xfc\x1f\x8b\x14\x2f\x3d\xfe\x76\xfc\x5a\x5e\xf7\x61\xef" "\xff\x28\xa2\xd3\xe9\x7c\x33\xe2\x68\x2e\x7c\xfd\xfd\x1c\x7b\x74\xfe\x3f" "\xdb\xb7\x6e\x24\xba\xfb\xfd\xf5\xdd\xeb\x3e\x00\x00\x00\x00\x00\x00\x00" "\x00\xc0\x23\x6b\x20\x15\xf1\x37\x91\xe2\xe9\x89\x5a\x7a\x21\xaf\xbb\x97" "\xbf\xff\x37\x77\xf3\x86\xf6\xe8\xef\x7f\xfd\x62\xdf\xba\xb9\x07\x34\x5f" "\xd1\x8e\x0f\x2a\x00\x00\x00\x00\xec\x13\x03\xa9\x88\xf7\x22\xc5\xe5\xd5" "\xb7\xaf\x8f\xa1\xee\x1b\xff\x7d\xe3\xf8\xcf\xdf\xda\x9e\x7b\x7d\x3c\xdd" "\xf4\x6d\xf5\xe7\x7c\xbf\x50\xbd\x37\x60\x37\xff\xfc\xaf\xdf\x48\xde\xef" "\xcc\xce\xbb\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xfb\x4a\x4a\x45\xbc\x90\xe7\x53\x9f\xb9\xcb\x7c\xea\x1b\x91\xe2\x95" "\xff\x7e\x36\x97\x4b\x47\xca\x72\xbd\x79\xe0\x47\xaa\x5f\x87\xce\x2f\x2e" "\x1c\x3b\x3b\x3f\xbf\x38\xdb\x5c\x6d\x5e\x9c\x6f\xd5\xa7\x96\x9a\xb3\xad" "\xb2\xee\x67\x22\xc5\xd6\x5f\x3d\xf5\xff\x9d\xaa\x6e\x51\xcd\xaf\xde\x9b" "\x6f\xbe\x3b\xc7\xfb\x50\xa7\x37\x17\xfb\x72\xa4\x98\xf8\xdb\xa7\xf2\x7e" "\xba\x73\xb1\xf7\xe6\x26\xef\xce\x07\xde\x9d\x8b\xbd\x2c\xfb\xa9\x48\xf1" "\x5f\x7f\x77\x63\xd9\xde\x3c\xd6\x9f\xdd\x2e\x7b\xa2\x2c\xfb\x97\x91\xe2" "\x6b\xff\x74\xfb\xb2\x47\xb6\xcb\x9e\x2c\xcb\x7e\x37\x52\xfc\xe0\x6b\xf5" "\x5e\xd9\x43\x65\xd9\xde\xfb\x51\xbb\xef\x24\x1d\xaa\xc5\x7c\xeb\xb9\xd9" "\xc5\xf9\x5b\x5e\x85\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xf7\x6b\x20\x15\xf1\x27\x91\xe2\x7f\xae\xac\xc7\x5a\x1e\xf6" "\x9f\xe7\xff\xef\xcd\xc0\x5f\xeb\x95\x7d\xeb\x1b\x7d\xf3\xfd\xdf\xe4\x5a" "\x35\xcf\xff\x48\x35\xff\xff\x9d\x96\x3f\xca\xfc\xff\x23\xbb\xd6\x53\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x74" "\xa4\x28\xe2\xcd\x48\xb1\x74\x7e\x2b\x6d\x0c\x96\x9f\xbb\x86\xce\xb5\x17" "\xae\x5e\x9b\x1e\x9f\xb8\x7d\xb5\xe1\x54\xd5\x3c\x50\x95\x2f\x7f\x86\x9e" "\x3f\x71\xf2\xd4\x17\x5f\x18\x3b\xdd\xcb\x0f\xaf\xbf\xdb\x9e\x8c\xd7\xa6" "\x2e\x9c\xad\xbf\xbc\x78\x65\x69\xb9\xb5\xb2\xd2\x9a\xab\x4f\x2f\xb4\x67" "\x17\xe7\x5a\xf7\xbc\x85\x9d\xd6\xdf\x3e\x74\x5d\xa3\xd5\x01\xa8\x5f\x79" "\xfd\xea\xdc\xa5\x4b\x2b\xf5\x13\xcf\x9d\xbc\xe1\xeb\x6b\x23\x1f\x0c\x3e" "\x76\x64\xe4\xcc\xd8\x33\xc7\x9e\xee\x95\x9d\x1e\x9f\x98\x98\xea\x2b\x53" "\x1b\xb8\x8f\xbd\xdf\x57\xe3\xb6\x1d\x8c\x22\xfe\x22\x52\x3c\xfb\xbd\x1f" "\xa5\x7f\x1e\x8c\x28\x62\xe7\xc7\xe2\x2e\xd7\xce\x5e\x1b\xae\x3a\x31\x5a" "\x75\x62\x7a\x7c\xa2\xea\xc8\x7c\xbb\xb9\xb0\x5a\x7e\x39\xd9\x3b\x10\x45" "\x44\xbd\xaf\x52\xa3\x77\x8c\x1e\xc0\xb9\xd8\x91\x46\xc4\x5a\xd9\xfc\xb2" "\xc1\xa3\x65\xf7\xa6\x96\x9a\xcb\xcd\x8b\xf3\xad\xfa\x64\x73\x79\xb5\xbd" "\xda\x5e\x5c\x98\x4c\xdd\xd6\x96\xfd\xa9\x47\x11\xa7\x53\xc4\x7a\x44\x6c" "\x0e\xde\xba\xb9\x81\x28\xe2\xf5\x48\xf1\x9d\xc3\x5b\xe9\x5f\x06\x23\x0e" "\xf4\x8e\xc3\x17\xce\x4f\x7d\xe5\xf8\x89\x3b\xb7\xa3\xd8\xc3\x3e\xde\x83" "\xb2\x9d\xf5\x81\x88\xf5\xe2\x11\x38\x67\xfb\xd8\x60\x14\xf1\x0f\x91\xe2" "\xc7\xef\x1c\x8d\x7f\x1d\x8c\xa8\x45\xf7\x27\x3e\x1f\xf1\x6a\x7f\xc1\x97" "\x22\x52\x79\x61\x9c\x8a\x78\xff\x36\xd7\x11\x8f\xa6\x5a\x14\xf1\x7f\xe5" "\xf9\x3f\xb3\x95\xde\x19\x2c\xef\x07\xbd\xfb\xca\xb9\xaf\xd6\xbf\xbc\x70" "\x69\xb1\xaf\x6c\xef\xbe\xb2\x9f\x9e\x0f\x9d\xfb\xbf\x16\x87\x77\x61\xb7" "\xf7\x6e\x9f\xdf\x9b\x86\xa2\x88\x1f\x54\x77\xfc\xad\xf4\x6f\xfe\xbb\x06" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd8\x47\x8a\xf8\xe5\x48" "\xf1\xe2\xbb\x47\x53\x35\x3e\xf8\xfa\x98\xe2\xf6\xc2\xe5\xfa\x85\xe6\xc5" "\xf9\xee\xb0\xbe\xde\xd8\xbf\x7a\xc4\x1f\x96\xd9\xe9\x74\x3a\xf5\xd4\xcd" "\x46\xce\x99\x9c\x6b\x39\xd7\x73\x6e\xe4\xdc\xcc\x19\x45\xae\x9f\xb3\x91" "\x73\x26\xe7\x5a\xce\xf5\x9c\x1b\x39\x37\x73\xc6\x81\x5c\x3f\x67\x23\xe7" "\x4c\xce\xb5\x9c\xeb\x39\x37\x72\x6e\xe6\x8c\x5a\x15\x9d\x4e\xe7\x9b\xdd" "\xfa\xb5\x5c\x3f\xe7\x5a\xce\xf5\x5a\x44\x51\xd6\xcf\x9f\x37\x73\xc6\x3e" "\x19\xbb\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c" "\xbc\x14\xd5\x3f\x29\xbe\xfd\xf5\xad\x54\xcd\xa5\xda\x88\x98\x89\x6e\x6e" "\x98\x0f\xf4\x63\xef\x67\x01\x00\x00\xff\xff\xa4\xc8\x00\x6b", 3129); syz_mount_image( /*fs=*/0x400000000140, /*dir=*/0x400000000080, /*flags=MS_STRICTATIME|MS_NOSUID|MS_NODIRATIME|MS_DIRSYNC*/ 0x1000882, /*opts=*/0x400000000400, /*chdir=*/1, /*size=*/0xc39, /*img=*/0x400000001cc0); memcpy((void*)0x400000000080, "\023\023w\305\3745\324\024T\325\324\035)\255\032`)" "Y\201F\346\276\026nA\255\r\275@T\003<\2373\273\332\202$" "\242\363\327r\347cnH\263<\277p\203r\350\361\271\223>" "\305\022wC\276\"\006 \236\360-\371\313\362\366\350\200\3238/\000", 78); syz_mount_image(/*fs=*/0, /*dir=*/0x400000000080, /*flags=*/0, /*opts=*/0, /*chdir=*/0, /*size=*/0, /*img=*/0); return 0; }