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

#define _GNU_SOURCE

#include <endian.h>
#include <errno.h>
#include <fcntl.h>
#include <setjmp.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/mount.h>
#include <sys/stat.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <unistd.h>

#include <linux/loop.h>

#ifndef __NR_memfd_create
#define __NR_memfd_create 319
#endif

static unsigned long long procid;

//% This code is derived from puff.{c,h}, found in the zlib development. The
//% original files come with the following copyright notice:

//% Copyright (C) 2002-2013 Mark Adler, all rights reserved
//% version 2.3, 21 Jan 2013
//% This software is provided 'as-is', without any express or implied
//% warranty.  In no event will the author be held liable for any damages
//% arising from the use of this software.
//% Permission is granted to anyone to use this software for any purpose,
//% including commercial applications, and to alter it and redistribute it
//% freely, subject to the following restrictions:
//% 1. The origin of this software must not be misrepresented; you must not
//%    claim that you wrote the original software. If you use this software
//%    in a product, an acknowledgment in the product documentation would be
//%    appreciated but is not required.
//% 2. Altered source versions must be plainly marked as such, and must not be
//%    misrepresented as being the original software.
//% 3. This notice may not be removed or altered from any source distribution.
//% Mark Adler    madler@alumni.caltech.edu

//% BEGIN CODE DERIVED FROM puff.{c,h}

#define MAXBITS 15
#define MAXLCODES 286
#define MAXDCODES 30
#define MAXCODES (MAXLCODES + MAXDCODES)
#define FIXLCODES 288

