// https://syzkaller.appspot.com/bug?id=ed5b04b197a75b50bec2147db6489cd90bbd6581 // 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 #include #include #include 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 sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } 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 void netlink_add_device_impl(struct nlmsg* nlmsg, const char* type, const char* name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); 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_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); 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); 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_done(nlmsg); 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); 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); 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); 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); 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); 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); 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 initialize_tun(void) { tunfd = open("/dev/net/tun", O_RDWR | O_NONBLOCK); if (tunfd == -1) { printf("tun: can't open /dev/net/tun: please enable CONFIG_TUN=y\n"); printf("otherwise fuzzing or reproducing might not work as intended\n"); return; } const int kTunFd = 200; if (dup2(tunfd, kTunFd) < 0) exit(1); close(tunfd); tunfd = kTunFd; struct ifreq ifr; memset(&ifr, 0, sizeof(ifr)); strncpy(ifr.ifr_name, TUN_IFACE, IFNAMSIZ); ifr.ifr_flags = IFF_TAP | IFF_NO_PI; if (ioctl(tunfd, TUNSETIFF, (void*)&ifr) < 0) { exit(1); } char sysctl[64]; sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/accept_dad", TUN_IFACE); write_file(sysctl, "0"); sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/router_solicitations", TUN_IFACE); write_file(sysctl, "0"); int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); netlink_add_addr4(&nlmsg, sock, TUN_IFACE, LOCAL_IPV4); netlink_add_addr6(&nlmsg, sock, TUN_IFACE, LOCAL_IPV6); uint64_t macaddr = REMOTE_MAC; struct in_addr in_addr; inet_pton(AF_INET, REMOTE_IPV4, &in_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in_addr, sizeof(in_addr), &macaddr, ETH_ALEN); struct in6_addr in6_addr; inet_pton(AF_INET6, REMOTE_IPV6, &in6_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in6_addr, sizeof(in6_addr), &macaddr, ETH_ALEN); macaddr = LOCAL_MAC; netlink_device_change(&nlmsg, sock, TUN_IFACE, true, 0, &macaddr, ETH_ALEN, NULL); close(sock); } #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 WIFI_INITIAL_DEVICE_COUNT 2 #define WIFI_MAC_BASE \ { \ 0x08, 0x02, 0x11, 0x00, 0x00, 0x00 \ } #define WIFI_IBSS_BSSID \ { \ 0x50, 0x50, 0x50, 0x50, 0x50, 0x50 \ } #define WIFI_IBSS_SSID \ { \ 0x10, 0x10, 0x10, 0x10, 0x10, 0x10 \ } #define WIFI_DEFAULT_FREQUENCY 2412 #define WIFI_DEFAULT_SIGNAL 0 #define WIFI_DEFAULT_RX_RATE 1 #define HWSIM_CMD_REGISTER 1 #define HWSIM_CMD_FRAME 2 #define HWSIM_CMD_NEW_RADIO 4 #define HWSIM_ATTR_SUPPORT_P2P_DEVICE 14 #define HWSIM_ATTR_PERM_ADDR 22 #define IF_OPER_UP 6 struct join_ibss_props { int wiphy_freq; bool wiphy_freq_fixed; uint8_t* mac; uint8_t* ssid; int ssid_len; }; static int set_interface_state(const char* interface_name, int on) { struct ifreq ifr; int sock = socket(AF_INET, SOCK_DGRAM, 0); if (sock < 0) { return -1; } memset(&ifr, 0, sizeof(ifr)); strcpy(ifr.ifr_name, interface_name); int ret = ioctl(sock, SIOCGIFFLAGS, &ifr); if (ret < 0) { close(sock); return -1; } if (on) ifr.ifr_flags |= IFF_UP; else ifr.ifr_flags &= ~IFF_UP; ret = ioctl(sock, SIOCSIFFLAGS, &ifr); close(sock); if (ret < 0) { return -1; } return 0; } static int nl80211_set_interface(struct nlmsg* nlmsg, int sock, int nl80211_family, uint32_t ifindex, uint32_t iftype) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL80211_CMD_SET_INTERFACE; netlink_init(nlmsg, nl80211_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, NL80211_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(nlmsg, NL80211_ATTR_IFTYPE, &iftype, sizeof(iftype)); int err = netlink_send(nlmsg, sock); if (err < 0) { } return err; } static int nl80211_join_ibss(struct nlmsg* nlmsg, int sock, int nl80211_family, uint32_t ifindex, struct join_ibss_props* props) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL80211_CMD_JOIN_IBSS; netlink_init(nlmsg, nl80211_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, NL80211_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(nlmsg, NL80211_ATTR_SSID, props->ssid, props->ssid_len); netlink_attr(nlmsg, NL80211_ATTR_WIPHY_FREQ, &(props->wiphy_freq), sizeof(props->wiphy_freq)); if (props->mac) netlink_attr(nlmsg, NL80211_ATTR_MAC, props->mac, ETH_ALEN); if (props->wiphy_freq_fixed) netlink_attr(nlmsg, NL80211_ATTR_FREQ_FIXED, NULL, 0); int err = netlink_send(nlmsg, sock); if (err < 0) { } return err; } static int get_ifla_operstate(struct nlmsg* nlmsg, int ifindex) { struct ifinfomsg info; memset(&info, 0, sizeof(info)); info.ifi_family = AF_UNSPEC; info.ifi_index = ifindex; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) { return -1; } netlink_init(nlmsg, RTM_GETLINK, 0, &info, sizeof(info)); int n; int err = netlink_send_ext(nlmsg, sock, RTM_NEWLINK, &n, true); close(sock); if (err) { return -1; } struct rtattr* attr = IFLA_RTA(NLMSG_DATA(nlmsg->buf)); for (; RTA_OK(attr, n); attr = RTA_NEXT(attr, n)) { if (attr->rta_type == IFLA_OPERSTATE) return *((int32_t*)RTA_DATA(attr)); } return -1; } static int await_ifla_operstate(struct nlmsg* nlmsg, char* interface, int operstate) { int ifindex = if_nametoindex(interface); while (true) { usleep(1000); int ret = get_ifla_operstate(nlmsg, ifindex); if (ret < 0) return ret; if (ret == operstate) return 0; } return 0; } static int nl80211_setup_ibss_interface(struct nlmsg* nlmsg, int sock, int nl80211_family_id, char* interface, struct join_ibss_props* ibss_props) { int ifindex = if_nametoindex(interface); if (ifindex == 0) { return -1; } int ret = nl80211_set_interface(nlmsg, sock, nl80211_family_id, ifindex, NL80211_IFTYPE_ADHOC); if (ret < 0) { return -1; } ret = set_interface_state(interface, 1); if (ret < 0) { return -1; } ret = nl80211_join_ibss(nlmsg, sock, nl80211_family_id, ifindex, ibss_props); if (ret < 0) { return -1; } return 0; } static int hwsim80211_create_device(struct nlmsg* nlmsg, int sock, int hwsim_family, uint8_t mac_addr[ETH_ALEN]) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = HWSIM_CMD_NEW_RADIO; netlink_init(nlmsg, hwsim_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, HWSIM_ATTR_SUPPORT_P2P_DEVICE, NULL, 0); netlink_attr(nlmsg, HWSIM_ATTR_PERM_ADDR, mac_addr, ETH_ALEN); int err = netlink_send(nlmsg, sock); if (err < 0) { } return err; } static void initialize_wifi_devices(void) { int rfkill = open("/dev/rfkill", O_RDWR); if (rfkill == -1) { if (errno != ENOENT && errno != EACCES) exit(1); } else { struct rfkill_event event = {0}; event.type = RFKILL_TYPE_ALL; event.op = RFKILL_OP_CHANGE_ALL; if (write(rfkill, &event, sizeof(event)) != (ssize_t)(sizeof(event))) exit(1); close(rfkill); } uint8_t mac_addr[6] = WIFI_MAC_BASE; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock < 0) { return; } int hwsim_family_id = netlink_query_family_id(&nlmsg, sock, "MAC80211_HWSIM", true); int nl80211_family_id = netlink_query_family_id(&nlmsg, sock, "nl80211", true); uint8_t ssid[] = WIFI_IBSS_SSID; uint8_t bssid[] = WIFI_IBSS_BSSID; struct join_ibss_props ibss_props = {.wiphy_freq = WIFI_DEFAULT_FREQUENCY, .wiphy_freq_fixed = true, .mac = bssid, .ssid = ssid, .ssid_len = sizeof(ssid)}; for (int device_id = 0; device_id < WIFI_INITIAL_DEVICE_COUNT; device_id++) { mac_addr[5] = device_id; int ret = hwsim80211_create_device(&nlmsg, sock, hwsim_family_id, mac_addr); if (ret < 0) exit(1); char interface[6] = "wlan0"; interface[4] += device_id; if (nl80211_setup_ibss_interface(&nlmsg, sock, nl80211_family_id, interface, &ibss_props) < 0) exit(1); } for (int device_id = 0; device_id < WIFI_INITIAL_DEVICE_COUNT; device_id++) { char interface[6] = "wlan0"; interface[4] += device_id; int ret = await_ifla_operstate(&nlmsg, interface, IF_OPER_UP); if (ret < 0) exit(1); } 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) { char buf[16]; sprintf(buf, "%u %u", addr, port_count); if (write_file("/sys/bus/netdevsim/new_device", buf)) { 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"}, {"netdevsim", netdevsim}, {"veth", 0}, {"xfrm", "xfrm0"}, {"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_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 #define BTPROTO_HCI 1 #define ACL_LINK 1 #define SCAN_PAGE 2 typedef struct { uint8_t b[6]; } __attribute__((packed)) bdaddr_t; #define HCI_COMMAND_PKT 1 #define HCI_EVENT_PKT 4 #define HCI_VENDOR_PKT 0xff struct hci_command_hdr { uint16_t opcode; uint8_t plen; } __attribute__((packed)); struct hci_event_hdr { uint8_t evt; uint8_t plen; } __attribute__((packed)); #define HCI_EV_CONN_COMPLETE 0x03 struct hci_ev_conn_complete { uint8_t status; uint16_t handle; bdaddr_t bdaddr; uint8_t link_type; uint8_t encr_mode; } __attribute__((packed)); #define HCI_EV_CONN_REQUEST 0x04 struct hci_ev_conn_request { bdaddr_t bdaddr; uint8_t dev_class[3]; uint8_t link_type; } __attribute__((packed)); #define HCI_EV_REMOTE_FEATURES 0x0b struct hci_ev_remote_features { uint8_t status; uint16_t handle; uint8_t features[8]; } __attribute__((packed)); #define HCI_EV_CMD_COMPLETE 0x0e struct hci_ev_cmd_complete { uint8_t ncmd; uint16_t opcode; } __attribute__((packed)); #define HCI_OP_WRITE_SCAN_ENABLE 0x0c1a #define HCI_OP_READ_BUFFER_SIZE 0x1005 struct hci_rp_read_buffer_size { uint8_t status; uint16_t acl_mtu; uint8_t sco_mtu; uint16_t acl_max_pkt; uint16_t sco_max_pkt; } __attribute__((packed)); #define HCI_OP_READ_BD_ADDR 0x1009 struct hci_rp_read_bd_addr { uint8_t status; bdaddr_t bdaddr; } __attribute__((packed)); #define HCI_EV_LE_META 0x3e struct hci_ev_le_meta { uint8_t subevent; } __attribute__((packed)); #define HCI_EV_LE_CONN_COMPLETE 0x01 struct hci_ev_le_conn_complete { uint8_t status; uint16_t handle; uint8_t role; uint8_t bdaddr_type; bdaddr_t bdaddr; uint16_t interval; uint16_t latency; uint16_t supervision_timeout; uint8_t clk_accurancy; } __attribute__((packed)); struct hci_dev_req { uint16_t dev_id; uint32_t dev_opt; }; struct vhci_vendor_pkt { uint8_t type; uint8_t opcode; uint16_t id; }; #define HCIDEVUP _IOW('H', 201, int) #define HCISETSCAN _IOW('H', 221, int) static int vhci_fd = -1; static void rfkill_unblock_all() { int fd = open("/dev/rfkill", O_WRONLY); if (fd < 0) exit(1); struct rfkill_event event = {0}; event.idx = 0; event.type = RFKILL_TYPE_ALL; event.op = RFKILL_OP_CHANGE_ALL; event.soft = 0; event.hard = 0; if (write(fd, &event, sizeof(event)) < 0) exit(1); close(fd); } static void hci_send_event_packet(int fd, uint8_t evt, void* data, size_t data_len) { struct iovec iv[3]; struct hci_event_hdr hdr; hdr.evt = evt; hdr.plen = data_len; uint8_t type = HCI_EVENT_PKT; iv[0].iov_base = &type; iv[0].iov_len = sizeof(type); iv[1].iov_base = &hdr; iv[1].iov_len = sizeof(hdr); iv[2].iov_base = data; iv[2].iov_len = data_len; if (writev(fd, iv, sizeof(iv) / sizeof(struct iovec)) < 0) exit(1); } static void hci_send_event_cmd_complete(int fd, uint16_t opcode, void* data, size_t data_len) { struct iovec iv[4]; struct hci_event_hdr hdr; hdr.evt = HCI_EV_CMD_COMPLETE; hdr.plen = sizeof(struct hci_ev_cmd_complete) + data_len; struct hci_ev_cmd_complete evt_hdr; evt_hdr.ncmd = 1; evt_hdr.opcode = opcode; uint8_t type = HCI_EVENT_PKT; iv[0].iov_base = &type; iv[0].iov_len = sizeof(type); iv[1].iov_base = &hdr; iv[1].iov_len = sizeof(hdr); iv[2].iov_base = &evt_hdr; iv[2].iov_len = sizeof(evt_hdr); iv[3].iov_base = data; iv[3].iov_len = data_len; if (writev(fd, iv, sizeof(iv) / sizeof(struct iovec)) < 0) exit(1); } static bool process_command_pkt(int fd, char* buf, ssize_t buf_size) { struct hci_command_hdr* hdr = (struct hci_command_hdr*)buf; if (buf_size < (ssize_t)sizeof(struct hci_command_hdr) || hdr->plen != buf_size - sizeof(struct hci_command_hdr)) exit(1); switch (hdr->opcode) { case HCI_OP_WRITE_SCAN_ENABLE: { uint8_t status = 0; hci_send_event_cmd_complete(fd, hdr->opcode, &status, sizeof(status)); return true; } case HCI_OP_READ_BD_ADDR: { struct hci_rp_read_bd_addr rp = {0}; rp.status = 0; memset(&rp.bdaddr, 0xaa, 6); hci_send_event_cmd_complete(fd, hdr->opcode, &rp, sizeof(rp)); return false; } case HCI_OP_READ_BUFFER_SIZE: { struct hci_rp_read_buffer_size rp = {0}; rp.status = 0; rp.acl_mtu = 1021; rp.sco_mtu = 96; rp.acl_max_pkt = 4; rp.sco_max_pkt = 6; hci_send_event_cmd_complete(fd, hdr->opcode, &rp, sizeof(rp)); return false; } } char dummy[0xf9] = {0}; hci_send_event_cmd_complete(fd, hdr->opcode, dummy, sizeof(dummy)); return false; } static void* event_thread(void* arg) { while (1) { char buf[1024] = {0}; ssize_t buf_size = read(vhci_fd, buf, sizeof(buf)); if (buf_size < 0) exit(1); if (buf_size > 0 && buf[0] == HCI_COMMAND_PKT) { if (process_command_pkt(vhci_fd, buf + 1, buf_size - 1)) break; } } return NULL; } #define HCI_HANDLE_1 200 #define HCI_HANDLE_2 201 static void initialize_vhci() { int hci_sock = socket(AF_BLUETOOTH, SOCK_RAW, BTPROTO_HCI); if (hci_sock < 0) exit(1); vhci_fd = open("/dev/vhci", O_RDWR); if (vhci_fd == -1) exit(1); const int kVhciFd = 202; if (dup2(vhci_fd, kVhciFd) < 0) exit(1); close(vhci_fd); vhci_fd = kVhciFd; struct vhci_vendor_pkt vendor_pkt; if (read(vhci_fd, &vendor_pkt, sizeof(vendor_pkt)) != sizeof(vendor_pkt)) exit(1); if (vendor_pkt.type != HCI_VENDOR_PKT) exit(1); pthread_t th; if (pthread_create(&th, NULL, event_thread, NULL)) exit(1); int ret = ioctl(hci_sock, HCIDEVUP, vendor_pkt.id); if (ret) { if (errno == ERFKILL) { rfkill_unblock_all(); ret = ioctl(hci_sock, HCIDEVUP, vendor_pkt.id); } if (ret && errno != EALREADY) exit(1); } struct hci_dev_req dr = {0}; dr.dev_id = vendor_pkt.id; dr.dev_opt = SCAN_PAGE; if (ioctl(hci_sock, HCISETSCAN, &dr)) exit(1); struct hci_ev_conn_request request; memset(&request, 0, sizeof(request)); memset(&request.bdaddr, 0xaa, 6); *(uint8_t*)&request.bdaddr.b[5] = 0x10; request.link_type = ACL_LINK; hci_send_event_packet(vhci_fd, HCI_EV_CONN_REQUEST, &request, sizeof(request)); struct hci_ev_conn_complete complete; memset(&complete, 0, sizeof(complete)); complete.status = 0; complete.handle = HCI_HANDLE_1; memset(&complete.bdaddr, 0xaa, 6); *(uint8_t*)&complete.bdaddr.b[5] = 0x10; complete.link_type = ACL_LINK; complete.encr_mode = 0; hci_send_event_packet(vhci_fd, HCI_EV_CONN_COMPLETE, &complete, sizeof(complete)); struct hci_ev_remote_features features; memset(&features, 0, sizeof(features)); features.status = 0; features.handle = HCI_HANDLE_1; hci_send_event_packet(vhci_fd, HCI_EV_REMOTE_FEATURES, &features, sizeof(features)); struct { struct hci_ev_le_meta le_meta; struct hci_ev_le_conn_complete le_conn; } le_conn; memset(&le_conn, 0, sizeof(le_conn)); le_conn.le_meta.subevent = HCI_EV_LE_CONN_COMPLETE; memset(&le_conn.le_conn.bdaddr, 0xaa, 6); *(uint8_t*)&le_conn.le_conn.bdaddr.b[5] = 0x11; le_conn.le_conn.role = 1; le_conn.le_conn.handle = HCI_HANDLE_2; hci_send_event_packet(vhci_fd, HCI_EV_LE_META, &le_conn, sizeof(le_conn)); pthread_join(th, NULL); close(hci_sock); } static void setup_common() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setsid(); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 0; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); setup_common(); initialize_vhci(); sandbox_common(); drop_caps(); initialize_netdevices_init(); if (unshare(CLONE_NEWNET)) { } initialize_tun(); initialize_netdevices(); initialize_wifi_devices(); setup_binderfs(); loop(); exit(1); } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static void setup_usb() { if (chmod("/dev/raw-gadget", 0666)) exit(1); } #define NL802154_CMD_SET_SHORT_ADDR 11 #define NL802154_ATTR_IFINDEX 3 #define NL802154_ATTR_SHORT_ADDR 10 static void setup_802154() { int sock_route = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock_route == -1) exit(1); int sock_generic = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock_generic < 0) exit(1); int nl802154_family_id = netlink_query_family_id(&nlmsg, sock_generic, "nl802154", true); for (int i = 0; i < 2; i++) { char devname[] = "wpan0"; devname[strlen(devname) - 1] += i; uint64_t hwaddr = 0xaaaaaaaaaaaa0002 + (i << 8); uint16_t shortaddr = 0xaaa0 + i; int ifindex = if_nametoindex(devname); struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL802154_CMD_SET_SHORT_ADDR; netlink_init(&nlmsg, nl802154_family_id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, NL802154_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(&nlmsg, NL802154_ATTR_SHORT_ADDR, &shortaddr, sizeof(shortaddr)); int err = netlink_send(&nlmsg, sock_generic); if (err < 0) { } netlink_device_change(&nlmsg, sock_route, devname, true, 0, &hwaddr, sizeof(hwaddr), 0); if (i == 0) { netlink_add_device_impl(&nlmsg, "lowpan", "lowpan0"); netlink_done(&nlmsg); netlink_attr(&nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(&nlmsg, sock_route); if (err < 0) { } } } close(sock_route); close(sock_generic); } #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, 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; }; 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; default: return -1; } return fuse_send_response(fd, in_hdr, out_hdr); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void loop(void) { int i, call, thread; for (call = 0; call < 9; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); close_fds(); } uint64_t r[3] = {0xffffffffffffffff, 0x0, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: NONFAILING(memcpy((void*)0x20000000, "./file0\000", 8)); syscall(__NR_creat, 0x20000000ul, 0ul); break; case 1: NONFAILING(memcpy((void*)0x20002080, "/dev/fuse\000", 10)); res = syscall(__NR_openat, 0xffffffffffffff9cul, 0x20002080ul, 0x42ul, 0ul); if (res != -1) r[0] = res; break; case 2: NONFAILING(memcpy((void*)0x20000280, "./file0\000", 8)); NONFAILING(memcpy((void*)0x20002100, "fuse\000", 5)); NONFAILING(memcpy((void*)0x20000180, "fd=", 3)); NONFAILING(sprintf((char*)0x20000183, "0x%016llx", (long long)r[0])); NONFAILING( memcpy((void*)0x20000195, ",rootmode=000000000100000,user_id=", 34)); NONFAILING(sprintf((char*)0x200001b7, "%020llu", (long long)0)); NONFAILING(memcpy((void*)0x200001cb, ",group_id=", 10)); NONFAILING(sprintf((char*)0x200001d5, "%020llu", (long long)0)); syscall(__NR_mount, 0ul, 0x20000280ul, 0x20002100ul, 0ul, 0x20000180ul); break; case 3: res = syscall(__NR_read, r[0], 0x200103c0ul, 0x2020ul); if (res != -1) NONFAILING(r[1] = *(uint64_t*)0x200103c8); break; case 4: NONFAILING(*(uint32_t*)0x20000040 = 0x50); NONFAILING(*(uint32_t*)0x20000044 = 0); NONFAILING(*(uint64_t*)0x20000048 = r[1]); NONFAILING(*(uint32_t*)0x20000050 = 7); NONFAILING(*(uint32_t*)0x20000054 = 0x1f); NONFAILING(*(uint32_t*)0x20000058 = 0); NONFAILING(*(uint32_t*)0x2000005c = 0x10408); NONFAILING(*(uint16_t*)0x20000060 = 0); NONFAILING(*(uint16_t*)0x20000062 = 0); NONFAILING(*(uint32_t*)0x20000064 = 0); NONFAILING(*(uint32_t*)0x20000068 = 0); NONFAILING(*(uint16_t*)0x2000006c = 0); NONFAILING(*(uint16_t*)0x2000006e = 0); NONFAILING(memset((void*)0x20000070, 0, 32)); syscall(__NR_write, r[0], 0x20000040ul, 0x50ul); break; case 5: NONFAILING(memcpy( (void*)0x2000e3c0, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xdc\x4e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xba\x04\x5a\xbc\xd5\xdf\xc6" "\x7d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x81\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x23\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0a\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\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\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\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\x9b\xfd\x66\xee\xa2\x10\x56\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\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\x00\x00\x00\x00" "\x00\x00\x3d\xc1\x50\xf4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\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\x03\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc6\xd9\x00\x00\x00\x00\x00\x00" "\x13\x54\xc4\xb6\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1a\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 8192)); NONFAILING(*(uint64_t*)0x200062c0 = 0); NONFAILING(*(uint64_t*)0x200062c8 = 0); NONFAILING(*(uint64_t*)0x200062d0 = 0); NONFAILING(*(uint64_t*)0x200062d8 = 0); NONFAILING(*(uint64_t*)0x200062e0 = 0); NONFAILING(*(uint64_t*)0x200062e8 = 0); NONFAILING(*(uint64_t*)0x200062f0 = 0); NONFAILING(*(uint64_t*)0x200062f8 = 0); NONFAILING(*(uint64_t*)0x20006300 = 0); NONFAILING(*(uint64_t*)0x20006308 = 0x20006340); NONFAILING(*(uint32_t*)0x20006340 = 0x20); NONFAILING(*(uint32_t*)0x20006344 = 0); NONFAILING(*(uint64_t*)0x20006348 = 0); NONFAILING(*(uint64_t*)0x20006350 = 0); NONFAILING(*(uint32_t*)0x20006358 = 0); NONFAILING(*(uint32_t*)0x2000635c = 0); NONFAILING(*(uint64_t*)0x20006310 = 0); NONFAILING(*(uint64_t*)0x20006318 = 0); NONFAILING(*(uint64_t*)0x20006320 = 0); NONFAILING(*(uint64_t*)0x20006328 = 0); NONFAILING(*(uint64_t*)0x20006330 = 0); NONFAILING(*(uint64_t*)0x20006338 = 0); NONFAILING(syz_fuse_handle_req(r[0], 0x2000e3c0, 0x2000, 0x200062c0)); break; case 6: NONFAILING(memcpy( (void*)0x20004200, "\xa2\x80\x96\xc8\x0a\xbf\x35\x43\xec\xde\x75\x64\xab\xff\x50\x85\xd2" "\x22\x7e\xbc\xb0\xf1\x64\xae\x92\x70\x6a\xd0\xb0\x83\xa3\xf4\x69\xa3" "\xef\xd1\x5b\x49\x21\xe9\xc3\x06\x3b\x98\xb3\x08\x20\x68\xe7\xc3\x19" "\x50\xdd\xe8\x42\xea\xc5\x5d\xf0\xf9\x91\x45\x3c\xad\x62\xa6\x95\x6b" "\x0b\x6f\x7b\x8c\xf4\x9b\x50\x6a\x30\x60\xfe\x11\x27\xec\xa9\x96\x63" "\xad\xe8\xef\xa8\x9e\xe1\x89\xac\xb5\xf3\xb9\x2f\x6b\xc4\xc4\x66\x21" "\xc8\x03\xee\xd0\xd0\xbb\x5f\x32\x38\x48\x70\xed\x08\xf8\x9d\x4f\x74" "\x44\x57\x62\xfb\x99\x71\x5e\x08\x3c\x4c\x92\xa8\x87\x8b\xe1\x9f\xfa" "\xcc\x30\xd0\xf2\xda\x64\xf9\x71\xcd\x40\x56\x31\x63\xad\xc1\x56\x70" "\xec\xf2\x5c\xd3\xad\x96\x13\x89\x67\xc4\xb5\x3a\xd9\xd0\x4b\x51\x93" "\xab\x5f\xb6\x74\xaa\x00\x30\xa9\xd7\x03\xd1\xba\xf8\x10\xce\x89\x7f" "\x96\x91\x21\xf1\x42\x16\x19\x19\xe5\x83\xc2\x75\x67\x1b\x99\x9e\x7f" "\x36\x38\x91\xdf\xdf\xdf\x35\x56\xd0\x1b\x86\xee\x29\xec\xa8\xfc\xcb" "\xfe\xaf\x17\x71\x39\x51\x48\x70\x6c\xc6\xe6\xbe\x7c\xe2\x9f\xc9\xff" "\xef\x06\x1b\x54\x20\x95\x0c\x1a\x52\x5b\xf7\x5a\xd0\x6e\xde\xc5\x15" "\x38\xd1\xc5\xbb\xc7\x7d\xa7\x2d\xc9\x0f\xd9\x99\x89\x36\xff\xfd\xda" "\x24\x27\xe5\xa6\x89\x66\xc7\xe2\x20\x8f\x76\x30\x46\x80\x18\x2e\xc7" "\x30\x07\xe4\x82\xf0\x34\x19\x57\x12\xaf\x92\x2d\xb2\x72\x61\x95\xd9" "\x97\x70\x87\x34\xdb\x9e\x78\x25\xa8\x64\xbe\x00\xb2\xa4\xf8\x00\x88" "\x1f\xc0\x36\x3f\x5e\x61\x83\x98\x45\x4f\x35\xb1\x48\xb4\xcc\xb8\x8d" "\x41\x82\x69\xfa\xc8\x68\xa8\xba\x4a\x2d\x5b\x4f\x06\xa1\xac\x01\xb5" "\xad\x15\x8b\x84\x2e\x05\xad\xca\x22\xc7\x37\x25\x85\xbf\x4c\xe9\x55" "\x60\xb6\xc1\xe0\x21\xa3\xed\x2f\xf7\xbd\x3b\x6b\x3c\x77\x34\xc3\xb6" "\x6d\x7e\x4c\x46\x00\x96\x31\x20\x82\xf8\x9b\x16\xba\xa6\xe7\x38\x14" "\xaa\x60\x92\x57\x80\xcd\x92\xcd\x65\x08\x7e\x26\x0e\xc0\x46\xfc\x36" "\x32\x64\x36\x6a\x9d\xf2\xc8\x49\xc0\x64\x49\x11\x30\x39\x46\xad\xad" "\x54\x45\x21\xce\xb4\x69\xa3\xe1\x93\xec\xc9\xa7\x87\x64\x03\xfa\xc4" "\x61\xa4\xa7\x0d\x61\x93\xb2\x45\x11\x89\xa5\xc5\x12\x0b\x35\x35\xe9" "\xed\xf6\x19\x10\x8a\xf7\xf5\x17\xb5\x8a\xbd\x3f\xa7\xfb\x1a\xb8\x32" "\x21\x34\x30\xd2\xe6\x90\x10\x76\xfb\xa9\xc9\xe1\xac\xc6\xc6\xf4\x8f" "\xf0\xe4\x19\xbb\xc4\x55\x89\x74\x5a\x17\x6f\x52\xa7\x40\x7a\xd5\xe3" "\xdd\x49\xac\xb3\x1b\x47\x86\x28\x06\xf4\x70\x77\xdd\xa0\x49\x05\xe4" "\x5a\x80\xa1\x2c\xbc\xd4\xd2\xdd\x9f\xe6\x6c\x2d\x1f\x99\x39\x4f\xed" "\x8e\xc6\x09\x61\xcd\x2d\xc7\x11\x5a\x96\xec\xe4\x32\xfa\xc8\x6d\x51" "\xbe\xbb\x08\xb9\x5f\x44\x7a\x83\x79\x2f\xe8\x02\x91\xfc\xa7\xb2\x98" "\xc9\x04\x3e\xf2\xc2\x6f\x0f\x7e\x42\x79\x8d\x3f\x54\xc8\x4b\x94\xc2" "\x4c\x76\xc5\x55\xd8\x3e\xcc\x53\xb9\x9b\xb2\x2d\x71\x84\x5e\x5c\xf2" "\x1a\x5b\xa7\xfb\xef\xfe\xb6\x30\x6e\x17\x30\xdb\x14\x56\x1b\x95\x0a" "\x3f\x24\xbc\xfd\x78\xd4\xab\x0d\x97\xde\x80\x54\xbb\x1a\x60\x77\xae" "\x7c\xca\x6e\x45\xd8\x46\xd3\xdf\x82\x29\x8d\x07\x21\x29\x22\x74\x2c" "\xb0\xfa\xca\xc3\xb7\x7e\xdf\xba\xb9\x0e\x9e\xe2\xd4\xf7\xb0\xee\x9b" "\x17\xbb\x11\xec\x5e\x57\x21\x34\x0d\x84\xcb\x6b\xd9\x34\x28\x16\x7e" "\x69\xb4\x77\x59\x17\x25\x57\xac\xda\x31\x3c\x3d\xec\xdf\xc6\xfe\x93" "\x36\xbf\xad\xe4\x59\xf4\x3b\x39\xd0\xf2\x28\x9f\x91\x42\xdb\x28\x0f" "\x4e\xe6\x68\xe6\x50\xe1\x28\x58\xc5\x77\xe1\x2e\x2b\x9a\x57\xee\x66" "\xc8\x34\xbe\x97\x97\x9b\xcb\xe9\x47\x47\xfa\x5d\x8d\x0b\x7d\x3a\x9f" "\x8f\x21\x8d\xf1\xbf\x96\x0f\x82\x84\x29\xa1\xef\xe8\x38\x61\x6b\x18" "\xfa\xf6\x62\x92\x36\xdd\xbd\xed\x43\xa0\x93\xef\xae\x16\x32\x28\xe5" "\xc3\x8f\xd7\x71\x47\x43\xc2\xfc\xca\x47\xe3\x38\x2b\xcf\xb1\xab\x89" "\x3f\xd7\x37\x75\x27\xb4\xec\x43\xf3\xfa\x60\xeb\xd3\x38\x16\x1d\x8d" "\xe7\xca\xd6\x5b\x15\x57\x9e\x4a\xf2\x58\xf5\xfe\x3a\x63\xc2\x63\x7a" "\x15\x70\x32\x07\x02\x9b\x08\x99\xb5\x42\x77\x67\x64\x7b\xae\xf1\x1e" "\x29\x13\x58\xe6\xe5\x4f\x6f\x13\xd3\xd2\xca\x7a\x5e\x79\x69\xe0\x4d" "\x27\x33\xb3\xb9\xab\x82\x2c\x69\xa3\xcf\xac\x09\x73\x84\xde\x50\x71" "\xa9\xb7\x4a\x65\x61\x36\xd5\x5e\xb1\x90\xdf\x08\x74\x7b\x50\x9f\xd6" "\x10\xff\x62\xb4\x95\x0e\xf7\x1c\x93\x4f\xe2\x1a\x48\xa4\x93\x1d\x3d" "\x94\x58\xb4\x15\xf1\x12\xce\xe6\x5c\x66\x0f\x54\x90\xe9\x82\x34\x1d" "\xa1\xc5\x86\x34\xb3\x96\x7c\xa6\xf3\x59\x6d\x20\xcc\x90\xf5\x08\x38" "\x21\x56\xe3\x6f\x16\x53\x90\x93\x24\x0e\xf5\xf2\xaa\x6a\x2c\x0d\xff" "\x2a\x67\xdf\x30\xdc\xf5\x0b\xf6\xe0\xb8\x2a\x3d\x49\xf2\xd5\x32\xa8" "\xdd\xe1\xb3\xce\xef\xcf\x08\x37\x19\x0b\x74\x18\x60\x90\xd1\xc1\x8b" "\x59\x91\x7d\x7e\xfc\xe1\xad\xfb\x23\x8e\xf4\xa7\xb1\xd2\x2c\x4c\xef" "\x09\x32\x02\x21\xde\x88\x3e\x97\xe6\x88\x24\x66\x50\x8d\xe0\x6f\xcd" "\xab\xad\x3b\x74\x1b\xdc\xa2\xcf\xf8\x79\xd5\x7d\xdd\xa5\x2f\x42\xb3" "\xdc\xb8\xa7\x8c\xfc\x05\x82\x6a\xf7\xe4\xff\x15\x59\x60\xff\x84\x91" "\x19\x4f\x4d\x32\x1e\xf1\x95\x99\x0a\xba\xee\xef\xdc\xb8\x52\xd1\xe1" "\xe3\x70\x3f\x31\x73\x85\xa9\x45\x8b\x6c\x2d\xd9\xdb\x83\x0f\x75\x7e" "\xc2\x9c\x99\x39\xfc\x73\x13\xe6\x39\xfe\x48\x5b\xc1\xe4\x1d\xda\xae" "\xf3\xfb\xf1\xf7\xcc\x52\x7c\x8f\xad\x0d\x21\xb8\x08\x24\x82\xca\xad" "\x7b\xee\x44\x0e\x50\x97\x66\x5f\x63\x6c\x3d\xfe\xc8\x2f\x8c\x98\xaf" "\xb6\x24\x3b\xc3\x94\x49\x39\x67\x5a\x59\x42\x77\xd2\x78\xba\x43\x61" "\x46\x1f\x7d\xa5\x2e\x22\x4e\x4c\xe5\xde\xe4\xa4\x67\xbf\x6a\xe9\xf6" "\x7b\x61\xac\x6e\xb0\xa4\x40\x40\x6a\xba\xc2\x01\x6e\xec\x90\x7e\x24" "\x1c\x57\xf5\xf4\x4b\xe4\x72\x90\xfd\x0f\xef\x78\x5f\xf0\x4d\xf3\x81" "\x0c\xcd\x63\x7b\x4d\x97\xa8\x4b\xae\x84\x86\xa3\x6f\x75\xd8\x72\xe6" "\x45\xfe\x46\x62\x59\x69\xfc\x2d\x1f\x03\x2c\x56\xed\x44\xbd\x98\xea" "\x27\xbd\x9b\x6d\xdc\x8e\xb2\xdc\x2e\xc9\xf9\x0f\x2f\x1c\xa1\xbd\x20" "\xe3\x7a\xc5\x8b\x03\xc8\x4c\x87\x2f\x4b\xa4\x73\x10\x65\x49\x86\x64" "\x14\x60\xdf\xdd\x53\x1a\xc6\x2a\x76\xad\x87\xb8\x9c\x10\x3a\xc5\xc9" "\xc2\xe7\xe7\x0c\x66\x44\x7b\x34\x12\xd4\xa1\xe5\xcb\xc3\x0e\x16\x93" "\x95\x05\x11\x6c\x04\xde\x33\xae\x05\x4e\xd3\x66\xde\x8d\x1f\x97\x1c" "\x2d\xe4\x39\x95\x7a\x19\x4e\x22\xa4\x88\xf5\x8d\x7e\xfd\x46\x43\x91" "\x77\xf3\xf3\xc4\x5a\x14\x75\x92\x7e\xec\xd8\x46\xd3\xd2\xe6\xa2\xab" "\x5c\x7f\x8a\xdd\xd9\x90\x62\xc2\xfc\x6b\x27\x2d\x1f\x51\xbb\x8f\x22" "\xf1\xb6\xf8\xbb\x3f\xaf\x8a\xa8\x5e\x5e\xb9\xab\xf7\xdf\x5c\xf8\xf2" "\x62\x67\x32\x38\x08\xb0\x83\x3a\x98\x79\x89\xcb\xe5\x92\x05\xe7\xad" "\x06\x55\x6e\x2d\x1b\x8a\x48\x73\xca\x1c\xbc\xbc\x8d\x43\xab\xc1\x45" "\xfd\x4e\xb8\x32\xe7\xa5\x8a\xb2\xc7\x93\xd0\x03\xce\x7b\x18\x50\xce" "\x45\xeb\x74\x80\x41\x7a\x1e\x9e\xb9\xd3\x9a\x10\x28\xa2\xa0\x4a\x2a" "\xa6\x49\xc0\x98\xc4\xf8\xee\xe5\x14\xdb\x5f\x60\x21\x17\x3b\xb2\x54" "\xb8\xe2\x2b\x15\x0b\x2c\xa0\x1d\xc7\xff\x23\x5d\xb4\x6e\xd7\x8d\x07" "\xf4\x3d\x1a\xda\xb1\x3b\x84\x45\xd1\xb3\x20\x69\xeb\x45\xf9\xd3\x89" "\xfc\xf5\xa3\xf7\xd3\xeb\xe2\x43\xc5\xb1\xfe\x17\xb1\xf5\xa3\xd5\x71" "\xb6\x5f\x21\xb9\xe4\x71\xe8\x18\x17\x25\x54\xdc\x95\x67\x49\xb9\x9c" "\xb7\xa5\xf3\x03\xec\x48\x0d\x71\x94\xa2\xba\x86\xe2\x04\xf0\x6a\xa1" "\xbe\xcd\xdd\xc8\xc4\x90\x82\xc5\x27\xe7\x06\x4a\xc2\xad\x77\xdc\x05" "\x63\x9d\x3d\x2a\x77\x78\xf6\x94\x3e\xd6\x10\x5e\xbf\x6f\x0b\x9e\x94" "\xfd\xdb\xe0\x5c\x23\x6e\xc0\x00\xf4\xd1\xd4\xe4\x96\xb1\x00\x68\x21" "\x1a\xb6\x8a\xda\x4c\x7f\x7a\xc6\x1f\x5f\x5b\xa5\xf1\x81\x0d\x5b\xbe" "\x87\xff\x4f\x83\x56\xaf\x0d\x3f\x68\x2b\xae\xdb\x0a\xd8\xf8\x48\x8b" "\x27\x74\x21\xf0\xa0\x3f\xc5\xe3\x09\x5e\xe3\x4b\xc4\x47\x2d\x8f\x17" "\xe3\xf7\x01\x3c\xf2\xf7\x9f\x5f\xf3\xea\x4b\x6b\xae\x56\xd1\x36\x5a" "\x33\xb0\x9b\xfa\x9a\x49\x63\x23\xf7\xda\x92\x3b\x7e\x29\xdc\xe4\xbe" "\xb8\x10\x35\xf1\x31\x30\x00\x4c\x96\xe5\x6d\x7e\xf6\xca\x6c\x10\x1d" "\x20\xc2\x7a\x21\x8e\x62\x32\x27\xc3\x3c\x9e\x48\x8b\x17\xe7\xae\x9a" "\xc2\x0d\xa8\x24\x05\x01\xf7\xb6\x14\xa1\x73\x0f\x16\x45\x53\xfe\x47" "\x9e\xf1\x49\x86\x6e\x4e\xa4\x72\x96\x81\x42\x84\xa3\xd3\xeb\x7c\xbb" "\x29\x42\x89\xff\xb9\x96\xe0\xeb\x05\x3b\x9c\x16\xe5\x4c\xf2\x67\x83" "\x2e\x3d\x36\x0e\xb1\x96\xed\x51\x30\x56\x30\x22\x33\x09\xea\x97\x21" "\x56\x28\xf0\x1e\xc9\xd3\xea\x48\x09\x64\x18\xd5\xe9\x62\xca\xc5\x06" "\x34\x60\xf0\xa1\x87\x72\xec\x7c\xe6\x6d\x14\xa1\xcc\xe1\x4b\x52\xc4" "\x0b\xbb\xfa\xfc\xcb\xf1\xe7\x6f\x09\xe5\x7f\xf0\x71\x80\x48\xe5\xb9" "\x93\x15\x7a\x6c\xf4\x71\x88\x26\xb1\xe0\x94\x30\x41\x3a\x35\x96\xa1" "\x5c\x4a\x62\x0f\xa8\xc8\xe1\xd1\x66\x3e\x57\x39\xf9\xf7\x90\xdd\xbb" "\x3b\xe0\xe0\x01\x87\xd4\x37\x17\xd6\x59\x24\x24\x67\xd8\x68\x1a\xc1" "\x03\x03\x34\x61\x57\xf8\x94\xd9\x03\x76\x41\x41\x70\x10\xe9\x65\x4c" "\x6a\x5b\x22\x26\x3e\x73\xa5\xa3\x71\x28\xf5\x00\x78\xa9\x80\xc3\x09" "\x30\x32\x1a\xa5\xc5\xe7\x85\x1d\x5d\x39\x2d\xdc\xe3\xa1\x4a\x96\x91" "\x6f\xa8\x42\x1a\xe6\x72\x8f\x37\xf5\xde\x7c\x3e\x98\xfe\xb4\xba\xbd" "\x4e\x1b\xd2\x31\x5d\x59\x5e\x20\x9d\x52\x74\x8f\x70\xad\xc2\x28\x4f" "\xcd\xaa\x6a\xd8\x80\x47\x0d\x2a\x07\x1f\x34\x90\xaa\xf3\x49\x1f\xb6" "\x4b\x45\x47\x41\x9e\x8e\xcc\xdc\x49\x1a\x89\x21\x15\x6c\xb4\x81\x1a" "\xd1\xe6\x65\x14\xa3\x2b\x0b\x31\xb6\x41\x43\x88\x81\xf2\x8c\x1e\x64" "\x61\xb4\xf4\x51\x93\x89\x99\xaf\x67\x1e\x8c\x6a\x5c\xd0\xc0\x72\xa9" "\xfe\x4c\xdb\xef\xe2\x4c\xa6\x16\xf3\xd0\xa1\x5a\xc9\x7c\xca\x83\x5b" "\x1a\x44\x0e\x04\xfa\x28\x34\x0c\x60\x44\x17\x6c\x8e\xcc\x8e\xe0\xd0" "\x33\xd4\x7d\xb8\xa0\xaa\xcf\xa0\xea\xbd\xfa\x1c\x95\x09\xfc\x26\x04" "\x00\x8f\x01\xcb\xaf\xeb\x5b\xd2\xb5\x03\xb8\x09\xed\x67\x23\x40\xb9" "\xa5\x76\x59\x3f\x1e\xf3\x88\x39\x1b\x54\xb6\x05\xe7\xa1\x5b\xef\x7b" "\x13\x45\x62\x7a\x34\xfc\xa5\x77\x38\xb0\xf8\xf4\xf1\x9e\xea\x93\xc9" "\x03\x49\x52\x74\xa4\x42\x5a\x1a\x1c\xc6\xc4\xc6\xe3\x35\xb6\x31\xdf" "\x51\x85\xc9\x5b\x48\x5e\x42\x57\x86\x7b\x53\x47\xa4\x0e\x4e\x14\xdc" "\xc5\x60\xf0\x61\xfd\x4f\xd2\x65\x13\x7d\xc6\x8a\xfd\x54\x8a\xdd\xe7" "\x78\xf1\x33\x0f\x76\x9a\xcb\x1c\xcf\x5d\xa1\x4f\xf6\x99\x2c\x24\xe2" "\x10\xea\x6e\x61\x79\x42\x18\x81\xb8\x03\x39\x3b\xc6\x97\x4e\x37\x10" "\x6c\x5b\x5b\x3b\x5d\x0b\x34\x69\xf8\x96\x9b\xff\xb7\xe4\xce\xb2\xc9" "\x8e\x92\x8e\x74\x36\x64\x92\xd2\x72\x35\xae\x4c\x74\xa2\xf4\x85\x11" "\xae\xea\xa5\x3a\x2b\xea\xfa\x7a\x33\x1b\x50\xe4\x54\xc5\x07\xaf\x1b" "\x63\x35\x0a\x5c\xef\x35\x66\x8a\x5b\x93\x25\x01\x41\x92\x27\x7e\x50" "\x95\x61\x00\x8b\x36\x01\x08\x8f\x79\xd4\x2e\xaa\x8b\x1e\x4a\xe2\x00" "\x0b\x31\x74\x9e\x2b\x80\x94\x31\x2d\xdb\x7f\x3c\x1c\xd6\x25\xef\x88" "\x5c\x11\xfa\x22\xa6\x6e\x37\x4b\x52\xb3\x42\x5e\x0b\x80\x16\x15\x4e" "\x1f\xd8\x47\x13\x39\xe3\x2e\x73\x73\xd6\x3a\xb6\x46\xd8\x93\xfb\xe0" "\x9a\xe0\x7b\x06\x07\x4c\x01\x40\x1e\xa7\x6b\x3c\x38\x2a\x9d\x32\xf2" "\x4f\x93\xc7\x89\x96\x4e\x16\xbc\x42\x06\xec\xd7\x5c\x10\x91\x7a\xb8" "\x4f\xfd\x8d\x6c\xdf\x4c\xd2\x8f\xd9\x03\x75\xff\x28\x51\x8f\x8c\x1a" "\x3b\xef\xc5\x38\xe1\xb9\xe4\x27\xfb\x67\x19\x88\xd2\x9f\x2f\xb2\xfc" "\xd0\x39\xf4\xd3\x41\xc8\x4e\xb4\xd7\xcf\x60\x0d\xda\xba\x88\xbb\x09" "\x4e\x4d\x87\xa1\x41\x91\x80\x14\x9f\x49\x13\x68\xe6\x48\xb6\x99\x85" "\xb0\x5a\xc3\x9a\x4e\xcd\xd3\xc5\x13\x5f\x3a\x5c\x8a\xd7\x79\x2d\xac" "\xb6\x47\x01\x44\xbb\x9e\x67\x80\x5a\x21\x1e\xfb\x3e\xc9\xcc\xaf\x8e" "\x09\x01\x34\x5f\xb1\x9e\x4d\xa5\x79\xe1\xfb\xe8\x6a\x12\x07\xf4\xf1" "\x3c\x34\x36\x00\x9c\x2c\x64\x0b\x7c\xf3\xf8\xb7\x7c\xa7\xbd\x99\x4b" "\xf9\x33\x08\x02\x73\x59\xc6\xdd\x1b\x7d\xb1\xe1\x53\xfc\x08\x21\x96" "\x8e\xf3\x6c\x00\x3b\x6c\x73\xfe\x89\x0f\x4d\xe2\x4f\x5c\x64\x58\xdb" "\xaa\xf3\x81\x9e\xde\xaa\x91\x78\x3c\x3c\xfc\x7e\x77\x36\x89\x23\x62" "\x48\x19\x5c\x7b\xbd\x60\x11\x3f\x24\x76\xfa\x36\x87\x62\x1d\x66\x8d" "\x17\x28\xee\x43\x3d\x2f\x8f\x4d\xb7\x07\x34\x5d\x30\xf1\xe5\x2a\xb8" "\x7a\x2a\x0a\xfd\x54\x7c\x6b\xb0\x65\x00\xf5\x9f\x17\xfa\xcd\xe4\x8f" "\x69\x34\x90\xe2\x24\x94\xb7\x5d\x11\xdf\x1a\x14\x3b\x85\x06\x8d\x14" "\x3e\xf6\xa9\xbb\x59\x37\xa9\xdf\x38\x0c\x89\x48\xf1\xa0\x1e\x96\x75" "\xe1\x84\x09\xed\xb0\xf6\xb9\x60\x5b\x68\xe3\x46\x32\xfc\xce\x47\x2d" "\xc5\x0b\x90\xb0\xf6\xdc\xd5\x79\x31\xf7\x8e\x1e\x88\x61\xa0\xfb\x62" "\xe7\x2b\x0b\xaa\xd6\xf9\xd2\x3c\x1c\xfb\x0f\x19\xb2\x50\x13\xc8\xd9" "\xfc\xd7\x86\xa2\xf6\xf7\x97\x68\xb5\xfb\x39\x8f\x7b\x2b\xaa\x31\xce" "\x81\x56\xd1\xfc\x4a\x46\xc1\xc4\x63\xfd\xf3\x03\x60\xd4\x2a\xee\xd2" "\xef\x11\x61\x1d\x0b\x7f\x65\x4b\xb5\x10\x52\xfd\x4d\xc3\x93\x28\xf8" "\xec\x4c\x58\xbb\xda\x05\xe6\xf1\xb3\xc8\xf6\xd8\xad\xca\x02\x68\xf2" "\x41\x0e\x9a\x4a\x7d\x63\xb6\x61\x60\x06\xd0\xe0\x2f\x6e\xda\xcc\x10" "\xe5\xc5\x4f\xd8\x5f\x15\xa8\xbd\x76\x48\xa2\x93\xf2\x3d\x6a\x69\x9b" "\xd9\xa6\x75\x25\x04\x75\xa7\x3a\x96\xd7\x47\x5e\x4f\xab\xb8\x9f\xb5" "\xe7\xde\x5d\x7a\x34\x79\xaa\x48\x5c\x0b\xef\xc6\x0d\x0a\xc4\xfd\x5a" "\xc6\xdb\xec\xce\xb0\x6c\xad\x86\xe2\x19\xfc\x0c\xe4\x72\x07\x58\x91" "\x78\x11\xa3\x21\x5f\x8d\x13\xe4\x13\xbf\xb6\x4f\xc0\x65\xfc\x42\x1a" "\xed\xe0\xb5\x66\x91\x79\x7d\xac\x42\x8c\x7e\x46\x34\x79\xfa\x59\x1b" "\x90\x72\xc3\x09\xb7\x53\x3e\x42\x7c\x5c\xc1\x1a\x1f\x6c\xf9\xa5\xb9" "\x95\xd3\x28\xd7\x96\xd8\x74\xc5\xb5\x5d\xfc\x12\xa5\x03\x9b\x41\x3c" "\xe3\x19\xcf\x5b\xa1\xf3\x55\xc4\xe0\x71\x7d\x32\x65\x0b\x43\xe1\x80" "\x10\xf3\x7f\x04\x87\x31\x93\x1c\x52\xc4\xf3\x6e\xb9\x69\xdd\xa7\x02" "\xaf\xe9\x6c\x2a\x52\x41\x35\x0a\x67\xba\x2d\x02\x69\x46\x18\x9c\x5e" "\x28\x12\x93\xc9\xa8\xe2\xcf\xf3\x78\x47\x76\xf1\xde\x78\xb9\x17\x10" "\x1b\x54\xe5\xab\x00\xc0\x45\xea\x15\xf2\x8a\x0e\x3f\x50\x99\x62\xcf" "\x8b\xd3\x38\x5d\x85\x25\x07\x37\xea\xe5\xc3\x4e\xce\x86\xb8\x66\x69" "\xc1\x3b\x00\x30\x8a\x3b\x13\xc0\xac\x3c\x83\xff\x26\xfb\x52\xa4\xaa" "\x83\xc1\x23\x3a\x94\x90\xcb\x9c\xa9\x17\xa0\x56\x90\x89\x31\x75\x1b" "\xdd\xb8\x8a\x62\x37\x9a\x71\x33\x95\xf0\x76\x4e\x4a\x39\x3f\xaf\x25" "\x3a\x40\x26\xd0\x47\x22\x70\xe6\x03\x62\x87\xd5\x68\x50\xdf\x17\x51" "\x54\x34\x84\xd6\x5b\x30\x62\x15\x5b\x63\x00\xe0\x02\x42\x41\xc5\x9a" "\x86\x2a\xe7\x69\xc1\xa9\x23\x2a\x2d\x9f\xb2\x47\x05\x17\x7a\x09\xcc" "\xeb\x3e\xef\xbf\x9f\x10\x6f\x67\xe0\x1b\xe1\x4c\xde\xb4\xd2\xfc\x7d" "\x86\x61\xdf\x3e\x75\xde\x5c\xcd\x09\xa7\xe5\x59\xf0\x28\xfb\x98\x37" "\xc6\x21\xea\x00\x45\xb4\xd1\xb6\x79\x06\x7f\x24\x63\x39\xc9\x74\x63" "\x1a\xa7\x13\x4d\x4e\x91\x0e\xfb\x28\xd3\xc4\x89\x29\xce\xf1\xdf\x7e" "\x6c\x73\x66\x87\x62\xd5\x50\x86\xb6\xc5\x9c\x36\xac\x90\x15\x41\x35" "\xfd\x7c\xa4\xe4\x04\x7d\xd0\xaa\x16\x1f\xa9\x82\xd8\xed\xf9\xc0\xcb" "\x96\x66\x47\x7e\x09\x6c\x55\x71\x8f\x6e\x47\x42\x41\x5f\xef\xd4\xf6" "\x96\xd1\xf1\xcc\xd6\x32\x2b\xc1\x94\x96\xdd\xeb\xd3\x62\x82\xa7\xc7" "\x07\xd5\xb4\x41\x13\xe3\x06\x78\xe6\xe3\x3a\xb7\xd3\x4b\xe0\x4a\x59" "\xac\x61\x4d\x6a\x54\x13\x44\x90\x99\x8b\xe0\x26\x36\xfa\x91\x63\x3d" "\x62\x94\x78\x1c\x2b\x9a\x54\xc6\x11\xc0\x04\x5c\xfc\xfe\x81\xf4\x9a" "\xa2\x1b\x29\xd8\x35\xcd\x20\x47\xc8\x54\x48\x6f\xd8\xe6\x5a\x2e\xbf" "\x62\x9f\x7c\xed\x60\x2b\x9d\xd1\x07\xbf\xde\x48\x3e\x5c\x9b\x5c\xbb" "\xa4\xa0\x8c\xdc\xe0\x99\x20\xbd\xa9\x97\x8b\x7f\xc2\xb4\xa8\x9b\xf1" "\x57\x3a\x26\x38\x9e\x52\x09\x0f\xdf\x5d\xcc\xf2\x21\x11\xdc\x8c\x42" "\xfd\x3c\x8c\x47\x70\x92\x89\x53\x98\x08\x6c\xc2\x2c\xca\x66\x52\x69" "\xe1\x93\xfc\x65\x07\x42\xa3\x61\xa4\x4b\x85\x7d\x25\x84\x29\xf7\x01" "\xf2\x2e\x9b\x76\x15\xbc\x3d\xab\x78\xc1\x47\x9a\x41\xcf\x85\x75\xcd" "\xb1\x71\x69\x47\x0b\x34\x7a\xdf\xc0\x3e\x03\xda\xea\x3e\x26\x97\x25" "\xcf\xc7\x2d\xf5\x66\x4b\x9d\xf3\x6d\x2f\x2b\x55\x01\x3b\x71\x13\x3e" "\x0b\x80\x57\x7a\x47\x18\x25\x11\xeb\xb3\x08\xb6\x24\x8d\x45\x7b\xd2" "\xaf\x7b\x28\xe7\x71\x82\xc3\x05\x24\x11\x78\xc4\x12\x4a\xb1\x02\x77" "\x1f\xd5\xa8\xc3\xda\xcb\x87\x75\xde\x88\x13\x01\xd7\x15\x87\xc7\x6b" "\xcf\x0a\x97\xa7\x2a\xd2\x44\xd0\xc4\x2f\xd7\x1a\xce\xec\x32\xdd\x48" "\xbb\x5c\x9a\x95\xb3\x91\x16\x6c\x83\x2a\xc5\xba\xc8\xc7\xca\xe4\xd1" "\x8b\x3f\x7d\x9f\x2e\x47\x82\xfd\xf9\x77\x32\xe3\xd5\x1f\x67\xbb\xb5" "\x7f\x98\x9e\xe0\xd7\x58\x9d\xbd\x0c\x2a\x5c\x63\x84\x0e\x91\x4b\x9d" "\x7d\x72\x0f\xa1\x20\xac\xbf\xfe\xbf\x81\x6b\x58\x8b\x2c\xcc\x05\x2e" "\x7f\xa7\x89\x92\xe0\xea\x39\xdd\x21\xa1\x22\xad\xd4\x11\x95\xf8\xe2" "\xe1\xac\xd7\x77\xc1\xa4\xe8\xef\x43\x62\xfe\xf4\x41\xfe\xb4\xd9\x25" "\x2c\x6b\xfb\xd2\x74\x21\x52\x30\x0a\x32\x02\x77\x76\xe3\x34\x16\x20" "\xd3\xc8\xd9\x36\x5e\x10\xe8\x1a\xdc\xca\x7d\x87\xa0\xe5\x55\xc9\x8a" "\x03\x53\xc6\x92\x55\x7d\x90\xee\x9b\xe3\xfb\xaa\xb7\x66\xab\xf9\x3e" "\x24\x62\x14\x9f\xd9\x9c\x92\xa5\xfc\x58\xd8\x99\xee\x75\x53\x5c\xd1" "\xfe\x13\x86\xc5\xab\x0b\x15\x7c\x21\x02\x03\x9d\x60\x15\x25\x8f\x59" "\xce\xf3\xf1\x5b\x95\x18\x93\xa3\x0a\xe8\x39\xf7\x40\x40\x2a\x30\xb3" "\x4e\x7b\xe7\x37\x96\x28\x64\x03\xc5\xbe\xb0\x85\x3d\x85\x6d\x83\xf1" "\xb0\x0b\x48\x32\x8f\x56\xdc\xb3\x2e\x1f\xaa\xb0\x8a\x34\x35\xb1\x48" "\x2b\xf1\x8b\x21\xc9\x5a\xef\xea\xaf\xa7\xfd\x76\x1c\x7f\x28\xd4\x16" "\xfc\xde\x06\xbf\x7a\xee\x5c\x6e\x9e\xb5\x0e\x55\x87\x42\x53\xba\x3f" "\x1d\x0c\xe2\x50\x5b\x4f\xc7\xc3\xfc\x99\x6b\xfb\xb8\x44\x6b\xaf\xe8" "\x4f\x5b\xea\x94\xbf\xd7\xca\x5a\xea\xf2\x37\xfe\x79\x3b\x66\xe5\xc5" "\x21\xd4\x09\x2e\x4e\x1f\x9b\xde\x1d\xfc\xfe\x53\xfa\x55\x00\x5d\x21" "\xcf\xa8\x33\xa3\x38\xfd\x97\x92\x61\x41\x29\x33\x60\x60\xe1\x0d\x19" "\x11\x86\x20\x70\x76\x1a\xa2\x0c\x29\x02\xeb\x7c\x5a\x35\x5e\xff\x4c" "\xf6\x25\x3d\x71\x02\xa2\xca\x1f\xea\xd4\xc5\x3b\x57\xd5\x76\xd1\x04" "\xc0\x81\x31\x0d\x92\x79\x7e\x4e\x2e\x8c\x26\x9d\x19\x91\x0d\x0d\x4c" "\xed\xf3\x0f\xa2\x8b\xa6\x80\xc0\x01\x37\xf8\x3d\xe9\x40\x62\x42\x29" "\xb6\xa1\x25\xce\x52\x33\xc6\xcf\x4a\x36\x40\xb7\x4f\x58\xf2\x88\xda" "\xd8\x45\x1f\xbe\x37\x64\x1c\x55\x59\xa5\xf3\xca\xf1\x29\x9c\x8b\xfb" "\x23\x07\x23\x65\x22\x78\xfe\x37\x8e\xfd\x8e\x45\x9b\x9d\xa2\x6c\xff" "\xeb\x58\x46\x8a\x63\x01\xdb\xc0\x6d\x71\x3b\xa2\xd8\xd4\x3d\x90\x38" "\xf5\xf2\xdc\x8b\x83\x1b\xa5\x8a\x88\xee\xb5\xb1\x78\x6b\x21\xe3\x98" "\xae\xee\xb7\xc1\xf3\xd6\xf0\x1d\x82\xb3\x94\x78\x62\xfb\x9e\x7c\xbd" "\x7d\xa5\xd0\x4c\x5f\xcd\x34\xda\x28\xd5\x3e\x22\x46\xe3\xac\x1e\x3a" "\x61\x9a\xd1\x74\xef\xa6\x43\x5e\xaa\x0f\xc9\x4d\x61\x07\x99\xce\x01" "\x58\x42\x1d\xce\x04\x63\x06\xeb\x50\x42\x14\x3d\xaa\x33\x6d\x52\x20" "\x6b\x12\x61\x0e\xa6\x38\x9c\xdd\xa4\x9b\xf5\xaf\x1d\x4e\xe4\x2a\xc0" "\x90\xa9\x4a\xe7\xb7\x61\x20\x73\xf3\xa5\xc3\x6a\x22\x05\xed\xa8\x87" "\xf4\x14\x78\xf7\xd2\x0f\x18\x66\x7f\x94\x1f\x71\xee\xbc\xfa\x76\xc1" "\xab\x28\xf2\xa4\x9a\x3b\xd5\x6b\xd3\xf4\xe6\xbd\x07\x9a\xb3\xfe\x2d" "\x94\x78\x22\x36\xe8\x35\x85\xa0\x3e\x52\x90\x7a\xba\xef\x74\x56\xa9" "\x5d\x5d\x3f\x3d\x37\xef\xdc\x03\x5d\xbf\xd7\xc4\x1b\x8b\xa0\xaf\x2d" "\xf8\xad\xf1\xcf\x24\xf7\xff\x0b\xec\xcd\x3d\x26\xbc\x91\xca\xf4\x23" "\x14\xef\x7e\x46\x6f\x74\xe1\x9a\xe0\xdf\x2e\x22\x98\xfc\x2f\x69\x4a" "\x7e\xc1\x34\x63\x20\x35\x58\x5d\x53\x0e\x7e\x19\xf6\x5c\x25\x6f\x00" "\x1d\x75\x38\x2d\x98\x25\xef\x74\x1b\xc2\x13\xaf\x18\x63\x77\xd9\xca" "\x10\xd3\x72\x23\x54\xe1\x89\x7c\xa5\xc2\x3a\xc6\xa5\x2c\x9a\xd0\xe6" "\xb6\x86\xe1\x77\x6f\x7e\xc6\x5d\xf0\x33\xe8\xf4\xd5\xdb\x80\xc1\xbc" "\x35\x40\x93\xb3\x19\xcb\x70\xdf\x93\xd6\x10\x66\x76\x75\x81\x63\x28" "\xc9\x93\x22\xf1\x4e\x63\x6b\x95\xf0\x4e\x64\x97\xf1\x39\xd5\x08\xb4" "\x53\xf5\x3d\xdb\x5c\x28\x9d\x84\x9f\xd5\x40\x7c\x9b\xdc\xef\xd1\x64" "\x2a\xbd\x46\xe2\x8c\xb4\xe9\x43\x71\xbd\xc6\x06\xee\xb6\x7c\x9f\xe1" "\x77\x47\xc6\x8f\x2d\x50\xe8\x27\x11\xda\x4d\x3e\xdb\x0e\xda\x06\xf4" "\x1b\x7f\x93\xfa\x8f\xb4\xd8\x3c\xf2\x1c\x79\xda\x67\x00\x0b\xac\x22" "\x75\x50\x82\x17\xad\xe1\x65\x9f\xa8\xd2\x4e\x5f\x8e\xfb\x9f\x4b\xd2" "\x10\x73\xeb\xef\x3d\x06\x36\x8e\xb0\x3f\xa3\xcf\x0d\x63\x84\x48\xbd" "\x05\x5e\xd2\x0d\x29\x20\x33\xff\xdb\xa5\x38\x55\x9c\x8f\xf9\xa2\xa5" "\xc8\xf8\x3b\x5c\x39\x36\x43\xd6\x58\x5d\x1d\xf9\x94\xc3\xbe\x43\xe7" "\x2b\x8f\x3f\x53\x11\x4d\x2a\x5f\x6b\xce\xdb\x57\x38\x42\xb2\x3b\x6a" "\x3e\xb7\xfc\xa8\x49\x5b\xf0\x3b\xd0\x3f\xde\x7b\x19\xbd\x39\xa1\x6c" "\xec\x49\xe0\x1f\x38\xe6\x71\xaf\x33\xca\xe0\x82\xd9\x78\x8e\x32\x02" "\x79\x9b\xc4\x66\xba\xbe\xc2\x08\x05\x28\xd0\x60\x9c\x0b\x73\x19\x64" "\x71\x90\x93\x73\x5b\x4c\x1e\x73\xbd\x07\x05\x63\x7c\x47\x51\x69\x22" "\x19\x7c\x55\x2b\xae\xaf\x35\x16\xb5\xe3\xbb\xc2\xcd\x1a\xfa\x3e\xf8" "\x21\x51\x96\xed\x58\x0d\x95\x61\x09\x2f\x62\x0b\x89\x7e\x98\xe7\x86" "\xa0\xc7\xcb\xb0\xee\xdd\xa8\x06\x32\x92\xba\x64\x82\x49\x7f\x5f\x6b" "\xb6\x2f\xb5\xab\x4c\x97\xcb\x76\x58\xdc\x65\x79\x71\x8e\xb9\x7b\x54" "\x7f\xcf\x47\xce\xd1\x42\x65\x61\xaf\x93\xa1\x5f\xb4\xdc\x6d\x3d\x93" "\xb8\x68\x64\x49\x43\xc2\xc9\x4b\x23\xb0\x57\x0b\xbb\x81\xdf\x26\x66" "\xc2\x4f\x5a\xbc\xcf\xcd\xd7\x1e\x20\x9f\x3b\xb4\x3c\x01\xd1\x7f\x9b" "\xc8\xb9\xaf\x2c\x26\x76\x2f\xc6\xa7\x41\xa1\x50\xb7\xd1\x18\x6e\x4f" "\x35\x17\x5f\x3c\x31\x52\x43\xe1\xc1\x1e\x92\xc4\x3a\x1f\xc4\x92\xee" "\xf5\xa1\x3c\x77\xa8\x1f\xcf\x51\x4e\xbf\xd0\xf8\xe6\x45\xda\xe1\x5a" "\x07\xe8\x6b\x2f\x01\xfd\xa0\x65\xdb\x45\x05\xa5\xee\xa8\x3c\xb6\x16" "\xf7\x44\xf6\xbe\xe7\x31\xbe\x19\x1c\x65\x44\x9c\x02\x60\x35\x56\xd5" "\xa5\x14\x22\xcf\x9c\x2f\x19\xf8\xd6\x84\x3e\x0c\x10\x91\xe0\x70\x8a" "\xa2\x71\xe9\x1f\x71\xc8\x60\x2b\x9f\xa7\x21\x89\xe0\x36\xb7\xcb\x6a" "\xf1\x56\x9f\x21\x26\x92\x83\xde\x94\xa6\xd7\xfe\x58\x49\xfd\x43\x3d" "\x5b\x71\x9c\x80\x41\x98\x73\xdb\x05\x87\xfc\x29\x78\x6c\xc5\x98\xd8" "\x96\xfb\x16\x36\x0b\xdd\xd2\xce\x12\xe5\x4d\x05\x41\x8f\x4f\x5e\x5f" "\x2d\x7a\xaf\xe9\xfc\xd6\x26\x8c\xbe\x2e\x9e\x63\x29\xff\xb6\xc6\x7f" "\xab\x8f\x3c\xe6\x73\x02\x8c\xc0\x6a\xaa\x6b\x85\x75\x56\xbb\xa3\xb4" "\x4d\x3f\xab\x5b\x6e\x87\x5e\x70\xa2\xf3\xad\x4b\x2f\xf7\x6f\x31\xea" "\xd3\x46\x2d\x38\x01\xba\x37\x3b\x3c\x2f\x54\x5e\x94\xf5\x70\x21\x57" "\x5e\x29\x47\xf8\x1f\x53\x28\x3f\xc0\xa5\x13\x7f\xd4\x4f\xa3\xd0\x74" "\xc9\x2d\xe5\x4a\x0a\x34\x65\xc8\x58\xf5\xa7\xef\x08\x31\x3f\xad\xdb" "\xc3\x66\x3e\x4e\x01\x67\xf3\xcb\xa3\x96\x12\x05\x7a\x75\x18\xfb\xfb" "\x03\x1f\x5a\xd0\xf9\xf7\x58\x31\x97\x3e\xbd\x73\x3b\x82\xe5\x54\xbf" "\x3f\xde\xc8\x4e\x51\xf6\x5d\xab\x60\x28\xc6\xc5\x13\x66\xd9\xd4\x70" "\x0f\xdf\x25\x5e\x4c\x7b\xd7\x07\x66\xe7\xf2\x28\x1b\x3f\x2a\x53\x63" "\xf8\x5c\xe4\x9f\x91\x35\x90\x4d\x14\xbc\xb1\x17\xad\x75\x4c\x25\x94" "\xdc\xdc\xa2\xd3\x0e\x40\xff\x26\x5b\x5a\xcc\xfb\x11\x6f\x64\xed\x99" "\xaa\xd5\x70\xc4\xc5\xa9\x1e\xfd\xbb\x98\x4a\xc6\x51\xd8\x72\x14\x05" "\xa0\x34\x2c\xf7\x7f\x44\x8c\x17\xa1\x52\xea\xbf\x29\xe8\x89\x50\x55" "\x8a\x86\xd0\x07\x4e\x1c\xef\xab\x1e\xb7\xc3\x66\x68\x2f\x68\x6e\xe1" "\x33\x87\x37\xe6\x75\xea\x58\xeb\x8b\x4c\x86\xb9\xf2\x8a\x6f\x6e\x96" "\x45\x9f\x29\xe3\xb4\xdc\x59\xff\x04\x4c\x61\xa0\xdc\xc5\xc3\x1d\x80" "\x3e\x6e\x98\x42\x0e\x44\x62\x29\xcc\xde\xc3\xd0\xf7\x05\xe9\x2f\xfe" "\x01\x6b\xb3\x69\x63\x73\xea\xda\xb7\xf3\x5c\xcf\x65\xab\x4d\x9b\xe0" "\x9a\x08\x5c\xe2\x1b\xbd\x7c\x05\x55\x37\x6e\x4d\x7f\xe6\x8b\x5e\x7a" "\x64\xf4\x8b\x51\x27\x82\x5f\xb2\xbe\x59\x8d\x99\x1f\x9c\x1a\x54\xbf" "\x52\x71\x34\x17\xdc\xc5\x99\xe8\x12\xd8\x55\x13\xa5\x37\xe6\xea\xfa" "\x73\x8e\xdc\x97\x2b\x67\xe0\x65\x59\x5d\x11\x67\x84\x49\xbc\xe6\xcd" "\x3d\x69\x80\x0a\x64\x9b\x56\x0d\x0e\x05\x7c\x50\x2c\xa3\xe7\x2e\x97" "\x82\x08\x29\xec\xfe\xa8\x01\x19\x2c\x3f\x4e\x2c\x87\x63\xc0\x95\xa4" "\x3e\xe6\xfe\x45\xfe\x87\x30\x13\x09\x37\x66\x8d\xf1\xd4\xee\x57\x7a" "\xda\x28\x23\x8b\xe0\x32\x86\x48\x1f\x2d\x2a\x00\x4c\xc4\xd4\x88\x56" "\xe7\x1f\xbd\x64\xf1\xa0\x04\x3a\x45\x20\xec\xbb\xf1\xb3\xab\xdc\x96" "\xb8\x7a\x27\xbe\x84\x95\xa2\x05\x42\x96\x7a\xa4\xcd\x3a\x44\xa1\x15" "\x02\x41\x9a\x08\x3d\x84\xe9\x7a\xbf\xde\x09\x01\xb6\x6d\xde\x48\x38" "\x86\x49\xa0\xed\x6d\x93\xb9\xf2\x0c\x53\x0e\x99\x0c\x7c\x52\x37\x0a" "\x11\x4d\x80\x0d\x6a\xb3\xf6\x68\x7d\x6b\xbc\x10\x5b\x63\x73\x8f\xe0" "\x5f\xa6\xca\xc9\x8a\xd6\x66\x39\x36\xbb\x18\xcb\x92\x32\x64\xe4\x43" "\x12\xc2\x4c\x2c\xe8\xe6\x42\xbb\x73\xc9\x21\x01\x2b\x68\xa2\x6a\x70" "\x97\x74\x46\xb8\xf1\x5f\x9d\x62\x46\x7d\x8b\x35\x65\x60\xc1\x83\xa6" "\xbd\x6c\xd7\x6e\xc8\x68\xc3\xbd\x94\xa5\x95\xcd\x7b\xf9\x96\x75\x5a" "\x50\x8a\x81\x49\x80\xc5\xe5\x88\xb2\x75\x20\x0c\x45\xaf\xd9\x00\xc8" "\xc2\xde\x32\x9e\xc2\x48\x4b\x0e\x3e\xcd\x7b\x09\x60\xe5\xe3\x42\x58" "\x81\xd1\xff\x7f\x8b\xd8\xb2\x0f\x5c\xc9\x8f\xfc\x3a\xcb\x77\xf5\xe8" "\x87\x75\xa4\xbd\x3a\xb9\xf9\xeb\x02\x7e\x27\xd3\xaf\x55\xeb\xdf\x4e" "\xeb\xab\x48\xea\x91\x11\x28\xd6\x68\xd0\x0f\xc3\xf5\xb5\x48\x0a\xa0" "\xd9\xa4\xaf\x56\x3b\xa5\x77\x38\x44\x48\xe5\x42\x51\x57\x13\x3d\x59" "\xe1\xce\xf3\xc7\x22\xf3\x37\x00\xbd\x37\x28\x25\x04\x6b\x1f\xa5\x82" "\x4e\x40\x51\x54\xa3\xaf\x14\x40\xbc\x2b\x75\xac\xfb\xd0\x7c\xf9\x2e" "\x8c\x16\x25\x87\xe7\x4b\x5a\xb6\x6b\x1c\x6a\xea\xb3\xad\x5f\xa3\xee" "\x91\xda\x49\x00\xef\x30\xad\x04\xba\xea\x32\x6d\xf9\x12\x51\x7d\xd9" "\x6e\x16\x96\xb4\xa9\x1f\xaa\x66\x67\x59\x78\xa3\x75\xe8\x1f\x25\x46" "\x4a\x10\x73\xdc\x67\x37\xaf\x08\xd7\xe2\x59\x56\xbb\x31\xd4\x38\x54" "\x8a\x7d\xa3\x86\x62\xd4\x9d\xb8\x12\xa8\xcf\x1d\x6c\xc6\x5f\x5c\x63" "\x87\x9f\xd9\xee\x7f\xd2\xa6\x6c\xa3\xfc\x1a\x76\x8c\xb2\x39\xaa\xb8" "\x8c\x87\x20\x64\x70\xb4\xc6\x05\x92\xaf\xeb\x6d\x69\xed\x97\xa8\xf9" "\x90\x15\x58\x62\xba\x4e\x22\xb6\x48\x04\x14\x2c\x13\x1a\x23\x79\x29" "\x37\xaa\x8a\x86\x96\xe1\x65\xc2\x4d\x76\x92\xa0\x4b\xb4\x47\x1b\x0f" "\x0d\x25\x07\xfe\x7c\x86\x18\x42\x14\x28\xfc\x7a\x0a\xcc\x98\x4c\xa5" "\xcc\x6b\xac\xb7\x72\xe8\xa7\x17\xbb\xaa\x64\x6f\x96\x43\x27\x59\x10" "\xa6\x03\x7a\xfa\xf5\xa8\x06\x78\xd1\x8e\xdd\xa1\x38\xa4\xe1\x3d\x06" "\xd0\x4a\x5d\x06\x43\x1e\xab\x48\x73\x82\x25\xcf\x15\x67\xe9\x60\xe7" "\x65\x72\x8d\xc1\x2e\x91\xb9\x1c\x6f\x2b\x33\xdf\xb6\xe0\x33\xaa\x68" "\xc1\xc2\x33\x4d\x24\x33\x5a\xbc\x4a\x7a\x1d\xf5\x63\x6d\xec\x29\x09" "\x1d\xa5\x4d\x5f\x5a\x1f\xff\x41\xe4\xa3\x5a\x0c\x2f\x04\xf9\x68\xf7" "\xd7\x8e\x2f\x51\xc7\x35\x77\xe2\x19\x2b\xb2\x0f\x28\x9a\xab\xa5\xa1" "\x75\xc2\xed\x53\x38\x55\xbd\x9e\xd9\xa8\x42\xad\x48\x21\x36\xdd\x5e" "\x0c\xf4\x5e\xb5\xe2\xd3\x1f\xf6\x2a\x3b\xe1\xcf\x8a\x94\xa5\x83\x16" "\xe7\x4f\x4a\xb9\xfc\x54\xf3\xa0\xbb\x83\xbe\xef\x0f\x35\x59\x93\xbd" "\xea\x2c\x83\xe6\x1c\xdc\x79\x6b\xf2\x56\x4a\xe5\x1f\xae\x61\x67\x99" "\xe8\x71\x19\x98\xcd\x88\xd3\x5c\xd9\x82\x44\x52\xfd\xd6\x52\x26\x17" "\x4b\x46\x79\x2c\xb8\x7f\x4d\xd2\x82\xe4\xe6\xf6\x7e\xb6\x6d\xa4\x13" "\xad\x87\x7e\xd6\xce\x77\x5f\x7e\x19\xbc\x93\xf4\x8b\xb9\xe5\xec\x04" "\x00\x9d\xe3\xc0\x42\xae\xac\xf7\xf4\xb2\x5a\xd6\xb3\x0e\x01\x73\x03" "\xf6\x4f\xe0\x7a\xc7\x9e\x87\x44\xaa\xb6\x92\x6d\x11\x7f\x13\x51\x3d" "\x04\x69\xce\xf3\x35\xfe\x1d\x0d\x78\x7c\x2d\x0b\x2c\x03\x1a\x95\x21" "\x78\x6a\xc1\x0e\x9f\x8b\x76\x82\x71\x68\x03\x37\xf2\xc3\x26\x2a\xbd" "\xcc\xb5\xd3\x10\x7c\x63\x2b\xf1\xf7\x4c\x83\xee\x91\xf4\x99\x88\x22" "\x2f\xb0\x80\xcc\x8f\xaa\x9b\x1a\x02\x52\x6d\x8b\x60\x87\xe0\xb2\x35" "\x41\x73\xd2\x90\x16\xb3\x30\x95\x87\xc1\x6f\x05\x7d\xd8\x12\xaa\x63" "\xc3\x16\x91\x50\xde\x81\xf3\xaf\x97\xd0\x82\xa8\xf8\xda\x4c\xe4\xf9" "\x09\xff\x64\x98\x21\xd7\xf9\x6d\x97\x61\x35\x52\xe8\xcc\x49\x02\xe0" "\x46\xec\xfa\x32\x9b\x1d\x98\x0f\xf5\xec\xe6\x9b\x8f\x16\x15\xfd\xff" "\x52\x44\xf4\x1c\xec\x0a\xf9\x24\x62\x4a\xe1\x64\x1e\xca\xe5\xfa\x26" "\xc5\xfb\x90\x06\xe5\x71\x00\xee\x71\x37\x7c\xed\x7c\x25\x5a\xe1\x7a" "\x08\x45\xe2\xee\x02\x87\xc6\x2c\x18\x52\xf9\x38\x77\xf9\xf8\x61\x57" "\xca\x96\x75\xd3\x83\xff\xf5\xcd\x6f\x2b\x00\x1e\xc0\x13\x6c\x07\xcf" "\x37\xf5\xac\xe1\x85\x31\x22\xc2\xba\xa1\x09\x2d\x41\x8e\x2a\x49\x0c" "\x4a\x5c\x8f\x56\xb8\x28\xce\x1b\xaf\xee\xf4\xe7\x7f\x09\x5d\x6b\x4e" "\xd9\x9d\x56\xf6\x68\x12\xcb\x19\xbe\x54\x0e\xbe\x5d\x52\xe7\xef\xf2" "\xd6\x9c\xbb\x84\x77\xe1\x15\x14\xf7\xe3\x60\x4b\xf9\x99\x9f\x78\xc2" "\xf1\xca\x6f\x60\xa2\x21\x6b\x87\xfa\x0f\x25\x26\x9c\x42\x5b\x7d\x50" "\x70\x9b\x20\x09\x12\xb3\xb7\x89\x9c\x95\xe1\x2d\x6e\x9c\x4d\xac\xc1" "\x9e\x32\x77\x21\x86\x0e\x04\x77\xa5\x3e\x67\x93\xfb\xb7\xfb\x97\x04" "\xa8\x48\xf3\x95\xf4\x8c\x24\xa6\xe7\x9b\x9e\x13\x58\xcc\x34\x97\x25" "\x1d\xe8\x8b\x8d\x3a\x7b\x22\xc6\xd8\xaf\x1a\x7f\xab\x81\x53\x0d\x9f" "\x0c\xc9\x8f\x62\xde\xbb\x22\x2b\x54\x78\x0d\x89\x79\x42\x38\x53\x27" "\x17\xb4\x47\xd7\x1b\x46\xa6\x0e\xd4\x81\xc2\x1d\xb8\x5b\x59\x0b\x31" "\x72\x00\x09\x69\x5e\xcf\xfd\x4e\xf0\x29\x96\x4e\x5d\x51\x49\x62\x22" "\x33\xac\x01\x3e\x96\x0a\x00\x5c\x92\x4f\x73\xea\x82\xc3\x18\x45\x55" "\x46\xc5\x3d\x74\xaa\x3f\x7e\x2f\xf2\x6a\xa0\x74\xc4\x0a\x55\xab\xa8" "\xb0\x80\x27\xfc\x19\xb5\x96\xee\xc6\xc4\xf8\x9b\xae\x39\xe7\x4b\x9a" "\xad\x88\x34\x4f\x7c\xc5\xad\x3e\xef\xa5\x09\x5f\x2a\xb4\x72\x22\xe9" "\xa3\x57\xec\xd7\x1c\x67\x00\xac\x57\x60\x25\x20\x14\x90\xd9\xe4\x46" "\x60\x3d\xfd\x4b\xda\x76\x17\xdd\x50\x09\x81\xb2\xd2\xab\x8c\x43\x88" "\x2a\x52\x08\x49\x4c\xb3\xf8\xeb\xc7\x20\xbc\xa8\xa7\xcf\x6c\x80\xbd" "\x7a\xaa\xf8\x95\x07\xbb\x34\x12\xea\x49\x0a\x78\x97\x3f\x12\xcc\x30" "\x41\x3e\x9d\xf1\x45\x89\x17\xea\x3d\x68\xb4\x38\xd4\x24\xc1\x31\x4b" "\xc8\xd0\x19\x39\xc5\xa5\xa8\x42\x43\x82\x81\xe6\x2d\x0c\x80\x0d\xee" "\x70\x4b\x2a\x6c\xd3\xe1\xe4\xb8\x85\xa6\xb2\x6b\x89\x4a\x98\x76\x5f" "\xa3\x30\x8c\x9e\x4b\x87\xf9\x36\x25\xfa\xec\xdb\x17\xc2\x9a\x27\xcd" "\x24\x3b\xf6\x03\x0a\x67\x87\x4e\xc9\xf2\x44\x3c\xf8\x15\x42\x61\xac" "\x2a\x83\x4c\x01\xcb\xe1\xf3\x14\xee\x7a\xa3\xca\x55\x2e\x16\x48\xcf" "\x8b\x42\xa6\x3f\x24\x9e\x35\x38\x02\x6e\x09\xe4\x4d\x69\xdc\x25\x9a" "\xdb\x0d\x1a\x0c\xbc\xcb\x5a\x5d\xd5\xd0\xdc\xcc\x90\xd0\x23\xda\x79" "\xd5\x63\x41\x88\xff\x06\x0f\x7e\x35\xa5\xf9\xd7\xad\x99\x54\x68\x24" "\xd6\x39\x75\xd4\x45\x2d\xe8\x76\x09\x3f\x4e\x99\x7d\xc4\x6e\xed\xcd" "\x80\xa9\xee\xbf\x5e\x4f\x07\x7f\xbb\x10\xc7\xd9\xe1\x9a\x34\x19\xe7" "\xb8\x45\x97\x2a\x3b\x62\x61\x3c\x54\x04\xa2\x09\xb1\x6f\xa8\x8e\x0f" "\xf4\x9d\x7b\x4f\x21\xfe\xcc\x1f\x77\x3c\x5b\x4b\xe6\x10\x21\xe0\xca" "\xb8\x60\x2c\x6e\x82\x57\x64\x93\x03\xaa\xea\xfc\xbb\x17\x8e\x7a\x46" "\x0f\xf0\x7f\x21\x9c\x46\xeb\x6f\xe5\xbf\x81\x13\x72\x3e\x45\x40\x03" "\xbd\x70\x77\x67\xc1\x07\xda\xf4\x25\x57\x51\xda\xaf\x8d\xec\xf3\x52" "\x62\x64\x00\x58\x92\x4e\xb6\x58\x78\x68\xb2\xc0\x82\x30\xb3\x17\xe9" "\x73\x96\xeb\xc9\x28\xba\x8d\x27\x4c\xa0\xee\xd0\xbf\xcb\x63\x76\x76" "\x00\x3c\x64\xe8\xc1\xe1\xa0\x42\x0b\x6c\x96\xa4\x42\x26\x06\x1c\xed" "\x41\xb8\x44\x83\x82\xab\xd2\xf3\xd0\xc4\x72\xaf\xcd\xe2\x31\xfb\xc9" "\xee\x90\xc2\xf1\x13\x2f\x8e\x23\x91\x24\x6f\x95\xad\x93\x35\x4c\x74" "\x60\xe2\x0d\xe9\x96\xad\x0f\x61\xb1\x3b\x27\x64\x68\x87\xa6\x37\xce" "\xde\x90\xb9\x4b\x7d\x8c\x31\x30\xf0\xfe\x06\x0e\x8d\x95\x5c\x71\x1a" "\x27\x00\xb3\x02\xa7\x5b\xde\xb3\x2a\x0a\x68\x02\xea\x79\x5c\xb1\x14" "\xf5\xf8\x2a\x1a\x38\x1a\x86\xbb\xff\x88\xb2\x99\xe4\x77\x28\xb7\x46" "\xdf\xf9\x64\xc9\x4c\x52\xb6\x61\xb9\x42\x93\x76\xb1\x32\x0b\x46\x08" "\x14\x26\xb7\xc3\x40\x20\x6d\xc0\xda\x15\x1b\xf8\x4b\xe2\xa4\x9e\x78" "\xb6\xb5\x93\x87\x53\xd2\xb1\xbe\x8d\x9e\x67\xc4\x3c\x5d\x70\xe7\x25" "\x19\xf5\xf9\x0d\x05\x00\xe8\x4e\xe3\x8f\x82\xb1\x91\xac\x4d\x96\x8b" "\x0a\x37\x90\x1f\xd9\x23\xcb\x28\x9d\x58\x56\x93\xac\x3c\x3f\x8a\x94" "\xfc\xa6\xdf\x45\xe6\x94\xe1\x99\xa9\xcd\x0b\x1b\xc1\xfa\x73\x94\xbc" "\xc9\x6a\xae\x67\x0d\xca\x66\x05\xa9\x98\x79\x3b\x7e\x06\x7a\xc4\x10" "\xba\x63\x10\x57\xb8\xb7\x6f\xcb\xe9\x52\x4d\xf8\x20\xc0\x2e\xfe\xf1" "\x60\x8b\x74\x3c\xd2\xaa\x6d\x60\xd3\xd8\xe4\x76\xfa\x12\xd3\xac\xc3" "\x29\xf8\x27\x2b\x08\x7d\x89\x47\x11\x77\xed\x53\x1f\xec\x1f\x9c\x24" "\xa9\x75\xca\x2f\xcd\x8c\x24\x6a\x33\xe2\x91\xa3\xf0\x0b\x7f\x23\x40" "\x52\x06\x7a\x00\x59\xc8\x67\x62\x47\x52\x56\xbb\x5e\x7d\xac\x6f\x12" "\x1a\x09\x25\x50\x6b\x18\x93\x3c\x6e\x31\x49\x15\xd4\xb3\xb2\x13\x0a" "\xaf\xc2\x48\x3e\xf2\x2f\xf8\xbb\x7b\x88\x75\x65\xb1\xbd\x22\xfa\xbc" "\xa2\x20\x37\xd8\xfc\x94\x37\xf6\x75\xc5\x31\x35\x26\x26\x6f\x60\xbb" "\x7c\x7c\x47\xf3\x0c\x7d\x56\x7e\xd1\x42\xea\x5e\xc3\x67\xc4\x29\x83" "\x28\xd2\x0e\x53\x44\xf0\x1c\x0c\x90\xcf\x8a\x63\x02\xf4\xd8\x4b\x6b" "\xa7\x49\x5f\xba\x31\x4a\x05\xba\x29\xb6\x3b\xb6\xd4\x58\xfd\xb0\x5a" "\x44\x11\x13\x69\x58\x30\x9f\x41\x8f\xb1\x78\xe1\x9a\xa0\x9f\xf9\xe6" "\x2b\x29\x73\x2f\xb2\x98\x6c\x96\xe7\x38\xf7\xa6\x88\xcb\x21\x22\xdb" "\xb8\xf2\xad\x9a\x5f\x28\xbc\x49\xec\x0c\x46\x24\x13\x55\x2a\xfe\xe8" "\xe4\x03\x25\x9b\x55\xad\x6d\xc3\x34\xdd\xe7\xf2\xd3\x06\x92\x9d\xd0" "\x1f\x2a\xa6\x03\x6c\xaf\xd4\x18\x74\x52\x26\x89\x30\x1b\x81\xc9\xe5" "\x0e\x86\x82\x88\x94\x14\x03\x56\xdb\x0a\x33\x17\xb0\x81\xed\x9d\x81" "\x48\xc4\x1e\x77\xe6\xbd\xa6\x28\x77\x62\x53\x2b\x86\xeb\x91\xf5\x48" "\x09\x15\x68\x0d\xeb\x8a\x91\xfb\x86\x56\xb7\xf0\x10\x90\x64\x86\x5d" "\x2b\x84\x6a\xf0\x86\x1f\x67\xd3\xf7\x20\xd6\xe3\x06\x54\x0c\xd7\xb6" "\x8f\x09\x5e\xf3\x69\x0b\x88\xea\x93\xfb\x6a\x40\x2f\xf5\x69\x75\x97" "\xcd\xa8\x31\x71\xf1\x59\xe8\x53\x07\xd1\xa8\xc0\x16\x11\x18\x9b\xd4" "\xeb\x4f\x04\x53\xab\x88\xd4\x3a\xe1\x81\xa5\x62\xa7\x69\x02\xa6\x7c" "\x68\x75\x14\x07\x9d\x6f\x43\x04\xd9\xa7\xc0\xfa\x24\xb6\xe8\x60\x74" "\xea\x0a\x9f\xd8\x18\x7c\x12\x03\x12\x07\x8f\x5e\xbf\xa6\x74\xad\xc0" "\x30\x37\x34\xbf\x8f\x6b\x55\x85\x94\x37\x06\x59\x41\x92\xad\x24\xc9" "\xf7\xd9\x79\x4f\xb8\x37\x58\x92\x4f\x86\x28\x55\xdd\xd5\x0b\xff\x58" "\xb5\x22\xc4\x3d\x73\xc0\x32\x89\xba\xec\x62\x8c\xd6\x93\xca\xb9\x31" "\x01\xb1\xe4\x73\xb7\x65\x32\x51\x0e\x10\xf0\x3e\x86\x81\x2f\xea\x6f" "\x2d\x6f\x54\x67\xdc\xf2\x9e\x6d\x7c\xf8\x52\x4f\x38\x3a\x0d\xed\x3f" "\x09\x51\xc3\xff\xb1\x71\xa6\xb8\xa6\xd9\x7b\x5f\xa8\x89\x9a\x19\xf1" "\xa3\xd0\xe9\x34\xa1\xd4\x74\x10\x76\xe4\x39\x4b\xa2\x25\x15\x8f\x69" "\x7b\xf7\xd5\x65\x17\x17\xc6\x95\x02\x29\xa0\xbe\x22\xe8\x12\x0d\x76" "\xa4\x14\xed\xbc\xd0\x3d\x50\x52\x64\xb7\xed\xe8\x27\x2c\xcb\xd6\xdb" "\xdc\xeb\xaf\x11\xda\xf6\xa6\x52\xf6\xf9\xeb\x74\xba\x7a\x3e\xcc\x94" "\x28\x92\x89\x13\x88\x00\x5a\xe5\xd9\x71\xe4\xe7\x9d\x69\x65\x64\x90" "\x6d\xff\xd4\x48\x45\xb7\x04\xa9\xab\xc2\xfa\x5b\xa1\xbb\x69\xa5\x48" "\x42\x3a\x08\x04\x4a\xd6\xd0\xe3\x65\xdb\x7e\x6b\xea\x0f\x38\x44\xa4" "\x52\x75\x97\x16\xcb\x98\xdc\xf3\x26\x00\x1e\xc9\x0c\x1c\x34\x31\x74" "\x09\x8c\xdf\x47\xea\x2e\x13\x34\x10\x58\xca\x01\x4d\x2a\x30\xe9\xba" "\x3c\x52\x6d\xe7\x2a\x6e\x38\x71\x81\xbf\x76\xa2\x78\xc9\xcb\xc5\x18" "\xd8\xc3\x74\xa3\xf1\xd9\x80\x2a\x39\x46\x4a\x10\x09\x03\xdb\xec\x16" "\xf8\xf0\x95\xf5\xd8\x2d\x9d\x09\x50\x72\x81\xe4\xf7\xfe\x0c\xe4\xfb" "\xec\xed\x19\x39\x02\xa5\xf6\x58\xaf\x2a\x4c\x1d\x09\x52\xda\xbd\xc6" "\xae\x58\x30\xb6\xb5\xa2\xc3\xf5\xb8\xd3\x3a\x73\x66\x59\x90\x82\x2e" "\x5f\x4a\x7c\xe5\x36\x67\x55\xa1\x61\x55\x43\xbd\xf7\x82\x99\xc7\x1e" "\x89\x0e\x0b\xed\xb6\xec\x27\x7b\x10\xa3\x89\xd6\xa3\xba\x9c\x03\x72" "\x21\x42\x12\x79\xe5\x1a\xb5\x0f\xb1\x15\xde\x20\x76\xcc\x99\x44\x42" "\x02\xe8\x8e\xbd\x9d\x0f\xbe\x4e\x60\x23\x4b\x7b\x76\x14\x95\xac\x6c" "\x9e\x61\x5d\xda\xc8\x17\x61\x64\xa8\x8f\xb6\xd6\xcc\x2b\x52\x67\x2c" "\x89\x49\xaf\xe3\xef\xc1\xe8\x7a\x59\x88\x96\xbc\x93\xe4\x21\x42\x38" "\x44\xfc\xaa\xfe\x65\xaf\x89\x8a\x01\x5b\x3b\xca\xf6\x23\xeb\xee\xf9" "\xa5\x71\x55\xaf\x52\x78\xce\xb5\x2b\x99\x5f\x7c\xa4\x66\xd9\xe1\x8b" "\x05\xe8\x63\x80\x67\x9e\x02\x57\xcf\xf6\xd0\xc6\x75\x00\x78\x46\x2f" "\x2e\xe4\x70\x1d\x6d\x82\x89\xed\x84\x8b\x87\x7c\xf5\x91\x86\x25\xb7" "\x93\x70\x60\xd6\x67\xc1\x11\x19\x88\x1c\x30\x80\x90\x56\x89\x23\x52" "\xc6\xc5\x3c\x01\xe3\x95\xaf\x68\x66\xea\x35\x0e\x6f\x21\xfa\x3d\xb7" "\x72\xc1\x17\x7c\x75\x99\x99\x97\x3b\x51\xe1\x1f\xfc\x59\x08", 8192)); NONFAILING(*(uint64_t*)0x20000c80 = 0); NONFAILING(*(uint64_t*)0x20000c88 = 0); NONFAILING(*(uint64_t*)0x20000c90 = 0); NONFAILING(*(uint64_t*)0x20000c98 = 0); NONFAILING(*(uint64_t*)0x20000ca0 = 0); NONFAILING(*(uint64_t*)0x20000ca8 = 0); NONFAILING(*(uint64_t*)0x20000cb0 = 0); NONFAILING(*(uint64_t*)0x20000cb8 = 0); NONFAILING(*(uint64_t*)0x20000cc0 = 0); NONFAILING(*(uint64_t*)0x20000cc8 = 0); NONFAILING(*(uint64_t*)0x20000cd0 = 0x20000200); NONFAILING(*(uint32_t*)0x20000200 = 0x78); NONFAILING(*(uint32_t*)0x20000204 = 0); NONFAILING(*(uint64_t*)0x20000208 = 0); NONFAILING(*(uint64_t*)0x20000210 = 0); NONFAILING(*(uint32_t*)0x20000218 = 0); NONFAILING(*(uint32_t*)0x2000021c = 0); NONFAILING(*(uint64_t*)0x20000220 = 0); NONFAILING(*(uint64_t*)0x20000228 = 0); NONFAILING(*(uint64_t*)0x20000230 = 0); NONFAILING(*(uint64_t*)0x20000238 = 0); NONFAILING(*(uint64_t*)0x20000240 = 0); NONFAILING(*(uint64_t*)0x20000248 = 0); NONFAILING(*(uint32_t*)0x20000250 = 0); NONFAILING(*(uint32_t*)0x20000254 = 0); NONFAILING(*(uint32_t*)0x20000258 = 0); NONFAILING(*(uint32_t*)0x2000025c = 0x8000); NONFAILING(*(uint32_t*)0x20000260 = 0); NONFAILING(*(uint32_t*)0x20000264 = 0); NONFAILING(*(uint32_t*)0x20000268 = 0); NONFAILING(*(uint32_t*)0x2000026c = 0); NONFAILING(*(uint32_t*)0x20000270 = 0); NONFAILING(*(uint32_t*)0x20000274 = 0); NONFAILING(*(uint64_t*)0x20000cd8 = 0); NONFAILING(*(uint64_t*)0x20000ce0 = 0); NONFAILING(*(uint64_t*)0x20000ce8 = 0); NONFAILING(*(uint64_t*)0x20000cf0 = 0); NONFAILING(*(uint64_t*)0x20000cf8 = 0); NONFAILING(syz_fuse_handle_req(r[0], 0x20004200, 0x2000, 0x20000c80)); break; case 7: NONFAILING(memcpy((void*)0x2000c380, "./file0\000", 8)); res = syscall(__NR_openat, 0xffffff9c, 0x2000c380ul, 0x80101ul, 0ul); if (res != -1) r[2] = res; break; case 8: NONFAILING(*(uint32_t*)0x200002c0 = 0x10); NONFAILING(*(uint32_t*)0x200002c4 = 0); NONFAILING(*(uint64_t*)0x200002c8 = 0); syscall(__NR_write, r[2], 0x200002c0ul, 0x10ul); break; } } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); setup_usb(); setup_802154(); install_segv_handler(); use_temporary_dir(); do_sandbox_none(); return 0; }