// https://syzkaller.appspot.com/bug?id=7306b1a3b2162a7def7be218dbd73af14dbd4d96 // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif #ifndef __NR_open_tree #define __NR_open_tree 428 #endif static unsigned long long procid; 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) 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 setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; 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); setup_sysctl(); const char* reason; (void)reason; use_temporary_dir(); intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20000180, "ext4\000", 5); memcpy((void*)0x20000280, "\351\037q\211Y\036\2223aK\000", 11); memcpy((void*)0x20000880, "journal_ioprio", 14); *(uint8_t*)0x2000088e = 0x3d; sprintf((char*)0x2000088f, "0x%016llx", (long long)4); *(uint8_t*)0x200008a1 = 0x2c; memcpy((void*)0x200008a2, "nogrpid", 7); *(uint8_t*)0x200008a9 = 0x2c; memcpy((void*)0x200008aa, "nombcache", 9); *(uint8_t*)0x200008b3 = 0x2c; memcpy((void*)0x200008b4, "minixdf", 7); *(uint8_t*)0x200008bb = 0x2c; memcpy((void*)0x200008bc, "sysvgroups", 10); *(uint8_t*)0x200008c6 = 0x2c; memcpy((void*)0x200008c7, "sysvgroups", 10); *(uint8_t*)0x200008d1 = 0x2c; memcpy((void*)0x200008d2, "usrjquota=", 10); *(uint8_t*)0x200008dc = 0x2c; *(uint8_t*)0x200008dd = 0; memcpy( (void*)0x20002280, "\x78\x9c\xec\xdc\xcf\x6b\x1c\x55\x1c\x00\xf0\xef\xcc\x26\xfd\xdd\x26\xd6" "\x2a\xb4\x56\x8d\x16\x31\xf8\x23\x69\xd2\xaa\x3d\x78\x51\x14\x3c\x54\x14" "\xf4\x50\x8f\x71\x93\x96\xd2\x6d\x23\x4d\x04\x5b\x8a\x8d\x22\xf5\x22\x48" "\x41\xcf\xe2\x51\xf0\x2f\xf0\xe6\x45\xd4\x93\xe0\x55\xef\x52\x28\x1a\x84" "\x56\x4f\x91\xd9\x9d\x49\x37\xdb\xdd\x64\xd3\x6c\x76\x6b\xf7\xf3\x81\x69" "\xdf\xdb\x79\x33\xf3\xbe\x3b\xef\xed\xbc\x99\xb7\x9b\x00\xfa\xd6\x48\xf6" "\x4f\x12\xb1\x2b\x22\x7e\x8b\x88\xa1\x5a\x76\x65\x81\x91\xda\x7f\x37\x17" "\x2f\x95\xff\x59\xbc\x54\x4e\x62\x69\xe9\xad\x3f\x93\x6a\xb9\x1b\x8b\x97" "\xca\x45\xd1\x62\xbb\x9d\x79\x66\x34\x8d\x48\x3f\x49\xf2\x83\xc4\xd6\xfa" "\xdd\xce\x5d\xb8\x78\x66\xaa\x52\x99\x39\x9f\xe7\xc7\xe7\xcf\xbe\x37\x3e" "\x77\xe1\xe2\xb3\xa7\xcf\x4e\x9d\x9a\x39\x35\x73\x6e\xf2\xd8\xb1\xa3\x47" "\x26\x5e\x78\x7e\xf2\xb9\xb6\xe2\x48\xd6\x58\x9f\xc5\x75\xe3\xc0\x87\xb3" "\x07\xf7\xbf\xf6\xce\xd5\xd7\xcb\x27\xae\xbe\xfb\xd3\xb7\xd9\x36\xbb\xf2" "\xf5\xf5\x71\x74\xca\x48\x16\xf8\x5f\x4b\x55\x8d\xeb\x9e\xe8\xf4\xc1\x7a" "\x6c\x77\x5d\x3a\x19\xe8\x61\x45\x58\x97\x52\x44\x64\xa7\x6b\xb0\xda\xff" "\x87\xa2\x14\xb7\x4e\xde\x50\xbc\xfa\x71\x4f\x2b\x07\x6c\xaa\xec\xda\xb4" "\xb5\xf5\xea\x85\x25\xe0\x1e\x96\xc4\xda\x65\xfe\xee\x46\x45\x80\x2e\x2b" "\x2e\xf4\xd9\xfd\x6f\xb1\x74\x69\xe8\x71\x57\xb8\xfe\x52\xed\x06\x28\x8b" "\xfb\x66\xbe\xd4\xd6\x0c\x44\x9a\x97\x19\x6c\xb8\xbf\xed\xa4\x91\x88\x38" "\xb1\xf0\xef\x57\xd9\x12\x9b\xf4\x1c\x02\x00\xa0\xde\x67\xe5\x2f\x8f\xc7" "\x33\xcd\xc6\x7f\x69\x3c\x58\x57\x6e\x4f\x3e\x87\x32\x1c\x11\xf7\x45\xc4" "\xde\x88\xb8\x3f\x22\xf6\x45\xc4\x03\x11\x59\xd9\xc6\x21\x65\x5b\x46\x1a" "\xf2\xb7\x8f\x7f\xd2\x6b\x77\x18\x5a\x5b\xb2\xf1\xdf\x8b\xf9\xdc\xd6\xca" "\xf1\x5f\x31\xfa\x8b\xe1\x52\x9e\xdb\x5d\x8d\x7f\x30\x39\x79\xba\x32\x73" "\x38\x7f\x4f\x46\x63\x70\x6b\x96\x9f\x58\xe5\x18\xdf\xbf\xf2\xeb\xe7\xad" "\xd6\xd5\x8f\xff\xb2\x25\x3b\x7e\x31\x16\xcc\xeb\x71\x6d\xa0\xe1\x01\xdd" "\xf4\xd4\xfc\x54\x75\x50\xda\x01\xd7\x3f\x8a\x38\x30\xd0\x2c\xfe\x64\x79" "\x26\x20\x89\x88\xfd\x11\x71\x60\x7d\xbb\xde\x53\x24\x4e\x3f\xf5\xcd\xc1" "\xed\x07\x9b\x17\x5a\x3b\xfe\x55\x74\x60\x9e\x69\xe9\xeb\x88\x27\x6b\xe7" "\x7f\x21\x1a\xe2\x2f\x24\xab\xcf\x4f\x8e\x6f\x8b\xca\xcc\xe1\xf1\xa2\x55" "\xdc\xee\xe7\x5f\xae\xbc\xd9\xea\xf8\x2d\xe2\xdf\xb2\xf1\xc8\xda\x93\x9d" "\xff\x1d\x2b\xdb\x7f\x63\x91\xe1\xa4\x7e\xbe\x76\x6e\xfd\xc7\xb8\xf2\xfb" "\xa7\x2d\xef\x69\xee\xb4\xfd\x6f\x49\xde\xae\x9e\x97\xe2\x8d\xfa\x60\x6a" "\x7e\xfe\xfc\x44\xc4\x96\xe4\x78\x35\xbf\xe2\xf5\xc9\x5b\xdb\x16\xf9\xa2" "\x7c\x16\xff\xe8\xa1\xe6\xfd\x7f\x6f\xbe\x4d\x76\x9c\x87\x22\x22\x6b\xc2" "\x0f\x47\xc4\x23\x11\xf1\x68\x5e\xf7\xc7\x22\xe2\xf1\x88\x38\xb4\x4a\xfc" "\x3f\xbe\x9c\x27\x9a\xb4\xd7\x0d\xb5\xff\x0e\xc8\xe2\x9f\x6e\xfa\xf9\xb7" "\xdc\xfe\x1b\xce\xff\xfa\x13\xa5\x33\x3f\x7c\x57\xec\x6c\xdb\xba\xe3\xcf" "\xce\xff\xd1\x6a\x6a\x34\x7f\xa5\xfa\xf9\xb7\x86\x76\x2b\xb8\xd1\xf7\x0f" "\x00\x00\x00\xfe\x0f\xd2\xea\x77\xe0\x93\x74\x6c\x39\x9d\xa6\x63\x63\xb5" "\xef\xf0\xef\x8b\x1d\x69\x65\x76\x6e\xfe\xe9\x93\xb3\xef\x9f\x9b\xae\x7d" "\x57\x7e\x38\x06\xd3\xe2\x49\xd7\x50\xdd\xf3\xd0\x89\x64\x21\xdf\x63\x2d" "\x3f\x99\x3f\x2b\x2e\xd6\x1f\xc9\x9f\x1b\x7f\x51\xda\x5e\xcd\x8f\x95\x67" "\x2b\xd3\x3d\x8e\x1d\xfa\xdd\xce\x16\xfd\x3f\xf3\x47\xa9\xd7\xb5\x03\x36" "\x5d\xb3\x79\xb4\xc9\xae\x4d\x41\x01\xbd\xd4\xd8\xff\xd3\x95\xd9\xcb\x6f" "\x74\xb3\x32\x40\x57\xf9\xbd\x36\xf4\xaf\x35\xfa\x7f\xda\xad\x7a\x00\xdd" "\xe7\xfa\x0f\xfd\xab\x59\xff\xbf\xdc\x90\x37\x17\x00\xf7\x26\xd7\x7f\xe8" "\x5f\xfa\x3f\xf4\x2f\xfd\x1f\xfa\x97\xfe\x0f\x7d\x69\x23\xbf\xeb\x97\xe8" "\xe7\x44\xa4\x95\xca\xf4\xb6\x88\xd5\x0b\x17\x7f\x10\xe8\xee\xa8\xb3\x44" "\xfb\x89\x5e\x7f\x32\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\x74" "\xc6\x7f\x01\x00\x00\xff\xff\xfc\x50\xf5\x50", 1127); syz_mount_image(/*fs=*/0x20000180, /*dir=*/0x20000280, /*flags=*/0, /*opts=*/0x20000880, /*chdir=*/3, /*size=*/0x467, /*img=*/0x20002280); memcpy((void*)0x20000140, "./file0\000", 8); syscall(__NR_chdir, /*dir=*/0x20000140ul); memset((void*)0x20000640, 0, 1); res = syscall( __NR_open_tree, /*dfd=*/0xffffff9c, /*filename=*/0x20000640ul, /*flags=OPEN_TREE_CLOEXEC|OPEN_TREE_CLONE|AT_SYMLINK_NOFOLLOW|AT_RECURSIVE|AT_NO_AUTOMOUNT|AT_EMPTY_PATH*/ 0x89901ul); if (res != -1) r[0] = res; memcpy((void*)0x20000200, "./bus\000", 6); syscall(__NR_openat, /*fd=*/r[0], /*file=*/0x20000200ul, /*flags=O_TRUNC|O_NONBLOCK|O_LARGEFILE|O_CREAT|O_CLOEXEC|0x4c100023*/ 0x4c188a63, /*mode=S_IXUSR*/ 0x40); memcpy((void*)0x20000180, "blkio.bfq.io_service_time_recursive\000", 36); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000180ul, /*flags=*/0x275a, /*mode=*/0); memcpy((void*)0x20000380, "/dev/loop", 9); *(uint8_t*)0x20000389 = 0x30; *(uint8_t*)0x2000038a = 0; memcpy((void*)0x20000140, "./bus\000", 6); syscall(__NR_mount, /*src=*/0x20000380ul, /*dst=*/0x20000140ul, /*type=*/0ul, /*flags=MS_BIND*/ 0x1000ul, /*data=*/0ul); memcpy((void*)0x20000500, "./bus\000", 6); res = syscall(__NR_open, /*file=*/0x20000500ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[1] = res; *(uint64_t*)0x200007c0 = 0; *(uint64_t*)0x200007c8 = 0; *(uint64_t*)0x200007d0 = 0; *(uint64_t*)0x200007d8 = 5; *(uint64_t*)0x200007e0 = 0; *(uint32_t*)0x200007e8 = 0; *(uint32_t*)0x200007ec = 0; *(uint32_t*)0x200007f0 = 0; *(uint32_t*)0x200007f4 = 0; memcpy((void*)0x200007f8, "\x2d\xbe\x00\x00\x00\x00\x00\xe0\xf7\xd6\xa4\xae\x6d\xdd\xeb\xd1\xce" "\x5d\x29\xc2\xee\x5e\x5c\x9d\x00\x0f\xf8\xee\x09\xe7\x37\xff\x0e\xdf" "\x11\x0f\xf4\x11\x76\x39\xc2\xeb\x4b\x58\xc6\x6e\xe6\x77\xdf\x70\x19" "\x05\xbb\xaa\xfa\xb4\xaf\xba\xf7\x55\xa3\xf6\xa0\x04", 64); memcpy((void*)0x20000838, "\xcb\xa3\xd6\x27\x78\x08\x20\xd1\xcb\xf7\xdb\x71\x03\x82\xac\xeb\x38" "\xa0\xef\x8d\xa6\x56\x97\xe4\x29\x8d\x1e\x02\xdc\xb8\xeb\x8c\x6b\x10" "\x5d\x96\x00\xfd\xff\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x43\x8e\xa3\x59\x86\x6c\xfe\x1a\x00", 64); memcpy((void*)0x20000878, "\xbe\x1d\x00\x00\xae\x9e\xf3\x1e\xea\x2a\x00\x40\x00\x01\x00\x00\x00" "\x40\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 32); *(uint64_t*)0x20000898 = 0x200; *(uint64_t*)0x200008a0 = 0x20000000; syscall(__NR_ioctl, /*fd=*/r[1], /*cmd=*/0x4c04, /*arg=*/0x200007c0ul); memcpy((void*)0x20000000, "\351\037q\211Y\036\2223aK\000", 11); syscall(__NR_link, /*old=*/0x20000000ul, /*new=*/0ul); return 0; }