struct puff_state {
  unsigned char* out;
  unsigned long outlen;
  unsigned long outcnt;
  const unsigned char* in;
  unsigned long inlen;
  unsigned long incnt;
  int bitbuf;
  int bitcnt;
  jmp_buf env;
};
static int puff_bits(struct puff_state* s, int need)
{
  long val = s->bitbuf;
  while (s->bitcnt < need) {
    if (s->incnt == s->inlen)
      longjmp(s->env, 1);
    val |= (long)(s->in[s->incnt++]) << s->bitcnt;
    s->bitcnt += 8;
  }
  s->bitbuf = (int)(val >> need);
  s->bitcnt -= need;
  return (int)(val & ((1L << need) - 1));
}
static int puff_stored(struct puff_state* s)
{
  s->bitbuf = 0;
  s->bitcnt = 0;
  if (s->incnt + 4 > s->inlen)
    return 2;
  unsigned len = s->in[s->incnt++];
  len |= s->in[s->incnt++] << 8;
  if (s->in[s->incnt++] != (~len & 0xff) ||
      s->in[s->incnt++] != ((~len >> 8) & 0xff))
    return -2;
  if (s->incnt + len > s->inlen)
    return 2;
  if (s->outcnt + len > s->outlen)
    return 1;
  for (; len--; s->outcnt++, s->incnt++) {
    if (s->in[s->incnt])
      s->out[s->outcnt] = s->in[s->incnt];
  }
  return 0;
}
struct puff_huffman {
  short* count;
  short* symbol;
};
static int puff_decode(struct puff_state* s, const struct puff_huffman* h)
{
  int first = 0;
  int index = 0;
  int bitbuf = s->bitbuf;
  int left = s->bitcnt;
  int code = first = index = 0;
  int len = 1;
  short* next = h->count + 1;
  while (1) {
    while (left--) {
      code |= bitbuf & 1;
      bitbuf >>= 1;
      int count = *next++;
      if (code - count < first) {
        s->bitbuf = bitbuf;
        s->bitcnt = (s->bitcnt - len) & 7;
        return h->symbol[index + (code - first)];
      }
      index += count;
      first += count;
      first <<= 1;
      code <<= 1;
      len++;
    }
    left = (MAXBITS + 1) - len;
    if (left == 0)
      break;
    if (s->incnt == s->inlen)
      longjmp(s->env, 1);
    bitbuf = s->in[s->incnt++];
    if (left > 8)
      left = 8;
  }
  return -10;
}
static int puff_construct(struct puff_huffman* h, const short* length, int n)
{
  int len;
  for (len = 0; len <= MAXBITS; len++)
    h->count[len] = 0;
  int symbol;
  for (symbol = 0; symbol < n; symbol++)
    (h->count[length[symbol]])++;
  if (h->count[0] == n)
    return 0;
  int left = 1;
  for (len = 1; len <= MAXBITS; len++) {
    left <<= 1;
    left -= h->count[len];
    if (left < 0)
      return left;
  }
  short offs[MAXBITS + 1];
  offs[1] = 0;
  for (len = 1; len < MAXBITS; len++)
    offs[len + 1] = offs[len] + h->count[len];
  for (symbol = 0; symbol < n; symbol++)
    if (length[symbol] != 0)
      h->symbol[offs[length[symbol]]++] = symbol;
  return left;
}
static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode,
                      const struct puff_huffman* distcode)
{
  static const short lens[29] = {3,  4,  5,  6,   7,   8,   9,   10,  11, 13,
                                 15, 17, 19, 23,  27,  31,  35,  43,  51, 59,
                                 67, 83, 99, 115, 131, 163, 195, 227, 258};
  static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2,
                                 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0};
  static const short dists[30] = {
      1,    2,    3,    4,    5,    7,    9,    13,    17,    25,
      33,   49,   65,   97,   129,  193,  257,  385,   513,   769,
      1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577};
  static const short dext[30] = {0, 0, 0,  0,  1,  1,  2,  2,  3,  3,
                                 4, 4, 5,  5,  6,  6,  7,  7,  8,  8,
                                 9, 9, 10, 10, 11, 11, 12, 12, 13, 13};
  int symbol;
  do {
    symbol = puff_decode(s, lencode);
    if (symbol < 0)
      return symbol;
    if (symbol < 256) {
      if (s->outcnt == s->outlen)
        return 1;
      if (symbol)
        s->out[s->outcnt] = symbol;
      s->outcnt++;
    } else if (symbol > 256) {
      symbol -= 257;
      if (symbol >= 29)
        return -10;
      int len = lens[symbol] + puff_bits(s, lext[symbol]);
      symbol = puff_decode(s, distcode);
      if (symbol < 0)
        return symbol;
      unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]);
      if (dist > s->outcnt)
        return -11;
      if (s->outcnt + len > s->outlen)
        return 1;
      while (len--) {
        if (dist <= s->outcnt && s->out[s->outcnt - dist])
          s->out[s->outcnt] = s->out[s->outcnt - dist];
        s->outcnt++;
      }
    }
  } while (symbol != 256);
  return 0;
}
static int puff_fixed(struct puff_state* s)
{
  static int virgin = 1;
  static short lencnt[MAXBITS + 1], lensym[FIXLCODES];
  static short distcnt[MAXBITS + 1], distsym[MAXDCODES];
  static struct puff_huffman lencode, distcode;
  if (virgin) {
    lencode.count = lencnt;
    lencode.symbol = lensym;
    distcode.count = distcnt;
    distcode.symbol = distsym;
    short lengths[FIXLCODES];
    int symbol;
    for (symbol = 0; symbol < 144; symbol++)
      lengths[symbol] = 8;
    for (; symbol < 256; symbol++)
      lengths[symbol] = 9;
    for (; symbol < 280; symbol++)
      lengths[symbol] = 7;
    for (; symbol < FIXLCODES; symbol++)
      lengths[symbol] = 8;
    puff_construct(&lencode, lengths, FIXLCODES);
    for (symbol = 0; symbol < MAXDCODES; symbol++)
      lengths[symbol] = 5;
    puff_construct(&distcode, lengths, MAXDCODES);
    virgin = 0;
  }
  return puff_codes(s, &lencode, &distcode);
}
static int puff_dynamic(struct puff_state* s)
{
  static const short order[19] = {16, 17, 18, 0, 8,  7, 9,  6, 10, 5,
                                  11, 4,  12, 3, 13, 2, 14, 1, 15};
  int nlen = puff_bits(s, 5) + 257;
  int ndist = puff_bits(s, 5) + 1;
  int ncode = puff_bits(s, 4) + 4;
  if (nlen > MAXLCODES || ndist > MAXDCODES)
    return -3;
  short lengths[MAXCODES];
  int index;
  for (index = 0; index < ncode; index++)
    lengths[order[index]] = puff_bits(s, 3);
  for (; index < 19; index++)
    lengths[order[index]] = 0;
  short lencnt[MAXBITS + 1], lensym[MAXLCODES];
  struct puff_huffman lencode = {lencnt, lensym};
  int err = puff_construct(&lencode, lengths, 19);
  if (err != 0)
    return -4;
  index = 0;
  while (index < nlen + ndist) {
    int symbol;
    int len;
    symbol = puff_decode(s, &lencode);
    if (symbol < 0)
      return symbol;
    if (symbol < 16)
      lengths[index++] = symbol;
    else {
      len = 0;
      if (symbol == 16) {
        if (index == 0)
          return -5;
        len = lengths[index - 1];
        symbol = 3 + puff_bits(s, 2);
      } else if (symbol == 17)
        symbol = 3 + puff_bits(s, 3);
      else
        symbol = 11 + puff_bits(s, 7);
      if (index + symbol > nlen + ndist)
        return -6;
      while (symbol--)
        lengths[index++] = len;
    }
  }
  if (lengths[256] == 0)
    return -9;
  err = puff_construct(&lencode, lengths, nlen);
  if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1]))
    return -7;
  short distcnt[MAXBITS + 1], distsym[MAXDCODES];
  struct puff_huffman distcode = {distcnt, distsym};
  err = puff_construct(&distcode, lengths + nlen, ndist);
  if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1]))
    return -8;
  return puff_codes(s, &lencode, &distcode);
}
static int puff(unsigned char* dest, unsigned long* destlen,
                const unsigned char* source, unsigned long sourcelen)
{
  struct puff_state s = {
      .out = dest,
      .outlen = *destlen,
      .outcnt = 0,
      .in = source,
      .inlen = sourcelen,
      .incnt = 0,
      .bitbuf = 0,
      .bitcnt = 0,
  };
  int err;
  if (setjmp(s.env) != 0)
    err = 2;
  else {
    int last;
    do {
      last = puff_bits(&s, 1);
      int type = puff_bits(&s, 2);
      err = type == 0 ? puff_stored(&s)
                      : (type == 1 ? puff_fixed(&s)
                                   : (type == 2 ? puff_dynamic(&s) : -1));
      if (err != 0)
        break;
    } while (!last);
  }
  *destlen = s.outcnt;
  return err;
}

