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