// https://syzkaller.appspot.com/bug?id=a49b1a34f261e0bc1bf1121af27d2b69e3c557b9 // 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_dup #define __NR_dup 23 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_write #define __NR_write 64 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } static long syz_open_dev(volatile long a0, volatile long a1, volatile long a2) { if (a0 == 0xc || a0 == 0xb) { char buf[128]; sprintf(buf, "/dev/%s/%d:%d", a0 == 0xc ? "char" : "block", (uint8_t)a1, (uint8_t)a2); return open(buf, O_RDWR, 0); } else { char buf[1024]; char* hash; strncpy(buf, (char*)a0, sizeof(buf) - 1); buf[sizeof(buf) - 1] = 0; while ((hash = strchr(buf, '#'))) { *hash = '0' + (char)(a1 % 10); a1 /= 10; } return open(buf, a2, 0); } } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } 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"); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { 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; } } } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } NONFAILING(memcpy((void*)0x20000140, "reiserfs\000", 9)); NONFAILING(memcpy((void*)0x20001140, "./file6\000", 8)); NONFAILING(*(uint8_t*)0x20000280 = 0); NONFAILING(memcpy( (void*)0x200022c0, "\x78\x9c\xec\xd8\x31\x8b\x13\x41\x18\x06\xe0\x77\x76\x0f\xe4\xaa\xc8\x5c" "\xbf\x1e\x68\x61\x21\xc7\x1d\xf1\x0f\x5c\xa1\x90\xc6\xc2\xda\x2e\x58\xd9" "\x99\x4a\xc9\xcf\xf1\xe7\xc8\x55\xf6\x47\x7a\x53\x04\xec\x95\x4d\x0c\x09" "\x12\x10\xc9\x62\xe0\x78\x1e\x58\x76\xe7\x65\x66\xbe\x9d\x72\xbe\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x40\xef\x2c\xf9\x5e\x92\x8b\x26\xa9\xdb\xac" "\x49\x52\x92\xae\xbb\x9b\x2c\x92\x74\xdb\xfc\xf1\xd7\xb6\x49\xc9\xdb\xf7" "\x93\xd9\xab\x8f\xe3\xd7\xb3\xcd\xb4\xf4\x59\x93\xd2\xaf\x5a\x8f\xeb\xcd" "\xd3\x5a\xc7\x75\x5c\x6f\xea\xcb\x8b\xdb\x67\x75\xf6\xe9\xf3\x87\x76\xaf" "\x64\x49\x97\xfb\xd5\x7c\x7a\xfe\x66\x39\xe8\x51\xfa\xda\xed\xa0\x3b\x02" "\x00\x00\xc0\xc3\xf0\xf3\x68\xa3\x13\xd7\x07\x00\x00\x00\xfe\x66\xb0\x46" "\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x00" "\xea\xf6\xa3\x49\x52\x92\xae\xbb\x9b\x2c\x92\x74\xa7\xfd\x2d\x00\x00\x00" "\xe0\x48\x25\x4d\xde\x8d\x0e\xe5\x9b\x36\xc0\xce\x8b\x7c\x1b\x95\x94\x47" "\xbb\xe4\x47\xe9\xe7\x5c\xe7\xcb\x81\xf5\x00\x00\x00\xc0\xbf\x29\x7b\xf7" "\xf1\xe7\x39\xcf\x93\xbd\xfc\x32\x67\xb9\xba\xda\x8c\x7f\xbf\xb2\xbc\x4d" "\xda\x24\xd7\x7f\xec\x73\xbf\x9a\x4f\xd7\xcf\xe5\x7c\x5a\xfe\xe7\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x5f\xec\xc0\xb1\x00" "\x00\x00\x00\x80\x30\x7f\xeb\x34\x3a\x36\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x60\xaa\x00\x00\x00\xff\xff\x53\x18\xd2\x08", 4335)); NONFAILING(syz_mount_image(/*fs=*/0x20000140, /*dir=*/0x20001140, /*flags=MS_SYNCHRONOUS|MS_NOEXEC|MS_DIRSYNC*/ 0x98, /*opts=*/0x20000280, /*chdir=*/1, /*size=*/0x10ef, /*img=*/0x200022c0)); NONFAILING(memcpy((void*)0x20000080, "/dev/loop#\000", 11)); res = -1; NONFAILING(res = syz_open_dev(/*dev=*/0x20000080, /*id=*/0x47ffff6, /*flags=O_NOCTTY|O_WRONLY*/ 0x101)); if (res != -1) r[0] = res; res = syscall(__NR_dup, /*oldfd=*/r[0]); if (res != -1) r[1] = res; NONFAILING(*(uint32_t*)0x20001c00 = 8); NONFAILING(memcpy( (void*)0x20001c04, "\xb0\x47\x6b\x76\xba\x5d\x04\x4f\x65\x27\x15\x19\x72\x7e\x4f\xf1\xff\x0d" "\x12\xc0\xe6\xbd\xf3\xea\x1f\x52\xe2\x4f\x60\xca\x69\x84\x57\xb3\x28\x32" "\xb8\x3d\x7e\x96\x69\x4c\x1f\xeb\x58\x09\xbd\x67\x00\x2f\x71\xe0\xb9\x7c" "\x0d\x52\x70\xc0\x4f\xfa\x64\xf6\x3b\x2e\x18\xee\x4b\x7b\x57\x2f\xe2\xf4" "\xd0\x3c\xad\x38\xbc\xd1\x06\xff\x12\xf5\x3b\x44\x3a\xc6\xfc\x81\xda\x51" "\x8f\x54\xb9\x00\x4a\x44\x85\x95\x29\xc0\x7a\x2b\x1b\x8f\xed\xdc\x01\x80" "\xa0\xf3\x7b\x13\xba\xbb\xa1\xdd\x08\x13\xb7\xea\x56\xda\xc4\xb7\xff\xe9" "\xa2\xef\x54\x22\x14\x39\xec\xc5\x52\x23\xef\x2d\x40\xf4\xba\x81\x08\xc1" "\x03\x87\xdd\xff\xba\xed\x25\xd4\x1e\x76\x92\xbf\x26\xdd\xfa\x74\x7a\x66" "\x6c\xaf\xf4\x98\x43\xe3\x8c\x86\xca\xc7\x32\x3f\x78\x4a\x17\xdf\x6b\xea" "\xa4\x9c\x3f\x4a\x98\xfb\x40\x13\xf4\xe5\x73\xe2\xef\x77\xb0\x96\x5d\x4b" "\xfb\xdf\x7d\x5e\xad\xa6\x94\x06\xca\x93\xf4\x22\x49\x5e\x00\xad\xdf\xca" "\x15\x18\x08\x5a\x40\xf1\x02\x84\xff\x59\x38\x8e\xcf\x47\x6a\x12\xef\x1a" "\x54\x01\x63\x92\x20\x98\xd6\x00\x51\x9a\xe8\xcf\x3e\xf5\x44\x34\x4e\x9d" "\x96\x8f\x34\x1a\xf6\x18\x50\x3b\x45\x5f\x39\x76\xb7\x69\x75\x27\x0e\x94" "\xd7\x14\x30\x23\x82\xc6\x3d\xe5\xb7\xc1\xfa\xd1\xfa\x37\x3b\x36\x99\x16" "\xcb\x3b\x4d\x58\x3a\x9e\xbb\xae\xb2\x62\x88\x4d\x25\xa0\xe1\xd9\xfb\x14" "\x1d\xe6\x0d\xf7\xe6\x4c\xb3\x8b\x6f\x71\x67\x99\x1f\x8f\xba\x06\xbf\xfe" "\x2d\x49\x13\x3b\xbb\x46\x2c\xd8\xa9\x49\x31\x77\xee\xe5\xf0\x38\x75\xb1" "\x5c\x7a\x92\xc3\xcd\x6a\x3f\xdf\xc6\x4f\x23\x6e\x14\xfa\x05\xa0\xe8\xd3" "\xc4\x5f\x13\xee\xcd\x22\xe1\x35\x28\xc7\x41\x86\xdc\x50\xe0\xe2\xaf\x44" "\x17\x7e\x26\xbd\xed\x11\x61\xe5\x53\x33\x75\x50\x8d\xad\xb8\x3d\xb5\x12" "\x6c\xc8\x10\xf4\xe3\x0d\x4e\x24\xec\x12\xc3\xb9\x9e\x52\x20\xaa\xcf\x42" "\xc5\x8f\x29\x60\xbd\x43\xc3\x37\xdb\xd3\x18\xae\xeb\x5c\x9a\x6c\xd5\xff" "\xd3\xbf\x14\x97\xbb\x48\xab\x7b\xcb\x32\xc9\xc3\x3c\x9f\x5b\x9b\xc4\x64" "\x5b\x96\xf2\x3f\x9e\x0d\x82\x6b\x78\x00\x30\x44\x4f\xfb\x92\x5f\x55\xdf" "\x58\x7e\xf5\xca\x5e\xa7\x4c\xcd\x66\xaf\xc7\x98\x1d\xa4\x96\xd6\xf0\x37" "\xef\xbb\x0b\x08\xf3\xf5\x07\x8c\x60\xff\xb4\xdb\x18\xd1\xb5\x99\x96\xbd" "\x9b\x15\x13\x44\x27\x85\xbf\x4e\xce\x85\x87\xb3\x9d\x81\x76\xdc\x9c\x73" "\x5d\x5e\xa2\x51\x33\xb2\x05\x3b\xba\x22\x7b\x81\xfa\xab\x72\x20\x32\x6f" "\x88\x14\xa9\xdf\x4e\xba\x4e\xcc\x6a\xcd\xd8\x2f\x70\xb6\x53\xb5\x6a\x18" "\xcc\x9d\xfa\x4d\xeb\x0a\x11\x2c\x79\x7a\xb8\x9a\x51\xa1\x03\xc3\xa9\x08" "\x5d\x82\x85\x23\x37\x0c\x4d\x79\xd9\x48\x4f\x4d\xc9\x10\x73\x5a\x2c\x9b" "\x5b\x85\x19\x7c\xd9\xc0\x73\xdf\x7a\x54\xb4\x0d\xf8\xe1\xbf\x59\x5b\xab" "\x95\x79\x00\xc2\xa1\xa7\xdc\x40\xe8\x8e\xd0\xc5\x5c\x36\x2f\xfb\xb7\xf8" "\x8a\x07\x25\xa6\xae\x73\xb9\x36\xa6\x39\xe9\x51\xfa\xf9\xc4\x5a\xe7\x4a" "\x2e\xce\x2f\x6f\x88\xe4\x25\xee\x41\xd2\xc6\x0c\xb0\x83\xa2\xfd\x6d\x07" "\x38\x19\x08\xa7\xf6\x29\xe3\x2f\x89\xa5\x53\xcf\x07\x94\xf5\x4b\x8b\xdc" "\x7b\xd5\x41\xd8\x84\x64\xa4\xf8\x0a\xc0\xb8\xb6\x25\xa8\x03\xa5\x5d\xe4" "\xb0\x5a\x95\xfc\x7f\x8f\xc3\xd6\xd7\x98\x58\xcc\xb2\x69\xb7\xb8\xb2\x16" "\x57\x65\x41\x64\xa9\xaa\x29\xf4\xe8\x46\x23\x77\xe9\xd2\x34\xa4\x1e\xa6" "\x98\x41\xa4\xaa\xa1\xe5\xf8\x9f\x9b\x07\x4f\x6f\x71\xcb\x1f\xfa\xa4\x50" "\xc3\x16\x0b\x0e\x31\x9e\xc8\x1a\xd3\x01\x01\xdb\x66\x21\x8b\x0c\x69\xf9" "\x7c\x23\x44\x65\xdc\x45\x84\x9f\xcf\xd6\x2d\x39\x6f\x2b\x50\xdd\xcc\x0e" "\xd7\xdd\x86\x51\x43\x15\x34\x23\x2a\xb6\xd1\x18\x6d\x77\x60\x77\x0a\x1f" "\xc6\xc7\x75\x53\xa7\x9d\x02\x97\x19\x4f\x79\x49\x97\xee\x47\x78\x10\x94" "\xa7\x6d\x9d\xcc\xf6\x32\xdc\xbb\x52\x7b\x3e\x68\x95\x0d\x9b\xb5\x34\x24" "\x5c\x7f\x08\xae\x1d\x6e\xf2\x75\x02\x92\xae\x28\xe5\xe6\xdc\xfe\x2a\x69" "\x73\x7d\xd7\xa1\xe4\x53\xf3\x90\x2a\xe9\x07\x89\xe9\x8c\x21\x29\x05\x42" "\x20\x99\x90\x4d\x3b\xfb\x94\x9b\xde\x18\x76\x82\xa5\x9c\x01\xaa\x8e\x6a" "\x99\x72\xa6\x3d\x6a\xae\xf4\xd4\x13\x9b\x10\xa2\x4e\x06\x37\x07\xf1\xab" "\xa7\x9b\xd5\x9e\x3f\x97\x09\xa8\x73\xdf\xf4\x01\xd1\xf3\x56\xc4\xbe\x5e" "\x44\x9a\xe0\xe2\x63\x3a\x1f\xe5\x0e\xd3\x67\xfe\x56\xb0\x49\x99\x57\xc3" "\xb6\xca\xbb\x42\x25\x65\x47\x99\x5e\xa9\x98\xf3\x93\x7d\x15\x38\x97\xd1" "\xc8\x3f\x1a\xd9\x22\xd6\x83\x5b\xdf\xa3\xb9\x86\xdc\x6f\x4b\xd9\x27\xa4" "\xca\x13\xfb\xaa\x99\xb7\xb4\x37\x58\xe2\x32\x9d\x58\x8f\x40\xfa\xc7\x18" "\xb1\x6c\xca\x85\x54\x68\x64\x3f\x38\x18\x49\x6b\x49\x15\xfe\x9a\x2b\xdd" "\x3e\x68\x88\x9f\xea\x24\xbc\x1d\xfa\x62\x87\xa8\x01\xd4\x9a\x7b\xb8\x46" "\x54\x14\x74\x48\x55\x0d\x29\x19\xe4\xdf\x3a\x94\x3a\x88\xcf\x61\x6b\xef" "\xea\x4e\x7a\x4f\xdd\xb7\x96\x93\x11\xc6\x83\x7f\x95\x29\x96\x62\x41\xbe" "\x1e\x57\xed\x2d\x77\x3d\xeb\xc5\x42\x98\x6d\x09\x86\x69\x05\xa3\xf6\x3b" "\x6e\x18\x20\x08\x6d\x52\xa7\x0f\x03\x91\x54\xe8\x39\xda\x7e\xa8\x52\xc3" "\x3b\xf3\x72\x2a\x04\x8f\x61\xbb\xf0\x68\x51\x9e\x05\x0b\x87\x88\x37\x0f" "\xb1\x30\xa4\x2e\x9f\x53\x22\xdf\xff\x65\xb1\x5d\x58\x8f\x9e\x92\x6b\x70" "\xe4\x53\x0e\x8b\x66\x69\x7c\xab\xb1\xe8\x51\x48\x31\x43\x1f\xa0\xea\xec" "\xb4\x9f\x96\x13\xed\x5f\xd7\xbc\x50\xf8\x97\xbd\xa3\x6d\x24\xd4\x29\x6e" "\x14\x3e\x24\x80\xe3\x25\xec\x09\xa7\x7c\x03\xa0\x7b\x4f\x86\xeb\x70\x30" "\x85\x31\x3e\xbe\xee\x94\xef\x5b\x1c\xde\x3f\x6a\x7e\xfd\x78\x57\x72\xeb" "\x40\x34\x03\x9f\x59\x8c\x07\x81\x9b\x76\x94\x16\xa2\x23\xfa\xb8\x24\xc4" "\xac\x50\x08\x6e\x78\x04\x2a\x1c\xcf\x47\xb6\xc7\xed\xe8\x54\x0c\xde\xd4" "\xbd\x4c\x92\x0c\xe6\xc2\xb7\x49\x3a\x56\x34\xc5\xe9\x6b\xb7\x61\x37\x36" "\x23\xab\x47\x3b\x12\x1d\x55\x5b\xfd\x5a\x8b\xc3\xf5\xc5\x41\x8b\xed\x83" "\xff\xd0\xd6\x49\x28\x40\x55\x0f\xcc\xc0\xc3\x57\x46\x37\x03\x96\xd0\x19" "\x0b\x7b\x1d\x2c\xad\xcc\x15\x08\x77\xe0\xd1\x97\xf6\x92\xf9\x7c\xec\x79" "\x0c\x95\xe3\xd3\x95\x9d\xc7\xc6\x8a\xca\x37\x30\x6c\x1b\xc1\x3a\xd3\x38" "\x48\x39\x5d\xba\x5e\x3c\x9c\xe8\x09\x0b\xc0\xe7\xe8\x31\x20\x91\x77\x36" "\x41\xbe\x56\x41\x19\x21\xe3\xd4\x73\x32\x1c\x6d\x8b\xd1\x0b\x7d\x3f\x5a" "\xed\xd6\x62\x0b\xca\xa0\x64\x74\xbb\xb2\x98\xbc\x77\x29\x7b\x8b\x5d\xcb" "\x9e\x6b\x33\xdb\xe6\x76\x46\x0c\xca\x82\x56\x09\x85\x77\x24\xce\xe2\x45" "\x30\x6d\x07\xfd\xa2\x87\xd5\xfe\x57\xc4\x24\xc2\x7c\xf9\xb6\xcf\x0f\x16" "\xd2\xc6\xa8\x07\x1b\xd5\x7c\x82\x6d\x73\x71\x84\x1c\xf4\x3d\xab\x1b\x42" "\x42\x1c\xe4\x16\xd0\xd3\xa9\xc8\x0b\xc8\x07\xd2\xe6\x76\x1e\x53\xf0\x6b" "\x3e\x63\xc0\xaf\x1b\x45\x48\xd8\x20\x11\x84\x21\x20\x5f\x04\x0f\x4a\xb3" "\x53\x07\x87\x1e\x4c\x7a\x21\xff\x28\x08\x2c\x29\xe0\x2e\x89\x48\x60\x64" "\x66\x18\x98\xc0\xeb\x18\x11\xc7\x0a\x61\x24\xc1\xf2\x5d\x62\xc3\x87\x94" "\xa3\xe8\x7c\x31\x2c\x87\x0d\xb7\xb6\x0d\x0d\xf8\xb5\x78\x60\xc9\x4d\x1a" "\x9c\x56\x1b\x32\x7f\xae\x3a\x68\xce\x9f\xf4\x55\x1e\x41\x8e\xb0\x07\x66" "\xf0\x34\x1c\x5e\x79\x6e\x3c\xbb\xbe\x6b\x48\x64\x92\x8b\x96\x61\x10\x25" "\x6d\x54\x75\xeb\x1f\xd7\xb2\x89\x3b\x60\xe1\x9e\x85\x9b\xaa\xf2\x3c\x92" "\x33\xa1\xb0\x64\x77\x16\x71\xee\x2d\x07\xc1\x51\xe2\xe9\x9c\x37\xa1\x16" "\xa3\x38\x78\x80\x52\xa7\x26\xa8\x51\x9b\x83\x35\xe9\xff\x4f\x71\xd0\x0a" "\xb6\x34\x54\x3c\x20\xdd\xea\x1b\xf5\x7d\x4f\x2b\x79\x71\x82\xff\x19\x61" "\x8b\x69\x74\xd2\xb6\x9d\x9f\x05\x29\x34\xd5\x27\xa1\x83\x0b\xf2\x78\x58" "\x42\xf3\x5e\xaf\x32\xb6\x5b\x7c\x9f\xdd\x6f\x0c\x41\x75\x60\x72\xa5\x9c" "\x0c\xce\x0b\x73\x05\x74\x07\x29\xf1\xda\xa1\x4e\x00\x92\xda\x9d\x02\x23" "\x21\xb7\x26\xd6\x58\xfc\xef\x55\xaf\xfa\x2b\xbf\x36\xad\x78\x8f\x1f\x42" "\x3b\x7d\xfd\x32\x84\x35\xb4\xd5\xdf\x31\x51\x43\xd8\xb8\x02\x8b\xa4\xbe" "\xa6\x13\x4a\x3d\xc9\x72\x0c\x73\xd5\xe6\x6b\x8b\x81\x68\x75\x2e\xea\x6b" "\x78\xc7\x5f\x04\xef\xd9\x67\x7d\xbe\x41\x9f\x13\xf5\xe1\xc9\x76\x42\x76" "\xa8\x38\x21\xb7\x10\x30\x7d\x8f\x85\x35\x9b\x34\xd0\x38\xff\x17\xde\x45" "\xe8\x73\x9d\x4b\x64\x7f\xd1\xa8\xd7\x94\xa3\x27\x3d\x92\x2a\xf3\x37\x4f" "\x5d\x3c\x75\xb8\x34\x5b\x9d\xfd\xab\xb2\xc0\x41\x8a\x35\x89\x21\xe0\xe7" "\x3d\x0f\xe8\x8c\xaa\xb1\x74\x1b\x91\x36\x73\xe2\x2f\xf4\xb5\x9a\xfa\x0f" "\x65\x3a\x42\x3d\x9b\x2b\xb2\x0c\xbf\x07\x95\x1a\x34\x9e\xea\x18\xa8\x91" "\xb4\xf4\xdc\x6d\xf8\xe4\x2a\x61\x81\x28\x4f\x64\x3d\xe5\xfd\x29\x24\xae" "\x54\xf6\x72\xa1\x92\x03\x43\x47\x6c\x67\x33\x3e\x1e\x82\x05\xbf\x48\x77" "\xb1\x25\x1a\x83\xf4\x17\x93\x67\x14\xed\xb1\xc6\x97\x5b\xa7\x96\x9d\x2f" "\xcc\x2e\x69\x02\x4a\x46\x69\xac\x2f\x99\x81\x16\xad\xe1\xbd\x84\x56\x8b" "\x8f\x3f\x1f\xcc\xbe\x95\xdf\x9e\xd2\x1d\xb7\x73\x15\xb7\x46\x9f\x30\xbf" "\xae\x41\x84\x15\xd9\xcb\x5a\xee\xa6\x27\xba\x68\x11\xe3\x0d\x56\xd4\xf4" "\xbf\xe5\xf7\x94\xea\x42\x43\xe3\xcd\xfa\xd3\xef\x55\x19\x96\x99\xb8\x43" "\x30\x83\xb6\xf7\x2f\x95\xef\xfc\x5f\x2f\x61\x3c\xfc\xef\xaf\x0b\x94\xe8" "\x01\xeb\xcb\x70\x95\xa1\x47\x4e\xe9\x31\x42\xb8\x2c\x9b\xf9\x88\x66\x17" "\xb6\xbf\x69\xd0\x8c\x83\xc7\x6c\xd2\x1d\x4c\xce\x58\x72\xd9\x9d\xe8\xe5" "\x4b\xbf\xf9\x15\xab\x92\x3b\x2d\x24\xbb\x3a\xa1\x78\xdd\x50\xb4\x4f\xd0" "\xeb\x88\x0e\xf3\x3c\xa5\x1d\x4b\xf5\xf0\xfb\xc8\xff\xe1\x8a\xfe\x42\x45" "\x39\x7f\x27\x7e\x4e\xfa\xd9\x55\xba\xa1\x0c\xf5\x66\x13\x48\x12\x53\xd6" "\x9c\x02\xe7\x66\x17\x14\xb6\x8b\xe0\xfd\x64\xf2\x9b\xda\xfb\xc8\xb4\xa0" "\xb3\x0b\xd6\x70\x9c\x67\xfe\x8e\x89\x15\xd0\x47\x9b\x39\x02\xb1\xd0\x16" "\x9f\xb5\x48\x6b\x02\xe9\x66\xad\x5d\x8a\x2b\xcf\x42\xec\xba\x59\x17\x7c" "\xd8\x5e\x17\x23\x96\x67\xf6\xb0\x45\xd1\xf8\x73\xce\x24\x73\x3a\xe1\x7e" "\x2d\x84\x32\x70\x90\x62\xe7\x86\xa3\x2a\xc9\x25\x12\x1f\x1b\x0d\x46\xc6" "\x6d\x4f\xb9\x08\x8f\x4a\xa0\xcf\xe2\x14\x9f\x6c\x2c\xb5\xb7\x5d\x45\x34" "\x9b\xc8\x8f\xbd\x47\xe0\x1e\xa0\x7e\x7c\xd5\x73\x33\x5a\xab\x8d\x38\x98" "\x46\x56\x68\x00\xdd\x08\x4b\xc3\xca\xa9\x5f\x76\x32\x71\x9c\x65\x1f\x2d" "\x33\xbe\x0f\xb5\x63\x47\xc0\x63\xb3\xc6\xe3\xe7\x5c\x5e\x58\xca\xeb\x4c" "\x37\x57\x48\x59\xb7\x8c\x1e\xd0\x18\xfb\xee\xd7\x88\xa4\x30\x5a\x9e\xe1" "\xc1\xef\x65\xa0\xc8\x3a\x7c\xd7\x17\xa8\xc0\x8e\xcd\x4e\x86\x37\x0f\xff" "\xfd\x6d\x40\xa8\x9a\x0b\x1e\x8c\x15\xa1\x0a\xd5\x40\x6e\x86\x7e\x49\x31" "\x9a\xd8\x3b\xfb\xb9\x25\xd5\xe2\x40\xb4\xbd\x44\xfd\x75\x1e\x75\x10\xd5" "\xea\x03\xa6\xca\xb9\x5f\x37\x15\x5d\x1f\xd6\x9a\xae\xa1\xdb\x4a\x1f\x53" "\x71\x4e\xb9\x0e\x66\x92\x09\xcf\x63\x4f\x84\xa5\x0c\x85\xbd\xc5\x18\x38" "\xeb\xbb\x54\x5b\x43\x87\x79\x0d\xf6\x7f\x01\x22\x74\x0c\x2a\xbc\x91\x0c" "\xf8\x32\x30\x39\x41\x72\xa5\x6c\x9f\xfd\xa6\x67\x5b\xb8\xbb\x39\x84\x67" "\x30\xa1\xbf\x76\x4a\xeb\x92\x40\x7c\x90\xa1\x94\xda\x88\x0c\xb8\xa4\xef" "\xb5\xb5\x7a\x83\x11\xd8\x64\x20\x9c\x7f\xd2\x26\xb9\x35\x82\xb6\xb1\x1e" "\xec\x55\x9a\xbf\xbb\xa6\x53\xc0\x56\x9c\x21\x9d\x3a\x2e\x60\x55\x5c\xb7" "\x39\xf9\xd3\x2d\x56\x4f\x23\xc4\xe9\x8b\xe7\x8a\xa5\x53\x61\x08\x22\xaf" "\x42\x6f\x96\x1d\xf0\xdf\x21\x85\xc6\x1c\xca\xa2\x2b\x2a\x6a\xa6\xfb\x3e" "\x91\x7b\xdf\xb2\xbe\x9c\x3f\xfb\x8a\x50\x82\x13\x21\x11\x9c\x4c\xf4\x91" "\x7d\xb3\x95\x48\xab\xc1\x7b\xfb\xa2\x67\xfa\x50\xf6\xaf\x15\xc5\x60\xa2" "\x10\x55\xf9\x67\xf1\xca\x6f\x65\x6d\xdb\x55\x6f\x9c\x7e\x17\xa7\x71\xee" "\xef\x7e\x80\x94\x0d\x1c\x14\xdd\xf2\xc2\x76\x47\x68\x6f\xd0\x52\x64\x60" "\x03\x6a\xee\xa3\x95\xfb\x10\xab\xef\x2b\xe2\xea\x96\xc9\xbb\x38\x03\x70" "\xc0\x8d\x15\x68\xd3\x0e\xea\x0f\x3e\x6b\x7c\xf8\xf7\xed\xc7\xb3\x6d\x4d" "\x0a\xff\xd2\x49\x33\x07\x07\xb5\x4e\xe6\x20\xf2\x08\xd8\x85\x79\x11\x71" "\xeb\x67\xa2\x5a\x80\xfc\xc6\x92\x2e\x02\x58\xc9\x67\x3b\x65\x76\x56\x49" "\x49\xdf\xa5\xbe\xd9\xa0\x29\x9b\xf9\x52\xaa\xde\x65\x4d\xe1\x6e\x22\xd5" "\x4f\xcd\x39\x1d\xed\x6a\xda\xb9\x4f\xf6\x21\xef\xcd\x91\xef\x69\xac\xf8" "\xdf\xa1\xb2\x26\x92\xba\x3e\x49\xcd\x1d\x3f\xbe\xd6\xdb\x14\x02\x06\x5a" "\xb3\x7e\x45\x70\x56\x87\x79\x77\xeb\xac\x33\xef\x56\x6f\x28\xa1\x9b\x9a" "\xcb\x67\xa9\xcc\x53\xfe\xb1\x56\x81\x4e\x88\x0b\x3d\xd5\xa9\x11\x9f\xfd" "\xbc\x5a\x45\xc2\x0e\xa3\x75\xf2\x88\x25\x75\xb9\xa2\x87\x40\xee\xbf\x63" "\xf2\x89\x5d\x9f\xfa\xc1\xec\x33\xcb\xdc\xde\xde\x98\xa2\x01\x42\x4d\x00" "\x0d\xf1\xef\xd6\x4d\xd7\x26\x8c\xc1\xb2\x36\x6c\xcf\xb0\x97\x54\x82\x2d" "\xaf\xdb\x18\x21\xde\x5e\x6e\xbe\xe0\x96\x08\xe8\x2e\x67\x9f\xaf\xb7\xa5" "\x10\x01\x72\xf2\x69\x98\xd3\x1d\x7f\x27\xc2\xb3\x10\xf0\x37\x2c\x3b\x5e" "\x88\x8f\x8e\x6e\xfb\x56\x07\x41\x77\xbf\x6a\x2a\x5b\xbd\x9e\xd0\x70\xad" "\x5a\xaf\x23\xce\x14\x4d\x1a\xc8\x6c\xad\x11\x0e\x59\x16\xa8\xa5\x7e\x1e" "\x7f\xc3\xd3\x73\x53\xf8\x4f\x2f\x6d\x43\xd9\x2a\xb8\xb3\x50\x40\x46\x7f" "\x3f\x8b\x1d\x23\xfa\xc0\x21\xbb\xac\x37\x10\xed\xc8\xe2\xe2\x6d\x79\x4d" "\xb3\x8e\x48\x02\x0f\x63\xe9\x4d\x4b\x4d\xca\x3e\x01\x55\x37\xa8\xe3\x00" "\x82\x74\xd5\x5f\x81\xaf\x93\x1a\x0f\xaf\x1a\x43\x84\x44\xb6\xa0\x48\x9b" "\x93\xf7\xb8\x8f\x81\xf7\x61\xea\xe0\xf8\x2e\x60\xcb\x0c\xf2\x74\x5c\xa8" "\xc9\xe3\x0d\x3c\xc1\x89\xc1\x40\x5b\x19\x94\xed\x71\xb0\x0d\x90\xea\x7a" "\x94\x10\x29\x16\xcd\xc9\x15\x62\x0c\x36\x3d\x04\xe5\x1e\xab\xaa\xca\x6c" "\x28\x14\xa7\xc1\xe7\xaa\xee\xc8\x0b\xdc\x13\x13\x5b\x81\x3e\x6d\x0e\xea" "\x83\x44\x6a\x5c\x57\xec\x29\x69\x5c\x30\x2c\x0d\x8d\xa6\x5b\x61\xfe\x8a" "\xda\x51\xa3\x6e\x1a\xff\x34\xd4\x49\xf9\xeb\x70\xcb\x94\x93\x12\x26\x12" "\x1a\xb1\x21\xa9\x71\xc2\xfc\x07\x0c\xa8\x42\x72\xd1\x22\xc1\x69\x6f\x52" "\xfb\xd5\xed\x06\x78\x3a\xbe\x18\x8d\xcf\x13\x3c\x4d\x41\xe1\x02\x95\xf6" "\xff\xda\x69\xfa\x8c\x5a\x7c\x0f\xec\x34\x25\xa2\xd6\x05\x23\xa6\x0d\x28" "\x0b\x5c\xe3\x4e\xac\x59\x11\x26\x81\x72\xe7\x72\xfe\xfb\xa6\x3a\x6f\x5c" "\x6d\xaf\xa9\xe5\x00\xa5\xe1\x35\x5f\xb6\x14\x61\x3f\x8f\xc1\xef\x5e\x54" "\x66\xfa\x19\x21\x2b\xcd\xc3\x49\xa8\x65\xf4\xce\xe6\xea\x80\xb1\x1a\x41" "\x0b\xb6\xe4\xad\x67\x73\x93\x97\x3e\x38\x62\x1d\x25\xff\x6c\x48\x76\xef" "\x8a\x8d\x2b\xa6\x51\xbe\x4a\x78\xd2\xba\x9f\xaf\xad\xce\xa8\xef\xf9\xcc" "\xa3\xf4\xab\x71\xa0\xb8\x49\x17\x79\x4e\x52\x12\x20\xda\xd0\x99\xac\x8a" "\xaf\x32\xab\xd1\x62\x34\x88\x79\xe4\x29\x9e\x4d\x46\x39\x5f\x9d\x55\x26" "\x7b\x63\x5e\x18\xca\x2e\x2f\xc9\x61\x46\xb9\x6c\x8a\x80\x55\x13\x0b\x8d" "\x8c\xb1\x0c\xc3\x13\x82\xdf\x34\x05\x7b\xd8\x63\x7f\x86\xe4\x8a\xdc\x85" "\x4a\xf4\x08\x22\x67\x52\xa0\x4d\xf8\xd0\x36\x2d\xb2\x63\xe0\x95\x9f\x2b" "\xd7\xe8\xa4\xd3\x3a\x8c\x4b\x25\x7e\x19\xd3\x08\x28\x0b\xaf\x40\xcc\xed" "\x1b\x3c\xd3\xa8\x6e\xe2\x2d\xf0\xda\x49\xd7\x50\x53\x9e\xee\x11\x04\xe9" "\x9a\x9f\x8a\x06\x5e\x54\x99\xc7\x31\x25\xa8\xa8\x43\x0e\xda\x7a\xee\x15" "\x68\x21\xa9\x7c\x23\x76\x11\xb5\x0f\x68\x2a\x2c\xcc\xd0\x96\x93\x04\xf0" "\xa5\x0a\xe9\x88\x00\xdf\xb3\x2e\xe1\xbc\xfe\xab\x98\x18\x2c\x34\xa5\x1e" "\x67\xfa\x5b\xd7\x38\xc2\x2c\x44\xfc\x12\x69\xce\x73\xf4\x64\xed\xd2\xf3" "\x12\x96\xe9\x2e\x62\xdf\x51\xcf\x55\x79\x8a\xe2\xe3\xc3\x3c\x57\xb0\x9f" "\x4e\xcd\x13\x46\x91\x22\x09\x5a\x35\x63\xf9\x5f\x0a\x04\xcf\x58\xdc\xea" "\x4a\xed\x5e\x8b\xdd\xa7\x61\x78\x63\xcb\xc3\x7a\x97\xeb\xad\xb4\x6d\x67" "\x9f\x7e\x30\x01\x4d\x96\xd0\xac\x7c\xe9\x48\x43\x68\xfa\x5f\xd1\x9c\xbc" "\x3d\x13\x94\x10\xa2\xbd\x7f\xfa\xce\xf1\xbd\xf7\x6d\xd1\xd5\xf3\x4d\x23" "\x92\xfc\xb9\x1c\x75\x85\xfc\x1a\xe7\xd8\xba\x2a\xa8\xde\xd9\x64\x5d\x5a" "\x5e\x76\xe2\x27\x9b\x6e\x06\x92\x10\x11\x37\xda\x94\x6d\xfb\xd3\x83\x64" "\x76\xf5\xda\xd7\xfe\xd7\x01\x15\xd7\x16\xdc\xe8\x7b\x5a\xd7\x55\xe5\x65" "\x3a\x70\x9f\x5a\xa4\x22\x65\xec\x96\x57\xed\x40\x6c\xc9\x25\x6a\xf3\x62" "\x8c\x01\x16\xb8\xe1\xd2\x33\x06\x98\x3e\x9a\xdb\xc1\x9d\xec\x35\x48\x70" "\xc9\x8e\x2e\x76\x56\x68\x95\xdf\x93\x3a\x80\xc4\xc3\x6b\x61\x7d\xb4\xbb" "\xda\x1a\x4c\xa7\xd6\xc8\x0a\x43\x73\x44\x71\xfc\x92\xd0\xbd\xea\xcf\xc1" "\x25\xdd\xdd\x73\xfe\xbd\x8f\x7e\xf8\x4f\x22\x1d\x52\xae\x71\x37\x2c\xee" "\x80\x2d\x59\x01\x3a\x15\x95\x8e\x85\x0f\x8f\xdf\x46\xd8\xfd\x3b\x87\x46" "\x33\xda\xf3\xb1\xf3\x46\x47\x04\x56\xc0\x57\x22\x25\x84\x80\x95\x9d\xd6" "\xaf\xcf\xfa\x1f\x3f\x2c\xa0\x33\x01\x13\x39\xc5\xcb\x85\xb7\xd1\xc9\xb5" "\x91\x6f\xb8\xdc\x9c\x27\x83\xdf\x64\xeb\x5c\xca\x5a\xf8\x3a\x74\xfe\x5b" "\xb2\x59\xf9\x37\x22\x84\x2e\xb4\xac\x85\x1e\x71\xf3\xcf\xd6\x7a\x39\x59" "\x0e\x7f\x8e\x20\xf0\x18\x74\x4b\x92\x77\xe6\xeb\x46\xb5\xf2\x11\xdf\x5f" "\x76\x7e\xf2\x9d\xc9\xa9\x72\xe1\x4c\x40\xea\x2d\x46\x24\xf1\x87\xf3\x01" "\xc1\x11\x6d\x3a\x61\xad\xeb\x5c\x6f\x7c\xcc\x02\x1a\xc5\xe1\x8d\x8b\x40" "\xd7\xf1\xf1\x9d\xaf\x44\x45\xc0\x6e\x72\xdb\x87\x01\xc2\x67\xc0\x14\x4c" "\x92\xcd\xdd\x49\xaf\x7a\x87\xac\xa5\xaa\x05\xd0\xe3\x80\xdd\x27\xcc\x78" "\x0d\x2f\x7d\xb3\xbe\xf2\x6c\xc4\xfd\x35\x85\x43\xe1\x9d\x73\x17\x9b\x87" "\x9f\x7b\xdc\x70\x2a\xb4\x05\x27\x0c\x93\xa3\xed\x64\x15\x3e\x20\xb5\xb6" "\x63\x77\x3a\x2a\xd4\xe8\xe3\xe1\xe8\xea\xf3\x9e\xc8\x0d\x75\xd0\x2f\x74" "\xff\x94\xf0\xe0\x95\x24\x0a\x56\x4e\xee\xce\x4f\xc9\xbc\xf1\x9b\xf2\x24" "\x3c\x70\x0e\x1d\xae\x14\xa1\xb0\x21\x70\x13\x97\x7b\xfa\x05\xf6\x81\xab" "\xc3\x77\x14\xfe\x46\x2d\x0a\x63\x20\x44\xce\x52\xfd\xaa\x1c\x1a\x80\x6b" "\x1e\xb4\x37\x0e\x23\xca\x02\x47\xe5\x36\x16\x5a\xa9\xf1\xc2\xaf\x8a\xdf" "\xea\x36\x9e\xe1\xf4\xa2\xc7\x82\x3a\x7b\xae\xf0\x28\xa1\xe7\x75\x01\xdb" "\x48\xdb\x6a\xa0\xd7\xe3\x09\x69\xf7\x19\x73\x68\xdb\x02\xd4\x43\x80\x3b" "\x53\xb2\x89\x93\x15\xf7\xe2\xba\x9c\x5a\xe9\x52\xa3\x86\x6b\x4e\xa6\x0f" "\x3d\x66\x9e\x0a\x91\xf7\xef\x64\x0c\xd9\x38\x64\x6b\xf8\x82\x2f\xe4\x55" "\xf0\x30\x2f\xcc\xf8\x7c\x7f\xad\x6d\xaf\x38\xfd\xe0\x38\xfa\x59\x6b\x83" "\xa9\xfd\x5b\xf6\x75\x66\x9a\x6c\xb2\xba\xb4\x4c\x66\x17\xf0\x79\x50\xbf" "\x34\xed\xb9\x3b\xbc\xb4\x17\x46\x30\xf2\x75\xdb\xda\x7a\x06\x31\xc4\xb4" "\x56\xe5\xf8\x0e\xb6\x25\x8c\x18\x74\xe7\x7d\x42\x67\x43\xe4\x78\x91\x7f" "\xe4\x4b\x73\xdc\x20\x3b\xaa\x2c\xc4\x42\xb8\x4b\x58\x18\x40\x9a\xba\xe9" "\x9d\x97\xa2\x87\x54\x96\x9b\xd3\x93\xdf", 4096)); NONFAILING(*(uint16_t*)0x20002c04 = 0x1000); syscall(__NR_write, /*fd=*/r[1], /*data=*/0x20001c00ul, /*len=*/0xfffffe38ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-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=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; install_segv_handler(); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { loop(); } } sleep(1000000); return 0; }