//% END CODE DERIVED FROM puff.{c,h}

#define ZLIB_HEADER_WIDTH 2

static int puff_zlib_to_file(const unsigned char* source,
                             unsigned long sourcelen, int dest_fd)
{
  if (sourcelen < ZLIB_HEADER_WIDTH)
    return 0;
  source += ZLIB_HEADER_WIDTH;
  sourcelen -= ZLIB_HEADER_WIDTH;
  const unsigned long max_destlen = 132 << 20;
  void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ,
                   MAP_PRIVATE | MAP_ANON, -1, 0);
  if (ret == MAP_FAILED)
    return -1;
  unsigned char* dest = (unsigned char*)ret;
  unsigned long destlen = max_destlen;
  int err = puff(dest, &destlen, source, sourcelen);
  if (err) {
    munmap(dest, max_destlen);
    errno = -err;
    return -1;
  }
  if (write(dest_fd, dest, destlen) != (ssize_t)destlen) {
    munmap(dest, max_destlen);
    return -1;
  }
  return munmap(dest, max_destlen);
}

static int setup_loop_device(unsigned char* data, unsigned long size,
                             const char* loopname, int* loopfd_p)
{
  int err = 0, loopfd = -1;
  int memfd = syscall(__NR_memfd_create, "syzkaller", 0);
  if (memfd == -1) {
    err = errno;
    goto error;
  }
  if (puff_zlib_to_file(data, size, memfd)) {
    err = errno;
    goto error_close_memfd;
  }
  loopfd = open(loopname, O_RDWR);
  if (loopfd == -1) {
    err = errno;
    goto error_close_memfd;
  }
  if (ioctl(loopfd, LOOP_SET_FD, memfd)) {
    if (errno != EBUSY) {
      err = errno;
      goto error_close_loop;
    }
    ioctl(loopfd, LOOP_CLR_FD, 0);
    usleep(1000);
    if (ioctl(loopfd, LOOP_SET_FD, memfd)) {
      err = errno;
      goto error_close_loop;
    }
  }
  close(memfd);
  *loopfd_p = loopfd;
  return 0;

error_close_loop:
  close(loopfd);
error_close_memfd:
  close(memfd);
error:
  errno = err;
  return -1;
}

static void reset_loop_device(const char* loopname)
{
  int loopfd = open(loopname, O_RDWR);
  if (loopfd == -1) {
    return;
  }
  if (ioctl(loopfd, LOOP_CLR_FD, 0)) {
  }
  close(loopfd);
}

