// https://syzkaller.appspot.com/bug?id=7fcc0ed93a25b3049414bc26ce3259eb1d309e31 // 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_fsconfig #define __NR_fsconfig 431 #endif #ifndef __NR_fspick #define __NR_fspick 433 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif #ifndef __NR_renameat2 #define __NR_renameat2 316 #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"); } 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; retry: const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; 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) { int i, call, thread; for (call = 0; call < 9; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0) + (call == 2 ? 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 (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[3] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20000040, "nilfs2\000", 7); memcpy((void*)0x20000300, "./file0\000", 8); memcpy( (void*)0x20001100, "\x78\x9c\xec\xdd\x4d\x8c\x5b\x47\x01\x00\xe0\xb1\x77\xbd\xc9\x26\x29" "\x71\x4a\x42\x97\x34\xb4\x09\x85\xb6\xfc\x74\xd3\x6c\x96\xf0\x13\x41" "\x52\x25\x42\x22\x6a\x2a\xc4\xa5\x52\xc5\x25\x4a\xd3\x12\x11\x82\x44" "\x91\x80\xaa\x12\x49\x4e\xdc\x68\x55\x05\x89\x13\x3f\xe2\xd4\x4b\x55" "\x10\x12\xbd\xa0\xa8\x27\x2e\x95\x68\xa4\x0a\xa9\xa7\xc2\x81\x03\x51" "\x10\x95\x38\x40\x20\x71\x15\xef\x8c\xd7\x9e\xd8\x7d\xb6\xb3\xeb\x67" "\xc7\xdf\x27\x8d\xc7\xf3\xe6\x3d\xcf\xbc\xe7\xe7\xe7\xf7\x3b\x13\x80" "\xa9\x55\x6d\xbe\x2e\x2f\x2f\x54\x42\xb8\xf8\xfa\xcb\x47\xff\xf1\xe0" "\xdf\xe7\x6f\x0e\x39\xd4\x1a\xa3\xde\x7c\x9d\x6d\x4b\xd5\x42\x08\x95" "\x98\x9e\xcd\x3e\xef\xdd\x99\x95\xf8\xfa\x7b\x2f\x9c\xec\x16\x57\xc2" "\x52\xf3\x35\xa5\xc3\x13\x57\x5b\xd3\x6e\x0e\x21\x9c\x0b\xbb\xc3\xa5" "\x50\x0f\x3b\x2f\x5e\x7e\xe9\xcd\xa5\xc7\x8f\x9f\x3f\x76\x61\xcf\x5b" "\xaf\x1c\xbc\xb2\x3e\x73\x0f\x00\x00\xd3\xe5\xeb\x97\x0e\x2e\xef\xf8" "\xeb\x9f\xef\xdd\x76\xed\xd5\xfb\x0e\x87\x0d\xad\xe1\x69\xff\xbc\x1e" "\xd3\x5b\xe2\x7e\xff\xe1\xb8\xe3\x9f\xf6\xff\xab\xa1\x33\x5d\x69\x0b" "\xed\xe6\xb2\xf1\x66\x63\xa8\xce\x77\x8e\x37\xd3\x65\xbc\xf6\x72\x6a" "\xd9\x78\xb3\x3d\xca\x9f\xcb\xca\xaf\xf5\x18\x6f\x43\xf8\xe0\xf2\x67" "\xda\x86\x75\x9b\x6f\x98\x64\x69\x3d\xae\x87\x4a\x75\xb1\x23\x5d\xad" "\x2e\x2e\xae\x1c\x93\x87\xe6\x71\xfd\x5c\x65\xf1\xec\xe9\x33\xcf\x3c" "\x57\x52\x45\x81\x35\xf7\xef\xfb\x43\x08\xbb\xdb\xc2\x91\x0b\x9d\xe9" "\x71\x0b\x87\xc6\xa0\x0e\x43\x86\xc6\x18\xd4\x61\x22\xc3\xe1\xd1\x95" "\x75\xad\xb1\xa2\xf4\x79\x1e\x51\x68\x6c\x2d\x7b\x0b\x04\xb0\x22\xbf" "\x5e\x78\x8b\x73\xf9\x99\x85\xdb\xd3\xfa\xb4\xd9\xfe\xca\xbf\xfa\x58" "\xb5\xfb\xf4\xb0\x06\x46\xbd\xfe\x0f\x54\xfe\x5c\xc9\xe5\x07\xe5\xff" "\xe6\xbc\x2d\x0e\x6b\xe7\x4e\x5d\x9b\xd2\x7c\xa5\xdf\xd1\x96\x98\xce" "\xaf\x23\xe4\xf7\x2f\xf5\xfe\xfd\xe5\x57\x3a\x3a\x87\xe6\xd7\x23\x6a" "\x7d\xd6\xb3\xd7\x75\x84\x49\xb9\xbe\xd0\xab\x9e\x33\x23\xae\xc7\xb0" "\x7a\xd5\x3f\x5f\x2f\xee\x54\x5f\x8e\x71\x5a\x0e\x5f\xc9\xf2\xdb\x7f" "\x3f\xf9\x77\x3a\x29\xdf\x31\xd0\xdd\x7f\xf2\xf3\xff\x82\x20\x8c\x77" "\x08\x1d\xe9\xda\xed\x7c\x56\xa3\xe4\xed\x0f\x30\xbe\xf2\xfb\xe6\x1a" "\xe9\xfa\x68\x94\xdf\xd7\x97\xe7\x6f\x28\xc8\xdf\x58\x90\x3f\x5f\x90" "\xbf\xa9\x20\x7f\x73\x41\x3e\x4c\xb3\xdf\x7d\xff\xa7\xe1\xc5\xca\xea" "\x71\x7e\x7e\x4c\x3f\xe8\xf9\xf0\x74\x9e\xed\xae\x18\x7f\x68\xc0\xfa" "\xe4\xe7\x23\x07\x2d\x3f\xbf\xef\x77\x50\xb7\x5b\x7e\x7e\x3f\x31\x8c" "\xb3\x3f\x9c\x78\xf2\xd4\x17\x9e\x7e\xea\xf2\xca\xfd\xff\x95\xd6\xfa" "\x7f\x23\xae\xef\xe9\x70\xa3\x1e\x7f\x5b\x97\xe2\x08\xe9\x7c\x61\x7e" "\x5e\xbd\x75\xef\x7f\xbd\xb3\x9c\x6a\x8f\xf1\xee\xce\xea\x73\x57\x97" "\xf1\x9b\xef\xb7\x77\x8e\x57\xd9\xbe\xfa\x39\xa1\x6d\x3b\x73\x4b\x3d" "\x16\x3a\xa7\xdb\xda\x6b\xbc\x5d\x9d\xe3\xd5\xb3\xf1\xe6\x63\xd8\x98" "\xd5\x37\xdf\x3f\xd9\x94\x4d\x97\xf6\x3f\xd2\x76\x35\x2d\xaf\xd9\x6c" "\x7e\x6b\xd9\x7c\xcc\x65\xf5\x48\xdb\x95\x6d\x31\xce\xeb\x01\xc3\x48" "\xeb\x63\xaf\xfb\xff\xd3\xfa\xb9\x10\x6a\x95\x67\x4e\x9f\x39\xf5\x68" "\x4c\xa7\xf5\xf4\x4f\x33\xb5\x0d\x37\x87\xef\x1b\x71\xbd\x81\xdb\xd7" "\xef\xf3\x3f\x0b\xa1\xf3\xf9\x9f\x2d\xad\xe1\xb5\x6a\xfb\x76\x61\xeb" "\xea\xf0\xca\xca\x76\xe1\xb5\xf8\x79\x9d\xc3\x97\x5a\xe5\x74\x0e\xdf" "\x1f\xd3\xe9\x7f\xee\x5b\x33\xf3\xcd\xe1\x8b\x27\xbf\x7b\xe6\xe9\xb5" "\x9f\x7d\x98\x6a\xcf\xfd\xe8\xf9\x6f\x9f\x38\x73\xe6\xd4\xf7\xbc\x19" "\xfa\xcd\x57\xc7\xa3\x1a\x83\xbc\x49\x87\x2d\xe3\x52\x1f\x6f\xc6\xee" "\x4d\xc9\x1b\x26\x60\xdd\xed\xfd\xf1\xca\x4e\xc0\x23\xa7\xbf\x73\xe2" "\xd9\x53\xcf\x9e\x3a\xbb\xff\xc0\x81\xfd\x4b\x4b\x07\xbe\xb8\x7f\x79" "\x6f\x73\xbf\x7e\x6f\xfb\xde\x7d\xbb\x73\x25\xd4\x16\x58\x4b\xab\x7f" "\xfa\x65\xd7\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe8\xd7\x0f\x8e" "\x1d\xbd\xfc\xf6\x1b\x9f\x7f\x67\xe5\xf9\xff\xd5\xe7\xff\xd2\xf3\xff" "\xe9\xce\xdf\xf4\xfc\xff\x4f\xb2\xe7\xff\xf3\xe7\xe4\xd3\x73\xf0\xe9" "\x39\xc0\x6d\x5d\xf2\x9b\xe3\x64\x0d\xac\xce\x65\xe3\xd5\x62\xf8\x70" "\x56\xdf\xed\x59\x39\x3b\xb2\xe9\x3e\x12\xe3\x56\x3f\x7e\xf1\xf9\xff" "\x54\x5c\xde\xae\x6b\xaa\xcf\x3d\xd9\xf0\x5a\x8f\x64\xd6\x9c\xc0\x2d" "\xed\xa5\xcc\x65\x6d\x90\xe4\xfd\x05\x7e\x3c\xc6\x17\x62\xfc\xeb\x00" "\x25\xaa\xcc\x77\x1f\x1c\xe3\xa2\xf6\xad\xd3\xba\x9e\xda\xa7\x68\x6b" "\x97\xa2\xa1\x7d\xe0\xc9\x91\xbe\xb7\xb4\x36\xa4\x76\x4c\xd2\xf3\xdf" "\x5d\xdb\x75\x6a\xfb\xb2\xb7\x8d\xa0\x8e\xac\xbd\x51\x3c\x4e\x58\xf6" "\x3c\x02\xdd\xfd\x73\xaa\xda\xff\xfe\xd7\xea\x8c\x97\x5e\x17\xa1\x77" "\x98\x1d\x6d\x79\x3f\x9f\xde\x75\xa2\xd1\x73\x2f\xbd\xdf\x1e\x6c\x00" "\xd6\x46\xd9\xfd\x7f\xa6\xf3\x9e\x29\x3e\xfb\xc7\xaf\x6d\xbc\x19\xd2" "\x68\x57\x1f\xeb\xdc\x5e\xe6\xed\x97\xc2\x20\xfe\xf2\x76\x67\x7a\xdc" "\xfb\x9f\x5c\xef\xf2\xf3\x7e\xfb\x46\x5d\x7e\xd9\xf3\x3f\xea\xfe\x3f" "\x5b\xfd\xdf\xf5\xbd\xfd\xcb\x7a\xcc\xab\x0f\x57\xee\x7f\x7f\x71\xe5" "\x9d\xb6\x62\xc3\xce\x7e\xcb\xcf\xe7\x3f\xb5\x03\xbd\x7d\xb0\xf2\xaf" "\xc5\xf2\xd3\xdc\x3c\x14\xfa\x2b\xbf\xf1\xab\xac\xfc\xfc\x82\x50\x9f" "\xfe\x97\x95\xbf\xa9\xcf\xf2\x6f\x99\xff\x5d\xc3\x95\xff\xff\x58\x7e" "\x5a\x6c\x0f\x3f\xd0\x6f\xf9\x2b\x35\xae\x54\x3b\xeb\x91\x9f\x37\x4e" "\xd7\xff\xf2\xf3\xc6\xc9\xf5\x6c\xfe\x53\xdb\x9e\x1f\x50\xfe\x37\x9e" "\xef\x36\xff\x43\x76\xd4\x78\x23\x96\x0f\xd3\x6c\x52\xfa\x99\x1d\x54" "\xb6\x1f\xd1\xda\x69\x1f\xbe\xff\xdf\xe8\xdc\xda\xf6\xff\xdb\xaa\x6c" "\xb6\x59\xcb\xef\xc3\xf8\x5c\x4c\xa7\x0d\x71\xba\xcf\x21\xef\xef\x64" "\xd0\xfa\xa7\xfb\x2b\xd2\xff\xc0\x8e\xec\xf3\x2b\x05\xff\x6f\xfa\xff" "\x9d\x6c\x5f\x8a\x71\xd1\xef\x21\xf5\xff\x9b\xd6\xc7\x7a\xfc\xcb\x6f" "\x4b\x37\x97\x65\x4a\xd7\xba\x2c\xdb\x3b\x75\x5b\x03\x93\xea\xdd\xa9" "\xba\xfe\x37\x11\x61\xe3\x18\xd4\x41\xe8\x3f\x34\x66\x86\x98\xae\xd5" "\x4f\x5c\xc9\xf5\x6f\x34\x1a\xeb\x7b\x42\xab\x40\xa9\x85\x53\xfa\xf2" "\x2f\xfb\x38\xa1\xec\xf2\xcb\x5e\xfe\x45\xf2\xfe\x7f\xf3\x7d\xf8\xbc" "\xff\xdf\x3c\x3f\xef\xff\x37\xcf\xcf\xfb\xff\xcd\xf3\xe7\xe3\x37\xd4" "\x2b\x3f\xef\xff\x37\x5f\x9e\x79\xff\xbf\x79\xfe\x3d\xd9\xe7\xe6\xfd" "\x03\x2f\x14\xe4\x7f\xb4\x20\x7f\x67\xf7\xfc\xd6\x61\xfb\xbd\x05\xd3" "\xef\x2a\xc8\xff\x58\x41\xfe\x9e\x56\xfe\xa1\x8e\x31\x52\xfe\x7d\x05" "\xd3\xdf\x5f\x90\x7f\x77\x41\xfe\x03\x05\xf9\x9f\x28\xc8\xff\x64\x41" "\xfe\x83\x05\xf9\x0f\xb7\xe5\xb7\xf7\x01\x9d\xf2\x3f\x55\x30\xfd\x9d" "\x2e\x3d\x8f\x32\xad\xf3\x0f\xd3\x2c\x7f\x3e\xcf\xef\x1f\xa6\x47\xba" "\xfe\xd3\xeb\xf7\xbf\xbd\x20\x1f\x98\x5c\x3f\x7b\x75\xdf\x91\xa7\x7e" "\xfb\xcd\xfa\xca\xf3\xff\x73\xad\xf3\x21\xe9\x3a\xde\xe1\x98\xae\xc5" "\xe3\xa7\x1f\xc6\x74\x7e\xdd\x3b\xb4\xa5\x6f\xe6\xbd\x11\xd3\x7f\xcb" "\xf2\xc7\xfd\x7c\x07\x4c\x93\xbc\xfd\x8c\xfc\xff\xfd\xa1\x82\x7c\x60" "\x72\xa5\xfb\xbc\xfc\xbe\x61\x0a\x55\x36\x76\x1f\x1c\xe3\xa2\x76\xab" "\x7a\xed\xe7\x33\x59\x3e\x1d\xe3\xcf\xc4\xf8\xb3\x31\x7e\x24\xc6\x8b" "\x31\xde\x1b\xe3\x7d\x31\x5e\x1a\x51\xfd\x58\x1f\x47\x5e\xfb\xfd\xc1" "\x17\x2b\xab\xc7\xfb\x5b\xb3\xfc\x7e\xef\x27\xcf\x9f\x07\xea\x68\x27" "\x2a\x84\xb0\xbf\xcf\xfa\xe4\xe7\x07\x06\xbd\x9f\x3d\x6f\xc7\x6f\x50" "\xb7\x5b\xfe\x90\x8f\x83\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x94\xa6\xda" "\x7c\x5d\x5e\x5e\xa8\x84\x70\xf1\xf5\x97\x8f\x3e\x79\xfc\xf4\xde\x9b" "\x43\x0e\xb5\xc6\xa8\x37\x5f\x67\xdb\x52\xb5\xd6\x74\x21\x3c\x1a\xe3" "\x99\x18\xff\x32\xbe\xb9\xfe\xde\x0b\x27\xdb\xe3\x1b\x31\xae\x84\xa5" "\x50\x09\x95\xd6\xf0\xf0\xc4\xd5\x56\x49\x9b\x43\x08\xe7\xc2\xee\x70" "\x29\xd4\xc3\xce\x8b\x97\x5f\x7a\x73\xe9\xf1\xe3\xe7\x8f\x5d\xd8\xf3" "\xd6\x2b\x07\xaf\xac\xdf\x12\x00\x00\x00\x80\x3b\xdf\xfb\x01\x00\x00" "\xff\xff\x07\xae\x0f\x14", 2726); syz_mount_image(/*fs=*/0x20000040, /*dir=*/0x20000300, /*flags=*/0, /*opts=*/0x200002c0, /*chdir=*/1, /*size=*/0xaa6, /*img=*/0x20001100); break; case 1: memcpy((void*)0x200000c0, "memory.events\000", 14); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000c0ul, /*flags=*/0x26e1ul, /*mode=*/0ul); break; case 2: memcpy((void*)0x20000180, "hfs\000", 4); memcpy((void*)0x20000100, "\023\023w\305\3745\324\024T\325\324\035)\255\032`)" "Y\201F\346\276\026nA\255\r\275@T\003<\2373\273\332\202$" "\242\363\327r\347cnH\263<\277p\203r\350\361\271\223>" "\305\022wC\276\"\006 \236\360-\371\313\362\366\350\200\3238/\000", 78); memcpy((void*)0x20000500, "\x71\x75\x69\x65\x74\x2c\x63\x6f\x64\x65\x70\x61\x67\x65\x3d\x69" "\x73\x6f\x38\x38\x35\x39\x2d\x31\x35\x2c\x70\x61\x72\x74\x3d\x30" "\x78\x30\x30\x30\x30\x30\x30\x30\x00\x00\x00\x00\x00\x00\x00\x00" "\x66\x2c\x00\xa2\x00\x00\x00\x07\x00\x00\x00\x00\xed\xe9\xde\xbf" "\x53\x0c\x3c\xc4\xd0\x4b\x54\x89\x19\xac\xa0\xc2\x93\x7d\x4d\xa1" "\xfc\x31\xdc\x42\xfc\x2e\x3e", 87); memcpy( (void*)0x200008c0, "\x78\x9c\xec\xdd\xcd\x6a\x13\x5d\x1c\xc7\xf1\xdf\x99\xa4\x6d\x9e\xa7" "\xa1\x4e\x5f\x44\x70\x59\x2d\xe8\x46\x6a\xdd\x88\x9b\x88\xe4\x22\xc4" "\x85\xa8\x4d\x84\x62\xa8\xa8\x15\xd4\x8d\x55\x5c\x89\xe8\xde\xbd\xb7" "\xe0\x45\xb8\x51\xbc\x01\x5d\xb9\xf2\x02\xea\x6a\xe4\x9c\x39\x79\xed" "\xbc\xa4\xa1\x99\x69\xf0\xfb\x81\x84\xc9\xcc\x39\x73\xfe\x27\xf3\x72" "\xce\x3f\xd0\x8e\x00\xfc\xb3\x6e\x34\x7f\x7c\xba\xf2\xcb\xbe\x8c\x54" "\x51\x45\x7a\x7b\x4d\x0a\x24\xd5\xa4\xaa\xa4\xd3\x3a\x53\x7b\xba\xbb" "\xb7\xb3\xd7\x69\xb7\xb2\x76\x54\x71\x35\xec\xcb\x28\xae\x69\x0e\x95" "\xd9\xde\x6d\x27\x55\xb5\xf5\x5c\x0d\x2f\xb4\x9f\xaa\xaa\x0f\xae\xc3" "\x74\x44\x51\x74\xfd\x67\xd9\x41\xa0\x74\xee\xea\x4f\x10\x48\x0b\xfe" "\xea\x74\xdb\x6b\x85\x47\x96\xed\xd5\x84\xf5\xf6\x8f\x39\x8e\x59\x63" "\x0e\x74\xa0\x67\x5a\x2a\x3b\x0e\x00\x40\xb9\xfc\xf8\x1f\xf8\x71\xbe" "\xee\xe7\xef\x41\x20\x6d\xf8\x61\xff\x44\x8e\xff\x93\x3a\x28\x3b\x80" "\xa9\x8b\x32\xb7\x0e\x8c\xff\x2e\xcb\x8a\x8c\x3d\xbe\xa7\xdc\xa6\x7e" "\xbe\xe7\x52\x38\xbb\x3d\xe8\x66\x89\xe3\xb4\x3c\x37\xf2\x79\x5e\xf1" "\x99\x35\x34\xc1\x34\x79\x59\xa5\x8b\x25\xf8\xef\xfe\x4e\xa7\x7d\x69" "\xfb\x61\xa7\x15\xe8\xb5\x1a\xde\x40\xb1\x35\xf7\xde\x8a\x4f\xdd\xae" "\x9c\x68\xd7\x13\x72\xd3\x0c\x63\xf4\xdd\x24\xcf\x28\x17\x5d\x1f\xe6" "\x6c\x1f\xb6\x52\xe2\x5f\x9d\xb0\xc5\x89\x99\x2f\xe6\x9b\xb9\x6d\x42" "\x7d\x54\xab\x37\xff\xab\x46\xc6\x1e\x26\x77\xa4\xc2\x91\x23\x15\xc7" "\xbf\x99\xbe\x47\xd7\xcb\xd0\x96\x92\xbf\x6d\x34\x1a\x8d\x60\xa8\xc8" "\xb2\x6b\xe4\xac\x6f\xc1\xcb\xe9\x65\x2d\x39\x23\x51\xf7\x8c\x5a\xd6" "\xf0\x0f\x04\x61\x5e\x9c\xae\xd6\xca\x48\xad\xb8\x77\x97\x73\x6a\xad" "\x26\xd6\xda\xea\x7e\x4a\xa9\xb5\x36\x54\xcb\xf6\xa6\x77\x36\xa7\xb7" "\x37\x6d\xe6\xbd\xb9\x69\xd6\xf5\x5b\x9f\xd5\x1c\x98\xff\x07\x36\xbe" "\x0d\x65\x5e\x99\xfd\xab\xc6\x6c\xc4\x43\x81\xfb\xc6\xe3\xfe\xcc\x27" "\x37\x57\x75\xfb\x0c\x0f\x8d\x1c\xfb\xba\x55\x1f\x5e\xd3\xfb\x16\x17" "\xd2\x42\xff\x93\x7d\x4f\xc3\x11\xbc\xd3\x3d\x5d\xd5\xd2\x93\xe7\x2f" "\x1e\x54\x3a\x9d\xf6\x63\xbb\x70\x37\x61\xe1\x51\xbd\xb7\x66\xee\x8d" "\x94\x58\xa6\xe4\x05\xed\xf7\xd7\x2c\x28\x72\x0e\x15\xee\x0e\x4a\x45" "\x06\x76\xf1\x58\x77\x68\xef\x1f\xb9\x85\xed\x55\x56\x48\x07\x4f\xe4" "\x99\x50\xd4\x42\xf3\x6b\xb1\x27\x52\x19\x0b\x25\xdf\x9f\x50\x88\xfe" "\x41\x2f\x3b\x12\x94\xc4\xce\xbb\x4c\x9c\xff\x0d\xe4\x2b\x9b\x6e\xb2" "\x67\xdf\xc2\x8c\x79\x7a\xee\x84\xcc\xef\x31\xb2\x73\xec\x5e\x06\x54" "\x1b\xaa\xbf\xe2\x96\xfe\x3f\x52\x06\xb7\x98\x9e\xc1\x8d\x9b\x73\x9d" "\xbb\x20\x9d\x1f\xbf\xc5\xd0\xc7\x39\x1b\xa2\x97\x39\x05\x4c\x53\xdf" "\x75\x87\xdf\xff\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x66\x4d\x11\x7f\x4e\x50\x76\x1f\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x98\x75\xbd\xe7\xff\xaa\xfb" "\xfc\x5f\x8d\xf7\xfc\xdf\xd1\xff\xfc\x7d\x9c\xcf\xff\xfd\xb0\x2b\x9e" "\xff\x0b\x4c\xdf\xdf\x00\x00\x00\xff\xff\x4e\xb6\x80\x35", 694); syz_mount_image(/*fs=*/0x20000180, /*dir=*/0x20000100, /*flags=MS_LAZYTIME|MS_STRICTATIME|MS_DIRSYNC*/ 0x3000080, /*opts=*/0x20000500, /*chdir=*/0x11, /*size=*/0x2b6, /*img=*/0x200008c0); break; case 3: memcpy((void*)0x20000300, ".\000", 2); res = syscall(__NR_open, /*file=*/0x20000300ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[0] = res; break; case 4: memcpy((void*)0x20000340, "\023\023w\305\3745\324\024T\325\324\035)\255\032`)" "Y\201F\346\276\026nA\255\r\275@T\003<\2373\273\332\202$" "\242\363\327r\347cnH\263<\277p\203r\350\361\271\223>" "\305\022wC\276\"\006 \236\360-\371\313\362\366\350\200\3238/\000", 78); syscall(__NR_mkdirat, /*fd=*/r[0], /*path=*/0x20000340ul, /*mode=*/0ul); break; case 5: memcpy((void*)0x20000300, ".\000", 2); res = syscall(__NR_open, /*file=*/0x20000300ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[1] = res; break; case 6: memcpy((void*)0x20000000, ".\000", 2); res = syscall(__NR_fspick, /*dfd=*/0xffffff9c, /*path=*/0x20000000ul, /*flags=*/0ul); if (res != -1) r[2] = res; break; case 7: syscall(__NR_fsconfig, /*fd=*/r[2], /*cmd=*/7ul, /*key=*/0ul, /*value=*/0ul, /*aux=*/0ul); break; case 8: memcpy((void*)0x20000100, "./file0\000", 8); memcpy((void*)0x20000580, "\023\023w\305\3745\324\024T\325\324\035)\255\032`)" "Y\201F\346\276\026nA\255\r\275@T\003<\2373\273\332\202$" "\242\363\327r\347cnH\263<\277p\203r\350\361\271\223>" "\305\022wC\276\"\006 \236\360-\371\313\362\366\350\200\3238/\000", 78); syscall(__NR_renameat2, /*oldfd=*/r[0], /*old=*/0x20000100ul, /*newfd=*/r[1], /*new=*/0x20000580ul, /*flags=*/0ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }