// https://syzkaller.appspot.com/bug?id=235c340d15618abbde31cd7bed00c7e4009d04d7 // 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 void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) { errno = EMSGSIZE; return -1; } 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, 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 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, loopfd = -1, 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) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; 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) { if (strstr(opts, "errors=panic") || strstr(opts, "errors=remount-ro") == 0) 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) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } 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: while (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW) == 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, MNT_DETACH | UMOUNT_NOFOLLOW) == 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, MNT_DETACH | UMOUNT_NOFOLLOW)) 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, MNT_DETACH | UMOUNT_NOFOLLOW)) 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")) { } } 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[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; memcpy((void*)0x20000180, "udf\000", 4); memcpy((void*)0x20000040, "./file0\000", 8); memcpy((void*)0x20000280, "fileset", 7); *(uint8_t*)0x20000287 = 0x3d; sprintf((char*)0x20000288, "%020llu", (long long)0x10001); *(uint8_t*)0x2000029c = 0x2c; memcpy((void*)0x2000029d, "iocharset", 9); *(uint8_t*)0x200002a6 = 0x3d; memcpy((void*)0x200002a7, "cp874", 5); *(uint8_t*)0x200002ac = 0x2c; memcpy((void*)0x200002ad, "nostrict", 8); *(uint8_t*)0x200002b5 = 0x2c; memcpy((void*)0x200002b6, "nostrict", 8); *(uint8_t*)0x200002be = 0x2c; memcpy((void*)0x200002bf, "noadinicb", 9); *(uint8_t*)0x200002c8 = 0x2c; memcpy((void*)0x200002c9, "longad", 6); *(uint8_t*)0x200002cf = 0x2c; memcpy((void*)0x200002d0, "lastblock", 9); *(uint8_t*)0x200002d9 = 0x3d; sprintf((char*)0x200002da, "%020llu", (long long)7); *(uint8_t*)0x200002ee = 0x2c; *(uint8_t*)0x200002ef = 0; memcpy( (void*)0x200018c0, "\x78\x9c\xec\xdd\x4f\x6c\x1c\xd7\x7d\x07\xf0\xdf\x1b\x92\x22\x29\xb7\x15" "\x13\x3b\x8a\xdd\xc6\xc5\xa6\x2d\x52\x99\xb1\x5c\xfd\x8b\xa9\x58\x85\xbb" "\xaa\x69\xb6\x01\x64\x99\x08\xc5\xdc\x02\x70\x45\x52\xea\xc2\xd4\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\xb6\x2e\x90\x5c\x7c\x28\x72\xea\x89\x68\x61" "\x23\x28\x7a\x60\x8b\x00\x39\x05\x0c\x66\xf6\xad\xb8\xa4\x28\x4b\x16\x45" "\x89\xb4\x3f\x1f\x9b\xfa\xce\xce\xbe\x37\xf3\xde\xcc\x78\x46\x16\xf4\xe6" "\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\x10\xf1\xfb\xaf" "\x5e\x3c\x75\x3a\x3d\xee\x56\x00\x00\x8f\xd2\xe5\x89\xaf\x9e\x3a\xe3\xf9" "\x0f\x00\x9f\x28\x57\xfc\xff\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x1c\x74\x29\x8a\x78\x32\x52\x2c\x5c\xde\x48\x53\xd5\xe7\xb6\x81\x4b" "\xcd\xd6\xcd\x5b\x93\xa3\x63\xbb\x57\x1b\x4c\x55\xcd\x9e\xaa\x7c\xf9\x33" "\x70\xfa\xcc\xd9\x73\x5f\x7a\x71\xe4\x7c\x27\x3f\xbc\xfe\xc3\xf6\x4c\xbc" "\x3e\x71\xe5\x62\xed\x95\xf9\x1b\x0b\x8b\xb3\x4b\x4b\xb3\x33\xb5\xc9\x56" "\x73\x7a\x7e\x66\xf6\xbe\xb7\xb0\xd7\xfa\x3b\x0d\x57\x07\xa0\x76\xe3\x8d" "\x9b\x33\xd7\xae\x2d\xd5\xce\xbc\x70\x76\xdb\xd7\xb7\x86\x3e\xe8\x7f\xe2" "\xf8\xd0\x85\x91\xe7\x4e\x3e\xdb\x29\x3b\x39\x3a\x36\x36\xd1\x55\xa6\xb7" "\xef\x81\xf7\x7e\x87\xbb\x8d\xf0\x38\x12\x45\x9c\x8c\x14\xcf\x7f\xef\x27" "\xa9\x11\x11\x45\xec\xfd\x58\xdc\xe3\xda\xd9\x6f\x83\x55\x27\x86\xab\x4e" "\x4c\x8e\x8e\x55\x1d\x99\x6b\x36\x5a\xcb\xe5\x97\xe3\x9d\x03\x51\x44\xd4" "\xba\x2a\xd5\x3b\xc7\xe8\x11\x9c\x8b\x3d\xa9\x47\xac\x94\xcd\x2f\x1b\x3c" "\x5c\x76\x6f\x62\xa1\xb1\xd8\xb8\x3a\x37\x5b\x1b\x6f\x2c\x2e\x37\x97\x9b" "\xf3\xad\xf1\xd4\x6e\x6d\xd9\x9f\x5a\x14\x71\x3e\x45\xac\x46\xc4\x7a\xff" "\x9d\x9b\xeb\x8b\x22\x7a\x23\xc5\x77\x8e\x6d\xa4\xab\x11\xd1\xd3\x39\x0e" "\x5f\xac\x06\x06\xdf\xbd\x1d\xc5\x3e\xf6\xf1\x3e\x94\xed\xac\xf5\x45\xac" "\x16\x87\xe0\x9c\x1d\x60\xfd\x51\xc4\x6b\x91\xe2\xa7\xef\x9e\x88\xe9\xf2" "\x98\xe5\x9f\xf8\x42\xc4\x6b\x65\xfe\x20\xe2\xed\x32\x5f\x8e\x48\xe5\x85" "\x71\x2e\xe2\xfd\x5d\xae\x23\x0e\xa7\xde\x28\xe2\x2f\xca\xf3\x7f\x61\x23" "\xcd\x54\xf7\x83\xce\x7d\xe5\xd2\xd7\x6a\x5f\x69\x5d\x9b\xef\x2a\xdb\xb9" "\xaf\x1c\xd2\xe7\xc3\xe0\x8e\x7c\x34\x0e\xf8\xbd\x69\x20\x8a\x68\x54\x77" "\xfc\x8d\xf4\xe0\xbf\xd9\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xe0\x61\x1b\x8c\x22\x9e\x89\x14\xaf\xfe\xc7\x1f\x57\xe3\x8a\xa3\x1a" "\x97\x7e\xec\xc2\xc8\x1f\x0c\xfd\x72\xf7\x98\xf1\xa7\xef\xb1\x9d\xb2\xec" "\x0b\x11\xb1\x52\xdc\xdf\x98\xdc\x23\x79\x08\xf1\x78\x1a\x4f\xe9\x31\x8f" "\x25\xfe\x24\x1b\x88\x22\xfe\x24\x8f\xff\xfb\xd6\xe3\x6e\x0c\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x27\x5a\x11\x3f\x8e\x14" "\x2f\xbd\x77\x22\xad\x46\xf7\x9c\xe2\xcd\xd6\xf5\xda\x95\xc6\xd5\xb9\xf6" "\xac\xb0\x9d\xb9\x7f\x3b\x73\xa6\x6f\x6e\x6e\x6e\xd6\x52\x3b\xeb\x39\xa7" "\x72\xae\xe4\x5c\xcd\xb9\x96\x73\x3d\x67\x14\xb9\x7e\xce\x7a\xce\xa9\x9c" "\x2b\x39\x57\x73\xae\xe5\x5c\xcf\x19\x3d\xb9\x7e\xce\x7a\xce\xa9\x9c\x2b" "\x39\x57\x73\xae\xe5\x5c\xcf\x19\xbd\xb9\x7e\xce\x7a\xce\xa9\x9c\x2b\x39" "\x57\x73\xae\xe5\x5c\xcf\x19\x07\x64\xee\x5e\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x8f\x93\x22\x8a\xf8\x79\xa4\xf8\xf6\x37\x36\x52\xa4\x88" "\xa8\x47\x4c\x45\x3b\xd7\xfa\x1f\x77\xeb\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\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\x52\x7f\x2a\xe2\xfb\x91" "\xa2\xf6\x87\xf5\xdb\xeb\x7a\x23\x22\x55\xff\xb6\x9d\x28\x7f\x39\x17\xf5" "\x23\x65\x7e\x3a\xea\x23\x65\xbe\x1c\xf5\x8b\x39\x1b\x55\xf6\xd6\xbf\xf5" "\x18\xda\xcf\xde\xf4\xa5\x22\x7e\x14\x29\xfa\x07\xde\xb9\x7d\xc2\xf3\xf9" "\xef\x6b\x7f\xba\x7d\x19\xc4\xdb\xdf\xdc\xfa\xf4\xab\xbd\xed\xec\xe9\x7c" "\x39\xf4\x41\xff\x13\xc7\x8f\x5d\x18\x19\xfb\xf5\xa7\xef\xb6\x9c\x76\x6b" "\xc0\xf0\xa5\x66\xeb\xe6\xad\xda\xe4\xe8\xd8\xd8\x44\xd7\xea\xde\xbc\xf7" "\x4f\x77\xad\x1b\xca\xfb\x2d\x1e\x4e\xd7\x89\x88\xa5\x37\xdf\x7a\xa3\x31" "\x37\x37\xbb\xf8\xe0\x0b\xe5\x25\xb0\x87\xea\x16\x2c\x58\x38\x78\x0b\x8f" "\xfb\xce\xc4\xa3\x50\x3e\xff\xdf\x8f\x14\xbf\xf3\xde\x7f\x76\x1e\xf8\x9d" "\xe7\xff\x2f\xb5\x3f\xdd\x7e\xc2\xc7\xcf\xfe\x74\xeb\xf9\xff\xd2\xce\x0d" "\xed\xd3\xf3\xff\xc9\xae\x75\x2f\xe5\xdf\x8d\xf4\xf5\x46\x0c\x2c\xdf\x58" "\xe8\x3b\x1e\x31\xb0\xf4\xe6\x5b\x27\x9b\x37\x1a\xd7\x67\xaf\xcf\xb6\xce" "\x9d\x3a\xf5\xe5\x91\x91\x2f\x9f\x3d\xd5\x77\x24\x62\xe0\x5a\x73\x6e\xb6" "\x6b\x69\xcf\x87\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0" "\xd1\x4a\x45\xfc\x5e\xa4\x68\xfc\x68\x23\xd5\x22\xe2\x56\x35\x5e\x6b\xe8" "\xc2\xc8\x73\x27\x9f\xed\x89\x9e\x6a\xbc\xd5\xb6\x71\x5b\xaf\x4f\x5c\xb9" "\x58\x7b\x65\xfe\xc6\xc2\xe2\xec\xd2\xd2\xec\x4c\x6d\xb2\xd5\x9c\x9e\x9f" "\x99\xbd\xdf\xdd\x0d\x54\xc3\xbd\x26\x47\xc7\xf6\xa5\x33\xf7\x34\xb8\xcf" "\xed\x1f\x1c\x78\x65\x7e\xe1\xcd\xc5\xe6\xf5\x3f\x5a\xde\xf5\xfb\xa3\x03" "\x17\xaf\x2e\x2d\x2f\x36\xa6\x77\xff\x3a\x06\xa3\x88\xa8\x77\xaf\x19\xae" "\x1a\x3c\x39\x3a\x56\x35\x7a\xae\xd9\x68\x55\x55\xc7\x77\x1d\x4c\xf7\xd1" "\xf5\xa5\x22\xfe\x2b\x52\x4c\x9f\xab\xa5\xcf\xe7\x75\x79\xfc\xdf\xce\x11" "\xfe\xdb\xc6\xff\xaf\xec\xdc\xd0\x3e\x8d\xff\xfb\x54\xd7\xba\x72\x9f\x29" "\x15\xf1\xb3\x48\xf1\xdb\x7f\xf9\x74\x7c\xbe\x6a\xe7\xd1\xb8\xe3\x98\xe5" "\x72\x7f\x1b\x29\x86\xcf\x7f\x2e\x97\x8b\x23\x65\xb9\x4e\x1b\xda\xef\x15" "\x68\x8f\x0c\x2c\xcb\xfe\x5f\xa4\xf8\xc7\x9f\x6f\x2f\xdb\x19\x0f\xf9\xe4" "\x56\xd9\xd3\xf7\x7d\x60\x0f\x89\xf2\xfc\x1f\x8b\x14\xdf\xff\xf3\xef\xc6" "\x6f\xe4\x75\xdb\xdf\xff\xb0\xfb\xf9\x3f\xba\x73\x43\xfb\x74\xfe\x9f\xea" "\x5a\x77\x74\xdb\xfb\x0a\xf6\xdc\x75\xf2\xf9\x3f\x19\x29\x5e\x7e\xf2\x9d" "\xf8\xcd\xbc\xee\xc3\xde\xff\xd1\x79\xf7\xc6\x89\x5c\xf8\xf6\xfb\x39\xf6" "\xe9\xfc\x7f\xa6\x6b\xdd\x50\xde\xef\x6f\x3d\x9c\xae\x03\x00\x00\x00\x00" "\x00\x00\x00\x00\x1c\x6a\x7d\xa9\x88\xbf\x8b\x14\xcf\x8e\xf5\xa6\x17\xf3" "\xba\xfb\xf9\xfb\x7f\x33\x3b\x37\xb4\x4f\x7f\xff\xeb\xb3\x5d\xeb\x66\x1e" "\xce\x7c\x45\xf7\x5c\xd8\xf3\x41\x05\x00\x00\x00\x80\x03\xa2\x2f\x15\xf1" "\xe3\x48\x71\x7d\xf9\x9d\xdb\x63\xa8\xb7\x8f\xff\xee\x1a\xff\xf9\xbb\x5b" "\xe3\x3f\x47\xd3\x8e\x6f\xab\x3f\xe7\xfb\x95\xea\xbd\x01\x0f\xf3\xcf\xff" "\xba\x0d\xe5\xfd\x4e\xed\xbd\xdb\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x70\xa0\xa4\x54\xc4\x8b\x79\x3e\xf5\xa9\x7b\xcc\xa7" "\xbe\x16\x29\x5e\xfd\x9f\xe7\x73\xb9\x74\xbc\x2c\xd7\x99\x07\x7e\xa8\xfa" "\x75\xe0\xf2\x7c\xeb\xe4\xc5\xb9\xb9\xf9\xe9\xc6\x72\xe3\xea\xdc\x6c\x6d" "\x62\xa1\x31\x3d\x5b\xd6\x7d\x2a\x52\x6c\xfc\xcd\xe7\x72\xdd\xa2\x9a\x5f" "\xbd\x33\xdf\x7c\x7b\x8e\xf7\xad\xb9\xd8\x17\x23\xc5\xd8\xdf\x77\xca\xb6" "\xe7\x62\xef\xcc\x4d\xfe\xd4\x56\xd9\xd3\x65\xd9\x4f\x45\x8a\xff\xfe\x87" "\xed\x65\x3b\xf3\x58\x7f\x66\xab\xec\x99\xb2\xec\x5f\x47\x8a\xaf\xff\xf3" "\xee\x65\x8f\x6f\x95\x3d\x5b\x96\xfd\x6e\xa4\xf8\xe1\xd7\x6b\x9d\xb2\x47" "\xcb\xb2\x9d\xf7\xa3\x7e\x76\xab\xec\x0b\xd3\xf3\x73\x77\xbc\x0a\x15\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3e\xaa\xbe\x54" "\xc4\x9f\x45\x8a\xff\xbd\xb1\x7a\x7b\x2c\x7f\x9e\xff\xbf\xaf\xeb\x63\xe5" "\xed\x6f\x76\xcd\xf7\xbf\xc3\xad\x6a\x9e\xff\xa1\x6a\xfe\xff\xbb\x2d\x3f" "\xc8\xfc\xff\x43\x0f\xa7\x9b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x70\xa8\xa4\x28\xe2\xad\x48\xb1\x70\x79\x23\xad" "\xf5\x97\x9f\xdb\x06\x2e\x35\x5b\x37\x6f\x4d\x8e\x8e\xed\x5e\x6d\x30\x55" "\x35\x7b\xaa\xf2\xe5\xcf\xc0\xe9\x33\x67\xcf\x7d\xe9\xc5\x91\xf3\x9d\xfc" "\xf0\xfa\x0f\xdb\x33\xf1\xfa\xc4\x95\x8b\xb5\x57\xe6\x6f\x2c\x2c\xce\x2e" "\x2d\xcd\xce\xd4\x26\x5b\xcd\xe9\xf9\x99\xd9\xfb\xde\xc2\x5e\xeb\xef\x34" "\x5c\x1d\x80\xda\x8d\x37\x6e\xce\x5c\xbb\xb6\x54\x3b\xf3\xc2\xd9\x6d\x5f" "\xdf\x1a\xfa\xa0\xff\x89\xe3\x43\x17\x46\x9e\x3b\xf9\x6c\xa7\xec\xe4\xe8" "\xd8\xd8\x44\x57\x99\xde\xbe\x07\xde\xfb\x1d\xd2\x5d\xd6\x1f\x89\x22\xfe" "\x2a\x52\x3c\xff\xbd\x9f\xa4\x7f\xe9\x8f\x28\x62\xef\xc7\xe2\x1e\xd7\xce" "\x7e\x1b\xac\x3a\x31\x5c\x75\x62\x72\x74\xac\xea\xc8\x5c\xb3\xd1\x5a\x2e" "\xbf\x1c\xef\x1c\x88\x22\xa2\xd6\x55\xa9\xde\x39\x46\x8f\xe0\x5c\xec\x49" "\x3d\x62\xa5\x6c\x7e\xd9\xe0\xe1\xb2\x7b\x13\x0b\x8d\xc5\xc6\xd5\xb9\xd9" "\xda\x78\x63\x71\xb9\xb9\xdc\x9c\x6f\x8d\xa7\x76\x6b\xcb\xfe\xd4\xa2\x88" "\xf3\x29\x62\x35\x22\xd6\xfb\xef\xdc\x5c\x5f\x14\xf1\x46\xa4\xf8\xce\xb1" "\x8d\xf4\xaf\xfd\x11\x3d\x9d\xe3\xf0\xc5\xcb\x13\x5f\x3d\x75\xe6\xee\xed" "\x28\xf6\xb1\x8f\xf7\xa1\x6c\x67\xad\x2f\x62\xb5\x38\x04\xe7\xec\x00\xeb" "\x8f\x22\xfe\x29\x52\xfc\xf4\xdd\x13\xf1\x6f\xfd\x11\xbd\xd1\xfe\x89\x2f" "\x44\xbc\x56\xe6\x0f\x22\xde\x2e\xf3\xe5\x88\x54\x5e\x18\xe7\x22\xde\xdf" "\xe5\x3a\xe2\x70\xea\x8d\x22\xfe\xbf\x3c\xff\x17\x36\xd2\xbb\xfd\xe5\xfd" "\xa0\x73\x5f\xb9\xf4\xb5\xda\x57\x5a\xd7\xe6\xbb\xca\x76\xee\x2b\x87\xfe" "\xf9\xf0\x28\x1d\xf0\x7b\xd3\x40\x14\xf1\xc3\xea\x8e\xbf\x91\xfe\xdd\x7f" "\xd7\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\x48\x11\xbf" "\x16\x29\x5e\x7a\xef\x44\xaa\xc6\x07\xdf\x1e\x53\xdc\x6c\x5d\xaf\x5d\x69" "\x5c\x9d\x6b\x0f\xeb\xeb\x8c\xfd\xeb\x8c\x99\xde\xdc\xdc\xdc\xac\xa5\x76" "\xd6\x73\x4e\xe5\x5c\xc9\xb9\x9a\x73\x2d\xe7\x7a\xce\x28\x72\xfd\x9c\xf5" "\x9c\x53\x39\x57\x72\xae\xe6\x5c\xcb\xb9\x9e\x33\x7a\x72\xfd\x9c\xf5\x9c" "\x53\x39\x57\x72\xae\xe6\x5c\xcb\xb9\x9e\x33\x7a\x73\xfd\x9c\xf5\x9c\x53" "\x39\x57\x72\xae\xe6\x5c\xcb\xb9\x9e\x33\x0e\xc8\xd8\x3d\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xe3\xa5\xa8\xfe\x49\xf1\xed" "\x6f\x6c\xa4\xcd\xfe\xf6\xfc\xd2\x53\xd1\xce\x35\xf3\x81\x7e\xec\xfd\x22" "\x00\x00\xff\xff\x1b\xb7\xfd\x0d", 3068); syz_mount_image(0x20000180, 0x20000040, 8, 0x20000280, 1, 0xbfc, 0x200018c0); memcpy((void*)0x200000c0, "./bus\000", 6); syscall(__NR_open, 0x200000c0ul, 0x14da42ul, 0ul); memcpy((void*)0x20000000, "/dev/loop0\000", 11); memcpy((void*)0x20000180, "./bus\000", 6); syscall(__NR_mount, 0x20000000ul, 0x20000180ul, 0ul, 0x1001000ul, 0ul); memcpy((void*)0x200000c0, "./bus\000", 6); res = syscall(__NR_open, 0x200000c0ul, 0x14da42ul, 0ul); if (res != -1) r[0] = res; memcpy((void*)0x20000040, "/proc/self/exe\000", 15); res = syscall(__NR_openat, -1, 0x20000040ul, 0ul, 0ul); if (res != -1) r[1] = res; syscall(__NR_sendfile, r[0], r[1], 0ul, 0x80001d00c0d0ul); } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); use_temporary_dir(); loop(); return 0; }