static long syz_mount_image(volatile long fsarg, volatile long dir,
                            volatile long flags, volatile long optsarg,
                            volatile long change_dir,
                            volatile unsigned long size, volatile long image)
{
  unsigned char* data = (unsigned char*)image;
  int res = -1, err = 0, need_loop_device = !!size;
  char* mount_opts = (char*)optsarg;
  char* target = (char*)dir;
  char* fs = (char*)fsarg;
  char* source = NULL;
  char loopname[64];
  if (need_loop_device) {
    int loopfd;
    memset(loopname, 0, sizeof(loopname));
    snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid);
    if (setup_loop_device(data, size, loopname, &loopfd) == -1)
      return -1;
    close(loopfd);
    source = loopname;
  }
  mkdir(target, 0777);
  char opts[256];
  memset(opts, 0, sizeof(opts));
  if (strlen(mount_opts) > (sizeof(opts) - 32)) {
  }
  strncpy(opts, mount_opts, sizeof(opts) - 32);
  if (strcmp(fs, "iso9660") == 0) {
    flags |= MS_RDONLY;
  } else if (strncmp(fs, "ext", 3) == 0) {
    bool has_remount_ro = false;
    char* remount_ro_start = strstr(opts, "errors=remount-ro");
    if (remount_ro_start != NULL) {
      char after = *(remount_ro_start + strlen("errors=remount-ro"));
      char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1);
      has_remount_ro = ((before == '\0' || before == ',') &&
                        (after == '\0' || after == ','));
    }
    if (strstr(opts, "errors=panic") || !has_remount_ro)
      strcat(opts, ",errors=continue");
  } else if (strcmp(fs, "xfs") == 0) {
    strcat(opts, ",nouuid");
  }
  res = mount(source, target, fs, flags, opts);
  if (res == -1) {
    err = errno;
    goto error_clear_loop;
  }
  res = open(target, O_RDONLY | O_DIRECTORY);
  if (res == -1) {
    err = errno;
    goto error_clear_loop;
  }
  if (change_dir) {
    res = chdir(target);
    if (res == -1) {
      err = errno;
    }
  }

error_clear_loop:
  if (need_loop_device)
    reset_loop_device(loopname);
  errno = err;
  return res;
}

