// https://syzkaller.appspot.com/bug?id=0e188e8314c40e239ed4a3588e916bcd2bb31ddc // 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 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 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 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 long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, loopfd = -1, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; retry: while (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW) == 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, MNT_DETACH | UMOUNT_NOFOLLOW) == 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, MNT_DETACH | UMOUNT_NOFOLLOW)) 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, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } 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 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 (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_one(void) { NONFAILING(memcpy((void*)0x20000ec0, "nilfs2\000", 7)); NONFAILING(memcpy((void*)0x20000100, "./file0\000", 8)); NONFAILING(memcpy( (void*)0x20000f00, "\x78\x9c\xec\xdd\x4f\x6c\x1c\x57\x19\x00\xf0\x37\x6b\xaf\x1d\xc7\x6e\xbc" "\x6e\x0b\x4d\x5b\x9a\x84\x96\x92\x36\x80\x13\x9c\x1c\xca\xa9\xa9\x14\x81" "\x54\x55\x55\x2f\x1c\xb8\xb5\x4a\x93\x36\xc2\x2d\x11\x29\x87\x56\x8d\xe2" "\x72\x0a\x12\x87\xa2\xaa\x97\x22\x0e\x45\xed\x0d\x14\x84\x90\x68\x85\x84" "\x2a\x24\x24\xfe\xf4\xc0\x85\x0b\xa7\x0a\x2e\x20\x14\xa4\x48\x39\x40\xa4" "\xc4\xc8\xce\x9b\xf5\xfa\xd9\xd3\x5d\x8f\xd7\x33\xbb\xde\xdf\x4f\xfa\xfc" "\xfc\xe6\xcd\xce\xf7\x8d\xd7\x71\x66\x66\x67\xdf\x06\x60\x64\x35\x56\xbf" "\x9e\x38\xb1\x3f\x0b\xe1\xed\x0f\xdf\x3a\xf5\x8d\x4b\xb7\x7e\xbd\xb2\xec" "\x60\x7b\x8d\x43\xab\x5f\xb3\xd8\x6b\x85\x10\x9a\x1d\xfd\x2c\xd9\xde\x27" "\x71\xc1\xcd\x6b\xaf\x9f\x5e\x69\x6f\x25\x6d\x16\x16\x56\xbf\xe6\xe3\xe1" "\xe9\xab\xed\xc7\x4e\x87\x10\x96\xc2\xa1\xf0\x51\x68\x85\x83\x47\x5a\xd7" "\x2f\x8f\x3d\x75\xf6\xfd\x77\x3e\x3e\x7c\xf1\xfc\x93\x2f\xee\xd0\xee\x03" "\x00\xc0\x48\xb9\xf2\xa7\xc5\xbf\x3d\xfa\xcf\x3f\x7e\x79\xee\xc6\x95\x03" "\x27\xc3\x64\x7b\x79\x7e\x7c\xde\x8a\xfd\xe9\x78\xdc\x7f\x2c\x1e\xdf\xe7" "\xc7\xfd\x8d\xb0\xbe\x9f\x75\x44\xa7\x89\x64\xbd\xb1\x18\x8d\x64\xbd\xb1" "\x64\xbd\xf1\x24\xcf\x78\x41\xbe\x66\xb2\x9d\x66\xc1\x7a\x13\x5d\xf2\x8d" "\x75\x2c\xdb\x6c\x3f\x01\x00\x00\x60\x18\xe5\xe7\xb5\xad\x90\x35\xe6\xd7" "\xf5\x1b\x8d\xf9\xf9\xdb\xe7\xfd\x2b\x3e\x99\x9d\xc8\xe6\x5f\x3e\xb7\x78" "\xf6\x42\x4d\x85\x02\x00\x00\x00\xa5\x5d\xbf\xb4\x7a\xd3\xad\x18\xc6\xc8" "\x06\xa0\x06\x21\x84\x10\x42\x88\x76\x64\x4b\xf5\xd7\x20\x84\xe8\x2d\xb2" "\x01\xa8\x41\x54\x1d\xcb\xb3\x75\x5f\x81\x00\x00\x00\x00\x46\x4d\x3e\xef" "\x40\x7b\x7e\xb0\xd4\x52\x3a\xb3\xc0\xf6\xb4\xb7\xd6\xea\x2d\xff\xd5\x27" "\x1a\x9b\x3f\x1e\xfa\xa0\xea\xdf\x7f\xf9\x87\x2b\xff\x7b\x6f\xf8\x8b\x03" "\x00\x40\x79\xbb\xf5\x68\x32\xdf\xaf\xfc\x38\x3a\x9f\xc7\x20\x9d\x47\x70" "\x2c\x79\xdc\x56\x8f\xff\x1b\xc9\x76\xc6\xb7\x58\x67\xd1\xbc\x82\xc3\x32" "\xdf\x60\x51\x9d\xe9\xcf\x75\x50\x15\xd5\xbf\xd5\xe7\xb1\x2e\x45\xf5\xa7" "\xf3\x61\x0e\xaa\xa2\xfa\xd3\x79\x3a\x07\x55\x51\xfd\x93\x15\xd7\x51\x56" "\x51\xfd\x7b\x2a\xae\xa3\xac\xa2\xfa\xa7\x2a\xae\xa3\xac\xa2\xfa\xf7\x56" "\x5c\x47\x59\x45\xf5\x4f\x57\x5c\x47\x59\x45\xf5\xcf\x54\x5c\x47\x59\x45" "\xf5\xdf\x51\x71\x1d\x65\x15\xd5\xbf\xaf\xe2\x3a\xca\x2a\xaa\x7f\x58\x6e" "\xab\x2d\xaa\xbf\xd5\xfd\xa1\x27\xfb\x5d\x4b\x19\x45\xf5\xcf\x55\x5c\x47" "\x59\x45\xf5\xdf\x59\xb0\xfc\xd0\x0e\xd6\x52\x46\x51\xfd\x77\x55\x5c\x47" "\x59\x45\xf5\xdf\x5d\x71\x1d\x75\x79\x20\xbe\x05\x20\xff\x39\x1c\x48\xc6" "\x3b\xcf\x9f\xd3\x73\xba\x61\x39\xc7\x03\x00\x00\x80\x51\xf7\x3f\xf3\xff" "\x09\x21\x6a\x8f\x0a\xe7\x9f\xf9\x79\xdd\xfb\x5a\x47\xc4\x57\xf4\xb7\xf6" "\xb8\x46\xfd\x75\xef\xaa\x78\xbc\xc4\x73\x20\x84\xe8\x12\x6f\xd4\x95\xdb" "\xbf\x67\x21\x6a\x8b\x66\x3d\xff\xfe\xfe\x5a\xf7\x7e\xf7\x2b\x2e\xd5\x76" "\xe5\x01\x00\x00\x00\x18\x14\xf9\xfb\x02\xf2\x77\xbd\x2f\x47\xf9\xf8\x58" "\x97\xf1\xf1\x2e\xe3\xcd\x2e\xe3\x13\x5d\xc6\x27\xbb\x8c\x03\x00\x00\x00" "\x21\xfc\xe6\xf2\xd9\x7b\xdf\xcc\xd6\xde\xe7\xbf\xdd\xf9\xf0\xf2\x79\xa3" "\xf2\xf9\x97\xb6\x3a\x8f\x51\x3a\x1f\xe1\x56\xf3\x6f\x77\xde\xb3\xed\xe6" "\xdf\xd2\xbc\x65\x2e\x54\x00\x00\x00\x50\x91\xec\xeb\x1f\xdd\x3a\x72\xea" "\xdd\x57\xe6\x6e\x5c\x39\x70\xb2\xe3\xec\xf7\x56\x3c\xdf\xcd\xe7\x01\x1d" "\x8f\xd7\x06\x3e\x88\xfd\xfc\xbe\x80\x99\xa4\x9f\xe5\xe7\xd0\xc9\xec\xa0" "\x8d\x82\xf5\xd2\xeb\x03\x77\x14\x6d\xef\x99\x6d\xee\x28\x00\x00\x00\x8c" "\xb0\xfc\xfc\xbd\x15\xb2\xc6\x7c\xc7\x79\x77\x2b\x34\x1a\xf3\xf3\x6b\xe7" "\xe3\xfb\x43\x33\x3b\x7b\x6e\xf1\xcc\xb1\xd8\xcf\x3f\x9f\xe5\x0f\xb3\xcd" "\xc9\x95\xe5\x5f\xad\xb8\x6e\x00\x00\x00\xa0\x77\x6b\xe7\xfb\x9b\x9f\xff" "\xe7\x9f\xe3\xbb\x3f\x4c\x64\xf3\x2f\x9f\x5b\x3c\x7b\xe1\x76\x7f\xa6\xbd" "\xbc\xd9\xe8\xbc\x2e\x30\xbb\xb6\x3c\xeb\xbc\x2e\xd0\x4a\x96\x2f\x14\x2c" "\x3f\x1e\xfb\xf9\xe7\x77\xbe\x38\x3b\xb5\xba\x7c\xfe\xf4\x77\x16\x9f\xef" "\xf7\xce\x03\x00\x00\xc0\x88\xb8\xf0\xea\x6b\xdf\x7e\x6e\x71\xf1\xcc\x77" "\xab\xfa\x66\x2c\x54\x97\xcb\x37\x7d\xfc\x26\x0b\x59\xf5\xbf\x2d\xbe\xa9" "\xed\x9b\xba\xff\x32\x01\x00\x00\xfd\xf6\xfe\x3f\xde\xfa\xf3\xf7\x8e\xcf" "\xfc\xf6\xf6\xfb\xff\xd7\xe6\xbf\xcb\xdf\xff\x7f\x28\xf6\x5b\x71\x6e\xbf" "\xbf\xc4\x15\xf2\xfb\x04\xf2\xf7\x01\x6c\x78\xbf\xfe\xb3\xeb\xf3\xcc\x16" "\xad\x77\x7e\xfd\x7a\xad\x64\xbd\xb1\x18\x93\x49\xdd\x7b\x3a\xb6\x13\x3a" "\xe6\x1b\xcc\x1f\x37\x57\x94\xaf\xb5\x7e\x3b\x13\x05\xf9\xa6\x93\x7c\x33" "\x49\xbe\x74\x9e\x82\xf1\x64\xfd\x3c\xdf\xbe\x64\x79\x3a\x3f\x61\xbe\xde" "\x6c\xb2\x3c\x9d\x87\x71\x3c\xc9\x91\x25\xf9\x1f\x0c\x00\x00\x00\x50\xec" "\xe8\x2b\x2f\x9d\x3f\x7a\xe1\xd5\xd7\xbe\x72\xee\xa5\xe7\x5e\x38\xf3\xc2" "\x99\x97\x8f\x1f\x5b\xf8\xda\xc2\x63\x0b\x0b\x27\x16\x8e\xae\xde\xd7\x7f" "\xb4\xf3\xee\x7e\x00\x00\x00\x60\x18\xad\xdd\xf4\xbb\xd9\xe8\xe9\xf4\x65" "\x6d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\x07" "\x54\xf1\x71\x62\x75\xef\x23\x00\x00\x00\x8c\xba\xff\x5c\x0a\x21\x2c\x09" "\x21\x46\x3b\xe2\x27\x68\xd6\x5e\x87\xf8\xf4\xc8\xd6\xfe\x78\xd7\x5e\x8b" "\xe8\x39\xbe\x35\x00\x35\x08\x21\x7a\x8c\x99\x01\xa8\x41\x6c\x21\xa6\xfc" "\x9f\x18\xb2\x11\x3a\x36\xc8\xb2\xd1\xd8\xcf\x82\xd8\xb3\xd9\xf3\xbc\x67" "\xab\xdb\x59\x5e\x4e\x3f\x69\x1e\x00\x00\x00\x60\x67\xdd\xbc\xf6\xfa\xe9" "\xce\x76\x83\xce\xd7\xbf\xfa\xa0\xbd\xb5\xd6\xed\xe6\x56\xcc\x9b\xb7\xbf" "\x7f\xf8\x27\x0f\xaf\x44\xbe\xda\xd5\x27\xd6\x5f\x2f\xd9\xdb\xd7\x6a\x18" "\x75\x55\xff\xfe\xcb\x3f\x5c\xf9\xdf\x7b\xa3\xbf\xf9\x57\xaf\x22\xdf\xbb" "\xd6\xef\xfe\xf7\xaf\xb1\x7e\x03\x27\xcb\xe5\xfd\xe2\x8f\xfe\xf5\x48\x3b" "\x7f\x08\xe1\xbe\xf1\x1e\xf3\xa7\xfb\xff\x4c\xb9\xfc\x87\x93\xfc\x87\x43" "\x6f\xf9\x97\xdf\x4d\xf2\x3f\x5b\x2e\xff\x23\x49\xfe\xbd\x3d\xe6\xdf\xb0" "\xff\xe7\xcb\xe5\x7f\x34\xe6\xdf\x9f\xd7\xf3\x50\xaf\xf9\xd7\x3f\xff\x93" "\xb1\xcd\xf7\x63\xaa\xc7\xfc\x47\x92\xfd\x7f\x3e\xf4\x9a\x3f\xd9\xff\x56" "\x8f\x09\x13\x5f\x8a\xf9\x01\x60\x14\x35\x2a\x7d\x58\x75\xf2\xa3\x84\xfc" "\x38\x7a\x3a\xf6\xd3\xc2\xd3\xbb\x1f\xb6\x7a\xfc\xdf\x48\xb6\x33\xbe\xad" "\xaa\x37\x6e\x37\x3f\x0e\xba\x27\xf6\xf3\xe3\xa5\x99\x24\x6f\x6e\xab\xf5" "\x4f\x27\xdb\xbb\xa3\x64\x9d\xa9\x61\xb9\xab\xa4\xa8\xfe\x7e\x3d\x8f\x3b" "\xad\xa8\xfe\x66\xc5\x75\x94\x55\x54\xff\x44\xc5\x75\x94\x55\x54\xff\x64" "\xc5\x75\x94\x55\x54\xff\x9e\x8a\xeb\x28\xab\xa8\xfe\x5e\xcf\x43\xeb\x56" "\x54\xff\xb0\x5c\x57\x2e\xaa\x7f\xba\xe2\x3a\xca\x2a\xaa\x7f\xa6\xe2\x3a" "\xca\x2a\xaa\x7f\xab\xff\x8f\xd7\xa5\xa8\xfe\x7d\xdd\x1e\xf8\x78\xff\x6b" "\x29\xa3\xa8\xfe\xd9\x8a\xeb\x28\xab\xa8\xfe\x92\x97\xd5\x2a\x57\x54\xff" "\x5c\xc5\x75\x94\x55\x54\xff\x9d\x15\xd7\x51\x56\x51\xfd\x77\x55\x5c\x47" "\x59\x45\xf5\xdf\x5d\x71\x1d\x75\xb9\x3f\xb6\xf9\xf9\x4e\x7a\xde\x96\x9f" "\x7f\xce\xc6\xb1\xbc\xdf\x4a\xfa\x93\x9b\xfc\x2c\x07\xfe\x22\x01\x00\x00" "\x00\x8c\x88\x7f\x9b\xff\x4f\x88\xe1\x8a\xdc\xfa\xe5\x53\xb5\xd7\x25\xc4" "\x70\xc5\x58\xc1\xbf\x25\x51\x4d\xfc\x72\x00\x6a\xe8\x7f\x4c\x0d\x40\x0d" "\x62\xc4\xa2\x59\x74\x5c\xd0\x6b\x64\xff\xad\x7d\x1f\x46\x25\x6e\x2c\x2f" "\x2f\xd7\x5d\x83\x10\x21\xac\xfe\x1e\x32\xb2\x36\x79\x37\xf1\xf8\xb0\xdc" "\xfb\x0b\x40\x79\x3b\x3b\x9b\x05\x83\xce\xf3\x3f\xda\x3c\xff\xa3\xcd\xf3" "\xcf\xa7\xc9\xef\xe1\xcf\x92\x7e\x6e\xac\xcb\xf8\x78\x97\xf1\x66\x97\xf1" "\x89\x64\x3c\xfd\x7d\x9d\xec\x32\x7e\x57\xb2\xdd\xe5\x28\x1f\xbf\xbb\xcb" "\xf8\x67\xba\x8c\xef\xeb\x32\x7e\x4f\x97\xf1\xa5\x2e\xe3\xf7\x76\x19\xbf" "\xaf\xcb\xf8\xfd\x5d\xc6\x01\x00\x00\x18\x0d\x9f\x8d\xad\xf3\x43\x00\x00" "\x00\xd8\xbd\x2e\xfe\xec\x83\x1f\xfe\xea\xf0\xb3\xd7\xe6\x6e\x5c\x39\x70" "\x32\x4c\x6c\x98\x77\xfe\x58\xec\x4f\xc6\xd7\xd6\x2f\xc7\x7e\x3a\xef\x7d" "\xae\x19\x5f\xf3\xff\x7e\xec\xff\x34\xb6\xbf\x8b\xed\xdf\x93\xf5\xdd\x7f" "\x02\x00\x00\x00\x3b\x2f\xff\x9c\x18\xaf\xff\x03\x00\x00\xc0\xee\x95\x7f" "\x4e\xa9\xf3\x7f\x00\x00\x00\xd8\xbd\xe6\x62\xeb\xfc\x1f\x00\x00\x00\x76" "\xaf\x3b\x63\xeb\xfc\x1f\x00\x00\x00\x76\xb1\x6c\xf3\x4f\x7b\x4f\x3f\x8f" "\xef\xc1\xd8\xf6\x3a\xaf\x1f\x00\x30\xf8\x3e\x17\xdb\x07\x62\x7b\x20\xb6" "\x07\x63\xfb\xf9\xd8\xe6\xc7\x01\x0f\xc5\xf6\x0b\x15\xd5\x07\x00\xf4\xcf" "\x8f\xbf\xf9\x83\xc7\xde\xcc\xd6\xe6\xfb\x3f\x9e\x8c\xdf\x8c\xcb\xf3\x76" "\x83\xa5\xdb\x57\x0a\xb2\xc6\xfa\x99\xfc\xa7\x62\xbb\x37\xb6\x0f\xf7\x58" "\x4f\xfa\x79\x00\xbd\xe6\xcf\xed\xeb\x31\xcf\x4e\xe5\x9f\xdd\x66\x7e\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x60\xf7\x68\xac\x7e\x3d\x71\x62\x7f\x16\xc2\xdb\x1f\xbe\x75" "\x6a\xf6\xe2\xa9\x17\x56\x96\x1d\x6c\xaf\x71\x68\xf5\x6b\x16\x7b\xad\x10" "\x42\xb3\xfd\xb8\x7c\x74\xad\xff\x8b\xb8\xe2\xcd\x6b\xaf\x9f\x5e\x69\x6f" "\xc5\x76\x39\xb6\x59\x58\x08\x59\xc8\xda\xe3\xe1\xe9\xab\xed\x4c\xd3\x21" "\x84\xa5\x70\x28\x7c\x14\x5a\xe1\xe0\x91\xd6\xf5\xcb\x63\x4f\x9d\x7d\xff" "\x9d\x8f\x0f\x5f\x3c\xff\xe4\x8b\x3b\xf8\x23\x00\x00\x00\x80\x5d\xef\xff" "\x01\x00\x00\xff\xff\xfb\xa2\x2b\xb6", 3951)); NONFAILING(syz_mount_image(/*fs=*/0x20000ec0, /*dir=*/0x20000100, /*flags=*/0x800010, /*opts=*/0x200003c0, /*chdir=*/1, /*size=*/0xf6f, /*img=*/0x20000f00)); NONFAILING(memcpy((void*)0x20000000, "./file1\000", 8)); NONFAILING(memcpy((void*)0x20000140, "./file0/file1\000", 14)); syscall(__NR_rename, /*old=*/0x20000000ul, /*new=*/0x20000140ul); NONFAILING(memcpy((void*)0x20000180, "./file0\000", 8)); NONFAILING(memcpy((void*)0x20000040, "./file1\000", 8)); syscall(__NR_rename, /*old=*/0x20000180ul, /*new=*/0x20000040ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=*/7ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); install_segv_handler(); use_temporary_dir(); loop(); return 0; }