// https://syzkaller.appspot.com/bug?id=29f52d4baeec7d90c9fd0fb991721f3cad42a4d5 // 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 #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; 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 void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } 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; } static long syz_open_dev(volatile long a0, volatile long a1, volatile long a2) { if (a0 == 0xc || a0 == 0xb) { char buf[128]; sprintf(buf, "/dev/%s/%d:%d", a0 == 0xc ? "char" : "block", (uint8_t)a1, (uint8_t)a2); return open(buf, O_RDWR, 0); } else { char buf[1024]; char* hash; strncpy(buf, (char*)a0, sizeof(buf) - 1); buf[sizeof(buf) - 1] = 0; while ((hash = strchr(buf, '#'))) { *hash = '0' + (char)(a1 % 10); a1 /= 10; } return open(buf, a2, 0); } } //% 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; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static int inject_fault(int nth) { int fd; fd = open("/proc/thread-self/fail-nth", O_RDWR); if (fd == -1) exit(1); char buf[16]; sprintf(buf, "%d", nth); if (write(fd, buf, strlen(buf)) != (ssize_t)strlen(buf)) exit(1); return fd; } 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"); if (symlink("/dev/binderfs", "./binderfs")) { } } static const char* setup_fault() { int fd = open("/proc/self/make-it-fail", O_WRONLY); if (fd == -1) return "CONFIG_FAULT_INJECTION is not enabled"; close(fd); fd = open("/proc/thread-self/fail-nth", O_WRONLY); if (fd == -1) return "kernel does not have systematic fault injection support"; close(fd); static struct { const char* file; const char* val; bool fatal; } files[] = { {"/sys/kernel/debug/failslab/ignore-gfp-wait", "N", true}, {"/sys/kernel/debug/fail_futex/ignore-private", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-highmem", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-wait", "N", false}, {"/sys/kernel/debug/fail_page_alloc/min-order", "0", false}, }; unsigned i; for (i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].file, files[i].val)) { if (files[i].fatal) return "failed to write fault injection file"; } } return NULL; } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 7; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0) + (call == 4 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); 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; } remove_dir(cwdbuf); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20000dc0, "nilfs2\000", 7); memcpy((void*)0x20000e00, "./file0\000", 8); memcpy((void*)0x20000040, "\x00\x40\xce\x91\xba\xe9\x4d\x65\x91\xac\x6d\x01\x00\x00\x00\x00" "\x00\x00\x00\xb5\x38\x40\x50\xda", 24); memcpy( (void*)0x20001c40, "\x78\x9c\xec\xdd\x4b\x6f\x5c\xd5\x1d\x00\xf0\x73\xc7\x9e\x38\x2f\x1a" "\x87\x98\xda\x4d\xd3\xd8\x25\xa5\xb8\x8f\xd8\x24\x58\xa5\xbb\x1a\x29" "\x5d\xa0\x4a\xa8\x12\x9f\x00\xa5\x81\x86\x1a\xfa\x08\x5d\x80\x82\x94" "\xb0\xe8\xb6\x91\x10\x1f\xa0\x88\x7d\x17\x7d\x66\x81\x14\xb1\x4a\xc5" "\xa6\x55\xbf\x00\x62\xd5\x4d\x8a\x90\x68\x1b\x55\x02\x57\xb6\xcf\x19" "\x8f\xff\x9e\xe9\x1d\x3b\xb6\xc7\xe3\xf9\xfd\xa4\x3b\x67\xee\xfd\x9f" "\x7b\xcf\x39\xf3\xb8\x73\xe7\xbe\x4e\x02\x86\x56\x63\xf5\x71\x61\x61" "\xaa\x4a\xe9\xed\xdb\x6f\x5d\xba\x3f\x3d\xfa\x9f\x95\x29\xd3\xad\x1c" "\x33\xab\x8f\xa3\x79\x6c\x31\xa5\xd4\x6c\xcd\x97\xd2\x78\x58\xde\xe2" "\xd8\x5a\xfa\xd9\x27\xd7\x2f\xb7\xa7\x9f\xe7\xb4\x4a\x17\x53\x95\xaa" "\xd6\xf4\xf4\xec\xbd\xd6\xbc\xc7\x52\x4a\x37\xd2\x4c\xba\x93\xc6\xd3" "\x73\x1f\x4f\xde\x7a\xe9\x83\x67\x96\xde\x3b\x75\xf3\xd4\xa5\x37\x66" "\xef\xee\x4e\xeb\x01\x00\x60\xb8\xdc\xff\xc1\xbb\x3f\xff\xcb\xe3\xdf" "\xbf\x7e\xf2\xbf\xbf\x3d\xbb\x98\xc6\x5a\xd3\xcb\xf6\xf9\x62\x1e\x3f" "\x9e\xb7\xfb\x17\xab\xb5\xf1\x9c\xb4\xfe\x07\x54\x6d\x69\xd5\x36\x5e" "\x1c\x0a\xf9\x46\xf3\xd0\x08\xf9\x46\x3a\xe4\x6b\x2f\xa7\x19\xf2\x8d" "\x76\x29\xff\x50\x58\x6e\xb3\x4b\xbe\xb1\x9a\xf2\x47\xda\xa6\x75\x6a" "\x37\x0c\xb2\xf5\xff\xf1\x55\x63\x6e\xc3\x78\xa3\x31\x37\xb7\xf6\x9f" "\x7c\xc5\x87\x23\x87\xaa\xb9\x57\xae\x2e\xbd\x70\xad\x4f\x15\x05\x76" "\xdc\xa7\xd3\x79\x17\x9f\xc1\x60\x18\xba\x61\xf9\x44\xbf\xd7\x40\x00" "\x6b\xe2\x71\xc3\x4d\x6e\xc4\x3d\x0b\x0f\xa6\xb5\xb4\xd1\xde\xca\xbf" "\xf7\x74\xa3\xf3\xfc\xb0\x03\xf6\xfa\xf3\xaf\xfc\xc1\x2a\xff\xdd\x9b" "\xd6\x38\xec\x9c\x83\xfa\x69\x2a\xed\x2a\xdf\xa3\xe3\x79\x3c\x1e\x47" "\x18\x0d\xf3\x6d\xf5\xfb\x5f\x96\x17\x8f\x47\x34\x37\x1f\x82\xe8\xa8" "\xdb\x71\x84\x41\x39\xbe\xd0\xad\x9e\x23\x7b\x5c\x8f\xed\xea\x56\xff" "\xf8\xb9\x38\xa8\xbe\x92\xd3\xf2\x3a\x9c\x0d\xf1\xf6\xef\x4f\x7c\x4f" "\x07\xe5\x3d\x06\x3a\xbb\x6f\xff\xbf\xc1\x30\xb4\xc3\x72\xbf\x57\x40" "\xc0\xbe\x15\xcf\x9b\x5b\xce\x4a\x3c\x9e\xd7\x17\xe3\x63\x35\xf1\xc3" "\x35\xf1\x23\x35\xf1\xa3\x35\xf1\x63\x35\x71\x18\x66\xbf\x7b\xf5\xd7" "\xe9\x56\xb5\xfe\x3f\x3f\xfe\xa7\xdf\xea\xfe\xb0\xb2\x9f\xed\xa1\x9c" "\x7e\x61\x8b\xf5\x89\xfb\x23\xb7\x5a\x7e\x4f\x3b\xdd\x76\xb1\xfc\x78" "\x3e\x31\xec\x6b\xb3\xff\x3e\xf3\xe9\x2f\xef\xfc\x35\x9e\xff\xff\x79" "\x38\xff\xff\x5c\xfe\x2d\x1d\xcf\x2b\x88\xb2\xbf\x30\xee\x57\x6f\x9d" "\xfb\x1f\x2e\x0c\x6e\x74\xc9\xf7\x70\xa8\xce\x43\x1d\xf2\xaf\x3e\x9f" "\xd8\x98\xaf\x9a\x58\x5f\x4e\x6a\x5b\xcf\x6c\xaa\xc7\xd4\xc6\xf9\x4e" "\x74\xcb\x77\x66\x63\xbe\xf1\x90\xef\x68\xde\x16\x39\x1c\xea\x1b\xb7" "\x4f\x8e\x86\xf9\xca\xf6\x47\x59\xaf\x96\xd7\x6b\x34\xb4\xb7\x19\xda" "\x71\x28\xd4\xa3\xbc\x33\x27\x73\x7a\x38\xb4\xe7\x64\xb7\x76\x85\x1d" "\xd9\x87\x42\xbe\x66\x1e\x4e\x85\x76\x4d\x84\x76\x3d\x12\xe6\xfb\x62" "\x68\x57\x35\xb5\xb1\x5d\x71\xff\x79\xa9\xcf\x64\x98\xde\xec\x92\x2f" "\xbc\x6d\x9b\x7e\x97\xe2\x7b\x11\xaf\xcb\x78\x34\xa7\x6f\xe6\xf4\x9d" "\x9c\xbe\x9f\xd3\x8f\x3a\x94\x3b\x8c\xca\xe7\xb1\xdb\xf9\xff\xe5\xf3" "\x39\x95\x9a\xd5\x0b\x57\x97\xae\x3c\x91\xc7\xcb\xe7\xf4\xee\x48\x73" "\x6c\x65\xfa\x85\x3d\xae\x37\xf0\xe0\x7a\xbd\xfe\x67\x2a\x6d\xbc\xfe" "\xe7\x78\x6b\x7a\xb3\xd1\xbe\x5e\x38\xb1\x3e\xbd\x6a\x5f\x2f\x8c\x87" "\xe9\x17\xbb\x4c\x7f\x32\x8f\x97\xdf\xb3\x1f\x8f\x1c\x59\x9d\x3e\x77" "\xf9\xa7\x4b\x3f\xda\xe9\xc6\xc3\x90\xbb\xf6\xda\xeb\x3f\x79\x7e\x69" "\xe9\xca\x2f\x3c\xf1\xc4\x13\x4f\x5a\x4f\xfa\xbd\x66\x02\x76\xdb\xfc" "\xab\x2f\xff\x6c\xfe\xda\x6b\xaf\x9f\xbf\xfa\xf2\xf3\x2f\x5e\x79\xf1" "\xca\x2b\x17\x9e\xf8\xee\x77\x9e\x7c\xea\xa9\x85\xf9\xd5\xad\xfa\xf9" "\xf6\x6d\x7b\xe0\x60\x59\xff\xd1\xef\x77\x4d\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x80\x9e\x55\x47\x3a\x4f\xce\xe9\xff\xb9\xbf\xed\xaa\x72" "\x3d\x79\xb9\x3e\x3d\x5e\x1f\xcf\x60\x28\xef\x5b\xf9\x34\x94\xfb\x18" "\x94\xeb\x3f\xbb\xdd\xd7\xa5\x5c\xbf\x79\x72\x0f\xea\xc8\xce\xdb\x8b" "\xcb\x89\xfa\xdd\x46\xa0\xb3\x7f\xba\xff\xaf\xc1\x30\xb4\xc3\xf2\xb2" "\xbb\xf8\x03\xfb\x43\xbf\xfb\xff\x2b\xf7\x3d\x2c\xe9\xf1\xf3\x7f\x3f" "\xb9\x32\x94\x6c\xf7\x9e\xde\xb8\xbe\x8c\xf7\x2f\x84\x07\xb1\xdf\xfb" "\x9f\x53\xfe\xc1\xea\xff\xaf\xd5\xff\x55\xcf\xeb\xbf\xd0\x63\xd6\xf8" "\xf6\xca\xfd\xfd\xfd\x23\x7f\x6b\x2b\x36\x9d\xee\xb5\xfc\xd8\xfe\x72" "\x1f\xd8\x89\xad\x95\xff\x87\x5c\x7e\x69\xcd\x63\xa9\xb7\xf2\x97\x7f" "\x13\xca\x8f\x37\x2a\xed\xd1\x1f\x43\xf9\x47\x7b\x2c\x7f\x53\xfb\xcf" "\x6c\xaf\xfc\x3f\xe5\xf2\xcb\xcb\x36\x7b\xae\xd7\xf2\xd7\x6a\x5c\x35" "\x36\xd6\x23\xee\x37\x2e\xf7\x01\x8c\xfb\x8d\x8b\x3f\x87\xf6\x97\x7b" "\xfb\x6d\xb9\xfd\xdb\xec\xa8\xed\x76\x2e\x1f\x86\xd9\xa0\xf4\x33\xb9" "\x55\xfb\xa0\xff\xcf\x07\x52\x96\x5b\xd6\x83\x79\xf5\xdc\x3a\x4e\x57" "\xee\xbf\x1d\xfb\x3b\xd8\x6a\xfd\xcb\x7d\xbf\xcb\xef\xc0\x23\x61\xf9" "\x55\xcd\xef\x9b\xfe\x3f\x07\x5b\x5d\xff\x9f\xe5\xf3\x37\xaf\xff\x4f" "\x38\x70\x3e\x74\xfc\xcf\x60\x18\xda\x61\x79\x79\xb9\xaf\x5d\x9f\x0c" "\x6b\xbf\x2b\xfb\x45\xbf\x5f\xff\x7e\x6f\x43\xf6\xbb\xfc\x7e\xbf\xfe" "\x75\x62\xff\x9f\xf1\xff\x52\xec\xff\x33\xc6\x63\xff\x9f\x31\x1e\xfb" "\xff\x8c\xf1\xd8\xbf\x56\x8c\xc7\xfe\x3f\xe3\xeb\x19\xfb\xff\x8c\xf1" "\xc9\xb0\xdc\xd8\x3f\xe8\x54\x4d\xfc\x4b\x35\xf1\xd3\x35\xf1\x2f\xd7" "\xc4\xcf\xd4\xc4\xe3\xff\xb7\x18\x9f\xa9\x89\x9f\xad\x89\x4f\xd7\xc4" "\x1f\xae\x89\x3f\x5a\x13\x3f\x57\x13\xff\x5a\x4d\xfc\xb1\x9a\xf8\xe3" "\x35\xf1\xd9\x9a\xf8\x41\xf7\xd5\x9c\x0e\x6b\xfb\x61\x98\xc5\x7e\x23" "\x7d\xff\x61\x78\x94\xe3\x3f\xdd\xbe\xff\x13\x35\x71\x60\x70\xc5\x7e" "\x9d\xe3\xf7\xfb\xeb\x35\x71\x60\x70\x95\xf3\x3c\x7c\xbf\x61\x08\x55" "\x9d\xef\xd8\x11\xf7\xb7\x97\xfd\xb8\x6f\xe6\xf4\x9d\x9c\xbe\x9f\xd3" "\x8f\x76\xad\x82\xec\x85\x6f\xe4\xf4\x9b\x39\xfd\x56\x4e\xbf\x9d\xd3" "\xf3\x39\x9d\xcb\xe9\x7c\x4e\xf5\x0d\x39\xd8\x7e\xf5\x8f\xd3\x67\x6f" "\x55\xeb\xe7\xf9\x9d\x08\xf1\x5e\xcf\x27\x8d\xd7\x03\xc4\xfb\xc4\x5c" "\xe8\xb1\x3e\xf1\xf8\xdc\x56\xcf\x67\x9d\xec\xb1\x9c\xdd\x2a\x7f\x9b" "\x97\x83\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x0c\x8c\xc6\xea\xe3\xc2\xc2\x54\x95" "\xd2\xdb\xb7\xdf\xba\xf4\xaf\x89\xef\xfd\x70\x65\xca\x74\x2b\xc7\xcc" "\xea\xe3\x68\x1e\x5b\x4c\x29\x35\x53\x4a\x55\x1e\x1f\x0d\xcb\xbb\x31" "\xb6\x96\x7e\xf6\xc9\xf5\xcb\x9d\xd2\x2a\x5d\x5c\x7d\x2c\xe3\xe9\xd9" "\x7b\xad\x79\x8f\xad\xcc\x9f\x66\xd2\x9d\x34\x9e\x9e\xfb\x78\xf2\xd6" "\x4b\x1f\x3c\xb3\xf4\xde\xa9\x9b\xa7\x2e\xbd\x31\x7b\x77\x77\x5a\x0f" "\x00\x00\x00\xc3\xe1\x7f\x01\x00\x00\xff\xff\x44\xb8\xe5\xc7", 3483); syz_mount_image(/*fs=*/0x20000dc0, /*dir=*/0x20000e00, /*flags=*/0, /*opts=*/0x20000040, /*chdir=*/1, /*size=*/0xd9b, /*img=*/0x20001c40); break; case 1: memcpy((void*)0x20000fc0, "./" "file1aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 248); syscall(__NR_open, /*file=*/0x20000fc0ul, /*flags=O_DIRECT|O_CREAT*/ 0x4040ul, /*mode=*/0ul); break; case 2: memcpy((void*)0x20000180, "/dev/loop#\000", 11); res = -1; res = syz_open_dev(/*dev=*/0x20000180, /*id=*/0, /*flags=O_NOFOLLOW|FASYNC|O_APPEND*/ 0x22400); if (res != -1) r[0] = res; break; case 3: *(uint32_t*)0x200000c0 = 0; *(uint16_t*)0x200000c8 = 0; *(uint64_t*)0x200000d0 = 0; *(uint16_t*)0x200000d8 = 0; *(uint32_t*)0x200000e0 = 0xf348; *(uint32_t*)0x200000e4 = 9; *(uint32_t*)0x200000e8 = 0x1f; *(uint32_t*)0x200000ec = 0x14; memcpy((void*)0x200000f0, "\x9e\x95\x9f\x16\xb6\x78\x7b\x08\xaa\x26\xe6\x6c\x40\x56\xa5\x16" "\x95\x28\x48\x54\xc2\x82\xec\x6b\xcf\xee\xf4\xfb\x0e\xfc\xc1\xd8" "\xa6\x07\x8e\xbe\x8e\x03\x3f\xd5\xf0\x64\x39\x02\xdd\x8f\x6f\xac" "\x27\x4d\xe9\xd9\x40\xbb\xa5\xe5\x92\xbb\xd4\xce\x85\x45\x0d\x00", 64); memcpy((void*)0x20000130, "\xf6\x25\xc1\x0e\x6e\x4c\x36\xc8\x00\xde\xe9\x60\x15\xe0\xfb\x7e" "\x90\x4d\xc8\xdf\x62\xa3\xa8\x93\xec\x00\x34\x7f\x41\xbe\x5a\x08", 32); *(uint64_t*)0x20000150 = 2; *(uint64_t*)0x20000158 = 9; *(uint32_t*)0x20000160 = 0; syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0x4c02, /*arg=*/0x200000c0ul); break; case 4: memcpy((void*)0x20000780, "ext4\000", 5); memcpy((void*)0x20000240, "./file0\000", 8); *(uint8_t*)0x20000040 = 0; memcpy( (void*)0x20000fc0, "\x78\x9c\xec\xdd\xdf\x6b\x5b\x55\x1c\x00\xf0\xef\x4d\xdb\x75\xed\xa6" "\xad\x20\xe8\x7c\x2a\x08\x5a\x18\x4b\xed\xac\x9b\x82\x0f\x13\x1f\x44" "\x70\x30\xd0\x67\xb7\x90\x66\x65\x36\x6d\x46\x93\x8e\xb5\x14\xdc\x10" "\xc1\x17\x41\xc5\x07\x41\x5f\xf6\xec\x8f\xf9\xe6\xab\x3f\x5e\xf5\xbf" "\xf0\x41\x36\xa6\x76\xc3\x89\x0f\x52\xb9\x69\xd2\x65\x6b\xd2\xa5\x5b" "\x93\x08\xf9\x7c\xe0\x34\xe7\xdc\x7b\xd3\x73\xbe\x39\xf7\x9e\x7b\x92" "\x7b\x49\x02\xe8\x5b\x13\xe9\x9f\x4c\xc4\xa1\x88\xf8\x28\x89\x18\xab" "\x2d\x4f\x22\x62\xa8\x9a\x1b\x8c\x38\xb1\xb9\xdd\xed\xf5\xb5\x7c\x9a" "\x92\xd8\xd8\x78\xf3\x8f\xa4\xba\xcd\xad\xf5\xb5\x7c\x34\x3c\x27\x75" "\xa0\x56\x78\x32\x22\x7e\x7c\x3f\xe2\x70\x66\x7b\xbd\xe5\x95\xd5\xf9" "\x5c\xb1\x58\x58\xaa\x95\xa7\x2a\x0b\xe7\xa7\xca\x2b\xab\x47\xce\x2d" "\xe4\xe6\x0a\x73\x85\xc5\x63\xd3\x33\x33\x47\x8f\xbf\x70\xfc\xd8\xde" "\xc5\xfa\xd7\x2f\xab\x07\xaf\x7f\xfc\xda\xb3\xdf\x9c\xf8\xe7\xbd\x27" "\xae\x7e\xf8\x53\x12\x27\xe2\x60\x6d\x5d\x63\x1c\x7b\x65\x22\x26\x6a" "\xaf\xc9\x50\xfa\x12\xde\xe5\xd5\xbd\xae\xac\xc7\x92\x5e\x37\x80\x07" "\x92\x1e\x9a\x03\x9b\x47\x79\x1c\x8a\xb1\x18\xa8\xe6\x5a\x18\xe9\x66" "\xcb\x00\x80\x4e\x79\x37\x22\x36\x00\x80\x3e\x93\x38\xff\x03\x40\x9f" "\xa9\x7f\x0e\x70\x6b\x7d\x2d\x5f\x4f\xbd\xfd\x44\xa2\xbb\x6e\xbc\x12" "\x11\xfb\x37\xe3\xaf\x5f\xdf\xdc\x5c\x33\x58\xbb\x66\xb7\xbf\x7a\x1d" "\x74\xf4\x56\x72\xd7\x95\x91\x24\x22\xc6\xf7\xa0\xfe\x89\x88\xf8\xe2" "\xbb\xb7\xbf\x4a\x53\x74\xe8\x3a\x24\x40\x33\x97\x2e\x47\xc4\x99\xf1" "\x89\xed\xe3\x7f\xb2\xed\x9e\x85\xdd\x7a\xae\x8d\x6d\x26\xee\x29\x1b" "\xff\xa0\x7b\xbe\x4f\xe7\x3f\x2f\x36\x9b\xff\x65\xb6\xe6\x3f\xd1\x64" "\xfe\x33\xdc\xe4\xd8\x7d\x10\xf7\x3f\xfe\x33\xd7\xf6\xa0\x9a\x96\xd2" "\xf9\xdf\xcb\x0d\xf7\xb6\xdd\x6e\x88\xbf\x66\x7c\xa0\x56\x7a\xa4\x3a" "\xe7\x1b\x4a\xce\x9e\x2b\x16\xd2\xb1\xed\xd1\x88\x98\x8c\xa1\xe1\xb4" "\x3c\xbd\x43\x1d\x93\x37\xff\xbd\xd9\x6a\x5d\xe3\xfc\xef\xcf\x4f\xde" "\xf9\x32\xad\x3f\x7d\xbc\xb3\x45\xe6\xda\xe0\xf0\xdd\xcf\x99\xcd\x55" "\x72\x0f\x13\x73\xa3\x1b\x97\x23\x9e\x1a\x6c\x16\x7f\xb2\xd5\xff\x49" "\x8b\xf9\xef\xa9\x36\xeb\x78\xfd\xa5\x0f\x3e\x6f\xb5\x2e\x8d\x3f\x8d" "\xb7\x9e\xb6\xc7\xdf\x59\x1b\x57\x22\x9e\x69\xda\xff\x77\xee\x68\x4b" "\x76\xbc\x3f\x71\xaa\xba\x3b\x4c\xd5\x77\x8a\x26\xbe\xfd\xf5\xb3\xd1" "\x56\xf5\x37\xf6\x7f\x9a\xd2\xfa\xeb\xef\x05\xba\x21\xed\xff\xd1\x9d" "\xe3\x1f\x4f\x1a\xef\xd7\x2c\xef\xbe\x8e\x9f\xaf\x8c\xfd\xd0\x6a\xdd" "\xfd\xe3\x6f\xbe\xff\xef\x4b\xde\xaa\xe6\xf7\xd5\x96\x5d\xcc\x55\x2a" "\x4b\xd3\x11\xfb\x92\x37\xb6\x2f\x3f\x7a\xe7\xb9\xf5\x72\x7d\xfb\x34" "\xfe\xc9\xa7\x9b\x1f\xff\x3b\xed\xff\xe9\x7b\xc2\x33\x6d\xc6\x3f\x78" "\xfd\xf7\xaf\x1f\x3c\xfe\xce\x4a\xe3\x9f\xdd\x55\xff\xef\x3e\x73\xf5" "\xf6\xfc\x40\xab\xfa\xdb\xeb\xff\x99\x6a\x6e\xb2\xb6\xa4\x9d\xf1\xaf" "\xdd\x06\x3e\xcc\x6b\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xed\xca\x44\xc4\xc1\x48\x32\xd9\xad" "\x7c\x26\x93\xcd\x6e\xfe\x86\xf7\xe3\x31\x9a\x29\x96\xca\x95\xc3\x67" "\x4b\xcb\x8b\xb3\x51\xfd\xad\xec\xf1\x18\xca\xd4\xbf\xea\x72\xac\xe1" "\xfb\x50\xa7\x6b\xdf\x87\x5f\x2f\x1f\xbd\xa7\xfc\x7c\x44\x3c\x16\x11" "\x9f\x0e\x8f\x54\xcb\xd9\x7c\xa9\x38\xdb\xeb\xe0\x01\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\xe6\x40\x8b\xdf\xff\x4f\xfd" "\x36\xdc\xeb\xd6\x01\x00\x1d\xb3\xbf\xd7\x0d\x00\x00\xba\xce\xf9\x1f" "\x00\xfa\xcf\xee\xce\xff\x23\x1d\x6b\x07\x00\xd0\x3d\xde\xff\x03\x40" "\xff\x71\xfe\x07\x80\xfe\xe3\xfc\x0f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x40\x87\x9d\x3a\x79\x32\x4d\x1b\x7f" "\xaf\xaf\xe5\xd3\xf2\xec\x85\x95\xe5\xf9\xd2\x85\x23\xb3\x85\xf2\x7c" "\x76\x61\x39\x9f\xcd\x97\x96\xce\x67\xe7\x4a\xa5\xb9\x62\x21\x9b\x2f" "\x2d\xb4\xfc\x47\x97\x36\x1f\x8a\xa5\xd2\xf9\x99\x58\x5c\xbe\x38\x55" "\x29\x94\x2b\x53\xe5\x95\xd5\xd3\x0b\xa5\xe5\xc5\xca\xe9\x73\x0b\xb9" "\xb9\xc2\xe9\xc2\x50\xd7\x22\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\x80\xf6\x95\x57\x56\xe7\x73\xc5\x62\x61\x49\x46\x46" "\x46\x66\x2b\xd3\x38\x4a\x8c\xf4\x6e\x80\x02\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8" "\x9f\xfb\x2f\x00\x00\xff\xff\xd1\x32\x2a\xca", 1898); syz_mount_image(/*fs=*/0x20000780, /*dir=*/0x20000240, /*flags=MS_LAZYTIME|MS_NOATIME|MS_DIRSYNC*/ 0x2000480, /*opts=*/0x20000040, /*chdir=*/1, /*size=*/0x76a, /*img=*/0x20000fc0); break; case 5: memcpy((void*)0x200001c0, ".\000", 2); inject_fault(9); syscall( __NR_mount, /*src=*/0ul, /*dst=*/0x200001c0ul, /*type=*/0ul, /*flags=MS_SLAVE|MS_PRIVATE|MS_UNBINDABLE|MS_POSIXACL|MS_REC|0x1000c2a*/ 0x10f4c2aul, /*data=*/0ul); break; case 6: memcpy((void*)0x20000100, "./file1\000", 8); syscall( __NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000100ul, /*flags=O_CREAT|O_RDWR*/ 0x42, /*mode=S_IXOTH|S_IWOTH|S_IROTH|S_IXGRP|S_IWGRP|S_IRGRP|S_IXUSR|S_IWUSR|0x100*/ 0x1ff); break; } } 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); const char* reason; (void)reason; if ((reason = setup_fault())) printf("the reproducer may not work as expected: fault injection setup " "failed: %s\n", reason); use_temporary_dir(); loop(); return 0; }