// https://syzkaller.appspot.com/bug?id=c1e9d4a220a1ca340c354dfacb78fa31bdd425f5
// autogenerated by syzkaller (https://github.com/google/syzkaller)

#define _GNU_SOURCE

#include <endian.h>
#include <errno.h>
#include <fcntl.h>
#include <sched.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mount.h>
#include <sys/prctl.h>
#include <sys/resource.h>
#include <sys/stat.h>
#include <sys/syscall.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>

#include <linux/capability.h>
#include <linux/usb/ch9.h>

static unsigned long long procid;

static void sleep_ms(uint64_t ms)
{
  usleep(ms * 1000);
}

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
#define USB_MAX_FDS 6

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;
};

struct usb_info {
  int fd;
  struct usb_device_index index;
};

static struct usb_info usb_devices[USB_MAX_FDS];
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], buffer + offset,
               sizeof(iface->eps[iface->eps_num]));
        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;
  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 < USB_MAX_FDS; i++) {
    if (__atomic_load_n(&usb_devices[i].fd, __ATOMIC_ACQUIRE) == fd) {
      return &usb_devices[i].index;
    }
  }
  return NULL;
}

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;
}

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;
  }
  exit(1);
  return false;
}

#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);
}

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];
};

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_out_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 setup_common()
{
  if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) {
  }
}

static void loop();

static void sandbox_common()
{
  prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0);
  setpgrp();
  setsid();
  struct rlimit rlim;
  rlim.rlim_cur = rlim.rlim_max = (200 << 20);
  setrlimit(RLIMIT_AS, &rlim);
  rlim.rlim_cur = rlim.rlim_max = 32 << 20;
  setrlimit(RLIMIT_MEMLOCK, &rlim);
  rlim.rlim_cur = rlim.rlim_max = 136 << 20;
  setrlimit(RLIMIT_FSIZE, &rlim);
  rlim.rlim_cur = rlim.rlim_max = 1 << 20;
  setrlimit(RLIMIT_STACK, &rlim);
  rlim.rlim_cur = rlim.rlim_max = 0;
  setrlimit(RLIMIT_CORE, &rlim);
  rlim.rlim_cur = rlim.rlim_max = 256;
  setrlimit(RLIMIT_NOFILE, &rlim);
  if (unshare(CLONE_NEWNS)) {
  }
  if (unshare(CLONE_NEWIPC)) {
  }
  if (unshare(0x02000000)) {
  }
  if (unshare(CLONE_NEWUTS)) {
  }
  if (unshare(CLONE_SYSVSEM)) {
  }
  typedef struct {
    const char* name;
    const char* value;
  } sysctl_t;
  static const sysctl_t sysctls[] = {
      {"/proc/sys/kernel/shmmax", "16777216"},
      {"/proc/sys/kernel/shmall", "536870912"},
      {"/proc/sys/kernel/shmmni", "1024"},
      {"/proc/sys/kernel/msgmax", "8192"},
      {"/proc/sys/kernel/msgmni", "1024"},
      {"/proc/sys/kernel/msgmnb", "1024"},
      {"/proc/sys/kernel/sem", "1024 1048576 500 1024"},
  };
  unsigned i;
  for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++)
    write_file(sysctls[i].name, sysctls[i].value);
}

static int wait_for_loop(int pid)
{
  if (pid < 0)
    exit(1);
  int status = 0;
  while (waitpid(-1, &status, __WALL) != pid) {
  }
  return WEXITSTATUS(status);
}

static void drop_caps(void)
{
  struct __user_cap_header_struct cap_hdr = {};
  struct __user_cap_data_struct cap_data[2] = {};
  cap_hdr.version = _LINUX_CAPABILITY_VERSION_3;
  cap_hdr.pid = getpid();
  if (syscall(SYS_capget, &cap_hdr, &cap_data))
    exit(1);
  const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE);
  cap_data[0].effective &= ~drop;
  cap_data[0].permitted &= ~drop;
  cap_data[0].inheritable &= ~drop;
  if (syscall(SYS_capset, &cap_hdr, &cap_data))
    exit(1);
}

