// https://syzkaller.appspot.com/bug?id=6f1c1e429205dd043b4d65139e89f6c747e4d095 // 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 #define BITMASK(bf_off, bf_len) (((1ull << (bf_len)) - 1) << (bf_off)) #define STORE_BY_BITMASK(type, htobe, addr, val, bf_off, bf_len) \ *(type*)(addr) = \ htobe((htobe(*(type*)(addr)) & ~BITMASK((bf_off), (bf_len))) | \ (((type)(val) << (bf_off)) & BITMASK((bf_off), (bf_len)))) struct csum_inet { uint32_t acc; }; static void csum_inet_init(struct csum_inet* csum) { csum->acc = 0; } static void csum_inet_update(struct csum_inet* csum, const uint8_t* data, size_t length) { if (length == 0) return; size_t i = 0; for (; i < length - 1; i += 2) csum->acc += *(uint16_t*)&data[i]; if (length & 1) csum->acc += le16toh((uint16_t)data[length - 1]); while (csum->acc > 0xffff) csum->acc = (csum->acc & 0xffff) + (csum->acc >> 16); } static uint16_t csum_inet_digest(struct csum_inet* csum) { return ~csum->acc; } 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 long syz_emit_ethernet(volatile long a0, volatile long a1, volatile long a2) { if (tunfd < 0) return (uintptr_t)-1; uint32_t length = a0; char* data = (char*)a1; return write(tunfd, data, length); } static void setup_gadgetfs(); static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/newroot/syz-inputs", 0700)) exit(1); if (mount("/syz-inputs", "./syz-tmp/newroot/syz-inputs", NULL, bind_mount_flags | MS_RDONLY, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { 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)) { } if (symlink("/dev/binderfs", "./binderfs")) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (getppid() == 1) exit(1); 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); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); initialize_tun(); sandbox_common_mount_tmpfs(); loop(); exit(1); } uint64_t r[3] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void loop(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // socket$igmp arguments: [ // domain: const = 0x2 (8 bytes) // type: const = 0x3 (8 bytes) // proto: const = 0x2 (4 bytes) // ] // returns sock_igmp res = syscall(__NR_socket, /*domain=*/2ul, /*type=*/3ul, /*proto=*/2); if (res != -1) r[0] = res; // setsockopt$MRT_INIT arguments: [ // fd: sock_igmp (resource) // level: const = 0x0 (4 bytes) // opt: const = 0xc8 (4 bytes) // val: ptr[in, const[0, const]] { // const = 0x0 (4 bytes) // } // len: bytesize = 0x4 (8 bytes) // ] *(uint32_t*)0x200000003d40 = 0; syscall(__NR_setsockopt, /*fd=*/r[0], /*level=*/0, /*opt=*/0xc8, /*val=*/0x200000003d40ul, /*len=*/4ul); // socket$inet_icmp_raw arguments: [ // domain: const = 0x2 (8 bytes) // type: const = 0x3 (8 bytes) // proto: const = 0x1 (4 bytes) // ] // returns sock_icmp res = syscall(__NR_socket, /*domain=*/2ul, /*type=*/3ul, /*proto=*/1); if (res != -1) r[1] = res; // socket$igmp arguments: [ // domain: const = 0x2 (8 bytes) // type: const = 0x3 (8 bytes) // proto: const = 0x2 (4 bytes) // ] // returns sock_igmp res = syscall(__NR_socket, /*domain=*/2ul, /*type=*/3ul, /*proto=*/2); if (res != -1) r[2] = res; // setsockopt$MRT_ADD_VIF arguments: [ // fd: sock_igmp (resource) // level: const = 0x0 (4 bytes) // opt: const = 0xca (4 bytes) // val: ptr[in, vifctl] { // vifctl { // vifc_vifi: int16 = 0x8 (2 bytes) // vifc_flags: viff_ctls = 0x0 (1 bytes) // vifc_threshold: int8 = 0x0 (1 bytes) // vifc_rate_limit: int32 = 0x0 (4 bytes) // u: union vifctl_u { // vifc_lcl_addr: union ipv4_addr { // local: ipv4_addr_t[const[170, int8]] { // a0: const = 0xac (1 bytes) // a1: const = 0x14 (1 bytes) // a2: const = 0x14 (1 bytes) // a3: const = 0xaa (1 bytes) // } // } // } // vifc_rmt_addr: union ipv4_addr { // dev: ipv4_addr_t[netdev_addr_id] { // a0: const = 0xac (1 bytes) // a1: const = 0x14 (1 bytes) // a2: const = 0x14 (1 bytes) // a3: int8 = 0x40 (1 bytes) // } // } // } // } // len: bytesize = 0x10 (8 bytes) // ] *(uint16_t*)0x2000000000c0 = 8; *(uint8_t*)0x2000000000c2 = 0; *(uint8_t*)0x2000000000c3 = 0; *(uint32_t*)0x2000000000c4 = 0; *(uint8_t*)0x2000000000c8 = 0xac; *(uint8_t*)0x2000000000c9 = 0x14; *(uint8_t*)0x2000000000ca = 0x14; *(uint8_t*)0x2000000000cb = 0xaa; *(uint8_t*)0x2000000000cc = 0xac; *(uint8_t*)0x2000000000cd = 0x14; *(uint8_t*)0x2000000000ce = 0x14; *(uint8_t*)0x2000000000cf = 0x40; syscall(__NR_setsockopt, /*fd=*/r[2], /*level=*/0, /*opt=*/0xca, /*val=*/0x2000000000c0ul, /*len=*/0x10ul); // setsockopt$inet_mreq arguments: [ // fd: sock_in (resource) // level: const = 0x0 (4 bytes) // optname: sockopt_opt_ip_mreq = 0x23 (4 bytes) // optval: ptr[in, ip_mreq] { // ip_mreq { // imr_multiaddr: union ipv4_addr { // multicast1: const = 0xe0000300 (4 bytes) // } // imr_interface: union ipv4_addr { // local: ipv4_addr_t[const[170, int8]] { // a0: const = 0xac (1 bytes) // a1: const = 0x14 (1 bytes) // a2: const = 0x14 (1 bytes) // a3: const = 0xaa (1 bytes) // } // } // } // } // optlen: len = 0x8 (8 bytes) // ] *(uint32_t*)0x200000000000 = htobe32(0xe0000300); *(uint8_t*)0x200000000004 = 0xac; *(uint8_t*)0x200000000005 = 0x14; *(uint8_t*)0x200000000006 = 0x14; *(uint8_t*)0x200000000007 = 0xaa; syscall(__NR_setsockopt, /*fd=*/r[1], /*level=*/0, /*optname=IP_ADD_MEMBERSHIP*/ 0x23, /*optval=*/0x200000000000ul, /*optlen=*/8ul); // syz_emit_ethernet arguments: [ // len: len = 0x3e (8 bytes) // packet: ptr[in, eth_packet] { // eth_packet { // dst_mac: union mac_addr { // local: mac_addr_t[const[0xaa, int8]] { // a0: buffer: {aa aa aa aa aa} (length 0x5) // a1: const = 0xaa (1 bytes) // } // } // src_mac: union mac_addr { // broadcast: buffer: {ff ff ff ff ff ff} (length 0x6) // } // vtag: union optional[vlan_tag] { // void: buffer: {} (length 0x0) // } // payload: eth_payload { // eth2: union eth2_packet { // ipv4: eth2_packet_t[ETH_P_IP, ipv4_packet] { // etype: const = 0x800 (2 bytes) // payload: union ipv4_packet { // icmp: ipv4_packet_t[const[IPPROTO_ICMP, int8], icmp_packet] // { // header: ipv4_header[const[IPPROTO_ICMP, int8]] { // ihl: bytesize4 = 0x5 (0 bytes) // version: const = 0x4 (1 bytes) // ecn: int8 = 0x0 (0 bytes) // dscp: int8 = 0x0 (1 bytes) // total_len: len = 0x30 (2 bytes) // id: int16be = 0x0 (2 bytes) // frag_off: int16be = 0x0 (2 bytes) // ttl: int8 = 0x80 (1 bytes) // protocol: const = 0x2 (1 bytes) // csum: csum = 0x0 (2 bytes) // src_ip: union ipv4_addr { // empty: const = 0x0 (4 bytes) // } // dst_ip: union ipv4_addr { // multicast1: const = 0xe0000300 (4 bytes) // } // options: ipv4_options { // options: array[ipv4_option] { // } // } // } // payload: union icmp_packet { // dest_unreach: icmp_dest_unreach_packet { // type: const = 0x3 (1 bytes) // code: icmp_dest_unreach_codes = 0x7 (1 bytes) // csum: csum = 0x0 (2 bytes) // unused: const = 0x0 (1 bytes) // length: int8 = 0x3 (1 bytes) // mtu: int16be = 0xc58 (2 bytes) // iph: icmp_ipv4_header { // ihl: bytesize4 = 0x5 (0 bytes) // version: const = 0x4 (1 bytes) // ecn: int8 = 0x0 (0 bytes) // dscp: int8 = 0x7 (1 bytes) // total_len: int16be = 0x0 (2 bytes) // id: int16be = 0x65 (2 bytes) // frag_off: int16be = 0xe (2 bytes) // ttl: int8 = 0x4e (1 bytes) // protocol: ipv4_types = 0x24 (1 bytes) // csum: int16be = 0xc (2 bytes) // src_ip: union ipv4_addr { // empty: const = 0x0 (4 bytes) // } // dst_ip: union ipv4_addr { // dev: ipv4_addr_t[netdev_addr_id] { // a0: const = 0xac (1 bytes) // a1: const = 0x14 (1 bytes) // a2: const = 0x14 (1 bytes) // a3: int8 = 0x44 (1 bytes) // } // } // options: ipv4_options { // options: array[ipv4_option] { // } // } // } // data: buffer: {} (length 0x0) // } // } // } // } // } // } // } // } // } // frags: nil // ] memset((void*)0x200000000140, 170, 5); *(uint8_t*)0x200000000145 = 0xaa; memset((void*)0x200000000146, 255, 6); *(uint16_t*)0x20000000014c = htobe16(0x800); STORE_BY_BITMASK(uint8_t, , 0x20000000014e, 5, 0, 4); STORE_BY_BITMASK(uint8_t, , 0x20000000014e, 4, 4, 4); STORE_BY_BITMASK(uint8_t, , 0x20000000014f, 0, 0, 2); STORE_BY_BITMASK(uint8_t, , 0x20000000014f, 0, 2, 6); *(uint16_t*)0x200000000150 = htobe16(0x30); *(uint16_t*)0x200000000152 = htobe16(0); *(uint16_t*)0x200000000154 = htobe16(0); *(uint8_t*)0x200000000156 = 0x80; *(uint8_t*)0x200000000157 = 2; *(uint16_t*)0x200000000158 = htobe16(0); *(uint32_t*)0x20000000015a = htobe32(0); *(uint32_t*)0x20000000015e = htobe32(0xe0000300); *(uint8_t*)0x200000000162 = 3; *(uint8_t*)0x200000000163 = 7; *(uint16_t*)0x200000000164 = htobe16(0); *(uint8_t*)0x200000000166 = 0; *(uint8_t*)0x200000000167 = 3; *(uint16_t*)0x200000000168 = htobe16(0xc58); STORE_BY_BITMASK(uint8_t, , 0x20000000016a, 5, 0, 4); STORE_BY_BITMASK(uint8_t, , 0x20000000016a, 4, 4, 4); STORE_BY_BITMASK(uint8_t, , 0x20000000016b, 0, 0, 2); STORE_BY_BITMASK(uint8_t, , 0x20000000016b, 7, 2, 6); *(uint16_t*)0x20000000016c = htobe16(0); *(uint16_t*)0x20000000016e = htobe16(0x65); *(uint16_t*)0x200000000170 = htobe16(0xe); *(uint8_t*)0x200000000172 = 0x4e; *(uint8_t*)0x200000000173 = 0x24; *(uint16_t*)0x200000000174 = htobe16(0xc); *(uint32_t*)0x200000000176 = htobe32(0); *(uint8_t*)0x20000000017a = 0xac; *(uint8_t*)0x20000000017b = 0x14; *(uint8_t*)0x20000000017c = 0x14; *(uint8_t*)0x20000000017d = 0x44; struct csum_inet csum_1; csum_inet_init(&csum_1); csum_inet_update(&csum_1, (const uint8_t*)0x200000000162, 28); *(uint16_t*)0x200000000164 = csum_inet_digest(&csum_1); struct csum_inet csum_2; csum_inet_init(&csum_2); csum_inet_update(&csum_2, (const uint8_t*)0x20000000014e, 20); *(uint16_t*)0x200000000158 = csum_inet_digest(&csum_2); syz_emit_ethernet(/*len=*/0x3e, /*packet=*/0x200000000140, /*frags=*/0); // setsockopt$MRT_ADD_MFC_PROXY arguments: [ // fd: sock_igmp (resource) // level: const = 0x0 (4 bytes) // opt: const = 0xd2 (4 bytes) // val: ptr[in, mfcctl] { // mfcctl { // mfcc_origin: union ipv4_addr { // empty: const = 0x0 (4 bytes) // } // mfcc_mcastgrp: union ipv4_addr { // multicast2: const = 0xe0000300 (4 bytes) // } // mfcc_parent: int16 = 0x0 (2 bytes) // mfcc_ttls: buffer: {02 8a 3f 6c 58 b2 74 e6 d8 45 16 97 ef e4 28 11 // ee 1d f0 6e 92 64 f7 d8 66 b1 97 05 48 fc 3c 7b} (length 0x20) pad = // 0x0 (2 bytes) mfcc_pkt_cnt: int32 = 0xb2 (4 bytes) mfcc_byte_cnt: // int32 = 0xfffffff7 (4 bytes) mfcc_wrong_if: int32 = 0x4 (4 bytes) // mfcc_expire: int32 = 0x40000006 (4 bytes) // } // } // len: bytesize = 0x3c (8 bytes) // ] *(uint32_t*)0x200000000200 = htobe32(0); *(uint32_t*)0x200000000204 = htobe32(0xe0000300); *(uint16_t*)0x200000000208 = 0; memcpy((void*)0x20000000020a, "\x02\x8a\x3f\x6c\x58\xb2\x74\xe6\xd8\x45\x16\x97\xef\xe4\x28\x11\xee" "\x1d\xf0\x6e\x92\x64\xf7\xd8\x66\xb1\x97\x05\x48\xfc\x3c\x7b", 32); *(uint32_t*)0x20000000022c = 0xb2; *(uint32_t*)0x200000000230 = 0xfffffff7; *(uint32_t*)0x200000000234 = 4; *(uint32_t*)0x200000000238 = 0x40000006; syscall(__NR_setsockopt, /*fd=*/r[2], /*level=*/0, /*opt=*/0xd2, /*val=*/0x200000000200ul, /*len=*/0x3cul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; do_sandbox_none(); return 0; }