// https://syzkaller.appspot.com/bug?id=90db4795bd44fcbb13fddc0adea831a625090d21
// 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 279
#endif
#ifndef __NR_mmap
#define __NR_mmap 222
#endif
#ifndef __NR_setxattr
#define __NR_setxattr 5
#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, 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 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, loopfd = -1, 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) {
    memset(loopname, 0, sizeof(loopname));
    snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid);
    if (setup_loop_device(data, size, loopname, &loopfd) == -1)
      return -1;
    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) {
    ioctl(loopfd, LOOP_CLR_FD, 0);
    close(loopfd);
  }
  errno = err;
  return res;
}

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

  memcpy((void*)0x20000080, "hfsplus\000", 8);
  memcpy((void*)0x200006c0, "./file0\000", 8);
  memcpy((void*)0x200000c0, "type", 4);
  *(uint8_t*)0x200000c4 = 0x3d;
  memcpy((void*)0x200000c5, "\xc5\x0c\xb8\xcf", 4);
  *(uint8_t*)0x200000c9 = 0x2c;
  memcpy((void*)0x200000ca, "gid", 3);
  *(uint8_t*)0x200000cd = 0x3d;
  sprintf((char*)0x200000ce, "0x%016llx", (long long)0);
  *(uint8_t*)0x200000e0 = 0x2c;
  memcpy((void*)0x200000e1, "decompose", 9);
  *(uint8_t*)0x200000ea = 0x2c;
  memcpy((void*)0x200000eb, "nls", 3);
  *(uint8_t*)0x200000ee = 0x3d;
  memcpy((void*)0x200000ef, "default", 7);
  *(uint8_t*)0x200000f6 = 0x2c;
  *(uint8_t*)0x200000f7 = 0;
  memcpy(
      (void*)0x20004e00,
      "\x78\x9c\xec\xdd\x4f\x6f\x1c\x67\x1d\x07\xf0\xef\x6c\xe2\x8d\xd7\x48\x89"
      "\x93\x26\x6d\x83\x90\xb0\x8a\x54\xa1\x46\x24\xfe\x93\x16\x23\x21\x01\xa5"
      "\x20\x0b\x2a\xa8\xc4\xa5\x52\x55\x21\x8b\xd8\x8d\x95\x4d\x5a\xd9\x2e\x72"
      "\x7b\x00\x83\x78\x05\xbc\x82\x02\x32\x87\x9e\x38\x70\x42\x20\xe5\xc0\x11"
      "\xf1\x16\x8c\x7a\x44\xe2\x94\x03\xbe\x19\xcd\xec\xac\xbd\x4e\x36\x4e\x36"
      "\x36\xde\x4d\xfa\xf9\x48\xb3\xf3\x7b\xe6\x99\x79\xe6\x37\x3f\xcf\x8e\x66"
      "\x76\x65\x6d\x80\xcf\xad\x85\xb7\x33\xb6\x99\x22\x0b\x57\xde\xdc\x28\xdb"
      "\xdb\x5b\x73\xed\xed\xad\xb9\xdb\xdd\x38\xc9\x99\x24\x8d\x64\x3c\x49\x51"
      "\x2e\xfe\x73\x92\xcf\x92\xcd\x74\xa6\x5c\xee\x76\xf4\xcc\x1f\xf0\xee\x44"
      "\xf3\xde\xa7\xef\x5c\x5e\xee\xb4\xc6\xeb\xa9\x5a\xbf\xe8\xbb\xdd\x8f\xcf"
      "\x0d\x70\x14\x7b\xb9\x4c\x76\x72\xad\xe6\x47\x70\x60\xbc\xd9\x23\x8f\x57"
      "\x1e\xdd\xa9\x5b\xdd\xd6\x85\x24\x53\x47\xcb\x0f\x8e\xc7\x6e\xd7\xbf\xfa"
      "\x76\x3f\xf4\xfd\x0c\x00\x3c\xfd\x8a\xe4\x54\xbf\xe5\x93\xc9\x44\x7d\xb3"
      "\x5e\x3e\x07\x74\xee\x8a\x3b\xf7\xd8\x4f\xb5\xcd\x61\x27\x00\x00\x00\x00"
      "\x27\xe0\xdc\x4e\x76\xb2\x91\xb3\xc3\xce\x03\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\x9e\x26\xf5\xef\xff\x17\xf5\xd4\xe8\xc6\x53\x29\x32\xde\xf9\xfd"
      "\xff\x66\xbd\x2c\x75\xfc\x54\xbb\x3b\xec\x04\x00\x00\x00\x00\x00\x00\x00"
      "\xe0\x18\x7c\x79\x27\x3b\xd9\xc8\xd9\x6e\x7b\xb7\xa8\xbe\xf3\x7f\xa9\x6a"
      "\x5c\xac\x5e\xbf\x90\x0f\xb3\x96\xa5\xac\xe6\x6a\x36\xb2\x98\xf5\xac\x67"
      "\x35\x33\x49\x26\x7b\x06\x6a\x6e\x2c\xae\xaf\xaf\xce\x3c\xc6\x96\xb3\x7d"
      "\xb7\x9c\x3d\x99\xe3\x05\x00\x00\x00\x00\x00\x00\x80\x67\xd4\xaf\xb3\xb0"
      "\xff\xfd\x3f\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\x8c\x82\x22\x39"
      "\xd5\x99\x55\xd3\xc5\x6e\x3c\x99\xc6\xe9\x24\xe3\x49\x9a\xe5\x7a\x9b\xc9"
      "\x5f\xbb\xf1\x48\x69\x0d\xb6\xfa\xdd\xff\x57\x1e\x00\x00\x00\x30\x42\xce"
      "\xed\x64\x27\x1b\x39\xdb\x6d\xef\x16\xd5\x33\xff\xf3\xd5\x73\xff\x78\x3e"
      "\xcc\x9d\xac\x67\x25\xeb\x69\x67\x29\x37\xaa\xcf\x02\x3a\x4f\xfd\x8d\xed"
      "\xad\xb9\xf6\xf6\xd6\xdc\xed\x72\x7a\x70\xdc\xef\xfc\x67\xa0\x34\xaa\x11"
      "\xd3\xf9\xec\xa1\xff\x9e\xa7\xab\x35\x2e\xed\x6d\xb1\x90\xef\xe7\x27\xb9"
      "\x92\xa9\xbc\x95\xd5\xac\xe4\xe7\x59\xcc\x7a\x96\x32\x95\x37\xaa\x68\x31"
      "\x45\x7e\x5f\x7f\x7a\x31\xd9\xcd\xb3\x7f\xbe\xdf\x3e\xd0\x7a\x2b\xc9\x2f"
      "\x0f\xcb\xf5\xc5\x2a\x93\x56\x96\xb3\x52\xe5\x76\x35\x3f\xcb\xfb\x69\xe7"
      "\x46\x1a\xd5\x31\x54\xeb\x1c\xbe\xc7\x5f\x95\xd5\x29\xbe\x55\x7b\xcc\x1a"
      "\xdd\xa8\xe7\xe5\x11\xfd\xa0\x9e\x8f\x86\xc9\xaa\x22\x63\x7b\x15\x99\x4e"
      "\x51\x2f\x4b\xce\x1f\x5e\x89\x01\xcf\x93\xfb\xf7\x34\x93\xc6\xde\x67\x50"
      "\x17\x1f\xba\xa7\xc6\x5e\x34\x68\xcd\x27\xba\xdb\x25\x79\x63\xa4\x6b\x3e"
      "\xdb\x73\xf6\x3d\x7f\x78\xcd\x93\x97\xff\xf0\xdb\x7b\x37\xdb\x77\x6e\xdd"
      "\x5c\x5e\xbb\x32\x3a\x87\xf4\x84\xee\xaf\xc4\x5c\x4f\x25\x5e\x38\x81\x4a"
      "\xfc\xf7\x88\xf9\x1f\x9f\x66\x5d\x8d\xce\x55\x74\xb0\xab\xe5\x4b\xd5\xb6"
      "\x67\xb3\x92\x1f\xe5\xfd\xdc\xc8\x52\x5e\xcb\xf5\xcc\x67\x36\xaf\xe6\x7a"
      "\x66\xf2\x8d\xbc\xda\x53\xd7\x4b\x8f\x71\x7d\x6b\x0c\xf6\x5e\xfb\xca\x57"
      "\xeb\x60\x2c\xc9\xf7\xea\xf9\x68\x28\xeb\x7a\xbe\xa7\xae\xbd\x57\xba\xc9"
      "\xaa\xaf\x77\xc9\x7e\x95\x2e\x3c\xa2\x4a\xbb\xe7\x06\xbe\x22\x9d\xfe\x62"
      "\x1d\x94\x27\xeb\xeb\x23\x77\x45\x3a\x7f\xdf\xb5\xb9\x5b\x89\xe7\x0e\xaf"
      "\xc4\xef\x76\xcb\xd7\xb5\xf6\x9d\x5b\xab\x37\x17\x3f\x78\xcc\xfd\xbd\x5c"
      "\xcf\xcb\x0a\x7c\x77\xa4\x2a\x51\x9e\x2f\x17\xca\x3f\x56\xd5\x3a\x78\x76"
      "\x94\x7d\xcf\xf5\xed\x9b\xa9\xfa\x2e\xee\xf5\x35\x1e\xe8\xbb\xb4\xd7\xf7"
      "\xa8\x77\x6a\xb3\xbe\x87\x7b\x70\xa4\xd9\xaa\xef\x85\xbe\x7d\x73\x55\xdf"
      "\x8b\x3d\x7d\xfd\xee\x72\x0e\x18\xf0\xeb\x16\x00\x4e\xc4\xc4\x2b\x13\xcd"
      "\xd6\xbf\x5b\xff\x6c\x7d\xd2\xfa\x4d\xeb\x66\xeb\xcd\xf1\xd7\xcf\xcc\x9f"
      "\xf9\x52\x33\x63\x7f\x3f\xfd\x97\x53\x7f\x6a\xfc\xb1\xf1\xcd\xe2\x95\x7c"
      "\x92\x5f\xec\x3f\xff\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4f\x6e\xed\xa3\x8f\x6f\x2d"
      "\xb6\xdb\x4b\xab\x82\xd1\x0e\xfe\x51\xff\xc1\x86\xb3\xf7\x66\x92\x11\x28"
      "\xc2\xb3\x1c\xdc\x7d\xd2\xcd\xc7\xeb\x33\xe3\x98\xf3\x19\xe2\x45\x09\x38"
      "\x11\xd7\xd6\x6f\x7f\x70\x6d\xed\xa3\x8f\xbf\xb6\x72\x7b\xf1\xbd\xa5\xf7"
      "\x96\xee\x5c\x9f\xff\xfa\xdc\x6b\xd7\x67\xe6\xe7\xaf\x2d\xaf\xb4\x97\xa6"
      "\x3b\xaf\xc3\xce\x12\x00\x38\x4e\xfb\x37\xfd\xc3\xce\x04\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x78\x98\x93\xf8\xf7\xe6\x61\x1f\x23\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\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\xf0\x6c\x5b"
      "\x78\x3b\x63\x9b\x29\x32\x33\x7d\x75\xba\x6c\x6f\x6f\xcd\xb5\xcb\xa9\x1b"
      "\xef\xaf\x39\x9e\xa4\x28\x83\xbf\x25\xf9\x2c\xd9\x4c\x67\xca\x64\xcf\x70"
      "\xc5\x7e\x38\x76\x60\x3f\xef\x4e\x34\xef\x7d\xfa\xce\xe5\xe5\xfd\xb1\xc6"
      "\xbb\xeb\x17\x07\xb7\x7b\x12\x07\x72\x69\xdc\x97\xd3\x51\xc7\x9b\x1d\x64"
      "\xbc\x9f\xf6\xc4\x3f\x6c\xd5\xc1\xfe\x11\x4e\x25\xb9\x50\xcf\x61\xe8\xfe"
      "\x17\x00\x00\xff\xff\x35\x1b\xfe\x43",
      1557);
  syz_mount_image(0x20000080, 0x200006c0, 0, 0x200000c0, 1, 0x615, 0x20004e00);
  memcpy((void*)0x20001d00, "./file1\000", 8);
  memcpy((void*)0x20001d40, "trusted.overlay.upper\000", 22);
  syscall(__NR_setxattr, 0x20001d00ul, 0x20001d40ul, 0ul, 0ul, 1ul);
  return 0;
}