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