// autogenerated by syzkaller (http://github.com/google/syzkaller)

#define _GNU_SOURCE

#include <endian.h>
#include <errno.h>
#include <fcntl.h>
#include <fcntl.h>
#include <linux/capability.h>
#include <sched.h>
#include <signal.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdio.h>
#include <string.h>
#include <sys/mman.h>
#include <sys/mount.h>
#include <sys/prctl.h>
#include <sys/resource.h>
#include <sys/stat.h>
#include <sys/stat.h>
#include <sys/syscall.h>
#include <sys/time.h>
#include <sys/wait.h>
#include <unistd.h>

__attribute__((noreturn)) static void doexit(int status)
{
  volatile unsigned i;
  syscall(__NR_exit_group, status);
  for (i = 0;; i++) {
  }
}

#include <errno.h>
#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>

const int kFailStatus = 67;
const int kRetryStatus = 69;

static void fail(const char* msg, ...)
{
  int e = errno;
  va_list args;
  va_start(args, msg);
  vfprintf(stderr, msg, args);
  va_end(args);
  fprintf(stderr, " (errno %d)\n", e);
  doexit((e == ENOMEM || e == EAGAIN) ? kRetryStatus : kFailStatus);
}

#define BITMASK_LEN(type, bf_len) (type)((1ull << (bf_len)) - 1)

#define BITMASK_LEN_OFF(type, bf_off, bf_len)                          \
  (type)(BITMASK_LEN(type, (bf_len)) << (bf_off))

#define STORE_BY_BITMASK(type, addr, val, bf_off, bf_len)              \
  if ((bf_off) == 0 && (bf_len) == 0) {                                \
    *(type*)(addr) = (type)(val);                                      \
  } else {                                                             \
    type new_val = *(type*)(addr);                                     \
    new_val &= ~BITMASK_LEN_OFF(type, (bf_off), (bf_len));             \
    new_val |= ((type)(val)&BITMASK_LEN(type, (bf_len))) << (bf_off);  \
    *(type*)(addr) = new_val;                                          \
  }

struct csum_inet {
  uint32_t acc;
};

static void csum_inet_init(struct csum_inet* csum)
{
  csum->acc = 0;
}

static void csum_inet_update(struct csum_inet* csum,
                             const uint8_t* data, size_t length)
{
  if (length == 0)
    return;

  size_t i;
  for (i = 0; i < length - 1; i += 2)
    csum->acc += *(uint16_t*)&data[i];

  if (length & 1)
    csum->acc += (uint16_t)data[length - 1];

  while (csum->acc > 0xffff)
    csum->acc = (csum->acc & 0xffff) + (csum->acc >> 16);
}

static uint16_t csum_inet_digest(struct csum_inet* csum)
{
  return ~csum->acc;
}

static void use_temporary_dir()
{
  char tmpdir_template[] = "./syzkaller.XXXXXX";
  char* tmpdir = mkdtemp(tmpdir_template);
  if (!tmpdir)
    fail("failed to mkdtemp");
  if (chmod(tmpdir, 0777))
    fail("failed to chmod");
  if (chdir(tmpdir))
    fail("failed to chdir");
}

static uintptr_t syz_open_dev(uintptr_t a0, uintptr_t a1, uintptr_t a2)
{
  if (a0 == 0xc || a0 == 0xb) {
    char buf[128];
    sprintf(buf, "/dev/%s/%d:%d", a0 == 0xc ? "char" : "block",
            (uint8_t)a1, (uint8_t)a2);
    return open(buf, O_RDWR, 0);
  } else {
    char buf[1024];
    char* hash;
    strncpy(buf, (char*)a0, sizeof(buf));
    buf[sizeof(buf) - 1] = 0;
    while ((hash = strchr(buf, '#'))) {
      *hash = '0' + (char)(a1 % 10);
      a1 /= 10;
    }
    return open(buf, a2, 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 = 128 << 20;
  setrlimit(RLIMIT_AS, &rlim);
  rlim.rlim_cur = rlim.rlim_max = 8 << 20;
  setrlimit(RLIMIT_MEMLOCK, &rlim);
  rlim.rlim_cur = rlim.rlim_max = 1 << 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);

#define CLONE_NEWCGROUP 0x02000000

  unshare(CLONE_NEWNS);
  unshare(CLONE_NEWIPC);
  unshare(CLONE_NEWCGROUP);
  unshare(CLONE_NEWNET);
  unshare(CLONE_NEWUTS);
  unshare(CLONE_SYSVSEM);
}

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) {
    close(fd);
    return false;
  }
  close(fd);
  return true;
}

static int real_uid;
static int real_gid;
__attribute__((aligned(64 << 10))) static char sandbox_stack[1 << 20];

static int namespace_sandbox_proc(void* arg)
{
  sandbox_common();

  write_file("/proc/self/setgroups", "deny");
  if (!write_file("/proc/self/uid_map", "0 %d 1\n", real_uid))
    fail("write of /proc/self/uid_map failed");
  if (!write_file("/proc/self/gid_map", "0 %d 1\n", real_gid))
    fail("write of /proc/self/gid_map failed");

  if (mkdir("./syz-tmp", 0777))
    fail("mkdir(syz-tmp) failed");
  if (mount("", "./syz-tmp", "tmpfs", 0, NULL))
    fail("mount(tmpfs) failed");
  if (mkdir("./syz-tmp/newroot", 0777))
    fail("mkdir failed");
  if (mkdir("./syz-tmp/newroot/dev", 0700))
    fail("mkdir failed");
  if (mount("/dev", "./syz-tmp/newroot/dev", NULL,
            MS_BIND | MS_REC | MS_PRIVATE, NULL))
    fail("mount(dev) failed");
  if (mkdir("./syz-tmp/newroot/proc", 0700))
    fail("mkdir failed");
  if (mount(NULL, "./syz-tmp/newroot/proc", "proc", 0, NULL))
    fail("mount(proc) failed");
  if (mkdir("./syz-tmp/pivot", 0777))
    fail("mkdir failed");
  if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) {
    if (chdir("./syz-tmp"))
      fail("chdir failed");
  } else {
    if (chdir("/"))
      fail("chdir failed");
    if (umount2("./pivot", MNT_DETACH))
      fail("umount failed");
  }
  if (chroot("./newroot"))
    fail("chroot failed");
  if (chdir("/"))
    fail("chdir failed");

  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))
    fail("capget failed");
  cap_data[0].effective &= ~(1 << CAP_SYS_PTRACE);
  cap_data[0].permitted &= ~(1 << CAP_SYS_PTRACE);
  cap_data[0].inheritable &= ~(1 << CAP_SYS_PTRACE);
  if (syscall(SYS_capset, &cap_hdr, &cap_data))
    fail("capset failed");

  loop();
  doexit(1);
}

static int do_sandbox_namespace(int executor_pid, bool enable_tun)
{
  int pid;

  real_uid = getuid();
  real_gid = getgid();
  mprotect(sandbox_stack, 4096, PROT_NONE);
  pid = clone(namespace_sandbox_proc,
              &sandbox_stack[sizeof(sandbox_stack) - 64],
              CLONE_NEWUSER | CLONE_NEWPID, NULL);
  if (pid < 0)
    fail("sandbox clone failed");
  return pid;
}

long r[5];
void loop()
{
  memset(r, -1, sizeof(r));
  syscall(__NR_mmap, 0x20000000, 0xfff000, 0x3, 0x32, 0xffffffff, 0x0);
  r[0] = syscall(__NR_socket, 0x2, 0x1, 0x0);
  memcpy((void*)0x20c55000, "/dev/net/tun", 13);
  r[1] = syz_open_dev(0x20c55000, 0x0, 0x0);
  r[2] = syscall(__NR_fcntl, r[1], 0x0, r[0]);
  r[3] = syscall(__NR_socket, 0x10002000000011, 0x8000000080003, 0x8);
  *(uint8_t*)0x20e63000 = 0x73;
  *(uint8_t*)0x20e63001 = 0x79;
  *(uint8_t*)0x20e63002 = 0x7a;
  *(uint8_t*)0x20e63003 = 0x30;
  *(uint8_t*)0x20e63004 = 0x0;
  *(uint32_t*)0x20e63010 = 0x5;
  *(uint32_t*)0x20e63014 = 0x0;
  *(uint64_t*)0x20e63018 = 0x20c15000;
  *(uint32_t*)0x20c15000 = 0x0;
  *(uint32_t*)0x20c15004 = 0x0;
  *(uint16_t*)0x20c15008 = 0x0;
  syscall(__NR_ioctl, r[1], 0x400454ca, 0x20e63000);
  *(uint8_t*)0x2062ffe0 = 0x73;
  *(uint8_t*)0x2062ffe1 = 0x79;
  *(uint8_t*)0x2062ffe2 = 0x7a;
  *(uint8_t*)0x2062ffe3 = 0x30;
  *(uint8_t*)0x2062ffe4 = 0x0;
  *(uint16_t*)0x2062fff0 = 0x301;
  syscall(__NR_ioctl, r[0], 0x8914, 0x2062ffe0);
  *(uint32_t*)0x20113000 = 0x1000;
  syscall(__NR_setsockopt, r[3], 0x107, 0xf, 0x20113000, 0x4);
  *(uint8_t*)0x20b13000 = 0x73;
  *(uint8_t*)0x20b13001 = 0x79;
  *(uint8_t*)0x20b13002 = 0x7a;
  *(uint8_t*)0x20b13003 = 0x30;
  *(uint8_t*)0x20b13004 = 0x0;
  *(uint32_t*)0x20b13010 = 0x0;
  *(uint8_t*)0x20b13014 = 0x0;
  *(uint8_t*)0x20b13015 = 0x0;
  *(uint8_t*)0x20b13016 = 0x0;
  *(uint8_t*)0x20b13017 = 0x0;
  *(uint8_t*)0x20b13018 = 0x0;
  *(uint8_t*)0x20b13019 = 0x0;
  *(uint8_t*)0x20b1301a = 0x0;
  *(uint8_t*)0x20b1301b = 0x0;
  *(uint8_t*)0x20b1301c = 0x0;
  *(uint8_t*)0x20b1301d = 0x0;
  *(uint8_t*)0x20b1301e = 0x0;
  *(uint8_t*)0x20b1301f = 0x0;
  *(uint8_t*)0x20b13020 = 0x0;
  *(uint8_t*)0x20b13021 = 0x0;
  *(uint8_t*)0x20b13022 = 0x0;
  *(uint8_t*)0x20b13023 = 0x0;
  *(uint8_t*)0x20b13024 = 0x0;
  *(uint8_t*)0x20b13025 = 0x0;
  *(uint8_t*)0x20b13026 = 0x0;
  *(uint8_t*)0x20b13027 = 0x0;
  if (syscall(__NR_ioctl, r[3], 0x8933, 0x20b13000) != -1) {
    r[4] = *(uint32_t*)0x20b13010;
  }
  *(uint16_t*)0x20c85000 = 0x11;
  *(uint16_t*)0x20c85002 = htobe16(0x0);
  *(uint32_t*)0x20c85004 = r[4];
  *(uint16_t*)0x20c85008 = 0x1;
  *(uint8_t*)0x20c8500a = 0x0;
  *(uint8_t*)0x20c8500b = 0x6;
  *(uint8_t*)0x20c8500c = 0xaa;
  *(uint8_t*)0x20c8500d = 0xaa;
  *(uint8_t*)0x20c8500e = 0xaa;
  *(uint8_t*)0x20c8500f = 0xaa;
  *(uint8_t*)0x20c85010 = 0xaa;
  *(uint8_t*)0x20c85011 = 0x0;
  *(uint8_t*)0x20c85012 = 0x0;
  *(uint8_t*)0x20c85013 = 0x0;
  syscall(__NR_bind, r[3], 0x20c85000, 0x14);
  syscall(__NR_dup2, r[3], r[2]);
  *(uint8_t*)0x20217f75 = 0x0;
  *(uint8_t*)0x20217f76 = 0x81;
  *(uint16_t*)0x20217f77 = 0x1;
  *(uint16_t*)0x20217f79 = 0xf7e8;
  *(uint16_t*)0x20217f7b = 0x0;
  *(uint16_t*)0x20217f7d = 0x3;
  STORE_BY_BITMASK(uint8_t, 0x20217f7f, 0x5, 0, 4);
  STORE_BY_BITMASK(uint8_t, 0x20217f7f, 0x4, 4, 4);
  STORE_BY_BITMASK(uint8_t, 0x20217f80, 0x0, 0, 2);
  STORE_BY_BITMASK(uint8_t, 0x20217f80, 0xfd, 2, 6);
  *(uint16_t*)0x20217f81 = htobe16(0x20);
  *(uint16_t*)0x20217f83 = htobe16(0x64);
  *(uint16_t*)0x20217f85 = htobe16(0x0);
  *(uint8_t*)0x20217f87 = 0x7;
  *(uint8_t*)0x20217f88 = 0x84;
  *(uint16_t*)0x20217f89 = 0x0;
  *(uint32_t*)0x20217f8b = htobe32(0x20);
  *(uint32_t*)0x20217f8f = htobe32(0x7f000001);
  *(uint8_t*)0x20217f93 = 0x0;
  *(uint8_t*)0x20217f94 = 0x9;
  *(uint16_t*)0x20217f95 = 0x0;
  *(uint32_t*)0x20217f97 = htobe32(0x7f000001);
  memcpy((void*)0x20217f9b, "\x9c\xbc\x59\xa1", 4);
  struct csum_inet csum_1;
  csum_inet_init(&csum_1);
  csum_inet_update(&csum_1, (const uint8_t*)0x20217f93, 12);
  *(uint16_t*)0x20217f95 = csum_inet_digest(&csum_1);
  struct csum_inet csum_2;
  csum_inet_init(&csum_2);
  csum_inet_update(&csum_2, (const uint8_t*)0x20217f7f, 20);
  *(uint16_t*)0x20217f89 = csum_inet_digest(&csum_2);
  syscall(__NR_write, r[2], 0x20217f75, 0x2a);
}

int main()
{
  use_temporary_dir();
  int pid = do_sandbox_namespace(0, false);
  int status = 0;
  while (waitpid(pid, &status, __WALL) != pid) {
  }
  return 0;
}
