// https://syzkaller.appspot.com/bug?id=78aca5360820e5e91ba12dec842dabeb5349b431 // 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_DEBUG 0 #define USB_MAX_IFACE_NUM 4 #define USB_MAX_EP_NUM 32 struct usb_iface_index { struct usb_interface_descriptor* iface; struct usb_endpoint_descriptor* eps[USB_MAX_EP_NUM]; unsigned eps_num; }; struct usb_device_index { struct usb_device_descriptor* dev; struct usb_config_descriptor* config; unsigned config_length; struct usb_iface_index ifaces[USB_MAX_IFACE_NUM]; unsigned ifaces_num; }; 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->config_length = length - sizeof(*index->dev); 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; } 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) iface->eps[iface->eps_num++] = (struct usb_endpoint_descriptor*)(buffer + offset); } 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_EVENT_FETCH _IOR('U', 2, struct usb_fuzzer_event) #define USB_FUZZER_IOCTL_EP0_WRITE _IOW('U', 3, struct usb_fuzzer_ep_io) #define USB_FUZZER_IOCTL_EP0_READ _IOWR('U', 4, struct usb_fuzzer_ep_io) #define USB_FUZZER_IOCTL_EP_ENABLE _IOW('U', 5, struct usb_endpoint_descriptor) #define USB_FUZZER_IOCTL_EP_WRITE _IOW('U', 7, struct usb_fuzzer_ep_io) #define USB_FUZZER_IOCTL_EP_READ _IOWR('U', 8, struct usb_fuzzer_ep_io) #define USB_FUZZER_IOCTL_CONFIGURE _IO('U', 9) #define USB_FUZZER_IOCTL_VBUS_DRAW _IOW('U', 10, 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_event_fetch(int fd, struct usb_fuzzer_event* event) { return ioctl(fd, USB_FUZZER_IOCTL_EVENT_FETCH, 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_ep0_read(int fd, struct usb_fuzzer_ep_io* io) { return ioctl(fd, USB_FUZZER_IOCTL_EP0_READ, 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 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(struct vusb_connect_descriptors* descs, struct usb_device_index* index, struct usb_ctrlrequest* ctrl, char** response_data, uint32_t* response_length) { 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 (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: *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; } 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_event_fetch(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; if (event.ctrl.bRequestType & USB_DIR_IN) { response_found = lookup_connect_response( descs, &index, &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 = 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.ifaces[0].eps_num; ep++) { rv = usb_fuzzer_ep_enable(fd, index.ifaces[0].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; 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_fuzzer_ep0_write(fd, (struct usb_fuzzer_ep_io*)&response); } else { rv = usb_fuzzer_ep0_read(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*)0x20000080 = 0x12; *(uint8_t*)0x20000081 = 1; *(uint16_t*)0x20000082 = 0x250; *(uint8_t*)0x20000084 = 0xd8; *(uint8_t*)0x20000085 = 0x8e; *(uint8_t*)0x20000086 = 0xc5; *(uint8_t*)0x20000087 = 0x10; *(uint16_t*)0x20000088 = 0x8087; *(uint16_t*)0x2000008a = 0x7d6; *(uint16_t*)0x2000008c = 0xcf33; *(uint8_t*)0x2000008e = 1; *(uint8_t*)0x2000008f = 2; *(uint8_t*)0x20000090 = 3; *(uint8_t*)0x20000091 = 1; *(uint8_t*)0x20000092 = 9; *(uint8_t*)0x20000093 = 2; *(uint16_t*)0x20000094 = 0x12a; *(uint8_t*)0x20000096 = 1; *(uint8_t*)0x20000097 = 0; *(uint8_t*)0x20000098 = 9; *(uint8_t*)0x20000099 = 0x40; *(uint8_t*)0x2000009a = 0x6f; *(uint8_t*)0x2000009b = 9; *(uint8_t*)0x2000009c = 4; *(uint8_t*)0x2000009d = 0xe7; *(uint8_t*)0x2000009e = 8; *(uint8_t*)0x2000009f = 7; *(uint8_t*)0x200000a0 = 0x24; *(uint8_t*)0x200000a1 = 0x4d; *(uint8_t*)0x200000a2 = 0x1a; *(uint8_t*)0x200000a3 = 4; *(uint8_t*)0x200000a4 = 5; *(uint8_t*)0x200000a5 = 0x24; *(uint8_t*)0x200000a6 = 6; *(uint8_t*)0x200000a7 = 0; *(uint8_t*)0x200000a8 = 0; *(uint8_t*)0x200000a9 = 5; *(uint8_t*)0x200000aa = 0x24; *(uint8_t*)0x200000ab = 0; *(uint16_t*)0x200000ac = 0x8001; *(uint8_t*)0x200000ae = 0xd; *(uint8_t*)0x200000af = 0x24; *(uint8_t*)0x200000b0 = 0xf; *(uint8_t*)0x200000b1 = 1; *(uint32_t*)0x200000b2 = 6; *(uint16_t*)0x200000b6 = 3; *(uint16_t*)0x200000b8 = 1; *(uint8_t*)0x200000ba = 1; *(uint8_t*)0x200000bb = 8; *(uint8_t*)0x200000bc = 0x24; *(uint8_t*)0x200000bd = 0x1c; *(uint16_t*)0x200000be = 9; *(uint8_t*)0x200000c0 = 1; *(uint16_t*)0x200000c1 = 6; *(uint8_t*)0x200000c3 = 5; *(uint8_t*)0x200000c4 = 0x24; *(uint8_t*)0x200000c5 = 0x15; *(uint16_t*)0x200000c6 = 0xce; *(uint8_t*)0x200000c8 = 9; *(uint8_t*)0x200000c9 = 0x21; *(uint16_t*)0x200000ca = 4; *(uint8_t*)0x200000cc = 7; *(uint8_t*)0x200000cd = 1; *(uint8_t*)0x200000ce = 0x22; *(uint16_t*)0x200000cf = 0x2bd; *(uint8_t*)0x200000d1 = 9; *(uint8_t*)0x200000d2 = 5; *(uint8_t*)0x200000d3 = 7; *(uint8_t*)0x200000d4 = 0; *(uint16_t*)0x200000d5 = 0x3ef; *(uint8_t*)0x200000d7 = 9; *(uint8_t*)0x200000d8 = 6; *(uint8_t*)0x200000d9 = 0xd3; *(uint8_t*)0x200000da = 9; *(uint8_t*)0x200000db = 5; *(uint8_t*)0x200000dc = 5; *(uint8_t*)0x200000dd = 0xc; *(uint16_t*)0x200000de = 0x245; *(uint8_t*)0x200000e0 = 0; *(uint8_t*)0x200000e1 = 0x20; *(uint8_t*)0x200000e2 = 5; *(uint8_t*)0x200000e3 = 2; *(uint8_t*)0x200000e4 = 0x24; *(uint8_t*)0x200000e5 = 0xa6; *(uint8_t*)0x200000e6 = 4; memcpy((void*)0x200000e7, "\xd5\xd5\x72\xe1\x86\x7c\x9b\x25\x33\xeb\x34\xa6\x8d\x82\x77\xe7\x0e" "\xba\xf7\xba\xae\x5a\x63\x80\xa9\xa1\x23\xcc\xe3\x40\x9e\xa4\xc9\x8e" "\x8e\xed\x0d\x80\xd1\x0f\x96\x21\xe6\x29\x46\x37\x6d\x6e\x93\x26\x87" "\xe8\x01\x23\x27\xb4\x4c\xd3\xb5\xe1\xd2\x17\x61\x17\x3d\x36\x45\x29" "\xe3\x19\x85\xa6\xd2\xd9\x5e\x50\x27\x67\x7f\xa5\x1d\xd1\xca\x6a\x9b" "\x27\xb6\x8e\x0f\x7d\x6a\x16\x6a\x1a\x70\x92\xd3\x04\x7c\xcd\xd4\xa3" "\xf6\xae\x6e\x10\xff\xdc\xd7\x1c\x91\xdc\xe2\x35\xe7\x57\x7c\x22\x1f" "\xed\x66\xd2\x5b\x47\xb3\x63\x04\x68\x24\xec\x8f\x78\xcc\x36\x91\x21" "\x9d\x6e\x31\x58\x38\x15\xd5\x85\x38\x09\x4e\xd0\xbc\x0f\x2f\xd3\x4b" "\xd7\x48\x02\x5a\x41\x4f\xb0\x38\x46\xb9\x89", 164); *(uint8_t*)0x2000018b = 9; *(uint8_t*)0x2000018c = 5; *(uint8_t*)0x2000018d = 3; *(uint8_t*)0x2000018e = 0x10; *(uint16_t*)0x2000018f = 0x33a; *(uint8_t*)0x20000191 = 0; *(uint8_t*)0x20000192 = 1; *(uint8_t*)0x20000193 = 1; *(uint8_t*)0x20000194 = 2; *(uint8_t*)0x20000195 = 5; *(uint8_t*)0x20000196 = 2; *(uint8_t*)0x20000197 = 0xb; *(uint8_t*)0x20000198 = 9; *(uint8_t*)0x20000199 = 5; *(uint8_t*)0x2000019a = 0xe; *(uint8_t*)0x2000019b = 5; *(uint16_t*)0x2000019c = 0x24c; *(uint8_t*)0x2000019e = 4; *(uint8_t*)0x2000019f = 4; *(uint8_t*)0x200001a0 = 0xf7; *(uint8_t*)0x200001a1 = 9; *(uint8_t*)0x200001a2 = 5; *(uint8_t*)0x200001a3 = 0x82; *(uint8_t*)0x200001a4 = 0xc; *(uint16_t*)0x200001a5 = 0x353; *(uint8_t*)0x200001a7 = 0; *(uint8_t*)0x200001a8 = 0x1e; *(uint8_t*)0x200001a9 = 0; *(uint8_t*)0x200001aa = 9; *(uint8_t*)0x200001ab = 5; *(uint8_t*)0x200001ac = 0x83; *(uint8_t*)0x200001ad = 2; *(uint16_t*)0x200001ae = 0xe9; *(uint8_t*)0x200001b0 = 7; *(uint8_t*)0x200001b1 = 0; *(uint8_t*)0x200001b2 = 0x40; *(uint8_t*)0x200001b3 = 9; *(uint8_t*)0x200001b4 = 5; *(uint8_t*)0x200001b5 = 8; *(uint8_t*)0x200001b6 = 0; *(uint16_t*)0x200001b7 = 0x2f0; *(uint8_t*)0x200001b9 = 3; *(uint8_t*)0x200001ba = 7; *(uint8_t*)0x200001bb = 7; *(uint32_t*)0x200014c0 = 0; *(uint64_t*)0x200014c4 = 0; *(uint32_t*)0x200014cc = 0; *(uint64_t*)0x200014d0 = 0; *(uint32_t*)0x200014d8 = 2; *(uint32_t*)0x200014dc = 0; *(uint64_t*)0x200014e0 = 0; *(uint32_t*)0x200014e8 = 0; *(uint64_t*)0x200014ec = 0; syz_usb_connect(0x8798acebec3c8611, 0x13c, 0x20000080, 0x200014c0); return 0; }