// https://syzkaller.appspot.com/bug?id=330c57bb9492535fc883e94c3bbb1c74aa8e29af // 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; 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); } } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; memcpy((void*)0x20000ec0, "nilfs2\000", 7); memcpy((void*)0x200000c0, "./file0\000", 8); memcpy( (void*)0x20001e40, "\x78\x9c\xec\xdd\x4f\x68\x1c\xd7\xfd\x00\xf0\x37\x2b\xad\x64\x5b\x8a\xb5" "\x4a\xf2\xfb\x45\x49\x1a\xdb\x4d\x9a\x3a\x71\x5b\xd9\x95\x7d\x48\x6f\x0e" "\x98\x16\x42\x08\xb9\xf4\x9e\xe0\x58\x89\xa9\x92\x9a\x3a\x3d\x24\xc4\x58" "\xe9\xc9\x85\x1e\x52\x42\x2e\x29\x3d\xa4\xc4\xb7\x82\x7b\x28\x34\xa1\x50" "\x4c\xa1\xd0\x3f\x39\xf4\xd2\x4b\x4f\xa1\xbd\xb4\x14\x17\x0c\xbe\xd4\x60" "\xa9\x48\x7e\x6f\xb5\x7a\xd6\x74\x57\x23\x69\x56\xab\xfd\x7c\xe0\xbb\x6f" "\xdf\xbc\xd9\xf9\x7e\x47\x6b\xe4\x99\xd1\xec\xdb\x00\x0c\xad\xc6\xea\xe3" "\xa9\x53\x33\x45\x08\x1f\x7c\xfa\xfe\x99\x6f\x5d\x5e\xfa\xd5\xca\xb2\xc3" "\xed\x35\x8e\xac\x3e\x16\xb1\xd7\x0a\x21\x34\x3b\xfa\x45\xb6\xbd\xcf\xe3" "\x82\x3b\x37\xdf\x39\xbb\xd2\x2e\x65\x6d\x11\xe6\x56\x1f\xd3\x78\x78\xe1" "\x46\xfb\xb5\x13\x21\x84\xc5\x70\x24\x5c\x0f\xad\x70\xf8\x58\xeb\xd6\x95" "\x91\xe7\xe7\xaf\x7e\xf8\xd9\xd1\x4b\x17\x9e\x7b\x6d\x87\x76\x1f\x00\x00" "\x86\xca\xb5\x3f\x2e\xfc\xf5\xe9\x7f\xfc\xe1\xab\xd3\xb7\xaf\x1d\x3a\x1d" "\xc6\xdb\xcb\xd3\xf1\x79\x2b\xf6\x27\xe2\x71\xff\x89\x78\x7c\x9f\x8e\xfb" "\x1b\x61\x7d\xbf\xe8\x88\x4e\x63\xd9\x7a\x23\x31\x1a\xd9\x7a\x23\xd9\x7a" "\xa3\x59\x9e\xd1\x92\x7c\xcd\x6c\x3b\xcd\x92\xf5\xc6\xba\xe4\x1b\xe9\x58" "\xb6\xd1\x7e\x02\x00\x00\xc0\x20\x4a\xe7\xb5\xad\x50\x34\x66\xd7\xf5\x1b" "\x8d\xd9\xd9\xbb\xe7\xfd\x2b\x3e\x9f\x1a\x2b\x66\xdf\x38\xbf\x30\x7f\xb1" "\x4f\x85\x02\x00\x00\x00\x95\xdd\xba\xbc\x7a\xd3\xad\x18\xc4\x28\x76\x41" "\x0d\x42\x08\x21\x84\x10\xed\x28\x16\xfb\x5f\x83\x10\x42\x88\xb2\x58\x9e" "\xea\xf7\x15\x08\x00\x00\x00\x60\xd8\xa4\x79\x07\xda\xf3\x83\xe5\x16\xf3" "\x99\x05\xb6\xa6\xbd\xb5\x56\x6f\xf9\x6f\x3c\xdb\xd8\xf8\xf5\xb0\x0d\xea" "\xfe\xf7\x2f\xff\x60\xe5\xff\xf8\x5d\xbf\x71\x00\x00\xa8\x6e\xaf\x1e\x4d" "\xa6\xfd\x4a\xc7\xd1\x69\x1e\x83\x7c\x1e\xc1\x91\xec\x75\x9b\x3d\xfe\x6f" "\x64\xdb\x19\xdd\x64\x9d\x65\xf3\x0a\x0e\xca\x7c\x83\x65\x75\xe6\x3f\xd7" "\xdd\xaa\xac\xfe\xcd\xbe\x8f\xfd\x52\x56\x7f\x3e\x1f\xe6\x6e\x55\x56\x7f" "\x3e\x4f\xe7\x6e\x55\x56\xff\x78\xcd\x75\x54\x55\x56\xff\xbe\x9a\xeb\xa8" "\xaa\xac\xfe\xfd\x35\xd7\x51\x55\x59\xfd\x07\x6a\xae\xa3\xaa\xb2\xfa\x27" "\x6a\xae\xa3\xaa\xb2\xfa\x27\x6b\xae\xa3\xaa\xb2\xfa\xef\xab\xb9\x8e\xaa" "\xca\xea\x3f\x58\x73\x1d\x55\x95\xd5\x3f\x28\xb7\xd5\x96\xd5\xdf\xaa\xb9" "\x8e\xaa\xca\xea\x9f\xae\xb9\x8e\xaa\xca\xea\xbf\xbf\xe6\x3a\xaa\x2a\xab" "\xff\x81\x9a\xeb\xa8\xaa\xac\xfe\x07\x6b\xae\xa3\x5f\x1e\x8b\x6d\xfa\x39" "\x1c\xca\xc6\x3b\xcf\x9f\xf3\x73\xba\x41\x39\xc7\x03\x00\x00\x80\x61\xf7" "\x1f\xf3\xff\x09\x21\xc4\x1e\x8f\xf8\x17\xfd\xbe\xd7\x21\x84\x10\xdb\x1b" "\xef\xee\x82\x1a\x84\x10\xf5\x46\xb3\x3f\xc7\x34\x7f\xe9\xf7\x7e\x6f\x57" "\x5c\xee\xf3\xf5\x07\x00\x00\x00\xa0\xff\xd2\xe7\x02\xd2\xa7\xde\x97\xa3" "\x34\x3e\xd2\x65\x7c\xb4\xcb\x78\xb3\xcb\xf8\x58\x97\xf1\xf1\x2e\xe3\x00" "\x00\x00\x40\x08\xbf\xbe\x32\xff\xf0\x7b\xc5\xda\xe7\xfc\xb7\x3a\x1f\x5e" "\x9a\x37\x2a\xcd\xbf\xb4\xd9\x79\x8c\xf2\xf9\x08\x37\x9b\x7f\xab\xf3\x9e" "\x6d\x35\xff\xa0\xcc\x5b\x06\x00\x00\xc0\x70\x29\xbe\x79\x7d\xe9\xd8\x99" "\x8f\xde\x9c\xbe\x7d\xed\xd0\xe9\x8e\xb3\xdf\xa5\x78\xbe\x9b\xe6\x01\x1d" "\x8d\xd7\x06\x3e\x89\xfd\x74\x5f\xc0\x64\xd6\x2f\xd2\x39\xf4\xe9\xf5\x79" "\x1a\x25\xeb\xe5\xd7\x07\xee\x2b\xdb\xde\x8b\x5b\xdc\x51\x00\x00\x00\x18" "\x62\xe9\xfc\xbd\x15\x8a\xc6\x6c\xc7\x79\x77\x2b\x34\x1a\xb3\xb3\x6b\xe7" "\xe3\x33\xa1\x59\xcc\x9f\x5f\x38\x77\x22\xf6\xd3\xf7\xb3\xfc\x7e\xaa\x39" "\xbe\xb2\xfc\xeb\x35\xd7\x0d\x00\x00\x00\xf4\x6e\xed\x7c\x7f\xe3\xf3\xff" "\xf4\x3d\xbe\x33\x61\xac\x98\x7d\xe3\xfc\xc2\xfc\xc5\xbb\xfd\xc9\xf6\xf2" "\x66\xa3\xf3\xba\xc0\xd4\xda\xf2\xa2\xf3\xba\x40\x2b\x5b\x3e\x57\xb2\xfc" "\x64\xec\xa7\xef\xef\x7c\x6d\x6a\xff\xea\xf2\xd9\xb3\xdf\x5d\x78\x65\xbb" "\x77\x1e\x00\x00\x00\x86\xc4\xc5\xb7\xde\xfe\xce\xcb\x0b\x0b\xe7\xbe\xe7" "\x89\x27\x9e\x78\xd2\x7e\xd2\xef\xdf\x4c\x00\x00\xc0\x76\xbb\xfa\xf7\xf7" "\xff\xf4\xfd\x93\x93\xbf\xb9\xfb\xf9\xff\xb5\xf9\xef\xd2\xe7\xff\x8f\xc4" "\x7e\x2b\xce\xed\xf7\xe7\xb8\x42\xba\x4f\x20\x7d\x0e\xe0\x9e\xcf\xeb\xbf" "\xb4\x3e\xcf\x54\xd9\x7a\x17\xd6\xaf\xd7\xca\xd6\x1b\x89\x31\x9e\xd5\xbd" "\xaf\x63\x3b\xa1\x63\xbe\xc1\xf4\xba\xe9\xb2\x7c\xad\xf5\xdb\x19\x2b\xc9" "\x37\x91\xe5\x9b\xcc\xf2\xe5\xf3\x14\x8c\x66\xeb\xa7\x7c\x07\xb3\xe5\xf9" "\xfc\x84\x69\xbd\xa9\x6c\x79\x3e\x0f\xe3\x68\x96\xa3\xc8\xf2\x3f\x1e\x00" "\x00\x00\xa0\xdc\xf1\x37\x5f\xbf\x70\xfc\xe2\x5b\x6f\x7f\xed\xfc\xeb\x2f" "\xbf\x7a\xee\xd5\x73\x6f\x9c\x3c\x31\xf7\x8d\xb9\x67\xe6\xe6\x4e\xcd\x1d" "\x5f\xbd\xaf\xff\x78\xe7\xdd\xfd\x00\x00\x00\xc0\x20\x5a\xbb\xe9\xb7\xdf" "\x95\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xf0" "\xaa\xe3\xeb\xc4\xfa\xbd\x8f\x00\x00\x00\x30\xec\xfe\x7d\x39\x84\xb0\x28" "\x84\x10\x42\x08\x21\xc4\xb0\xc7\xe4\x2e\xa8\x41\x08\x21\x76\x2e\x96\x97" "\xf3\x6f\x9a\x07\x00\x00\x00\xd8\x59\x77\x6e\xbe\x73\xb6\xb3\xbd\xc7\x62" "\xb1\xad\xf9\xda\x5b\x6b\xdd\x6d\x96\x62\xde\xd4\xfe\xee\xc9\x9f\x3e\xb9" "\x12\x69\xb5\x1b\xcf\xae\xbf\x5e\x72\x60\x5b\xab\x61\xd8\xd5\xfd\xef\x5f" "\xfe\xc1\xca\xff\xf1\xbb\xdb\x9b\x7f\x5f\x7a\xd2\xf3\xef\xbf\xc6\xfa\x0d" "\x9c\xae\x96\xf7\xcb\x3f\xfe\xe7\x53\x9d\xf9\x1f\x19\xed\x31\x7f\xbe\xff" "\x2f\x56\xcb\x7f\x34\xcb\x7f\x34\xf4\x96\x7f\xf9\xa3\x2c\xff\x4b\xd5\xf2" "\x3f\x95\xe5\x3f\xd0\x63\xfe\x7b\xf6\xff\x42\xb5\xfc\x4f\xc7\xfc\x33\xa9" "\x9e\x27\x7a\xcd\xbf\xfe\xfd\x1f\x8f\x6d\xda\x8f\xfd\x3d\xe6\x3f\x96\xed" "\xff\x2b\xa1\xd7\xfc\xd9\xfe\xb7\x7a\x4c\x98\xf9\x4a\xcc\x0f\x00\xc3\xa8" "\x51\xeb\xcb\xea\x93\x8e\x12\xd2\x71\xf4\x44\xec\xa7\xc2\xe3\xe1\x66\xc8" "\xef\x7e\xd8\xec\xf1\x7f\x23\xdb\xce\xe8\x96\x2b\x5f\xbf\xdd\x74\x1c\xf4" "\x50\xec\xa7\xe3\xa5\xc9\x2c\x6f\xb2\xd9\xfa\x27\xb2\xed\xdd\x57\xb1\xce" "\xdc\xa0\xdc\x55\x52\x56\xff\x76\xbd\x8f\x3b\xad\xac\xfe\x66\xcd\x75\x54" "\x55\x56\xff\x58\xcd\x75\x54\x55\x56\xff\x78\xcd\x75\x54\x55\x56\xff\xbe" "\x9a\xeb\xa8\xaa\xac\xfe\x5e\xcf\x43\xfb\xad\xac\xfe\x41\xb9\xae\x5c\x56" "\xff\x44\xcd\x75\x54\x55\x56\xff\x64\xcd\x75\x54\x55\x56\xff\x66\xff\x1f" "\xef\x97\xb2\xfa\x0f\xd6\x5c\x47\x55\x65\xf5\x4f\xd5\x5c\x47\x55\x65\xf5" "\x57\xbc\xac\x56\xbb\xb2\xfa\xa7\x6b\xae\xa3\xaa\xb2\xfa\xef\xaf\xb9\x8e" "\xaa\xca\xea\x7f\xa0\xe6\x3a\xaa\x2a\xab\xff\xc1\x9a\xeb\xe8\x97\x47\x63" "\x5b\x76\x3e\x9c\xce\x3f\xa7\xe2\x58\xea\xb7\xb2\xfe\xf8\x06\x3f\xcb\x5d" "\x7f\x91\x00\x00\x00\x00\x86\xc4\xbf\xcc\xff\x27\x84\x10\x62\xf8\x62\xed" "\x72\x77\xff\x6b\x11\x42\x88\x8a\xd1\x71\xc7\x5f\xdf\x6b\x11\x42\x0c\x42" "\x2c\x2f\xf7\xe7\xba\x03\xbb\xc3\x06\x9f\x26\x1e\x1d\x94\x7b\x7f\x01\xa8" "\x6e\x67\x67\xb3\x60\xb7\xf3\xfe\x0f\x37\xef\xff\x70\xf3\xfe\xf3\xbf\xa4" "\x7b\xf8\x8b\xac\x9f\x8c\x74\x19\x1f\xed\x32\xde\xec\x32\x3e\x96\x8d\xe7" "\xff\x5e\xc7\xbb\x8c\x3f\x90\x6d\x77\x39\x4a\xe3\x0f\x76\x19\xff\xbf\x2e" "\xe3\x07\xbb\x8c\x3f\xd4\x65\x7c\xa6\xcb\xf8\xc3\x5d\xc6\x1f\xe9\x32\xfe" "\x68\x97\x71\x00\x00\x00\x86\xc3\xff\xc7\xd6\xf9\x21\x00\x00\x00\xec\x5d" "\x97\x7e\xfe\xc9\x8f\x7e\x79\xf4\xa5\x9b\xd3\xb7\xaf\x1d\x3a\x1d\xc6\xee" "\x99\x77\xfe\x44\xec\x8f\xc7\xbf\xad\x5f\x89\xfd\x7c\xde\xfb\xa4\x19\xff" "\xe6\xff\x83\xd8\xff\x59\x6c\x7f\x1b\xdb\xbf\x65\xeb\xbb\xff\x04\x00\x00" "\x00\x76\x5e\xfa\x9e\x18\x7f\xff\x07\x00\x00\x80\xbd\x2b\x7d\x4f\xa9\xf3" "\x7f\x00\x00\x00\xd8\xbb\xa6\x63\xeb\xfc\x1f\x00\x00\x00\xf6\xae\xfb\x63" "\xeb\xfc\x1f\x00\x00\x00\xf6\xb0\x62\xe3\x6f\x7b\xcf\xbf\x8f\xef\xf1\xd8" "\xf6\x3a\xaf\x1f\x00\xb0\xfb\x7d\x21\xb6\x8f\xc5\xf6\x50\x6c\x0f\xc7\xf6" "\x8b\xb1\x4d\xc7\x01\x4f\xc4\xf6\x4b\x35\xd5\x07\x00\x6c\x9f\x9f\x7c\xfb" "\x87\xcf\xbc\x57\xac\xcd\xf7\x7f\x32\x1b\xbf\x13\x97\xa7\xf6\x1e\x8b\x77" "\xaf\x14\x14\x8d\xf5\x33\xf9\xef\x8f\xed\x81\xd8\x3e\xd9\x63\x3d\xf9\xf7" "\x01\xf4\x9a\x3f\x39\xd8\x63\x9e\x9d\xca\x3f\xb5\xc5\xfc\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xc0\xde\xd1\x58\x7d\x3c\x75\x6a\xa6\x08\xe1\x83\x4f\xdf\x3f\x33\x75\xe9" "\xcc\xab\x2b\xcb\x0e\xb7\xd7\x38\xb2\xfa\x58\xc4\x5e\x2b\x84\xd0\x6c\xbf" "\x2e\x8d\xae\xf5\x7f\x11\x57\xbc\x73\xf3\x9d\xb3\x2b\xed\x52\x6c\x97\x63" "\x5b\x84\xb9\x50\x84\xa2\x3d\x1e\x5e\xb8\xd1\xce\x34\x11\x42\x58\x0c\x47" "\xc2\xf5\xd0\x0a\x87\x8f\xb5\x6e\x5d\x19\x79\x7e\xfe\xea\x87\x9f\x1d\xbd" "\x74\xe1\xb9\xd7\x76\xf0\x47\x00\x00\x00\x00\x7b\xde\x7f\x03\x00\x00\xff" "\xff\x60\x6d\x28\x98", 3821); syz_mount_image(/*fs=*/0x20000ec0, /*dir=*/0x200000c0, /*flags=MS_I_VERSION|MS_SYNCHRONOUS*/ 0x800010, /*opts=*/0x200003c0, /*chdir=*/0xfd, /*size=*/0xeed, /*img=*/0x20001e40); memcpy((void*)0x20007f80, "./bus\000", 6); res = syscall( __NR_open, /*file=*/0x20007f80ul, /*flags=O_SYNC|O_NOCTTY|O_NOATIME|O_DIRECT|O_CREAT|0x2*/ 0x145142ul, /*mode=*/0ul); if (res != -1) r[0] = res; memcpy((void*)0x20000180, "./bus\000", 6); res = syscall( __NR_open, /*file=*/0x20000180ul, /*flags=O_TRUNC|O_SYNC|O_NOATIME|O_LARGEFILE|O_DIRECT|O_CREAT|0x3e*/ 0x14d27eul, /*mode=*/0ul); if (res != -1) r[1] = res; syscall( __NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x600000ul, /*prot=PROT_GROWSUP|PROT_SEM|PROT_WRITE|PROT_READ|PROT_EXEC|0x7ffff0*/ 0x27ffffful, /*flags=MAP_UNINITIALIZED|MAP_LOCKED|MAP_FIXED|MAP_SHARED*/ 0x4002011ul, /*fd=*/r[1], /*offset=*/0ul); syscall(__NR_ftruncate, /*fd=*/r[0], /*len=*/0x2007ffbul); memcpy((void*)0x20000100, "./bus\000", 6); syscall(__NR_unlink, /*path=*/0x20000100ul); syscall(__NR_sendfile, /*fdout=*/-1, /*fdin=*/-1, /*off=*/0ul, /*count=*/0x1000000201005ul); } 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); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }