// https://syzkaller.appspot.com/bug?id=70bcbdbc42b2ac95cd2d9526dff5f94dc8476688 // 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 setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } 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[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } NONFAILING(memcpy((void*)0x20000ec0, "nilfs2\000", 7)); NONFAILING(memcpy((void*)0x20000080, "./file0\000", 8)); NONFAILING(memcpy( (void*)0x20000f40, "\x78\x9c\xec\xdd\x4f\x6c\x1c\xd5\xfd\x00\xf0\x37\xeb\xbf\x89\x4d\xbc\x06" "\x7e\x60\xe0\x47\x48\xa1\x15\x81\x82\x1d\x92\x48\x4d\x6f\x41\xa0\x1e\x11" "\x97\xde\x41\x21\xa1\x11\x86\xa2\x86\x1e\x88\x80\x98\x1e\x10\x95\x10\x45" "\x42\x9c\x2a\x0e\x54\x5c\x28\x95\x52\xa4\x22\x81\x2a\x55\xa8\xa7\xb6\xa7" "\x56\xbd\xf5\x84\x7a\xa1\x52\x95\x4a\x41\x3d\xb4\x48\x89\xab\xd8\x6f\xd6" "\xbb\x2f\xfb\xd8\xf5\xd8\x9e\xb5\x77\x3f\x1f\xe9\xeb\xb7\x6f\xde\xec\x7c" "\xbf\x63\x3b\xce\xcc\xec\xec\xdb\x00\x8c\xac\xc6\xda\xd7\xe3\xc7\x17\x8a" "\x10\xde\xf9\xf4\xed\x47\x5f\x7e\xaa\xf8\xf8\xda\xb2\xbb\x5a\x6b\x1c\x5a" "\xfb\x5a\xc4\x5e\x33\x84\x30\xd1\xd6\x2f\x92\xed\x7d\x1e\x17\x5c\xb9\xfc" "\xd2\xa9\x6e\x6d\x11\x8e\xae\x7d\x2d\xfb\xe1\xb1\x4b\xad\xe7\xce\x84\x10" "\x56\xc2\xa1\xf0\x59\x68\x86\x0f\x97\x96\xbf\xfc\xe0\xdd\x47\x0e\x7f\xf4" "\xda\xf4\x2d\x6f\x9e\x7f\xe6\x95\x1d\xda\xfd\x96\x74\x3f\x00\x00\x60\x18" "\x5d\xfc\xd3\xf2\xdf\xee\xfb\xc7\x1f\x1f\x98\xff\xea\xe2\xc1\x93\x61\xaa" "\xb5\xbc\x3c\x3e\x6f\xc6\xfe\x4c\x3c\xee\x3f\x12\x0f\x94\xcb\xe3\xe5\x46" "\xe8\xec\x17\x6d\xd1\x6e\x32\x59\x6f\x2c\x46\x23\x59\x6f\x2c\x59\x6f\x3c" "\xc9\x33\x9e\xc9\x37\x91\x6c\x67\x22\xb3\xde\x64\x8f\x7c\x63\x6d\xcb\xba" "\xed\x27\x00\x00\x00\xec\x45\xe5\x79\x6d\x33\x14\x8d\xc5\x8e\x7e\xa3\xb1" "\xb8\xb8\x7e\xde\x7f\xcd\xe7\x73\x93\xc5\xe2\x73\x67\x97\xcf\x9c\x1b\x50" "\xa1\x00\x00\x00\x40\x65\xff\xbe\xb0\x76\xd3\xad\x10\x42\x08\x21\x84\x10" "\x42\x08\x21\x86\x38\x56\xe7\x06\x7d\x05\x02\x00\x00\x00\x18\x35\xe9\x7c" "\x61\xd7\x59\xd9\xde\x99\xba\x5a\x5b\x6b\xf6\x97\xff\xd2\xc3\x8d\xee\xcf" "\x87\x6d\x50\xf7\xef\xff\xd7\xe7\x9f\x1e\x70\xfe\x2e\x46\x3c\xff\xfb\xaf" "\xfa\x8b\x03\x00\x40\x75\xc3\x7a\x34\x59\xee\x57\x79\x1c\x5d\xce\x63\x90" "\xce\x23\x38\x96\x3c\x6f\xb3\xc7\xff\x8d\x64\x3b\xe3\x9b\xac\x33\x37\xaf" "\xe0\x5e\x99\x6f\x30\x57\x67\xfa\x7d\xdd\xad\x72\xf5\x6f\xf6\xe7\x38\x28" "\xb9\xfa\xd3\xf9\x30\x77\xab\x5c\xfd\xe9\x3c\x9d\xbb\x55\xae\xfe\xa9\x9a" "\xeb\xa8\x2a\x57\x7f\x97\x2b\x3f\xbb\x52\xae\xfe\x7d\x35\xd7\x51\x55\xae" "\xfe\xfd\x35\xd7\x51\x55\xae\xfe\x99\x9a\xeb\xa8\x2a\x57\xff\x6c\xcd\x75" "\x54\x95\xab\xff\x86\x9a\xeb\xa8\x2a\x57\xff\x81\x9a\xeb\xa8\x2a\x57\xff" "\x5e\xb9\xad\x36\x57\x7f\xb3\xe6\x3a\xaa\xca\xd5\x3f\x5f\x73\x1d\x55\xe5" "\xea\xbf\xb1\xe6\x3a\xaa\xca\xd5\x7f\x53\xcd\x75\x54\x95\xab\xff\xe6\x9a" "\xeb\x18\x94\x3b\x63\x5b\x7e\x1f\x0e\x66\xd6\x9b\xe9\x72\x4e\xb7\x57\xce" "\xf1\x00\x00\x00\x60\xd4\xfd\xd7\xfc\x7f\x42\x08\x21\x44\x7b\xac\xdf\x02" "\x31\xf8\x3a\x84\x10\x42\x08\x21\xb6\x35\x2e\x0c\xfa\x02\x04\x00\x00\x00" "\x30\x70\xe5\xfb\x02\xca\x77\xbd\xaf\x46\xe5\xf8\x58\x8f\xf1\xf1\xf6\xf1" "\xe9\x8d\x15\xca\xf1\x89\x1e\xcf\x9f\xec\x31\x3e\xd5\x63\x1c\x00\x00\x00" "\x08\xe1\xb7\xaf\x9f\xb9\xed\xad\x62\x63\xbe\xbb\xad\xce\x87\x57\xce\x1b" "\xb5\x2f\x7c\x7c\x35\x54\x98\xc7\x28\x9d\x8f\x70\xb3\xf9\xb7\x3a\xef\xd9" "\x56\xf3\xef\x95\x79\xcb\x00\x00\x00\x18\x2d\xc5\xf7\x3e\xbb\x7a\xff\xa3" "\xef\xbd\x30\xff\xd5\xc5\x83\x27\xdb\xce\x7e\xaf\xc6\xf3\xdd\x72\x1e\xd0" "\xf1\x78\x6d\xe0\x93\xd8\x2f\xef\x0b\x98\x4d\xfa\x45\x79\x0e\x7d\xb2\x33" "\x4f\x23\xb3\x5e\x7a\x7d\xe0\x86\xdc\xf6\x1e\xdf\xe2\x8e\x02\x00\x00\xc0" "\x08\x2b\xcf\xdf\x9b\xa1\x68\x2c\xb6\x9d\x77\x37\x43\xa3\xb1\xb8\xb8\x71" "\x3e\xbe\x10\x26\x8a\x33\x67\x97\x4f\x1f\x89\xfd\xf2\xf3\x59\xfe\x30\x37" "\x31\x75\x6d\xf9\x43\x35\xd7\x0d\x00\x00\x00\xf4\x6f\xe3\x7c\xbf\xfb\xf9" "\x7f\xf9\x39\xbe\x0b\x61\xb2\x58\x7c\xee\xec\xf2\x99\x73\xeb\xfd\xd9\xd6" "\xf2\x89\x46\xfb\x75\x81\xb9\x8d\xe5\x45\xfb\x75\x81\x66\xb2\xfc\x68\x66" "\xf9\xb1\xd8\x2f\x3f\xbf\xf3\x07\x73\xfb\xd6\x96\x2f\x9e\xfa\xe1\xf2\x53" "\xdb\xbd\xf3\x00\x00\x00\x30\x22\xce\xbd\x78\xfe\x99\x27\x97\x97\x4f\xff" "\xc8\x03\x0f\x3c\xf0\xa0\xf5\x60\xd0\x7f\x99\x00\x00\x80\xed\xf6\xc5\x17" "\x6f\x4f\xfc\xf8\xd8\xec\xef\xd6\xdf\xff\xbf\x31\xff\xdd\xd5\xf8\xe0\x50" "\xec\x37\xe3\xdc\x7e\x7f\x8e\xcb\xcb\xfb\x04\xca\xf7\x01\x5c\xf7\x7e\xfd" "\x27\x3a\xf3\xcc\xe5\xd6\x7b\xbe\x73\xbd\x66\xb2\xde\x58\x8c\xa9\xa4\xee" "\xe9\xb6\xed\x84\xb5\xf9\x06\x3b\x9f\x37\x9f\xcb\xd7\xec\xdc\xce\x64\x26" "\xdf\x4c\x92\x6f\x36\xc9\x97\xce\x53\x30\x9e\xac\x5f\x74\x99\x4b\x30\x74" "\x99\x9f\xb0\x5c\x6f\x2e\x59\x9e\xce\xc3\x38\x9e\xe4\x28\x92\xfc\x77\x77" "\xc9\x05\x00\x00\x00\xa5\xa5\x17\x9e\x7d\x7e\xe9\xdc\x8b\xe7\x1f\x3c\xfb" "\xec\x93\x4f\x9f\x7e\xfa\xf4\x73\xc7\x8e\x9e\xf8\xee\x89\x13\x47\x1e\xfa" "\xce\x43\x4b\x6b\xf7\xf5\x2f\xb5\xdf\xdd\x0f\x00\x00\x00\xec\x45\x1b\x37" "\xfd\x0e\xba\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x18\x5d\x75\x7c\x9c\xd8\xa0\xf7\x11\x00\x00\x00\x46\xdd\xbf\x2e\x84" "\x10\x56\x84\xc8\x44\xf9\x01\x83\x83\xae\x43\xec\xe6\x58\x9d\x1a\x7c\x0d" "\xc3\x1d\xc1\xbf\x43\x21\x84\x10\x42\x6c\x31\x9c\xf7\x89\x95\x10\x56\x57" "\xd3\x4f\x9a\x07\x00\x00\x00\xd8\x59\x57\x2e\xbf\x74\xaa\xbd\xbd\xce\x4a" "\xb1\xad\xf9\x5a\x5b\x6b\xae\x37\x57\x63\xde\xb2\x9d\x7d\xf0\xaf\xf3\xd7" "\xa2\x5c\xed\xd2\xc3\x9d\xd7\x4b\xf6\x6f\x6b\x35\x8c\xba\xba\x7f\xff\xe5" "\xdf\xad\xf9\xa7\xba\x8e\xbf\xff\xea\xf6\xe6\x9f\x0e\x1b\x7f\xfb\x42\x5f" "\x7f\xff\x1a\x9d\x1b\x38\xd9\xd1\xdb\xd7\x6f\xde\x7b\x97\x7e\xb9\xd0\xca" "\x1f\x42\xb8\x7d\xbc\xcf\xfc\xe9\xfe\x3f\xde\x6f\xc6\x4e\x87\x93\xfc\xf7" "\x86\xfe\xf2\xaf\xbe\x97\xe4\x7f\xa2\xa3\xd7\xe8\x37\xff\x7d\x49\xfe\xfd" "\x7d\xe6\xbf\x6e\xff\x9f\xef\x37\x63\xa7\xfb\x63\xfe\x85\xd8\x3f\x7c\x4f" "\xbf\xf9\x3b\x77\xb1\xfc\x2d\x2d\xf7\xa3\xdf\x5f\x80\x6f\x27\xfb\xff\x54" "\xe8\x37\x7f\xb2\xff\xcd\x3e\x13\x26\x1e\x88\xf9\x01\x60\x14\xb5\xfe\x37" "\x5f\xbd\x30\xd8\x42\xb6\x59\x79\x94\x50\x1e\x4f\xcf\xc4\x7e\xb9\xbf\xf1" "\x70\x33\xa4\x77\x3f\x6c\xf6\xf8\xbf\x91\x6c\x67\x7c\xcb\x95\x77\x6e\xb7" "\x3c\x0e\xba\x35\xf6\xa7\x5b\x75\x74\xe6\x2d\x6d\xb6\xfe\xf2\xfb\x32\x1b" "\xdb\x1b\x2a\xd6\x99\xda\x2b\x77\x95\xe4\xea\xdf\xae\x9f\xe3\x4e\xcb\xd5" "\x3f\x51\x73\x1d\x55\xe5\xea\x9f\xac\xb9\x8e\xaa\x72\xf5\x77\x3f\x7b\xdf" "\x7d\x72\xf5\x4f\xd7\x5c\x47\x55\xb9\xfa\xfb\xbe\x10\x31\x60\xb9\xfa\xf7" "\xca\x75\xe5\x5c\xfd\x33\x35\xd7\x51\x55\xae\xfe\xd9\x9a\xeb\xa8\x2a\x57" "\xff\x66\xff\x1f\x1f\x94\x5c\xfd\x07\x6a\xae\xa3\xaa\x5c\xfd\x73\x35\xd7" "\x51\x55\xae\xfe\x8a\x97\xd5\x6a\x97\xab\x7f\xbe\xe6\x3a\xaa\xca\xd5\x7f" "\x63\xcd\x75\x54\x95\xab\xff\xa6\x9a\xeb\xa8\x2a\x57\xff\xcd\x35\xd7\x31" "\x28\x77\xc4\x36\x77\x3e\x5c\x9e\x7f\xce\xc5\xb1\xb2\xdf\x4c\xfa\x53\x5d" "\xbe\x97\x7d\xbf\x18\x02\x00\x00\x00\xec\xa8\x7f\xee\xca\x79\x20\xda\xae" "\x1c\x0c\xbc\x16\x21\x84\x10\x42\x08\x21\x86\x3f\xfe\xb3\xba\x6e\xd0\x75" "\x08\x21\x76\x2e\x56\x57\x07\x79\xf5\x81\x41\xdb\xd9\x77\x33\x03\xb0\x5b" "\xf9\xfb\x3f\xda\xfc\xfc\x47\x9b\x9f\xff\x68\xf3\xf3\xe7\xeb\x94\xaf\xc4" "\x17\x49\xbf\x34\xd6\x63\x7c\xbc\xc7\xf8\x44\x8f\xf1\xc9\x64\x3c\xfd\x7d" "\x9d\xea\x31\x7e\x53\xb2\xdd\xd5\xf2\xba\x66\x74\x73\x8f\xf1\xff\x8b\x7b" "\x90\x1b\x3f\xd0\xe3\xf9\xb7\xf6\x18\x5f\xe8\x31\x7e\x5b\x8f\xf1\xdb\x7b" "\x8c\xdf\xd1\x63\x1c\x00\x00\x80\xd1\x70\x4b\x6c\x9d\x1f\x02\x00\x00\xc0" "\xf0\x7a\xf9\x57\x9f\xbc\xf1\x9b\x7b\x9f\xb8\x3c\xff\xd5\xc5\x83\x27\xc3" "\xe4\x75\xf3\xce\x1f\x89\xfd\xa9\xf8\xda\xfa\xeb\xb1\x9f\xce\x7b\x5f\x9a" "\x88\xaf\xf9\xff\x24\xf6\x7f\x11\xdb\xdf\xc7\xf6\xef\xc9\xfa\xee\x3f\x01" "\x00\x00\x80\x9d\x57\x7e\x4e\x8c\xd7\xff\x01\x00\x00\x60\x78\x95\x9f\x53" "\xea\xfc\x1f\x00\x00\x00\x86\xd7\x7c\x6c\x9d\xff\x03\x00\x00\xc0\xf0\xba" "\x31\xb6\xce\xff\x01\x00\x00\x60\x88\x15\xd3\xdd\x17\xc7\xb6\xbc\x2e\x70" "\x77\x6c\xfb\x9d\xd7\x0f\x00\xd8\xfd\xfe\x3f\xb6\x77\xc6\xf6\x60\x6c\xef" "\x8a\xed\x37\x62\x5b\x1e\x07\xdc\x13\xdb\x6f\xd6\x54\x1f\x00\xb0\x7d\x7e" "\xfe\xfd\x9f\x9e\x78\xab\xd8\x98\xef\xff\x58\x32\x7e\x25\x2e\x2f\xdb\xeb" "\xac\xac\x5f\x29\x28\x1a\x9d\x33\xf9\xef\x8b\xed\xfe\xd8\x7e\xab\xcf\x7a" "\xd2\xcf\x03\xe8\x37\x7f\xe9\x40\x9f\x79\x76\x2a\xff\xdc\x16\xf3\x03\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xc3\xa3\xb1\xf6\xf5\xf8\xf1\x85\x22\x84\x77\x3e\x7d\xfb\xd1" "\x9f\x4d\xbe\xf1\x97\x6b\xcb\xee\x6a\xad\x71\x68\xed\x6b\x11\x7b\xcd\x10" "\xc2\x44\xeb\x79\xe5\xe8\x46\xff\xd7\x71\xc5\x2b\x97\x5f\x3a\xd5\xde\x5e" "\x8d\x6d\x11\x8e\x86\x22\x14\xad\xe5\xe1\xb1\x4b\xad\x4c\x33\x21\x84\x95" "\x70\x28\x7c\x16\x9a\xe1\xc3\xa5\xe5\x2f\x3f\x78\xf7\x91\xc3\x1f\xbd\x36" "\x7d\xcb\x9b\xe7\x9f\x79\x65\x07\xbf\x05\x1d\xfb\x07\x00\x00\x00\xc3\xe8" "\x7f\x01\x00\x00\xff\xff\x7d\xc7\x20\xee", 3844)); NONFAILING(syz_mount_image(/*fs=*/0x20000ec0, /*dir=*/0x20000080, /*flags=*/0, /*opts=*/0x20000400, /*chdir=*/1, /*size=*/0xf04, /*img=*/0x20000f40)); NONFAILING(memcpy((void*)0x200000c0, "./file0\000", 8)); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000c0ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[0] = res; NONFAILING(memcpy((void*)0x200003c0, "./file0\000", 8)); syscall(__NR_mknodat, /*dirfd=*/r[0], /*file=*/0x200003c0ul, /*mode=*/0ul, /*dev=*/0); NONFAILING(memcpy((void*)0x20000040, ".\000", 2)); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000040ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[1] = res; NONFAILING(memcpy((void*)0x20000240, "./bus\000", 6)); syscall(__NR_mkdir, /*path=*/0x20000240ul, /*mode=*/0ul); NONFAILING(memcpy((void*)0x200001c0, "./file0\000", 8)); NONFAILING(memcpy((void*)0x20000200, "./bus/file0\000", 12)); syscall(__NR_renameat2, /*oldfd=*/r[1], /*old=*/0x200001c0ul, /*newfd=*/r[1], /*new=*/0x20000200ul, /*flags=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); setup_sysctl(); const char* reason; (void)reason; install_segv_handler(); loop(); return 0; }