int main(void)
{
  syscall(__NR_mmap, /*addr=*/0x3ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul,
          /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
          /*offset=*/0ul);
  syscall(__NR_mmap, /*addr=*/0x400000000000ul, /*len=*/0x1000000ul,
          /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul,
          /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
          /*offset=*/0ul);
  syscall(__NR_mmap, /*addr=*/0x400001000000ul, /*len=*/0x1000ul, /*prot=*/0ul,
          /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
          /*offset=*/0ul);
  const char* reason;
  (void)reason;
  if (write(1, "executing program\n", sizeof("executing program\n") - 1)) {
  }
  memcpy((void*)0x400000000040, "ext4\000", 5);
  memcpy((void*)0x4000000001c0, "./file2\000", 8);
  memcpy((void*)0x400000000200, "nogrpid", 7);
  *(uint8_t*)0x400000000207 = 0x2c;
  memcpy((void*)0x400000000208, "resuid", 6);
  *(uint8_t*)0x40000000020e = 0x3d;
  sprintf((char*)0x40000000020f, "0x%016llx", (long long)0);
  *(uint8_t*)0x400000000221 = 0x2c;
  memcpy((void*)0x400000000222, "debug_want_extra_isize", 22);
  *(uint8_t*)0x400000000238 = 0x3d;
  sprintf((char*)0x400000000239, "0x%016llx", (long long)0x68);
  *(uint8_t*)0x40000000024b = 0x2c;
  memcpy((void*)0x40000000024c, "debug", 5);
  *(uint8_t*)0x400000000251 = 0x2c;
  memcpy((void*)0x400000000252, "nombcache", 9);
  *(uint8_t*)0x40000000025b = 0x2c;
  memcpy((void*)0x40000000025c, "quota", 5);
  *(uint8_t*)0x400000000261 = 0x2c;
  *(uint8_t*)0x400000000262 = 0;
  memcpy(
      (void*)0x400000000940,
      "\x78\x9c\xec\xdb\xcf\x6b\x1c\x55\x1c\x00\xf0\xef\xcc\x26\xad\xfd\x65\x62"
      "\xa9\x3f\x9a\x56\x8d\x56\x31\xf8\x23\x69\xd2\x5a\x7b\xf0\xa2\x28\x78\x50"
      "\x10\xf4\x50\x8f\x31\x49\x4b\xec\xb6\x91\x26\x82\x2d\x41\xa3\x48\x3d\x4a"
      "\xc1\xbb\x78\x14\xfc\x0b\x3c\xe9\x45\xd4\x93\xe0\x55\xef\x52\x28\x92\x4b"
      "\xab\xa7\x95\xd9\x9d\x49\x76\x37\xbb\x69\x92\x6e\xb2\xd5\xfd\x7c\x60\x92"
      "\xf7\x66\xde\xf2\xde\x77\x67\xde\xee\x7b\xf3\x76\x02\xe8\x59\xc3\xd9\x9f"
      "\x24\x62\x7f\x44\xfc\x1e\x11\x03\xb5\x6c\x63\x81\xe1\xda\xbf\x5b\xcb\x8b"
      "\x53\x7f\x2f\x2f\x4e\x25\x51\xa9\xbc\xf5\x57\x52\x2d\x77\x73\x79\x71\xaa"
      "\x28\x5a\xbc\x6e\x5f\x91\xe9\x8b\x48\x3f\x4b\xe2\x48\x8b\x7a\xe7\x2f\x5f"
      "\x39\x3f\x59\x2e\xcf\x5c\xca\xf3\x63\x0b\x17\xde\x1f\x9b\xbf\x7c\xe5\xb9"
      "\xd9\x0b\x93\xe7\x66\xce\xcd\x5c\x9c\x38\x7d\xfa\xe4\x89\xf1\x17\x4e\x4d"
      "\x3c\xdf\x91\x38\xb3\xb8\x6e\x0e\x7d\x34\x77\xf4\xf0\x6b\xef\x5c\x7b\x63"
      "\xea\xcc\xb5\x77\x7f\xfe\x36\x29\xe2\x6f\x8a\xa3\x43\x86\xd7\x3b\xf8\x64"
      "\xa5\xd2\xe1\xea\xba\xeb\x40\x5d\x3a\xe9\xeb\x62\x43\xd8\x94\x52\xad\x9b"
      "\x46\x7f\xb5\xff\x0f\x44\x29\x56\x4f\xde\x40\xbc\xfa\x69\x57\x1b\x07\x6c"
      "\xab\x4a\xa5\x52\x79\xa0\xfd\xe1\xa5\x0a\xf0\x3f\x96\x44\xb7\x5b\x00\x74"
      "\x47\xf1\x45\x9f\xcd\x7f\x8b\x6d\x87\x86\x1e\x77\x85\x1b\x2f\xd5\x26\x40"
      "\x59\xdc\xb7\xf2\xad\x76\xa4\x2f\xd2\xbc\x4c\x7f\xd3\xfc\xb6\x93\x86\x23"
      "\xe2\xcc\xd2\x3f\x5f\x65\x5b\x6c\xcf\x7d\x08\x00\x80\x06\xdf\x67\xe3\x9f"
      "\x67\x5b\x8d\xff\xd2\xa8\xbf\x2f\x74\x6f\xbe\x86\x32\x18\x11\xf7\x45\xc4"
      "\xc1\x88\x38\x15\x11\x87\x22\xe2\xfe\x88\x6a\xd9\x07\x23\xe2\xa1\x4d\xd6"
      "\xdf\xbc\x48\xb2\x76\xfc\x93\x5e\xdf\x52\x60\x1b\x94\x8d\xff\x5e\xcc\xd7"
      "\xb6\x1a\xc7\x7f\xc5\xe8\x2f\x06\x4b\x79\xee\x40\x35\xfe\xfe\xe4\xec\x6c"
      "\x79\xe6\x78\xfe\x9e\x8c\x44\xff\xee\x2c\x3f\xbe\x4e\x1d\x3f\xbc\xf2\xdb"
      "\x17\xed\x8e\xd5\x8f\xff\xb2\x2d\xab\xbf\x18\x0b\xe6\xed\xb8\xde\xb7\xbb"
      "\xf1\x35\xd3\x93\x0b\x93\x77\x12\x73\xbd\x1b\x9f\x44\x0c\xf5\xb5\x8a\x3f"
      "\x59\x59\x09\x48\x22\xe2\x70\x44\x0c\x6d\xb1\x8e\xd9\xa7\xbf\x39\xda\xee"
      "\xd8\xed\xe3\x5f\x47\x07\xd6\x99\x2a\x5f\x47\x3c\x55\x3b\xff\x4b\xd1\x14"
      "\x7f\x21\x59\x7f\x7d\x72\xec\x9e\x28\xcf\x1c\x1f\x2b\xae\x8a\xb5\x7e\xf9"
      "\xf5\xea\x9b\xed\xea\xbf\xa3\xf8\x3b\x20\x3b\xff\x7b\x5b\x5e\xff\x2b\xf1"
      "\x0f\x26\xf5\xeb\xb5\xf3\x9b\xaf\xe3\xea\x1f\x9f\xb7\x9d\xd3\x6c\xf5\xfa"
      "\xdf\x95\xbc\xdd\xb0\xef\xc3\xc9\x85\x85\x4b\xe3\x11\xbb\x92\xd7\x6b\x8d"
      "\xae\xdf\x3f\xd1\x54\x6e\x62\xb5\x7c\x16\xff\xc8\xb1\xd6\xfd\xff\x60\xac"
      "\xbe\x13\x47\x22\x22\xbb\x88\x1f\x8e\x88\x47\x22\xe2\xd1\xbc\xed\x8f\x45"
      "\xc4\xe3\x11\x71\x6c\x9d\xf8\x7f\x7a\xf9\x89\xf7\xb6\x1e\xff\xf6\xca\xe2"
      "\x9f\xde\xd4\xf9\x5f\x4d\xec\x8a\xe6\x3d\xad\x13\xa5\xf3\x3f\x7e\xd7\x50"
      "\xe9\xe0\x66\xe2\xcf\xce\xff\xc9\x6a\x6a\x24\xdf\xb3\x91\xcf\xbf\x8d\xb4"
      "\x6b\x6b\x57\x33\x00\x00\x00\xfc\xf7\xa4\x11\xb1\x3f\x92\x74\x74\x25\x9d"
      "\xa6\xa3\xa3\xb5\xdf\xf0\x1f\x8a\xbd\x69\x79\x6e\x7e\xe1\x99\xb3\x73\x1f"
      "\x5c\x9c\xae\x3d\x23\x30\x18\xfd\x69\x71\xa7\x6b\xa0\xee\x7e\xe8\x78\x3e"
      "\xad\x2f\xf2\x13\x4d\xf9\x13\xf9\x7d\xe3\x2f\x4b\x7b\xaa\xf9\xd1\xa9\xb9"
      "\xf2\x74\xb7\x83\x87\x1e\xb7\xaf\x4d\xff\xcf\xfc\x59\xea\x76\xeb\x80\x6d"
      "\xe7\x79\x2d\xe8\x5d\xfa\x3f\xf4\x2e\xfd\x1f\x7a\x97\xfe\x0f\xbd\xab\x45"
      "\xff\xdf\xd3\x8d\x76\x00\x3b\xaf\xd5\xf7\xff\xc7\x5d\x68\x07\xb0\xf3\x9a"
      "\xfa\xbf\x65\x3f\xe8\x21\xe6\xff\xd0\xbb\xf4\x7f\xe8\x5d\xfa\x3f\xf4\xa4"
      "\xf9\x3d\x71\xfb\x87\xe4\x25\x24\xd6\x24\x22\xbd\x2b\x9a\x21\xb1\x4d\x89"
      "\x6e\x7f\x32\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\xc6\xbf"
      "\x01\x00\x00\xff\xff\x50\x38\xe6\xd5",
      1071);
  syz_mount_image(/*fs=*/0x400000000040, /*dir=*/0x4000000001c0,
                  /*flags=MS_NODEV|MS_NOATIME*/ 0x404, /*opts=*/0x400000000200,
                  /*chdir=*/3, /*size=*/0x42f, /*img=*/0x400000000940);
  memcpy((void*)0x400000000100, "./file1\000", 8);
  memcpy((void*)0x4000000000c0, "trusted.overlay.upper\000", 22);
  syscall(__NR_lsetxattr, /*path=*/0x400000000100ul, /*name=*/0x4000000000c0ul,
          /*val=*/0x400000000040ul, /*size=*/0xfe37ul, /*flags=*/0ul);
  memcpy((void*)0x400000000140, "./file2\000", 8);
  syscall(__NR_creat, /*file=*/0x400000000140ul,
          /*mode=S_IXOTH|S_IROTH|S_IXGRP|S_IRGRP|S_IWUSR|S_IRUSR*/ 0x1adul);
  memcpy((void*)0x400000000180, "./file1\000", 8);
  syscall(__NR_unlink, /*path=*/0x400000000180ul);
  return 0;
}