// https://syzkaller.appspot.com/bug?id=fa9be2f72b2aee60b3acbbcffecc698d8b160b10 // 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 unsigned long long procid; 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 (hdr->nlmsg_type == NLMSG_DONE) { *reply_len = 0; return 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 138 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, err; 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)); err = netlink_send(&nlmsg, sock); if (err) { } 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_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; uint8_t bInterfaceClass; 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 bDeviceClass; 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->bDeviceClass = index->dev->bDeviceClass; 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[index->ifaces_num].bInterfaceClass = iface->bInterfaceClass; 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; } #define UDC_NAME_LENGTH_MAX 128 struct usb_raw_init { __u8 driver_name[UDC_NAME_LENGTH_MAX]; __u8 device_name[UDC_NAME_LENGTH_MAX]; __u8 speed; }; enum usb_raw_event_type { USB_RAW_EVENT_INVALID, USB_RAW_EVENT_CONNECT, USB_RAW_EVENT_CONTROL, }; struct usb_raw_event { __u32 type; __u32 length; __u8 data[0]; }; struct usb_raw_ep_io { __u16 ep; __u16 flags; __u32 length; __u8 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, __u32) #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, __u32) static int usb_raw_open() { return open("/dev/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; strncpy((char*)&arg.driver_name[0], driver, sizeof(arg.driver_name)); strncpy((char*)&arg.device_name[0], device, sizeof(arg.device_name)); arg.speed = speed; 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; 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) { 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); *(uint8_t*)0x20000600 = 0x12; *(uint8_t*)0x20000601 = 1; *(uint16_t*)0x20000602 = 0x309; *(uint8_t*)0x20000604 = 0xa9; *(uint8_t*)0x20000605 = 0xf9; *(uint8_t*)0x20000606 = 0x5f; *(uint8_t*)0x20000607 = 0x20; *(uint16_t*)0x20000608 = 0x711; *(uint16_t*)0x2000060a = 0x950; *(uint16_t*)0x2000060c = 0xa416; *(uint8_t*)0x2000060e = 1; *(uint8_t*)0x2000060f = 2; *(uint8_t*)0x20000610 = 3; *(uint8_t*)0x20000611 = 1; *(uint8_t*)0x20000612 = 9; *(uint8_t*)0x20000613 = 2; *(uint16_t*)0x20000614 = 0x15e; *(uint8_t*)0x20000616 = 4; *(uint8_t*)0x20000617 = 0xfb; *(uint8_t*)0x20000618 = 9; *(uint8_t*)0x20000619 = 0x80; *(uint8_t*)0x2000061a = 0xb; *(uint8_t*)0x2000061b = 9; *(uint8_t*)0x2000061c = 4; *(uint8_t*)0x2000061d = 0xc; *(uint8_t*)0x2000061e = 8; *(uint8_t*)0x2000061f = 4; *(uint8_t*)0x20000620 = 0xbe; *(uint8_t*)0x20000621 = 0xb8; *(uint8_t*)0x20000622 = 0x77; *(uint8_t*)0x20000623 = 5; *(uint8_t*)0x20000624 = 5; *(uint8_t*)0x20000625 = 0x24; *(uint8_t*)0x20000626 = 6; *(uint8_t*)0x20000627 = 0; *(uint8_t*)0x20000628 = 0; *(uint8_t*)0x20000629 = 5; *(uint8_t*)0x2000062a = 0x24; *(uint8_t*)0x2000062b = 0; *(uint16_t*)0x2000062c = 0x16; *(uint8_t*)0x2000062e = 0xd; *(uint8_t*)0x2000062f = 0x24; *(uint8_t*)0x20000630 = 0xf; *(uint8_t*)0x20000631 = 1; *(uint32_t*)0x20000632 = 1; *(uint16_t*)0x20000636 = 0x100; *(uint16_t*)0x20000638 = 0; *(uint8_t*)0x2000063a = 0; *(uint8_t*)0x2000063b = 4; *(uint8_t*)0x2000063c = 0x24; *(uint8_t*)0x2000063d = 0x13; *(uint8_t*)0x2000063e = 0x1f; *(uint8_t*)0x2000063f = 9; *(uint8_t*)0x20000640 = 5; *(uint8_t*)0x20000641 = 0xa; *(uint8_t*)0x20000642 = 0x10; *(uint16_t*)0x20000643 = 0x263; *(uint8_t*)0x20000645 = 0x20; *(uint8_t*)0x20000646 = 8; *(uint8_t*)0x20000647 = 7; *(uint8_t*)0x20000648 = 9; *(uint8_t*)0x20000649 = 5; *(uint8_t*)0x2000064a = 6; *(uint8_t*)0x2000064b = 4; *(uint16_t*)0x2000064c = 0x16a; *(uint8_t*)0x2000064e = 8; *(uint8_t*)0x2000064f = 1; *(uint8_t*)0x20000650 = 0x31; *(uint8_t*)0x20000651 = 7; *(uint8_t*)0x20000652 = 0x25; *(uint8_t*)0x20000653 = 1; *(uint8_t*)0x20000654 = 2; *(uint8_t*)0x20000655 = 4; *(uint16_t*)0x20000656 = 0x3b4; *(uint8_t*)0x20000658 = 2; *(uint8_t*)0x20000659 = 0x21; *(uint8_t*)0x2000065a = 9; *(uint8_t*)0x2000065b = 5; *(uint8_t*)0x2000065c = 2; *(uint8_t*)0x2000065d = 0; *(uint16_t*)0x2000065e = 0x198; *(uint8_t*)0x20000660 = 8; *(uint8_t*)0x20000661 = 0; *(uint8_t*)0x20000662 = 0x81; *(uint8_t*)0x20000663 = 7; *(uint8_t*)0x20000664 = 0x25; *(uint8_t*)0x20000665 = 1; *(uint8_t*)0x20000666 = 2; *(uint8_t*)0x20000667 = 0; *(uint16_t*)0x20000668 = 0x179; *(uint8_t*)0x2000066a = 2; *(uint8_t*)0x2000066b = 1; *(uint8_t*)0x2000066c = 9; *(uint8_t*)0x2000066d = 5; *(uint8_t*)0x2000066e = 3; *(uint8_t*)0x2000066f = 0; *(uint16_t*)0x20000670 = 0x305; *(uint8_t*)0x20000672 = 3; *(uint8_t*)0x20000673 = 0; *(uint8_t*)0x20000674 = 0x82; *(uint8_t*)0x20000675 = 2; *(uint8_t*)0x20000676 = 0xe; *(uint8_t*)0x20000677 = 9; *(uint8_t*)0x20000678 = 4; *(uint8_t*)0x20000679 = 0xb9; *(uint8_t*)0x2000067a = 0x81; *(uint8_t*)0x2000067b = 5; *(uint8_t*)0x2000067c = 0xd8; *(uint8_t*)0x2000067d = 0x51; *(uint8_t*)0x2000067e = 0x87; *(uint8_t*)0x2000067f = 4; *(uint8_t*)0x20000680 = 9; *(uint8_t*)0x20000681 = 0x24; *(uint8_t*)0x20000682 = 2; *(uint8_t*)0x20000683 = 2; *(uint16_t*)0x20000684 = 1; *(uint16_t*)0x20000686 = 5; *(uint8_t*)0x20000688 = 2; *(uint8_t*)0x20000689 = 7; *(uint8_t*)0x2000068a = 0x24; *(uint8_t*)0x2000068b = 1; *(uint8_t*)0x2000068c = 5; *(uint8_t*)0x2000068d = 9; *(uint16_t*)0x2000068e = 2; *(uint8_t*)0x20000690 = 7; *(uint8_t*)0x20000691 = 0x24; *(uint8_t*)0x20000692 = 1; *(uint8_t*)0x20000693 = 0x40; *(uint8_t*)0x20000694 = 9; *(uint16_t*)0x20000695 = 0x1002; *(uint8_t*)0x20000697 = 9; *(uint8_t*)0x20000698 = 0x21; *(uint16_t*)0x20000699 = 0; *(uint8_t*)0x2000069b = 0x7f; *(uint8_t*)0x2000069c = 1; *(uint8_t*)0x2000069d = 0x22; *(uint16_t*)0x2000069e = 0xd63; *(uint8_t*)0x200006a0 = 9; *(uint8_t*)0x200006a1 = 5; *(uint8_t*)0x200006a2 = 0x50; *(uint8_t*)0x200006a3 = 0; *(uint16_t*)0x200006a4 = 0x315; *(uint8_t*)0x200006a6 = 2; *(uint8_t*)0x200006a7 = 3; *(uint8_t*)0x200006a8 = 2; *(uint8_t*)0x200006a9 = 9; *(uint8_t*)0x200006aa = 5; *(uint8_t*)0x200006ab = 0x80; *(uint8_t*)0x200006ac = 0; *(uint16_t*)0x200006ad = 0x127; *(uint8_t*)0x200006af = 5; *(uint8_t*)0x200006b0 = 6; *(uint8_t*)0x200006b1 = 0x81; *(uint8_t*)0x200006b2 = 9; *(uint8_t*)0x200006b3 = 5; *(uint8_t*)0x200006b4 = 0x96; *(uint8_t*)0x200006b5 = 0x10; *(uint16_t*)0x200006b6 = 0x32b; *(uint8_t*)0x200006b8 = 0; *(uint8_t*)0x200006b9 = 6; *(uint8_t*)0x200006ba = 1; *(uint8_t*)0x200006bb = 7; *(uint8_t*)0x200006bc = 0x25; *(uint8_t*)0x200006bd = 1; *(uint8_t*)0x200006be = 0x80; *(uint8_t*)0x200006bf = 4; *(uint16_t*)0x200006c0 = 3; *(uint8_t*)0x200006c2 = 9; *(uint8_t*)0x200006c3 = 5; *(uint8_t*)0x200006c4 = 0; *(uint8_t*)0x200006c5 = 0x10; *(uint16_t*)0x200006c6 = 0x326; *(uint8_t*)0x200006c8 = 7; *(uint8_t*)0x200006c9 = 0; *(uint8_t*)0x200006ca = 0x9c; *(uint8_t*)0x200006cb = 7; *(uint8_t*)0x200006cc = 0x25; *(uint8_t*)0x200006cd = 1; *(uint8_t*)0x200006ce = 0; *(uint8_t*)0x200006cf = 0x32; *(uint16_t*)0x200006d0 = 5; *(uint8_t*)0x200006d2 = 9; *(uint8_t*)0x200006d3 = 5; *(uint8_t*)0x200006d4 = 2; *(uint8_t*)0x200006d5 = 0; *(uint16_t*)0x200006d6 = 0x274; *(uint8_t*)0x200006d8 = 0x5c; *(uint8_t*)0x200006d9 = 0x7f; *(uint8_t*)0x200006da = 0; *(uint8_t*)0x200006db = 9; *(uint8_t*)0x200006dc = 4; *(uint8_t*)0x200006dd = 0x78; *(uint8_t*)0x200006de = 0x3c; *(uint8_t*)0x200006df = 5; *(uint8_t*)0x200006e0 = -1; *(uint8_t*)0x200006e1 = -1; *(uint8_t*)0x200006e2 = -1; *(uint8_t*)0x200006e3 = 2; *(uint8_t*)0x200006e4 = 9; *(uint8_t*)0x200006e5 = 5; *(uint8_t*)0x200006e6 = 0; *(uint8_t*)0x200006e7 = 0x10; *(uint16_t*)0x200006e8 = 0x2c9; *(uint8_t*)0x200006ea = 0x20; *(uint8_t*)0x200006eb = 0x3f; *(uint8_t*)0x200006ec = 0xf7; *(uint8_t*)0x200006ed = 7; *(uint8_t*)0x200006ee = 0x25; *(uint8_t*)0x200006ef = 1; *(uint8_t*)0x200006f0 = 0; *(uint8_t*)0x200006f1 = 8; *(uint16_t*)0x200006f2 = 2; *(uint8_t*)0x200006f4 = 2; *(uint8_t*)0x200006f5 = 0x48; *(uint8_t*)0x200006f6 = 9; *(uint8_t*)0x200006f7 = 5; *(uint8_t*)0x200006f8 = 9; *(uint8_t*)0x200006f9 = 1; *(uint16_t*)0x200006fa = 0x246; *(uint8_t*)0x200006fc = 1; *(uint8_t*)0x200006fd = 8; *(uint8_t*)0x200006fe = 0; *(uint8_t*)0x200006ff = 7; *(uint8_t*)0x20000700 = 0x25; *(uint8_t*)0x20000701 = 1; *(uint8_t*)0x20000702 = 1; *(uint8_t*)0x20000703 = 8; *(uint16_t*)0x20000704 = 6; *(uint8_t*)0x20000706 = 9; *(uint8_t*)0x20000707 = 5; *(uint8_t*)0x20000708 = 0; *(uint8_t*)0x20000709 = 2; *(uint16_t*)0x2000070a = 0x313; *(uint8_t*)0x2000070c = 0x81; *(uint8_t*)0x2000070d = 4; *(uint8_t*)0x2000070e = 3; *(uint8_t*)0x2000070f = 9; *(uint8_t*)0x20000710 = 5; *(uint8_t*)0x20000711 = 0; *(uint8_t*)0x20000712 = 1; *(uint16_t*)0x20000713 = 0x2c; *(uint8_t*)0x20000715 = 5; *(uint8_t*)0x20000716 = 8; *(uint8_t*)0x20000717 = 7; *(uint8_t*)0x20000718 = 9; *(uint8_t*)0x20000719 = 5; *(uint8_t*)0x2000071a = 6; *(uint8_t*)0x2000071b = 0x69; *(uint16_t*)0x2000071c = 0x397; *(uint8_t*)0x2000071e = 0x5f; *(uint8_t*)0x2000071f = 0x3f; *(uint8_t*)0x20000720 = 3; *(uint8_t*)0x20000721 = 9; *(uint8_t*)0x20000722 = 4; *(uint8_t*)0x20000723 = 0x3c; *(uint8_t*)0x20000724 = 2; *(uint8_t*)0x20000725 = 5; *(uint8_t*)0x20000726 = 0xa2; *(uint8_t*)0x20000727 = 0xb7; *(uint8_t*)0x20000728 = 0x7a; *(uint8_t*)0x20000729 = 9; *(uint8_t*)0x2000072a = 9; *(uint8_t*)0x2000072b = 0x21; *(uint16_t*)0x2000072c = 4; *(uint8_t*)0x2000072e = 0x54; *(uint8_t*)0x2000072f = 1; *(uint8_t*)0x20000730 = 0x22; *(uint16_t*)0x20000731 = 0xbc4; *(uint8_t*)0x20000733 = 9; *(uint8_t*)0x20000734 = 5; *(uint8_t*)0x20000735 = 3; *(uint8_t*)0x20000736 = 0x10; *(uint16_t*)0x20000737 = 0xe4; *(uint8_t*)0x20000739 = 0xec; *(uint8_t*)0x2000073a = 0x20; *(uint8_t*)0x2000073b = 0xc; *(uint8_t*)0x2000073c = 7; *(uint8_t*)0x2000073d = 0x25; *(uint8_t*)0x2000073e = 1; *(uint8_t*)0x2000073f = 2; *(uint8_t*)0x20000740 = 4; *(uint16_t*)0x20000741 = 0xb3; *(uint8_t*)0x20000743 = 9; *(uint8_t*)0x20000744 = 5; *(uint8_t*)0x20000745 = 9; *(uint8_t*)0x20000746 = 0; *(uint16_t*)0x20000747 = 0xb3; *(uint8_t*)0x20000749 = 0x18; *(uint8_t*)0x2000074a = 9; *(uint8_t*)0x2000074b = 0; *(uint8_t*)0x2000074c = 9; *(uint8_t*)0x2000074d = 5; *(uint8_t*)0x2000074e = 0xd; *(uint8_t*)0x2000074f = 3; *(uint16_t*)0x20000750 = 0x276; *(uint8_t*)0x20000752 = 0xf8; *(uint8_t*)0x20000753 = 4; *(uint8_t*)0x20000754 = 4; *(uint8_t*)0x20000755 = 9; *(uint8_t*)0x20000756 = 5; *(uint8_t*)0x20000757 = 0xe; *(uint8_t*)0x20000758 = 1; *(uint16_t*)0x20000759 = 0xe0; *(uint8_t*)0x2000075b = 6; *(uint8_t*)0x2000075c = 0x40; *(uint8_t*)0x2000075d = 1; *(uint8_t*)0x2000075e = 2; *(uint8_t*)0x2000075f = 9; *(uint8_t*)0x20000760 = 7; *(uint8_t*)0x20000761 = 0x25; *(uint8_t*)0x20000762 = 1; *(uint8_t*)0x20000763 = 0x46; *(uint8_t*)0x20000764 = 5; *(uint16_t*)0x20000765 = 2; *(uint8_t*)0x20000767 = 9; *(uint8_t*)0x20000768 = 5; *(uint8_t*)0x20000769 = 0; *(uint8_t*)0x2000076a = 0; *(uint16_t*)0x2000076b = 0x1fa; *(uint8_t*)0x2000076d = 0; *(uint8_t*)0x2000076e = 1; *(uint8_t*)0x2000076f = 4; *(uint32_t*)0x20000a80 = 0; *(uint64_t*)0x20000a84 = 0; *(uint32_t*)0x20000a8c = 0; *(uint64_t*)0x20000a90 = 0; *(uint32_t*)0x20000a98 = 4; *(uint32_t*)0x20000a9c = 0; *(uint64_t*)0x20000aa0 = 0; *(uint32_t*)0x20000aa8 = 0; *(uint64_t*)0x20000aac = 0; *(uint32_t*)0x20000ab4 = 0; *(uint64_t*)0x20000ab8 = 0; *(uint32_t*)0x20000ac0 = 0; *(uint64_t*)0x20000ac4 = 0; syz_usb_connect(0, 0x170, 0x20000600, 0x20000a80); return 0; }