// https://syzkaller.appspot.com/bug?id=1b53a5e9ccfe4b16797efba289c8b692a828a7a6 // 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 static unsigned long long procid; 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 bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } #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(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], 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 = 0, USB_RAW_EVENT_CONNECT = 1, USB_RAW_EVENT_CONTROL = 2, }; 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, const 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 4096 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_in(int fd, const struct vusb_connect_descriptors* descs, const 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: break; } break; default: break; } break; default: break; } exit(1); return false; } 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; } exit(1); return false; } typedef bool (*lookup_connect_response_t)( int fd, const struct vusb_connect_descriptors* descs, const struct usb_ctrlrequest* ctrl, bool* done); static volatile long syz_usb_connect_impl(uint64_t speed, uint64_t dev_len, const char* dev, const struct vusb_connect_descriptors* descs, lookup_connect_response_t lookup_connect_response_out) { 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; char* response_data = NULL; uint32_t response_length = 0; if (event.ctrl.bRequestType & USB_DIR_IN) { bool response_found = false; response_found = lookup_connect_response_in( fd, descs, &event.ctrl, &response_data, &response_length); if (!response_found) { return -1; } } else { if (!lookup_connect_response_out(fd, descs, &event.ctrl, &done)) { return -1; } response_data = NULL; response_length = event.ctrl.wLength; } if ((event.ctrl.bRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD && event.ctrl.bRequest == USB_REQ_SET_CONFIGURATION) { 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; } 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; return syz_usb_connect_impl(speed, dev_len, dev, descs, &lookup_connect_response_out_generic); } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); int i; for (i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter; for (iter = 0;; iter++) { int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); 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 < 5 * 1000) continue; kill_and_wait(pid, &status); break; } } } void execute_one(void) { *(uint8_t*)0x20000280 = 0x12; *(uint8_t*)0x20000281 = 1; *(uint16_t*)0x20000282 = 0x50; *(uint8_t*)0x20000284 = 0xf5; *(uint8_t*)0x20000285 = 0x71; *(uint8_t*)0x20000286 = 0xe3; *(uint8_t*)0x20000287 = 0x20; *(uint16_t*)0x20000288 = 0x77d; *(uint16_t*)0x2000028a = 0x627a; *(uint16_t*)0x2000028c = 1; *(uint8_t*)0x2000028e = 1; *(uint8_t*)0x2000028f = 2; *(uint8_t*)0x20000290 = 3; *(uint8_t*)0x20000291 = 1; *(uint8_t*)0x20000292 = 9; *(uint8_t*)0x20000293 = 2; *(uint16_t*)0x20000294 = 0x200; *(uint8_t*)0x20000296 = 4; *(uint8_t*)0x20000297 = 4; *(uint8_t*)0x20000298 = 0; *(uint8_t*)0x20000299 = 0; *(uint8_t*)0x2000029a = 0x20; *(uint8_t*)0x2000029b = 9; *(uint8_t*)0x2000029c = 4; *(uint8_t*)0x2000029d = 0x54; *(uint8_t*)0x2000029e = 0xd8; *(uint8_t*)0x2000029f = 0xb; *(uint8_t*)0x200002a0 = 3; *(uint8_t*)0x200002a1 = 0x1c; *(uint8_t*)0x200002a2 = 0x67; *(uint8_t*)0x200002a3 = 9; *(uint8_t*)0x200002a4 = 9; *(uint8_t*)0x200002a5 = 5; *(uint8_t*)0x200002a6 = 0x80; *(uint8_t*)0x200002a7 = 0xc; *(uint16_t*)0x200002a8 = 0x200; *(uint8_t*)0x200002aa = 0xa3; *(uint8_t*)0x200002ab = 4; *(uint8_t*)0x200002ac = 4; *(uint8_t*)0x200002ad = 2; *(uint8_t*)0x200002ae = 6; *(uint8_t*)0x200002af = 2; *(uint8_t*)0x200002b0 = 0x3c; *(uint8_t*)0x200002b1 = 9; *(uint8_t*)0x200002b2 = 5; *(uint8_t*)0x200002b3 = 0; *(uint8_t*)0x200002b4 = 0; *(uint16_t*)0x200002b5 = 0x408; *(uint8_t*)0x200002b7 = 9; *(uint8_t*)0x200002b8 = 7; *(uint8_t*)0x200002b9 = 2; *(uint8_t*)0x200002ba = 9; *(uint8_t*)0x200002bb = 5; *(uint8_t*)0x200002bc = 0xa; *(uint8_t*)0x200002bd = 0x10; *(uint16_t*)0x200002be = 0x200; *(uint8_t*)0x200002c0 = 0x81; *(uint8_t*)0x200002c1 = 0xb3; *(uint8_t*)0x200002c2 = 0; *(uint8_t*)0x200002c3 = 2; *(uint8_t*)0x200002c4 = 0x23; *(uint8_t*)0x200002c5 = 9; *(uint8_t*)0x200002c6 = 5; *(uint8_t*)0x200002c7 = 6; *(uint8_t*)0x200002c8 = 0; *(uint16_t*)0x200002c9 = 0x10; *(uint8_t*)0x200002cb = 0xde; *(uint8_t*)0x200002cc = 1; *(uint8_t*)0x200002cd = -1; *(uint8_t*)0x200002ce = 2; *(uint8_t*)0x200002cf = 6; *(uint8_t*)0x200002d0 = 9; *(uint8_t*)0x200002d1 = 5; *(uint8_t*)0x200002d2 = 9; *(uint8_t*)0x200002d3 = 3; *(uint16_t*)0x200002d4 = 0x400; *(uint8_t*)0x200002d6 = 4; *(uint8_t*)0x200002d7 = 4; *(uint8_t*)0x200002d8 = 3; *(uint8_t*)0x200002d9 = 7; *(uint8_t*)0x200002da = 0x25; *(uint8_t*)0x200002db = 1; *(uint8_t*)0x200002dc = 0x80; *(uint8_t*)0x200002dd = 0x3f; *(uint16_t*)0x200002de = 2; *(uint8_t*)0x200002e0 = 2; *(uint8_t*)0x200002e1 = 0x22; *(uint8_t*)0x200002e2 = 9; *(uint8_t*)0x200002e3 = 5; *(uint8_t*)0x200002e4 = 0xf; *(uint8_t*)0x200002e5 = 0x10; *(uint16_t*)0x200002e6 = 0x410; *(uint8_t*)0x200002e8 = 2; *(uint8_t*)0x200002e9 = 0x20; *(uint8_t*)0x200002ea = 4; *(uint8_t*)0x200002eb = 7; *(uint8_t*)0x200002ec = 0x25; *(uint8_t*)0x200002ed = 1; *(uint8_t*)0x200002ee = 0x80; *(uint8_t*)0x200002ef = 8; *(uint16_t*)0x200002f0 = 0xf60; *(uint8_t*)0x200002f2 = 2; *(uint8_t*)0x200002f3 = 0xd; *(uint8_t*)0x200002f4 = 9; *(uint8_t*)0x200002f5 = 5; *(uint8_t*)0x200002f6 = 0xa; *(uint8_t*)0x200002f7 = 3; *(uint16_t*)0x200002f8 = 0x10; *(uint8_t*)0x200002fa = 6; *(uint8_t*)0x200002fb = 0; *(uint8_t*)0x200002fc = 2; *(uint8_t*)0x200002fd = 2; *(uint8_t*)0x200002fe = 0x22; *(uint8_t*)0x200002ff = 7; *(uint8_t*)0x20000300 = 0x25; *(uint8_t*)0x20000301 = 1; *(uint8_t*)0x20000302 = 0; *(uint8_t*)0x20000303 = 4; *(uint16_t*)0x20000304 = 0xe9; *(uint8_t*)0x20000306 = 9; *(uint8_t*)0x20000307 = 5; *(uint8_t*)0x20000308 = 0xc; *(uint8_t*)0x20000309 = 0; *(uint16_t*)0x2000030a = 0x20; *(uint8_t*)0x2000030c = 0x1f; *(uint8_t*)0x2000030d = 7; *(uint8_t*)0x2000030e = 1; *(uint8_t*)0x2000030f = 7; *(uint8_t*)0x20000310 = 0x25; *(uint8_t*)0x20000311 = 1; *(uint8_t*)0x20000312 = 1; *(uint8_t*)0x20000313 = 4; *(uint16_t*)0x20000314 = 6; *(uint8_t*)0x20000316 = 2; *(uint8_t*)0x20000317 = 5; *(uint8_t*)0x20000318 = 9; *(uint8_t*)0x20000319 = 5; *(uint8_t*)0x2000031a = 5; *(uint8_t*)0x2000031b = 2; *(uint16_t*)0x2000031c = 0x40; *(uint8_t*)0x2000031e = 1; *(uint8_t*)0x2000031f = 9; *(uint8_t*)0x20000320 = 8; *(uint8_t*)0x20000321 = 2; *(uint8_t*)0x20000322 = 0x24; *(uint8_t*)0x20000323 = 7; *(uint8_t*)0x20000324 = 0x25; *(uint8_t*)0x20000325 = 1; *(uint8_t*)0x20000326 = 0x83; *(uint8_t*)0x20000327 = 0x20; *(uint16_t*)0x20000328 = 0x4116; *(uint8_t*)0x2000032a = 9; *(uint8_t*)0x2000032b = 5; *(uint8_t*)0x2000032c = 0xd; *(uint8_t*)0x2000032d = 0xc; *(uint16_t*)0x2000032e = 8; *(uint8_t*)0x20000330 = 0x3f; *(uint8_t*)0x20000331 = 1; *(uint8_t*)0x20000332 = 0x1f; *(uint8_t*)0x20000333 = 7; *(uint8_t*)0x20000334 = 0x25; *(uint8_t*)0x20000335 = 1; *(uint8_t*)0x20000336 = 0; *(uint8_t*)0x20000337 = 2; *(uint16_t*)0x20000338 = 1; *(uint8_t*)0x2000033a = 9; *(uint8_t*)0x2000033b = 5; *(uint8_t*)0x2000033c = 0xf; *(uint8_t*)0x2000033d = 2; *(uint16_t*)0x2000033e = 8; *(uint8_t*)0x20000340 = 0x92; *(uint8_t*)0x20000341 = 9; *(uint8_t*)0x20000342 = 0; *(uint8_t*)0x20000343 = 9; *(uint8_t*)0x20000344 = 4; *(uint8_t*)0x20000345 = 0x6d; *(uint8_t*)0x20000346 = 3; *(uint8_t*)0x20000347 = 4; *(uint8_t*)0x20000348 = 1; *(uint8_t*)0x20000349 = 1; *(uint8_t*)0x2000034a = 0xbc; *(uint8_t*)0x2000034b = 0xef; *(uint8_t*)0x2000034c = 2; *(uint8_t*)0x2000034d = 0x43; *(uint8_t*)0x2000034e = 9; *(uint8_t*)0x2000034f = 5; *(uint8_t*)0x20000350 = 0xc; *(uint8_t*)0x20000351 = 1; *(uint16_t*)0x20000352 = 0x228; *(uint8_t*)0x20000354 = 7; *(uint8_t*)0x20000355 = 3; *(uint8_t*)0x20000356 = 9; *(uint8_t*)0x20000357 = 9; *(uint8_t*)0x20000358 = 5; *(uint8_t*)0x20000359 = 8; *(uint8_t*)0x2000035a = 0x10; *(uint16_t*)0x2000035b = 0x400; *(uint8_t*)0x2000035d = 2; *(uint8_t*)0x2000035e = 7; *(uint8_t*)0x2000035f = 0; *(uint8_t*)0x20000360 = 9; *(uint8_t*)0x20000361 = 5; *(uint8_t*)0x20000362 = 4; *(uint8_t*)0x20000363 = 0x1c; *(uint16_t*)0x20000364 = 0x40; *(uint8_t*)0x20000366 = 5; *(uint8_t*)0x20000367 = 1; *(uint8_t*)0x20000368 = 8; *(uint8_t*)0x20000369 = 2; *(uint8_t*)0x2000036a = 0x22; *(uint8_t*)0x2000036b = 9; *(uint8_t*)0x2000036c = 5; *(uint8_t*)0x2000036d = 4; *(uint8_t*)0x2000036e = 0; *(uint16_t*)0x2000036f = 0x20; *(uint8_t*)0x20000371 = 5; *(uint8_t*)0x20000372 = 2; *(uint8_t*)0x20000373 = 1; *(uint8_t*)0x20000374 = 2; *(uint8_t*)0x20000375 = 1; *(uint8_t*)0x20000376 = 9; *(uint8_t*)0x20000377 = 4; *(uint8_t*)0x20000378 = 0xc9; *(uint8_t*)0x20000379 = 2; *(uint8_t*)0x2000037a = 7; *(uint8_t*)0x2000037b = 3; *(uint8_t*)0x2000037c = 0xa5; *(uint8_t*)0x2000037d = 2; *(uint8_t*)0x2000037e = 0x81; *(uint8_t*)0x2000037f = 7; *(uint8_t*)0x20000380 = 0x24; *(uint8_t*)0x20000381 = 1; *(uint8_t*)0x20000382 = 4; *(uint8_t*)0x20000383 = 2; *(uint16_t*)0x20000384 = 0x1001; *(uint8_t*)0x20000386 = 9; *(uint8_t*)0x20000387 = 5; *(uint8_t*)0x20000388 = 0; *(uint8_t*)0x20000389 = 0; *(uint16_t*)0x2000038a = 8; *(uint8_t*)0x2000038c = -1; *(uint8_t*)0x2000038d = 5; *(uint8_t*)0x2000038e = 0x5b; *(uint8_t*)0x2000038f = 7; *(uint8_t*)0x20000390 = 0x25; *(uint8_t*)0x20000391 = 1; *(uint8_t*)0x20000392 = 1; *(uint8_t*)0x20000393 = 8; *(uint16_t*)0x20000394 = 1; *(uint8_t*)0x20000396 = 9; *(uint8_t*)0x20000397 = 5; *(uint8_t*)0x20000398 = 0xa; *(uint8_t*)0x20000399 = 0; *(uint16_t*)0x2000039a = 0x200; *(uint8_t*)0x2000039c = 2; *(uint8_t*)0x2000039d = 5; *(uint8_t*)0x2000039e = 4; *(uint8_t*)0x2000039f = 7; *(uint8_t*)0x200003a0 = 0x25; *(uint8_t*)0x200003a1 = 1; *(uint8_t*)0x200003a2 = 0x80; *(uint8_t*)0x200003a3 = 1; *(uint16_t*)0x200003a4 = 3; *(uint8_t*)0x200003a6 = 2; *(uint8_t*)0x200003a7 = 0x23; *(uint8_t*)0x200003a8 = 9; *(uint8_t*)0x200003a9 = 5; *(uint8_t*)0x200003aa = 3; *(uint8_t*)0x200003ab = 0; *(uint16_t*)0x200003ac = 8; *(uint8_t*)0x200003ae = 2; *(uint8_t*)0x200003af = 4; *(uint8_t*)0x200003b0 = 3; *(uint8_t*)0x200003b1 = 9; *(uint8_t*)0x200003b2 = 5; *(uint8_t*)0x200003b3 = 0x80; *(uint8_t*)0x200003b4 = 0; *(uint16_t*)0x200003b5 = 0x200; *(uint8_t*)0x200003b7 = -1; *(uint8_t*)0x200003b8 = 3; *(uint8_t*)0x200003b9 = 3; *(uint8_t*)0x200003ba = 2; *(uint8_t*)0x200003bb = 0x28; *(uint8_t*)0x200003bc = 7; *(uint8_t*)0x200003bd = 0x25; *(uint8_t*)0x200003be = 1; *(uint8_t*)0x200003bf = 3; *(uint8_t*)0x200003c0 = 0; *(uint16_t*)0x200003c1 = 8; *(uint8_t*)0x200003c3 = 9; *(uint8_t*)0x200003c4 = 5; *(uint8_t*)0x200003c5 = 3; *(uint8_t*)0x200003c6 = 8; *(uint16_t*)0x200003c7 = 0x40; *(uint8_t*)0x200003c9 = 0x81; *(uint8_t*)0x200003ca = 0x6a; *(uint8_t*)0x200003cb = 0x3f; *(uint8_t*)0x200003cc = 2; *(uint8_t*)0x200003cd = 0x23; *(uint8_t*)0x200003ce = 9; *(uint8_t*)0x200003cf = 5; *(uint8_t*)0x200003d0 = 8; *(uint8_t*)0x200003d1 = 0; *(uint16_t*)0x200003d2 = 0x40; *(uint8_t*)0x200003d4 = 0x80; *(uint8_t*)0x200003d5 = 3; *(uint8_t*)0x200003d6 = 3; *(uint8_t*)0x200003d7 = 2; *(uint8_t*)0x200003d8 = 0x10; *(uint8_t*)0x200003d9 = 7; *(uint8_t*)0x200003da = 0x25; *(uint8_t*)0x200003db = 1; *(uint8_t*)0x200003dc = 1; *(uint8_t*)0x200003dd = 0xc0; *(uint16_t*)0x200003de = 0xf17; *(uint8_t*)0x200003e0 = 9; *(uint8_t*)0x200003e1 = 5; *(uint8_t*)0x200003e2 = 0xc; *(uint8_t*)0x200003e3 = 0; *(uint16_t*)0x200003e4 = 0x40; *(uint8_t*)0x200003e6 = 0x1f; *(uint8_t*)0x200003e7 = 0x20; *(uint8_t*)0x200003e8 = 4; *(uint8_t*)0x200003e9 = 2; *(uint8_t*)0x200003ea = 0xa; *(uint8_t*)0x200003eb = 9; *(uint8_t*)0x200003ec = 4; *(uint8_t*)0x200003ed = 0x74; *(uint8_t*)0x200003ee = 0x40; *(uint8_t*)0x200003ef = 7; *(uint8_t*)0x200003f0 = 0xa3; *(uint8_t*)0x200003f1 = 0x69; *(uint8_t*)0x200003f2 = 0xba; *(uint8_t*)0x200003f3 = 0x3f; *(uint8_t*)0x200003f4 = 5; *(uint8_t*)0x200003f5 = 0x24; *(uint8_t*)0x200003f6 = 6; *(uint8_t*)0x200003f7 = 0; *(uint8_t*)0x200003f8 = 1; *(uint8_t*)0x200003f9 = 5; *(uint8_t*)0x200003fa = 0x24; *(uint8_t*)0x200003fb = 0; *(uint16_t*)0x200003fc = 0x40; *(uint8_t*)0x200003fe = 0xd; *(uint8_t*)0x200003ff = 0x24; *(uint8_t*)0x20000400 = 0xf; *(uint8_t*)0x20000401 = 1; *(uint32_t*)0x20000402 = 0x7fffffff; *(uint16_t*)0x20000406 = 0xfff7; *(uint16_t*)0x20000408 = 4; *(uint8_t*)0x2000040a = 2; *(uint8_t*)0x2000040b = 6; *(uint8_t*)0x2000040c = 0x24; *(uint8_t*)0x2000040d = 0x1a; *(uint16_t*)0x2000040e = 0xb1; *(uint8_t*)0x20000410 = 4; *(uint8_t*)0x20000411 = 4; *(uint8_t*)0x20000412 = 0x24; *(uint8_t*)0x20000413 = 0x13; *(uint8_t*)0x20000414 = 0; *(uint8_t*)0x20000415 = 0xa; *(uint8_t*)0x20000416 = 0x24; *(uint8_t*)0x20000417 = 1; *(uint16_t*)0x20000418 = 6; *(uint8_t*)0x2000041a = 0x56; *(uint8_t*)0x2000041b = 2; *(uint8_t*)0x2000041c = 1; *(uint8_t*)0x2000041d = 2; *(uint8_t*)0x2000041e = 0xc; *(uint8_t*)0x2000041f = 0x24; *(uint8_t*)0x20000420 = 2; *(uint8_t*)0x20000421 = 1; *(uint16_t*)0x20000422 = 0; *(uint8_t*)0x20000424 = 6; *(uint8_t*)0x20000425 = 0x81; *(uint16_t*)0x20000426 = 0x8001; *(uint8_t*)0x20000428 = 1; *(uint8_t*)0x20000429 = 6; *(uint8_t*)0x2000042a = 5; *(uint8_t*)0x2000042b = 0x24; *(uint8_t*)0x2000042c = 5; *(uint8_t*)0x2000042d = 3; *(uint8_t*)0x2000042e = 0xbd; *(uint8_t*)0x2000042f = 7; *(uint8_t*)0x20000430 = 0x24; *(uint8_t*)0x20000431 = 8; *(uint8_t*)0x20000432 = 1; *(uint16_t*)0x20000433 = 8; *(uint8_t*)0x20000435 = 0xf4; *(uint8_t*)0x20000436 = 9; *(uint8_t*)0x20000437 = 5; *(uint8_t*)0x20000438 = 0xe; *(uint8_t*)0x20000439 = 2; *(uint16_t*)0x2000043a = 0x200; *(uint8_t*)0x2000043c = 0xfd; *(uint8_t*)0x2000043d = 1; *(uint8_t*)0x2000043e = 0x81; *(uint8_t*)0x2000043f = 2; *(uint8_t*)0x20000440 = 0x23; *(uint8_t*)0x20000441 = 9; *(uint8_t*)0x20000442 = 5; *(uint8_t*)0x20000443 = 9; *(uint8_t*)0x20000444 = 8; *(uint16_t*)0x20000445 = 0x3ff; *(uint8_t*)0x20000447 = 0x81; *(uint8_t*)0x20000448 = 0xab; *(uint8_t*)0x20000449 = 8; *(uint8_t*)0x2000044a = 9; *(uint8_t*)0x2000044b = 5; *(uint8_t*)0x2000044c = 0xc; *(uint8_t*)0x2000044d = 0; *(uint16_t*)0x2000044e = 0x40; *(uint8_t*)0x20000450 = 0x40; *(uint8_t*)0x20000451 = 1; *(uint8_t*)0x20000452 = 0x20; *(uint8_t*)0x20000453 = 7; *(uint8_t*)0x20000454 = 0x25; *(uint8_t*)0x20000455 = 1; *(uint8_t*)0x20000456 = 1; *(uint8_t*)0x20000457 = 0x6e; *(uint16_t*)0x20000458 = 0xe1c; *(uint8_t*)0x2000045a = 7; *(uint8_t*)0x2000045b = 0x25; *(uint8_t*)0x2000045c = 1; *(uint8_t*)0x2000045d = 0; *(uint8_t*)0x2000045e = 0x3f; *(uint16_t*)0x2000045f = 0x8000; *(uint8_t*)0x20000461 = 9; *(uint8_t*)0x20000462 = 5; *(uint8_t*)0x20000463 = 9; *(uint8_t*)0x20000464 = 1; *(uint16_t*)0x20000465 = 0x20; *(uint8_t*)0x20000467 = 4; *(uint8_t*)0x20000468 = 1; *(uint8_t*)0x20000469 = 4; *(uint8_t*)0x2000046a = 2; *(uint8_t*)0x2000046b = 6; *(uint8_t*)0x2000046c = 7; *(uint8_t*)0x2000046d = 0x25; *(uint8_t*)0x2000046e = 1; *(uint8_t*)0x2000046f = 0x81; *(uint8_t*)0x20000470 = 0x7f; *(uint16_t*)0x20000471 = 7; *(uint8_t*)0x20000473 = 9; *(uint8_t*)0x20000474 = 5; *(uint8_t*)0x20000475 = 8; *(uint8_t*)0x20000476 = 1; *(uint16_t*)0x20000477 = 0x40; *(uint8_t*)0x20000479 = 0x7f; *(uint8_t*)0x2000047a = 7; *(uint8_t*)0x2000047b = 0xf9; *(uint8_t*)0x2000047c = 2; *(uint8_t*)0x2000047d = 4; *(uint8_t*)0x2000047e = 9; *(uint8_t*)0x2000047f = 5; *(uint8_t*)0x20000480 = 0xb; *(uint8_t*)0x20000481 = 0; *(uint16_t*)0x20000482 = 0x3ff; *(uint8_t*)0x20000484 = 8; *(uint8_t*)0x20000485 = 1; *(uint8_t*)0x20000486 = 0x81; *(uint8_t*)0x20000487 = 2; *(uint8_t*)0x20000488 = 2; *(uint8_t*)0x20000489 = 9; *(uint8_t*)0x2000048a = 5; *(uint8_t*)0x2000048b = 3; *(uint8_t*)0x2000048c = 3; *(uint16_t*)0x2000048d = 0x10; *(uint8_t*)0x2000048f = 0xf4; *(uint8_t*)0x20000490 = 0; *(uint8_t*)0x20000491 = 0x3f; syz_usb_connect(5, 0x212, 0x20000280, 0); } int main(void) { syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 3ul, 0x32ul, -1, 0); loop(); return 0; }