// https://syzkaller.appspot.com/bug?id=27d313ef3e5b11d1d75cb07a6e79d8fe76904e89 // 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 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_bpf #define __NR_bpf 321 #endif static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) 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; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static void netlink_device_change(struct nlmsg* nlmsg, int sock, const char* name, bool up, const char* master, const void* mac, int macsize, const char* new_name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; hdr.ifi_index = if_nametoindex(name); netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr)); if (new_name) netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name)); if (master) { int ifindex = if_nametoindex(master); netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex)); } if (macsize) netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static int netlink_add_addr(struct nlmsg* nlmsg, int sock, const char* dev, const void* addr, int addrsize) { struct ifaddrmsg hdr; memset(&hdr, 0, sizeof(hdr)); hdr.ifa_family = addrsize == 4 ? AF_INET : AF_INET6; hdr.ifa_prefixlen = addrsize == 4 ? 24 : 120; hdr.ifa_scope = RT_SCOPE_UNIVERSE; hdr.ifa_index = if_nametoindex(dev); netlink_init(nlmsg, RTM_NEWADDR, NLM_F_CREATE | NLM_F_REPLACE, &hdr, sizeof(hdr)); netlink_attr(nlmsg, IFA_LOCAL, addr, addrsize); netlink_attr(nlmsg, IFA_ADDRESS, addr, addrsize); return netlink_send(nlmsg, sock); } static void netlink_add_addr4(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in_addr in_addr; inet_pton(AF_INET, addr, &in_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in_addr, sizeof(in_addr)); if (err < 0) { } } static void netlink_add_addr6(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in6_addr in6_addr; inet_pton(AF_INET6, addr, &in6_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in6_addr, sizeof(in6_addr)); if (err < 0) { } } static void netlink_add_neigh(struct nlmsg* nlmsg, int sock, const char* name, const void* addr, int addrsize, const void* mac, int macsize) { struct ndmsg hdr; memset(&hdr, 0, sizeof(hdr)); hdr.ndm_family = addrsize == 4 ? AF_INET : AF_INET6; hdr.ndm_ifindex = if_nametoindex(name); hdr.ndm_state = NUD_PERMANENT; netlink_init(nlmsg, RTM_NEWNEIGH, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); netlink_attr(nlmsg, NDA_DST, addr, addrsize); netlink_attr(nlmsg, NDA_LLADDR, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static struct nlmsg nlmsg; static int tunfd = -1; #define TUN_IFACE "syz_tun" #define LOCAL_MAC 0xaaaaaaaaaaaa #define REMOTE_MAC 0xaaaaaaaaaabb #define LOCAL_IPV4 "172.20.20.170" #define REMOTE_IPV4 "172.20.20.187" #define LOCAL_IPV6 "fe80::aa" #define REMOTE_IPV6 "fe80::bb" #define IFF_NAPI 0x0010 static void initialize_tun(void) { tunfd = open("/dev/net/tun", O_RDWR | O_NONBLOCK); if (tunfd == -1) { printf("tun: can't open /dev/net/tun: please enable CONFIG_TUN=y\n"); printf("otherwise fuzzing or reproducing might not work as intended\n"); return; } const int kTunFd = 200; if (dup2(tunfd, kTunFd) < 0) exit(1); close(tunfd); tunfd = kTunFd; struct ifreq ifr; memset(&ifr, 0, sizeof(ifr)); strncpy(ifr.ifr_name, TUN_IFACE, IFNAMSIZ); ifr.ifr_flags = IFF_TAP | IFF_NO_PI; if (ioctl(tunfd, TUNSETIFF, (void*)&ifr) < 0) { exit(1); } char sysctl[64]; sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/accept_dad", TUN_IFACE); write_file(sysctl, "0"); sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/router_solicitations", TUN_IFACE); write_file(sysctl, "0"); int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); netlink_add_addr4(&nlmsg, sock, TUN_IFACE, LOCAL_IPV4); netlink_add_addr6(&nlmsg, sock, TUN_IFACE, LOCAL_IPV6); uint64_t macaddr = REMOTE_MAC; struct in_addr in_addr; inet_pton(AF_INET, REMOTE_IPV4, &in_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in_addr, sizeof(in_addr), &macaddr, ETH_ALEN); struct in6_addr in6_addr; inet_pton(AF_INET6, REMOTE_IPV6, &in6_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in6_addr, sizeof(in6_addr), &macaddr, ETH_ALEN); macaddr = LOCAL_MAC; netlink_device_change(&nlmsg, sock, TUN_IFACE, true, 0, &macaddr, ETH_ALEN, NULL); close(sock); } static int runcmdline(char* cmdline) { int ret = system(cmdline); if (ret) { } return ret; } static void setup_common() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setsid(); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); setup_common(); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); initialize_tun(); setup_binderfs(); loop(); exit(1); } static int inject_fault(int nth) { int fd; fd = open("/proc/thread-self/fail-nth", O_RDWR); if (fd == -1) exit(1); char buf[16]; sprintf(buf, "%d", nth); if (write(fd, buf, strlen(buf)) != (ssize_t)strlen(buf)) exit(1); return fd; } static void setup_fault() { static struct { const char* file; const char* val; bool fatal; } files[] = { {"/sys/kernel/debug/failslab/ignore-gfp-wait", "N", true}, {"/sys/kernel/debug/fail_futex/ignore-private", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-highmem", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-wait", "N", false}, {"/sys/kernel/debug/fail_page_alloc/min-order", "0", false}, }; unsigned i; for (i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].file, files[i].val)) { if (files[i].fatal) exit(1); } } } static void setup_binfmt_misc() { if (mount(0, "/proc/sys/fs/binfmt_misc", "binfmt_misc", 0, 0)) { } write_file("/proc/sys/fs/binfmt_misc/register", ":syz0:M:0:\x01::./file0:"); write_file("/proc/sys/fs/binfmt_misc/register", ":syz1:M:1:\x02::./file0:POC"); } #define SWAP_FILE "./swap-file" #define SWAP_FILE_SIZE (128 * 1000 * 1000) static void setup_swap() { swapoff(SWAP_FILE); unlink(SWAP_FILE); int fd = open(SWAP_FILE, O_CREAT | O_WRONLY | O_CLOEXEC, 0600); if (fd == -1) { exit(1); return; } fallocate(fd, FALLOC_FL_ZERO_RANGE, 0, SWAP_FILE_SIZE); close(fd); char cmdline[64]; sprintf(cmdline, "mkswap %s", SWAP_FILE); if (runcmdline(cmdline)) { exit(1); return; } if (swapon(SWAP_FILE, SWAP_FLAG_PREFER) == 1) { exit(1); return; } } uint64_t r[3] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void loop(void) { intptr_t res = 0; res = syscall(__NR_socket, /*domain=*/1ul, /*type=*/2ul, /*proto=*/0); if (res != -1) r[0] = res; NONFAILING(*(uint32_t*)0x2000e000 = 0xe); NONFAILING(*(uint32_t*)0x2000e004 = 4); NONFAILING(*(uint64_t*)0x2000e008 = 0x200008c0); NONFAILING(memcpy( (void*)0x200008c0, "\xb4\x05\x00\x00\xfd\xff\x7f\x00\x61\x10\x58\x00\x00\x00\x00\x00\xc6\x00" "\x00\x00\x00\x00\x00\x00\x95\x00\x00\x00\x00\x00\x00\x00\x9f\x33\xef\x60" "\x91\x6e\x6e\x71\x3f\x1e\xeb\x0b\x72\x5a\xd9\x9b\x81\x7f\xd9\x8c\xd8\x24" "\x49\x89\x49\x71\x4f\xfa\xac\x8a\x6f\x67\x06\x00\xdc\xca\x55\xf2\x1f\x3c" "\xa9\xe8\x22\xd1\x82\x05\x4d\x54\xd5\x3c\xd2\xb6\xdb\x71\x4e\x4b\xeb\x54" "\x47\x00\x00\x01\x00\x00\x00\x00\x8f\x2b\x90\x00\xf2\x24\x25\xe4\x09\x7e" "\xd6\x2c\xbc\x89\x10\x61\x01\x7c\xfa\x6f\xa2\x6f\xa7\x08\x8c\x60\x89\x7d" "\x4a\x61\x48\xa1\xc1\xe4\x3f\x00\x00\x1b\xde\x60\xbe\xac\x67\x1e\x8e\x8f" "\xde\xcb\x03\x58\x8a\xa6\x23\xfa\x71\xf3\x1b\xf0\xf8\x71\xab\x5c\x2f\xf8" "\x8a\xfc\x60\x02\x7f\x4e\x5b\x52\x71\x0a\xee\xe8\x35\xcf\x0d\x00\x00\x00" "\x00\x98\xb5\x1f\xe6\xb1\xb8\xd9\xdb\xe8\x7d\xcf\xf4\x14\xed\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xb3\x47\xab\xe6\x35\x2a\x08\x0f\x81\x40\xe5\xfd" "\x10\x74\x7b\x6e\xcd\xb3\x54\x05\x46\xbf\x63\x6e\x3d\x6e\x70\x0e\x5b\xc6" "\xd3\xfd\x05\x00\x00\x00\x22\xeb\x9e\x14\x03\xe6\xc8\xf7\xa1\x87\xea\xf6" "\x0f\x3a\x17\xf0\xf0\x46\xa3\x07\xa4\x03\xc1\x9d\x98\x29\xc9\x0b\xd2\x11" "\x42\x52\x58\x15\x67\xac\xae\x71\x5c\xbe\x32\x6c\x2e\xd0\xa4\x32\xc5\xb9" "\x10\x40\x06\x23\xd2\x41\x95\x40\x5f\x2e\x76\xcc\xb7\xb3\x7b\x41\x21\x5c" "\x18\x4e\x73\x1f\xb1\xb1\x72\x19\x1d\x35\x96\x45\xfa\xe2\xd0\x74\xea\x57" "\x24\xab\x77\xea\x04\xfe\x50\x79\x38\xb1\x21\x3c\xdd\x4a\x92\x86\x0e\x59" "\x80\x86\x89\x38\x27\x34\xd2\x4b\x31\x23\xdd\x40\xc6\xd6\x12\xc8\xa1\x99" "\x48\xcd\x25\x77\x48\xb1\xe7\x32\x4a\xdd\xdb\xe6\x1d\x51\x01\x3f\x7d\x6b" "\x31\x3c\x6d\xf7\xb7\xb2\x96\x78\xd7\x0f\xc9\x4d\xcc\x3e\x99\xe2\x47\x2e" "\x78\x96\x8e\xd9\x4e\x7a\x54\x98\x86\x56\xe8\xff\xf6\xb1\xd9\xb9\x99\x3c" "\x71\xed\xd5\xcc\x10\xa2\xbe\xa8\xd9\x4d\x75\x1b\x77\xfa\x7c\x48\xc7\x12" "\xaf\x35\xa9\xff\xe6\x70\xe8\xfa\x45\x19\x42\xf4\x87\x41\x11\x94\x96\xbc" "\x30\x13\x7e\x12\x02\xae\xd6\xbb\x5c\xd5\xc2\xd0\x25\x6d\x04\x9e\x4a\x33" "\x5e\x2e\xa5\x54\x5e\x56\x24\xbe\x23\x91\xc3\x7c\x0a\x2a\xe3\xbb\xb5\xb5" "\x87\x78\xb8\x54\x24\xbc\xdb\x84\x35\x83\x59\xb2\xcb\x27\x82\xfc\x0e\x82" "\xf1\x7b\x12\xd6\x41\xce\x6a\x72\xab\x0a\xc7\x94\xf8\x78\x14\x08\x97\x70" "\x3b\xeb\xe4\x42\x01\x15\xd2\x66\x75\xf2\x75\x98\x84\x19\x65\xfa\x91\x08" "\x82\x52", 560)); NONFAILING(*(uint64_t*)0x2000e010 = 0x20003ff6); NONFAILING(memcpy((void*)0x20003ff6, "GPL\000", 4)); NONFAILING(*(uint32_t*)0x2000e018 = 4); NONFAILING(*(uint32_t*)0x2000e01c = 0xfd90); NONFAILING(*(uint64_t*)0x2000e020 = 0x2000cf3d); NONFAILING(*(uint32_t*)0x2000e028 = 0); NONFAILING(*(uint32_t*)0x2000e02c = 0); NONFAILING(memset((void*)0x2000e030, 0, 16)); NONFAILING(*(uint32_t*)0x2000e040 = 0); NONFAILING(*(uint32_t*)0x2000e044 = 0); NONFAILING(*(uint32_t*)0x2000e048 = -1); NONFAILING(*(uint32_t*)0x2000e04c = 8); NONFAILING(*(uint64_t*)0x2000e050 = 0x20000000); NONFAILING(*(uint32_t*)0x20000000 = 0); NONFAILING(*(uint32_t*)0x20000004 = 0); NONFAILING(*(uint32_t*)0x2000e058 = 0x366); NONFAILING(*(uint32_t*)0x2000e05c = 0x10); NONFAILING(*(uint64_t*)0x2000e060 = 0x20000000); NONFAILING(*(uint32_t*)0x20000000 = 0); NONFAILING(*(uint32_t*)0x20000004 = 0); NONFAILING(*(uint32_t*)0x20000008 = 0); NONFAILING(*(uint32_t*)0x2000000c = 0); NONFAILING(*(uint32_t*)0x2000e068 = 0x1dd); NONFAILING(*(uint32_t*)0x2000e06c = 0); NONFAILING(*(uint32_t*)0x2000e070 = -1); NONFAILING(*(uint32_t*)0x2000e074 = 0); NONFAILING(*(uint64_t*)0x2000e078 = 0); NONFAILING(*(uint64_t*)0x2000e080 = 0); NONFAILING(*(uint32_t*)0x2000e088 = 0x10); NONFAILING(*(uint32_t*)0x2000e08c = 0); res = syscall(__NR_bpf, /*cmd=*/5ul, /*arg=*/0x2000e000ul, /*size=*/0x48ul); if (res != -1) r[1] = res; NONFAILING(*(uint32_t*)0x20000200 = 0xf); NONFAILING(*(uint32_t*)0x20000204 = 4); NONFAILING(*(uint32_t*)0x20000208 = 4); NONFAILING(*(uint32_t*)0x2000020c = 0x12); NONFAILING(*(uint32_t*)0x20000210 = 0); NONFAILING(*(uint32_t*)0x20000214 = -1); NONFAILING(*(uint32_t*)0x20000218 = 0); NONFAILING(memset((void*)0x2000021c, 0, 16)); NONFAILING(*(uint32_t*)0x2000022c = 0); NONFAILING(*(uint32_t*)0x20000230 = -1); NONFAILING(*(uint32_t*)0x20000234 = 0); NONFAILING(*(uint32_t*)0x20000238 = 0); NONFAILING(*(uint32_t*)0x2000023c = 0); NONFAILING(*(uint64_t*)0x20000240 = 0); res = syscall(__NR_bpf, /*cmd=*/0ul, /*arg=*/0x20000200ul, /*size=*/0x48ul); if (res != -1) r[2] = res; NONFAILING(*(uint32_t*)0x20000080 = r[2]); NONFAILING(*(uint32_t*)0x20000084 = r[1]); NONFAILING(*(uint32_t*)0x20000088 = 0x26); NONFAILING(*(uint32_t*)0x2000008c = 0); NONFAILING(*(uint32_t*)0x20000090 = 0); NONFAILING(*(uint32_t*)0x20000094 = -1); NONFAILING(*(uint64_t*)0x20000098 = 0); syscall(__NR_bpf, /*cmd=*/8ul, /*arg=*/0x20000080ul, /*size=*/0x10ul); NONFAILING(*(uint32_t*)0x20000140 = r[2]); NONFAILING(*(uint64_t*)0x20000148 = 0x20000180); NONFAILING(*(uint64_t*)0x20000150 = 0x200000c0); NONFAILING(*(uint32_t*)0x200000c0 = r[0]); NONFAILING(*(uint64_t*)0x20000158 = 0); syscall(__NR_bpf, /*cmd=*/2ul, /*arg=*/0x20000140ul, /*size=*/0x20ul); NONFAILING(*(uint16_t*)0x200001c0 = 1); NONFAILING(memcpy( (void*)0x200001c2, "./" "file0\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000", 108)); syscall(__NR_bind, /*fd=*/r[0], /*addr=*/0x200001c0ul, /*addrlen=*/0x6eul); NONFAILING(*(uint64_t*)0x20001680 = 0x20000380); NONFAILING(*(uint16_t*)0x20000380 = 1); NONFAILING(memcpy( (void*)0x20000382, "./" "file0\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000", 108)); NONFAILING(*(uint32_t*)0x20001688 = 0x6e); NONFAILING(*(uint64_t*)0x20001690 = 0); NONFAILING(*(uint64_t*)0x20001698 = 0); NONFAILING(*(uint64_t*)0x200016a0 = 0); NONFAILING(*(uint64_t*)0x200016a8 = 0); NONFAILING(*(uint32_t*)0x200016b0 = 0); NONFAILING(*(uint32_t*)0x200016b8 = 0); inject_fault(7); syscall(__NR_sendmmsg, /*fd=*/r[0], /*mmsg=*/0x20001680ul, /*vlen=*/1ul, /*f=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=*/7ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); setup_binfmt_misc(); setup_fault(); setup_swap(); install_segv_handler(); use_temporary_dir(); do_sandbox_none(); return 0; }