// https://syzkaller.appspot.com/bug?id=a133d4479097d126eec894cfb20027af5c1b30c3 // 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 #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif #ifndef __NR_renameat2 #define __NR_renameat2 316 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% 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; } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } NONFAILING(memcpy((void*)0x200000000000, "exfat\000", 6)); NONFAILING(memcpy((void*)0x200000000240, "./file0\000", 8)); NONFAILING(memcpy( (void*)0x200000002180, "\x78\x9c\xec\xdc\x0b\xb4\xce\xd5\xd6\x30\xf0\x39\xd7\x5a\x7f\x36\x49\x4f" "\x92\xfb\x9a\x6b\xfe\x79\x92\xcb\x22\x49\x72\x49\x48\x24\x49\x92\x24\xb9" "\x25\x24\x49\x92\x84\xc4\x26\xb7\x24\x24\x21\xf7\x24\xf7\x90\xdc\x62\x27" "\xf7\xfb\x2d\xf7\x24\x39\x92\x24\x09\x09\x49\xd6\x37\x74\x3a\x9f\xf7\xbc" "\x9d\xf7\xed\x9c\xef\x9c\xef\xf5\x7d\x67\xcf\xdf\x18\x6b\xec\x35\xf7\xff" "\x99\xf3\x59\x6b\xcf\x3d\x9e\xff\x65\x8c\xbd\xbf\xed\x38\xb8\x6a\xfd\x6a" "\x95\xeb\x32\x33\xfc\x53\xf0\xcf\x5f\x52\x01\x20\x05\x00\xfa\x01\xc0\x35" "\x00\x10\x01\x40\xa9\x6c\xa5\xb2\x01\x0e\x83\x4c\x1a\x53\xff\xb9\x37\x11" "\xff\x5a\x0f\x4d\xbb\xd2\x2b\x10\x57\x92\xf4\x3f\x7d\x93\xfe\xa7\x6f\xd2" "\xff\xf4\x4d\xfa\x9f\xbe\x49\xff\xd3\x37\xe9\x7f\xfa\x26\xfd\x4f\xdf\xa4" "\xff\x42\xa4\x67\x5b\xa7\xe7\xbe\x56\x46\xfa\x1d\xff\x73\xcf\xff\x41\x9e" "\xff\xff\x3f\x47\xce\xff\xff\x46\x0e\x17\x1b\xf3\xe5\xfa\x62\xd7\x77\xfa" "\x07\x52\xa4\xff\xe9\x9b\xf4\x3f\x7d\x93\xfe\xa7\x6f\xd2\xff\xf4\x4d\xfa" "\x9f\xbe\x49\xff\xff\xcd\x45\x00\x95\xfe\x9b\xc3\xd2\xff\xf4\x4d\xfa\x2f" "\x44\x7a\x76\xa5\x9f\x3f\xcb\xb8\xb2\xe3\x4a\xff\xfe\x09\x21\x84\x10\x42" "\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84" "\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08" "\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10" "\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21" "\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42" "\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84" "\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x48\x1f\xce" "\x85\xcb\x0c\x00\xfc\x65\x7e\xa5\xd7\x25\x84\x10\x42\x08\x21\x84\x10\x42" "\x88\x7f\x9d\x90\xf1\x4a\xaf\x40\x08\x21\x84\x10\x42\x08\x21\x84\x10\xff" "\xf7\x21\x28\xd0\x60\x20\x82\x0c\x90\x11\x52\x20\x13\x64\x86\xab\x20\x0b" "\x5c\x0d\x59\xe1\x1a\x48\xc0\xb5\x90\x0d\xae\x83\xec\x70\x3d\xe4\x80\x9c" "\x90\x0b\x72\x43\x1e\xc8\x0b\xf9\xc0\x02\x81\x03\x86\x18\xf2\x43\x01\x48" "\xc2\x0d\x50\x10\x6e\x84\x42\x50\x18\x8a\x40\x51\xf0\x50\x0c\x8a\xc3\x4d" "\x50\x02\x6e\x86\x92\x70\x0b\x94\x82\x5b\xa1\x34\xdc\x06\x65\xa0\x2c\x94" "\x83\xf2\x70\x3b\x54\x80\x3b\xa0\x22\x54\x82\xca\x70\x27\x54\x81\xbb\xa0" "\x2a\x54\x83\xbb\xa1\x3a\xdc\x03\x35\xe0\x5e\xa8\x09\xf7\x41\x2d\xb8\x1f" "\x6a\xc3\x03\x50\x07\x1e\x84\xba\xf0\x10\xd4\x83\x87\xa1\x3e\x3c\x02\x0d" "\xe0\x51\x68\x08\x8d\xa0\x31\x34\x81\xa6\xff\x47\xf9\x2f\x42\x57\x78\x09" "\xba\x41\x77\x48\x85\x1e\xd0\x13\x5e\x86\x5e\xd0\x1b\xfa\x40\x5f\xe8\x07" "\xaf\x40\x7f\x78\x15\x06\xc0\x6b\x30\x10\x06\xc1\x60\x78\x1d\x86\xc0\x1b" "\x30\x14\xde\x84\x61\x30\x1c\x46\xc0\x5b\x30\x12\x46\xc1\x68\x18\x03\x63" "\x61\x1c\x8c\x87\xb7\x61\x02\xbc\x03\x13\xe1\x5d\x98\x04\x93\x61\x0a\x4c" "\x85\x69\x30\x1d\x66\xc0\x7b\x30\x13\x66\xc1\x6c\x78\x1f\xe6\xc0\x07\x30" "\x17\xe6\xc1\x7c\x58\x00\x0b\xe1\x43\x58\x04\x8b\x21\x0d\x3e\x82\x25\xf0" "\x31\x2c\x85\x65\xb0\x1c\x56\xc0\x4a\x58\x05\xab\x61\x0d\xac\x85\x75\xb0" "\x1e\x36\xc0\x46\xd8\x04\x9b\x61\x0b\x6c\x85\x4f\x60\x1b\x6c\x87\x1d\xb0" "\x13\x76\xc1\x6e\xd8\x03\x9f\xc2\x5e\xf8\x0c\xf6\xc1\xe7\xb0\x1f\xbe\xf8" "\x07\xf3\xcf\xfe\xa7\xfc\x4e\x08\x08\xa8\x50\xa1\x41\x83\x19\x30\x03\xa6" "\x60\x0a\x66\xc6\xcc\x98\x05\xb3\x60\x56\xcc\x8a\x09\x4c\x60\x36\xcc\x86" "\xd9\x31\x3b\xe6\xc0\x1c\x98\x0b\x73\x61\x1e\xcc\x83\xf9\x30\x1f\x12\x12" "\x32\x32\xe6\xc7\xfc\x98\xc4\x24\x16\xc4\x82\x58\x08\x0b\x61\x11\x2c\x82" "\x1e\x3d\x16\xc7\xe2\x58\x02\x6f\xc6\x92\x58\x12\x4b\x61\x29\x2c\x8d\xa5" "\xb1\x0c\x96\xc5\xb2\x58\x1e\xcb\x63\x05\xac\x80\x15\xb1\x22\x56\xc6\xca" "\x58\x05\xab\x60\x55\xac\x8a\x77\xe3\xdd\x78\x0f\xd6\xc0\x1a\x58\x13\x6b" "\x62\x2d\xac\x85\xb5\xb1\x36\xd6\xc1\x3a\x58\x17\xeb\x62\x3d\xac\x87\xf5" "\xb1\x3e\x36\xc0\x06\xd8\x10\x1b\x62\x63\x6c\x8c\x4d\xb1\x29\x36\xc3\x66" "\xd8\x1c\x9b\x63\x4b\x6c\x89\xad\xb0\x15\xb6\xc6\xd6\xd8\x06\xdb\x60\x5b" "\x6c\x8b\xed\xb0\x1d\xb6\xc7\xf6\xd8\x01\x3b\x60\x47\xec\x88\x9d\xb0\x33" "\x76\xc6\x17\xf1\x45\x7c\x09\x5f\xc2\xee\x58\x45\xf5\xc0\x9e\xd8\x13\x7b" "\x61\x2f\xec\x83\x7d\xb1\x2f\xbe\x82\xfd\xf1\x55\x7c\x15\x5f\xc3\x81\x38" "\x08\x07\xe3\xeb\xf8\x3a\xbe\x81\x43\xf1\x0c\x0e\xc3\xe1\x38\x02\x47\x60" "\x05\x35\x0a\x47\xe3\x18\x64\x35\x0e\xc7\xe3\x78\x9c\x80\x13\x70\x22\x4e" "\xc4\x49\x38\x19\x27\xe3\x54\x9c\x86\xd3\x71\x06\xce\xc0\x99\x38\x0b\x67" "\xe1\xfb\x38\x07\x3f\xc0\x0f\x70\x1e\xce\xc3\x05\xb8\x10\x17\xe2\x22\x5c" "\x8c\x69\x98\x86\x4b\xf0\x2c\x2e\xc5\x65\xb8\x1c\x57\xe0\x4a\x5c\x85\x2b" "\x71\x0d\xae\xc5\x35\xb8\x1e\x37\xe0\x7a\xdc\x84\x9b\x70\x0b\x6e\xc1\x4f" "\xf0\x13\xdc\x8e\xdb\x71\x27\xee\xc4\xdd\xb8\x1b\x3f\xc5\x4f\xf1\x33\xfc" "\x0c\x07\xe2\x7e\xdc\x8f\x07\xf0\x00\x1e\xc4\x83\x78\x08\x0f\xe1\x61\x3c" "\x8c\x47\xf0\x08\x1e\xc5\xa3\x78\x0c\x8f\xe1\x71\x3c\x8e\x27\xf0\x24\x9e" "\xc2\x93\x78\x1a\x4f\xe3\x19\x3c\x8b\xe7\xf0\x1c\x9e\xc7\xf3\x78\x01\x9f" "\xcf\xf3\x75\xbd\xdd\x85\xd7\x0d\x04\x75\x89\x51\x46\x65\x50\x19\x54\x8a" "\x4a\x51\x99\x55\x66\x95\x45\x65\x51\x59\x55\x56\x95\x50\x09\x95\x4d\x65" "\x53\xd9\x55\x76\x95\x43\xe5\x50\xb9\x54\x2e\x95\x47\xe5\x51\xf9\x54\x3e" "\x45\x8a\x14\xab\x58\xe5\x57\xf9\x55\x52\x25\x55\x41\x55\x50\x15\x52\x85" "\x54\x11\x55\x44\x79\xe5\x55\x71\x55\x5c\x95\x50\x25\x54\x49\x55\x52\x95" "\x52\xb7\xaa\xd2\xea\x36\x55\x46\x95\x55\x2d\x7c\x79\x55\x5e\x55\x50\x2d" "\x7d\x45\x55\x49\x55\x56\x95\x55\x15\x75\x97\xaa\xaa\xaa\xa9\x6a\xaa\xba" "\xaa\xae\x6a\xa8\x1a\xaa\xa6\xaa\xa9\x6a\xa9\x5a\xaa\xb6\x7a\x40\xd5\x51" "\x3d\xb0\x0f\x3e\xa4\x2e\x75\xa6\xbe\x1a\x84\x0d\xd4\x60\x6c\xa8\x1a\xa9" "\xc6\xaa\x89\x7a\x03\x1f\x53\xcd\xd4\x50\x6c\xae\x5a\xa8\x96\xea\x09\x35" "\x1c\x87\x61\x6b\xd5\xcc\xb7\x51\x4f\xab\xb6\x6a\x34\xb6\x53\xcf\xaa\x31" "\xf8\x9c\xea\xa0\xc6\x61\x47\xf5\x82\xea\xa4\x3a\xab\x2e\xea\x45\xd5\x55" "\x35\xf7\xdd\x32\xfc\xf6\x11\xa8\xa6\x62\x2f\xd5\x5b\xf5\x51\x7d\xd5\x4c" "\xbc\x4b\x5d\xea\x58\x55\xf5\x9a\x1a\xa8\x06\xa9\xc1\xea\x75\xb5\x00\xdf" "\x50\x43\xd5\x9b\x6a\x98\x1a\xae\x46\xa8\xb7\xd4\x48\x35\x4a\x8d\x56\x63" "\xd4\x58\x35\x4e\x8d\x57\x6f\xab\x09\xea\x1d\x35\x51\xbd\xab\x26\xa9\xc9" "\x6a\x8a\x9a\xaa\xa6\xa9\xe9\x6a\x86\x7a\x4f\xcd\x54\xb3\xd4\x6c\xf5\xbe" "\x9a\xa3\x3e\x50\x73\xd5\x3c\x35\x5f\x2d\x50\x0b\xd5\x87\x6a\x91\x5a\xac" "\xd2\xd4\x47\x6a\x89\xfa\x58\x2d\x55\xcb\xd4\x72\xb5\x42\xad\x54\xab\xd4" "\x6a\xb5\x46\xad\x55\xeb\xd4\x7a\xb5\x41\x6d\x54\x9b\xd4\x66\xb5\x45\x6d" "\x55\x9f\xa8\x6d\x6a\xbb\xda\xa1\x76\xaa\x5d\x6a\xb7\xda\xa3\x3e\x55\x7b" "\xd5\x67\x6a\x9f\xfa\x5c\xed\x57\x5f\xa8\x03\xea\x4f\xea\xa0\xfa\x52\x1d" "\x52\x5f\xa9\xc3\xea\x6b\x75\x44\x7d\xa3\x8e\xaa\x6f\xd5\x31\xf5\x9d\x3a" "\xae\xbe\x57\x27\xd4\x49\x75\x4a\xfd\xa0\x4e\xab\x1f\xd5\x19\x75\x56\x9d" "\x53\x3f\xa9\xf3\xea\x67\x75\x41\xfd\xa2\x2e\xaa\xa0\x40\xa3\x56\x5a\x6b" "\xa3\x23\x9d\x41\x67\xd4\x29\x3a\x93\xce\xac\xaf\xd2\x59\xf4\xd5\x3a\xab" "\xbe\x46\x27\xf4\xb5\x3a\x9b\xbe\x4e\x67\xd7\xd7\xeb\x1c\x3a\xa7\xce\xa5" "\x73\xeb\x3c\x3a\xaf\xce\xa7\xad\x26\xed\x34\xeb\x58\xe7\xd7\x05\x74\x52" "\xdf\xa0\x0b\xea\x1b\x75\x21\x5d\x58\x17\xd1\x45\xb5\xd7\xc5\x74\x71\x7d" "\x93\x2e\xa1\x6f\xd6\x25\xf5\x2d\xba\x94\xbe\x55\x97\xd6\xb7\xe9\x32\xba" "\xac\x2e\xa7\xcb\xeb\xdb\x75\x05\x7d\x87\xae\xa8\x2b\xe9\xca\xfa\x4e\x5d" "\x45\xdf\xa5\xab\xea\x6a\xfa\x6e\x5d\x5d\xdf\xa3\x6b\xe8\x7b\x75\x4d\x7d" "\x9f\xae\xa5\xef\xd7\xb5\xf5\x03\xba\x8e\x7e\x50\xd7\xd5\x0f\xe9\x7a\xfa" "\x61\x5d\x5f\x3f\xa2\x1b\xe8\x47\x75\x43\xdd\x48\x37\xd6\x4d\x74\x53\xfd" "\x98\x6e\xa6\x1f\xd7\xcd\x75\x0b\xdd\x52\x3f\xa1\x5b\xe9\x27\x75\x6b\xfd" "\x94\x6e\xa3\x9f\xd6\x6d\xf5\x33\xba\x9d\x7e\x56\xb7\xd7\xcf\xe9\x0e\xfa" "\x79\xdd\x51\xbf\xa0\x3b\xe9\xce\xba\x8b\xfe\x45\x5f\xd4\x41\x77\xd3\xdd" "\x75\xaa\xee\xa1\x7b\xea\x97\x75\x2f\xdd\x5b\xf7\xd1\x7d\x75\x3f\xfd\x8a" "\xee\xaf\x5f\xd5\x03\xf4\x6b\x7a\xa0\x1e\xa4\x07\xeb\xd7\xf5\x10\xfd\x86" "\x1e\xaa\xdf\xd4\xc3\xf4\x70\x3d\x42\xbf\xa5\x47\xea\x51\x7a\xb4\x1e\xa3" "\xc7\xea\x71\x7a\xbc\x7e\x5b\x4f\xd0\xef\xe8\x89\xfa\x5d\x3d\x49\x4f\xd6" "\x53\xf4\x54\x3d\x4d\x4f\xd7\x7d\x7e\xab\x34\xfb\xef\xc8\x7f\xe7\x6f\xe4" "\x0f\xf8\xf5\xdd\xb7\xe8\xad\xfa\x13\xbd\x4d\x6f\xd7\x3b\xf4\x4e\xbd\x4b" "\xef\xd6\x7b\xf4\x1e\xbd\x57\xef\xd5\xfb\xf4\x3e\xbd\x5f\xef\xd7\x07\xf4" "\x01\x7d\x50\x1f\xd4\x87\xf4\x21\x7d\x58\x1f\xd6\x47\xf4\x11\x7d\x54\x1f" "\xd5\xc7\xf4\x31\x7d\x5c\x1f\xd7\x27\xf4\x49\xfd\x93\xfe\x41\x9f\xd6\x3f" "\xea\x33\xfa\xac\x3e\xab\x7f\xd2\xe7\xf5\x79\x7d\xe1\xb7\x9f\x01\x18\x34" "\xca\x68\x63\x4c\x64\x32\x98\x8c\x26\xc5\x64\x32\x99\xcd\x55\x26\x8b\xb9" "\xda\x64\x35\xd7\x98\x84\xb9\xd6\x64\x33\xd7\x99\xec\xe6\x7a\x93\xc3\xe4" "\x34\xb9\x4c\x6e\x93\xc7\xe4\x35\xf9\x8c\x35\x64\x9c\x61\x13\x9b\xfc\xa6" "\x80\x49\x9a\x1b\x4c\x41\x73\xa3\x29\x64\x0a\x9b\x22\xa6\xa8\xf1\xa6\x98" "\x29\x6e\x6e\xfa\xa7\xf3\xff\x68\x7d\x4d\x4d\x53\xd3\xcc\x34\x33\xcd\x4d" "\x73\xd3\xd2\xb4\x34\xad\x4c\x2b\xd3\xda\xb4\x36\x6d\x4c\x1b\xd3\xd6\xb4" "\x35\xed\x4c\x3b\xd3\xde\xb4\x37\x1d\x4c\x07\xd3\xd1\x74\x34\x9d\x4c\x27" "\xd3\xc5\x74\x31\x5d\x4d\x57\xd3\xcd\x74\x33\xa9\x26\xd5\xf4\x34\x2f\x9b" "\x5e\xa6\xb7\xe9\x63\xfa\x9a\x7e\xe6\x15\xd3\xdf\xf4\x37\x03\xcc\x00\x33" "\xd0\x0c\x34\x83\xcd\x60\x33\xc4\x0c\x31\x43\xcd\x50\x33\xcc\x0c\x33\x23" "\xcc\x08\x33\xd2\x8c\x34\xa3\xcd\x68\x33\xd6\x8c\x35\xe3\xcd\x78\x33\xc1" "\x4c\x30\x13\xcd\x44\x33\xc9\x4c\x32\x53\xcc\x14\x33\xcd\x4c\x33\x33\xcc" "\x0c\x33\xd3\xcc\x34\xb3\xcd\x6c\x33\xc7\xcc\x31\x73\xcd\x5c\x33\xdf\xcc" "\x37\x0b\xcd\x42\xb3\xc8\x2c\x32\x69\x26\xcd\x2c\x31\x4b\xcc\x52\xb3\xcc" "\x2c\x33\x2b\xcc\x0a\xb3\xca\xac\x32\x6b\xcc\x1a\xb3\xce\xac\x33\x1b\xcc" "\x06\xb3\xc9\x6c\x32\x4b\xcd\x56\xb3\xd5\x6c\x33\xdb\xcc\x0e\xb3\xc3\xec" "\x32\xbb\xcc\x1e\xb3\xc7\xec\x35\x7b\xcd\x3e\xb3\xcf\xec\x37\xfb\xcd\x01" "\x73\xc0\x1c\x34\x07\xcd\x21\x73\xc8\x1c\x36\x87\xcd\x11\x73\xc4\x1c\x35" "\x47\xcd\x31\x73\xcc\x1c\x37\xc7\xcd\x09\x73\xc2\x9c\x32\xa7\xcc\x69\x73" "\xda\x9c\x31\x67\xcc\x39\x73\xce\x9c\x37\xe7\xcd\x05\x73\xc1\x5c\x34\x17" "\x2f\x5d\xf6\x45\x2a\x52\x91\x89\x4c\x94\x21\xca\x10\xa5\x44\x29\x51\xe6" "\x28\x73\x94\x25\xca\x12\x65\x8d\xb2\x46\x89\x28\x11\x65\x8b\xb2\x45\xd9" "\xa3\xeb\xa3\x1c\x51\xce\x28\x57\x94\x3b\xca\x13\xe5\x8d\x52\xc1\x46\x14" "\xb9\x88\xa3\x38\xca\x1f\x15\x88\x92\xd1\x0d\x51\xc1\xe8\xc6\xa8\x50\x54" "\x38\x2a\x12\x15\x8d\x7c\x54\x2c\x2a\x1e\xdd\x14\x95\x88\x6e\x8e\x4a\x46" "\xb7\x44\xa5\xa2\x5b\xa3\xd2\xd1\x6d\x51\x99\xa8\x6c\x54\x2e\x2a\x1f\xdd" "\x1e\x55\x88\xee\x88\x2a\x46\x95\xa2\xca\xd1\x9d\x51\x95\xe8\xae\xa8\x6a" "\x54\x2d\xba\x3b\xaa\x1e\xdd\x13\xd5\x88\xee\x8d\x6a\x46\xf7\x45\xb5\xa2" "\xfb\xa3\xda\xd1\x03\x51\x9d\xe8\xc1\xa8\x6e\xf4\x50\x54\x2f\x7a\x38\xaa" "\x1f\x3d\x12\x35\x88\x1e\x8d\x1a\x46\x8d\xa2\xc6\x51\x93\xa8\xe9\xbf\xb4" "\x7e\x08\x67\x72\x3e\xee\xbb\xd9\xee\x36\xd5\xf6\xb0\x3d\xed\xcb\xb6\x97" "\xed\x6d\xfb\xd8\xbe\xb6\x9f\x7d\xc5\xf6\xb7\xaf\xda\x01\xf6\x35\x3b\xd0" "\x0e\xb2\x83\xed\xeb\x76\x88\x7d\xc3\x0e\xb5\x6f\xda\x61\x76\xb8\x1d\x61" "\xdf\xb2\x23\xed\x28\x3b\xda\x8e\xb1\x63\xed\x38\x3b\xde\xbe\x6d\x27\xd8" "\x77\xec\x44\xfb\xae\x9d\x64\x27\xdb\x29\x76\xaa\x9d\x66\xa7\xdb\x19\xf6" "\x3d\x3b\xd3\xce\xb2\xb3\xed\xfb\x76\x8e\xfd\xc0\xce\xb5\xf3\xec\x7c\xbb" "\xc0\x2e\xb4\x1f\xda\x45\x76\xb1\x4d\xb3\x1f\xd9\x25\xf6\x63\xbb\xd4\x2e" "\xb3\xcb\xed\x0a\xbb\xd2\xae\xb2\xab\xed\x1a\xbb\xd6\xae\xb3\xeb\xed\x06" "\xbb\xd1\x6e\xb2\x9b\xed\x16\xbb\xd5\x7e\x62\xb7\xd9\xed\x76\x87\xdd\x69" "\x77\xd9\xdd\x76\x8f\xfd\xd4\xee\xb5\x9f\xd9\x7d\xf6\x73\xbb\xdf\x7e\x61" "\x0f\xd8\x3f\xd9\x83\xf6\x4b\x7b\xc8\x7e\x65\x0f\xdb\xaf\xed\x11\xfb\x8d" "\x3d\x6a\xbf\xb5\xc7\xec\x77\xf6\xb8\xfd\xde\x9e\xb0\x27\xed\x29\xfb\x83" "\x3d\x6d\x7f\xb4\x67\xec\x59\x7b\xce\xfe\x64\xcf\xdb\x9f\xed\x05\xfb\x8b" "\xbd\x68\xc3\xa5\x8b\xfb\x4b\xa7\x77\x32\x64\x28\x03\x65\xa0\x14\x4a\xa1" "\xcc\x94\x99\xb2\x50\x16\xca\x4a\x59\x29\x41\x09\xca\x46\xd9\x28\x3b\x65" "\xa7\x1c\x94\x83\x72\x51\x2e\xca\x43\x79\x28\x1f\xe5\xa3\x4b\x98\x98\xf2" "\x53\x7e\x4a\x52\x92\x0a\x52\x41\x2a\x44\x85\xa8\x08\x15\x21\x4f\x9e\x8a" "\x53\x71\x2a\x41\x25\xa8\x24\x95\xa4\x52\x54\x8a\x4a\x53\x69\x2a\x43\x65" "\xa8\x1c\x95\xa3\xdb\xe9\x76\xba\x83\xee\xa0\x4a\x54\x89\xee\xa4\x3b\xe9" "\x2e\xba\x8b\xaa\x51\x35\xaa\x4e\xd5\xa9\x06\xd5\xa0\x9a\x54\x93\x6a\x51" "\x2d\xaa\x4d\xb5\xa9\x0e\xd5\xa1\xba\x54\x97\xea\x51\x3d\xaa\x4f\xf5\xa9" "\x01\x35\xa0\x86\xd4\x90\x1a\x53\x63\x6a\x4a\x4d\xa9\x19\x35\xa3\xe6\xd4" "\x9c\x5a\x52\x4b\x6a\x45\xad\xa8\x35\xb5\xa6\x36\xd4\x86\xda\x52\x5b\x6a" "\x47\xed\xa8\x3d\xb5\xa7\x0e\xd4\x81\x3a\x52\x47\xea\x44\x9d\xa8\x0b\x75" "\xa1\xae\xd4\x95\xba\x51\x37\x4a\xa5\x54\xea\x49\x3d\xa9\x17\xf5\xa2\x3e" "\xd4\x87\xfa\x51\x3f\xea\x4f\xfd\x69\x00\x0d\xa0\x81\x34\x90\x06\xd3\x60" "\x1a\x42\x43\x68\x28\x0d\xa5\x61\x34\x9c\x46\xd0\x5b\x34\x92\x46\xd1\x68" "\x1a\x43\x63\x69\x1c\x8d\xa7\xf1\x34\x81\x26\xd0\x44\x9a\x48\x93\x68\x12" "\x4d\xa1\x29\x34\x8d\xa6\xd1\x0c\x9a\x41\x33\x69\x26\xcd\xa6\xd9\x34\x87" "\xe6\xd0\x5c\x9a\x4b\xf3\x69\x3e\x2d\xa4\x85\xb4\x88\x16\x51\x1a\xa5\xd1" "\x12\x5a\x42\x4b\x69\x29\x2d\xa7\xe5\xb4\x92\x56\xd2\x6a\x5a\x4d\x6b\x69" "\x2d\xad\xa7\xf5\xb4\x91\x36\xd2\x66\xda\x4c\x5b\x69\x2b\x6d\xa3\x6d\xb4" "\x83\x76\xd0\x2e\xda\x45\x7b\x68\x0f\xed\xa5\xbd\xb4\x8f\xf6\xd1\x7e\xda" "\x4f\x07\xe8\x00\x1d\xa4\x83\x74\x88\x0e\xd1\x61\x3a\x4c\x47\xe8\x08\x1d" "\xa5\xa3\x74\x8c\x8e\xd1\x71\x3a\x4e\x27\xe8\x04\x9d\xa2\x53\x74\x9a\x4e" "\xd3\x19\x3a\x43\xe7\xe8\x1c\x9d\xa7\x9f\xe9\x02\xfd\x42\x17\x29\x50\x8a" "\x53\x90\xd9\x5d\xe5\xb2\xb8\xab\x5d\x56\x77\x8d\x4b\x71\x99\xdc\xa5\x38" "\x02\x80\x4b\x71\x2e\x97\xdb\xe5\x71\x79\x5d\x3e\x67\x5d\x0e\x97\xf3\xaf" "\x62\x72\xce\x15\x72\x85\x5d\x11\x57\xd4\x79\x57\xcc\x15\x77\x37\xfd\x2e" "\x2e\xe3\xca\xba\x72\xae\xbc\xbb\xdd\x55\x70\x77\xb8\x8a\xbf\x8b\xab\xbb" "\x7b\x5c\x0d\x77\xaf\xab\xe9\xee\x73\xd5\xdc\xdd\x7f\x15\xd7\x72\xf7\xbb" "\xda\xee\x11\x57\xc7\x3d\xea\xea\xba\x46\xae\x9e\x6b\xe2\xea\xbb\x47\x5c" "\x03\xf7\xa8\x6b\xe8\x1a\xb9\xc6\xae\x89\x6b\xe5\x9e\x74\xad\xdd\x53\xae" "\x8d\x7b\xda\xb5\x75\xcf\xfc\x2e\x5e\xe4\x16\xbb\xb5\x6e\x9d\x5b\xef\x36" "\xb8\xbd\xee\x33\x77\xce\xfd\xe4\x8e\xba\x6f\xdd\x79\xf7\xb3\xeb\xe6\xba" "\xbb\x7e\xee\x15\xd7\xdf\xbd\xea\x06\xb8\xd7\xdc\x40\x37\xe8\x77\xf1\x08" "\xf7\x96\x1b\xe9\x46\xb9\xd1\x6e\x8c\x1b\xeb\xc6\xfd\x2e\x9e\xe2\xa6\xba" "\x69\x6e\xba\x9b\xe1\xde\x73\x33\xdd\xac\xdf\xc5\x0b\xdd\x87\x6e\x8e\x4b" "\x73\x73\xdd\x3c\x37\xdf\x2d\xf8\x35\xbe\xb4\xa6\x34\xf7\x91\x5b\xe2\x3e" "\x76\x4b\xdd\x32\xb7\xdc\xad\x70\x2b\xdd\x2a\xb7\xda\xad\xf9\xdf\x6b\x5d" "\xe1\x36\xb9\xcd\x6e\x8b\xdb\xe3\x3e\x75\xdb\xdc\x76\xb7\xc3\xed\x74\xbb" "\xdc\xee\x5f\xe3\x4b\xfb\xd8\xe7\x3e\x77\xfb\xdd\x17\xee\x88\xfb\xc6\x1d" "\x74\x5f\xba\x43\xee\x98\x3b\xec\xbe\xfe\x35\xbe\xb4\xbf\x63\xee\x3b\x77" "\xdc\x7d\xef\x4e\xb8\x93\xee\x94\xfb\xc1\x9d\x76\x3f\xba\x33\xee\xec\xaf" "\xfb\xbf\xb4\xf7\x1f\xdc\x2f\xee\xa2\x0b\x0e\x18\x59\xb1\x66\xc3\x11\x67" "\xe0\x8c\x9c\xc2\x99\x38\x33\x5f\xc5\x59\xf8\x6a\xce\xca\xd7\x70\x82\xaf" "\xe5\x6c\x7c\x1d\x67\xe7\xeb\x39\x07\xe7\xe4\x5c\x9c\x9b\xf3\x70\x5e\xce" "\xc7\x96\x89\x1d\x33\xc7\x9c\x9f\x0b\x70\x92\x6f\xe0\x82\x7c\x23\x17\xe2" "\xc2\x5c\x84\x8b\xb2\xe7\x62\x5c\x9c\x6f\xe2\x12\x7c\x33\x97\xe4\x5b\xb8" "\x14\xdf\xca\xa5\xf9\x36\x2e\xc3\x65\xb9\x1c\x97\xe7\xdb\xb9\x02\xdf\xc1" "\x15\xb9\x12\x57\xe6\x3b\xb9\x4a\x08\x5c\x95\xab\xf1\xdd\x5c\x9d\xef\xe1" "\x1a\x7c\x2f\xd7\xe4\xfb\xb8\x16\xdf\xcf\xb5\xf9\x01\xae\xc3\x0f\x72\x5d" "\x7e\x88\xeb\xf1\xc3\x5c\x9f\x1f\xe1\x06\xfc\x28\x37\xe4\x46\xdc\x98\x9b" "\x70\x53\x7e\x8c\x9b\xf1\xe3\xdc\x9c\x5b\x70\x4b\x7e\x82\x5b\xf1\x93\xdc" "\x9a\x9f\xe2\x36\xfc\x34\xb7\xe5\x67\xb8\x1d\x3f\xcb\xed\xf9\x39\xee\xc0" "\xcf\x73\x47\x7e\x81\x3b\x71\x67\xee\xc2\x2f\x72\x57\x7e\x89\xbb\x71\x77" "\x4e\xe5\x1e\xdc\x93\x5f\xe6\x5e\xdc\x9b\xfb\x70\x5f\xee\xc7\xaf\x70\x7f" "\x7e\x95\x07\xf0\x6b\x3c\x90\x07\xf1\x60\x7e\x9d\x87\xf0\x1b\x3c\x94\xdf" "\xe4\x61\x3c\x9c\x47\xf0\x5b\x3c\x92\x47\xf1\x68\x1e\xc3\x63\x79\x1c\x8f" "\xe7\xb7\x79\x02\xbf\xc3\x13\xf9\x5d\x9e\xc4\x93\x79\x0a\x4f\xe5\x69\x3c" "\x9d\x67\xf0\x7b\x3c\x93\x67\xf1\x6c\x7e\x9f\xe7\xf0\x07\x3c\x97\xe7\xf1" "\x7c\x5e\xc0\x0b\xf9\x43\x5e\xc4\x8b\x39\x8d\x3f\xe2\x25\xfc\x31\x2f\xe5" "\x65\xbc\x9c\x57\xf0\x4a\x5e\xc5\xab\x79\x0d\xaf\xe5\x75\xbc\x9e\x37\xf0" "\x46\xde\xc4\x9b\x79\x0b\x6f\xe5\x4f\x78\x1b\x6f\xe7\x1d\xbc\x93\x77\xf1" "\x6e\xde\xc3\x9f\xf2\x5e\xfe\x8c\xf7\xf1\xe7\xbc\x9f\xbf\xe0\x03\xfc\x27" "\x3e\xc8\x5f\xf2\x21\xfe\x8a\x0f\xf3\xd7\x7c\x84\xbf\xe1\xa3\xfc\x2d\x1f" "\xe3\xef\xf8\x38\x7f\xcf\x27\xf8\x24\x9f\xe2\x1f\xf8\x34\xff\xc8\x67\xf8" "\x2c\x9f\xe3\x9f\xf8\x3c\xff\xcc\x17\xf8\x17\xbe\xc8\x81\x21\xc6\x58\xc5" "\x3a\x36\x71\x14\x67\x88\x33\xc6\x29\x71\xa6\x38\x73\x7c\x55\x9c\x25\xbe" "\x3a\xce\x1a\x5f\x13\x27\xe2\x6b\xe3\x6c\xf1\x75\x71\xf6\xf8\xfa\x38\x47" "\x9c\x33\xce\x15\xe7\x8e\xf3\xc4\x79\xe3\x7c\xb1\x8d\x29\x76\x31\xc7\x71" "\x9c\x3f\x2e\x10\x27\xe3\x1b\xe2\x82\xf1\x8d\x71\xa1\xb8\x70\x5c\x24\x2e" "\x1a\xfb\xb8\x58\x5c\x3c\xbe\x29\x2e\x11\xdf\x1c\x97\x8c\x6f\x89\x4b\xc5" "\xb7\xc6\xa5\xe3\xdb\xe2\x32\x71\xd9\xf8\x91\xfb\xca\xc7\xb7\xc7\x15\xe2" "\x3b\xe2\x8a\x71\xa5\xb8\x72\x7c\x67\x5c\x25\xbe\x2b\xae\x1a\x57\x8b\xef" "\x8e\xab\xc7\xf7\xc4\x35\xe2\x7b\xe3\x9a\xf1\x7d\x71\xc9\xf8\xfe\xb8\x76" "\xfc\x40\x5c\x27\x7e\x30\xae\x1b\x3f\x14\xd7\x8b\x1f\x8e\xeb\xc7\x8f\xc4" "\x0d\xe2\x47\xe3\x86\x71\xa3\xb8\x71\xdc\x24\x6e\x1a\x3f\x16\x37\x8b\x1f" "\x8f\x9b\xc7\x2d\xe2\x96\xf1\x13\x71\xab\xf8\xc9\xb8\x75\xfc\x54\xdc\x26" "\x7e\x3a\x6e\x1b\x3f\xf3\x87\xc7\x53\xe3\x1e\x71\xcf\xf8\xe5\xf8\xe5\x38" "\x84\x7b\xf5\xfc\xe4\x82\xe4\xc2\xe4\x87\xc9\x45\xc9\xc5\xc9\xb4\xe4\x47" "\xc9\x25\xc9\x8f\x93\x4b\x93\xcb\x92\xcb\x93\x2b\x92\x2b\x93\xab\x92\xab" "\x93\x6b\x92\x6b\x93\xeb\x92\xeb\x93\x1b\x92\x1b\x93\x9b\x92\x9b\x93\x5b" "\x92\x21\x54\xcb\x08\x1e\xbd\xf2\xda\x1b\x1f\xf9\x0c\x3e\xa3\x4f\xf1\x99" "\x7c\x66\x7f\x95\xcf\xe2\xaf\xf6\x59\xfd\x35\x3e\xe1\xaf\xf5\xd9\xfc\x75" "\x3e\xbb\xbf\xde\xe7\xf0\x39\x7d\x2e\x9f\xdb\xe7\xf1\x79\x7d\x3e\x6f\x3d" "\x79\xe7\xd9\xc7\x3e\xbf\x2f\xe0\x93\xfe\x06\x5f\xd0\xdf\xe8\x0b\xf9\xc2" "\xbe\x88\x2f\xea\xbd\x2f\xe6\x8b\xfb\x26\xbe\xa9\x6f\xea\x9b\xf9\xc7\x7d" "\x73\xdf\xc2\xb7\xf4\x4f\xf8\x27\xfc\x93\xfe\x49\xff\x94\x7f\xca\x3f\xed" "\xdb\xfa\x67\x7c\x3b\xff\xac\x6f\xef\x9f\xf3\x1d\xfc\xf3\xfe\x79\xff\x82" "\xef\xe4\x3b\xfb\x2e\xfe\x45\xdf\xd5\xbf\xe4\xbb\xf9\xee\x3e\xd5\xa7\xfa" "\x9e\xbe\xa7\xef\xe5\x7b\xf9\x3e\xbe\x8f\xef\xe7\xfb\xf9\xfe\xbe\xbf\x1f" "\xe0\x07\xf8\x81\x7e\xa0\x1f\xec\x07\xfb\x21\x7e\x88\x1f\xea\x87\xfa\x61" "\x7e\x98\x1f\xe1\x47\xf8\x91\x7e\xa4\x1f\xed\x47\xfb\xb1\x7e\xac\x1f\xef" "\xc7\xfb\x09\x7e\x82\x9f\xe8\x27\xfa\x49\x7e\x92\x9f\xe2\xa7\xf8\x69\x7e" "\x9a\x9f\xe1\x67\xf8\x99\x7e\xa6\x9f\xed\x67\xfb\x39\x85\xe6\xf8\xb9\x7e" "\xae\x9f\xef\xe7\xfb\x85\x7e\xa1\x5f\xe4\x17\xf9\x34\x9f\xe6\x97\xf8\x25" "\x7e\xa9\x5f\xea\x97\xfb\xe5\x7e\xa5\x5f\xe9\x57\xfb\xd5\x7e\xad\x5f\xeb" "\xd7\xfb\xf5\x7e\xa3\xdf\xe8\x37\xfb\xcd\x7e\xab\xdf\xea\xb7\xf9\x6d\x7e" "\x87\xdf\xe1\x77\xf9\x5d\x7e\x8f\xdf\xe3\xf7\xfa\xbd\x7e\x9f\xdf\xe7\xf7" "\xfb\xfd\xfe\x80\x3f\xe0\x0f\xfa\x83\xfe\x90\xff\xca\x1f\xf6\x5f\xfb\x23" "\xfe\x1b\x7f\xd4\x7f\xeb\x8f\xf9\xef\xfc\x71\xff\xbd\x3f\xe1\x4f\xfa\x53" "\xfe\x07\x7f\xda\xff\xe8\xcf\xf8\xb3\xfe\x9c\xff\xc9\x9f\xf7\x3f\xfb\x0b" "\xfe\x17\x7f\xd1\x07\x3f\x3e\xf1\x76\x62\x42\xe2\x9d\xc4\xc4\xc4\xbb\x89" "\x49\x89\xc9\x89\x29\x89\xa9\x89\x69\x89\xe9\x89\x19\x89\xf7\x12\x33\x13" "\xb3\x12\xb3\x13\xef\x27\xe6\x24\x3e\x48\xcc\x4d\xcc\x4b\xcc\x4f\x2c\x48" "\x2c\x4c\x7c\x98\x58\x94\x58\x9c\x48\x4b\x7c\x94\x58\x92\xf8\x38\xb1\x34" "\xb1\x2c\xb1\x3c\xb1\x22\xb1\x32\xb1\x2a\x11\x42\xde\x6d\x71\xc8\x1f\x0a" "\x84\x64\xb8\x21\x14\x0c\x37\x86\x42\xa1\x70\x28\x12\x8a\x06\x1f\x8a\x85" "\xe2\xe1\xa6\x50\x22\xdc\x1c\x4a\x86\x5b\x42\xa9\x70\x6b\x28\x1d\x6e\x0b" "\x65\x42\xd9\x50\x2e\x3c\x1a\x1a\x86\x46\xa1\x71\x68\x12\x9a\x86\xc7\x42" "\xb3\xf0\x78\x68\x1e\x5a\x84\x96\xe1\x89\xd0\x2a\x3c\x19\x5a\x87\xa7\x42" "\x9b\xf0\x74\x68\x1b\x9e\x09\xed\xc2\xb3\xa1\x7d\x78\x2e\x74\x08\xcf\x87" "\x8e\xe1\x85\xd0\x29\x74\x0e\x5d\xc2\x8b\xa1\x6b\x78\x29\x74\x0b\xdd\x43" "\x6a\xe8\x11\x7a\x86\x97\x43\xaf\xd0\x3b\xf4\x09\x7d\x43\xbf\xf0\x4a\xe8" "\x1f\x5e\x0d\x03\xc2\x6b\x61\x60\x18\x14\x06\x87\xd7\xc3\x90\xf0\x46\x18" "\x1a\xde\x0c\xc3\xc2\xf0\x30\x22\xbc\x15\x46\x86\x51\x61\x74\x18\x13\xc6" "\x86\x71\x61\x7c\x78\x3b\x4c\x08\xef\x84\x89\xe1\xdd\x30\x29\x4c\x0e\x53" "\xc2\xd4\x30\x2d\x4c\x0f\x33\xc2\x7b\x61\x66\x98\x15\x66\x87\xf7\xc3\x9c" "\xf0\x41\x98\x1b\xe6\x85\xf9\x61\x41\x58\x18\x3e\x0c\x8b\xc2\xe2\x90\x16" "\x3e\x0a\x4b\xc2\xc7\x61\x69\x58\x16\x96\x87\x15\x61\x65\x58\x15\x56\x87" "\x35\x61\x6d\x58\x17\xd6\x87\x0d\x61\x63\xd8\x14\x36\x87\x2d\x61\x6b\xf8" "\x24\x6c\x0b\xdb\xc3\x8e\xb0\x33\xec\x0a\xbb\xc3\x9e\xf0\x69\xd8\x1b\x3e" "\x0b\xfb\xc2\xe7\x61\x7f\xf8\x22\x1c\x08\x7f\x0a\x07\xc3\x97\xe1\x50\xf8" "\x2a\x1c\x0e\x5f\x87\x23\xe1\x9b\x70\x34\x7c\x1b\x8e\x85\xef\xc2\xf1\xf0" "\x7d\x38\x11\x4e\x86\x53\xe1\x87\x70\x3a\xfc\x18\xce\x84\xb3\xe1\x5c\xf8" "\x29\x9c\x0f\x3f\x87\x0b\xe1\x97\x70\x51\xfe\x66\x4d\x08\x21\x84\x10\xe2" "\xef\xa2\xff\xe0\x78\x8f\xbf\xf1\xbd\x0c\x00\xa0\x7e\x9b\xf7\x04\x80\xab" "\xb7\xe7\x3e\xfc\x9f\x6b\x6e\xcc\xf1\xe7\x79\x6f\x95\xa7\x55\x02\x00\x9e" "\xee\xde\xf1\xa1\xbf\x8c\x2a\x55\x52\x53\x53\x7f\x7b\xed\x52\x0d\x51\x81" "\x79\x00\x90\xf8\xeb\xfa\x7f\x89\x97\x41\x4b\x78\x12\xda\x40\x0b\x28\xf1" "\x37\xd7\xd7\x5b\x75\x3e\xcf\x7f\x50\x3f\x79\x2b\x40\xe6\xff\x90\x93\x02" "\x97\xe3\xcb\xf5\x6f\xfe\x2f\xea\x3f\xf6\xc4\x88\x45\xa5\xe3\x73\xd9\xfe" "\x9b\xfa\xf3\x00\x0a\x15\xb8\x9c\x93\x09\x2e\xc7\x97\xeb\x97\xfc\x2f\xea" "\xe7\x6c\xf6\x07\xeb\xcf\xf4\xe5\x78\x80\xe6\xff\x21\x27\x0b\x5c\x8e\x2f" "\xd7\x2f\x0e\x8f\xc3\x33\xd0\xe6\xaf\x5e\x29\x84\x10\x42\x08\x21\x84\x10" "\x42\xfc\x59\x6f\x55\xae\xfd\x1f\xdd\x3f\x5f\xba\x3f\xcf\x63\x2e\xe7\x64" "\x84\xcb\xf1\x1f\xdd\x9f\x0b\x21\x84\x10\x42\x08\x21\x84\x10\xe2\xca\x7b" "\xae\x73\x97\xa7\x1e\x6b\xd3\xa6\x45\xfb\xbf\x6f\x82\xbf\x3d\x17\xf8\xc7" "\xb2\x64\x22\x13\x99\xfc\x7f\x36\xb9\xd2\x9f\x4c\x42\x08\x21\x84\x10\x42" "\x88\x7f\xb5\xcb\x17\xfd\x57\x7a\x25\x42\x08\x21\x84\x10\x42\x08\x21\x84" "\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08" "\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x44\xfa\xf5\x3f\xf1\xef\xc4" "\xae\xf4\x1e\x85\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21" "\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42" "\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x88\x2b\xed" "\x7f\x05\x00\x00\xff\xff\x96\xec\x39\x69", 5374)); NONFAILING(syz_mount_image( /*fs=*/0x200000000000, /*dir=*/0x200000000240, /*flags=MS_LAZYTIME|MS_SYNCHRONOUS|MS_STRICTATIME|MS_MANDLOCK*/ 0x3000050, /*opts=*/0x200000000600, /*chdir=*/2, /*size=*/0x14fe, /*img=*/0x200000002180)); NONFAILING(memcpy((void*)0x200000000240, "./file0\000", 8)); syscall(__NR_chdir, /*dir=*/0x200000000240ul); NONFAILING(memcpy((void*)0x2000000002c0, "./control\000", 10)); syscall(__NR_mkdir, /*path=*/0x2000000002c0ul, /*mode=*/0ul); NONFAILING( memcpy((void*)0x2000000011c0, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 251)); NONFAILING(syz_mount_image( /*fs=*/0, /*dir=*/0x2000000011c0, /*flags=MS_SLAVE|MS_REC|MS_NODIRATIME|MS_NOATIME*/ 0x84c00, /*opts=*/0, /*chdir=*/0, /*size=*/0, /*img=*/0x200000000000)); NONFAILING(memcpy((void*)0x200000000040, "./file1\000", 8)); syscall(__NR_mkdir, /*path=*/0x200000000040ul, /*mode=S_IXOTH|S_IWOTH|S_IXGRP|S_IXUSR*/ 0x4bul); NONFAILING(memcpy((void*)0x200000000000, "./file0\000", 8)); NONFAILING(syz_mount_image(/*fs=*/0, /*dir=*/0x200000000000, /*flags=*/0, /*opts=*/0, /*chdir=*/0, /*size=*/0, /*img=*/0)); NONFAILING( memcpy((void*)0x200000001dc0, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 253)); syscall(__NR_mkdirat, /*fd=*/0xffffff9c, /*path=*/0x200000001dc0ul, /*mode=*/0ul); NONFAILING(memcpy((void*)0x200000000180, "msdos\000", 6)); NONFAILING(memcpy((void*)0x200000000140, "./bus\000", 6)); NONFAILING(syz_mount_image( /*fs=*/0x200000000180, /*dir=*/0x200000000140, /*flags=MS_I_VERSION|MS_PRIVATE|MS_STRICTATIME|MS_REMOUNT|MS_RELATIME|0x48c*/ 0x1a404ac, /*opts=*/0x200000001480, /*chdir=*/0xfe, /*size=*/0, /*img=*/0x200000000000)); NONFAILING(memcpy((void*)0x200000000040, ".\000", 2)); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000040ul, /*flags=O_DIRECTORY*/ 0x10000, /*mode=*/0); if (res != -1) r[0] = res; NONFAILING(memcpy((void*)0x200000000200, "./bus/file0\000", 12)); syscall(__NR_mkdirat, /*fd=*/r[0], /*path=*/0x200000000200ul, /*mode=S_IXOTH|S_IWOTH|S_IXUSR*/ 0x43ul); NONFAILING(memcpy((void*)0x200000000240, "./bus/file0\000", 12)); NONFAILING(memcpy((void*)0x2000000001c0, "./file0\000", 8)); syscall(__NR_renameat2, /*oldfd=*/r[0], /*old=*/0x200000000240ul, /*newfd=*/r[0], /*new=*/0x2000000001c0ul, /*flags=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; install_segv_handler(); loop(); return 0; }