static int do_sandbox_none(void)
{
  if (unshare(CLONE_NEWPID)) {
  }
  int pid = fork();
  if (pid != 0)
    return wait_for_loop(pid);
  setup_common();
  sandbox_common();
  drop_caps();
  if (unshare(CLONE_NEWNET)) {
  }
  loop();
  exit(1);
}

static void close_fds()
{
  int fd;
  for (fd = 3; fd < MAX_FDS; fd++)
    close(fd);
}

void loop(void)
{
  *(uint8_t*)0x20000a00 = 0x12;
  *(uint8_t*)0x20000a01 = 1;
  *(uint16_t*)0x20000a02 = 0x310;
  *(uint8_t*)0x20000a04 = 0xa9;
  *(uint8_t*)0x20000a05 = 0x59;
  *(uint8_t*)0x20000a06 = 0xa8;
  *(uint8_t*)0x20000a07 = 8;
  *(uint16_t*)0x20000a08 = 0x7ca;
  *(uint16_t*)0x20000a0a = 0xb800;
  *(uint16_t*)0x20000a0c = 0x17a9;
  *(uint8_t*)0x20000a0e = 1;
  *(uint8_t*)0x20000a0f = 2;
  *(uint8_t*)0x20000a10 = 3;
  *(uint8_t*)0x20000a11 = 1;
  *(uint8_t*)0x20000a12 = 9;
  *(uint8_t*)0x20000a13 = 2;
  *(uint16_t*)0x20000a14 = 0x108;
  *(uint8_t*)0x20000a16 = 1;
  *(uint8_t*)0x20000a17 = -1;
  *(uint8_t*)0x20000a18 = 9;
  *(uint8_t*)0x20000a19 = 0;
  *(uint8_t*)0x20000a1a = 8;
  *(uint8_t*)0x20000a1b = 9;
  *(uint8_t*)0x20000a1c = 4;
  *(uint8_t*)0x20000a1d = 0xa5;
  *(uint8_t*)0x20000a1e = 3;
  *(uint8_t*)0x20000a1f = 0xc;
  *(uint8_t*)0x20000a20 = 3;
  *(uint8_t*)0x20000a21 = 0;
  *(uint8_t*)0x20000a22 = 0;
  *(uint8_t*)0x20000a23 = 0;
  *(uint8_t*)0x20000a24 = 9;
  *(uint8_t*)0x20000a25 = 0x21;
  *(uint16_t*)0x20000a26 = 0x101;
  *(uint8_t*)0x20000a28 = 0;
  *(uint8_t*)0x20000a29 = 1;
  *(uint8_t*)0x20000a2a = 0x22;
  *(uint16_t*)0x20000a2b = 0x58c;
  *(uint8_t*)0x20000a2d = 8;
  *(uint8_t*)0x20000a2e = 0x24;
  *(uint8_t*)0x20000a2f = 2;
  *(uint8_t*)0x20000a30 = 1;
  *(uint8_t*)0x20000a31 = 0xf9;
  *(uint8_t*)0x20000a32 = 4;
  *(uint8_t*)0x20000a33 = 1;
  *(uint8_t*)0x20000a34 = 0x3a;
  *(uint8_t*)0x20000a35 = 8;
  *(uint8_t*)0x20000a36 = 0x24;
  *(uint8_t*)0x20000a37 = 2;
  *(uint8_t*)0x20000a38 = 1;
  *(uint8_t*)0x20000a39 = 0x17;
  *(uint8_t*)0x20000a3a = 4;
  *(uint8_t*)0x20000a3b = 3;
  *(uint8_t*)0x20000a3c = 0x40;
  *(uint8_t*)0x20000a3d = 8;
  *(uint8_t*)0x20000a3e = 0x24;
  *(uint8_t*)0x20000a3f = 2;
  *(uint8_t*)0x20000a40 = 1;
  *(uint8_t*)0x20000a41 = 4;
  *(uint8_t*)0x20000a42 = 2;
  *(uint8_t*)0x20000a43 = 0;
  *(uint8_t*)0x20000a44 = 9;
  *(uint8_t*)0x20000a45 = 9;
  *(uint8_t*)0x20000a46 = 0x24;
  *(uint8_t*)0x20000a47 = 2;
  *(uint8_t*)0x20000a48 = 2;
  *(uint16_t*)0x20000a49 = 9;
  *(uint16_t*)0x20000a4b = 0xb5;
  *(uint8_t*)0x20000a4d = 0xfe;
  *(uint8_t*)0x20000a4e = 9;
  *(uint8_t*)0x20000a4f = 0x24;
  *(uint8_t*)0x20000a50 = 2;
  *(uint8_t*)0x20000a51 = 2;
  *(uint16_t*)0x20000a52 = 0x52e4;
  *(uint16_t*)0x20000a54 = 1;
  *(uint8_t*)0x20000a56 = 0xeb;
  *(uint8_t*)0x20000a57 = 9;
  *(uint8_t*)0x20000a58 = 5;
  *(uint8_t*)0x20000a59 = 7;
  *(uint8_t*)0x20000a5a = 0x10;
  *(uint16_t*)0x20000a5b = 0x200;
  *(uint8_t*)0x20000a5d = 0x3f;
  *(uint8_t*)0x20000a5e = 0x20;
  *(uint8_t*)0x20000a5f = 5;
  *(uint8_t*)0x20000a60 = 7;
  *(uint8_t*)0x20000a61 = 0x25;
  *(uint8_t*)0x20000a62 = 1;
  *(uint8_t*)0x20000a63 = 4;
  *(uint8_t*)0x20000a64 = 3;
  *(uint16_t*)0x20000a65 = 0xff24;
  *(uint8_t*)0x20000a67 = 9;
  *(uint8_t*)0x20000a68 = 5;
  *(uint8_t*)0x20000a69 = 0xa;
  *(uint8_t*)0x20000a6a = 0;
  *(uint16_t*)0x20000a6b = 0x400;
  *(uint8_t*)0x20000a6d = 3;
  *(uint8_t*)0x20000a6e = 6;
  *(uint8_t*)0x20000a6f = 0x3f;
  *(uint8_t*)0x20000a70 = 7;
  *(uint8_t*)0x20000a71 = 0x25;
  *(uint8_t*)0x20000a72 = 1;
  *(uint8_t*)0x20000a73 = 1;
  *(uint8_t*)0x20000a74 = 0;
  *(uint16_t*)0x20000a75 = 5;
  *(uint8_t*)0x20000a77 = 2;
  *(uint8_t*)0x20000a78 = 0x30;
  *(uint8_t*)0x20000a79 = 9;
  *(uint8_t*)0x20000a7a = 5;
  *(uint8_t*)0x20000a7b = 9;
  *(uint8_t*)0x20000a7c = 4;
  *(uint16_t*)0x20000a7d = 0;
  *(uint8_t*)0x20000a7f = 4;
  *(uint8_t*)0x20000a80 = 8;
  *(uint8_t*)0x20000a81 = 0x75;
  *(uint8_t*)0x20000a82 = 9;
  *(uint8_t*)0x20000a83 = 5;
  *(uint8_t*)0x20000a84 = 2;
  *(uint8_t*)0x20000a85 = 2;
  *(uint16_t*)0x20000a86 = 0x10;
  *(uint8_t*)0x20000a88 = 3;
  *(uint8_t*)0x20000a89 = 0x11;
  *(uint8_t*)0x20000a8a = 1;
  *(uint8_t*)0x20000a8b = 2;
  *(uint8_t*)0x20000a8c = 0x22;
  *(uint8_t*)0x20000a8d = 7;
  *(uint8_t*)0x20000a8e = 0x25;
  *(uint8_t*)0x20000a8f = 1;
  *(uint8_t*)0x20000a90 = 0x80;
  *(uint8_t*)0x20000a91 = 7;
  *(uint16_t*)0x20000a92 = 9;
  *(uint8_t*)0x20000a94 = 9;
  *(uint8_t*)0x20000a95 = 5;
  *(uint8_t*)0x20000a96 = 8;
  *(uint8_t*)0x20000a97 = 3;
  *(uint16_t*)0x20000a98 = 8;
  *(uint8_t*)0x20000a9a = 9;
  *(uint8_t*)0x20000a9b = 9;
  *(uint8_t*)0x20000a9c = 3;
  *(uint8_t*)0x20000a9d = 7;
  *(uint8_t*)0x20000a9e = 0x25;
  *(uint8_t*)0x20000a9f = 1;
  *(uint8_t*)0x20000aa0 = 0x83;
  *(uint8_t*)0x20000aa1 = 0x9c;
  *(uint16_t*)0x20000aa2 = 6;
  *(uint8_t*)0x20000aa4 = 9;
  *(uint8_t*)0x20000aa5 = 5;
  *(uint8_t*)0x20000aa6 = 0x80;
  *(uint8_t*)0x20000aa7 = 0x10;
  *(uint16_t*)0x20000aa8 = 0x3ff;
  *(uint8_t*)0x20000aaa = 8;
  *(uint8_t*)0x20000aab = 7;
  *(uint8_t*)0x20000aac = 0x81;
  *(uint8_t*)0x20000aad = 7;
  *(uint8_t*)0x20000aae = 0x25;
  *(uint8_t*)0x20000aaf = 1;
  *(uint8_t*)0x20000ab0 = 0x80;
  *(uint8_t*)0x20000ab1 = 0x3f;
  *(uint16_t*)0x20000ab2 = 0x80;
  *(uint8_t*)0x20000ab4 = 7;
  *(uint8_t*)0x20000ab5 = 0x25;
  *(uint8_t*)0x20000ab6 = 1;
  *(uint8_t*)0x20000ab7 = 0;
  *(uint8_t*)0x20000ab8 = 0x7c;
  *(uint16_t*)0x20000ab9 = 3;
  *(uint8_t*)0x20000abb = 9;
  *(uint8_t*)0x20000abc = 5;
  *(uint8_t*)0x20000abd = 5;
  *(uint8_t*)0x20000abe = 2;
  *(uint16_t*)0x20000abf = 0x1ef;
  *(uint8_t*)0x20000ac1 = 2;
  *(uint8_t*)0x20000ac2 = 3;
  *(uint8_t*)0x20000ac3 = 5;
  *(uint8_t*)0x20000ac4 = 7;
  *(uint8_t*)0x20000ac5 = 0x25;
  *(uint8_t*)0x20000ac6 = 1;
  *(uint8_t*)0x20000ac7 = 1;
  *(uint8_t*)0x20000ac8 = 1;
  *(uint16_t*)0x20000ac9 = 9;
  *(uint8_t*)0x20000acb = 7;
  *(uint8_t*)0x20000acc = 0x25;
  *(uint8_t*)0x20000acd = 1;
  *(uint8_t*)0x20000ace = 0x87;
  *(uint8_t*)0x20000acf = 6;
  *(uint16_t*)0x20000ad0 = 0xfc01;
  *(uint8_t*)0x20000ad2 = 9;
  *(uint8_t*)0x20000ad3 = 5;
  *(uint8_t*)0x20000ad4 = 3;
  *(uint8_t*)0x20000ad5 = 0x10;
  *(uint16_t*)0x20000ad6 = 0x400;
  *(uint8_t*)0x20000ad8 = 8;
  *(uint8_t*)0x20000ad9 = 6;
  *(uint8_t*)0x20000ada = 0x81;
  *(uint8_t*)0x20000adb = 2;
  *(uint8_t*)0x20000adc = 0xc;
  *(uint8_t*)0x20000add = 9;
  *(uint8_t*)0x20000ade = 5;
  *(uint8_t*)0x20000adf = 4;
  *(uint8_t*)0x20000ae0 = 4;
  *(uint16_t*)0x20000ae1 = 0x3ff;
  *(uint8_t*)0x20000ae3 = 7;
  *(uint8_t*)0x20000ae4 = 0x5d;
  *(uint8_t*)0x20000ae5 = 6;
  *(uint8_t*)0x20000ae6 = 7;
  *(uint8_t*)0x20000ae7 = 0x25;
  *(uint8_t*)0x20000ae8 = 1;
  *(uint8_t*)0x20000ae9 = 0x81;
  *(uint8_t*)0x20000aea = 0;
  *(uint16_t*)0x20000aeb = 0x80;
  *(uint8_t*)0x20000aed = 9;
  *(uint8_t*)0x20000aee = 5;
  *(uint8_t*)0x20000aef = 1;
  *(uint8_t*)0x20000af0 = 3;
  *(uint16_t*)0x20000af1 = 0x40;
  *(uint8_t*)0x20000af3 = 4;
  *(uint8_t*)0x20000af4 = 0x81;
  *(uint8_t*)0x20000af5 = 0x1f;
  *(uint8_t*)0x20000af6 = 7;
  *(uint8_t*)0x20000af7 = 0x25;
  *(uint8_t*)0x20000af8 = 1;
  *(uint8_t*)0x20000af9 = 3;
  *(uint8_t*)0x20000afa = 0x7f;
  *(uint16_t*)0x20000afb = 4;
  *(uint8_t*)0x20000afd = 2;
  *(uint8_t*)0x20000afe = 8;
  *(uint8_t*)0x20000aff = 9;
  *(uint8_t*)0x20000b00 = 5;
  *(uint8_t*)0x20000b01 = 8;
  *(uint8_t*)0x20000b02 = 1;
  *(uint16_t*)0x20000b03 = 0x40;
  *(uint8_t*)0x20000b05 = 0x20;
  *(uint8_t*)0x20000b06 = 5;
  *(uint8_t*)0x20000b07 = 6;
  *(uint8_t*)0x20000b08 = 7;
  *(uint8_t*)0x20000b09 = 0x25;
  *(uint8_t*)0x20000b0a = 1;
  *(uint8_t*)0x20000b0b = 1;
  *(uint8_t*)0x20000b0c = 9;
  *(uint16_t*)0x20000b0d = 0x7ff8;
  *(uint8_t*)0x20000b0f = 9;
  *(uint8_t*)0x20000b10 = 5;
  *(uint8_t*)0x20000b11 = 5;
  *(uint8_t*)0x20000b12 = 3;
  *(uint16_t*)0x20000b13 = 0x3ff;
  *(uint8_t*)0x20000b15 = 0xc2;
  *(uint8_t*)0x20000b16 = 0xa4;
  *(uint8_t*)0x20000b17 = 0x1f;
  *(uint8_t*)0x20000b18 = 2;
  *(uint8_t*)0x20000b19 = 9;
  *(uint32_t*)0x20001100 = 0xa;
  *(uint64_t*)0x20001104 = 0x20000cc0;
  *(uint8_t*)0x20000cc0 = 0xa;
  *(uint8_t*)0x20000cc1 = 6;
  *(uint16_t*)0x20000cc2 = 0x200;
  *(uint8_t*)0x20000cc4 = 0x3f;
  *(uint8_t*)0x20000cc5 = 7;
  *(uint8_t*)0x20000cc6 = 7;
  *(uint8_t*)0x20000cc7 = 0x40;
  *(uint8_t*)0x20000cc8 = 6;
  *(uint8_t*)0x20000cc9 = 0;
  *(uint32_t*)0x2000110c = 0;
  *(uint64_t*)0x20001110 = 0;
  *(uint32_t*)0x20001118 = 8;
  *(uint32_t*)0x2000111c = 0;
  *(uint64_t*)0x20001120 = 0;
  *(uint32_t*)0x20001128 = 0;
  *(uint64_t*)0x2000112c = 0;
  *(uint32_t*)0x20001134 = 0;
  *(uint64_t*)0x20001138 = 0;
  *(uint32_t*)0x20001140 = 0;
  *(uint64_t*)0x20001144 = 0;
  *(uint32_t*)0x2000114c = 0;
  *(uint64_t*)0x20001150 = 0;
  *(uint32_t*)0x20001158 = 0;
  *(uint64_t*)0x2000115c = 0;
  *(uint32_t*)0x20001164 = 0;
  *(uint64_t*)0x20001168 = 0;
  *(uint32_t*)0x20001170 = 0;
  *(uint64_t*)0x20001174 = 0;
  syz_usb_connect(2, 0x11a, 0x20000a00, 0x20001100);
  close_fds();
}
int main(void)
{
  syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul);
  syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul);
  syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul);
  do_sandbox_none();
  return 0;
}