// https://syzkaller.appspot.com/bug?id=c2f000b7826e712b064b66b32ed73e21ee09d7a5 // 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 unsigned long long procid; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; if (__atomic_load_n(&skip_segv, __ATOMIC_RELAXED) && (addr < prog_start || addr > prog_end)) { _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(...) \ { \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ } static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[1024]; }; static struct nlmsg nlmsg; 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; memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len) { 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; unsigned n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != hdr->nlmsg_len) exit(1); n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (n < sizeof(struct nlmsghdr)) exit(1); if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr)) exit(1); if (hdr->nlmsg_type != NLMSG_ERROR) exit(1); return -((struct nlmsgerr*)(hdr + 1))->error; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL); } 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_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); (void)err; } const int kInitNetNsFd = 239; #define DEVLINK_FAMILY_NAME "devlink" #define DEVLINK_CMD_PORT_GET 5 #define DEVLINK_CMD_RELOAD 37 #define DEVLINK_ATTR_BUS_NAME 1 #define DEVLINK_ATTR_DEV_NAME 2 #define DEVLINK_ATTR_NETDEV_NAME 7 #define DEVLINK_ATTR_NETNS_FD 137 static int netlink_devlink_id_get(struct nlmsg* nlmsg, int sock) { struct genlmsghdr genlhdr; struct nlattr* attr; int err, n; uint16_t id = 0; 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, DEVLINK_FAMILY_NAME, strlen(DEVLINK_FAMILY_NAME) + 1); err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n); if (err) { return -1; } 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) { return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); /* recv ack */ return id; } static void netlink_devlink_netns_move(const char* bus_name, const char* dev_name, int netns_fd) { struct genlmsghdr genlhdr; int sock; int id; sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) exit(1); id = netlink_devlink_id_get(&nlmsg, sock); if (id == -1) goto error; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = DEVLINK_CMD_RELOAD; netlink_init(&nlmsg, id, 0, &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); netlink_attr(&nlmsg, DEVLINK_ATTR_NETNS_FD, &netns_fd, sizeof(netns_fd)); netlink_send(&nlmsg, sock); error: close(sock); } 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_devlink_id_get(&nlmsg, sock); 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); if (err) { 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); } static void initialize_devlink_pci(void) { int netns = open("/proc/self/ns/net", O_RDONLY); if (netns == -1) exit(1); int ret = setns(kInitNetNsFd, 0); if (ret == -1) exit(1); netlink_devlink_netns_move("pci", "0000:00:10.0", netns); ret = setns(netns, 0); if (ret == -1) exit(1); close(netns); initialize_devlink_ports("pci", "0000:00:10.0", "netpci"); } #define MAX_FDS 30 #define USB_DEBUG 0 #define USB_MAX_IFACE_NUM 4 #define USB_MAX_EP_NUM 32 struct usb_iface_index { struct usb_interface_descriptor* iface; uint8_t bInterfaceNumber; uint8_t bAlternateSetting; struct usb_endpoint_descriptor eps[USB_MAX_EP_NUM]; int eps_num; }; struct usb_device_index { struct usb_device_descriptor* dev; struct usb_config_descriptor* config; uint8_t bMaxPower; int config_length; struct usb_iface_index ifaces[USB_MAX_IFACE_NUM]; int ifaces_num; int iface_cur; }; static bool parse_usb_descriptor(char* buffer, size_t length, struct usb_device_index* index) { if (length < sizeof(*index->dev) + sizeof(*index->config)) return false; memset(index, 0, sizeof(*index)); index->dev = (struct usb_device_descriptor*)buffer; index->config = (struct usb_config_descriptor*)(buffer + sizeof(*index->dev)); index->bMaxPower = index->config->bMaxPower; index->config_length = length - sizeof(*index->dev); index->iface_cur = -1; size_t offset = 0; while (true) { if (offset + 1 >= length) break; uint8_t desc_length = buffer[offset]; uint8_t desc_type = buffer[offset + 1]; if (desc_length <= 2) break; if (offset + desc_length > length) break; if (desc_type == USB_DT_INTERFACE && index->ifaces_num < USB_MAX_IFACE_NUM) { struct usb_interface_descriptor* iface = (struct usb_interface_descriptor*)(buffer + offset); index->ifaces[index->ifaces_num].iface = iface; index->ifaces[index->ifaces_num].bInterfaceNumber = iface->bInterfaceNumber; index->ifaces[index->ifaces_num].bAlternateSetting = iface->bAlternateSetting; index->ifaces_num++; } if (desc_type == USB_DT_ENDPOINT && index->ifaces_num > 0) { struct usb_iface_index* iface = &index->ifaces[index->ifaces_num - 1]; if (iface->eps_num < USB_MAX_EP_NUM) { memcpy(&iface->eps[iface->eps_num], buffer + offset, sizeof(iface->eps[iface->eps_num])); iface->eps_num++; } } offset += desc_length; } return true; } enum usb_raw_event_type { USB_RAW_EVENT_INVALID, USB_RAW_EVENT_CONNECT, USB_RAW_EVENT_CONTROL, }; struct usb_raw_event { uint32_t type; uint32_t length; char data[0]; }; struct usb_raw_init { uint64_t speed; const char* driver_name; const char* device_name; }; struct usb_raw_ep_io { uint16_t ep; uint16_t flags; uint32_t length; char data[0]; }; #define USB_RAW_IOCTL_INIT _IOW('U', 0, struct usb_raw_init) #define USB_RAW_IOCTL_RUN _IO('U', 1) #define USB_RAW_IOCTL_EVENT_FETCH _IOR('U', 2, struct usb_raw_event) #define USB_RAW_IOCTL_EP0_WRITE _IOW('U', 3, struct usb_raw_ep_io) #define USB_RAW_IOCTL_EP0_READ _IOWR('U', 4, struct usb_raw_ep_io) #define USB_RAW_IOCTL_EP_ENABLE _IOW('U', 5, struct usb_endpoint_descriptor) #define USB_RAW_IOCTL_EP_DISABLE _IOW('U', 6, int) #define USB_RAW_IOCTL_EP_WRITE _IOW('U', 7, struct usb_raw_ep_io) #define USB_RAW_IOCTL_EP_READ _IOWR('U', 8, struct usb_raw_ep_io) #define USB_RAW_IOCTL_CONFIGURE _IO('U', 9) #define USB_RAW_IOCTL_VBUS_DRAW _IOW('U', 10, uint32_t) static int usb_raw_open() { return open("/sys/kernel/debug/usb/raw-gadget", O_RDWR); } static int usb_raw_init(int fd, uint32_t speed, const char* driver, const char* device) { struct usb_raw_init arg; arg.speed = speed; arg.driver_name = driver; arg.device_name = device; return ioctl(fd, USB_RAW_IOCTL_INIT, &arg); } static int usb_raw_run(int fd) { return ioctl(fd, USB_RAW_IOCTL_RUN, 0); } static int usb_raw_event_fetch(int fd, struct usb_raw_event* event) { return ioctl(fd, USB_RAW_IOCTL_EVENT_FETCH, event); } static int usb_raw_ep0_write(int fd, struct usb_raw_ep_io* io) { return ioctl(fd, USB_RAW_IOCTL_EP0_WRITE, io); } static int usb_raw_ep0_read(int fd, struct usb_raw_ep_io* io) { return ioctl(fd, USB_RAW_IOCTL_EP0_READ, io); } static int usb_raw_ep_enable(int fd, struct usb_endpoint_descriptor* desc) { return ioctl(fd, USB_RAW_IOCTL_EP_ENABLE, desc); } static int usb_raw_ep_disable(int fd, int ep) { return ioctl(fd, USB_RAW_IOCTL_EP_DISABLE, ep); } static int usb_raw_configure(int fd) { return ioctl(fd, USB_RAW_IOCTL_CONFIGURE, 0); } static int usb_raw_vbus_draw(int fd, uint32_t power) { return ioctl(fd, USB_RAW_IOCTL_VBUS_DRAW, power); } #define MAX_USB_FDS 6 struct usb_info { int fd; struct usb_device_index index; }; static struct usb_info usb_devices[MAX_USB_FDS]; static int usb_devices_num; static struct usb_device_index* add_usb_index(int fd, char* dev, size_t dev_len) { int i = __atomic_fetch_add(&usb_devices_num, 1, __ATOMIC_RELAXED); if (i >= MAX_USB_FDS) return NULL; int rv = 0; NONFAILING(rv = parse_usb_descriptor(dev, dev_len, &usb_devices[i].index)); if (!rv) return NULL; __atomic_store_n(&usb_devices[i].fd, fd, __ATOMIC_RELEASE); return &usb_devices[i].index; } static struct usb_device_index* lookup_usb_index(int fd) { int i; for (i = 0; i < MAX_USB_FDS; i++) { if (__atomic_load_n(&usb_devices[i].fd, __ATOMIC_ACQUIRE) == fd) { return &usb_devices[i].index; } } return NULL; } static void set_interface(int fd, int n) { struct usb_device_index* index = lookup_usb_index(fd); int ep; if (!index) return; if (index->iface_cur >= 0 && index->iface_cur < index->ifaces_num) { for (ep = 0; ep < index->ifaces[index->iface_cur].eps_num; ep++) { int rv = usb_raw_ep_disable(fd, ep); if (rv < 0) { } else { } } } if (n >= 0 && n < index->ifaces_num) { for (ep = 0; ep < index->ifaces[n].eps_num; ep++) { int rv = usb_raw_ep_enable(fd, &index->ifaces[n].eps[ep]); if (rv < 0) { } else { } } index->iface_cur = n; } } static int configure_device(int fd) { struct usb_device_index* index = lookup_usb_index(fd); if (!index) return -1; int rv = usb_raw_vbus_draw(fd, index->bMaxPower); if (rv < 0) { return rv; } rv = usb_raw_configure(fd); if (rv < 0) { return rv; } set_interface(fd, 0); return 0; } #define USB_MAX_PACKET_SIZE 1024 struct usb_raw_control_event { struct usb_raw_event inner; struct usb_ctrlrequest ctrl; char data[USB_MAX_PACKET_SIZE]; }; struct usb_raw_ep_io_data { struct usb_raw_ep_io inner; char data[USB_MAX_PACKET_SIZE]; }; struct vusb_connect_string_descriptor { uint32_t len; char* str; } __attribute__((packed)); struct vusb_connect_descriptors { uint32_t qual_len; char* qual; uint32_t bos_len; char* bos; uint32_t strs_len; struct vusb_connect_string_descriptor strs[0]; } __attribute__((packed)); static const char default_string[] = {8, USB_DT_STRING, 's', 0, 'y', 0, 'z', 0}; static const char default_lang_id[] = {4, USB_DT_STRING, 0x09, 0x04}; static bool lookup_connect_response(int fd, struct vusb_connect_descriptors* descs, struct usb_ctrlrequest* ctrl, char** response_data, uint32_t* response_length) { struct usb_device_index* index = lookup_usb_index(fd); uint8_t str_idx; if (!index) return false; switch (ctrl->bRequestType & USB_TYPE_MASK) { case USB_TYPE_STANDARD: switch (ctrl->bRequest) { case USB_REQ_GET_DESCRIPTOR: switch (ctrl->wValue >> 8) { case USB_DT_DEVICE: *response_data = (char*)index->dev; *response_length = sizeof(*index->dev); return true; case USB_DT_CONFIG: *response_data = (char*)index->config; *response_length = index->config_length; return true; case USB_DT_STRING: str_idx = (uint8_t)ctrl->wValue; if (descs && str_idx < descs->strs_len) { *response_data = descs->strs[str_idx].str; *response_length = descs->strs[str_idx].len; return true; } if (str_idx == 0) { *response_data = (char*)&default_lang_id[0]; *response_length = default_lang_id[0]; return true; } *response_data = (char*)&default_string[0]; *response_length = default_string[0]; return true; case USB_DT_BOS: *response_data = descs->bos; *response_length = descs->bos_len; return true; case USB_DT_DEVICE_QUALIFIER: if (!descs->qual) { struct usb_qualifier_descriptor* qual = (struct usb_qualifier_descriptor*)response_data; qual->bLength = sizeof(*qual); qual->bDescriptorType = USB_DT_DEVICE_QUALIFIER; qual->bcdUSB = index->dev->bcdUSB; qual->bDeviceClass = index->dev->bDeviceClass; qual->bDeviceSubClass = index->dev->bDeviceSubClass; qual->bDeviceProtocol = index->dev->bDeviceProtocol; qual->bMaxPacketSize0 = index->dev->bMaxPacketSize0; qual->bNumConfigurations = index->dev->bNumConfigurations; qual->bRESERVED = 0; *response_length = sizeof(*qual); return true; } *response_data = descs->qual; *response_length = descs->qual_len; return true; default: exit(1); return false; } break; default: exit(1); return false; } break; default: exit(1); return false; } return false; } static volatile long syz_usb_connect(volatile long a0, volatile long a1, volatile long a2, volatile long a3) { uint64_t speed = a0; uint64_t dev_len = a1; char* dev = (char*)a2; struct vusb_connect_descriptors* descs = (struct vusb_connect_descriptors*)a3; if (!dev) { return -1; } int fd = usb_raw_open(); if (fd < 0) { return fd; } if (fd >= MAX_FDS) { close(fd); return -1; } struct usb_device_index* index = add_usb_index(fd, dev, dev_len); if (!index) { return -1; } char device[32]; sprintf(&device[0], "dummy_udc.%llu", procid); int rv = usb_raw_init(fd, speed, "dummy_udc", &device[0]); if (rv < 0) { return rv; } rv = usb_raw_run(fd); if (rv < 0) { return rv; } bool done = false; while (!done) { struct usb_raw_control_event event; event.inner.type = 0; event.inner.length = sizeof(event.ctrl); rv = usb_raw_event_fetch(fd, (struct usb_raw_event*)&event); if (rv < 0) { return rv; } if (event.inner.type != USB_RAW_EVENT_CONTROL) continue; bool response_found = false; char* response_data = NULL; uint32_t response_length = 0; if (event.ctrl.bRequestType & USB_DIR_IN) { NONFAILING(response_found = lookup_connect_response( fd, descs, &event.ctrl, &response_data, &response_length)); if (!response_found) { return -1; } } else { if ((event.ctrl.bRequestType & USB_TYPE_MASK) != USB_TYPE_STANDARD || event.ctrl.bRequest != USB_REQ_SET_CONFIGURATION) { exit(1); return -1; } done = true; } if (done) { rv = configure_device(fd); if (rv < 0) { return rv; } } struct usb_raw_ep_io_data response; response.inner.ep = 0; response.inner.flags = 0; if (response_length > sizeof(response.data)) response_length = 0; if (event.ctrl.wLength < response_length) response_length = event.ctrl.wLength; response.inner.length = response_length; if (response_data) memcpy(&response.data[0], response_data, response_length); else memset(&response.data[0], 0, response_length); if (event.ctrl.bRequestType & USB_DIR_IN) { rv = usb_raw_ep0_write(fd, (struct usb_raw_ep_io*)&response); } else { rv = usb_raw_ep0_read(fd, (struct usb_raw_ep_io*)&response); } if (rv < 0) { return rv; } } sleep_ms(200); return fd; } int main(void) { syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 3ul, 0x32ul, -1, 0); install_segv_handler(); NONFAILING(*(uint8_t*)0x200000c0 = 0x12); NONFAILING(*(uint8_t*)0x200000c1 = 1); NONFAILING(*(uint16_t*)0x200000c2 = 0x250); NONFAILING(*(uint8_t*)0x200000c4 = 0x3d); NONFAILING(*(uint8_t*)0x200000c5 = 0x6e); NONFAILING(*(uint8_t*)0x200000c6 = 0x59); NONFAILING(*(uint8_t*)0x200000c7 = 0x40); NONFAILING(*(uint16_t*)0x200000c8 = 0x2040); NONFAILING(*(uint16_t*)0x200000ca = 0xd300); NONFAILING(*(uint16_t*)0x200000cc = 0xc290); NONFAILING(*(uint8_t*)0x200000ce = 1); NONFAILING(*(uint8_t*)0x200000cf = 2); NONFAILING(*(uint8_t*)0x200000d0 = 3); NONFAILING(*(uint8_t*)0x200000d1 = 1); NONFAILING(*(uint8_t*)0x200000d2 = 9); NONFAILING(*(uint8_t*)0x200000d3 = 2); NONFAILING(*(uint16_t*)0x200000d4 = 0xd2); NONFAILING(*(uint8_t*)0x200000d6 = 2); NONFAILING(*(uint8_t*)0x200000d7 = 0x40); NONFAILING(*(uint8_t*)0x200000d8 = -1); NONFAILING(*(uint8_t*)0x200000d9 = 0x28); NONFAILING(*(uint8_t*)0x200000da = 0x7f); NONFAILING(*(uint8_t*)0x200000db = 9); NONFAILING(*(uint8_t*)0x200000dc = 4); NONFAILING(*(uint8_t*)0x200000dd = 0xba); NONFAILING(*(uint8_t*)0x200000de = 1); NONFAILING(*(uint8_t*)0x200000df = 8); NONFAILING(*(uint8_t*)0x200000e0 = 0xbf); NONFAILING(*(uint8_t*)0x200000e1 = 0xa8); NONFAILING(*(uint8_t*)0x200000e2 = 0xfa); NONFAILING(*(uint8_t*)0x200000e3 = 1); NONFAILING(*(uint8_t*)0x200000e4 = 0xa); NONFAILING(*(uint8_t*)0x200000e5 = 0x24); NONFAILING(*(uint8_t*)0x200000e6 = 1); NONFAILING(*(uint16_t*)0x200000e7 = 4); NONFAILING(*(uint8_t*)0x200000e9 = 0xca); NONFAILING(*(uint8_t*)0x200000ea = 2); NONFAILING(*(uint8_t*)0x200000eb = 1); NONFAILING(*(uint8_t*)0x200000ec = 2); NONFAILING(*(uint8_t*)0x200000ed = 5); NONFAILING(*(uint8_t*)0x200000ee = 0x24); NONFAILING(*(uint8_t*)0x200000ef = 4); NONFAILING(*(uint8_t*)0x200000f0 = 4); NONFAILING(*(uint8_t*)0x200000f1 = 0x1f); NONFAILING(*(uint8_t*)0x200000f2 = 0x13); NONFAILING(*(uint8_t*)0x200000f3 = 0x24); NONFAILING(*(uint8_t*)0x200000f4 = 6); NONFAILING(*(uint8_t*)0x200000f5 = 5); NONFAILING(*(uint8_t*)0x200000f6 = 4); NONFAILING(*(uint8_t*)0x200000f7 = 6); NONFAILING(*(uint16_t*)0x200000f8 = 8); NONFAILING(*(uint16_t*)0x200000fa = 6); NONFAILING(*(uint16_t*)0x200000fc = 9); NONFAILING(*(uint16_t*)0x200000fe = 6); NONFAILING(*(uint16_t*)0x20000100 = 6); NONFAILING(*(uint16_t*)0x20000102 = 2); NONFAILING(*(uint8_t*)0x20000104 = 0x7f); NONFAILING(*(uint8_t*)0x20000105 = 0xc); NONFAILING(*(uint8_t*)0x20000106 = 0x24); NONFAILING(*(uint8_t*)0x20000107 = 2); NONFAILING(*(uint8_t*)0x20000108 = 1); NONFAILING(*(uint16_t*)0x20000109 = 0x203); NONFAILING(*(uint8_t*)0x2000010b = 5); NONFAILING(*(uint8_t*)0x2000010c = -1); NONFAILING(*(uint16_t*)0x2000010d = 0xa8f9); NONFAILING(*(uint8_t*)0x2000010f = 0x1f); NONFAILING(*(uint8_t*)0x20000110 = 0x80); NONFAILING(*(uint8_t*)0x20000111 = 5); NONFAILING(*(uint8_t*)0x20000112 = 0x24); NONFAILING(*(uint8_t*)0x20000113 = 5); NONFAILING(*(uint8_t*)0x20000114 = 1); NONFAILING(*(uint8_t*)0x20000115 = 4); NONFAILING(*(uint8_t*)0x20000116 = 5); NONFAILING(*(uint8_t*)0x20000117 = 0x24); NONFAILING(*(uint8_t*)0x20000118 = 6); NONFAILING(*(uint8_t*)0x20000119 = 0); NONFAILING(*(uint8_t*)0x2000011a = 0); NONFAILING(*(uint8_t*)0x2000011b = 5); NONFAILING(*(uint8_t*)0x2000011c = 0x24); NONFAILING(*(uint8_t*)0x2000011d = 0); NONFAILING(*(uint16_t*)0x2000011e = -1); NONFAILING(*(uint8_t*)0x20000120 = 0xd); NONFAILING(*(uint8_t*)0x20000121 = 0x24); NONFAILING(*(uint8_t*)0x20000122 = 0xf); NONFAILING(*(uint8_t*)0x20000123 = 1); NONFAILING(*(uint32_t*)0x20000124 = -1); NONFAILING(*(uint16_t*)0x20000128 = 0x1e9f); NONFAILING(*(uint16_t*)0x2000012a = 0); NONFAILING(*(uint8_t*)0x2000012c = 7); NONFAILING(*(uint8_t*)0x2000012d = 9); NONFAILING(*(uint8_t*)0x2000012e = 5); NONFAILING(*(uint8_t*)0x2000012f = 0xc); NONFAILING(*(uint8_t*)0x20000130 = 0); NONFAILING(*(uint16_t*)0x20000131 = 0x12f); NONFAILING(*(uint8_t*)0x20000133 = 0x80); NONFAILING(*(uint8_t*)0x20000134 = 0); NONFAILING(*(uint8_t*)0x20000135 = 0x4c); NONFAILING(*(uint8_t*)0x20000136 = 2); NONFAILING(*(uint8_t*)0x20000137 = 0xf); NONFAILING(*(uint8_t*)0x20000138 = 9); NONFAILING(*(uint8_t*)0x20000139 = 5); NONFAILING(*(uint8_t*)0x2000013a = 0x75); NONFAILING(*(uint8_t*)0x2000013b = 0x10); NONFAILING(*(uint16_t*)0x2000013c = 0x2cd); NONFAILING(*(uint8_t*)0x2000013e = 0x83); NONFAILING(*(uint8_t*)0x2000013f = 2); NONFAILING(*(uint8_t*)0x20000140 = 5); NONFAILING(*(uint8_t*)0x20000141 = 9); NONFAILING(*(uint8_t*)0x20000142 = 5); NONFAILING(*(uint8_t*)0x20000143 = 0xf); NONFAILING(*(uint8_t*)0x20000144 = 0x10); NONFAILING(*(uint16_t*)0x20000145 = 0x37c); NONFAILING(*(uint8_t*)0x20000147 = 0); NONFAILING(*(uint8_t*)0x20000148 = 5); NONFAILING(*(uint8_t*)0x20000149 = 0xed); NONFAILING(*(uint8_t*)0x2000014a = 9); NONFAILING(*(uint8_t*)0x2000014b = 5); NONFAILING(*(uint8_t*)0x2000014c = 3); NONFAILING(*(uint8_t*)0x2000014d = 0); NONFAILING(*(uint16_t*)0x2000014e = 0x2a3); NONFAILING(*(uint8_t*)0x20000150 = 0x81); NONFAILING(*(uint8_t*)0x20000151 = 3); NONFAILING(*(uint8_t*)0x20000152 = 0xf7); NONFAILING(*(uint8_t*)0x20000153 = 9); NONFAILING(*(uint8_t*)0x20000154 = 5); NONFAILING(*(uint8_t*)0x20000155 = 0xc); NONFAILING(*(uint8_t*)0x20000156 = 6); NONFAILING(*(uint16_t*)0x20000157 = 0x197); NONFAILING(*(uint8_t*)0x20000159 = 0); NONFAILING(*(uint8_t*)0x2000015a = 8); NONFAILING(*(uint8_t*)0x2000015b = 4); NONFAILING(*(uint8_t*)0x2000015c = 7); NONFAILING(*(uint8_t*)0x2000015d = 0x25); NONFAILING(*(uint8_t*)0x2000015e = 1); NONFAILING(*(uint8_t*)0x2000015f = 1); NONFAILING(*(uint8_t*)0x20000160 = 5); NONFAILING(*(uint16_t*)0x20000161 = 0xc8f); NONFAILING(*(uint8_t*)0x20000163 = 9); NONFAILING(*(uint8_t*)0x20000164 = 5); NONFAILING(*(uint8_t*)0x20000165 = 0); NONFAILING(*(uint8_t*)0x20000166 = 8); NONFAILING(*(uint16_t*)0x20000167 = 0x2b9); NONFAILING(*(uint8_t*)0x20000169 = 0x7f); NONFAILING(*(uint8_t*)0x2000016a = 0x80); NONFAILING(*(uint8_t*)0x2000016b = 1); NONFAILING(*(uint8_t*)0x2000016c = 7); NONFAILING(*(uint8_t*)0x2000016d = 0x25); NONFAILING(*(uint8_t*)0x2000016e = 1); NONFAILING(*(uint8_t*)0x2000016f = 0x80); NONFAILING(*(uint8_t*)0x20000170 = 4); NONFAILING(*(uint16_t*)0x20000171 = 0x1000); NONFAILING(*(uint8_t*)0x20000173 = 7); NONFAILING(*(uint8_t*)0x20000174 = 0x25); NONFAILING(*(uint8_t*)0x20000175 = 1); NONFAILING(*(uint8_t*)0x20000176 = 2); NONFAILING(*(uint8_t*)0x20000177 = 5); NONFAILING(*(uint16_t*)0x20000178 = 7); NONFAILING(*(uint8_t*)0x2000017a = 9); NONFAILING(*(uint8_t*)0x2000017b = 5); NONFAILING(*(uint8_t*)0x2000017c = 5); NONFAILING(*(uint8_t*)0x2000017d = 4); NONFAILING(*(uint16_t*)0x2000017e = 0x2d8); NONFAILING(*(uint8_t*)0x20000180 = 7); NONFAILING(*(uint8_t*)0x20000181 = 0x14); NONFAILING(*(uint8_t*)0x20000182 = 3); NONFAILING(*(uint8_t*)0x20000183 = 9); NONFAILING(*(uint8_t*)0x20000184 = 5); NONFAILING(*(uint8_t*)0x20000185 = 0xfb); NONFAILING(*(uint8_t*)0x20000186 = 0x10); NONFAILING(*(uint16_t*)0x20000187 = 0x206); NONFAILING(*(uint8_t*)0x20000189 = 0x7f); NONFAILING(*(uint8_t*)0x2000018a = 0x74); NONFAILING(*(uint8_t*)0x2000018b = 0); NONFAILING(*(uint8_t*)0x2000018c = 2); NONFAILING(*(uint8_t*)0x2000018d = 9); NONFAILING(*(uint8_t*)0x2000018e = 2); NONFAILING(*(uint8_t*)0x2000018f = 0x11); NONFAILING(*(uint8_t*)0x20000190 = 9); NONFAILING(*(uint8_t*)0x20000191 = 4); NONFAILING(*(uint8_t*)0x20000192 = 0xf7); NONFAILING(*(uint8_t*)0x20000193 = 1); NONFAILING(*(uint8_t*)0x20000194 = 1); NONFAILING(*(uint8_t*)0x20000195 = 0x2d); NONFAILING(*(uint8_t*)0x20000196 = 0x9c); NONFAILING(*(uint8_t*)0x20000197 = 0x57); NONFAILING(*(uint8_t*)0x20000198 = 4); NONFAILING(*(uint8_t*)0x20000199 = 2); NONFAILING(*(uint8_t*)0x2000019a = 0x30); NONFAILING(*(uint8_t*)0x2000019b = 9); NONFAILING(*(uint8_t*)0x2000019c = 5); NONFAILING(*(uint8_t*)0x2000019d = 0); NONFAILING(*(uint8_t*)0x2000019e = 0); NONFAILING(*(uint16_t*)0x2000019f = 0x98); NONFAILING(*(uint8_t*)0x200001a1 = 0xa7); NONFAILING(*(uint8_t*)0x200001a2 = 5); NONFAILING(*(uint8_t*)0x200001a3 = -1); NONFAILING(*(uint32_t*)0x20000500 = 0xa); NONFAILING(*(uint64_t*)0x20000504 = 0x20000380); NONFAILING(*(uint8_t*)0x20000380 = 0xa); NONFAILING(*(uint8_t*)0x20000381 = 6); NONFAILING(*(uint16_t*)0x20000382 = 0x300); NONFAILING(*(uint8_t*)0x20000384 = 8); NONFAILING(*(uint8_t*)0x20000385 = 3); NONFAILING(*(uint8_t*)0x20000386 = 0xaf); NONFAILING(*(uint8_t*)0x20000387 = 0x40); NONFAILING(*(uint8_t*)0x20000388 = 3); NONFAILING(*(uint8_t*)0x20000389 = 0); NONFAILING(*(uint32_t*)0x2000050c = 0); NONFAILING(*(uint64_t*)0x20000510 = 0); NONFAILING(*(uint32_t*)0x20000518 = 4); NONFAILING(*(uint32_t*)0x2000051c = 0); NONFAILING(*(uint64_t*)0x20000520 = 0); NONFAILING(*(uint32_t*)0x20000528 = 0); NONFAILING(*(uint64_t*)0x2000052c = 0); NONFAILING(*(uint32_t*)0x20000534 = 0); NONFAILING(*(uint64_t*)0x20000538 = 0); NONFAILING(*(uint32_t*)0x20000540 = 0); NONFAILING(*(uint64_t*)0x20000544 = 0); syz_usb_connect(2, 0xe4, 0x200000c0, 0x20000500); return 0; }