// https://syzkaller.appspot.com/bug?id=8a0515c326633c38c5145308835518579ea8af1e // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_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 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; } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x200000c0, "hfsplus\000", 8); memcpy((void*)0x20000980, "\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*)0x20000cc0, "\x78\x9c\xec\xdd\x4f\x88\x1c\x59\x1d\x07\xf0\x6f\x75\x3a\x3d\xd3\x11\xb2" "\xb3\xbb\xd9\x6c\x14\x61\x87\x0d\x2c\xba\xc1\x64\x26\x43\x4c\x04\x61\xa3" "\x88\xe4\x10\x24\xe8\x65\xaf\x43\x32\xd9\x0c\x99\x64\x97\xc9\xac\x64\x17" "\x31\x1d\x75\x57\xf0\xe4\x49\xf6\xe0\x61\x45\xe2\x61\x4f\x22\x22\xac\x27" "\x51\xcf\x82\xe0\xc5\x53\x6e\x1e\x02\xde\x3c\xe4\xa0\x8e\x54\x75\xf5\x9f" "\x99\xee\x4c\x66\x36\x99\xf4\x6c\xfc\x7c\xa0\xfa\xbd\xea\x57\xef\xbd\x5f" "\xfd\xa8\xaa\xee\xae\x9e\xa1\x03\xfc\xdf\x3a\xf7\x7a\xf6\x77\x52\xe4\xdc" "\xb1\xf3\x37\xcb\xf5\xbb\x77\x16\x56\xee\xde\x59\xb8\xd6\xab\x27\x99\x4a" "\xd2\x48\x9a\xdd\x22\x45\x3b\x29\xfe\x94\x9c\x4d\x77\xc9\x67\xcb\x27\xeb" "\xe1\x8a\x07\xcd\x73\xea\xde\xc7\x45\xf3\x83\x8f\x16\xba\x6b\xcd\x7a\xa9" "\xb6\x6f\x6c\xd5\x6f\xc4\xd8\x2d\x3b\xc9\x74\x7f\x65\x5f\x92\xd9\x6e\xf5" "\xdf\xdb\x1e\x76\x64\xbc\x6a\xa9\xc6\xb9\x38\x18\xef\x13\x2a\xfa\x71\x97" "\x09\x3b\xda\x4b\x1c\x4c\xda\xfa\x88\xce\xa0\xb1\xf1\xd0\xee\xdb\x3f\x6f" "\x81\x3d\xeb\x56\xf7\x75\x73\xc4\x4c\x72\x20\xdd\x57\xd7\xf2\x7d\x40\xea" "\xab\xc3\xc3\xaf\x0c\x93\xb7\xe5\xb5\xa9\xf3\xe4\xe2\x00\x00\x00\x80\xdd" "\x32\xf6\xb3\xfc\xb0\x67\xee\xe7\x7e\x6e\xe6\xe0\x93\x09\x07\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x9e\x0e\x45\xf7\x37\x03\x8b\x7a\x69\xf4\xea\xb3" "\x29\x7a\xbf\xff\xdf\x1a\xfa\x4d\xfd\xd6\x84\xc3\x7d\x44\xef\x5d\xae\x8a" "\x6f\x3f\x33\xe9\x40\x00\x00\x00\x00\x00\x00\x00\xe0\x91\xbc\x74\x3f\xf7" "\x73\x33\x07\x7b\xeb\xeb\x45\xf5\x9d\xff\xcb\xd5\xca\xa1\xea\xf1\x33\x79" "\x3b\x37\xb2\x94\xd5\x1c\xcf\xcd\x2c\x66\x2d\x6b\x59\xcd\xfc\xe0\x8f\x00" "\x2a\xad\x9b\x8b\x6b\x6b\xab\xf3\xa3\x3d\x7f\x96\xb2\xe7\xfa\xfa\xfa\xad" "\xba\xe7\xc9\x24\x33\x23\x3d\x4f\x6e\x8c\xab\xb3\x39\xd0\x71\x7f\x69\x30" "\xb2\x11\x00\x00\x00\x00\x00\x00\x00\x3c\xd5\xf6\x57\x8f\x33\x63\xdb\x7e" "\x90\x73\x83\xef\xff\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\x60\x2f" "\x28\x92\x7d\xdd\xa2\x5a\x0e\xf5\xea\x33\x69\x34\x93\x4c\x27\x69\x15\xb3" "\xfd\xcd\x5b\x13\x0d\xf6\x31\xf8\xc3\xa4\x03\x00\x00\x00\x80\xdd\xd7\xae" "\xcb\x83\xc5\x7f\xbb\x95\xf5\xa2\xfa\xcc\x7f\xb8\xfa\xdc\x3f\x9d\xb7\x73" "\x3d\x6b\x59\xce\x5a\x56\xb2\x94\x4b\xd5\xbd\x80\xee\xa7\xfe\xc6\x5f\x3b" "\x0b\x2b\x77\xef\x2c\x5c\x2b\x97\xd1\x81\xbf\xf6\xcf\x1d\xc5\x51\x8d\x98" "\xee\xbd\x87\xf1\x33\xcf\x55\x5b\xbc\xd0\xef\x71\x2e\xdf\xcc\x77\x72\x2c" "\xb3\xb9\x90\xd5\x2c\xe7\xbb\x59\xcc\x5a\x96\x32\x9b\x6f\x54\xb5\xc5\x14" "\x99\xa9\xef\x5e\xcc\xdc\xbd\xd3\x4e\x2f\xd6\xd1\x78\xcf\x76\x8b\xa2\x53" "\x15\x17\x36\xc7\xf6\x52\xb7\x68\xa6\x8e\xef\x48\x19\xc9\xa9\x76\x2e\x67" "\xb9\x8a\xed\x78\x2e\xb6\x7a\xa1\x37\xea\x3e\x47\x86\x66\xfb\x5d\x2b\xd9" "\x34\xe3\xed\x32\x3b\xc5\x6b\xb5\x6d\xe6\xe8\x52\x5d\x96\x7b\xf4\xd3\xba" "\xdc\x1b\x66\xaa\x3d\xdf\xdf\xcf\xc8\x5c\x9d\xfb\x32\x1b\xcf\x0e\xe7\x7d" "\x34\xf7\x3b\x3c\x4e\x36\xcf\x34\x9f\x46\xff\x1e\xd4\xa1\xc1\x2c\xe5\xea" "\xe6\x99\x76\x98\xf3\xe9\xea\xf1\x40\xbd\x56\xe6\xfa\xfd\xdd\xcd\xf9\x0e" "\x6f\xa5\x6d\xcc\x44\xe7\x27\xe5\x5a\xef\xe8\x3b\xbc\x75\xce\x93\x2f\xfe" "\xed\x8f\x17\xae\x34\xae\x5f\xbd\x72\xf9\xc6\xb1\xbd\x73\x18\x7d\x42\x9b" "\x8f\x89\x85\xa1\x4c\xbc\xb8\xad\x4c\xac\x94\x99\xe8\x3c\x42\x26\xa6\x1f" "\x25\xfe\xc7\xa7\x55\x67\xa3\x7b\x15\x1d\xb9\x5a\x4e\xa5\xba\xbc\x8d\xbf" "\x5a\xbe\x5c\xf5\x3d\x98\xe5\x7c\x2b\x6f\xe6\x52\x96\x72\x3a\x73\x99\xcf" "\x99\xcc\xe5\x2b\x39\x99\x85\x9c\x1c\xca\xeb\x0b\x5b\xe7\xb5\x3a\xd7\x1a" "\x3b\xbb\xbe\x1d\xfd\x42\x5d\x29\x5f\x93\x7e\x3c\xf4\xda\xf4\xc4\x4c\x3d" "\xa8\xa1\xd5\x4c\x9e\x1d\xca\xeb\xf0\x95\xae\xcc\xf7\xb3\x1b\x9e\x19\x64" "\xe9\xb9\x6d\x64\xa9\x68\x65\x7c\x96\xfe\x3e\x36\x94\xe6\xe7\xea\x4a\x39" "\xc7\x0f\x87\x5e\x71\x26\x6f\x73\x26\xe6\x87\x32\xf1\xfc\xd6\x99\xf8\xc5" "\x7f\xd6\x93\xdc\x58\xb9\x7e\x75\xf5\xca\xe2\x5b\xdb\x9c\xef\x95\xba\x2c" "\x4f\xdb\xf7\x36\x5e\x9b\x7f\xf9\x58\x76\x68\xe7\xea\xdd\x2d\xcf\xc3\xe7" "\x7a\x6f\x19\xde\xcf\x86\xa3\xa3\x6c\x7b\xbe\xd7\xb6\x29\x5f\xad\xfa\x1b" "\x97\x66\x3d\xd8\x86\xb6\x56\xaa\xf3\xb9\xdb\xf6\xb0\x33\xb5\x1c\xe9\xf0" "\xed\xc1\x48\xfb\xfa\x23\x75\xdb\x5e\x1c\x3b\xcb\x42\xd5\x76\x64\xa8\x6d" "\xc3\xbb\x9c\xbc\x99\x95\xfe\xbb\x10\x00\xf6\xb0\x03\xaf\x1e\x68\xb5\xef" "\xb5\xff\xd2\xfe\xb0\xfd\xa3\xf6\x95\xf6\xf9\xe9\xaf\x4f\x9d\x99\xfa\x7c" "\x2b\xfb\xff\xdc\xfc\xfd\xbe\x5f\x37\x7e\xd5\xf8\x6a\xf1\x6a\x3e\xcc\xf7" "\x73\x70\xd2\x91\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xd3\xe0\xc6\x3b\xef\x5e\x5d\x5c" "\x59\x59\x5a\xdd\x83\x95\x34\x1e\xf3\x80\xb7\xc7\x36\xf5\x52\xd1\x7d\xa6" "\xb5\x37\xf6\xfd\xd3\x5a\x99\xda\xea\x88\xfa\x4d\x92\x2d\xba\xb7\x26\x11" "\x73\x3b\xc9\x8e\x7a\x15\xcd\x64\x37\xe2\x49\xf3\x09\xec\xf2\x54\xc6\x34" "\x9d\xef\x3f\xd3\x4e\x1a\xfd\x78\x92\x5c\xdd\x23\x3f\x70\x07\xec\x86\x13" "\x6b\xd7\xde\x3a\x71\xe3\x9d\x77\xbf\xb4\x7c\x6d\xf1\x8d\xa5\x37\x96\xae" "\x9f\x3c\x73\xfa\xb5\xd3\x0b\x5f\x9e\xbf\x75\xe2\xf2\xf2\xca\xd2\x5c\xf7" "\x71\xd2\x51\x02\xbb\x61\xf0\x36\x60\xd2\x91\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xdb\xf5\x24\xfe\xcb\x62\xcc\xb4\x45\x67\x02\xfb\x0a\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x7c\x3a\x9d\x7b\x3d\xfb\x3b\x29\x32\x3f\x77\x7c\xae\x5c\xbf\x7b\x67" "\x61\xa5\x5c\x7a\xf5\xc1\x96\xcd\x24\x8d\x24\xc5\xf7\x92\xe2\x1f\x73\x83" "\x86\x99\xa1\xe1\x8a\x07\xcd\x73\xea\xde\xc7\x3f\x7f\xe5\x83\x8f\x16\x06" "\x63\x35\x7b\xdb\x37\x36\xf5\xfb\xed\xbf\xd6\xd7\x77\xb8\x17\x9d\x7a\xc9" "\x6c\x92\x7d\x75\xf9\x70\x53\xdb\x1a\xef\xe2\xd0\x78\x9d\x1d\x06\xd6\x55" "\xf4\xf7\xf0\x6c\x92\xa3\x75\x09\x13\xf7\xbf\x00\x00\x00\xff\xff\xc7\xd6" "\x06\x54", 1730); syz_mount_image(/*fs=*/0x200000c0, /*dir=*/0x20000980, /*flags=*/0, /*opts=*/0x20000a40, /*chdir=*/0xfd, /*size=*/0x6c2, /*img=*/0x20000cc0); memcpy((void*)0x20000000, ".\000", 2); res = syscall(__NR_open, /*file=*/0x20000000ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[0] = res; syscall(__NR_getdents, /*fd=*/r[0], /*ent=*/0x20001fc0ul, /*count=*/0xb8ul); } 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); const char* reason; (void)reason; loop(); return 0; }