// https://syzkaller.appspot.com/bug?id=e9a01cfb81e140261f6dced1c3aaf62ad786eeb5 // 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 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 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; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } 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 < 5; 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); if (call == 3) break; event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0) + (call == 4 ? 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++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // 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 32 00} (length 0x8) // } // flags: mount_flags = 0x2000410 (8 bytes) // opts: ptr[in, fs_options[ext4_options]] { // fs_options[ext4_options] { // elems: array[fs_opt_elem[ext4_options]] { // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x7f (1 bytes) // size: len = 0x7a5 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x7a5) // } // ] // returns fd_dir memcpy((void*)0x200000000780, "ext4\000", 5); memcpy((void*)0x200000000240, "./file2\000", 8); *(uint8_t*)0x2000000000c0 = 0; memcpy( (void*)0x200000000f80, "\x78\x9c\xec\xdd\xcf\x6b\x5c\xd5\x1e\x00\xf0\xef\x9d\xfc\x6a\xd2\xbe" "\x97\x3c\x78\xf0\x5e\x5d\x05\x04\x0d\x94\x4e\x4c\x8d\xad\x82\x8b\x8a" "\x0b\x11\x2c\x14\x74\x6d\x1b\x26\xd3\x50\x33\xc9\x94\xcc\xa4\x34\x21" "\xd0\x16\x11\xdc\x08\x2a\x2e\x04\xdd\x74\xed\x8f\xba\x73\xeb\x8f\xad" "\xfe\x17\x2e\xa4\xa5\x6a\x5a\xac\xb8\x90\x91\x3b\x99\x49\x26\xcd\x4c" "\x9a\xb4\x99\x99\x60\x3e\x1f\xb8\xb9\xe7\xdc\x73\x6f\xce\xf9\xce\xb9" "\x3f\xce\xcc\xbd\xcc\x04\x70\x60\x8d\xa6\x7f\x32\x11\x47\x23\xe2\xfd" "\x24\x62\xb8\xb6\x3c\x89\x88\xbe\x6a\xaa\x37\xe2\xf4\xda\x7a\xf7\x57" "\x57\x72\xe9\x94\x44\xa5\xf2\xfa\xaf\x49\x75\x9d\x7b\xab\x2b\xb9\x68" "\xd8\x26\x75\xb8\x96\xf9\x7f\x44\x7c\xf7\x4e\xc4\xb1\xcc\xd6\x7a\x4b" "\x4b\xcb\xb3\x53\x85\x42\x7e\xa1\x96\x1f\x2f\xcf\x5d\x1a\x2f\x2d\x2d" "\x1f\xbf\x38\x37\x35\x93\x9f\xc9\xcf\x9f\x9c\x98\x9c\x3c\x71\xea\xb9" "\x53\x27\xf7\x2e\xd6\xdf\x7f\x5c\x3e\x72\xfb\x83\x57\x9e\xfe\xf2\xf4" "\x9f\x6f\xff\xef\xe6\x7b\xdf\x27\x71\x3a\x8e\xd4\xca\x1a\xe3\xd8\x2b" "\xa3\x31\x5a\x7b\x4d\xfa\xd2\x97\x70\x93\x97\xf7\xba\xb2\x2e\x4b\xba" "\xdd\x00\x1e\x49\x7a\x68\xf6\xac\x1d\xe5\x71\x34\x86\xa3\xa7\x9a\x6a" "\x61\xb0\x93\x2d\x03\x00\xda\xe5\x6a\x44\x54\x00\x80\x03\x26\x71\xfd" "\x07\x80\x03\xa6\xfe\x39\xc0\xbd\xd5\x95\x5c\x7d\xea\xee\x27\x12\x9d" "\x75\xe7\xa5\x88\x38\xb4\x16\x7f\xfd\xfe\xe6\x5a\x49\x6f\xed\x9e\xdd" "\xa1\xea\x7d\xd0\xa1\x7b\xc9\xa6\x3b\x23\x49\x44\x8c\xec\x41\xfd\xa3" "\x11\xf1\xe9\xd7\x6f\x7e\x9e\x4e\xd1\xa6\xfb\x90\x00\xcd\x5c\xbb\x1e" "\x11\xe7\x47\x46\xb7\x9e\xff\x93\x2d\xcf\x2c\xec\xd6\x33\xdb\x15\x56" "\x06\xaa\xb3\xd1\x07\x16\x3b\xff\x41\xe7\x7c\x93\x8e\x7f\x9e\x6f\x36" "\xfe\xcb\xac\x8f\x7f\xa2\xc9\xf8\x67\xa0\xc9\xb1\xfb\x28\x1e\x7e\xfc" "\x67\x6e\xed\x41\x35\x2d\xa5\xe3\xbf\x17\x1b\x9e\x6d\xbb\xdf\x10\x7f" "\xcd\x48\x4f\x2d\xf7\xaf\xea\x98\xaf\x2f\xb9\x70\xb1\x90\x4f\xcf\x6d" "\xff\x8e\x88\xb1\xe8\x1b\x48\xf3\x13\xd5\x55\x9b\x3f\x05\x35\x76\xf7" "\xaf\xbb\xad\xea\x6f\x1c\xff\xfd\xf6\xe1\x5b\x9f\xa5\xf5\xa7\xf3\x8d" "\x35\x32\xb7\x7a\x07\x36\x6f\x33\x3d\x55\x9e\x7a\xdc\xb8\xeb\xee\x5c" "\x8f\x78\xa2\xb7\x59\xfc\xc9\x7a\xff\x27\x2d\xc6\xbf\x67\x77\x58\xc7" "\xab\x2f\xbc\xfb\x49\xab\xb2\x34\xfe\x34\xde\xfa\xb4\x35\xfe\xf6\xaa" "\xdc\x88\x78\xaa\x69\xff\x6f\xf4\x65\xb2\xed\xf3\x89\xe3\xd5\xdd\x61" "\xbc\xbe\x53\x34\xf1\xd5\x4f\x1f\x0f\xb5\xaa\x7f\xa3\xff\x07\xaa\xf3" "\xb4\xfe\xfa\x7b\x81\x4e\x48\xfb\x7f\x68\xfb\xf8\x47\x92\xc6\xe7\x35" "\x4b\xbb\xaf\xe3\x87\x1b\xc3\xdf\xb6\x2a\x6b\xdc\xff\x9b\xc7\xdf\x7c" "\xff\xef\x4f\xde\xa8\xa6\xfb\x6b\xcb\xae\x4c\x95\xcb\x0b\x13\x11\xfd" "\xc9\x6b\x5b\x97\x9f\xd8\xd8\xb6\x9e\xaf\xaf\x9f\xc6\x3f\xf6\x64\xf3" "\xe3\xbf\xd5\xfe\x9f\xa9\x3d\x1b\x7b\x7e\x3d\xb7\xbd\xde\xdb\xbf\x7c" "\x51\xfb\x57\x4d\xe3\xaf\xba\xd6\x2a\xfe\xf6\x4a\xe3\x9f\xde\x55\xff" "\x6f\x93\xa8\xd4\xb6\x79\xa0\xe8\xe6\xfd\xd9\x9e\x56\xf5\xef\xac\xff" "\x27\xab\xa9\xb1\xda\x92\x9d\x9c\xff\x1e\xd2\xd2\xc7\xd8\x9b\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x60\xf7\x32\x11\x71\x24\x92\x4c\x76\x3d\x9d\xc9\x64\xb3\x6b\xbf\xe1" "\xfd\xdf\x18\xca\x14\x8a\xa5\xf2\xb1\x0b\xc5\xc5\xf9\xe9\xa8\xfe\x56" "\xf6\x48\xf4\x65\xea\x5f\x75\x39\xdc\xf0\x7d\xa8\x13\xb5\xef\xc3\xaf" "\xe7\x4f\x3c\x90\x7f\x36\x22\xfe\x13\x11\x1f\x0d\x0c\x56\xf3\xd9\x5c" "\xb1\x30\xdd\xed\xe0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xa0\xe6\xf0\xe6\xdf\xff\xbf\x9a\xce\xb2\xd9\xb5\xb2\x9f\x07" "\xba\xdd\x3a\x00\xa0\x6d\x0e\x75\xbb\x01\x00\x40\xc7\xb9\xfe\x03\xc0" "\xc1\xb3\xbb\xeb\xff\x60\xdb\xda\x01\x00\x74\xce\xae\xdf\xff\x57\x92" "\xf6\x34\x04\x00\xe8\x98\x1d\x5f\xff\xcf\xb7\xb7\x1d\x00\x40\xe7\xb8" "\xff\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x40\x9b\x9d\x3d\x73\x26\x9d\x2a\x7f\xac\xae\xe4\xd2\xfc\xf4\xe5" "\xa5\xc5\xd9\xe2\xe5\xe3\xd3\xf9\xd2\x6c\x76\x6e\x31\x97\xcd\x15\x17" "\x2e\x65\x67\x8a\xc5\x99\x42\x3e\x9b\x2b\xce\xb5\xfc\x47\xd7\xd6\x66" "\x85\x62\xf1\xd2\x64\xcc\x2f\x5e\x19\x2f\xe7\x4b\xe5\xf1\xd2\xd2\xf2" "\xb9\xb9\xe2\xe2\x7c\xf9\xdc\xc5\xb9\xa9\x99\xfc\xb9\x7c\x5f\xc7\x22" "\x03\x00\x00\x00\x00\x00\x00\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\x9d\x2b" "\x2d\x2d\xcf\x4e\x15\x0a\xf9\x05\x89\x6d\x13\x83\xfb\xa3\x19\xfb\x26" "\xd1\x1b\xfb\xa2\x19\xff\xf8\x44\x7f\xd7\x6a\x6f\x3c\x4b\x0c\x76\xef" "\x04\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\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\xcf\xfd\x1d\x00\x00\xff\xff\x68\x77" "\x25\x42", 1957); syz_mount_image(/*fs=*/0x200000000780, /*dir=*/0x200000000240, /*flags=MS_LAZYTIME|MS_SYNCHRONOUS|MS_NOATIME*/ 0x2000410, /*opts=*/0x2000000000c0, /*chdir=*/0x7f, /*size=*/0x7a5, /*img=*/0x200000000f80); break; case 1: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x105042 (4 bytes) // mode: open_mode = 0x4 (2 bytes) // ] // returns fd memcpy((void*)0x200000000080, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000080ul, /*flags=O_SYNC|O_DIRECT|O_CREAT|O_RDWR*/ 0x105042, /*mode=S_IROTH*/ 4); if (res != -1) r[0] = res; break; case 2: // mmap$IORING_OFF_SQ_RING arguments: [ // addr: VMA[0x2000] // len: len = 0x2000 (8 bytes) // prot: mmap_prot = 0x6 (8 bytes) // flags: mmap_flags = 0x11 (8 bytes) // fd: fd_io_uring (resource) // offset: const = 0x0 (8 bytes) // ] // returns ring_ptr syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x2000ul, /*prot=PROT_WRITE|PROT_EXEC*/ 6ul, /*flags=MAP_FIXED|MAP_SHARED*/ 0x11ul, /*fd=*/r[0], /*offset=*/0ul); break; case 3: // write$binfmt_elf64 arguments: [ // fd: fd_binfmt (resource) // data: nil // len: bytesize = 0x78 (8 bytes) // ] syscall(__NR_write, /*fd=*/r[0], /*data=*/0ul, /*len=*/0x78ul); break; case 4: // syz_mount_image$udf arguments: [ // fs: ptr[in, buffer] { // buffer: {75 64 66 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 00} (length 0xfd) // } // flags: mount_flags = 0xa00010 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {6d 6f 64 65 3d 30 30 30 30 30 30 30 30 30 30 // 30 30 30 30 30 30 30 30 30 30 30 30 31 2c 6e 6f 73 74 72 69 63 // 74 2c 6c 61 73 74 62 6c 6f 63 6b 3d 30 30 30 30 30 30 30 30 30 // 30 30 30 30 30 30 30 30 35 34 36 2c 75 69 64 3d 66 6f 72 67 65 // 74 2c 6c 6f 6e 67 61 64 2c 61 6e 63 68 6f 72 3d 30 30 30 30 30 // 30 30 30 30 30 30 30 30 30 30 30 30 31 36 31 2c 75 6e 64 65 6c // 65 74 65 2c 6d 6f 64 65 3d 30 30 30 30 30 30 30 30 30 30 30 30 // 30 30 30 30 00 00 00 00 01 00 00 00 66 69 6c 65 73 65 74 3d 30 // 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 34 2c 67 // 69 64 3d} (length 0xba) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {2c 75 6e 68 69 64 65 2c 75 69 64 3d 66 6f 72 // 67 65 74 2c 00} (length 0x14) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0xc52 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0xc52) // } // ] // returns fd_dir memcpy((void*)0x200000000f00, "udf\000", 4); memcpy((void*)0x200000001140, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 253); memcpy( (void*)0x2000000014c0, "\x6d\x6f\x64\x65\x3d\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x31\x2c\x6e\x6f\x73\x74\x72" "\x69\x63\x74\x2c\x6c\x61\x73\x74\x62\x6c\x6f\x63\x6b\x3d\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x35\x34\x36" "\x2c\x75\x69\x64\x3d\x66\x6f\x72\x67\x65\x74\x2c\x6c\x6f\x6e\x67\x61" "\x64\x2c\x61\x6e\x63\x68\x6f\x72\x3d\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x31\x36\x31\x2c\x75\x6e\x64\x65" "\x6c\x65\x74\x65\x2c\x6d\x6f\x64\x65\x3d\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x00\x00\x00\x00\x01\x00\x00\x00" "\x66\x69\x6c\x65\x73\x65\x74\x3d\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x34\x2c\x67\x69\x64\x3d", 186); sprintf((char*)0x20000000157a, "%020llu", (long long)0); memcpy((void*)0x20000000158e, ",unhide,uid=forget,\000", 20); memcpy( (void*)0x200000002240, "\x78\x9c\xec\xdd\x4f\x6c\x1c\xd7\x79\x00\xf0\xef\x8d\x96\xe2\x4a\xae" "\x6b\x26\x76\x15\x27\x8d\xd3\x4d\x5b\xa4\x32\x63\xb9\xfa\x17\x53\xb1" "\x0a\x77\x55\xd3\x6c\x03\xc8\x32\x11\x8a\xb9\x05\xe0\x4a\xa4\xd4\x85" "\x29\x92\x20\xa9\x46\x36\xd2\x82\xe9\xa5\x87\x1e\x02\x14\x45\x0f\x39" "\x11\x68\x8d\x02\x29\x1a\x18\x4d\x11\xf4\xc8\xb4\x2e\x90\x5c\x7c\x28" "\x72\xea\x89\x68\x61\x23\x28\x7a\x60\x8b\x00\x01\x0a\x04\x2c\x66\xf6" "\xad\xb8\xa4\x48\x9b\x96\x48\x89\x92\x7f\x3f\x9b\xfa\x76\x66\xbe\x37" "\xf3\xde\xcc\x7a\x46\x16\xf4\xcd\x0b\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x20\xe2\xf7\x5e\xb9\x70\xf2\x54\xda\x66\xc3" "\xa1\x07\xd0\x19\x00\xe0\xbe\xb8\x34\xf6\xd5\x93\xa7\xb7\x7b\xfe\x03" "\x00\x8f\xac\xcb\x3b\xfd\xff\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x70\x50\xa4\x28\xe2\xc9\x48\x31\x77\x69\x2d\x4d\x54\xcb\x1d" "\xf5\x8b\xed\xbe\x9b\xb7\xc6\x87\x47\xb6\x6f\x76\x24\x55\x2d\x0f\x55" "\xf9\xe5\x4f\xfd\xd4\xe9\x33\x67\xbf\xf4\xc2\xd0\xb9\x6e\xbc\xd8\x9e" "\xf9\x80\xf6\x7b\xed\x33\xf1\xda\xd8\xe5\x0b\x8d\x97\x67\x6f\xcc\xcd" "\x4f\x2d\x2c\x4c\x4d\x36\xc6\x67\xda\x57\x67\x27\xa7\x76\xbd\x87\x6d" "\xdb\xff\xda\xee\xdb\x6f\x35\x58\x9d\x80\xc6\x8d\xd7\x6f\x4e\x5e\xbb" "\xb6\xd0\x38\xfd\xfc\x99\x4d\x9b\x6f\x0d\xbc\xdf\xff\xd8\xb1\x81\xf3" "\x43\xcf\x9e\x78\xa6\x9b\x3b\x3e\x3c\x32\x32\xb6\x91\x52\xef\xcd\xaf" "\xdd\x75\x47\x3a\x76\xaa\xf0\x38\x1c\x45\x9c\x88\x14\xcf\x7d\xef\xa7" "\xa9\x15\x11\x45\xec\x74\x2e\x76\x7f\x2e\xeb\xf7\xf7\xda\x6f\x75\xa4" "\x1a\xc4\x60\x35\x88\xf1\xe1\x91\x6a\x20\xd3\xed\xd6\xcc\x62\xb9\x71" "\xb4\x7b\x22\x8a\x88\x46\x4f\xa3\x66\xf7\x1c\x6d\x7f\x2d\xa2\xd6\x77" "\x5f\xc7\xb0\xb3\x66\xc4\x52\xd9\xfd\xb2\xc3\x83\xe5\xf0\xc6\xe6\x5a" "\xf3\xad\x2b\xd3\x53\x8d\xd1\xd6\xfc\x62\x7b\xb1\x3d\x3b\x33\x9a\x3a" "\xbd\x2d\xc7\xd3\x88\x22\xce\xa5\x88\xe5\x88\x58\xed\xbf\x73\x77\x7d" "\x51\x44\x2d\x52\x7c\xe7\x89\xb5\x74\x25\xbf\xf5\xa3\x3a\x0f\x5f\xac" "\x0a\x83\x77\xee\x47\xb1\x8f\x63\xdc\x85\xb2\x9f\x8d\xbe\x88\xe5\xe2" "\x21\xb8\x66\x07\x58\x7f\x14\xf1\x6a\xa4\xf8\xd9\x3b\xc7\xe3\x6a\xbe" "\xcf\x54\xf7\x9a\x2f\x44\xbc\x5a\xc6\x1f\x44\xbc\x55\xc6\x97\x22\x52" "\xf9\xc5\x38\x1b\xf1\xde\x36\xdf\x23\x1e\x4e\xb5\x28\xe2\xcf\xcb\xeb" "\x7f\x7e\x2d\x4d\x56\xf7\x83\xee\x7d\xe5\xe2\xd7\x1a\x5f\x99\xb9\x36" "\xdb\x93\xdb\xbd\xaf\x7c\xc4\xe7\xc3\x1d\x77\x8a\x07\xf4\x7c\x38\xb2" "\x25\xde\x1f\x07\xfc\xde\x54\x8f\x22\x5a\xd5\x1d\x7f\x2d\xdd\xfd\x6f" "\x76\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd8\x6b\x47" "\xa2\x88\x4f\x47\x8a\x57\xfe\xed\x8f\xaa\xba\xe2\xa8\xea\xd2\x9f\x38" "\x3f\xf4\xfb\x03\x8f\xf7\xd6\x8c\x3f\xfd\x21\xfb\x29\x73\x9f\x8f\x88" "\xa5\x62\x77\x35\xb9\x87\x73\x61\xe0\x68\x1a\x4d\xe9\x01\xd7\x12\x7f" "\x9c\xd5\xa3\x88\x3f\xce\xf5\x7f\xdf\x7a\xd0\x9d\x01\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x58\x2b\xe2\x27\x91\xe2" "\xc5\x77\x8f\xa7\xe5\xe8\x9d\x53\xbc\x3d\x73\xbd\x71\xb9\x75\x65\xba" "\x33\x2b\x6c\x35\xf7\xef\xe3\x1b\x73\xa6\xaf\xaf\xaf\xaf\x37\x52\x27" "\x36\xab\x18\x4b\x13\x79\x79\x29\xc7\xe5\x1c\x57\x72\x5c\xcd\x31\x8a" "\xdc\x3e\xc7\x66\x8e\x13\x39\x2e\xe5\xb8\x9c\xe3\x4a\x8e\xab\x39\xc6" "\xa1\xdc\x3e\xc7\x66\x8e\x13\x39\x2e\xe5\xb8\x9c\xe3\x4a\x8e\xab\x39" "\x46\x2d\xb7\xcf\xb1\x99\xe3\x44\x8e\x4b\x39\x2e\xe7\xb8\x92\xe3\x6a" "\x8e\x71\x40\xe6\xee\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x78\x94\x14\x51\xc4\x2f\x22\xc5\xb7\xbf\xb1\x96\x22\x45\x44\x33" "\x62\xe2\xf6\xd6\xa5\x07\xda\x37\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xa0\xa3\x3f\x15\xf1\xfd\x48\xd1\xf8\x83\xe6\xed\x75" "\xb5\x88\x48\xd5\xbf\x1d\xc7\xcb\x5f\xce\x46\xf3\x70\x19\x3f\x19\xcd" "\xa1\x32\xbe\x14\xcd\x0b\x39\xb6\xaa\x58\x6b\x7e\xeb\x01\xf4\x9f\x7b" "\xd3\x97\x8a\xf8\x71\xa4\xe8\xaf\xbf\x7d\xfb\x82\xe7\xeb\xdf\xd7\x59" "\xba\xfd\x35\x88\xb7\xbe\xb9\xb1\xf4\x99\x5a\x27\x1e\xea\x6e\x1c\x78" "\xbf\xff\xb1\x63\x4f\x9c\x1f\x1a\xf9\xdc\xd3\x3b\x7d\x4e\xdb\x75\x60" "\xf0\x62\x7b\xe6\xe6\xad\xc6\xf8\xf0\xc8\xc8\x58\xcf\xea\x5a\x3e\xfa" "\x27\x7b\xd6\x0d\xe4\xe3\x16\x7b\x33\x74\x22\x62\xe1\x8d\x37\x5f\x6f" "\x4d\x4f\x4f\xcd\xdf\xfd\x87\xf2\x2b\x70\x0f\xcd\x1f\xa2\x0f\xa9\xf6" "\x71\x19\xa9\x0f\xd5\x87\xa8\x1d\x88\x6e\x3c\x98\xb1\x6f\x52\x7f\x50" "\x37\x28\xf6\x55\xf9\xfc\x7f\x2f\x52\xfc\xf6\xbb\xff\xde\x7d\xe0\x77" "\x9e\xff\xf5\xf8\xa5\xce\xd2\xed\x27\x7c\xfc\xfc\x4f\x36\x9e\xff\x2f" "\x6e\xdd\xd1\x2e\x9f\xff\xb5\xad\xed\xf2\xf3\xbf\x7c\xa6\x6f\xf7\xfc" "\x7f\xb2\x67\xdd\x8b\xf9\x77\x23\x7d\xb5\x88\xfa\xe2\x8d\xb9\xbe\x63" "\x11\xf5\x85\x37\xde\x3c\xd1\xbe\xd1\xba\x3e\x75\x7d\x6a\xe6\xec\xc9" "\x93\x5f\x1e\x1a\xfa\xf2\x99\x93\x7d\x87\x23\xea\xd7\xda\xd3\x53\x3d" "\x9f\xf6\xe4\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xdc\x3f\xa9\x88\xdf\x8d\x14\xad\x1f\xaf\xa5\x46\x44\xdc\xaa\xea\xb5" "\x06\xce\x0f\x3d\x7b\xe2\x99\x43\x71\xa8\xaa\xb7\xda\x54\xb7\xfd\xda" "\xd8\xe5\x0b\x8d\x97\x67\x6f\xcc\xcd\x4f\x2d\x2c\x4c\x4d\x36\xc6\x67" "\xda\x57\x67\x27\xa7\x76\x7b\xb8\x7a\x55\xee\x35\x3e\x3c\xb2\x2f\x83" "\xf9\x50\x47\xf6\xb9\xff\x47\xea\x2f\xcf\xce\xbd\x31\xdf\xbe\xfe\x87" "\x8b\xdb\x6e\x3f\x5a\xbf\x70\x65\x61\x71\xbe\x75\x75\xfb\xcd\x71\x24" "\x8a\x88\x66\xef\x9a\xc1\xaa\xc3\xe3\xc3\x23\x55\xa7\xa7\xdb\xad\x99" "\xaa\xe9\xe8\xb6\xc5\xf4\x1f\x5d\x5f\x2a\xe2\x3f\x22\xc5\xd5\xb3\x8d" "\xf4\xf9\xbc\x2e\xd7\xff\x6f\xad\xf0\xdf\x54\xff\xbf\xb4\x75\x47\x7b" "\x58\xff\xff\xb9\xa3\x1b\xf5\x7f\x9f\xe8\x49\x2d\x8f\x99\x52\x11\x3f" "\x8f\x14\xbf\xf5\x17\x4f\xc7\xe7\xab\x7e\x1e\x8d\x3b\xce\x59\xce\xfb" "\x9b\x48\x31\x78\xee\xb3\x39\x2f\x0e\x97\x79\xdd\x3e\x74\xde\x2b\xd0" "\xa9\x0c\x2c\x73\xff\x27\x52\xfc\xc3\x2f\x36\xe7\x76\xeb\x21\x9f\xdc" "\xc8\x3d\xf5\x91\x4e\xee\x43\xa0\xbc\xfe\x4f\x44\x8a\xef\xff\xd9\x77" "\xe3\xd7\xf3\xba\xcd\xef\x7f\xd8\xfe\xfa\x1f\x3d\xbc\x65\x47\xfb\xf4" "\xfe\x87\xa7\x7a\xd6\x1d\xdd\xf4\xbe\x82\x7b\x1f\x3b\x9d\xeb\x7f\x22" "\x52\xbc\xf4\xe4\xdb\xf1\x1b\xd5\x9a\xff\xfb\xc0\xf7\x7f\x74\xdf\xbd" "\x71\xbc\x93\xbc\xf1\x7e\x8e\x7d\xba\xfe\xbf\xd2\xb3\x6e\x20\x1f\xf7" "\x37\xf7\x6a\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0f\xb1\xbe\x54" "\xc4\xdf\x46\x8a\x1f\x8e\xd4\xd2\x0b\x79\xdd\x6e\xfe\xfe\xdf\xe4\xd6" "\x1d\xed\xd3\xdf\xff\xfa\x54\xcf\xba\xc9\xbd\x99\xaf\xe8\x43\x3f\xdc" "\xf3\x49\x05\x00\x00\x00\x80\x03\xa2\x2f\x15\xf1\x93\x48\x71\x7d\xf1" "\xed\xdb\x35\xd4\x9b\xeb\xbf\x7b\xea\x3f\x7f\x67\xa3\xfe\x73\x38\x6d" "\xd9\x5a\xfd\x39\xdf\x2f\x57\xef\x0d\xd8\xcb\x3f\xff\xeb\x35\x90\x8f" "\x3b\x71\xef\xc3\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x80\x03\x25\xa5\x22\x5e\xc8\xf3\xa9\x4f\x54\xf5\xfc\x93\x3b" "\xce\xa7\xbe\x12\x29\x5e\xf9\xaf\xe7\x72\x5e\x3a\x56\xe6\x75\xe7\x81" "\x1f\xa8\x7e\xad\x5f\x9a\x9d\x39\x71\x61\x7a\x7a\xb6\x1e\x8b\xad\x2b" "\xd3\x53\x8d\xb1\xb9\xd6\xd5\xa9\xb2\xed\x53\x91\x62\xed\xaf\x3f\x9b" "\xdb\x16\xd5\xfc\xea\xdd\xf9\xe6\x3b\x73\xbc\x6f\xcc\xc5\x3e\x1f\x29" "\x46\xfe\xae\x9b\xdb\x99\x8b\xbd\x3b\x37\xf9\x53\x1b\xb9\xa7\xca\xdc" "\x4f\x44\x8a\xff\xfc\xfb\xcd\xb9\x79\x6a\xea\x3c\x77\x74\x95\x7b\xba" "\xcc\xfd\xab\x48\xf1\xf5\x7f\xda\x3e\xf7\xd8\x46\xee\x99\x32\xf7\xbb" "\x91\xe2\x47\x5f\x6f\x74\x73\x8f\x96\xb9\xdd\xf7\xa3\x7e\x6a\x23\xf7" "\xf9\xab\xb3\xc5\x3e\x5c\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x3e\x6e\xfa\x52\x11\x7f\x1a\x29\xfe\xfb\xc6\xf2" "\xed\x5a\xfe\x3c\xff\x7f\x5f\xcf\x62\xe5\xad\x6f\xf6\xcc\xf7\xbf\xc5" "\xad\x6a\x9e\xff\x81\x6a\xfe\xff\x9d\x3e\xdf\xcd\xfc\xff\xd5\x7b\x05" "\x96\x76\x3a\x2a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x3c\x9a\x52\x14\xf1\x66\xa4\x98\xbb\xb4\x96\x56\xfa\xcb\xe5\x8e" "\xfa\xc5\xf6\xcc\xcd\x5b\xe3\xc3\x23\xdb\x37\x3b\x92\xaa\x96\x87\xaa" "\xfc\xf2\xa7\x7e\xea\xf4\x99\xb3\x5f\x7a\x61\xe8\x5c\x37\x7e\x70\xfb" "\xbd\xf6\xe9\x78\x6d\xec\xf2\x85\xc6\xcb\xb3\x37\xe6\xe6\xa7\x16\x16" "\xa6\x26\x1b\xe3\x33\xed\xab\xb3\x93\x53\xbb\xde\xc3\xbd\xb6\xdf\x6a" "\xb0\x3a\x01\x8d\x1b\xaf\xdf\x9c\xbc\x76\x6d\xa1\x71\xfa\xf9\x33\x9b" "\x36\xdf\x1a\x78\xbf\xff\xb1\x63\x03\xe7\x87\x9e\x3d\xf1\x4c\x37\x77" "\x7c\x78\x64\x64\xac\x27\xa7\xd6\x77\xd7\x47\xbf\x43\xda\x61\xfd\xe1" "\x28\xe2\x2f\x23\xc5\x73\xdf\xfb\x69\xfa\x61\x7f\x44\x11\xf7\x7e\x2e" "\x3e\xe4\xbb\xb3\xdf\x8e\x54\x83\x18\xac\x06\x31\x3e\x3c\x52\x0d\x64" "\xba\xdd\x9a\x59\x2c\x37\x8e\x76\x4f\x44\x11\xd1\xe8\x69\xd4\xec\x9e" "\xa3\xfb\x70\x2d\xee\x49\x33\x62\xa9\xec\x7e\xd9\xe1\xc1\x72\x78\x63" "\x73\xad\xf9\xd6\x95\xe9\xa9\xc6\x68\x6b\x7e\xb1\xbd\xd8\x9e\x9d\x19" "\x4d\x9d\xde\x96\xe3\x69\x44\x11\xe7\x52\xc4\x72\x44\xac\xf6\xdf\xb9" "\xbb\xbe\x28\xe2\xf5\x48\xf1\x9d\x27\xd6\xd2\x3f\xf7\x47\x1c\xea\x9e" "\x87\x2f\x5e\x1a\xfb\xea\xc9\xd3\x3b\xf7\xa3\xd8\xc7\x31\xee\x42\xd9" "\xcf\x46\x5f\xc4\x72\xf1\x10\x5c\xb3\x03\xac\x3f\x8a\xf8\xc7\x48\xf1" "\xb3\x77\x8e\xc7\xbf\xf4\x47\xd4\xa2\xf3\x13\x5f\x88\x78\xb5\x8c\x3f" "\x88\x78\x2b\x3a\xd7\x3b\x95\x5f\x8c\xb3\x11\xef\x6d\xf3\x3d\xe2\xe1" "\x54\x8b\x22\xfe\xb7\xbc\xfe\xe7\xd7\xd2\x3b\xfd\xe5\xfd\xa0\x7b\x5f" "\xb9\xf8\xb5\xc6\x57\x66\xae\xcd\xf6\xe4\x76\xef\x2b\x0f\xfd\xf3\xe1" "\x7e\x3a\xe0\xf7\xa6\x7a\x14\xf1\xa3\xea\x8e\xbf\x96\xfe\xd5\x7f\xd7" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\x48\x11\xbf" "\x1a\x29\x5e\x7c\xf7\x78\xaa\xea\x83\x6f\xd7\x14\xb7\x67\xae\x37\x2e" "\xb7\xae\x4c\x77\xca\xfa\xba\xb5\x7f\xdd\x9a\xe9\xf5\xf5\xf5\xf5\x46" "\xea\xc4\x66\x8e\x13\x39\x2e\xe5\xb8\x9c\xe3\x4a\x8e\xab\x39\x46\x91" "\xdb\x17\x31\xfa\x78\xd9\xbe\x5c\xae\xaf\xaf\x4f\xe4\xf5\x4b\x39\x2e" "\xe7\xb8\x92\xe3\x6a\x8e\x71\x28\xb7\xcf\xb1\x99\xe3\x44\x8e\x4b\x39" "\x2e\xe7\xb8\x92\xe3\x6a\x8e\x51\xcb\xed\x73\x6c\xe6\x38\x91\xe3\x52" "\x8e\xcb\x39\xae\xe4\xb8\x9a\x63\x1c\x90\xda\x3d\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xd1\x52\x54\xff\xa4\xf8\xf6" "\x37\xd6\xd2\x7a\x7f\x67\x7e\xe9\x89\xe8\xc4\x15\xf3\x81\x3e\xf2\xfe" "\x3f\x00\x00\xff\xff\x09\xb9\xf6\x43", 3154); syz_mount_image(/*fs=*/0x200000000f00, /*dir=*/0x200000001140, /*flags=MS_I_VERSION|MS_SYNCHRONOUS|MS_RELATIME*/ 0xa00010, /*opts=*/0x2000000014c0, /*chdir=*/1, /*size=*/0xc52, /*img=*/0x200000002240); 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; use_temporary_dir(); loop(); return 0; }