// https://syzkaller.appspot.com/bug?id=0a52da0bbfd5ff2cd097edb1607fd2bda63a1c4d // 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); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x400000000040, "ext4\000", 5); memcpy((void*)0x400000000500, "./file0\000", 8); memcpy((void*)0x4000000000c0, "mb_optimize_scan", 16); *(uint8_t*)0x4000000000d0 = 0x3d; sprintf((char*)0x4000000000d1, "0x%016llx", (long long)1); *(uint8_t*)0x4000000000e3 = 0x2c; memcpy((void*)0x4000000000e4, "discard", 7); *(uint8_t*)0x4000000000eb = 0x2c; memcpy((void*)0x4000000000ec, "nogrpid", 7); *(uint8_t*)0x4000000000f3 = 0x2c; memcpy((void*)0x4000000000f4, "noblock_validity", 16); *(uint8_t*)0x400000000104 = 0x2c; *(uint8_t*)0x400000000105 = 0; memcpy( (void*)0x400000000540, "\x78\x9c\xec\xdd\x4f\x6f\x14\x6f\x1d\x00\xf0\xef\x6c\xbb\xa5\xa5\x85\x16" "\xf5\xa0\x24\x02\x0a\xa6\x10\x65\xdb\xd2\x00\x8d\x07\xc4\xc4\xe8\x89\x44" "\xc5\x3b\xd6\x76\xdb\x34\xdd\x76\x49\xbb\x05\xda\x10\x29\xf1\x05\x98\x18" "\xa3\x26\x9e\xf4\xe2\xc5\xc4\x17\x60\x62\x48\xbc\x78\x34\x26\x24\x7a\xd6" "\xa8\xd1\x18\x05\x3d\x68\xa2\x8c\xd9\xdd\xd9\x52\xda\xdd\xb6\xbf\x52\x76" "\x4b\xfb\xf9\x24\xc3\x3c\x7f\x76\xe6\xfb\x3c\x0b\x33\x3b\xcf\xcc\x30\x13" "\xc0\xb1\x75\x3b\x9b\x5e\xa5\x69\x7a\x25\x22\x06\xb3\xf2\x5c\x36\x7d\xb2" "\x9a\x59\x8f\xb8\x10\x11\x2f\x5f\x3c\x9e\xaa\x4e\x49\xa4\xe9\xdd\xbf\x27" "\x91\x64\x65\x8d\x75\xa5\x35\x27\xa2\xbf\xbe\x48\x6d\x05\x5f\xfd\x52\xc4" "\x37\x92\xed\x71\x97\x57\xd7\xe6\x27\x4b\xa5\xe2\x52\x96\x1f\xa9\x2c\xdc" "\x1f\x59\x5e\x5d\xbb\x3a\xb7\x30\x39\x5b\x9c\x2d\x2e\x8e\x8f\x8f\xdd\x98" "\xb8\x39\x71\x7d\x62\xf4\x6d\xba\x37\xd3\x9f\x25\x4e\x45\xc4\xad\x2f\xfc" "\xf9\x7b\xdf\xfe\xc9\x17\x6f\xfd\xe2\x33\x0f\xff\x70\xef\xaf\x97\xbf\x99" "\xd4\xdb\xfc\x24\xb6\xf4\xe3\x03\xea\xde\xa9\xb2\xde\xf5\x7c\xf4\x6e\x29" "\x5b\xda\x67\xb0\xc3\xa8\x7b\x73\xa2\x6f\x6f\xcb\x3c\xcd\xfe\x89\x00\x00" "\xd0\x5e\xd5\xe3\xd2\x0f\x65\xc7\xf9\x57\x62\x30\xba\x76\x3e\x9c\x05\x00" "\x00\x00\xde\x43\xe9\xe7\x06\xe2\xbf\x49\xe3\xda\xdd\x36\x3d\x2d\xca\x01" "\x00\x00\x80\xf7\x48\x2e\x22\x06\x22\xc9\x15\xb2\xfb\x7d\x07\x22\x97\x2b" "\x14\xa2\x76\x0f\xef\x47\xe2\x64\xae\x54\x5e\xae\x7c\x7a\xa6\xbc\xb2\x38" "\x5d\xad\x8b\x18\x8a\x7c\x6e\x66\xae\x54\x1c\xcd\xee\x15\x1e\x8a\x7c\x52" "\xcd\x8f\xd5\xd2\xaf\xf3\xd7\xb6\xe4\xc7\x23\xe2\x4c\x44\x7c\x77\xb0\xaf" "\x96\x2f\x4c\x95\x4b\xd3\x9d\x3e\xf9\x01\x00\x00\x00\xc7\x44\xff\x96\xf1" "\xff\xbf\x06\xeb\xe3\x7f\x00\x00\x00\xe0\x88\x19\xea\x74\x03\x00\x00\x00" "\x80\x77\xce\xf8\x1f\x00\x00\x00\x8e\x3e\xe3\x7f\x00\x00\x00\x38\xd2\xbe" "\x7c\xe7\x4e\x75\x4a\x1b\xef\xbf\x9e\x7e\xb0\xba\x32\x5f\x7e\x70\x75\xba" "\xb8\x3c\x5f\x58\x58\x99\x2a\x4c\x95\x97\xee\x17\x66\xcb\xe5\xd9\xda\x33" "\xfb\x16\x76\x5c\xd9\xc6\xab\x03\x17\x57\x1e\x8d\x54\x8a\xcb\x95\xde\x88" "\xb8\xb7\x50\x5e\x59\xac\xdc\x9b\x7b\xe3\x15\xd8\x00\x00\x00\x40\x1b\x9d" "\x39\xff\xec\x77\x49\x44\xac\x7f\xb6\xaf\x36\x55\xf5\x6c\xaa\xff\x4f\xf6" "\x9e\x80\x8e\x35\x10\x78\x67\x36\x4e\xd9\x45\x92\xcd\x7b\xb6\x7f\xe8\xf7" "\xa7\xeb\xf3\x3f\xb5\xa9\x51\x40\x5b\x74\x75\xba\x01\x40\xc7\xd4\x7e\xff" "\xfb\xf6\xb5\xe8\xfe\x96\x02\x0e\x8d\x7c\xa7\x1b\x00\x74\x5c\xb2\x4b\x7d" "\xcb\x9b\x77\x7e\x9d\xcd\x3f\xb1\xd7\x48\x0e\x1b\x00\x00\xa0\x53\x86\x3f" "\xd6\xfa\xfa\x7f\x6e\xc7\x25\xd7\x77\xae\x06\x0e\x3d\x1b\x31\x1c\x5f\xae" "\xff\xc3\xf1\x55\xbb\xfe\xdf\xe4\x96\xbf\xa6\x1c\x2c\xc0\x91\x92\x77\x04" "\x00\xc7\xde\x5b\x5f\xff\xdf\x95\xff\x43\x04\x00\x00\x9d\x36\x50\x9b\x92" "\x5c\x21\x3b\xbd\x37\x10\xb9\x5c\xa1\x10\x71\xaa\xf6\x5a\x80\x7c\x32\x33" "\x57\x2a\x8e\x46\xc4\xe9\x88\xf8\xed\x60\xfe\x44\x35\x3f\x56\x5b\x32\xd9" "\x75\xcc\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xd4\xa5\x69\x12\x29\x00\x00\x00\x70\xa4\x45\xe4\xfe\x92" "\xfc\xb2\xfe\x2c\xff\xe1\xc1\x4b\x03\x5b\xcf\x0f\xf4\x24\xff\x1e\x8c\xec" "\x15\xa1\x0f\x7f\x78\xf7\xfb\x8f\x26\x2b\x95\xa5\xb1\x6a\xf9\x3f\x36\xca" "\x2b\x3f\xc8\xca\xaf\x6d\x3f\xbf\xd0\xdd\x96\xb3\x18\x00\x00\x00\xc0\x66" "\x8d\x71\x7a\x63\x1c\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x07\xe9\xe5\x8b\xc7\x53\x8d\xa9\x9d\x71\xff" "\xf6\xf9\x88\x18\x6a\x16\xbf\x3b\x7a\x6b\xf3\xde\xc8\x47\xc4\xc9\x7f\x26" "\xd1\xbd\x69\xb9\x24\x22\xba\x0e\x20\xfe\xfa\xd3\x88\xf8\x68\xb3\xf8\x49" "\xb5\x59\x1b\x21\x9b\xc5\xef\x7b\xf7\xf1\x63\x28\xfb\x16\x9a\xc5\xef\x3f" "\x80\xf8\x70\x9c\x3d\xab\xee\x7f\x6e\x37\xdb\xfe\x72\x71\xa1\x36\x6f\xbe" "\xfd\x75\x47\xbc\x91\xdf\xaf\xd6\xfb\xbf\xd8\xd8\xff\x75\xb5\xd8\xfe\x4f" "\xed\x31\xc6\xd9\xe7\x3f\x1b\x69\x19\xff\x69\xc4\xd9\xee\xe6\xfb\x9f\x46" "\xfc\xa4\x45\xfc\x8b\x7b\x8c\xff\xf5\xaf\xad\xad\xb5\xaa\x4b\x7f\x14\x31" "\xdc\xf4\xf7\x27\x79\x23\xd6\x48\x65\xe1\xfe\xc8\xf2\xea\xda\xd5\xb9\x85" "\xc9\xd9\xe2\x6c\x71\x71\x7c\x7c\xec\xc6\xc4\xcd\x89\xeb\x13\xa3\x23\x33" "\x73\xa5\x62\xf6\x67\xd3\x18\xdf\xf9\xf8\xcf\x5f\xed\xd4\xff\x93\x2d\xe2" "\x0f\xed\xd2\xff\x4b\x7b\xec\xff\xff\x9e\x3f\x7a\xf1\xe1\x7a\x32\xdf\x2c" "\xfe\xe5\x8b\x4d\xe2\xff\xea\xc7\xd9\x27\xb6\xc7\xcf\x65\xbf\x7d\x9f\xca" "\xd2\xd5\xfa\xe1\x46\x7a\xbd\x9e\xde\xec\xdc\x4f\x7f\x73\x6e\xa7\xfe\x4f" "\xb7\xe8\xff\x6e\x7f\xff\x97\xf7\xd8\xff\x2b\x5f\xf9\xd6\x1f\xf7\xf8\x51" "\x00\xa0\x0d\x96\x57\xd7\xe6\x27\x4b\xa5\xe2\xd2\x91\x4d\x54\x47\xe9\x87" "\xa0\x19\x12\x87\x30\xf1\x64\x7b\xd5\xf9\xd8\xf7\x0a\xd3\x34\x4d\xab\xdb" "\xd4\x5b\x34\x2c\x49\xd3\xf4\x49\x27\xbe\x8d\xe1\xd3\x11\xd5\x44\xb2\x51" "\xd2\xe9\x3d\x13\x00\x00\x70\xd0\x5e\x0f\x03\x9a\x5d\x9d\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xda\xa1\x1d\x0f\x18\xdb" "\x1a\x73\x7d\x23\x95\x1c\xc4\x23\xb4\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0e\xc4\xff\x03" "\x00\x00\xff\xff\x12\x20\xe8\x90", 1304); syz_mount_image( /*fs=*/0x400000000040, /*dir=*/0x400000000500, /*flags=MS_SYNCHRONOUS|MS_SILENT|MS_RDONLY|MS_NOSUID|0x400*/ 0x8413, /*opts=*/0x4000000000c0, /*chdir=*/0, /*size=*/0x518, /*img=*/0x400000000540); memcpy((void*)0x400000000180, "ext4\000", 5); memcpy((void*)0x400000000000, "./bus\000", 6); memcpy((void*)0x4000000012c0, "max_dir_size_kb", 15); *(uint8_t*)0x4000000012cf = 0x3d; sprintf((char*)0x4000000012d0, "0x%016llx", (long long)0x4739); *(uint8_t*)0x4000000012e2 = 0x2c; memcpy((void*)0x4000000012e3, "inode_readahead_blks", 20); *(uint8_t*)0x4000000012f7 = 0x3d; sprintf((char*)0x4000000012f8, "0x%016llx", (long long)0x800); *(uint8_t*)0x40000000130a = 0x2c; memcpy((void*)0x40000000130b, "norecovery", 10); *(uint8_t*)0x400000001315 = 0x2c; *(uint8_t*)0x400000001316 = 0; memcpy( (void*)0x4000000005c0, "\x78\x9c\xec\xdd\xcf\x6f\x1b\x59\x1d\x00\xf0\xaf\x9d\x38\x71\xd2\xec\x26" "\xbb\xec\x01\x10\xec\x96\xdd\x85\x82\xaa\x3a\x89\xbb\x1b\xad\xf6\x00\xcb" "\x09\x21\x54\x09\xd1\x23\x48\x6d\x48\xdc\x28\x8a\x1d\x47\xb1\x53\x9a\xd0" "\x43\x7a\xe6\x8a\x44\x25\x4e\x70\xe4\x0f\xe0\xdc\x13\x77\x2e\x08\x6e\x5c" "\xca\x01\x89\x1f\x11\xa8\x41\xe2\xe0\xd5\x8c\x27\xa9\x9b\xda\x4d\xd4\x24" "\x76\x14\x7f\x3e\xd2\x68\xde\x9b\x37\xf5\xf7\xbd\xa6\xf3\x5e\xfd\x4d\xe2" "\x17\xc0\xd0\xba\x1a\x11\xbb\x11\x31\x16\x11\x77\x23\x62\x3a\xbb\x9e\xcb" "\x8e\xf8\xac\x7d\x24\xf7\x3d\xdb\x7b\xb8\xb4\xbf\xf7\x70\x29\x17\xad\xd6" "\xed\x7f\xe5\xd2\xf6\xe4\x5a\x74\xfc\x99\xc4\x95\xec\x35\x8b\x11\xf1\xa3" "\xef\x45\xfc\x34\xf7\x72\xdc\xc6\xf6\xce\xda\x62\xb5\x5a\xd9\xcc\xea\xb3" "\xcd\xda\xc6\x6c\x63\x7b\xe7\xc6\x6a\x6d\x71\xa5\xb2\x52\x59\x2f\x97\x17" "\xe6\x17\xe6\x3e\xb9\xf9\x71\xf9\xcc\xc6\xfa\x5e\x6d\x2c\x2b\x7d\xf5\xe9" "\x1f\x77\xbf\xf5\xf3\xa4\x5b\x53\xd9\x95\xce\x71\x9c\xa5\xf6\xd0\x0b\x87" "\x71\x12\xa3\x11\xf1\x83\xf3\x08\x36\x00\x23\xd9\x78\xc6\x06\xdd\x11\x5e" "\x4b\x3e\x22\xde\x8e\x88\xf7\xd3\xe7\x7f\x3a\x46\xd2\xaf\x26\x00\x70\x99" "\xb5\x5a\xd3\xd1\x9a\xee\xac\x03\x00\x97\x5d\x3e\xcd\x81\xe5\xf2\xa5\x2c" "\x17\x30\x15\xf9\x7c\xa9\xd4\xce\xe1\xbd\x13\x93\xf9\x6a\xbd\xd1\xbc\x7e" "\xaf\xbe\xb5\xbe\xdc\xce\x95\xcd\x44\x21\x7f\x6f\xb5\x5a\x99\xcb\x72\x85" "\x33\x51\xc8\x25\xf5\xf9\xb4\xfc\xbc\x5e\x3e\x52\xbf\x19\x11\x6f\x45\xc4" "\x2f\xc7\x27\xd2\x7a\x69\xa9\x5e\x5d\x1e\xe4\x7f\x7c\x00\x60\x88\x5d\x39" "\xb2\xfe\xff\x77\xbc\xbd\xfe\x03\x00\x97\x5c\x71\xd0\x1d\x00\x00\xfa\xce" "\xfa\x0f\x00\xc3\xc7\xfa\x0f\x00\xc3\xc7\xfa\x0f\x00\xc3\xa7\xbd\xfe\x4f" "\x0c\xba\x1b\x00\x40\x1f\x79\xff\x0f\x00\xc3\xc7\xfa\x0f\x00\x43\xe5\x87" "\xb7\x6e\x25\x47\x6b\x3f\xfb\xfc\xeb\xe5\xfb\xdb\x5b\x6b\xf5\xfb\x37\x96" "\x2b\x8d\xb5\x52\x6d\x6b\xa9\xb4\x54\xdf\xdc\x28\xad\xd4\xeb\x2b\xe9\x67" "\xf6\xd4\x8e\x7b\xbd\x6a\xbd\xbe\x31\xff\x51\x6c\x3d\x98\xf9\xf6\x46\xa3" "\x39\xdb\xd8\xde\xb9\x53\xab\x6f\xad\x37\xef\xa4\x9f\xeb\x7d\xa7\x52\x48" "\xef\xda\xed\xc3\xc8\x00\x80\x5e\xde\x7a\xef\xc9\x5f\x72\xc9\x8a\xfc\xe9" "\x44\x7a\x44\xc7\x5e\x0e\x85\x81\xf6\x0c\x38\x6f\xf9\x41\x77\x00\x18\x98" "\x91\x41\x77\x00\x18\x18\xbb\x7d\xc1\xf0\x3a\xc5\x7b\x7c\xe9\x01\xb8\x24" "\xba\x6c\xd1\xfb\x82\x62\xb7\x5f\x10\x6a\xb5\x5a\xad\xf3\xeb\x12\x70\xce" "\xae\x7d\x49\xfe\x1f\x86\x55\x47\xfe\xdf\x4f\x01\xc3\x90\x91\xff\x87\xe1" "\x25\xff\x0f\xc3\xab\xd5\xca\x9d\x74\xcf\xff\x38\xe9\x8d\x00\xc0\xc5\x26" "\xc7\x0f\xf4\xf8\xfe\xff\xdb\xd9\xf9\x77\xd9\x37\x07\x7e\xb2\x7c\xf4\x8e" "\xc7\xe7\xd9\x2b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb8\xd8\x0e\xf6\xff\x2d\x65\x7b" "\x81\x4f\x45\x3e\x5f\x2a\x45\xbc\x11\x11\x33\x51\xc8\xdd\x5b\xad\x56\xe6" "\x22\xe2\xcd\x88\xf8\xf3\x78\x61\x3c\xa9\xcf\x0f\xb8\xcf\x00\xc0\x69\xe5" "\xff\x9e\xcb\xf6\xff\xba\x36\xfd\xe1\xd4\x0b\x4d\xef\x5e\x39\x2c\x8e\x45" "\xc4\xcf\x7e\x7d\xfb\x57\x0f\x16\x9b\xcd\xcd\x3f\x45\x8c\xe5\xfe\x3d\x7e" "\x70\xbd\xf9\x38\xbb\x5e\xee\x7f\xef\x01\x80\xe3\x1d\xac\xd3\xe9\xb9\xe3" "\x8d\xfc\xb3\xbd\x87\x4b\x07\x47\x3f\xfb\xf3\x8f\xef\x46\x44\xb1\x1d\x7f" "\x7f\x6f\x2c\xf6\x0f\xe3\x8f\xc6\x68\x7a\x2e\x46\x21\x22\x26\xff\x93\xcb" "\xea\x6d\xb9\x8e\xdc\xc5\x69\xec\x3e\x8a\x88\x2f\x76\x1b\x7f\x2e\xa6\xd2" "\x1c\x48\x7b\xe7\xd3\xa3\xf1\x93\xd8\x6f\xf4\x35\x7e\xfe\x85\xf8\xf9\xb4" "\xad\x7d\x4e\xfe\x2e\xbe\x70\x06\x7d\x81\x61\xf3\x24\x99\x7f\x3e\xeb\xf6" "\xfc\xe5\xe3\x6a\x7a\xee\xfe\xfc\x17\xd3\x19\xea\xf4\xb2\xf9\x2f\x79\xa9" "\xa5\xfd\x74\x0e\x7c\x1e\xff\x60\xfe\x1b\xe9\x31\xff\x5d\x3d\x69\x8c\x8f" "\xfe\xf0\xfd\x76\x69\xe2\xe5\xb6\x47\x11\x5f\x1e\x8d\x38\x88\xbd\xdf\x31" "\xff\x1c\xc4\xcf\xf5\x88\xff\xe1\x09\xe3\xff\xf5\x2b\xef\xbe\xdf\xab\xad" "\xf5\x9b\x88\x6b\xd1\x3d\x7e\x67\xac\xd9\x66\x6d\x63\xb6\xb1\xbd\x73\x63" "\xb5\xb6\xb8\x52\x59\xa9\xac\x97\xcb\x0b\xf3\x0b\x73\x9f\xdc\xfc\xb8\x3c" "\x9b\xe6\xa8\x67\x7b\xaf\x06\xff\xfc\xf4\xfa\x9b\xbd\xda\x92\xf1\x4f\xf6" "\x88\x5f\x3c\x66\xfc\x5f\x3f\xe1\xf8\x7f\xfb\xff\xbb\x3f\xfe\xda\x2b\xe2" "\x7f\xf3\x83\x6e\xf1\xf3\xf1\xce\x2b\xe2\x27\x6b\xe2\x37\x4e\x18\x7f\x71" "\xf2\xf7\xc5\x5e\x6d\x49\xfc\xe5\x1e\xe3\x3f\xee\xeb\x7f\xfd\x84\xf1\x9f" "\xfe\x6d\xe7\xa5\x6d\xc3\x01\x80\xc1\x69\x6c\xef\xac\x2d\x56\xab\x95\x4d" "\x05\x85\x8b\x5f\x48\xfe\xc9\x5e\x80\x6e\x74\x2d\x7c\xa7\x5f\xb1\xc6\xa2" "\x7b\xd3\x2f\x3e\x68\x3f\xd3\x47\x9a\x5a\xad\xd7\x8a\xd5\x6b\xc6\x38\x8b" "\xac\x1b\x70\x11\x1c\x3e\xf4\x11\xf1\xbf\x41\x77\x06\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xe8\xaa\x1f\xbf\xb1\x34\xe8\x31\x02\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x70\x79\x7d\x1e\x00\x00\xff\xff\x5f\x71\xcf\x23", 1274); syz_mount_image( /*fs=*/0x400000000180, /*dir=*/0x400000000000, /*flags=MS_POSIXACL|MS_SYNCHRONOUS|MS_RELATIME|MS_NOSUID|0x80c*/ 0x21081e, /*opts=*/0x4000000012c0, /*chdir=*/1, /*size=*/0x4fa, /*img=*/0x4000000005c0); memcpy((void*)0x400000000080, "pids.current\000", 13); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x400000000080ul, /*flags=*/0x275a, /*mode=*/0); if (res != -1) r[0] = res; *(uint32_t*)0x400000000280 = 8; memcpy( (void*)0x400000000284, "\x68\x82\x8c\x0b\x9b\xc2\x3b\x6a\x89\xf8\x11\x0d\x35\xc5\x9d\x08\x2b\x92" "\xf4\x76\x10\x2c\xe3\x22\x29\x63\x8a\x49\x5d\xcd\x21\xc8\x9d\x83\xa6\x02" "\xa5\xe3\x1d\xb5\xec\x28\xb8\x18\xa3\xd6\x99\xab\xbf\xaf\xad\x03\x70\xd6" "\x10\xac\x8a\x0c\x47\x26\x14\x77\x06\x60\x0f\xf5\x33\x12\xa5\xa0\xfc\xf0" "\x2d\xd3\xc0\xc0\x51\xbc\xe7\xe1\x40\x58\xa9\x10\x70\x61\x72\x64\xa6\x3a" "\x44\x6e\x3b\xcb\xc6\x0a\x82\x04\xe1\xcd\xe7\x29\x45\x51\xe2\xb1\x4c\xa9" "\x57\x68\xdb\x0f\x1d\x7e\x91\xa0\x15\x58\x16\x4e\xb6\x11\xa5\x45\xbf\xff" "\x41\xad\x47\x88\x23\x7a\x35\xd9\xbb\x20\x87\xb6\x24\x5d\x27\xb7\xfd\xf4" "\xd1\x2d\x0b\x19\xd8\xcb\x93\xab\x5a\xe5\x85\x0d\xc1\xc5\x21\x05\x82\x56" "\xc8\xff\xa7\x74\x20\x38\x29\x0b\xb8\x74\xb0\xe4\x19\x9e\x94\x5f\x3a\xb5" "\xc7\x4e\x1b\x38\x40\xf1\x8b\x0c\x27\x37\x7c\x18\xbe\xea\x9f\x6f\x90\x9f" "\x14\x1e\x96\xc7\xef\x2d\x65\xf2\x93\xa1\x3f\xbb\xca\x16\x64\x4d\x71\xcf" "\x8c\xc7\x65\x23\x91\xc5\xea\xca\xa8\xa1\xe2\x47\x81\x5d\x7c\x91\xad\xab" "\x2c\xfe\x77\xc7\x18\x82\x24\x68\x12\x31\x2a\xa0\x1c\x99\xb9\x40\x2a\x62" "\xd8\x2c\xe8\x0d\x08\x63\x6a\xa5\xa8\x7b\x55\x0b\xec\xad\xfe\x4b\x5a\xe9" "\x80\x85\xa6\xb0\xd9\xfd\x34\x07\x46\x1e\xec\xd2\x42\xe2\x43\x14\x0c\xbe" "\x10\x27\xd6\x85\x16\xe3\xc3\x79\xa0\x92\x14\x55\xca\x4b\x36\xfb\x9d\x4b" "\x9f\x93\x24\x59\x0f\xc7\x77\x30\x38\x5d\xee\x37\x6d\x14\x7a\x74\xbb\x08" "\xce\x8f\xec\x7e\xd2\x05\x31\x1d\xc4\x2f\x4c\xd0\x09\xf5\x7c\x85\xab\xce" "\xd5\x84\x48\x67\xf8\x1d\xdf\x09\xcb\x67\xbb\x62\x3e\xd4\x13\x04\xc2\xd0" "\x83\x73\x97\x2f\x30\x41\x87\x80\xc6\xbe\xd8\x85\x60\x4b\x2f\xc6\xea\x1c" "\xd1\xdf\xe4\x8c\x5f\xae\x5f\x59\x25\xc9\xc6\x57\xbb\x39\xd8\xb3\x0d\xb6" "\xeb\x1c\xab\x50\x31\xae\x94\xd4\x5a\xa4\x76\x4d\x45\x39\x77\x93\x25\x0c" "\x75\x85\x37\xe2\x4b\xab\x0a\xb7\x5d\x80\x66\x90\x3f\x80\x8d\x1b\xf6\x8d" "\x18\x9c\x1a\x1f\x5c\x6a\xd2\x8d\xbe\xae\x6a\xb6\x4c\x77\x13\x46\xa9\xe7" "\x72\x0b\x92\xad\x40\x08\xdb\x9c\x94\xd6\xb8\x76\x75\x3d\x57\xbb\x21\xf7" "\xc6\x45\xd6\x83\x3e\x68\x0f\x52\xc3\xec\xaf\x20\xb0\x58\x69\xfe\xb4\xee" "\x67\x0d\x4f\x18\xe2\x33\xdf\x78\xcc\xda\x64\xa8\xcb\xc6\xd2\x8e\x39\x2f" "\xad\x9c\xc7\xdc\x8b\xae\xd6\x66\xcf\x0e\x96\x11\x1a\xac\x33\x76\xd3\xe6" "\x6b\x50\xf8\x3b\xbc\x51\xb1\x80\xde\x2a\x32\x0e\xe8\xc5\xfe\x17\xbe\xa8" "\x97\xac\xea\x40\x27\x4c\x39\x62\xf0\x09\xed\xe4\x28\xa9\x9e\x0f\xe8\x69" "\xa9\xf7\x11\xb6\x26\xe6\x8a\x5e\x25\x7e\x32\xcd\x6a\x00\x0f\x4c\x9c\x50" "\x9b\x11\x16\xf2\x50\x2f\x19\x98\x23\xf2\x9d\x74\x10\xe3\x7f\x4d\x57\x75" "\x5b\x85\xe3\xb0\xf5\x55\x42\x2f\x86\x31\x04\x71\x87\xb5\x52\x95\x00\x18" "\x47\xe7\x39\x5e\x7d\x59\x75\x2e\xe3\x7d\x12\xf7\xf9\xb0\xd9\x4f\x00\xf6" "\x26\xeb\x33\x0e\xbc\xf5\xfd\x52\x09\x25\x03\x6c\xc0\x7e\x68\x7e\x00\x1b" "\xef\xa3\x34\x75\xb6\x7d\x38\x1f\x5d\x0d\x5c\x96\x9f\xd6\x03\x46\x45\x20" "\xd9\x21\x2d\xf2\x7d\xbb\x46\x65\xc1\x39\x75\x57\x95\xa4\x20\x05\xfa\xc9" "\x4f\x0c\xee\xb6\xde\xe1\xf3\xbb\x0c\x7c\x1b\x03\xbb\xaa\xfe\x7a\x4b\x53" "\x25\x78\x92\xfa\x6a\x01\x48\xa1\xbb\xb4\x3f\x0b\x57\xc2\x1e\x27\x87\x30" "\xc5\x3a\x88\x88\x64\xa8\xfb\xf7\x1a\x81\xe1\x54\xd5\xf9\x23\xbd\xc6\x7a" "\x35\x57\xd0\x81\x65\x5d\x3a\x63\xc6\x36\x09\xc0\xe1\x80\x4d\xbb\x72\x42" "\xca\x48\x9a\xc2\xf2\xd4\x25\xa4\xf8\x00\x7d\x4f\x31\x2c\xa7\x72\x3b\xf3" "\xc6\x63\x3b\x65\x11\x77\xc0\xa5\x4d\x6a\xc5\x0a\xc4\x5e\x5f\x36\xe4\x74" "\x68\x5e\xf3\x93\x87\x75\x53\x7a\x3c\x50\xf0\x6e\xca\x47\x2d\x7f\x8c\xee" "\x44\x23\x9b\x2a\x4d\x29\xfb\xf2\x62\x9e\xaf\x62\xd8\x79\xab\x8d\xcd\x2f" "\xd5\xd2\x34\x52\x98\xf3\xfe\xa8\x43\x07\xf0\xd2\x2a\x5e\xcb\xe2\xc7\x28" "\xce\xc1\xb9\xad\x42\x40\x92\x6d\xc9\xd3\xd9\x4d\x54\x76\xa0\xf9\xf0\x88" "\xb0\xc2\x1b\x04\x01\x39\xbb\xe1\x03\x41\x7a\xe1\x1a\x85\xf7\x2d\x65\x2c" "\x93\x35\x1f\x8e\x06\x25\x30\xc0\x3c\xb8\x42\xef\x3b\x23\x1e\xcf\x36\xef" "\x32\xc4\x70\xc6\x7d\x48\x64\x87\x40\x33\x4e\xa6\x70\xa2\x00\xe4\xd8\x77" "\x45\x78\x4c\x27\x00\x23\xac\x23\x91\xb3\x93\x19\x16\x2a\x26\x8c\x55\xd6" "\x4c\x76\x3d\x9e\x50\x79\xc2\x86\xb0\xc2\xeb\x6c\x08\x4a\xdb\xdd\x0b\x18" "\x23\xd9\xd3\x1a\x73\xaa\x18\x1c\xb5\x07\xbf\xce\x4d\x9f\x77\x52\xda\x2f" "\xbb\xd3\xd3\xeb\x36\x6b\x7f\xcb\x4c\x78\x68\xa5\xd0\x10\xea\x3b\x4e\x7d" "\xd6\xe6\x8a\xeb\x04\x4e\xdf\x20\xe2\xd4\xaa\x28\x37\xcd\x70\x81\x4a\x55" "\x6b\x5a\x4f\x90\xfc\x47\xce\xab\x97\xb2\xf6\xec\x43\x7f\x46\x19\x63\x98" "\x66\x7c\xf9\x27\xc9\x00\x52\x31\x54\xb3\xbf\xee\x8e\x96\xeb\x4b\x4c\x03" "\xdc\x0d\x81\x85\x11\xa5\x1b\x5d\xef\xd3\xeb\xf6\x52\x38\x16\x56\x0b\xa0" "\x3f\xc0\x10\xfd\x34\xab\x09\xfd\xb3\xaa\x35\x5e\x48\xb6\xb3\xa0\xcb\x6c" "\xe8\x9b\x40\x08\x10\x4a\x4a\xfe\x82\x65\xf1\x17\x8d\x17\x70\x27\x91\x8e" "\xc1\xac\xa8\xa2\xad\x98\xfa\x63\xba\xd1\x36\x7d\x37\x9e\x6f\xf1\x3a\x57" "\x90\x9d\x8f\x9e\xcf\x50\xbf\x5d\xed\xc6\xe4\x9c\xb9\x45\x9e\x4d\xb1\x5c" "\x4a\xa2\x09\x8f\xec\x4e\x13\xea\xfe\xba\xf8\xc1\xea\x11\x8d\x05\xc5\x1e" "\x79\x9f\x8e\x84\x3e\x0c\x72\x2e\xce\xcf\xcf\x24\x22\xec\xe6\x4d\xd9\x45" "\xb6\xc1\x4e\x58\x43\xa3\x93\xe8\x48\x73\xd3\xdd\x84\xea\xb7\x86\x95\x50" "\x14\xf2\x10\x68\x6a\xea\x9b\x11\x06\x2c\x70\xe8\x29\xef\x9f\xf9\xda\x1b" "\xe1\x97\x05\xd2\xa7\x41\x10\xd8\x2e\x14\x1c\xb1\xda\x32\x54\x41\xa8\x59" "\x37\x80\x47\x06\x56\xe6\x11\x6d\x5b\xf1\x6b\xb6\xfe\xe6\xb9\x80\xae\x34" "\x48\xd7\x82\xc5\xf8\xd6\x58\xf6\xe9\xe8\x49\x4d\x93\x57\x49\x04\x85\xa1" "\xb9\x87\x9d\x34\xf4\xe6\x81\xa4\x25\xe3\x66\x27\xf4\x84\x4a\x64\xbf\xee" "\x3c\x90\xbb\x2c\x93\xc4\xe7\x91\xec\xef\xb0\x91\x7b\x45\xf9\x32\x35\x24" "\xfa\x57\x54\x72\xf9\x15\x2b\x84\xab\x51\xac\xa0\x06\xe5\x67\x20\x91\x55" "\x4d\x95\xa5\x98\xc2\xc0\x90\x68\x67\x3a\x85\x77\x04\xb1\x31\xda\xc0\x7b" "\xff\x07\x98\x59\x41\xf2\x51\x0a\xa5\x2d\xbb\x79\x24\x6b\xb5\x19\x38\x19" "\xfe\x06\xcf\xaf\xd2\x4a\xc8\xf2\xcb\x98\xb9\xf4\xa7\xbb\x5f\x27\xd9\x62" "\xfc\xb7\x33\xb9\xac\x25\xf1\xde\xc5\xa1\xd6\xf6\xc4\xfd\xe0\x72\x04\x81" "\x69\xfb\xfd\xde\x08\x54\xa9\x93\xae\x1f\x93\xd1\x3b\x4c\xfb\xac\xd9\x26" "\xc2\x04\xd6\x87\xf2\xf9\xfe\xb6\x96\x40\x6a\x8a\xa8\x3d\xe5\x85\x3c\xdb" "\x2f\xc1\x10\xdb\x3e\x3e\xe7\x17\x85\x1e\xbc\x9b\xfe\xa5\xf7\x56\x3e\x7f" "\x41\xd8\xed\xfa\xc8\x3f\x2b\x6d\x01\x5f\xca\x0f\x9c\xa2\x9e\x3d\x97\xf9" "\xc7\x27\xbd\xdd\xc5\xea\xb6\xbf\x60\x3c\x0a\xf7\xb4\x21\xaa\x44\xf3\xa0" "\x32\x96\xfd\xe5\xd9\x80\xb3\xc2\xc7\x07\x05\x94\x40\xb0\xe6\xfa\xc0\x5a" "\x66\xd9\x19\x73\x39\x89\xf6\x92\x09\x30\x3d\x91\xe0\x9e\x7b\x6f\xac\x37" "\xc8\x12\xbb\x88\x0b\xd0\x6b\x68\x79\x58\xda\xc2\x60\x8e\xc6\xe0\x7f\x49" "\x27\x32\xc4\x4b\x3a\x30\x4d\x0a\x11\xa7\x30\x7a\xba\xb2\x9e\x31\x23\x9b" "\xde\x82\x74\xec\x53\xa6\x99\x9c\x0e\xc3\x6e\xf7\x08\xd4\x6b\x4e\x60\x6d" "\xdd\x4e\x41\xb0\x5e\x14\x41\x47\xb5\xa3\xd7\x86\x80\x68\x73\xda\xd1\x9d" "\x8b\x11\x20\x9a\x0d\x0d\x3e\x93\xd1\x7b\xa4\xb6\xb7\x5b\x5e\x8e\x9c\x36" "\x28\x9f\x9b\xe1\xdb\x42\x82\x78\xc0\xc1\x8b\xef\x83\x27\xd3\x74\xfc\xb1" "\x60\x07\xc5\x95\xb8\xc5\x9b\x15\xc9\x0f\x0b\x2e\x30\x20\x71\xa1\xe3\x28" "\x28\x2b\x94\x51\x6a\xf2\xa8\x3b\xbc\xdd\x29\x12\xa5\xb2\x04\x45\x82\xf2" "\x18\x20\xdf\x59\xce\xe9\xd4\x5a\x8d\xc0\xe9\xba\xbf\xd2\x91\x4c\x49\x2f" "\x58\xe3\x24\x75\xaf\x0c\xe5\x3b\xb0\xb2\x56\x61\xac\x52\x26\xe9\x46\xf6" "\xcf\x87\xda\xb1\x26\x01\xf2\xcb\x55\x57\x3f\x17\xac\x7d\x48\xa6\x47\xa4" "\xef\x38\xe3\xfc\xa9\x23\x77\xff\xdd\x9b\x5f\x3b\xb7\x5b\xad\x2b\x40\x6d" "\x8d\x56\x56\xb4\xee\xa1\x7a\x7e\x2f\x54\x0c\x12\x98\x55\x99\xbd\xb0\x97" "\x93\x06\x8b\x31\x51\xf5\xa7\xc3\x92\x41\xc8\x8c\x26\x7f\x34\xcf\x34\x25" "\x06\x33\x88\x35\xa8\xe9\x97\x5b\x76\xdd\xe0\xe2\x75\xf3\x52\x2f\xf6\xbe" "\x12\x40\x20\x11\x86\x8e\x65\x8f\xba\x23\xef\x0e\xa8\xee\xb4\x70\xf6\x31" "\xca\x1b\x5a\x2e\x5e\x35\x33\x63\x20\xed\x03\xec\xc3\x12\x12\xbf\x84\x46" "\x73\x33\x73\x0d\x96\x91\x9e\x2e\xd9\xed\xdd\xb7\x1d\xa5\x78\x4f\xdb\xc2" "\x34\x72\xda\x38\x40\xac\x66\x5c\xfa\xfb\xc8\x63\xd7\x1f\x5e\x03\x2d\x6c" "\xb1\x29\x93\x75\xf9\x6a\xe7\xa1\x65\x87\x98\x56\x1c\x5d\x3e\x54\x90\x52" "\x75\x1e\xda\x4d\x83\x01\x09\xd0\xc7\xcc\xdd\x80\xaf\xc7\x80\x3e\x54\x67" "\x38\xe3\x42\x4c\xf7\x76\x27\x33\x0b\x94\x47\xff\x34\x06\x85\x85\x93\x6b" "\xb6\x0e\xad\xd4\x7d\x40\xf1\x71\xd8\x0f\x5b\x4d\x32\x76\xa7\x4a\x4a\xc6" "\x06\x13\x5b\x80\x5a\x64\xd0\xd3\x9a\x06\x34\x4d\x3b\xe8\xc1\x57\x2c\xd3" "\x3f\x9a\x3a\xfd\x10\xdf\xef\xd4\x78\x9a\x54\xe9\xcb\x55\x67\x7b\x02\xf9" "\x33\x0e\xe9\x9a\x1f\x93\xa6\xce\xbd\x52\xf2\x2e\xb9\x3b\xce\xdf\x37\xf4" "\xcc\x39\x82\xb4\xda\xba\xf2\x6e\x21\x58\x72\xe1\x1c\xc8\x36\xb4\x39\xb5" "\x80\xea\x01\x3c\x76\xea\x86\x29\xed\x75\x2b\x08\x7b\xcf\x17\x6f\xdc\x8c" "\xb6\xae\x4e\x29\x47\xf5\xbc\xf9\x33\x8d\x48\xce\x1c\xf7\x4e\x36\x5b\x72" "\x0d\x1b\x3d\x8c\x51\x45\xd1\xa7\x8e\x8e\xb1\xb4\x5d\x21\xbb\x62\xed\x1b" "\x6e\x21\x2c\x13\xa0\xea\x21\x22\x31\x03\xcd\x52\x1c\xb7\x36\x66\xcc\x7a" "\x5b\xac\xf0\x2b\x57\x64\x25\x12\x57\xde\xa8\x13\x8e\x36\x83\xc0\xf7\xec" "\x40\x37\x09\x3a\x3b\x78\xa2\xd7\x41\x85\x28\x9a\x48\x44\x90\x36\x19\xb1" "\xd9\xd1\x55\x3e\xa2\x17\xca\x21\x4b\xe2\xcb\xa7\x32\x90\x76\x92\xa7\x69" "\xd3\x98\xd5\x2b\x81\x6e\x38\x59\xf8\xae\x81\xe5\xd0\xc0\x89\xe1\xa8\x78" "\x85\xdd\x5c\x86\xc5\x0a\xc8\x3d\xb3\xa8\x02\xea\x67\xbc\x02\x24\xb4\xd4" "\xe5\xed\x03\x47\xa7\xb1\x44\x00\x4a\x93\x82\x6b\x01\x24\x4e\x75\xb6\xe4" "\x99\xd4\xb2\x6b\xb1\x84\x5a\xfe\xa8\x65\x4b\xa9\xad\xe7\x5f\x53\x10\xb4" "\x58\x88\x5a\xd7\x8e\xff\x37\x12\xc0\x2e\x62\x36\x3c\x5d\xed\xd6\xc9\x9d" "\x9a\xae\x4c\xff\x5c\xc5\xed\x94\x06\xc2\x48\x74\x4c\xb4\xf0\x91\xeb\x1f" "\x41\x9d\x0e\xfd\x1e\xf5\xc8\x50\xb4\x17\x6f\xa0\x7a\x1a\x5a\x4e\x8d\x39" "\xd2\xe0\x30\x89\x16\xab\xc7\x7f\x6c\xf6\xb4\xa4\x4a\x8a\x01\xfc\x21\x05" "\x9d\x0e\x10\x0d\xaa\xea\xf6\x36\xbd\x17\x76\x37\xa5\x83\xeb\x9f\x45\xc6" "\x7b\xc2\xc7\x67\x60\xa5\x8b\xf4\x48\xe2\xe3\x79\x83\x17\x55\xf7\xa9\x74" "\x38\x4d\x3d\x62\x72\x7c\xa3\xfe\xc2\x19\x4d\xd6\x33\xa0\xed\x41\x1d\x65" "\x86\x65\x1b\x4b\xbd\x8b\x4f\x57\x46\xce\x4e\x72\x71\x5b\xa9\x73\x6c\x24" "\x07\x47\xf9\x8a\x01\xfd\x3d\xf0\xb9\xbe\xd0\x07\x76\x3c\x1a\x19\x68\xd4" "\xb6\x9e\xaf\xd2\x79\xd1\xc7\x61\xf8\xd6\xa6\x75\xab\x2f\xce\xd1\x79\x39" "\x20\xb1\x0c\x50\xaf\x35\x20\x17\x0b\x1d\x50\x41\xa0\xdd\xe7\x53\xa2\xfc" "\x21\x0c\xf9\x8e\xbc\xc5\x39\x2a\x5d\xec\xca\xef\xdf\x4b\x00\x2a\xee\xe7" "\x16\xdc\xdc\xa6\xcb\x60\x73\x88\x1d\xdb\xfd\x37\xee\x75\x1e\xda\xca\x99" "\xb6\x52\x02\xbf\xdb\xe1\xfe\xc4\x57\xbd\x50\x25\x55\xb7\xde\xdc\x5d\x8e" "\x22\x1d\x40\x93\xcf\x7a\xcf\x89\xa3\xb8\x01\xd6\xd2\xfd\xd3\x41\x5d\x58" "\xbe\xf8\x56\xbe\x0f\xf2\x2e\xab\x5d\x75\x67\x50\x81\xd8\x54\x16\xab\x70" "\xd7\xd3\x6d\x61\x7a\x2a\x7f\x0c\x8d\x6e\xd3\x5a\x2a\x81\x58\x8f\x01\xe8" "\x07\x12\x53\x4c\x32\x56\xfc\x52\xfb\x4e\xd5\x47\x83\x25\xae\x28\xef\xd7" "\x8e\x7e\xaa\xab\xf0\x8b\xd7\x49\x22\x6e\xca\xb7\xbd\xba\xb7\xa6\x0b\x5b" "\x60\xf2\xd9\x37\x14\x45\x5a\xe6\xd3\xb8\x8d\xe9\xeb\xb5\xd2\xdf\x81\xfc" "\x7e\x34\x9a\xf4\x5d\x1b\x50\x2c\xfa\xf3\x6f\x4a\xdc\x16\x88\x6d\xb2\x75" "\x8b\x4f\x43\xf5\xa0\x30\x91\x2c\xb7\x72\xde\xf9\x0d\x1a\x0f\xb5\x55\xc8" "\xfb\x10\xd3\xa7\xbd\x8e\x2d\xd9\x54\x86\x0b\x80\x84\xce\x5c\x72\x97\x1f" "\x5d\xf2\x4e\xf5\xbc\x24\x93\x7c\xcd\x54\x5f\x96\x4a\x86\xb6\xc4\x66\x61" "\x0e\x24\xce\xe9\x2b\xf7\xa1\x96\xc9\x15\x97\x53\x49\xb4\x91\xe8\xbb\x1f" "\x16\x4a\xe0\xaf\x3f\xbe\x05\x0d\x57\xdc\x7a\xf8\x39\xbe\x63\xcd\xf1\x88" "\x3e\xc3\x1f\x53\x10\xc6\xe0\xd8\x7c\x70\x90\x2a\x66\x25\x9b\xcf\x76\x58" "\x8f\x14\xf9\x6e\xbb\x85\xb9\x59\x97\xf6\x48\x14\xc7\x3d\x6f\xf8\xb0\x59" "\x53\x6c\x70\xf7\xd7\x2b\x59\x24\x25\x8f\xfb\x70\x6e\x2a\xf7\xaa\xf5\x80" "\xf3\x27\xaf\x6d\xff\x0c\x3b\x02\x0b\x45\x1c\x4b\x22\xd4\x6f\xa7\x28\x54" "\xaf\x95\xb2\xb6\xa6\xd7\xa3\xe0\xb2\xb7\x8c\x06\xee\xec\x2e\xdd\x5f\x1a" "\x21\x74\xae\x8b\x7b\x6f\x4c\xe2\xe7\x81\x31\x41\x42\xb8\x48\x2d\xc8\xff" "\x40\x46\xe8\x51\xa5\xd6\xb8\x34\x7b\x4a\xc8\xb2\x32\x6e\x1c\x35\x91\x60" "\xac\x49\xd6\x37\xe4\xf5\x54\x9d\x73\x36\x9d\x33\x23\x22\x3f\x17\x91\x46" "\xa5\x42\x6e\x21\x21\x3c\x6e\x51\xa3\x48\xbc\x9d\x55\x28\x98\x37\xb4\x2f" "\xa5\x6f\x90\x84\xf6\xe2\x68\xa9\xd0\x41\xbd\xe5\x13\xb1\xe8\xea\x13\xa7" "\x63\x7b\xc5\x3f\x67\xb2\x95\x1b\x4b\xec\x7a\x44\xac\xb0\xd9\x3e\xa3\x25" "\x61\x1c\x48\x68\x06\x88\x4b\x08\x19\x2e\xd5\x76\x8c\xa8\x8e\x95\xdb\x07" "\x5d\x8d\x55\x1b\x09\xc4\x2d\x62\xa8\x7e\x1b\x12\x1a\xdb\x58\x12\xee\x17" "\x69\xf1\x55\x57\x07\xb1\x63\xaf\x0f\xf7\x8d\x72\x8a\xd0\xa1\x87\x17\x04" "\x64\x5f\x1e\xd8\x63\x2e\x85\x73\x5f\xf2\x4e\x75\x41\x00\x5d\x54\x09\x20" "\x59\x40\xdf\x84\x92\x6e\xc5\x81\x21\x8a\x4c\xe8\x94\x98\x71\x5f\xb0\x9d" "\xcd\xb4\x48\x49\xd3\xca\x76\x31\xc1\xd4\x72\xff\xca\xfe\xb3\x76\x10\xe8" "\xca\x77\xba\x4b\x43\x17\x6d\x82\x5a\x27\xf5\x9e\xc8\x1b\x21\x7b\x7a\xa6" "\xe0\x16\x98\xfe\x45\xff\xaf\xa0\xea\x23\x56\xad\x42\x3e\x58\x1b\x63\x2b" "\x6c\x62\x7e\x0d\x82\x7d\xa5\x85\x23\xa4\x0a\xa1\x9e\xa3\xe2\xca\x93\xf9" "\x3e\xd2\xa3\x3e\x4f\xab\xc3\x6a\xe5\x6a\xbc\xb1\x1a\xe7\x94\x45\x77\x23" "\x0e\xc6\xc4\x98\x03\x39\x76\xfb\x8d\x96\x10\xd9\xd9\xea\xcf\x73\x02\xec" "\xb0\x60\xea\x50\x02\xd7\x0e\xb6\xf3\x27\xde\xd1\x8f\x5b\x2c\x79\xe0\x4f" "\x09\xbf\xf2\x03\xb7\xd5\x72\xa2\x14\xc3\x68\x4e\xb8\x94\x70\xc2\x8a\x13" "\x61\x33\x3b\x32\xdd\x63\xdf\x21\x63\xc0\x39\xd1\x29\xc5\xf7\x66\xfe\x1a" "\x41\x10\xf9\x5f\xc9\x9b\x87\xea\xd8\x44\x43\x3a\xc3\x09\xc3\x56\x5b\xc9" "\xca\x7a\x6f\x83\x8a\x12\x1f\xc4\x43\x03\xae\x24\x8a\x36\x68\x65\xe0\xa3" "\xda\x36\xed\x30\x46\xe3\x04\xf5\x79\xff\x42\x2a\x7b\x99\x46\xb5\xcf\xb5" "\x2d\x3e\x44\x63\xe4\xc5\xa1\xe3\xc7\xec\x1d\xc1\x6c\x18\xc1\xcd\xc6\x41" "\xb8\xa8\x30\x1c\xd2\xfc\xd2\x71\x48\x95\x28\xb4\xbb\x4a\x85\x15\xa7\x1b" "\xe2\x36\xfa\xad\xc7\xea\x05\x17\x3c\x21\xf4\xb8\xa9\xaa\xda\xe3\x8d\x2e" "\x84\x43\x19\x9a\x08\xa8\xdf\x1d\x50\x2d\xf6\x27\x36\x81\x23\x98\xe8\xdf" "\x6e\xb1\x7f\x93\x8d\x52\x9e\x8d\xcc\xfe\x6a\x15\x47\x0b\xe9\xa8\xcb\x61" "\x3a\x7f\xb3\x37\xf2\x13\xf7\x7e\xbd\x13\x6d\xdb\xab\x94\x71\x62\x91\x69" "\xe2\x43\x04\xe8\xd2\x0f\x37\xe9\xa3\x41\x55\x9a\xfc\x9a\xb5\x98\x11\x9e" "\x50\x4c\x53\xd5\xc8\xec\x53\x16\xe8\x33\x62\x95\xc4\x10\x1d\x8b\xdf\x6c" "\x71\xd1\x48\x33\x55\xc0\x09\x72\x63\x6e\xa6\x83\x17\x04\x00\x88\x58\xcf" "\x80\x3d\xef\xbb\xa5\x06\x9c\x24\xac\x7d\x5e\x1b\x7c\x8e\x66\x42\x12\xd3" "\x50\x83\x2f\xbc\x76\x7e\x09\xa6\xc2\xa0\x80\x73\xdd\x8a\xc2\x66\x1f\xec" "\x32\xd6\xf5\x48\xb5\x6d\x74\x20\x1c\x27\x4e\x2c\xc0\x7a\x17\x12\x16\x9d" "\x3d\xb6\x4e\xbd\x5b\xc1\x11\xfc\x0a\xa4\x1f\x69\xa5\xef\x84\x9a\x41\xa8" "\x4c\xb0\x67\x3d\xb0\x0c\xb6\xae\x34\x5f\xdb\xd4\x4a\x54\x67\xf8\x58\x8a" "\xa2\x4e\xf5\x7d\x7e\xa9\xce\x9b\x0b\x9d\x2c\x2e\x2e\xe7\x99\x0c\x1e\x3d" "\x97\x37\x5f\xfd\x80\x02\x48\xf8\x77\x89\xce\xdb\x94\x80\x3c\x31\x57\x28" "\x80\x5b\x5c\x03\x94\xab\x61\x7e\xad\xac\xaf\xeb\xba\x89\xd1\x03\xb2\x8c" "\x9d\xf3\x23\xfc\x65\xd0\x23\x53\x93\x93\xac\x18\x28\x52\x46\xff\xc5\xe4" "\xa7\xba\x90\x2d\xc2\x34\xac\x23\x83\x38\x2f\x3f\x44\x5f\x19\x8c\xd8\x2a" "\x49\x4c\x8f\x7e\xa8\x0c\x05\x17\x22\x3f\x14\xe3\x03\xcf\x75\x65\xe4\x4c" "\xd6\x50\xd4\x99\x72\x02\xac\x33\x13\x55\xd2\xc7\x34\xc6\x1c\x8a\x19\x03" "\xd0\x56\xeb\x03\xce\x50\xd1\x67\xa7\xa9\x48\x54\xde\x23\x4e\x45\xe3\x88" "\x62\x87\xd0\x12\x21\xc6\xd4\x93\xea\x07\x8d\xf8\x1c\x2c\x0d\x7e\x5b\x61" "\xa3\x4c\xee\xcb\xf8\x3d\xd2\x1e\xdb\x2a\xed\xdd\x14\x86\x9a\xaf\x03\x45" "\x88\x07\x6f\x6a\x60\x45\x69\xe7\x45\xf4\x40\x0f\xa8\xca\x7d\xfb\x9b\xe8" "\xbf\xb8\x58\x74\x28\x3a\x5d\x15\x22\xec\x70\x55\x9a\xbe\x46\x81\xc9\x11" "\x12\xe3\x56\x18\x41\xb2\xfa\xd0\x54\x08\x65\x94\x4b\x5d\xf3\x85\x12\x1b" "\x4c\x8d\x99\xcb\x4d\x5f\x96\x34\xac\xe1\x70\x0c\x90\xcf\xc9\x8f\x40\x86" "\x71\x4f\x5f\x3f\xd8\x45\x0f\x40\x67\xe3\x27\x15\xae\xe5\x94\x3c\x57\x1f" "\xcd\xca\x2c\xb6\x11\x5d\xcc\x37\x3e\x3f\x5e\x96\xb0\x8e\x62\x6a\x1a\x77" "\x6f\xfd\x5e\xfb\xf8\x98\xcf\xaa\xc7\x40\x5f\x75\xa4\x0f\xeb\x8d\xdf\x06" "\xcd\xdf\x12\x58\xa0\x9f\x3e\x58\xb4\x24\xd4\x09\x76\x79\x66\x29\x0c\x5c" "\x15\xd1\x50\xe0\xf7\xd1\x20\xf0\x07\x8c\xb9\x73\x37\x87\x4f\x16\x83\x8c" "\xe3\xca\xd9\x21\xba\xd2\x57\x3e\xce\xf3\xd8\x53\xee\x5d\x7e\x89\xc3\xfe" "\x51\x7a\x0d\x11\x39\xad\x3f\x14\x24\xc6\xe5\xe8\x80\xcc\x8b\x33\xeb\x47" "\x62\xb7\xbd\x1f\xe5\xfd\x4e\x2d\x4c\x32\x49\xbb\x70\xb5\xfe\x2e\x74\xe3" "\x75\x1e\x1b\x0d\x78\xdf\xbc\x78\xfb\xab\x4a\x35\xd7\xcd\x97\xf8\xbe\x57" "\xee\xc3\xa6\xb3\xb5\xc6\x3a\x57\x47\xf8\x2b\xd3\xe7\xfb\xa9\x9b\xbf\x9a" "\xd1\xfa\xee\x6f\x4b\x59\xe1\x40\x49\xbb\xc7\xa7\x8c\x28\x5c\xc8\xbe\x8c" "\xc3\xfa\xc3\x45\x1a\xdd\x46\x0b\xda\xda\x49\xd6\x5d\x22\x53\xad\xb3\x50" "\x0a\xd3\xd1\x63\xf9\xae\x0e\x24\xd4\x13\xad\x34\x8b\xc1\xa2\xed\x94\x0e" "\x6d\x1c\x28\xfa\x16\xb9\xad\x05\xc2\x17\x5b\x33\x74\xd7\x65\x93\x91\x48" "\x45\x1b\x8d\xaf\xfb\x3f\x4e\x64\x63\x97\xbc\x04\xb0\xf0\x4a\x80\x8b\x6f" "\x96\xdc\xab\x1d\xcc\xbd\x5b\x55\xd4\x75\x82\x79\xb6\x78\x99\xde\xa1\x0b" "\xbb\x61\xc5\x8f\x6a\xad\x2a\xef\xe7\x8f\x9e\x5d\x2b\x91\x6c\xa6\xd7\x17" "\xd7\x8e\x97\x8c\x25\xad\x27\xb9\x12\xe7\xbd\xde\xde\x9c\x2b\xf3\xcd\x46" "\x4f\xf1\x02\xd7\x83\x32\xc1\x46\x8f\xc2\xf2\xf5\xcd\x20\xba\xdd\xb7\x17" "\x36\xc3\x0a\x4a\x30\x2b\xb5\x41\x25\x87\xe9\x5f\x16\x5b\xc1\x2c\x05\xce" "\xbf\x51\x28\xef\x67\x06\x4f\xe9\xb9\xf1\x4a\xed\x30\x70\x8a\x4e\x5a\xfe" "\x8b\x0c\xf6\xc9\x04\xdb\xed\xcd\x2d\x7c\x46\x7c\xef\x65\x44\xdd\xd0\x20" "\xde\x4c\xc5\x0f\x64\x6d\x0b\xa0\x86\x20\x30\xfe\xbe\xe6\xaf\x93\xb2\x63" "\xff\x98\x37\x08\xb1\xc7\x25\xa1\x31\x03", 4096); *(uint16_t*)0x400000001284 = 0x1000; syscall(__NR_write, /*fd=*/r[0], /*data=*/0x400000000280ul, /*len=*/0x1006ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x3ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x400000000000ul, /*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=*/0x400001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }