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