// https://syzkaller.appspot.com/bug?id=753d59fc19d6c114fb4b38588efc2123637ac34a // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; 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"); } 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 setup_gadgetfs(); static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/newroot/syz-inputs", 0700)) exit(1); if (mount("/syz-inputs", "./syz-tmp/newroot/syz-inputs", NULL, bind_mount_flags | MS_RDONLY, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (getppid() == 1) exit(1); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); sandbox_common_mount_tmpfs(); loop(); exit(1); } static const char* setup_usb() { if (chmod("/dev/raw-gadget", 0666)) return "failed to chmod /dev/raw-gadget"; return NULL; } uint64_t r[1] = {0xffffffffffffffff}; void loop(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$ext4 arguments: [ // fs: ptr[in, buffer] { // buffer: {65 78 74 34 00} (length 0x5) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: mount_flags = 0x3000046 (8 bytes) // opts: ptr[in, fs_options[ext4_options]] { // fs_options[ext4_options] { // elems: array[fs_opt_elem[ext4_options]] { // fs_opt_elem[ext4_options] { // elem: union ext4_options { // errors_continue: buffer: {65 72 72 6f 72 73 3d 63 6f 6e 74 69 // 6e 75 65} (length 0xf) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // data_err_abort: buffer: {64 61 74 61 5f 65 72 72 3d 61 62 6f // 72 74} (length 0xe) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // init_itable: buffer: {69 6e 69 74 5f 69 74 61 62 6c 65} // (length 0xb) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // dioread_lock: buffer: {64 69 6f 72 65 61 64 5f 6c 6f 63 6b} // (length 0xc) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // data_err_ignore: buffer: {64 61 74 61 5f 65 72 72 3d 69 67 6e // 6f 72 65} (length 0xf) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // max_dir_size_kb: fs_opt["max_dir_size_kb", fmt[hex, int32]] { // name: buffer: {6d 61 78 5f 64 69 72 5f 73 69 7a 65 5f 6b 62} // (length 0xf) eq: const = 0x3d (1 bytes) val: int32 = // 0x4007b0 (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // noblock_validity: buffer: {6e 6f 62 6c 6f 63 6b 5f 76 61 6c 69 // 64 69 74 79} (length 0x10) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // grpquota: buffer: {67 72 70 71 75 6f 74 61} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // nobh: buffer: {6e 6f 62 68} (length 0x4) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // user_xattr: buffer: {75 73 65 72 5f 78 61 74 74 72} (length // 0xa) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // inode_readahead_blks: fs_opt["inode_readahead_blks", fmt[hex, // flags[ext4_inode_readahead_blks]]] { // name: buffer: {69 6e 6f 64 65 5f 72 65 61 64 61 68 65 61 64 // 5f 62 6c 6b 73} (length 0x14) eq: const = 0x3d (1 bytes) // val: ext4_inode_readahead_blks = 0x4 (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // dioread_nolock: buffer: {64 69 6f 72 65 61 64 5f 6e 6f 6c 6f // 63 6b} (length 0xe) // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x553 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x553) // } // ] // returns fd_dir memcpy((void*)0x2000000000c0, "ext4\000", 5); memcpy((void*)0x200000000000, "./file1\000", 8); memcpy((void*)0x200000001140, "errors=continue", 15); *(uint8_t*)0x20000000114f = 0x2c; memcpy((void*)0x200000001150, "data_err=abort", 14); *(uint8_t*)0x20000000115e = 0x2c; memcpy((void*)0x20000000115f, "init_itable", 11); *(uint8_t*)0x20000000116a = 0x2c; memcpy((void*)0x20000000116b, "dioread_lock", 12); *(uint8_t*)0x200000001177 = 0x2c; memcpy((void*)0x200000001178, "data_err=ignore", 15); *(uint8_t*)0x200000001187 = 0x2c; memcpy((void*)0x200000001188, "max_dir_size_kb", 15); *(uint8_t*)0x200000001197 = 0x3d; sprintf((char*)0x200000001198, "0x%016llx", (long long)0x4007b0); *(uint8_t*)0x2000000011aa = 0x2c; memcpy((void*)0x2000000011ab, "noblock_validity", 16); *(uint8_t*)0x2000000011bb = 0x2c; memcpy((void*)0x2000000011bc, "grpquota", 8); *(uint8_t*)0x2000000011c4 = 0x2c; memcpy((void*)0x2000000011c5, "nobh", 4); *(uint8_t*)0x2000000011c9 = 0x2c; memcpy((void*)0x2000000011ca, "user_xattr", 10); *(uint8_t*)0x2000000011d4 = 0x2c; memcpy((void*)0x2000000011d5, "inode_readahead_blks", 20); *(uint8_t*)0x2000000011e9 = 0x3d; sprintf((char*)0x2000000011ea, "0x%016llx", (long long)4); *(uint8_t*)0x2000000011fc = 0x2c; memcpy((void*)0x2000000011fd, "dioread_nolock", 14); *(uint8_t*)0x20000000120b = 0x2c; *(uint8_t*)0x20000000120c = 0; memcpy( (void*)0x2000000004c0, "\x78\x9c\xec\xdd\xdf\x6b\x5b\x55\x1c\x00\xf0\xef\x4d\xdb\xfd\xd6\x75\x30" "\x86\x8a\x48\x61\x0f\x4e\xe6\xd2\xb5\xf5\xc7\x04\x1f\xe6\xa3\xe8\x70\xa0" "\xef\x33\xb4\x77\x65\x34\x59\x46\x93\x8e\xb5\x0e\xdc\x1e\xdc\x8b\x2f\x32" "\x04\x11\x07\xe2\xbb\xbe\xfb\x38\xfc\x07\xfc\x2b\x06\x3a\x18\x32\x8a\x3e" "\xf8\x12\xb9\xe9\x4d\x97\xad\x49\x9b\x75\xd9\xd2\x99\xcf\x07\x6e\x39\x27" "\xf7\x26\xe7\x7e\x73\xef\xf7\xf4\xdc\x9c\x1b\x12\xc0\xd0\x9a\xc8\xfe\x14" "\x22\x5e\x8e\x88\x6f\x92\x88\x83\x11\x91\xe4\xeb\x46\x23\x5f\x39\xb1\xb6" "\xdd\xea\xfd\xab\xb3\xd9\x92\x44\xa3\xf1\xe9\x5f\x49\x73\xbb\xac\xde\x7a" "\xad\xd6\xf3\xf6\xe7\x95\x97\x22\xe2\xb7\xaf\x22\x8e\x17\x36\xb6\x5b\x5b" "\x5e\x59\x28\x95\xcb\xe9\x62\x5e\x9f\xac\x57\x2e\x4d\xd6\x96\x57\x4e\x5c" "\xa8\x94\xe6\xd3\xf9\xf4\xe2\xf4\xcc\xcc\xa9\xb7\x67\xa6\xdf\x7b\xf7\x9d" "\xbe\xc5\xfa\xc6\xd9\x7f\xbe\xff\xe4\xf6\x87\xa7\xbe\x3e\xba\xfa\xdd\x2f" "\x77\x0f\xdd\x4c\xe2\x74\x1c\xc8\xd7\xb5\xc7\xf1\x04\xae\xb5\x57\x26\x62" "\x22\x7f\x4f\xc6\xe2\xf4\x23\x1b\x4e\xf5\xa1\xb1\x9d\x24\x19\xf4\x0e\xb0" "\x2d\x23\x79\x9e\x8f\x45\xd6\x07\x1c\x8c\x91\x3c\xeb\x81\xff\xbf\x2f\x23" "\xa2\x01\x0c\xa9\x44\xfe\xc3\x90\x6a\x8d\x03\x5a\xd7\xf6\x7d\xba\x0e\x7e" "\x6e\xdc\xfb\x60\xed\x02\x68\x63\xfc\xa3\x6b\x9f\x8d\xc4\x9e\xe6\xb5\xd1" "\xbe\xd5\xe4\xa1\x2b\xa3\xec\x7a\x77\xbc\x0f\xed\x67\x6d\xfc\xfa\xe7\xad" "\x9b\xd9\x12\xfd\xfb\x1c\x02\x60\x4b\xd7\xae\x47\xc4\xc9\xd1\xd1\x8d\xfd" "\x5f\x92\xf7\x7f\xdb\x77\xb2\x87\x6d\x1e\x6d\x43\xff\x07\xcf\xce\xed\x6c" "\xfc\xf3\x66\xa7\xf1\x4f\x61\x7d\xfc\x13\x1d\xc6\x3f\xfb\x3b\xe4\xee\x76" "\x6c\x9d\xff\x85\xbb\x7d\x68\xa6\xab\x6c\xfc\xf7\x7e\xc7\xf1\xef\xfa\xa4" "\xd5\xf8\x48\x5e\x7b\xa1\x39\xe6\x1b\x4b\xce\x5f\x28\xa7\x59\xdf\xf6\x62" "\x44\x1c\x8b\xb1\xdd\x59\x7d\xb3\xf9\x9c\x53\xab\x77\x1a\xdd\xd6\xb5\x8f" "\xff\xb2\x25\x6b\xbf\x35\x16\xcc\xf7\xe3\xee\xe8\xee\x87\x9f\x33\x57\xaa" "\x97\x9e\x24\xe6\x76\xf7\xae\x47\xbc\xd2\x71\xfc\x9b\xac\x1f\xff\xa4\xc3" "\xf1\xcf\xde\x8f\xb3\x3d\xb6\x71\x24\xbd\xf5\x5a\xb7\x75\x5b\xc7\xff\x74" "\x35\x7e\x8a\x78\xbd\xe3\xf1\x7f\x30\xa3\x95\x6c\x3e\x3f\x39\xd9\x3c\x1f" "\x26\x5b\x67\xc5\x46\x7f\xdf\x38\xf2\x7b\xb7\xf6\x07\x1d\x7f\x76\xfc\xf7" "\x6d\x1e\xff\x78\xd2\x3e\x5f\x5b\x7b\xfc\x36\x7e\xdc\xf3\x6f\xda\x6d\xdd" "\x43\xf1\x47\xef\xe7\xff\xae\xe4\xb3\x66\x79\x57\xfe\xd8\x95\x52\xbd\xbe" "\x38\x15\xb1\x2b\xf9\x78\xe3\xe3\xd3\x0f\x9e\xdb\xaa\xb7\xb6\xcf\xe2\x3f" "\x76\x74\xf3\xfe\xaf\xd3\xf9\xbf\x37\x22\x3e\xef\x31\xfe\x1b\x87\x7f\x7e" "\xb5\xa7\xf8\x07\x74\xfc\xe7\x1e\xeb\xf8\x3f\x7e\xe1\xce\x47\x5f\xfc\xd0" "\xad\xfd\xde\xfa\xbf\xb7\x9a\xa5\x63\xf9\x23\xbd\xf4\x7f\xbd\xee\xe0\x93" "\xbc\x77\x00\x00\x00\x00\x00\x00\xb0\xd3\x14\x22\xe2\x40\x24\x85\xe2\x7a" "\xb9\x50\x28\x16\xd7\xee\xef\x38\x1c\xfb\x0a\xe5\x6a\xad\x7e\xfc\x7c\x75" "\xe9\xe2\x5c\x34\xbf\x2b\x3b\x1e\x63\x85\xd6\x4c\xf7\xc1\xb6\xfb\x21\xa6" "\xf2\xfb\x61\x5b\xf5\xe9\x47\xea\x33\x11\x71\x28\x22\xbe\x1d\xd9\xdb\xac" "\x17\x67\xab\xe5\xb9\x41\x07\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x3b\xc4\xfe\x2e\xdf\xff\xcf\xfc\x31\x32\xe8\xbd\x03" "\x9e\x3a\x3f\xf9\x0d\xc3\x6b\xcb\xfc\xef\xc7\x2f\x3d\x01\x3b\x92\xff\xff" "\x30\xbc\xe4\x3f\x0c\x2f\xf9\x0f\xc3\x4b\xfe\xc3\xf0\x92\xff\x30\xbc\xe4" "\x3f\x0c\x2f\xf9\x0f\xc3\x4b\xfe\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x5f\x9d\x3d\x73\x26\x5b" "\x1a\xab\xf7\xaf\xce\x66\xf5\xb9\xcb\xcb\x4b\x0b\xd5\xcb\x27\xe6\xd2\xda" "\x42\xb1\xb2\x34\x5b\x9c\xad\x2e\x5e\x2a\xce\x57\xab\xf3\xe5\xb4\x38\x5b" "\xad\x6c\xf5\x7a\xe5\x6a\xf5\xd2\xd4\x74\x2c\x5d\x99\xac\xa7\xb5\xfa\x64" "\x6d\x79\xe5\x5c\xa5\xba\x74\xb1\x7e\xee\x42\xa5\x34\x9f\x9e\x4b\xc7\x9e" "\x49\x54\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0" "\x7c\xa9\x2d\xaf\x2c\x94\xca\xe5\x74\x51\x41\x61\x5b\x85\xd1\x9d\xb1\x1b" "\x0a\x7d\x2e\x0c\xba\x67\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\x80\x07\xfe\x0b\x00\x00\xff\xff\xe8\x06\x37\xb1", 1363); syz_mount_image( /*fs=*/0x2000000000c0, /*dir=*/0x200000000000, /*flags=MS_LAZYTIME|MS_STRICTATIME|MS_NOSUID|MS_NODEV|MS_MANDLOCK*/ 0x3000046, /*opts=*/0x200000001140, /*chdir=*/1, /*size=*/0x553, /*img=*/0x2000000004c0); // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x42 (4 bytes) // mode: open_mode = 0x22 (2 bytes) // ] // returns fd memcpy((void*)0x200000000040, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000040ul, /*flags=O_CREAT|O_RDWR*/ 0x42, /*mode=S_IWOTH|S_IRGRP*/ 0x22); if (res != -1) r[0] = res; // pwrite64 arguments: [ // fd: fd (resource) // buf: ptr[in, buffer] { // buffer: {32} (length 0x1) // } // count: len = 0xfdef (8 bytes) // pos: intptr = 0xfecc (8 bytes) // ] memset((void*)0x200000000140, 50, 1); syscall(__NR_pwrite64, /*fd=*/r[0], /*buf=*/0x200000000140ul, /*count=*/0xfdeful, /*pos=*/0xfeccul); // setxattr$trusted_overlay_upper arguments: [ // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // name: ptr[in, buffer] { // buffer: {74 72 75 73 74 65 64 2e 6f 76 65 72 6c 61 79 2e 75 70 70 65 // 72 00} (length 0x16) // } // val: ptr[in, ovl_fb] { // ovl_fb { // version: const = 0x0 (1 bytes) // magic: const = 0xfb (1 bytes) // len: bytesize = 0x1015 (1 bytes) // flags: ovl_fb_flags = 0x4 (1 bytes) // type: int8 = 0x4 (1 bytes) // uuid: buffer: {d9 dc fb cf fe 63 b6 57 b6 05 6d c3 0d 32 9c 5a} // (length 0x10) fid: buffer: {4e cd f6 8f eb c8 98 9f 41 59 2b ec a0 // 0c 21 a6 2b 00 73 e5 d0 f0 c1 e2 6a 57 f4 75 fa 29 68 db 45 27 89 d5 // 94 3f 46 82 cb dc 2e 8f 85 0c 98 e3 7e 5e 85 32 dc a2 8a 76 b8 0b 20 // 8b d1 67 32 e7 fa f6 f7 2b f0 f1 91 12 a7 ac 9d df e5 11 ec ed 86 5a // ff 52 07 f6 fe c2 1a 7f 4f 47 20 6a 91 1e 40 78 a2 44 99 06 97 5e 04 // 35 7a 71 e2 5f 69 1a 01 b9 df 4a 38 69 0d f4 21 55 56 d4 ad e1 1e 67 // 40 b9 b7 73 26 fd e3 97 15 eb fa a6 90 9a 6f fa 4e b6 d5 26 5d 24 0e // e3 10 e9 b6 04 74 60 27 e2 c4 c0 4a 24 1c e8 8a 9d da 7c cf 08 3a 2e // f1 48 cb ee 92 54 84 52 be 82 de 91 06 36 66 3b 8c 27 0f 23 1a 43 11 // a4 04 10 28 27 b1 ba 70 77 08 3c ad a9 69 5a 13 d1 e1 38 2c c0 f4 29 // b0 1f 43 fe 2c 46 b0 e0 8d 95 09 54 05 77 01 c7 80 d2 2c 7c d1 1b fc // 39 64 e7 29 50 f3 42 0e 04 e8 18 96 d8 08 29 62 d8 1e c7 2c 2b 6d e9 // 4c 91 ce 56 d5 65 5a f8 d2 86 c4 d7 43 34 41 f2 ff c6 e8 2a 17 c1 0c // 70 93 0d 61 43 e3 30 2e 99 4d 7b 20 80 80 9e 18 b1 fe 77 f7 8a cf 1f // c2 1c b2 f5 d8 37 eb eb d3 c0 36 5f fe 3f b1 16 8d 9d 85 7c 55 c2 a3 // c5 a7 cf 39 3e 40 ae 28 9c 14 bd 82 32 29 a8 f4 1e d0 ca af f7 5b a2 // 45 ba 3d a6 7e 03 12 b7 51 a7 5e c4 18 03 30 90 25 41 0e 51 3d 0b 4c // 2f 5e 01 52 d7 32 d9 28 79 2d 6e 6c 21 a1 7c 0a 40 c5 9d 63 c1 28 7c // 18 a5 1f 75 3b e3 86 22 1d b5 71 57 df 32 87 3d 00 0d f0 bd 9c 19 59 // 13 40 6e f0 fd 4d cf 66 36 90 ec e0 a4 a9 da 7d 0f 2c 6c 2a c3 af 61 // 4b 9d c4 77 f4 20 c4 21 35 2c 2d b0 1e 49 c6 85 c2 24 53 d5 92 bd 5d // b6 ae 37 98 9a 78 dd 79 15 91 4d 90 04 4f 36 68 ff 91 b3 9d 49 ec ee // a5 12 c7 b2 d3 87 ae 53 41 2e e9 25 e2 e1 b7 09 73 69 0e 15 ed 5f 49 // 59 e3 e6 10 d0 1e 48 19 a2 69 39 96 fa 02 4b 19 a9 b1 46 20 b5 6a 25 // d6 ef be 33 c2 bf 50 f7 5d 6e a8 5b 93 f5 94 8b 39 15 23 98 e3 08 b9 // ab 9c 2d c1 b8 1e 6d 4f fd 3d de 41 3e 9a a0 9a 75 f6 2a 48 4a c5 c5 // dd b1 14 e7 ba d1 23 ed b7 b4 44 1e d9 9b d0 22 d6 7a bc f2 92 9e 5f // 24 07 d9 4e 6a f6 3f aa 23 3e 4a 4f 1f 1e 44 af 7f e8 1d 84 af 12 31 // 1b 78 2c 7b 92 97 cf e8 99 ac 43 77 13 f0 1d 3c e1 c3 17 e4 13 dd 5f // d7 09 0f 7c b3 f0 e5 7a 8d ac 72 e3 3d 28 bf 94 5b ed 18 6e a9 b8 c7 // 21 d9 c2 6b 33 09 a2 f7 b1 de 85 8f 34 fe cf 0a 3d eb 60 7a 7d d2 8c // 31 76 f0 13 ff 3d 27 4a e4 da 23 4c 60 6f 96 86 2b 7d 8f ab 84 07 d1 // 6b 16 76 1b f5 e3 0e 4c 17 5e 03 7e f9 e8 22 36 6c a8 a8 58 5d 3e d1 // 07 94 c6 93 4e 3c ef 72 9e e7 5f 1f 1f 03 06 13 c5 2b b1 ae f0 36 e3 // 9a 5e 24 88 d0 10 37 24 53 d3 2a 83 f8 05 be 93 67 ac e1 28 eb ea 1c // 77 0c ab 6f 29 c6 83 7c a8 9f 06 5b 42 d1 63 01 91 2d 72 62 84 99 27 // 8d d5 91 31 30 8a 2f 9d 84 43 14 d8 89 65 5c d3 78 71 9e c2 00 a2 a4 // c3 7f 9e 40 7b 79 0f f9 3d 77 fe 88 c3 c6 ea 6c 56 4f ad dd 74 8a 1c // 11 1d a9 42 b5 e3 e0 b2 08 26 2d 9e 78 ac e0 16 ea 65 24 23 fb 4a 0e // 8f 5d f6 05 92 4e 55 0b 5b 90 b2 51 10 c3 cb 4e b3 49 60 ac 3b f9 ad // 19 aa 48 ce 5f 91 36 12 96 d6 0c cf 31 ba fa 03 d0 e6 9d 96 37 08 4e // 2d c9 7e 83 00 09 02 35 87 02 d0 8e cd 99 2e c7 97 46 cd 84 a3 0b eb // 13 28 28 72 c1 60 d6 e1 31 79 b9 0c b1 bb ef 72 31 cf 7a ea f5 8e f3 // 43 90 62 68 59 36 17 2e 98 8f cd 97 d8 03 b0 69 d4 fd 34 40 d8 38 17 // 97 00 23 d3 e9 7b 20 2b fb 11 8e 41 ab a8 8b 2f 7a 7a f4 43 5f 74 f9 // 1b 8c 3c fd 62 5b 84 79 79 33 44 74 04 c2 79 80 15 27 c6 d0 7b 02 ce // 63 4d 20 63 90 7e 97 da e4 43 a3 82 0a 5c cd a6 49 20 17 4a 27 2a f4 // 36 af 88 a7 cf 7d 32 c4 b9 f9 80 9b 99 2b a6 4f db 9a 2b 75 1d d9 e0 // 67 99 89 c0 50 22 8d 01 c6 2f 78 24 86 4c f8 4c 16 41 d1 8e e8 62 80 // f8 85 ed 79 08 53 65 5e d2 1d a9 d0 7c 27 6e f5 f7 17 f3 55 a7 17 ab // 8d cf 8d 92 f8 29 dc 97 c4 4f 9b 9e 4a ac 25 75 1b 59 b9 b6 eb f0 eb // 9a 1d 87 6b 2f f3 74 bb 0a bc 60 f9 10 6c 67 ce fb 39 37 8b 5a e8 e2 // 6e f9 07 2d 3c de 21 d2 94 0f 6b 0f ea 8a b8 c1 84 ee bd 93 4c a3 19 // 53 23 e0 7c f1 79 95 6e ee f2 a1 07 16 01 3c 0c 2f c7 49 36 62 48 47 // b7 71 df bf fe b6 29 cb 3e cc 33 1c ed c4 66 49 d2 8f 3a 37 bb a3 53 // 85 95 17 db 46 7d a3 ab f7 b0 0d bf e5 87 ee 19 ba 65 e5 89 7b 3d 4c // 92 7e d6 0d 44 69 bb 47 08 cc 81 4e 9a ae 83 97 3a 10 53 7e aa c0 3a // cc 6d 98 70 d9 f4 b1 16 00 35 38 69 93 14 64 ee 1b 60 dc f1 af ad 8f // fa 16 aa 15 69 90 c7 aa 54 76 73 43 c1 3f 04 25 96 3f 89 f7 b4 a8 71 // ca 05 ea db 6d 11 56 bf 6d a1 c0 6c e3 2a d6 1a e7 bc c1 40 87 b8 8d // c7 64 e7 b9 b2 75 1f ae 07 21 aa 1d d5 e6 52 08 b2 3c 35 ab 7b 7d f2 // 38 9b ba 11 40 fa 08 94 ed f3 34 19 65 21 dd 77 d2 4f b7 b2 e9 11 5f // f5 f9 ba 0a 09 26 d4 35 c6 d7 81 b6 a6 4c e3 e9 53 70 34 00 72 a7 ed // c7 02 6c e5 59 cd bd 02 9e d3 ec 06 0e 77 b3 46 85 98 60 e1 f7 bd cd // 18 a8 35 70 7f 72 84 f6 2b fc a7 62 03 39 d2 9d 45 54 ca 46 f1 9b 8c // 5d 08 64 fa 93 11 ee eb 15 a6 5f 32 12 c2 15 9f 42 be d8 f9 08 81 a3 // 8b 4d 69 72 2b eb 08 2d c9 07 6e ae 17 32 21 71 49 52 79 60 55 c7 d1 // d5 49 4d 8a 49 8e e8 15 0d 13 51 6c 9c ba 6f e7 bf 02 40 1c 21 4c 70 // 3c 0c 01 01 14 8d 70 8c 3a ae d6 ac 0a fc 70 2a 5f db 3a f3 d9 1e 53 // 5f 4c 25 80 90 eb 2b c7 5d d7 a5 c7 56 75 96 f4 20 48 3d 5d 91 ef ae // c5 d2 64 c5 de 94 4f ab 5a 58 3f 28 f8 80 ba a9 23 af ba 00 0c b1 92 // 66 9c 8b d1 b3 b0 00 35 65 fe b6 12 17 4a 17 45 b9 01 ec d1 3b 68 aa // 32 32 8a 47 75 d8 9c ad eb 38 33 72 6c 43 ba cd 85 5f c1 95 ba a5 17 // de e6 43 29 ab 38 1b 5f 0e 9b d0 66 1e a2 cd ea 77 a2 0b df 91 93 e6 // b0 59 02 6e 60 3b f5 5b 97 0e e5 6d aa a4 92 c1 02 38 d6 65 eb 88 b8 // dd a6 e3 fe d3 2c bb 4e 86 06 fd a0 c0 8d eb c6 3f c9 da 77 e8 24 5d // df 75 69 9b e9 81 a3 bf 0e 91 08 60 30 3d 7d a7 dd b6 eb 28 fb 52 10 // 1f 08 2d 47 a5 cc 91 4f 1e ac df 9c 0b 71 b2 4c b4 13 3e 03 84 5d d6 // da f9 e7 41 64 54 62 57 90 86 2b 28 9f 85 30 9b 32 e9 d7 3d e5 34 d8 // 42 0b 12 d7 d3 a0 5f f5 85 ef de 4f 64 b1 7c d5 8b 0f 3e 11 43 22 03 // 3d 20 bd 37 d6 71 11 1e f3 c1 6d 50 e9 5e 91 63 bf 17 eb 87 7b 3a e9 // e6 d9 be bb 01 94 92 49 1a dc 0b ad cf 66 c5 e0 08 89 a0 bb 84 b7 ec // b3 f7 4e b5 90 e4 d4 7c 74 8b ff 90 b7 68 19 75 47 15 7d 13 b5 37 3a // 55 4a eb 11 88 e4 a8 76 4d e4 b7 af b6 93 f5 9d e7 3b 9e e3 9b c6 9f // ab 63 f4 fc 8a dc e7 e1 01 66 5a 65 e2 ef f0 89 40 0f 1c 8a 21 a8 82 // 2d d0 ce 5a e8 05 4f 79 d8 e9 a8 b7 c5 e4 b3 61 9e fe 34 a6 1d 3d 2c // 45 7b 23 b1 1c d7 96 9e fa 71 08 7a 7a b4 ad f6 14 f3 a9 63 fa 7b ca // 50 dc df f7 83 32 82 7b 93 f8 28 a6 d7 80 c3 e2 0b d6 18 92 f9 db 8b // 79 60 54 f3 77 c0 7a 1a bf 25 36 37 b1 e7 dd c0 5d c1 2a 92 d5 af 79 // 2b 8e 20 01 83 1f 1e 86 8a d3 73 1e 32 0e e0 fb 06 22 30 c2 e0 08 5e // f4 ab d9 fa b8 71 7d e8 f6 b7 2e 66 0b b2 5c 5c 33 11 30 80 a5 0f 4c // aa 71 e5 b4 bf cc e1 79 db c1 b9 e0 cf 1e 21 2c fd 59 c8 62 70 33 7f // 4d 76 b3 cf f7 ec ca ef f4 74 ab fb d6 ea 02 f3 b5 45 41 58 95 f0 f0 // dc 73 dd e5 c3 7b 32 d2 7f a5 b0 13 6b 52 17 89 d1 92 ca 3d 20 94 09 // 24 78 a3 d6 bd 91 ac 4b 00 f3 74 1a 76 5b a3 ee 9f f0 e5 10 01 54 e8 // 81 b2 43 84 b0 41 bd d6 03 15 df 1b 1d 77 27 ca aa f9 9d 44 72 ba 69 // 92 7e fd 30 1e 5e f8 4a 14 a7 c1 54 4f 1e a3 6b 36 7c 01 c2 55 c9 4f // 14 92 29 ff 33 d8 f5 59 49 2c 81 3f 33 52 af 35 dc 83 3b e3 58 93 6d // c9 62 91 98 8a cb ac 71 24 ac e7 38 3d 89 cc 46 10 e6 b3 fe c3 48 23 // b2 50 b7 e2 3c 29 b2 ce be b6 67 07 0b b7 0e 33 f1 07 76 5b df 7f f6 // c1 61 38 1c 25 9f b7 c9 1e 61 41 df 2e bd fd 1f ee 6d be 5e 98 38 c5 // 94 45 21 57 5d ef bf fc d6 10 b4 c4 fa da 4f ec 10 66 0f 5c 95 6b 67 // e5 7e b1 46 c3 6d a0 53 c4 eb 28 c6 f7 1d 92 d4 40 b3 a0 54 0b a1 23 // 31 66 aa 97 65 03 bc 0b f1 ee 26 4f 74 a2 26 59 b1 8f df 5f ea 81 24 // 82 44 a1 dd 2e f7 f8 08 d1 b0 e4 e9 34 1a 99 a4 b0 26 77 1b 05 12 63 // 15 5e ad 1b aa bc 8a e4 eb ae 5d 2a 61 a5 32 2a 33 a5 83 e7 73 dc 55 // 53 92 1c bc 8a 12 37 97 1d b4 7c 60 25 76 61 f7 2f f4 15 55 d2 9c a1 // 16 14 00 d5 c1 8b 91 1a 04 04 51 e5 85 ab 8d 30 8d 8d 97 74 40 4e 64 // f5 ff 67 81 eb cf 2b 79 40 02 16 f2 20 c7 60 d5 3f ca 54 4e a5 4a 91 // 18 a9 1f 0a d7 5d e1 b8 79 89 9d 9a 46 64 67 e4 59 a5 77 25 79 18 24 // 8d 27 b3 e8 10 07 48 ad d7 e9 ec c0 43 9a c3 9b df c4 af 7d 18 32 a6 // d2 c5 69 c1 eb 49 d8 0f 8a 39 88 dd 8d da 0c c6 d5 b8 69 9e 78 27 1d // d0 87 3e b5 fe c5 7f 7f 0c 74 38 20 d1 0a 44 54 fc 93 a9 cd 0e bf d6 // 04 53 03 b2 a6 39 0b 2f 8f 4b b6 2f e3 93 99 91 d7 28 63 90 8c 56 31 // 0a a5 79 76 6b 56 e4 03 51 70 7e e7 c8 b7 74 1b 6f ca c7 59 69 18 91 // 74 25 61 7e 35 84 c4 d5 c8 a0 30 46 5b 35 ae fe e6 74 54 98 a0 77 af // be 29 fd 1b 39 93 90 ec 48 29 c5 73 9e 68 97 f4 04 fb ca 92 7c 6a 60 // 78 06 f0 9b 14 6b 53 6d 76 0c 16 18 de f3 71 65 61 4f 9d 0e 33 61 3b // de b7 0f 91 60 7f 25 b0 e0 72 ec 14 c7 27 e1 e0 45 c6 10 4c 11 ea eb // d8 b5 40 d6 5c 5d 99 42 d5 62 1f 6b 15 50 08 c9 47 bf f3 14 08 6a ba // 99 75 a1 bd 44 7e 23 aa fc 44 3f 04 ac fc 5c 00 9a a6 3e 06 33 1f 7b // ad c5 fd d2 9e 8a 8a f1 82 c8 16 aa 68 0a e6 35 fc 7c 2e 04 a8 45 2b // 0f da b1 42 4b 1c 5b a7 2a d6 18 c0 cb fe 23 a7 c8 2c da 68 26 15 87 // 65 56 7f 55 10 4c 8f 51 2c a2 6d 36 c5 08 90 5e f8 c2 53 9e 10 bb 90 // 65 33 a1 02 ba ef cc cb 8e 9a 6d d6 ec 87 5f 55 3f 33 6c bd 3d 90 8d // 7f ed 4a f1 e3 8d 0e ff 52 96 e4 50 73 14 51 16 5e 4a 0d 99 11 b1 31 // 84 9f 48 eb 7a ad 50 fe dd 89 19 ac 38 95 6a 7e 23 87 7a d3 54 54 1e // 7b 55 72 31 93 27 39 68 0b ef 7a d0 55 43 64 13 95 77 87 64 83 24 d7 // 6a 25 a4 f7 fb a5 be 31 da 84 e6 49 3a c7 69 6a e5 40 55 88 3e fe 0d // 2e e8 ac 06 0d ca 17 b8 3c 10 5a 1b fd c7 53 5a 1a 25 50 61 2d 2b b1 // b7 ba 31 b4 8f 3f 5d 6e 39 49 6b 82 bd 73 be 09 55 e3 9b cf c2 e9 5a // 70 00 0d bf b9 f1 68 31 cf 2b ae b6 e5 f2 7c 7e f8 f4 18 18 c3 d6 46 // f0 6e b1 c8 2e e4 b8 1b 59 ff 8e 79 bd 24 b8 76 9d 50 d4 f8 0d ea 73 // 33 95 ba 7f 07 d8 9b b3 4b 7e 1e e7 0a bd 08 bf 1e ad 4a 7c f5 60 5d // cf 7c a9 e9 3e 9e 16 67 24 c1 fd 8b 29 b3 fc 06 e1 67 17 9e 57 77 46 // b5 e5 8c 59 a6 7b 48 b8 c7 de b1 b0 68 cf 20 35 57 8a 44 2d ff 7a 05 // 69 9f 49 72 43 b4 13 85 fa 7a ae 12 3e 50 3b b5 6b 14 79 7a 3f 30 e4 // b4 7f 6d d3 ae d0 ae 17 f7 46 d9 ba d8 4a 93 e5 a8 9c eb b9 62 2d 22 // f8 40 82 09 67 7c 02 40 c9 08 1d a8 34 21 4c f9 53 60 c8 57 9b 26 7d // 75 e8 24 cc 12 d9 fe 3a a6 5a 97 67 c6 3b b1 92 93 12 6f 8d 9a 09 37 // 90 8d 7c e7 94 6b 10 3d 7b 45 6d e3 e0 51 97 3a 8c 8f 6f 8c 15 b0 63 // 7a 29 3a e2 7f 96 79 72 ad 71 ec b4 d9 50 a9 14 37 f6 cb e2 fe 15 67 // 62 8e 26 d1 c2 d2 e9 e2 32 7c 9d bb 25 8e 77 2c bc 0b 13 1f e4 9e 76 // 57 ad f6 63 fb 61 a8 19 16 5d f8 6c 1a 0d 60 6b 85 39 e3 5d 09 4c a5 // 3a 94 46 08 b9 67 32 f0 b4 9b db c7 07 fe d0 f9 a8 ee 5d 60 48 5c e1 // 60 e7 1d 61 c3 98 90 09 d2 e3 72 48 96 7a 0a e4 be cb c3 7c 3a 92 fa // f1 07 e5 d6 5a 39 ca 67 45 c3 28 9e c4 26 e6 3b 49 54 bb 86 ba 91 88 // b5 a7 16 ee f6 ce 11 d1 2c 15 94 1d 07 f6 15 ce 1f 82 42 1c 13 08 53 // 58 78 b0 90 b3 fe 22 f3 3e 4e 2b ed f7 b6 30 d5 21 69 06 fd 75 4a 6b // f7 56 98 db f1 60 6d ee 42 3d a0 12 3a b9 e9 7a 0b 8f cf 90 2f 06 8b // 99 c5 74 c4 93 68 19 d8 38 99 55 ee fb 0e 50 94 23 2a c1 ea 4b d5 ab // 2c 67 19 31 a7 64 97 27 f4 45 28 fb 84 77 a0 7e 8d ec 9f 1c e1 00 90 // 38 ab c9 5a 4a 14 57 1f 14 65 f0 df 25 06 3c bf 8a f3 39 7d 27 61 cf // 4c fe b9 01 ec 81 c6 40 d3 54 a5 1c 45 cb 1d 05 4a 09 05 e2 33 e4 69 // 35 d6 67 61 69 96 ff c1 92 8f b4 1b 23 b8 b0 d2 51 bf 22 5d a1 e8 be // cd 66 46 e8 6e 9f 9b f7 7a 48 f5 0c 72 93 04 fa 15 45 5c ff 56 91 0d // 5b 13 82 58 40 16 c8 07 79 be b8 02 ad 38 2d ba ce 81 a6 4c e2 a5 91 // 1f cd ee 74 a5 a2 a5 5c a2 07 7a 18 a4 77 bc 2b ae 09 bd a9 a8 ec d7 // 53 d9 31 be 7f 5d 86 ff e4 b4 94 98 03 78 38 74 a1 13 90 17 2f 64 3b // a6 6d 6c 62 a6 24 23 7f 91 3b 8b cf 4d 27 5a dd cf 5f 87 71 40 83 6e // 98 73 1d cf 3d ba 43 8b 4a c6 33 da be 5f 08 1d 64 9a 0c 68 82 80 4b // d7 f7 42 d4 06 e1 95 17 59 f0 9e 75 d3 b1 0b 17 48 f7 e5 3c 4a 2d 43 // e4 c8 c0 a3 1c 66 99 cf f3 64 ad 99 06 66 de d5 6f 46 4f 59 3f a6 69 // 6d 5c cf ac a1 6f 85 59 e0 39 f6 0e 52 3c bc 4d 34 d9 46 6a f3 83 14 // ed 2f bd f3 0a ce c8 1d 02 1e 47 bf c8 f1 6f 3b bd f1 6a ec f4 32 db // 4e e5 d4 27 09 2b f0 cc 99 bb b3 42 d1 5c e3 03 1c d9 3e 00 9d 9c a2 // 12 fc 2a 12 31 20 29 bd 53 b4 45 2d ba e5 2a 32 9a 1c 2d 2b b0 47 98 // 80 a8 2c 2b 66 06 5e a6 70 ed bc 3f dc 94 dc d6 71 04 02 f9 10 ec d2 // 01 55 4d be d3 5b bc cd 69 10 c6 54 8c 91 53 90 2f 15 21 2e db f2 7d // eb d1 5e b0 70 c2 ec 19 8e fb 25 b2 8f aa 6b 66 c2 be 49 d0 bf f3 3e // 1f eb e3 c0 e2 41 be e1 3d 3e 0c 7e 7c 5a 7b c3 07 e3 ff 17 6e 74 6a // 32 a0 cc 11 dc f1 83 e8 b0 ae 0e 78 3f 93 f8 18 7b 12 67 e1 e1 0a 98 // da 22 79 0e 4f c7 01 c5 d4 b0 66 ed f3 bf d3 d6 d0 c8 43 74 75 bc 68 // bb 42 2a e9 d3 df aa 30 fd 89 58 21 06 3f c5 f6 0e 76 43 d7 02 d0 b6 // b9 eb 86 1b 12 10 78 b5 ec 5f df 8e 66 23 45 72 4d 7d f4 94 5a 53 86 // dc 77 90 ef 5f de ae 41 79 49 92 55 29 25 39 b3 59 36 c1 b4 00 6a 76 // dd 84 d9 57 ed 92 4d 4e 4a 62 b7 e3 00 51 5a 83 c5 2d cc 31 3c e1 e3 // 77 9e 4e 1a 8d 83 07 89 ed fe c4 fd 35 c3 3d d6 28 92 e2 cb 0e 81 a2 // b3 b0 ae 16 5c 70 95 45 be f3 91 f4} (length 0x1000) // } // } // size: len = 0x1015 (8 bytes) // flags: setxattr_flags = 0x0 (8 bytes) // ] memcpy((void*)0x2000000002c0, "./file1\000", 8); memcpy((void*)0x200000000300, "trusted.overlay.upper\000", 22); *(uint8_t*)0x200000001240 = 0; *(uint8_t*)0x200000001241 = 0xfb; *(uint8_t*)0x200000001242 = 0x15; *(uint8_t*)0x200000001243 = 4; *(uint8_t*)0x200000001244 = 4; memcpy((void*)0x200000001245, "\xd9\xdc\xfb\xcf\xfe\x63\xb6\x57\xb6\x05\x6d\xc3\x0d\x32\x9c\x5a", 16); memcpy( (void*)0x200000001255, "\x4e\xcd\xf6\x8f\xeb\xc8\x98\x9f\x41\x59\x2b\xec\xa0\x0c\x21\xa6\x2b\x00" "\x73\xe5\xd0\xf0\xc1\xe2\x6a\x57\xf4\x75\xfa\x29\x68\xdb\x45\x27\x89\xd5" "\x94\x3f\x46\x82\xcb\xdc\x2e\x8f\x85\x0c\x98\xe3\x7e\x5e\x85\x32\xdc\xa2" "\x8a\x76\xb8\x0b\x20\x8b\xd1\x67\x32\xe7\xfa\xf6\xf7\x2b\xf0\xf1\x91\x12" "\xa7\xac\x9d\xdf\xe5\x11\xec\xed\x86\x5a\xff\x52\x07\xf6\xfe\xc2\x1a\x7f" "\x4f\x47\x20\x6a\x91\x1e\x40\x78\xa2\x44\x99\x06\x97\x5e\x04\x35\x7a\x71" "\xe2\x5f\x69\x1a\x01\xb9\xdf\x4a\x38\x69\x0d\xf4\x21\x55\x56\xd4\xad\xe1" "\x1e\x67\x40\xb9\xb7\x73\x26\xfd\xe3\x97\x15\xeb\xfa\xa6\x90\x9a\x6f\xfa" "\x4e\xb6\xd5\x26\x5d\x24\x0e\xe3\x10\xe9\xb6\x04\x74\x60\x27\xe2\xc4\xc0" "\x4a\x24\x1c\xe8\x8a\x9d\xda\x7c\xcf\x08\x3a\x2e\xf1\x48\xcb\xee\x92\x54" "\x84\x52\xbe\x82\xde\x91\x06\x36\x66\x3b\x8c\x27\x0f\x23\x1a\x43\x11\xa4" "\x04\x10\x28\x27\xb1\xba\x70\x77\x08\x3c\xad\xa9\x69\x5a\x13\xd1\xe1\x38" "\x2c\xc0\xf4\x29\xb0\x1f\x43\xfe\x2c\x46\xb0\xe0\x8d\x95\x09\x54\x05\x77" "\x01\xc7\x80\xd2\x2c\x7c\xd1\x1b\xfc\x39\x64\xe7\x29\x50\xf3\x42\x0e\x04" "\xe8\x18\x96\xd8\x08\x29\x62\xd8\x1e\xc7\x2c\x2b\x6d\xe9\x4c\x91\xce\x56" "\xd5\x65\x5a\xf8\xd2\x86\xc4\xd7\x43\x34\x41\xf2\xff\xc6\xe8\x2a\x17\xc1" "\x0c\x70\x93\x0d\x61\x43\xe3\x30\x2e\x99\x4d\x7b\x20\x80\x80\x9e\x18\xb1" "\xfe\x77\xf7\x8a\xcf\x1f\xc2\x1c\xb2\xf5\xd8\x37\xeb\xeb\xd3\xc0\x36\x5f" "\xfe\x3f\xb1\x16\x8d\x9d\x85\x7c\x55\xc2\xa3\xc5\xa7\xcf\x39\x3e\x40\xae" "\x28\x9c\x14\xbd\x82\x32\x29\xa8\xf4\x1e\xd0\xca\xaf\xf7\x5b\xa2\x45\xba" "\x3d\xa6\x7e\x03\x12\xb7\x51\xa7\x5e\xc4\x18\x03\x30\x90\x25\x41\x0e\x51" "\x3d\x0b\x4c\x2f\x5e\x01\x52\xd7\x32\xd9\x28\x79\x2d\x6e\x6c\x21\xa1\x7c" "\x0a\x40\xc5\x9d\x63\xc1\x28\x7c\x18\xa5\x1f\x75\x3b\xe3\x86\x22\x1d\xb5" "\x71\x57\xdf\x32\x87\x3d\x00\x0d\xf0\xbd\x9c\x19\x59\x13\x40\x6e\xf0\xfd" "\x4d\xcf\x66\x36\x90\xec\xe0\xa4\xa9\xda\x7d\x0f\x2c\x6c\x2a\xc3\xaf\x61" "\x4b\x9d\xc4\x77\xf4\x20\xc4\x21\x35\x2c\x2d\xb0\x1e\x49\xc6\x85\xc2\x24" "\x53\xd5\x92\xbd\x5d\xb6\xae\x37\x98\x9a\x78\xdd\x79\x15\x91\x4d\x90\x04" "\x4f\x36\x68\xff\x91\xb3\x9d\x49\xec\xee\xa5\x12\xc7\xb2\xd3\x87\xae\x53" "\x41\x2e\xe9\x25\xe2\xe1\xb7\x09\x73\x69\x0e\x15\xed\x5f\x49\x59\xe3\xe6" "\x10\xd0\x1e\x48\x19\xa2\x69\x39\x96\xfa\x02\x4b\x19\xa9\xb1\x46\x20\xb5" "\x6a\x25\xd6\xef\xbe\x33\xc2\xbf\x50\xf7\x5d\x6e\xa8\x5b\x93\xf5\x94\x8b" "\x39\x15\x23\x98\xe3\x08\xb9\xab\x9c\x2d\xc1\xb8\x1e\x6d\x4f\xfd\x3d\xde" "\x41\x3e\x9a\xa0\x9a\x75\xf6\x2a\x48\x4a\xc5\xc5\xdd\xb1\x14\xe7\xba\xd1" "\x23\xed\xb7\xb4\x44\x1e\xd9\x9b\xd0\x22\xd6\x7a\xbc\xf2\x92\x9e\x5f\x24" "\x07\xd9\x4e\x6a\xf6\x3f\xaa\x23\x3e\x4a\x4f\x1f\x1e\x44\xaf\x7f\xe8\x1d" "\x84\xaf\x12\x31\x1b\x78\x2c\x7b\x92\x97\xcf\xe8\x99\xac\x43\x77\x13\xf0" "\x1d\x3c\xe1\xc3\x17\xe4\x13\xdd\x5f\xd7\x09\x0f\x7c\xb3\xf0\xe5\x7a\x8d" "\xac\x72\xe3\x3d\x28\xbf\x94\x5b\xed\x18\x6e\xa9\xb8\xc7\x21\xd9\xc2\x6b" "\x33\x09\xa2\xf7\xb1\xde\x85\x8f\x34\xfe\xcf\x0a\x3d\xeb\x60\x7a\x7d\xd2" "\x8c\x31\x76\xf0\x13\xff\x3d\x27\x4a\xe4\xda\x23\x4c\x60\x6f\x96\x86\x2b" "\x7d\x8f\xab\x84\x07\xd1\x6b\x16\x76\x1b\xf5\xe3\x0e\x4c\x17\x5e\x03\x7e" "\xf9\xe8\x22\x36\x6c\xa8\xa8\x58\x5d\x3e\xd1\x07\x94\xc6\x93\x4e\x3c\xef" "\x72\x9e\xe7\x5f\x1f\x1f\x03\x06\x13\xc5\x2b\xb1\xae\xf0\x36\xe3\x9a\x5e" "\x24\x88\xd0\x10\x37\x24\x53\xd3\x2a\x83\xf8\x05\xbe\x93\x67\xac\xe1\x28" "\xeb\xea\x1c\x77\x0c\xab\x6f\x29\xc6\x83\x7c\xa8\x9f\x06\x5b\x42\xd1\x63" "\x01\x91\x2d\x72\x62\x84\x99\x27\x8d\xd5\x91\x31\x30\x8a\x2f\x9d\x84\x43" "\x14\xd8\x89\x65\x5c\xd3\x78\x71\x9e\xc2\x00\xa2\xa4\xc3\x7f\x9e\x40\x7b" "\x79\x0f\xf9\x3d\x77\xfe\x88\xc3\xc6\xea\x6c\x56\x4f\xad\xdd\x74\x8a\x1c" "\x11\x1d\xa9\x42\xb5\xe3\xe0\xb2\x08\x26\x2d\x9e\x78\xac\xe0\x16\xea\x65" "\x24\x23\xfb\x4a\x0e\x8f\x5d\xf6\x05\x92\x4e\x55\x0b\x5b\x90\xb2\x51\x10" "\xc3\xcb\x4e\xb3\x49\x60\xac\x3b\xf9\xad\x19\xaa\x48\xce\x5f\x91\x36\x12" "\x96\xd6\x0c\xcf\x31\xba\xfa\x03\xd0\xe6\x9d\x96\x37\x08\x4e\x2d\xc9\x7e" "\x83\x00\x09\x02\x35\x87\x02\xd0\x8e\xcd\x99\x2e\xc7\x97\x46\xcd\x84\xa3" "\x0b\xeb\x13\x28\x28\x72\xc1\x60\xd6\xe1\x31\x79\xb9\x0c\xb1\xbb\xef\x72" "\x31\xcf\x7a\xea\xf5\x8e\xf3\x43\x90\x62\x68\x59\x36\x17\x2e\x98\x8f\xcd" "\x97\xd8\x03\xb0\x69\xd4\xfd\x34\x40\xd8\x38\x17\x97\x00\x23\xd3\xe9\x7b" "\x20\x2b\xfb\x11\x8e\x41\xab\xa8\x8b\x2f\x7a\x7a\xf4\x43\x5f\x74\xf9\x1b" "\x8c\x3c\xfd\x62\x5b\x84\x79\x79\x33\x44\x74\x04\xc2\x79\x80\x15\x27\xc6" "\xd0\x7b\x02\xce\x63\x4d\x20\x63\x90\x7e\x97\xda\xe4\x43\xa3\x82\x0a\x5c" "\xcd\xa6\x49\x20\x17\x4a\x27\x2a\xf4\x36\xaf\x88\xa7\xcf\x7d\x32\xc4\xb9" "\xf9\x80\x9b\x99\x2b\xa6\x4f\xdb\x9a\x2b\x75\x1d\xd9\xe0\x67\x99\x89\xc0" "\x50\x22\x8d\x01\xc6\x2f\x78\x24\x86\x4c\xf8\x4c\x16\x41\xd1\x8e\xe8\x62" "\x80\xf8\x85\xed\x79\x08\x53\x65\x5e\xd2\x1d\xa9\xd0\x7c\x27\x6e\xf5\xf7" "\x17\xf3\x55\xa7\x17\xab\x8d\xcf\x8d\x92\xf8\x29\xdc\x97\xc4\x4f\x9b\x9e" "\x4a\xac\x25\x75\x1b\x59\xb9\xb6\xeb\xf0\xeb\x9a\x1d\x87\x6b\x2f\xf3\x74" "\xbb\x0a\xbc\x60\xf9\x10\x6c\x67\xce\xfb\x39\x37\x8b\x5a\xe8\xe2\x6e\xf9" "\x07\x2d\x3c\xde\x21\xd2\x94\x0f\x6b\x0f\xea\x8a\xb8\xc1\x84\xee\xbd\x93" "\x4c\xa3\x19\x53\x23\xe0\x7c\xf1\x79\x95\x6e\xee\xf2\xa1\x07\x16\x01\x3c" "\x0c\x2f\xc7\x49\x36\x62\x48\x47\xb7\x71\xdf\xbf\xfe\xb6\x29\xcb\x3e\xcc" "\x33\x1c\xed\xc4\x66\x49\xd2\x8f\x3a\x37\xbb\xa3\x53\x85\x95\x17\xdb\x46" "\x7d\xa3\xab\xf7\xb0\x0d\xbf\xe5\x87\xee\x19\xba\x65\xe5\x89\x7b\x3d\x4c" "\x92\x7e\xd6\x0d\x44\x69\xbb\x47\x08\xcc\x81\x4e\x9a\xae\x83\x97\x3a\x10" "\x53\x7e\xaa\xc0\x3a\xcc\x6d\x98\x70\xd9\xf4\xb1\x16\x00\x35\x38\x69\x93" "\x14\x64\xee\x1b\x60\xdc\xf1\xaf\xad\x8f\xfa\x16\xaa\x15\x69\x90\xc7\xaa" "\x54\x76\x73\x43\xc1\x3f\x04\x25\x96\x3f\x89\xf7\xb4\xa8\x71\xca\x05\xea" "\xdb\x6d\x11\x56\xbf\x6d\xa1\xc0\x6c\xe3\x2a\xd6\x1a\xe7\xbc\xc1\x40\x87" "\xb8\x8d\xc7\x64\xe7\xb9\xb2\x75\x1f\xae\x07\x21\xaa\x1d\xd5\xe6\x52\x08" "\xb2\x3c\x35\xab\x7b\x7d\xf2\x38\x9b\xba\x11\x40\xfa\x08\x94\xed\xf3\x34" "\x19\x65\x21\xdd\x77\xd2\x4f\xb7\xb2\xe9\x11\x5f\xf5\xf9\xba\x0a\x09\x26" "\xd4\x35\xc6\xd7\x81\xb6\xa6\x4c\xe3\xe9\x53\x70\x34\x00\x72\xa7\xed\xc7" "\x02\x6c\xe5\x59\xcd\xbd\x02\x9e\xd3\xec\x06\x0e\x77\xb3\x46\x85\x98\x60" "\xe1\xf7\xbd\xcd\x18\xa8\x35\x70\x7f\x72\x84\xf6\x2b\xfc\xa7\x62\x03\x39" "\xd2\x9d\x45\x54\xca\x46\xf1\x9b\x8c\x5d\x08\x64\xfa\x93\x11\xee\xeb\x15" "\xa6\x5f\x32\x12\xc2\x15\x9f\x42\xbe\xd8\xf9\x08\x81\xa3\x8b\x4d\x69\x72" "\x2b\xeb\x08\x2d\xc9\x07\x6e\xae\x17\x32\x21\x71\x49\x52\x79\x60\x55\xc7" "\xd1\xd5\x49\x4d\x8a\x49\x8e\xe8\x15\x0d\x13\x51\x6c\x9c\xba\x6f\xe7\xbf" "\x02\x40\x1c\x21\x4c\x70\x3c\x0c\x01\x01\x14\x8d\x70\x8c\x3a\xae\xd6\xac" "\x0a\xfc\x70\x2a\x5f\xdb\x3a\xf3\xd9\x1e\x53\x5f\x4c\x25\x80\x90\xeb\x2b" "\xc7\x5d\xd7\xa5\xc7\x56\x75\x96\xf4\x20\x48\x3d\x5d\x91\xef\xae\xc5\xd2" "\x64\xc5\xde\x94\x4f\xab\x5a\x58\x3f\x28\xf8\x80\xba\xa9\x23\xaf\xba\x00" "\x0c\xb1\x92\x66\x9c\x8b\xd1\xb3\xb0\x00\x35\x65\xfe\xb6\x12\x17\x4a\x17" "\x45\xb9\x01\xec\xd1\x3b\x68\xaa\x32\x32\x8a\x47\x75\xd8\x9c\xad\xeb\x38" "\x33\x72\x6c\x43\xba\xcd\x85\x5f\xc1\x95\xba\xa5\x17\xde\xe6\x43\x29\xab" "\x38\x1b\x5f\x0e\x9b\xd0\x66\x1e\xa2\xcd\xea\x77\xa2\x0b\xdf\x91\x93\xe6" "\xb0\x59\x02\x6e\x60\x3b\xf5\x5b\x97\x0e\xe5\x6d\xaa\xa4\x92\xc1\x02\x38" "\xd6\x65\xeb\x88\xb8\xdd\xa6\xe3\xfe\xd3\x2c\xbb\x4e\x86\x06\xfd\xa0\xc0" "\x8d\xeb\xc6\x3f\xc9\xda\x77\xe8\x24\x5d\xdf\x75\x69\x9b\xe9\x81\xa3\xbf" "\x0e\x91\x08\x60\x30\x3d\x7d\xa7\xdd\xb6\xeb\x28\xfb\x52\x10\x1f\x08\x2d" "\x47\xa5\xcc\x91\x4f\x1e\xac\xdf\x9c\x0b\x71\xb2\x4c\xb4\x13\x3e\x03\x84" "\x5d\xd6\xda\xf9\xe7\x41\x64\x54\x62\x57\x90\x86\x2b\x28\x9f\x85\x30\x9b" "\x32\xe9\xd7\x3d\xe5\x34\xd8\x42\x0b\x12\xd7\xd3\xa0\x5f\xf5\x85\xef\xde" "\x4f\x64\xb1\x7c\xd5\x8b\x0f\x3e\x11\x43\x22\x03\x3d\x20\xbd\x37\xd6\x71" "\x11\x1e\xf3\xc1\x6d\x50\xe9\x5e\x91\x63\xbf\x17\xeb\x87\x7b\x3a\xe9\xe6" "\xd9\xbe\xbb\x01\x94\x92\x49\x1a\xdc\x0b\xad\xcf\x66\xc5\xe0\x08\x89\xa0" "\xbb\x84\xb7\xec\xb3\xf7\x4e\xb5\x90\xe4\xd4\x7c\x74\x8b\xff\x90\xb7\x68" "\x19\x75\x47\x15\x7d\x13\xb5\x37\x3a\x55\x4a\xeb\x11\x88\xe4\xa8\x76\x4d" "\xe4\xb7\xaf\xb6\x93\xf5\x9d\xe7\x3b\x9e\xe3\x9b\xc6\x9f\xab\x63\xf4\xfc" "\x8a\xdc\xe7\xe1\x01\x66\x5a\x65\xe2\xef\xf0\x89\x40\x0f\x1c\x8a\x21\xa8" "\x82\x2d\xd0\xce\x5a\xe8\x05\x4f\x79\xd8\xe9\xa8\xb7\xc5\xe4\xb3\x61\x9e" "\xfe\x34\xa6\x1d\x3d\x2c\x45\x7b\x23\xb1\x1c\xd7\x96\x9e\xfa\x71\x08\x7a" "\x7a\xb4\xad\xf6\x14\xf3\xa9\x63\xfa\x7b\xca\x50\xdc\xdf\xf7\x83\x32\x82" "\x7b\x93\xf8\x28\xa6\xd7\x80\xc3\xe2\x0b\xd6\x18\x92\xf9\xdb\x8b\x79\x60" "\x54\xf3\x77\xc0\x7a\x1a\xbf\x25\x36\x37\xb1\xe7\xdd\xc0\x5d\xc1\x2a\x92" "\xd5\xaf\x79\x2b\x8e\x20\x01\x83\x1f\x1e\x86\x8a\xd3\x73\x1e\x32\x0e\xe0" "\xfb\x06\x22\x30\xc2\xe0\x08\x5e\xf4\xab\xd9\xfa\xb8\x71\x7d\xe8\xf6\xb7" "\x2e\x66\x0b\xb2\x5c\x5c\x33\x11\x30\x80\xa5\x0f\x4c\xaa\x71\xe5\xb4\xbf" "\xcc\xe1\x79\xdb\xc1\xb9\xe0\xcf\x1e\x21\x2c\xfd\x59\xc8\x62\x70\x33\x7f" "\x4d\x76\xb3\xcf\xf7\xec\xca\xef\xf4\x74\xab\xfb\xd6\xea\x02\xf3\xb5\x45" "\x41\x58\x95\xf0\xf0\xdc\x73\xdd\xe5\xc3\x7b\x32\xd2\x7f\xa5\xb0\x13\x6b" "\x52\x17\x89\xd1\x92\xca\x3d\x20\x94\x09\x24\x78\xa3\xd6\xbd\x91\xac\x4b" "\x00\xf3\x74\x1a\x76\x5b\xa3\xee\x9f\xf0\xe5\x10\x01\x54\xe8\x81\xb2\x43" "\x84\xb0\x41\xbd\xd6\x03\x15\xdf\x1b\x1d\x77\x27\xca\xaa\xf9\x9d\x44\x72" "\xba\x69\x92\x7e\xfd\x30\x1e\x5e\xf8\x4a\x14\xa7\xc1\x54\x4f\x1e\xa3\x6b" "\x36\x7c\x01\xc2\x55\xc9\x4f\x14\x92\x29\xff\x33\xd8\xf5\x59\x49\x2c\x81" "\x3f\x33\x52\xaf\x35\xdc\x83\x3b\xe3\x58\x93\x6d\xc9\x62\x91\x98\x8a\xcb" "\xac\x71\x24\xac\xe7\x38\x3d\x89\xcc\x46\x10\xe6\xb3\xfe\xc3\x48\x23\xb2" "\x50\xb7\xe2\x3c\x29\xb2\xce\xbe\xb6\x67\x07\x0b\xb7\x0e\x33\xf1\x07\x76" "\x5b\xdf\x7f\xf6\xc1\x61\x38\x1c\x25\x9f\xb7\xc9\x1e\x61\x41\xdf\x2e\xbd" "\xfd\x1f\xee\x6d\xbe\x5e\x98\x38\xc5\x94\x45\x21\x57\x5d\xef\xbf\xfc\xd6" "\x10\xb4\xc4\xfa\xda\x4f\xec\x10\x66\x0f\x5c\x95\x6b\x67\xe5\x7e\xb1\x46" "\xc3\x6d\xa0\x53\xc4\xeb\x28\xc6\xf7\x1d\x92\xd4\x40\xb3\xa0\x54\x0b\xa1" "\x23\x31\x66\xaa\x97\x65\x03\xbc\x0b\xf1\xee\x26\x4f\x74\xa2\x26\x59\xb1" "\x8f\xdf\x5f\xea\x81\x24\x82\x44\xa1\xdd\x2e\xf7\xf8\x08\xd1\xb0\xe4\xe9" "\x34\x1a\x99\xa4\xb0\x26\x77\x1b\x05\x12\x63\x15\x5e\xad\x1b\xaa\xbc\x8a" "\xe4\xeb\xae\x5d\x2a\x61\xa5\x32\x2a\x33\xa5\x83\xe7\x73\xdc\x55\x53\x92" "\x1c\xbc\x8a\x12\x37\x97\x1d\xb4\x7c\x60\x25\x76\x61\xf7\x2f\xf4\x15\x55" "\xd2\x9c\xa1\x16\x14\x00\xd5\xc1\x8b\x91\x1a\x04\x04\x51\xe5\x85\xab\x8d" "\x30\x8d\x8d\x97\x74\x40\x4e\x64\xf5\xff\x67\x81\xeb\xcf\x2b\x79\x40\x02" "\x16\xf2\x20\xc7\x60\xd5\x3f\xca\x54\x4e\xa5\x4a\x91\x18\xa9\x1f\x0a\xd7" "\x5d\xe1\xb8\x79\x89\x9d\x9a\x46\x64\x67\xe4\x59\xa5\x77\x25\x79\x18\x24" "\x8d\x27\xb3\xe8\x10\x07\x48\xad\xd7\xe9\xec\xc0\x43\x9a\xc3\x9b\xdf\xc4" "\xaf\x7d\x18\x32\xa6\xd2\xc5\x69\xc1\xeb\x49\xd8\x0f\x8a\x39\x88\xdd\x8d" "\xda\x0c\xc6\xd5\xb8\x69\x9e\x78\x27\x1d\xd0\x87\x3e\xb5\xfe\xc5\x7f\x7f" "\x0c\x74\x38\x20\xd1\x0a\x44\x54\xfc\x93\xa9\xcd\x0e\xbf\xd6\x04\x53\x03" "\xb2\xa6\x39\x0b\x2f\x8f\x4b\xb6\x2f\xe3\x93\x99\x91\xd7\x28\x63\x90\x8c" "\x56\x31\x0a\xa5\x79\x76\x6b\x56\xe4\x03\x51\x70\x7e\xe7\xc8\xb7\x74\x1b" "\x6f\xca\xc7\x59\x69\x18\x91\x74\x25\x61\x7e\x35\x84\xc4\xd5\xc8\xa0\x30" "\x46\x5b\x35\xae\xfe\xe6\x74\x54\x98\xa0\x77\xaf\xbe\x29\xfd\x1b\x39\x93" "\x90\xec\x48\x29\xc5\x73\x9e\x68\x97\xf4\x04\xfb\xca\x92\x7c\x6a\x60\x78" "\x06\xf0\x9b\x14\x6b\x53\x6d\x76\x0c\x16\x18\xde\xf3\x71\x65\x61\x4f\x9d" "\x0e\x33\x61\x3b\xde\xb7\x0f\x91\x60\x7f\x25\xb0\xe0\x72\xec\x14\xc7\x27" "\xe1\xe0\x45\xc6\x10\x4c\x11\xea\xeb\xd8\xb5\x40\xd6\x5c\x5d\x99\x42\xd5" "\x62\x1f\x6b\x15\x50\x08\xc9\x47\xbf\xf3\x14\x08\x6a\xba\x99\x75\xa1\xbd" "\x44\x7e\x23\xaa\xfc\x44\x3f\x04\xac\xfc\x5c\x00\x9a\xa6\x3e\x06\x33\x1f" "\x7b\xad\xc5\xfd\xd2\x9e\x8a\x8a\xf1\x82\xc8\x16\xaa\x68\x0a\xe6\x35\xfc" "\x7c\x2e\x04\xa8\x45\x2b\x0f\xda\xb1\x42\x4b\x1c\x5b\xa7\x2a\xd6\x18\xc0" "\xcb\xfe\x23\xa7\xc8\x2c\xda\x68\x26\x15\x87\x65\x56\x7f\x55\x10\x4c\x8f" "\x51\x2c\xa2\x6d\x36\xc5\x08\x90\x5e\xf8\xc2\x53\x9e\x10\xbb\x90\x65\x33" "\xa1\x02\xba\xef\xcc\xcb\x8e\x9a\x6d\xd6\xec\x87\x5f\x55\x3f\x33\x6c\xbd" "\x3d\x90\x8d\x7f\xed\x4a\xf1\xe3\x8d\x0e\xff\x52\x96\xe4\x50\x73\x14\x51" "\x16\x5e\x4a\x0d\x99\x11\xb1\x31\x84\x9f\x48\xeb\x7a\xad\x50\xfe\xdd\x89" "\x19\xac\x38\x95\x6a\x7e\x23\x87\x7a\xd3\x54\x54\x1e\x7b\x55\x72\x31\x93" "\x27\x39\x68\x0b\xef\x7a\xd0\x55\x43\x64\x13\x95\x77\x87\x64\x83\x24\xd7" "\x6a\x25\xa4\xf7\xfb\xa5\xbe\x31\xda\x84\xe6\x49\x3a\xc7\x69\x6a\xe5\x40" "\x55\x88\x3e\xfe\x0d\x2e\xe8\xac\x06\x0d\xca\x17\xb8\x3c\x10\x5a\x1b\xfd" "\xc7\x53\x5a\x1a\x25\x50\x61\x2d\x2b\xb1\xb7\xba\x31\xb4\x8f\x3f\x5d\x6e" "\x39\x49\x6b\x82\xbd\x73\xbe\x09\x55\xe3\x9b\xcf\xc2\xe9\x5a\x70\x00\x0d" "\xbf\xb9\xf1\x68\x31\xcf\x2b\xae\xb6\xe5\xf2\x7c\x7e\xf8\xf4\x18\x18\xc3" "\xd6\x46\xf0\x6e\xb1\xc8\x2e\xe4\xb8\x1b\x59\xff\x8e\x79\xbd\x24\xb8\x76" "\x9d\x50\xd4\xf8\x0d\xea\x73\x33\x95\xba\x7f\x07\xd8\x9b\xb3\x4b\x7e\x1e" "\xe7\x0a\xbd\x08\xbf\x1e\xad\x4a\x7c\xf5\x60\x5d\xcf\x7c\xa9\xe9\x3e\x9e" "\x16\x67\x24\xc1\xfd\x8b\x29\xb3\xfc\x06\xe1\x67\x17\x9e\x57\x77\x46\xb5" "\xe5\x8c\x59\xa6\x7b\x48\xb8\xc7\xde\xb1\xb0\x68\xcf\x20\x35\x57\x8a\x44" "\x2d\xff\x7a\x05\x69\x9f\x49\x72\x43\xb4\x13\x85\xfa\x7a\xae\x12\x3e\x50" "\x3b\xb5\x6b\x14\x79\x7a\x3f\x30\xe4\xb4\x7f\x6d\xd3\xae\xd0\xae\x17\xf7" "\x46\xd9\xba\xd8\x4a\x93\xe5\xa8\x9c\xeb\xb9\x62\x2d\x22\xf8\x40\x82\x09" "\x67\x7c\x02\x40\xc9\x08\x1d\xa8\x34\x21\x4c\xf9\x53\x60\xc8\x57\x9b\x26" "\x7d\x75\xe8\x24\xcc\x12\xd9\xfe\x3a\xa6\x5a\x97\x67\xc6\x3b\xb1\x92\x93" "\x12\x6f\x8d\x9a\x09\x37\x90\x8d\x7c\xe7\x94\x6b\x10\x3d\x7b\x45\x6d\xe3" "\xe0\x51\x97\x3a\x8c\x8f\x6f\x8c\x15\xb0\x63\x7a\x29\x3a\xe2\x7f\x96\x79" "\x72\xad\x71\xec\xb4\xd9\x50\xa9\x14\x37\xf6\xcb\xe2\xfe\x15\x67\x62\x8e" "\x26\xd1\xc2\xd2\xe9\xe2\x32\x7c\x9d\xbb\x25\x8e\x77\x2c\xbc\x0b\x13\x1f" "\xe4\x9e\x76\x57\xad\xf6\x63\xfb\x61\xa8\x19\x16\x5d\xf8\x6c\x1a\x0d\x60" "\x6b\x85\x39\xe3\x5d\x09\x4c\xa5\x3a\x94\x46\x08\xb9\x67\x32\xf0\xb4\x9b" "\xdb\xc7\x07\xfe\xd0\xf9\xa8\xee\x5d\x60\x48\x5c\xe1\x60\xe7\x1d\x61\xc3" "\x98\x90\x09\xd2\xe3\x72\x48\x96\x7a\x0a\xe4\xbe\xcb\xc3\x7c\x3a\x92\xfa" "\xf1\x07\xe5\xd6\x5a\x39\xca\x67\x45\xc3\x28\x9e\xc4\x26\xe6\x3b\x49\x54" "\xbb\x86\xba\x91\x88\xb5\xa7\x16\xee\xf6\xce\x11\xd1\x2c\x15\x94\x1d\x07" "\xf6\x15\xce\x1f\x82\x42\x1c\x13\x08\x53\x58\x78\xb0\x90\xb3\xfe\x22\xf3" "\x3e\x4e\x2b\xed\xf7\xb6\x30\xd5\x21\x69\x06\xfd\x75\x4a\x6b\xf7\x56\x98" "\xdb\xf1\x60\x6d\xee\x42\x3d\xa0\x12\x3a\xb9\xe9\x7a\x0b\x8f\xcf\x90\x2f" "\x06\x8b\x99\xc5\x74\xc4\x93\x68\x19\xd8\x38\x99\x55\xee\xfb\x0e\x50\x94" "\x23\x2a\xc1\xea\x4b\xd5\xab\x2c\x67\x19\x31\xa7\x64\x97\x27\xf4\x45\x28" "\xfb\x84\x77\xa0\x7e\x8d\xec\x9f\x1c\xe1\x00\x90\x38\xab\xc9\x5a\x4a\x14" "\x57\x1f\x14\x65\xf0\xdf\x25\x06\x3c\xbf\x8a\xf3\x39\x7d\x27\x61\xcf\x4c" "\xfe\xb9\x01\xec\x81\xc6\x40\xd3\x54\xa5\x1c\x45\xcb\x1d\x05\x4a\x09\x05" "\xe2\x33\xe4\x69\x35\xd6\x67\x61\x69\x96\xff\xc1\x92\x8f\xb4\x1b\x23\xb8" "\xb0\xd2\x51\xbf\x22\x5d\xa1\xe8\xbe\xcd\x66\x46\xe8\x6e\x9f\x9b\xf7\x7a" "\x48\xf5\x0c\x72\x93\x04\xfa\x15\x45\x5c\xff\x56\x91\x0d\x5b\x13\x82\x58" "\x40\x16\xc8\x07\x79\xbe\xb8\x02\xad\x38\x2d\xba\xce\x81\xa6\x4c\xe2\xa5" "\x91\x1f\xcd\xee\x74\xa5\xa2\xa5\x5c\xa2\x07\x7a\x18\xa4\x77\xbc\x2b\xae" "\x09\xbd\xa9\xa8\xec\xd7\x53\xd9\x31\xbe\x7f\x5d\x86\xff\xe4\xb4\x94\x98" "\x03\x78\x38\x74\xa1\x13\x90\x17\x2f\x64\x3b\xa6\x6d\x6c\x62\xa6\x24\x23" "\x7f\x91\x3b\x8b\xcf\x4d\x27\x5a\xdd\xcf\x5f\x87\x71\x40\x83\x6e\x98\x73" "\x1d\xcf\x3d\xba\x43\x8b\x4a\xc6\x33\xda\xbe\x5f\x08\x1d\x64\x9a\x0c\x68" "\x82\x80\x4b\xd7\xf7\x42\xd4\x06\xe1\x95\x17\x59\xf0\x9e\x75\xd3\xb1\x0b" "\x17\x48\xf7\xe5\x3c\x4a\x2d\x43\xe4\xc8\xc0\xa3\x1c\x66\x99\xcf\xf3\x64" "\xad\x99\x06\x66\xde\xd5\x6f\x46\x4f\x59\x3f\xa6\x69\x6d\x5c\xcf\xac\xa1" "\x6f\x85\x59\xe0\x39\xf6\x0e\x52\x3c\xbc\x4d\x34\xd9\x46\x6a\xf3\x83\x14" "\xed\x2f\xbd\xf3\x0a\xce\xc8\x1d\x02\x1e\x47\xbf\xc8\xf1\x6f\x3b\xbd\xf1" "\x6a\xec\xf4\x32\xdb\x4e\xe5\xd4\x27\x09\x2b\xf0\xcc\x99\xbb\xb3\x42\xd1" "\x5c\xe3\x03\x1c\xd9\x3e\x00\x9d\x9c\xa2\x12\xfc\x2a\x12\x31\x20\x29\xbd" "\x53\xb4\x45\x2d\xba\xe5\x2a\x32\x9a\x1c\x2d\x2b\xb0\x47\x98\x80\xa8\x2c" "\x2b\x66\x06\x5e\xa6\x70\xed\xbc\x3f\xdc\x94\xdc\xd6\x71\x04\x02\xf9\x10" "\xec\xd2\x01\x55\x4d\xbe\xd3\x5b\xbc\xcd\x69\x10\xc6\x54\x8c\x91\x53\x90" "\x2f\x15\x21\x2e\xdb\xf2\x7d\xeb\xd1\x5e\xb0\x70\xc2\xec\x19\x8e\xfb\x25" "\xb2\x8f\xaa\x6b\x66\xc2\xbe\x49\xd0\xbf\xf3\x3e\x1f\xeb\xe3\xc0\xe2\x41" "\xbe\xe1\x3d\x3e\x0c\x7e\x7c\x5a\x7b\xc3\x07\xe3\xff\x17\x6e\x74\x6a\x32" "\xa0\xcc\x11\xdc\xf1\x83\xe8\xb0\xae\x0e\x78\x3f\x93\xf8\x18\x7b\x12\x67" "\xe1\xe1\x0a\x98\xda\x22\x79\x0e\x4f\xc7\x01\xc5\xd4\xb0\x66\xed\xf3\xbf" "\xd3\xd6\xd0\xc8\x43\x74\x75\xbc\x68\xbb\x42\x2a\xe9\xd3\xdf\xaa\x30\xfd" "\x89\x58\x21\x06\x3f\xc5\xf6\x0e\x76\x43\xd7\x02\xd0\xb6\xb9\xeb\x86\x1b" "\x12\x10\x78\xb5\xec\x5f\xdf\x8e\x66\x23\x45\x72\x4d\x7d\xf4\x94\x5a\x53" "\x86\xdc\x77\x90\xef\x5f\xde\xae\x41\x79\x49\x92\x55\x29\x25\x39\xb3\x59" "\x36\xc1\xb4\x00\x6a\x76\xdd\x84\xd9\x57\xed\x92\x4d\x4e\x4a\x62\xb7\xe3" "\x00\x51\x5a\x83\xc5\x2d\xcc\x31\x3c\xe1\xe3\x77\x9e\x4e\x1a\x8d\x83\x07" "\x89\xed\xfe\xc4\xfd\x35\xc3\x3d\xd6\x28\x92\xe2\xcb\x0e\x81\xa2\xb3\xb0" "\xae\x16\x5c\x70\x95\x45\xbe\xf3\x91\xf4", 4096); syscall(__NR_setxattr, /*path=*/0x2000000002c0ul, /*name=*/0x200000000300ul, /*val=*/0x200000001240ul, /*size=*/0x1015ul, /*flags=*/0ul); } 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; if ((reason = setup_usb())) printf("the reproducer may not work as expected: USB injection setup " "failed: %s\n", reason); use_temporary_dir(); do_sandbox_none(); return 0; }