// 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 unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } #define USB_MAX_EP_NUM 32 struct usb_device_index { struct usb_device_descriptor* dev; struct usb_config_descriptor* config; unsigned config_length; struct usb_interface_descriptor* iface; struct usb_endpoint_descriptor* eps[USB_MAX_EP_NUM]; unsigned eps_num; }; static bool parse_usb_descriptor(char* buffer, size_t length, struct usb_device_index* index) { if (length < sizeof(*index->dev) + sizeof(*index->config) + sizeof(*index->iface)) return false; index->dev = (struct usb_device_descriptor*)buffer; index->config = (struct usb_config_descriptor*)(buffer + sizeof(*index->dev)); index->config_length = length - sizeof(*index->dev); index->iface = (struct usb_interface_descriptor*)(buffer + sizeof(*index->dev) + sizeof(*index->config)); index->eps_num = 0; 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_ENDPOINT) { index->eps[index->eps_num] = (struct usb_endpoint_descriptor*)(buffer + offset); index->eps_num++; } if (index->eps_num == USB_MAX_EP_NUM) break; offset += desc_length; } return true; } enum usb_fuzzer_event_type { USB_FUZZER_EVENT_INVALID, USB_FUZZER_EVENT_CONNECT, USB_FUZZER_EVENT_DISCONNECT, USB_FUZZER_EVENT_SUSPEND, USB_FUZZER_EVENT_RESUME, USB_FUZZER_EVENT_CONTROL, }; struct usb_fuzzer_event { uint32_t type; uint32_t length; char data[0]; }; struct usb_fuzzer_init { uint64_t speed; const char* driver_name; const char* device_name; }; struct usb_fuzzer_ep_io { uint16_t ep; uint16_t flags; uint32_t length; char data[0]; }; #define USB_FUZZER_IOCTL_INIT _IOW('U', 0, struct usb_fuzzer_init) #define USB_FUZZER_IOCTL_RUN _IO('U', 1) #define USB_FUZZER_IOCTL_EP0_READ _IOWR('U', 2, struct usb_fuzzer_event) #define USB_FUZZER_IOCTL_EP0_WRITE _IOW('U', 3, struct usb_fuzzer_ep_io) #define USB_FUZZER_IOCTL_EP_ENABLE _IOW('U', 4, struct usb_endpoint_descriptor) #define USB_FUZZER_IOCTL_EP_WRITE _IOW('U', 6, struct usb_fuzzer_ep_io) #define USB_FUZZER_IOCTL_EP_READ _IOWR('U', 7, struct usb_fuzzer_ep_io) #define USB_FUZZER_IOCTL_CONFIGURE _IO('U', 8) #define USB_FUZZER_IOCTL_VBUS_DRAW _IOW('U', 9, uint32_t) int usb_fuzzer_open() { return open("/sys/kernel/debug/usb-fuzzer", O_RDWR); } int usb_fuzzer_init(int fd, uint32_t speed, const char* driver, const char* device) { struct usb_fuzzer_init arg; arg.speed = speed; arg.driver_name = driver; arg.device_name = device; return ioctl(fd, USB_FUZZER_IOCTL_INIT, &arg); } int usb_fuzzer_run(int fd) { return ioctl(fd, USB_FUZZER_IOCTL_RUN, 0); } int usb_fuzzer_ep0_read(int fd, struct usb_fuzzer_event* event) { return ioctl(fd, USB_FUZZER_IOCTL_EP0_READ, event); } int usb_fuzzer_ep0_write(int fd, struct usb_fuzzer_ep_io* io) { return ioctl(fd, USB_FUZZER_IOCTL_EP0_WRITE, io); } int usb_fuzzer_ep_write(int fd, struct usb_fuzzer_ep_io* io) { return ioctl(fd, USB_FUZZER_IOCTL_EP_WRITE, io); } int usb_fuzzer_ep_read(int fd, struct usb_fuzzer_ep_io* io) { return ioctl(fd, USB_FUZZER_IOCTL_EP_READ, io); } int usb_fuzzer_ep_enable(int fd, struct usb_endpoint_descriptor* desc) { return ioctl(fd, USB_FUZZER_IOCTL_EP_ENABLE, desc); } int usb_fuzzer_configure(int fd) { return ioctl(fd, USB_FUZZER_IOCTL_CONFIGURE, 0); } int usb_fuzzer_vbus_draw(int fd, uint32_t power) { return ioctl(fd, USB_FUZZER_IOCTL_VBUS_DRAW, power); } #define USB_MAX_PACKET_SIZE 1024 struct usb_fuzzer_control_event { struct usb_fuzzer_event inner; struct usb_ctrlrequest ctrl; char data[USB_MAX_PACKET_SIZE]; }; struct usb_fuzzer_ep_io_data { struct usb_fuzzer_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 bool lookup_connect_response(struct vusb_connect_descriptors* descs, struct usb_device_index* index, struct usb_ctrlrequest* ctrl, char** response_data, uint32_t* response_length, bool* done) { uint8_t str_idx; 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 (str_idx >= descs->strs_len && descs->strs_len > 0) { str_idx = descs->strs_len - 1; } *response_data = descs->strs[str_idx].str; *response_length = descs->strs[str_idx].len; return true; case USB_DT_BOS: *response_data = descs->bos; *response_length = descs->bos_len; return true; case USB_DT_DEVICE_QUALIFIER: *response_data = descs->qual; *response_length = descs->qual_len; return true; default: exit(1); return false; } break; case USB_REQ_SET_CONFIGURATION: *response_length = 0; *response_data = NULL; *done = true; return true; 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) { int64_t speed = a0; int64_t dev_len = a1; char* dev = (char*)a2; struct vusb_connect_descriptors* descs = (struct vusb_connect_descriptors*)a3; if (!dev) { return -1; } struct usb_device_index index; memset(&index, 0, sizeof(index)); int rv = 0; rv = parse_usb_descriptor(dev, dev_len, &index); if (!rv) { return rv; } int fd = usb_fuzzer_open(); if (fd < 0) { return fd; } char device[32]; sprintf(&device[0], "dummy_udc.%llu", procid); rv = usb_fuzzer_init(fd, speed, "dummy_udc", &device[0]); if (rv < 0) { return rv; } rv = usb_fuzzer_run(fd); if (rv < 0) { return rv; } bool done = false; while (!done) { struct usb_fuzzer_control_event event; event.inner.type = 0; event.inner.length = sizeof(event.ctrl); rv = usb_fuzzer_ep0_read(fd, (struct usb_fuzzer_event*)&event); if (rv < 0) { return rv; } if (event.inner.type != USB_FUZZER_EVENT_CONTROL) continue; bool response_found = false; char* response_data = NULL; uint32_t response_length = 0; response_found = lookup_connect_response( descs, &index, &event.ctrl, &response_data, &response_length, &done); if (!response_found) { return -1; } if (done) { rv = usb_fuzzer_vbus_draw(fd, index.config->bMaxPower); if (rv < 0) { return rv; } rv = usb_fuzzer_configure(fd); if (rv < 0) { return rv; } unsigned ep; for (ep = 0; ep < index.eps_num; ep++) { rv = usb_fuzzer_ep_enable(fd, index.eps[ep]); if (rv < 0) { } else { } } } struct usb_fuzzer_ep_io_data response; response.inner.ep = 0; response.inner.flags = 0; if (response_length > sizeof(response.data)) response_length = 0; response.inner.length = response_length; if (response_data) memcpy(&response.data[0], response_data, response_length); if (event.ctrl.wLength < response.inner.length) response.inner.length = event.ctrl.wLength; rv = usb_fuzzer_ep0_write(fd, (struct usb_fuzzer_ep_io*)&response); if (rv < 0) { return rv; } } sleep_ms(200); return fd; } int main(void) { syscall(__NR_mmap, 0x20000000, 0x1000000, 3, 0x32, -1, 0); *(uint8_t*)0x20000bc0 = 0x12; *(uint8_t*)0x20000bc1 = 1; *(uint16_t*)0x20000bc2 = 0; *(uint8_t*)0x20000bc4 = 0x94; *(uint8_t*)0x20000bc5 = 0x3b; *(uint8_t*)0x20000bc6 = 0xbf; *(uint8_t*)0x20000bc7 = 8; *(uint16_t*)0x20000bc8 = 0x711; *(uint16_t*)0x20000bca = 0x550; *(uint16_t*)0x20000bcc = 0xda7e; *(uint8_t*)0x20000bce = 0x25; *(uint8_t*)0x20000bcf = 1; *(uint8_t*)0x20000bd0 = 1; *(uint8_t*)0x20000bd1 = 1; *(uint8_t*)0x20000bd2 = 9; *(uint8_t*)0x20000bd3 = 2; *(uint16_t*)0x20000bd4 = 0x89; *(uint8_t*)0x20000bd6 = 1; *(uint8_t*)0x20000bd7 = 0xe3; *(uint8_t*)0x20000bd8 = 6; *(uint8_t*)0x20000bd9 = 0x20; *(uint8_t*)0x20000bda = 0x92; *(uint8_t*)0x20000bdb = 9; *(uint8_t*)0x20000bdc = 4; *(uint8_t*)0x20000bdd = 0x98; *(uint8_t*)0x20000bde = -1; *(uint8_t*)0x20000bdf = 6; *(uint8_t*)0x20000be0 = 0xa0; *(uint8_t*)0x20000be1 = 0x28; *(uint8_t*)0x20000be2 = 0x85; *(uint8_t*)0x20000be3 = 1; *(uint8_t*)0x20000be4 = 3; *(uint8_t*)0x20000be5 = 0x24; *(uint8_t*)0x20000be6 = 2; *(uint8_t*)0x20000be7 = 5; *(uint8_t*)0x20000be8 = 0x24; *(uint8_t*)0x20000be9 = 6; *(uint8_t*)0x20000bea = 0x32; *(uint8_t*)0x20000beb = 0; *(uint8_t*)0x20000bec = 6; *(uint8_t*)0x20000bed = 0x24; *(uint8_t*)0x20000bee = 0x1a; *(uint16_t*)0x20000bef = 9; *(uint8_t*)0x20000bf1 = -1; *(uint8_t*)0x20000bf2 = 7; *(uint8_t*)0x20000bf3 = 0x24; *(uint8_t*)0x20000bf4 = 0x14; *(uint16_t*)0x20000bf5 = 1; *(uint16_t*)0x20000bf7 = 0x3ff; *(uint8_t*)0x20000bf9 = 5; *(uint8_t*)0x20000bfa = 0x24; *(uint8_t*)0x20000bfb = 0; *(uint16_t*)0x20000bfc = 1; *(uint8_t*)0x20000bfe = 8; *(uint8_t*)0x20000bff = 0x24; *(uint8_t*)0x20000c00 = 7; *(uint8_t*)0x20000c01 = 4; *(uint16_t*)0x20000c02 = 6; *(uint16_t*)0x20000c04 = 0x7fff; *(uint8_t*)0x20000c06 = 5; *(uint8_t*)0x20000c07 = 0x24; *(uint8_t*)0x20000c08 = 6; *(uint8_t*)0x20000c09 = 0x1f; *(uint8_t*)0x20000c0a = 0x90; *(uint8_t*)0x20000c0b = 6; *(uint8_t*)0x20000c0c = 0x24; *(uint8_t*)0x20000c0d = 0x1a; *(uint16_t*)0x20000c0e = 0xf800; *(uint8_t*)0x20000c10 = 0xfc; *(uint8_t*)0x20000c11 = 3; *(uint8_t*)0x20000c12 = 0x24; *(uint8_t*)0x20000c13 = 0x1f; *(uint8_t*)0x20000c14 = 5; *(uint8_t*)0x20000c15 = 0x24; *(uint8_t*)0x20000c16 = 0; *(uint16_t*)0x20000c17 = 0; *(uint8_t*)0x20000c19 = 6; *(uint8_t*)0x20000c1a = 0x24; *(uint8_t*)0x20000c1b = 0x1a; *(uint16_t*)0x20000c1c = 0xf000; *(uint8_t*)0x20000c1e = 2; *(uint8_t*)0x20000c1f = 9; *(uint8_t*)0x20000c20 = 5; *(uint8_t*)0x20000c21 = 0; *(uint8_t*)0x20000c22 = 0; *(uint16_t*)0x20000c23 = 0; *(uint8_t*)0x20000c25 = -1; *(uint8_t*)0x20000c26 = 1; *(uint8_t*)0x20000c27 = 5; *(uint8_t*)0x20000c28 = 2; *(uint8_t*)0x20000c29 = 7; *(uint8_t*)0x20000c2a = 9; *(uint8_t*)0x20000c2b = 5; *(uint8_t*)0x20000c2c = 0xc4; *(uint8_t*)0x20000c2d = 0; *(uint16_t*)0x20000c2e = 0x5323; *(uint8_t*)0x20000c30 = 0x81; *(uint8_t*)0x20000c31 = -1; *(uint8_t*)0x20000c32 = 0xa9; *(uint8_t*)0x20000c33 = 9; *(uint8_t*)0x20000c34 = 5; *(uint8_t*)0x20000c35 = 0xd; *(uint8_t*)0x20000c36 = 3; *(uint16_t*)0x20000c37 = 7; *(uint8_t*)0x20000c39 = 0x93; *(uint8_t*)0x20000c3a = -1; *(uint8_t*)0x20000c3b = 1; *(uint8_t*)0x20000c3c = 9; *(uint8_t*)0x20000c3d = 5; *(uint8_t*)0x20000c3e = 0xf; *(uint8_t*)0x20000c3f = 0x10; *(uint16_t*)0x20000c40 = 0x7fff; *(uint8_t*)0x20000c42 = 5; *(uint8_t*)0x20000c43 = 9; *(uint8_t*)0x20000c44 = 0; *(uint8_t*)0x20000c45 = 2; *(uint8_t*)0x20000c46 = 0x30; *(uint8_t*)0x20000c47 = 9; *(uint8_t*)0x20000c48 = 5; *(uint8_t*)0x20000c49 = 3; *(uint8_t*)0x20000c4a = 0; *(uint16_t*)0x20000c4b = 4; *(uint8_t*)0x20000c4d = 2; *(uint8_t*)0x20000c4e = 3; *(uint8_t*)0x20000c4f = 4; *(uint8_t*)0x20000c50 = 2; *(uint8_t*)0x20000c51 = 0x2d; *(uint8_t*)0x20000c52 = 9; *(uint8_t*)0x20000c53 = 5; *(uint8_t*)0x20000c54 = 4; *(uint8_t*)0x20000c55 = 0; *(uint16_t*)0x20000c56 = 0xfff; *(uint8_t*)0x20000c58 = 0; *(uint8_t*)0x20000c59 = 0; *(uint8_t*)0x20000c5a = 0x35; *(uint32_t*)0x20000480 = 0; *(uint64_t*)0x20000484 = 0; *(uint32_t*)0x2000048c = 0; *(uint64_t*)0x20000490 = 0; *(uint32_t*)0x20000498 = 4; *(uint32_t*)0x2000049c = 0; *(uint64_t*)0x200004a0 = 0; *(uint32_t*)0x200004a8 = 0; *(uint64_t*)0x200004ac = 0; *(uint32_t*)0x200004b4 = 0; *(uint64_t*)0x200004b8 = 0; *(uint32_t*)0x200004c0 = 0; *(uint64_t*)0x200004c4 = 0; syz_usb_connect(3, 0x9b, 0x20000bc0, 0x20000480); return 0; }