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

#define _GNU_SOURCE

#include <endian.h>
#include <pwd.h>
#include <signal.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <time.h>
#include <unistd.h>

#ifndef SYS___mount50
#define SYS___mount50 410
#endif
#ifndef SYS_compat_50_quotactl
#define SYS_compat_50_quotactl 148
#endif
#ifndef SYS_mmap
#define SYS_mmap 197
#endif
#ifndef SYS_open
#define SYS_open 5
#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 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_one(void)
{
  memcpy((void*)0x200001c0, "./file0\000", 8);
  syscall(SYS_open, /*file=*/0x200001c0ul, /*flags=*/0x200ul, /*mode=*/0ul);
  memcpy((void*)0x20000080, "./file0\000", 8);
  syscall(SYS_compat_50_quotactl, /*path=*/0x20000080ul, /*cmd=*/0x40000,
          /*id=*/-1, /*addr=*/0x200000c0ul);
  memcpy((void*)0x200000c0, "./file0\000", 8);
  syscall(SYS___mount50, /*type=*/0ul, /*path=*/0x200000c0ul, /*flags=*/0ul,
          /*data=*/0ul, /*len=*/0x448fa0d88f168a5eul);
  memcpy((void*)0x20000080, "./file0\000", 8);
  syscall(SYS_compat_50_quotactl, /*path=*/0x20000080ul, /*cmd=*/0x10000,
          /*id=*/-1, /*addr=*/0x200000c0ul);
}
int main(void)
{
  syscall(SYS_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=*/3ul,
          /*flags=*/0x1012ul, /*fd=*/-1, /*pad=*/0ul, /*offset=*/0ul);
  for (procid = 0; procid < 6; procid++) {
    if (fork() == 0) {
      loop();
    }
  }
  sleep(1000000);
  return 0;
}