// https://syzkaller.appspot.com/bug?id=65f3caae39807b0b41f8e62dec2a517a7e510651 // 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, 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) { 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) { 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")) { } } 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 < 4; 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)); 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[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20000600, "hfsplus\000", 8); memcpy((void*)0x20000040, "./bus\000", 6); memcpy( (void*)0x20000640, "\x78\x9c\xec\xdd\xcf\x6f\x1c\x57\x1d\x00\xf0\xef\xac\x37\x1b\x6f\x80" "\xc4\x6d\x93\x36\xa0\x4a\xb1\x1a\xa9\x20\x2c\x12\xdb\x2b\x17\xcc\x85" "\x80\x10\xf2\xa1\x42\x55\x39\x70\x5e\x25\x9b\x66\x95\x4d\x5a\xec\x2d" "\x72\x2b\x04\xe6\xf7\x95\x43\xff\x80\x72\xf0\x8d\x13\x12\x77\x4b\xe5" "\xc2\x05\x6e\xbd\x5a\xe2\x52\x09\x89\x4b\x0f\x60\xb8\x0c\x9a\xd9\x99" "\xdd\xb5\xbd\x76\xd7\xc1\xf6\x6e\xda\xcf\x27\x1a\xcf\x7b\xf3\xe6\xbd" "\xf9\xbe\xef\xee\xcc\x78\xc7\x8a\x36\x80\xcf\xac\xb5\x85\xa8\xee\x44" "\x12\x6b\x0b\xaf\x6e\x66\xf5\xdd\xed\x46\x67\x77\xbb\xf1\xa8\x2c\x47" "\xa5\xdc\xb3\x1a\x91\x57\x92\x7f\xa7\x69\xfa\x41\xc4\x9d\xe8\x2d\xf1" "\xc5\x6c\x63\xb1\x53\x72\xd4\x71\xde\x6b\xaf\xbe\xfe\xe1\xc7\xbb\x1f" "\x0d\xc6\xaa\x96\xfb\x57\x8e\xeb\x37\x9e\xad\x62\x89\xf9\x88\x98\x29" "\xd6\xa7\x35\xde\xdd\xa3\xc7\xbb\x38\xde\x70\x49\x7f\x86\x59\xc2\x6e" "\x96\x89\x83\x49\xbb\x10\x11\xe9\x3e\x3f\xfa\xcb\xe7\xfb\x2d\x43\xea" "\xa3\x7a\xcf\x9e\x4b\x8c\xc0\xd9\x4a\x7a\xf7\xcd\x88\xf4\xca\xbe\xed" "\x73\x11\x97\x8a\x13\x3d\xbf\xd9\x6d\xf5\x36\x57\x26\x10\xe2\xa9\xda" "\x9a\x74\x00\x00\x00\x00\x70\x0e\xae\xec\xc5\x5e\x6c\xc6\xe5\x49\xc7" "\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\x4f\x93\xe2\xfb\xff\x93" "\x62\xa9\x94\xe5\xf9\x48\xca\xef\xff\xaf\x15\xdb\xa2\x28\x4f\x97\x1b" "\x27\xdb\x7d\xe7\xac\xe2\x00\x00\x00\x00\x00\x00\x00\x80\x73\x74\x63" "\x2f\xf6\x62\x33\x2e\x97\xf5\x34\xc9\xff\xe6\xff\x52\x5e\xb9\x9a\xff" "\xfc\x5c\xbc\x1d\x1b\xd1\x8a\xf5\xb8\x15\x9b\xd1\x8c\x6e\x74\x63\x3d" "\x96\x22\x62\x6e\x68\xa0\xda\x66\xb3\xdb\x5d\x5f\x1a\xa3\xe7\xf2\xc8" "\x9e\xcb\x9f\x10\xe8\xc5\x62\x5d\x3f\x9d\x79\x03\x00\x00\x00\x00\x00" "\x00\xc0\x34\x4a\x0b\x4f\xd0\xf5\x17\xb1\x36\xf8\xfb\x3f\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4c\xdc\xdf\x2f\x95\xa5\xa4" "\x58\xae\x96\xe5\xb9\xa8\x54\x23\x62\x36\x22\x6a\xd9\x0e\x5b\x11\x7f" "\x2b\xcb\x4f\xb3\x9d\x49\x07\x00\x00\x00\x00\xe7\xe0\xca\x5e\xec\xc5" "\x66\x5c\x2e\xeb\x69\x92\x7f\xe6\x7f\x3e\xff\xdc\x3f\x1b\x6f\xc7\xe3" "\xe8\x46\x3b\xba\xd1\x89\x56\xdc\xcb\x9f\x05\xf4\x3e\xf5\x57\x76\xb7" "\x1b\x9d\xdd\xed\xc6\xa3\x6c\x39\x3c\xee\xb7\xff\x79\xa2\x30\xf2\x11" "\x23\x62\x26\xaf\x8d\x3a\xf2\xf5\x7c\x8f\x7a\xdc\x8f\x76\xbe\xe5\x56" "\xdc\x8d\x37\xa3\x13\xf7\xa2\x92\xf7\xcc\x5c\x2f\xe3\x19\x1d\xd7\xcf" "\xb3\x98\x92\x6f\x15\xc6\x8c\xec\x5e\xb1\xce\x66\xfe\xbb\x62\x7d\x46" "\x6a\x11\x37\x4e\xb0\xfb\x5c\x9e\x91\x0b\xfd\x8c\x2c\x16\xb1\x65\xd9" "\x78\xe6\xf8\x4c\x9c\xf0\xd5\x39\x78\xa4\xa5\xa8\xf4\x9f\xfc\x5c\x3d" "\x70\xa4\x03\x4f\x84\x9e\x28\xe7\xe5\x63\xa8\x6c\x3e\xbf\x39\xdb\x9c" "\x9f\xd0\xc1\x4c\x2c\x0f\xbd\xfb\x9e\x3f\x3e\xe7\x11\x5f\xfe\xd3\x1f" "\x7e\xf8\xa0\xf3\xf8\xe1\x83\xfb\x1b\x0b\xd3\x33\xa5\x63\xdc\x19\x14" "\x67\x8a\x75\x5a\x6e\x38\x98\x89\xc6\x50\x26\x5e\xf8\x54\x64\x62\xdc" "\x73\x71\x31\xcf\xc4\xb5\x5e\x65\xab\xdc\xba\x10\xf3\xf1\x5a\xac\x47" "\x3b\x7e\x1c\xcd\xe8\x46\x2b\xe6\xe3\xbb\x79\xa9\x59\xbc\x9f\x93\xa1" "\xe7\xa7\x47\x64\xea\xce\xbe\xda\x6b\x9f\x14\x49\xad\x78\x5d\x7a\x2f" "\x56\x3f\xa6\x88\x58\x8b\xef\xc5\x0f\x8e\x8d\xe9\xa5\xbc\xef\xe5\x68" "\xc7\xf7\xe3\xcd\xb8\x17\xad\x78\x25\xff\xb7\x1c\x4b\xf1\xf5\x58\x89" "\x95\x58\x1d\x7a\x85\xaf\x8d\x71\xa5\xad\x1c\x71\xd6\xa7\x5f\x18\x19" "\xfc\xcd\xaf\x14\x85\x7a\x44\xfc\xb6\x58\x4f\x87\x2c\xaf\xcf\x94\x79" "\x4d\xaf\x14\x5b\x7b\xd7\xdc\xb9\xbc\x6d\xf8\x2a\x3c\xc8\xd2\xb3\xa7" "\x7f\x3f\xaa\x7e\xa9\x28\x64\xc7\xf8\x65\xb1\x9e\x0e\x07\x33\xb1\x34" "\x94\x89\xe7\x8e\xcf\xc4\xef\xf3\xcb\xca\x46\xe7\xf1\xc3\xf5\x07\xcd" "\xb7\xc6\x3c\xde\xcb\xc5\x3a\x3b\x8f\x7e\x3d\x55\x77\x89\xec\xfd\xf2" "\x6c\xf6\x62\xe5\xb5\xfd\xef\x8e\xac\xed\xb9\x91\x6d\x4b\x79\xdb\xd5" "\x7e\x5b\xe5\x50\xdb\xb5\x7e\x5b\xef\x4c\xdd\x3a\xf2\x4c\xad\x15\xbf" "\xc3\x1d\x1e\x69\x39\x6f\x7b\x61\x64\x5b\x23\x6f\xbb\x3e\xd4\x36\xea" "\xf7\x2d\x00\xa6\xde\xa5\xaf\x5e\xaa\xd5\xff\x51\xff\x6b\xfd\xfd\xfa" "\xaf\xea\x0f\xea\xaf\xce\x7e\xe7\xe2\x37\x2e\xbe\x58\x8b\x0b\x7f\xbe" "\xf0\xcd\xea\xe2\xcc\xcb\x95\x17\x93\x3f\xc6\xfb\xf1\xd3\xc1\xe7\x7f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xe0\xc9\x6d\xbc\xf3\xee\xc3\x66\xa7\xd3\x5a" "\x3f\x50\x48\xd3\xf4\x67\x47\x34\x4d\x7f\xa1\x5a\x4c\xee\x70\x53\xf9" "\x75\x66\xcd\x4e\xa7\x3e\x15\xa1\x7e\x56\x0a\xff\x49\xd3\xb4\xd8\x92" "\xb4\xfe\x9b\xf6\x64\x4d\xb3\x31\x25\x11\x0e\x17\x8a\xf8\xd2\x13\xf4" "\x8a\xb9\x93\x1f\xab\x32\x8d\x73\x2f\x0b\x13\xbc\x28\x01\xe7\xe2\x76" "\xf7\xd1\x5b\xb7\x37\xde\x79\xf7\x6b\xed\x47\xcd\x37\x5a\x6f\xb4\x1e" "\xaf\xae\xac\xac\x2e\xae\xae\xbc\xd2\xb8\x7d\xbf\xdd\x69\x2d\xf6\x7e" "\x4e\x3a\x4a\xe0\x2c\x0c\x6e\xfa\x93\x8e\x04\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x18\xd7\x79\xfc\x77\x82\x49\xcf\x11\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xba\xad\x2d\x44\x75\x27\x92\x58\x5a\xbc\xb5\x98\xd5\x77\xb7" "\x1b\x9d\x6c\x29\xcb\x83\x3d\xab\x11\x51\x89\x88\xe4\x27\x95\x48\x3e" "\xf8\x57\xdc\x89\xc8\x97\x98\x1b\x1a\x2e\x39\xea\x38\xef\xb5\x57\x5f" "\xff\xf0\xe3\xdd\x8f\x06\x63\x55\xcb\xfd\x2b\xc7\xf5\x1b\xcf\x56\xb1" "\xc4\x7c\x44\xcc\x14\xeb\xd3\x1a\xef\xee\xff\x3d\x5e\xd2\x9f\x61\x96" "\xb0\x9b\x65\xe2\x60\xd2\xfe\x17\x00\x00\xff\xff\xf2\x25\x1c\x5f", 1631); syz_mount_image(0x20000600, 0x20000040, 0x1010850, 0x200003c0, 1, 0x65f, 0x20000640); break; case 1: memcpy((void*)0x20000000, "./bus\000", 6); res = syscall(__NR_creat, 0x20000000ul, 0ul); if (res != -1) r[0] = res; break; case 2: memcpy((void*)0x20000200, "threaded\000", 9); syscall(__NR_write, r[0], 0x20000200ul, 0x175d9003ul); break; case 3: memcpy((void*)0x200000c0, "./file1\000", 8); syscall(__NR_creat, 0x200000c0ul, 0ul); break; } } 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); for (procid = 0; procid < 6; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }