// https://syzkaller.appspot.com/bug?id=458fcf6e1c7be7f9e2ffef57b9f256384ee45b0a // 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 #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 thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } 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"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } 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"); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 2; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } 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; } } } void execute_call(int call) { switch (call) { case 0: // syz_mount_image$ntfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6e 74 66 73 00} (length 0x5) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x50 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYRES8: ANYRES8 (resource) // } // } // } // chdir: int8 = 0x0 (1 bytes) // size: len = 0x117a (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x117a) // } // ] // returns fd_dir memcpy((void*)0x200000000000, "ntfs\000", 5); memcpy((void*)0x20000001ecc0, "./file0\000", 8); *(uint8_t*)0x200000000080 = 0; memcpy( (void*)0x2000000023c0, "\x78\x9c\xec\xdd\x4b\x6c\x1d\xd7\x61\xc6\xf1\x6f\xee\x83\x0f\x49\xb6" "\x69\x99\x4d\xe9\x47\xaa\x91\x7c\xeb\xaa\x89\x23\xd3\x92\x65\xab\xad" "\x1b\x8b\x22\x29\x8b\x36\x45\xd2\x14\x65\xb0\x45\x62\x8b\x12\xaf\x2c" "\xd6\x14\x49\x93\xd7\xa8\x64\x18\xc9\xcd\x2e\x81\xbb\x50\x76\x45\x37" "\xf1\xb2\x05\xba\x30\x90\x2e\x02\x34\x68\x9d\x5d\x80\xc0\x68\x36\x2d" "\x8c\xa2\x0b\x2f\x0a\xa4\x80\x37\x46\x36\x35\x8a\xc0\x2c\xe6\xcc\x99" "\xe1\x3c\xee\x25\x39\x14\x9f\x33\xff\x1f\x20\x9e\xb9\xc3\xb9\xe7\x9c" "\x79\x7c\xf3\xe2\x9d\xab\xcf\x27\xef\x8d\x4d\x5d\xbc\xe2\xba\xae\xab" "\x52\x49\xbe\x2f\x15\xd3\x54\x53\xab\x0f\xf9\xc3\x3d\x76\xdc\x6a\xd9" "\x2f\x1d\x49\xde\xdb\xfe\xf7\xef\x7e\xf0\xf2\x37\x57\xfe\x6d\xf0\xb1" "\xff\xf8\xf7\xff\x7b\xf0\xd8\xbf\xbc\xf3\xfe\x3f\x9e\xf8\xb8\x71\xf8" "\xf5\x7f\x7a\xf0\x9f\x3b\xf5\x49\xcf\x1b\x9f\x7f\x71\xfa\xbf\x3f\xf9" "\xda\x27\x8f\x7e\xfe\xd5\xd4\xad\xb9\x15\x77\x6e\xc5\x5d\x58\x6c\xb8" "\x33\xee\xf5\xc5\xc5\xc6\xcc\xf5\xf9\xba\x3b\x3b\xb7\xf2\xf6\x29\x77" "\x62\xbe\x3e\xb3\x52\x77\xe7\x16\x56\xea\xcb\xb1\x5f\xdf\x9c\x5f\x5c" "\x5a\xba\xeb\xce\x2c\xcc\x3e\x70\x68\x69\xb9\xbe\xb2\xe2\xce\x2c\xdc" "\x75\xdf\xae\xdf\x75\x1b\x8b\xee\x27\xb6\x4f\x0b\xee\xa9\x53\xa7\xdc" "\x07\x0e\x09\x9b\xe3\xec\x75\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xdb\x65\x75\x55\x9d\x5e\xf9\xd2\x5e\x77\x04\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x6c\xd9\xc5\x91\xd1\xe1\x7e\x95\xc3\xd7" "\x4e\x45\x3a\x27\x47\x7f\xeb\x48\xaa\xac\x4d\x17\x0c\x76\xd9\xb2\x47" "\xd2\x35\x33\xd4\x67\x7e\x5e\x0a\x87\xd6\xd7\xb1\xc9\x7e\xf5\x4b\xba" "\x15\xd6\x5f\xd2\x2b\x66\xc8\x51\xd5\x8c\xab\xaa\x39\xd5\xbf\xf0\xc1" "\x57\x9f\x3a\xed\x4a\xcd\xdb\x8a\xe6\xe3\xed\x56\xca\x35\x5d\xd6\x45" "\x4d\xd9\xd7\x4d\xdb\x77\x47\xe7\x63\x0f\xc4\xbf\x62\xcb\xf3\xc1\x88" "\xa7\xed\xef\xfa\xe2\xe5\xc3\xaf\xfa\xdf\x88\xf0\x51\xac\x9e\x72\x6a" "\x7e\xc2\x7a\xec\x82\x0c\xbe\x47\x21\x28\x1f\x76\xfc\x25\xbb\xba\xba" "\xba\xba\xc9\x45\xb4\x0d\xba\x76\xaf\x29\xec\x43\x5d\xe9\xfc\xcb\x31" "\xf9\x9f\x4e\xe4\xbf\x1c\xf9\xae\x0f\xad\x93\xff\x8d\x72\xd9\x32\xff" "\xdd\xad\x7b\xb7\x14\xd6\x5f\xd2\x64\xd6\xfc\x27\x02\x16\xb4\xdb\x15" "\xe6\xff\xb2\xe6\xb4\xac\x65\x3b\xde\xb5\xd3\x26\xf7\x03\xc1\x92\x09" "\xf3\x6b\xeb\x73\x12\xf5\x1f\xaf\xf8\xdf\x88\xb2\xbb\xf9\xbd\x5f\xa5" "\xbd\xee\x00\xf6\x54\x29\x95\xff\xd2\x3a\xf9\x2f\xed\x54\xfe\x5b\x7c" "\x0f\x4d\xff\xfd\xe6\x3f\xec\xbc\x5f\x46\xf3\x3f\xaa\x45\xbd\xa5\x8b" "\x9a\xd3\xbc\xea\x76\x7c\x53\xad\xf3\x1f\x84\x39\xcc\x7f\xa2\xde\xa0" "\x3c\x21\xa7\x5c\x21\xff\x38\x50\xd2\xf9\x2f\xdb\xfc\x7f\x96\xc8\x7f" "\x47\x64\x1f\x20\x9b\xff\x4b\x66\xc8\xcf\x7f\xff\x16\xf3\x1f\x3f\xcf" "\x77\x34\x91\x39\xe7\x71\x41\xfd\x9d\xe5\x9a\x5e\xd7\xa2\xe6\xf5\xae" "\x6e\xab\x6e\xea\x6d\x86\xed\x94\x34\x1b\xb6\x58\x69\x7a\xf3\x11\x5c" "\x0f\xf4\x9a\xdf\x3e\x67\xe7\xb3\x57\x3f\x71\x8e\xca\xf1\x5b\xa9\x1e" "\xb5\xef\x37\xe3\xfc\x09\xaa\xde\x79\x83\x5b\x52\x6c\x9a\xe4\xef\x64" "\xf7\x95\xfd\x61\xfb\x15\x1d\xb5\x43\x2b\xba\xab\xf7\xf4\xb6\x66\x34" "\x6f\xf6\x46\xc1\xf9\x88\xb7\xef\x3b\x19\x4e\x5f\xd5\x91\xc4\xf5\x55" "\xd9\xce\x79\x33\x1c\xdf\x17\x9e\xad\xf4\x6d\x7a\x3f\x44\xfe\x8b\x2d" "\x9d\xff\x8a\xcd\xff\xc7\x2d\xae\xff\x2b\x3b\x94\xff\xfb\x3a\xce\x1f" "\xb1\x15\xd9\x6f\xfd\x8b\x1e\xe7\x07\xd4\x50\x43\xcb\x1a\x52\x5d\x37" "\xed\xf8\xf8\x7e\xa0\xbc\xe9\xfd\xc0\x8f\x94\xde\x0f\x98\x71\x19\xf7" "\x03\xed\xee\x37\x04\x92\xd7\x19\xc1\x7c\x05\xe5\xf1\xb2\x7f\xe3\x61" "\x7b\xce\x33\xc8\x7f\xb1\xa5\xf3\x5f\x35\xf9\x2f\xfb\x9b\x46\xe2\xf8" "\xef\x65\xb2\xd3\xbe\xde\x28\xff\x37\xde\x38\xfb\x4e\xb4\x0c\xc6\x3f" "\x95\xe8\x41\x7f\xec\x3a\xc2\xd1\x90\x73\xdf\xc7\x7f\x93\x1c\xa7\x7c" "\xca\xbc\x9e\x88\xe5\x6d\x6d\x7b\x0f\x66\x2d\xcc\x5b\xaf\x5f\x3c\xdd" "\x13\x2f\x8f\x57\x1f\x32\x6d\xdc\x93\x34\x6d\xde\xe8\xef\x37\xce\xd9" "\x7b\x06\x35\x8d\xe8\x8c\xfa\xcd\x7c\x38\x76\xc1\x54\xec\xf2\x39\x69" "\xff\x45\x3b\xd9\x97\xb8\x3b\xf8\xa1\xed\xa3\x53\x39\x6f\x97\xb0\x2f" "\x98\xe6\x92\x22\x0b\xbc\x45\x19\xb4\x7f\xbc\xd2\x6b\x9a\xf9\x28\x38" "\x6f\xa8\xf8\xe7\x19\x5d\x89\x7e\x06\x7d\xf1\xf7\x1f\x9d\xc9\xc5\x87" "\x42\xe9\x4c\xe5\xbf\xc3\x1e\xff\x27\x5a\x5c\xff\x77\xec\xf2\xf5\x7f" "\xf4\xfe\x7f\xe6\xeb\x82\x4a\xbc\xee\xe8\x75\xc1\x05\xcd\xa9\xa1\xdb" "\x9a\xd1\xd2\xe6\x8f\xc7\x89\xfa\x82\xf2\xb8\xf3\xf8\x36\x1e\x8f\x77" "\x4a\xb5\xcd\x78\x8e\xff\xc5\x96\x3e\xfe\x77\xda\xfc\xff\xac\xc5\xf9" "\x7f\xe7\x8e\x5f\xff\x57\x34\x9a\x35\xe7\xae\xad\xc8\x96\x41\xfd\x55" "\x93\xf3\x45\x2d\xaa\x61\x5e\xef\xd7\xf3\xfe\xe0\x08\x1c\xee\x67\xdc" "\xd6\xe5\xc3\xf6\x4f\x75\xdb\xbb\x9f\x21\xff\xc5\x96\xce\x7f\x97\xcd" "\xff\x9d\x16\xf9\xef\xda\xe9\xe3\xbf\xbb\x36\x2a\x7e\x5f\xa0\xbc\x85" "\xfb\xff\x71\xd1\xfb\x02\x17\x34\xa3\x59\x0d\x9a\x7b\x83\x2b\xf2\xf3" "\x14\xbf\x8f\x56\x0a\x87\x9a\xb1\xf3\xf3\xb5\x6a\xbf\xb2\xc1\x0d\xcf" "\xcf\x7f\x77\x2c\x5e\x5a\x41\x6b\xa5\x55\xff\x0d\xfb\xeb\x3c\x81\xfc" "\x17\x5b\x3a\xff\xdd\x26\xff\xdd\xfa\xfb\xc4\xf5\x7f\xd5\xfe\x99\x7e" "\x1b\xf2\xef\x26\x7b\xe1\x6c\x78\xfe\xbf\x2d\x7f\x17\x30\xed\x7a\xe7" "\xff\x57\x54\xd7\x0d\xbd\xab\x65\xd5\x13\xf9\x8e\xe4\xc1\xd6\x10\xe6" "\xbb\xe2\x2f\x8c\xdf\x29\x5e\x7a\xb5\x0d\xe9\x8a\x4e\x38\xce\x13\x8e" "\xbd\x4f\xf0\x91\xd6\xee\x13\xdc\x0b\xaf\xbf\xbd\xe9\xfc\xda\x8e\x2a" "\x7e\x9f\xa0\x19\x9e\x9b\x78\xf3\xd8\x6b\xe7\xdf\x3f\xe0\xbf\x56\xfb" "\xa9\x59\x3e\x41\x19\x4c\xf7\xbe\xa4\x11\x8d\xa4\xa6\xff\xe2\x68\xf9" "\x4b\xaf\xef\x41\xa9\xc4\xf4\x8a\xac\xbf\x92\x4a\xa6\x7f\x1f\x6a\xed" "\x7e\x41\x33\xd2\xdf\x60\xfa\x9e\x44\x7f\x97\xc2\x7d\xb3\x77\x86\xe4" "\xb7\x7f\x32\xd8\x58\xda\xb4\x9d\x9c\xae\xdd\x3c\xc5\xfb\xb7\xdf\xf6" "\x97\xfb\xd6\xea\xd6\xfe\x2b\x97\x74\xfe\x0f\xd9\xe3\x7f\xab\xcf\xff" "\x1d\xda\xb3\xeb\xff\xf2\x16\xf2\x5f\x0a\xe7\x51\x89\xeb\xff\xab\x5a" "\xd2\xa0\x66\xb4\x62\xf3\xdf\xea\xbc\xfc\xfb\xb6\x4c\xff\xdd\x3f\x5e" "\xef\x89\xa6\xbe\x5e\x8a\x9c\xdf\xab\xea\x9f\x3f\xb8\xf6\x3e\x5c\x4d" "\x23\x5a\xd0\x4d\x2d\xda\x77\x05\x3b\xbf\x23\x73\x8f\xbf\xfd\xd7\xdf" "\xfb\xaf\xff\x4c\xce\xf7\xee\x6e\xef\x1c\xff\x0b\x21\xfd\x71\x54\x2b" "\x9d\xff\xc3\xf6\xfe\x7f\xb3\x94\xbe\xff\x77\xb8\x75\xfe\x83\xff\x1a" "\x6c\xcb\xf9\xdf\xa5\xe3\xbf\x39\x8c\x79\xf9\x1f\xd6\x1d\x35\x54\xd7" "\x82\x66\xcd\xf1\xcf\xbf\xd6\xf1\x73\x3b\xed\x6c\x7c\x5f\xff\x92\xe3" "\xff\xf3\x3c\xea\xcf\x81\xae\x69\xcc\x2e\x3f\xff\x67\xd6\xfe\x3d\x65" "\x77\x0d\x1d\xe5\x9a\xc6\x75\x5d\x7f\xa5\x91\xf0\x1e\xc5\x76\xd7\xff" "\x9a\xde\x35\xf7\x45\x66\x54\xd2\x63\xb6\xfe\x5b\xe6\x0a\xeb\xfe\xeb" "\xf7\xae\xaf\x26\x55\xd7\x92\x66\xb4\x6c\xf6\xb0\x71\x1c\xd7\xf7\x13" "\x2f\xff\x5d\x8a\xe6\xff\x88\xfc\xcf\xff\xbb\x2d\xee\xff\x1f\xd9\x81" "\xfb\x7f\x7b\xfd\xb9\x9c\xf8\x75\xbf\x13\x0e\x15\x63\xfb\xe4\xf8\x5f" "\x6c\xe9\xe3\xff\x03\xeb\xe4\xff\x81\x22\xe6\xbf\xed\xb9\x53\x1e\x90" "\xff\x62\x4b\xe7\xff\x41\x9d\x1e\xb0\x83\xb1\xa8\x96\xcd\xef\x0a\x98" "\xff\x5c\x23\xff\xc5\x96\xce\xff\x43\xeb\x1c\xff\x1f\x3a\x20\xf9\x77" "\xec\x7d\x36\xf2\xbf\x11\xf2\x5f\x6c\xe9\xfc\xf7\x98\xfc\x4b\x3f\x54" "\x3c\xff\x4e\xf8\x8e\xb5\xe9\xb6\x23\xff\xc5\xc8\xd9\x7e\x45\xfe\x8b" "\x2d\x9d\xff\x87\xc9\x7f\x9e\x25\x16\x3f\xf9\x2f\xb6\x74\xfe\x8f\x92" "\xff\x02\x21\xff\xc5\x96\xce\xff\x23\xe4\xbf\x40\xc8\x7f\xb1\xa5\xf3" "\xdf\x4b\xfe\x0b\x84\xfc\x17\x5b\x3a\xff\xbf\x47\xfe\x0b\x84\xfc\x1f" "\x74\x9b\xfd\x3e\xdd\xd6\xd2\xf9\xff\x1a\xf9\x2f\x10\xf2\x5f\x6c\xe9" "\xfc\xff\x3e\xf9\x2f\x10\xf2\x5f\x6c\xe9\xfc\xfb\xdf\xff\xfd\x80\x96" "\x4a\xf1\xcd\xa3\x12\x7b\x32\x7e\xeb\xcf\xff\x3d\xb5\xc5\xe7\x7f\xc7" "\xec\xf3\x3f\xdb\xfb\xfc\x8b\xff\xbc\xee\x1d\xb3\x28\xfc\xe7\x0c\xa7" "\xc3\xe7\x5f\xc7\xc3\xf7\x3e\xac\xc4\xf3\x3f\x91\xe7\x82\x5d\xbb\x93" "\x3c\x69\xbf\x90\x2b\xf5\x19\x23\x27\x3e\xc3\xc1\xf3\x2f\x5e\xbb\x5f" "\x98\x76\xfd\xa7\xaa\x7f\x1d\xb6\xfb\x5a\x6c\xda\x68\xbb\x1f\xdb\x7f" "\x32\xf7\x69\xfa\xed\x72\xb7\xcf\xd3\xda\x7a\xa3\x33\x1e\x2c\x8b\xd5" "\x84\xe8\xfa\xef\xb5\x4f\x38\x4e\x47\x9e\xdf\xcd\x5a\x4f\xab\xcf\x55" "\x25\xe7\x97\xfd\xfc\x7e\xd4\x3e\xff\x7f\xf3\xc3\xb1\x37\x92\x9f\xff" "\x7b\x34\x27\xf9\x8f\x3e\x5f\x77\xcf\x7e\x06\xd1\xcf\x7f\xc9\xb4\x9b" "\xcc\xff\x23\x8a\xe7\xd0\x55\x7a\x26\x0e\xe6\x76\xce\xf1\xbf\xd8\xda" "\xe7\xff\x5a\x8b\xcf\xff\x3e\x16\x39\x2e\xec\x46\xfe\xd7\xbe\xff\xc7" "\x09\xbf\xff\x67\xa7\x9e\x4f\x6d\xbf\x1f\x98\x0c\xeb\xc8\xdf\x7e\x80" "\xfc\x17\x5b\xab\xfc\xfb\xd7\xff\xe6\xac\xb0\x12\x9f\xfa\xf1\xc8\x16" "\x73\x30\xb6\x6f\xac\x8f\xfc\x17\x5b\xb6\xfc\x3f\x41\xfe\x73\x86\xfc" "\x17\x5b\xb6\xfc\x7f\x9d\xfc\xe7\x0c\xf9\x2f\xb6\x6c\xf9\xff\x03\xf2" "\x9f\x33\xe4\xbf\xd8\xb2\xe5\xff\x18\xf9\xcf\x19\xf2\x5f\x6c\xd9\xf2" "\xef\x92\xff\x9c\x21\xff\xc5\x96\x2d\xff\xc7\xc9\xff\xc1\xd5\xf2\x83" "\xe2\xe4\xbf\xd8\xb2\xe5\xff\x04\xf9\xdf\x97\xba\xb7\xfc\x4e\xf2\x5f" "\x6c\xd9\xf2\xff\x64\xe4\x30\x42\xfe\xf3\x80\xfc\x17\x5b\xbb\xfc\x77" "\xb7\xcc\x7f\x8d\xe3\x7f\xce\x90\xff\x62\xcb\x76\xfc\xff\x43\xf2\x9f" "\x33\xe4\xbf\xd8\xb2\xe5\xff\x29\xf2\x9f\x33\xe4\xbf\x48\x2a\xa9\x31" "\xd9\xf2\xff\x47\xe4\x3f\x67\xc8\x7f\xb1\x65\xcb\xff\x49\xf2\x9f\x33" "\xe4\xbf\xd8\xb2\xe5\xff\x8f\xc9\xff\xc1\x71\x7c\xf9\xd6\x5f\x6e\x38" "\x11\xf9\x2f\xb6\x6c\xf9\xff\x06\xf9\xcf\x19\xf2\x5f\x6c\x91\xfc\xdb" "\x3f\xec\xaf\x97\xff\x6f\x92\xff\x9c\x21\xff\xc5\x96\xed\xf8\xff\x34" "\xf9\xcf\x19\xf2\x5f\x6c\xd9\xf2\xff\x2d\xf2\x9f\x33\xe4\xbf\xd8\xb2" "\xe5\xff\x14\xf9\xcf\x19\xf2\x5f\x6c\xd9\xf2\xff\x0c\xf9\xcf\x19\xf2" "\x5f\x6c\x9b\xca\x7f\xb8\x91\xf4\x93\xff\x9c\x21\xff\xc5\xb6\xb9\xe3" "\x7f\xf0\xdb\x67\xc9\x7f\xce\x90\xff\x62\xcb\x76\xfe\x7f\x9a\xfc\xe7" "\x0c\xf9\x2f\xb6\x6c\xf9\x3f\x43\xfe\x73\x86\xfc\x17\x5b\xb6\xfc\x3f" "\x47\xfe\x73\x86\xfc\x17\x5b\xb6\xfc\x9f\x25\xff\x39\x43\xfe\x8b\x2d" "\x5b\xfe\x9f\x27\xff\x39\x43\xfe\x8b\x2d\x5b\xfe\x5f\x20\xff\x39\x43" "\xfe\x73\xef\xfc\x7a\xbf\xcc\x96\xff\x73\xe4\x3f\x67\xc8\x7f\xb1\x75" "\xd9\x72\x73\xf9\xff\x13\xf2\x9f\x33\xe4\xbf\xd8\xb2\x1d\xff\xff\x94" "\xfc\xe7\x0c\xf9\x2f\xb6\x6c\xf9\xff\x33\xf2\x7f\x40\xac\x7b\xd1\x17" "\x41\xfe\x8b\x2d\x5b\xfe\x5f\x24\xff\x39\x43\xfe\x8b\x2d\x5b\xfe\xff" "\x9c\xfc\xe7\x0c\xf9\x2f\xb6\x6c\xf9\xff\x36\xf9\xcf\x19\xf2\x5f\x6c" "\xd9\xf2\xff\x12\xf9\xcf\x19\xf2\x5f\x6c\xad\xf2\xef\xe8\x9c\xca\xba" "\x55\x8a\xe7\xbf\x62\xf7\x09\xc1\xff\xff\xd9\x23\xe9\x52\xa4\xa6\x7e" "\x49\x7d\xde\x39\xc2\x93\x67\xdf\xf9\xe0\xab\x4f\x9d\x13\x2f\xc4\xcb" "\x60\xbc\x9b\xe8\x81\xf7\xbe\x5b\xe1\xab\xb2\x46\x4d\x3d\x8e\xaa\xe6" "\x75\x35\xac\xaf\x5d\x99\x9c\x23\xd7\xef\x9a\xaa\xba\xa9\x39\xcd\xab" "\x6e\x5a\x90\x26\x62\xed\x38\xe6\x75\x9f\x19\xaa\x34\x7b\xed\xff\x6d" "\x28\xfb\x8c\x83\xe3\xc7\xa2\xea\xf5\xd5\x2d\xa5\x5f\x97\xf4\x84\xd9" "\x4f\xaa\xdc\xab\x55\xe7\x98\x1c\xc7\x56\x2a\xe9\x9e\xb7\x6c\xbc\xa1" "\x4a\x9f\x59\xbe\x5f\xf8\x7d\x52\x4d\x23\x3a\xa3\x7e\xd3\x1b\xc7\x2e" "\xc0\x8a\x5d\x8e\x9f\xd9\x7f\x9e\x01\x5b\xd5\x35\xb3\x24\x82\x3b\x79" "\x8e\x7e\xf5\x0d\x7f\x7e\xbf\xd7\x1f\x2f\x83\xf1\xc1\x9f\x72\x1f\xab" "\x84\xcb\x41\xad\x96\xc3\x85\x58\xfd\x1d\x61\xfd\xbf\x7c\xde\xaf\xa7" "\x5d\x39\x6d\xeb\x7b\xdd\x96\xb5\x54\xfd\xcf\xc6\xd6\x43\x8f\xdd\xbb" "\xb4\x3f\x4e\xfc\xaa\xf5\x68\xec\xa2\x8e\x36\xf9\x77\xf4\xa1\x93\xce" "\xff\x80\x59\xdf\xbe\x76\xf9\xdf\x68\x3b\xdd\x6c\xfe\x93\xdb\x7d\xbb" "\x32\xfc\x08\x83\xd5\x6e\xbb\xdf\xad\xfc\x37\xed\x72\xf1\xe7\xa0\x14" "\x69\xd1\x17\xde\x99\x4f\xe4\x35\x28\x8f\x97\xca\x66\x11\x07\xb9\xd9" "\xd9\xf3\xac\xea\xce\x55\x8d\x03\xa0\xda\x36\xff\xbf\x6c\x91\xff\x0b" "\x91\x4f\x0a\xb5\xcb\xff\x46\xc7\x91\x5a\xa2\x07\xeb\xe5\xff\x07\xdb" "\x78\x5c\xda\xcd\xfc\x2f\x85\xed\x94\x4c\xbf\xbc\x76\x46\x16\x1a\x77" "\x46\xc7\x5e\x75\x9e\x51\x43\xb7\xb5\xa4\x67\xb4\xa2\xbb\x7a\x4f\xdf" "\xd2\x9c\x6e\x6b\x46\x6f\xa9\x6e\xfe\x2d\xe8\x8c\xce\xea\x05\x9d\xd3" "\xf3\x3a\xab\xd3\x3a\xa3\xe7\x75\x4e\xcf\x44\xf6\x66\xcf\xc4\xf6\x6c" "\xf7\xb7\x7f\x28\x6f\xfd\xad\xc8\x81\x72\xdb\xfc\x7f\x96\xc8\xbf\x77" "\xde\x3f\x28\xa9\xdb\xbe\x6e\x97\xff\xe9\x17\xfd\x5c\xfe\xfc\xbc\x5f" "\xfe\x62\xd8\xe6\xf4\xc5\xad\x9d\xff\x07\xef\x6b\x57\xf6\x24\xea\x4b" "\x1f\xff\xb7\x21\xff\x91\xba\x37\x93\xff\x93\x61\x3b\x25\x1d\xb2\xed" "\xac\xdc\x7d\xef\xed\x99\xf9\xf9\xfa\xf2\x8a\xff\x9b\xa6\x9d\x77\x75" "\xf4\x99\x05\xdd\x61\xdf\x77\x47\x33\x6a\xa8\xa1\x65\xdb\xef\x3b\x33" "\x8d\xc6\xf2\xb3\xc9\xe9\xab\x2d\xa6\x3f\xbd\x36\xfd\xe9\xcd\xee\x17" "\xba\x37\x9e\x04\x39\xd6\xdd\x22\xff\x25\x93\xff\xae\xc4\xf5\xbf\x97" "\xc7\x21\xc9\x6c\xcf\x5a\x27\xff\xdf\x79\xd5\xcf\xe5\x6f\xae\xf8\xe5" "\xc2\xb4\x5f\x06\xe3\xb3\xe6\x3f\x78\x5f\xbb\x52\x89\x13\x8a\x74\xfe" "\x4f\xb7\x68\xa7\xd2\xb6\x9d\xa0\xdf\x41\x99\x6c\xe7\xe4\x93\xed\xda" "\x39\x63\x5e\xef\xf5\x75\x46\x70\x39\x14\x5e\x67\x24\xfa\x1d\x94\xc7" "\xbb\xab\x55\x6f\x6d\x72\x1f\xb7\xc8\x0e\x6d\xfa\xf8\xef\x0d\x0e\x6f" "\xe2\xfa\xff\xb7\xdf\xf5\xf3\xf2\xe3\xeb\xf1\x32\x18\xdf\x2a\xff\x6b" "\xe7\xcb\x65\x4d\x25\x72\x19\xbc\xaf\x5d\x79\x2b\x51\x5f\x50\x7f\x77" "\x98\xcb\x53\xba\xa1\x45\xcd\x6b\xd6\xf4\xaf\x45\x3e\x83\x99\xdf\xf6" "\x7c\x36\xc3\x76\x4a\x9a\x4d\x9d\x07\x6c\x71\xc0\xd1\x86\xd3\x68\xd3" "\xd7\x05\x5c\xff\x17\x1b\xeb\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb0\x3d\x1c\x55\x9a\xbd\x3d" "\x92\xdb\xe3\xbf\xee\x95\x54\x92\x7a\xba\xcc\xab\x3e\xad\x3a\xc7\xe4" "\x94\xcc\x8b\xaa\x2b\xc9\xf5\x86\x0f\xf7\x79\xaf\x7b\x52\xe3\xd5\xeb" "\x4f\xef\xf8\xe3\x8f\x7a\x3f\x0f\xf7\xfa\xd3\x46\xc7\xa9\x57\xff\xea" "\x3c\x12\x4e\x77\x38\x9c\xce\xf9\x2c\x36\x4e\x7d\xfa\x07\x1d\x8d\xb5" "\x7f\x7c\xad\xfd\x0f\x53\xe3\x5b\xcd\x1e\x00\x00\x00\x00\x00\x68\x29" "\x7a\xad\x1e\x0e\x73\x25\x0d\xe4\xce\xc8\xd8\xd0\xf4\x49\x75\xa7\xc6" "\x9f\x94\xf4\xb3\x0e\xe9\x7f\x1e\xf2\x5f\xf7\xe9\xd3\x96\x7b\x80\x8a" "\xfd\x79\x4b\x93\x66\xa8\x6a\x7f\x36\xa7\xfa\x17\x3e\xf8\xea\x53\x27" "\x51\x56\xec\xdb\x1c\x1d\xb1\x43\x87\xfc\xa2\xc3\xbe\xec\x2a\xd7\x34" "\xa0\x86\x1a\x5a\xd6\x90\xea\xba\x69\x27\xf7\xef\x47\x76\x6d\xb6\x9d" "\xb0\x4c\xf6\x37\xda\xce\x05\xcd\x68\x56\x83\x9a\xd7\xbb\x5a\x31\x63" "\x3b\xed\xef\x3b\x74\x4d\x13\xd9\xda\x59\x9b\xb3\x58\x3b\x9d\xa6\x9d" "\x39\x35\x74\x5b\x33\x5a\x52\xa7\x6d\xe7\x9a\x46\x37\xa8\x5f\xf1\xfa" "\x5d\x5b\xa1\x1b\xaf\xbf\x6a\xea\x5f\xd4\xa2\x1a\x9a\xd3\xbc\xfc\xfb" "\xa6\x87\x37\xd9\xff\x3e\xad\xb3\x9c\x7a\xd6\x5e\xdd\x51\x43\x75\x2d" "\x68\x56\xfe\x6d\xd6\xd2\x16\xd6\x43\x25\xb6\xc5\x44\xd7\xc3\xa8\x16" "\xf5\x96\x2e\x9a\xfe\xd7\xa3\x0b\x51\x8e\xae\xe9\x95\x6c\xed\xcc\xdb" "\xb7\xce\xc7\x97\x53\xa5\x5c\xd3\x65\x5d\xd4\x54\x6c\x35\x39\xd9\xe7" "\x23\x58\x2a\x3d\xe9\xed\xc9\xaf\xff\xb2\xe6\xb4\xac\x65\xff\x3e\xba" "\x4d\x56\x77\xf6\xed\x29\xbd\x3e\xdc\x60\x7b\xba\xa2\xba\x6e\xe8\x5d" "\x2d\xab\x6e\xe3\x73\x68\x0b\xf5\x97\x4c\xaa\x65\xd7\x68\x74\x7b\xbd" "\xaa\x25\x0d\x6a\x46\x2b\xaa\xab\x6c\xc6\x96\xb7\xa3\xff\x61\xfd\xaf" "\x6b\xd1\x64\xee\xb6\xea\x61\x7d\xd3\x1a\x6a\x59\xff\x8d\x37\xce\xbe" "\x13\x2d\xdb\xd5\xff\x94\x5d\x23\x4e\xf9\x94\x79\x3d\x1c\xae\xdf\xa9" "\x58\xbd\xbf\xfd\xae\x5f\xcf\x8f\xaf\xc7\xcb\x60\xfc\xad\x44\xcd\x41" "\xec\xba\x75\xd3\x6e\x9f\xa7\x74\xc3\xf4\x7f\xd6\x8c\x3f\x6f\xdb\x49" "\xe6\xf9\xdb\x4f\xfa\xf5\x9d\x78\x21\x5e\x06\xe3\x93\xfd\x77\x6d\xff" "\xab\x61\x3b\xfd\x66\xfc\x60\x9b\xfa\xa7\x5f\xf4\xeb\xf9\xf9\x79\xbf" "\xfc\xc5\xb0\x5f\x06\xe3\x83\xcd\xf4\x50\x62\x3e\xd6\xea\x7f\xd6\xac" "\xff\xa1\x36\xf5\x7f\xe7\x55\xbf\x9e\xdf\x5c\xf1\xcb\x85\x69\xbf\x0c" "\xc6\xab\xe6\xd7\x77\xf2\xc9\x76\xf5\x9f\x36\xaf\x87\xba\x82\x39\xcc" "\x5c\xff\xea\xf7\xd7\xad\xff\x4c\x6c\xf9\xf5\x84\x5b\x32\x36\xaf\x6f" "\xaf\x3b\x80\x3d\xc5\xfa\x2f\x90\xeb\xe9\x51\xac\xff\x62\x63\xfd\x17" "\x5b\x9f\xbc\xab\x89\x29\x0d\x68\x4c\x43\x1a\xd0\xa4\x86\xf4\xa6\x46" "\x34\xa6\x8b\x1a\xd7\xa4\x2e\x6b\x40\x53\x1a\xd1\xb8\xc6\x76\xa8\x07" "\x91\x8b\x4c\x73\x2e\xdd\x6f\x87\x2f\xd9\xb2\x66\x7a\x30\xa5\x49\x8d" "\xe8\x82\xae\x6a\x4a\xc3\x7a\x53\xa3\x1a\x31\xfd\xde\x79\x6e\x64\xb8" "\x19\x19\x5e\xb5\x6a\xba\xa8\x11\x8d\x9a\x5e\x8d\x69\x40\x97\xed\x95" "\xc7\x6e\xe9\x8f\x0c\x5f\xf0\xce\xb7\x83\x61\x7b\x32\x5c\xd3\xb8\x2e" "\xe8\x15\x0d\x6b\x50\x53\x66\xdd\x0e\xed\x6a\xff\xce\xb7\x19\x0e\x2e" "\xf1\xbd\xed\xcf\xeb\xdb\x55\xb3\x86\xa7\xf4\x17\x7a\x53\x43\x1a\xd6" "\x15\x0d\x9a\x31\x13\x9a\x32\x5b\xe2\x4e\x99\x88\x0c\xb7\x5e\xbf\xaf" "\x6b\x5c\xa3\xba\x6a\xd6\xec\xee\xae\x63\x6f\x79\x5d\x4b\xbc\x0e\xaf" "\x71\xc2\xe5\x17\xef\xdf\x6e\x66\xd7\xb3\x94\xe8\x5f\x70\x5b\x2f\x28" "\x6b\x66\xbf\xe2\xed\x61\xf6\x46\xb3\xcd\xf8\xb5\xf5\x3b\x62\xf6\x7d" "\xc3\x9a\xd6\x9b\x9a\xd4\xb8\xc6\x77\x65\xbf\x12\xb8\x17\x19\x3e\xbf" "\x61\xff\x06\x34\xaa\x51\x8d\x6b\x70\x57\xd6\xad\xe7\xc3\xc8\x70\xeb" "\x7c\x5c\x30\xb9\xf5\xb6\xb6\x89\x1d\xee\x4b\x2b\x1f\x6d\xd8\xbf\x49" "\x0d\x6b\xc2\x1c\xdb\xae\x98\x84\x4c\x68\xdc\x2c\xd3\xdd\x59\xcb\x1f" "\xb7\xe9\x5f\xb0\xb2\x6b\x1a\xd6\xc0\x1e\xe4\x36\xf0\xeb\x44\x97\x82" "\xdb\x35\x41\xe9\xf7\x6f\xef\x7c\xd6\xf6\x37\xfe\x0e\xb0\x66\xf2\xf0" "\xb2\x5e\xd6\xb0\x39\x77\xb9\x6a\x96\xdd\x68\x78\x2c\xb9\x62\xce\x1d" "\x86\xcd\x5e\x7b\x47\x44\xee\xe4\x35\xdb\xfd\x02\xd8\xa7\x56\x9d\x60" "\x4f\xb9\xda\xd9\x72\x82\xe6\x6a\x56\xc7\x32\x34\xbf\x71\xed\x2f\x6d" "\xdb\xac\xfa\xba\xe2\xed\x6f\x73\xed\xc0\x81\xf2\xc5\xd1\xf2\x97\xd1" "\x43\xd5\xfb\xf6\x99\x20\xef\xfa\x7b\xda\x8c\xf1\xff\x5e\x5b\xd2\x73" "\xf6\xda\xa3\x57\x3f\xd2\xd1\xf8\x33\x3e\xea\xf3\xc7\x25\x9e\x07\xda" "\xe8\xb5\xe7\xb5\xda\x4f\x4d\x5d\x41\x10\xdf\x77\x93\xed\x07\xcf\x24" "\xad\xb5\xff\x13\x27\xdd\xbe\xb7\xf7\xda\x4a\xfb\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x36\xf6\xff\x01\x00\x00\xff\xff\x4c" "\x97\x3a\x1e", 4474); syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x20000001ecc0, /*flags=MS_SYNCHRONOUS|MS_MANDLOCK*/ 0x50, /*opts=*/0x200000000080, /*chdir=*/0, /*size=*/0x117a, /*img=*/0x2000000023c0); break; case 1: // sync arguments: [ // ] syscall(__NR_sync); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*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=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }