// https://syzkaller.appspot.com/bug?id=f071ffb57ef8ca3af76ba352e8ea4e6641a69cfa // 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 #ifndef SYS_mmap #define SYS_mmap 197 #endif static unsigned long long procid; static void kill_and_wait(int pid, int* status) { kill(pid, SIGKILL); while (waitpid(-1, status, 0) != pid) { } } 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 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 { pthread_mutex_t mu; pthread_cond_t cv; int state; } event_t; static void event_init(event_t* ev) { if (pthread_mutex_init(&ev->mu, 0)) exit(1); if (pthread_cond_init(&ev->cv, 0)) exit(1); ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { pthread_mutex_lock(&ev->mu); if (ev->state) exit(1); ev->state = 1; pthread_mutex_unlock(&ev->mu); pthread_cond_broadcast(&ev->cv); } static void event_wait(event_t* ev) { pthread_mutex_lock(&ev->mu); while (!ev->state) pthread_cond_wait(&ev->cv, &ev->mu); pthread_mutex_unlock(&ev->mu); } static int event_isset(event_t* ev) { pthread_mutex_lock(&ev->mu); int res = ev->state; pthread_mutex_unlock(&ev->mu); return res; } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; pthread_mutex_lock(&ev->mu); for (;;) { if (ev->state) break; uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; pthread_cond_timedwait(&ev->cv, &ev->mu, &ts); now = current_time_ms(); if (now - start > timeout) break; } int res = ev->state; pthread_mutex_unlock(&ev->mu); return res; } #define BITMASK(bf_off, bf_len) (((1ull << (bf_len)) - 1) << (bf_off)) #define STORE_BY_BITMASK(type, htobe, addr, val, bf_off, bf_len) \ *(type*)(addr) = \ htobe((htobe(*(type*)(addr)) & ~BITMASK((bf_off), (bf_len))) | \ (((type)(val) << (bf_off)) & BITMASK((bf_off), (bf_len)))) struct usb_endpoint_descriptor { uint8_t bLength; uint8_t bDescriptorType; uint8_t bEndpointAddress; uint8_t bmAttributes; uint16_t wMaxPacketSize; uint8_t bInterval; uint8_t bRefresh; uint8_t bSynchAddress; } __attribute__((packed)); struct usb_device_descriptor { uint8_t bLength; uint8_t bDescriptorType; uint16_t bcdUSB; uint8_t bDeviceClass; uint8_t bDeviceSubClass; uint8_t bDeviceProtocol; uint8_t bMaxPacketSize0; uint16_t idVendor; uint16_t idProduct; uint16_t bcdDevice; uint8_t iManufacturer; uint8_t iProduct; uint8_t iSerialNumber; uint8_t bNumConfigurations; } __attribute__((packed)); struct usb_config_descriptor { uint8_t bLength; uint8_t bDescriptorType; uint16_t wTotalLength; uint8_t bNumInterfaces; uint8_t bConfigurationValue; uint8_t iConfiguration; uint8_t bmAttributes; uint8_t bMaxPower; } __attribute__((packed)); struct usb_interface_descriptor { uint8_t bLength; uint8_t bDescriptorType; uint8_t bInterfaceNumber; uint8_t bAlternateSetting; uint8_t bNumEndpoints; uint8_t bInterfaceClass; uint8_t bInterfaceSubClass; uint8_t bInterfaceProtocol; uint8_t iInterface; } __attribute__((packed)); struct usb_ctrlrequest { uint8_t bRequestType; uint8_t bRequest; uint16_t wValue; uint16_t wIndex; uint16_t wLength; } __attribute__((packed)); struct usb_qualifier_descriptor { uint8_t bLength; uint8_t bDescriptorType; uint16_t bcdUSB; uint8_t bDeviceClass; uint8_t bDeviceSubClass; uint8_t bDeviceProtocol; uint8_t bMaxPacketSize0; uint8_t bNumConfigurations; uint8_t bRESERVED; } __attribute__((packed)); #define USB_TYPE_MASK (0x03 << 5) #define USB_TYPE_STANDARD (0x00 << 5) #define USB_TYPE_CLASS (0x01 << 5) #define USB_TYPE_VENDOR (0x02 << 5) #define USB_TYPE_RESERVED (0x03 << 5) #define USB_DT_DEVICE 0x01 #define USB_DT_CONFIG 0x02 #define USB_DT_STRING 0x03 #define USB_DT_INTERFACE 0x04 #define USB_DT_ENDPOINT 0x05 #define USB_DT_DEVICE_QUALIFIER 0x06 #define USB_DT_OTHER_SPEED_CONFIG 0x07 #define USB_DT_INTERFACE_POWER 0x08 #define USB_DT_OTG 0x09 #define USB_DT_DEBUG 0x0a #define USB_DT_INTERFACE_ASSOCIATION 0x0b #define USB_DT_SECURITY 0x0c #define USB_DT_KEY 0x0d #define USB_DT_ENCRYPTION_TYPE 0x0e #define USB_DT_BOS 0x0f #define USB_DT_DEVICE_CAPABILITY 0x10 #define USB_DT_WIRELESS_ENDPOINT_COMP 0x11 #define USB_DT_WIRE_ADAPTER 0x21 #define USB_DT_RPIPE 0x22 #define USB_DT_CS_RADIO_CONTROL 0x23 #define USB_DT_PIPE_USAGE 0x24 #define USB_DT_SS_ENDPOINT_COMP 0x30 #define USB_DT_SSP_ISOC_ENDPOINT_COMP 0x31 #define USB_REQ_GET_STATUS 0x00 #define USB_REQ_CLEAR_FEATURE 0x01 #define USB_REQ_SET_FEATURE 0x03 #define USB_REQ_SET_ADDRESS 0x05 #define USB_REQ_GET_DESCRIPTOR 0x06 #define USB_REQ_SET_DESCRIPTOR 0x07 #define USB_REQ_GET_CONFIGURATION 0x08 #define USB_REQ_SET_CONFIGURATION 0x09 #define USB_REQ_GET_INTERFACE 0x0A #define USB_REQ_SET_INTERFACE 0x0B #define USB_REQ_SYNCH_FRAME 0x0C #define USB_REQ_SET_SEL 0x30 #define USB_REQ_SET_ISOCH_DELAY 0x31 #define USB_REQ_SET_ENCRYPTION 0x0D #define USB_REQ_GET_ENCRYPTION 0x0E #define USB_REQ_RPIPE_ABORT 0x0E #define USB_REQ_SET_HANDSHAKE 0x0F #define USB_REQ_RPIPE_RESET 0x0F #define USB_REQ_GET_HANDSHAKE 0x10 #define USB_REQ_SET_CONNECTION 0x11 #define USB_REQ_SET_SECURITY_DATA 0x12 #define USB_REQ_GET_SECURITY_DATA 0x13 #define USB_REQ_SET_WUSB_DATA 0x14 #define USB_REQ_LOOPBACK_DATA_WRITE 0x15 #define USB_REQ_LOOPBACK_DATA_READ 0x16 #define USB_REQ_SET_INTERFACE_DS 0x17 #define USB_REQ_GET_PARTNER_PDO 20 #define USB_REQ_GET_BATTERY_STATUS 21 #define USB_REQ_SET_PDO 22 #define USB_REQ_GET_VDM 23 #define USB_REQ_SEND_VDM 24 #define USB_MAX_IFACE_NUM 4 #define USB_MAX_EP_NUM 32 #define USB_MAX_FDS 6 struct usb_endpoint_index { struct usb_endpoint_descriptor desc; int handle; }; struct usb_iface_index { struct usb_interface_descriptor* iface; uint8_t bInterfaceNumber; uint8_t bAlternateSetting; uint8_t bInterfaceClass; struct usb_endpoint_index 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; }; struct usb_info { int fd; struct usb_device_index index; }; static struct usb_info usb_devices[USB_MAX_FDS]; static struct usb_device_index* lookup_usb_index(int fd) { for (int i = 0; i < USB_MAX_FDS; i++) { if (__atomic_load_n(&usb_devices[i].fd, __ATOMIC_ACQUIRE) == fd) return &usb_devices[i].index; } return NULL; } static int usb_devices_num; static bool parse_usb_descriptor(const 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].desc, buffer + offset, sizeof(iface->eps[iface->eps_num].desc)); iface->eps_num++; } } offset += desc_length; } return true; } static struct usb_device_index* add_usb_index(int fd, const char* dev, size_t dev_len) { int i = __atomic_fetch_add(&usb_devices_num, 1, __ATOMIC_RELAXED); if (i >= USB_MAX_FDS) return NULL; if (!parse_usb_descriptor(dev, dev_len, &usb_devices[i].index)) return NULL; __atomic_store_n(&usb_devices[i].fd, fd, __ATOMIC_RELEASE); return &usb_devices[i].index; } 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_in(int fd, const struct vusb_connect_descriptors* descs, const struct usb_ctrlrequest* ctrl, struct usb_qualifier_descriptor* qual, 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) { 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_data = (char*)qual; *response_length = sizeof(*qual); return true; } *response_data = descs->qual; *response_length = descs->qual_len; return true; default: break; } break; default: break; } break; default: break; } return false; } typedef bool (*lookup_connect_out_response_t)( int fd, const struct vusb_connect_descriptors* descs, const struct usb_ctrlrequest* ctrl, bool* done); static bool lookup_connect_response_out_generic( int fd, const struct vusb_connect_descriptors* descs, const struct usb_ctrlrequest* ctrl, bool* done) { switch (ctrl->bRequestType & USB_TYPE_MASK) { case USB_TYPE_STANDARD: switch (ctrl->bRequest) { case USB_REQ_SET_CONFIGURATION: *done = true; return true; default: break; } break; } return false; } static int vhci_open(void) { char path[1024]; snprintf(path, sizeof(path), "/dev/vhci%llu", procid); return open(path, O_RDWR); } static int vhci_setport(int fd, u_int port) { struct vhci_ioc_set_port args; args.port = port; return ioctl(fd, VHCI_IOC_SET_PORT, &args); } static int vhci_usb_attach(int fd) { return ioctl(fd, VHCI_IOC_USB_ATTACH, NULL); } static int vhci_usb_recv(int fd, void* buf, size_t size) { uint8_t* ptr = (uint8_t*)buf; while (1) { ssize_t done = read(fd, ptr, size); if (done < 0) return -1; if ((size_t)done == size) return 0; size -= done; ptr += done; } } static int vhci_usb_send(int fd, void* buf, size_t size) { uint8_t* ptr = (uint8_t*)buf; while (1) { ssize_t done = write(fd, ptr, size); if (done <= 0) return -1; if ((size_t)done == size) return 0; size -= done; ptr += done; } } static volatile long syz_usb_connect_impl(int fd, uint64_t speed, uint64_t dev_len, const char* dev, const struct vusb_connect_descriptors* descs, lookup_connect_out_response_t lookup_connect_response_out) { struct usb_device_index* index = add_usb_index(fd, dev, dev_len); if (!index) { return -1; } if (vhci_setport(fd, 1)) exit(1); if (vhci_usb_attach(fd)) { return -1; } bool done = false; while (!done) { vhci_request_t req; if (vhci_usb_recv(fd, &req, sizeof(req))) { return -1; } if (req.type != VHCI_REQ_CTRL) { return -1; } char* response_data = NULL; uint32_t response_length = 0; struct usb_qualifier_descriptor qual; char data[4096]; if (req.u.ctrl.bmRequestType & UE_DIR_IN) { if (!lookup_connect_response_in( fd, descs, (const struct usb_ctrlrequest*)&req.u.ctrl, &qual, &response_data, &response_length)) { return -1; } } else { if (!lookup_connect_response_out( fd, descs, (const struct usb_ctrlrequest*)&req.u.ctrl, &done)) { return -1; } response_data = NULL; response_length = UGETW(req.u.ctrl.wLength); } if ((req.u.ctrl.bmRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD && req.u.ctrl.bRequest == USB_REQ_SET_CONFIGURATION) { } if (response_length > sizeof(data)) response_length = 0; if ((uint32_t)UGETW(req.u.ctrl.wLength) < response_length) response_length = UGETW(req.u.ctrl.wLength); if (response_data) memcpy(data, response_data, response_length); else memset(data, 0, response_length); int rv = 0; if (req.u.ctrl.bmRequestType & UE_DIR_IN) { if (response_length > 0) { vhci_response_t res; res.size = response_length; rv = vhci_usb_send(fd, &res, sizeof(res)); if (rv == 0) rv = vhci_usb_send(fd, data, response_length); } } else { rv = vhci_usb_recv(fd, data, response_length); } if (rv < 0) { return -1; } } sleep_ms(200); return fd; } 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; const char* dev = (const char*)a2; const struct vusb_connect_descriptors* descs = (const struct vusb_connect_descriptors*)a3; if (!dev) { return -1; } int fd = vhci_open(); if (fd < 0) exit(1); long res = syz_usb_connect_impl(fd, speed, dev_len, dev, descs, &lookup_connect_response_out_generic); close(fd); return res; } 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 execute_one(void) { int i, call, thread; for (call = 0; call < 3; 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); if (call == 1) break; event_timedwait(&th->done, 50 + (call == 0 ? 3000 : 0) + (call == 1 ? 3000 : 0) + (call == 2 ? 3000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS 0 static void loop(void) { int iter = 0; for (;; iter++) { int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } void execute_call(int call) { switch (call) { case 0: *(uint8_t*)0x20000000 = 0x12; *(uint8_t*)0x20000001 = 1; *(uint16_t*)0x20000002 = 0; *(uint8_t*)0x20000004 = 0xa; *(uint8_t*)0x20000005 = 0xa4; *(uint8_t*)0x20000006 = 0x21; *(uint8_t*)0x20000007 = 0x20; *(uint16_t*)0x20000008 = 0x18c5; *(uint16_t*)0x2000000a = 2; *(uint16_t*)0x2000000c = 0xfa1e; *(uint8_t*)0x2000000e = 1; *(uint8_t*)0x2000000f = 2; *(uint8_t*)0x20000010 = 3; *(uint8_t*)0x20000011 = 1; *(uint8_t*)0x20000012 = 9; *(uint8_t*)0x20000013 = 2; *(uint16_t*)0x20000014 = 0x4d; *(uint8_t*)0x20000016 = 3; *(uint8_t*)0x20000017 = 0; *(uint8_t*)0x20000018 = 0; *(uint8_t*)0x20000019 = 0; *(uint8_t*)0x2000001a = 0; *(uint8_t*)0x2000001b = 9; *(uint8_t*)0x2000001c = 4; *(uint8_t*)0x2000001d = 0x58; *(uint8_t*)0x2000001e = 0; *(uint8_t*)0x2000001f = 0; *(uint8_t*)0x20000020 = 0x26; *(uint8_t*)0x20000021 = 0x4d; *(uint8_t*)0x20000022 = 0xc0; *(uint8_t*)0x20000023 = 0; *(uint8_t*)0x20000024 = 5; *(uint8_t*)0x20000025 = 0x24; *(uint8_t*)0x20000026 = 6; *(uint8_t*)0x20000027 = 0; *(uint8_t*)0x20000028 = 0; *(uint8_t*)0x20000029 = 5; *(uint8_t*)0x2000002a = 0x24; *(uint8_t*)0x2000002b = 0; *(uint16_t*)0x2000002c = 0; *(uint8_t*)0x2000002e = 0xd; *(uint8_t*)0x2000002f = 0x24; *(uint8_t*)0x20000030 = 0xf; *(uint8_t*)0x20000031 = 1; *(uint32_t*)0x20000032 = 0; *(uint16_t*)0x20000036 = 0; *(uint16_t*)0x20000038 = 7; *(uint8_t*)0x2000003a = 0; *(uint8_t*)0x2000003b = 9; *(uint8_t*)0x2000003c = 4; *(uint8_t*)0x2000003d = 0xfc; *(uint8_t*)0x2000003e = 0; *(uint8_t*)0x2000003f = 2; *(uint8_t*)0x20000040 = 0x1c; *(uint8_t*)0x20000041 = 0x10; *(uint8_t*)0x20000042 = 0xa0; *(uint8_t*)0x20000043 = 0; *(uint8_t*)0x20000044 = 9; *(uint8_t*)0x20000045 = 5; *(uint8_t*)0x20000046 = 0xd; *(uint8_t*)0x20000047 = 1; *(uint16_t*)0x20000048 = 0x400; *(uint8_t*)0x2000004a = 0; *(uint8_t*)0x2000004b = 0; *(uint8_t*)0x2000004c = 0; *(uint8_t*)0x2000004d = 9; *(uint8_t*)0x2000004e = 5; *(uint8_t*)0x2000004f = 0; *(uint8_t*)0x20000050 = 0; *(uint16_t*)0x20000051 = 0; *(uint8_t*)0x20000053 = 0; *(uint8_t*)0x20000054 = 0; *(uint8_t*)0x20000055 = 0; *(uint8_t*)0x20000056 = 9; *(uint8_t*)0x20000057 = 4; *(uint8_t*)0x20000058 = 0; *(uint8_t*)0x20000059 = 0; *(uint8_t*)0x2000005a = 0; *(uint8_t*)0x2000005b = 0xdc; *(uint8_t*)0x2000005c = 0xa5; *(uint8_t*)0x2000005d = 0x43; *(uint8_t*)0x2000005e = 0; syz_usb_connect(/*speed=*/0, /*dev_len=*/0x5f, /*dev=*/0x20000000, /*conn_descs=*/0); break; case 1: *(uint8_t*)0x20000080 = 0x12; *(uint8_t*)0x20000081 = 1; *(uint16_t*)0x20000082 = 0x250; *(uint8_t*)0x20000084 = 0; *(uint8_t*)0x20000085 = 0; *(uint8_t*)0x20000086 = 0; *(uint8_t*)0x20000087 = -1; *(uint16_t*)0x20000088 = 0x1d6b; *(uint16_t*)0x2000008a = 0x101; *(uint16_t*)0x2000008c = 0x40; *(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 = 0xdc; *(uint8_t*)0x20000096 = 3; *(uint8_t*)0x20000097 = 1; *(uint8_t*)0x20000098 = 9; *(uint8_t*)0x20000099 = 0x90; *(uint8_t*)0x2000009a = 1; *(uint8_t*)0x2000009b = 9; *(uint8_t*)0x2000009c = 4; *(uint8_t*)0x2000009d = 0; *(uint8_t*)0x2000009e = 0; *(uint8_t*)0x2000009f = 0; *(uint8_t*)0x200000a0 = 1; *(uint8_t*)0x200000a1 = 1; *(uint8_t*)0x200000a2 = 0; *(uint8_t*)0x200000a3 = 0; *(uint8_t*)0x200000a4 = 0xa; *(uint8_t*)0x200000a5 = 0x24; *(uint8_t*)0x200000a6 = 1; *(uint16_t*)0x200000a7 = 1; *(uint8_t*)0x200000a9 = 2; *(uint8_t*)0x200000aa = 2; *(uint8_t*)0x200000ab = 1; *(uint8_t*)0x200000ac = 2; *(uint8_t*)0x200000ad = 0xf; *(uint8_t*)0x200000ae = 0x24; *(uint8_t*)0x200000af = 6; *(uint8_t*)0x200000b0 = 2; *(uint8_t*)0x200000b1 = 3; *(uint8_t*)0x200000b2 = 4; *(uint16_t*)0x200000b3 = 6; *(uint16_t*)0x200000b5 = 5; *(uint16_t*)0x200000b7 = 3; *(uint16_t*)0x200000b9 = 7; *(uint8_t*)0x200000bb = 1; *(uint8_t*)0x200000bc = 7; *(uint8_t*)0x200000bd = 0x24; *(uint8_t*)0x200000be = 7; *(uint8_t*)0x200000bf = 5; *(uint16_t*)0x200000c0 = 2; *(uint8_t*)0x200000c2 = 0xd8; *(uint8_t*)0x200000c3 = 0x13; *(uint8_t*)0x200000c4 = 0x24; *(uint8_t*)0x200000c5 = 6; *(uint8_t*)0x200000c6 = 3; *(uint8_t*)0x200000c7 = 6; *(uint8_t*)0x200000c8 = 6; *(uint16_t*)0x200000c9 = 2; *(uint16_t*)0x200000cb = 0xb; *(uint16_t*)0x200000cd = 1; *(uint16_t*)0x200000cf = 9; *(uint16_t*)0x200000d1 = 4; *(uint16_t*)0x200000d3 = 6; *(uint8_t*)0x200000d5 = 7; *(uint8_t*)0x200000d6 = 7; *(uint8_t*)0x200000d7 = 0x24; *(uint8_t*)0x200000d8 = 7; *(uint8_t*)0x200000d9 = 3; *(uint16_t*)0x200000da = 1; *(uint8_t*)0x200000dc = 0x3f; *(uint8_t*)0x200000dd = 0x13; *(uint8_t*)0x200000de = 0x24; *(uint8_t*)0x200000df = 6; *(uint8_t*)0x200000e0 = 6; *(uint8_t*)0x200000e1 = 3; *(uint8_t*)0x200000e2 = 6; *(uint16_t*)0x200000e3 = 3; *(uint16_t*)0x200000e5 = 7; *(uint16_t*)0x200000e7 = 6; *(uint16_t*)0x200000e9 = 3; *(uint16_t*)0x200000eb = 8; *(uint16_t*)0x200000ed = 0xe; *(uint8_t*)0x200000ef = 0xdd; *(uint8_t*)0x200000f0 = 9; *(uint8_t*)0x200000f1 = 4; *(uint8_t*)0x200000f2 = 1; *(uint8_t*)0x200000f3 = 0; *(uint8_t*)0x200000f4 = 0; *(uint8_t*)0x200000f5 = 1; *(uint8_t*)0x200000f6 = 2; *(uint8_t*)0x200000f7 = 0; *(uint8_t*)0x200000f8 = 0; *(uint8_t*)0x200000f9 = 9; *(uint8_t*)0x200000fa = 4; *(uint8_t*)0x200000fb = 1; *(uint8_t*)0x200000fc = 1; *(uint8_t*)0x200000fd = 1; *(uint8_t*)0x200000fe = 1; *(uint8_t*)0x200000ff = 2; *(uint8_t*)0x20000100 = 0; *(uint8_t*)0x20000101 = 0; *(uint8_t*)0x20000102 = 0xa; *(uint8_t*)0x20000103 = 0x24; *(uint8_t*)0x20000104 = 2; *(uint8_t*)0x20000105 = 1; *(uint8_t*)0x20000106 = 0x57; *(uint8_t*)0x20000107 = 4; *(uint8_t*)0x20000108 = 4; *(uint8_t*)0x20000109 = 6; memcpy((void*)0x2000010a, "\x2d\xde", 2); *(uint8_t*)0x2000010c = 0xf; *(uint8_t*)0x2000010d = 0x24; *(uint8_t*)0x2000010e = 2; *(uint8_t*)0x2000010f = 1; *(uint8_t*)0x20000110 = 1; *(uint8_t*)0x20000111 = 2; *(uint8_t*)0x20000112 = 0x43; *(uint8_t*)0x20000113 = 9; memcpy((void*)0x20000114, "\x7b\x4f\x26\xff\x0a\x39\xc1", 7); *(uint8_t*)0x2000011b = 0xb; *(uint8_t*)0x2000011c = 0x24; *(uint8_t*)0x2000011d = 2; *(uint8_t*)0x2000011e = 2; *(uint16_t*)0x2000011f = 1; *(uint16_t*)0x20000121 = -1; *(uint8_t*)0x20000123 = 4; memcpy((void*)0x20000124, "\x38\x02", 2); *(uint8_t*)0x20000126 = 0xe; *(uint8_t*)0x20000127 = 0x24; *(uint8_t*)0x20000128 = 2; *(uint8_t*)0x20000129 = 2; *(uint16_t*)0x2000012a = 0x61; *(uint16_t*)0x2000012c = 0xfdf; *(uint8_t*)0x2000012e = 5; memcpy((void*)0x2000012f, "\x67\x48\xf3\xc3\x36", 5); *(uint8_t*)0x20000134 = 9; *(uint8_t*)0x20000135 = 5; *(uint8_t*)0x20000136 = 1; *(uint8_t*)0x20000137 = 9; *(uint16_t*)0x20000138 = 0x20; *(uint8_t*)0x2000013a = 1; *(uint8_t*)0x2000013b = 0x1f; *(uint8_t*)0x2000013c = 0x81; *(uint8_t*)0x2000013d = 7; *(uint8_t*)0x2000013e = 0x25; *(uint8_t*)0x2000013f = 1; *(uint8_t*)0x20000140 = 3; *(uint8_t*)0x20000141 = 0x51; *(uint16_t*)0x20000142 = 6; *(uint8_t*)0x20000144 = 9; *(uint8_t*)0x20000145 = 4; *(uint8_t*)0x20000146 = 2; *(uint8_t*)0x20000147 = 0; *(uint8_t*)0x20000148 = 0; *(uint8_t*)0x20000149 = 1; *(uint8_t*)0x2000014a = 2; *(uint8_t*)0x2000014b = 0; *(uint8_t*)0x2000014c = 0; *(uint8_t*)0x2000014d = 9; *(uint8_t*)0x2000014e = 4; *(uint8_t*)0x2000014f = 2; *(uint8_t*)0x20000150 = 1; *(uint8_t*)0x20000151 = 1; *(uint8_t*)0x20000152 = 1; *(uint8_t*)0x20000153 = 2; *(uint8_t*)0x20000154 = 0; *(uint8_t*)0x20000155 = 0; *(uint8_t*)0x20000156 = 8; *(uint8_t*)0x20000157 = 0x24; *(uint8_t*)0x20000158 = 2; *(uint8_t*)0x20000159 = 1; *(uint8_t*)0x2000015a = 0; *(uint8_t*)0x2000015b = 1; *(uint8_t*)0x2000015c = 0x66; *(uint8_t*)0x2000015d = 3; *(uint8_t*)0x2000015e = 9; *(uint8_t*)0x2000015f = 5; *(uint8_t*)0x20000160 = 0x82; *(uint8_t*)0x20000161 = 9; *(uint16_t*)0x20000162 = 0x40; *(uint8_t*)0x20000164 = 1; *(uint8_t*)0x20000165 = 4; *(uint8_t*)0x20000166 = 0x20; *(uint8_t*)0x20000167 = 7; *(uint8_t*)0x20000168 = 0x25; *(uint8_t*)0x20000169 = 1; *(uint8_t*)0x2000016a = 0x80; *(uint8_t*)0x2000016b = 4; *(uint16_t*)0x2000016c = 6; *(uint32_t*)0x200004c0 = 0; *(uint64_t*)0x200004c4 = 0; *(uint32_t*)0x200004cc = 0; *(uint64_t*)0x200004d0 = 0; *(uint32_t*)0x200004d8 = 6; *(uint32_t*)0x200004dc = 5; *(uint64_t*)0x200004e0 = 0x20000200; *(uint8_t*)0x20000200 = 5; *(uint8_t*)0x20000201 = 3; memcpy((void*)0x20000202, "\xba\x2f\x8b", 3); *(uint32_t*)0x200004e8 = 0; *(uint64_t*)0x200004ec = 0; *(uint32_t*)0x200004f4 = 0; *(uint64_t*)0x200004f8 = 0; *(uint32_t*)0x20000500 = 0x40; *(uint64_t*)0x20000504 = 0x200002c0; *(uint8_t*)0x200002c0 = 0x40; *(uint8_t*)0x200002c1 = 3; memcpy((void*)0x200002c2, "\xb3\x29\x35\x14\xd8\x61\xb5\x92\x81\x1f\x36\xc8\x60\x72\x8c\xa3" "\x8c\x93\xd5\xca\x85\xf7\x1d\x83\x74\x7e\x5f\x25\xc4\x72\x86\x86" "\x32\x93\xac\xf7\x1c\x5d\x46\xa5\xbd\x94\x66\x4f\xe7\x56\x28\x5e" "\xe2\x90\x6c\xf5\xf7\xae\xc1\xb2\x9f\xf0\x05\xd1\xae\xcc", 62); *(uint32_t*)0x2000050c = 2; *(uint64_t*)0x20000510 = 0x20000300; *(uint8_t*)0x20000300 = 2; *(uint8_t*)0x20000301 = 3; *(uint32_t*)0x20000518 = 2; *(uint64_t*)0x2000051c = 0x200003c0; *(uint8_t*)0x200003c0 = 2; *(uint8_t*)0x200003c1 = 3; syz_usb_connect(/*speed=*/1, /*dev_len=*/0xee, /*dev=*/0x20000080, /*conn_descs=*/0x200004c0); break; case 2: *(uint8_t*)0x20000540 = 0x12; *(uint8_t*)0x20000541 = 1; *(uint16_t*)0x20000542 = 0x200; *(uint8_t*)0x20000544 = 0; *(uint8_t*)0x20000545 = 0; *(uint8_t*)0x20000546 = 0; *(uint8_t*)0x20000547 = 0x20; *(uint16_t*)0x20000548 = 0x525; *(uint16_t*)0x2000054a = 0xa4a8; *(uint16_t*)0x2000054c = 0x40; *(uint8_t*)0x2000054e = 1; *(uint8_t*)0x2000054f = 2; *(uint8_t*)0x20000550 = 3; *(uint8_t*)0x20000551 = 1; *(uint8_t*)0x20000552 = 9; *(uint8_t*)0x20000553 = 2; *(uint16_t*)0x20000554 = 0x24; *(uint8_t*)0x20000556 = 1; *(uint8_t*)0x20000557 = 1; *(uint8_t*)0x20000558 = 8; *(uint8_t*)0x20000559 = 0; *(uint8_t*)0x2000055a = 0; *(uint8_t*)0x2000055b = 9; *(uint8_t*)0x2000055c = 4; *(uint8_t*)0x2000055d = 0; *(uint8_t*)0x2000055e = 0xd4; *(uint8_t*)0x2000055f = 2; *(uint8_t*)0x20000560 = 7; *(uint8_t*)0x20000561 = 1; *(uint8_t*)0x20000562 = 3; *(uint8_t*)0x20000563 = -1; *(uint8_t*)0x20000564 = 9; *(uint8_t*)0x20000565 = 5; *(uint8_t*)0x20000566 = 1; *(uint8_t*)0x20000567 = 2; *(uint16_t*)0x20000568 = 0x20; *(uint8_t*)0x2000056a = 8; *(uint8_t*)0x2000056b = 6; *(uint8_t*)0x2000056c = 0; *(uint8_t*)0x2000056d = 9; *(uint8_t*)0x2000056e = 5; *(uint8_t*)0x2000056f = 0x82; *(uint8_t*)0x20000570 = 2; *(uint16_t*)0x20000571 = 0x200; *(uint8_t*)0x20000573 = 5; *(uint8_t*)0x20000574 = 8; *(uint8_t*)0x20000575 = 5; *(uint32_t*)0x20000680 = 0xa; *(uint64_t*)0x20000684 = 0x20000580; *(uint8_t*)0x20000580 = 0xa; *(uint8_t*)0x20000581 = 6; *(uint16_t*)0x20000582 = 0x200; *(uint8_t*)0x20000584 = 0xd1; *(uint8_t*)0x20000585 = 0; *(uint8_t*)0x20000586 = -1; *(uint8_t*)0x20000587 = 0x10; *(uint8_t*)0x20000588 = 6; *(uint8_t*)0x20000589 = 0; *(uint32_t*)0x2000068c = 0x2a; *(uint64_t*)0x20000690 = 0x200005c0; *(uint8_t*)0x200005c0 = 5; *(uint8_t*)0x200005c1 = 0xf; *(uint16_t*)0x200005c2 = 0x2a; *(uint8_t*)0x200005c4 = 3; *(uint8_t*)0x200005c5 = 6; *(uint8_t*)0x200005c6 = 0x10; *(uint8_t*)0x200005c7 = 0xa; memcpy((void*)0x200005c8, "\xdb\x4f\x01", 3); *(uint8_t*)0x200005cb = 0x1c; *(uint8_t*)0x200005cc = 0x10; *(uint8_t*)0x200005cd = 0xa; *(uint8_t*)0x200005ce = 0x48; STORE_BY_BITMASK(uint32_t, , 0x200005cf, 4, 0, 5); STORE_BY_BITMASK(uint32_t, , 0x200005cf, 0xe62, 5, 27); *(uint16_t*)0x200005d3 = 0; *(uint16_t*)0x200005d5 = 0xd8d; *(uint32_t*)0x200005d7 = 0xff3f0f; *(uint32_t*)0x200005db = 0xc0; *(uint32_t*)0x200005df = 0; *(uint32_t*)0x200005e3 = 0xffc000; *(uint8_t*)0x200005e7 = 3; *(uint8_t*)0x200005e8 = 0x10; *(uint8_t*)0x200005e9 = 0xb; *(uint32_t*)0x20000698 = 2; *(uint32_t*)0x2000069c = 4; *(uint64_t*)0x200006a0 = 0x20000600; *(uint8_t*)0x20000600 = 4; *(uint8_t*)0x20000601 = 3; *(uint16_t*)0x20000602 = 0x2401; *(uint32_t*)0x200006a8 = 4; *(uint64_t*)0x200006ac = 0x20000640; *(uint8_t*)0x20000640 = 4; *(uint8_t*)0x20000641 = 3; *(uint16_t*)0x20000642 = 0x820; syz_usb_connect(/*speed=*/6, /*dev_len=*/0x36, /*dev=*/0x20000540, /*conn_descs=*/0x20000680); break; } } int main(void) { syscall(SYS_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=*/3ul, /*flags=*/0x1012ul, /*fd=*/-1, /*pad=*/0ul, /*offset=*/0ul); loop(); return 0; }