// https://syzkaller.appspot.com/bug?id=c5de5b973faa8c43c1bf65309e687c47f7c6d75b // 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 #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif #ifndef __NR_mount_setattr #define __NR_mount_setattr 442 #endif static unsigned long long procid; 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 void netlink_nest(struct nlmsg* nlmsg, int typ) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_type = typ; nlmsg->pos += sizeof(*attr); nlmsg->nested[nlmsg->nesting++] = attr; } static void netlink_done(struct nlmsg* nlmsg) { struct nlattr* attr = nlmsg->nested[--nlmsg->nesting]; attr->nla_len = nlmsg->pos - (char*)attr; } 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 int netlink_next_msg(struct nlmsg* nlmsg, unsigned int offset, unsigned int total_len) { struct nlmsghdr* hdr = (struct nlmsghdr*)(nlmsg->buf + offset); if (offset == total_len || offset + hdr->nlmsg_len > total_len) return -1; return hdr->nlmsg_len; } static unsigned int queue_count = 2; static void netlink_add_device_impl(struct nlmsg* nlmsg, const char* type, const char* name, bool up) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; netlink_init(nlmsg, RTM_NEWLINK, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); if (name) netlink_attr(nlmsg, IFLA_IFNAME, name, strlen(name)); netlink_attr(nlmsg, IFLA_NUM_TX_QUEUES, &queue_count, sizeof(queue_count)); netlink_attr(nlmsg, IFLA_NUM_RX_QUEUES, &queue_count, sizeof(queue_count)); netlink_nest(nlmsg, IFLA_LINKINFO); netlink_attr(nlmsg, IFLA_INFO_KIND, type, strlen(type)); } static void netlink_add_device(struct nlmsg* nlmsg, int sock, const char* type, const char* name) { netlink_add_device_impl(nlmsg, type, name, false); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_veth(struct nlmsg* nlmsg, int sock, const char* name, const char* peer) { netlink_add_device_impl(nlmsg, "veth", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_nest(nlmsg, VETH_INFO_PEER); nlmsg->pos += sizeof(struct ifinfomsg); netlink_attr(nlmsg, IFLA_IFNAME, peer, strlen(peer)); netlink_attr(nlmsg, IFLA_NUM_TX_QUEUES, &queue_count, sizeof(queue_count)); netlink_attr(nlmsg, IFLA_NUM_RX_QUEUES, &queue_count, sizeof(queue_count)); netlink_done(nlmsg); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_xfrm(struct nlmsg* nlmsg, int sock, const char* name) { netlink_add_device_impl(nlmsg, "xfrm", name, true); netlink_nest(nlmsg, IFLA_INFO_DATA); int if_id = 1; netlink_attr(nlmsg, 2, &if_id, sizeof(if_id)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_hsr(struct nlmsg* nlmsg, int sock, const char* name, const char* slave1, const char* slave2) { netlink_add_device_impl(nlmsg, "hsr", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); int ifindex1 = if_nametoindex(slave1); netlink_attr(nlmsg, IFLA_HSR_SLAVE1, &ifindex1, sizeof(ifindex1)); int ifindex2 = if_nametoindex(slave2); netlink_attr(nlmsg, IFLA_HSR_SLAVE2, &ifindex2, sizeof(ifindex2)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_linked(struct nlmsg* nlmsg, int sock, const char* type, const char* name, const char* link) { netlink_add_device_impl(nlmsg, type, name, false); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_vlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link, uint16_t id, uint16_t proto) { netlink_add_device_impl(nlmsg, "vlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_VLAN_ID, &id, sizeof(id)); netlink_attr(nlmsg, IFLA_VLAN_PROTOCOL, &proto, sizeof(proto)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_macvlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link) { netlink_add_device_impl(nlmsg, "macvlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); uint32_t mode = MACVLAN_MODE_BRIDGE; netlink_attr(nlmsg, IFLA_MACVLAN_MODE, &mode, sizeof(mode)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_geneve(struct nlmsg* nlmsg, int sock, const char* name, uint32_t vni, struct in_addr* addr4, struct in6_addr* addr6) { netlink_add_device_impl(nlmsg, "geneve", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_GENEVE_ID, &vni, sizeof(vni)); if (addr4) netlink_attr(nlmsg, IFLA_GENEVE_REMOTE, addr4, sizeof(*addr4)); if (addr6) netlink_attr(nlmsg, IFLA_GENEVE_REMOTE6, addr6, sizeof(*addr6)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } #define IFLA_IPVLAN_FLAGS 2 #define IPVLAN_MODE_L3S 2 #undef IPVLAN_F_VEPA #define IPVLAN_F_VEPA 2 static void netlink_add_ipvlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link, uint16_t mode, uint16_t flags) { netlink_add_device_impl(nlmsg, "ipvlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_IPVLAN_MODE, &mode, sizeof(mode)); netlink_attr(nlmsg, IFLA_IPVLAN_FLAGS, &flags, sizeof(flags)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } 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 correct_dev_net_tun(void) { struct stat st; if (stat("/dev/net/tun", &st) == 0) { if (S_ISCHR(st.st_mode) && major(st.st_rdev) == 10 && minor(st.st_rdev) == 200) return; if (unlink("/dev/net/tun")) { } } if (mkdir("/dev/net", 0755) && errno != EEXIST) { } if (mknod("/dev/net/tun", S_IFCHR | 0666, makedev(10, 200))) { } if (chmod("/dev/net/tun", 0666)) { } } static void initialize_tun(void) { correct_dev_net_tun(); 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); } #define DEVLINK_FAMILY_NAME "devlink" #define DEVLINK_CMD_PORT_GET 5 #define DEVLINK_ATTR_BUS_NAME 1 #define DEVLINK_ATTR_DEV_NAME 2 #define DEVLINK_ATTR_NETDEV_NAME 7 static struct nlmsg nlmsg2; static void initialize_devlink_ports(const char* bus_name, const char* dev_name, const char* netdev_prefix) { struct genlmsghdr genlhdr; int len, total_len, id, err, offset; uint16_t netdev_index; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) exit(1); int rtsock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (rtsock == -1) exit(1); id = netlink_query_family_id(&nlmsg, sock, DEVLINK_FAMILY_NAME, true); if (id == -1) goto error; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = DEVLINK_CMD_PORT_GET; netlink_init(&nlmsg, id, NLM_F_DUMP, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, DEVLINK_ATTR_BUS_NAME, bus_name, strlen(bus_name) + 1); netlink_attr(&nlmsg, DEVLINK_ATTR_DEV_NAME, dev_name, strlen(dev_name) + 1); err = netlink_send_ext(&nlmsg, sock, id, &total_len, true); if (err < 0) { goto error; } offset = 0; netdev_index = 0; while ((len = netlink_next_msg(&nlmsg, offset, total_len)) != -1) { struct nlattr* attr = (struct nlattr*)(nlmsg.buf + offset + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg.buf + offset + len; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == DEVLINK_ATTR_NETDEV_NAME) { char* port_name; char netdev_name[IFNAMSIZ]; port_name = (char*)(attr + 1); snprintf(netdev_name, sizeof(netdev_name), "%s%d", netdev_prefix, netdev_index); netlink_device_change(&nlmsg2, rtsock, port_name, true, 0, 0, 0, netdev_name); break; } } offset += len; netdev_index++; } error: close(rtsock); close(sock); } #define DEV_IPV4 "172.20.20.%d" #define DEV_IPV6 "fe80::%02x" #define DEV_MAC 0x00aaaaaaaaaa static void netdevsim_add(unsigned int addr, unsigned int port_count) { write_file("/sys/bus/netdevsim/del_device", "%u", addr); if (write_file("/sys/bus/netdevsim/new_device", "%u %u", addr, port_count)) { char buf[32]; snprintf(buf, sizeof(buf), "netdevsim%d", addr); initialize_devlink_ports("netdevsim", buf, "netdevsim"); } } #define WG_GENL_NAME "wireguard" enum wg_cmd { WG_CMD_GET_DEVICE, WG_CMD_SET_DEVICE, }; enum wgdevice_attribute { WGDEVICE_A_UNSPEC, WGDEVICE_A_IFINDEX, WGDEVICE_A_IFNAME, WGDEVICE_A_PRIVATE_KEY, WGDEVICE_A_PUBLIC_KEY, WGDEVICE_A_FLAGS, WGDEVICE_A_LISTEN_PORT, WGDEVICE_A_FWMARK, WGDEVICE_A_PEERS, }; enum wgpeer_attribute { WGPEER_A_UNSPEC, WGPEER_A_PUBLIC_KEY, WGPEER_A_PRESHARED_KEY, WGPEER_A_FLAGS, WGPEER_A_ENDPOINT, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, WGPEER_A_LAST_HANDSHAKE_TIME, WGPEER_A_RX_BYTES, WGPEER_A_TX_BYTES, WGPEER_A_ALLOWEDIPS, WGPEER_A_PROTOCOL_VERSION, }; enum wgallowedip_attribute { WGALLOWEDIP_A_UNSPEC, WGALLOWEDIP_A_FAMILY, WGALLOWEDIP_A_IPADDR, WGALLOWEDIP_A_CIDR_MASK, }; static void netlink_wireguard_setup(void) { const char ifname_a[] = "wg0"; const char ifname_b[] = "wg1"; const char ifname_c[] = "wg2"; const char private_a[] = "\xa0\x5c\xa8\x4f\x6c\x9c\x8e\x38\x53\xe2\xfd\x7a\x70\xae\x0f\xb2\x0f\xa1" "\x52\x60\x0c\xb0\x08\x45\x17\x4f\x08\x07\x6f\x8d\x78\x43"; const char private_b[] = "\xb0\x80\x73\xe8\xd4\x4e\x91\xe3\xda\x92\x2c\x22\x43\x82\x44\xbb\x88\x5c" "\x69\xe2\x69\xc8\xe9\xd8\x35\xb1\x14\x29\x3a\x4d\xdc\x6e"; const char private_c[] = "\xa0\xcb\x87\x9a\x47\xf5\xbc\x64\x4c\x0e\x69\x3f\xa6\xd0\x31\xc7\x4a\x15" "\x53\xb6\xe9\x01\xb9\xff\x2f\x51\x8c\x78\x04\x2f\xb5\x42"; const char public_a[] = "\x97\x5c\x9d\x81\xc9\x83\xc8\x20\x9e\xe7\x81\x25\x4b\x89\x9f\x8e\xd9\x25" "\xae\x9f\x09\x23\xc2\x3c\x62\xf5\x3c\x57\xcd\xbf\x69\x1c"; const char public_b[] = "\xd1\x73\x28\x99\xf6\x11\xcd\x89\x94\x03\x4d\x7f\x41\x3d\xc9\x57\x63\x0e" "\x54\x93\xc2\x85\xac\xa4\x00\x65\xcb\x63\x11\xbe\x69\x6b"; const char public_c[] = "\xf4\x4d\xa3\x67\xa8\x8e\xe6\x56\x4f\x02\x02\x11\x45\x67\x27\x08\x2f\x5c" "\xeb\xee\x8b\x1b\xf5\xeb\x73\x37\x34\x1b\x45\x9b\x39\x22"; const uint16_t listen_a = 20001; const uint16_t listen_b = 20002; const uint16_t listen_c = 20003; const uint16_t af_inet = AF_INET; const uint16_t af_inet6 = AF_INET6; const struct sockaddr_in endpoint_b_v4 = { .sin_family = AF_INET, .sin_port = htons(listen_b), .sin_addr = {htonl(INADDR_LOOPBACK)}}; const struct sockaddr_in endpoint_c_v4 = { .sin_family = AF_INET, .sin_port = htons(listen_c), .sin_addr = {htonl(INADDR_LOOPBACK)}}; struct sockaddr_in6 endpoint_a_v6 = {.sin6_family = AF_INET6, .sin6_port = htons(listen_a)}; endpoint_a_v6.sin6_addr = in6addr_loopback; struct sockaddr_in6 endpoint_c_v6 = {.sin6_family = AF_INET6, .sin6_port = htons(listen_c)}; endpoint_c_v6.sin6_addr = in6addr_loopback; const struct in_addr first_half_v4 = {0}; const struct in_addr second_half_v4 = {(uint32_t)htonl(128 << 24)}; const struct in6_addr first_half_v6 = {{{0}}}; const struct in6_addr second_half_v6 = {{{0x80}}}; const uint8_t half_cidr = 1; const uint16_t persistent_keepalives[] = {1, 3, 7, 9, 14, 19}; struct genlmsghdr genlhdr = {.cmd = WG_CMD_SET_DEVICE, .version = 1}; int sock; int id, err; sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) { return; } id = netlink_query_family_id(&nlmsg, sock, WG_GENL_NAME, true); if (id == -1) goto error; netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_a, strlen(ifname_a) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_a, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_a, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_b, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_b_v4, sizeof(endpoint_b_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[0], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_c, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_c_v6, sizeof(endpoint_c_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[1], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_b, strlen(ifname_b) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_b, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_b, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_a, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_a_v6, sizeof(endpoint_a_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[2], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_c, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_c_v4, sizeof(endpoint_c_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[3], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_c, strlen(ifname_c) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_c, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_c, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_a, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_a_v6, sizeof(endpoint_a_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[4], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_b, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_b_v4, sizeof(endpoint_b_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[5], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } error: close(sock); } static void initialize_netdevices(void) { char netdevsim[16]; sprintf(netdevsim, "netdevsim%d", (int)procid); struct { const char* type; const char* dev; } devtypes[] = { {"ip6gretap", "ip6gretap0"}, {"bridge", "bridge0"}, {"vcan", "vcan0"}, {"bond", "bond0"}, {"team", "team0"}, {"dummy", "dummy0"}, {"nlmon", "nlmon0"}, {"caif", "caif0"}, {"batadv", "batadv0"}, {"vxcan", "vxcan1"}, {"veth", 0}, {"wireguard", "wg0"}, {"wireguard", "wg1"}, {"wireguard", "wg2"}, }; const char* devmasters[] = {"bridge", "bond", "team", "batadv"}; struct { const char* name; int macsize; bool noipv6; } devices[] = { {"lo", ETH_ALEN}, {"sit0", 0}, {"bridge0", ETH_ALEN}, {"vcan0", 0, true}, {"tunl0", 0}, {"gre0", 0}, {"gretap0", ETH_ALEN}, {"ip_vti0", 0}, {"ip6_vti0", 0}, {"ip6tnl0", 0}, {"ip6gre0", 0}, {"ip6gretap0", ETH_ALEN}, {"erspan0", ETH_ALEN}, {"bond0", ETH_ALEN}, {"veth0", ETH_ALEN}, {"veth1", ETH_ALEN}, {"team0", ETH_ALEN}, {"veth0_to_bridge", ETH_ALEN}, {"veth1_to_bridge", ETH_ALEN}, {"veth0_to_bond", ETH_ALEN}, {"veth1_to_bond", ETH_ALEN}, {"veth0_to_team", ETH_ALEN}, {"veth1_to_team", ETH_ALEN}, {"veth0_to_hsr", ETH_ALEN}, {"veth1_to_hsr", ETH_ALEN}, {"hsr0", 0}, {"dummy0", ETH_ALEN}, {"nlmon0", 0}, {"vxcan0", 0, true}, {"vxcan1", 0, true}, {"caif0", ETH_ALEN}, {"batadv0", ETH_ALEN}, {netdevsim, ETH_ALEN}, {"xfrm0", ETH_ALEN}, {"veth0_virt_wifi", ETH_ALEN}, {"veth1_virt_wifi", ETH_ALEN}, {"virt_wifi0", ETH_ALEN}, {"veth0_vlan", ETH_ALEN}, {"veth1_vlan", ETH_ALEN}, {"vlan0", ETH_ALEN}, {"vlan1", ETH_ALEN}, {"macvlan0", ETH_ALEN}, {"macvlan1", ETH_ALEN}, {"ipvlan0", ETH_ALEN}, {"ipvlan1", ETH_ALEN}, {"veth0_macvtap", ETH_ALEN}, {"veth1_macvtap", ETH_ALEN}, {"macvtap0", ETH_ALEN}, {"macsec0", ETH_ALEN}, {"veth0_to_batadv", ETH_ALEN}, {"veth1_to_batadv", ETH_ALEN}, {"batadv_slave_0", ETH_ALEN}, {"batadv_slave_1", ETH_ALEN}, {"geneve0", ETH_ALEN}, {"geneve1", ETH_ALEN}, {"wg0", 0}, {"wg1", 0}, {"wg2", 0}, }; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); unsigned i; for (i = 0; i < sizeof(devtypes) / sizeof(devtypes[0]); i++) netlink_add_device(&nlmsg, sock, devtypes[i].type, devtypes[i].dev); for (i = 0; i < sizeof(devmasters) / (sizeof(devmasters[0])); i++) { char master[32], slave0[32], veth0[32], slave1[32], veth1[32]; sprintf(slave0, "%s_slave_0", devmasters[i]); sprintf(veth0, "veth0_to_%s", devmasters[i]); netlink_add_veth(&nlmsg, sock, slave0, veth0); sprintf(slave1, "%s_slave_1", devmasters[i]); sprintf(veth1, "veth1_to_%s", devmasters[i]); netlink_add_veth(&nlmsg, sock, slave1, veth1); sprintf(master, "%s0", devmasters[i]); netlink_device_change(&nlmsg, sock, slave0, false, master, 0, 0, NULL); netlink_device_change(&nlmsg, sock, slave1, false, master, 0, 0, NULL); } netlink_add_xfrm(&nlmsg, sock, "xfrm0"); netlink_device_change(&nlmsg, sock, "bridge_slave_0", true, 0, 0, 0, NULL); netlink_device_change(&nlmsg, sock, "bridge_slave_1", true, 0, 0, 0, NULL); netlink_add_veth(&nlmsg, sock, "hsr_slave_0", "veth0_to_hsr"); netlink_add_veth(&nlmsg, sock, "hsr_slave_1", "veth1_to_hsr"); netlink_add_hsr(&nlmsg, sock, "hsr0", "hsr_slave_0", "hsr_slave_1"); netlink_device_change(&nlmsg, sock, "hsr_slave_0", true, 0, 0, 0, NULL); netlink_device_change(&nlmsg, sock, "hsr_slave_1", true, 0, 0, 0, NULL); netlink_add_veth(&nlmsg, sock, "veth0_virt_wifi", "veth1_virt_wifi"); netlink_add_linked(&nlmsg, sock, "virt_wifi", "virt_wifi0", "veth1_virt_wifi"); netlink_add_veth(&nlmsg, sock, "veth0_vlan", "veth1_vlan"); netlink_add_vlan(&nlmsg, sock, "vlan0", "veth0_vlan", 0, htons(ETH_P_8021Q)); netlink_add_vlan(&nlmsg, sock, "vlan1", "veth0_vlan", 1, htons(ETH_P_8021AD)); netlink_add_macvlan(&nlmsg, sock, "macvlan0", "veth1_vlan"); netlink_add_macvlan(&nlmsg, sock, "macvlan1", "veth1_vlan"); netlink_add_ipvlan(&nlmsg, sock, "ipvlan0", "veth0_vlan", IPVLAN_MODE_L2, 0); netlink_add_ipvlan(&nlmsg, sock, "ipvlan1", "veth0_vlan", IPVLAN_MODE_L3S, IPVLAN_F_VEPA); netlink_add_veth(&nlmsg, sock, "veth0_macvtap", "veth1_macvtap"); netlink_add_linked(&nlmsg, sock, "macvtap", "macvtap0", "veth0_macvtap"); netlink_add_linked(&nlmsg, sock, "macsec", "macsec0", "veth1_macvtap"); char addr[32]; sprintf(addr, DEV_IPV4, 14 + 10); struct in_addr geneve_addr4; if (inet_pton(AF_INET, addr, &geneve_addr4) <= 0) exit(1); struct in6_addr geneve_addr6; if (inet_pton(AF_INET6, "fc00::01", &geneve_addr6) <= 0) exit(1); netlink_add_geneve(&nlmsg, sock, "geneve0", 0, &geneve_addr4, 0); netlink_add_geneve(&nlmsg, sock, "geneve1", 1, 0, &geneve_addr6); netdevsim_add((int)procid, 4); netlink_wireguard_setup(); for (i = 0; i < sizeof(devices) / (sizeof(devices[0])); i++) { char addr[32]; sprintf(addr, DEV_IPV4, i + 10); netlink_add_addr4(&nlmsg, sock, devices[i].name, addr); if (!devices[i].noipv6) { sprintf(addr, DEV_IPV6, i + 10); netlink_add_addr6(&nlmsg, sock, devices[i].name, addr); } uint64_t macaddr = DEV_MAC + ((i + 10ull) << 40); netlink_device_change(&nlmsg, sock, devices[i].name, true, 0, &macaddr, devices[i].macsize, NULL); } close(sock); } static void initialize_netdevices_init(void) { int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); struct { const char* type; int macsize; bool noipv6; bool noup; } devtypes[] = { {"nr", 7, true}, {"rose", 5, true, true}, }; unsigned i; for (i = 0; i < sizeof(devtypes) / sizeof(devtypes[0]); i++) { char dev[32], addr[32]; sprintf(dev, "%s%d", devtypes[i].type, (int)procid); sprintf(addr, "172.30.%d.%d", i, (int)procid + 1); netlink_add_addr4(&nlmsg, sock, dev, addr); if (!devtypes[i].noipv6) { sprintf(addr, "fe88::%02x:%02x", i, (int)procid + 1); netlink_add_addr6(&nlmsg, sock, dev, addr); } int macsize = devtypes[i].macsize; uint64_t macaddr = 0xbbbbbb + ((unsigned long long)i << (8 * (macsize - 2))) + (procid << (8 * (macsize - 1))); netlink_device_change(&nlmsg, sock, dev, !devtypes[i].noup, 0, &macaddr, macsize, NULL); } close(sock); } #define MAX_FDS 30 //% 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"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } 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_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)) { } } 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(); initialize_netdevices_init(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); initialize_tun(); initialize_netdevices(); sandbox_common_mount_tmpfs(); loop(); exit(1); } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static const char* setup_binfmt_misc() { if (mount(0, "/proc/sys/fs/binfmt_misc", "binfmt_misc", 0, 0) && errno != EBUSY) { return NULL; } if (!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")) return "write(/proc/sys/fs/binfmt_misc/register) failed"; return NULL; } static const char* setup_usb() { if (chmod("/dev/raw-gadget", 0666)) return "failed to chmod /dev/raw-gadget"; return NULL; } 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) ; } #define FUSE_MIN_READ_BUFFER 8192 enum fuse_opcode { FUSE_LOOKUP = 1, FUSE_FORGET = 2, FUSE_GETATTR = 3, FUSE_SETATTR = 4, FUSE_READLINK = 5, FUSE_SYMLINK = 6, FUSE_MKNOD = 8, FUSE_MKDIR = 9, FUSE_UNLINK = 10, FUSE_RMDIR = 11, FUSE_RENAME = 12, FUSE_LINK = 13, FUSE_OPEN = 14, FUSE_READ = 15, FUSE_WRITE = 16, FUSE_STATFS = 17, FUSE_RELEASE = 18, FUSE_FSYNC = 20, FUSE_SETXATTR = 21, FUSE_GETXATTR = 22, FUSE_LISTXATTR = 23, FUSE_REMOVEXATTR = 24, FUSE_FLUSH = 25, FUSE_INIT = 26, FUSE_OPENDIR = 27, FUSE_READDIR = 28, FUSE_RELEASEDIR = 29, FUSE_FSYNCDIR = 30, FUSE_GETLK = 31, FUSE_SETLK = 32, FUSE_SETLKW = 33, FUSE_ACCESS = 34, FUSE_CREATE = 35, FUSE_INTERRUPT = 36, FUSE_BMAP = 37, FUSE_DESTROY = 38, FUSE_IOCTL = 39, FUSE_POLL = 40, FUSE_NOTIFY_REPLY = 41, FUSE_BATCH_FORGET = 42, FUSE_FALLOCATE = 43, FUSE_READDIRPLUS = 44, FUSE_RENAME2 = 45, FUSE_LSEEK = 46, FUSE_COPY_FILE_RANGE = 47, FUSE_SETUPMAPPING = 48, FUSE_REMOVEMAPPING = 49, FUSE_SYNCFS = 50, FUSE_TMPFILE = 51, FUSE_STATX = 52, CUSE_INIT = 4096, CUSE_INIT_BSWAP_RESERVED = 1048576, FUSE_INIT_BSWAP_RESERVED = 436207616, }; struct fuse_in_header { uint32_t len; uint32_t opcode; uint64_t unique; uint64_t nodeid; uint32_t uid; uint32_t gid; uint32_t pid; uint32_t padding; }; struct fuse_out_header { uint32_t len; uint32_t error; uint64_t unique; }; struct syz_fuse_req_out { struct fuse_out_header* init; struct fuse_out_header* lseek; struct fuse_out_header* bmap; struct fuse_out_header* poll; struct fuse_out_header* getxattr; struct fuse_out_header* lk; struct fuse_out_header* statfs; struct fuse_out_header* write; struct fuse_out_header* read; struct fuse_out_header* open; struct fuse_out_header* attr; struct fuse_out_header* entry; struct fuse_out_header* dirent; struct fuse_out_header* direntplus; struct fuse_out_header* create_open; struct fuse_out_header* ioctl; struct fuse_out_header* statx; }; static int fuse_send_response(int fd, const struct fuse_in_header* in_hdr, struct fuse_out_header* out_hdr) { if (!out_hdr) { return -1; } out_hdr->unique = in_hdr->unique; if (write(fd, out_hdr, out_hdr->len) == -1) { return -1; } return 0; } static volatile long syz_fuse_handle_req(volatile long a0, volatile long a1, volatile long a2, volatile long a3) { struct syz_fuse_req_out* req_out = (struct syz_fuse_req_out*)a3; struct fuse_out_header* out_hdr = NULL; char* buf = (char*)a1; int buf_len = (int)a2; int fd = (int)a0; if (!req_out) { return -1; } if (buf_len < FUSE_MIN_READ_BUFFER) { return -1; } int ret = read(fd, buf, buf_len); if (ret == -1) { return -1; } if ((size_t)ret < sizeof(struct fuse_in_header)) { return -1; } const struct fuse_in_header* in_hdr = (const struct fuse_in_header*)buf; if (in_hdr->len > (uint32_t)ret) { return -1; } switch (in_hdr->opcode) { case FUSE_GETATTR: case FUSE_SETATTR: out_hdr = req_out->attr; break; case FUSE_LOOKUP: case FUSE_SYMLINK: case FUSE_LINK: case FUSE_MKNOD: case FUSE_MKDIR: out_hdr = req_out->entry; break; case FUSE_OPEN: case FUSE_OPENDIR: out_hdr = req_out->open; break; case FUSE_STATFS: out_hdr = req_out->statfs; break; case FUSE_RMDIR: case FUSE_RENAME: case FUSE_RENAME2: case FUSE_FALLOCATE: case FUSE_SETXATTR: case FUSE_REMOVEXATTR: case FUSE_FSYNCDIR: case FUSE_FSYNC: case FUSE_SETLKW: case FUSE_SETLK: case FUSE_ACCESS: case FUSE_FLUSH: case FUSE_RELEASE: case FUSE_RELEASEDIR: case FUSE_UNLINK: case FUSE_DESTROY: out_hdr = req_out->init; if (!out_hdr) { return -1; } out_hdr->len = sizeof(struct fuse_out_header); break; case FUSE_READ: out_hdr = req_out->read; break; case FUSE_READDIR: out_hdr = req_out->dirent; break; case FUSE_READDIRPLUS: out_hdr = req_out->direntplus; break; case FUSE_INIT: out_hdr = req_out->init; break; case FUSE_LSEEK: out_hdr = req_out->lseek; break; case FUSE_GETLK: out_hdr = req_out->lk; break; case FUSE_BMAP: out_hdr = req_out->bmap; break; case FUSE_POLL: out_hdr = req_out->poll; break; case FUSE_GETXATTR: case FUSE_LISTXATTR: out_hdr = req_out->getxattr; break; case FUSE_WRITE: case FUSE_COPY_FILE_RANGE: out_hdr = req_out->write; break; case FUSE_FORGET: case FUSE_BATCH_FORGET: return 0; case FUSE_CREATE: out_hdr = req_out->create_open; break; case FUSE_IOCTL: out_hdr = req_out->ioctl; break; case FUSE_STATX: out_hdr = req_out->statx; break; default: return -1; } return fuse_send_response(fd, in_hdr, out_hdr); } uint64_t r[3] = {0xffffffffffffffff, 0xffffffffffffffff, 0x0}; void loop(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$ext4 arguments: [ // fs: ptr[in, buffer] { // buffer: {65 78 74 34 00} (length 0x5) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[in, fs_options[ext4_options]] { // fs_options[ext4_options] { // elems: array[fs_opt_elem[ext4_options]] { // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0xb93 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0xb93) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000b80, "ext4\000", 5)); NONFAILING(memcpy((void*)0x200000000280, "./file0\000", 8)); NONFAILING(*(uint8_t*)0x200000000000 = 0); NONFAILING(memcpy( (void*)0x200000002900, "\x78\x9c\xec\xdc\x4d\x6b\x5c\xd5\x1f\x07\xf0\xdf\xbd\x79\x6c\x93\x7f\x93" "\xfe\x11\xb5\x45\x30\x20\xb5\xa2\x38\x4d\x9b\xa2\xd0\x55\xeb\x5a\x54\xd0" "\x45\x97\x1d\x93\x49\x09\x99\x3e\x98\x89\x60\x42\x17\x69\xdd\xab\x0b\x11" "\x17\x05\xe9\x4b\x10\xdc\x5b\x17\xae\x04\x17\x75\xa1\xf5\x15\x14\xb1\x48" "\xd1\x4d\xeb\x22\x72\xe7\x21\x1d\x9a\x4c\x92\xa6\x33\x3d\x7d\xf8\x7c\xe0" "\xe4\x9e\x33\x67\x66\xce\xef\x3b\x97\xce\xbd\x17\xe6\x36\x80\xa7\xd6\x44" "\xf1\x27\x8f\xd8\x17\x11\xa7\xb2\x88\xb1\xe6\xe3\x79\x44\x0c\xd6\x7b\xc3" "\x11\x2b\x8d\xe7\xdd\xb9\x75\x61\xba\x68\x59\xac\xae\xbe\xff\x57\x16\x59" "\x44\xdc\xbe\x75\x61\xba\xf5\x5e\x59\x73\x3b\xd2\x1c\x0c\x47\xc4\xb5\xb7" "\xb2\xf8\xff\xa7\xeb\xd7\xad\x2d\x2d\xcf\x97\xab\xd5\xca\x42\x73\x7c\x68" "\xf1\xcc\xf9\x43\xb5\xa5\xe5\xd7\xe7\xce\x94\x4f\x57\x4e\x57\xce\x1e\x9d" "\x7a\xf3\xe8\xd4\x1b\x53\x53\x5d\xcc\x7a\xe3\xfc\x87\x5f\xbf\xf0\xcb\x3b" "\x2f\x5f\xba\xf2\xd9\xe4\xbb\x5f\xed\xf9\x29\x8b\xe3\x31\xda\x9c\x6b\xcf" "\xd1\x2d\x13\x31\xb1\xf6\x99\xb4\xeb\x8f\x88\x72\xb7\x17\x4b\xa4\xaf\x99" "\xa7\x3d\x67\xd6\x9f\xb0\x20\x00\x00\x36\x95\xb7\x9d\xc3\x3d\x1b\x63\xd1" "\x17\x77\x4f\xde\xc6\xe2\xc7\x5f\x93\x16\x07\x00\x00\x00\x74\xc5\x6a\x5f" "\xc4\x2a\x00\x00\x00\xf0\x84\xcb\x5c\xff\x03\x00\x00\xc0\x13\xae\xf5\x3b" "\x80\xdb\xb7\x2e\x4c\xb7\x5a\xda\x5f\x24\x3c\x5c\x37\x4f\x44\xc4\x78\x23" "\x7f\xeb\xfe\xe6\xc6\x4c\x7f\xac\xd4\xb7\xc3\x31\x10\x11\xbb\xff\xce\xa2" "\xfd\xb6\xd6\xac\xf1\xb2\x07\x36\x51\xac\xf4\xdd\xcf\x95\xa2\x45\x8f\xee" "\x43\xde\xcc\xca\xc5\x88\x78\x7e\xa3\xfd\x9f\xd5\xf3\x8f\xd7\xef\xe2\x5e" "\x9f\x3f\x8f\x88\xc9\x2e\xac\x3f\x71\xcf\xf8\x71\xca\x7f\xbc\x0b\xeb\xb7" "\xe5\x1f\x8a\x04\xf9\x01\x78\x3a\x5d\x3d\xd1\x38\x90\xad\x3f\xfe\xe5\x6b" "\xe7\x3f\xb1\xc1\xf1\xaf\x7f\x83\x63\xf7\x4e\xa4\x3e\xfe\xb7\xce\xff\xee" "\xac\x3b\xff\xbb\x9b\xbf\xaf\xc3\xf9\xdf\x7b\xdb\x5c\x63\xff\xbf\xaf\x5e" "\xeb\x34\xd7\x7e\xfe\x77\xf2\xf3\xdf\x67\x8a\xf5\x8b\xed\x03\x85\xba\x0f" "\x37\x2f\x46\xec\xef\xdf\x28\x7f\xb6\x96\x3f\xeb\x90\xff\xd4\x36\xd7\x18" "\x99\xbe\x71\xb9\xd3\x5c\x91\xbf\xc8\xdb\x6a\x0f\x3b\xff\xea\x95\x88\x03" "\xb1\x71\xfe\x96\x6c\xb3\xff\x9f\xe8\xd0\xec\x5c\xb5\x32\xd9\xf8\xdb\x61" "\x8d\x03\x3f\x9c\x3c\xd8\x69\xfd\xf6\xfd\x5f\xb4\x62\xfd\xd6\xb5\xc0\xc3" "\x50\xec\xff\xdd\x1d\xf2\x6f\xb5\xff\xcf\x6f\x73\x8d\xf1\xe7\xfe\xdc\xd7" "\x69\x6e\xeb\xfc\xf9\x1f\x83\xd9\x07\xf5\xde\x60\xf3\x91\x4f\xca\x8b\x8b" "\x0b\x87\x23\x06\xb3\xb7\xd7\x3f\x7e\x64\xf3\x5a\x5a\xcf\x69\xbd\x47\x91" "\xff\x95\x97\x36\xff\xf7\xbf\x51\xfe\xe2\x3b\x61\xa5\xf9\x39\x14\xd7\x02" "\x17\x9b\xdb\x62\x7c\xe9\x9e\x35\x47\x0e\x1c\xf9\x76\xe7\xf9\x7b\xab\xc8" "\x3f\xb3\xc3\xfd\xff\xc5\x36\xd7\xf8\xe6\xfb\xcb\x1f\x75\x9a\x4b\x9d\x1f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x80\xc7\x43\x1e\x11\xa3\x91\xe5\xa5\xb5\x7e\x9e" "\x97\x4a\x11\x23\x11\xf1\x4c\xec\xce\xab\xe7\x6a\x8b\xaf\xcd\x9e\xfb\xf8" "\xec\x4c\x31\x17\x31\x1e\x03\xf9\xec\x5c\xb5\x32\x19\x11\x63\x8d\x71\x56" "\x8c\x0f\xd7\xfb\x77\xc7\x47\xee\x19\x4f\x45\xc4\xde\x88\xf8\x72\x6c\x57" "\x7d\x5c\x9a\x3e\x57\x9d\x49\x1d\x1e\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80" "\x35\x23\x11\x31\x1a\x59\x5e\x8a\x88\x3c\x22\xfe\x19\xcb\xf3\x52\x29\x75" "\x55\x00\x00\x00\x40\xd7\x8d\xef\xf0\x75\xc7\xbb\x5c\x07\x00\x00\x00\xd0" "\x3b\x3b\xbd\xfe\x07\x00\x00\x00\x1e\x1f\xae\xff\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\xe8\xb1\xbd\x2f\x5e\xbd\x9e\x45\xc4" "\xca\xb1\x5d\xf5\x56\x18\x6c\xce\x0d\x24\xad\x0c\xe8\xb5\x3c\x75\x01\x40" "\x32\x7d\xa9\x0b\x00\x92\xe9\x4f\x5d\x00\x90\x8c\x6b\x7c\x20\xdb\x62\x7e" "\xb8\xe3\xcc\x50\xd7\x6b\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\xe0\xd1\x75\x70\xdf\xd5\xeb\x59" "\x44\xac\x1c\xdb\x55\x6f\x85\xc1\xe6\xdc\x40\xd2\xca\x80\x5e\xcb\x53\x17" "\x00\x24\xd3\x97\xba\x00\x20\x99\xfe\xd4\x05\x00\xc9\xb8\xc6\x07\xb2\x2d" "\xe6\x87\x3b\xce\x0c\x75\xbd\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1e\x5d\xa3\xf5\x96\xe5" "\xa5\x88\xc8\xeb\xfd\x3c\x2f\x95\x22\xfe\x17\x11\xe3\x31\x90\xcd\xce\x55" "\x2b\x93\x11\xb1\x27\x22\x7e\x1b\x1b\x18\x2a\xc6\x87\x53\x17\x0d\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x40\xd7\xd5\x96\x96\xe7\xcb\xd5\x6a\x65\x41\xa7" "\xfb\x9d\xa3\xa5\x88\x47\xa0\x0c\x1d\x9d\xfb\xef\xa4\xfe\x66\x02\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x20\x85\xda\xd2\xf2\x7c\xb9\x5a\xad\x2c\xd4\x52\x57" "\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xa4\x56\x5b\x5a\x9e\x2f\x57\xab\x95\x85\x1e\x76\x52\x67\x04\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20" "\x9d\xff\x02\x00\x00\xff\xff\x12\x89\x04\xff", 2963)); NONFAILING(syz_mount_image(/*fs=*/0x200000000b80, /*dir=*/0x200000000280, /*flags=*/0, /*opts=*/0x200000000000, /*chdir=*/1, /*size=*/0xb93, /*img=*/0x200000002900)); // open arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0xac840 (8 bytes) // mode: open_mode = 0x33 (8 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x200000000040, "./file1\000", 8)); syscall(__NR_open, /*file=*/0x200000000040ul, /*flags=O_NONBLOCK|O_NOFOLLOW|O_LARGEFILE|O_DIRECT|O_CREAT|0x80000*/ 0xac840ul, /*mode=S_IXOTH|S_IWOTH|S_IWGRP|S_IRGRP*/ 0x33ul); // quotactl$Q_QUOTAON arguments: [ // cmd: quota_cmd_quota_on = 0xffffffff80000201 (8 bytes) // special: ptr[in, blockdev_filename] { // union blockdev_filename { // loop: loop_filename { // prefix: buffer: {2f 64 65 76 2f 6c 6f 6f 70} (length 0x9) // id: proc = 0x0 (1 bytes) // z: const = 0x0 (1 bytes) // } // } // } // id: uid (resource) // addr: nil // ] NONFAILING(memcpy((void*)0x200000000180, "/dev/loop", 9)); NONFAILING(*(uint8_t*)0x200000000189 = 0x30); NONFAILING(*(uint8_t*)0x20000000018a = 0); syscall(__NR_quotactl, /*cmd=Q_QUOTAON_GRP*/ 0xffffffff80000201ul, /*special=*/0x200000000180ul, /*id=*/0, /*addr=*/0ul); // mprotect arguments: [ // addr: VMA[0x3000] // len: len = 0x3000 (8 bytes) // prot: mmap_prot = 0x1 (8 bytes) // ] syscall(__NR_mprotect, /*addr=*/0x200000000000ul, /*len=*/0x3000ul, /*prot=PROT_READ*/ 1ul); // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: ptr[in, buffer] { // buffer: {68 75 67 65 74 6c 62 2e 31 47 42 2e 75 73 61 67 65 5f 69 6e // 5f 62 79 74 65 73 00} (length 0x1b) // } // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd NONFAILING( memcpy((void*)0x200000000180, "hugetlb.1GB.usage_in_bytes\000", 27)); res = syscall(__NR_openat, /*fd=*/(intptr_t)-1, /*file=*/0x200000000180ul, /*flags=*/0x275a, /*mode=*/0); if (res != -1) r[0] = res; // mmap arguments: [ // addr: VMA[0xb36000] // len: len = 0xb36000 (4 bytes) // prot: mmap_prot = 0xa (8 bytes) // flags: mmap_flags = 0x28011 (8 bytes) // fd: fd (resource) // offset: intptr = 0x0 (8 bytes) // ] syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0xb36000, /*prot=PROT_SEM|PROT_WRITE*/ 0xaul, /*flags=MAP_STACK|MAP_POPULATE|MAP_FIXED|MAP_SHARED*/ 0x28011ul, /*fd=*/r[0], /*offset=*/0ul); // socket$nl_route arguments: [ // domain: const = 0x10 (8 bytes) // type: const = 0x3 (8 bytes) // proto: const = 0x0 (4 bytes) // ] // returns sock_nl_route res = syscall(__NR_socket, /*domain=*/0x10ul, /*type=*/3ul, /*proto=*/0); if (res != -1) r[1] = res; // getsockopt$sock_cred arguments: [ // fd: sock (resource) // level: const = 0x1 (4 bytes) // optname: const = 0x11 (4 bytes) // optval: ptr[out, ucred] { // ucred { // pid: pid (resource) // uid: uid (resource) // gid: gid (resource) // } // } // optlen: ptr[inout, len] { // len = 0x5 (4 bytes) // } // ] NONFAILING(*(uint32_t*)0x200000000040 = 5); res = syscall(__NR_getsockopt, /*fd=*/r[1], /*level=*/1, /*optname=*/0x11, /*optval=*/0x200000000000ul, /*optlen=*/0x200000000040ul); if (res != -1) NONFAILING(r[2] = *(uint32_t*)0x200000000004); // write$FUSE_IOCTL arguments: [ // fd: fd_fuse (resource) // arg: nil // len: bytesize = 0x0 (8 bytes) // ] syscall(__NR_write, /*fd=*/(intptr_t)-1, /*arg=*/0ul, /*len=*/0ul); // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {26 5e d3 00 62 4c ee 91 79 54 14 86 09 d0 f2 ac 52 56 1d a4 // 6f e5 c8 ce 8b 3d 64 9d 8b 59 df b0 c6 33 a2 15 19 90 de 89 3d e3 99 // d5 07 98 61 21 aa 11 4f d8 71 63 06 5d 29 88 80 7d 3e 09 53 e6 b0 84 // d8 b6 07 28 0f 92 07 19 3b b7 6a 79 bb 6d 4f 63 8d 07 04 35 bd db 76 // 66 7d 5d ee 63 29 e7 1b 2c 9b ef bb 22 bb de 0c 1b 6d a6 3b 84 5f 2c // 28 d2 c5 f4 de b0 7b 4a e0 15 fc 57 67 02 11 2f 75 a7 55 e7 6b 6d c4 // 50 71 9f 63 cd 19 39 96 1e 4c 89 5f 90 54 76 0c 61 f9 33 bf 74 d1 85 // 52 0f 9a eb af 3a b3 97 a2 08 96 40 ec 41 ab 5c fe 6c 82 8b 53 c4 cc // 54 4f 98 12 03 4c 71 9e 71 25 32 76 3e ff 6e 69 ad 7c c4 d2 f2 9f 97 // cc ce 18 f2 98 ce 41 72 51 43 09 29 d4 22 e2 1c ac 05 09 36 09 d9 78 // 96 d0 be b7 d4 cc e9 f1 97 5f 01 e7 dd 29 ea 06 1a 86 8b b6 60 7b 7c // f8 8a 2e 33 dd 5c 5d b3 1c be ad 98 e0 6c 2c 7a dd 90 12 b0 48 3f e6 // 62 53 2c 81 ab 1a 1c a8 f2 0f 1c d9 02 0e 06 c2 bd ad e3 f3 11 d0 8b // 47 50 3b 5b 63 b2 79 a9 be 01 90 06 e6 92 96 70 f5 3d 56 88 c1 94 e9 // f0 46 d2 32 2d 71 bc 26 24 5e 69 8c d4 4d 65 5c 59 b2 e0 ff 43 77 1a // 38 6a bc 38 cd 6e 49 3e 0a 47 5e f5 25 fa 78 67 1f d9 95 4e 7d f7 1a // 3b 7c 7e d9 03 79 df fa 4f d7 6f 03 67 ec a1 1c 1d 8d e8 13 97 99 51 // ec cc 8c 93 b4 f9 fd b4 78 5c 0a 9d 20 7e 65 74 2b dd 35 8e 9d fb f2 // 92 03 c3 6b 91 fd d7 8d b5 5b 53 ad 1e 71 3e 32 fc 1f 47 bf 33 90 f3 // db 8d fb d5 14 b4 b3 10 95 c8 18 e1 8b 63 eb ad 5c c3 b4 06 55 7f 3a // 93 80 c5 06 5a b1 1c 64 52 2b 17 52 b2 29 6b b0 0b 77 50 ab 82 70 4b // a1 97 f2 6a b7 6e 35 da 02 ae 87 d2 56 69 d5 4d 21 2a a6 80 b5 79 77 // 3c 88 99 02 78 2d 1c 80 67 b1 6f f9 57 bf a7 0c d8 af 4c 36 6c 16 29 // e8 71 cf b0 33 d4 6c 0d 30 8c 3f f5 07 2f d8 e2 3e e0 29 86 a1 28 05 // 1b 8e 6d ba a2 bc 46 bd c8 77 2d 92 3f 29 06 ee f6 80 15 bd b4 cd 66 // a2 52 52 69 a9 1c bd 73 36 c9 30 c0 81 90 a8 60 6d 76 2c 76 8d 16 4d // 05 ee a3 8d 63 e9 9e 1f ab 83 ce 26 83 b8 85 e1 61 90 65 ac b1 be d0 // bf d6 3e 3c ea 5c 9d 7c 99 94 df 40 36 aa 17 f9 eb 08 50 f9 eb 42 b1 // 7b 19 92 6f d9 d8 14 52 9c 3c f4 39 7e 3f 38 f9 62 6f 0b b4 f2 29 b5 // 1c 35 77 3c be cc 42 ba 22 f8 34 6c 9c 3a 6f 3c a7 d8 b2 5d 0b bf 30 // ba f4 8b de 92 ea 19 2e 24 84 ef 9b 21 60 49 2e db 5f 2c e2 96 b0 b6 // b4 20 d0 20 b7 d1 4d 78 0d b4 36 b1 a2 3b 73 30 51 36 95 36 ea e7 c7 // 14 89 27 c3 ba 3a 96 85 16 03 9b 0b 14 d9 91 8a 41 a1 bd d5 00 28 47 // e1 c3 d0 2f 0d c2 23 58 57 a9 79 70 38 d1 64 59 17 57 82 0e 7d 74 db // ad d4 2b 89 03 f2 04 34 c6 ac 0f 40 1f db fc be d5 dd 3c 5b 5f b0 ce // 1f 9c 81 e8 d1 03 7f de 8d d3 fe f1 d5 d7 af 6a f8 f3 6c 0f 44 62 90 // 9d bf 69 4c c6 fe 80 07 0b d5 fa c5 a5 ca 4d ff ae 4b 2c 67 89 2f 7c // 53 af 36 44 ff ec 29 ab 3d 79 1b d7 93 4a d3 89 29 a9 d5 fb 9e cf 10 // b9 de c6 2e 31 5c cb 0e 0d e6 0b b1 62 0d aa 81 54 a4 cd ec 98 d9 4d // 42 ac 1a 4b 5f 8d a6 af cb 7d fb 53 54 4f bb ca a3 aa 44 41 82 ff 25 // 06 4a ce 51 a8 25 fe 89 23 6e 85 0a 2c 90 e1 c7 db 17 87 1e a8 09 c4 // a1 1a 26 f4 9b 21 3c ab 87 d4 a4 2b 74 75 46 fb 9b 15 06 8f af 1a 85 // 56 f9 09 f2 c4 72 02 e7 b6 5c dd c7 08 de d9 0b dd e6 87 25 b7 87 bd // c2 d4 ee da 60 20 4b d0 02 8f 07 ff c3 05 2f 93 eb 63 43 d1 b2 a9 a5 // 29 2e 65 74 ba a4 a0 96 fd a6 dd 54 f6 d3 9e 94 62 b6 83 9b 8e e2 42 // 6e 3f bf 42 a0 16 dc 09 63 14 5e 60 2f 2b 0c 35 1f 12 3d f4 8f 60 8f // 74 b0 4f c7 e9 cd 01 8e 7a b2 5b c1 c1 2f 8f 58 c0 b2 dc e5 71 4f aa // 54 82 0e f7 2f 38 56 6e 3d 77 6e a2 d5 b0 61 a2 e9 47 10 17 6f 15 d2 // 22 14 20 ab ad 8b 8b 73 3d e2 53 e6 02 27 78 48 e7 f1 e0 eb 4d 07 f5 // eb 0c c4 d9 f8 74 e6 32 00 7c bc a2 3a 5d 7e 41 09 cf 5c 4f af e5 f6 // 07 14 9b ac 37 93 87 34 b7 7d 9b 18 3c f7 60 14 aa 61 50 7b d4 eb 44 // 52 4e 83 26 c5 89 32 c8 b9 f6 a1 0e 33 4c c6 02 b5 b8 c9 56 c7 cb 5f // fa 09 92 74 b5 99 fc 9c 58 32 7f 85 55 3e 00 26 3e 54 8c 93 c8 9e df // 7a 7c 83 cc 10 34 86 62 fc 34 4c 85 37 85 72 a4 0b 49 ae 65 97 2f b4 // 0a bd 5e 0a 38 af 48 20 79 83 f8 6c 7b b6 bf 9b 78 53 c4 b1 fb 52 2d // 13 5a 83 bb db b7 81 30 b4 df 3a a7 cf a9 30 86 8c d5 a2 d9 95 ca 9f // e4 f6 4c 79 48 5a b1 9d 85 b0 c8 2a 72 f4 a0 9c ca b2 67 32 0a 61 20 // 8c ce f1 3c 35 46 ab 0f 16 e3 4c dc 56 d6 e4 8a 6d 9c 14 c6 26 52 8a // 3b 19 1e 37 23 b1 9d 43 88 d5 b9 b6 1c 7a ec 72 6b 87 52 45 5f 96 e8 // 88 ba 7a f8 2c 12 77 96 e9 b6 74 32 d1 f6 0a 34 70 c7 bf 4b 92 4c f1 // 0f 06 a3 e3 f6 4c 60 c7 c2 b0 fb a4 d1 eb e4 e5 20 14 b4 05 2c 2b a0 // d5 b6 49 c4 6e 5c dc 6c 71 59 fa ff 2a da d2 db 2d 3d b9 f4 f9 e9 73 // 5b a2 8b 7a a1 c6 c2 fe a9 da b6 c9 61 71 60 d1 82 df c1 3e 18 f4 4e // 73 c4 37 7d f4 20 80 d0 8a 87 fc fd 46 b4 a4 f3 02 05 45 7a d1 9d dd // 47 3f c3 a6 71 53 d0 4e 96 0f 1d c7 55 6f b1 58 a1 d5 84 eb 2b de 91 // 77 92 89 2a 30 e9 cd 25 d3 7a 31 8c f0 6b d6 54 14 63 ad af 5d 12 ad // c5 02 52 f3 64 ba 05 f8 91 82 01 8d ed 21 79 c2 3a 1f c0 b3 1d 87 13 // 9d a3 92 98 b8 d3 87 44 6c 70 c4 57 7a 27 f6 df 84 1d 9f 43 10 6b c1 // bf 44 f5 c7 a4 14 60 e2 af c9 ee a9 8f 8e 25 69 19 c0 be fd 53 d7 d0 // 15 41 23 91 96 3c 9a d3 9a 19 aa d2 65 cd bd 60 96 28 e1 91 3a dc 24 // 67 b6 9c 00 86 5a 88 63 5c 46 a8 51 e7 25 2c f3 dc 5c 3c c5 dc b0 4e // 97 c0 74 2d 1a 84 45 56 74 40 36 c9 77 10 dd 9b 55 f6 61 50 6f 36 cf // ef 2c 6b 73 05 b6 3f 5c 33 46 9b 33 ad 09 e1 b5 93 a7 dd fc 97 77 79 // 54 c7 1c 8e 48 57 ca 49 aa 7e 5d e0 d2 5d 76 0f 63 36 60 e1 fd 78 3c // dc 43 b0 0a 0e c1 49 cc 9c 83 85 80 7c 2f 6b 4c b2 55 d6 a1 5a c7 5e // f6 3d 08 71 b1 76 d5 03 f3 32 c0 69 cc fa 7a 2b ac d1 19 99 ea 79 20 // 24 b3 5c 9f aa e5 bf 02 bd 5c 84 4d 04 d9 68 0c 1f e3 5c 2d 90 ce 80 // 8b 45 93 2e 75 4e 4e 1d d1 42 ba 5a 7b d9 ec df 77 17 09 4e d4 35 9e // ba 66 6f bd c1 e8 49 cc ed e7 2b 0b 37 f0 b8 bc 4f 76 b9 92 22 f8 d1 // 99 de 11 db d0 ff 39 62 36 f4 a3 7a ab 95 51 26 a6 0c 9f 0d 45 7c 7a // 39 49 20 aa 90 14 61 1e 5d 99 4c 83 73 51 6f 06 1d cc 5a c8 81 bd da // 51 32 b5 ee 98 4b 15 fd 00 78 28 40 1c 72 df 63 c2 ef bc 5f 0e 85 45 // 31 0c e6 5d 06 35 dc 73 f0 cb 1c 79 6c 24 b7 ee 62 61 61 16 c1 33 69 // ce b7 4f f8 bd a6 4a 98 e9 03 df cf d8 8b 3c 0c 5f 86 19 1b cc 83 42 // 57 8f 23 dc 70 fa 6c ee bd e8 22 ff ed b7 58 7a 3f 20 4d 33 0b e4 97 // 7b bb c2 52 9c f0 dd f4 c8 5b 17 f1 08 8f 48 d8 78 e7 2f b0 0e 15 a6 // 14 42 31 10 8b e8 16 d2 71 8c 36 0e 2f a8 a2 36 69 1c 77 5a 9a 0e f3 // 55 96 96 f5 b8 f8 5e ec 0a a2 b1 c4 f0 1a 2d f6 06 5b d3 1b 23 dd 37 // 71 86 13 fc bb b1 56 6d c0 60 7b f4 87 c1 a9 1f 2b 39 a8 37 55 a6 04 // 8e 46 d0 2e de 0f 5a ae a8 ee 9e 24 5d 6c 37 89 1f 5e bc 9b b7 ad 24 // 62 b4 ea 4f 11 67 b8 c8 e9 7e 2f 7b 62 c1 c9 8a e0 b8 08 ee 60 33 81 // 8d 28 a0 0e e7 21 20 82 0b 22 27 da 50 d7 f6 6d 33 18 f6 ac c6 39 8c // 81 e5 29 c5 cb 0d f7 5e 30 39 54 c2 fa 82 87 60 c1 13 3f db df 1f d7 // 67 5b 86 34 bd b4 96 b0 54 b9 16 72 fc 7a c3 44 a3 7b f6 09 88 87 0d // 54 e5 ba f9 13 34 db 88 3b 2c 69 ac b5 06 76 c2 f8 71 fd 57 77 47 dd // 1d 26 c0 0a 56 e7 57 b6 a0 ed cd 60 9e f5 c3 b3 ef 66 9c ed 2a f5 f1 // 9a d1 91 94 d0 4f 23 ff 23 54 6d f4 7b c6 7a d5 96 67 2a 40 cc a2 e8 // 7f 8f cc 3a 31 8e 37 c7 3f 9f 50 bd 06 92 6c 74 07 83 56 dd dd ba 42 // ee 27 3e 0c 33 c2 fc 6c dd 1f d5 0d aa 6e d3 b7 b6 ce 55 8f 89 44 9f // ca 6d 8b 05 c9 06 39 28 3d 44 e1 4a 85 4e b2 9d 65 ce 5b 95 52 59 70 // 72 cb 14 8c ce a1 5e f4 30 63 05 59 29 3a fa f2 04 f2 2a 89 0f c3 00 // 9a 2b c1 b0 84 4a 49 66 83 54 a9 40 fb d0 d5 91 9f aa df e5 cb 80 e4 // c9 3d 13 8a e2 82 69 a9 9c 87 74 26 29 8b 9e c7 f0 1e 90 05 da 2d 79 // 77 f3 41 03 de 38 b2 f6 5b dc 1c 89 9b a9 67 45 ca 97 7c 46 db 60 03 // b1 ab 84 0e 67 7f 0d 89 60 b4 e9 f7 1e 82 fb 89 a8 cc 07 02 73 92 76 // ec 7a 04 0c 69 e6 dc 0e 43 96 58 d4 20 73 7a 2f 6c be 7c b1 ce 90 4f // 4a 39 db e8 28 49 71 e5 27 ef 50 97 6c 89 85 5f 75 d5 e1 29 a0 9a 11 // 7a 5c 04 24 11 69 6f 8a 3b f0 28 79 a2 87 b2 b1 ea 2a 6e 1a da ed 03 // 74 34 11 13 bb 83 63 f3 3a ac d3 61 33 9c 9c 06 b4 bd 6e 04 f8 fb f1 // f1 20 f1 99 28 56 60 84 26 d4 4a bb 6c c4 29 a0 75 c7 bd 22 bd ff c9 // 49 3f 21 82 86 f8 eb 58 50 01 fd f7 93 27 c8 c1 7d 46 2c c2 ca 5b 43 // 5d 44 46 59 76 71 50 c6 e1 00 0a 74 f0 01 be 39 8a 1b b4 88 63 d3 a4 // d4 a7 1a 46 23 e1 72 1b 00 3d 7d 2c 03 8f db 40 5b 81 4f 37 a9 5a 6a // 53 bb b3 65 dd de ef b8 34 51 67 6c 7b 57 a2 3d d1 d5 23 95 8e 2e 2e // b8 d8 89 c4 7c b7 aa 51 5e 9b 11 b2 c3 ac cf e6 73 9a 8e f5 6b 7a 02 // ad fd 63 ec 9f 92 32 c3 8e 2a ef 37 73 a9 a7 d6 f4 84 4e a1 d6 09 f1 // 46 f1 9e 6c 46 fb 6b 96 1b 80 37 e5 d9 ba 34 c0 ca 5c 10 a6 68 dd c5 // d6 f4 c7 95 17 32 f6 8c 56 ad 9c 1b 3e 53 e0 9d 33 d9 b3 77 25 8a b2 // de 95 7c 8a dc d4 b6 89 23 ed 6e af 24 41 e2 d8 88 d1 d4 65 3c 56 86 // ab 71 2a 82 ca 16 cf 47 50 09 e2 38 e5 a8 df 04 ca 2f a7 19 e6 30 8b // d6 00 26 de ea 44 35 5a 6e 87 81 57 ff c7 f1 4a 8d 34 27 5a 9e d5 f8 // 10 ea 4e d1 82 7e 4c 91 99 8a eb e9 aa cb ae 14 d9 5e ed 96 a9 de 17 // 46 3a e8 52 f5 3d 2b f3 e9 2d f9 59 56 4e 95 50 c1 ee b0 b0 52 c0 0c // d4 4c 07 b7 f0 21 cd ad 5c 70 90 8a 74 bc a9 ec 4f a3 72 f4 91 ae ad // b2 97 e8 f5 71 de 1b 37 6e f1 b7 19 4d 8e 43 4b a3 86 79 40 60 65 21 // 39 95 95 be 0e c4 da ab 0b 45 c4 2e 43 9a dc 5c be cc 73 10 02 5e d8 // 76 1a 1d 78 ad f3 ee 6b 22 35 77 e4 73 42 3c ec e9 9c de 08 07 26 9d // e6 92 96 24 ed 17 39 b2 38 0e d4 68 87 79 ce 98 08 59 5e 9b 87 ed 6f // 42 d8 9b 16 76 01 4c b8 c9 a3 f7 48 4a ac df 79 4f 05 64 39 fd 1e 52 // 33 de 23 14 1d 5b 87 ca 95 b5 47 21 a0 12 12 66 6e 80 67 cf 68 30 25 // f1 21 9f 4d 05 69 c8 cf b2 d6 ed 67 e7 f0 51 e2 ef 9d 0b 70 a3 90 ac // 7d 53 bf 9c 4e 53 7c 74 af d2 23 e3 11 34 15 83 28 2a c6 e4 ab 20 9a // 59 1a b0 f4 d7 20 55 12 a7 4a 01 cd 33 b5 7d 99 3f c5 c5 48 a7 57 d7 // 57 e1 f3 22 72 c2 2b 86 fb 24 28 b3 38 ea c7 5c 21 e4 ce 3f bf dc 6f // 04 a6 28 56 61 03 08 e6 5d ca 82 a7 63 7d 71 13 a4 8c 6c e0 35 7f a4 // 54 f6 d5 8a 1b 61 69 8c 7b 65 dc 9b 86 78 f9 d2 79 b8 83 f7 6e 04 ad // 1f 11 54 e2 f4 90 af b7 e3 97 ce 65 ce 29 7f 65 99 b0 67 1f 31 29 bc // 87 cf 42 21 d8 ce 10 1f 71 a1 df 23 b6 34 3d c3 d6 e3 5e e2 eb 0a 1e // 37 e6 7e 09 1f ab 99 4b 89 48 e9 56 32 0d 7e 51 23 08 64 1a 12 95 26 // ff 2e 73 ba 02 6f b7 2f d3 da 34 82 fd e5 37 4d 54 bc 3e d6 ae 53 f2 // b9 b4 d2 22 db 5f 31 26 76 02 85 68 3e cb bd 0f 8b 5b b9 64 e5 a1 cf // e4 04 ce 21 58 8a 21 c2 24 4e 0f 76 52 0e 13 99 92 f6 5a 15 29 95 48 // f4 dc 5e 4d 1e 54 ac f7 59 2e e1 f0 4e 36 98 76 06 bf 10 e4 63 2c 79 // d0 0e 1e d9 85 55 3b 00 a8 e8 28 dd 19 3f 5c bd 71 01 cd 36 74 58 04 // d4 74 53 2f c5 1e 70 8c 7f 12 4b f9 23 1b 9a 7b d1 ca 44 46 06 05 35 // 05 4b 4b fd 5a 61 60 7f 3a e4 5c f1 de eb fb 9d 87 10 e5 52 3c 8c d0 // 35 65 cd 37 8e 77 b1 b3 32 3a 7d 97 f2 8f d1 a1 3a a4 06 26 ab f6 9d // 7b 66 ee 9d b3 d6 04 b2 93 96 63 47 a4 fb 36 d0 89 07 8f 98 08 bc 20 // 91 09 69 0e a4 79 41 ad 7c 14 17 67 b7 8e ee 93 13 1a 57 b5 e1 26 90 // b7 28 8f fe cf 22 f3 9f 30 8a 80 45 7a c6 05 2b 8f 47 7b af c1 5a 3a // b3 0c fa 3c bd 7d da 98 03 e5 a5 66 46 94 e7 7f 52 80 87 de 19 7c 02 // fd 4d 13 3e a9 13 3b 9a a4 37 7b cc 0b 62 80 19 82 b9 99 b6 e7 f7 6d // ff 37 1d fd 99 87 04 e3 40 b4 e5 da 88 38 4f a8 cf 08 d7 47 c9 77 10 // 5e 45 74 bd a0 2c 56 36 13 38 a0 a9 bd 80 0e 94 c8 61 a3 1d 5d 64 d7 // 1c b6 5c 06 55 f5 b5 cf 5f 90 0e 34 8d 7c c0 5d 9c 2d cf 71 18 59 cb // b8 ff a5 40 65 e2 e5 46 2f 4c 1d 80 d2 8e 5d 54 00 09 0d 4b f6 15 65 // 42 2b 8d f0 f3 4f 7a 7c 1e 15 3d 39 c9 d7 34 0d 15 b8 db 22 6d 32 3b // 4e 3c 50 fd 8a aa 87 ec 9e 5c 3f bb 3a d6 64 62 c6 ec 5f f3 18 77 02 // 4d 11 9f db 7a 16 e6 9d 32 4c a9 81 95 12 c4 5c 38 52 40 9f 48 99 a4 // 1a 4d 16 ca 77 dc 3d ba 1f fb dc 2a f2 fc ca ba 1f 04 e0 48 44 41 54 // d5 01 9a 26 7b bc d4 40 d7 bb 35 16 e9 74 1e 5f 9c 3e f1 13 5e 8c 0d // 70 e3 c7 80 0c 10 c0 00 e9 cf bd db b5 ab a9 e4 3b 3d c0 16 4f 92 73 // 35 90 f6 92 1b fb 53 aa 14 66 a5 3b 61 46 11 37 95 fc 13 d1 62 1b 3c // be 0e ad ec 02 c4 69 a4 89 92 32 c2 3a 5a 88 a9 d6 59 98 4c 22 ee 52 // 3b 5c 5d e8 42 23 a0 f0 f9 bf 1f cd b1 ef b4 70 92 52 c0 fa b4 77 82 // 3b f2 50 5f 9a 2e 4a 36 d0 bd ae 82 4e ca d1 5a 4c 31 3f 0c 9e b4 42 // 3e a2 49 71 0e 35 3e 61 26 46 30 92 7f 77 8c 01 97 8f 5b 50 21 3d 71 // fd 74 6e 40 00 94 32 bf 50 b7 93 2b 76 59 94 2f 0d 1b 63 75 b8 7d 9b // 03 8c e2 71 d7 33 3e d2 82 be b3 92 5a 33 0d 88 1a c7 61 1d 3e 8b 86 // 96 01 b1 46 fd 82 c0 6b 34 0a e4 82 3c 4c 42 9a f4 c1 5f 2a 2a 2b df // 38 37 88 e8 6b 68 c0 01 86 6a 86 18 8c fd 71 b0 2b c8 ab ef 13 70 32 // 64 f3 ad 08 ff 66 02 e1 5f f8 47 15 b7 79 65 41 c8 7e 26 b0 c6 e0 86 // 21 19 43 e5 26 29 f8 c1 e7 1f da ec 97 2a b5 a2 c6 90 c7 8b 08 d6 56 // 51 ae 4b 64 07 0f 7b b3 79 31 11 98 81 ef 14 c4 c8 e2 28 d6 7d 34 f1 // c9 eb 85 5b 39 ad 6e 61 5b f2 4f 7b 45 3a 76 54 7e df 2f a0 25 c5 3b // da 95 d7 83 fb 3f 73 58 52 f2 83 18 a8 a6 7c 8c eb 52 79 d3 80 d7 24 // ee 6e b2 e7 6b a8 80 7a 08 65 fc af ac 50 d0 9a 92 b8 5d 27 a2 38 e4 // 46 1a 80 cb be ae d6 2a 84 4c 17 e4 98 f6 45 7a a6 42 eb bd 0a ae ab // f1 27 b8 f8 fb dc 2e 28 ff 7f af aa fe 30 16 60 34 61 f2 56 d7 fc a6 // 90 a8 64 3b 96 97 80 0b 3c d5 9e 09 ec ae 48 ba ab cc b6 3c ad 4a 62 // 7f 6b fb a0 75 9f 1c 18 69 77 e9 69 8e 6f bc 16 ec 9d 1c 95 ca 8e 2e // 07 5a 1e ed 3b a6 22 3e 4d f4 4b e7 da 59 a4 44 71 5a 78 fd b9 0a 16 // 45 c0 69 ca 0f d1 60 9b 7d ce 29 ff a1 1f 17 26 6c 32 85 6f 9e bc 85 // 3c 0c 7c bb bd 82 66 7a 51 06 b5 b6 3f 53 28 ae 9d 65 3d c5 dd 53 19 // 49 88 f0 e4 21 db 38 51 ee e5 3c 55 7e 40 a7 ad 29 3a 22 ff d3 44 5d // 29 63 47 ce f4 18 7a ab 3c 9c 3c 2a 8e 40 be 66 91 9c 30 ce f3 de 81 // 25 f3 cc 73 42 a4 37 91 cf 1b 3b 11 7a f9 9b 04 e0 fd 81 70 f1 7f 4b // a2 5b dc b2 49 65 50 10 25 18 8a 43 0d f8 62 39 d3 69 a6 e2 c9 24 5e // 91 4f e4 be 3a 1e b4 8e 22 e2 e1 c7 2c ae b4 b0 d1 b6 9e 8a 81 7c c7 // dd f6 44 d3 3e 56 ae 32 21 56 04 f2 67 a8 07 54 61 94 40 dd b3 62 12 // 80 a4 b3 88 c1 4c a1 9d fd 39 8d 74 49 77 84 92 47 d0 bb c5 5d 5a 54 // ef 06 2a d3 cb 36 89 16 8b 28 a0 98 19 46 fa 01 73 7e 08 11 01 b9 c5 // 71 d0 ec 4e 57 75 15 9d ac cc 11 05 88 fb d3 5b f6 f0 d5 5f 99 da 96 // 7a 3d 3d b1 99 9e 15 89 58 d7 ce 12 85 71 ef aa bc 09 c1 aa 71 37 c3 // 5f 3e df 7c ff f3 86 a7 9b a5 ac fa 97 43 66 c4 42 20 7a 39 ce 67 af // c8 46 9c 2d dc 6f 45 41 3d d6 54 d9 f5 9a e7 fd 31 11 5d fe cc c4 3c // 27 bb cf fa b1 19 10 67 35 b7 78 2f 96 94 a3 e3 01 59 ae e3 41 f0 45 // 40 a5 44 43 56 2c af ad 5c f3 33 6c 6e 90 03 32 b0 53 d7 c9 3b ab 45 // d8 84 6c b5 b8 80 e1 1b 97 9c 13 df ea 06 26 79 32 d8 9e 25 8e f3 07 // 68 ec 2c e1 d7 b0 20 60 9a 5e a6 ad 9e da 78 21 95 42 56 70 29 d1 d4 // d2 ff e7 97 b7 f9 5f 16 b8 f5 99 39 0b 0b 63 0d ec dc 6e 17 59 3b 7e // 49 92 d4 8e 62 c2 7c ca 2e 42 3e de d8 5c d4 b4 36 06 54 96 98 4d 59 // 04 4d 38 f3 17 d0 ba 64 98 37 e5 37 7a b3 79 3c 3f 66 c0 50 9e b3 7b // a3 65 c9 42 73 b3 ca d9 7c 5f 60 7b cd 31 2c df 3c 86 05 dd 55 69 e2 // 93 d2 1c 58 89 69 d7 bf b1 7a 22 8b 53 f2 cd 03 87 99 59 45 25 3c 6e // c8 fa d3 77 7c af af cb b9 15 1a 54 e6 53 a1 42 b5 ad 0c 62 68 2b 8e // c4 b9 9f 52 5d d8 53 f7 5c 17 ae 62 64 b7 bf 97 51 38 de 99 32 d4 0b // e9 f3 5c e2 5d d2 a1 e3 07 fc f5 06 eb 6d b8 80 3c 19 b9 88 0f 96 29 // 9e f5 8a 6b df 32 70 83 46 db 54 0d ae 11 2b 0f 7e bf be 6f 3f 46 63 // 5b 7d 98 e2 32 cc 91 ef f2 aa 9c 7f ed 6d d5 3d 44 8d b2 fb 8f c4 c0 // dd 66 1d 47 58 5c 79 66 f9 33 8f 16 5e 53 b3 d7 77 7d d8 44 be 6a 6c // 88 85 d9 5b 83 9a 32 ea 0b c8 3e c0 ef 8a 5b d1 1b 66 6d 11 fd 8e 27 // 56 1d 8a fc 46 86 e9 78 ba 31 ff 2f 81 2f 81 a6 a8 29 56 b9 5a 0c ce // 29 66 a3 7a 4b 9e 33 bd 29 7a b8 b1 66 7f 6c a5 a6 be 65 e4 48 5a 30 // 56 51 a4 23 0b 7a 01 0a 96 0b 03 5d fb 7a 84 74 de c1 96 5c 6a 91 77 // f6 24 84 81 78 07 e0 dc 43 ab 27 70 b2 7a dc b4 0f 76 c0 e7 86 39 c5 // 5f de cb 6c 00 8f 2e 85 9e d4 96 81 8b 48 e5 fb e3 23 76 fb 3c 43 4a // fc 0f f7 80 86 7e 73 74 a8 d6 59 cc 15 80 e4 96 78 f4 54 2e 5c d3 e5 // 4d 5f 4b d1 ff 6d 18 68 27 d5 88 ac e5 a8 ad f4 37 de a1 1d ef 7b 57 // b6 b8 c9 92 b8 66 95 d0 9c 65 aa f5 32 d6 b8 cf 12 68 6d f8 b0 7b fb // 5a 8a ef 79 44 f0 4c 8b d0 0d 50 0b 8b 7e b2 45 16 db ec 0f 55 14 dc // 48 f7 0e b2 6a 2b 78 04 2f b6 b4 72 6a 20 fc f7 3c cc 9a 14 b7 5b b8 // 2e 55 8e 8b c4 f7 ff 54 53 85 0f 83 d1 28 96 e9 ab f3 22 e5 b8 1b 6e // fe 67 9c 8c 98 ee 09 2e 06 30 2f 9f 14 72 93 1d be 5a 81 5a c3 8b 1b // ff 79 36 3c 4f 84 6c aa 75 5a b3 ed 5b 60 a9 38 d5 f1 a9 e1 09 50 aa // a0 c5 d1 0c 5c 4f 09 ab b8 ce 6b 98 86 7e 6f 86 44 e3 b9 d6 03 f0 7f // 9c 2d 10 44 60 06 35 d4 32 ce 79 6b 0b 96 ba f5 72 23 87 11 30 2f 8f // e4 86 f3 bd 4b 5a 04 63 ee fb 0c b0 42 71 39 3c b1 b4 7b 03 3d b6 28 // 40 b4 c5 35 da 35 6d e3 db 90 96 1d ee fb f4 30 60 d5 7b 30 34 89 aa // f9 c3 be d9 35 f8 75 0d 47 b8 e6 ae d8 eb a7 1f 08 d9 32 46 c9 2c 7c // fd de a9 9f 6e 05 2b f1 8e 78 7a ca 4c c0 47 79 dd a1 f6 7a 42 0c bb // 5f bc ee 2f 2a e2 8b e6 64 fa d1 8b 47 8e 17 1d c3 69 91 16 ae 71 42 // 1b 86 a5 fa 97 32 76 7c 99 4f 38 51 98 74 b3 3f 07 b1 2b 8b aa 5b c6 // 72 01 7c b1 e2 c8 e8 89 7e 54 13 58 da 9a 9e 3b f8 bf 57 ad 35 41 fb // 43 45 34 19 0d db 95 a5 ad 70 1e 20 54 8b 26 92 68 fe f7 c2 0c 15 ad // b8 a8 6d c8 ed 75 6f 76 03 70 ef 2b ff f1 26 13 49 b5 35 b7 7f 67 a4 // 11 8d c8 f9 5c 70 e9 77 ae 39 c7 c7 7f 2d 4e 22 48 02 84 39 b7 23 25 // c0 33 c6 86 84 fc 8d d6 05 0f 04 49 e2 c8 7d eb c0 0f b8 bd 5d 1d 9b // 9f 31 21 9b 42 43 cb 08 93 62 b3 45 f2 b9 aa 70 89 eb 61 8e 14 07 22 // 3e f1 02 2d ba a8 56 19 7f 6c d8 dc b7 fc 53 af c1 67 31 e0 f2 1b 45 // a1 7f dc 2c 49 bf d9 f1 4e 45 4c 98 53 6c 50 7c 3a ca 95 ad 57 be 39 // 5e a9 d7 37 a4 a3 23 78 25 cf 10 2c a0 80 e0 13 23 0c d7 a4 6e 91 23 // 7b 22 14 a2 b1 75 ff b3 90 ac 9f 12 e5 dd 31 24 ff e1 e1 52 e1 48 37 // 14 25 c6 ae 5c 60 37 15 d5 43 9e 0f 9e 49 e8 04 8b 56 48 9c e7 9c 26 // df 2d ab 6a d0 c8 ac 0b 37 e5 d4 fe 10 06 1f 44 f3 d2 31 4e 1e e6 24 // 5e d6 00 c6 2a 9c 44 8f af 90 52 67 cd b1 25 ed 7d d2 a7 a5 39 77 0b // d1 dd ee fd 13 a5 21 99 1c ae 16 16 0c ad ef 43 4e dc 23 fe c3 33 ec // 7b 32 8c 4a 62 13 c5 04 08 48 e8 35 c6 b3 e0 ae bc ae 1d 58 84 f7 e8 // f6 54 ad b5 12 c2 f0 22 7f ae 83 dd ae 0d fa 84 8e 0b a9 34 44 04 ef // 1d 6d a8 80 f8 ea c7 1f b7 e0 2f 19 78 59 fd c1 ec 63 4d ca 3f 46 93 // 2e 5f 02 26 89 ed 25 3e 60 f2 32 e1 ac d9 6f ce 39 89 61 d6 2c 4d 63 // d7 f3 7d 48 c2 61 75 29 86 58 c2 24 bc 1d b7 3b 8b aa ea b1 39 06 5a // 9b d0 04 bc aa 24 49 3c 17 f0 99 61 c0 9b d0 cb 82 8a 8c b3 ca b5 6d // f2 99 16 46 ff 37 00 40 bc 85 07 d3 d1 6e 66 dc 07 5c 8d 30 2c 65 86 // db ee 27 b3 2f 93 ea 56 3a 26 92 f6 5a da 17 4e 35 bc d8 cd 32 14 c1 // a3 8c c0 0c 90 06 78 28 b9 98 0d a7 de c0 4f be aa 2e 55 0c 8d 06 35 // 8a b4 46 85 3e 7d af 00 7b 0d e5 c9 e3 61 d7 5c 40 ad 5f 9f 29 23 c1 // 0e a4 79 e5 85 2a d3 5f 23 2d 6d 14 1c a7 b4 32 8c 9d 72 dc 5c 24 7d // 14 31 68 8b 2a 32 5d 88 58 27 33 95 3e e5 0f 99 7a 5d 83 24 cd cb 01 // fd a1 1a 77 30 93 f3 44 fb 38 b5 5c 5f 9e 77 06 e1 02 4c fb 4f 2e 47 // 54 4e bb af 79 2d e3 c4 d8 f1 52 2e 9d 9c e7 3f da f1 74 0d 3d c1 34 // a7 8b 53 c6 16 7a ec 45 c7 30 01 6b 8a d9 d9 bc 40 42 b6 83 5a 5f f3 // 4c 9d 36 da 74 18 71 9a 86 be 66 37 c8 96 fa 4a 4e da 86 2a 9e 73 ab // 97 e5 a9 77 ae bf 0f e6 4a 7d 50 7d c2 10 a6 77 87 3e 15 5f e4 b2 cc // 3a 96 e5 58 f4 d5 4d b6 fc 5f cd f1 66 c4 cd 58 bb 5d 17 21 37 8c cf // f1 70 c0 eb a1 4b 99 0e f6 10 60 69 09 c2 05 e3 4a ab d1 5e b7 a6 04 // 06 df 54 51 87 1b 18 ae 3c fb 5a f3 7b 7f 7b b2 be 80 59 0d 3b e0 2c // 5d 0c 41 43 be 66 ef cb e1 3c 69 27 f5 4e d2 78 84 b3 d6 a7 3e 90 51 // 65 52 a0 bb d8 1f 7c 76 ed 5f 84 ec fe f2 22 5e 52 b9 cf 60 21 89 57 // 16 aa 29 b5 40 75 0e b6 4b 31 cd 7b e1 e9 fd aa f1 32 68 1b 23 cf b2 // 74 2f be b4 d1 f4 0f d0 bb 1d 13 ba 04 4b 25 2f 2f 04 b0 d5 fc b1 21 // 97 74 86 c5 75 4a 56 9b 81 be 75 77 cc 0c 9e 91 8a ff bf 9a bc 1b 6d // d5 67 aa b6 6b 7e 2a ca 39 6e 79 d5 3c ed 96 95 a6 5a 70 4b bd 97 00 // b5 5a c8 c9 68 c5 f4 35 57 06 0c 65 07 a3 55 7c 87 62 a7 dc 82 63 ea // ba 22 d5 1f b7 df 43 5e 20 be ea a7 00 60 9d 77 4d 1e 21 2e 74 93 b6 // 72 32 4e 1a 90 7f c1 54 6c df 7d 4f f8 80 29 dd 7e 9c 92 fc 53 0e 3f // 55 b6 c1 b1 03 c6 9f 14 85 95 24 d0 7e 45 4a 3c 5f 98 7e 01 d2 1d 9a // 5a 6f 84 23 70 cc 3d ad cd e1 b5 82 2b 0d 0c 47 88 3d fe e6 2b 9b 72 // 09 c3 a7 c3 99 ed 34 60 4e 16 4f 80 6e 68 a5 a2 4a 53 d0 c5 be cc dc // 13 89 e8 7a 58 94 06 1f 95 e7 e8 e8 bf 84 ea d6 e7 fb 15 59 38 23 0f // 22 b4 26 d9 04 1e 8b ea 72 da e1 49 11 82 4d b9 b6 5b b0 ea 0d 04 04 // cc 8f ab cb 8f 18 63 e1 3c 84 75 be b6 81 38 e0 43 dd 67 bf 1b 0d 7e // 03 8f 9f 3d 25 c8 ab 1a 52 17 3a f6 b4 6d 82 60 d6 77 bf 06 60 58 e8 // 9d d1 8b 03 fa 20 e7 99 38 da b0 18 76 10 29 92 f9 df 49 db e9 83 52 // 6b 9e 0b c8 3c 15 cb 9d 52 51 1e ff 20 d1 8d cd d3 16 bf 33 4b 98 ae // d9 02 40 51 b8 7b d3 d7 67 05 44 70 f4 b7 f5 9a 20 7e 9b 9f 17 82 74 // 97 be c1 46 aa 1b 0d 18 ef 54 ae 59 27 c6 4b 05 f3 4c 85 08 a0 cf ea // 02 cf 59 b3 c9 7a 1d 3e 83 a0 0b 7c a4 95 16 7f 41 1b 3f 41 c1 40 9a // 8a c0 07 e1 cb 08 ef 83 c4 cb e3 81 17 d4 b1 ef 9b 58 dc 00 92 37 1b // 1d bb 1a 18 34 f7 80 28 2d c2 f3 b6 bf 36 fd 0d cc 76 19 c2 87 85 b7 // 69 10 75 73 76 ad fb 01 4c a9 ff 8b fa 3e 29 1e 7c ba 2c aa 05 ef ad // 48 b1 50 63 37 b6 1f 74 b7 b0 f4 ab c1 88 46 af 68 2f 34 70 8b be e9 // de e7 68 37 bc d1 92 87 6d 18 61 a2 0b 3e 77 c9 98 4a ff 5e bf 0a 2a // 47 41 d6 e4 3b 4a c0 56 ea 13 8e 79 23 01 44 57 8b fd 4a e8 2b 84 ed // 10 9e 4d 5f f0 f9 55 ca 48 1a c0 23 1c ae 96 3b 7d 4d b7 6d 89 d0 7e // 26 59 73 a1 68 99 fb 3a 6f 8d ba 53 47 39 54 58 91 34 b5 20 e6 80 f4 // c5 e7 07 fd 05 6e 75 ed b1 94 00 4b 81 a4 0b ce 04 07 b6 c2 94 07 8b // 77 e8 ab d8 87 3c 01 f6 91 8b 2c 7c 60 95 c9 f2 3b 98 41 e9 0e 8a cd // e5 3b a6 0c d7 89 11 ca c6 fc 2e f6 bb 5f cb b0 d3 da 3e 63 d7 0b 47 // 49 5f 21 77 af ce 5d a3 7c 59 ef de 49 aa e1 33 76 18 47 a6 f0 c8 aa // 37 47 90 52 2b a0 4d 46 6b d1 f7 86 0f 53 37 1f 5e b2 f5 06 c5 bc 7b // b6 ab 44 9e 4a 5c 37 86 6c 31 68 4b 28 5c f5 da 17 f3 64 34 b8 09 f6 // 9c 54 2c 98 94 49 fd 0e ca 50 f5 ea cf 80 80 cb be 8b 84 d1 18 30 95 // ae 74 16 b8 f2 b9 83 11 45 1c f7 ca d2 d8 fb 72 1e 58 9f 9e 61 13 76 // 43 03 59 cf 85 54 44 fd 14 15 01 1e 8c 31 38 34 bf 0e 21 7a c7 b0 3f // 8a dd 94 14 27 b0 d1 5b 56 37 8b 2c d1 e3 92 50 08 c1 6c d5 f9 5d d1 // 49 c7 e0 50 e0 a1 53 e4 33 3e 63 bd 14 81 6b 43 57 fb aa 5f 70 6a f6 // ee 22 50 57 eb 59 9b be 57 14 c9 ff 23 20 4d 19 02 23 05 69 83 9d 88 // 36 e6 b2 52 55 70 b0 0e ca 85 34 aa 0c 29 cf 62 dc e6 1e c6 6d 9c 19 // 5b e8 12 79 b6 98 ec 85 65 fd 67 54 f6 36 b9 28 82 47 65 7e fd b2 b6 // 35 6a 82 f0 14 a1 e6 b2 49 26 fd d6 78 10 ef 0a 01 29 5c 66 49 80 f2 // 05 7c a1 73 62 b0 a5 88 8c 23 ac 21 84 2f 93 1a 7d 57 cd ee a7 3c 48 // 48 c6 c1 cc e2 0b e9 79 fa a6 11 f8 65 09 ce 03 1f b4 10 2a 0f d3 0b // ea 4f 4f 84 0c 75 d2 38 36 2a 2c 4f 8d e1 6e 81 73 3c a9 01 19 f8 c1 // ae 14 8b 18 4d 0b 11 36 85 59 40 88 ad 8a 94 74 55 dc fb 78 2f 8b eb // 69 e2 55 db ed 46 ae 2e e6 f0 94 16 8a 52 50 1f c6 8e d6 69 fa c3 90 // cd 93 20 ba 16 d6 9c 86 d6 f6 42 ae a8 36 bb 1d 7c 14 59 3f 15 d8 d3 // 3d 45 2d 8c 87 00 3d 7a da 19 95 e2 b4 3f 78 8b 4a b0 0e c6 f5 88 69 // 96 8f 09 82 18 a3 ca 21 a6 f3 69 d4 7a 14 cd 3d e7 de 83 57 90 2e 8e // cf b5 f2 e6 be b5 d3 d3 2a 6a 62 24 fe 3d 6d c5 c0 6e b1 17 af 0a b3 // 96 ac fc ae 58 b2 b1 b9 98 1c c7 1c c1 cd e0 74 91 b6 b6 d9 7e 04 c1 // 0f f2 16 39 3d d2 87 37 d3 1c 8f 2c c9 eb e1 61 b9 6d 40 70 88 b2 bc // 45 6c 33 1b 67 6a 0d 7d ca 3d f7 f7 08 06 97 d1 54 fa 14 f3 51 fd 46 // 7e 30 b4 ac 3f 4e b7 b4 ad fb 17 3f f2 05 94 cf e5 39 c7 75 c4 27 57 // 95 d5 47 82 ba e4 b5 9c c6 4a 45 74 0f f7 3d 21 f5 d6 cf 39 e1 0b ae // 4f bc 48 ac 77 99 02 37 96 d7 40 8f f9 22 0a 07 a4 95 52 b1 8c 5e 35 // f9 80 82 29 7d 2b 4a 09 32 e4 d2 24 c6 80 7d 49 bf 9b 5d e2 ef f1 a8 // 13 0d a5 61 24 ec b5 50 92 41 fe 95 be 11 eb 0d f0 66 f5 f8 19 bc 7d // b0 f1 ee 90 ea 0a af 4c a4 45 8a e7 b5 10 5d 57 4d e0 28 c8 27 14 ad // 0d 53 bf c8 ff ab 31 c5 77 62 b3 8e 43 3d 69 91 d8 3b a5 61 61 62 e2 // 7e 8a c1 22 c1 45 54 7c 4a be 18 26 0c 6d 32 c7 55 a4 43 90 ed 41 24 // 1e f3 75 e1 f5 a4 31 12 63 88 1a 02 da e7 1f 83 72 06 41 3f c3 7d df // 40 a9 bb 72 25 6d 16 25 ee 0b 94 c1 c5 71 58 09 bd b2 42 24 cd 06 98 // a5 80 2a 83 e2 32 8d fa 22 b8 0e 31 b9 a5 c7 dc 2f e0 c6 85 45 90 53 // 68 80 6c 30 83 34 c1 94 80 3e ed 4a 24 a9 6b c5 02 1b 83 7a 29 3d de // 7b a2 2b 9e d2 73 69 b3 58 4d ed a6 48 9b d1 b3 fa 29 25 be ea cb 7d // 3b e3 67 fd 01 45 47 f8 2b 45 61 c0 12 09 78 b6 ec 2b 32 ac 26 34 58 // 9b 81 9a 2c 94 fd 20 c0 81 fe 9e ac 7b 07 45 f7 3a 19 81 e2 1b 05 b1 // bd 97 a9 a1 d7 21 8c 0e 6d 0e 47 3e 15 a1 a7 46 5c ea 98 ba 0c 72 af // 2f 27 0b 6a 61 bc 51 d1 a0 a9 60 3b 91 fc dc c7 31 4f e7 aa 00 7e cf // fe 6c 7e eb f5 a6 5e 82 a9 63 25 e8 6f 9a ec 39 fe ac 6e ee 95 01 49 // 5c 74 00 0e c1 f0 92 3e 79 ad 1f bf 6d c5 81 53 90 47 53 77 94 15 14 // 73 e0 0b e3 53 b3 b8 db b6 da 00 53 82 6c 7b df 16 c4 38 67 cc 9c ab // 9d 12 20 46 6c a2 9e f2 d6 17 2c 4c 0f f9 06 7e ba 9d 97 75 22 5e fa // ea b1 b8 c6 34 b4 00 1d 2a 5c 01 62 8b d5 55 0c 45 73 fa 01 7a fa 3f // 50 1f 1a 6b 7d 7a 48 3d c0 88 5a b9 c2 ee 95 9a 59 6f fb b6 8c 7e a9 // 9e 48 f4 30 46 97 ed f7 fd ba 55 67 73 5a ce 34 33 c1 5a a5 98 63 f8 // 7e 46 05 20 6a 31 cc f2 68 58 8d e7 ed 37 fc ac f6 bd e8 0c 68 ad 53 // de 63 fe b4 39 9c ce 13 7c 57 76 ab d1 53 95 40 2a f0 72 50 93 8a a1 // c4 66 51 1b d5 75 4f 9c f2 f9 38 fa a3 7a 68 39 96 c8 01 c8 fc 8a ae // 36 a7 06 c5 d6 e2 d3 6e 96 ab 77 ee c8 17 ce 4d 56 d2 bc f5 a4 37 02 // a8 83 b1 27 a1 da 8b 6c ea e1 b8 25 73 a9 e9 e9 e2 97 56 0f 8d 65 a1 // f5 fd 4b f3 d4 5a f0 84 1e 69 1b 6e 63 7b d8 b9 f7 c8 e5 1b 81 3b 81 // 8b 0b af 2d 9c 5c 9d 11 67 81 d3 27 b4 b4 33 09 c7 26 56 12 08 9f 1d // ce 60 a4 1f d0 af f4 bc d1 33 5d 69 6f 01 ce e7 b3 71 e1 35 84 c7 31 // a3 c3 ef 7e 1b 9f 3f 41 f9 1c 4d c6 47 b9 48 c9 3a 99 c1 ae 79 f5 f5 // 30 c6 8c 3c c2 8b bd} (length 0x2000) // } // len: bytesize = 0x2000 (8 bytes) // res: nil // ] NONFAILING(memcpy( (void*)0x200000004340, "\x26\x5e\xd3\x00\x62\x4c\xee\x91\x79\x54\x14\x86\x09\xd0\xf2\xac\x52\x56" "\x1d\xa4\x6f\xe5\xc8\xce\x8b\x3d\x64\x9d\x8b\x59\xdf\xb0\xc6\x33\xa2\x15" "\x19\x90\xde\x89\x3d\xe3\x99\xd5\x07\x98\x61\x21\xaa\x11\x4f\xd8\x71\x63" "\x06\x5d\x29\x88\x80\x7d\x3e\x09\x53\xe6\xb0\x84\xd8\xb6\x07\x28\x0f\x92" "\x07\x19\x3b\xb7\x6a\x79\xbb\x6d\x4f\x63\x8d\x07\x04\x35\xbd\xdb\x76\x66" "\x7d\x5d\xee\x63\x29\xe7\x1b\x2c\x9b\xef\xbb\x22\xbb\xde\x0c\x1b\x6d\xa6" "\x3b\x84\x5f\x2c\x28\xd2\xc5\xf4\xde\xb0\x7b\x4a\xe0\x15\xfc\x57\x67\x02" "\x11\x2f\x75\xa7\x55\xe7\x6b\x6d\xc4\x50\x71\x9f\x63\xcd\x19\x39\x96\x1e" "\x4c\x89\x5f\x90\x54\x76\x0c\x61\xf9\x33\xbf\x74\xd1\x85\x52\x0f\x9a\xeb" "\xaf\x3a\xb3\x97\xa2\x08\x96\x40\xec\x41\xab\x5c\xfe\x6c\x82\x8b\x53\xc4" "\xcc\x54\x4f\x98\x12\x03\x4c\x71\x9e\x71\x25\x32\x76\x3e\xff\x6e\x69\xad" "\x7c\xc4\xd2\xf2\x9f\x97\xcc\xce\x18\xf2\x98\xce\x41\x72\x51\x43\x09\x29" "\xd4\x22\xe2\x1c\xac\x05\x09\x36\x09\xd9\x78\x96\xd0\xbe\xb7\xd4\xcc\xe9" "\xf1\x97\x5f\x01\xe7\xdd\x29\xea\x06\x1a\x86\x8b\xb6\x60\x7b\x7c\xf8\x8a" "\x2e\x33\xdd\x5c\x5d\xb3\x1c\xbe\xad\x98\xe0\x6c\x2c\x7a\xdd\x90\x12\xb0" "\x48\x3f\xe6\x62\x53\x2c\x81\xab\x1a\x1c\xa8\xf2\x0f\x1c\xd9\x02\x0e\x06" "\xc2\xbd\xad\xe3\xf3\x11\xd0\x8b\x47\x50\x3b\x5b\x63\xb2\x79\xa9\xbe\x01" "\x90\x06\xe6\x92\x96\x70\xf5\x3d\x56\x88\xc1\x94\xe9\xf0\x46\xd2\x32\x2d" "\x71\xbc\x26\x24\x5e\x69\x8c\xd4\x4d\x65\x5c\x59\xb2\xe0\xff\x43\x77\x1a" "\x38\x6a\xbc\x38\xcd\x6e\x49\x3e\x0a\x47\x5e\xf5\x25\xfa\x78\x67\x1f\xd9" "\x95\x4e\x7d\xf7\x1a\x3b\x7c\x7e\xd9\x03\x79\xdf\xfa\x4f\xd7\x6f\x03\x67" "\xec\xa1\x1c\x1d\x8d\xe8\x13\x97\x99\x51\xec\xcc\x8c\x93\xb4\xf9\xfd\xb4" "\x78\x5c\x0a\x9d\x20\x7e\x65\x74\x2b\xdd\x35\x8e\x9d\xfb\xf2\x92\x03\xc3" "\x6b\x91\xfd\xd7\x8d\xb5\x5b\x53\xad\x1e\x71\x3e\x32\xfc\x1f\x47\xbf\x33" "\x90\xf3\xdb\x8d\xfb\xd5\x14\xb4\xb3\x10\x95\xc8\x18\xe1\x8b\x63\xeb\xad" "\x5c\xc3\xb4\x06\x55\x7f\x3a\x93\x80\xc5\x06\x5a\xb1\x1c\x64\x52\x2b\x17" "\x52\xb2\x29\x6b\xb0\x0b\x77\x50\xab\x82\x70\x4b\xa1\x97\xf2\x6a\xb7\x6e" "\x35\xda\x02\xae\x87\xd2\x56\x69\xd5\x4d\x21\x2a\xa6\x80\xb5\x79\x77\x3c" "\x88\x99\x02\x78\x2d\x1c\x80\x67\xb1\x6f\xf9\x57\xbf\xa7\x0c\xd8\xaf\x4c" "\x36\x6c\x16\x29\xe8\x71\xcf\xb0\x33\xd4\x6c\x0d\x30\x8c\x3f\xf5\x07\x2f" "\xd8\xe2\x3e\xe0\x29\x86\xa1\x28\x05\x1b\x8e\x6d\xba\xa2\xbc\x46\xbd\xc8" "\x77\x2d\x92\x3f\x29\x06\xee\xf6\x80\x15\xbd\xb4\xcd\x66\xa2\x52\x52\x69" "\xa9\x1c\xbd\x73\x36\xc9\x30\xc0\x81\x90\xa8\x60\x6d\x76\x2c\x76\x8d\x16" "\x4d\x05\xee\xa3\x8d\x63\xe9\x9e\x1f\xab\x83\xce\x26\x83\xb8\x85\xe1\x61" "\x90\x65\xac\xb1\xbe\xd0\xbf\xd6\x3e\x3c\xea\x5c\x9d\x7c\x99\x94\xdf\x40" "\x36\xaa\x17\xf9\xeb\x08\x50\xf9\xeb\x42\xb1\x7b\x19\x92\x6f\xd9\xd8\x14" "\x52\x9c\x3c\xf4\x39\x7e\x3f\x38\xf9\x62\x6f\x0b\xb4\xf2\x29\xb5\x1c\x35" "\x77\x3c\xbe\xcc\x42\xba\x22\xf8\x34\x6c\x9c\x3a\x6f\x3c\xa7\xd8\xb2\x5d" "\x0b\xbf\x30\xba\xf4\x8b\xde\x92\xea\x19\x2e\x24\x84\xef\x9b\x21\x60\x49" "\x2e\xdb\x5f\x2c\xe2\x96\xb0\xb6\xb4\x20\xd0\x20\xb7\xd1\x4d\x78\x0d\xb4" "\x36\xb1\xa2\x3b\x73\x30\x51\x36\x95\x36\xea\xe7\xc7\x14\x89\x27\xc3\xba" "\x3a\x96\x85\x16\x03\x9b\x0b\x14\xd9\x91\x8a\x41\xa1\xbd\xd5\x00\x28\x47" "\xe1\xc3\xd0\x2f\x0d\xc2\x23\x58\x57\xa9\x79\x70\x38\xd1\x64\x59\x17\x57" "\x82\x0e\x7d\x74\xdb\xad\xd4\x2b\x89\x03\xf2\x04\x34\xc6\xac\x0f\x40\x1f" "\xdb\xfc\xbe\xd5\xdd\x3c\x5b\x5f\xb0\xce\x1f\x9c\x81\xe8\xd1\x03\x7f\xde" "\x8d\xd3\xfe\xf1\xd5\xd7\xaf\x6a\xf8\xf3\x6c\x0f\x44\x62\x90\x9d\xbf\x69" "\x4c\xc6\xfe\x80\x07\x0b\xd5\xfa\xc5\xa5\xca\x4d\xff\xae\x4b\x2c\x67\x89" "\x2f\x7c\x53\xaf\x36\x44\xff\xec\x29\xab\x3d\x79\x1b\xd7\x93\x4a\xd3\x89" "\x29\xa9\xd5\xfb\x9e\xcf\x10\xb9\xde\xc6\x2e\x31\x5c\xcb\x0e\x0d\xe6\x0b" "\xb1\x62\x0d\xaa\x81\x54\xa4\xcd\xec\x98\xd9\x4d\x42\xac\x1a\x4b\x5f\x8d" "\xa6\xaf\xcb\x7d\xfb\x53\x54\x4f\xbb\xca\xa3\xaa\x44\x41\x82\xff\x25\x06" "\x4a\xce\x51\xa8\x25\xfe\x89\x23\x6e\x85\x0a\x2c\x90\xe1\xc7\xdb\x17\x87" "\x1e\xa8\x09\xc4\xa1\x1a\x26\xf4\x9b\x21\x3c\xab\x87\xd4\xa4\x2b\x74\x75" "\x46\xfb\x9b\x15\x06\x8f\xaf\x1a\x85\x56\xf9\x09\xf2\xc4\x72\x02\xe7\xb6" "\x5c\xdd\xc7\x08\xde\xd9\x0b\xdd\xe6\x87\x25\xb7\x87\xbd\xc2\xd4\xee\xda" "\x60\x20\x4b\xd0\x02\x8f\x07\xff\xc3\x05\x2f\x93\xeb\x63\x43\xd1\xb2\xa9" "\xa5\x29\x2e\x65\x74\xba\xa4\xa0\x96\xfd\xa6\xdd\x54\xf6\xd3\x9e\x94\x62" "\xb6\x83\x9b\x8e\xe2\x42\x6e\x3f\xbf\x42\xa0\x16\xdc\x09\x63\x14\x5e\x60" "\x2f\x2b\x0c\x35\x1f\x12\x3d\xf4\x8f\x60\x8f\x74\xb0\x4f\xc7\xe9\xcd\x01" "\x8e\x7a\xb2\x5b\xc1\xc1\x2f\x8f\x58\xc0\xb2\xdc\xe5\x71\x4f\xaa\x54\x82" "\x0e\xf7\x2f\x38\x56\x6e\x3d\x77\x6e\xa2\xd5\xb0\x61\xa2\xe9\x47\x10\x17" "\x6f\x15\xd2\x22\x14\x20\xab\xad\x8b\x8b\x73\x3d\xe2\x53\xe6\x02\x27\x78" "\x48\xe7\xf1\xe0\xeb\x4d\x07\xf5\xeb\x0c\xc4\xd9\xf8\x74\xe6\x32\x00\x7c" "\xbc\xa2\x3a\x5d\x7e\x41\x09\xcf\x5c\x4f\xaf\xe5\xf6\x07\x14\x9b\xac\x37" "\x93\x87\x34\xb7\x7d\x9b\x18\x3c\xf7\x60\x14\xaa\x61\x50\x7b\xd4\xeb\x44" "\x52\x4e\x83\x26\xc5\x89\x32\xc8\xb9\xf6\xa1\x0e\x33\x4c\xc6\x02\xb5\xb8" "\xc9\x56\xc7\xcb\x5f\xfa\x09\x92\x74\xb5\x99\xfc\x9c\x58\x32\x7f\x85\x55" "\x3e\x00\x26\x3e\x54\x8c\x93\xc8\x9e\xdf\x7a\x7c\x83\xcc\x10\x34\x86\x62" "\xfc\x34\x4c\x85\x37\x85\x72\xa4\x0b\x49\xae\x65\x97\x2f\xb4\x0a\xbd\x5e" "\x0a\x38\xaf\x48\x20\x79\x83\xf8\x6c\x7b\xb6\xbf\x9b\x78\x53\xc4\xb1\xfb" "\x52\x2d\x13\x5a\x83\xbb\xdb\xb7\x81\x30\xb4\xdf\x3a\xa7\xcf\xa9\x30\x86" "\x8c\xd5\xa2\xd9\x95\xca\x9f\xe4\xf6\x4c\x79\x48\x5a\xb1\x9d\x85\xb0\xc8" "\x2a\x72\xf4\xa0\x9c\xca\xb2\x67\x32\x0a\x61\x20\x8c\xce\xf1\x3c\x35\x46" "\xab\x0f\x16\xe3\x4c\xdc\x56\xd6\xe4\x8a\x6d\x9c\x14\xc6\x26\x52\x8a\x3b" "\x19\x1e\x37\x23\xb1\x9d\x43\x88\xd5\xb9\xb6\x1c\x7a\xec\x72\x6b\x87\x52" "\x45\x5f\x96\xe8\x88\xba\x7a\xf8\x2c\x12\x77\x96\xe9\xb6\x74\x32\xd1\xf6" "\x0a\x34\x70\xc7\xbf\x4b\x92\x4c\xf1\x0f\x06\xa3\xe3\xf6\x4c\x60\xc7\xc2" "\xb0\xfb\xa4\xd1\xeb\xe4\xe5\x20\x14\xb4\x05\x2c\x2b\xa0\xd5\xb6\x49\xc4" "\x6e\x5c\xdc\x6c\x71\x59\xfa\xff\x2a\xda\xd2\xdb\x2d\x3d\xb9\xf4\xf9\xe9" "\x73\x5b\xa2\x8b\x7a\xa1\xc6\xc2\xfe\xa9\xda\xb6\xc9\x61\x71\x60\xd1\x82" "\xdf\xc1\x3e\x18\xf4\x4e\x73\xc4\x37\x7d\xf4\x20\x80\xd0\x8a\x87\xfc\xfd" "\x46\xb4\xa4\xf3\x02\x05\x45\x7a\xd1\x9d\xdd\x47\x3f\xc3\xa6\x71\x53\xd0" "\x4e\x96\x0f\x1d\xc7\x55\x6f\xb1\x58\xa1\xd5\x84\xeb\x2b\xde\x91\x77\x92" "\x89\x2a\x30\xe9\xcd\x25\xd3\x7a\x31\x8c\xf0\x6b\xd6\x54\x14\x63\xad\xaf" "\x5d\x12\xad\xc5\x02\x52\xf3\x64\xba\x05\xf8\x91\x82\x01\x8d\xed\x21\x79" "\xc2\x3a\x1f\xc0\xb3\x1d\x87\x13\x9d\xa3\x92\x98\xb8\xd3\x87\x44\x6c\x70" "\xc4\x57\x7a\x27\xf6\xdf\x84\x1d\x9f\x43\x10\x6b\xc1\xbf\x44\xf5\xc7\xa4" "\x14\x60\xe2\xaf\xc9\xee\xa9\x8f\x8e\x25\x69\x19\xc0\xbe\xfd\x53\xd7\xd0" "\x15\x41\x23\x91\x96\x3c\x9a\xd3\x9a\x19\xaa\xd2\x65\xcd\xbd\x60\x96\x28" "\xe1\x91\x3a\xdc\x24\x67\xb6\x9c\x00\x86\x5a\x88\x63\x5c\x46\xa8\x51\xe7" "\x25\x2c\xf3\xdc\x5c\x3c\xc5\xdc\xb0\x4e\x97\xc0\x74\x2d\x1a\x84\x45\x56" "\x74\x40\x36\xc9\x77\x10\xdd\x9b\x55\xf6\x61\x50\x6f\x36\xcf\xef\x2c\x6b" "\x73\x05\xb6\x3f\x5c\x33\x46\x9b\x33\xad\x09\xe1\xb5\x93\xa7\xdd\xfc\x97" "\x77\x79\x54\xc7\x1c\x8e\x48\x57\xca\x49\xaa\x7e\x5d\xe0\xd2\x5d\x76\x0f" "\x63\x36\x60\xe1\xfd\x78\x3c\xdc\x43\xb0\x0a\x0e\xc1\x49\xcc\x9c\x83\x85" "\x80\x7c\x2f\x6b\x4c\xb2\x55\xd6\xa1\x5a\xc7\x5e\xf6\x3d\x08\x71\xb1\x76" "\xd5\x03\xf3\x32\xc0\x69\xcc\xfa\x7a\x2b\xac\xd1\x19\x99\xea\x79\x20\x24" "\xb3\x5c\x9f\xaa\xe5\xbf\x02\xbd\x5c\x84\x4d\x04\xd9\x68\x0c\x1f\xe3\x5c" "\x2d\x90\xce\x80\x8b\x45\x93\x2e\x75\x4e\x4e\x1d\xd1\x42\xba\x5a\x7b\xd9" "\xec\xdf\x77\x17\x09\x4e\xd4\x35\x9e\xba\x66\x6f\xbd\xc1\xe8\x49\xcc\xed" "\xe7\x2b\x0b\x37\xf0\xb8\xbc\x4f\x76\xb9\x92\x22\xf8\xd1\x99\xde\x11\xdb" "\xd0\xff\x39\x62\x36\xf4\xa3\x7a\xab\x95\x51\x26\xa6\x0c\x9f\x0d\x45\x7c" "\x7a\x39\x49\x20\xaa\x90\x14\x61\x1e\x5d\x99\x4c\x83\x73\x51\x6f\x06\x1d" "\xcc\x5a\xc8\x81\xbd\xda\x51\x32\xb5\xee\x98\x4b\x15\xfd\x00\x78\x28\x40" "\x1c\x72\xdf\x63\xc2\xef\xbc\x5f\x0e\x85\x45\x31\x0c\xe6\x5d\x06\x35\xdc" "\x73\xf0\xcb\x1c\x79\x6c\x24\xb7\xee\x62\x61\x61\x16\xc1\x33\x69\xce\xb7" "\x4f\xf8\xbd\xa6\x4a\x98\xe9\x03\xdf\xcf\xd8\x8b\x3c\x0c\x5f\x86\x19\x1b" "\xcc\x83\x42\x57\x8f\x23\xdc\x70\xfa\x6c\xee\xbd\xe8\x22\xff\xed\xb7\x58" "\x7a\x3f\x20\x4d\x33\x0b\xe4\x97\x7b\xbb\xc2\x52\x9c\xf0\xdd\xf4\xc8\x5b" "\x17\xf1\x08\x8f\x48\xd8\x78\xe7\x2f\xb0\x0e\x15\xa6\x14\x42\x31\x10\x8b" "\xe8\x16\xd2\x71\x8c\x36\x0e\x2f\xa8\xa2\x36\x69\x1c\x77\x5a\x9a\x0e\xf3" "\x55\x96\x96\xf5\xb8\xf8\x5e\xec\x0a\xa2\xb1\xc4\xf0\x1a\x2d\xf6\x06\x5b" "\xd3\x1b\x23\xdd\x37\x71\x86\x13\xfc\xbb\xb1\x56\x6d\xc0\x60\x7b\xf4\x87" "\xc1\xa9\x1f\x2b\x39\xa8\x37\x55\xa6\x04\x8e\x46\xd0\x2e\xde\x0f\x5a\xae" "\xa8\xee\x9e\x24\x5d\x6c\x37\x89\x1f\x5e\xbc\x9b\xb7\xad\x24\x62\xb4\xea" "\x4f\x11\x67\xb8\xc8\xe9\x7e\x2f\x7b\x62\xc1\xc9\x8a\xe0\xb8\x08\xee\x60" "\x33\x81\x8d\x28\xa0\x0e\xe7\x21\x20\x82\x0b\x22\x27\xda\x50\xd7\xf6\x6d" "\x33\x18\xf6\xac\xc6\x39\x8c\x81\xe5\x29\xc5\xcb\x0d\xf7\x5e\x30\x39\x54" "\xc2\xfa\x82\x87\x60\xc1\x13\x3f\xdb\xdf\x1f\xd7\x67\x5b\x86\x34\xbd\xb4" "\x96\xb0\x54\xb9\x16\x72\xfc\x7a\xc3\x44\xa3\x7b\xf6\x09\x88\x87\x0d\x54" "\xe5\xba\xf9\x13\x34\xdb\x88\x3b\x2c\x69\xac\xb5\x06\x76\xc2\xf8\x71\xfd" "\x57\x77\x47\xdd\x1d\x26\xc0\x0a\x56\xe7\x57\xb6\xa0\xed\xcd\x60\x9e\xf5" "\xc3\xb3\xef\x66\x9c\xed\x2a\xf5\xf1\x9a\xd1\x91\x94\xd0\x4f\x23\xff\x23" "\x54\x6d\xf4\x7b\xc6\x7a\xd5\x96\x67\x2a\x40\xcc\xa2\xe8\x7f\x8f\xcc\x3a" "\x31\x8e\x37\xc7\x3f\x9f\x50\xbd\x06\x92\x6c\x74\x07\x83\x56\xdd\xdd\xba" "\x42\xee\x27\x3e\x0c\x33\xc2\xfc\x6c\xdd\x1f\xd5\x0d\xaa\x6e\xd3\xb7\xb6" "\xce\x55\x8f\x89\x44\x9f\xca\x6d\x8b\x05\xc9\x06\x39\x28\x3d\x44\xe1\x4a" "\x85\x4e\xb2\x9d\x65\xce\x5b\x95\x52\x59\x70\x72\xcb\x14\x8c\xce\xa1\x5e" "\xf4\x30\x63\x05\x59\x29\x3a\xfa\xf2\x04\xf2\x2a\x89\x0f\xc3\x00\x9a\x2b" "\xc1\xb0\x84\x4a\x49\x66\x83\x54\xa9\x40\xfb\xd0\xd5\x91\x9f\xaa\xdf\xe5" "\xcb\x80\xe4\xc9\x3d\x13\x8a\xe2\x82\x69\xa9\x9c\x87\x74\x26\x29\x8b\x9e" "\xc7\xf0\x1e\x90\x05\xda\x2d\x79\x77\xf3\x41\x03\xde\x38\xb2\xf6\x5b\xdc" "\x1c\x89\x9b\xa9\x67\x45\xca\x97\x7c\x46\xdb\x60\x03\xb1\xab\x84\x0e\x67" "\x7f\x0d\x89\x60\xb4\xe9\xf7\x1e\x82\xfb\x89\xa8\xcc\x07\x02\x73\x92\x76" "\xec\x7a\x04\x0c\x69\xe6\xdc\x0e\x43\x96\x58\xd4\x20\x73\x7a\x2f\x6c\xbe" "\x7c\xb1\xce\x90\x4f\x4a\x39\xdb\xe8\x28\x49\x71\xe5\x27\xef\x50\x97\x6c" "\x89\x85\x5f\x75\xd5\xe1\x29\xa0\x9a\x11\x7a\x5c\x04\x24\x11\x69\x6f\x8a" "\x3b\xf0\x28\x79\xa2\x87\xb2\xb1\xea\x2a\x6e\x1a\xda\xed\x03\x74\x34\x11" "\x13\xbb\x83\x63\xf3\x3a\xac\xd3\x61\x33\x9c\x9c\x06\xb4\xbd\x6e\x04\xf8" "\xfb\xf1\xf1\x20\xf1\x99\x28\x56\x60\x84\x26\xd4\x4a\xbb\x6c\xc4\x29\xa0" "\x75\xc7\xbd\x22\xbd\xff\xc9\x49\x3f\x21\x82\x86\xf8\xeb\x58\x50\x01\xfd" "\xf7\x93\x27\xc8\xc1\x7d\x46\x2c\xc2\xca\x5b\x43\x5d\x44\x46\x59\x76\x71" "\x50\xc6\xe1\x00\x0a\x74\xf0\x01\xbe\x39\x8a\x1b\xb4\x88\x63\xd3\xa4\xd4" "\xa7\x1a\x46\x23\xe1\x72\x1b\x00\x3d\x7d\x2c\x03\x8f\xdb\x40\x5b\x81\x4f" "\x37\xa9\x5a\x6a\x53\xbb\xb3\x65\xdd\xde\xef\xb8\x34\x51\x67\x6c\x7b\x57" "\xa2\x3d\xd1\xd5\x23\x95\x8e\x2e\x2e\xb8\xd8\x89\xc4\x7c\xb7\xaa\x51\x5e" "\x9b\x11\xb2\xc3\xac\xcf\xe6\x73\x9a\x8e\xf5\x6b\x7a\x02\xad\xfd\x63\xec" "\x9f\x92\x32\xc3\x8e\x2a\xef\x37\x73\xa9\xa7\xd6\xf4\x84\x4e\xa1\xd6\x09" "\xf1\x46\xf1\x9e\x6c\x46\xfb\x6b\x96\x1b\x80\x37\xe5\xd9\xba\x34\xc0\xca" "\x5c\x10\xa6\x68\xdd\xc5\xd6\xf4\xc7\x95\x17\x32\xf6\x8c\x56\xad\x9c\x1b" "\x3e\x53\xe0\x9d\x33\xd9\xb3\x77\x25\x8a\xb2\xde\x95\x7c\x8a\xdc\xd4\xb6" "\x89\x23\xed\x6e\xaf\x24\x41\xe2\xd8\x88\xd1\xd4\x65\x3c\x56\x86\xab\x71" "\x2a\x82\xca\x16\xcf\x47\x50\x09\xe2\x38\xe5\xa8\xdf\x04\xca\x2f\xa7\x19" "\xe6\x30\x8b\xd6\x00\x26\xde\xea\x44\x35\x5a\x6e\x87\x81\x57\xff\xc7\xf1" "\x4a\x8d\x34\x27\x5a\x9e\xd5\xf8\x10\xea\x4e\xd1\x82\x7e\x4c\x91\x99\x8a" "\xeb\xe9\xaa\xcb\xae\x14\xd9\x5e\xed\x96\xa9\xde\x17\x46\x3a\xe8\x52\xf5" "\x3d\x2b\xf3\xe9\x2d\xf9\x59\x56\x4e\x95\x50\xc1\xee\xb0\xb0\x52\xc0\x0c" "\xd4\x4c\x07\xb7\xf0\x21\xcd\xad\x5c\x70\x90\x8a\x74\xbc\xa9\xec\x4f\xa3" "\x72\xf4\x91\xae\xad\xb2\x97\xe8\xf5\x71\xde\x1b\x37\x6e\xf1\xb7\x19\x4d" "\x8e\x43\x4b\xa3\x86\x79\x40\x60\x65\x21\x39\x95\x95\xbe\x0e\xc4\xda\xab" "\x0b\x45\xc4\x2e\x43\x9a\xdc\x5c\xbe\xcc\x73\x10\x02\x5e\xd8\x76\x1a\x1d" "\x78\xad\xf3\xee\x6b\x22\x35\x77\xe4\x73\x42\x3c\xec\xe9\x9c\xde\x08\x07" "\x26\x9d\xe6\x92\x96\x24\xed\x17\x39\xb2\x38\x0e\xd4\x68\x87\x79\xce\x98" "\x08\x59\x5e\x9b\x87\xed\x6f\x42\xd8\x9b\x16\x76\x01\x4c\xb8\xc9\xa3\xf7" "\x48\x4a\xac\xdf\x79\x4f\x05\x64\x39\xfd\x1e\x52\x33\xde\x23\x14\x1d\x5b" "\x87\xca\x95\xb5\x47\x21\xa0\x12\x12\x66\x6e\x80\x67\xcf\x68\x30\x25\xf1" "\x21\x9f\x4d\x05\x69\xc8\xcf\xb2\xd6\xed\x67\xe7\xf0\x51\xe2\xef\x9d\x0b" "\x70\xa3\x90\xac\x7d\x53\xbf\x9c\x4e\x53\x7c\x74\xaf\xd2\x23\xe3\x11\x34" "\x15\x83\x28\x2a\xc6\xe4\xab\x20\x9a\x59\x1a\xb0\xf4\xd7\x20\x55\x12\xa7" "\x4a\x01\xcd\x33\xb5\x7d\x99\x3f\xc5\xc5\x48\xa7\x57\xd7\x57\xe1\xf3\x22" "\x72\xc2\x2b\x86\xfb\x24\x28\xb3\x38\xea\xc7\x5c\x21\xe4\xce\x3f\xbf\xdc" "\x6f\x04\xa6\x28\x56\x61\x03\x08\xe6\x5d\xca\x82\xa7\x63\x7d\x71\x13\xa4" "\x8c\x6c\xe0\x35\x7f\xa4\x54\xf6\xd5\x8a\x1b\x61\x69\x8c\x7b\x65\xdc\x9b" "\x86\x78\xf9\xd2\x79\xb8\x83\xf7\x6e\x04\xad\x1f\x11\x54\xe2\xf4\x90\xaf" "\xb7\xe3\x97\xce\x65\xce\x29\x7f\x65\x99\xb0\x67\x1f\x31\x29\xbc\x87\xcf" "\x42\x21\xd8\xce\x10\x1f\x71\xa1\xdf\x23\xb6\x34\x3d\xc3\xd6\xe3\x5e\xe2" "\xeb\x0a\x1e\x37\xe6\x7e\x09\x1f\xab\x99\x4b\x89\x48\xe9\x56\x32\x0d\x7e" "\x51\x23\x08\x64\x1a\x12\x95\x26\xff\x2e\x73\xba\x02\x6f\xb7\x2f\xd3\xda" "\x34\x82\xfd\xe5\x37\x4d\x54\xbc\x3e\xd6\xae\x53\xf2\xb9\xb4\xd2\x22\xdb" "\x5f\x31\x26\x76\x02\x85\x68\x3e\xcb\xbd\x0f\x8b\x5b\xb9\x64\xe5\xa1\xcf" "\xe4\x04\xce\x21\x58\x8a\x21\xc2\x24\x4e\x0f\x76\x52\x0e\x13\x99\x92\xf6" "\x5a\x15\x29\x95\x48\xf4\xdc\x5e\x4d\x1e\x54\xac\xf7\x59\x2e\xe1\xf0\x4e" "\x36\x98\x76\x06\xbf\x10\xe4\x63\x2c\x79\xd0\x0e\x1e\xd9\x85\x55\x3b\x00" "\xa8\xe8\x28\xdd\x19\x3f\x5c\xbd\x71\x01\xcd\x36\x74\x58\x04\xd4\x74\x53" "\x2f\xc5\x1e\x70\x8c\x7f\x12\x4b\xf9\x23\x1b\x9a\x7b\xd1\xca\x44\x46\x06" "\x05\x35\x05\x4b\x4b\xfd\x5a\x61\x60\x7f\x3a\xe4\x5c\xf1\xde\xeb\xfb\x9d" "\x87\x10\xe5\x52\x3c\x8c\xd0\x35\x65\xcd\x37\x8e\x77\xb1\xb3\x32\x3a\x7d" "\x97\xf2\x8f\xd1\xa1\x3a\xa4\x06\x26\xab\xf6\x9d\x7b\x66\xee\x9d\xb3\xd6" "\x04\xb2\x93\x96\x63\x47\xa4\xfb\x36\xd0\x89\x07\x8f\x98\x08\xbc\x20\x91" "\x09\x69\x0e\xa4\x79\x41\xad\x7c\x14\x17\x67\xb7\x8e\xee\x93\x13\x1a\x57" "\xb5\xe1\x26\x90\xb7\x28\x8f\xfe\xcf\x22\xf3\x9f\x30\x8a\x80\x45\x7a\xc6" "\x05\x2b\x8f\x47\x7b\xaf\xc1\x5a\x3a\xb3\x0c\xfa\x3c\xbd\x7d\xda\x98\x03" "\xe5\xa5\x66\x46\x94\xe7\x7f\x52\x80\x87\xde\x19\x7c\x02\xfd\x4d\x13\x3e" "\xa9\x13\x3b\x9a\xa4\x37\x7b\xcc\x0b\x62\x80\x19\x82\xb9\x99\xb6\xe7\xf7" "\x6d\xff\x37\x1d\xfd\x99\x87\x04\xe3\x40\xb4\xe5\xda\x88\x38\x4f\xa8\xcf" "\x08\xd7\x47\xc9\x77\x10\x5e\x45\x74\xbd\xa0\x2c\x56\x36\x13\x38\xa0\xa9" "\xbd\x80\x0e\x94\xc8\x61\xa3\x1d\x5d\x64\xd7\x1c\xb6\x5c\x06\x55\xf5\xb5" "\xcf\x5f\x90\x0e\x34\x8d\x7c\xc0\x5d\x9c\x2d\xcf\x71\x18\x59\xcb\xb8\xff" "\xa5\x40\x65\xe2\xe5\x46\x2f\x4c\x1d\x80\xd2\x8e\x5d\x54\x00\x09\x0d\x4b" "\xf6\x15\x65\x42\x2b\x8d\xf0\xf3\x4f\x7a\x7c\x1e\x15\x3d\x39\xc9\xd7\x34" "\x0d\x15\xb8\xdb\x22\x6d\x32\x3b\x4e\x3c\x50\xfd\x8a\xaa\x87\xec\x9e\x5c" "\x3f\xbb\x3a\xd6\x64\x62\xc6\xec\x5f\xf3\x18\x77\x02\x4d\x11\x9f\xdb\x7a" "\x16\xe6\x9d\x32\x4c\xa9\x81\x95\x12\xc4\x5c\x38\x52\x40\x9f\x48\x99\xa4" "\x1a\x4d\x16\xca\x77\xdc\x3d\xba\x1f\xfb\xdc\x2a\xf2\xfc\xca\xba\x1f\x04" "\xe0\x48\x44\x41\x54\xd5\x01\x9a\x26\x7b\xbc\xd4\x40\xd7\xbb\x35\x16\xe9" "\x74\x1e\x5f\x9c\x3e\xf1\x13\x5e\x8c\x0d\x70\xe3\xc7\x80\x0c\x10\xc0\x00" "\xe9\xcf\xbd\xdb\xb5\xab\xa9\xe4\x3b\x3d\xc0\x16\x4f\x92\x73\x35\x90\xf6" "\x92\x1b\xfb\x53\xaa\x14\x66\xa5\x3b\x61\x46\x11\x37\x95\xfc\x13\xd1\x62" "\x1b\x3c\xbe\x0e\xad\xec\x02\xc4\x69\xa4\x89\x92\x32\xc2\x3a\x5a\x88\xa9" "\xd6\x59\x98\x4c\x22\xee\x52\x3b\x5c\x5d\xe8\x42\x23\xa0\xf0\xf9\xbf\x1f" "\xcd\xb1\xef\xb4\x70\x92\x52\xc0\xfa\xb4\x77\x82\x3b\xf2\x50\x5f\x9a\x2e" "\x4a\x36\xd0\xbd\xae\x82\x4e\xca\xd1\x5a\x4c\x31\x3f\x0c\x9e\xb4\x42\x3e" "\xa2\x49\x71\x0e\x35\x3e\x61\x26\x46\x30\x92\x7f\x77\x8c\x01\x97\x8f\x5b" "\x50\x21\x3d\x71\xfd\x74\x6e\x40\x00\x94\x32\xbf\x50\xb7\x93\x2b\x76\x59" "\x94\x2f\x0d\x1b\x63\x75\xb8\x7d\x9b\x03\x8c\xe2\x71\xd7\x33\x3e\xd2\x82" "\xbe\xb3\x92\x5a\x33\x0d\x88\x1a\xc7\x61\x1d\x3e\x8b\x86\x96\x01\xb1\x46" "\xfd\x82\xc0\x6b\x34\x0a\xe4\x82\x3c\x4c\x42\x9a\xf4\xc1\x5f\x2a\x2a\x2b" "\xdf\x38\x37\x88\xe8\x6b\x68\xc0\x01\x86\x6a\x86\x18\x8c\xfd\x71\xb0\x2b" "\xc8\xab\xef\x13\x70\x32\x64\xf3\xad\x08\xff\x66\x02\xe1\x5f\xf8\x47\x15" "\xb7\x79\x65\x41\xc8\x7e\x26\xb0\xc6\xe0\x86\x21\x19\x43\xe5\x26\x29\xf8" "\xc1\xe7\x1f\xda\xec\x97\x2a\xb5\xa2\xc6\x90\xc7\x8b\x08\xd6\x56\x51\xae" "\x4b\x64\x07\x0f\x7b\xb3\x79\x31\x11\x98\x81\xef\x14\xc4\xc8\xe2\x28\xd6" "\x7d\x34\xf1\xc9\xeb\x85\x5b\x39\xad\x6e\x61\x5b\xf2\x4f\x7b\x45\x3a\x76" "\x54\x7e\xdf\x2f\xa0\x25\xc5\x3b\xda\x95\xd7\x83\xfb\x3f\x73\x58\x52\xf2" "\x83\x18\xa8\xa6\x7c\x8c\xeb\x52\x79\xd3\x80\xd7\x24\xee\x6e\xb2\xe7\x6b" "\xa8\x80\x7a\x08\x65\xfc\xaf\xac\x50\xd0\x9a\x92\xb8\x5d\x27\xa2\x38\xe4" "\x46\x1a\x80\xcb\xbe\xae\xd6\x2a\x84\x4c\x17\xe4\x98\xf6\x45\x7a\xa6\x42" "\xeb\xbd\x0a\xae\xab\xf1\x27\xb8\xf8\xfb\xdc\x2e\x28\xff\x7f\xaf\xaa\xfe" "\x30\x16\x60\x34\x61\xf2\x56\xd7\xfc\xa6\x90\xa8\x64\x3b\x96\x97\x80\x0b" "\x3c\xd5\x9e\x09\xec\xae\x48\xba\xab\xcc\xb6\x3c\xad\x4a\x62\x7f\x6b\xfb" "\xa0\x75\x9f\x1c\x18\x69\x77\xe9\x69\x8e\x6f\xbc\x16\xec\x9d\x1c\x95\xca" "\x8e\x2e\x07\x5a\x1e\xed\x3b\xa6\x22\x3e\x4d\xf4\x4b\xe7\xda\x59\xa4\x44" "\x71\x5a\x78\xfd\xb9\x0a\x16\x45\xc0\x69\xca\x0f\xd1\x60\x9b\x7d\xce\x29" "\xff\xa1\x1f\x17\x26\x6c\x32\x85\x6f\x9e\xbc\x85\x3c\x0c\x7c\xbb\xbd\x82" "\x66\x7a\x51\x06\xb5\xb6\x3f\x53\x28\xae\x9d\x65\x3d\xc5\xdd\x53\x19\x49" "\x88\xf0\xe4\x21\xdb\x38\x51\xee\xe5\x3c\x55\x7e\x40\xa7\xad\x29\x3a\x22" "\xff\xd3\x44\x5d\x29\x63\x47\xce\xf4\x18\x7a\xab\x3c\x9c\x3c\x2a\x8e\x40" "\xbe\x66\x91\x9c\x30\xce\xf3\xde\x81\x25\xf3\xcc\x73\x42\xa4\x37\x91\xcf" "\x1b\x3b\x11\x7a\xf9\x9b\x04\xe0\xfd\x81\x70\xf1\x7f\x4b\xa2\x5b\xdc\xb2" "\x49\x65\x50\x10\x25\x18\x8a\x43\x0d\xf8\x62\x39\xd3\x69\xa6\xe2\xc9\x24" "\x5e\x91\x4f\xe4\xbe\x3a\x1e\xb4\x8e\x22\xe2\xe1\xc7\x2c\xae\xb4\xb0\xd1" "\xb6\x9e\x8a\x81\x7c\xc7\xdd\xf6\x44\xd3\x3e\x56\xae\x32\x21\x56\x04\xf2" "\x67\xa8\x07\x54\x61\x94\x40\xdd\xb3\x62\x12\x80\xa4\xb3\x88\xc1\x4c\xa1" "\x9d\xfd\x39\x8d\x74\x49\x77\x84\x92\x47\xd0\xbb\xc5\x5d\x5a\x54\xef\x06" "\x2a\xd3\xcb\x36\x89\x16\x8b\x28\xa0\x98\x19\x46\xfa\x01\x73\x7e\x08\x11" "\x01\xb9\xc5\x71\xd0\xec\x4e\x57\x75\x15\x9d\xac\xcc\x11\x05\x88\xfb\xd3" "\x5b\xf6\xf0\xd5\x5f\x99\xda\x96\x7a\x3d\x3d\xb1\x99\x9e\x15\x89\x58\xd7" "\xce\x12\x85\x71\xef\xaa\xbc\x09\xc1\xaa\x71\x37\xc3\x5f\x3e\xdf\x7c\xff" "\xf3\x86\xa7\x9b\xa5\xac\xfa\x97\x43\x66\xc4\x42\x20\x7a\x39\xce\x67\xaf" "\xc8\x46\x9c\x2d\xdc\x6f\x45\x41\x3d\xd6\x54\xd9\xf5\x9a\xe7\xfd\x31\x11" "\x5d\xfe\xcc\xc4\x3c\x27\xbb\xcf\xfa\xb1\x19\x10\x67\x35\xb7\x78\x2f\x96" "\x94\xa3\xe3\x01\x59\xae\xe3\x41\xf0\x45\x40\xa5\x44\x43\x56\x2c\xaf\xad" "\x5c\xf3\x33\x6c\x6e\x90\x03\x32\xb0\x53\xd7\xc9\x3b\xab\x45\xd8\x84\x6c" "\xb5\xb8\x80\xe1\x1b\x97\x9c\x13\xdf\xea\x06\x26\x79\x32\xd8\x9e\x25\x8e" "\xf3\x07\x68\xec\x2c\xe1\xd7\xb0\x20\x60\x9a\x5e\xa6\xad\x9e\xda\x78\x21" "\x95\x42\x56\x70\x29\xd1\xd4\xd2\xff\xe7\x97\xb7\xf9\x5f\x16\xb8\xf5\x99" "\x39\x0b\x0b\x63\x0d\xec\xdc\x6e\x17\x59\x3b\x7e\x49\x92\xd4\x8e\x62\xc2" "\x7c\xca\x2e\x42\x3e\xde\xd8\x5c\xd4\xb4\x36\x06\x54\x96\x98\x4d\x59\x04" "\x4d\x38\xf3\x17\xd0\xba\x64\x98\x37\xe5\x37\x7a\xb3\x79\x3c\x3f\x66\xc0" "\x50\x9e\xb3\x7b\xa3\x65\xc9\x42\x73\xb3\xca\xd9\x7c\x5f\x60\x7b\xcd\x31" "\x2c\xdf\x3c\x86\x05\xdd\x55\x69\xe2\x93\xd2\x1c\x58\x89\x69\xd7\xbf\xb1" "\x7a\x22\x8b\x53\xf2\xcd\x03\x87\x99\x59\x45\x25\x3c\x6e\xc8\xfa\xd3\x77" "\x7c\xaf\xaf\xcb\xb9\x15\x1a\x54\xe6\x53\xa1\x42\xb5\xad\x0c\x62\x68\x2b" "\x8e\xc4\xb9\x9f\x52\x5d\xd8\x53\xf7\x5c\x17\xae\x62\x64\xb7\xbf\x97\x51" "\x38\xde\x99\x32\xd4\x0b\xe9\xf3\x5c\xe2\x5d\xd2\xa1\xe3\x07\xfc\xf5\x06" "\xeb\x6d\xb8\x80\x3c\x19\xb9\x88\x0f\x96\x29\x9e\xf5\x8a\x6b\xdf\x32\x70" "\x83\x46\xdb\x54\x0d\xae\x11\x2b\x0f\x7e\xbf\xbe\x6f\x3f\x46\x63\x5b\x7d" "\x98\xe2\x32\xcc\x91\xef\xf2\xaa\x9c\x7f\xed\x6d\xd5\x3d\x44\x8d\xb2\xfb" "\x8f\xc4\xc0\xdd\x66\x1d\x47\x58\x5c\x79\x66\xf9\x33\x8f\x16\x5e\x53\xb3" "\xd7\x77\x7d\xd8\x44\xbe\x6a\x6c\x88\x85\xd9\x5b\x83\x9a\x32\xea\x0b\xc8" "\x3e\xc0\xef\x8a\x5b\xd1\x1b\x66\x6d\x11\xfd\x8e\x27\x56\x1d\x8a\xfc\x46" "\x86\xe9\x78\xba\x31\xff\x2f\x81\x2f\x81\xa6\xa8\x29\x56\xb9\x5a\x0c\xce" "\x29\x66\xa3\x7a\x4b\x9e\x33\xbd\x29\x7a\xb8\xb1\x66\x7f\x6c\xa5\xa6\xbe" "\x65\xe4\x48\x5a\x30\x56\x51\xa4\x23\x0b\x7a\x01\x0a\x96\x0b\x03\x5d\xfb" "\x7a\x84\x74\xde\xc1\x96\x5c\x6a\x91\x77\xf6\x24\x84\x81\x78\x07\xe0\xdc" "\x43\xab\x27\x70\xb2\x7a\xdc\xb4\x0f\x76\xc0\xe7\x86\x39\xc5\x5f\xde\xcb" "\x6c\x00\x8f\x2e\x85\x9e\xd4\x96\x81\x8b\x48\xe5\xfb\xe3\x23\x76\xfb\x3c" "\x43\x4a\xfc\x0f\xf7\x80\x86\x7e\x73\x74\xa8\xd6\x59\xcc\x15\x80\xe4\x96" "\x78\xf4\x54\x2e\x5c\xd3\xe5\x4d\x5f\x4b\xd1\xff\x6d\x18\x68\x27\xd5\x88" "\xac\xe5\xa8\xad\xf4\x37\xde\xa1\x1d\xef\x7b\x57\xb6\xb8\xc9\x92\xb8\x66" "\x95\xd0\x9c\x65\xaa\xf5\x32\xd6\xb8\xcf\x12\x68\x6d\xf8\xb0\x7b\xfb\x5a" "\x8a\xef\x79\x44\xf0\x4c\x8b\xd0\x0d\x50\x0b\x8b\x7e\xb2\x45\x16\xdb\xec" "\x0f\x55\x14\xdc\x48\xf7\x0e\xb2\x6a\x2b\x78\x04\x2f\xb6\xb4\x72\x6a\x20" "\xfc\xf7\x3c\xcc\x9a\x14\xb7\x5b\xb8\x2e\x55\x8e\x8b\xc4\xf7\xff\x54\x53" "\x85\x0f\x83\xd1\x28\x96\xe9\xab\xf3\x22\xe5\xb8\x1b\x6e\xfe\x67\x9c\x8c" "\x98\xee\x09\x2e\x06\x30\x2f\x9f\x14\x72\x93\x1d\xbe\x5a\x81\x5a\xc3\x8b" "\x1b\xff\x79\x36\x3c\x4f\x84\x6c\xaa\x75\x5a\xb3\xed\x5b\x60\xa9\x38\xd5" "\xf1\xa9\xe1\x09\x50\xaa\xa0\xc5\xd1\x0c\x5c\x4f\x09\xab\xb8\xce\x6b\x98" "\x86\x7e\x6f\x86\x44\xe3\xb9\xd6\x03\xf0\x7f\x9c\x2d\x10\x44\x60\x06\x35" "\xd4\x32\xce\x79\x6b\x0b\x96\xba\xf5\x72\x23\x87\x11\x30\x2f\x8f\xe4\x86" "\xf3\xbd\x4b\x5a\x04\x63\xee\xfb\x0c\xb0\x42\x71\x39\x3c\xb1\xb4\x7b\x03" "\x3d\xb6\x28\x40\xb4\xc5\x35\xda\x35\x6d\xe3\xdb\x90\x96\x1d\xee\xfb\xf4" "\x30\x60\xd5\x7b\x30\x34\x89\xaa\xf9\xc3\xbe\xd9\x35\xf8\x75\x0d\x47\xb8" "\xe6\xae\xd8\xeb\xa7\x1f\x08\xd9\x32\x46\xc9\x2c\x7c\xfd\xde\xa9\x9f\x6e" "\x05\x2b\xf1\x8e\x78\x7a\xca\x4c\xc0\x47\x79\xdd\xa1\xf6\x7a\x42\x0c\xbb" "\x5f\xbc\xee\x2f\x2a\xe2\x8b\xe6\x64\xfa\xd1\x8b\x47\x8e\x17\x1d\xc3\x69" "\x91\x16\xae\x71\x42\x1b\x86\xa5\xfa\x97\x32\x76\x7c\x99\x4f\x38\x51\x98" "\x74\xb3\x3f\x07\xb1\x2b\x8b\xaa\x5b\xc6\x72\x01\x7c\xb1\xe2\xc8\xe8\x89" "\x7e\x54\x13\x58\xda\x9a\x9e\x3b\xf8\xbf\x57\xad\x35\x41\xfb\x43\x45\x34" "\x19\x0d\xdb\x95\xa5\xad\x70\x1e\x20\x54\x8b\x26\x92\x68\xfe\xf7\xc2\x0c" "\x15\xad\xb8\xa8\x6d\xc8\xed\x75\x6f\x76\x03\x70\xef\x2b\xff\xf1\x26\x13" "\x49\xb5\x35\xb7\x7f\x67\xa4\x11\x8d\xc8\xf9\x5c\x70\xe9\x77\xae\x39\xc7" "\xc7\x7f\x2d\x4e\x22\x48\x02\x84\x39\xb7\x23\x25\xc0\x33\xc6\x86\x84\xfc" "\x8d\xd6\x05\x0f\x04\x49\xe2\xc8\x7d\xeb\xc0\x0f\xb8\xbd\x5d\x1d\x9b\x9f" "\x31\x21\x9b\x42\x43\xcb\x08\x93\x62\xb3\x45\xf2\xb9\xaa\x70\x89\xeb\x61" "\x8e\x14\x07\x22\x3e\xf1\x02\x2d\xba\xa8\x56\x19\x7f\x6c\xd8\xdc\xb7\xfc" "\x53\xaf\xc1\x67\x31\xe0\xf2\x1b\x45\xa1\x7f\xdc\x2c\x49\xbf\xd9\xf1\x4e" "\x45\x4c\x98\x53\x6c\x50\x7c\x3a\xca\x95\xad\x57\xbe\x39\x5e\xa9\xd7\x37" "\xa4\xa3\x23\x78\x25\xcf\x10\x2c\xa0\x80\xe0\x13\x23\x0c\xd7\xa4\x6e\x91" "\x23\x7b\x22\x14\xa2\xb1\x75\xff\xb3\x90\xac\x9f\x12\xe5\xdd\x31\x24\xff" "\xe1\xe1\x52\xe1\x48\x37\x14\x25\xc6\xae\x5c\x60\x37\x15\xd5\x43\x9e\x0f" "\x9e\x49\xe8\x04\x8b\x56\x48\x9c\xe7\x9c\x26\xdf\x2d\xab\x6a\xd0\xc8\xac" "\x0b\x37\xe5\xd4\xfe\x10\x06\x1f\x44\xf3\xd2\x31\x4e\x1e\xe6\x24\x5e\xd6" "\x00\xc6\x2a\x9c\x44\x8f\xaf\x90\x52\x67\xcd\xb1\x25\xed\x7d\xd2\xa7\xa5" "\x39\x77\x0b\xd1\xdd\xee\xfd\x13\xa5\x21\x99\x1c\xae\x16\x16\x0c\xad\xef" "\x43\x4e\xdc\x23\xfe\xc3\x33\xec\x7b\x32\x8c\x4a\x62\x13\xc5\x04\x08\x48" "\xe8\x35\xc6\xb3\xe0\xae\xbc\xae\x1d\x58\x84\xf7\xe8\xf6\x54\xad\xb5\x12" "\xc2\xf0\x22\x7f\xae\x83\xdd\xae\x0d\xfa\x84\x8e\x0b\xa9\x34\x44\x04\xef" "\x1d\x6d\xa8\x80\xf8\xea\xc7\x1f\xb7\xe0\x2f\x19\x78\x59\xfd\xc1\xec\x63" "\x4d\xca\x3f\x46\x93\x2e\x5f\x02\x26\x89\xed\x25\x3e\x60\xf2\x32\xe1\xac" "\xd9\x6f\xce\x39\x89\x61\xd6\x2c\x4d\x63\xd7\xf3\x7d\x48\xc2\x61\x75\x29" "\x86\x58\xc2\x24\xbc\x1d\xb7\x3b\x8b\xaa\xea\xb1\x39\x06\x5a\x9b\xd0\x04" "\xbc\xaa\x24\x49\x3c\x17\xf0\x99\x61\xc0\x9b\xd0\xcb\x82\x8a\x8c\xb3\xca" "\xb5\x6d\xf2\x99\x16\x46\xff\x37\x00\x40\xbc\x85\x07\xd3\xd1\x6e\x66\xdc" "\x07\x5c\x8d\x30\x2c\x65\x86\xdb\xee\x27\xb3\x2f\x93\xea\x56\x3a\x26\x92" "\xf6\x5a\xda\x17\x4e\x35\xbc\xd8\xcd\x32\x14\xc1\xa3\x8c\xc0\x0c\x90\x06" "\x78\x28\xb9\x98\x0d\xa7\xde\xc0\x4f\xbe\xaa\x2e\x55\x0c\x8d\x06\x35\x8a" "\xb4\x46\x85\x3e\x7d\xaf\x00\x7b\x0d\xe5\xc9\xe3\x61\xd7\x5c\x40\xad\x5f" "\x9f\x29\x23\xc1\x0e\xa4\x79\xe5\x85\x2a\xd3\x5f\x23\x2d\x6d\x14\x1c\xa7" "\xb4\x32\x8c\x9d\x72\xdc\x5c\x24\x7d\x14\x31\x68\x8b\x2a\x32\x5d\x88\x58" "\x27\x33\x95\x3e\xe5\x0f\x99\x7a\x5d\x83\x24\xcd\xcb\x01\xfd\xa1\x1a\x77" "\x30\x93\xf3\x44\xfb\x38\xb5\x5c\x5f\x9e\x77\x06\xe1\x02\x4c\xfb\x4f\x2e" "\x47\x54\x4e\xbb\xaf\x79\x2d\xe3\xc4\xd8\xf1\x52\x2e\x9d\x9c\xe7\x3f\xda" "\xf1\x74\x0d\x3d\xc1\x34\xa7\x8b\x53\xc6\x16\x7a\xec\x45\xc7\x30\x01\x6b" "\x8a\xd9\xd9\xbc\x40\x42\xb6\x83\x5a\x5f\xf3\x4c\x9d\x36\xda\x74\x18\x71" "\x9a\x86\xbe\x66\x37\xc8\x96\xfa\x4a\x4e\xda\x86\x2a\x9e\x73\xab\x97\xe5" "\xa9\x77\xae\xbf\x0f\xe6\x4a\x7d\x50\x7d\xc2\x10\xa6\x77\x87\x3e\x15\x5f" "\xe4\xb2\xcc\x3a\x96\xe5\x58\xf4\xd5\x4d\xb6\xfc\x5f\xcd\xf1\x66\xc4\xcd" "\x58\xbb\x5d\x17\x21\x37\x8c\xcf\xf1\x70\xc0\xeb\xa1\x4b\x99\x0e\xf6\x10" "\x60\x69\x09\xc2\x05\xe3\x4a\xab\xd1\x5e\xb7\xa6\x04\x06\xdf\x54\x51\x87" "\x1b\x18\xae\x3c\xfb\x5a\xf3\x7b\x7f\x7b\xb2\xbe\x80\x59\x0d\x3b\xe0\x2c" "\x5d\x0c\x41\x43\xbe\x66\xef\xcb\xe1\x3c\x69\x27\xf5\x4e\xd2\x78\x84\xb3" "\xd6\xa7\x3e\x90\x51\x65\x52\xa0\xbb\xd8\x1f\x7c\x76\xed\x5f\x84\xec\xfe" "\xf2\x22\x5e\x52\xb9\xcf\x60\x21\x89\x57\x16\xaa\x29\xb5\x40\x75\x0e\xb6" "\x4b\x31\xcd\x7b\xe1\xe9\xfd\xaa\xf1\x32\x68\x1b\x23\xcf\xb2\x74\x2f\xbe" "\xb4\xd1\xf4\x0f\xd0\xbb\x1d\x13\xba\x04\x4b\x25\x2f\x2f\x04\xb0\xd5\xfc" "\xb1\x21\x97\x74\x86\xc5\x75\x4a\x56\x9b\x81\xbe\x75\x77\xcc\x0c\x9e\x91" "\x8a\xff\xbf\x9a\xbc\x1b\x6d\xd5\x67\xaa\xb6\x6b\x7e\x2a\xca\x39\x6e\x79" "\xd5\x3c\xed\x96\x95\xa6\x5a\x70\x4b\xbd\x97\x00\xb5\x5a\xc8\xc9\x68\xc5" "\xf4\x35\x57\x06\x0c\x65\x07\xa3\x55\x7c\x87\x62\xa7\xdc\x82\x63\xea\xba" "\x22\xd5\x1f\xb7\xdf\x43\x5e\x20\xbe\xea\xa7\x00\x60\x9d\x77\x4d\x1e\x21" "\x2e\x74\x93\xb6\x72\x32\x4e\x1a\x90\x7f\xc1\x54\x6c\xdf\x7d\x4f\xf8\x80" "\x29\xdd\x7e\x9c\x92\xfc\x53\x0e\x3f\x55\xb6\xc1\xb1\x03\xc6\x9f\x14\x85" "\x95\x24\xd0\x7e\x45\x4a\x3c\x5f\x98\x7e\x01\xd2\x1d\x9a\x5a\x6f\x84\x23" "\x70\xcc\x3d\xad\xcd\xe1\xb5\x82\x2b\x0d\x0c\x47\x88\x3d\xfe\xe6\x2b\x9b" "\x72\x09\xc3\xa7\xc3\x99\xed\x34\x60\x4e\x16\x4f\x80\x6e\x68\xa5\xa2\x4a" "\x53\xd0\xc5\xbe\xcc\xdc\x13\x89\xe8\x7a\x58\x94\x06\x1f\x95\xe7\xe8\xe8" "\xbf\x84\xea\xd6\xe7\xfb\x15\x59\x38\x23\x0f\x22\xb4\x26\xd9\x04\x1e\x8b" "\xea\x72\xda\xe1\x49\x11\x82\x4d\xb9\xb6\x5b\xb0\xea\x0d\x04\x04\xcc\x8f" "\xab\xcb\x8f\x18\x63\xe1\x3c\x84\x75\xbe\xb6\x81\x38\xe0\x43\xdd\x67\xbf" "\x1b\x0d\x7e\x03\x8f\x9f\x3d\x25\xc8\xab\x1a\x52\x17\x3a\xf6\xb4\x6d\x82" "\x60\xd6\x77\xbf\x06\x60\x58\xe8\x9d\xd1\x8b\x03\xfa\x20\xe7\x99\x38\xda" "\xb0\x18\x76\x10\x29\x92\xf9\xdf\x49\xdb\xe9\x83\x52\x6b\x9e\x0b\xc8\x3c" "\x15\xcb\x9d\x52\x51\x1e\xff\x20\xd1\x8d\xcd\xd3\x16\xbf\x33\x4b\x98\xae" "\xd9\x02\x40\x51\xb8\x7b\xd3\xd7\x67\x05\x44\x70\xf4\xb7\xf5\x9a\x20\x7e" "\x9b\x9f\x17\x82\x74\x97\xbe\xc1\x46\xaa\x1b\x0d\x18\xef\x54\xae\x59\x27" "\xc6\x4b\x05\xf3\x4c\x85\x08\xa0\xcf\xea\x02\xcf\x59\xb3\xc9\x7a\x1d\x3e" "\x83\xa0\x0b\x7c\xa4\x95\x16\x7f\x41\x1b\x3f\x41\xc1\x40\x9a\x8a\xc0\x07" "\xe1\xcb\x08\xef\x83\xc4\xcb\xe3\x81\x17\xd4\xb1\xef\x9b\x58\xdc\x00\x92" "\x37\x1b\x1d\xbb\x1a\x18\x34\xf7\x80\x28\x2d\xc2\xf3\xb6\xbf\x36\xfd\x0d" "\xcc\x76\x19\xc2\x87\x85\xb7\x69\x10\x75\x73\x76\xad\xfb\x01\x4c\xa9\xff" "\x8b\xfa\x3e\x29\x1e\x7c\xba\x2c\xaa\x05\xef\xad\x48\xb1\x50\x63\x37\xb6" "\x1f\x74\xb7\xb0\xf4\xab\xc1\x88\x46\xaf\x68\x2f\x34\x70\x8b\xbe\xe9\xde" "\xe7\x68\x37\xbc\xd1\x92\x87\x6d\x18\x61\xa2\x0b\x3e\x77\xc9\x98\x4a\xff" "\x5e\xbf\x0a\x2a\x47\x41\xd6\xe4\x3b\x4a\xc0\x56\xea\x13\x8e\x79\x23\x01" "\x44\x57\x8b\xfd\x4a\xe8\x2b\x84\xed\x10\x9e\x4d\x5f\xf0\xf9\x55\xca\x48" "\x1a\xc0\x23\x1c\xae\x96\x3b\x7d\x4d\xb7\x6d\x89\xd0\x7e\x26\x59\x73\xa1" "\x68\x99\xfb\x3a\x6f\x8d\xba\x53\x47\x39\x54\x58\x91\x34\xb5\x20\xe6\x80" "\xf4\xc5\xe7\x07\xfd\x05\x6e\x75\xed\xb1\x94\x00\x4b\x81\xa4\x0b\xce\x04" "\x07\xb6\xc2\x94\x07\x8b\x77\xe8\xab\xd8\x87\x3c\x01\xf6\x91\x8b\x2c\x7c" "\x60\x95\xc9\xf2\x3b\x98\x41\xe9\x0e\x8a\xcd\xe5\x3b\xa6\x0c\xd7\x89\x11" "\xca\xc6\xfc\x2e\xf6\xbb\x5f\xcb\xb0\xd3\xda\x3e\x63\xd7\x0b\x47\x49\x5f" "\x21\x77\xaf\xce\x5d\xa3\x7c\x59\xef\xde\x49\xaa\xe1\x33\x76\x18\x47\xa6" "\xf0\xc8\xaa\x37\x47\x90\x52\x2b\xa0\x4d\x46\x6b\xd1\xf7\x86\x0f\x53\x37" "\x1f\x5e\xb2\xf5\x06\xc5\xbc\x7b\xb6\xab\x44\x9e\x4a\x5c\x37\x86\x6c\x31" "\x68\x4b\x28\x5c\xf5\xda\x17\xf3\x64\x34\xb8\x09\xf6\x9c\x54\x2c\x98\x94" "\x49\xfd\x0e\xca\x50\xf5\xea\xcf\x80\x80\xcb\xbe\x8b\x84\xd1\x18\x30\x95" "\xae\x74\x16\xb8\xf2\xb9\x83\x11\x45\x1c\xf7\xca\xd2\xd8\xfb\x72\x1e\x58" "\x9f\x9e\x61\x13\x76\x43\x03\x59\xcf\x85\x54\x44\xfd\x14\x15\x01\x1e\x8c" "\x31\x38\x34\xbf\x0e\x21\x7a\xc7\xb0\x3f\x8a\xdd\x94\x14\x27\xb0\xd1\x5b" "\x56\x37\x8b\x2c\xd1\xe3\x92\x50\x08\xc1\x6c\xd5\xf9\x5d\xd1\x49\xc7\xe0" "\x50\xe0\xa1\x53\xe4\x33\x3e\x63\xbd\x14\x81\x6b\x43\x57\xfb\xaa\x5f\x70" "\x6a\xf6\xee\x22\x50\x57\xeb\x59\x9b\xbe\x57\x14\xc9\xff\x23\x20\x4d\x19" "\x02\x23\x05\x69\x83\x9d\x88\x36\xe6\xb2\x52\x55\x70\xb0\x0e\xca\x85\x34" "\xaa\x0c\x29\xcf\x62\xdc\xe6\x1e\xc6\x6d\x9c\x19\x5b\xe8\x12\x79\xb6\x98" "\xec\x85\x65\xfd\x67\x54\xf6\x36\xb9\x28\x82\x47\x65\x7e\xfd\xb2\xb6\x35" "\x6a\x82\xf0\x14\xa1\xe6\xb2\x49\x26\xfd\xd6\x78\x10\xef\x0a\x01\x29\x5c" "\x66\x49\x80\xf2\x05\x7c\xa1\x73\x62\xb0\xa5\x88\x8c\x23\xac\x21\x84\x2f" "\x93\x1a\x7d\x57\xcd\xee\xa7\x3c\x48\x48\xc6\xc1\xcc\xe2\x0b\xe9\x79\xfa" "\xa6\x11\xf8\x65\x09\xce\x03\x1f\xb4\x10\x2a\x0f\xd3\x0b\xea\x4f\x4f\x84" "\x0c\x75\xd2\x38\x36\x2a\x2c\x4f\x8d\xe1\x6e\x81\x73\x3c\xa9\x01\x19\xf8" "\xc1\xae\x14\x8b\x18\x4d\x0b\x11\x36\x85\x59\x40\x88\xad\x8a\x94\x74\x55" "\xdc\xfb\x78\x2f\x8b\xeb\x69\xe2\x55\xdb\xed\x46\xae\x2e\xe6\xf0\x94\x16" "\x8a\x52\x50\x1f\xc6\x8e\xd6\x69\xfa\xc3\x90\xcd\x93\x20\xba\x16\xd6\x9c" "\x86\xd6\xf6\x42\xae\xa8\x36\xbb\x1d\x7c\x14\x59\x3f\x15\xd8\xd3\x3d\x45" "\x2d\x8c\x87\x00\x3d\x7a\xda\x19\x95\xe2\xb4\x3f\x78\x8b\x4a\xb0\x0e\xc6" "\xf5\x88\x69\x96\x8f\x09\x82\x18\xa3\xca\x21\xa6\xf3\x69\xd4\x7a\x14\xcd" "\x3d\xe7\xde\x83\x57\x90\x2e\x8e\xcf\xb5\xf2\xe6\xbe\xb5\xd3\xd3\x2a\x6a" "\x62\x24\xfe\x3d\x6d\xc5\xc0\x6e\xb1\x17\xaf\x0a\xb3\x96\xac\xfc\xae\x58" "\xb2\xb1\xb9\x98\x1c\xc7\x1c\xc1\xcd\xe0\x74\x91\xb6\xb6\xd9\x7e\x04\xc1" "\x0f\xf2\x16\x39\x3d\xd2\x87\x37\xd3\x1c\x8f\x2c\xc9\xeb\xe1\x61\xb9\x6d" "\x40\x70\x88\xb2\xbc\x45\x6c\x33\x1b\x67\x6a\x0d\x7d\xca\x3d\xf7\xf7\x08" "\x06\x97\xd1\x54\xfa\x14\xf3\x51\xfd\x46\x7e\x30\xb4\xac\x3f\x4e\xb7\xb4" "\xad\xfb\x17\x3f\xf2\x05\x94\xcf\xe5\x39\xc7\x75\xc4\x27\x57\x95\xd5\x47" "\x82\xba\xe4\xb5\x9c\xc6\x4a\x45\x74\x0f\xf7\x3d\x21\xf5\xd6\xcf\x39\xe1" "\x0b\xae\x4f\xbc\x48\xac\x77\x99\x02\x37\x96\xd7\x40\x8f\xf9\x22\x0a\x07" "\xa4\x95\x52\xb1\x8c\x5e\x35\xf9\x80\x82\x29\x7d\x2b\x4a\x09\x32\xe4\xd2" "\x24\xc6\x80\x7d\x49\xbf\x9b\x5d\xe2\xef\xf1\xa8\x13\x0d\xa5\x61\x24\xec" "\xb5\x50\x92\x41\xfe\x95\xbe\x11\xeb\x0d\xf0\x66\xf5\xf8\x19\xbc\x7d\xb0" "\xf1\xee\x90\xea\x0a\xaf\x4c\xa4\x45\x8a\xe7\xb5\x10\x5d\x57\x4d\xe0\x28" "\xc8\x27\x14\xad\x0d\x53\xbf\xc8\xff\xab\x31\xc5\x77\x62\xb3\x8e\x43\x3d" "\x69\x91\xd8\x3b\xa5\x61\x61\x62\xe2\x7e\x8a\xc1\x22\xc1\x45\x54\x7c\x4a" "\xbe\x18\x26\x0c\x6d\x32\xc7\x55\xa4\x43\x90\xed\x41\x24\x1e\xf3\x75\xe1" "\xf5\xa4\x31\x12\x63\x88\x1a\x02\xda\xe7\x1f\x83\x72\x06\x41\x3f\xc3\x7d" "\xdf\x40\xa9\xbb\x72\x25\x6d\x16\x25\xee\x0b\x94\xc1\xc5\x71\x58\x09\xbd" "\xb2\x42\x24\xcd\x06\x98\xa5\x80\x2a\x83\xe2\x32\x8d\xfa\x22\xb8\x0e\x31" "\xb9\xa5\xc7\xdc\x2f\xe0\xc6\x85\x45\x90\x53\x68\x80\x6c\x30\x83\x34\xc1" "\x94\x80\x3e\xed\x4a\x24\xa9\x6b\xc5\x02\x1b\x83\x7a\x29\x3d\xde\x7b\xa2" "\x2b\x9e\xd2\x73\x69\xb3\x58\x4d\xed\xa6\x48\x9b\xd1\xb3\xfa\x29\x25\xbe" "\xea\xcb\x7d\x3b\xe3\x67\xfd\x01\x45\x47\xf8\x2b\x45\x61\xc0\x12\x09\x78" "\xb6\xec\x2b\x32\xac\x26\x34\x58\x9b\x81\x9a\x2c\x94\xfd\x20\xc0\x81\xfe" "\x9e\xac\x7b\x07\x45\xf7\x3a\x19\x81\xe2\x1b\x05\xb1\xbd\x97\xa9\xa1\xd7" "\x21\x8c\x0e\x6d\x0e\x47\x3e\x15\xa1\xa7\x46\x5c\xea\x98\xba\x0c\x72\xaf" "\x2f\x27\x0b\x6a\x61\xbc\x51\xd1\xa0\xa9\x60\x3b\x91\xfc\xdc\xc7\x31\x4f" "\xe7\xaa\x00\x7e\xcf\xfe\x6c\x7e\xeb\xf5\xa6\x5e\x82\xa9\x63\x25\xe8\x6f" "\x9a\xec\x39\xfe\xac\x6e\xee\x95\x01\x49\x5c\x74\x00\x0e\xc1\xf0\x92\x3e" "\x79\xad\x1f\xbf\x6d\xc5\x81\x53\x90\x47\x53\x77\x94\x15\x14\x73\xe0\x0b" "\xe3\x53\xb3\xb8\xdb\xb6\xda\x00\x53\x82\x6c\x7b\xdf\x16\xc4\x38\x67\xcc" "\x9c\xab\x9d\x12\x20\x46\x6c\xa2\x9e\xf2\xd6\x17\x2c\x4c\x0f\xf9\x06\x7e" "\xba\x9d\x97\x75\x22\x5e\xfa\xea\xb1\xb8\xc6\x34\xb4\x00\x1d\x2a\x5c\x01" "\x62\x8b\xd5\x55\x0c\x45\x73\xfa\x01\x7a\xfa\x3f\x50\x1f\x1a\x6b\x7d\x7a" "\x48\x3d\xc0\x88\x5a\xb9\xc2\xee\x95\x9a\x59\x6f\xfb\xb6\x8c\x7e\xa9\x9e" "\x48\xf4\x30\x46\x97\xed\xf7\xfd\xba\x55\x67\x73\x5a\xce\x34\x33\xc1\x5a" "\xa5\x98\x63\xf8\x7e\x46\x05\x20\x6a\x31\xcc\xf2\x68\x58\x8d\xe7\xed\x37" "\xfc\xac\xf6\xbd\xe8\x0c\x68\xad\x53\xde\x63\xfe\xb4\x39\x9c\xce\x13\x7c" "\x57\x76\xab\xd1\x53\x95\x40\x2a\xf0\x72\x50\x93\x8a\xa1\xc4\x66\x51\x1b" "\xd5\x75\x4f\x9c\xf2\xf9\x38\xfa\xa3\x7a\x68\x39\x96\xc8\x01\xc8\xfc\x8a" "\xae\x36\xa7\x06\xc5\xd6\xe2\xd3\x6e\x96\xab\x77\xee\xc8\x17\xce\x4d\x56" "\xd2\xbc\xf5\xa4\x37\x02\xa8\x83\xb1\x27\xa1\xda\x8b\x6c\xea\xe1\xb8\x25" "\x73\xa9\xe9\xe9\xe2\x97\x56\x0f\x8d\x65\xa1\xf5\xfd\x4b\xf3\xd4\x5a\xf0" "\x84\x1e\x69\x1b\x6e\x63\x7b\xd8\xb9\xf7\xc8\xe5\x1b\x81\x3b\x81\x8b\x0b" "\xaf\x2d\x9c\x5c\x9d\x11\x67\x81\xd3\x27\xb4\xb4\x33\x09\xc7\x26\x56\x12" "\x08\x9f\x1d\xce\x60\xa4\x1f\xd0\xaf\xf4\xbc\xd1\x33\x5d\x69\x6f\x01\xce" "\xe7\xb3\x71\xe1\x35\x84\xc7\x31\xa3\xc3\xef\x7e\x1b\x9f\x3f\x41\xf9\x1c" "\x4d\xc6\x47\xb9\x48\xc9\x3a\x99\xc1\xae\x79\xf5\xf5\x30\xc6\x8c\x3c\xc2" "\x8b\xbd", 8192)); NONFAILING(syz_fuse_handle_req(/*fd=*/-1, /*buf=*/0x200000004340, /*len=*/0x2000, /*res=*/0)); // lchown arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // uid: uid (resource) // gid: gid (resource) // ] NONFAILING(memcpy((void*)0x2000000004c0, "./file1\000", 8)); syscall(__NR_lchown, /*file=*/0x2000000004c0ul, /*uid=*/r[2], /*gid=*/0); // mount_setattr arguments: [ // dfd: fd_dir (resource) // filename: nil // flags: mount_setattr_flags = 0x0 (8 bytes) // args: nil // size: bytesize = 0x0 (8 bytes) // ] syscall(__NR_mount_setattr, /*dfd=*/(intptr_t)-1, /*filename=*/0ul, /*flags=*/0ul, /*args=*/0ul, /*size=*/0ul); close_fds(); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000, /*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=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); setup_sysctl(); const char* reason; (void)reason; if ((reason = setup_binfmt_misc())) { fprintf(stderr, "reproducer setup failed: binfmt_misc: %s\n", reason); exit(1); } if ((reason = setup_usb())) { fprintf(stderr, "reproducer setup failed: USB injection: %s\n", reason); exit(1); } install_segv_handler(); use_temporary_dir(); do_sandbox_none(); return 0; }