You are not logged in.
I’m running into an issue with Rofi using a pre-configured setup from adi1090x/rofi. When I run my launcher script directly in Alacritty, the icons show up fine, but when I trigger it using an sxhkd shortcut, the icons do not appear. The shortcut did work, but suddenly stopped after i updated (I believe don't really remember when it stopped working)
Here’s my sxhkd shortcut:
super + u/space
/home/albert/.config/rofi/launchers/type-2/launcher.shRunning the script manually works:
/home/albert/.config/rofi/launchers/type-2/launcher.shI thought it might be related to environment variables. Here are the differences I noticed
Environment variables when running in terminal:
TERM=alacritty
WINDOWID=31457283
ALACRITTY_WINDOW_ID=31457283Environment variables when running from sxhkd:
TERM=linux
WINDOWID is not set
No Alacritty-related variablesOther than that, most variables seem similar, and the ones that are different don't seem to be odd to me. ¯\_(ツ)_/¯ Any ideas on how to fix this issue, or where i should look for more clues?
I did check journalctl but there was nothing related to rofi there when i typed journalctl -S "3 min ago"
it so that icons show correctly when launched from sxhkd?
Thanks.
Last edited by Albertba (2025-10-04 05:38:56)
Offline
Other than that, most variables seem similar
Please don't paraphrase, https://bbs.archlinux.org/viewtopic.php?id=57855
Post a diff.
Offline
Sorry about the paraphrasing.
here is the full diff
diff env_shell.log env_sxhkd.log
2,3d1
< WINDOWID=33554435
< COLORTERM=truecolor
17a16
> _=/usr/bin/env
27d25
< ALACRITTY_SOCKET=/run/user/1000/Alacritty-:0-6424.sock
32c30
< TERM=alacritty
---
> TERM=linux
51d48
< ALACRITTY_LOG=/tmp/Alacritty-6424.log
54d50
< ALACRITTY_WINDOW_ID=33554435
57,58c53
< SXHKD_PID=883
< _=/usr/bin/env
---
> SXHKD_PID=6584Offline
Don't check this w/ env, you can inspect the environment
tr '\0' '\n' < /proc/$(pidof rofi)/environ and you might even want to check that of sxhkd
Is this a recent regression? There's been some fuzz because gdk-pixbuf2 => glycin => bwrap
2.44.1-3 should not be affected by that, https://archive.archlinux.org/packages/ … kg.tar.zst
Offline
My version of gdk-pixbuf2 is 2.44.3-1.
I also switched away from using env and tried to inspect the process environment directly. The tricky part is that rofi eats all input, so I couldn’t just run tr '\0' '\n' < /proc/$(pidof rofi)/environ while it was open. To work around that, I wrapped rofi in a small shell script that dumps its environment before starting. and my shortcut calls this script.
tr '\0' '\n' < /proc/$$/environ > $HOME/rofi-env.log
exec rofi -show drun I also tried starting rofi in the background:
rofi -show drun &
tr '\0' '\n' < /proc/$(pidof rofi)/environbut got tr: read error: Is a directory, so I’m not sure if I’m missing something there.
One thing I want to clarify:
If I launch rofi -show drun from a terminal, the icons do show up.
If I launch the same thing via my sxhkd shortcut, the icons are missing.
For reference, here’s the environment that sxhkd is running with:
SHELL=/bin/bash
CSF_MDTVTexturesDirectory=/usr/share/opencascade/resources/Textures
CSF_DrawPluginDefaults=/usr/share/opencascade/resources/DrawResources
CSF_LANGUAGE=us
SSH_AUTH_SOCK=/run/user/1000/ssh-agent.socket
CSF_MIGRATION_TYPES=/usr/share/opencascade/resources/StdResource/MigrationSheet.txt
XDG_CONFIG_HOME=/home/albert/.config
CSF_OCCTResourcePath=/usr/share/opencascade/resources
CSF_STEPDefaults=/usr/share/opencascade/resources/XSTEPResource
GOBIN=/home/albert/.lcocal/bin
XDG_SEAT=seat0
PWD=/home/albert
LOGNAME=albert
XDG_SESSION_TYPE=tty
DRAWHOME=/usr/share/opencascade/resources/DrawResources
XAUTHORITY=/home/albert/.Xauthority
CSF_StandardLiteDefaults=/usr/share/opencascade/resources/StdResource
WINDOWPATH=1
MOTD_SHOWN=pam
HOME=/home/albert
LANG=en_US.UTF-8
CSF_ShadersDirectory=/usr/share/opencascade/resources/Shaders
CSF_EXCEPTION_PROMPT=1
CSF_XmlOcafResource=/usr/share/opencascade/resources/XmlOcafResource
CSF_SHMessage=/usr/share/opencascade/resources/SHMessage
XDG_SESSION_CLASS=user
ANDROID_AVD_HOME=/home/albert/.android/avd/
ANDROID_HOME=/home/albert/git/software/phone/
TERM=linux
USER=albert
CSF_StandardDefaults=/usr/share/opencascade/resources/StdResource
CSF_IGESDefaults=/usr/share/opencascade/resources/XSTEPResource
DISPLAY=:0
CSF_XCAFDefaults=/usr/share/opencascade/resources/StdResource
SHLVL=3
ANDROID_SDK_ROOT=/home/albert/git/software/phone/
XDG_VTNR=1
CSF_PluginDefaults=/usr/share/opencascade/resources/StdResource
CSF_TObjMessage=/usr/share/opencascade/resources/TObj
XDG_SESSION_ID=1
CASROOT=/usr
XDG_RUNTIME_DIR=/run/user/1000
DEBUGINFOD_URLS=https://debuginfod.archlinux.org
CSF_XSMessage=/usr/share/opencascade/resources/XSMessage
MMGT_CLEAR=1
PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl
CSF_TObjDefaults=/usr/share/opencascade/resources/StdResource
DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus
MAIL=/var/spool/mail/albert
DRAWDEFAULT=/usr/share/opencascade/resources/DrawResources/DrawDefault
GOPATH=/home/albert/.lcocal/go
_=/usr/bin/sxhkdOffline
The tricky part is that rofi eats all input, so I couldn’t just run tr '\0' '\n' < /proc/$(pidof rofi)/environ while it was open.
sleep 5; tr '\0' '\n' < /proc/$(pidof rofi)/environand trigger rofi within the next 5 seconds?
I wrapped rofi in a small shell script that dumps its environment
Better
strace -o /tmp/rofi.strace -f rofi -show druncat /tmp/rofi.strace | curl -F 'file=@-' 0x0.stOffline
I recollected the environment variables using the suggested method. Here’s a diff of the environment when rofi is launched via the keyboard shortcut vs. from the terminal: http://0x0.st/KMfv.txt
I also ran strace for more details:
Strace when launched with the shortcut
strace when launched from the terminal
Offline
If you're running BSPWM, there is an issue with the latest version and environment variables:
Environment variables not inherited by child processes in bspwmrc
Last edited by JimmyRoberts (2025-10-03 12:12:10)
Online
The environmental difference between the rofi processes is neglectable, but the invocation from the terminal as all the glycin/bwrap noise you'd expect while the once called from sxhkd loads /usr/lib/libglycin-2.so.0 and a bunch of /usr/share/glycin-loaders/ but then does absolutely nothing itr.
Try to downgrade to gdk-pixbuf 2.44.1-3 and then there's notably
3130 mkdir("/home/albert/.cache/glycin/usr/lib/glycin-loaders/2+/glycin-svg/fontconfig", 0777 <unfinished ...>
3107 futex(0x7f718c002370, FUTEX_WAIT_BITSET_PRIVATE, 4, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_FSETID <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_SYS_TTY_CONFIG <unfinished ...>
3185 prctl(PR_CAPBSET_DROP, CAP_SYSLOG <unfinished ...>
3184 mmap(0x7f7f7280b000, 31792, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0 <unfinished ...>
3181 <... mprotect resumed>) = 0
3180 <... close resumed>) = 0
3176 readlink("/usr" <unfinished ...>
3174 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3173 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3172 <... prctl resumed>) = 0
3171 getdents64(5 <unfinished ...>
3165 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=120, ...}, 0) = 0
3164 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 <... prctl resumed>) = 0
3184 <... mmap resumed>) = 0x7f7f7280b000
3181 mprotect(0x7f2ebea66000, 4096, PROT_READ <unfinished ...>
3180 openat(5, "setgroups", O_RDWR|O_CLOEXEC <unfinished ...>
3176 <... readlink resumed>, 0x7ffc0c104660, 1023) = -1 EINVAL (Invalid argument)
3174 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3173 eventfd2(0, EFD_CLOEXEC <unfinished ...>
3172 write(5, "\1\0\0\0\0\0\0\0", 8 <unfinished ...>
3165 newfstatat(AT_FDCWD, "/newroot/tmp-run" <unfinished ...>
3164 prctl(PR_CAPBSET_DROP, CAP_AUDIT_CONTROL <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_KILL <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_MKNOD <unfinished ...>
3189 <... read resumed>, "\1\0\0\0\0\0\0\0", 8) = 8
3185 prctl(PR_CAPBSET_DROP, CAP_WAKE_ALARM <unfinished ...>
3184 close(3 <unfinished ...>
3181 <... mprotect resumed>) = 0
3180 <... openat resumed>) = 6
3176 readlink("/etc" <unfinished ...>
3174 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=40, ...}, 0) = 0
3173 <... eventfd2 resumed>) = 5
3172 <... write resumed>) = 8
3171 <... getdents64 resumed>, 0x564d609ce740 /* 23 entries */, 32768) = 552
3165 <... newfstatat resumed>, 0x7fff278f7dc0, 0) = -1 ENOENT (No such file or directory)
3164 <... prctl resumed>) = 0
3189 close(5 <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 <... prctl resumed>) = 0
3184 <... close resumed>) = 0
3181 mprotect(0x7f2ebea72000, 4096, PROT_READ <unfinished ...>
3180 write(6, "deny\n", 5 <unfinished ...>
3176 <... readlink resumed>, 0x7ffc0c104660, 1023) = -1 EINVAL (Invalid argument)
3174 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3173 clone(child_stack=NULL, flags=CLONE_NEWNS|CLONE_NEWCGROUP|CLONE_NEWUTS|CLONE_NEWIPC|CLONE_NEWUSER|CLONE_NEWPID|CLONE_NEWNET|SIGCHLD <unfinished ...>
3172 close(5 <unfinished ...>
3171 close(3 <unfinished ...>
3165 mkdir("/newroot/tmp-run", 0755 <unfinished ...>
3164 prctl(PR_CAPBSET_DROP, CAP_SETFCAP <unfinished ...>
3189 <... close resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_SETGID <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_LEASE <unfinished ...>
3185 prctl(PR_CAPBSET_DROP, CAP_BLOCK_SUSPEND <unfinished ...>
3184 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 <unfinished ...>
3181 <... mprotect resumed>) = 0
3180 <... write resumed>) = 5
3176 readlink("/etc/ld.so.cache" <unfinished ...>
3174 <... newfstatat resumed>, 0x7ffee20f3050, 0) = -1 ENOENT (No such file or directory)
3172 <... close resumed>) = 0
3171 <... close resumed>) = 0
3165 <... mkdir resumed>) = 0
3164 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_CHOWN <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 <... prctl resumed>) = 0
3184 <... mmap resumed>) = 0x7f7f728be000
3181 mprotect(0x564682970000, 4096, PROT_READ <unfinished ...>
3180 close(6 <unfinished ...>
3176 <... readlink resumed>, 0x7ffc0c104660, 1023) = -1 EINVAL (Invalid argument)
3174 mkdir("/newroot/usr", 0755 <unfinished ...>
3172 openat(3, "self/fd", O_RDONLY|O_NOCTTY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY <unfinished ...>
3171 close(14 <unfinished ...>
3165 mount("tmpfs", "/newroot/tmp-run", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3164 prctl(PR_CAPBSET_DROP, CAP_MAC_OVERRIDE <unfinished ...>
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_SETUID <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_AUDIT_WRITE <unfinished ...>
3185 prctl(PR_CAPBSET_DROP, CAP_AUDIT_READ <unfinished ...>
3184 arch_prctl(ARCH_SET_FS, 0x7f7f728be740 <unfinished ...>
3181 <... mprotect resumed>) = 0
3180 <... close resumed>) = 0
3176 readlink("/nix" <unfinished ...>
3174 <... mkdir resumed>) = 0
3172 <... openat resumed>) = 5
3171 <... close resumed>) = 0
3164 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_DAC_OVERRIDE <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 <... prctl resumed>) = 0
3184 <... arch_prctl resumed>) = 0
3181 mprotect(0x7f2ebeadf000, 8192, PROT_READ <unfinished ...>
3180 openat(5, "gid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3176 <... readlink resumed>, 0x7ffc0c104660, 1023) = -1 ENOENT (No such file or directory)
3174 mount("/oldroot/usr", "/newroot/usr", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3172 fstat(5 <unfinished ...>
3171 close(16 <unfinished ...>
3165 <... mount resumed>) = 0
3164 prctl(PR_CAPBSET_DROP, CAP_MAC_ADMIN <unfinished ...>
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_SETPCAP <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_AUDIT_CONTROL <unfinished ...>
3185 prctl(PR_CAPBSET_DROP, CAP_PERFMON <unfinished ...>
3184 set_tid_address(0x7f7f728bea10 <unfinished ...>
3181 <... mprotect resumed>) = 0
3180 <... openat resumed>) = 6
3176 readlink("/usr" <unfinished ...>
3174 <... mount resumed>) = 0
3172 <... fstat resumed>, {st_mode=S_IFDIR|0500, st_size=21, ...}) = 0
3171 <... close resumed>) = 0
3165 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3164 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_DAC_READ_SEARCH <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 <... prctl resumed>) = 0
3184 <... set_tid_address resumed>) = 3184
3181 prlimit64(0, RLIMIT_STACK, NULL <unfinished ...>
3180 write(6, "0 1000 1\n", 9 <unfinished ...>
3176 <... readlink resumed>, 0x7ffc0c104660, 1023) = -1 EINVAL (Invalid argument)
3174 readlink("/newroot" <unfinished ...>
3172 fcntl(5, F_GETFL <unfinished ...>
3171 close(20 <unfinished ...>
3165 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=140, ...}, 0) = 0
3164 prctl(PR_CAPBSET_DROP, CAP_SYSLOG <unfinished ...>
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_LINUX_IMMUTABLE <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_SETFCAP <unfinished ...>
3185 prctl(PR_CAPBSET_DROP, CAP_BPF <unfinished ...>
3184 set_robust_list(0x7f7f728bea20, 24 <unfinished ...>
3181 <... prlimit64 resumed>, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
3180 <... write resumed>) = 9
3176 readlink("/usr/bin" <unfinished ...>
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3172 <... fcntl resumed>) = 0x18800 (flags O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY)
3171 <... close resumed>) = 0
3165 symlink("/usr/lib", "/newroot/lib" <unfinished ...>
3164 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_FOWNER <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 <... prctl resumed>) = 0
3184 <... set_robust_list resumed>) = 0
3181 getrandom( <unfinished ...>
3180 close(6 <unfinished ...>
3176 <... readlink resumed>, 0x7ffc0c104660, 1023) = -1 EINVAL (Invalid argument)
3174 readlink("/newroot/usr" <unfinished ...>
3172 fcntl(5, F_SETFD, FD_CLOEXEC <unfinished ...>
3171 close(22 <unfinished ...>
3165 <... symlink resumed>) = 0
3164 prctl(PR_CAPBSET_DROP, CAP_WAKE_ALARM <unfinished ...>
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_NET_BIND_SERVICE <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_MAC_OVERRIDE <unfinished ...>
3185 prctl(PR_CAPBSET_DROP, CAP_CHECKPOINT_RESTORE <unfinished ...>
3184 rseq(0x7f7f728be680, 0x20, 0, 0x53053053 <unfinished ...>
3181 <... getrandom resumed>"\x65\xde\xbb\x57\x31\x6b\x94\x66", 8, GRND_NONBLOCK) = 8
3180 <... close resumed>) = 0
3176 readlink("/usr/bin/true" <unfinished ...>
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3172 <... fcntl resumed>) = 0
3171 <... close resumed>) = 0
3165 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3164 <... prctl resumed>) = 0
3130 <... mkdir resumed>) = -1 EEXIST (File exists)
3189 prctl(PR_CAPBSET_DROP, CAP_FSETID <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 <... prctl resumed>) = 0
3184 <... rseq resumed>) = 0
3181 munmap(0x7f2ebea76000, 162207 <unfinished ...>
3180 close(5 <unfinished ...>
3176 <... readlink resumed>, 0x7ffc0c104660, 1023) = -1 EINVAL (Invalid argument)
3174 openat(AT_FDCWD, "/newroot/usr", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3172 getdents64(5 <unfinished ...>
3171 close(35 <unfinished ...>
3165 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=160, ...}, 0) = 0
3164 prctl(PR_CAPBSET_DROP, CAP_BLOCK_SUSPEND <unfinished ...>
3130 statx(AT_FDCWD, "/home/albert/.cache/glycin/usr/lib/glycin-loaders/2+/glycin-svg/fontconfig", AT_STATX_SYNC_AS_STAT, STATX_ALL <unfinished ...>
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_NET_BROADCAST <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_MAC_ADMIN <unfinished ...>
3185 getpid( <unfinished ...>
3181 <... munmap resumed>) = 0
3180 <... close resumed>) = 0
3176 mount(NULL, "/", NULL, MS_REC|MS_SILENT|MS_SLAVE, NULL <unfinished ...>
3174 <... openat resumed>) = 5
3171 <... close resumed>) = 0
3165 symlink("/usr/lib", "/newroot/lib64" <unfinished ...>
3164 <... prctl resumed>) = 0
3130 <... statx resumed>, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=4096, ...}) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_KILL <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 <... getpid resumed>) = 1
3184 mprotect(0x7f7f72805000, 16384, PROT_READ <unfinished ...>
3181 prctl(PR_CAPBSET_READ, CAP_MAC_OVERRIDE <unfinished ...>
3180 umask(000 <unfinished ...>
3176 <... mount resumed>) = 0
3174 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3172 <... getdents64 resumed>, 0x556f5764e740 /* 23 entries */, 32768) = 552
3171 close(37 <unfinished ...>
3165 <... symlink resumed>) = 0
3164 prctl(PR_CAPBSET_DROP, CAP_AUDIT_READ <unfinished ...>
3130 futex(0x7f718c002370, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_NET_ADMIN <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_SYSLOG <unfinished ...>
3185 socket(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC, 0 <unfinished ...>
3184 <... mprotect resumed>) = 0
3181 <... prctl resumed>) = 1
3180 <... umask resumed>) = 022
3176 mount("tmpfs", "/tmp", "tmpfs", MS_NOSUID|MS_NODEV, NULL <unfinished ...>
3174 <... readlink resumed>, "/newroot/usr", 99) = 12
3172 close(3 <unfinished ...>
3171 <... close resumed>) = 0
3165 newfstatat(AT_FDCWD, "/oldroot/usr/bin/true" <unfinished ...>
3164 <... prctl resumed>) = 0
3130 <... futex resumed>) = 1
3107 <... futex resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_SETGID <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 <... socket resumed>) = 5
3184 mprotect(0x7f7f728ec000, 4096, PROT_READ <unfinished ...>
3181 prctl(PR_CAPBSET_READ, 0x30 /* CAP_??? */ <unfinished ...>
3180 readlink("/usr" <unfinished ...>
3174 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3172 <... close resumed>) = 0
3171 close(42 <unfinished ...>
3165 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3164 prctl(PR_CAPBSET_DROP, CAP_PERFMON <unfinished ...>
3130 futex(0x7f71ad2278b0, FUTEX_WAIT_BITSET_PRIVATE, 105, {tv_sec=529, tv_nsec=336604363}, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_NET_RAW <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_WAKE_ALARM <unfinished ...>
3185 ioctl(5, SIOCGIFINDEX, {ifr_name="lo" <unfinished ...>
3184 <... mprotect resumed>) = 0
3181 <... prctl resumed>) = -1 EINVAL (Invalid argument)
3180 <... readlink resumed>, 0x7ffc11326f80, 1023) = -1 EINVAL (Invalid argument)
3176 <... mount resumed>) = 0
3174 <... openat resumed>) = 6
3172 close(14 <unfinished ...>
3171 <... close resumed>) = 0
3165 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3164 <... prctl resumed>) = 0
3107 mmap(NULL, 2101248, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0 <unfinished ...>
3190 read(5 <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_SETUID <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 <... ioctl resumed>, ifr_ifindex=1}) = 0
3184 mprotect(0x7f7f728f8000, 4096, PROT_READ <unfinished ...>
3181 prctl(PR_CAPBSET_READ, CAP_CHECKPOINT_RESTORE <unfinished ...>
3180 readlink("/etc" <unfinished ...>
3176 getcwd( <unfinished ...>
3174 read(6 <unfinished ...>
3173 <... clone resumed>) = 3190
3172 <... close resumed>) = 0
3171 close(45 <unfinished ...>
3165 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=180, ...}, 0) = 0
3164 prctl(PR_CAPBSET_DROP, CAP_BPF <unfinished ...>
3107 <... mmap resumed>) = 0x7f71291e9000
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_IPC_LOCK <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_BLOCK_SUSPEND <unfinished ...>
3185 close(5 <unfinished ...>
3184 <... mprotect resumed>) = 0
3181 <... prctl resumed>) = 1
3180 <... readlink resumed>, 0x7ffc11326f80, 1023) = -1 EINVAL (Invalid argument)
3176 <... getcwd resumed>"/home/albert", 4096) = 13
3172 close(16 <unfinished ...>
3171 <... close resumed>) = 0
3165 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3164 <... prctl resumed>) = 0
3107 madvise(0x7f71291e9000, 4096, MADV_GUARD_INSTALL <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_SETPCAP <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 <... close resumed>) = 0
3184 mprotect(0x55f9daa2a000, 4096, PROT_READ <unfinished ...>
3181 prctl(PR_CAPBSET_READ, 0x2c /* CAP_??? */ <unfinished ...>
3180 readlink("/etc/ld.so.cache" <unfinished ...>
3176 chdir("/tmp" <unfinished ...>
3173 openat(3, "3190/ns", O_RDONLY|O_PATH <unfinished ...>
3172 <... close resumed>) = 0
3171 close(54 <unfinished ...>
3165 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3164 prctl(PR_CAPBSET_DROP, CAP_CHECKPOINT_RESTORE <unfinished ...>
3107 <... madvise resumed>) = 0
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_IPC_OWNER <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_AUDIT_READ <unfinished ...>
3185 socket(AF_NETLINK, SOCK_RAW|SOCK_CLOEXEC, NETLINK_ROUTE <unfinished ...>
3184 <... mprotect resumed>) = 0
3181 <... prctl resumed>) = -1 EINVAL (Invalid argument)
3180 <... readlink resumed>, 0x7ffc11326f80, 1023) = -1 EINVAL (Invalid argument)
3176 <... chdir resumed>) = 0
3174 <... read resumed>, "181 517 259:3 / /oldroot rw,rela"..., 4079) = 3192
3173 <... openat resumed>) = 6
3172 close(20 <unfinished ...>
3171 <... close resumed>) = 0
3165 newfstatat(AT_FDCWD, "/newroot/usr/bin" <unfinished ...>
3164 <... prctl resumed>) = 0
3107 rt_sigprocmask(SIG_BLOCK, ~[] <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_LINUX_IMMUTABLE <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 <... socket resumed>) = 5
3184 mprotect(0x7f7f72965000, 8192, PROT_READ <unfinished ...>
3181 prctl(PR_CAPBSET_READ, 0x2a /* CAP_??? */ <unfinished ...>
3180 readlink("/nix" <unfinished ...>
3176 mkdir("newroot", 0755 <unfinished ...>
3174 read(6 <unfinished ...>
3173 newfstatat(6, "cgroup" <unfinished ...>
3172 <... close resumed>) = 0
3171 close(55 <unfinished ...>
3165 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=73728, ...}, 0) = 0
3164 openat(3, "self", O_RDONLY|O_PATH <unfinished ...>
3107 <... rt_sigprocmask resumed>, [], 8) = 0
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_MODULE <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_PERFMON <unfinished ...>
3185 bind(5, {sa_family=AF_NETLINK, nl_pid=1, nl_groups=00000000}, 12 <unfinished ...>
3184 <... mprotect resumed>) = 0
3181 <... prctl resumed>) = -1 EINVAL (Invalid argument)
3180 <... readlink resumed>, 0x7ffc11326f80, 1023) = -1 ENOENT (No such file or directory)
3176 <... mkdir resumed>) = 0
3174 <... read resumed>, "", 887) = 0
3173 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3172 close(22 <unfinished ...>
3171 <... close resumed>) = 0
3165 newfstatat(AT_FDCWD, "/newroot/usr/bin/true" <unfinished ...>
3164 <... openat resumed>) = 5
3189 prctl(PR_CAPBSET_DROP, CAP_NET_BIND_SERVICE <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 <... bind resumed>) = 0
3184 prlimit64(0, RLIMIT_STACK, NULL <unfinished ...>
3181 prctl(PR_CAPBSET_READ, 0x29 /* CAP_??? */ <unfinished ...>
3180 readlink("/usr" <unfinished ...>
3176 mount("newroot", "newroot", NULL, MS_MGC_VAL|MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3174 close(6 <unfinished ...>
3173 newfstatat(6, "ipc" <unfinished ...>
3172 <... close resumed>) = 0
3171 close(64 <unfinished ...>
3165 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3164 openat(5, "uid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3107 clone3({flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, child_tid=0x7f71293e9990, parent_tid=0x7f71293e9990, exit_signal=0, stack=0x7f71291e9000, stack_size=0x1ffc00, tls=0x7f71293e96c0} <unfinished ...>
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_RAWIO <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_BPF <unfinished ...>
3185 getpid( <unfinished ...>
3184 <... prlimit64 resumed>, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
3181 <... prctl resumed>) = -1 EINVAL (Invalid argument)
3180 <... readlink resumed>, 0x7ffc11326f80, 1023) = -1 EINVAL (Invalid argument)
3176 <... mount resumed>) = 0
3174 <... close resumed>) = 0
3173 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3172 close(35 <unfinished ...>
3171 <... close resumed>) = 0
3165 mount("/oldroot/usr/bin/true", "/newroot/usr/bin/true", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3164 <... openat resumed>) = 6
3189 prctl(PR_CAPBSET_DROP, CAP_NET_BROADCAST <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 <... getpid resumed>) = 1
3184 getrandom( <unfinished ...>
3181 getuid( <unfinished ...>
3180 readlink("/usr/bin" <unfinished ...>
3176 mkdir("oldroot", 0755 <unfinished ...>
3173 newfstatat(6, "mnt" <unfinished ...>
3172 <... close resumed>) = 0
3171 close(71 <unfinished ...>
3164 write(6, "1000 0 1\n", 9 <unfinished ...>
3165 <... mount resumed>) = 0
3191 rseq(0x7f71293e9280, 0x20, 0, 0x53053053 <unfinished ...>
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_CHROOT <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_CHECKPOINT_RESTORE <unfinished ...>
3185 sendto(5, [{nlmsg_len=40, nlmsg_type=0x14 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|0x600, nlmsg_seq=0, nlmsg_pid=1}, "\x02\x08\x80\xfe\x01\x00\x00\x00\x08\x00\x02\x00\x7f\x00\x00\x01\x08\x00\x01\x00\x7f\x00\x00\x01"], 40, 0, {sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, 12 <unfinished ...>
3184 <... getrandom resumed>"\x49\xbc\xac\x74\x5c\x2f\x6d\x04", 8, GRND_NONBLOCK) = 8
3181 <... getuid resumed>) = 1000
3180 <... readlink resumed>, 0x7ffc11326f80, 1023) = -1 EINVAL (Invalid argument)
3176 <... mkdir resumed>) = 0
3174 mount("none", "/newroot/usr", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3173 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3172 close(37 <unfinished ...>
3171 <... close resumed>) = 0
3165 readlink("/newroot" <unfinished ...>
3164 <... write resumed>) = 9
3107 <... clone3 resumed> => {parent_tid=[3191]}, 88) = 3191
3191 <... rseq resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_NET_ADMIN <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 <... sendto resumed>) = 40
3184 munmap(0x7f7f728fc000, 162207 <unfinished ...>
3181 getgid( <unfinished ...>
3180 readlink("/usr/bin/true" <unfinished ...>
3176 pivot_root("/tmp", "oldroot" <unfinished ...>
3174 <... mount resumed>) = 0
3173 newfstatat(6, "net" <unfinished ...>
3172 <... close resumed>) = 0
3171 close(83 <unfinished ...>
3165 <... readlink resumed>, 0x7fff278f58e0, 1023) = -1 EINVAL (Invalid argument)
3164 close(6 <unfinished ...>
3107 rt_sigprocmask(SIG_SETMASK, [] <unfinished ...>
3191 set_robust_list(0x7f71293e99a0, 24 <unfinished ...>
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_PTRACE <unfinished ...>
3187 getpid( <unfinished ...>
3185 recvfrom(5 <unfinished ...>
3184 <... munmap resumed>) = 0
3181 <... getgid resumed>) = 1000
3180 <... readlink resumed>, 0x7ffc11326f80, 1023) = -1 EINVAL (Invalid argument)
3174 close(5 <unfinished ...>
3173 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3172 close(42 <unfinished ...>
3171 <... close resumed>) = 0
3165 readlink("/newroot/usr" <unfinished ...>
3164 <... close resumed>) = 0
3107 <... rt_sigprocmask resumed>, NULL, 8) = 0
3191 <... set_robust_list resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_NET_RAW <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... getpid resumed>) = 1
3185 <... recvfrom resumed>, [{nlmsg_len=36, nlmsg_type=NLMSG_ERROR, nlmsg_flags=NLM_F_CAPPED, nlmsg_seq=0, nlmsg_pid=1}, {error=0, msg={nlmsg_len=40, nlmsg_type=0x14 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|0x600, nlmsg_seq=0, nlmsg_pid=1}}], 1024, 0, NULL, NULL) = 36
3184 prctl(PR_CAPBSET_READ, CAP_MAC_OVERRIDE <unfinished ...>
3181 geteuid( <unfinished ...>
3180 mount(NULL, "/", NULL, MS_REC|MS_SILENT|MS_SLAVE, NULL <unfinished ...>
3174 <... close resumed>) = 0
3173 newfstatat(6, "pid" <unfinished ...>
3172 <... close resumed>) = 0
3171 close(87 <unfinished ...>
3165 <... readlink resumed>, 0x7fff278f58e0, 1023) = -1 EINVAL (Invalid argument)
3164 openat(5, "gid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3107 futex(0x7f718c002370, FUTEX_WAIT_BITSET_PRIVATE, 5, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3191 rt_sigprocmask(SIG_SETMASK, [] <unfinished ...>
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_PACCT <unfinished ...>
3187 socket(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC, 0 <unfinished ...>
3185 getpid( <unfinished ...>
3184 <... prctl resumed>) = 1
3181 <... geteuid resumed>) = 1000
3174 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3173 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3172 close(45 <unfinished ...>
3171 <... close resumed>) = 0
3165 readlink("/newroot/usr/bin" <unfinished ...>
3164 <... openat resumed>) = 6
3191 <... rt_sigprocmask resumed>, NULL, 8) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_IPC_LOCK <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... socket resumed>) = 5
3185 <... getpid resumed>) = 1
3184 prctl(PR_CAPBSET_READ, 0x30 /* CAP_??? */ <unfinished ...>
3181 capget({version=_LINUX_CAPABILITY_VERSION_3, pid=0} <unfinished ...>
3174 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=60, ...}, 0) = 0
3173 newfstatat(6, "uts" <unfinished ...>
3172 <... close resumed>) = 0
3171 close(88 <unfinished ...>
3165 <... readlink resumed>, 0x7fff278f58e0, 1023) = -1 EINVAL (Invalid argument)
3164 write(6, "1000 0 1\n", 9 <unfinished ...>
3191 mmap(0x7f70cc000000, 67108864, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 <unfinished ...>
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_ADMIN <unfinished ...>
3187 ioctl(5, SIOCGIFINDEX, {ifr_name="lo" <unfinished ...>
3185 getpid( <unfinished ...>
3184 <... prctl resumed>) = -1 EINVAL (Invalid argument)
3181 <... capget resumed>, {effective=0, permitted=0, inheritable=1<<CAP_WAKE_ALARM}) = 0
3180 <... mount resumed>) = 0
3176 <... pivot_root resumed>) = 0
3174 newfstatat(AT_FDCWD, "/newroot/dev" <unfinished ...>
3173 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3172 close(54 <unfinished ...>
3171 <... close resumed>) = 0
3165 readlink("/newroot/usr/bin/true" <unfinished ...>
3164 <... write resumed>) = 9
3191 <... mmap resumed>) = 0x7f70cc000000
3189 prctl(PR_CAPBSET_DROP, CAP_IPC_OWNER <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... ioctl resumed>, ifr_ifindex=1}) = 0
3185 <... getpid resumed>) = 1
3184 prctl(PR_CAPBSET_READ, CAP_CHECKPOINT_RESTORE <unfinished ...>
3181 prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0 <unfinished ...>
3180 mount("tmpfs", "/tmp", "tmpfs", MS_NOSUID|MS_NODEV, NULL <unfinished ...>
3176 chdir("/" <unfinished ...>
3174 <... newfstatat resumed>, 0x7ffee20f3050, 0) = -1 ENOENT (No such file or directory)
3173 close(6 <unfinished ...>
3172 <... close resumed>) = 0
3171 getdents64(5 <unfinished ...>
3165 <... readlink resumed>, 0x7fff278f58e0, 1023) = -1 EINVAL (Invalid argument)
3164 close(6 <unfinished ...>
3191 mprotect(0x7f70cc000000, 135168, PROT_READ|PROT_WRITE <unfinished ...>
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT <unfinished ...>
3187 close(5 <unfinished ...>
3185 sendto(5, [{nlmsg_len=32, nlmsg_type=0x10 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK, nlmsg_seq=1, nlmsg_pid=1}, "\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00"], 32, 0, {sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, 12 <unfinished ...>
3184 <... prctl resumed>) = 1
3181 <... prctl resumed>) = 0
3176 <... chdir resumed>) = 0
3174 mkdir("/newroot/dev", 0755 <unfinished ...>
3173 <... close resumed>) = 0
3172 close(55 <unfinished ...>
3171 <... getdents64 resumed>, 0x564d609ce740 /* 0 entries */, 32768) = 0
3165 openat(AT_FDCWD, "/newroot/usr/bin/true", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3164 <... close resumed>) = 0
3191 <... mprotect resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_MODULE <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... close resumed>) = 0
3184 prctl(PR_CAPBSET_READ, 0x2c /* CAP_??? */ <unfinished ...>
3181 openat(AT_FDCWD, "/proc/sys/kernel/overflowuid", O_RDONLY|O_CLOEXEC <unfinished ...>
3180 <... mount resumed>) = 0
3176 newfstatat(AT_FDCWD, "/oldroot/usr" <unfinished ...>
3174 <... mkdir resumed>) = 0
3173 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3172 <... close resumed>) = 0
3171 close(5 <unfinished ...>
3165 <... openat resumed>) = 5
3164 close(5 <unfinished ...>
3191 pipe2( <unfinished ...>
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_NICE <unfinished ...>
3187 socket(AF_NETLINK, SOCK_RAW|SOCK_CLOEXEC, NETLINK_ROUTE <unfinished ...>
3185 <... sendto resumed>) = 32
3184 <... prctl resumed>) = -1 EINVAL (Invalid argument)
3181 <... openat resumed>) = 3
3180 getcwd( <unfinished ...>
3176 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3174 mount("tmpfs", "/newroot/dev", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3173 <... capset resumed>) = 0
3172 close(64 <unfinished ...>
3171 <... close resumed>) = 0
3165 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3164 <... close resumed>) = 0
3191 <... pipe2 resumed>[13, 15], O_CLOEXEC) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_RAWIO <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... socket resumed>) = 5
3185 recvfrom(5 <unfinished ...>
3184 prctl(PR_CAPBSET_READ, 0x2a /* CAP_??? */ <unfinished ...>
3181 brk(NULL <unfinished ...>
3180 <... getcwd resumed>"/home/albert", 4096) = 13
3176 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3173 prctl(PR_SET_DUMPABLE, SUID_DUMP_USER <unfinished ...>
3172 <... close resumed>) = 0
3171 signalfd4(-1, [CHLD], 8, SFD_CLOEXEC|SFD_NONBLOCK <unfinished ...>
3164 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3191 pipe2( <unfinished ...>
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_RESOURCE <unfinished ...>
3187 bind(5, {sa_family=AF_NETLINK, nl_pid=1, nl_groups=00000000}, 12 <unfinished ...>
3185 <... recvfrom resumed>, [{nlmsg_len=36, nlmsg_type=NLMSG_ERROR, nlmsg_flags=NLM_F_CAPPED, nlmsg_seq=1, nlmsg_pid=1}, {error=0, msg={nlmsg_len=32, nlmsg_type=0x10 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK, nlmsg_seq=1, nlmsg_pid=1}}], 1024, 0, NULL, NULL) = 36
3184 <... prctl resumed>) = -1 EINVAL (Invalid argument)
3181 <... brk resumed>) = 0x5646a0510000
3180 chdir("/tmp" <unfinished ...>
3176 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=40, ...}, 0) = 0
3174 <... mount resumed>) = 0
3173 <... prctl resumed>) = 0
3172 close(71 <unfinished ...>
3171 <... signalfd4 resumed>) = 3
3165 <... readlink resumed>, "/newroot/usr/bin/true", 99) = 21
3164 <... capset resumed>) = 0
3191 <... pipe2 resumed>[16, 20], O_CLOEXEC) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_CHROOT <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... bind resumed>) = 0
3185 getpid( <unfinished ...>
3184 prctl(PR_CAPBSET_READ, 0x29 /* CAP_??? */ <unfinished ...>
3181 brk(0x5646a0532000 <unfinished ...>
3180 <... chdir resumed>) = 0
3176 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3174 creat("/newroot/dev/null", 0444 <unfinished ...>
3173 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3172 <... close resumed>) = 0
3171 poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}], 2, -1 <unfinished ...>
3165 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3164 prctl(PR_SET_DUMPABLE, SUID_DUMP_USER <unfinished ...>
3191 pipe2( <unfinished ...>
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_TIME <unfinished ...>
3187 getpid( <unfinished ...>
3185 <... getpid resumed>) = 1
3184 <... prctl resumed>) = -1 EINVAL (Invalid argument)
3181 <... brk resumed>) = 0x5646a0532000
3180 mkdir("newroot", 0755 <unfinished ...>
3176 <... newfstatat resumed>, 0x7ffc0c104830, 0) = -1 ENOENT (No such file or directory)
3174 <... creat resumed>) = 5
3173 <... prctl resumed>) = 0
3172 close(83 <unfinished ...>
3165 <... openat resumed>) = 6
3164 <... prctl resumed>) = 0
3191 <... pipe2 resumed>[22, 24], O_CLOEXEC) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_PTRACE <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... getpid resumed>) = 1
3185 close(5 <unfinished ...>
3184 getuid( <unfinished ...>
3181 read(3 <unfinished ...>
3180 <... mkdir resumed>) = 0
3176 mkdir("/newroot/usr", 0755 <unfinished ...>
3174 close(5 <unfinished ...>
3173 write(5, "\1\0\0\0\0\0\0\0", 8 <unfinished ...>
3172 <... close resumed>) = 0
3165 read(6 <unfinished ...>
3164 read(35 <unfinished ...>
3191 socketpair(AF_UNIX, SOCK_SEQPACKET|SOCK_CLOEXEC, 0 <unfinished ...>
3190 <... read resumed>, "\1\0\0\0\0\0\0\0", 8) = 8
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_TTY_CONFIG <unfinished ...>
3187 sendto(5, [{nlmsg_len=40, nlmsg_type=0x14 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|0x600, nlmsg_seq=0, nlmsg_pid=1}, "\x02\x08\x80\xfe\x01\x00\x00\x00\x08\x00\x02\x00\x7f\x00\x00\x01\x08\x00\x01\x00\x7f\x00\x00\x01"], 40, 0, {sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, 12 <unfinished ...>
3185 <... close resumed>) = 0
3184 <... getuid resumed>) = 1000
3181 <... read resumed>, "65534\n", 4079) = 6
3180 mount("newroot", "newroot", NULL, MS_MGC_VAL|MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3176 <... mkdir resumed>) = 0
3174 <... close resumed>) = 0
3173 <... write resumed>) = 8
3172 close(87 <unfinished ...>
3164 <... read resumed>, " \0\0\0\4\0\0\0\25\0\0f>\0\0\300 \0\0\0\0\0\0\0005\0\0\1\0\0\0@"..., 4079) = 840
3191 <... socketpair resumed>, [26, 28]) = 0
3190 close(5 <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_PACCT <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... sendto resumed>) = 40
3185 openat(3, "self", O_RDONLY|O_PATH <unfinished ...>
3184 getgid( <unfinished ...>
3181 read(3 <unfinished ...>
3180 <... mount resumed>) = 0
3176 mount("/oldroot/usr", "/newroot/usr", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3174 mount("/oldroot/dev/null", "/newroot/dev/null", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3173 close(5 <unfinished ...>
3172 <... close resumed>) = 0
3165 <... read resumed>, "437 306 259:3 / /oldroot rw,rela"..., 4079) = 3969
3164 read(35 <unfinished ...>
3191 rt_sigprocmask(SIG_BLOCK, ~[] <unfinished ...>
3190 <... close resumed>) = 0
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_MKNOD <unfinished ...>
3187 recvfrom(5 <unfinished ...>
3185 <... openat resumed>) = 5
3184 <... getgid resumed>) = 1000
3181 <... read resumed>, "", 4073) = 0
3180 mkdir("oldroot", 0755 <unfinished ...>
3176 <... mount resumed>) = 0
3174 <... mount resumed>) = 0
3173 <... close resumed>) = 0
3172 close(88 <unfinished ...>
3165 read(6 <unfinished ...>
3164 <... read resumed>, "", 3239) = 0
3191 <... rt_sigprocmask resumed>, [], 8) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_CHOWN <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_ADMIN <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... recvfrom resumed>, [{nlmsg_len=36, nlmsg_type=NLMSG_ERROR, nlmsg_flags=NLM_F_CAPPED, nlmsg_seq=0, nlmsg_pid=1}, {error=0, msg={nlmsg_len=40, nlmsg_type=0x14 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|0x600, nlmsg_seq=0, nlmsg_pid=1}}], 1024, 0, NULL, NULL) = 36
3185 openat(5, "uid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3184 geteuid( <unfinished ...>
3181 close(3 <unfinished ...>
3180 <... mkdir resumed>) = 0
3176 readlink("/newroot" <unfinished ...>
3174 readlink("/newroot" <unfinished ...>
3173 openat(3, "self/fd", O_RDONLY|O_NOCTTY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY <unfinished ...>
3172 <... close resumed>) = 0
3165 <... read resumed>, "481 58 0:6 /tty /newroot/dev/tty"..., 110) = 110
3164 close(35 <unfinished ...>
3191 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_LEASE <unfinished ...>
3187 getpid( <unfinished ...>
3185 <... openat resumed>) = 6
3184 <... geteuid resumed>) = 1000
3181 <... close resumed>) = 0
3180 pivot_root("/tmp", "oldroot" <unfinished ...>
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3173 <... openat resumed>) = 5
3172 getdents64(5 <unfinished ...>
3165 read(6 <unfinished ...>
3164 <... close resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_DAC_OVERRIDE <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... getpid resumed>) = 1
3185 write(6, "0 1000 1\n", 9 <unfinished ...>
3184 capget({version=_LINUX_CAPABILITY_VERSION_3, pid=0} <unfinished ...>
3181 openat(AT_FDCWD, "/proc/sys/kernel/overflowgid", O_RDONLY|O_CLOEXEC <unfinished ...>
3176 readlink("/newroot/usr" <unfinished ...>
3174 readlink("/newroot/dev" <unfinished ...>
3173 fstat(5 <unfinished ...>
3172 <... getdents64 resumed>, 0x556f5764e740 /* 0 entries */, 32768) = 0
3164 umask(022 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_AUDIT_WRITE <unfinished ...>
3187 getpid( <unfinished ...>
3185 <... write resumed>) = 9
3184 <... capget resumed>, {effective=0, permitted=0, inheritable=1<<CAP_WAKE_ALARM}) = 0
3181 <... openat resumed>) = 3
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3173 <... fstat resumed>, {st_mode=S_IFDIR|0500, st_size=21, ...}) = 0
3172 close(5 <unfinished ...>
3164 <... umask resumed>) = 000
3190 prctl(PR_CAPBSET_DROP, CAP_DAC_READ_SEARCH <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_NICE <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... getpid resumed>) = 1
3185 close(6 <unfinished ...>
3184 prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0 <unfinished ...>
3181 read(3 <unfinished ...>
3176 openat(AT_FDCWD, "/newroot/usr", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3174 readlink("/newroot/dev/null" <unfinished ...>
3173 fcntl(5, F_GETFL <unfinished ...>
3172 <... close resumed>) = 0
3164 chdir("/" <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_AUDIT_CONTROL <unfinished ...>
3187 sendto(5, [{nlmsg_len=32, nlmsg_type=0x10 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK, nlmsg_seq=1, nlmsg_pid=1}, "\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00"], 32, 0, {sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, 12 <unfinished ...>
3185 <... close resumed>) = 0
3184 <... prctl resumed>) = 0
3181 <... read resumed>, "65534\n", 4079) = 6
3176 <... openat resumed>) = 5
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3173 <... fcntl resumed>) = 0x18800 (flags O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY)
3172 signalfd4(-1, [CHLD], 8, SFD_CLOEXEC|SFD_NONBLOCK <unfinished ...>
3164 <... chdir resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_FOWNER <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_RESOURCE <unfinished ...>
3188 <... prctl resumed>) = 0
3185 openat(5, "setgroups", O_RDWR|O_CLOEXEC <unfinished ...>
3184 openat(AT_FDCWD, "/proc/sys/kernel/overflowuid", O_RDONLY|O_CLOEXEC <unfinished ...>
3181 read(3 <unfinished ...>
3180 <... pivot_root resumed>) = 0
3176 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3174 openat(AT_FDCWD, "/newroot/dev/null", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3173 fcntl(5, F_SETFD, FD_CLOEXEC <unfinished ...>
3172 <... signalfd4 resumed>) = 3
3190 <... prctl resumed>) = 0
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_SETFCAP <unfinished ...>
3187 <... sendto resumed>) = 32
3185 <... openat resumed>) = 6
3184 <... openat resumed>) = 3
3181 <... read resumed>, "", 4073) = 0
3180 chdir("/" <unfinished ...>
3176 <... readlink resumed>, "/newroot/usr", 99) = 12
3174 <... openat resumed>) = 5
3173 <... fcntl resumed>) = 0
3172 poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}], 2, -1 <unfinished ...>
3165 <... read resumed>, ",mode=755,inode64\n55 58 0:49 / /"..., 4080) = 545
3164 rt_sigprocmask(SIG_BLOCK, ~[] <unfinished ...>
3190 prctl(PR_CAPBSET_DROP, CAP_FSETID <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_TIME <unfinished ...>
3188 <... prctl resumed>) = 0
3187 recvfrom(5 <unfinished ...>
3185 write(6, "deny\n", 5 <unfinished ...>
3184 brk(NULL <unfinished ...>
3181 close(3 <unfinished ...>
3180 <... chdir resumed>) = 0
3176 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3174 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3173 getdents64(5 <unfinished ...>
3165 read(6 <unfinished ...>
3164 <... rt_sigprocmask resumed>, [CHLD], 8) = 0
3190 <... prctl resumed>) = 0
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_MAC_OVERRIDE <unfinished ...>
3187 <... recvfrom resumed>, [{nlmsg_len=36, nlmsg_type=NLMSG_ERROR, nlmsg_flags=NLM_F_CAPPED, nlmsg_seq=1, nlmsg_pid=1}, {error=0, msg={nlmsg_len=32, nlmsg_type=0x10 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK, nlmsg_seq=1, nlmsg_pid=1}}], 1024, 0, NULL, NULL) = 36
3185 <... write resumed>) = 5
3184 <... brk resumed>) = 0x55f9f7a3c000
3181 <... close resumed>) = 0
3180 newfstatat(AT_FDCWD, "/oldroot/usr" <unfinished ...>
3176 <... openat resumed>) = 6
3174 <... readlink resumed>, "/newroot/dev/null", 99) = 17
3165 <... read resumed>, "", 3535) = 0
3164 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD <unfinished ...>
3190 prctl(PR_CAPBSET_DROP, CAP_KILL <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_TTY_CONFIG <unfinished ...>
3188 <... prctl resumed>) = 0
3187 getpid( <unfinished ...>
3185 close(6 <unfinished ...>
3184 brk(0x55f9f7a5e000 <unfinished ...>
3181 brk(0x5646a0531000 <unfinished ...>
3180 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3176 read(6 <unfinished ...>
3174 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3173 <... getdents64 resumed>, 0x5602df9e5740 /* 23 entries */, 32768) = 552
3165 close(6 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_MAC_ADMIN <unfinished ...>
3187 <... getpid resumed>) = 1
3185 <... close resumed>) = 0
3184 <... brk resumed>) = 0x55f9f7a5e000
3181 <... brk resumed>) = 0x5646a0531000
3180 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3174 <... openat resumed>) = 6
3173 close(3 <unfinished ...>
3165 <... close resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_SETGID <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_MKNOD <unfinished ...>
3188 <... prctl resumed>) = 0
3187 close(5 <unfinished ...>
3185 openat(5, "gid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3184 read(3 <unfinished ...>
3181 ioctl(1, TCGETS2 <unfinished ...>
3180 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=40, ...}, 0) = 0
3173 <... close resumed>) = 0
3174 read(6 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_SYSLOG <unfinished ...>
3187 <... close resumed>) = 0
3185 <... openat resumed>) = 6
3184 <... read resumed>, "65534\n", 4079) = 6
3181 <... ioctl resumed>, 0x7ffc0c0196a0) = -1 ENOTTY (Inappropriate ioctl for device)
3180 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3176 <... read resumed>, "285 549 259:3 / /oldroot rw,rela"..., 4079) = 3192
3173 close(14 <unfinished ...>
3165 mount("none", "/newroot/usr/bin/true", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3192 set_robust_list(0x7ff732876a20, 24 <unfinished ...>
3190 prctl(PR_CAPBSET_DROP, CAP_SETUID <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_LEASE <unfinished ...>
3188 <... prctl resumed>) = 0
3187 openat(3, "self", O_RDONLY|O_PATH <unfinished ...>
3185 write(6, "0 1000 1\n", 9 <unfinished ...>
3184 read(3 <unfinished ...>
3181 getuid( <unfinished ...>
3180 <... newfstatat resumed>, 0x7ffc11327150, 0) = -1 ENOENT (No such file or directory)
3176 read(6 <unfinished ...>
3173 <... close resumed>) = 0
3164 <... clone resumed>, child_tidptr=0x7ff732876a10) = 2
3165 <... mount resumed>) = 0
3192 <... set_robust_list resumed>) = 0
3190 <... prctl resumed>) = 0
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_WAKE_ALARM <unfinished ...>
3187 <... openat resumed>) = 5
3185 <... write resumed>) = 9
3184 <... read resumed>, "", 4073) = 0
3181 <... getuid resumed>) = 1000
3180 mkdir("/newroot/usr", 0755 <unfinished ...>
3176 <... read resumed>, "", 887) = 0
3174 <... read resumed>, "181 517 259:3 / /oldroot rw,rela"..., 4079) = 3441
3173 close(16 <unfinished ...>
3165 close(5 <unfinished ...>
3164 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3192 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3190 prctl(PR_CAPBSET_DROP, CAP_SETPCAP <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_AUDIT_WRITE <unfinished ...>
3188 <... prctl resumed>) = 0
3187 openat(5, "uid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3185 close(6 <unfinished ...>
3184 close(3 <unfinished ...>
3181 newfstatat(AT_FDCWD, "/proc/self/ns/user" <unfinished ...>
3180 <... mkdir resumed>) = 0
3176 close(6 <unfinished ...>
3174 read(6 <unfinished ...>
3173 <... close resumed>) = 0
3165 <... close resumed>) = 0
3164 <... rt_sigprocmask resumed>, NULL, 8) = 0
3192 <... rt_sigprocmask resumed>, NULL, 8) = 0
3190 <... prctl resumed>) = 0
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_BLOCK_SUSPEND <unfinished ...>
3187 <... openat resumed>) = 6
3185 <... close resumed>) = 0
3184 <... close resumed>) = 0
3180 mount("/oldroot/usr", "/newroot/usr", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3176 <... close resumed>) = 0
3181 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3174 <... read resumed>, "", 638) = 0
3173 close(20 <unfinished ...>
3165 mount("oldroot", "oldroot", NULL, MS_REC|MS_SILENT|MS_PRIVATE, NULL <unfinished ...>
3164 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3192 close(3 <unfinished ...>
3190 prctl(PR_CAPBSET_DROP, CAP_LINUX_IMMUTABLE <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_AUDIT_CONTROL <unfinished ...>
3188 <... prctl resumed>) = 0
3187 write(6, "0 1000 1\n", 9 <unfinished ...>
3185 close(5 <unfinished ...>
3184 openat(AT_FDCWD, "/proc/sys/kernel/overflowgid", O_RDONLY|O_CLOEXEC <unfinished ...>
3181 newfstatat(AT_FDCWD, "/sys/module/user_namespace/parameters/enable" <unfinished ...>
3180 <... mount resumed>) = 0
3174 close(6 <unfinished ...>
3173 <... close resumed>) = 0
3165 <... mount resumed>) = 0
3164 <... capset resumed>) = 0
3192 <... close resumed>) = 0
3190 <... prctl resumed>) = 0
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_AUDIT_READ <unfinished ...>
3187 <... write resumed>) = 9
3185 <... close resumed>) = 0
3184 <... openat resumed>) = 3
3181 <... newfstatat resumed>, 0x7ffc0c019840, 0) = -1 ENOENT (No such file or directory)
3180 readlink("/newroot" <unfinished ...>
3176 mount("none", "/newroot/usr", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3174 <... close resumed>) = 0
3173 close(22 <unfinished ...>
3165 umount2("oldroot", MNT_DETACH <unfinished ...>
3164 openat(3, "self/fd", O_RDONLY|O_NOCTTY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY <unfinished ...>
3192 rt_sigprocmask(SIG_UNBLOCK, [CHLD] <unfinished ...>
3190 prctl(PR_CAPBSET_DROP, CAP_NET_BIND_SERVICE <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_SETFCAP <unfinished ...>
3188 <... prctl resumed>) = 0
3187 close(6 <unfinished ...>
3185 umask(000 <unfinished ...>
3184 read(3 <unfinished ...>
3181 newfstatat(AT_FDCWD, "/proc/sys/user/max_user_namespaces" <unfinished ...>
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 <... mount resumed>) = 0
3173 <... close resumed>) = 0
3192 <... rt_sigprocmask resumed>, NULL, 8) = 0
3190 <... prctl resumed>) = 0
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_PERFMON <unfinished ...>
3187 <... close resumed>) = 0
3185 <... umask resumed>) = 022
3184 <... read resumed>, "65534\n", 4079) = 6
3181 <... newfstatat resumed>, {st_mode=S_IFREG|0644, st_size=0, ...}, 0) = 0
3180 readlink("/newroot/usr" <unfinished ...>
3176 close(5 <unfinished ...>
3174 close(5 <unfinished ...>
3173 close(35 <unfinished ...>
3165 <... umount2 resumed>) = 0
3164 <... openat resumed>) = 5
3192 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3190 prctl(PR_CAPBSET_DROP, CAP_NET_BROADCAST <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_MAC_OVERRIDE <unfinished ...>
3188 <... prctl resumed>) = 0
3187 openat(5, "setgroups", O_RDWR|O_CLOEXEC <unfinished ...>
3185 readlink("/usr" <unfinished ...>
3184 read(3 <unfinished ...>
3181 openat(AT_FDCWD, "/proc/sys/user/max_user_namespaces", O_RDONLY|O_CLOEXEC <unfinished ...>
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 <... close resumed>) = 0
3174 <... close resumed>) = 0
3173 <... close resumed>) = 0
3165 openat(AT_FDCWD, "/", O_RDONLY|O_DIRECTORY <unfinished ...>
3164 fstat(5 <unfinished ...>
3193 set_robust_list(0x7f71293e99a0, 24 <unfinished ...>
3192 <... prctl resumed>) = 0
3191 <... clone resumed>, child_tidptr=0x7f71293e9990) = 3193
3190 <... prctl resumed>) = 0
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_BPF <unfinished ...>
3187 <... openat resumed>) = 6
3185 <... readlink resumed>, 0x7ffd8fb1e510, 1023) = -1 EINVAL (Invalid argument)
3184 <... read resumed>, "", 4073) = 0
3181 <... openat resumed>) = 3
3180 openat(AT_FDCWD, "/newroot/usr", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3176 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3174 creat("/newroot/dev/zero", 0444 <unfinished ...>
3173 close(37 <unfinished ...>
3165 <... openat resumed>) = 5
3164 <... fstat resumed>, {st_mode=S_IFDIR|0500, st_size=11, ...}) = 0
3193 <... set_robust_list resumed>) = 0
3192 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x5596501f4d10} <unfinished ...>
3191 rt_sigprocmask(SIG_SETMASK, [] <unfinished ...>
3190 prctl(PR_CAPBSET_DROP, CAP_NET_ADMIN <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_MAC_ADMIN <unfinished ...>
3188 <... prctl resumed>) = 0
3187 write(6, "deny\n", 5 <unfinished ...>
3185 readlink("/etc" <unfinished ...>
3184 close(3 <unfinished ...>
3181 read(3 <unfinished ...>
3180 <... openat resumed>) = 5
3176 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=60, ...}, 0) = 0
3174 <... creat resumed>) = 5
3173 <... close resumed>) = 0
3165 chdir("/newroot" <unfinished ...>
3164 fcntl(5, F_GETFL <unfinished ...>
3193 rt_sigprocmask(SIG_SETMASK, [] <unfinished ...>
3191 <... rt_sigprocmask resumed>, NULL, 8) = 0
3190 <... prctl resumed>) = 0
3189 <... prctl resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_CHECKPOINT_RESTORE <unfinished ...>
3187 <... write resumed>) = 5
3185 <... readlink resumed>, 0x7ffd8fb1e510, 1023) = -1 EINVAL (Invalid argument)
3184 <... close resumed>) = 0
3181 <... read resumed>, "60416\n", 4079) = 6
3180 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3176 newfstatat(AT_FDCWD, "/newroot/dev" <unfinished ...>
3174 close(5 <unfinished ...>
3173 close(42 <unfinished ...>
3165 <... chdir resumed>) = 0
3164 <... fcntl resumed>) = 0x18800 (flags O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY)
3193 <... rt_sigprocmask resumed>, NULL, 8) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_NET_RAW <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_SYSLOG <unfinished ...>
3188 <... prctl resumed>) = 0
3187 close(6 <unfinished ...>
3185 readlink("/etc/ld.so.cache" <unfinished ...>
3184 brk(0x55f9f7a5d000 <unfinished ...>
3181 read(3 <unfinished ...>
3176 <... newfstatat resumed>, 0x7ffc0c104830, 0) = -1 ENOENT (No such file or directory)
3174 <... close resumed>) = 0
3173 <... close resumed>) = 0
3165 pivot_root(".", "." <unfinished ...>
3164 fcntl(5, F_SETFD, FD_CLOEXEC <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... prctl resumed>) = 0
3188 getpid( <unfinished ...>
3187 <... close resumed>) = 0
3185 <... readlink resumed>, 0x7ffd8fb1e510, 1023) = -1 EINVAL (Invalid argument)
3181 <... read resumed>, "", 4073) = 0
3180 <... readlink resumed>, "/newroot/usr", 99) = 12
3176 mkdir("/newroot/dev", 0755 <unfinished ...>
3174 mount("/oldroot/dev/zero", "/newroot/dev/zero", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3173 close(45 <unfinished ...>
3164 <... fcntl resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_IPC_LOCK <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_WAKE_ALARM <unfinished ...>
3188 <... getpid resumed>) = 1
3187 openat(5, "gid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3185 readlink("/nix" <unfinished ...>
3184 <... brk resumed>) = 0x55f9f7a5d000
3181 close(3 <unfinished ...>
3180 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3176 <... mkdir resumed>) = 0
3173 <... close resumed>) = 0
3192 <... prctl resumed>) = 0
3190 <... prctl resumed>) = 0
3189 <... prctl resumed>) = 0
3188 socket(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC, 0 <unfinished ...>
3191 close(28 <unfinished ...>
3187 <... openat resumed>) = 6
3185 <... readlink resumed>, 0x7ffd8fb1e510, 1023) = -1 ENOENT (No such file or directory)
3184 ioctl(1, TCGETS2 <unfinished ...>
3181 <... close resumed>) = 0
3180 <... openat resumed>) = 6
3176 mount("tmpfs", "/newroot/dev", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3173 close(54 <unfinished ...>
3164 getdents64(5 <unfinished ...>
3192 execve("/bin/true", ["/bin/true"], 0x5596501f2490 /* 3 vars */ <unfinished ...>
3191 <... close resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_IPC_OWNER <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_BLOCK_SUSPEND <unfinished ...>
3188 <... socket resumed>) = 5
3187 write(6, "0 1000 1\n", 9 <unfinished ...>
3185 readlink("/usr" <unfinished ...>
3184 <... ioctl resumed>, 0x7ffca3b44160) = -1 ENOTTY (Inappropriate ioctl for device)
3181 openat(AT_FDCWD, "/proc", O_RDONLY|O_PATH <unfinished ...>
3180 read(6 <unfinished ...>
3173 <... close resumed>) = 0
3192 <... execve resumed>) = -1 ENOENT (No such file or directory)
3191 recvfrom(26 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... prctl resumed>) = 0
3188 ioctl(5, SIOCGIFINDEX, {ifr_name="lo" <unfinished ...>
3187 <... write resumed>) = 9
3185 <... readlink resumed>, 0x7ffd8fb1e510, 1023) = -1 EINVAL (Invalid argument)
3181 <... openat resumed>) = 3
3173 close(55 <unfinished ...>
3164 <... getdents64 resumed>, 0x5596501f5d40 /* 13 entries */, 32768) = 312
3192 write(2, "bwrap: ", 7 <unfinished ...>
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_MODULE <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_AUDIT_READ <unfinished ...>
3188 <... ioctl resumed>, ifr_ifindex=1}) = 0
3187 close(6 <unfinished ...>
3185 readlink("/usr/bin" <unfinished ...>
3184 getuid( <unfinished ...>
3181 eventfd2(0, EFD_CLOEXEC|EFD_NONBLOCK <unfinished ...>
3173 <... close resumed>) = 0
3164 close(3 <unfinished ...>
3193 close(26 <unfinished ...>
3192 <... write resumed>) = 7
3190 <... prctl resumed>) = 0
3189 <... prctl resumed>) = 0
3188 close(5 <unfinished ...>
3187 <... close resumed>) = 0
3185 <... readlink resumed>, 0x7ffd8fb1e510, 1023) = -1 EINVAL (Invalid argument)
3184 <... getuid resumed>) = 1000
3181 <... eventfd2 resumed>) = 4
3173 close(64 <unfinished ...>
3164 <... close resumed>) = 0
3142 <... poll resumed>) = 1 ([{fd=43, revents=POLLIN}])
3193 <... close resumed>) = 0
3192 write(2, "execvp /bin/true", 16 <unfinished ...>
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_RAWIO <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_PERFMON <unfinished ...>
3188 <... close resumed>) = 0
3187 close(5 <unfinished ...>
3185 readlink("/usr/bin/true" <unfinished ...>
3184 newfstatat(AT_FDCWD, "/proc/self/ns/user" <unfinished ...>
3181 rt_sigprocmask(SIG_BLOCK, [CHLD] <unfinished ...>
3176 <... mount resumed>) = 0
3174 <... mount resumed>) = 0
3173 <... close resumed>) = 0
3165 <... pivot_root resumed>) = 0
3164 close(14 <unfinished ...>
3193 dup2(13, 0 <unfinished ...>
3192 <... write resumed>) = 16
3190 <... prctl resumed>) = 0
3189 <... prctl resumed>) = 0
3188 socket(AF_NETLINK, SOCK_RAW|SOCK_CLOEXEC, NETLINK_ROUTE <unfinished ...>
3187 <... close resumed>) = 0
3185 <... readlink resumed>, 0x7ffd8fb1e510, 1023) = -1 EINVAL (Invalid argument)
3181 <... rt_sigprocmask resumed>, NULL, 8) = 0
3176 creat("/newroot/dev/null", 0444 <unfinished ...>
3174 readlink("/newroot" <unfinished ...>
3173 close(71 <unfinished ...>
3184 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3165 fchdir(5 <unfinished ...>
3164 <... close resumed>) = 0
3142 read(43 <unfinished ...>
3193 <... dup2 resumed>) = 0
3192 write(2, ": No such file or directory", 27 <unfinished ...>
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_CHROOT <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_BPF <unfinished ...>
3188 <... socket resumed>) = 5
3187 umask(000 <unfinished ...>
3185 mount(NULL, "/", NULL, MS_REC|MS_SILENT|MS_SLAVE, NULL <unfinished ...>
3184 newfstatat(AT_FDCWD, "/sys/module/user_namespace/parameters/enable" <unfinished ...>
3181 wait4(-1 <unfinished ...>
3180 <... read resumed>, "346 551 259:3 / /oldroot rw,rela"..., 4079) = 3192
3176 <... creat resumed>) = 5
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3173 <... close resumed>) = 0
3165 <... fchdir resumed>) = 0
3164 close(16 <unfinished ...>
3142 <... read resumed>, "bwrap: execvp /bin/true", 32) = 23
3193 dup2(20, 1 <unfinished ...>
3192 <... write resumed>) = 27
3190 <... prctl resumed>) = 0
3189 <... prctl resumed>) = 0
3188 bind(5, {sa_family=AF_NETLINK, nl_pid=1, nl_groups=00000000}, 12 <unfinished ...>
3187 <... umask resumed>) = 022
3185 <... mount resumed>) = 0
3184 <... newfstatat resumed>, 0x7ffca3b44300, 0) = -1 ENOENT (No such file or directory)
3181 <... wait4 resumed>, 0x7ffc0c019750, WNOHANG, NULL) = -1 ECHILD (No child processes)
3180 read(6 <unfinished ...>
3176 close(5 <unfinished ...>
3174 readlink("/newroot/dev" <unfinished ...>
3173 close(83 <unfinished ...>
3165 umount2(".", MNT_DETACH <unfinished ...>
3164 <... close resumed>) = 0
3142 read(43 <unfinished ...>
3193 <... dup2 resumed>) = 1
3192 write(2, "\n", 1 <unfinished ...>
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_PTRACE <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_CHECKPOINT_RESTORE <unfinished ...>
3188 <... bind resumed>) = 0
3187 readlink("/usr" <unfinished ...>
3185 mount("tmpfs", "/tmp", "tmpfs", MS_NOSUID|MS_NODEV, NULL <unfinished ...>
3184 newfstatat(AT_FDCWD, "/proc/sys/user/max_user_namespaces" <unfinished ...>
3181 newfstatat(AT_FDCWD, "/proc/self/ns/cgroup" <unfinished ...>
3180 <... read resumed>, "", 887) = 0
3176 <... close resumed>) = 0
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3173 <... close resumed>) = 0
3164 close(20 <unfinished ...>
3142 <... read resumed>, ": No such", 9) = 9
3193 dup2(24, 2 <unfinished ...>
3192 <... write resumed>) = 1
3190 <... prctl resumed>) = 0
3189 <... prctl resumed>) = 0
3188 getpid( <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98be0a40, 1023) = -1 EINVAL (Invalid argument)
3184 <... newfstatat resumed>, {st_mode=S_IFREG|0644, st_size=0, ...}, 0) = 0
3181 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3180 close(6 <unfinished ...>
3176 mount("/oldroot/dev/null", "/newroot/dev/null", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3174 readlink("/newroot/dev/zero" <unfinished ...>
3173 close(87 <unfinished ...>
3165 <... umount2 resumed>) = 0
3164 <... close resumed>) = 0
3142 read(43 <unfinished ...>
3193 <... dup2 resumed>) = 2
3192 exit_group(1 <unfinished ...>
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_PACCT <unfinished ...>
3189 getpid( <unfinished ...>
3188 <... getpid resumed>) = 1
3187 readlink("/etc" <unfinished ...>
3185 <... mount resumed>) = 0
3184 openat(AT_FDCWD, "/proc/sys/user/max_user_namespaces", O_RDONLY|O_CLOEXEC <unfinished ...>
3181 eventfd2(0, EFD_CLOEXEC <unfinished ...>
3180 <... close resumed>) = 0
3176 <... mount resumed>) = 0
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3173 <... close resumed>) = 0
3165 chdir("/" <unfinished ...>
3164 close(22 <unfinished ...>
3142 <... read resumed>, " file or directory\n", 32) = 19
3193 rt_sigaction(SIGPIPE, {sa_handler=SIG_DFL, sa_mask=[PIPE], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f71ad83e540} <unfinished ...>
3192 <... exit_group resumed>) = ?
3190 <... prctl resumed>) = 0
3189 <... getpid resumed>) = 1
3188 sendto(5, [{nlmsg_len=40, nlmsg_type=0x14 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|0x600, nlmsg_seq=0, nlmsg_pid=1}, "\x02\x08\x80\xfe\x01\x00\x00\x00\x08\x00\x02\x00\x7f\x00\x00\x01\x08\x00\x01\x00\x7f\x00\x00\x01"], 40, 0, {sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, 12 <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98be0a40, 1023) = -1 EINVAL (Invalid argument)
3185 getcwd( <unfinished ...>
3184 <... openat resumed>) = 3
3181 <... eventfd2 resumed>) = 5
3176 readlink("/newroot" <unfinished ...>
3174 openat(AT_FDCWD, "/newroot/dev/zero", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3173 close(88 <unfinished ...>
3165 <... chdir resumed>) = 0
3164 <... close resumed>) = 0
3180 mount("none", "/newroot/usr", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3142 read(43 <unfinished ...>
3193 <... rt_sigaction resumed>, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
3192 +++ exited with 1 +++
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_ADMIN <unfinished ...>
3189 socket(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC, 0 <unfinished ...>
3188 <... sendto resumed>) = 40
3187 readlink("/etc/ld.so.cache" <unfinished ...>
3185 <... getcwd resumed>"/home/albert", 4096) = 13
3184 read(3 <unfinished ...>
3181 clone(child_stack=NULL, flags=CLONE_NEWNS|CLONE_NEWCGROUP|CLONE_NEWUTS|CLONE_NEWIPC|CLONE_NEWUSER|CLONE_NEWPID|CLONE_NEWNET|SIGCHLD <unfinished ...>
3180 <... mount resumed>) = 0
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 <... openat resumed>) = 5
3173 <... close resumed>) = 0
3165 close(5 <unfinished ...>
3164 close(37 <unfinished ...>
3142 <... read resumed>, 0x7f710c000ee0, 42) = -1 EAGAIN (Resource temporarily unavailable)
3193 openat(AT_FDCWD, "/proc/meminfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... socket resumed>) = 5
3188 recvfrom(5 <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98be0a40, 1023) = -1 EINVAL (Invalid argument)
3185 chdir("/tmp" <unfinished ...>
3184 <... read resumed>, "60416\n", 4079) = 6
3180 close(5 <unfinished ...>
3176 readlink("/newroot/dev" <unfinished ...>
3174 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3173 getdents64(5 <unfinished ...>
3165 <... close resumed>) = 0
3164 <... close resumed>) = 0
3142 poll([{fd=41, events=POLLIN}, {fd=43, events=POLLIN}], 2, -1 <unfinished ...>
3193 <... openat resumed>) = 26
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT <unfinished ...>
3189 ioctl(5, SIOCGIFINDEX, {ifr_name="lo" <unfinished ...>
3188 <... recvfrom resumed>, [{nlmsg_len=36, nlmsg_type=NLMSG_ERROR, nlmsg_flags=NLM_F_CAPPED, nlmsg_seq=0, nlmsg_pid=1}, {error=0, msg={nlmsg_len=40, nlmsg_type=0x14 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|0x600, nlmsg_seq=0, nlmsg_pid=1}}], 1024, 0, NULL, NULL) = 36
3187 readlink("/nix" <unfinished ...>
3185 <... chdir resumed>) = 0
3184 read(3 <unfinished ...>
3180 <... close resumed>) = 0
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 <... readlink resumed>, "/newroot/dev/zero", 99) = 17
3173 <... getdents64 resumed>, 0x5602df9e5740 /* 0 entries */, 32768) = 0
3165 unshare(CLONE_NEWUSER <unfinished ...>
3164 getdents64(5 <unfinished ...>
3193 read(26 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... ioctl resumed>, ifr_ifindex=1}) = 0
3188 getpid( <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98be0a40, 1023) = -1 ENOENT (No such file or directory)
3185 mkdir("newroot", 0755 <unfinished ...>
3184 <... read resumed>, "", 4073) = 0
3180 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3176 readlink("/newroot/dev/null" <unfinished ...>
3174 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3173 close(5 <unfinished ...>
3164 <... getdents64 resumed>, 0x5596501f5d40 /* 0 entries */, 32768) = 0
3193 <... read resumed>, "MemTotal: 15566792 kB\nMemF"..., 8192) = 1615
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_NICE <unfinished ...>
3189 close(5 <unfinished ...>
3188 <... getpid resumed>) = 1
3187 readlink("/usr" <unfinished ...>
3185 <... mkdir resumed>) = 0
3184 close(3 <unfinished ...>
3180 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=60, ...}, 0) = 0
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 <... openat resumed>) = 6
3173 <... close resumed>) = 0
3165 <... unshare resumed>) = 0
3164 close(5 <unfinished ...>
3193 read(26 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... close resumed>) = 0
3188 getpid( <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98be0a40, 1023) = -1 EINVAL (Invalid argument)
3185 mount("newroot", "newroot", NULL, MS_MGC_VAL|MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3184 <... close resumed>) = 0
3180 newfstatat(AT_FDCWD, "/newroot/dev" <unfinished ...>
3176 openat(AT_FDCWD, "/newroot/dev/null", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3174 read(6 <unfinished ...>
3173 signalfd4(-1, [CHLD], 8, SFD_CLOEXEC|SFD_NONBLOCK <unfinished ...>
3165 prctl(PR_CAPBSET_DROP, CAP_CHOWN <unfinished ...>
3164 <... close resumed>) = 0
3193 <... read resumed>, "", 8192) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_RESOURCE <unfinished ...>
3189 socket(AF_NETLINK, SOCK_RAW|SOCK_CLOEXEC, NETLINK_ROUTE <unfinished ...>
3188 <... getpid resumed>) = 1
3187 readlink("/usr/bin" <unfinished ...>
3185 <... mount resumed>) = 0
3184 openat(AT_FDCWD, "/proc", O_RDONLY|O_PATH <unfinished ...>
3180 <... newfstatat resumed>, 0x7ffc11327150, 0) = -1 ENOENT (No such file or directory)
3176 <... openat resumed>) = 5
3173 <... signalfd4 resumed>) = 3
3165 <... prctl resumed>) = 0
3164 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3193 close(26 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... socket resumed>) = 5
3188 sendto(5, [{nlmsg_len=32, nlmsg_type=0x10 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK, nlmsg_seq=1, nlmsg_pid=1}, "\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00"], 32, 0, {sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, 12 <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98be0a40, 1023) = -1 EINVAL (Invalid argument)
3185 mkdir("oldroot", 0755 <unfinished ...>
3184 <... openat resumed>) = 3
3180 mkdir("/newroot/dev", 0755 <unfinished ...>
3176 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3173 poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}], 2, -1 <unfinished ...>
3174 <... read resumed>, "181 517 259:3 / /oldroot rw,rela"..., 4079) = 3572
3165 prctl(PR_CAPBSET_DROP, CAP_DAC_OVERRIDE <unfinished ...>
3164 <... prctl resumed>) = 0
3193 <... close resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_TIME <unfinished ...>
3189 bind(5, {sa_family=AF_NETLINK, nl_pid=1, nl_groups=00000000}, 12 <unfinished ...>
3187 readlink("/usr/bin/true" <unfinished ...>
3185 <... mkdir resumed>) = 0
3184 eventfd2(0, EFD_CLOEXEC|EFD_NONBLOCK <unfinished ...>
3180 <... mkdir resumed>) = 0
3176 <... readlink resumed>, "/newroot/dev/null", 99) = 17
3174 read(6 <unfinished ...>
3165 <... prctl resumed>) = 0
3164 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x5596501f4d10} <unfinished ...>
3193 write(2, "Setting process memory limit\n", 29 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... bind resumed>) = 0
3188 <... sendto resumed>) = 32
3187 <... readlink resumed>, 0x7ffc98be0a40, 1023) = -1 EINVAL (Invalid argument)
3185 pivot_root("/tmp", "oldroot" <unfinished ...>
3184 <... eventfd2 resumed>) = 4
3180 mount("tmpfs", "/newroot/dev", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3176 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3174 <... read resumed>, "", 507) = 0
3165 prctl(PR_CAPBSET_DROP, CAP_DAC_READ_SEARCH <unfinished ...>
3193 <... write resumed>) = 29
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_TTY_CONFIG <unfinished ...>
3189 getpid( <unfinished ...>
3188 recvfrom(5 <unfinished ...>
3187 mount(NULL, "/", NULL, MS_REC|MS_SILENT|MS_SLAVE, NULL <unfinished ...>
3184 rt_sigprocmask(SIG_BLOCK, [CHLD] <unfinished ...>
3176 <... openat resumed>) = 6
3174 close(6 <unfinished ...>
3165 <... prctl resumed>) = 0
3193 prlimit64(0, RLIMIT_AS, {rlim_cur=16613376*1024, rlim_max=16613376*1024} <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... getpid resumed>) = 1
3188 <... recvfrom resumed>, [{nlmsg_len=36, nlmsg_type=NLMSG_ERROR, nlmsg_flags=NLM_F_CAPPED, nlmsg_seq=1, nlmsg_pid=1}, {error=0, msg={nlmsg_len=32, nlmsg_type=0x10 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK, nlmsg_seq=1, nlmsg_pid=1}}], 1024, 0, NULL, NULL) = 36
3184 <... rt_sigprocmask resumed>, NULL, 8) = 0
3176 read(6 <unfinished ...>
3174 <... close resumed>) = 0
3165 prctl(PR_CAPBSET_DROP, CAP_FOWNER <unfinished ...>
3193 <... prlimit64 resumed>, NULL) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_MKNOD <unfinished ...>
3189 sendto(5, [{nlmsg_len=40, nlmsg_type=0x14 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|0x600, nlmsg_seq=0, nlmsg_pid=1}, "\x02\x08\x80\xfe\x01\x00\x00\x00\x08\x00\x02\x00\x7f\x00\x00\x01\x08\x00\x01\x00\x7f\x00\x00\x01"], 40, 0, {sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, 12 <unfinished ...>
3188 getpid( <unfinished ...>
3187 <... mount resumed>) = 0
3185 <... pivot_root resumed>) = 0
3184 wait4(-1 <unfinished ...>
3180 <... mount resumed>) = 0
3165 <... prctl resumed>) = 0
3164 <... prctl resumed>) = 0
3193 close_range(3, 4294967295, CLOSE_RANGE_CLOEXEC <unfinished ...>
3190 <... prctl resumed>) = 0
3188 <... getpid resumed>) = 1
3187 mount("tmpfs", "/tmp", "tmpfs", MS_NOSUID|MS_NODEV, NULL <unfinished ...>
3185 chdir("/" <unfinished ...>
3184 <... wait4 resumed>, 0x7ffca3b44210, WNOHANG, NULL) = -1 ECHILD (No child processes)
3181 <... clone resumed>) = 3194
3176 <... read resumed>, "285 549 259:3 / /oldroot rw,rela"..., 4079) = 3441
3174 close(5 <unfinished ...>
3165 prctl(PR_CAPBSET_DROP, CAP_FSETID <unfinished ...>
3164 wait4(-1 <unfinished ...>
3194 read(5 <unfinished ...>
3193 <... close_range resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_LEASE <unfinished ...>
3189 <... sendto resumed>) = 40
3188 close(5 <unfinished ...>
3185 <... chdir resumed>) = 0
3184 newfstatat(AT_FDCWD, "/proc/self/ns/cgroup" <unfinished ...>
3180 creat("/newroot/dev/null", 0444 <unfinished ...>
3187 <... mount resumed>) = 0
3176 read(6 <unfinished ...>
3174 <... close resumed>) = 0
3165 <... prctl resumed>) = 0
3164 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 2
3193 fcntl(21, F_GETFD <unfinished ...>
3190 <... prctl resumed>) = 0
3189 recvfrom(5 <unfinished ...>
3188 <... close resumed>) = 0
3187 getcwd( <unfinished ...>
3185 newfstatat(AT_FDCWD, "/oldroot/usr" <unfinished ...>
3184 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3181 openat(3, "3194/ns", O_RDONLY|O_PATH <unfinished ...>
3180 <... creat resumed>) = 5
3176 <... read resumed>, "", 638) = 0
3174 creat("/newroot/dev/full", 0444 <unfinished ...>
3165 prctl(PR_CAPBSET_DROP, CAP_KILL <unfinished ...>
3164 write(4, "\2\0\0\0\0\0\0\0", 8 <unfinished ...>
3193 <... fcntl resumed>) = 0x1 (flags FD_CLOEXEC)
3190 prctl(PR_CAPBSET_DROP, CAP_AUDIT_WRITE <unfinished ...>
3189 <... recvfrom resumed>, [{nlmsg_len=36, nlmsg_type=NLMSG_ERROR, nlmsg_flags=NLM_F_CAPPED, nlmsg_seq=0, nlmsg_pid=1}, {error=0, msg={nlmsg_len=40, nlmsg_type=0x14 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|0x600, nlmsg_seq=0, nlmsg_pid=1}}], 1024, 0, NULL, NULL) = 36
3188 openat(3, "self", O_RDONLY|O_PATH <unfinished ...>
3187 <... getcwd resumed>"/home/albert", 4096) = 13
3185 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3184 eventfd2(0, EFD_CLOEXEC <unfinished ...>
3181 <... openat resumed>) = 6
3180 close(5 <unfinished ...>
3176 close(6 <unfinished ...>
3174 <... creat resumed>) = 5
3165 <... prctl resumed>) = 0
3164 <... write resumed>) = 8
3193 fcntl(21, F_SETFD, 0 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 getpid( <unfinished ...>
3188 <... openat resumed>) = 5
3187 chdir("/tmp" <unfinished ...>
3185 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3184 <... eventfd2 resumed>) = 5
3181 newfstatat(6, "cgroup" <unfinished ...>
3180 <... close resumed>) = 0
3176 <... close resumed>) = 0
3174 close(5 <unfinished ...>
3165 prctl(PR_CAPBSET_DROP, CAP_SETGID <unfinished ...>
3164 wait4(-1 <unfinished ...>
3148 <... poll resumed>) = 1 ([{fd=4, revents=POLLIN}])
3193 <... fcntl resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_AUDIT_CONTROL <unfinished ...>
3189 <... getpid resumed>) = 1
3188 openat(5, "uid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3187 <... chdir resumed>) = 0
3185 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=40, ...}, 0) = 0
3184 clone(child_stack=NULL, flags=CLONE_NEWNS|CLONE_NEWCGROUP|CLONE_NEWUTS|CLONE_NEWIPC|CLONE_NEWUSER|CLONE_NEWPID|CLONE_NEWNET|SIGCHLD <unfinished ...>
3181 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3180 mount("/oldroot/dev/null", "/newroot/dev/null", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3174 <... close resumed>) = 0
3165 <... prctl resumed>) = 0
3164 <... wait4 resumed>, 0x7ffebdd46314, 0, NULL) = -1 ECHILD (No child processes)
3148 read(4 <unfinished ...>
3193 fcntl(17, F_GETFD <unfinished ...>
3190 <... prctl resumed>) = 0
3189 getpid( <unfinished ...>
3188 <... openat resumed>) = 6
3187 mkdir("newroot", 0755 <unfinished ...>
3185 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3181 newfstatat(6, "ipc" <unfinished ...>
3180 <... mount resumed>) = 0
3176 close(5 <unfinished ...>
3174 mount("/oldroot/dev/full", "/newroot/dev/full", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3165 prctl(PR_CAPBSET_DROP, CAP_SETUID <unfinished ...>
3148 <... read resumed>, "\2\0\0\0\0\0\0\0", 8) = 8
3193 <... fcntl resumed>) = 0x1 (flags FD_CLOEXEC)
3190 prctl(PR_CAPBSET_DROP, CAP_SETFCAP <unfinished ...>
3189 <... getpid resumed>) = 1
3188 write(6, "0 1000 1\n", 9 <unfinished ...>
3187 <... mkdir resumed>) = 0
3185 <... newfstatat resumed>, 0x7ffd8fb1e6e0, 0) = -1 ENOENT (No such file or directory)
3181 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3180 readlink("/newroot" <unfinished ...>
3176 <... close resumed>) = 0
3174 <... mount resumed>) = 0
3165 <... prctl resumed>) = 0
3164 exit_group(1 <unfinished ...>
3193 fcntl(17, F_SETFD, 0 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 sendto(5, [{nlmsg_len=32, nlmsg_type=0x10 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK, nlmsg_seq=1, nlmsg_pid=1}, "\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00"], 32, 0, {sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, 12 <unfinished ...>
3188 <... write resumed>) = 9
3187 mount("newroot", "newroot", NULL, MS_MGC_VAL|MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3185 mkdir("/newroot/usr", 0755 <unfinished ...>
3181 newfstatat(6, "mnt" <unfinished ...>
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 creat("/newroot/dev/zero", 0444 <unfinished ...>
3174 readlink("/newroot" <unfinished ...>
3165 prctl(PR_CAPBSET_DROP, CAP_SETPCAP <unfinished ...>
3164 <... exit_group resumed>) = ?
3148 exit_group(1 <unfinished ...>
3193 <... fcntl resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_MAC_OVERRIDE <unfinished ...>
3188 close(6 <unfinished ...>
3187 <... mount resumed>) = 0
3185 <... mkdir resumed>) = 0
3181 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3180 readlink("/newroot/dev" <unfinished ...>
3176 <... creat resumed>) = 5
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3165 <... prctl resumed>) = 0
3148 <... exit_group resumed>) = ?
3193 execve("/usr/local/sbin/bwrap", ["bwrap", "--unshare-all", "--die-with-parent", "--chdir", "/", "--ro-bind", "/usr", "/usr", "--dev", "/dev", "--ro-bind-try", "/etc/ld.so.cache", "/etc/ld.so.cache", "--ro-bind-try", "/nix/store", "/nix/store", "--tmpfs", "/tmp-home", "--tmpfs", "/tmp-run", "--clearenv", "--setenv", "HOME", "/tmp-home", "--setenv", "XDG_RUNTIME_DIR", "/tmp-run", "--setenv", "XDG_RUNTIME_DIR", "/run/user/1000", "--symlink", "/usr/lib", ...], 0x7ffd6be82dd8 /* 58 vars */ <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... sendto resumed>) = 32
3188 <... close resumed>) = 0
3187 mkdir("oldroot", 0755 <unfinished ...>
3185 mount("/oldroot/usr", "/newroot/usr", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3181 newfstatat(6, "net" <unfinished ...>
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 close(5 <unfinished ...>
3174 readlink("/newroot/dev" <unfinished ...>
3165 prctl(PR_CAPBSET_DROP, CAP_LINUX_IMMUTABLE <unfinished ...>
3193 <... execve resumed>) = -1 ENOENT (No such file or directory)
3190 prctl(PR_CAPBSET_DROP, CAP_MAC_ADMIN <unfinished ...>
3189 recvfrom(5 <unfinished ...>
3188 openat(5, "setgroups", O_RDWR|O_CLOEXEC <unfinished ...>
3187 <... mkdir resumed>) = 0
3185 <... mount resumed>) = 0
3181 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3180 readlink("/newroot/dev/null" <unfinished ...>
3176 <... close resumed>) = 0
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3165 <... prctl resumed>) = 0
3142 <... poll resumed>) = 2 ([{fd=41, revents=POLLHUP}, {fd=43, revents=POLLHUP}])
3148 +++ exited with 1 +++
3101 <... ppoll resumed>) = ? ERESTARTNOHAND (To be restarted if no handler)
3193 execve("/usr/local/bin/bwrap", ["bwrap", "--unshare-all", "--die-with-parent", "--chdir", "/", "--ro-bind", "/usr", "/usr", "--dev", "/dev", "--ro-bind-try", "/etc/ld.so.cache", "/etc/ld.so.cache", "--ro-bind-try", "/nix/store", "/nix/store", "--tmpfs", "/tmp-home", "--tmpfs", "/tmp-run", "--clearenv", "--setenv", "HOME", "/tmp-home", "--setenv", "XDG_RUNTIME_DIR", "/tmp-run", "--setenv", "XDG_RUNTIME_DIR", "/run/user/1000", "--symlink", "/usr/lib", ...], 0x7ffd6be82dd8 /* 58 vars */ <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... recvfrom resumed>, [{nlmsg_len=36, nlmsg_type=NLMSG_ERROR, nlmsg_flags=NLM_F_CAPPED, nlmsg_seq=1, nlmsg_pid=1}, {error=0, msg={nlmsg_len=32, nlmsg_type=0x10 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK, nlmsg_seq=1, nlmsg_pid=1}}], 1024, 0, NULL, NULL) = 36
3188 <... openat resumed>) = 6
3187 pivot_root("/tmp", "oldroot" <unfinished ...>
3185 readlink("/newroot" <unfinished ...>
3181 newfstatat(6, "pid" <unfinished ...>
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 mount("/oldroot/dev/zero", "/newroot/dev/zero", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3174 readlink("/newroot/dev/full" <unfinished ...>
3165 prctl(PR_CAPBSET_DROP, CAP_NET_BIND_SERVICE <unfinished ...>
3142 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=3148, si_uid=1000, si_status=1, si_utime=0, si_stime=0} ---
3101 ppoll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}], 2, {tv_sec=1, tv_nsec=40494823}, NULL, 8 <unfinished ...>
3193 <... execve resumed>) = -1 ENOENT (No such file or directory)
3190 prctl(PR_CAPBSET_DROP, CAP_SYSLOG <unfinished ...>
3189 getpid( <unfinished ...>
3188 write(6, "deny\n", 5 <unfinished ...>
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3181 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3180 openat(AT_FDCWD, "/newroot/dev/null", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3165 <... prctl resumed>) = 0
3164 +++ exited with 1 +++
3187 <... pivot_root resumed>) = 0
3176 <... mount resumed>) = 0
3142 read(41 <unfinished ...>
3193 execve("/usr/bin/bwrap", ["bwrap", "--unshare-all", "--die-with-parent", "--chdir", "/", "--ro-bind", "/usr", "/usr", "--dev", "/dev", "--ro-bind-try", "/etc/ld.so.cache", "/etc/ld.so.cache", "--ro-bind-try", "/nix/store", "/nix/store", "--tmpfs", "/tmp-home", "--tmpfs", "/tmp-run", "--clearenv", "--setenv", "HOME", "/tmp-home", "--setenv", "XDG_RUNTIME_DIR", "/tmp-run", "--setenv", "XDG_RUNTIME_DIR", "/run/user/1000", "--symlink", "/usr/lib", ...], 0x7ffd6be82dd8 /* 58 vars */ <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... getpid resumed>) = 1
3188 <... write resumed>) = 5
3187 chdir("/" <unfinished ...>
3185 readlink("/newroot/usr" <unfinished ...>
3181 newfstatat(6, "uts" <unfinished ...>
3180 <... openat resumed>) = 5
3176 readlink("/newroot" <unfinished ...>
3174 openat(AT_FDCWD, "/newroot/dev/full", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3165 prctl(PR_CAPBSET_DROP, CAP_NET_BROADCAST <unfinished ...>
3142 <... read resumed>, "", 32) = 0
3195 read(5 <unfinished ...>
3190 prctl(PR_CAPBSET_DROP, CAP_WAKE_ALARM <unfinished ...>
3189 close(5 <unfinished ...>
3188 close(6 <unfinished ...>
3187 <... chdir resumed>) = 0
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3184 <... clone resumed>) = 3195
3181 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3180 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 <... openat resumed>) = 5
3165 <... prctl resumed>) = 0
3142 ioctl(43, FIONBIO, [0] <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... close resumed>) = 0
3188 <... close resumed>) = 0
3187 newfstatat(AT_FDCWD, "/oldroot/usr" <unfinished ...>
3185 openat(AT_FDCWD, "/newroot/usr", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3184 openat(3, "3195/ns", O_RDONLY|O_PATH <unfinished ...>
3181 close(6 <unfinished ...>
3180 <... readlink resumed>, "/newroot/dev/null", 99) = 17
3176 readlink("/newroot/dev" <unfinished ...>
3174 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3165 prctl(PR_CAPBSET_DROP, CAP_NET_ADMIN <unfinished ...>
3142 <... ioctl resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_BLOCK_SUSPEND <unfinished ...>
3189 openat(3, "self", O_RDONLY|O_PATH <unfinished ...>
3188 openat(5, "gid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3187 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3185 <... openat resumed>) = 5
3184 <... openat resumed>) = 6
3181 <... close resumed>) = 0
3180 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 <... readlink resumed>, "/newroot/dev/full", 99) = 17
3165 <... prctl resumed>) = 0
3142 read(43 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... openat resumed>) = 5
3188 <... openat resumed>) = 6
3187 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3185 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3184 newfstatat(6, "cgroup" <unfinished ...>
3181 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3180 <... openat resumed>) = 6
3176 readlink("/newroot/dev/zero" <unfinished ...>
3174 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3165 prctl(PR_CAPBSET_DROP, CAP_NET_RAW <unfinished ...>
3142 <... read resumed>, "", 42) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_AUDIT_READ <unfinished ...>
3189 openat(5, "uid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3188 write(6, "0 1000 1\n", 9 <unfinished ...>
3187 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=40, ...}, 0) = 0
3185 <... readlink resumed>, "/newroot/usr", 99) = 12
3184 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3181 <... capset resumed>) = 0
3180 read(6 <unfinished ...>
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 <... openat resumed>) = 6
3165 <... prctl resumed>) = 0
3142 close(43 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... openat resumed>) = 6
3188 <... write resumed>) = 9
3187 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3185 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3184 newfstatat(6, "ipc" <unfinished ...>
3181 prctl(PR_SET_DUMPABLE, SUID_DUMP_USER <unfinished ...>
3176 openat(AT_FDCWD, "/newroot/dev/zero", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3174 read(6 <unfinished ...>
3165 prctl(PR_CAPBSET_DROP, CAP_IPC_LOCK <unfinished ...>
3142 <... close resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_PERFMON <unfinished ...>
3189 write(6, "0 1000 1\n", 9 <unfinished ...>
3188 close(6 <unfinished ...>
3187 <... newfstatat resumed>, 0x7ffc98be0c10, 0) = -1 ENOENT (No such file or directory)
3185 <... openat resumed>) = 6
3184 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3181 <... prctl resumed>) = 0
3176 <... openat resumed>) = 5
3165 <... prctl resumed>) = 0
3142 close(41 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... write resumed>) = 9
3188 <... close resumed>) = 0
3187 mkdir("/newroot/usr", 0755 <unfinished ...>
3185 read(6 <unfinished ...>
3184 newfstatat(6, "mnt" <unfinished ...>
3181 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3180 <... read resumed>, "346 551 259:3 / /oldroot rw,rela"..., 4079) = 3441
3176 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3165 prctl(PR_CAPBSET_DROP, CAP_IPC_OWNER <unfinished ...>
3142 <... close resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_BPF <unfinished ...>
3189 close(6 <unfinished ...>
3188 close(5 <unfinished ...>
3187 <... mkdir resumed>) = 0
3184 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3181 <... prctl resumed>) = 0
3180 read(6 <unfinished ...>
3176 <... readlink resumed>, "/newroot/dev/zero", 99) = 17
3174 <... read resumed>, "181 517 259:3 / /oldroot rw,rela"..., 4079) = 3703
3165 <... prctl resumed>) = 0
3142 wait4(3148 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... close resumed>) = 0
3188 <... close resumed>) = 0
3187 mount("/oldroot/usr", "/newroot/usr", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3184 newfstatat(6, "net" <unfinished ...>
3181 write(5, "\1\0\0\0\0\0\0\0", 8 <unfinished ...>
3180 <... read resumed>, "", 638) = 0
3176 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3174 read(6 <unfinished ...>
3165 prctl(PR_CAPBSET_DROP, CAP_SYS_MODULE <unfinished ...>
3194 <... read resumed>, "\1\0\0\0\0\0\0\0", 8) = 8
3190 prctl(PR_CAPBSET_DROP, CAP_CHECKPOINT_RESTORE <unfinished ...>
3189 openat(5, "setgroups", O_RDWR|O_CLOEXEC <unfinished ...>
3188 umask(000 <unfinished ...>
3187 <... mount resumed>) = 0
3185 <... read resumed>, "379 439 259:3 / /oldroot rw,rela"..., 4079) = 3192
3184 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3181 <... write resumed>) = 8
3180 close(6 <unfinished ...>
3176 <... openat resumed>) = 6
3174 <... read resumed>, "", 376) = 0
3165 <... prctl resumed>) = 0
3142 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 3148
3194 close(5 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 <... openat resumed>) = 6
3188 <... umask resumed>) = 022
3187 readlink("/newroot" <unfinished ...>
3185 read(6 <unfinished ...>
3184 newfstatat(6, "pid" <unfinished ...>
3181 close(5 <unfinished ...>
3180 <... close resumed>) = 0
3176 read(6 <unfinished ...>
3174 close(6 <unfinished ...>
3165 prctl(PR_CAPBSET_DROP, CAP_SYS_RAWIO <unfinished ...>
3194 <... close resumed>) = 0
3190 getpid( <unfinished ...>
3189 write(6, "deny\n", 5 <unfinished ...>
3188 readlink("/usr" <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3185 <... read resumed>, "", 887) = 0
3184 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3181 <... close resumed>) = 0
3174 <... close resumed>) = 0
3165 <... prctl resumed>) = 0
3142 futex(0x7f7180002390, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_CHOWN <unfinished ...>
3190 <... getpid resumed>) = 1
3189 <... write resumed>) = 5
3188 <... readlink resumed>, 0x7ffc3e114ef0, 1023) = -1 EINVAL (Invalid argument)
3187 readlink("/newroot/usr" <unfinished ...>
3185 close(6 <unfinished ...>
3184 newfstatat(6, "uts" <unfinished ...>
3181 openat(3, "self/fd", O_RDONLY|O_NOCTTY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY <unfinished ...>
3180 close(5 <unfinished ...>
3165 prctl(PR_CAPBSET_DROP, CAP_SYS_CHROOT <unfinished ...>
3142 <... futex resumed>) = 1
3194 <... prctl resumed>) = 0
3190 socket(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC, 0 <unfinished ...>
3189 close(6 <unfinished ...>
3188 readlink("/etc" <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3185 <... close resumed>) = 0
3184 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3181 <... openat resumed>) = 5
3180 <... close resumed>) = 0
3176 <... read resumed>, "285 549 259:3 / /oldroot rw,rela"..., 4079) = 3572
3174 close(5 <unfinished ...>
3165 <... prctl resumed>) = 0
3142 futex(0x7f71ad2278b0, FUTEX_WAIT_BITSET_PRIVATE, 105, {tv_sec=529, tv_nsec=343997542}, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3109 <... futex resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_DAC_OVERRIDE <unfinished ...>
3190 <... socket resumed>) = 5
3188 <... readlink resumed>, 0x7ffc3e114ef0, 1023) = -1 EINVAL (Invalid argument)
3187 openat(AT_FDCWD, "/newroot/usr", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3185 mount("none", "/newroot/usr", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3184 close(6 <unfinished ...>
3181 fstat(5 <unfinished ...>
3180 creat("/newroot/dev/zero", 0444 <unfinished ...>
3176 read(6 <unfinished ...>
3174 <... close resumed>) = 0
3165 prctl(PR_CAPBSET_DROP, CAP_SYS_PTRACE <unfinished ...>
3194 <... prctl resumed>) = 0
3190 ioctl(5, SIOCGIFINDEX, {ifr_name="lo" <unfinished ...>
3188 readlink("/etc/ld.so.cache" <unfinished ...>
3187 <... openat resumed>) = 5
3185 <... mount resumed>) = 0
3184 <... close resumed>) = 0
3181 <... fstat resumed>, {st_mode=S_IFDIR|0500, st_size=22, ...}) = 0
3176 <... read resumed>, "", 507) = 0
3189 <... close resumed>) = 0
3180 <... creat resumed>) = 5
3174 creat("/newroot/dev/random", 0444 <unfinished ...>
3165 <... prctl resumed>) = 0
3109 close(35 <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_DAC_READ_SEARCH <unfinished ...>
3190 <... ioctl resumed>, ifr_ifindex=1}) = 0
3189 openat(5, "gid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3188 <... readlink resumed>, 0x7ffc3e114ef0, 1023) = -1 EINVAL (Invalid argument)
3187 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3185 close(5 <unfinished ...>
3184 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3181 fcntl(5, F_GETFL <unfinished ...>
3180 close(5 <unfinished ...>
3176 close(6 <unfinished ...>
3174 <... creat resumed>) = 5
3165 prctl(PR_CAPBSET_DROP, CAP_SYS_PACCT <unfinished ...>
3109 <... close resumed>) = 0
3194 <... prctl resumed>) = 0
3190 close(5 <unfinished ...>
3189 <... openat resumed>) = 6
3188 readlink("/nix" <unfinished ...>
3187 <... readlink resumed>, "/newroot/usr", 99) = 12
3185 <... close resumed>) = 0
3184 <... capset resumed>) = 0
3181 <... fcntl resumed>) = 0x18800 (flags O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY)
3180 <... close resumed>) = 0
3176 <... close resumed>) = 0
3174 close(5 <unfinished ...>
3165 <... prctl resumed>) = 0
3109 close(23 <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_FOWNER <unfinished ...>
3190 <... close resumed>) = 0
3189 write(6, "0 1000 1\n", 9 <unfinished ...>
3188 <... readlink resumed>, 0x7ffc3e114ef0, 1023) = -1 ENOENT (No such file or directory)
3187 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3185 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3184 prctl(PR_SET_DUMPABLE, SUID_DUMP_USER <unfinished ...>
3181 fcntl(5, F_SETFD, FD_CLOEXEC <unfinished ...>
3180 mount("/oldroot/dev/zero", "/newroot/dev/zero", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3174 <... close resumed>) = 0
3165 prctl(PR_CAPBSET_DROP, CAP_SYS_ADMIN <unfinished ...>
3109 <... close resumed>) = 0
3194 <... prctl resumed>) = 0
3190 socket(AF_NETLINK, SOCK_RAW|SOCK_CLOEXEC, NETLINK_ROUTE <unfinished ...>
3189 <... write resumed>) = 9
3188 readlink("/usr" <unfinished ...>
3187 <... openat resumed>) = 6
3185 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=60, ...}, 0) = 0
3184 <... prctl resumed>) = 0
3181 <... fcntl resumed>) = 0
3180 <... mount resumed>) = 0
3176 close(5 <unfinished ...>
3174 mount("/oldroot/dev/random", "/newroot/dev/random", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3165 <... prctl resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_FSETID <unfinished ...>
3190 <... socket resumed>) = 5
3189 close(6 <unfinished ...>
3188 <... readlink resumed>, 0x7ffc3e114ef0, 1023) = -1 EINVAL (Invalid argument)
3187 read(6 <unfinished ...>
3185 newfstatat(AT_FDCWD, "/newroot/dev" <unfinished ...>
3184 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3181 getdents64(5 <unfinished ...>
3180 readlink("/newroot" <unfinished ...>
3176 <... close resumed>) = 0
3165 prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT <unfinished ...>
3174 <... mount resumed>) = 0
3109 futex(0x7f7180002390, FUTEX_WAIT_BITSET_PRIVATE, 3, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3194 <... prctl resumed>) = 0
3190 bind(5, {sa_family=AF_NETLINK, nl_pid=1, nl_groups=00000000}, 12 <unfinished ...>
3189 <... close resumed>) = 0
3188 readlink("/usr/bin" <unfinished ...>
3185 <... newfstatat resumed>, 0x7ffd8fb1e6e0, 0) = -1 ENOENT (No such file or directory)
3184 <... prctl resumed>) = 0
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 creat("/newroot/dev/full", 0444 <unfinished ...>
3174 readlink("/newroot" <unfinished ...>
3165 <... prctl resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_KILL <unfinished ...>
3190 <... bind resumed>) = 0
3189 close(5 <unfinished ...>
3188 <... readlink resumed>, 0x7ffc3e114ef0, 1023) = -1 EINVAL (Invalid argument)
3187 <... read resumed>, "485 564 259:3 / /oldroot rw,rela"..., 4079) = 3192
3185 mkdir("/newroot/dev", 0755 <unfinished ...>
3184 write(5, "\1\0\0\0\0\0\0\0", 8 <unfinished ...>
3181 <... getdents64 resumed>, 0x5646a0510740 /* 24 entries */, 32768) = 576
3180 readlink("/newroot/dev" <unfinished ...>
3176 <... creat resumed>) = 5
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3165 prctl(PR_CAPBSET_DROP, CAP_SYS_NICE <unfinished ...>
3195 <... read resumed>, "\1\0\0\0\0\0\0\0", 8) = 8
3194 <... prctl resumed>) = 0
3191 <... recvfrom resumed>, "", 8, 0, NULL, NULL) = 0
3190 getpid( <unfinished ...>
3189 <... close resumed>) = 0
3188 readlink("/usr/bin/true" <unfinished ...>
3187 read(6 <unfinished ...>
3185 <... mkdir resumed>) = 0
3184 <... write resumed>) = 8
3181 close(3 <unfinished ...>
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 close(5 <unfinished ...>
3174 readlink("/newroot/dev" <unfinished ...>
3165 <... prctl resumed>) = 0
3195 close(5 <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_SETGID <unfinished ...>
3193 <... execve resumed>) = 0
3191 close(26 <unfinished ...>
3190 <... getpid resumed>) = 1
3189 umask(000 <unfinished ...>
3188 <... readlink resumed>, 0x7ffc3e114ef0, 1023) = -1 EINVAL (Invalid argument)
3187 <... read resumed>, "", 887) = 0
3185 mount("tmpfs", "/newroot/dev", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3184 close(5 <unfinished ...>
3181 <... close resumed>) = 0
3180 readlink("/newroot/dev/zero" <unfinished ...>
3176 <... close resumed>) = 0
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3165 prctl(PR_CAPBSET_DROP, CAP_SYS_RESOURCE <unfinished ...>
3195 <... close resumed>) = 0
3194 <... prctl resumed>) = 0
3193 brk(NULL <unfinished ...>
3191 <... close resumed>) = 0
3190 sendto(5, [{nlmsg_len=40, nlmsg_type=0x14 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|0x600, nlmsg_seq=0, nlmsg_pid=1}, "\x02\x08\x80\xfe\x01\x00\x00\x00\x08\x00\x02\x00\x7f\x00\x00\x01\x08\x00\x01\x00\x7f\x00\x00\x01"], 40, 0, {sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, 12 <unfinished ...>
3189 <... umask resumed>) = 022
3188 mount(NULL, "/", NULL, MS_REC|MS_SILENT|MS_SLAVE, NULL <unfinished ...>
3187 close(6 <unfinished ...>
3184 <... close resumed>) = 0
3181 close(14 <unfinished ...>
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 mount("/oldroot/dev/full", "/newroot/dev/full", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3174 readlink("/newroot/dev/random" <unfinished ...>
3165 <... prctl resumed>) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_CHOWN <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_SETUID <unfinished ...>
3193 <... brk resumed>) = 0x55a968e46000
3191 close(13 <unfinished ...>
3190 <... sendto resumed>) = 40
3189 readlink("/usr" <unfinished ...>
3188 <... mount resumed>) = 0
3187 <... close resumed>) = 0
3185 <... mount resumed>) = 0
3184 openat(3, "self/fd", O_RDONLY|O_NOCTTY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY <unfinished ...>
3181 <... close resumed>) = 0
3180 openat(AT_FDCWD, "/newroot/dev/zero", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3176 <... mount resumed>) = 0
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3165 prctl(PR_CAPBSET_DROP, CAP_SYS_TIME <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 access("/etc/ld.so.preload", R_OK <unfinished ...>
3191 <... close resumed>) = 0
3190 recvfrom(5 <unfinished ...>
3189 <... readlink resumed>, 0x7ffe6fe3c070, 1023) = -1 EINVAL (Invalid argument)
3188 mount("tmpfs", "/tmp", "tmpfs", MS_NOSUID|MS_NODEV, NULL <unfinished ...>
3185 creat("/newroot/dev/null", 0444 <unfinished ...>
3184 <... openat resumed>) = 5
3181 close(16 <unfinished ...>
3187 mount("none", "/newroot/usr", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3180 <... openat resumed>) = 5
3176 readlink("/newroot" <unfinished ...>
3174 openat(AT_FDCWD, "/newroot/dev/random", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3165 <... prctl resumed>) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_DAC_OVERRIDE <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_SETPCAP <unfinished ...>
3193 <... access resumed>) = -1 ENOENT (No such file or directory)
3191 close(20 <unfinished ...>
3190 <... recvfrom resumed>, [{nlmsg_len=36, nlmsg_type=NLMSG_ERROR, nlmsg_flags=NLM_F_CAPPED, nlmsg_seq=0, nlmsg_pid=1}, {error=0, msg={nlmsg_len=40, nlmsg_type=0x14 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|0x600, nlmsg_seq=0, nlmsg_pid=1}}], 1024, 0, NULL, NULL) = 36
3189 readlink("/etc" <unfinished ...>
3188 <... mount resumed>) = 0
3187 <... mount resumed>) = 0
3185 <... creat resumed>) = 5
3184 fstat(5 <unfinished ...>
3181 <... close resumed>) = 0
3180 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 <... openat resumed>) = 5
3165 prctl(PR_CAPBSET_DROP, CAP_SYS_TTY_CONFIG <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC <unfinished ...>
3191 <... close resumed>) = 0
3190 getpid( <unfinished ...>
3189 <... readlink resumed>, 0x7ffe6fe3c070, 1023) = -1 EINVAL (Invalid argument)
3188 getcwd( <unfinished ...>
3187 close(5 <unfinished ...>
3185 close(5 <unfinished ...>
3184 <... fstat resumed>, {st_mode=S_IFDIR|0500, st_size=22, ...}) = 0
3181 close(20 <unfinished ...>
3180 <... readlink resumed>, "/newroot/dev/zero", 99) = 17
3176 readlink("/newroot/dev" <unfinished ...>
3174 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3165 <... prctl resumed>) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_DAC_READ_SEARCH <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_LINUX_IMMUTABLE <unfinished ...>
3193 <... openat resumed>) = 3
3191 close(24 <unfinished ...>
3190 <... getpid resumed>) = 1
3189 readlink("/etc/ld.so.cache" <unfinished ...>
3188 <... getcwd resumed>"/home/albert", 4096) = 13
3187 <... close resumed>) = 0
3185 <... close resumed>) = 0
3184 fcntl(5, F_GETFL <unfinished ...>
3181 <... close resumed>) = 0
3180 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 <... readlink resumed>, "/newroot/dev/random", 99) = 19
3165 prctl(PR_CAPBSET_DROP, CAP_MKNOD <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 fstat(3 <unfinished ...>
3191 <... close resumed>) = 0
3190 getpid( <unfinished ...>
3189 <... readlink resumed>, 0x7ffe6fe3c070, 1023) = -1 EINVAL (Invalid argument)
3188 chdir("/tmp" <unfinished ...>
3187 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3185 mount("/oldroot/dev/null", "/newroot/dev/null", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3184 <... fcntl resumed>) = 0x18800 (flags O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY)
3181 close(22 <unfinished ...>
3180 <... openat resumed>) = 6
3176 readlink("/newroot/dev/full" <unfinished ...>
3174 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3165 <... prctl resumed>) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_FOWNER <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_NET_BIND_SERVICE <unfinished ...>
3193 <... fstat resumed>, {st_mode=S_IFREG|0644, st_size=162207, ...}) = 0
3191 futex(0x7f718c002370, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3190 <... getpid resumed>) = 1
3189 readlink("/nix" <unfinished ...>
3188 <... chdir resumed>) = 0
3187 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=60, ...}, 0) = 0
3185 <... mount resumed>) = 0
3184 fcntl(5, F_SETFD, FD_CLOEXEC <unfinished ...>
3181 <... close resumed>) = 0
3180 read(6 <unfinished ...>
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 <... openat resumed>) = 6
3165 prctl(PR_CAPBSET_DROP, CAP_LEASE <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 mmap(NULL, 162207, PROT_READ, MAP_PRIVATE, 3, 0 <unfinished ...>
3191 <... futex resumed>) = 1
3190 sendto(5, [{nlmsg_len=32, nlmsg_type=0x10 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK, nlmsg_seq=1, nlmsg_pid=1}, "\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00"], 32, 0, {sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, 12 <unfinished ...>
3189 <... readlink resumed>, 0x7ffe6fe3c070, 1023) = -1 ENOENT (No such file or directory)
3188 mkdir("newroot", 0755 <unfinished ...>
3187 newfstatat(AT_FDCWD, "/newroot/dev" <unfinished ...>
3185 readlink("/newroot" <unfinished ...>
3184 <... fcntl resumed>) = 0
3181 close(35 <unfinished ...>
3176 openat(AT_FDCWD, "/newroot/dev/full", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3174 read(6 <unfinished ...>
3165 <... prctl resumed>) = 0
3107 <... futex resumed>) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_FSETID <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_NET_BROADCAST <unfinished ...>
3193 <... mmap resumed>) = 0x7f88ad3b0000
3191 close(15 <unfinished ...>
3189 readlink("/usr" <unfinished ...>
3188 <... mkdir resumed>) = 0
3187 <... newfstatat resumed>, 0x7ffc98be0c10, 0) = -1 ENOENT (No such file or directory)
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3184 getdents64(5 <unfinished ...>
3181 <... close resumed>) = 0
3180 <... read resumed>, "346 551 259:3 / /oldroot rw,rela"..., 4079) = 3572
3176 <... openat resumed>) = 5
3165 prctl(PR_CAPBSET_DROP, CAP_AUDIT_WRITE <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 close(3 <unfinished ...>
3191 <... close resumed>) = 0
3190 <... sendto resumed>) = 32
3189 <... readlink resumed>, 0x7ffe6fe3c070, 1023) = -1 EINVAL (Invalid argument)
3188 mount("newroot", "newroot", NULL, MS_MGC_VAL|MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3187 mkdir("/newroot/dev", 0755 <unfinished ...>
3185 readlink("/newroot/dev" <unfinished ...>
3181 close(37 <unfinished ...>
3180 read(6 <unfinished ...>
3176 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3174 <... read resumed>, "181 517 259:3 / /oldroot rw,rela"..., 4079) = 3838
3165 <... prctl resumed>) = 0
3107 futex(0x7f71ad2278b0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_KILL <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_NET_ADMIN <unfinished ...>
3193 <... close resumed>) = 0
3191 wait4(3193 <unfinished ...>
3190 recvfrom(5 <unfinished ...>
3189 readlink("/usr/bin" <unfinished ...>
3188 <... mount resumed>) = 0
3187 <... mkdir resumed>) = 0
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3184 <... getdents64 resumed>, 0x55f9f7a3c740 /* 24 entries */, 32768) = 576
3181 <... close resumed>) = 0
3180 <... read resumed>, "", 507) = 0
3176 <... readlink resumed>, "/newroot/dev/full", 99) = 17
3174 read(6 <unfinished ...>
3165 prctl(PR_CAPBSET_DROP, CAP_AUDIT_CONTROL <unfinished ...>
3107 <... futex resumed>) = 1
3128 <... futex resumed>) = 0
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 openat(AT_FDCWD, "/usr/lib/libcap.so.2", O_RDONLY|O_CLOEXEC <unfinished ...>
3190 <... recvfrom resumed>, [{nlmsg_len=36, nlmsg_type=NLMSG_ERROR, nlmsg_flags=NLM_F_CAPPED, nlmsg_seq=1, nlmsg_pid=1}, {error=0, msg={nlmsg_len=32, nlmsg_type=0x10 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK, nlmsg_seq=1, nlmsg_pid=1}}], 1024, 0, NULL, NULL) = 36
3189 <... readlink resumed>, 0x7ffe6fe3c070, 1023) = -1 EINVAL (Invalid argument)
3188 mkdir("oldroot", 0755 <unfinished ...>
3187 mount("tmpfs", "/newroot/dev", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3185 readlink("/newroot/dev/null" <unfinished ...>
3184 close(3 <unfinished ...>
3181 close(42 <unfinished ...>
3180 close(6 <unfinished ...>
3176 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3174 <... read resumed>, "", 241) = 0
3165 <... prctl resumed>) = 0
3128 futex(0x7f71ad227870, FUTEX_WAIT_BITSET_PRIVATE, 2, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3107 futex(0x7f71ad2278b0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_SETGID <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_NET_RAW <unfinished ...>
3193 <... openat resumed>) = 3
3190 getpid( <unfinished ...>
3189 readlink("/usr/bin/true" <unfinished ...>
3188 <... mkdir resumed>) = 0
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3184 <... close resumed>) = 0
3181 <... close resumed>) = 0
3180 <... close resumed>) = 0
3176 <... openat resumed>) = 6
3174 close(6 <unfinished ...>
3165 prctl(PR_CAPBSET_DROP, CAP_SETFCAP <unfinished ...>
3187 <... mount resumed>) = 0
3127 <... futex resumed>) = 0
3107 <... futex resumed>) = 1
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 read(3 <unfinished ...>
3190 <... getpid resumed>) = 1
3189 <... readlink resumed>, 0x7ffe6fe3c070, 1023) = -1 EINVAL (Invalid argument)
3188 pivot_root("/tmp", "oldroot" <unfinished ...>
3187 creat("/newroot/dev/null", 0444 <unfinished ...>
3185 openat(AT_FDCWD, "/newroot/dev/null", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3184 close(14 <unfinished ...>
3181 close(45 <unfinished ...>
3180 close(5 <unfinished ...>
3176 read(6 <unfinished ...>
3174 <... close resumed>) = 0
3165 <... prctl resumed>) = 0
3107 futex(0x7f71ad227870, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_SETUID <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_IPC_LOCK <unfinished ...>
3193 <... read resumed>, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@|\0\0\0\0\0\0"..., 832) = 832
3190 close(5 <unfinished ...>
3189 mount(NULL, "/", NULL, MS_REC|MS_SILENT|MS_SLAVE, NULL <unfinished ...>
3187 <... creat resumed>) = 5
3185 <... openat resumed>) = 5
3184 <... close resumed>) = 0
3181 <... close resumed>) = 0
3180 <... close resumed>) = 0
3165 prctl(PR_CAPBSET_DROP, CAP_MAC_OVERRIDE <unfinished ...>
3128 <... futex resumed>) = 0
3127 read(22 <unfinished ...>
3107 <... futex resumed>) = 1
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 fstat(3 <unfinished ...>
3190 <... close resumed>) = 0
3187 close(5 <unfinished ...>
3185 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3184 close(16 <unfinished ...>
3181 close(54 <unfinished ...>
3180 creat("/newroot/dev/full", 0444 <unfinished ...>
3174 close(5 <unfinished ...>
3165 <... prctl resumed>) = 0
3128 futex(0x7f71ad227870, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3127 <... read resumed>, "Setting process memory limit\n", 8192) = 29
3195 prctl(PR_CAPBSET_DROP, CAP_SETPCAP <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_IPC_OWNER <unfinished ...>
3193 <... fstat resumed>, {st_mode=S_IFREG|0755, st_size=43064, ...}) = 0
3190 openat(3, "self", O_RDONLY|O_PATH <unfinished ...>
3187 <... close resumed>) = 0
3185 <... readlink resumed>, "/newroot/dev/null", 99) = 17
3184 <... close resumed>) = 0
3181 <... close resumed>) = 0
3180 <... creat resumed>) = 5
3174 <... close resumed>) = 0
3165 prctl(PR_CAPBSET_DROP, CAP_MAC_ADMIN <unfinished ...>
3128 <... futex resumed>) = 0
3127 read(22 <unfinished ...>
3107 rt_sigprocmask(SIG_BLOCK, ~[] <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 <unfinished ...>
3190 <... openat resumed>) = 5
3187 mount("/oldroot/dev/null", "/newroot/dev/null", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3185 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3184 close(20 <unfinished ...>
3181 close(55 <unfinished ...>
3180 close(5 <unfinished ...>
3174 creat("/newroot/dev/urandom", 0444 <unfinished ...>
3165 <... prctl resumed>) = 0
3128 read(16 <unfinished ...>
3107 <... rt_sigprocmask resumed>, [], 8) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_LINUX_IMMUTABLE <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_MODULE <unfinished ...>
3193 <... mmap resumed>) = 0x7f88ad3ae000
3190 openat(5, "uid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3185 <... openat resumed>) = 6
3184 <... close resumed>) = 0
3181 <... close resumed>) = 0
3180 <... close resumed>) = 0
3174 <... creat resumed>) = 5
3165 prctl(PR_CAPBSET_DROP, CAP_SYSLOG <unfinished ...>
3107 rt_sigprocmask(SIG_SETMASK, [] <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 mmap(NULL, 45128, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0 <unfinished ...>
3190 <... openat resumed>) = 6
3189 <... mount resumed>) = 0
3188 <... pivot_root resumed>) = 0
3187 <... mount resumed>) = 0
3185 read(6 <unfinished ...>
3184 close(22 <unfinished ...>
3181 close(56 <unfinished ...>
3180 mount("/oldroot/dev/full", "/newroot/dev/full", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3174 close(5 <unfinished ...>
3165 <... prctl resumed>) = 0
3107 <... rt_sigprocmask resumed>, NULL, 8) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_NET_BIND_SERVICE <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_RAWIO <unfinished ...>
3193 <... mmap resumed>) = 0x7f88ad3a2000
3190 write(6, "0 1000 1\n", 9 <unfinished ...>
3189 mount("tmpfs", "/tmp", "tmpfs", MS_NOSUID|MS_NODEV, NULL <unfinished ...>
3188 chdir("/" <unfinished ...>
3187 readlink("/newroot" <unfinished ...>
3184 <... close resumed>) = 0
3181 <... close resumed>) = 0
3176 <... read resumed>, "285 549 259:3 / /oldroot rw,rela"..., 4079) = 3703
3174 <... close resumed>) = 0
3165 prctl(PR_CAPBSET_DROP, CAP_WAKE_ALARM <unfinished ...>
3107 getrandom( <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 mmap(0x7f88ad3a5000, 20480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000 <unfinished ...>
3190 <... write resumed>) = 9
3188 <... chdir resumed>) = 0
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3184 close(35 <unfinished ...>
3181 close(64 <unfinished ...>
3176 read(6 <unfinished ...>
3174 mount("/oldroot/dev/urandom", "/newroot/dev/urandom", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3165 <... prctl resumed>) = 0
3107 <... getrandom resumed>"\xb1\x35\x37\x30\x03\xc4\xae\xd1\x3a\x9d\xd1\xe7\x72\xea\xf5\xd7\x05\xd7\x27\x60\xcd\x34\x7e\xf2\x1c\x89\x4b\x65\xb9\x5e\xd7\x34", 32, 0) = 32
3185 <... read resumed>, "379 439 259:3 / /oldroot rw,rela"..., 4079) = 3441
3195 prctl(PR_CAPBSET_DROP, CAP_NET_BROADCAST <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_CHROOT <unfinished ...>
3193 <... mmap resumed>) = 0x7f88ad3a5000
3190 close(6 <unfinished ...>
3189 <... mount resumed>) = 0
3188 newfstatat(AT_FDCWD, "/oldroot/usr" <unfinished ...>
3187 readlink("/newroot/dev" <unfinished ...>
3185 read(6 <unfinished ...>
3184 <... close resumed>) = 0
3181 <... close resumed>) = 0
3180 <... mount resumed>) = 0
3176 <... read resumed>, "", 376) = 0
3174 <... mount resumed>) = 0
3165 prctl(PR_CAPBSET_DROP, CAP_BLOCK_SUSPEND <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 mmap(0x7f88ad3aa000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000 <unfinished ...>
3190 <... close resumed>) = 0
3189 getcwd( <unfinished ...>
3188 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3185 <... read resumed>, "", 638) = 0
3184 close(37 <unfinished ...>
3181 close(71 <unfinished ...>
3180 readlink("/newroot" <unfinished ...>
3176 close(6 <unfinished ...>
3174 readlink("/newroot" <unfinished ...>
3165 <... prctl resumed>) = 0
3107 ioctl(14, FIONBIO, [1] <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_NET_ADMIN <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_PTRACE <unfinished ...>
3193 <... mmap resumed>) = 0x7f88ad3aa000
3190 openat(5, "setgroups", O_RDWR|O_CLOEXEC <unfinished ...>
3189 <... getcwd resumed>"/home/albert", 4096) = 13
3188 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3187 readlink("/newroot/dev/null" <unfinished ...>
3185 close(6 <unfinished ...>
3184 <... close resumed>) = 0
3181 <... close resumed>) = 0
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 <... close resumed>) = 0
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3165 prctl(PR_CAPBSET_DROP, CAP_AUDIT_READ <unfinished ...>
3107 <... ioctl resumed>) = 0
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 mmap(0x7f88ad3ac000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9000 <unfinished ...>
3190 <... openat resumed>) = 6
3189 chdir("/tmp" <unfinished ...>
3188 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=40, ...}, 0) = 0
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3185 <... close resumed>) = 0
3184 close(42 <unfinished ...>
3181 close(83 <unfinished ...>
3180 readlink("/newroot/dev" <unfinished ...>
3174 readlink("/newroot/dev" <unfinished ...>
3165 <... prctl resumed>) = 0
3107 epoll_ctl(7, EPOLL_CTL_ADD, 14, {events=EPOLLONESHOT, data=0} <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_NET_RAW <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_PACCT <unfinished ...>
3193 <... mmap resumed>) = 0x7f88ad3ac000
3190 write(6, "deny\n", 5 <unfinished ...>
3189 <... chdir resumed>) = 0
3188 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3187 openat(AT_FDCWD, "/newroot/dev/null", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3185 close(5 <unfinished ...>
3184 <... close resumed>) = 0
3181 <... close resumed>) = 0
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 close(5 <unfinished ...>
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3165 prctl(PR_CAPBSET_DROP, CAP_PERFMON <unfinished ...>
3107 <... epoll_ctl resumed>) = 0
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 close(3 <unfinished ...>
3190 <... write resumed>) = 5
3189 mkdir("newroot", 0755 <unfinished ...>
3188 <... newfstatat resumed>, 0x7ffc3e1150c0, 0) = -1 ENOENT (No such file or directory)
3187 <... openat resumed>) = 5
3185 <... close resumed>) = 0
3184 close(45 <unfinished ...>
3181 close(87 <unfinished ...>
3180 readlink("/newroot/dev/full" <unfinished ...>
3176 <... close resumed>) = 0
3174 readlink("/newroot/dev/urandom" <unfinished ...>
3165 <... prctl resumed>) = 0
3107 futex(0x7f71ad2278b0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_IPC_LOCK <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_ADMIN <unfinished ...>
3193 <... close resumed>) = 0
3190 close(6 <unfinished ...>
3189 <... mkdir resumed>) = 0
3188 mkdir("/newroot/usr", 0755 <unfinished ...>
3187 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3185 creat("/newroot/dev/zero", 0444 <unfinished ...>
3184 <... close resumed>) = 0
3181 <... close resumed>) = 0
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 creat("/newroot/dev/random", 0444 <unfinished ...>
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3165 prctl(PR_CAPBSET_DROP, CAP_BPF <unfinished ...>
3132 <... futex resumed>) = 0
3107 <... futex resumed>) = 1
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 openat(AT_FDCWD, "/usr/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC <unfinished ...>
3190 <... close resumed>) = 0
3189 mount("newroot", "newroot", NULL, MS_MGC_VAL|MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3188 <... mkdir resumed>) = 0
3187 <... readlink resumed>, "/newroot/dev/null", 99) = 17
3185 <... creat resumed>) = 5
3184 close(54 <unfinished ...>
3181 close(88 <unfinished ...>
3180 openat(AT_FDCWD, "/newroot/dev/full", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3176 <... creat resumed>) = 5
3174 openat(AT_FDCWD, "/newroot/dev/urandom", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3165 <... prctl resumed>) = 0
3132 getsockopt(14, SOL_SOCKET, SO_PEERCRED <unfinished ...>
3107 futex(0x7f718c002370, FUTEX_WAIT_BITSET_PRIVATE, 6, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_IPC_OWNER <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT <unfinished ...>
3193 <... openat resumed>) = 3
3190 openat(5, "gid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3189 <... mount resumed>) = 0
3188 mount("/oldroot/usr", "/newroot/usr", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3187 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3185 close(5 <unfinished ...>
3184 <... close resumed>) = 0
3181 <... close resumed>) = 0
3180 <... openat resumed>) = 5
3176 close(5 <unfinished ...>
3174 <... openat resumed>) = 5
3165 prctl(PR_CAPBSET_DROP, CAP_CHECKPOINT_RESTORE <unfinished ...>
3132 <... getsockopt resumed>, {pid=3101, uid=1000, gid=1000}, [12]) = 0
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 read(3 <unfinished ...>
3190 <... openat resumed>) = 6
3189 mkdir("oldroot", 0755 <unfinished ...>
3188 <... mount resumed>) = 0
3187 <... openat resumed>) = 6
3185 <... close resumed>) = 0
3184 close(55 <unfinished ...>
3181 getdents64(5 <unfinished ...>
3180 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3176 <... close resumed>) = 0
3174 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3165 <... prctl resumed>) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_MODULE <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_NICE <unfinished ...>
3193 <... read resumed>, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3190 write(6, "0 1000 1\n", 9 <unfinished ...>
3189 <... mkdir resumed>) = 0
3188 readlink("/newroot" <unfinished ...>
3187 read(6 <unfinished ...>
3185 mount("/oldroot/dev/zero", "/newroot/dev/zero", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3184 <... close resumed>) = 0
3181 <... getdents64 resumed>, 0x5646a0510740 /* 0 entries */, 32768) = 0
3180 <... readlink resumed>, "/newroot/dev/full", 99) = 17
3176 mount("/oldroot/dev/random", "/newroot/dev/random", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3174 <... readlink resumed>, "/newroot/dev/urandom", 99) = 20
3165 openat(3, "self", O_RDONLY|O_PATH <unfinished ...>
3132 newfstatat(AT_FDCWD, "/etc/nsswitch.conf" <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 fstat(3 <unfinished ...>
3190 <... write resumed>) = 9
3189 pivot_root("/tmp", "oldroot" <unfinished ...>
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3184 close(56 <unfinished ...>
3181 close(5 <unfinished ...>
3180 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3174 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3165 <... openat resumed>) = 5
3132 <... newfstatat resumed>, {st_mode=S_IFREG|0644, st_size=359, ...}, 0) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_RAWIO <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_RESOURCE <unfinished ...>
3193 <... fstat resumed>, {st_mode=S_IFREG|0644, st_size=906056, ...}) = 0
3190 close(6 <unfinished ...>
3188 readlink("/newroot/usr" <unfinished ...>
3187 <... read resumed>, "485 564 259:3 / /oldroot rw,rela"..., 4079) = 3441
3185 <... mount resumed>) = 0
3184 <... close resumed>) = 0
3181 <... close resumed>) = 0
3180 <... openat resumed>) = 6
3174 <... openat resumed>) = 6
3165 openat(5, "uid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3132 newfstatat(AT_FDCWD, "/" <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 mmap(NULL, 180712, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0 <unfinished ...>
3190 <... close resumed>) = 0
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3185 readlink("/newroot" <unfinished ...>
3184 close(64 <unfinished ...>
3181 signalfd4(-1, [CHLD], 8, SFD_CLOEXEC|SFD_NONBLOCK <unfinished ...>
3180 read(6 <unfinished ...>
3174 read(6 <unfinished ...>
3165 <... openat resumed>) = 6
3132 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_CHROOT <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_TIME <unfinished ...>
3193 <... mmap resumed>) = 0x7f88ad375000
3190 close(5 <unfinished ...>
3188 openat(AT_FDCWD, "/newroot/usr", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3187 read(6 <unfinished ...>
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3184 <... close resumed>) = 0
3181 <... signalfd4 resumed>) = 3
3165 write(6, "1000 0 1\n", 9 <unfinished ...>
3132 openat(AT_FDCWD, "/etc/nsswitch.conf", O_RDONLY|O_CLOEXEC <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 mmap(0x7f88ad379000, 143360, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000 <unfinished ...>
3190 <... close resumed>) = 0
3188 <... openat resumed>) = 5
3185 readlink("/newroot/dev" <unfinished ...>
3184 close(71 <unfinished ...>
3181 poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}], 2, -1 <unfinished ...>
3165 <... write resumed>) = 9
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_PTRACE <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_TTY_CONFIG <unfinished ...>
3193 <... mmap resumed>) = 0x7f88ad379000
3190 umask(000 <unfinished ...>
3188 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3184 <... close resumed>) = 0
3165 close(6 <unfinished ...>
3132 <... openat resumed>) = 13
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 mmap(0x7f88ad39c000, 16384, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x27000 <unfinished ...>
3190 <... umask resumed>) = 022
3189 <... pivot_root resumed>) = 0
3188 <... readlink resumed>, "/newroot/usr", 99) = 12
3185 readlink("/newroot/dev/zero" <unfinished ...>
3187 <... read resumed>, "", 638) = 0
3184 close(83 <unfinished ...>
3176 <... mount resumed>) = 0
3165 <... close resumed>) = 0
3132 fstat(13 <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_PACCT <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_MKNOD <unfinished ...>
3193 <... mmap resumed>) = 0x7f88ad39c000
3190 readlink("/usr" <unfinished ...>
3189 chdir("/" <unfinished ...>
3188 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3187 close(6 <unfinished ...>
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3184 <... close resumed>) = 0
3176 readlink("/newroot" <unfinished ...>
3165 openat(5, "gid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3132 <... fstat resumed>, {st_mode=S_IFREG|0644, st_size=359, ...}) = 0
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 mmap(0x7f88ad3a0000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2a000 <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26e360, 1023) = -1 EINVAL (Invalid argument)
3189 <... chdir resumed>) = 0
3188 <... openat resumed>) = 6
3187 <... close resumed>) = 0
3185 openat(AT_FDCWD, "/newroot/dev/zero", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3184 close(87 <unfinished ...>
3180 <... read resumed>, "346 551 259:3 / /oldroot rw,rela"..., 4079) = 3703
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 <... read resumed>, "181 517 259:3 / /oldroot rw,rela"..., 4079) = 3975
3165 <... openat resumed>) = 6
3132 read(13 <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_ADMIN <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_LEASE <unfinished ...>
3193 <... mmap resumed>) = 0x7f88ad3a0000
3190 readlink("/etc" <unfinished ...>
3189 newfstatat(AT_FDCWD, "/oldroot/usr" <unfinished ...>
3188 read(6 <unfinished ...>
3187 close(5 <unfinished ...>
3185 <... openat resumed>) = 5
3184 <... close resumed>) = 0
3180 read(6 <unfinished ...>
3176 readlink("/newroot/dev" <unfinished ...>
3174 read(6 <unfinished ...>
3165 write(6, "1000 0 1\n", 9 <unfinished ...>
3132 <... read resumed>, "# Name Service Switch configurat"..., 4096) = 359
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 close(3 <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26e360, 1023) = -1 EINVAL (Invalid argument)
3189 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3187 <... close resumed>) = 0
3185 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3184 close(88 <unfinished ...>
3180 <... read resumed>, "", 376) = 0
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 <... read resumed>, "", 104) = 0
3165 <... write resumed>) = 9
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_AUDIT_WRITE <unfinished ...>
3193 <... close resumed>) = 0
3190 readlink("/etc/ld.so.cache" <unfinished ...>
3189 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3188 <... read resumed>, "378 374 259:3 / /oldroot rw,rela"..., 4079) = 3192
3187 creat("/newroot/dev/zero", 0444 <unfinished ...>
3185 <... readlink resumed>, "/newroot/dev/zero", 99) = 17
3184 <... close resumed>) = 0
3180 close(6 <unfinished ...>
3176 readlink("/newroot/dev/random" <unfinished ...>
3174 close(6 <unfinished ...>
3165 close(6 <unfinished ...>
3132 read(13 <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 openat(AT_FDCWD, "/usr/lib/libc.so.6", O_RDONLY|O_CLOEXEC <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26e360, 1023) = -1 EINVAL (Invalid argument)
3189 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=40, ...}, 0) = 0
3188 read(6 <unfinished ...>
3187 <... creat resumed>) = 5
3185 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3184 getdents64(5 <unfinished ...>
3180 <... close resumed>) = 0
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 <... close resumed>) = 0
3165 <... close resumed>) = 0
3132 <... read resumed>, "", 4096) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_NICE <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_AUDIT_CONTROL <unfinished ...>
3193 <... openat resumed>) = 3
3190 readlink("/nix" <unfinished ...>
3189 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3188 <... read resumed>, "", 887) = 0
3187 close(5 <unfinished ...>
3185 <... openat resumed>) = 6
3184 <... getdents64 resumed>, 0x55f9f7a3c740 /* 0 entries */, 32768) = 0
3176 openat(AT_FDCWD, "/newroot/dev/random", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3180 close(5 <unfinished ...>
3165 close(5 <unfinished ...>
3132 fstat(13 <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 read(3 <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26e360, 1023) = -1 ENOENT (No such file or directory)
3189 <... newfstatat resumed>, 0x7ffe6fe3c240, 0) = -1 ENOENT (No such file or directory)
3188 close(6 <unfinished ...>
3187 <... close resumed>) = 0
3185 read(6 <unfinished ...>
3184 close(5 <unfinished ...>
3180 <... close resumed>) = 0
3176 <... openat resumed>) = 5
3174 close(5 <unfinished ...>
3165 <... close resumed>) = 0
3132 <... fstat resumed>, {st_mode=S_IFREG|0644, st_size=359, ...}) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_RESOURCE <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_SETFCAP <unfinished ...>
3193 <... read resumed>, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000x\2\0\0\0\0\0"..., 832) = 832
3190 readlink("/usr" <unfinished ...>
3189 mkdir("/newroot/usr", 0755 <unfinished ...>
3188 <... close resumed>) = 0
3187 mount("/oldroot/dev/zero", "/newroot/dev/zero", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3184 <... close resumed>) = 0
3180 creat("/newroot/dev/random", 0444 <unfinished ...>
3176 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3174 <... close resumed>) = 0
3165 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3132 close(13 <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 pread64(3 <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26e360, 1023) = -1 EINVAL (Invalid argument)
3189 <... mkdir resumed>) = 0
3188 mount("none", "/newroot/usr", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3187 <... mount resumed>) = 0
3185 <... read resumed>, "379 439 259:3 / /oldroot rw,rela"..., 4079) = 3572
3184 signalfd4(-1, [CHLD], 8, SFD_CLOEXEC|SFD_NONBLOCK <unfinished ...>
3180 <... creat resumed>) = 5
3176 <... readlink resumed>, "/newroot/dev/random", 99) = 19
3174 creat("/newroot/dev/tty", 0444 <unfinished ...>
3165 <... capset resumed>) = 0
3132 <... close resumed>) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_TIME <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_MAC_OVERRIDE <unfinished ...>
3193 <... pread64 resumed>, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 896, 64) = 896
3190 readlink("/usr/bin" <unfinished ...>
3189 mount("/oldroot/usr", "/newroot/usr", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3188 <... mount resumed>) = 0
3187 readlink("/newroot" <unfinished ...>
3185 read(6 <unfinished ...>
3184 <... signalfd4 resumed>) = 3
3180 close(5 <unfinished ...>
3176 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3174 <... creat resumed>) = 5
3165 prctl(PR_SET_DUMPABLE, SUID_DUMP_USER <unfinished ...>
3132 openat(AT_FDCWD, "/etc/passwd", O_RDONLY|O_CLOEXEC <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 fstat(3 <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26e360, 1023) = -1 EINVAL (Invalid argument)
3189 <... mount resumed>) = 0
3188 close(5 <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3185 <... read resumed>, "", 507) = 0
3184 poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}], 2, -1 <unfinished ...>
3180 <... close resumed>) = 0
3176 <... openat resumed>) = 6
3174 close(5 <unfinished ...>
3165 <... prctl resumed>) = 0
3132 <... openat resumed>) = 13
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_TTY_CONFIG <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_MAC_ADMIN <unfinished ...>
3193 <... fstat resumed>, {st_mode=S_IFREG|0755, st_size=2149728, ...}) = 0
3190 readlink("/usr/bin/true" <unfinished ...>
3189 readlink("/newroot" <unfinished ...>
3188 <... close resumed>) = 0
3187 readlink("/newroot/dev" <unfinished ...>
3185 close(6 <unfinished ...>
3180 mount("/oldroot/dev/random", "/newroot/dev/random", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3176 read(6 <unfinished ...>
3174 <... close resumed>) = 0
3165 read(37 <unfinished ...>
3132 fstat(13 <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 pread64(3 <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26e360, 1023) = -1 EINVAL (Invalid argument)
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3185 <... close resumed>) = 0
3180 <... mount resumed>) = 0
3174 mount("/oldroot/dev/tty", "/newroot/dev/tty", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3165 <... read resumed>, " \0\0\0\4\0\0\0\25\0\0f>\0\0\300 \0\0\0\0\0\0\0005\0\0\1\0\0\0@"..., 4079) = 840
3132 <... fstat resumed>, {st_mode=S_IFREG|0644, st_size=1155, ...}) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_MKNOD <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_SYSLOG <unfinished ...>
3193 <... pread64 resumed>, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 896, 64) = 896
3190 mount(NULL, "/", NULL, MS_REC|MS_SILENT|MS_SLAVE, NULL <unfinished ...>
3189 readlink("/newroot/usr" <unfinished ...>
3188 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=60, ...}, 0) = 0
3187 readlink("/newroot/dev/zero" <unfinished ...>
3185 close(5 <unfinished ...>
3180 readlink("/newroot" <unfinished ...>
3165 read(37 <unfinished ...>
3132 lseek(13, 0, SEEK_SET <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 mmap(NULL, 2174000, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0 <unfinished ...>
3190 <... mount resumed>) = 0
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 newfstatat(AT_FDCWD, "/newroot/dev" <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3185 <... close resumed>) = 0
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 <... read resumed>, "285 549 259:3 / /oldroot rw,rela"..., 4079) = 3838
3174 <... mount resumed>) = 0
3165 <... read resumed>, "", 3239) = 0
3132 <... lseek resumed>) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_LEASE <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_WAKE_ALARM <unfinished ...>
3193 <... mmap resumed>) = 0x7f88ad000000
3190 mount("tmpfs", "/tmp", "tmpfs", MS_NOSUID|MS_NODEV, NULL <unfinished ...>
3189 openat(AT_FDCWD, "/newroot/usr", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3188 <... newfstatat resumed>, 0x7ffc3e1150c0, 0) = -1 ENOENT (No such file or directory)
3187 openat(AT_FDCWD, "/newroot/dev/zero", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3185 creat("/newroot/dev/full", 0444 <unfinished ...>
3180 readlink("/newroot/dev" <unfinished ...>
3176 read(6 <unfinished ...>
3174 readlink("/newroot" <unfinished ...>
3165 close(37 <unfinished ...>
3132 read(13 <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 mmap(0x7f88ad024000, 1515520, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x24000 <unfinished ...>
3190 <... mount resumed>) = 0
3189 <... openat resumed>) = 5
3188 mkdir("/newroot/dev", 0755 <unfinished ...>
3187 <... openat resumed>) = 5
3185 <... creat resumed>) = 5
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 <... read resumed>, "", 241) = 0
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3165 <... close resumed>) = 0
3132 <... read resumed>, "root:x:0:0::/root:/usr/bin/bash\n"..., 4096) = 1155
3195 prctl(PR_CAPBSET_DROP, CAP_AUDIT_WRITE <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_BLOCK_SUSPEND <unfinished ...>
3193 <... mmap resumed>) = 0x7f88ad024000
3190 getcwd( <unfinished ...>
3189 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3188 <... mkdir resumed>) = 0
3187 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3185 close(5 <unfinished ...>
3180 readlink("/newroot/dev/random" <unfinished ...>
3176 close(6 <unfinished ...>
3174 readlink("/newroot/dev" <unfinished ...>
3165 umask(022 <unfinished ...>
3132 lseek(13, 1044, SEEK_SET <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 mmap(0x7f88ad196000, 454656, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x196000 <unfinished ...>
3190 <... getcwd resumed>"/home/albert", 4096) = 13
3189 <... readlink resumed>, "/newroot/usr", 99) = 12
3188 mount("tmpfs", "/newroot/dev", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3187 <... readlink resumed>, "/newroot/dev/zero", 99) = 17
3185 <... close resumed>) = 0
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 <... close resumed>) = 0
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3165 <... umask resumed>) = 000
3132 <... lseek resumed>) = 1044
3195 prctl(PR_CAPBSET_DROP, CAP_AUDIT_CONTROL <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_AUDIT_READ <unfinished ...>
3193 <... mmap resumed>) = 0x7f88ad196000
3190 chdir("/tmp" <unfinished ...>
3189 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3187 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3185 mount("/oldroot/dev/full", "/newroot/dev/full", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3180 openat(AT_FDCWD, "/newroot/dev/random", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3174 readlink("/newroot/dev/tty" <unfinished ...>
3188 <... mount resumed>) = 0
3165 chdir("/" <unfinished ...>
3132 close(13 <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 mmap(0x7f88ad205000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x204000 <unfinished ...>
3190 <... chdir resumed>) = 0
3189 <... openat resumed>) = 6
3188 creat("/newroot/dev/null", 0444 <unfinished ...>
3187 <... openat resumed>) = 6
3185 <... mount resumed>) = 0
3180 <... openat resumed>) = 5
3176 close(5 <unfinished ...>
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3165 <... chdir resumed>) = 0
3132 <... close resumed>) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_SETFCAP <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_PERFMON <unfinished ...>
3193 <... mmap resumed>) = 0x7f88ad205000
3190 mkdir("newroot", 0755 <unfinished ...>
3189 read(6 <unfinished ...>
3188 <... creat resumed>) = 5
3187 read(6 <unfinished ...>
3185 readlink("/newroot" <unfinished ...>
3180 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3176 <... close resumed>) = 0
3174 openat(AT_FDCWD, "/newroot/dev/tty", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3132 openat(AT_FDCWD, "/proc/sys/kernel/ngroups_max", O_RDONLY|O_CLOEXEC <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 mmap(0x7f88ad20b000, 31792, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0 <unfinished ...>
3190 <... mkdir resumed>) = 0
3188 close(5 <unfinished ...>
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3180 <... readlink resumed>, "/newroot/dev/random", 99) = 19
3176 creat("/newroot/dev/urandom", 0444 <unfinished ...>
3174 <... openat resumed>) = 5
3165 rt_sigprocmask(SIG_BLOCK, ~[] <unfinished ...>
3132 <... openat resumed>) = 13
3195 prctl(PR_CAPBSET_DROP, CAP_MAC_OVERRIDE <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_BPF <unfinished ...>
3193 <... mmap resumed>) = 0x7f88ad20b000
3190 mount("newroot", "newroot", NULL, MS_MGC_VAL|MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3189 <... read resumed>, "255 478 259:3 / /oldroot rw,rela"..., 4079) = 3191
3188 <... close resumed>) = 0
3187 <... read resumed>, "485 564 259:3 / /oldroot rw,rela"..., 4079) = 3572
3185 readlink("/newroot/dev" <unfinished ...>
3180 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3176 <... creat resumed>) = 5
3174 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3165 <... rt_sigprocmask resumed>, [CHLD], 8) = 0
3132 read(13 <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 close(3 <unfinished ...>
3190 <... mount resumed>) = 0
3189 read(6 <unfinished ...>
3188 mount("/oldroot/dev/null", "/newroot/dev/null", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3187 read(6 <unfinished ...>
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3180 <... openat resumed>) = 6
3176 close(5 <unfinished ...>
3174 <... readlink resumed>, "/newroot/dev/tty", 99) = 16
3165 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD <unfinished ...>
3132 <... read resumed>, "65536\n", 31) = 6
3195 prctl(PR_CAPBSET_DROP, CAP_MAC_ADMIN <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_CHECKPOINT_RESTORE <unfinished ...>
3193 <... close resumed>) = 0
3190 mkdir("oldroot", 0755 <unfinished ...>
3189 <... read resumed>, "", 888) = 0
3188 <... mount resumed>) = 0
3187 <... read resumed>, "", 507) = 0
3185 readlink("/newroot/dev/full" <unfinished ...>
3180 read(6 <unfinished ...>
3176 <... close resumed>) = 0
3174 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3132 close(13 <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3193 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 <unfinished ...>
3190 <... mkdir resumed>) = 0
3189 close(6 <unfinished ...>
3188 readlink("/newroot" <unfinished ...>
3187 close(6 <unfinished ...>
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3176 mount("/oldroot/dev/urandom", "/newroot/dev/urandom", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3174 <... openat resumed>) = 6
3132 <... close resumed>) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_SYSLOG <unfinished ...>
3194 getpid( <unfinished ...>
3193 <... mmap resumed>) = 0x7f88ad372000
3190 pivot_root("/tmp", "oldroot" <unfinished ...>
3189 <... close resumed>) = 0
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 <... close resumed>) = 0
3185 openat(AT_FDCWD, "/newroot/dev/full", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3174 read(6 <unfinished ...>
3132 newfstatat(AT_FDCWD, "/etc/nsswitch.conf" <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... getpid resumed>) = 1
3193 arch_prctl(ARCH_SET_FS, 0x7f88ad372740 <unfinished ...>
3188 readlink("/newroot/dev" <unfinished ...>
3187 close(5 <unfinished ...>
3185 <... openat resumed>) = 5
3180 <... read resumed>, "346 551 259:3 / /oldroot rw,rela"..., 4079) = 3838
3176 <... mount resumed>) = 0
3132 <... newfstatat resumed>, {st_mode=S_IFREG|0644, st_size=359, ...}, 0) = 0
3189 mount("none", "/newroot/usr", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3196 set_robust_list(0x7fc4402f1a20, 24 <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_WAKE_ALARM <unfinished ...>
3194 socket(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC, 0 <unfinished ...>
3193 <... arch_prctl resumed>) = 0
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 <... close resumed>) = 0
3185 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3180 read(6 <unfinished ...>
3176 readlink("/newroot" <unfinished ...>
3165 <... clone resumed>, child_tidptr=0x7fc4402f1a10) = 2
3189 <... mount resumed>) = 0
3132 newfstatat(AT_FDCWD, "/etc/nsswitch.conf" <unfinished ...>
3196 <... set_robust_list resumed>) = 0
3195 <... prctl resumed>) = 0
3194 <... socket resumed>) = 5
3193 set_tid_address(0x7f88ad372a10 <unfinished ...>
3189 close(5 <unfinished ...>
3188 readlink("/newroot/dev/null" <unfinished ...>
3187 creat("/newroot/dev/full", 0444 <unfinished ...>
3185 <... readlink resumed>, "/newroot/dev/full", 99) = 17
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3132 <... newfstatat resumed>, {st_mode=S_IFREG|0644, st_size=359, ...}, 0) = 0
3196 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_BLOCK_SUSPEND <unfinished ...>
3194 ioctl(5, SIOCGIFINDEX, {ifr_name="lo" <unfinished ...>
3193 <... set_tid_address resumed>) = 3193
3189 <... close resumed>) = 0
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 <... creat resumed>) = 5
3176 readlink("/newroot/dev" <unfinished ...>
3165 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3196 <... rt_sigprocmask resumed>, NULL, 8) = 0
3195 <... prctl resumed>) = 0
3194 <... ioctl resumed>, ifr_ifindex=1}) = 0
3193 set_robust_list(0x7f88ad372a20, 24 <unfinished ...>
3189 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3188 openat(AT_FDCWD, "/newroot/dev/null", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3187 close(5 <unfinished ...>
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3165 <... rt_sigprocmask resumed>, NULL, 8) = 0
3132 openat(AT_FDCWD, "/etc/group", O_RDONLY|O_CLOEXEC <unfinished ...>
3196 close(3 <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_AUDIT_READ <unfinished ...>
3194 close(5 <unfinished ...>
3193 <... set_robust_list resumed>) = 0
3190 <... pivot_root resumed>) = 0
3189 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=60, ...}, 0) = 0
3188 <... openat resumed>) = 5
3187 <... close resumed>) = 0
3180 <... read resumed>, "", 241) = 0
3176 readlink("/newroot/dev/urandom" <unfinished ...>
3165 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3132 <... openat resumed>) = 13
3196 <... close resumed>) = 0
3195 <... prctl resumed>) = 0
3194 <... close resumed>) = 0
3193 rseq(0x7f88ad372680, 0x20, 0, 0x53053053 <unfinished ...>
3190 chdir("/" <unfinished ...>
3189 newfstatat(AT_FDCWD, "/newroot/dev" <unfinished ...>
3188 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3187 mount("/oldroot/dev/full", "/newroot/dev/full", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3185 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3180 close(6 <unfinished ...>
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 <... read resumed>, "181 517 259:3 / /oldroot rw,rela"..., 4079) = 3975
3165 <... capset resumed>) = 0
3132 fstat(13 <unfinished ...>
3196 rt_sigprocmask(SIG_UNBLOCK, [CHLD] <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_PERFMON <unfinished ...>
3194 socket(AF_NETLINK, SOCK_RAW|SOCK_CLOEXEC, NETLINK_ROUTE <unfinished ...>
3193 <... rseq resumed>) = 0
3190 <... chdir resumed>) = 0
3189 <... newfstatat resumed>, 0x7ffe6fe3c240, 0) = -1 ENOENT (No such file or directory)
3188 <... readlink resumed>, "/newroot/dev/null", 99) = 17
3187 <... mount resumed>) = 0
3185 <... openat resumed>) = 6
3180 <... close resumed>) = 0
3176 openat(AT_FDCWD, "/newroot/dev/urandom", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3174 read(6 <unfinished ...>
3165 openat(3, "self/fd", O_RDONLY|O_NOCTTY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY <unfinished ...>
3132 <... fstat resumed>, {st_mode=S_IFREG|0644, st_size=771, ...}) = 0
3196 <... rt_sigprocmask resumed>, NULL, 8) = 0
3195 <... prctl resumed>) = 0
3194 <... socket resumed>) = 5
3190 newfstatat(AT_FDCWD, "/oldroot/usr" <unfinished ...>
3189 mkdir("/newroot/dev", 0755 <unfinished ...>
3188 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3187 readlink("/newroot" <unfinished ...>
3185 read(6 <unfinished ...>
3180 close(5 <unfinished ...>
3176 <... openat resumed>) = 5
3174 <... read resumed>, "602 552 0:6 /tty /newroot/dev/tt"..., 104) = 104
3165 <... openat resumed>) = 5
3132 lseek(13, 0, SEEK_SET <unfinished ...>
3196 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_BPF <unfinished ...>
3194 bind(5, {sa_family=AF_NETLINK, nl_pid=1, nl_groups=00000000}, 12 <unfinished ...>
3193 mprotect(0x7f88ad205000, 16384, PROT_READ <unfinished ...>
3190 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3189 <... mkdir resumed>) = 0
3188 <... openat resumed>) = 6
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3180 <... close resumed>) = 0
3176 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3174 read(6 <unfinished ...>
3165 fstat(5 <unfinished ...>
3132 <... lseek resumed>) = 0
3196 <... prctl resumed>) = 0
3195 <... prctl resumed>) = 0
3194 <... bind resumed>) = 0
3193 <... mprotect resumed>) = 0
3190 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3189 mount("tmpfs", "/newroot/dev", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3188 read(6 <unfinished ...>
3187 readlink("/newroot/dev" <unfinished ...>
3180 creat("/newroot/dev/urandom", 0444 <unfinished ...>
3176 <... readlink resumed>, "/newroot/dev/urandom", 99) = 20
3174 <... read resumed>, "1939605,mode=755,inode64\n", 4080) = 25
3165 <... fstat resumed>, {st_mode=S_IFDIR|0500, st_size=15, ...}) = 0
3185 <... read resumed>, "379 439 259:3 / /oldroot rw,rela"..., 4079) = 3703
3132 read(13 <unfinished ...>
3196 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x55fb83c90ca0} <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_CHECKPOINT_RESTORE <unfinished ...>
3194 getpid( <unfinished ...>
3193 mprotect(0x7f88ad3a0000, 4096, PROT_READ <unfinished ...>
3190 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=40, ...}, 0) = 0
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3185 read(6 <unfinished ...>
3180 <... creat resumed>) = 5
3176 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3174 read(6 <unfinished ...>
3165 fcntl(5, F_GETFL <unfinished ...>
3132 <... read resumed>, "root:x:0:root\nsys:x:3:bin\nmem:x:"..., 4096) = 771
3195 <... prctl resumed>) = 0
3194 <... getpid resumed>) = 1
3193 <... mprotect resumed>) = 0
3190 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3189 <... mount resumed>) = 0
3188 <... read resumed>, "378 374 259:3 / /oldroot rw,rela"..., 4079) = 3441
3187 readlink("/newroot/dev/full" <unfinished ...>
3185 <... read resumed>, "", 376) = 0
3180 close(5 <unfinished ...>
3176 <... openat resumed>) = 6
3174 <... read resumed>, "", 4055) = 0
3165 <... fcntl resumed>) = 0x18800 (flags O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY)
3132 read(13 <unfinished ...>
3195 getpid( <unfinished ...>
3194 sendto(5, [{nlmsg_len=40, nlmsg_type=0x14 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|0x600, nlmsg_seq=0, nlmsg_pid=1}, "\x02\x08\x80\xfe\x01\x00\x00\x00\x08\x00\x02\x00\x7f\x00\x00\x01\x08\x00\x01\x00\x7f\x00\x00\x01"], 40, 0, {sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, 12 <unfinished ...>
3193 mprotect(0x7f88ad3ac000, 4096, PROT_READ <unfinished ...>
3190 <... newfstatat resumed>, 0x7ffc7d26e530, 0) = -1 ENOENT (No such file or directory)
3189 creat("/newroot/dev/null", 0444 <unfinished ...>
3188 read(6 <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3185 close(6 <unfinished ...>
3180 <... close resumed>) = 0
3176 read(6 <unfinished ...>
3174 close(6 <unfinished ...>
3165 fcntl(5, F_SETFD, FD_CLOEXEC <unfinished ...>
3132 <... read resumed>, "", 4096) = 0
3196 <... prctl resumed>) = 0
3195 <... getpid resumed>) = 1
3194 <... sendto resumed>) = 40
3193 <... mprotect resumed>) = 0
3190 mkdir("/newroot/usr", 0755 <unfinished ...>
3189 <... creat resumed>) = 5
3188 <... read resumed>, "", 638) = 0
3187 openat(AT_FDCWD, "/newroot/dev/full", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3185 <... close resumed>) = 0
3180 mount("/oldroot/dev/urandom", "/newroot/dev/urandom", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3174 <... close resumed>) = 0
3165 <... fcntl resumed>) = 0
3132 close(13 <unfinished ...>
3196 execve("/bin/true", ["/bin/true"], 0x55fb83c8e490 /* 3 vars */ <unfinished ...>
3195 socket(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC, 0 <unfinished ...>
3194 recvfrom(5 <unfinished ...>
3193 mprotect(0x55a957869000, 4096, PROT_READ <unfinished ...>
3190 <... mkdir resumed>) = 0
3189 close(5 <unfinished ...>
3188 close(6 <unfinished ...>
3187 <... openat resumed>) = 5
3180 <... mount resumed>) = 0
3176 <... read resumed>, "285 549 259:3 / /oldroot rw,rela"..., 4079) = 3975
3185 close(5 <unfinished ...>
3165 getdents64(5 <unfinished ...>
3132 <... close resumed>) = 0
3196 <... execve resumed>) = -1 ENOENT (No such file or directory)
3195 <... socket resumed>) = 5
3194 <... recvfrom resumed>, [{nlmsg_len=36, nlmsg_type=NLMSG_ERROR, nlmsg_flags=NLM_F_CAPPED, nlmsg_seq=0, nlmsg_pid=1}, {error=0, msg={nlmsg_len=40, nlmsg_type=0x14 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|0x600, nlmsg_seq=0, nlmsg_pid=1}}], 1024, 0, NULL, NULL) = 36
3193 <... mprotect resumed>) = 0
3190 mount("/oldroot/usr", "/newroot/usr", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3189 <... close resumed>) = 0
3188 <... close resumed>) = 0
3187 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3185 <... close resumed>) = 0
3180 readlink("/newroot" <unfinished ...>
3176 read(6 <unfinished ...>
3174 close(5 <unfinished ...>
3196 write(2, "bwrap: ", 7 <unfinished ...>
3195 ioctl(5, SIOCGIFINDEX, {ifr_name="lo" <unfinished ...>
3194 getpid( <unfinished ...>
3193 mprotect(0x7f88ad419000, 8192, PROT_READ <unfinished ...>
3190 <... mount resumed>) = 0
3189 mount("/oldroot/dev/null", "/newroot/dev/null", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3187 <... readlink resumed>, "/newroot/dev/full", 99) = 17
3188 close(5 <unfinished ...>
3185 creat("/newroot/dev/random", 0444 <unfinished ...>
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 <... read resumed>, "", 104) = 0
3174 <... close resumed>) = 0
3165 <... getdents64 resumed>, 0x55fb83c91cd0 /* 17 entries */, 32768) = 408
3132 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC <unfinished ...>
3196 <... write resumed>) = 7
3195 <... ioctl resumed>, ifr_ifindex=1}) = 0
3194 <... getpid resumed>) = 1
3193 <... mprotect resumed>) = 0
3190 readlink("/newroot" <unfinished ...>
3189 <... mount resumed>) = 0
3188 <... close resumed>) = 0
3187 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3185 <... creat resumed>) = 5
3180 readlink("/newroot/dev" <unfinished ...>
3176 close(6 <unfinished ...>
3174 symlink("/proc/self/fd/0", "/newroot/dev/stdin" <unfinished ...>
3165 close(3 <unfinished ...>
3151 <... poll resumed>) = 1 ([{fd=58, revents=POLLIN}])
3132 <... openat resumed>) = 13
3196 write(2, "execvp /bin/true", 16 <unfinished ...>
3195 close(5 <unfinished ...>
3194 getpid( <unfinished ...>
3193 prlimit64(0, RLIMIT_STACK, NULL <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 readlink("/newroot" <unfinished ...>
3188 creat("/newroot/dev/zero", 0444 <unfinished ...>
3187 <... openat resumed>) = 6
3185 close(5 <unfinished ...>
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 <... close resumed>) = 0
3174 <... symlink resumed>) = 0
3165 <... close resumed>) = 0
3151 read(58 <unfinished ...>
3132 fstat(13 <unfinished ...>
3196 <... write resumed>) = 16
3195 <... close resumed>) = 0
3194 <... getpid resumed>) = 1
3193 <... prlimit64 resumed>, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
3190 readlink("/newroot/usr" <unfinished ...>
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... creat resumed>) = 5
3187 read(6 <unfinished ...>
3185 <... close resumed>) = 0
3180 readlink("/newroot/dev/urandom" <unfinished ...>
3174 symlink("/proc/self/fd/1", "/newroot/dev/stdout" <unfinished ...>
3165 close(14 <unfinished ...>
3151 <... read resumed>, "bwrap: execvp /bin/true", 32) = 23
3132 <... fstat resumed>, {st_mode=S_IFREG|0644, st_size=162207, ...}) = 0
3196 write(2, ": No such file or directory", 27 <unfinished ...>
3195 socket(AF_NETLINK, SOCK_RAW|SOCK_CLOEXEC, NETLINK_ROUTE <unfinished ...>
3194 sendto(5, [{nlmsg_len=32, nlmsg_type=0x10 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK, nlmsg_seq=1, nlmsg_pid=1}, "\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00"], 32, 0, {sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, 12 <unfinished ...>
3193 getrandom( <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 readlink("/newroot/dev" <unfinished ...>
3188 close(5 <unfinished ...>
3185 mount("/oldroot/dev/random", "/newroot/dev/random", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 close(5 <unfinished ...>
3174 <... symlink resumed>) = 0
3165 <... close resumed>) = 0
3151 read(58 <unfinished ...>
3132 mmap(NULL, 162207, PROT_READ, MAP_PRIVATE, 13, 0 <unfinished ...>
3196 <... write resumed>) = 27
3195 <... socket resumed>) = 5
3193 <... getrandom resumed>"\xf1\x54\x37\x62\xf0\xee\x1b\x4a", 8, GRND_NONBLOCK) = 8
3190 openat(AT_FDCWD, "/newroot/usr", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... close resumed>) = 0
3187 <... read resumed>, "485 564 259:3 / /oldroot rw,rela"..., 4079) = 3703
3185 <... mount resumed>) = 0
3180 openat(AT_FDCWD, "/newroot/dev/urandom", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3176 <... close resumed>) = 0
3174 symlink("/proc/self/fd/2", "/newroot/dev/stderr" <unfinished ...>
3165 close(16 <unfinished ...>
3151 <... read resumed>, ": No such", 9) = 9
3196 write(2, "\n", 1 <unfinished ...>
3195 bind(5, {sa_family=AF_NETLINK, nl_pid=1, nl_groups=00000000}, 12 <unfinished ...>
3194 <... sendto resumed>) = 32
3193 munmap(0x7f88ad3b0000, 162207 <unfinished ...>
3190 <... openat resumed>) = 5
3189 readlink("/newroot/dev/null" <unfinished ...>
3188 mount("/oldroot/dev/zero", "/newroot/dev/zero", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3187 read(6 <unfinished ...>
3185 readlink("/newroot" <unfinished ...>
3180 <... openat resumed>) = 5
3176 creat("/newroot/dev/tty", 0444 <unfinished ...>
3174 <... symlink resumed>) = 0
3165 <... close resumed>) = 0
3151 read(58 <unfinished ...>
3132 <... mmap resumed>) = 0x7f71ab09d000
3196 <... write resumed>) = 1
3195 <... bind resumed>) = 0
3194 recvfrom(5 <unfinished ...>
3193 <... munmap resumed>) = 0
3190 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... mount resumed>) = 0
3187 <... read resumed>, "", 376) = 0
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3180 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3176 <... creat resumed>) = 5
3174 symlink("/proc/self/fd", "/newroot/dev/fd" <unfinished ...>
3165 close(20 <unfinished ...>
3151 <... read resumed>, " file or directory\n", 32) = 19
3132 close(13 <unfinished ...>
3196 exit_group(1 <unfinished ...>
3195 getpid( <unfinished ...>
3194 <... recvfrom resumed>, [{nlmsg_len=36, nlmsg_type=NLMSG_ERROR, nlmsg_flags=NLM_F_CAPPED, nlmsg_seq=1, nlmsg_pid=1}, {error=0, msg={nlmsg_len=32, nlmsg_type=0x10 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK, nlmsg_seq=1, nlmsg_pid=1}}], 1024, 0, NULL, NULL) = 36
3193 prctl(PR_CAPBSET_READ, CAP_MAC_OVERRIDE <unfinished ...>
3190 <... readlink resumed>, "/newroot/usr", 99) = 12
3189 openat(AT_FDCWD, "/newroot/dev/null", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3188 readlink("/newroot" <unfinished ...>
3187 close(6 <unfinished ...>
3185 readlink("/newroot/dev" <unfinished ...>
3180 <... readlink resumed>, "/newroot/dev/urandom", 99) = 20
3176 close(5 <unfinished ...>
3174 <... symlink resumed>) = 0
3165 <... close resumed>) = 0
3151 read(58 <unfinished ...>
3132 <... close resumed>) = 0
3196 <... exit_group resumed>) = ?
3195 <... getpid resumed>) = 1
3194 getpid( <unfinished ...>
3193 <... prctl resumed>) = 1
3190 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3189 <... openat resumed>) = 5
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 <... close resumed>) = 0
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3180 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3176 <... close resumed>) = 0
3174 symlink("/proc/kcore", "/newroot/dev/core" <unfinished ...>
3165 close(22 <unfinished ...>
3151 <... read resumed>, 0x7f70f0000ee0, 42) = -1 EAGAIN (Resource temporarily unavailable)
3195 sendto(5, [{nlmsg_len=40, nlmsg_type=0x14 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|0x600, nlmsg_seq=0, nlmsg_pid=1}, "\x02\x08\x80\xfe\x01\x00\x00\x00\x08\x00\x02\x00\x7f\x00\x00\x01\x08\x00\x01\x00\x7f\x00\x00\x01"], 40, 0, {sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, 12 <unfinished ...>
3194 <... getpid resumed>) = 1
3193 prctl(PR_CAPBSET_READ, 0x30 /* CAP_??? */ <unfinished ...>
3190 <... openat resumed>) = 6
3189 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3188 readlink("/newroot/dev" <unfinished ...>
3187 close(5 <unfinished ...>
3185 readlink("/newroot/dev/random" <unfinished ...>
3180 <... openat resumed>) = 6
3176 mount("/oldroot/dev/tty", "/newroot/dev/tty", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3174 <... symlink resumed>) = 0
3165 <... close resumed>) = 0
3151 poll([{fd=59, events=POLLIN}, {fd=58, events=POLLIN}], 2, -1 <unfinished ...>
3132 openat(AT_FDCWD, "/usr/lib/libnss_systemd.so.2", O_RDONLY|O_CLOEXEC <unfinished ...>
3196 +++ exited with 1 +++
3195 <... sendto resumed>) = 40
3194 close(5 <unfinished ...>
3193 <... prctl resumed>) = -1 EINVAL (Invalid argument)
3190 read(6 <unfinished ...>
3189 <... readlink resumed>, "/newroot/dev/null", 99) = 17
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 <... close resumed>) = 0
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3180 read(6 <unfinished ...>
3176 <... mount resumed>) = 0
3174 mkdir("/newroot/dev/shm", 0755 <unfinished ...>
3165 close(35 <unfinished ...>
3132 <... openat resumed>) = 13
3195 recvfrom(5 <unfinished ...>
3194 <... close resumed>) = 0
3193 prctl(PR_CAPBSET_READ, CAP_CHECKPOINT_RESTORE <unfinished ...>
3189 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3188 readlink("/newroot/dev/zero" <unfinished ...>
3187 creat("/newroot/dev/random", 0444 <unfinished ...>
3185 openat(AT_FDCWD, "/newroot/dev/random", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3176 readlink("/newroot" <unfinished ...>
3174 <... mkdir resumed>) = 0
3165 <... close resumed>) = 0
3132 read(13 <unfinished ...>
3195 <... recvfrom resumed>, [{nlmsg_len=36, nlmsg_type=NLMSG_ERROR, nlmsg_flags=NLM_F_CAPPED, nlmsg_seq=0, nlmsg_pid=1}, {error=0, msg={nlmsg_len=40, nlmsg_type=0x14 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|0x600, nlmsg_seq=0, nlmsg_pid=1}}], 1024, 0, NULL, NULL) = 36
3194 openat(3, "self", O_RDONLY|O_PATH <unfinished ...>
3193 <... prctl resumed>) = 1
3190 <... read resumed>, "521 603 259:3 / /oldroot rw,rela"..., 4079) = 3192
3189 <... openat resumed>) = 6
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 <... creat resumed>) = 5
3185 <... openat resumed>) = 5
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 mkdir("/newroot/dev/pts", 0755 <unfinished ...>
3165 close(42 <unfinished ...>
3180 <... read resumed>, "346 551 259:3 / /oldroot rw,rela"..., 4079) = 3975
3132 <... read resumed>, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3195 getpid( <unfinished ...>
3194 <... openat resumed>) = 5
3193 prctl(PR_CAPBSET_READ, 0x2c /* CAP_??? */ <unfinished ...>
3190 read(6 <unfinished ...>
3189 read(6 <unfinished ...>
3188 openat(AT_FDCWD, "/newroot/dev/zero", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3187 close(5 <unfinished ...>
3185 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3176 readlink("/newroot/dev" <unfinished ...>
3174 <... mkdir resumed>) = 0
3165 <... close resumed>) = 0
3132 fstat(13 <unfinished ...>
3195 <... getpid resumed>) = 1
3194 openat(5, "uid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3193 <... prctl resumed>) = -1 EINVAL (Invalid argument)
3190 <... read resumed>, "", 887) = 0
3188 <... openat resumed>) = 5
3187 <... close resumed>) = 0
3185 <... readlink resumed>, "/newroot/dev/random", 99) = 19
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 mount("devpts", "/newroot/dev/pts", "devpts", MS_NOSUID|MS_NOEXEC, "newinstance,ptmxmode=0666,mode=6"... <unfinished ...>
3165 close(45 <unfinished ...>
3132 <... fstat resumed>, {st_mode=S_IFREG|0755, st_size=444832, ...}) = 0
3195 getpid( <unfinished ...>
3194 <... openat resumed>) = 6
3193 prctl(PR_CAPBSET_READ, 0x2a /* CAP_??? */ <unfinished ...>
3190 close(6 <unfinished ...>
3189 <... read resumed>, "255 478 259:3 / /oldroot rw,rela"..., 4079) = 3440
3188 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3187 mount("/oldroot/dev/random", "/newroot/dev/random", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3185 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3180 read(6 <unfinished ...>
3176 readlink("/newroot/dev/tty" <unfinished ...>
3165 <... close resumed>) = 0
3195 <... getpid resumed>) = 1
3194 write(6, "0 1000 1\n", 9 <unfinished ...>
3193 <... prctl resumed>) = -1 EINVAL (Invalid argument)
3190 <... close resumed>) = 0
3189 read(6 <unfinished ...>
3188 <... readlink resumed>, "/newroot/dev/zero", 99) = 17
3187 <... mount resumed>) = 0
3185 <... openat resumed>) = 6
3180 <... read resumed>, "", 104) = 0
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 <... mount resumed>) = 0
3165 close(54 <unfinished ...>
3132 mmap(NULL, 449128, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 13, 0 <unfinished ...>
3195 sendto(5, [{nlmsg_len=32, nlmsg_type=0x10 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK, nlmsg_seq=1, nlmsg_pid=1}, "\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00"], 32, 0, {sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, 12 <unfinished ...>
3194 <... write resumed>) = 9
3193 prctl(PR_CAPBSET_READ, 0x29 /* CAP_??? */ <unfinished ...>
3190 mount("none", "/newroot/usr", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3189 <... read resumed>, "", 639) = 0
3188 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3187 readlink("/newroot" <unfinished ...>
3185 read(6 <unfinished ...>
3180 close(6 <unfinished ...>
3176 openat(AT_FDCWD, "/newroot/dev/tty", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3174 symlink("pts/ptmx", "/newroot/dev/ptmx" <unfinished ...>
3165 <... close resumed>) = 0
3132 <... mmap resumed>) = 0x7f71ab02f000
3194 close(6 <unfinished ...>
3193 <... prctl resumed>) = -1 EINVAL (Invalid argument)
3190 <... mount resumed>) = 0
3189 close(6 <unfinished ...>
3188 <... openat resumed>) = 6
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3180 <... close resumed>) = 0
3176 <... openat resumed>) = 5
3174 <... symlink resumed>) = 0
3165 close(55 <unfinished ...>
3132 mmap(0x7f71ab033000, 311296, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 13, 0x4000 <unfinished ...>
3195 <... sendto resumed>) = 32
3194 <... close resumed>) = 0
3193 getuid( <unfinished ...>
3190 close(5 <unfinished ...>
3189 <... close resumed>) = 0
3188 read(6 <unfinished ...>
3187 readlink("/newroot/dev" <unfinished ...>
3176 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3174 newfstatat(AT_FDCWD, "/oldroot/etc/ld.so.cache" <unfinished ...>
3185 <... read resumed>, "379 439 259:3 / /oldroot rw,rela"..., 4079) = 3838
3165 <... close resumed>) = 0
3195 recvfrom(5 <unfinished ...>
3194 openat(5, "setgroups", O_RDWR|O_CLOEXEC <unfinished ...>
3193 <... getuid resumed>) = 1000
3190 <... close resumed>) = 0
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3189 close(5 <unfinished ...>
3185 read(6 <unfinished ...>
3180 close(5 <unfinished ...>
3176 <... readlink resumed>, "/newroot/dev/tty", 99) = 16
3174 <... newfstatat resumed>, {st_mode=S_IFREG|0644, st_size=162207, ...}, 0) = 0
3165 getdents64(5 <unfinished ...>
3132 <... mmap resumed>) = 0x7f71ab033000
3195 <... recvfrom resumed>, [{nlmsg_len=36, nlmsg_type=NLMSG_ERROR, nlmsg_flags=NLM_F_CAPPED, nlmsg_seq=1, nlmsg_pid=1}, {error=0, msg={nlmsg_len=32, nlmsg_type=0x10 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK, nlmsg_seq=1, nlmsg_pid=1}}], 1024, 0, NULL, NULL) = 36
3194 <... openat resumed>) = 6
3193 getgid( <unfinished ...>
3190 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3189 <... close resumed>) = 0
3188 <... read resumed>, "378 374 259:3 / /oldroot rw,rela"..., 4079) = 3572
3187 readlink("/newroot/dev/random" <unfinished ...>
3185 <... read resumed>, "", 241) = 0
3180 <... close resumed>) = 0
3176 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3174 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3165 <... getdents64 resumed>, 0x55fb83c91cd0 /* 0 entries */, 32768) = 0
3132 mmap(0x7f71ab07f000, 94208, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 13, 0x50000 <unfinished ...>
3195 getpid( <unfinished ...>
3194 write(6, "deny\n", 5 <unfinished ...>
3193 <... getgid resumed>) = 1000
3190 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=60, ...}, 0) = 0
3189 creat("/newroot/dev/zero", 0444 <unfinished ...>
3188 read(6 <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3185 close(6 <unfinished ...>
3180 creat("/newroot/dev/tty", 0444 <unfinished ...>
3176 <... openat resumed>) = 6
3174 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=80, ...}, 0) = 0
3165 close(5 <unfinished ...>
3195 <... getpid resumed>) = 1
3194 <... write resumed>) = 5
3193 geteuid( <unfinished ...>
3190 newfstatat(AT_FDCWD, "/newroot/dev" <unfinished ...>
3189 <... creat resumed>) = 5
3188 <... read resumed>, "", 507) = 0
3187 openat(AT_FDCWD, "/newroot/dev/random", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3185 <... close resumed>) = 0
3180 <... creat resumed>) = 5
3176 read(6 <unfinished ...>
3174 newfstatat(AT_FDCWD, "/newroot/etc" <unfinished ...>
3165 <... close resumed>) = 0
3132 <... mmap resumed>) = 0x7f71ab07f000
3195 close(5 <unfinished ...>
3194 close(6 <unfinished ...>
3193 <... geteuid resumed>) = 1000
3190 <... newfstatat resumed>, 0x7ffc7d26e530, 0) = -1 ENOENT (No such file or directory)
3189 close(5 <unfinished ...>
3188 close(6 <unfinished ...>
3187 <... openat resumed>) = 5
3180 close(5 <unfinished ...>
3185 close(5 <unfinished ...>
3174 <... newfstatat resumed>, 0x7ffee20f3050, 0) = -1 ENOENT (No such file or directory)
3165 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3132 mmap(0x7f71ab096000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 13, 0x66000 <unfinished ...>
3195 <... close resumed>) = 0
3194 <... close resumed>) = 0
3193 capget({version=_LINUX_CAPABILITY_VERSION_3, pid=0} <unfinished ...>
3190 mkdir("/newroot/dev", 0755 <unfinished ...>
3189 <... close resumed>) = 0
3188 <... close resumed>) = 0
3187 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3185 <... close resumed>) = 0
3180 <... close resumed>) = 0
3174 mkdir("/newroot/etc", 0700 <unfinished ...>
3165 <... prctl resumed>) = 0
3132 <... mmap resumed>) = 0x7f71ab096000
3195 openat(3, "self", O_RDONLY|O_PATH <unfinished ...>
3194 openat(5, "gid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3193 <... capget resumed>, {effective=0, permitted=0, inheritable=1<<CAP_WAKE_ALARM}) = 0
3190 <... mkdir resumed>) = 0
3189 mount("/oldroot/dev/zero", "/newroot/dev/zero", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3188 close(5 <unfinished ...>
3187 <... readlink resumed>, "/newroot/dev/random", 99) = 19
3185 creat("/newroot/dev/urandom", 0444 <unfinished ...>
3180 mount("/oldroot/dev/tty", "/newroot/dev/tty", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3176 <... read resumed>, "285 549 259:3 / /oldroot rw,rela"..., 4079) = 3975
3174 <... mkdir resumed>) = 0
3165 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x55fb83c90ca0} <unfinished ...>
3195 <... openat resumed>) = 5
3194 <... openat resumed>) = 6
3193 prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0 <unfinished ...>
3190 mount("tmpfs", "/newroot/dev", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3189 <... mount resumed>) = 0
3188 <... close resumed>) = 0
3187 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3185 <... creat resumed>) = 5
3180 <... mount resumed>) = 0
3176 read(6 <unfinished ...>
3174 newfstatat(AT_FDCWD, "/newroot/etc/ld.so.cache" <unfinished ...>
3132 close(13 <unfinished ...>
3195 openat(5, "uid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3194 write(6, "0 1000 1\n", 9 <unfinished ...>
3193 <... prctl resumed>) = 0
3189 readlink("/newroot" <unfinished ...>
3188 creat("/newroot/dev/full", 0444 <unfinished ...>
3187 <... openat resumed>) = 6
3185 close(5 <unfinished ...>
3180 readlink("/newroot" <unfinished ...>
3176 <... read resumed>, "613 437 0:6 /tty /newroot/dev/tt"..., 104) = 104
3174 <... newfstatat resumed>, 0x7ffee20f3040, 0) = -1 ENOENT (No such file or directory)
3132 <... close resumed>) = 0
3195 <... openat resumed>) = 6
3194 <... write resumed>) = 9
3193 openat(AT_FDCWD, "/proc/sys/kernel/overflowuid", O_RDONLY|O_CLOEXEC <unfinished ...>
3190 <... mount resumed>) = 0
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... creat resumed>) = 5
3187 read(6 <unfinished ...>
3185 <... close resumed>) = 0
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 read(6 <unfinished ...>
3174 creat("/newroot/etc/ld.so.cache", 0444 <unfinished ...>
3195 write(6, "0 1000 1\n", 9 <unfinished ...>
3194 close(6 <unfinished ...>
3193 <... openat resumed>) = 3
3190 creat("/newroot/dev/null", 0444 <unfinished ...>
3189 readlink("/newroot/dev" <unfinished ...>
3188 close(5 <unfinished ...>
3185 mount("/oldroot/dev/urandom", "/newroot/dev/urandom", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3180 readlink("/newroot/dev" <unfinished ...>
3176 <... read resumed>, "1939605,mode=755,inode64\n", 4080) = 25
3132 openat(AT_FDCWD, "/usr/lib/libcap.so.2", O_RDONLY|O_CLOEXEC <unfinished ...>
3195 <... write resumed>) = 9
3194 <... close resumed>) = 0
3193 brk(NULL <unfinished ...>
3190 <... creat resumed>) = 5
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... close resumed>) = 0
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 read(6 <unfinished ...>
3174 <... creat resumed>) = 5
3165 <... prctl resumed>) = 0
3132 <... openat resumed>) = 13
3195 close(6 <unfinished ...>
3194 close(5 <unfinished ...>
3193 <... brk resumed>) = 0x55a968e46000
3190 close(5 <unfinished ...>
3189 readlink("/newroot/dev/zero" <unfinished ...>
3188 mount("/oldroot/dev/full", "/newroot/dev/full", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3187 <... read resumed>, "485 564 259:3 / /oldroot rw,rela"..., 4079) = 3838
3185 <... mount resumed>) = 0
3180 readlink("/newroot/dev/tty" <unfinished ...>
3176 <... read resumed>, "", 4055) = 0
3174 close(5 <unfinished ...>
3165 wait4(-1 <unfinished ...>
3132 read(13 <unfinished ...>
3195 <... close resumed>) = 0
3194 <... close resumed>) = 0
3193 brk(0x55a968e68000 <unfinished ...>
3190 <... close resumed>) = 0
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... mount resumed>) = 0
3187 read(6 <unfinished ...>
3185 readlink("/newroot" <unfinished ...>
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 close(6 <unfinished ...>
3174 <... close resumed>) = 0
3165 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 2
3132 <... read resumed>, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@|\0\0\0\0\0\0"..., 832) = 832
3195 openat(5, "setgroups", O_RDWR|O_CLOEXEC <unfinished ...>
3194 umask(000 <unfinished ...>
3193 <... brk resumed>) = 0x55a968e68000
3190 mount("/oldroot/dev/null", "/newroot/dev/null", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3189 openat(AT_FDCWD, "/newroot/dev/zero", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3188 readlink("/newroot" <unfinished ...>
3187 <... read resumed>, "", 241) = 0
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3180 openat(AT_FDCWD, "/newroot/dev/tty", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3176 <... close resumed>) = 0
3174 mount("/oldroot/etc/ld.so.cache", "/newroot/etc/ld.so.cache", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3165 write(4, "\2\0\0\0\0\0\0\0", 8 <unfinished ...>
3132 fstat(13 <unfinished ...>
3195 <... openat resumed>) = 6
3194 <... umask resumed>) = 022
3193 read(3 <unfinished ...>
3190 <... mount resumed>) = 0
3189 <... openat resumed>) = 5
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 close(6 <unfinished ...>
3185 readlink("/newroot/dev" <unfinished ...>
3180 <... openat resumed>) = 5
3174 <... mount resumed>) = 0
3165 <... write resumed>) = 8
3158 <... poll resumed>) = 1 ([{fd=4, revents=POLLIN}])
3132 <... fstat resumed>, {st_mode=S_IFREG|0755, st_size=43064, ...}) = 0
3195 write(6, "deny\n", 5 <unfinished ...>
3194 readlink("/usr" <unfinished ...>
3193 <... read resumed>, "65534\n", 4079) = 6
3190 readlink("/newroot" <unfinished ...>
3189 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3188 readlink("/newroot/dev" <unfinished ...>
3187 <... close resumed>) = 0
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3180 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3176 close(5 <unfinished ...>
3174 readlink("/newroot" <unfinished ...>
3165 wait4(-1 <unfinished ...>
3158 read(4 <unfinished ...>
3132 mmap(NULL, 45128, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 13, 0 <unfinished ...>
3195 <... write resumed>) = 5
3194 <... readlink resumed>, 0x7ffc0c0192a0, 1023) = -1 EINVAL (Invalid argument)
3193 read(3 <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 <... readlink resumed>, "/newroot/dev/zero", 99) = 17
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 close(5 <unfinished ...>
3185 readlink("/newroot/dev/urandom" <unfinished ...>
3180 <... readlink resumed>, "/newroot/dev/tty", 99) = 16
3176 <... close resumed>) = 0
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3165 <... wait4 resumed>, 0x7fff278f8084, 0, NULL) = -1 ECHILD (No child processes)
3158 <... read resumed>, "\2\0\0\0\0\0\0\0", 8) = 8
3132 <... mmap resumed>) = 0x7f71acd03000
3195 close(6 <unfinished ...>
3194 readlink("/etc" <unfinished ...>
3193 <... read resumed>, "", 4073) = 0
3190 readlink("/newroot/dev" <unfinished ...>
3189 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3188 readlink("/newroot/dev/full" <unfinished ...>
3187 <... close resumed>) = 0
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3180 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3176 symlink("/proc/self/fd/0", "/newroot/dev/stdin" <unfinished ...>
3174 readlink("/newroot/etc" <unfinished ...>
3132 mmap(0x7f71acd06000, 20480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 13, 0x3000 <unfinished ...>
3195 <... close resumed>) = 0
3194 <... readlink resumed>, 0x7ffc0c0192a0, 1023) = -1 EINVAL (Invalid argument)
3193 close(3 <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 <... openat resumed>) = 6
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 creat("/newroot/dev/urandom", 0444 <unfinished ...>
3185 openat(AT_FDCWD, "/newroot/dev/urandom", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3180 <... openat resumed>) = 6
3176 <... symlink resumed>) = 0
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3165 exit_group(1 <unfinished ...>
3158 exit_group(1 <unfinished ...>
3195 openat(5, "gid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3194 readlink("/etc/ld.so.cache" <unfinished ...>
3193 <... close resumed>) = 0
3190 readlink("/newroot/dev/null" <unfinished ...>
3189 read(6 <unfinished ...>
3188 openat(AT_FDCWD, "/newroot/dev/full", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3187 <... creat resumed>) = 5
3185 <... openat resumed>) = 5
3180 read(6 <unfinished ...>
3176 symlink("/proc/self/fd/1", "/newroot/dev/stdout" <unfinished ...>
3174 readlink("/newroot/etc/ld.so.cache" <unfinished ...>
3165 <... exit_group resumed>) = ?
3158 <... exit_group resumed>) = ?
3132 <... mmap resumed>) = 0x7f71acd06000
3195 <... openat resumed>) = 6
3194 <... readlink resumed>, 0x7ffc0c0192a0, 1023) = -1 EINVAL (Invalid argument)
3193 openat(AT_FDCWD, "/proc/sys/kernel/overflowgid", O_RDONLY|O_CLOEXEC <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3188 <... openat resumed>) = 5
3187 close(5 <unfinished ...>
3185 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3176 <... symlink resumed>) = 0
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3132 mmap(0x7f71acd0b000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 13, 0x8000 <unfinished ...>
3195 write(6, "0 1000 1\n", 9 <unfinished ...>
3194 readlink("/nix" <unfinished ...>
3193 <... openat resumed>) = 3
3190 openat(AT_FDCWD, "/newroot/dev/null", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3189 <... read resumed>, "255 478 259:3 / /oldroot rw,rela"..., 4079) = 3571
3188 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3187 <... close resumed>) = 0
3185 <... readlink resumed>, "/newroot/dev/urandom", 99) = 20
3176 symlink("/proc/self/fd/2", "/newroot/dev/stderr" <unfinished ...>
3174 openat(AT_FDCWD, "/newroot/etc/ld.so.cache", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3195 <... write resumed>) = 9
3194 <... readlink resumed>, 0x7ffc0c0192a0, 1023) = -1 ENOENT (No such file or directory)
3193 read(3 <unfinished ...>
3190 <... openat resumed>) = 5
3189 read(6 <unfinished ...>
3188 <... readlink resumed>, "/newroot/dev/full", 99) = 17
3187 mount("/oldroot/dev/urandom", "/newroot/dev/urandom", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3185 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3180 <... read resumed>, "346 551 259:3 / /oldroot rw,rela"..., 4079) = 3975
3176 <... symlink resumed>) = 0
3132 <... mmap resumed>) = 0x7f71acd0b000
3195 close(6 <unfinished ...>
3194 readlink("/usr" <unfinished ...>
3193 <... read resumed>, "65534\n", 4079) = 6
3190 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3189 <... read resumed>, "", 508) = 0
3188 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3187 <... mount resumed>) = 0
3185 <... openat resumed>) = 6
3180 read(6 <unfinished ...>
3176 symlink("/proc/self/fd", "/newroot/dev/fd" <unfinished ...>
3174 <... openat resumed>) = 5
3158 +++ exited with 1 +++
3132 mmap(0x7f71acd0d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 13, 0x9000 <unfinished ...>
3195 <... close resumed>) = 0
3194 <... readlink resumed>, 0x7ffc0c0192a0, 1023) = -1 EINVAL (Invalid argument)
3193 read(3 <unfinished ...>
3190 <... readlink resumed>, "/newroot/dev/null", 99) = 17
3189 close(6 <unfinished ...>
3188 <... openat resumed>) = 6
3187 readlink("/newroot" <unfinished ...>
3185 read(6 <unfinished ...>
3180 <... read resumed>, "617 563 0:6 /tty /newroot/dev/tt"..., 104) = 104
3176 <... symlink resumed>) = 0
3174 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3151 <... poll resumed>) = ? ERESTART_RESTARTBLOCK (Interrupted by signal)
3132 <... mmap resumed>) = 0x7f71acd0d000
3195 close(5 <unfinished ...>
3194 readlink("/usr/bin" <unfinished ...>
3193 <... read resumed>, "", 4073) = 0
3190 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3189 <... close resumed>) = 0
3188 read(6 <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3180 read(6 <unfinished ...>
3176 symlink("/proc/kcore", "/newroot/dev/core" <unfinished ...>
3174 <... readlink resumed>, "/newroot/etc/ld.so.cache", 99) = 24
3165 +++ exited with 1 +++
3151 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=3158, si_uid=1000, si_status=1, si_utime=0, si_stime=0} ---
3195 <... close resumed>) = 0
3194 <... readlink resumed>, 0x7ffc0c0192a0, 1023) = -1 EINVAL (Invalid argument)
3193 close(3 <unfinished ...>
3190 <... openat resumed>) = 6
3187 readlink("/newroot/dev" <unfinished ...>
3185 <... read resumed>, "379 439 259:3 / /oldroot rw,rela"..., 4079) = 3975
3189 close(5 <unfinished ...>
3180 <... read resumed>, "1939605,mode=755,inode64\n", 4080) = 25
3176 <... symlink resumed>) = 0
3174 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3151 restart_syscall(<... resuming interrupted poll ...> <unfinished ...>
3132 close(13 <unfinished ...>
3195 umask(000 <unfinished ...>
3194 readlink("/usr/bin/true" <unfinished ...>
3193 <... close resumed>) = 0
3190 read(6 <unfinished ...>
3189 <... close resumed>) = 0
3188 <... read resumed>, "378 374 259:3 / /oldroot rw,rela"..., 4079) = 3703
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3185 read(6 <unfinished ...>
3180 read(6 <unfinished ...>
3176 mkdir("/newroot/dev/shm", 0755 <unfinished ...>
3174 <... openat resumed>) = 6
3151 <... restart_syscall resumed>) = 2
3132 <... close resumed>) = 0
3195 <... umask resumed>) = 022
3194 <... readlink resumed>, 0x7ffc0c0192a0, 1023) = -1 EINVAL (Invalid argument)
3193 brk(0x55a968e67000 <unfinished ...>
3189 creat("/newroot/dev/full", 0444 <unfinished ...>
3188 read(6 <unfinished ...>
3187 readlink("/newroot/dev/urandom" <unfinished ...>
3185 <... read resumed>, "", 104) = 0
3180 <... read resumed>, "", 4055) = 0
3176 <... mkdir resumed>) = 0
3174 read(6 <unfinished ...>
3151 read(59 <unfinished ...>
3195 readlink("/usr" <unfinished ...>
3194 mount(NULL, "/", NULL, MS_REC|MS_SILENT|MS_SLAVE, NULL <unfinished ...>
3193 <... brk resumed>) = 0x55a968e67000
3190 <... read resumed>, "521 603 259:3 / /oldroot rw,rela"..., 4079) = 3441
3189 <... creat resumed>) = 5
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3185 close(6 <unfinished ...>
3180 close(6 <unfinished ...>
3176 mkdir("/newroot/dev/pts", 0755 <unfinished ...>
3151 <... read resumed>, "", 32) = 0
3188 <... read resumed>, "", 376) = 0
3195 <... readlink resumed>, 0x7ffca3b43d60, 1023) = -1 EINVAL (Invalid argument)
3193 ioctl(1, TCGETS2 <unfinished ...>
3190 read(6 <unfinished ...>
3189 close(5 <unfinished ...>
3187 openat(AT_FDCWD, "/newroot/dev/urandom", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3185 <... close resumed>) = 0
3180 <... close resumed>) = 0
3176 <... mkdir resumed>) = 0
3188 close(6 <unfinished ...>
3151 ioctl(58, FIONBIO, [0] <unfinished ...>
3132 mprotect(0x7f71acd0d000, 4096, PROT_READ <unfinished ...>
3195 readlink("/etc" <unfinished ...>
3194 <... mount resumed>) = 0
3193 <... ioctl resumed>, 0x7ffec271b9d0) = -1 ENOTTY (Inappropriate ioctl for device)
3190 <... read resumed>, "", 638) = 0
3189 <... close resumed>) = 0
3188 <... close resumed>) = 0
3187 <... openat resumed>) = 5
3176 mount("devpts", "/newroot/dev/pts", "devpts", MS_NOSUID|MS_NOEXEC, "newinstance,ptmxmode=0666,mode=6"... <unfinished ...>
3174 <... read resumed>, "181 517 259:3 / /oldroot rw,rela"..., 4079) = 3975
3151 <... ioctl resumed>) = 0
3185 close(5 <unfinished ...>
3195 <... readlink resumed>, 0x7ffca3b43d60, 1023) = -1 EINVAL (Invalid argument)
3194 mount("tmpfs", "/tmp", "tmpfs", MS_NOSUID|MS_NODEV, NULL <unfinished ...>
3193 getuid( <unfinished ...>
3190 close(6 <unfinished ...>
3189 mount("/oldroot/dev/full", "/newroot/dev/full", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3188 close(5 <unfinished ...>
3187 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3185 <... close resumed>) = 0
3180 close(5 <unfinished ...>
3174 read(6 <unfinished ...>
3151 read(58 <unfinished ...>
3132 <... mprotect resumed>) = 0
3195 readlink("/etc/ld.so.cache" <unfinished ...>
3193 <... getuid resumed>) = 1000
3190 <... close resumed>) = 0
3189 <... mount resumed>) = 0
3188 <... close resumed>) = 0
3194 <... mount resumed>) = 0
3187 <... readlink resumed>, "/newroot/dev/urandom", 99) = 20
3185 creat("/newroot/dev/tty", 0444 <unfinished ...>
3180 <... close resumed>) = 0
3176 <... mount resumed>) = 0
3174 <... read resumed>, "602 552 0:6 /tty /newroot/dev/tt"..., 104) = 104
3151 <... read resumed>, "", 42) = 0
3195 <... readlink resumed>, 0x7ffca3b43d60, 1023) = -1 EINVAL (Invalid argument)
3194 getcwd( <unfinished ...>
3193 newfstatat(AT_FDCWD, "/proc/self/ns/user" <unfinished ...>
3190 close(5 <unfinished ...>
3189 readlink("/newroot" <unfinished ...>
3188 creat("/newroot/dev/random", 0444 <unfinished ...>
3187 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3185 <... creat resumed>) = 5
3180 symlink("/proc/self/fd/0", "/newroot/dev/stdin" <unfinished ...>
3176 symlink("pts/ptmx", "/newroot/dev/ptmx" <unfinished ...>
3174 read(6 <unfinished ...>
3151 close(58 <unfinished ...>
3195 readlink("/nix" <unfinished ...>
3194 <... getcwd resumed>"/home/albert", 4096) = 13
3193 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3190 <... close resumed>) = 0
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... creat resumed>) = 5
3187 <... openat resumed>) = 6
3185 close(5 <unfinished ...>
3180 <... symlink resumed>) = 0
3176 <... symlink resumed>) = 0
3174 <... read resumed>, "1939605,mode=755,inode64\n614 552"..., 4080) = 226
3151 <... close resumed>) = 0
3132 mprotect(0x7f71ab096000, 24576, PROT_READ <unfinished ...>
3195 <... readlink resumed>, 0x7ffca3b43d60, 1023) = -1 ENOENT (No such file or directory)
3194 chdir("/tmp" <unfinished ...>
3193 newfstatat(AT_FDCWD, "/sys/module/user_namespace/parameters/enable" <unfinished ...>
3190 creat("/newroot/dev/zero", 0444 <unfinished ...>
3189 readlink("/newroot/dev" <unfinished ...>
3188 close(5 <unfinished ...>
3187 read(6 <unfinished ...>
3185 <... close resumed>) = 0
3180 symlink("/proc/self/fd/1", "/newroot/dev/stdout" <unfinished ...>
3176 newfstatat(AT_FDCWD, "/oldroot/etc/ld.so.cache" <unfinished ...>
3174 read(6 <unfinished ...>
3151 close(59 <unfinished ...>
3132 <... mprotect resumed>) = 0
3195 readlink("/usr" <unfinished ...>
3194 <... chdir resumed>) = 0
3193 <... newfstatat resumed>, 0x7ffec271bb70, 0) = -1 ENOENT (No such file or directory)
3190 <... creat resumed>) = 5
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... close resumed>) = 0
3185 mount("/oldroot/dev/tty", "/newroot/dev/tty", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3180 <... symlink resumed>) = 0
3176 <... newfstatat resumed>, {st_mode=S_IFREG|0644, st_size=162207, ...}, 0) = 0
3174 <... read resumed>, "", 3854) = 0
3151 <... close resumed>) = 0
3195 <... readlink resumed>, 0x7ffca3b43d60, 1023) = -1 EINVAL (Invalid argument)
3194 mkdir("newroot", 0755 <unfinished ...>
3193 newfstatat(AT_FDCWD, "/proc/sys/user/max_user_namespaces" <unfinished ...>
3190 close(5 <unfinished ...>
3189 readlink("/newroot/dev/full" <unfinished ...>
3188 mount("/oldroot/dev/random", "/newroot/dev/random", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3187 <... read resumed>, "485 564 259:3 / /oldroot rw,rela"..., 4079) = 3975
3180 symlink("/proc/self/fd/2", "/newroot/dev/stderr" <unfinished ...>
3176 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3185 <... mount resumed>) = 0
3174 close(6 <unfinished ...>
3151 wait4(3158 <unfinished ...>
3132 prctl(PR_CAPBSET_READ, CAP_MAC_OVERRIDE <unfinished ...>
3195 readlink("/usr/bin" <unfinished ...>
3194 <... mkdir resumed>) = 0
3193 <... newfstatat resumed>, {st_mode=S_IFREG|0644, st_size=0, ...}, 0) = 0
3190 <... close resumed>) = 0
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... mount resumed>) = 0
3187 read(6 <unfinished ...>
3185 readlink("/newroot" <unfinished ...>
3180 <... symlink resumed>) = 0
3176 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=80, ...}, 0) = 0
3174 <... close resumed>) = 0
3132 <... prctl resumed>) = 1
3195 <... readlink resumed>, 0x7ffca3b43d60, 1023) = -1 EINVAL (Invalid argument)
3194 mount("newroot", "newroot", NULL, MS_MGC_VAL|MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3193 openat(AT_FDCWD, "/proc/sys/user/max_user_namespaces", O_RDONLY|O_CLOEXEC <unfinished ...>
3190 mount("/oldroot/dev/zero", "/newroot/dev/zero", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3189 openat(AT_FDCWD, "/newroot/dev/full", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3188 readlink("/newroot" <unfinished ...>
3187 <... read resumed>, "", 104) = 0
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3180 symlink("/proc/self/fd", "/newroot/dev/fd" <unfinished ...>
3176 newfstatat(AT_FDCWD, "/newroot/etc" <unfinished ...>
3151 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 3158
3132 prctl(PR_CAPBSET_READ, 0x30 /* CAP_??? */ <unfinished ...>
3195 readlink("/usr/bin/true" <unfinished ...>
3194 <... mount resumed>) = 0
3193 <... openat resumed>) = 3
3190 <... mount resumed>) = 0
3189 <... openat resumed>) = 5
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 close(6 <unfinished ...>
3185 readlink("/newroot/dev" <unfinished ...>
3180 <... symlink resumed>) = 0
3176 <... newfstatat resumed>, 0x7ffc0c104830, 0) = -1 ENOENT (No such file or directory)
3174 mount("none", "/newroot/etc/ld.so.cache", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3132 <... prctl resumed>) = -1 EINVAL (Invalid argument)
3195 <... readlink resumed>, 0x7ffca3b43d60, 1023) = -1 EINVAL (Invalid argument)
3194 mkdir("oldroot", 0755 <unfinished ...>
3193 read(3 <unfinished ...>
3190 readlink("/newroot" <unfinished ...>
3189 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3188 readlink("/newroot/dev" <unfinished ...>
3187 <... close resumed>) = 0
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3180 symlink("/proc/kcore", "/newroot/dev/core" <unfinished ...>
3176 mkdir("/newroot/etc", 0700 <unfinished ...>
3174 <... mount resumed>) = 0
3151 futex(0x7f7184002200, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3132 prctl(PR_CAPBSET_READ, CAP_CHECKPOINT_RESTORE <unfinished ...>
3195 mount(NULL, "/", NULL, MS_REC|MS_SILENT|MS_SLAVE, NULL <unfinished ...>
3194 <... mkdir resumed>) = 0
3193 <... read resumed>, "60416\n", 4079) = 6
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 <... readlink resumed>, "/newroot/dev/full", 99) = 17
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 close(5 <unfinished ...>
3185 readlink("/newroot/dev/tty" <unfinished ...>
3180 <... symlink resumed>) = 0
3176 <... mkdir resumed>) = 0
3174 close(5 <unfinished ...>
3151 <... futex resumed>) = 1
3132 <... prctl resumed>) = 1
3110 <... futex resumed>) = 0
3195 <... mount resumed>) = 0
3194 pivot_root("/tmp", "oldroot" <unfinished ...>
3193 read(3 <unfinished ...>
3190 readlink("/newroot/dev" <unfinished ...>
3189 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3188 readlink("/newroot/dev/random" <unfinished ...>
3187 <... close resumed>) = 0
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3180 mkdir("/newroot/dev/shm", 0755 <unfinished ...>
3176 newfstatat(AT_FDCWD, "/newroot/etc/ld.so.cache" <unfinished ...>
3174 <... close resumed>) = 0
3151 futex(0x7f71ad2278b0, FUTEX_WAIT_BITSET_PRIVATE, 108, {tv_sec=529, tv_nsec=353837650}, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3132 prctl(PR_CAPBSET_READ, 0x2c /* CAP_??? */ <unfinished ...>
3195 mount("tmpfs", "/tmp", "tmpfs", MS_NOSUID|MS_NODEV, NULL <unfinished ...>
3193 <... read resumed>, "", 4073) = 0
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 <... openat resumed>) = 6
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 creat("/newroot/dev/tty", 0444 <unfinished ...>
3185 openat(AT_FDCWD, "/newroot/dev/tty", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3180 <... mkdir resumed>) = 0
3176 <... newfstatat resumed>, 0x7ffc0c104820, 0) = -1 ENOENT (No such file or directory)
3174 newfstatat(AT_FDCWD, "/oldroot/nix/store" <unfinished ...>
3132 <... prctl resumed>) = -1 EINVAL (Invalid argument)
3110 close(37 <unfinished ...>
3193 close(3 <unfinished ...>
3190 readlink("/newroot/dev/zero" <unfinished ...>
3189 read(6 <unfinished ...>
3188 openat(AT_FDCWD, "/newroot/dev/random", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3187 <... creat resumed>) = 5
3185 <... openat resumed>) = 5
3180 mkdir("/newroot/dev/pts", 0755 <unfinished ...>
3176 creat("/newroot/etc/ld.so.cache", 0444 <unfinished ...>
3174 <... newfstatat resumed>, 0x7ffee20f31f0, 0) = -1 ENOENT (No such file or directory)
3132 prctl(PR_CAPBSET_READ, 0x2a /* CAP_??? */ <unfinished ...>
3110 <... close resumed>) = 0
3193 <... close resumed>) = 0
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3188 <... openat resumed>) = 5
3187 close(5 <unfinished ...>
3185 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3180 <... mkdir resumed>) = 0
3176 <... creat resumed>) = 5
3174 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3110 close(27 <unfinished ...>
3193 openat(AT_FDCWD, "/proc", O_RDONLY|O_PATH <unfinished ...>
3190 openat(AT_FDCWD, "/newroot/dev/zero", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3188 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3187 <... close resumed>) = 0
3185 <... readlink resumed>, "/newroot/dev/tty", 99) = 16
3180 mount("devpts", "/newroot/dev/pts", "devpts", MS_NOSUID|MS_NOEXEC, "newinstance,ptmxmode=0666,mode=6"... <unfinished ...>
3176 close(5 <unfinished ...>
3174 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=100, ...}, 0) = 0
3132 <... prctl resumed>) = -1 EINVAL (Invalid argument)
3193 <... openat resumed>) = 3
3190 <... openat resumed>) = 5
3188 <... readlink resumed>, "/newroot/dev/random", 99) = 19
3187 mount("/oldroot/dev/tty", "/newroot/dev/tty", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3185 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3176 <... close resumed>) = 0
3174 newfstatat(AT_FDCWD, "/newroot/tmp-home" <unfinished ...>
3132 prctl(PR_CAPBSET_READ, 0x29 /* CAP_??? */ <unfinished ...>
3110 <... close resumed>) = 0
3195 <... mount resumed>) = 0
3194 <... pivot_root resumed>) = 0
3193 eventfd2(0, EFD_CLOEXEC|EFD_NONBLOCK <unfinished ...>
3190 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3188 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3185 <... openat resumed>) = 6
3180 <... mount resumed>) = 0
3176 mount("/oldroot/etc/ld.so.cache", "/newroot/etc/ld.so.cache", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3174 <... newfstatat resumed>, 0x7ffee20f3050, 0) = -1 ENOENT (No such file or directory)
3132 <... prctl resumed>) = -1 EINVAL (Invalid argument)
3195 getcwd( <unfinished ...>
3194 chdir("/" <unfinished ...>
3193 <... eventfd2 resumed>) = 4
3190 <... readlink resumed>, "/newroot/dev/zero", 99) = 17
3188 <... openat resumed>) = 6
3185 read(6 <unfinished ...>
3180 symlink("pts/ptmx", "/newroot/dev/ptmx" <unfinished ...>
3189 <... read resumed>, "255 478 259:3 / /oldroot rw,rela"..., 4079) = 3701
3174 mkdir("/newroot/tmp-home", 0755 <unfinished ...>
3132 munmap(0x7f71ab09d000, 162207 <unfinished ...>
3110 futex(0x7f7184002200, FUTEX_WAIT_BITSET_PRIVATE, 3, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3195 <... getcwd resumed>"/home/albert", 4096) = 13
3194 <... chdir resumed>) = 0
3193 rt_sigprocmask(SIG_BLOCK, [CHLD] <unfinished ...>
3190 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3189 read(6 <unfinished ...>
3188 read(6 <unfinished ...>
3187 <... mount resumed>) = 0
3180 <... symlink resumed>) = 0
3176 <... mount resumed>) = 0
3174 <... mkdir resumed>) = 0
3195 chdir("/tmp" <unfinished ...>
3194 newfstatat(AT_FDCWD, "/oldroot/usr" <unfinished ...>
3193 <... rt_sigprocmask resumed>, NULL, 8) = 0
3190 <... openat resumed>) = 6
3189 <... read resumed>, "", 378) = 0
3187 readlink("/newroot" <unfinished ...>
3180 newfstatat(AT_FDCWD, "/oldroot/etc/ld.so.cache" <unfinished ...>
3176 readlink("/newroot" <unfinished ...>
3174 mount("tmpfs", "/newroot/tmp-home", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3132 <... munmap resumed>) = 0
3195 <... chdir resumed>) = 0
3194 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3193 wait4(-1 <unfinished ...>
3190 read(6 <unfinished ...>
3189 close(6 <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3185 <... read resumed>, "379 439 259:3 / /oldroot rw,rela"..., 4079) = 3975
3180 <... newfstatat resumed>, {st_mode=S_IFREG|0644, st_size=162207, ...}, 0) = 0
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3195 mkdir("newroot", 0755 <unfinished ...>
3194 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3193 <... wait4 resumed>, 0x7ffec271ba80, WNOHANG, NULL) = -1 ECHILD (No child processes)
3189 <... close resumed>) = 0
3188 <... read resumed>, "378 374 259:3 / /oldroot rw,rela"..., 4079) = 3838
3187 readlink("/newroot/dev" <unfinished ...>
3185 read(6 <unfinished ...>
3180 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3176 readlink("/newroot/etc" <unfinished ...>
3174 <... mount resumed>) = 0
3132 futex(0x7f71ab09ca18, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
3195 <... mkdir resumed>) = 0
3194 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=40, ...}, 0) = 0
3193 newfstatat(AT_FDCWD, "/proc/self/ns/cgroup" <unfinished ...>
3190 <... read resumed>, "521 603 259:3 / /oldroot rw,rela"..., 4079) = 3572
3189 close(5 <unfinished ...>
3188 read(6 <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3185 <... read resumed>, "279 283 0:6 /tty /newroot/dev/tt"..., 104) = 104
3180 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=80, ...}, 0) = 0
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3132 <... futex resumed>) = 0
3195 mount("newroot", "newroot", NULL, MS_MGC_VAL|MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3194 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3193 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3190 read(6 <unfinished ...>
3189 <... close resumed>) = 0
3188 <... read resumed>, "", 241) = 0
3187 readlink("/newroot/dev/tty" <unfinished ...>
3185 read(6 <unfinished ...>
3180 newfstatat(AT_FDCWD, "/newroot/etc" <unfinished ...>
3176 readlink("/newroot/etc/ld.so.cache" <unfinished ...>
3174 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=120, ...}, 0) = 0
3132 rt_sigprocmask(SIG_BLOCK, [HUP USR1 USR2 PIPE ALRM CHLD TSTP URG VTALRM PROF WINCH IO] <unfinished ...>
3195 <... mount resumed>) = 0
3194 <... newfstatat resumed>, 0x7ffc0c019470, 0) = -1 ENOENT (No such file or directory)
3193 eventfd2(0, EFD_CLOEXEC <unfinished ...>
3190 <... read resumed>, "", 507) = 0
3189 creat("/newroot/dev/random", 0444 <unfinished ...>
3188 close(6 <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3185 <... read resumed>, "1939605,mode=755,inode64\n", 4080) = 25
3180 <... newfstatat resumed>, 0x7ffc11327150, 0) = -1 ENOENT (No such file or directory)
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 newfstatat(AT_FDCWD, "/newroot/tmp-run" <unfinished ...>
3132 <... rt_sigprocmask resumed>, [], 8) = 0
3195 mkdir("oldroot", 0755 <unfinished ...>
3194 mkdir("/newroot/usr", 0755 <unfinished ...>
3193 <... eventfd2 resumed>) = 5
3190 close(6 <unfinished ...>
3189 <... creat resumed>) = 5
3188 <... close resumed>) = 0
3187 openat(AT_FDCWD, "/newroot/dev/tty", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3185 read(6 <unfinished ...>
3180 mkdir("/newroot/etc", 0700 <unfinished ...>
3176 openat(AT_FDCWD, "/newroot/etc/ld.so.cache", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3174 <... newfstatat resumed>, 0x7ffee20f3050, 0) = -1 ENOENT (No such file or directory)
3195 <... mkdir resumed>) = 0
3194 <... mkdir resumed>) = 0
3193 clone(child_stack=NULL, flags=CLONE_NEWNS|CLONE_NEWCGROUP|CLONE_NEWUTS|CLONE_NEWIPC|CLONE_NEWUSER|CLONE_NEWPID|CLONE_NEWNET|SIGCHLD <unfinished ...>
3190 <... close resumed>) = 0
3189 close(5 <unfinished ...>
3188 close(5 <unfinished ...>
3187 <... openat resumed>) = 5
3185 <... read resumed>, "", 4055) = 0
3180 <... mkdir resumed>) = 0
3176 <... openat resumed>) = 5
3174 mkdir("/newroot/tmp-run", 0755 <unfinished ...>
3132 openat(AT_FDCWD, "/run/systemd/userdb/", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY <unfinished ...>
3195 pivot_root("/tmp", "oldroot" <unfinished ...>
3194 mount("/oldroot/usr", "/newroot/usr", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3190 close(5 <unfinished ...>
3189 <... close resumed>) = 0
3188 <... close resumed>) = 0
3187 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3185 close(6 <unfinished ...>
3180 newfstatat(AT_FDCWD, "/newroot/etc/ld.so.cache" <unfinished ...>
3176 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3174 <... mkdir resumed>) = 0
3132 <... openat resumed>) = 13
3190 <... close resumed>) = 0
3189 mount("/oldroot/dev/random", "/newroot/dev/random", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3188 creat("/newroot/dev/urandom", 0444 <unfinished ...>
3187 <... readlink resumed>, "/newroot/dev/tty", 99) = 16
3185 <... close resumed>) = 0
3180 <... newfstatat resumed>, 0x7ffc11327140, 0) = -1 ENOENT (No such file or directory)
3176 <... readlink resumed>, "/newroot/etc/ld.so.cache", 99) = 24
3174 mount("tmpfs", "/newroot/tmp-run", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3132 fstat(13 <unfinished ...>
3190 creat("/newroot/dev/full", 0444 <unfinished ...>
3188 <... creat resumed>) = 5
3187 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3180 creat("/newroot/etc/ld.so.cache", 0444 <unfinished ...>
3176 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3185 close(5 <unfinished ...>
3132 <... fstat resumed>, {st_mode=S_IFDIR|0755, st_size=120, ...}) = 0
3190 <... creat resumed>) = 5
3188 close(5 <unfinished ...>
3187 <... openat resumed>) = 6
3185 <... close resumed>) = 0
3180 <... creat resumed>) = 5
3176 <... openat resumed>) = 6
3190 close(5 <unfinished ...>
3188 <... close resumed>) = 0
3187 read(6 <unfinished ...>
3185 symlink("/proc/self/fd/0", "/newroot/dev/stdin" <unfinished ...>
3180 close(5 <unfinished ...>
3176 read(6 <unfinished ...>
3132 getdents64(13 <unfinished ...>
3190 <... close resumed>) = 0
3188 mount("/oldroot/dev/urandom", "/newroot/dev/urandom", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3180 <... close resumed>) = 0
3190 mount("/oldroot/dev/full", "/newroot/dev/full", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3185 <... symlink resumed>) = 0
3132 <... getdents64 resumed>, 0x7f7130004430 /* 6 entries */, 32768) = 232
3185 symlink("/proc/self/fd/1", "/newroot/dev/stdout" <unfinished ...>
3180 mount("/oldroot/etc/ld.so.cache", "/newroot/etc/ld.so.cache", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3132 socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0 <unfinished ...>
3185 <... symlink resumed>) = 0
3195 <... pivot_root resumed>) = 0
3194 <... mount resumed>) = 0
3185 symlink("/proc/self/fd/2", "/newroot/dev/stderr" <unfinished ...>
3132 <... socket resumed>) = 15
3195 chdir("/" <unfinished ...>
3194 readlink("/newroot" <unfinished ...>
3195 <... chdir resumed>) = 0
3185 <... symlink resumed>) = 0
3132 connect(15, {sa_family=AF_UNIX, sun_path="/run/systemd/userdb/io.systemd.DropIn"}, 40 <unfinished ...>
3195 newfstatat(AT_FDCWD, "/oldroot/usr" <unfinished ...>
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3185 symlink("/proc/self/fd", "/newroot/dev/fd" <unfinished ...>
3195 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3194 readlink("/newroot/usr" <unfinished ...>
3189 <... mount resumed>) = 0
3188 <... mount resumed>) = 0
3174 <... mount resumed>) = 0
3190 <... mount resumed>) = 0
3132 <... connect resumed>) = 0
3195 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3189 readlink("/newroot" <unfinished ...>
3190 readlink("/newroot" <unfinished ...>
3188 readlink("/newroot" <unfinished ...>
3185 <... symlink resumed>) = 0
3180 <... mount resumed>) = 0
3174 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3132 rt_sigprocmask(SIG_BLOCK, ~[] <unfinished ...>
3195 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=40, ...}, 0) = 0
3194 openat(AT_FDCWD, "/newroot/usr", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3185 symlink("/proc/kcore", "/newroot/dev/core" <unfinished ...>
3180 readlink("/newroot" <unfinished ...>
3187 <... read resumed>, "485 564 259:3 / /oldroot rw,rela"..., 4079) = 3975
3176 <... read resumed>, "285 549 259:3 / /oldroot rw,rela"..., 4079) = 3975
3174 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=140, ...}, 0) = 0
3132 <... rt_sigprocmask resumed>, [HUP USR1 USR2 PIPE ALRM CHLD TSTP URG VTALRM PROF WINCH IO], 8) = 0
3195 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3194 <... openat resumed>) = 5
3190 readlink("/newroot/dev" <unfinished ...>
3189 readlink("/newroot/dev" <unfinished ...>
3188 readlink("/newroot/dev" <unfinished ...>
3187 read(6 <unfinished ...>
3185 <... symlink resumed>) = 0
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 read(6 <unfinished ...>
3174 symlink("/usr/lib", "/newroot/lib" <unfinished ...>
3132 rt_sigprocmask(SIG_SETMASK, [HUP USR1 USR2 PIPE ALRM CHLD TSTP URG VTALRM PROF WINCH IO] <unfinished ...>
3195 <... newfstatat resumed>, 0x7ffca3b43f30, 0) = -1 ENOENT (No such file or directory)
3194 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 <... read resumed>, "436 472 0:6 /tty /newroot/dev/tt"..., 104) = 104
3185 mkdir("/newroot/dev/shm", 0755 <unfinished ...>
3180 readlink("/newroot/etc" <unfinished ...>
3176 <... read resumed>, "613 437 0:6 /tty /newroot/dev/tt"..., 104) = 104
3174 <... symlink resumed>) = 0
3132 <... rt_sigprocmask resumed>, NULL, 8) = 0
3195 mkdir("/newroot/usr", 0755 <unfinished ...>
3194 <... readlink resumed>, "/newroot/usr", 99) = 12
3190 readlink("/newroot/dev/full" <unfinished ...>
3189 readlink("/newroot/dev/random" <unfinished ...>
3188 readlink("/newroot/dev/urandom" <unfinished ...>
3187 read(6 <unfinished ...>
3185 <... mkdir resumed>) = 0
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 read(6 <unfinished ...>
3174 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3132 getrandom( <unfinished ...>
3195 <... mkdir resumed>) = 0
3194 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 <... read resumed>, "1939605,mode=755,inode64\n", 4080) = 25
3185 mkdir("/newroot/dev/pts", 0755 <unfinished ...>
3180 readlink("/newroot/etc/ld.so.cache" <unfinished ...>
3176 <... read resumed>, "1939605,mode=755,inode64\n55 437 "..., 4080) = 225
3174 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=160, ...}, 0) = 0
3132 <... getrandom resumed>"\x18\x9f\x97\x3d\xe5\x9a\xbc\x25\xc0\x19\xcd\x09\x41\x13\xb8\x4b\x2c\x48\xaa\x1b\x9c\x33\x3c\x54\xda\x99\x06\xc7\x8e\x8c\x1e\xd8", 32, 0) = 32
3195 mount("/oldroot/usr", "/newroot/usr", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3194 <... openat resumed>) = 6
3190 openat(AT_FDCWD, "/newroot/dev/full", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3189 openat(AT_FDCWD, "/newroot/dev/random", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3188 openat(AT_FDCWD, "/newroot/dev/urandom", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3187 read(6 <unfinished ...>
3185 <... mkdir resumed>) = 0
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 read(6 <unfinished ...>
3174 symlink("/usr/lib", "/newroot/lib64" <unfinished ...>
3132 futex(0x7f71ab09ca50, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
3195 <... mount resumed>) = 0
3194 read(6 <unfinished ...>
3190 <... openat resumed>) = 5
3189 <... openat resumed>) = 5
3188 <... openat resumed>) = 5
3187 <... read resumed>, "", 4055) = 0
3185 mount("devpts", "/newroot/dev/pts", "devpts", MS_NOSUID|MS_NOEXEC, "newinstance,ptmxmode=0666,mode=6"... <unfinished ...>
3180 openat(AT_FDCWD, "/newroot/etc/ld.so.cache", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3176 <... read resumed>, "", 3855) = 0
3174 <... symlink resumed>) = 0
3132 <... futex resumed>) = 0
3195 readlink("/newroot" <unfinished ...>
3190 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3189 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3188 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3187 close(6 <unfinished ...>
3180 <... openat resumed>) = 5
3176 close(6 <unfinished ...>
3174 newfstatat(AT_FDCWD, "/oldroot/usr/bin/true" <unfinished ...>
3132 getpid( <unfinished ...>
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 <... read resumed>, "441 119 259:3 / /oldroot rw,rela"..., 4079) = 3192
3190 <... readlink resumed>, "/newroot/dev/full", 99) = 17
3189 <... readlink resumed>, "/newroot/dev/random", 99) = 19
3188 <... readlink resumed>, "/newroot/dev/urandom", 99) = 20
3187 <... close resumed>) = 0
3185 <... mount resumed>) = 0
3180 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3176 <... close resumed>) = 0
3174 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3132 <... getpid resumed>) = 3101
3195 readlink("/newroot/usr" <unfinished ...>
3194 read(6 <unfinished ...>
3190 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3189 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3188 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3187 close(5 <unfinished ...>
3185 symlink("pts/ptmx", "/newroot/dev/ptmx" <unfinished ...>
3180 <... readlink resumed>, "/newroot/etc/ld.so.cache", 99) = 24
3174 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3132 epoll_create1(EPOLL_CLOEXEC <unfinished ...>
3176 mount("none", "/newroot/etc/ld.so.cache", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 <... read resumed>, "", 887) = 0
3190 <... openat resumed>) = 6
3189 <... openat resumed>) = 6
3188 <... openat resumed>) = 6
3187 <... close resumed>) = 0
3185 <... symlink resumed>) = 0
3180 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3176 <... mount resumed>) = 0
3174 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=180, ...}, 0) = 0
3132 <... epoll_create1 resumed>) = 20
3197 read(5 <unfinished ...>
3195 openat(AT_FDCWD, "/newroot/usr", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3194 close(6 <unfinished ...>
3193 <... clone resumed>) = 3197
3190 read(6 <unfinished ...>
3189 read(6 <unfinished ...>
3188 read(6 <unfinished ...>
3187 symlink("/proc/self/fd/0", "/newroot/dev/stdin" <unfinished ...>
3185 newfstatat(AT_FDCWD, "/oldroot/etc/ld.so.cache" <unfinished ...>
3180 <... openat resumed>) = 6
3176 close(5 <unfinished ...>
3174 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3132 timerfd_create(CLOCK_MONOTONIC, TFD_CLOEXEC|TFD_NONBLOCK <unfinished ...>
3195 <... openat resumed>) = 5
3194 <... close resumed>) = 0
3187 <... symlink resumed>) = 0
3185 <... newfstatat resumed>, {st_mode=S_IFREG|0644, st_size=162207, ...}, 0) = 0
3180 read(6 <unfinished ...>
3193 openat(3, "3197/ns", O_RDONLY|O_PATH <unfinished ...>
3176 <... close resumed>) = 0
3174 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3132 <... timerfd_create resumed>) = 23
3195 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3190 <... read resumed>, "521 603 259:3 / /oldroot rw,rela"..., 4079) = 3703
3187 symlink("/proc/self/fd/1", "/newroot/dev/stdout" <unfinished ...>
3185 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3176 newfstatat(AT_FDCWD, "/oldroot/nix/store" <unfinished ...>
3174 newfstatat(AT_FDCWD, "/newroot/usr/bin" <unfinished ...>
3193 <... openat resumed>) = 6
3189 <... read resumed>, "255 478 259:3 / /oldroot rw,rela"..., 4079) = 3836
3188 <... read resumed>, "378 374 259:3 / /oldroot rw,rela"..., 4079) = 3975
3132 epoll_ctl(20, EPOLL_CTL_ADD, 23, {events=EPOLLIN, data=0x7f713000c610} <unfinished ...>
3194 mount("none", "/newroot/usr", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3195 <... readlink resumed>, "/newroot/usr", 99) = 12
3193 newfstatat(6, "cgroup" <unfinished ...>
3190 read(6 <unfinished ...>
3189 read(6 <unfinished ...>
3188 read(6 <unfinished ...>
3187 <... symlink resumed>) = 0
3185 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=80, ...}, 0) = 0
3180 <... read resumed>, "346 551 259:3 / /oldroot rw,rela"..., 4079) = 3975
3176 <... newfstatat resumed>, 0x7ffc0c1049d0, 0) = -1 ENOENT (No such file or directory)
3174 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=73728, ...}, 0) = 0
3194 <... mount resumed>) = 0
3132 <... epoll_ctl resumed>) = 0
3195 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3193 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3194 close(5 <unfinished ...>
3190 <... read resumed>, "", 376) = 0
3189 <... read resumed>, "", 243) = 0
3188 <... read resumed>, "", 104) = 0
3187 symlink("/proc/self/fd/2", "/newroot/dev/stderr" <unfinished ...>
3185 newfstatat(AT_FDCWD, "/newroot/etc" <unfinished ...>
3180 read(6 <unfinished ...>
3176 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3174 newfstatat(AT_FDCWD, "/newroot/usr/bin/true" <unfinished ...>
3132 epoll_ctl(20, EPOLL_CTL_ADD, 15, {events=0, data=0x7f713000ce10} <unfinished ...>
3195 <... openat resumed>) = 6
3194 <... close resumed>) = 0
3193 newfstatat(6, "ipc" <unfinished ...>
3190 close(6 <unfinished ...>
3189 close(6 <unfinished ...>
3188 close(6 <unfinished ...>
3187 <... symlink resumed>) = 0
3185 <... newfstatat resumed>, 0x7ffd8fb1e6e0, 0) = -1 ENOENT (No such file or directory)
3180 <... read resumed>, "617 563 0:6 /tty /newroot/dev/tt"..., 104) = 104
3176 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=100, ...}, 0) = 0
3174 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3132 <... epoll_ctl resumed>) = 0
3195 read(6 <unfinished ...>
3194 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3193 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3190 <... close resumed>) = 0
3189 <... close resumed>) = 0
3188 <... close resumed>) = 0
3187 symlink("/proc/self/fd", "/newroot/dev/fd" <unfinished ...>
3185 mkdir("/newroot/etc", 0700 <unfinished ...>
3180 read(6 <unfinished ...>
3176 newfstatat(AT_FDCWD, "/newroot/tmp-home" <unfinished ...>
3174 mount("/oldroot/usr/bin/true", "/newroot/usr/bin/true", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3194 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=60, ...}, 0) = 0
3193 newfstatat(6, "mnt" <unfinished ...>
3190 close(5 <unfinished ...>
3189 close(5 <unfinished ...>
3188 close(5 <unfinished ...>
3187 <... symlink resumed>) = 0
3185 <... mkdir resumed>) = 0
3180 <... read resumed>, "1939605,mode=755,inode64\n415 563"..., 4080) = 226
3176 <... newfstatat resumed>, 0x7ffc0c104830, 0) = -1 ENOENT (No such file or directory)
3132 futex(0x7f71ab09ca34, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
3195 <... read resumed>, "568 377 259:3 / /oldroot rw,rela"..., 4079) = 3192
3194 newfstatat(AT_FDCWD, "/newroot/dev" <unfinished ...>
3193 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3190 <... close resumed>) = 0
3189 <... close resumed>) = 0
3188 <... close resumed>) = 0
3187 symlink("/proc/kcore", "/newroot/dev/core" <unfinished ...>
3185 newfstatat(AT_FDCWD, "/newroot/etc/ld.so.cache" <unfinished ...>
3180 read(6 <unfinished ...>
3176 mkdir("/newroot/tmp-home", 0755 <unfinished ...>
3174 <... mount resumed>) = 0
3132 <... futex resumed>) = 0
3195 read(6 <unfinished ...>
3194 <... newfstatat resumed>, 0x7ffc0c019470, 0) = -1 ENOENT (No such file or directory)
3193 newfstatat(6, "net" <unfinished ...>
3190 creat("/newroot/dev/random", 0444 <unfinished ...>
3189 creat("/newroot/dev/urandom", 0444 <unfinished ...>
3188 creat("/newroot/dev/tty", 0444 <unfinished ...>
3187 <... symlink resumed>) = 0
3185 <... newfstatat resumed>, 0x7ffd8fb1e6d0, 0) = -1 ENOENT (No such file or directory)
3180 <... read resumed>, "", 3854) = 0
3176 <... mkdir resumed>) = 0
3174 readlink("/newroot" <unfinished ...>
3132 socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0 <unfinished ...>
3195 <... read resumed>, "", 887) = 0
3194 mkdir("/newroot/dev", 0755 <unfinished ...>
3193 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3190 <... creat resumed>) = 5
3189 <... creat resumed>) = 5
3188 <... creat resumed>) = 5
3187 mkdir("/newroot/dev/shm", 0755 <unfinished ...>
3185 creat("/newroot/etc/ld.so.cache", 0444 <unfinished ...>
3180 close(6 <unfinished ...>
3176 mount("tmpfs", "/newroot/tmp-home", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3132 <... socket resumed>) = 24
3195 close(6 <unfinished ...>
3194 <... mkdir resumed>) = 0
3193 newfstatat(6, "pid" <unfinished ...>
3190 close(5 <unfinished ...>
3189 close(5 <unfinished ...>
3188 close(5 <unfinished ...>
3187 <... mkdir resumed>) = 0
3185 <... creat resumed>) = 5
3180 <... close resumed>) = 0
3174 readlink("/newroot/usr" <unfinished ...>
3132 connect(24, {sa_family=AF_UNIX, sun_path="/run/systemd/userdb/io.systemd.DynamicUser"}, 45 <unfinished ...>
3195 <... close resumed>) = 0
3194 mount("tmpfs", "/newroot/dev", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3193 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3190 <... close resumed>) = 0
3189 <... close resumed>) = 0
3188 <... close resumed>) = 0
3187 mkdir("/newroot/dev/pts", 0755 <unfinished ...>
3185 close(5 <unfinished ...>
3176 <... mount resumed>) = 0
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3195 mount("none", "/newroot/usr", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3193 newfstatat(6, "uts" <unfinished ...>
3190 mount("/oldroot/dev/random", "/newroot/dev/random", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3189 mount("/oldroot/dev/urandom", "/newroot/dev/urandom", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3188 mount("/oldroot/dev/tty", "/newroot/dev/tty", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3187 <... mkdir resumed>) = 0
3185 <... close resumed>) = 0
3180 mount("none", "/newroot/etc/ld.so.cache", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3176 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3194 <... mount resumed>) = 0
3174 readlink("/newroot/usr/bin" <unfinished ...>
3132 <... connect resumed>) = 0
3195 <... mount resumed>) = 0
3194 creat("/newroot/dev/null", 0444 <unfinished ...>
3193 <... newfstatat resumed>, {st_mode=S_IFREG|0444, st_size=0, ...}, 0) = 0
3190 <... mount resumed>) = 0
3189 <... mount resumed>) = 0
3188 <... mount resumed>) = 0
3187 mount("devpts", "/newroot/dev/pts", "devpts", MS_NOSUID|MS_NOEXEC, "newinstance,ptmxmode=0666,mode=6"... <unfinished ...>
3185 mount("/oldroot/etc/ld.so.cache", "/newroot/etc/ld.so.cache", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3180 <... mount resumed>) = 0
3176 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=120, ...}, 0) = 0
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3132 epoll_ctl(20, EPOLL_CTL_ADD, 24, {events=0, data=0x7f713000dce0} <unfinished ...>
3195 close(5 <unfinished ...>
3194 <... creat resumed>) = 5
3193 close(6 <unfinished ...>
3190 readlink("/newroot" <unfinished ...>
3189 readlink("/newroot" <unfinished ...>
3188 readlink("/newroot" <unfinished ...>
3185 <... mount resumed>) = 0
3180 close(5 <unfinished ...>
3176 newfstatat(AT_FDCWD, "/newroot/tmp-run" <unfinished ...>
3174 readlink("/newroot/usr/bin/true" <unfinished ...>
3132 <... epoll_ctl resumed>) = 0
3195 <... close resumed>) = 0
3194 close(5 <unfinished ...>
3193 <... close resumed>) = 0
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 <... mount resumed>) = 0
3185 readlink("/newroot" <unfinished ...>
3180 <... close resumed>) = 0
3176 <... newfstatat resumed>, 0x7ffc0c104830, 0) = -1 ENOENT (No such file or directory)
3174 <... readlink resumed>, 0x7ffee20f0b70, 1023) = -1 EINVAL (Invalid argument)
3195 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3194 <... close resumed>) = 0
3193 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3190 readlink("/newroot/dev" <unfinished ...>
3189 readlink("/newroot/dev" <unfinished ...>
3188 readlink("/newroot/dev" <unfinished ...>
3187 symlink("pts/ptmx", "/newroot/dev/ptmx" <unfinished ...>
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3180 newfstatat(AT_FDCWD, "/oldroot/nix/store" <unfinished ...>
3176 mkdir("/newroot/tmp-run", 0755 <unfinished ...>
3174 openat(AT_FDCWD, "/newroot/usr/bin/true", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3132 getdents64(13 <unfinished ...>
3195 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=60, ...}, 0) = 0
3194 mount("/oldroot/dev/null", "/newroot/dev/null", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3193 <... capset resumed>) = 0
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 <... symlink resumed>) = 0
3185 readlink("/newroot/etc" <unfinished ...>
3180 <... newfstatat resumed>, 0x7ffc113272f0, 0) = -1 ENOENT (No such file or directory)
3176 <... mkdir resumed>) = 0
3174 <... openat resumed>) = 5
3132 <... getdents64 resumed>, 0x7f7130004430 /* 0 entries */, 32768) = 0
3195 newfstatat(AT_FDCWD, "/newroot/dev" <unfinished ...>
3194 <... mount resumed>) = 0
3193 prctl(PR_SET_DUMPABLE, SUID_DUMP_USER <unfinished ...>
3190 readlink("/newroot/dev/random" <unfinished ...>
3189 readlink("/newroot/dev/urandom" <unfinished ...>
3188 readlink("/newroot/dev/tty" <unfinished ...>
3187 newfstatat(AT_FDCWD, "/oldroot/etc/ld.so.cache" <unfinished ...>
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3180 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3176 mount("tmpfs", "/newroot/tmp-run", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3174 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3132 close(13 <unfinished ...>
3195 <... newfstatat resumed>, 0x7ffca3b43f30, 0) = -1 ENOENT (No such file or directory)
3194 readlink("/newroot" <unfinished ...>
3193 <... prctl resumed>) = 0
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 <... newfstatat resumed>, {st_mode=S_IFREG|0644, st_size=162207, ...}, 0) = 0
3185 readlink("/newroot/etc/ld.so.cache" <unfinished ...>
3180 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=100, ...}, 0) = 0
3132 <... close resumed>) = 0
3174 <... readlink resumed>, "/newroot/usr/bin/true", 99) = 21
3195 mkdir("/newroot/dev", 0755 <unfinished ...>
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3193 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3190 openat(AT_FDCWD, "/newroot/dev/random", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3189 openat(AT_FDCWD, "/newroot/dev/urandom", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3188 openat(AT_FDCWD, "/newroot/dev/tty", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3187 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3180 newfstatat(AT_FDCWD, "/newroot/tmp-home" <unfinished ...>
3176 <... mount resumed>) = 0
3174 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3132 epoll_ctl(20, EPOLL_CTL_MOD, 15, {events=EPOLLIN|EPOLLOUT, data=0x7f713000ce10} <unfinished ...>
3195 <... mkdir resumed>) = 0
3194 readlink("/newroot/dev" <unfinished ...>
3193 <... prctl resumed>) = 0
3190 <... openat resumed>) = 5
3189 <... openat resumed>) = 5
3188 <... openat resumed>) = 5
3187 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=80, ...}, 0) = 0
3185 openat(AT_FDCWD, "/newroot/etc/ld.so.cache", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3180 <... newfstatat resumed>, 0x7ffc11327150, 0) = -1 ENOENT (No such file or directory)
3176 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3174 <... openat resumed>) = 6
3132 <... epoll_ctl resumed>) = 0
3195 mount("tmpfs", "/newroot/dev", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3193 write(5, "\1\0\0\0\0\0\0\0", 8 <unfinished ...>
3190 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3189 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3188 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3187 newfstatat(AT_FDCWD, "/newroot/etc" <unfinished ...>
3185 <... openat resumed>) = 5
3180 mkdir("/newroot/tmp-home", 0755 <unfinished ...>
3176 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=140, ...}, 0) = 0
3174 read(6 <unfinished ...>
3132 epoll_ctl(20, EPOLL_CTL_MOD, 24, {events=EPOLLIN|EPOLLOUT, data=0x7f713000dce0} <unfinished ...>
3197 <... read resumed>, "\1\0\0\0\0\0\0\0", 8) = 8
3195 <... mount resumed>) = 0
3194 readlink("/newroot/dev/null" <unfinished ...>
3193 <... write resumed>) = 8
3190 <... readlink resumed>, "/newroot/dev/random", 99) = 19
3189 <... readlink resumed>, "/newroot/dev/urandom", 99) = 20
3188 <... readlink resumed>, "/newroot/dev/tty", 99) = 16
3187 <... newfstatat resumed>, 0x7ffc98be0c10, 0) = -1 ENOENT (No such file or directory)
3185 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3180 <... mkdir resumed>) = 0
3176 symlink("/usr/lib", "/newroot/lib" <unfinished ...>
3132 <... epoll_ctl resumed>) = 0
3197 close(5 <unfinished ...>
3195 creat("/newroot/dev/null", 0444 <unfinished ...>
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3193 close(5 <unfinished ...>
3190 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3189 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3188 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3187 mkdir("/newroot/etc", 0700 <unfinished ...>
3185 <... readlink resumed>, "/newroot/etc/ld.so.cache", 99) = 24
3180 mount("tmpfs", "/newroot/tmp-home", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3176 <... symlink resumed>) = 0
3174 <... read resumed>, "181 517 259:3 / /oldroot rw,rela"..., 4079) = 3975
3132 openat(AT_FDCWD, "/proc/sys/kernel/random/boot_id", O_RDONLY|O_NOCTTY|O_CLOEXEC <unfinished ...>
3197 <... close resumed>) = 0
3195 <... creat resumed>) = 5
3194 openat(AT_FDCWD, "/newroot/dev/null", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3193 <... close resumed>) = 0
3190 <... openat resumed>) = 6
3189 <... openat resumed>) = 6
3188 <... openat resumed>) = 6
3187 <... mkdir resumed>) = 0
3185 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3176 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3174 read(6 <unfinished ...>
3132 <... openat resumed>) = 13
3197 prctl(PR_CAPBSET_DROP, CAP_CHOWN <unfinished ...>
3195 close(5 <unfinished ...>
3194 <... openat resumed>) = 5
3193 openat(3, "self/fd", O_RDONLY|O_NOCTTY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY <unfinished ...>
3190 read(6 <unfinished ...>
3189 read(6 <unfinished ...>
3188 read(6 <unfinished ...>
3187 newfstatat(AT_FDCWD, "/newroot/etc/ld.so.cache" <unfinished ...>
3185 <... openat resumed>) = 6
3180 <... mount resumed>) = 0
3176 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=160, ...}, 0) = 0
3174 <... read resumed>, "602 552 0:6 /tty /newroot/dev/tt"..., 104) = 104
3132 read(13 <unfinished ...>
3197 <... prctl resumed>) = 0
3195 <... close resumed>) = 0
3194 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3193 <... openat resumed>) = 5
3187 <... newfstatat resumed>, 0x7ffc98be0c00, 0) = -1 ENOENT (No such file or directory)
3185 read(6 <unfinished ...>
3180 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3176 symlink("/usr/lib", "/newroot/lib64" <unfinished ...>
3174 read(6 <unfinished ...>
3132 <... read resumed>, "7f725269-769b-4f3f-891f-c3e208de"..., 38) = 37
3197 prctl(PR_CAPBSET_DROP, CAP_DAC_OVERRIDE <unfinished ...>
3195 mount("/oldroot/dev/null", "/newroot/dev/null", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3194 <... readlink resumed>, "/newroot/dev/null", 99) = 17
3193 fstat(5 <unfinished ...>
3190 <... read resumed>, "521 603 259:3 / /oldroot rw,rela"..., 4079) = 3838
3189 <... read resumed>, "255 478 259:3 / /oldroot rw,rela"..., 4079) = 3973
3188 <... read resumed>, "378 374 259:3 / /oldroot rw,rela"..., 4079) = 3975
3187 creat("/newroot/etc/ld.so.cache", 0444 <unfinished ...>
3180 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=120, ...}, 0) = 0
3176 <... symlink resumed>) = 0
3132 read(13 <unfinished ...>
3174 <... read resumed>, "1939605,mode=755,inode64\n614 552"..., 4080) = 554
3197 <... prctl resumed>) = 0
3194 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3193 <... fstat resumed>, {st_mode=S_IFDIR|0500, st_size=8, ...}) = 0
3190 read(6 <unfinished ...>
3189 read(6 <unfinished ...>
3188 read(6 <unfinished ...>
3187 <... creat resumed>) = 5
3185 <... read resumed>, "379 439 259:3 / /oldroot rw,rela"..., 4079) = 3975
3180 newfstatat(AT_FDCWD, "/newroot/tmp-run" <unfinished ...>
3176 newfstatat(AT_FDCWD, "/oldroot/usr/bin/true" <unfinished ...>
3174 read(6 <unfinished ...>
3195 <... mount resumed>) = 0
3132 <... read resumed>, "", 1) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_DAC_READ_SEARCH <unfinished ...>
3195 readlink("/newroot" <unfinished ...>
3194 <... openat resumed>) = 6
3193 fcntl(5, F_GETFL <unfinished ...>
3190 <... read resumed>, "", 241) = 0
3189 <... read resumed>, "", 106) = 0
3188 <... read resumed>, "662 604 0:6 /tty /newroot/dev/tt"..., 104) = 104
3187 close(5 <unfinished ...>
3185 read(6 <unfinished ...>
3180 <... newfstatat resumed>, 0x7ffc11327150, 0) = -1 ENOENT (No such file or directory)
3176 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3174 <... read resumed>, "", 3526) = 0
3132 close(13 <unfinished ...>
3197 <... prctl resumed>) = 0
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 read(6 <unfinished ...>
3193 <... fcntl resumed>) = 0x18800 (flags O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY)
3190 close(6 <unfinished ...>
3189 close(6 <unfinished ...>
3188 read(6 <unfinished ...>
3187 <... close resumed>) = 0
3185 <... read resumed>, "279 283 0:6 /tty /newroot/dev/tt"..., 104) = 104
3180 mkdir("/newroot/tmp-run", 0755 <unfinished ...>
3176 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3174 close(6 <unfinished ...>
3132 <... close resumed>) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_FOWNER <unfinished ...>
3195 readlink("/newroot/dev" <unfinished ...>
3193 fcntl(5, F_SETFD, FD_CLOEXEC <unfinished ...>
3190 <... close resumed>) = 0
3189 <... close resumed>) = 0
3188 <... read resumed>, "1939605,mode=755,inode64\n", 4080) = 25
3187 mount("/oldroot/etc/ld.so.cache", "/newroot/etc/ld.so.cache", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3185 read(6 <unfinished ...>
3180 <... mkdir resumed>) = 0
3176 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=180, ...}, 0) = 0
3174 <... close resumed>) = 0
3132 timerfd_settime(23, TFD_TIMER_ABSTIME, {it_interval={tv_sec=0, tv_nsec=0}, it_value={tv_sec=573, tv_nsec=863366000}} <unfinished ...>
3197 <... prctl resumed>) = 0
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 <... read resumed>, "441 119 259:3 / /oldroot rw,rela"..., 4079) = 3441
3193 <... fcntl resumed>) = 0
3190 close(5 <unfinished ...>
3189 close(5 <unfinished ...>
3188 read(6 <unfinished ...>
3187 <... mount resumed>) = 0
3185 <... read resumed>, "1939605,mode=755,inode64\n656 283"..., 4080) = 226
3180 mount("tmpfs", "/newroot/tmp-run", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3176 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3132 <... timerfd_settime resumed>, NULL) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_FSETID <unfinished ...>
3195 readlink("/newroot/dev/null" <unfinished ...>
3194 read(6 <unfinished ...>
3193 getdents64(5 <unfinished ...>
3190 <... close resumed>) = 0
3189 <... close resumed>) = 0
3188 <... read resumed>, "", 4055) = 0
3187 readlink("/newroot" <unfinished ...>
3185 read(6 <unfinished ...>
3176 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3174 mount("none", "/newroot/usr/bin/true", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3132 epoll_pwait2(20 <unfinished ...>
3197 <... prctl resumed>) = 0
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 <... read resumed>, "", 638) = 0
3193 <... getdents64 resumed>, 0x55a968e46900 /* 10 entries */, 32768) = 240
3190 creat("/newroot/dev/urandom", 0444 <unfinished ...>
3189 creat("/newroot/dev/tty", 0444 <unfinished ...>
3188 close(6 <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3185 <... read resumed>, "", 3854) = 0
3180 <... mount resumed>) = 0
3176 newfstatat(AT_FDCWD, "/newroot/usr/bin" <unfinished ...>
3174 <... mount resumed>) = 0
3132 <... epoll_pwait2 resumed>, [{events=EPOLLOUT, data=0x7f713000ce10}, {events=EPOLLOUT, data=0x7f713000dce0}], 16, {tv_sec=0, tv_nsec=0}, NULL, 8) = 2
3197 prctl(PR_CAPBSET_DROP, CAP_KILL <unfinished ...>
3195 openat(AT_FDCWD, "/newroot/dev/null", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3194 close(6 <unfinished ...>
3193 close(3 <unfinished ...>
3190 <... creat resumed>) = 5
3189 <... creat resumed>) = 5
3188 <... close resumed>) = 0
3187 readlink("/newroot/etc" <unfinished ...>
3185 close(6 <unfinished ...>
3180 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3176 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=73728, ...}, 0) = 0
3174 close(5 <unfinished ...>
3132 sendto(15, "{\"method\":\"io.systemd.UserDataba"..., 129, MSG_DONTWAIT|MSG_NOSIGNAL, NULL, 0 <unfinished ...>
3197 <... prctl resumed>) = 0
3195 <... openat resumed>) = 5
3194 <... close resumed>) = 0
3193 <... close resumed>) = 0
3190 close(5 <unfinished ...>
3189 close(5 <unfinished ...>
3188 close(5 <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3185 <... close resumed>) = 0
3180 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=140, ...}, 0) = 0
3176 newfstatat(AT_FDCWD, "/newroot/usr/bin/true" <unfinished ...>
3174 <... close resumed>) = 0
3132 <... sendto resumed>) = 129
3197 prctl(PR_CAPBSET_DROP, CAP_SETGID <unfinished ...>
3195 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3194 close(5 <unfinished ...>
3193 close(17 <unfinished ...>
3190 <... close resumed>) = 0
3189 <... close resumed>) = 0
3188 <... close resumed>) = 0
3187 readlink("/newroot/etc/ld.so.cache" <unfinished ...>
3180 symlink("/usr/lib", "/newroot/lib" <unfinished ...>
3176 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3185 mount("none", "/newroot/etc/ld.so.cache", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3174 mount("oldroot", "oldroot", NULL, MS_REC|MS_SILENT|MS_PRIVATE, NULL <unfinished ...>
3132 epoll_ctl(20, EPOLL_CTL_MOD, 15, {events=EPOLLIN, data=0x7f713000ce10} <unfinished ...>
3197 <... prctl resumed>) = 0
3195 <... readlink resumed>, "/newroot/dev/null", 99) = 17
3194 <... close resumed>) = 0
3193 <... close resumed>) = 0
3190 mount("/oldroot/dev/urandom", "/newroot/dev/urandom", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3189 mount("/oldroot/dev/tty", "/newroot/dev/tty", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3188 symlink("/proc/self/fd/0", "/newroot/dev/stdin" <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3185 <... mount resumed>) = 0
3180 <... symlink resumed>) = 0
3176 mount("/oldroot/usr/bin/true", "/newroot/usr/bin/true", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3174 <... mount resumed>) = 0
3132 <... epoll_ctl resumed>) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SETUID <unfinished ...>
3195 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3194 creat("/newroot/dev/zero", 0444 <unfinished ...>
3193 close(21 <unfinished ...>
3190 <... mount resumed>) = 0
3189 <... mount resumed>) = 0
3188 <... symlink resumed>) = 0
3187 openat(AT_FDCWD, "/newroot/etc/ld.so.cache", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3185 close(5 <unfinished ...>
3180 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3176 <... mount resumed>) = 0
3174 umount2("oldroot", MNT_DETACH <unfinished ...>
3132 epoll_pwait2(20 <unfinished ...>
3197 <... prctl resumed>) = 0
3195 <... openat resumed>) = 6
3194 <... creat resumed>) = 5
3193 <... close resumed>) = 0
3190 readlink("/newroot" <unfinished ...>
3189 readlink("/newroot" <unfinished ...>
3188 symlink("/proc/self/fd/1", "/newroot/dev/stdout" <unfinished ...>
3187 <... openat resumed>) = 5
3185 <... close resumed>) = 0
3180 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=160, ...}, 0) = 0
3176 readlink("/newroot" <unfinished ...>
3132 <... epoll_pwait2 resumed>, [{events=EPOLLOUT, data=0x7f713000dce0}], 16, {tv_sec=0, tv_nsec=0}, NULL, 8) = 1
3197 prctl(PR_CAPBSET_DROP, CAP_SETPCAP <unfinished ...>
3195 read(6 <unfinished ...>
3194 close(5 <unfinished ...>
3193 getdents64(5 <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... symlink resumed>) = 0
3187 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3185 newfstatat(AT_FDCWD, "/oldroot/nix/store" <unfinished ...>
3180 symlink("/usr/lib", "/newroot/lib64" <unfinished ...>
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 <... umount2 resumed>) = 0
3132 sendto(24, "{\"method\":\"io.systemd.UserDataba"..., 134, MSG_DONTWAIT|MSG_NOSIGNAL, NULL, 0 <unfinished ...>
3197 <... prctl resumed>) = 0
3194 <... close resumed>) = 0
3193 <... getdents64 resumed>, 0x55a968e46900 /* 0 entries */, 32768) = 0
3190 readlink("/newroot/dev" <unfinished ...>
3189 readlink("/newroot/dev" <unfinished ...>
3188 symlink("/proc/self/fd/2", "/newroot/dev/stderr" <unfinished ...>
3187 <... readlink resumed>, "/newroot/etc/ld.so.cache", 99) = 24
3185 <... newfstatat resumed>, 0x7ffd8fb1e880, 0) = -1 ENOENT (No such file or directory)
3180 <... symlink resumed>) = 0
3176 readlink("/newroot/usr" <unfinished ...>
3174 openat(AT_FDCWD, "/", O_RDONLY|O_DIRECTORY <unfinished ...>
3132 <... sendto resumed>) = 134
3197 prctl(PR_CAPBSET_DROP, CAP_LINUX_IMMUTABLE <unfinished ...>
3195 <... read resumed>, "568 377 259:3 / /oldroot rw,rela"..., 4079) = 3441
3194 mount("/oldroot/dev/zero", "/newroot/dev/zero", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3193 close(5 <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... symlink resumed>) = 0
3187 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3185 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3180 newfstatat(AT_FDCWD, "/oldroot/usr/bin/true" <unfinished ...>
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 <... openat resumed>) = 5
3132 epoll_ctl(20, EPOLL_CTL_MOD, 24, {events=EPOLLIN, data=0x7f713000dce0} <unfinished ...>
3197 <... prctl resumed>) = 0
3195 read(6 <unfinished ...>
3194 <... mount resumed>) = 0
3193 <... close resumed>) = 0
3190 readlink("/newroot/dev/urandom" <unfinished ...>
3189 readlink("/newroot/dev/tty" <unfinished ...>
3188 symlink("/proc/self/fd", "/newroot/dev/fd" <unfinished ...>
3187 <... openat resumed>) = 6
3185 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=100, ...}, 0) = 0
3180 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3176 readlink("/newroot/usr/bin" <unfinished ...>
3174 chdir("/newroot" <unfinished ...>
3132 <... epoll_ctl resumed>) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_NET_BIND_SERVICE <unfinished ...>
3195 <... read resumed>, "", 638) = 0
3194 readlink("/newroot" <unfinished ...>
3193 signalfd4(-1, [CHLD], 8, SFD_CLOEXEC|SFD_NONBLOCK <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... symlink resumed>) = 0
3187 read(6 <unfinished ...>
3185 newfstatat(AT_FDCWD, "/newroot/tmp-home" <unfinished ...>
3180 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3174 <... chdir resumed>) = 0
3132 epoll_pwait2(20 <unfinished ...>
3197 <... prctl resumed>) = 0
3195 close(6 <unfinished ...>
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3193 <... signalfd4 resumed>) = 3
3190 openat(AT_FDCWD, "/newroot/dev/urandom", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3189 openat(AT_FDCWD, "/newroot/dev/tty", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3188 symlink("/proc/kcore", "/newroot/dev/core" <unfinished ...>
3185 <... newfstatat resumed>, 0x7ffd8fb1e6e0, 0) = -1 ENOENT (No such file or directory)
3180 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=180, ...}, 0) = 0
3176 readlink("/newroot/usr/bin/true" <unfinished ...>
3174 pivot_root(".", "." <unfinished ...>
3132 <... epoll_pwait2 resumed>, [{events=EPOLLIN, data=0x7f713000dce0}, {events=EPOLLIN, data=0x7f713000ce10}], 16, {tv_sec=0, tv_nsec=0}, NULL, 8) = 2
3197 prctl(PR_CAPBSET_DROP, CAP_NET_BROADCAST <unfinished ...>
3195 <... close resumed>) = 0
3194 readlink("/newroot/dev" <unfinished ...>
3193 poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}], 2, -1 <unfinished ...>
3190 <... openat resumed>) = 5
3189 <... openat resumed>) = 5
3188 <... symlink resumed>) = 0
3187 <... read resumed>, "485 564 259:3 / /oldroot rw,rela"..., 4079) = 3975
3185 mkdir("/newroot/tmp-home", 0755 <unfinished ...>
3180 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3176 <... readlink resumed>, 0x7ffc0c102350, 1023) = -1 EINVAL (Invalid argument)
3132 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 <unfinished ...>
3197 <... prctl resumed>) = 0
3195 close(5 <unfinished ...>
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3190 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3189 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3188 mkdir("/newroot/dev/shm", 0755 <unfinished ...>
3187 read(6 <unfinished ...>
3185 <... mkdir resumed>) = 0
3180 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3176 openat(AT_FDCWD, "/newroot/usr/bin/true", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3197 prctl(PR_CAPBSET_DROP, CAP_NET_ADMIN <unfinished ...>
3195 <... close resumed>) = 0
3194 readlink("/newroot/dev/zero" <unfinished ...>
3190 <... readlink resumed>, "/newroot/dev/urandom", 99) = 20
3189 <... readlink resumed>, "/newroot/dev/tty", 99) = 16
3188 <... mkdir resumed>) = 0
3185 mount("tmpfs", "/newroot/tmp-home", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3180 newfstatat(AT_FDCWD, "/newroot/usr/bin" <unfinished ...>
3132 <... mmap resumed>) = 0x7f71ab0a4000
3176 <... openat resumed>) = 5
3197 <... prctl resumed>) = 0
3195 creat("/newroot/dev/zero", 0444 <unfinished ...>
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3190 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3189 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3188 mkdir("/newroot/dev/pts", 0755 <unfinished ...>
3180 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=73728, ...}, 0) = 0
3176 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3132 recvfrom(15 <unfinished ...>
3197 prctl(PR_CAPBSET_DROP, CAP_NET_RAW <unfinished ...>
3195 <... creat resumed>) = 5
3194 openat(AT_FDCWD, "/newroot/dev/zero", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3190 <... openat resumed>) = 6
3189 <... openat resumed>) = 6
3188 <... mkdir resumed>) = 0
3180 newfstatat(AT_FDCWD, "/newroot/usr/bin/true" <unfinished ...>
3132 <... recvfrom resumed>, "{\"error\":\"io.systemd.UserDatabas"..., 135152, MSG_DONTWAIT, NULL, NULL) = 66
3176 <... readlink resumed>, "/newroot/usr/bin/true", 99) = 21
3197 <... prctl resumed>) = 0
3195 close(5 <unfinished ...>
3194 <... openat resumed>) = 5
3190 read(6 <unfinished ...>
3189 read(6 <unfinished ...>
3188 mount("devpts", "/newroot/dev/pts", "devpts", MS_NOSUID|MS_NOEXEC, "newinstance,ptmxmode=0666,mode=6"... <unfinished ...>
3180 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3176 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3132 epoll_ctl(20, EPOLL_CTL_MOD, 15, {events=0, data=0x7f713000ce10} <unfinished ...>
3174 <... pivot_root resumed>) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_IPC_LOCK <unfinished ...>
3195 <... close resumed>) = 0
3194 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3187 <... read resumed>, "436 472 0:6 /tty /newroot/dev/tt"..., 104) = 104
3185 <... mount resumed>) = 0
3180 mount("/oldroot/usr/bin/true", "/newroot/usr/bin/true", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3176 <... openat resumed>) = 6
3132 <... epoll_ctl resumed>) = 0
3174 fchdir(5 <unfinished ...>
3197 <... prctl resumed>) = 0
3195 mount("/oldroot/dev/zero", "/newroot/dev/zero", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3194 <... readlink resumed>, "/newroot/dev/zero", 99) = 17
3187 read(6 <unfinished ...>
3185 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3190 <... read resumed>, "521 603 259:3 / /oldroot rw,rela"..., 4079) = 3975
3176 read(6 <unfinished ...>
3174 <... fchdir resumed>) = 0
3132 epoll_pwait2(20 <unfinished ...>
3197 prctl(PR_CAPBSET_DROP, CAP_IPC_OWNER <unfinished ...>
3195 <... mount resumed>) = 0
3194 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3190 read(6 <unfinished ...>
3189 <... read resumed>, "255 478 259:3 / /oldroot rw,rela"..., 4079) = 3973
3188 <... mount resumed>) = 0
3187 <... read resumed>, "1939605,mode=755,inode64\n664 472"..., 4080) = 226
3185 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=120, ...}, 0) = 0
3180 <... mount resumed>) = 0
3174 umount2(".", MNT_DETACH <unfinished ...>
3132 <... epoll_pwait2 resumed>, [{events=EPOLLIN, data=0x7f713000dce0}], 16, {tv_sec=0, tv_nsec=0}, NULL, 8) = 1
3197 <... prctl resumed>) = 0
3195 readlink("/newroot" <unfinished ...>
3194 <... openat resumed>) = 6
3190 <... read resumed>, "", 104) = 0
3189 read(6 <unfinished ...>
3188 symlink("pts/ptmx", "/newroot/dev/ptmx" <unfinished ...>
3187 read(6 <unfinished ...>
3185 newfstatat(AT_FDCWD, "/newroot/tmp-run" <unfinished ...>
3180 readlink("/newroot" <unfinished ...>
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_MODULE <unfinished ...>
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 read(6 <unfinished ...>
3190 close(6 <unfinished ...>
3189 <... read resumed>, "673 303 0:6 /tty /newroot/dev/tt"..., 106) = 106
3188 <... symlink resumed>) = 0
3187 <... read resumed>, "", 3854) = 0
3185 <... newfstatat resumed>, 0x7ffd8fb1e6e0, 0) = -1 ENOENT (No such file or directory)
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 <... read resumed>, "285 549 259:3 / /oldroot rw,rela"..., 4079) = 3975
3174 <... umount2 resumed>) = 0
3132 epoll_pwait2(20 <unfinished ...>
3197 <... prctl resumed>) = 0
3195 readlink("/newroot/dev" <unfinished ...>
3190 <... close resumed>) = 0
3189 read(6 <unfinished ...>
3188 newfstatat(AT_FDCWD, "/oldroot/etc/ld.so.cache" <unfinished ...>
3187 close(6 <unfinished ...>
3185 mkdir("/newroot/tmp-run", 0755 <unfinished ...>
3180 readlink("/newroot/usr" <unfinished ...>
3176 read(6 <unfinished ...>
3174 chdir("/" <unfinished ...>
3132 <... epoll_pwait2 resumed>, [{events=EPOLLIN, data=0x7f713000dce0}], 16, {tv_sec=0, tv_nsec=0}, NULL, 8) = 1
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_RAWIO <unfinished ...>
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 <... read resumed>, "441 119 259:3 / /oldroot rw,rela"..., 4079) = 3572
3190 close(5 <unfinished ...>
3189 <... read resumed>, "39605,mode=755,inode64\n", 4080) = 23
3188 <... newfstatat resumed>, {st_mode=S_IFREG|0644, st_size=162207, ...}, 0) = 0
3187 <... close resumed>) = 0
3185 <... mkdir resumed>) = 0
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 <... read resumed>, "613 437 0:6 /tty /newroot/dev/tt"..., 104) = 104
3174 <... chdir resumed>) = 0
3132 epoll_ctl(20, EPOLL_CTL_DEL, 15, NULL <unfinished ...>
3197 <... prctl resumed>) = 0
3195 readlink("/newroot/dev/zero" <unfinished ...>
3194 read(6 <unfinished ...>
3190 <... close resumed>) = 0
3189 read(6 <unfinished ...>
3188 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3185 mount("tmpfs", "/newroot/tmp-run", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3180 readlink("/newroot/usr/bin" <unfinished ...>
3176 read(6 <unfinished ...>
3174 close(5 <unfinished ...>
3187 mount("none", "/newroot/etc/ld.so.cache", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3132 <... epoll_ctl resumed>) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_CHROOT <unfinished ...>
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 <... read resumed>, "", 507) = 0
3190 creat("/newroot/dev/tty", 0444 <unfinished ...>
3189 <... read resumed>, "", 4057) = 0
3188 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=80, ...}, 0) = 0
3187 <... mount resumed>) = 0
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 <... read resumed>, "1939605,mode=755,inode64\n55 437 "..., 4080) = 553
3174 <... close resumed>) = 0
3132 close(15 <unfinished ...>
3197 <... prctl resumed>) = 0
3195 openat(AT_FDCWD, "/newroot/dev/zero", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3194 close(6 <unfinished ...>
3190 <... creat resumed>) = 5
3189 close(6 <unfinished ...>
3188 newfstatat(AT_FDCWD, "/newroot/etc" <unfinished ...>
3187 close(5 <unfinished ...>
3185 <... mount resumed>) = 0
3180 readlink("/newroot/usr/bin/true" <unfinished ...>
3176 read(6 <unfinished ...>
3174 unshare(CLONE_NEWUSER <unfinished ...>
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_PTRACE <unfinished ...>
3195 <... openat resumed>) = 5
3194 <... close resumed>) = 0
3190 close(5 <unfinished ...>
3189 <... close resumed>) = 0
3188 <... newfstatat resumed>, 0x7ffc3e1150c0, 0) = -1 ENOENT (No such file or directory)
3187 <... close resumed>) = 0
3185 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3180 <... readlink resumed>, 0x7ffc11324c70, 1023) = -1 EINVAL (Invalid argument)
3176 <... read resumed>, "", 3527) = 0
3132 <... close resumed>) = 0
3197 <... prctl resumed>) = 0
3195 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3194 close(5 <unfinished ...>
3190 <... close resumed>) = 0
3188 mkdir("/newroot/etc", 0700 <unfinished ...>
3189 close(5 <unfinished ...>
3187 newfstatat(AT_FDCWD, "/oldroot/nix/store" <unfinished ...>
3185 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=140, ...}, 0) = 0
3180 openat(AT_FDCWD, "/newroot/usr/bin/true", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3176 close(6 <unfinished ...>
3174 <... unshare resumed>) = 0
3132 munmap(0x7f71ab0a4000, 135168 <unfinished ...>
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_PACCT <unfinished ...>
3195 <... readlink resumed>, "/newroot/dev/zero", 99) = 17
3194 <... close resumed>) = 0
3190 mount("/oldroot/dev/tty", "/newroot/dev/tty", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3189 <... close resumed>) = 0
3188 <... mkdir resumed>) = 0
3187 <... newfstatat resumed>, 0x7ffc98be0db0, 0) = -1 ENOENT (No such file or directory)
3185 symlink("/usr/lib", "/newroot/lib" <unfinished ...>
3180 <... openat resumed>) = 5
3176 <... close resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_CHOWN <unfinished ...>
3197 <... prctl resumed>) = 0
3195 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3194 creat("/newroot/dev/full", 0444 <unfinished ...>
3190 <... mount resumed>) = 0
3189 symlink("/proc/self/fd/0", "/newroot/dev/stdin" <unfinished ...>
3188 newfstatat(AT_FDCWD, "/newroot/etc/ld.so.cache" <unfinished ...>
3187 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3185 <... symlink resumed>) = 0
3180 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3174 <... prctl resumed>) = 0
3132 <... munmap resumed>) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_ADMIN <unfinished ...>
3195 <... openat resumed>) = 6
3194 <... creat resumed>) = 5
3190 readlink("/newroot" <unfinished ...>
3189 <... symlink resumed>) = 0
3188 <... newfstatat resumed>, 0x7ffc3e1150b0, 0) = -1 ENOENT (No such file or directory)
3187 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=100, ...}, 0) = 0
3185 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3180 <... readlink resumed>, "/newroot/usr/bin/true", 99) = 21
3176 mount("none", "/newroot/usr/bin/true", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3174 prctl(PR_CAPBSET_DROP, CAP_DAC_OVERRIDE <unfinished ...>
3132 epoll_pwait2(20 <unfinished ...>
3197 <... prctl resumed>) = 0
3195 read(6 <unfinished ...>
3194 close(5 <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 symlink("/proc/self/fd/1", "/newroot/dev/stdout" <unfinished ...>
3188 creat("/newroot/etc/ld.so.cache", 0444 <unfinished ...>
3187 newfstatat(AT_FDCWD, "/newroot/tmp-home" <unfinished ...>
3185 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=160, ...}, 0) = 0
3180 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3176 <... mount resumed>) = 0
3174 <... prctl resumed>) = 0
3132 <... epoll_pwait2 resumed>, [{events=EPOLLIN, data=0x7f713000dce0}], 16, {tv_sec=0, tv_nsec=0}, NULL, 8) = 1
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT <unfinished ...>
3194 <... close resumed>) = 0
3190 readlink("/newroot/dev" <unfinished ...>
3189 <... symlink resumed>) = 0
3188 <... creat resumed>) = 5
3187 <... newfstatat resumed>, 0x7ffc98be0c10, 0) = -1 ENOENT (No such file or directory)
3185 symlink("/usr/lib", "/newroot/lib64" <unfinished ...>
3180 <... openat resumed>) = 6
3176 close(5 <unfinished ...>
3174 prctl(PR_CAPBSET_DROP, CAP_DAC_READ_SEARCH <unfinished ...>
3132 mprotect(0x7f7130021000, 53248, PROT_READ|PROT_WRITE <unfinished ...>
3197 <... prctl resumed>) = 0
3195 <... read resumed>, "568 377 259:3 / /oldroot rw,rela"..., 4079) = 3572
3194 mount("/oldroot/dev/full", "/newroot/dev/full", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 symlink("/proc/self/fd/2", "/newroot/dev/stderr" <unfinished ...>
3188 close(5 <unfinished ...>
3187 mkdir("/newroot/tmp-home", 0755 <unfinished ...>
3185 <... symlink resumed>) = 0
3180 read(6 <unfinished ...>
3176 <... close resumed>) = 0
3174 <... prctl resumed>) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_NICE <unfinished ...>
3195 read(6 <unfinished ...>
3194 <... mount resumed>) = 0
3190 readlink("/newroot/dev/tty" <unfinished ...>
3189 <... symlink resumed>) = 0
3188 <... close resumed>) = 0
3187 <... mkdir resumed>) = 0
3185 newfstatat(AT_FDCWD, "/oldroot/usr/bin/true" <unfinished ...>
3176 mount("oldroot", "oldroot", NULL, MS_REC|MS_SILENT|MS_PRIVATE, NULL <unfinished ...>
3174 prctl(PR_CAPBSET_DROP, CAP_FOWNER <unfinished ...>
3132 <... mprotect resumed>) = 0
3197 <... prctl resumed>) = 0
3195 <... read resumed>, "", 507) = 0
3194 readlink("/newroot" <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 symlink("/proc/self/fd", "/newroot/dev/fd" <unfinished ...>
3188 mount("/oldroot/etc/ld.so.cache", "/newroot/etc/ld.so.cache", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3187 mount("tmpfs", "/newroot/tmp-home", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3185 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3174 <... prctl resumed>) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_RESOURCE <unfinished ...>
3195 close(6 <unfinished ...>
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3190 openat(AT_FDCWD, "/newroot/dev/tty", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3189 <... symlink resumed>) = 0
3188 <... mount resumed>) = 0
3185 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3180 <... read resumed>, "346 551 259:3 / /oldroot rw,rela"..., 4079) = 3975
3176 <... mount resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_FSETID <unfinished ...>
3132 recvfrom(24 <unfinished ...>
3197 <... prctl resumed>) = 0
3195 <... close resumed>) = 0
3194 readlink("/newroot/dev" <unfinished ...>
3190 <... openat resumed>) = 5
3189 symlink("/proc/kcore", "/newroot/dev/core" <unfinished ...>
3188 readlink("/newroot" <unfinished ...>
3187 <... mount resumed>) = 0
3185 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=180, ...}, 0) = 0
3180 read(6 <unfinished ...>
3176 umount2("oldroot", MNT_DETACH <unfinished ...>
3174 <... prctl resumed>) = 0
3132 <... recvfrom resumed>, "{\"error\":\"io.systemd.UserDatabas"..., 131080, MSG_DONTWAIT, NULL, NULL) = 66
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_TIME <unfinished ...>
3195 close(5 <unfinished ...>
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3190 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3189 <... symlink resumed>) = 0
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3185 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3180 <... read resumed>, "617 563 0:6 /tty /newroot/dev/tt"..., 104) = 104
3174 prctl(PR_CAPBSET_DROP, CAP_KILL <unfinished ...>
3132 epoll_ctl(20, EPOLL_CTL_MOD, 24, {events=0, data=0x7f713000dce0} <unfinished ...>
3197 <... prctl resumed>) = 0
3195 <... close resumed>) = 0
3194 readlink("/newroot/dev/full" <unfinished ...>
3190 <... readlink resumed>, "/newroot/dev/tty", 99) = 16
3189 mkdir("/newroot/dev/shm", 0755 <unfinished ...>
3188 readlink("/newroot/etc" <unfinished ...>
3187 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=120, ...}, 0) = 0
3185 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3180 read(6 <unfinished ...>
3176 <... umount2 resumed>) = 0
3174 <... prctl resumed>) = 0
3132 <... epoll_ctl resumed>) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_TTY_CONFIG <unfinished ...>
3195 creat("/newroot/dev/full", 0444 <unfinished ...>
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3190 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3189 <... mkdir resumed>) = 0
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 newfstatat(AT_FDCWD, "/newroot/tmp-run" <unfinished ...>
3185 newfstatat(AT_FDCWD, "/newroot/usr/bin" <unfinished ...>
3176 openat(AT_FDCWD, "/", O_RDONLY|O_DIRECTORY <unfinished ...>
3180 <... read resumed>, "1939605,mode=755,inode64\n415 563"..., 4080) = 554
3174 prctl(PR_CAPBSET_DROP, CAP_SETGID <unfinished ...>
3132 epoll_pwait2(20 <unfinished ...>
3197 <... prctl resumed>) = 0
3195 <... creat resumed>) = 5
3194 openat(AT_FDCWD, "/newroot/dev/full", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3190 <... openat resumed>) = 6
3189 mkdir("/newroot/dev/pts", 0755 <unfinished ...>
3188 readlink("/newroot/etc/ld.so.cache" <unfinished ...>
3187 <... newfstatat resumed>, 0x7ffc98be0c10, 0) = -1 ENOENT (No such file or directory)
3185 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=73728, ...}, 0) = 0
3180 read(6 <unfinished ...>
3176 <... openat resumed>) = 5
3174 <... prctl resumed>) = 0
3132 <... epoll_pwait2 resumed>, [], 16, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_MKNOD <unfinished ...>
3195 close(5 <unfinished ...>
3194 <... openat resumed>) = 5
3190 read(6 <unfinished ...>
3189 <... mkdir resumed>) = 0
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 mkdir("/newroot/tmp-run", 0755 <unfinished ...>
3185 newfstatat(AT_FDCWD, "/newroot/usr/bin/true" <unfinished ...>
3180 <... read resumed>, "", 3526) = 0
3176 chdir("/newroot" <unfinished ...>
3174 prctl(PR_CAPBSET_DROP, CAP_SETUID <unfinished ...>
3197 <... prctl resumed>) = 0
3195 <... close resumed>) = 0
3194 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3189 mount("devpts", "/newroot/dev/pts", "devpts", MS_NOSUID|MS_NOEXEC, "newinstance,ptmxmode=0666,mode=6"... <unfinished ...>
3188 openat(AT_FDCWD, "/newroot/etc/ld.so.cache", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3187 <... mkdir resumed>) = 0
3185 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3180 close(6 <unfinished ...>
3176 <... chdir resumed>) = 0
3174 <... prctl resumed>) = 0
3132 epoll_pwait2(20 <unfinished ...>
3197 prctl(PR_CAPBSET_DROP, CAP_LEASE <unfinished ...>
3195 mount("/oldroot/dev/full", "/newroot/dev/full", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3194 <... readlink resumed>, "/newroot/dev/full", 99) = 17
3190 <... read resumed>, "521 603 259:3 / /oldroot rw,rela"..., 4079) = 3975
3188 <... openat resumed>) = 5
3187 mount("tmpfs", "/newroot/tmp-run", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3185 mount("/oldroot/usr/bin/true", "/newroot/usr/bin/true", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3180 <... close resumed>) = 0
3176 pivot_root(".", "." <unfinished ...>
3174 prctl(PR_CAPBSET_DROP, CAP_SETPCAP <unfinished ...>
3197 <... prctl resumed>) = 0
3195 <... mount resumed>) = 0
3194 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3190 read(6 <unfinished ...>
3189 <... mount resumed>) = 0
3188 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3185 <... mount resumed>) = 0
3174 <... prctl resumed>) = 0
3132 <... epoll_pwait2 resumed>, [], 16, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_AUDIT_WRITE <unfinished ...>
3195 readlink("/newroot" <unfinished ...>
3194 <... openat resumed>) = 6
3189 symlink("pts/ptmx", "/newroot/dev/ptmx" <unfinished ...>
3188 <... readlink resumed>, "/newroot/etc/ld.so.cache", 99) = 24
3185 readlink("/newroot" <unfinished ...>
3180 mount("none", "/newroot/usr/bin/true", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3174 prctl(PR_CAPBSET_DROP, CAP_LINUX_IMMUTABLE <unfinished ...>
3197 <... prctl resumed>) = 0
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 read(6 <unfinished ...>
3189 <... symlink resumed>) = 0
3188 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3132 epoll_ctl(20, EPOLL_CTL_DEL, 24, NULL <unfinished ...>
3180 <... mount resumed>) = 0
3174 <... prctl resumed>) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_AUDIT_CONTROL <unfinished ...>
3195 readlink("/newroot/dev" <unfinished ...>
3189 newfstatat(AT_FDCWD, "/oldroot/etc/ld.so.cache" <unfinished ...>
3188 <... openat resumed>) = 6
3185 readlink("/newroot/usr" <unfinished ...>
3180 close(5 <unfinished ...>
3174 prctl(PR_CAPBSET_DROP, CAP_NET_BIND_SERVICE <unfinished ...>
3132 <... epoll_ctl resumed>) = 0
3197 <... prctl resumed>) = 0
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3189 <... newfstatat resumed>, {st_mode=S_IFREG|0644, st_size=162207, ...}, 0) = 0
3188 read(6 <unfinished ...>
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3180 <... close resumed>) = 0
3174 <... prctl resumed>) = 0
3132 close(24 <unfinished ...>
3197 prctl(PR_CAPBSET_DROP, CAP_SETFCAP <unfinished ...>
3195 readlink("/newroot/dev/full" <unfinished ...>
3189 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3185 readlink("/newroot/usr/bin" <unfinished ...>
3180 mount("oldroot", "oldroot", NULL, MS_REC|MS_SILENT|MS_PRIVATE, NULL <unfinished ...>
3174 prctl(PR_CAPBSET_DROP, CAP_NET_BROADCAST <unfinished ...>
3197 <... prctl resumed>) = 0
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3189 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=80, ...}, 0) = 0
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3132 <... close resumed>) = 0
3174 <... prctl resumed>) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_MAC_OVERRIDE <unfinished ...>
3195 openat(AT_FDCWD, "/newroot/dev/full", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3189 newfstatat(AT_FDCWD, "/newroot/etc" <unfinished ...>
3187 <... mount resumed>) = 0
3185 readlink("/newroot/usr/bin/true" <unfinished ...>
3180 <... mount resumed>) = 0
3176 <... pivot_root resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_NET_ADMIN <unfinished ...>
3132 rt_sigprocmask(SIG_SETMASK, [] <unfinished ...>
3190 <... read resumed>, "187 618 0:6 /tty /newroot/dev/tt"..., 104) = 104
3197 <... prctl resumed>) = 0
3195 <... openat resumed>) = 5
3189 <... newfstatat resumed>, 0x7ffe6fe3c240, 0) = -1 ENOENT (No such file or directory)
3187 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3185 <... readlink resumed>, 0x7ffd8fb1c200, 1023) = -1 EINVAL (Invalid argument)
3180 umount2("oldroot", MNT_DETACH <unfinished ...>
3176 fchdir(5 <unfinished ...>
3174 <... prctl resumed>) = 0
3132 <... rt_sigprocmask resumed>, NULL, 8) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_MAC_ADMIN <unfinished ...>
3195 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3194 <... read resumed>, "441 119 259:3 / /oldroot rw,rela"..., 4079) = 3703
3190 read(6 <unfinished ...>
3189 mkdir("/newroot/etc", 0700 <unfinished ...>
3188 <... read resumed>, "378 374 259:3 / /oldroot rw,rela"..., 4079) = 3975
3187 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=140, ...}, 0) = 0
3185 openat(AT_FDCWD, "/newroot/usr/bin/true", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3176 <... fchdir resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_NET_RAW <unfinished ...>
3132 close(20 <unfinished ...>
3197 <... prctl resumed>) = 0
3195 <... readlink resumed>, "/newroot/dev/full", 99) = 17
3194 read(6 <unfinished ...>
3190 <... read resumed>, "1939605,mode=755,inode64\n", 4080) = 25
3189 <... mkdir resumed>) = 0
3188 read(6 <unfinished ...>
3187 symlink("/usr/lib", "/newroot/lib" <unfinished ...>
3185 <... openat resumed>) = 5
3180 <... umount2 resumed>) = 0
3176 umount2(".", MNT_DETACH <unfinished ...>
3174 <... prctl resumed>) = 0
3132 <... close resumed>) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SYSLOG <unfinished ...>
3195 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3194 <... read resumed>, "", 376) = 0
3190 read(6 <unfinished ...>
3189 newfstatat(AT_FDCWD, "/newroot/etc/ld.so.cache" <unfinished ...>
3188 <... read resumed>, "662 604 0:6 /tty /newroot/dev/tt"..., 104) = 104
3187 <... symlink resumed>) = 0
3185 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3180 openat(AT_FDCWD, "/", O_RDONLY|O_DIRECTORY <unfinished ...>
3174 prctl(PR_CAPBSET_DROP, CAP_IPC_LOCK <unfinished ...>
3132 close(23 <unfinished ...>
3176 <... umount2 resumed>) = 0
3197 <... prctl resumed>) = 0
3195 <... openat resumed>) = 6
3194 close(6 <unfinished ...>
3190 <... read resumed>, "", 4055) = 0
3189 <... newfstatat resumed>, 0x7ffe6fe3c230, 0) = -1 ENOENT (No such file or directory)
3188 read(6 <unfinished ...>
3187 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3185 <... readlink resumed>, "/newroot/usr/bin/true", 99) = 21
3180 <... openat resumed>) = 5
3176 chdir("/" <unfinished ...>
3174 <... prctl resumed>) = 0
3132 <... close resumed>) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_WAKE_ALARM <unfinished ...>
3195 read(6 <unfinished ...>
3194 <... close resumed>) = 0
3190 close(6 <unfinished ...>
3189 creat("/newroot/etc/ld.so.cache", 0444 <unfinished ...>
3188 <... read resumed>, "1939605,mode=755,inode64\n183 604"..., 4080) = 226
3187 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=160, ...}, 0) = 0
3185 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3180 chdir("/newroot" <unfinished ...>
3176 <... chdir resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_IPC_OWNER <unfinished ...>
3132 getsockopt(14, SOL_SOCKET, SO_PEERPIDFD <unfinished ...>
3197 <... prctl resumed>) = 0
3194 close(5 <unfinished ...>
3190 <... close resumed>) = 0
3189 <... creat resumed>) = 5
3188 read(6 <unfinished ...>
3187 symlink("/usr/lib", "/newroot/lib64" <unfinished ...>
3185 <... openat resumed>) = 6
3180 <... chdir resumed>) = 0
3176 close(5 <unfinished ...>
3174 <... prctl resumed>) = 0
3132 <... getsockopt resumed>, [13], [4]) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_BLOCK_SUSPEND <unfinished ...>
3195 <... read resumed>, "568 377 259:3 / /oldroot rw,rela"..., 4079) = 3703
3194 <... close resumed>) = 0
3190 close(5 <unfinished ...>
3189 close(5 <unfinished ...>
3188 <... read resumed>, "", 3854) = 0
3187 <... symlink resumed>) = 0
3185 read(6 <unfinished ...>
3180 pivot_root(".", "." <unfinished ...>
3176 <... close resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_SYS_MODULE <unfinished ...>
3197 <... prctl resumed>) = 0
3195 read(6 <unfinished ...>
3194 creat("/newroot/dev/random", 0444 <unfinished ...>
3190 <... close resumed>) = 0
3189 <... close resumed>) = 0
3188 close(6 <unfinished ...>
3187 newfstatat(AT_FDCWD, "/oldroot/usr/bin/true" <unfinished ...>
3176 unshare(CLONE_NEWUSER <unfinished ...>
3174 <... prctl resumed>) = 0
3132 futex(0x7f718c002370, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3197 prctl(PR_CAPBSET_DROP, CAP_AUDIT_READ <unfinished ...>
3194 <... creat resumed>) = 5
3190 symlink("/proc/self/fd/0", "/newroot/dev/stdin" <unfinished ...>
3189 mount("/oldroot/etc/ld.so.cache", "/newroot/etc/ld.so.cache", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3188 <... close resumed>) = 0
3187 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_SYS_RAWIO <unfinished ...>
3132 <... futex resumed>) = 1
3197 <... prctl resumed>) = 0
3194 close(5 <unfinished ...>
3190 <... symlink resumed>) = 0
3189 <... mount resumed>) = 0
3187 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3185 <... read resumed>, "379 439 259:3 / /oldroot rw,rela"..., 4079) = 3975
3176 <... unshare resumed>) = 0
3174 <... prctl resumed>) = 0
3132 futex(0x7f71ad2278b0, FUTEX_WAIT_BITSET_PRIVATE, 108, {tv_sec=529, tv_nsec=360798989}, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3107 <... futex resumed>) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_PERFMON <unfinished ...>
3194 <... close resumed>) = 0
3190 symlink("/proc/self/fd/1", "/newroot/dev/stdout" <unfinished ...>
3189 readlink("/newroot" <unfinished ...>
3188 mount("none", "/newroot/etc/ld.so.cache", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3187 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=180, ...}, 0) = 0
3185 read(6 <unfinished ...>
3176 prctl(PR_CAPBSET_DROP, CAP_CHOWN <unfinished ...>
3174 prctl(PR_CAPBSET_DROP, CAP_SYS_CHROOT <unfinished ...>
3197 <... prctl resumed>) = 0
3194 mount("/oldroot/dev/random", "/newroot/dev/random", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3190 <... symlink resumed>) = 0
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... mount resumed>) = 0
3187 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3176 <... prctl resumed>) = 0
3174 <... prctl resumed>) = 0
3107 recvmsg(14 <unfinished ...>
3197 prctl(PR_CAPBSET_DROP, CAP_BPF <unfinished ...>
3190 symlink("/proc/self/fd/2", "/newroot/dev/stderr" <unfinished ...>
3189 readlink("/newroot/etc" <unfinished ...>
3188 close(5 <unfinished ...>
3187 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_DAC_OVERRIDE <unfinished ...>
3174 prctl(PR_CAPBSET_DROP, CAP_SYS_PTRACE <unfinished ...>
3197 <... prctl resumed>) = 0
3190 <... symlink resumed>) = 0
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... close resumed>) = 0
3187 newfstatat(AT_FDCWD, "/newroot/usr/bin" <unfinished ...>
3176 <... prctl resumed>) = 0
3174 <... prctl resumed>) = 0
3107 <... recvmsg resumed>, {msg_namelen=110}, 0) = -1 EAGAIN (Resource temporarily unavailable)
3197 prctl(PR_CAPBSET_DROP, CAP_CHECKPOINT_RESTORE <unfinished ...>
3190 symlink("/proc/self/fd", "/newroot/dev/fd" <unfinished ...>
3189 readlink("/newroot/etc/ld.so.cache" <unfinished ...>
3188 newfstatat(AT_FDCWD, "/oldroot/nix/store" <unfinished ...>
3187 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=73728, ...}, 0) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_DAC_READ_SEARCH <unfinished ...>
3174 prctl(PR_CAPBSET_DROP, CAP_SYS_PACCT <unfinished ...>
3197 <... prctl resumed>) = 0
3195 <... read resumed>, "", 376) = 0
3194 <... mount resumed>) = 0
3190 <... symlink resumed>) = 0
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... newfstatat resumed>, 0x7ffc3e115260, 0) = -1 ENOENT (No such file or directory)
3187 newfstatat(AT_FDCWD, "/newroot/usr/bin/true" <unfinished ...>
3185 <... read resumed>, "279 283 0:6 /tty /newroot/dev/tt"..., 104) = 104
3180 <... pivot_root resumed>) = 0
3176 <... prctl resumed>) = 0
3174 <... prctl resumed>) = 0
3107 epoll_ctl(7, EPOLL_CTL_MOD, 14, {events=EPOLLIN|EPOLLPRI|EPOLLERR|EPOLLHUP|EPOLLONESHOT, data=0} <unfinished ...>
3197 getpid( <unfinished ...>
3195 close(6 <unfinished ...>
3194 readlink("/newroot" <unfinished ...>
3190 symlink("/proc/kcore", "/newroot/dev/core" <unfinished ...>
3189 openat(AT_FDCWD, "/newroot/etc/ld.so.cache", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3188 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3187 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3185 read(6 <unfinished ...>
3180 fchdir(5 <unfinished ...>
3176 prctl(PR_CAPBSET_DROP, CAP_FOWNER <unfinished ...>
3174 prctl(PR_CAPBSET_DROP, CAP_SYS_ADMIN <unfinished ...>
3107 <... epoll_ctl resumed>) = 0
3197 <... getpid resumed>) = 1
3195 <... close resumed>) = 0
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3190 <... symlink resumed>) = 0
3189 <... openat resumed>) = 5
3188 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=100, ...}, 0) = 0
3187 mount("/oldroot/usr/bin/true", "/newroot/usr/bin/true", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3185 <... read resumed>, "1939605,mode=755,inode64\n656 283"..., 4080) = 554
3180 <... fchdir resumed>) = 0
3176 <... prctl resumed>) = 0
3174 <... prctl resumed>) = 0
3107 futex(0x7f718c002370, FUTEX_WAIT_BITSET_PRIVATE, 7, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3197 socket(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC, 0 <unfinished ...>
3195 close(5 <unfinished ...>
3194 readlink("/newroot/dev" <unfinished ...>
3190 mkdir("/newroot/dev/shm", 0755 <unfinished ...>
3189 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3188 newfstatat(AT_FDCWD, "/newroot/tmp-home" <unfinished ...>
3187 <... mount resumed>) = 0
3185 read(6 <unfinished ...>
3180 umount2(".", MNT_DETACH <unfinished ...>
3176 prctl(PR_CAPBSET_DROP, CAP_FSETID <unfinished ...>
3174 prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT <unfinished ...>
3197 <... socket resumed>) = 5
3195 <... close resumed>) = 0
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3190 <... mkdir resumed>) = 0
3189 <... readlink resumed>, "/newroot/etc/ld.so.cache", 99) = 24
3188 <... newfstatat resumed>, 0x7ffc3e1150c0, 0) = -1 ENOENT (No such file or directory)
3187 readlink("/newroot" <unfinished ...>
3185 <... read resumed>, "", 3526) = 0
3176 <... prctl resumed>) = 0
3174 <... prctl resumed>) = 0
3197 ioctl(5, SIOCGIFINDEX, {ifr_name="lo" <unfinished ...>
3195 creat("/newroot/dev/random", 0444 <unfinished ...>
3194 readlink("/newroot/dev/random" <unfinished ...>
3190 mkdir("/newroot/dev/pts", 0755 <unfinished ...>
3189 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3188 mkdir("/newroot/tmp-home", 0755 <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3185 close(6 <unfinished ...>
3180 <... umount2 resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_KILL <unfinished ...>
3174 prctl(PR_CAPBSET_DROP, CAP_SYS_NICE <unfinished ...>
3197 <... ioctl resumed>, ifr_ifindex=1}) = 0
3195 <... creat resumed>) = 5
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3190 <... mkdir resumed>) = 0
3189 <... openat resumed>) = 6
3188 <... mkdir resumed>) = 0
3187 readlink("/newroot/usr" <unfinished ...>
3185 <... close resumed>) = 0
3180 chdir("/" <unfinished ...>
3176 <... prctl resumed>) = 0
3174 <... prctl resumed>) = 0
3197 close(5 <unfinished ...>
3195 close(5 <unfinished ...>
3194 openat(AT_FDCWD, "/newroot/dev/random", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3190 mount("devpts", "/newroot/dev/pts", "devpts", MS_NOSUID|MS_NOEXEC, "newinstance,ptmxmode=0666,mode=6"... <unfinished ...>
3189 read(6 <unfinished ...>
3188 mount("tmpfs", "/newroot/tmp-home", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3180 <... chdir resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_SETGID <unfinished ...>
3174 prctl(PR_CAPBSET_DROP, CAP_SYS_RESOURCE <unfinished ...>
3197 <... close resumed>) = 0
3195 <... close resumed>) = 0
3194 <... openat resumed>) = 5
3187 readlink("/newroot/usr/bin" <unfinished ...>
3185 mount("none", "/newroot/usr/bin/true", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3180 close(5 <unfinished ...>
3176 <... prctl resumed>) = 0
3197 socket(AF_NETLINK, SOCK_RAW|SOCK_CLOEXEC, NETLINK_ROUTE <unfinished ...>
3195 mount("/oldroot/dev/random", "/newroot/dev/random", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3194 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3185 <... mount resumed>) = 0
3180 <... close resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_SETUID <unfinished ...>
3174 <... prctl resumed>) = 0
3197 <... socket resumed>) = 5
3194 <... readlink resumed>, "/newroot/dev/random", 99) = 19
3190 <... mount resumed>) = 0
3189 <... read resumed>, "255 478 259:3 / /oldroot rw,rela"..., 4079) = 3973
3188 <... mount resumed>) = 0
3187 readlink("/newroot/usr/bin/true" <unfinished ...>
3185 close(5 <unfinished ...>
3180 unshare(CLONE_NEWUSER <unfinished ...>
3176 <... prctl resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_SYS_TIME <unfinished ...>
3195 <... mount resumed>) = 0
3197 bind(5, {sa_family=AF_NETLINK, nl_pid=1, nl_groups=00000000}, 12 <unfinished ...>
3194 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3190 symlink("pts/ptmx", "/newroot/dev/ptmx" <unfinished ...>
3189 read(6 <unfinished ...>
3188 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3195 readlink("/newroot" <unfinished ...>
3187 <... readlink resumed>, 0x7ffc98bde730, 1023) = -1 EINVAL (Invalid argument)
3185 <... close resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_SETPCAP <unfinished ...>
3174 <... prctl resumed>) = 0
3180 <... unshare resumed>) = 0
3197 <... bind resumed>) = 0
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 <... openat resumed>) = 6
3190 <... symlink resumed>) = 0
3189 <... read resumed>, "673 303 0:6 /tty /newroot/dev/tt"..., 106) = 106
3188 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=120, ...}, 0) = 0
3187 openat(AT_FDCWD, "/newroot/usr/bin/true", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3185 mount("oldroot", "oldroot", NULL, MS_REC|MS_SILENT|MS_PRIVATE, NULL <unfinished ...>
3180 prctl(PR_CAPBSET_DROP, CAP_CHOWN <unfinished ...>
3176 <... prctl resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_SYS_TTY_CONFIG <unfinished ...>
3197 getpid( <unfinished ...>
3195 readlink("/newroot/dev" <unfinished ...>
3194 read(6 <unfinished ...>
3190 newfstatat(AT_FDCWD, "/oldroot/etc/ld.so.cache" <unfinished ...>
3189 read(6 <unfinished ...>
3188 newfstatat(AT_FDCWD, "/newroot/tmp-run" <unfinished ...>
3187 <... openat resumed>) = 5
3185 <... mount resumed>) = 0
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_LINUX_IMMUTABLE <unfinished ...>
3174 <... prctl resumed>) = 0
3197 <... getpid resumed>) = 1
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3190 <... newfstatat resumed>, {st_mode=S_IFREG|0644, st_size=162207, ...}, 0) = 0
3189 <... read resumed>, "39605,mode=755,inode64\n191 303 0"..., 4080) = 224
3188 <... newfstatat resumed>, 0x7ffc3e1150c0, 0) = -1 ENOENT (No such file or directory)
3187 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3185 umount2("oldroot", MNT_DETACH <unfinished ...>
3180 prctl(PR_CAPBSET_DROP, CAP_DAC_OVERRIDE <unfinished ...>
3176 <... prctl resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_MKNOD <unfinished ...>
3197 sendto(5, [{nlmsg_len=40, nlmsg_type=0x14 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|0x600, nlmsg_seq=0, nlmsg_pid=1}, "\x02\x08\x80\xfe\x01\x00\x00\x00\x08\x00\x02\x00\x7f\x00\x00\x01\x08\x00\x01\x00\x7f\x00\x00\x01"], 40, 0, {sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, 12 <unfinished ...>
3195 readlink("/newroot/dev/random" <unfinished ...>
3194 <... read resumed>, "441 119 259:3 / /oldroot rw,rela"..., 4079) = 3838
3190 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3189 read(6 <unfinished ...>
3188 mkdir("/newroot/tmp-run", 0755 <unfinished ...>
3187 <... readlink resumed>, "/newroot/usr/bin/true", 99) = 21
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_NET_BIND_SERVICE <unfinished ...>
3174 <... prctl resumed>) = 0
3197 <... sendto resumed>) = 40
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 read(6 <unfinished ...>
3190 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=80, ...}, 0) = 0
3189 <... read resumed>, "", 3856) = 0
3188 <... mkdir resumed>) = 0
3187 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3185 <... umount2 resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_DAC_READ_SEARCH <unfinished ...>
3176 <... prctl resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_LEASE <unfinished ...>
3197 recvfrom(5 <unfinished ...>
3195 openat(AT_FDCWD, "/newroot/dev/random", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3194 <... read resumed>, "", 241) = 0
3190 newfstatat(AT_FDCWD, "/newroot/etc" <unfinished ...>
3189 close(6 <unfinished ...>
3188 mount("tmpfs", "/newroot/tmp-run", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3187 <... openat resumed>) = 6
3185 openat(AT_FDCWD, "/", O_RDONLY|O_DIRECTORY <unfinished ...>
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_NET_BROADCAST <unfinished ...>
3174 <... prctl resumed>) = 0
3197 <... recvfrom resumed>, [{nlmsg_len=36, nlmsg_type=NLMSG_ERROR, nlmsg_flags=NLM_F_CAPPED, nlmsg_seq=0, nlmsg_pid=1}, {error=0, msg={nlmsg_len=40, nlmsg_type=0x14 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK|0x600, nlmsg_seq=0, nlmsg_pid=1}}], 1024, 0, NULL, NULL) = 36
3195 <... openat resumed>) = 5
3194 close(6 <unfinished ...>
3190 <... newfstatat resumed>, 0x7ffc7d26e530, 0) = -1 ENOENT (No such file or directory)
3189 <... close resumed>) = 0
3187 read(6 <unfinished ...>
3185 <... openat resumed>) = 5
3180 prctl(PR_CAPBSET_DROP, CAP_FOWNER <unfinished ...>
3176 <... prctl resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_AUDIT_WRITE <unfinished ...>
3197 getpid( <unfinished ...>
3195 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3194 <... close resumed>) = 0
3190 mkdir("/newroot/etc", 0700 <unfinished ...>
3188 <... mount resumed>) = 0
3185 chdir("/newroot" <unfinished ...>
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_NET_ADMIN <unfinished ...>
3174 <... prctl resumed>) = 0
3197 <... getpid resumed>) = 1
3195 <... readlink resumed>, "/newroot/dev/random", 99) = 19
3194 close(5 <unfinished ...>
3190 <... mkdir resumed>) = 0
3189 mount("none", "/newroot/etc/ld.so.cache", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3188 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3185 <... chdir resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_FSETID <unfinished ...>
3176 <... prctl resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_AUDIT_CONTROL <unfinished ...>
3197 getpid( <unfinished ...>
3195 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3194 <... close resumed>) = 0
3190 newfstatat(AT_FDCWD, "/newroot/etc/ld.so.cache" <unfinished ...>
3189 <... mount resumed>) = 0
3188 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=140, ...}, 0) = 0
3187 <... read resumed>, "485 564 259:3 / /oldroot rw,rela"..., 4079) = 3975
3185 pivot_root(".", "." <unfinished ...>
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_NET_RAW <unfinished ...>
3174 <... prctl resumed>) = 0
3197 <... getpid resumed>) = 1
3195 <... openat resumed>) = 6
3194 creat("/newroot/dev/urandom", 0444 <unfinished ...>
3190 <... newfstatat resumed>, 0x7ffc7d26e520, 0) = -1 ENOENT (No such file or directory)
3189 close(5 <unfinished ...>
3188 symlink("/usr/lib", "/newroot/lib" <unfinished ...>
3187 read(6 <unfinished ...>
3180 prctl(PR_CAPBSET_DROP, CAP_KILL <unfinished ...>
3176 <... prctl resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_SETFCAP <unfinished ...>
3197 sendto(5, [{nlmsg_len=32, nlmsg_type=0x10 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK, nlmsg_seq=1, nlmsg_pid=1}, "\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00"], 32, 0, {sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, 12 <unfinished ...>
3195 read(6 <unfinished ...>
3194 <... creat resumed>) = 5
3190 creat("/newroot/etc/ld.so.cache", 0444 <unfinished ...>
3189 <... close resumed>) = 0
3188 <... symlink resumed>) = 0
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_IPC_LOCK <unfinished ...>
3174 <... prctl resumed>) = 0
3194 close(5 <unfinished ...>
3190 <... creat resumed>) = 5
3189 newfstatat(AT_FDCWD, "/oldroot/nix/store" <unfinished ...>
3188 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3180 prctl(PR_CAPBSET_DROP, CAP_SETGID <unfinished ...>
3176 <... prctl resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_MAC_OVERRIDE <unfinished ...>
3194 <... close resumed>) = 0
3190 close(5 <unfinished ...>
3189 <... newfstatat resumed>, 0x7ffe6fe3c3e0, 0) = -1 ENOENT (No such file or directory)
3188 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=160, ...}, 0) = 0
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_IPC_OWNER <unfinished ...>
3174 <... prctl resumed>) = 0
3194 mount("/oldroot/dev/urandom", "/newroot/dev/urandom", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3190 <... close resumed>) = 0
3189 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3188 symlink("/usr/lib", "/newroot/lib64" <unfinished ...>
3180 prctl(PR_CAPBSET_DROP, CAP_SETUID <unfinished ...>
3176 <... prctl resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_MAC_ADMIN <unfinished ...>
3197 <... sendto resumed>) = 32
3190 mount("/oldroot/etc/ld.so.cache", "/newroot/etc/ld.so.cache", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3189 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=100, ...}, 0) = 0
3188 <... symlink resumed>) = 0
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_SYS_MODULE <unfinished ...>
3185 <... pivot_root resumed>) = 0
3174 <... prctl resumed>) = 0
3197 recvfrom(5 <unfinished ...>
3194 <... mount resumed>) = 0
3189 newfstatat(AT_FDCWD, "/newroot/tmp-home" <unfinished ...>
3188 newfstatat(AT_FDCWD, "/oldroot/usr/bin/true" <unfinished ...>
3187 <... read resumed>, "436 472 0:6 /tty /newroot/dev/tt"..., 104) = 104
3185 fchdir(5 <unfinished ...>
3180 prctl(PR_CAPBSET_DROP, CAP_SETPCAP <unfinished ...>
3176 <... prctl resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_SYSLOG <unfinished ...>
3197 <... recvfrom resumed>, [{nlmsg_len=36, nlmsg_type=NLMSG_ERROR, nlmsg_flags=NLM_F_CAPPED, nlmsg_seq=1, nlmsg_pid=1}, {error=0, msg={nlmsg_len=32, nlmsg_type=0x10 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST|NLM_F_ACK, nlmsg_seq=1, nlmsg_pid=1}}], 1024, 0, NULL, NULL) = 36
3194 readlink("/newroot" <unfinished ...>
3189 <... newfstatat resumed>, 0x7ffe6fe3c240, 0) = -1 ENOENT (No such file or directory)
3188 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3187 read(6 <unfinished ...>
3185 <... fchdir resumed>) = 0
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_SYS_RAWIO <unfinished ...>
3174 <... prctl resumed>) = 0
3197 getpid( <unfinished ...>
3195 <... read resumed>, "568 377 259:3 / /oldroot rw,rela"..., 4079) = 3838
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3190 <... mount resumed>) = 0
3189 mkdir("/newroot/tmp-home", 0755 <unfinished ...>
3188 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3187 <... read resumed>, "1939605,mode=755,inode64\n664 472"..., 4080) = 554
3185 umount2(".", MNT_DETACH <unfinished ...>
3180 prctl(PR_CAPBSET_DROP, CAP_LINUX_IMMUTABLE <unfinished ...>
3176 <... prctl resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_WAKE_ALARM <unfinished ...>
3197 <... getpid resumed>) = 1
3195 read(6 <unfinished ...>
3194 readlink("/newroot/dev" <unfinished ...>
3190 readlink("/newroot" <unfinished ...>
3189 <... mkdir resumed>) = 0
3188 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=180, ...}, 0) = 0
3187 read(6 <unfinished ...>
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_SYS_CHROOT <unfinished ...>
3174 <... prctl resumed>) = 0
3197 close(5 <unfinished ...>
3195 <... read resumed>, "", 241) = 0
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 mount("tmpfs", "/newroot/tmp-home", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3188 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3187 <... read resumed>, "", 3526) = 0
3185 <... umount2 resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_NET_BIND_SERVICE <unfinished ...>
3176 <... prctl resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_BLOCK_SUSPEND <unfinished ...>
3197 <... close resumed>) = 0
3195 close(6 <unfinished ...>
3194 readlink("/newroot/dev/urandom" <unfinished ...>
3190 readlink("/newroot/etc" <unfinished ...>
3188 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3187 close(6 <unfinished ...>
3185 chdir("/" <unfinished ...>
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_SYS_PTRACE <unfinished ...>
3174 <... prctl resumed>) = 0
3197 openat(3, "self", O_RDONLY|O_PATH <unfinished ...>
3195 <... close resumed>) = 0
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 <... mount resumed>) = 0
3188 newfstatat(AT_FDCWD, "/newroot/usr/bin" <unfinished ...>
3187 <... close resumed>) = 0
3185 <... chdir resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_NET_BROADCAST <unfinished ...>
3176 <... prctl resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_AUDIT_READ <unfinished ...>
3197 <... openat resumed>) = 5
3195 close(5 <unfinished ...>
3194 openat(AT_FDCWD, "/newroot/dev/urandom", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3190 readlink("/newroot/etc/ld.so.cache" <unfinished ...>
3189 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3188 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=73728, ...}, 0) = 0
3185 close(5 <unfinished ...>
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_SYS_PACCT <unfinished ...>
3174 <... prctl resumed>) = 0
3197 openat(5, "uid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3195 <... close resumed>) = 0
3194 <... openat resumed>) = 5
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=120, ...}, 0) = 0
3188 newfstatat(AT_FDCWD, "/newroot/usr/bin/true" <unfinished ...>
3187 mount("none", "/newroot/usr/bin/true", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3185 <... close resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_NET_ADMIN <unfinished ...>
3176 <... prctl resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_PERFMON <unfinished ...>
3197 <... openat resumed>) = 6
3195 creat("/newroot/dev/urandom", 0444 <unfinished ...>
3194 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3190 openat(AT_FDCWD, "/newroot/etc/ld.so.cache", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3189 newfstatat(AT_FDCWD, "/newroot/tmp-run" <unfinished ...>
3188 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3187 <... mount resumed>) = 0
3185 unshare(CLONE_NEWUSER <unfinished ...>
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_SYS_ADMIN <unfinished ...>
3174 <... prctl resumed>) = 0
3197 write(6, "0 1000 1\n", 9 <unfinished ...>
3195 <... creat resumed>) = 5
3194 <... readlink resumed>, "/newroot/dev/urandom", 99) = 20
3190 <... openat resumed>) = 5
3189 <... newfstatat resumed>, 0x7ffe6fe3c240, 0) = -1 ENOENT (No such file or directory)
3188 mount("/oldroot/usr/bin/true", "/newroot/usr/bin/true", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3187 close(5 <unfinished ...>
3180 prctl(PR_CAPBSET_DROP, CAP_NET_RAW <unfinished ...>
3176 <... prctl resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_BPF <unfinished ...>
3197 <... write resumed>) = 9
3195 close(5 <unfinished ...>
3194 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3190 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3189 mkdir("/newroot/tmp-run", 0755 <unfinished ...>
3188 <... mount resumed>) = 0
3187 <... close resumed>) = 0
3185 <... unshare resumed>) = 0
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT <unfinished ...>
3174 <... prctl resumed>) = 0
3197 close(6 <unfinished ...>
3195 <... close resumed>) = 0
3194 <... openat resumed>) = 6
3190 <... readlink resumed>, "/newroot/etc/ld.so.cache", 99) = 24
3189 <... mkdir resumed>) = 0
3188 readlink("/newroot" <unfinished ...>
3187 mount("oldroot", "oldroot", NULL, MS_REC|MS_SILENT|MS_PRIVATE, NULL <unfinished ...>
3185 prctl(PR_CAPBSET_DROP, CAP_CHOWN <unfinished ...>
3180 prctl(PR_CAPBSET_DROP, CAP_IPC_LOCK <unfinished ...>
3176 <... prctl resumed>) = 0
3174 prctl(PR_CAPBSET_DROP, CAP_CHECKPOINT_RESTORE <unfinished ...>
3197 <... close resumed>) = 0
3195 mount("/oldroot/dev/urandom", "/newroot/dev/urandom", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3194 read(6 <unfinished ...>
3190 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3189 mount("tmpfs", "/newroot/tmp-run", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 <... mount resumed>) = 0
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_SYS_NICE <unfinished ...>
3174 <... prctl resumed>) = 0
3197 openat(5, "setgroups", O_RDWR|O_CLOEXEC <unfinished ...>
3195 <... mount resumed>) = 0
3190 <... openat resumed>) = 6
3188 readlink("/newroot/usr" <unfinished ...>
3187 umount2("oldroot", MNT_DETACH <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_IPC_OWNER <unfinished ...>
3176 <... prctl resumed>) = 0
3174 openat(3, "self", O_RDONLY|O_PATH <unfinished ...>
3197 <... openat resumed>) = 6
3195 readlink("/newroot" <unfinished ...>
3194 <... read resumed>, "441 119 259:3 / /oldroot rw,rela"..., 4079) = 3975
3190 read(6 <unfinished ...>
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3189 <... mount resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_DAC_OVERRIDE <unfinished ...>
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_SYS_RESOURCE <unfinished ...>
3197 write(6, "deny\n", 5 <unfinished ...>
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 read(6 <unfinished ...>
3189 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3188 readlink("/newroot/usr/bin" <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_SYS_MODULE <unfinished ...>
3176 <... prctl resumed>) = 0
3174 <... openat resumed>) = 5
3197 <... write resumed>) = 5
3195 readlink("/newroot/dev" <unfinished ...>
3194 <... read resumed>, "", 104) = 0
3189 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=140, ...}, 0) = 0
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 <... umount2 resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_DAC_READ_SEARCH <unfinished ...>
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_SYS_TIME <unfinished ...>
3174 openat(5, "uid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3197 close(6 <unfinished ...>
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 close(6 <unfinished ...>
3190 <... read resumed>, "521 603 259:3 / /oldroot rw,rela"..., 4079) = 3975
3189 symlink("/usr/lib", "/newroot/lib" <unfinished ...>
3188 readlink("/newroot/usr/bin/true" <unfinished ...>
3187 openat(AT_FDCWD, "/", O_RDONLY|O_DIRECTORY <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_SYS_RAWIO <unfinished ...>
3176 <... prctl resumed>) = 0
3174 <... openat resumed>) = 6
3197 <... close resumed>) = 0
3195 readlink("/newroot/dev/urandom" <unfinished ...>
3194 <... close resumed>) = 0
3190 read(6 <unfinished ...>
3189 <... symlink resumed>) = 0
3188 <... readlink resumed>, 0x7ffc3e112be0, 1023) = -1 EINVAL (Invalid argument)
3187 <... openat resumed>) = 5
3185 prctl(PR_CAPBSET_DROP, CAP_FOWNER <unfinished ...>
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_SYS_TTY_CONFIG <unfinished ...>
3174 write(6, "1000 0 1\n", 9 <unfinished ...>
3197 openat(5, "gid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 close(5 <unfinished ...>
3190 <... read resumed>, "187 618 0:6 /tty /newroot/dev/tt"..., 104) = 104
3189 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3188 openat(AT_FDCWD, "/newroot/usr/bin/true", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3187 chdir("/newroot" <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_SYS_CHROOT <unfinished ...>
3176 <... prctl resumed>) = 0
3174 <... write resumed>) = 9
3197 <... openat resumed>) = 6
3195 openat(AT_FDCWD, "/newroot/dev/urandom", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3194 <... close resumed>) = 0
3190 read(6 <unfinished ...>
3189 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=160, ...}, 0) = 0
3188 <... openat resumed>) = 5
3187 <... chdir resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_FSETID <unfinished ...>
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_MKNOD <unfinished ...>
3174 close(6 <unfinished ...>
3197 write(6, "0 1000 1\n", 9 <unfinished ...>
3195 <... openat resumed>) = 5
3194 creat("/newroot/dev/tty", 0444 <unfinished ...>
3190 <... read resumed>, "1939605,mode=755,inode64\n198 618"..., 4080) = 226
3189 symlink("/usr/lib", "/newroot/lib64" <unfinished ...>
3188 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3187 pivot_root(".", "." <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_SYS_PTRACE <unfinished ...>
3176 <... prctl resumed>) = 0
3174 <... close resumed>) = 0
3197 <... write resumed>) = 9
3195 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3194 <... creat resumed>) = 5
3190 read(6 <unfinished ...>
3189 <... symlink resumed>) = 0
3188 <... readlink resumed>, "/newroot/usr/bin/true", 99) = 21
3185 prctl(PR_CAPBSET_DROP, CAP_KILL <unfinished ...>
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_LEASE <unfinished ...>
3174 openat(5, "gid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3197 close(6 <unfinished ...>
3195 <... readlink resumed>, "/newroot/dev/urandom", 99) = 20
3194 close(5 <unfinished ...>
3189 newfstatat(AT_FDCWD, "/oldroot/usr/bin/true" <unfinished ...>
3188 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_SYS_PACCT <unfinished ...>
3176 <... prctl resumed>) = 0
3197 <... close resumed>) = 0
3195 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3194 <... close resumed>) = 0
3189 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3188 <... openat resumed>) = 6
3185 prctl(PR_CAPBSET_DROP, CAP_SETGID <unfinished ...>
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_AUDIT_WRITE <unfinished ...>
3174 <... openat resumed>) = 6
3197 close(5 <unfinished ...>
3195 <... openat resumed>) = 6
3194 mount("/oldroot/dev/tty", "/newroot/dev/tty", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3189 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3188 read(6 <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_SYS_ADMIN <unfinished ...>
3176 <... prctl resumed>) = 0
3174 write(6, "1000 0 1\n", 9 <unfinished ...>
3197 <... close resumed>) = 0
3195 read(6 <unfinished ...>
3189 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=180, ...}, 0) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_SETUID <unfinished ...>
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_AUDIT_CONTROL <unfinished ...>
3174 <... write resumed>) = 9
3197 umask(000 <unfinished ...>
3189 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT <unfinished ...>
3176 <... prctl resumed>) = 0
3174 close(6 <unfinished ...>
3197 <... umask resumed>) = 022
3189 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_SETPCAP <unfinished ...>
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_SETFCAP <unfinished ...>
3174 <... close resumed>) = 0
3197 readlink("/usr" <unfinished ...>
3194 <... mount resumed>) = 0
3190 <... read resumed>, "", 3854) = 0
3189 newfstatat(AT_FDCWD, "/newroot/usr/bin" <unfinished ...>
3187 <... pivot_root resumed>) = 0
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_SYS_NICE <unfinished ...>
3176 <... prctl resumed>) = 0
3174 close(5 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3194 readlink("/newroot" <unfinished ...>
3190 close(6 <unfinished ...>
3189 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=73728, ...}, 0) = 0
3187 fchdir(5 <unfinished ...>
3185 prctl(PR_CAPBSET_DROP, CAP_LINUX_IMMUTABLE <unfinished ...>
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_MAC_OVERRIDE <unfinished ...>
3174 <... close resumed>) = 0
3197 readlink("/etc" <unfinished ...>
3195 <... read resumed>, "568 377 259:3 / /oldroot rw,rela"..., 4079) = 3975
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3190 <... close resumed>) = 0
3189 newfstatat(AT_FDCWD, "/newroot/usr/bin/true" <unfinished ...>
3188 <... read resumed>, "378 374 259:3 / /oldroot rw,rela"..., 4079) = 3975
3187 <... fchdir resumed>) = 0
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_SYS_RESOURCE <unfinished ...>
3176 <... prctl resumed>) = 0
3174 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 read(6 <unfinished ...>
3194 readlink("/newroot/dev" <unfinished ...>
3190 mount("none", "/newroot/etc/ld.so.cache", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3189 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3188 read(6 <unfinished ...>
3187 umount2(".", MNT_DETACH <unfinished ...>
3185 prctl(PR_CAPBSET_DROP, CAP_NET_BIND_SERVICE <unfinished ...>
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_MAC_ADMIN <unfinished ...>
3174 <... capset resumed>) = 0
3197 readlink("/etc/ld.so.cache" <unfinished ...>
3195 <... read resumed>, "", 104) = 0
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3190 <... mount resumed>) = 0
3189 mount("/oldroot/usr/bin/true", "/newroot/usr/bin/true", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3188 <... read resumed>, "662 604 0:6 /tty /newroot/dev/tt"..., 104) = 104
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_SYS_TIME <unfinished ...>
3176 <... prctl resumed>) = 0
3174 prctl(PR_SET_DUMPABLE, SUID_DUMP_USER <unfinished ...>
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 close(6 <unfinished ...>
3194 readlink("/newroot/dev/tty" <unfinished ...>
3190 close(5 <unfinished ...>
3189 <... mount resumed>) = 0
3188 read(6 <unfinished ...>
3187 <... umount2 resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_NET_BROADCAST <unfinished ...>
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_SYSLOG <unfinished ...>
3174 <... prctl resumed>) = 0
3197 readlink("/nix" <unfinished ...>
3195 <... close resumed>) = 0
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3190 <... close resumed>) = 0
3189 readlink("/newroot" <unfinished ...>
3188 <... read resumed>, "1939605,mode=755,inode64\n183 604"..., 4080) = 554
3187 chdir("/" <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_SYS_TTY_CONFIG <unfinished ...>
3176 <... prctl resumed>) = 0
3174 read(55 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 ENOENT (No such file or directory)
3195 close(5 <unfinished ...>
3194 openat(AT_FDCWD, "/newroot/dev/tty", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3190 newfstatat(AT_FDCWD, "/oldroot/nix/store" <unfinished ...>
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 read(6 <unfinished ...>
3187 <... chdir resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_NET_ADMIN <unfinished ...>
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_WAKE_ALARM <unfinished ...>
3174 <... read resumed>, " \0\0\0\4\0\0\0\25\0\0f>\0\0\300 \0\0\0\0\0\0\0005\0\0\1\0\0\0@"..., 4079) = 840
3197 readlink("/etc" <unfinished ...>
3195 <... close resumed>) = 0
3194 <... openat resumed>) = 5
3190 <... newfstatat resumed>, 0x7ffc7d26e6d0, 0) = -1 ENOENT (No such file or directory)
3189 readlink("/newroot/usr" <unfinished ...>
3187 close(5 <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_MKNOD <unfinished ...>
3176 <... prctl resumed>) = 0
3174 read(55 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 creat("/newroot/dev/tty", 0444 <unfinished ...>
3194 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3190 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... read resumed>, "", 3526) = 0
3187 <... close resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_NET_RAW <unfinished ...>
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_BLOCK_SUSPEND <unfinished ...>
3174 <... read resumed>, "", 3239) = 0
3197 readlink("/etc/fonts" <unfinished ...>
3195 <... creat resumed>) = 5
3194 <... readlink resumed>, "/newroot/dev/tty", 99) = 16
3190 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=100, ...}, 0) = 0
3189 readlink("/newroot/usr/bin" <unfinished ...>
3188 close(6 <unfinished ...>
3187 unshare(CLONE_NEWUSER <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_LEASE <unfinished ...>
3176 <... prctl resumed>) = 0
3174 close(55 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 close(5 <unfinished ...>
3194 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3190 newfstatat(AT_FDCWD, "/newroot/tmp-home" <unfinished ...>
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 <... close resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_IPC_LOCK <unfinished ...>
3180 <... prctl resumed>) = 0
3187 <... unshare resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_AUDIT_READ <unfinished ...>
3174 <... close resumed>) = 0
3197 readlink("/etc/fonts/conf.d" <unfinished ...>
3195 <... close resumed>) = 0
3194 <... openat resumed>) = 6
3190 <... newfstatat resumed>, 0x7ffc7d26e530, 0) = -1 ENOENT (No such file or directory)
3189 readlink("/newroot/usr/bin/true" <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_CHOWN <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_AUDIT_WRITE <unfinished ...>
3176 <... prctl resumed>) = 0
3174 umask(022 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 mount("/oldroot/dev/tty", "/newroot/dev/tty", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3194 read(6 <unfinished ...>
3190 mkdir("/newroot/tmp-home", 0755 <unfinished ...>
3189 <... readlink resumed>, 0x7ffe6fe39d60, 1023) = -1 EINVAL (Invalid argument)
3188 mount("none", "/newroot/usr/bin/true", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_IPC_OWNER <unfinished ...>
3180 <... prctl resumed>) = 0
3176 prctl(PR_CAPBSET_DROP, CAP_PERFMON <unfinished ...>
3174 <... umask resumed>) = 000
3197 readlink("/etc" <unfinished ...>
3195 <... mount resumed>) = 0
3190 <... mkdir resumed>) = 0
3189 openat(AT_FDCWD, "/newroot/usr/bin/true", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3188 <... mount resumed>) = 0
3187 prctl(PR_CAPBSET_DROP, CAP_DAC_OVERRIDE <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_AUDIT_CONTROL <unfinished ...>
3176 <... prctl resumed>) = 0
3174 chdir("/" <unfinished ...>
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 readlink("/newroot" <unfinished ...>
3190 mount("tmpfs", "/newroot/tmp-home", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3189 <... openat resumed>) = 5
3188 close(5 <unfinished ...>
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_SYS_MODULE <unfinished ...>
3180 <... prctl resumed>) = 0
3194 <... read resumed>, "441 119 259:3 / /oldroot rw,rela"..., 4079) = 3975
3176 prctl(PR_CAPBSET_DROP, CAP_BPF <unfinished ...>
3174 <... chdir resumed>) = 0
3197 readlink("/etc/fonts" <unfinished ...>
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 read(6 <unfinished ...>
3189 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3188 <... close resumed>) = 0
3187 prctl(PR_CAPBSET_DROP, CAP_DAC_READ_SEARCH <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_SETFCAP <unfinished ...>
3176 <... prctl resumed>) = 0
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 readlink("/newroot/dev" <unfinished ...>
3194 <... read resumed>, "287 659 0:6 /tty /newroot/dev/tt"..., 104) = 104
3190 <... mount resumed>) = 0
3189 <... readlink resumed>, "/newroot/usr/bin/true", 99) = 21
3188 mount("oldroot", "oldroot", NULL, MS_REC|MS_SILENT|MS_PRIVATE, NULL <unfinished ...>
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_SYS_RAWIO <unfinished ...>
3180 <... prctl resumed>) = 0
3174 rt_sigprocmask(SIG_BLOCK, ~[] <unfinished ...>
3176 prctl(PR_CAPBSET_DROP, CAP_CHECKPOINT_RESTORE <unfinished ...>
3197 readlink("/etc/fonts/fonts.conf" <unfinished ...>
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 read(6 <unfinished ...>
3190 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3189 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3188 <... mount resumed>) = 0
3187 prctl(PR_CAPBSET_DROP, CAP_FOWNER <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_MAC_OVERRIDE <unfinished ...>
3174 <... rt_sigprocmask resumed>, [CHLD], 8) = 0
3176 <... prctl resumed>) = 0
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 readlink("/newroot/dev/tty" <unfinished ...>
3194 <... read resumed>, "1939605,mode=755,inode64\n", 4080) = 25
3190 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=120, ...}, 0) = 0
3189 <... openat resumed>) = 6
3188 umount2("oldroot", MNT_DETACH <unfinished ...>
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_SYS_CHROOT <unfinished ...>
3180 <... prctl resumed>) = 0
3174 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD <unfinished ...>
3197 readlink("/home" <unfinished ...>
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 read(6 <unfinished ...>
3190 newfstatat(AT_FDCWD, "/newroot/tmp-run" <unfinished ...>
3189 read(6 <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_FSETID <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_MAC_ADMIN <unfinished ...>
3176 openat(3, "self", O_RDONLY|O_PATH <unfinished ...>
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 openat(AT_FDCWD, "/newroot/dev/tty", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3194 <... read resumed>, "", 4055) = 0
3190 <... newfstatat resumed>, 0x7ffc7d26e530, 0) = -1 ENOENT (No such file or directory)
3188 <... umount2 resumed>) = 0
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_SYS_PTRACE <unfinished ...>
3180 <... prctl resumed>) = 0
3197 readlink("/home/albert" <unfinished ...>
3195 <... openat resumed>) = 5
3194 close(6 <unfinished ...>
3190 mkdir("/newroot/tmp-run", 0755 <unfinished ...>
3188 openat(AT_FDCWD, "/", O_RDONLY|O_DIRECTORY <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_KILL <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_SYSLOG <unfinished ...>
3176 <... openat resumed>) = 5
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3194 <... close resumed>) = 0
3190 <... mkdir resumed>) = 0
3189 <... read resumed>, "255 478 259:3 / /oldroot rw,rela"..., 4079) = 3973
3188 <... openat resumed>) = 5
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_SYS_PACCT <unfinished ...>
3180 <... prctl resumed>) = 0
3197 readlink("/home/albert/.cache" <unfinished ...>
3195 <... readlink resumed>, "/newroot/dev/tty", 99) = 16
3194 close(5 <unfinished ...>
3190 mount("tmpfs", "/newroot/tmp-run", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3189 read(6 <unfinished ...>
3188 chdir("/newroot" <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_SETGID <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_WAKE_ALARM <unfinished ...>
3176 openat(5, "uid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3198 set_robust_list(0x7f8fc7727a20, 24 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3194 <... close resumed>) = 0
3189 <... read resumed>, "673 303 0:6 /tty /newroot/dev/tt"..., 106) = 106
3188 <... chdir resumed>) = 0
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_SYS_ADMIN <unfinished ...>
3180 <... prctl resumed>) = 0
3174 <... clone resumed>, child_tidptr=0x7f8fc7727a10) = 2
3198 <... set_robust_list resumed>) = 0
3197 readlink("/home/albert/.cache/fontconfig" <unfinished ...>
3195 <... openat resumed>) = 6
3194 symlink("/proc/self/fd/0", "/newroot/dev/stdin" <unfinished ...>
3190 <... mount resumed>) = 0
3189 read(6 <unfinished ...>
3188 pivot_root(".", "." <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_SETUID <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_BLOCK_SUSPEND <unfinished ...>
3176 <... openat resumed>) = 6
3198 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 read(6 <unfinished ...>
3194 <... symlink resumed>) = 0
3190 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3189 <... read resumed>, "39605,mode=755,inode64\n191 303 0"..., 4080) = 552
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT <unfinished ...>
3180 <... prctl resumed>) = 0
3174 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3176 write(6, "1000 0 1\n", 9 <unfinished ...>
3198 <... rt_sigprocmask resumed>, NULL, 8) = 0
3197 readlink("/home" <unfinished ...>
3194 symlink("/proc/self/fd/1", "/newroot/dev/stdout" <unfinished ...>
3190 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=140, ...}, 0) = 0
3189 read(6 <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_SETPCAP <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_AUDIT_READ <unfinished ...>
3174 <... rt_sigprocmask resumed>, NULL, 8) = 0
3198 close(3 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3194 <... symlink resumed>) = 0
3190 symlink("/usr/lib", "/newroot/lib" <unfinished ...>
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_SYS_NICE <unfinished ...>
3180 <... prctl resumed>) = 0
3176 <... write resumed>) = 9
3174 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3198 <... close resumed>) = 0
3197 readlink("/home/albert" <unfinished ...>
3194 symlink("/proc/self/fd/2", "/newroot/dev/stderr" <unfinished ...>
3190 <... symlink resumed>) = 0
3187 prctl(PR_CAPBSET_DROP, CAP_LINUX_IMMUTABLE <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_PERFMON <unfinished ...>
3176 close(6 <unfinished ...>
3174 <... capset resumed>) = 0
3198 rt_sigprocmask(SIG_UNBLOCK, [CHLD] <unfinished ...>
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3194 <... symlink resumed>) = 0
3190 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_SYS_RESOURCE <unfinished ...>
3180 <... prctl resumed>) = 0
3176 <... close resumed>) = 0
3174 openat(3, "self/fd", O_RDONLY|O_NOCTTY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY <unfinished ...>
3198 <... rt_sigprocmask resumed>, NULL, 8) = 0
3197 readlink("/home/albert/.local" <unfinished ...>
3194 symlink("/proc/self/fd", "/newroot/dev/fd" <unfinished ...>
3190 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=160, ...}, 0) = 0
3187 prctl(PR_CAPBSET_DROP, CAP_NET_BIND_SERVICE <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_BPF <unfinished ...>
3176 openat(5, "gid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3198 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3194 <... symlink resumed>) = 0
3190 symlink("/usr/lib", "/newroot/lib64" <unfinished ...>
3189 <... read resumed>, "", 3528) = 0
3188 <... pivot_root resumed>) = 0
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_SYS_TIME <unfinished ...>
3180 <... prctl resumed>) = 0
3174 <... openat resumed>) = 5
3198 <... prctl resumed>) = 0
3197 readlink("/home/albert/.local/share" <unfinished ...>
3194 symlink("/proc/kcore", "/newroot/dev/core" <unfinished ...>
3190 <... symlink resumed>) = 0
3189 close(6 <unfinished ...>
3188 fchdir(5 <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_NET_BROADCAST <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_CAPBSET_DROP, CAP_CHECKPOINT_RESTORE <unfinished ...>
3176 <... openat resumed>) = 6
3174 fstat(5 <unfinished ...>
3198 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x563a89f50eb0} <unfinished ...>
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 <... read resumed>, "568 377 259:3 / /oldroot rw,rela"..., 4079) = 3975
3194 <... symlink resumed>) = 0
3190 newfstatat(AT_FDCWD, "/oldroot/usr/bin/true" <unfinished ...>
3189 <... close resumed>) = 0
3188 <... fchdir resumed>) = 0
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_SYS_TTY_CONFIG <unfinished ...>
3180 <... prctl resumed>) = 0
3176 write(6, "1000 0 1\n", 9 <unfinished ...>
3174 <... fstat resumed>, {st_mode=S_IFDIR|0500, st_size=16, ...}) = 0
3197 readlink("/home/albert/.local/share/fonts" <unfinished ...>
3195 read(6 <unfinished ...>
3194 mkdir("/newroot/dev/shm", 0755 <unfinished ...>
3190 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3188 umount2(".", MNT_DETACH <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_NET_ADMIN <unfinished ...>
3189 mount("none", "/newroot/usr/bin/true", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3185 <... prctl resumed>) = 0
3180 openat(3, "self", O_RDONLY|O_PATH <unfinished ...>
3176 <... write resumed>) = 9
3174 fcntl(5, F_GETFL <unfinished ...>
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 <... read resumed>, "289 667 0:6 /tty /newroot/dev/tt"..., 104) = 104
3194 <... mkdir resumed>) = 0
3190 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3189 <... mount resumed>) = 0
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_MKNOD <unfinished ...>
3180 <... openat resumed>) = 5
3176 close(6 <unfinished ...>
3174 <... fcntl resumed>) = 0x18800 (flags O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY)
3197 readlink("/var" <unfinished ...>
3195 read(6 <unfinished ...>
3194 mkdir("/newroot/dev/pts", 0755 <unfinished ...>
3190 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=180, ...}, 0) = 0
3189 close(5 <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_NET_RAW <unfinished ...>
3185 <... prctl resumed>) = 0
3180 openat(5, "uid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3176 <... close resumed>) = 0
3174 fcntl(5, F_SETFD, FD_CLOEXEC <unfinished ...>
3198 <... prctl resumed>) = 0
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 <... read resumed>, "1939605,mode=755,inode64\n", 4080) = 25
3194 <... mkdir resumed>) = 0
3190 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3189 <... close resumed>) = 0
3188 <... umount2 resumed>) = 0
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_LEASE <unfinished ...>
3180 <... openat resumed>) = 6
3176 close(5 <unfinished ...>
3174 <... fcntl resumed>) = 0
3198 execve("/bin/true", ["/bin/true"], 0x563a89f4f490 /* 3 vars */ <unfinished ...>
3197 readlink("/var/cache" <unfinished ...>
3195 read(6 <unfinished ...>
3194 mount("devpts", "/newroot/dev/pts", "devpts", MS_NOSUID|MS_NOEXEC, "newinstance,ptmxmode=0666,mode=6"... <unfinished ...>
3190 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3189 mount("oldroot", "oldroot", NULL, MS_REC|MS_SILENT|MS_PRIVATE, NULL <unfinished ...>
3188 chdir("/" <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_IPC_LOCK <unfinished ...>
3185 <... prctl resumed>) = 0
3180 write(6, "1000 0 1\n", 9 <unfinished ...>
3176 <... close resumed>) = 0
3198 <... execve resumed>) = -1 ENOENT (No such file or directory)
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 <... read resumed>, "", 4055) = 0
3190 newfstatat(AT_FDCWD, "/newroot/usr/bin" <unfinished ...>
3189 <... mount resumed>) = 0
3188 <... chdir resumed>) = 0
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_AUDIT_WRITE <unfinished ...>
3180 <... write resumed>) = 9
3176 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3194 <... mount resumed>) = 0
3174 getdents64(5 <unfinished ...>
3198 write(2, "bwrap: ", 7 <unfinished ...>
3197 readlink("/var/cache/fontconfig" <unfinished ...>
3195 close(6 <unfinished ...>
3190 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=73728, ...}, 0) = 0
3194 symlink("pts/ptmx", "/newroot/dev/ptmx" <unfinished ...>
3189 umount2("oldroot", MNT_DETACH <unfinished ...>
3188 close(5 <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_IPC_OWNER <unfinished ...>
3185 <... prctl resumed>) = 0
3180 close(6 <unfinished ...>
3176 <... capset resumed>) = 0
3198 <... write resumed>) = 7
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 <... close resumed>) = 0
3194 <... symlink resumed>) = 0
3190 newfstatat(AT_FDCWD, "/newroot/usr/bin/true" <unfinished ...>
3188 <... close resumed>) = 0
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_AUDIT_CONTROL <unfinished ...>
3180 <... close resumed>) = 0
3176 prctl(PR_SET_DUMPABLE, SUID_DUMP_USER <unfinished ...>
3174 <... getdents64 resumed>, 0x563a89f51f80 /* 18 entries */, 32768) = 432
3161 <... poll resumed>) = 1 ([{fd=62, revents=POLLIN}])
3198 write(2, "execvp /bin/true", 16 <unfinished ...>
3197 readlink("/home" <unfinished ...>
3195 close(5 <unfinished ...>
3194 newfstatat(AT_FDCWD, "/oldroot/etc/ld.so.cache" <unfinished ...>
3190 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3189 <... umount2 resumed>) = 0
3188 unshare(CLONE_NEWUSER <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_SYS_MODULE <unfinished ...>
3185 <... prctl resumed>) = 0
3180 openat(5, "gid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3176 <... prctl resumed>) = 0
3174 close(3 <unfinished ...>
3161 read(62 <unfinished ...>
3198 <... write resumed>) = 16
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 <... close resumed>) = 0
3194 <... newfstatat resumed>, {st_mode=S_IFREG|0644, st_size=162207, ...}, 0) = 0
3190 mount("/oldroot/usr/bin/true", "/newroot/usr/bin/true", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3189 openat(AT_FDCWD, "/", O_RDONLY|O_DIRECTORY <unfinished ...>
3188 <... unshare resumed>) = 0
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_SETFCAP <unfinished ...>
3180 <... openat resumed>) = 6
3176 read(42 <unfinished ...>
3174 <... close resumed>) = 0
3161 <... read resumed>, "bwrap: execvp /bin/true", 32) = 23
3198 write(2, ": No such file or directory", 27 <unfinished ...>
3197 readlink("/home/albert" <unfinished ...>
3195 symlink("/proc/self/fd/0", "/newroot/dev/stdin" <unfinished ...>
3194 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3190 <... mount resumed>) = 0
3189 <... openat resumed>) = 5
3188 prctl(PR_CAPBSET_DROP, CAP_CHOWN <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_SYS_RAWIO <unfinished ...>
3185 <... prctl resumed>) = 0
3180 write(6, "1000 0 1\n", 9 <unfinished ...>
3176 <... read resumed>, " \0\0\0\4\0\0\0\25\0\0f>\0\0\300 \0\0\0\0\0\0\0005\0\0\1\0\0\0@"..., 4079) = 840
3174 close(14 <unfinished ...>
3161 read(62 <unfinished ...>
3198 <... write resumed>) = 27
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 <... symlink resumed>) = 0
3194 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=80, ...}, 0) = 0
3190 readlink("/newroot" <unfinished ...>
3189 chdir("/newroot" <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_MAC_OVERRIDE <unfinished ...>
3180 <... write resumed>) = 9
3176 read(42 <unfinished ...>
3174 <... close resumed>) = 0
3161 <... read resumed>, ": No such", 9) = 9
3198 write(2, "\n", 1 <unfinished ...>
3197 readlink("/home/albert/.cache" <unfinished ...>
3195 symlink("/proc/self/fd/1", "/newroot/dev/stdout" <unfinished ...>
3194 newfstatat(AT_FDCWD, "/newroot/etc" <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 <... chdir resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_DAC_OVERRIDE <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_SYS_CHROOT <unfinished ...>
3185 <... prctl resumed>) = 0
3180 close(6 <unfinished ...>
3176 <... read resumed>, "", 3239) = 0
3174 close(16 <unfinished ...>
3161 read(62 <unfinished ...>
3198 <... write resumed>) = 1
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 <... symlink resumed>) = 0
3194 <... newfstatat resumed>, 0x7ffc0c019470, 0) = -1 ENOENT (No such file or directory)
3190 readlink("/newroot/usr" <unfinished ...>
3189 pivot_root(".", "." <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_MAC_ADMIN <unfinished ...>
3180 <... close resumed>) = 0
3176 close(42 <unfinished ...>
3174 <... close resumed>) = 0
3161 <... read resumed>, " file or directory\n", 32) = 19
3198 exit_group(1 <unfinished ...>
3197 readlink("/home/albert/.cache/glycin" <unfinished ...>
3195 symlink("/proc/self/fd/2", "/newroot/dev/stderr" <unfinished ...>
3194 mkdir("/newroot/etc", 0700 <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3188 prctl(PR_CAPBSET_DROP, CAP_DAC_READ_SEARCH <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_SYS_PTRACE <unfinished ...>
3185 <... prctl resumed>) = 0
3180 close(5 <unfinished ...>
3176 <... close resumed>) = 0
3174 close(20 <unfinished ...>
3161 read(62 <unfinished ...>
3198 <... exit_group resumed>) = ?
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 <... symlink resumed>) = 0
3194 <... mkdir resumed>) = 0
3190 readlink("/newroot/usr/bin" <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_SYSLOG <unfinished ...>
3180 <... close resumed>) = 0
3176 umask(022 <unfinished ...>
3174 <... close resumed>) = 0
3161 <... read resumed>, 0x7f70d8000ee0, 42) = -1 EAGAIN (Resource temporarily unavailable)
3197 readlink("/home/albert/.cache/glycin/usr" <unfinished ...>
3195 symlink("/proc/self/fd", "/newroot/dev/fd" <unfinished ...>
3194 newfstatat(AT_FDCWD, "/newroot/etc/ld.so.cache" <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3188 prctl(PR_CAPBSET_DROP, CAP_FOWNER <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_SYS_PACCT <unfinished ...>
3185 <... prctl resumed>) = 0
3180 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3176 <... umask resumed>) = 000
3174 close(22 <unfinished ...>
3161 poll([{fd=60, events=POLLIN}, {fd=62, events=POLLIN}], 2, -1 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 <... symlink resumed>) = 0
3194 <... newfstatat resumed>, 0x7ffc0c019460, 0) = -1 ENOENT (No such file or directory)
3190 readlink("/newroot/usr/bin/true" <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_WAKE_ALARM <unfinished ...>
3180 <... capset resumed>) = 0
3176 chdir("/" <unfinished ...>
3174 <... close resumed>) = 0
3198 +++ exited with 1 +++
3197 readlink("/home/albert/.cache/glycin/usr/lib" <unfinished ...>
3195 symlink("/proc/kcore", "/newroot/dev/core" <unfinished ...>
3194 creat("/newroot/etc/ld.so.cache", 0444 <unfinished ...>
3190 <... readlink resumed>, 0x7ffc7d26c050, 1023) = -1 EINVAL (Invalid argument)
3189 <... pivot_root resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_FSETID <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_SYS_ADMIN <unfinished ...>
3185 <... prctl resumed>) = 0
3180 prctl(PR_SET_DUMPABLE, SUID_DUMP_USER <unfinished ...>
3176 <... chdir resumed>) = 0
3174 close(35 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 <... symlink resumed>) = 0
3194 <... creat resumed>) = 5
3190 openat(AT_FDCWD, "/newroot/usr/bin/true", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3189 fchdir(5 <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_BLOCK_SUSPEND <unfinished ...>
3180 <... prctl resumed>) = 0
3174 <... close resumed>) = 0
3197 readlink("/home/albert/.cache/glycin/usr/lib/glycin-loaders" <unfinished ...>
3195 mkdir("/newroot/dev/shm", 0755 <unfinished ...>
3194 close(5 <unfinished ...>
3190 <... openat resumed>) = 5
3189 <... fchdir resumed>) = 0
3188 prctl(PR_CAPBSET_DROP, CAP_KILL <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT <unfinished ...>
3185 <... prctl resumed>) = 0
3180 read(54 <unfinished ...>
3176 rt_sigprocmask(SIG_BLOCK, ~[] <unfinished ...>
3174 close(37 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 <... mkdir resumed>) = 0
3194 <... close resumed>) = 0
3190 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3189 umount2(".", MNT_DETACH <unfinished ...>
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_AUDIT_READ <unfinished ...>
3180 <... read resumed>, " \0\0\0\4\0\0\0\25\0\0f>\0\0\300 \0\0\0\0\0\0\0005\0\0\1\0\0\0@"..., 4079) = 840
3176 <... rt_sigprocmask resumed>, [CHLD], 8) = 0
3174 <... close resumed>) = 0
3197 readlink("/home/albert/.cache/glycin/usr/lib/glycin-loaders/2+" <unfinished ...>
3195 mkdir("/newroot/dev/pts", 0755 <unfinished ...>
3194 mount("/oldroot/etc/ld.so.cache", "/newroot/etc/ld.so.cache", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3190 <... readlink resumed>, "/newroot/usr/bin/true", 99) = 21
3188 prctl(PR_CAPBSET_DROP, CAP_SETGID <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_SYS_NICE <unfinished ...>
3185 <... prctl resumed>) = 0
3180 read(54 <unfinished ...>
3176 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD <unfinished ...>
3174 close(42 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3195 <... mkdir resumed>) = 0
3194 <... mount resumed>) = 0
3190 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3189 <... umount2 resumed>) = 0
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_PERFMON <unfinished ...>
3180 <... read resumed>, "", 3239) = 0
3174 <... close resumed>) = 0
3197 readlink("/home/albert/.cache/glycin/usr/lib/glycin-loaders/2+/glycin-svg" <unfinished ...>
3195 mount("devpts", "/newroot/dev/pts", "devpts", MS_NOSUID|MS_NOEXEC, "newinstance,ptmxmode=0666,mode=6"... <unfinished ...>
3194 readlink("/newroot" <unfinished ...>
3190 <... openat resumed>) = 6
3189 chdir("/" <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_SETUID <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_SYS_RESOURCE <unfinished ...>
3185 <... prctl resumed>) = 0
3180 close(54 <unfinished ...>
3174 close(45 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec271b5d0, 1023) = -1 EINVAL (Invalid argument)
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3190 read(6 <unfinished ...>
3189 <... chdir resumed>) = 0
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_BPF <unfinished ...>
3180 <... close resumed>) = 0
3174 <... close resumed>) = 0
3197 mount(NULL, "/", NULL, MS_REC|MS_SILENT|MS_SLAVE, NULL <unfinished ...>
3195 <... mount resumed>) = 0
3194 readlink("/newroot/etc" <unfinished ...>
3189 close(5 <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_SETPCAP <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_SYS_TIME <unfinished ...>
3185 <... prctl resumed>) = 0
3180 umask(022 <unfinished ...>
3174 close(54 <unfinished ...>
3195 symlink("pts/ptmx", "/newroot/dev/ptmx" <unfinished ...>
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3189 <... close resumed>) = 0
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 prctl(PR_CAPBSET_DROP, CAP_CHECKPOINT_RESTORE <unfinished ...>
3180 <... umask resumed>) = 000
3174 <... close resumed>) = 0
3197 <... mount resumed>) = 0
3195 <... symlink resumed>) = 0
3194 readlink("/newroot/etc/ld.so.cache" <unfinished ...>
3190 <... read resumed>, "521 603 259:3 / /oldroot rw,rela"..., 4079) = 3975
3189 unshare(CLONE_NEWUSER <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_LINUX_IMMUTABLE <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_SYS_TTY_CONFIG <unfinished ...>
3185 <... prctl resumed>) = 0
3180 chdir("/" <unfinished ...>
3176 <... clone resumed>, child_tidptr=0x7fb689761a10) = 2
3174 close(64 <unfinished ...>
3199 set_robust_list(0x7fb689761a20, 24 <unfinished ...>
3197 mount("tmpfs", "/tmp", "tmpfs", MS_NOSUID|MS_NODEV, NULL <unfinished ...>
3195 newfstatat(AT_FDCWD, "/oldroot/etc/ld.so.cache" <unfinished ...>
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3190 read(6 <unfinished ...>
3189 <... unshare resumed>) = 0
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 openat(3, "self", O_RDONLY|O_PATH <unfinished ...>
3180 <... chdir resumed>) = 0
3174 <... close resumed>) = 0
3199 <... set_robust_list resumed>) = 0
3195 <... newfstatat resumed>, {st_mode=S_IFREG|0644, st_size=162207, ...}, 0) = 0
3194 openat(AT_FDCWD, "/newroot/etc/ld.so.cache", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3190 <... read resumed>, "187 618 0:6 /tty /newroot/dev/tt"..., 104) = 104
3189 prctl(PR_CAPBSET_DROP, CAP_CHOWN <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_NET_BIND_SERVICE <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_MKNOD <unfinished ...>
3197 <... mount resumed>) = 0
3185 <... openat resumed>) = 5
3176 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3174 getdents64(5 <unfinished ...>
3180 rt_sigprocmask(SIG_BLOCK, ~[] <unfinished ...>
3199 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3197 getcwd( <unfinished ...>
3195 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3194 <... openat resumed>) = 5
3190 read(6 <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 openat(5, "uid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3180 <... rt_sigprocmask resumed>, [CHLD], 8) = 0
3176 <... rt_sigprocmask resumed>, NULL, 8) = 0
3174 <... getdents64 resumed>, 0x563a89f51f80 /* 0 entries */, 32768) = 0
3199 <... rt_sigprocmask resumed>, NULL, 8) = 0
3197 <... getcwd resumed>"/home/albert", 4096) = 13
3195 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=80, ...}, 0) = 0
3194 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3190 <... read resumed>, "1939605,mode=755,inode64\n198 618"..., 4080) = 555
3189 prctl(PR_CAPBSET_DROP, CAP_DAC_OVERRIDE <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_NET_BROADCAST <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_LEASE <unfinished ...>
3185 <... openat resumed>) = 6
3180 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD <unfinished ...>
3176 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3174 close(5 <unfinished ...>
3199 close(3 <unfinished ...>
3197 chdir("/tmp" <unfinished ...>
3195 newfstatat(AT_FDCWD, "/newroot/etc" <unfinished ...>
3194 <... readlink resumed>, "/newroot/etc/ld.so.cache", 99) = 24
3190 read(6 <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 write(6, "1000 0 1\n", 9 <unfinished ...>
3176 <... capset resumed>) = 0
3174 <... close resumed>) = 0
3199 <... close resumed>) = 0
3197 <... chdir resumed>) = 0
3195 <... newfstatat resumed>, 0x7ffca3b43f30, 0) = -1 ENOENT (No such file or directory)
3194 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3190 <... read resumed>, "", 3525) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_DAC_READ_SEARCH <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_NET_ADMIN <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_AUDIT_WRITE <unfinished ...>
3185 <... write resumed>) = 9
3176 openat(3, "self/fd", O_RDONLY|O_NOCTTY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY <unfinished ...>
3174 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3199 rt_sigprocmask(SIG_UNBLOCK, [CHLD] <unfinished ...>
3197 mkdir("newroot", 0755 <unfinished ...>
3195 mkdir("/newroot/etc", 0700 <unfinished ...>
3194 <... openat resumed>) = 6
3190 close(6 <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 close(6 <unfinished ...>
3174 <... prctl resumed>) = 0
3199 <... rt_sigprocmask resumed>, NULL, 8) = 0
3197 <... mkdir resumed>) = 0
3195 <... mkdir resumed>) = 0
3194 read(6 <unfinished ...>
3190 <... close resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_FOWNER <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_NET_RAW <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_AUDIT_CONTROL <unfinished ...>
3185 <... close resumed>) = 0
3180 <... clone resumed>, child_tidptr=0x7fd5b4e38a10) = 2
3176 <... openat resumed>) = 5
3174 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x563a89f50eb0} <unfinished ...>
3200 set_robust_list(0x7fd5b4e38a20, 24 <unfinished ...>
3199 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3197 mount("newroot", "newroot", NULL, MS_MGC_VAL|MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3195 newfstatat(AT_FDCWD, "/newroot/etc/ld.so.cache" <unfinished ...>
3190 mount("none", "/newroot/usr/bin/true", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 openat(5, "gid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3180 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3176 fstat(5 <unfinished ...>
3200 <... set_robust_list resumed>) = 0
3199 <... prctl resumed>) = 0
3195 <... newfstatat resumed>, 0x7ffca3b43f20, 0) = -1 ENOENT (No such file or directory)
3190 <... mount resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_FSETID <unfinished ...>
3194 <... read resumed>, "441 119 259:3 / /oldroot rw,rela"..., 4079) = 3975
3188 prctl(PR_CAPBSET_DROP, CAP_IPC_LOCK <unfinished ...>
3187 prctl(PR_CAPBSET_DROP, CAP_SETFCAP <unfinished ...>
3185 <... openat resumed>) = 6
3180 <... rt_sigprocmask resumed>, NULL, 8) = 0
3200 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3199 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x562c5362feb0} <unfinished ...>
3197 <... mount resumed>) = 0
3195 creat("/newroot/etc/ld.so.cache", 0444 <unfinished ...>
3194 read(6 <unfinished ...>
3190 close(5 <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 <... prctl resumed>) = 0
3185 write(6, "1000 0 1\n", 9 <unfinished ...>
3180 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3176 <... fstat resumed>, {st_mode=S_IFDIR|0500, st_size=19, ...}) = 0
3200 <... rt_sigprocmask resumed>, NULL, 8) = 0
3197 mkdir("oldroot", 0755 <unfinished ...>
3195 <... creat resumed>) = 5
3194 <... read resumed>, "287 659 0:6 /tty /newroot/dev/tt"..., 104) = 104
3190 <... close resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_KILL <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_IPC_OWNER <unfinished ...>
3185 <... write resumed>) = 9
3180 <... capset resumed>) = 0
3200 close(3 <unfinished ...>
3197 <... mkdir resumed>) = 0
3195 close(5 <unfinished ...>
3194 read(6 <unfinished ...>
3190 mount("oldroot", "oldroot", NULL, MS_REC|MS_SILENT|MS_PRIVATE, NULL <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 prctl(PR_CAPBSET_DROP, CAP_MAC_OVERRIDE <unfinished ...>
3185 close(6 <unfinished ...>
3180 openat(3, "self/fd", O_RDONLY|O_NOCTTY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY <unfinished ...>
3176 fcntl(5, F_GETFL <unfinished ...>
3174 <... prctl resumed>) = 0
3200 <... close resumed>) = 0
3197 pivot_root("/tmp", "oldroot" <unfinished ...>
3195 <... close resumed>) = 0
3194 <... read resumed>, "1939605,mode=755,inode64\n292 659"..., 4080) = 227
3190 <... mount resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_SETGID <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_MODULE <unfinished ...>
3187 <... prctl resumed>) = 0
3185 <... close resumed>) = 0
3180 <... openat resumed>) = 5
3176 <... fcntl resumed>) = 0x18800 (flags O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY)
3174 wait4(-1 <unfinished ...>
3200 rt_sigprocmask(SIG_UNBLOCK, [CHLD] <unfinished ...>
3199 <... prctl resumed>) = 0
3195 mount("/oldroot/etc/ld.so.cache", "/newroot/etc/ld.so.cache", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3194 read(6 <unfinished ...>
3190 umount2("oldroot", MNT_DETACH <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 prctl(PR_CAPBSET_DROP, CAP_MAC_ADMIN <unfinished ...>
3185 close(5 <unfinished ...>
3180 fstat(5 <unfinished ...>
3197 <... pivot_root resumed>) = 0
3176 fcntl(5, F_SETFD, FD_CLOEXEC <unfinished ...>
3174 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 2
3200 <... rt_sigprocmask resumed>, NULL, 8) = 0
3199 execve("/bin/true", ["/bin/true"], 0x562c5362e490 /* 3 vars */ <unfinished ...>
3197 chdir("/" <unfinished ...>
3195 <... mount resumed>) = 0
3194 <... read resumed>, "", 3853) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_SETUID <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_RAWIO <unfinished ...>
3187 <... prctl resumed>) = 0
3185 <... close resumed>) = 0
3180 <... fstat resumed>, {st_mode=S_IFDIR|0500, st_size=19, ...}) = 0
3176 <... fcntl resumed>) = 0
3174 write(4, "\2\0\0\0\0\0\0\0", 8 <unfinished ...>
3200 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3199 <... execve resumed>) = -1 ENOENT (No such file or directory)
3197 <... chdir resumed>) = 0
3195 readlink("/newroot" <unfinished ...>
3194 close(6 <unfinished ...>
3190 <... umount2 resumed>) = 0
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 prctl(PR_CAPBSET_DROP, CAP_SYSLOG <unfinished ...>
3185 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3180 fcntl(5, F_GETFL <unfinished ...>
3174 <... write resumed>) = 8
3200 <... prctl resumed>) = 0
3199 write(2, "bwrap: ", 7 <unfinished ...>
3197 newfstatat(AT_FDCWD, "/oldroot/usr" <unfinished ...>
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 <... close resumed>) = 0
3190 openat(AT_FDCWD, "/", O_RDONLY|O_DIRECTORY <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_SETPCAP <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_CHROOT <unfinished ...>
3187 <... prctl resumed>) = 0
3185 <... capset resumed>) = 0
3180 <... fcntl resumed>) = 0x18800 (flags O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY)
3176 getdents64(5 <unfinished ...>
3174 wait4(-1 <unfinished ...>
3166 <... poll resumed>) = 1 ([{fd=4, revents=POLLIN}])
3200 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x55f66d4aeeb0} <unfinished ...>
3199 <... write resumed>) = 7
3197 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3195 readlink("/newroot/etc" <unfinished ...>
3194 mount("none", "/newroot/etc/ld.so.cache", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3190 <... openat resumed>) = 5
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 prctl(PR_CAPBSET_DROP, CAP_WAKE_ALARM <unfinished ...>
3185 prctl(PR_SET_DUMPABLE, SUID_DUMP_USER <unfinished ...>
3180 fcntl(5, F_SETFD, FD_CLOEXEC <unfinished ...>
3174 <... wait4 resumed>, 0x7ffee20f3314, 0, NULL) = -1 ECHILD (No child processes)
3166 read(4 <unfinished ...>
3156 <... poll resumed>) = 1 ([{fd=74, revents=POLLIN}])
3199 write(2, "execvp /bin/true", 16 <unfinished ...>
3197 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 <... mount resumed>) = 0
3190 chdir("/newroot" <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_LINUX_IMMUTABLE <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_PTRACE <unfinished ...>
3187 <... prctl resumed>) = 0
3185 <... prctl resumed>) = 0
3180 <... fcntl resumed>) = 0
3166 <... read resumed>, "\2\0\0\0\0\0\0\0", 8) = 8
3199 <... write resumed>) = 16
3197 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=40, ...}, 0) = 0
3195 readlink("/newroot/etc/ld.so.cache" <unfinished ...>
3194 close(5 <unfinished ...>
3190 <... chdir resumed>) = 0
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 prctl(PR_CAPBSET_DROP, CAP_BLOCK_SUSPEND <unfinished ...>
3185 read(45 <unfinished ...>
3176 <... getdents64 resumed>, 0x562c53630fb0 /* 21 entries */, 32768) = 504
3174 exit_group(1 <unfinished ...>
3156 read(74 <unfinished ...>
3180 getdents64(5 <unfinished ...>
3199 write(2, ": No such file or directory", 27 <unfinished ...>
3197 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 <... close resumed>) = 0
3190 pivot_root(".", "." <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_NET_BIND_SERVICE <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_PACCT <unfinished ...>
3187 <... prctl resumed>) = 0
3185 <... read resumed>, " \0\0\0\4\0\0\0\25\0\0f>\0\0\300 \0\0\0\0\0\0\0005\0\0\1\0\0\0@"..., 4079) = 840
3176 close(3 <unfinished ...>
3174 <... exit_group resumed>) = ?
3166 exit_group(1 <unfinished ...>
3156 <... read resumed>, "bwrap: execvp /bin/true", 32) = 23
3200 <... prctl resumed>) = 0
3199 <... write resumed>) = 27
3197 <... newfstatat resumed>, 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3195 openat(AT_FDCWD, "/newroot/etc/ld.so.cache", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3194 newfstatat(AT_FDCWD, "/oldroot/nix/store" <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 prctl(PR_CAPBSET_DROP, CAP_AUDIT_READ <unfinished ...>
3185 read(45 <unfinished ...>
3180 <... getdents64 resumed>, 0x55f66d4affc0 /* 21 entries */, 32768) = 504
3176 <... close resumed>) = 0
3166 <... exit_group resumed>) = ?
3156 read(74 <unfinished ...>
3200 execve("/bin/true", ["/bin/true"], 0x55f66d4ad490 /* 3 vars */ <unfinished ...>
3199 write(2, "\n", 1 <unfinished ...>
3197 mkdir("/newroot/usr", 0755 <unfinished ...>
3195 <... openat resumed>) = 5
3194 <... newfstatat resumed>, 0x7ffc0c019610, 0) = -1 ENOENT (No such file or directory)
3189 prctl(PR_CAPBSET_DROP, CAP_NET_BROADCAST <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_ADMIN <unfinished ...>
3187 <... prctl resumed>) = 0
3185 <... read resumed>, "", 3239) = 0
3180 close(3 <unfinished ...>
3176 close(14 <unfinished ...>
3156 <... read resumed>, ": No such", 9) = 9
3200 <... execve resumed>) = -1 ENOENT (No such file or directory)
3199 <... write resumed>) = 1
3197 <... mkdir resumed>) = 0
3195 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3194 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 prctl(PR_CAPBSET_DROP, CAP_PERFMON <unfinished ...>
3185 close(45 <unfinished ...>
3180 <... close resumed>) = 0
3176 <... close resumed>) = 0
3156 read(74 <unfinished ...>
3200 write(2, "bwrap: ", 7 <unfinished ...>
3197 mount("/oldroot/usr", "/newroot/usr", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3195 <... readlink resumed>, "/newroot/etc/ld.so.cache", 99) = 24
3194 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=100, ...}, 0) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_NET_ADMIN <unfinished ...>
3199 exit_group(1 <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT <unfinished ...>
3187 <... prctl resumed>) = 0
3185 <... close resumed>) = 0
3180 close(14 <unfinished ...>
3176 close(16 <unfinished ...>
3156 <... read resumed>, " file or directory\n", 32) = 19
3200 <... write resumed>) = 7
3199 <... exit_group resumed>) = ?
3197 <... mount resumed>) = 0
3195 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3194 newfstatat(AT_FDCWD, "/newroot/tmp-home" <unfinished ...>
3190 <... pivot_root resumed>) = 0
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 prctl(PR_CAPBSET_DROP, CAP_BPF <unfinished ...>
3185 umask(022 <unfinished ...>
3180 <... close resumed>) = 0
3176 <... close resumed>) = 0
3166 +++ exited with 1 +++
3163 <... poll resumed>) = 1 ([{fd=82, revents=POLLIN}])
3161 <... poll resumed>) = 2 ([{fd=60, revents=POLLHUP}, {fd=62, revents=POLLHUP}])
3156 read(74 <unfinished ...>
3101 <... ppoll resumed>) = ? ERESTARTNOHAND (To be restarted if no handler)
3200 write(2, "execvp /bin/true", 16 <unfinished ...>
3197 readlink("/newroot" <unfinished ...>
3195 <... openat resumed>) = 6
3194 <... newfstatat resumed>, 0x7ffc0c019470, 0) = -1 ENOENT (No such file or directory)
3190 fchdir(5 <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_NET_RAW <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_NICE <unfinished ...>
3187 <... prctl resumed>) = 0
3185 <... umask resumed>) = 000
3180 close(16 <unfinished ...>
3176 close(20 <unfinished ...>
3163 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=3166, si_uid=1000, si_status=1, si_utime=0, si_stime=0} ---
3161 read(60 <unfinished ...>
3156 <... read resumed>, 0x7f70ec000ee0, 42) = -1 EAGAIN (Resource temporarily unavailable)
3101 ppoll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}], 2, {tv_sec=1, tv_nsec=15556021}, NULL, 8 <unfinished ...>
3200 <... write resumed>) = 16
3199 +++ exited with 1 +++
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3195 read(6 <unfinished ...>
3194 mkdir("/newroot/tmp-home", 0755 <unfinished ...>
3190 <... fchdir resumed>) = 0
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 prctl(PR_CAPBSET_DROP, CAP_CHECKPOINT_RESTORE <unfinished ...>
3185 chdir("/" <unfinished ...>
3180 <... close resumed>) = 0
3176 <... close resumed>) = 0
3163 read(82 <unfinished ...>
3161 <... read resumed>, "", 32) = 0
3156 poll([{fd=68, events=POLLIN}, {fd=74, events=POLLIN}], 2, -1 <unfinished ...>
3200 write(2, ": No such file or directory", 27 <unfinished ...>
3197 readlink("/newroot/usr" <unfinished ...>
3194 <... mkdir resumed>) = 0
3190 umount2(".", MNT_DETACH <unfinished ...>
3189 prctl(PR_CAPBSET_DROP, CAP_IPC_LOCK <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_RESOURCE <unfinished ...>
3187 <... prctl resumed>) = 0
3185 <... chdir resumed>) = 0
3180 close(20 <unfinished ...>
3176 close(22 <unfinished ...>
3174 +++ exited with 1 +++
3163 <... read resumed>, "bwrap: execvp /bin/true", 32) = 23
3161 ioctl(62, FIONBIO, [0] <unfinished ...>
3200 <... write resumed>) = 27
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3195 <... read resumed>, "568 377 259:3 / /oldroot rw,rela"..., 4079) = 3975
3194 mount("tmpfs", "/newroot/tmp-home", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 openat(3, "self", O_RDONLY|O_PATH <unfinished ...>
3185 rt_sigprocmask(SIG_BLOCK, ~[] <unfinished ...>
3180 <... close resumed>) = 0
3176 <... close resumed>) = 0
3163 read(82 <unfinished ...>
3161 <... ioctl resumed>) = 0
3200 write(2, "\n", 1 <unfinished ...>
3197 openat(AT_FDCWD, "/newroot/usr", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3195 read(6 <unfinished ...>
3190 <... umount2 resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_IPC_OWNER <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_TIME <unfinished ...>
3187 <... openat resumed>) = 5
3185 <... rt_sigprocmask resumed>, [CHLD], 8) = 0
3180 close(22 <unfinished ...>
3176 close(35 <unfinished ...>
3163 <... read resumed>, ": No such", 9) = 9
3161 read(62 <unfinished ...>
3200 <... write resumed>) = 1
3197 <... openat resumed>) = 5
3195 <... read resumed>, "289 667 0:6 /tty /newroot/dev/tt"..., 104) = 104
3194 <... mount resumed>) = 0
3190 chdir("/" <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 openat(5, "uid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3185 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD <unfinished ...>
3180 <... close resumed>) = 0
3176 <... close resumed>) = 0
3163 read(82 <unfinished ...>
3161 <... read resumed>, "", 42) = 0
3200 exit_group(1 <unfinished ...>
3197 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3195 read(6 <unfinished ...>
3194 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3190 <... chdir resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_MODULE <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_SYS_TTY_CONFIG <unfinished ...>
3187 <... openat resumed>) = 6
3180 close(35 <unfinished ...>
3176 close(37 <unfinished ...>
3163 <... read resumed>, " file or directory\n", 32) = 19
3161 close(62 <unfinished ...>
3200 <... exit_group resumed>) = ?
3197 <... readlink resumed>, "/newroot/usr", 99) = 12
3195 <... read resumed>, "1939605,mode=755,inode64\n293 667"..., 4080) = 227
3194 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=120, ...}, 0) = 0
3190 close(5 <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 write(6, "1000 0 1\n", 9 <unfinished ...>
3180 <... close resumed>) = 0
3176 <... close resumed>) = 0
3163 read(82 <unfinished ...>
3161 <... close resumed>) = 0
3197 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3195 read(6 <unfinished ...>
3194 newfstatat(AT_FDCWD, "/newroot/tmp-run" <unfinished ...>
3190 <... close resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_RAWIO <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_MKNOD <unfinished ...>
3187 <... write resumed>) = 9
3180 close(37 <unfinished ...>
3176 close(45 <unfinished ...>
3163 <... read resumed>, 0x7f70d0000c60, 42) = -1 EAGAIN (Resource temporarily unavailable)
3161 close(60 <unfinished ...>
3201 set_robust_list(0x7f9cc10eda20, 24 <unfinished ...>
3197 <... openat resumed>) = 6
3195 <... read resumed>, "", 3853) = 0
3194 <... newfstatat resumed>, 0x7ffc0c019470, 0) = -1 ENOENT (No such file or directory)
3190 unshare(CLONE_NEWUSER <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 close(6 <unfinished ...>
3185 <... clone resumed>, child_tidptr=0x7f9cc10eda10) = 2
3180 <... close resumed>) = 0
3176 <... close resumed>) = 0
3163 poll([{fd=76, events=POLLIN}, {fd=82, events=POLLIN}], 2, -1 <unfinished ...>
3161 <... close resumed>) = 0
3201 <... set_robust_list resumed>) = 0
3200 +++ exited with 1 +++
3197 read(6 <unfinished ...>
3195 close(6 <unfinished ...>
3194 mkdir("/newroot/tmp-run", 0755 <unfinished ...>
3190 <... unshare resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_CHROOT <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_LEASE <unfinished ...>
3187 <... close resumed>) = 0
3185 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3180 close(42 <unfinished ...>
3176 close(54 <unfinished ...>
3161 wait4(3166 <unfinished ...>
3201 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3195 <... close resumed>) = 0
3194 <... mkdir resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_CHOWN <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 openat(5, "gid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3185 <... rt_sigprocmask resumed>, NULL, 8) = 0
3180 <... close resumed>) = 0
3176 <... close resumed>) = 0
3201 <... rt_sigprocmask resumed>, NULL, 8) = 0
3197 <... read resumed>, "625 295 259:3 / /oldroot rw,rela"..., 4079) = 3194
3194 mount("tmpfs", "/newroot/tmp-run", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_PTRACE <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_AUDIT_WRITE <unfinished ...>
3187 <... openat resumed>) = 6
3195 mount("none", "/newroot/etc/ld.so.cache", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3185 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3180 close(45 <unfinished ...>
3176 close(55 <unfinished ...>
3161 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 3166
3201 close(3 <unfinished ...>
3197 read(6 <unfinished ...>
3195 <... mount resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_DAC_OVERRIDE <unfinished ...>
3194 <... mount resumed>) = 0
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 write(6, "1000 0 1\n", 9 <unfinished ...>
3185 <... capset resumed>) = 0
3180 <... close resumed>) = 0
3176 <... close resumed>) = 0
3201 <... close resumed>) = 0
3197 <... read resumed>, "", 885) = 0
3195 close(5 <unfinished ...>
3194 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_PACCT <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_AUDIT_CONTROL <unfinished ...>
3187 <... write resumed>) = 9
3185 openat(3, "self/fd", O_RDONLY|O_NOCTTY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY <unfinished ...>
3180 close(55 <unfinished ...>
3176 close(64 <unfinished ...>
3161 futex(0x7f71700021d0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3201 rt_sigprocmask(SIG_UNBLOCK, [CHLD] <unfinished ...>
3197 close(6 <unfinished ...>
3195 <... close resumed>) = 0
3194 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=140, ...}, 0) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_DAC_READ_SEARCH <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 close(6 <unfinished ...>
3185 <... openat resumed>) = 5
3180 <... close resumed>) = 0
3176 <... close resumed>) = 0
3161 <... futex resumed>) = 1
3201 <... rt_sigprocmask resumed>, NULL, 8) = 0
3197 <... close resumed>) = 0
3195 newfstatat(AT_FDCWD, "/oldroot/nix/store" <unfinished ...>
3194 symlink("/usr/lib", "/newroot/lib" <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_ADMIN <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_SETFCAP <unfinished ...>
3187 <... close resumed>) = 0
3185 fstat(5 <unfinished ...>
3180 close(64 <unfinished ...>
3176 close(71 <unfinished ...>
3161 futex(0x7f71ad2278b0, FUTEX_WAIT_BITSET_PRIVATE, 108, {tv_sec=529, tv_nsec=368997348}, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3113 <... futex resumed>) = 0
3201 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3197 mount("none", "/newroot/usr", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3195 <... newfstatat resumed>, 0x7ffca3b440d0, 0) = -1 ENOENT (No such file or directory)
3194 <... symlink resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_FOWNER <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 close(5 <unfinished ...>
3185 <... fstat resumed>, {st_mode=S_IFDIR|0500, st_size=19, ...}) = 0
3180 <... close resumed>) = 0
3176 <... close resumed>) = 0
3201 <... prctl resumed>) = 0
3197 <... mount resumed>) = 0
3195 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3194 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_MAC_OVERRIDE <unfinished ...>
3187 <... close resumed>) = 0
3185 fcntl(5, F_GETFL <unfinished ...>
3180 close(71 <unfinished ...>
3176 close(87 <unfinished ...>
3113 close(55 <unfinished ...>
3201 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x55f0afedfeb0} <unfinished ...>
3197 close(5 <unfinished ...>
3195 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=100, ...}, 0) = 0
3194 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=160, ...}, 0) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_FSETID <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3185 <... fcntl resumed>) = 0x18800 (flags O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY)
3180 <... close resumed>) = 0
3176 <... close resumed>) = 0
3113 <... close resumed>) = 0
3197 <... close resumed>) = 0
3195 newfstatat(AT_FDCWD, "/newroot/tmp-home" <unfinished ...>
3194 symlink("/usr/lib", "/newroot/lib64" <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_NICE <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_MAC_ADMIN <unfinished ...>
3187 <... capset resumed>) = 0
3185 fcntl(5, F_SETFD, FD_CLOEXEC <unfinished ...>
3180 close(87 <unfinished ...>
3176 close(88 <unfinished ...>
3113 close(52 <unfinished ...>
3197 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3195 <... newfstatat resumed>, 0x7ffca3b43f30, 0) = -1 ENOENT (No such file or directory)
3194 <... symlink resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_KILL <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 prctl(PR_SET_DUMPABLE, SUID_DUMP_USER <unfinished ...>
3185 <... fcntl resumed>) = 0
3180 <... close resumed>) = 0
3176 <... close resumed>) = 0
3197 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=60, ...}, 0) = 0
3195 mkdir("/newroot/tmp-home", 0755 <unfinished ...>
3194 newfstatat(AT_FDCWD, "/oldroot/usr/bin/true" <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_RESOURCE <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_SYSLOG <unfinished ...>
3187 <... prctl resumed>) = 0
3180 close(88 <unfinished ...>
3113 <... close resumed>) = 0
3176 getdents64(5 <unfinished ...>
3185 getdents64(5 <unfinished ...>
3201 <... prctl resumed>) = 0
3197 newfstatat(AT_FDCWD, "/newroot/dev" <unfinished ...>
3195 <... mkdir resumed>) = 0
3194 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_SETGID <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 read(87 <unfinished ...>
3180 <... close resumed>) = 0
3176 <... getdents64 resumed>, 0x562c53630fb0 /* 0 entries */, 32768) = 0
3113 futex(0x7f71700021d0, FUTEX_WAIT_BITSET_PRIVATE, 3, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3201 execve("/bin/true", ["/bin/true"], 0x55f0afede490 /* 3 vars */ <unfinished ...>
3197 <... newfstatat resumed>, 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3195 mount("tmpfs", "/newroot/tmp-home", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3194 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_TIME <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_WAKE_ALARM <unfinished ...>
3187 <... read resumed>, " \0\0\0\4\0\0\0\25\0\0f>\0\0\300 \0\0\0\0\0\0\0005\0\0\1\0\0\0@"..., 4079) = 840
3185 <... getdents64 resumed>, 0x55f0afee1100 /* 21 entries */, 32768) = 504
3180 getdents64(5 <unfinished ...>
3176 close(5 <unfinished ...>
3201 <... execve resumed>) = -1 ENOENT (No such file or directory)
3197 mkdir("/newroot/dev", 0755 <unfinished ...>
3194 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=180, ...}, 0) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_SETUID <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 read(87 <unfinished ...>
3185 close(3 <unfinished ...>
3180 <... getdents64 resumed>, 0x55f66d4affc0 /* 0 entries */, 32768) = 0
3201 write(2, "bwrap: ", 7 <unfinished ...>
3197 <... mkdir resumed>) = 0
3195 <... mount resumed>) = 0
3194 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_SYS_TTY_CONFIG <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_BLOCK_SUSPEND <unfinished ...>
3187 <... read resumed>, "", 3239) = 0
3185 <... close resumed>) = 0
3180 close(5 <unfinished ...>
3176 <... close resumed>) = 0
3201 <... write resumed>) = 7
3197 mount("tmpfs", "/newroot/dev", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3195 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3194 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_SETPCAP <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 close(87 <unfinished ...>
3185 close(14 <unfinished ...>
3180 <... close resumed>) = 0
3160 <... poll resumed>) = 1 ([{fd=89, revents=POLLIN}])
3176 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3201 write(2, "execvp /bin/true", 16 <unfinished ...>
3197 <... mount resumed>) = 0
3195 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=120, ...}, 0) = 0
3194 newfstatat(AT_FDCWD, "/newroot/usr/bin" <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_MKNOD <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_AUDIT_READ <unfinished ...>
3187 <... close resumed>) = 0
3185 <... close resumed>) = 0
3180 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3160 read(89 <unfinished ...>
3201 <... write resumed>) = 16
3197 creat("/newroot/dev/null", 0444 <unfinished ...>
3195 newfstatat(AT_FDCWD, "/newroot/tmp-run" <unfinished ...>
3194 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=73728, ...}, 0) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_LINUX_IMMUTABLE <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 umask(022 <unfinished ...>
3185 close(16 <unfinished ...>
3180 <... prctl resumed>) = 0
3176 <... prctl resumed>) = 0
3160 <... read resumed>, "bwrap: execvp /bin/true", 32) = 23
3201 write(2, ": No such file or directory", 27 <unfinished ...>
3197 <... creat resumed>) = 5
3195 <... newfstatat resumed>, 0x7ffca3b43f30, 0) = -1 ENOENT (No such file or directory)
3194 newfstatat(AT_FDCWD, "/newroot/usr/bin/true" <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_LEASE <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_PERFMON <unfinished ...>
3187 <... umask resumed>) = 000
3185 <... close resumed>) = 0
3180 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x55f66d4aeeb0} <unfinished ...>
3176 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x562c5362feb0} <unfinished ...>
3160 read(89 <unfinished ...>
3201 <... write resumed>) = 27
3197 close(5 <unfinished ...>
3195 mkdir("/newroot/tmp-run", 0755 <unfinished ...>
3194 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_NET_BIND_SERVICE <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 chdir("/" <unfinished ...>
3185 close(20 <unfinished ...>
3160 <... read resumed>, ": No such", 9) = 9
3201 write(2, "\n", 1 <unfinished ...>
3197 <... close resumed>) = 0
3195 <... mkdir resumed>) = 0
3194 mount("/oldroot/usr/bin/true", "/newroot/usr/bin/true", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_AUDIT_WRITE <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_BPF <unfinished ...>
3187 <... chdir resumed>) = 0
3185 <... close resumed>) = 0
3160 read(89 <unfinished ...>
3201 <... write resumed>) = 1
3197 mount("/oldroot/dev/null", "/newroot/dev/null", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3195 mount("tmpfs", "/newroot/tmp-run", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3194 <... mount resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_NET_BROADCAST <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3185 close(22 <unfinished ...>
3160 <... read resumed>, " file or directory\n", 32) = 19
3197 <... mount resumed>) = 0
3194 readlink("/newroot" <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_AUDIT_CONTROL <unfinished ...>
3188 prctl(PR_CAPBSET_DROP, CAP_CHECKPOINT_RESTORE <unfinished ...>
3187 rt_sigprocmask(SIG_BLOCK, ~[] <unfinished ...>
3185 <... close resumed>) = 0
3160 read(89 <unfinished ...>
3201 exit_group(1 <unfinished ...>
3197 readlink("/newroot" <unfinished ...>
3195 <... mount resumed>) = 0
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3190 prctl(PR_CAPBSET_DROP, CAP_NET_ADMIN <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 <... rt_sigprocmask resumed>, [CHLD], 8) = 0
3185 close(35 <unfinished ...>
3180 <... prctl resumed>) = 0
3160 <... read resumed>, 0x7f70e4000ee0, 42) = -1 EAGAIN (Resource temporarily unavailable)
3201 <... exit_group resumed>) = ?
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3195 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3194 readlink("/newroot/usr" <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_SETFCAP <unfinished ...>
3188 openat(3, "self", O_RDONLY|O_PATH <unfinished ...>
3187 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD <unfinished ...>
3185 <... close resumed>) = 0
3180 wait4(-1 <unfinished ...>
3160 poll([{fd=78, events=POLLIN}, {fd=89, events=POLLIN}], 2, -1 <unfinished ...>
3197 readlink("/newroot/dev" <unfinished ...>
3195 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=140, ...}, 0) = 0
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3190 prctl(PR_CAPBSET_DROP, CAP_NET_RAW <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... openat resumed>) = 5
3185 close(37 <unfinished ...>
3180 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 2
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3195 symlink("/usr/lib", "/newroot/lib" <unfinished ...>
3194 readlink("/newroot/usr/bin" <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_MAC_OVERRIDE <unfinished ...>
3188 openat(5, "uid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3185 <... close resumed>) = 0
3201 +++ exited with 1 +++
3197 readlink("/newroot/dev/null" <unfinished ...>
3195 <... symlink resumed>) = 0
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3190 prctl(PR_CAPBSET_DROP, CAP_IPC_LOCK <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... openat resumed>) = 6
3185 close(42 <unfinished ...>
3180 write(4, "\2\0\0\0\0\0\0\0", 8 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3195 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3194 readlink("/newroot/usr/bin/true" <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_MAC_ADMIN <unfinished ...>
3188 write(6, "1000 0 1\n", 9 <unfinished ...>
3185 <... close resumed>) = 0
3197 openat(AT_FDCWD, "/newroot/dev/null", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3195 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=160, ...}, 0) = 0
3194 <... readlink resumed>, 0x7ffc0c016f90, 1023) = -1 EINVAL (Invalid argument)
3190 prctl(PR_CAPBSET_DROP, CAP_IPC_OWNER <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... write resumed>) = 9
3185 close(54 <unfinished ...>
3180 <... write resumed>) = 8
3176 <... prctl resumed>) = 0
3168 <... poll resumed>) = 1 ([{fd=4, revents=POLLIN}])
3197 <... openat resumed>) = 5
3195 symlink("/usr/lib", "/newroot/lib64" <unfinished ...>
3194 openat(AT_FDCWD, "/newroot/usr/bin/true", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_SYSLOG <unfinished ...>
3188 close(6 <unfinished ...>
3185 <... close resumed>) = 0
3180 wait4(-1 <unfinished ...>
3168 read(4 <unfinished ...>
3197 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3195 <... symlink resumed>) = 0
3194 <... openat resumed>) = 5
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_MODULE <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... close resumed>) = 0
3185 close(55 <unfinished ...>
3180 <... wait4 resumed>, 0x7ffc11327414, 0, NULL) = -1 ECHILD (No child processes)
3176 wait4(-1 <unfinished ...>
3168 <... read resumed>, "\2\0\0\0\0\0\0\0", 8) = 8
3197 <... readlink resumed>, "/newroot/dev/null", 99) = 17
3195 newfstatat(AT_FDCWD, "/oldroot/usr/bin/true" <unfinished ...>
3194 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_WAKE_ALARM <unfinished ...>
3188 openat(5, "gid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3185 <... close resumed>) = 0
3197 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3195 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3194 <... readlink resumed>, "/newroot/usr/bin/true", 99) = 21
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_RAWIO <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... openat resumed>) = 6
3185 close(64 <unfinished ...>
3180 exit_group(1 <unfinished ...>
3176 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 2
3168 exit_group(1 <unfinished ...>
3197 <... openat resumed>) = 6
3195 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3194 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_BLOCK_SUSPEND <unfinished ...>
3188 write(6, "1000 0 1\n", 9 <unfinished ...>
3185 <... close resumed>) = 0
3180 <... exit_group resumed>) = ?
3176 write(4, "\2\0\0\0\0\0\0\0", 8 <unfinished ...>
3168 <... exit_group resumed>) = ?
3202 set_robust_list(0x7fc12d5cda20, 24 <unfinished ...>
3197 read(6 <unfinished ...>
3195 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=180, ...}, 0) = 0
3194 <... openat resumed>) = 6
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_CHROOT <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... write resumed>) = 9
3187 <... clone resumed>, child_tidptr=0x7fc12d5cda10) = 2
3185 close(71 <unfinished ...>
3202 <... set_robust_list resumed>) = 0
3195 newfstatat(AT_FDCWD, "/newroot/usr" <unfinished ...>
3194 read(6 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_AUDIT_READ <unfinished ...>
3188 close(6 <unfinished ...>
3185 <... close resumed>) = 0
3176 <... write resumed>) = 8
3167 <... poll resumed>) = 1 ([{fd=4, revents=POLLIN}])
3195 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_PTRACE <unfinished ...>
3202 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... close resumed>) = 0
3187 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3185 close(87 <unfinished ...>
3176 wait4(-1 <unfinished ...>
3167 read(4 <unfinished ...>
3202 <... rt_sigprocmask resumed>, NULL, 8) = 0
3197 <... read resumed>, "625 295 259:3 / /oldroot rw,rela"..., 4079) = 3443
3195 newfstatat(AT_FDCWD, "/newroot/usr/bin" <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_PERFMON <unfinished ...>
3188 close(5 <unfinished ...>
3187 <... rt_sigprocmask resumed>, NULL, 8) = 0
3185 <... close resumed>) = 0
3176 <... wait4 resumed>, 0x7ffc0c104af4, 0, NULL) = -1 ECHILD (No child processes)
3168 +++ exited with 1 +++
3167 <... read resumed>, "\2\0\0\0\0\0\0\0", 8) = 8
3202 close(3 <unfinished ...>
3197 read(6 <unfinished ...>
3195 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=73728, ...}, 0) = 0
3194 <... read resumed>, "441 119 259:3 / /oldroot rw,rela"..., 4079) = 3975
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_PACCT <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... close resumed>) = 0
3187 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3185 close(88 <unfinished ...>
3163 <... poll resumed>) = ? ERESTART_RESTARTBLOCK (Interrupted by signal)
3202 <... close resumed>) = 0
3197 <... read resumed>, "", 636) = 0
3195 newfstatat(AT_FDCWD, "/newroot/usr/bin/true" <unfinished ...>
3194 read(6 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_BPF <unfinished ...>
3188 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3187 <... capset resumed>) = 0
3185 <... close resumed>) = 0
3167 exit_group(1 <unfinished ...>
3163 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=3168, si_uid=1000, si_status=1, si_utime=0, si_stime=0} ---
3202 rt_sigprocmask(SIG_UNBLOCK, [CHLD] <unfinished ...>
3197 close(6 <unfinished ...>
3195 <... newfstatat resumed>, {st_mode=S_IFREG|0755, st_size=39184, ...}, 0) = 0
3194 <... read resumed>, "287 659 0:6 /tty /newroot/dev/tt"..., 104) = 104
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_ADMIN <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... capset resumed>) = 0
3187 openat(3, "self/fd", O_RDONLY|O_NOCTTY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY <unfinished ...>
3185 getdents64(5 <unfinished ...>
3176 exit_group(1 <unfinished ...>
3167 <... exit_group resumed>) = ?
3163 restart_syscall(<... resuming interrupted poll ...> <unfinished ...>
3202 <... rt_sigprocmask resumed>, NULL, 8) = 0
3197 <... close resumed>) = 0
3195 mount("/oldroot/usr/bin/true", "/newroot/usr/bin/true", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3194 read(6 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_CAPBSET_DROP, CAP_CHECKPOINT_RESTORE <unfinished ...>
3188 prctl(PR_SET_DUMPABLE, SUID_DUMP_USER <unfinished ...>
3185 <... getdents64 resumed>, 0x55f0afee1100 /* 0 entries */, 32768) = 0
3180 +++ exited with 1 +++
3187 <... openat resumed>) = 5
3176 <... exit_group resumed>) = ?
3163 <... restart_syscall resumed>) = 2
3202 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3197 close(5 <unfinished ...>
3194 <... read resumed>, "1939605,mode=755,inode64\n292 659"..., 4080) = 555
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT <unfinished ...>
3189 <... prctl resumed>) = 0
3188 <... prctl resumed>) = 0
3187 fstat(5 <unfinished ...>
3185 close(5 <unfinished ...>
3163 read(76 <unfinished ...>
3202 <... prctl resumed>) = 0
3197 <... close resumed>) = 0
3195 <... mount resumed>) = 0
3194 read(6 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 openat(3, "self", O_RDONLY|O_PATH <unfinished ...>
3188 read(64 <unfinished ...>
3187 <... fstat resumed>, {st_mode=S_IFDIR|0500, st_size=19, ...}) = 0
3185 <... close resumed>) = 0
3163 <... read resumed>, "", 32) = 0
3167 +++ exited with 1 +++
3202 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x561c4b266eb0} <unfinished ...>
3197 creat("/newroot/dev/zero", 0444 <unfinished ...>
3195 readlink("/newroot" <unfinished ...>
3194 <... read resumed>, "", 3525) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_NICE <unfinished ...>
3189 <... openat resumed>) = 5
3188 <... read resumed>, " \0\0\0\4\0\0\0\25\0\0f>\0\0\300 \0\0\0\0\0\0\0005\0\0\1\0\0\0@"..., 4079) = 840
3187 fcntl(5, F_GETFL <unfinished ...>
3185 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3163 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=3167, si_uid=1000, si_status=1, si_utime=0, si_stime=0} ---
3156 <... poll resumed>) = ? ERESTART_RESTARTBLOCK (Interrupted by signal)
3197 <... creat resumed>) = 5
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 close(6 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 openat(5, "uid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3188 read(64 <unfinished ...>
3187 <... fcntl resumed>) = 0x18800 (flags O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY)
3185 <... prctl resumed>) = 0
3163 ioctl(82, FIONBIO, [0] <unfinished ...>
3156 restart_syscall(<... resuming interrupted poll ...> <unfinished ...>
3197 close(5 <unfinished ...>
3195 readlink("/newroot/usr" <unfinished ...>
3194 <... close resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_RESOURCE <unfinished ...>
3189 <... openat resumed>) = 6
3188 <... read resumed>, "", 3239) = 0
3187 fcntl(5, F_SETFD, FD_CLOEXEC <unfinished ...>
3185 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x55f0afedfeb0} <unfinished ...>
3163 <... ioctl resumed>) = 0
3197 <... close resumed>) = 0
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3190 <... prctl resumed>) = 0
3189 write(6, "1000 0 1\n", 9 <unfinished ...>
3188 close(64 <unfinished ...>
3187 <... fcntl resumed>) = 0
3163 read(82 <unfinished ...>
3197 mount("/oldroot/dev/zero", "/newroot/dev/zero", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3195 readlink("/newroot/usr/bin" <unfinished ...>
3194 mount("none", "/newroot/usr/bin/true", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_TIME <unfinished ...>
3189 <... write resumed>) = 9
3188 <... close resumed>) = 0
3163 <... read resumed>, "", 42) = 0
3202 <... prctl resumed>) = 0
3197 <... mount resumed>) = 0
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 <... mount resumed>) = 0
3190 <... prctl resumed>) = 0
3189 close(6 <unfinished ...>
3188 umask(022 <unfinished ...>
3187 getdents64(5 <unfinished ...>
3163 close(82 <unfinished ...>
3202 execve("/bin/true", ["/bin/true"], 0x561c4b265490 /* 3 vars */ <unfinished ...>
3197 readlink("/newroot" <unfinished ...>
3195 readlink("/newroot/usr/bin/true" <unfinished ...>
3194 close(5 <unfinished ...>
3190 prctl(PR_CAPBSET_DROP, CAP_SYS_TTY_CONFIG <unfinished ...>
3189 <... close resumed>) = 0
3188 <... umask resumed>) = 000
3202 <... execve resumed>) = -1 ENOENT (No such file or directory)
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3195 <... readlink resumed>, 0x7ffca3b41a50, 1023) = -1 EINVAL (Invalid argument)
3194 <... close resumed>) = 0
3190 <... prctl resumed>) = 0
3189 openat(5, "gid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3188 chdir("/" <unfinished ...>
3163 <... close resumed>) = 0
3202 write(2, "bwrap: ", 7 <unfinished ...>
3197 readlink("/newroot/dev" <unfinished ...>
3195 openat(AT_FDCWD, "/newroot/usr/bin/true", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3194 mount("oldroot", "oldroot", NULL, MS_REC|MS_SILENT|MS_PRIVATE, NULL <unfinished ...>
3190 prctl(PR_CAPBSET_DROP, CAP_MKNOD <unfinished ...>
3189 <... openat resumed>) = 6
3188 <... chdir resumed>) = 0
3187 <... getdents64 resumed>, 0x561c4b2680f0 /* 21 entries */, 32768) = 504
3163 close(76 <unfinished ...>
3156 <... restart_syscall resumed>) = 2
3185 <... prctl resumed>) = 0
3202 <... write resumed>) = 7
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3195 <... openat resumed>) = 5
3194 <... mount resumed>) = 0
3190 <... prctl resumed>) = 0
3189 write(6, "1000 0 1\n", 9 <unfinished ...>
3188 rt_sigprocmask(SIG_BLOCK, ~[] <unfinished ...>
3187 close(3 <unfinished ...>
3185 wait4(-1 <unfinished ...>
3176 +++ exited with 1 +++
3163 <... close resumed>) = 0
3162 <... poll resumed>) = 1 ([{fd=70, revents=POLLIN}])
3156 read(68 <unfinished ...>
3202 write(2, "execvp /bin/true", 16 <unfinished ...>
3197 readlink("/newroot/dev/zero" <unfinished ...>
3195 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3194 umount2("oldroot", MNT_DETACH <unfinished ...>
3190 prctl(PR_CAPBSET_DROP, CAP_LEASE <unfinished ...>
3189 <... write resumed>) = 9
3188 <... rt_sigprocmask resumed>, [CHLD], 8) = 0
3187 <... close resumed>) = 0
3185 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 2
3163 wait4(3168 <unfinished ...>
3162 read(70 <unfinished ...>
3156 <... read resumed>, "", 32) = 0
3202 <... write resumed>) = 16
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3195 <... readlink resumed>, "/newroot/usr/bin/true", 99) = 21
3190 <... prctl resumed>) = 0
3189 close(6 <unfinished ...>
3188 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD <unfinished ...>
3187 close(14 <unfinished ...>
3185 write(4, "\2\0\0\0\0\0\0\0", 8 <unfinished ...>
3162 <... read resumed>, "bwrap: execvp /bin/true", 32) = 23
3156 ioctl(74, FIONBIO, [0] <unfinished ...>
3202 write(2, ": No such file or directory", 27 <unfinished ...>
3197 openat(AT_FDCWD, "/newroot/dev/zero", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3195 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3194 <... umount2 resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_AUDIT_WRITE <unfinished ...>
3189 <... close resumed>) = 0
3187 <... close resumed>) = 0
3185 <... write resumed>) = 8
3169 <... poll resumed>) = 1 ([{fd=4, revents=POLLIN}])
3163 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 3168
3162 read(70 <unfinished ...>
3156 <... ioctl resumed>) = 0
3202 <... write resumed>) = 27
3197 <... openat resumed>) = 5
3195 <... openat resumed>) = 6
3194 openat(AT_FDCWD, "/", O_RDONLY|O_DIRECTORY <unfinished ...>
3190 <... prctl resumed>) = 0
3189 close(5 <unfinished ...>
3187 close(16 <unfinished ...>
3185 wait4(-1 <unfinished ...>
3169 read(4 <unfinished ...>
3162 <... read resumed>, ": No such", 9) = 9
3156 read(74 <unfinished ...>
3202 write(2, "\n", 1 <unfinished ...>
3197 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3195 read(6 <unfinished ...>
3194 <... openat resumed>) = 5
3190 prctl(PR_CAPBSET_DROP, CAP_AUDIT_CONTROL <unfinished ...>
3189 <... close resumed>) = 0
3187 <... close resumed>) = 0
3185 <... wait4 resumed>, 0x7ffd8fb1e9a4, 0, NULL) = -1 ECHILD (No child processes)
3169 <... read resumed>, "\2\0\0\0\0\0\0\0", 8) = 8
3163 futex(0x7f716c002390, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3162 read(70 <unfinished ...>
3156 <... read resumed>, "", 42) = 0
3203 set_robust_list(0x7f5463123a20, 24 <unfinished ...>
3202 <... write resumed>) = 1
3197 <... readlink resumed>, "/newroot/dev/zero", 99) = 17
3194 chdir("/newroot" <unfinished ...>
3190 <... prctl resumed>) = 0
3189 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3188 <... clone resumed>, child_tidptr=0x7f5463123a10) = 2
3187 close(20 <unfinished ...>
3163 <... futex resumed>) = 1
3162 <... read resumed>, " file or directory\n", 32) = 19
3156 close(74 <unfinished ...>
3114 <... futex resumed>) = 0
3203 <... set_robust_list resumed>) = 0
3197 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3195 <... read resumed>, "568 377 259:3 / /oldroot rw,rela"..., 4079) = 3975
3202 exit_group(1 <unfinished ...>
3194 <... chdir resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_SETFCAP <unfinished ...>
3189 <... capset resumed>) = 0
3188 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3187 <... close resumed>) = 0
3185 exit_group(1 <unfinished ...>
3169 exit_group(1 <unfinished ...>
3163 futex(0x7f71ad2278b0, FUTEX_WAIT_BITSET_PRIVATE, 108, {tv_sec=529, tv_nsec=371480415}, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3162 read(70 <unfinished ...>
3156 <... close resumed>) = 0
3203 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3202 <... exit_group resumed>) = ?
3197 <... openat resumed>) = 6
3195 read(6 <unfinished ...>
3194 pivot_root(".", "." <unfinished ...>
3190 <... prctl resumed>) = 0
3189 prctl(PR_SET_DUMPABLE, SUID_DUMP_USER <unfinished ...>
3188 <... rt_sigprocmask resumed>, NULL, 8) = 0
3187 close(22 <unfinished ...>
3185 <... exit_group resumed>) = ?
3169 <... exit_group resumed>) = ?
3162 <... read resumed>, 0x7f70dc000ee0, 42) = -1 EAGAIN (Resource temporarily unavailable)
3156 close(68 <unfinished ...>
3114 close(54 <unfinished ...>
3203 <... rt_sigprocmask resumed>, NULL, 8) = 0
3197 read(6 <unfinished ...>
3195 <... read resumed>, "289 667 0:6 /tty /newroot/dev/tt"..., 104) = 104
3190 prctl(PR_CAPBSET_DROP, CAP_MAC_OVERRIDE <unfinished ...>
3189 <... prctl resumed>) = 0
3188 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3187 <... close resumed>) = 0
3162 poll([{fd=61, events=POLLIN}, {fd=70, events=POLLIN}], 2, -1 <unfinished ...>
3156 <... close resumed>) = 0
3114 <... close resumed>) = 0
3203 close(3 <unfinished ...>
3195 read(6 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 read(71 <unfinished ...>
3188 <... capset resumed>) = 0
3187 close(35 <unfinished ...>
3156 wait4(3167 <unfinished ...>
3114 close(53 <unfinished ...>
3203 <... close resumed>) = 0
3202 +++ exited with 1 +++
3195 <... read resumed>, "1939605,mode=755,inode64\n293 667"..., 4080) = 555
3194 <... pivot_root resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_MAC_ADMIN <unfinished ...>
3189 <... read resumed>, " \0\0\0\4\0\0\0\25\0\0f>\0\0\300 \0\0\0\0\0\0\0005\0\0\1\0\0\0@"..., 4079) = 840
3188 openat(3, "self/fd", O_RDONLY|O_NOCTTY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY <unfinished ...>
3187 <... close resumed>) = 0
3169 +++ exited with 1 +++
3114 <... close resumed>) = 0
3203 rt_sigprocmask(SIG_UNBLOCK, [CHLD] <unfinished ...>
3195 read(6 <unfinished ...>
3194 fchdir(5 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 read(71 <unfinished ...>
3188 <... openat resumed>) = 5
3187 close(37 <unfinished ...>
3160 <... poll resumed>) = ? ERESTART_RESTARTBLOCK (Interrupted by signal)
3156 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 3167
3114 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=3169, si_uid=1000, si_status=1, si_utime=0, si_stime=0} ---
3203 <... rt_sigprocmask resumed>, NULL, 8) = 0
3197 <... read resumed>, "625 295 259:3 / /oldroot rw,rela"..., 4079) = 3574
3195 <... read resumed>, "", 3525) = 0
3194 <... fchdir resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_SYSLOG <unfinished ...>
3189 <... read resumed>, "", 3239) = 0
3188 fstat(5 <unfinished ...>
3187 <... close resumed>) = 0
3160 restart_syscall(<... resuming interrupted poll ...> <unfinished ...>
3203 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3197 read(6 <unfinished ...>
3195 close(6 <unfinished ...>
3194 umount2(".", MNT_DETACH <unfinished ...>
3190 <... prctl resumed>) = 0
3189 close(71 <unfinished ...>
3188 <... fstat resumed>, {st_mode=S_IFDIR|0500, st_size=20, ...}) = 0
3187 close(42 <unfinished ...>
3160 <... restart_syscall resumed>) = 2
3156 futex(0x7f7178002370, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3114 futex(0x7f716c002390, FUTEX_WAIT_BITSET_PRIVATE, 3, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3185 +++ exited with 1 +++
3203 <... prctl resumed>) = 0
3197 <... read resumed>, "", 505) = 0
3195 <... close resumed>) = 0
3194 <... umount2 resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_WAKE_ALARM <unfinished ...>
3189 <... close resumed>) = 0
3188 fcntl(5, F_GETFL <unfinished ...>
3187 <... close resumed>) = 0
3160 read(78 <unfinished ...>
3203 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x564d609cfeb0} <unfinished ...>
3197 close(6 <unfinished ...>
3194 chdir("/" <unfinished ...>
3190 <... prctl resumed>) = 0
3189 umask(022 <unfinished ...>
3188 <... fcntl resumed>) = 0x18800 (flags O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY)
3187 close(45 <unfinished ...>
3160 <... read resumed>, "", 32) = 0
3197 <... close resumed>) = 0
3195 mount("none", "/newroot/usr/bin/true", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3194 <... chdir resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_BLOCK_SUSPEND <unfinished ...>
3189 <... umask resumed>) = 000
3188 fcntl(5, F_SETFD, FD_CLOEXEC <unfinished ...>
3187 <... close resumed>) = 0
3156 <... futex resumed>) = 1
3111 <... futex resumed>) = 0
3197 close(5 <unfinished ...>
3195 <... mount resumed>) = 0
3194 close(5 <unfinished ...>
3190 <... prctl resumed>) = 0
3189 chdir("/" <unfinished ...>
3188 <... fcntl resumed>) = 0
3187 close(54 <unfinished ...>
3160 ioctl(89, FIONBIO, [0] <unfinished ...>
3156 futex(0x7f71ad2278b0, FUTEX_WAIT_BITSET_PRIVATE, 108, {tv_sec=529, tv_nsec=372134162}, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3197 <... close resumed>) = 0
3195 close(5 <unfinished ...>
3194 <... close resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_AUDIT_READ <unfinished ...>
3189 <... chdir resumed>) = 0
3188 getdents64(5 <unfinished ...>
3187 <... close resumed>) = 0
3160 <... ioctl resumed>) = 0
3111 close(42 <unfinished ...>
3197 creat("/newroot/dev/full", 0444 <unfinished ...>
3195 <... close resumed>) = 0
3194 unshare(CLONE_NEWUSER <unfinished ...>
3190 <... prctl resumed>) = 0
3187 close(55 <unfinished ...>
3160 read(89 <unfinished ...>
3189 rt_sigprocmask(SIG_BLOCK, ~[] <unfinished ...>
3111 <... close resumed>) = 0
3203 <... prctl resumed>) = 0
3197 <... creat resumed>) = 5
3195 mount("oldroot", "oldroot", NULL, MS_REC|MS_SILENT|MS_PRIVATE, NULL <unfinished ...>
3190 prctl(PR_CAPBSET_DROP, CAP_PERFMON <unfinished ...>
3189 <... rt_sigprocmask resumed>, [CHLD], 8) = 0
3187 <... close resumed>) = 0
3194 <... unshare resumed>) = 0
3188 <... getdents64 resumed>, 0x564d609d1100 /* 22 entries */, 32768) = 528
3160 <... read resumed>, "", 42) = 0
3111 close(50 <unfinished ...>
3203 execve("/bin/true", ["/bin/true"], 0x564d609ce490 /* 3 vars */ <unfinished ...>
3197 close(5 <unfinished ...>
3195 <... mount resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_CHOWN <unfinished ...>
3190 <... prctl resumed>) = 0
3189 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD <unfinished ...>
3188 close(3 <unfinished ...>
3187 close(64 <unfinished ...>
3160 close(89 <unfinished ...>
3203 <... execve resumed>) = -1 ENOENT (No such file or directory)
3197 <... close resumed>) = 0
3195 umount2("oldroot", MNT_DETACH <unfinished ...>
3194 <... prctl resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_BPF <unfinished ...>
3188 <... close resumed>) = 0
3187 <... close resumed>) = 0
3111 <... close resumed>) = 0
3160 <... close resumed>) = 0
3203 write(2, "bwrap: ", 7 <unfinished ...>
3197 mount("/oldroot/dev/full", "/newroot/dev/full", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_DAC_OVERRIDE <unfinished ...>
3190 <... prctl resumed>) = 0
3188 close(14 <unfinished ...>
3187 close(71 <unfinished ...>
3203 <... write resumed>) = 7
3194 <... prctl resumed>) = 0
3190 prctl(PR_CAPBSET_DROP, CAP_CHECKPOINT_RESTORE <unfinished ...>
3188 <... close resumed>) = 0
3160 close(78 <unfinished ...>
3155 <... poll resumed>) = 1 ([{fd=99, revents=POLLIN}])
3187 <... close resumed>) = 0
3111 futex(0x7f7178002370, FUTEX_WAIT_BITSET_PRIVATE, 3, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3197 <... mount resumed>) = 0
3203 write(2, "execvp /bin/true", 16 <unfinished ...>
3195 <... umount2 resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_DAC_READ_SEARCH <unfinished ...>
3190 <... prctl resumed>) = 0
3197 readlink("/newroot" <unfinished ...>
3188 close(16 <unfinished ...>
3187 close(88 <unfinished ...>
3160 <... close resumed>) = 0
3155 read(99 <unfinished ...>
3204 set_robust_list(0x7fcd4b052a20, 24 <unfinished ...>
3203 <... write resumed>) = 16
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3195 openat(AT_FDCWD, "/", O_RDONLY|O_DIRECTORY <unfinished ...>
3194 <... prctl resumed>) = 0
3190 openat(3, "self", O_RDONLY|O_PATH <unfinished ...>
3189 <... clone resumed>, child_tidptr=0x7fcd4b052a10) = 2
3188 <... close resumed>) = 0
3187 <... close resumed>) = 0
3160 wait4(3169 <unfinished ...>
3155 <... read resumed>, "bwrap: execvp /bin/true", 32) = 23
3204 <... set_robust_list resumed>) = 0
3203 write(2, ": No such file or directory", 27 <unfinished ...>
3197 readlink("/newroot/dev" <unfinished ...>
3195 <... openat resumed>) = 5
3194 prctl(PR_CAPBSET_DROP, CAP_FOWNER <unfinished ...>
3190 <... openat resumed>) = 5
3189 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3188 close(20 <unfinished ...>
3187 getdents64(5 <unfinished ...>
3155 read(99 <unfinished ...>
3204 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3203 <... write resumed>) = 27
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3195 chdir("/newroot" <unfinished ...>
3194 <... prctl resumed>) = 0
3190 openat(5, "uid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3189 <... rt_sigprocmask resumed>, NULL, 8) = 0
3188 <... close resumed>) = 0
3187 <... getdents64 resumed>, 0x561c4b2680f0 /* 0 entries */, 32768) = 0
3160 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 3169
3155 <... read resumed>, ": No such", 9) = 9
3204 <... rt_sigprocmask resumed>, NULL, 8) = 0
3203 write(2, "\n", 1 <unfinished ...>
3197 readlink("/newroot/dev/full" <unfinished ...>
3195 <... chdir resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_FSETID <unfinished ...>
3190 <... openat resumed>) = 6
3189 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3188 close(22 <unfinished ...>
3187 close(5 <unfinished ...>
3155 read(99 <unfinished ...>
3204 close(3 <unfinished ...>
3203 <... write resumed>) = 1
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3195 pivot_root(".", "." <unfinished ...>
3194 <... prctl resumed>) = 0
3190 write(6, "1000 0 1\n", 9 <unfinished ...>
3189 <... capset resumed>) = 0
3188 <... close resumed>) = 0
3187 <... close resumed>) = 0
3160 futex(0x7f717c002370, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3155 <... read resumed>, " file or directory\n", 32) = 19
3204 <... close resumed>) = 0
3197 openat(AT_FDCWD, "/newroot/dev/full", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_KILL <unfinished ...>
3190 <... write resumed>) = 9
3189 openat(3, "self/fd", O_RDONLY|O_NOCTTY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY <unfinished ...>
3188 close(35 <unfinished ...>
3187 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3160 <... futex resumed>) = 1
3203 exit_group(1 <unfinished ...>
3155 read(99 <unfinished ...>
3112 <... futex resumed>) = 0
3204 rt_sigprocmask(SIG_UNBLOCK, [CHLD] <unfinished ...>
3203 <... exit_group resumed>) = ?
3197 <... openat resumed>) = 5
3194 <... prctl resumed>) = 0
3190 close(6 <unfinished ...>
3189 <... openat resumed>) = 5
3188 <... close resumed>) = 0
3187 <... prctl resumed>) = 0
3160 futex(0x7f71ad2278b0, FUTEX_WAIT_BITSET_PRIVATE, 108, {tv_sec=529, tv_nsec=372704141}, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3155 <... read resumed>, 0x7f70e8000c60, 42) = -1 EAGAIN (Resource temporarily unavailable)
3204 <... rt_sigprocmask resumed>, NULL, 8) = 0
3197 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_SETGID <unfinished ...>
3190 <... close resumed>) = 0
3189 fstat(5 <unfinished ...>
3188 close(37 <unfinished ...>
3187 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x561c4b266eb0} <unfinished ...>
3155 poll([{fd=97, events=POLLIN}, {fd=99, events=POLLIN}], 2, -1 <unfinished ...>
3112 close(45 <unfinished ...>
3204 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3197 <... readlink resumed>, "/newroot/dev/full", 99) = 17
3194 <... prctl resumed>) = 0
3190 openat(5, "gid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3189 <... fstat resumed>, {st_mode=S_IFDIR|0500, st_size=20, ...}) = 0
3188 <... close resumed>) = 0
3112 <... close resumed>) = 0
3204 <... prctl resumed>) = 0
3197 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_SETUID <unfinished ...>
3190 <... openat resumed>) = 6
3203 +++ exited with 1 +++
3195 <... pivot_root resumed>) = 0
3189 fcntl(5, F_GETFL <unfinished ...>
3188 close(42 <unfinished ...>
3112 close(40 <unfinished ...>
3204 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x556f5764feb0} <unfinished ...>
3197 <... openat resumed>) = 6
3195 fchdir(5 <unfinished ...>
3194 <... prctl resumed>) = 0
3190 write(6, "1000 0 1\n", 9 <unfinished ...>
3189 <... fcntl resumed>) = 0x18800 (flags O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY)
3188 <... close resumed>) = 0
3197 read(6 <unfinished ...>
3195 <... fchdir resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_SETPCAP <unfinished ...>
3190 <... write resumed>) = 9
3189 fcntl(5, F_SETFD, FD_CLOEXEC <unfinished ...>
3188 close(45 <unfinished ...>
3187 <... prctl resumed>) = 0
3112 <... close resumed>) = 0
3195 umount2(".", MNT_DETACH <unfinished ...>
3194 <... prctl resumed>) = 0
3190 close(6 <unfinished ...>
3189 <... fcntl resumed>) = 0
3188 <... close resumed>) = 0
3187 wait4(-1 <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_LINUX_IMMUTABLE <unfinished ...>
3190 <... close resumed>) = 0
3112 futex(0x7f717c002370, FUTEX_WAIT_BITSET_PRIVATE, 3, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3188 close(54 <unfinished ...>
3194 <... prctl resumed>) = 0
3190 close(5 <unfinished ...>
3189 getdents64(5 <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_NET_BIND_SERVICE <unfinished ...>
3190 <... close resumed>) = 0
3188 <... close resumed>) = 0
3194 <... prctl resumed>) = 0
3190 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3197 <... read resumed>, "625 295 259:3 / /oldroot rw,rela"..., 4079) = 3704
3194 prctl(PR_CAPBSET_DROP, CAP_NET_BROADCAST <unfinished ...>
3188 close(55 <unfinished ...>
3187 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 2
3197 read(6 <unfinished ...>
3194 <... prctl resumed>) = 0
3190 <... capset resumed>) = 0
3189 <... getdents64 resumed>, 0x556f57651120 /* 22 entries */, 32768) = 528
3188 <... close resumed>) = 0
3197 <... read resumed>, "", 375) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_NET_ADMIN <unfinished ...>
3190 prctl(PR_SET_DUMPABLE, SUID_DUMP_USER <unfinished ...>
3189 close(3 <unfinished ...>
3187 write(4, "\2\0\0\0\0\0\0\0", 8 <unfinished ...>
3188 close(71 <unfinished ...>
3197 close(6 <unfinished ...>
3194 <... prctl resumed>) = 0
3190 <... prctl resumed>) = 0
3189 <... close resumed>) = 0
3188 <... close resumed>) = 0
3187 <... write resumed>) = 8
3204 <... prctl resumed>) = 0
3197 <... close resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_NET_RAW <unfinished ...>
3190 read(88 <unfinished ...>
3189 close(14 <unfinished ...>
3188 close(83 <unfinished ...>
3187 wait4(-1 <unfinished ...>
3170 <... poll resumed>) = 1 ([{fd=4, revents=POLLIN}])
3195 <... umount2 resumed>) = 0
3204 execve("/bin/true", ["/bin/true"], 0x556f5764e490 /* 3 vars */ <unfinished ...>
3197 close(5 <unfinished ...>
3194 <... prctl resumed>) = 0
3190 <... read resumed>, " \0\0\0\4\0\0\0\25\0\0f>\0\0\300 \0\0\0\0\0\0\0005\0\0\1\0\0\0@"..., 4079) = 840
3189 <... close resumed>) = 0
3188 <... close resumed>) = 0
3187 <... wait4 resumed>, 0x7ffc98be0ed4, 0, NULL) = -1 ECHILD (No child processes)
3195 chdir("/" <unfinished ...>
3170 read(4 <unfinished ...>
3204 <... execve resumed>) = -1 ENOENT (No such file or directory)
3197 <... close resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_IPC_LOCK <unfinished ...>
3190 read(88 <unfinished ...>
3189 close(16 <unfinished ...>
3188 close(87 <unfinished ...>
3195 <... chdir resumed>) = 0
3170 <... read resumed>, "\2\0\0\0\0\0\0\0", 8) = 8
3197 creat("/newroot/dev/random", 0444 <unfinished ...>
3195 close(5 <unfinished ...>
3204 write(2, "bwrap: ", 7 <unfinished ...>
3194 <... prctl resumed>) = 0
3190 <... read resumed>, "", 3239) = 0
3189 <... close resumed>) = 0
3188 <... close resumed>) = 0
3204 <... write resumed>) = 7
3197 <... creat resumed>) = 5
3195 <... close resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_IPC_OWNER <unfinished ...>
3190 close(88 <unfinished ...>
3189 close(20 <unfinished ...>
3187 exit_group(1 <unfinished ...>
3170 exit_group(1 <unfinished ...>
3159 <... poll resumed>) = 1 ([{fd=67, revents=POLLIN}])
3204 write(2, "execvp /bin/true", 16 <unfinished ...>
3197 close(5 <unfinished ...>
3195 unshare(CLONE_NEWUSER <unfinished ...>
3194 <... prctl resumed>) = 0
3190 <... close resumed>) = 0
3189 <... close resumed>) = 0
3188 close(88 <unfinished ...>
3187 <... exit_group resumed>) = ?
3170 <... exit_group resumed>) = ?
3204 <... write resumed>) = 16
3197 <... close resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_MODULE <unfinished ...>
3190 umask(022 <unfinished ...>
3189 close(22 <unfinished ...>
3188 <... close resumed>) = 0
3195 <... unshare resumed>) = 0
3159 read(67 <unfinished ...>
3204 write(2, ": No such file or directory", 27 <unfinished ...>
3197 mount("/oldroot/dev/random", "/newroot/dev/random", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3194 <... prctl resumed>) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_CHOWN <unfinished ...>
3190 <... umask resumed>) = 000
3189 <... close resumed>) = 0
3188 getdents64(5 <unfinished ...>
3159 <... read resumed>, "bwrap: execvp /bin/true", 32) = 23
3204 <... write resumed>) = 27
3197 <... mount resumed>) = 0
3195 <... prctl resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_RAWIO <unfinished ...>
3190 chdir("/" <unfinished ...>
3189 close(35 <unfinished ...>
3188 <... getdents64 resumed>, 0x564d609d1100 /* 0 entries */, 32768) = 0
3159 read(67 <unfinished ...>
3204 write(2, "\n", 1 <unfinished ...>
3197 readlink("/newroot" <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_DAC_OVERRIDE <unfinished ...>
3194 <... prctl resumed>) = 0
3190 <... chdir resumed>) = 0
3189 <... close resumed>) = 0
3188 close(5 <unfinished ...>
3170 +++ exited with 1 +++
3159 <... read resumed>, ": No such", 9) = 9
3204 <... write resumed>) = 1
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3195 <... prctl resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_CHROOT <unfinished ...>
3189 close(37 <unfinished ...>
3188 <... close resumed>) = 0
3162 <... poll resumed>) = ? ERESTART_RESTARTBLOCK (Interrupted by signal)
3159 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=3170, si_uid=1000, si_status=1, si_utime=0, si_stime=0} ---
3190 rt_sigprocmask(SIG_BLOCK, ~[] <unfinished ...>
3197 readlink("/newroot/dev" <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_DAC_READ_SEARCH <unfinished ...>
3194 <... prctl resumed>) = 0
3189 <... close resumed>) = 0
3188 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3162 restart_syscall(<... resuming interrupted poll ...> <unfinished ...>
3190 <... rt_sigprocmask resumed>, [CHLD], 8) = 0
3159 read(67 <unfinished ...>
3204 exit_group(1 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3195 <... prctl resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_PTRACE <unfinished ...>
3190 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD <unfinished ...>
3189 close(42 <unfinished ...>
3188 <... prctl resumed>) = 0
3162 <... restart_syscall resumed>) = 2
3159 <... read resumed>, " file or directory\n", 32) = 19
3204 <... exit_group resumed>) = ?
3197 readlink("/newroot/dev/random" <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_FOWNER <unfinished ...>
3194 <... prctl resumed>) = 0
3189 <... close resumed>) = 0
3188 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x564d609cfeb0} <unfinished ...>
3187 +++ exited with 1 +++
3162 read(61 <unfinished ...>
3159 read(67 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3195 <... prctl resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_PACCT <unfinished ...>
3189 close(45 <unfinished ...>
3162 <... read resumed>, "", 32) = 0
3159 <... read resumed>, 0x7f70e0000ee0, 42) = -1 EAGAIN (Resource temporarily unavailable)
3197 openat(AT_FDCWD, "/newroot/dev/random", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_FSETID <unfinished ...>
3194 <... prctl resumed>) = 0
3189 <... close resumed>) = 0
3162 ioctl(70, FIONBIO, [0] <unfinished ...>
3159 poll([{fd=75, events=POLLIN}, {fd=67, events=POLLIN}], 2, -1 <unfinished ...>
3197 <... openat resumed>) = 5
3195 <... prctl resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_ADMIN <unfinished ...>
3189 close(54 <unfinished ...>
3162 <... ioctl resumed>) = 0
3197 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_KILL <unfinished ...>
3194 <... prctl resumed>) = 0
3189 <... close resumed>) = 0
3197 <... readlink resumed>, "/newroot/dev/random", 99) = 19
3195 <... prctl resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT <unfinished ...>
3190 <... clone resumed>, child_tidptr=0x7fc85196ba10) = 2
3189 close(55 <unfinished ...>
3162 read(70 <unfinished ...>
3205 set_robust_list(0x7fc85196ba20, 24 <unfinished ...>
3204 +++ exited with 1 +++
3197 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_SETGID <unfinished ...>
3194 <... prctl resumed>) = 0
3190 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3189 <... close resumed>) = 0
3162 <... read resumed>, "", 42) = 0
3205 <... set_robust_list resumed>) = 0
3197 <... openat resumed>) = 6
3195 <... prctl resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_NICE <unfinished ...>
3190 <... rt_sigprocmask resumed>, NULL, 8) = 0
3189 close(64 <unfinished ...>
3162 close(70 <unfinished ...>
3197 read(6 <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_SETUID <unfinished ...>
3194 <... prctl resumed>) = 0
3205 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3190 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3189 <... close resumed>) = 0
3205 <... rt_sigprocmask resumed>, NULL, 8) = 0
3195 <... prctl resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_RESOURCE <unfinished ...>
3188 <... prctl resumed>) = 0
3162 <... close resumed>) = 0
3190 <... capset resumed>) = 0
3189 close(83 <unfinished ...>
3205 close(3 <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_SETPCAP <unfinished ...>
3194 <... prctl resumed>) = 0
3190 openat(3, "self/fd", O_RDONLY|O_NOCTTY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY <unfinished ...>
3188 wait4(-1 <unfinished ...>
3189 <... close resumed>) = 0
3162 close(61 <unfinished ...>
3205 <... close resumed>) = 0
3195 <... prctl resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_TIME <unfinished ...>
3190 <... openat resumed>) = 5
3189 close(87 <unfinished ...>
3188 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 2
3205 rt_sigprocmask(SIG_UNBLOCK, [CHLD] <unfinished ...>
3197 <... read resumed>, "625 295 259:3 / /oldroot rw,rela"..., 4079) = 3839
3195 prctl(PR_CAPBSET_DROP, CAP_LINUX_IMMUTABLE <unfinished ...>
3194 <... prctl resumed>) = 0
3190 fstat(5 <unfinished ...>
3189 <... close resumed>) = 0
3188 write(4, "\2\0\0\0\0\0\0\0", 8 <unfinished ...>
3162 <... close resumed>) = 0
3205 <... rt_sigprocmask resumed>, NULL, 8) = 0
3197 read(6 <unfinished ...>
3195 <... prctl resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_SYS_TTY_CONFIG <unfinished ...>
3190 <... fstat resumed>, {st_mode=S_IFDIR|0500, st_size=20, ...}) = 0
3189 close(88 <unfinished ...>
3188 <... write resumed>) = 8
3162 wait4(3170 <unfinished ...>
3205 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3197 <... read resumed>, "", 240) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_NET_BIND_SERVICE <unfinished ...>
3194 <... prctl resumed>) = 0
3190 fcntl(5, F_GETFL <unfinished ...>
3189 <... close resumed>) = 0
3188 wait4(-1 <unfinished ...>
3171 <... poll resumed>) = 1 ([{fd=4, revents=POLLIN}])
3205 <... prctl resumed>) = 0
3197 close(6 <unfinished ...>
3195 <... prctl resumed>) = 0
3190 <... fcntl resumed>) = 0x18800 (flags O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY)
3189 getdents64(5 <unfinished ...>
3188 <... wait4 resumed>, 0x7ffc3e115384, 0, NULL) = -1 ECHILD (No child processes)
3162 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 3170
3205 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x5602df9e6eb0} <unfinished ...>
3197 <... close resumed>) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_NET_BROADCAST <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_MKNOD <unfinished ...>
3190 fcntl(5, F_SETFD, FD_CLOEXEC <unfinished ...>
3189 <... getdents64 resumed>, 0x556f57651120 /* 0 entries */, 32768) = 0
3171 read(4 <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3190 <... fcntl resumed>) = 0
3189 close(5 <unfinished ...>
3162 futex(0x7f714c002370, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3197 close(5 <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_NET_ADMIN <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_LEASE <unfinished ...>
3189 <... close resumed>) = 0
3188 exit_group(1 <unfinished ...>
3171 <... read resumed>, "\2\0\0\0\0\0\0\0", 8) = 8
3197 <... close resumed>) = 0
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3190 getdents64(5 <unfinished ...>
3189 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3188 <... exit_group resumed>) = ?
3162 <... futex resumed>) = 1
3121 <... futex resumed>) = 0
3197 creat("/newroot/dev/urandom", 0444 <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_NET_RAW <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_AUDIT_WRITE <unfinished ...>
3189 <... prctl resumed>) = 0
3171 exit_group(1 <unfinished ...>
3162 futex(0x7f71ad2278b0, FUTEX_WAIT_BITSET_PRIVATE, 108, {tv_sec=529, tv_nsec=374177074}, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3197 <... creat resumed>) = 5
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3189 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x556f5764feb0} <unfinished ...>
3171 <... exit_group resumed>) = ?
3121 close(87 <unfinished ...>
3197 close(5 <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_IPC_LOCK <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_AUDIT_CONTROL <unfinished ...>
3190 <... getdents64 resumed>, 0x5602df9e8170 /* 22 entries */, 32768) = 528
3197 <... close resumed>) = 0
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3121 <... close resumed>) = 0
3197 mount("/oldroot/dev/urandom", "/newroot/dev/urandom", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_IPC_OWNER <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_SETFCAP <unfinished ...>
3190 close(3 <unfinished ...>
3205 <... prctl resumed>) = 0
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3121 close(73 <unfinished ...>
3197 <... mount resumed>) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_MODULE <unfinished ...>
3205 execve("/bin/true", ["/bin/true"], 0x5602df9e5490 /* 3 vars */ <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_MAC_OVERRIDE <unfinished ...>
3190 <... close resumed>) = 0
3197 readlink("/newroot" <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3121 <... close resumed>) = 0
3190 close(14 <unfinished ...>
3205 <... execve resumed>) = -1 ENOENT (No such file or directory)
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_RAWIO <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_MAC_ADMIN <unfinished ...>
3197 readlink("/newroot/dev" <unfinished ...>
3190 <... close resumed>) = 0
3195 <... prctl resumed>) = 0
3121 futex(0x7f714c002370, FUTEX_WAIT_BITSET_PRIVATE, 3, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3194 <... prctl resumed>) = 0
3205 write(2, "bwrap: ", 7 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_CHROOT <unfinished ...>
3190 close(16 <unfinished ...>
3189 <... prctl resumed>) = 0
3205 <... write resumed>) = 7
3197 readlink("/newroot/dev/urandom" <unfinished ...>
3195 <... prctl resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_SYSLOG <unfinished ...>
3190 <... close resumed>) = 0
3171 +++ exited with 1 +++
3189 wait4(-1 <unfinished ...>
3155 <... poll resumed>) = 2 ([{fd=97, revents=POLLHUP}, {fd=99, revents=POLLHUP}])
3152 <... poll resumed>) = 1 ([{fd=104, revents=POLLIN}])
3101 <... ppoll resumed>) = ? ERESTARTNOHAND (To be restarted if no handler)
3205 write(2, "execvp /bin/true", 16 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_PTRACE <unfinished ...>
3194 <... prctl resumed>) = 0
3190 close(20 <unfinished ...>
3189 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 2
3155 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=3171, si_uid=1000, si_status=1, si_utime=0, si_stime=0} ---
3152 read(104 <unfinished ...>
3101 ppoll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}], 2, {tv_sec=1, tv_nsec=9359457}, NULL, 8 <unfinished ...>
3205 <... write resumed>) = 16
3197 openat(AT_FDCWD, "/newroot/dev/urandom", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3195 <... prctl resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_WAKE_ALARM <unfinished ...>
3190 <... close resumed>) = 0
3189 write(4, "\2\0\0\0\0\0\0\0", 8 <unfinished ...>
3188 +++ exited with 1 +++
3155 read(97 <unfinished ...>
3152 <... read resumed>, "bwrap: execvp /bin/true", 32) = 23
3205 write(2, ": No such file or directory", 27 <unfinished ...>
3197 <... openat resumed>) = 5
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_PACCT <unfinished ...>
3194 <... prctl resumed>) = 0
3190 close(22 <unfinished ...>
3189 <... write resumed>) = 8
3172 <... poll resumed>) = 1 ([{fd=4, revents=POLLIN}])
3155 <... read resumed>, "", 32) = 0
3152 read(104 <unfinished ...>
3205 <... write resumed>) = 27
3197 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3195 <... prctl resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_BLOCK_SUSPEND <unfinished ...>
3190 <... close resumed>) = 0
3189 wait4(-1 <unfinished ...>
3172 read(4 <unfinished ...>
3155 ioctl(99, FIONBIO, [0] <unfinished ...>
3152 <... read resumed>, ": No such", 9) = 9
3205 write(2, "\n", 1 <unfinished ...>
3197 <... readlink resumed>, "/newroot/dev/urandom", 99) = 20
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_ADMIN <unfinished ...>
3194 <... prctl resumed>) = 0
3190 close(35 <unfinished ...>
3189 <... wait4 resumed>, 0x7ffe6fe3c504, 0, NULL) = -1 ECHILD (No child processes)
3172 <... read resumed>, "\2\0\0\0\0\0\0\0", 8) = 8
3155 <... ioctl resumed>) = 0
3152 read(104 <unfinished ...>
3205 <... write resumed>) = 1
3197 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3195 <... prctl resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_AUDIT_READ <unfinished ...>
3190 <... close resumed>) = 0
3155 read(99 <unfinished ...>
3152 <... read resumed>, " file or directory\n", 32) = 19
3197 <... openat resumed>) = 6
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT <unfinished ...>
3194 <... prctl resumed>) = 0
3190 close(37 <unfinished ...>
3189 exit_group(1 <unfinished ...>
3172 exit_group(1 <unfinished ...>
3155 <... read resumed>, "", 42) = 0
3152 read(104 <unfinished ...>
3205 exit_group(1 <unfinished ...>
3197 read(6 <unfinished ...>
3195 <... prctl resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_PERFMON <unfinished ...>
3190 <... close resumed>) = 0
3189 <... exit_group resumed>) = ?
3172 <... exit_group resumed>) = ?
3155 close(99 <unfinished ...>
3152 <... read resumed>, 0x7f70f4000c60, 42) = -1 EAGAIN (Resource temporarily unavailable)
3205 <... exit_group resumed>) = ?
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_NICE <unfinished ...>
3194 <... prctl resumed>) = 0
3190 close(42 <unfinished ...>
3195 <... prctl resumed>) = 0
3155 <... close resumed>) = 0
3194 prctl(PR_CAPBSET_DROP, CAP_BPF <unfinished ...>
3152 poll([{fd=94, events=POLLIN}, {fd=104, events=POLLIN}], 2, -1 <unfinished ...>
3190 <... close resumed>) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_RESOURCE <unfinished ...>
3194 <... prctl resumed>) = 0
3155 close(97 <unfinished ...>
3195 <... prctl resumed>) = 0
3190 close(45 <unfinished ...>
3194 prctl(PR_CAPBSET_DROP, CAP_CHECKPOINT_RESTORE <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_TIME <unfinished ...>
3197 <... read resumed>, "625 295 259:3 / /oldroot rw,rela"..., 4079) = 3976
3190 <... close resumed>) = 0
3155 <... close resumed>) = 0
3197 read(6 <unfinished ...>
3195 <... prctl resumed>) = 0
3194 <... prctl resumed>) = 0
3190 close(54 <unfinished ...>
3197 <... read resumed>, "", 103) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_SYS_TTY_CONFIG <unfinished ...>
3155 wait4(3171 <unfinished ...>
3194 openat(3, "self", O_RDONLY|O_PATH <unfinished ...>
3190 <... close resumed>) = 0
3159 <... poll resumed>) = 2 ([{fd=75, revents=POLLHUP}, {fd=67, revents=POLLHUP}])
3205 +++ exited with 1 +++
3197 close(6 <unfinished ...>
3195 <... prctl resumed>) = 0
3190 close(55 <unfinished ...>
3172 +++ exited with 1 +++
3194 <... openat resumed>) = 5
3159 read(75 <unfinished ...>
3101 <... ppoll resumed>) = ? ERESTARTNOHAND (To be restarted if no handler)
3197 <... close resumed>) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_MKNOD <unfinished ...>
3190 <... close resumed>) = 0
3155 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 3171
3194 openat(5, "uid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3159 <... read resumed>, "", 32) = 0
3101 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=3172, si_uid=1000, si_status=1, si_utime=0, si_stime=0} ---
3195 <... prctl resumed>) = 0
3190 close(64 <unfinished ...>
3101 ppoll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}], 2, {tv_sec=1, tv_nsec=8963314}, NULL, 8 <unfinished ...>
3197 close(5 <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_LEASE <unfinished ...>
3194 <... openat resumed>) = 6
3159 ioctl(67, FIONBIO, [0] <unfinished ...>
3190 <... close resumed>) = 0
3155 futex(0x7f715c002370, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3197 <... close resumed>) = 0
3195 <... prctl resumed>) = 0
3194 write(6, "1000 0 1\n", 9 <unfinished ...>
3190 close(71 <unfinished ...>
3189 +++ exited with 1 +++
3159 <... ioctl resumed>) = 0
3155 <... futex resumed>) = 1
3197 creat("/newroot/dev/tty", 0444 <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_AUDIT_WRITE <unfinished ...>
3194 <... write resumed>) = 9
3190 <... close resumed>) = 0
3159 read(67 <unfinished ...>
3118 <... futex resumed>) = 0
3197 <... creat resumed>) = 5
3195 <... prctl resumed>) = 0
3194 close(6 <unfinished ...>
3190 close(83 <unfinished ...>
3159 <... read resumed>, "", 42) = 0
3155 futex(0x7f71ad2278b0, FUTEX_WAIT_BITSET_PRIVATE, 108, {tv_sec=529, tv_nsec=375095377}, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3197 close(5 <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_AUDIT_CONTROL <unfinished ...>
3194 <... close resumed>) = 0
3190 <... close resumed>) = 0
3159 close(67 <unfinished ...>
3118 close(64 <unfinished ...>
3197 <... close resumed>) = 0
3195 <... prctl resumed>) = 0
3194 openat(5, "gid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3190 close(87 <unfinished ...>
3197 mount("/oldroot/dev/tty", "/newroot/dev/tty", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_SETFCAP <unfinished ...>
3159 <... close resumed>) = 0
3118 <... close resumed>) = 0
3195 <... prctl resumed>) = 0
3197 <... mount resumed>) = 0
3194 <... openat resumed>) = 6
3190 <... close resumed>) = 0
3159 close(75 <unfinished ...>
3197 readlink("/newroot" <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_MAC_OVERRIDE <unfinished ...>
3194 write(6, "1000 0 1\n", 9 <unfinished ...>
3190 getdents64(5 <unfinished ...>
3118 close(57 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3195 <... prctl resumed>) = 0
3194 <... write resumed>) = 9
3190 <... getdents64 resumed>, 0x5602df9e8170 /* 0 entries */, 32768) = 0
3159 <... close resumed>) = 0
3197 readlink("/newroot/dev" <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_MAC_ADMIN <unfinished ...>
3194 close(6 <unfinished ...>
3190 close(5 <unfinished ...>
3118 <... close resumed>) = 0
3159 wait4(3172 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3195 <... prctl resumed>) = 0
3194 <... close resumed>) = 0
3190 <... close resumed>) = 0
3197 readlink("/newroot/dev/tty" <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_SYSLOG <unfinished ...>
3194 close(5 <unfinished ...>
3118 futex(0x7f715c002370, FUTEX_WAIT_BITSET_PRIVATE, 3, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3190 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3195 <... prctl resumed>) = 0
3194 <... close resumed>) = 0
3159 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 3172
3197 openat(AT_FDCWD, "/newroot/dev/tty", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_WAKE_ALARM <unfinished ...>
3194 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3190 <... prctl resumed>) = 0
3197 <... openat resumed>) = 5
3195 <... prctl resumed>) = 0
3159 futex(0x7f7160002370, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3197 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_BLOCK_SUSPEND <unfinished ...>
3194 <... capset resumed>) = 0
3190 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x5602df9e6eb0} <unfinished ...>
3197 <... readlink resumed>, "/newroot/dev/tty", 99) = 16
3195 <... prctl resumed>) = 0
3194 prctl(PR_SET_DUMPABLE, SUID_DUMP_USER <unfinished ...>
3159 <... futex resumed>) = 1
3117 <... futex resumed>) = 0
3197 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_AUDIT_READ <unfinished ...>
3194 <... prctl resumed>) = 0
3159 futex(0x7f71ad2278b0, FUTEX_WAIT_BITSET_PRIVATE, 108, {tv_sec=529, tv_nsec=375395580}, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3195 <... prctl resumed>) = 0
3197 <... openat resumed>) = 6
3117 close(71 <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_PERFMON <unfinished ...>
3194 read(83 <unfinished ...>
3197 read(6 <unfinished ...>
3195 <... prctl resumed>) = 0
3117 <... close resumed>) = 0
3195 prctl(PR_CAPBSET_DROP, CAP_BPF <unfinished ...>
3194 <... read resumed>, " \0\0\0\4\0\0\0\25\0\0f>\0\0\300 \0\0\0\0\0\0\0005\0\0\1\0\0\0@"..., 4079) = 840
3195 <... prctl resumed>) = 0
3117 close(86 <unfinished ...>
3195 prctl(PR_CAPBSET_DROP, CAP_CHECKPOINT_RESTORE <unfinished ...>
3194 read(83 <unfinished ...>
3195 <... prctl resumed>) = 0
3117 <... close resumed>) = 0
3194 <... read resumed>, "", 3239) = 0
3195 openat(3, "self", O_RDONLY|O_PATH <unfinished ...>
3194 close(83 <unfinished ...>
3117 futex(0x7f7160002370, FUTEX_WAIT_BITSET_PRIVATE, 3, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3195 <... openat resumed>) = 5
3194 <... close resumed>) = 0
3195 openat(5, "uid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3197 <... read resumed>, "625 295 259:3 / /oldroot rw,rela"..., 4079) = 3976
3194 umask(022 <unfinished ...>
3195 <... openat resumed>) = 6
3197 read(6 <unfinished ...>
3194 <... umask resumed>) = 000
3195 write(6, "1000 0 1\n", 9 <unfinished ...>
3197 <... read resumed>, "57 321 0:6 /tty /newroot/dev/tty"..., 103) = 103
3194 chdir("/" <unfinished ...>
3195 <... write resumed>) = 9
3190 <... prctl resumed>) = 0
3197 read(6 <unfinished ...>
3195 close(6 <unfinished ...>
3194 <... chdir resumed>) = 0
3197 <... read resumed>, "1939605,mode=755,inode64\n", 4080) = 25
3190 wait4(-1 <unfinished ...>
3195 <... close resumed>) = 0
3197 read(6 <unfinished ...>
3194 rt_sigprocmask(SIG_BLOCK, ~[] <unfinished ...>
3197 <... read resumed>, "", 4055) = 0
3195 openat(5, "gid_map", O_RDWR|O_CLOEXEC <unfinished ...>
3190 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 2
3197 close(6 <unfinished ...>
3194 <... rt_sigprocmask resumed>, [CHLD], 8) = 0
3195 <... openat resumed>) = 6
3197 <... close resumed>) = 0
3190 write(4, "\2\0\0\0\0\0\0\0", 8 <unfinished ...>
3194 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD <unfinished ...>
3195 write(6, "1000 0 1\n", 9 <unfinished ...>
3190 <... write resumed>) = 8
3195 <... write resumed>) = 9
3173 <... poll resumed>) = 1 ([{fd=4, revents=POLLIN}])
3197 close(5 <unfinished ...>
3195 close(6 <unfinished ...>
3190 wait4(-1 <unfinished ...>
3197 <... close resumed>) = 0
3173 read(4 <unfinished ...>
3195 <... close resumed>) = 0
3197 symlink("/proc/self/fd/0", "/newroot/dev/stdin" <unfinished ...>
3190 <... wait4 resumed>, 0x7ffc7d26e7f4, 0, NULL) = -1 ECHILD (No child processes)
3173 <... read resumed>, "\2\0\0\0\0\0\0\0", 8) = 8
3197 <... symlink resumed>) = 0
3195 close(5 <unfinished ...>
3197 symlink("/proc/self/fd/1", "/newroot/dev/stdout" <unfinished ...>
3195 <... close resumed>) = 0
3195 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3194 <... clone resumed>, child_tidptr=0x7f2ebea38a10) = 2
3206 set_robust_list(0x7f2ebea38a20, 24 <unfinished ...>
3197 <... symlink resumed>) = 0
3195 <... capset resumed>) = 0
3190 exit_group(1 <unfinished ...>
3173 exit_group(1 <unfinished ...>
3206 <... set_robust_list resumed>) = 0
3197 symlink("/proc/self/fd/2", "/newroot/dev/stderr" <unfinished ...>
3195 prctl(PR_SET_DUMPABLE, SUID_DUMP_USER <unfinished ...>
3194 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3190 <... exit_group resumed>) = ?
3173 <... exit_group resumed>) = ?
3206 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3197 <... symlink resumed>) = 0
3195 <... prctl resumed>) = 0
3194 <... rt_sigprocmask resumed>, NULL, 8) = 0
3206 <... rt_sigprocmask resumed>, NULL, 8) = 0
3197 symlink("/proc/self/fd", "/newroot/dev/fd" <unfinished ...>
3195 read(56 <unfinished ...>
3194 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3206 close(3 <unfinished ...>
3197 <... symlink resumed>) = 0
3195 <... read resumed>, " \0\0\0\4\0\0\0\25\0\0f>\0\0\300 \0\0\0\0\0\0\0005\0\0\1\0\0\0@"..., 4079) = 840
3206 <... close resumed>) = 0
3197 symlink("/proc/kcore", "/newroot/dev/core" <unfinished ...>
3194 <... capset resumed>) = 0
3206 rt_sigprocmask(SIG_UNBLOCK, [CHLD] <unfinished ...>
3195 read(56 <unfinished ...>
3197 <... symlink resumed>) = 0
3194 openat(3, "self/fd", O_RDONLY|O_NOCTTY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY <unfinished ...>
3206 <... rt_sigprocmask resumed>, NULL, 8) = 0
3197 mkdir("/newroot/dev/shm", 0755 <unfinished ...>
3195 <... read resumed>, "", 3239) = 0
3173 +++ exited with 1 +++
3206 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3194 <... openat resumed>) = 5
3152 <... poll resumed>) = ? ERESTART_RESTARTBLOCK (Interrupted by signal)
3195 close(56 <unfinished ...>
3206 <... prctl resumed>) = 0
3197 <... mkdir resumed>) = 0
3194 fstat(5 <unfinished ...>
3195 <... close resumed>) = 0
3152 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=3173, si_uid=1000, si_status=1, si_utime=0, si_stime=0} ---
3206 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x5646a0511eb0} <unfinished ...>
3197 mkdir("/newroot/dev/pts", 0755 <unfinished ...>
3195 umask(022 <unfinished ...>
3194 <... fstat resumed>, {st_mode=S_IFDIR|0500, st_size=21, ...}) = 0
3197 <... mkdir resumed>) = 0
3195 <... umask resumed>) = 000
3152 restart_syscall(<... resuming interrupted poll ...> <unfinished ...>
3197 mount("devpts", "/newroot/dev/pts", "devpts", MS_NOSUID|MS_NOEXEC, "newinstance,ptmxmode=0666,mode=6"... <unfinished ...>
3195 chdir("/" <unfinished ...>
3194 fcntl(5, F_GETFL <unfinished ...>
3195 <... chdir resumed>) = 0
3194 <... fcntl resumed>) = 0x18800 (flags O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY)
3195 rt_sigprocmask(SIG_BLOCK, ~[] <unfinished ...>
3194 fcntl(5, F_SETFD, FD_CLOEXEC <unfinished ...>
3195 <... rt_sigprocmask resumed>, [CHLD], 8) = 0
3197 <... mount resumed>) = 0
3194 <... fcntl resumed>) = 0
3152 <... restart_syscall resumed>) = 2
3197 symlink("pts/ptmx", "/newroot/dev/ptmx" <unfinished ...>
3195 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD <unfinished ...>
3194 getdents64(5 <unfinished ...>
3152 read(94 <unfinished ...>
3197 <... symlink resumed>) = 0
3152 <... read resumed>, "", 32) = 0
3197 newfstatat(AT_FDCWD, "/oldroot/etc/ld.so.cache" <unfinished ...>
3190 +++ exited with 1 +++
3152 ioctl(104, FIONBIO, [0] <unfinished ...>
3197 <... newfstatat resumed>, {st_mode=S_IFREG|0644, st_size=162207, ...}, 0) = 0
3194 <... getdents64 resumed>, 0x5646a05131e0 /* 23 entries */, 32768) = 552
3152 <... ioctl resumed>) = 0
3197 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3194 close(3 <unfinished ...>
3152 read(104 <unfinished ...>
3197 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=80, ...}, 0) = 0
3194 <... close resumed>) = 0
3152 <... read resumed>, "", 42) = 0
3206 <... prctl resumed>) = 0
3197 newfstatat(AT_FDCWD, "/newroot/etc" <unfinished ...>
3194 close(14 <unfinished ...>
3206 execve("/bin/true", ["/bin/true"], 0x5646a0510490 /* 3 vars */ <unfinished ...>
3197 <... newfstatat resumed>, 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3152 close(104 <unfinished ...>
3207 set_robust_list(0x7f7f728bea20, 24 <unfinished ...>
3206 <... execve resumed>) = -1 ENOENT (No such file or directory)
3197 mkdir("/newroot/etc", 0700 <unfinished ...>
3195 <... clone resumed>, child_tidptr=0x7f7f728bea10) = 2
3194 <... close resumed>) = 0
3207 <... set_robust_list resumed>) = 0
3152 <... close resumed>) = 0
3197 <... mkdir resumed>) = 0
3206 write(2, "bwrap: ", 7 <unfinished ...>
3195 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3194 close(16 <unfinished ...>
3152 close(94 <unfinished ...>
3197 newfstatat(AT_FDCWD, "/newroot/etc/ld.so.cache" <unfinished ...>
3207 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3206 <... write resumed>) = 7
3195 <... rt_sigprocmask resumed>, NULL, 8) = 0
3194 <... close resumed>) = 0
3152 <... close resumed>) = 0
3207 <... rt_sigprocmask resumed>, NULL, 8) = 0
3197 <... newfstatat resumed>, 0x7ffec271b790, 0) = -1 ENOENT (No such file or directory)
3195 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3194 close(20 <unfinished ...>
3175 <... poll resumed>) = 1 ([{fd=69, revents=POLLIN}])
3152 wait4(3173 <unfinished ...>
3207 close(3 <unfinished ...>
3206 write(2, "execvp /bin/true", 16 <unfinished ...>
3197 creat("/newroot/etc/ld.so.cache", 0444 <unfinished ...>
3195 <... capset resumed>) = 0
3194 <... close resumed>) = 0
3207 <... close resumed>) = 0
3206 <... write resumed>) = 16
3195 openat(3, "self/fd", O_RDONLY|O_NOCTTY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY <unfinished ...>
3175 read(69 <unfinished ...>
3197 <... creat resumed>) = 5
3207 rt_sigprocmask(SIG_UNBLOCK, [CHLD] <unfinished ...>
3206 write(2, ": No such file or directory", 27 <unfinished ...>
3194 close(22 <unfinished ...>
3175 <... read resumed>, "bwrap: execvp /bin/true", 32) = 23
3197 close(5 <unfinished ...>
3195 <... openat resumed>) = 5
3152 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 3173
3207 <... rt_sigprocmask resumed>, NULL, 8) = 0
3206 <... write resumed>) = 27
3197 <... close resumed>) = 0
3195 fstat(5 <unfinished ...>
3194 <... close resumed>) = 0
3175 read(69 <unfinished ...>
3207 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3206 write(2, "\n", 1 <unfinished ...>
3197 mount("/oldroot/etc/ld.so.cache", "/newroot/etc/ld.so.cache", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3195 <... fstat resumed>, {st_mode=S_IFDIR|0500, st_size=21, ...}) = 0
3194 close(35 <unfinished ...>
3152 futex(0x7f7154002370, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3175 <... read resumed>, ": No such", 9) = 9
3207 <... prctl resumed>) = 0
3206 <... write resumed>) = 1
3197 <... mount resumed>) = 0
3195 fcntl(5, F_GETFL <unfinished ...>
3194 <... close resumed>) = 0
3152 <... futex resumed>) = 1
3175 read(69 <unfinished ...>
3119 <... futex resumed>) = 0
3207 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x55f9f7a3deb0} <unfinished ...>
3197 readlink("/newroot" <unfinished ...>
3195 <... fcntl resumed>) = 0x18800 (flags O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY)
3194 close(37 <unfinished ...>
3175 <... read resumed>, " file or directory\n", 32) = 19
3152 futex(0x7f71ad2278b0, FUTEX_WAIT_BITSET_PRIVATE, 108, {tv_sec=529, tv_nsec=376485234}, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3206 exit_group(1 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3195 fcntl(5, F_SETFD, FD_CLOEXEC <unfinished ...>
3194 <... close resumed>) = 0
3175 read(69 <unfinished ...>
3119 close(88 <unfinished ...>
3206 <... exit_group resumed>) = ?
3197 readlink("/newroot/etc" <unfinished ...>
3195 <... fcntl resumed>) = 0
3194 close(42 <unfinished ...>
3175 <... read resumed>, 0x7f70d4000ee0, 42) = -1 EAGAIN (Resource temporarily unavailable)
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3194 <... close resumed>) = 0
3119 <... close resumed>) = 0
3197 readlink("/newroot/etc/ld.so.cache" <unfinished ...>
3195 getdents64(5 <unfinished ...>
3194 close(45 <unfinished ...>
3175 poll([{fd=65, events=POLLIN}, {fd=69, events=POLLIN}], 2, -1 <unfinished ...>
3119 close(84 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3194 <... close resumed>) = 0
3197 openat(AT_FDCWD, "/newroot/etc/ld.so.cache", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3119 <... close resumed>) = 0
3194 close(54 <unfinished ...>
3197 <... openat resumed>) = 5
3194 <... close resumed>) = 0
3119 futex(0x7f7154002370, FUTEX_WAIT_BITSET_PRIVATE, 3, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3206 +++ exited with 1 +++
3197 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3207 <... prctl resumed>) = 0
3195 <... getdents64 resumed>, 0x55f9f7a3f2e0 /* 23 entries */, 32768) = 552
3194 close(55 <unfinished ...>
3197 <... readlink resumed>, "/newroot/etc/ld.so.cache", 99) = 24
3207 execve("/bin/true", ["/bin/true"], 0x55f9f7a3c490 /* 3 vars */ <unfinished ...>
3195 close(3 <unfinished ...>
3197 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3194 <... close resumed>) = 0
3207 <... execve resumed>) = -1 ENOENT (No such file or directory)
3195 <... close resumed>) = 0
3197 <... openat resumed>) = 6
3194 close(56 <unfinished ...>
3195 close(14 <unfinished ...>
3197 read(6 <unfinished ...>
3194 <... close resumed>) = 0
3207 write(2, "bwrap: ", 7 <unfinished ...>
3195 <... close resumed>) = 0
3194 close(64 <unfinished ...>
3207 <... write resumed>) = 7
3195 close(16 <unfinished ...>
3194 <... close resumed>) = 0
3195 <... close resumed>) = 0
3178 <... poll resumed>) = 1 ([{fd=91, revents=POLLIN}])
3207 write(2, "execvp /bin/true", 16 <unfinished ...>
3195 close(20 <unfinished ...>
3194 close(71 <unfinished ...>
3207 <... write resumed>) = 16
3195 <... close resumed>) = 0
3178 read(91 <unfinished ...>
3207 write(2, ": No such file or directory", 27 <unfinished ...>
3195 close(22 <unfinished ...>
3194 <... close resumed>) = 0
3207 <... write resumed>) = 27
3197 <... read resumed>, "625 295 259:3 / /oldroot rw,rela"..., 4079) = 3976
3195 <... close resumed>) = 0
3178 <... read resumed>, "bwrap: execvp /bin/true", 32) = 23
3207 write(2, "\n", 1 <unfinished ...>
3197 read(6 <unfinished ...>
3195 close(35 <unfinished ...>
3194 close(87 <unfinished ...>
3207 <... write resumed>) = 1
3197 <... read resumed>, "57 321 0:6 /tty /newroot/dev/tty"..., 103) = 103
3195 <... close resumed>) = 0
3178 read(91 <unfinished ...>
3197 read(6 <unfinished ...>
3195 close(37 <unfinished ...>
3194 <... close resumed>) = 0
3197 <... read resumed>, "1939605,mode=755,inode64\n58 321 "..., 4080) = 225
3195 <... close resumed>) = 0
3178 <... read resumed>, ": No such", 9) = 9
3207 exit_group(1 <unfinished ...>
3197 read(6 <unfinished ...>
3195 close(42 <unfinished ...>
3194 close(88 <unfinished ...>
3207 <... exit_group resumed>) = ?
3197 <... read resumed>, "", 3855) = 0
3195 <... close resumed>) = 0
3178 read(91 <unfinished ...>
3197 close(6 <unfinished ...>
3195 close(45 <unfinished ...>
3194 <... close resumed>) = 0
3197 <... close resumed>) = 0
3195 <... close resumed>) = 0
3178 <... read resumed>, " file or directory\n", 32) = 19
3195 close(54 <unfinished ...>
3194 getdents64(5 <unfinished ...>
3195 <... close resumed>) = 0
3178 read(91 <unfinished ...>
3197 mount("none", "/newroot/etc/ld.so.cache", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3195 close(55 <unfinished ...>
3194 <... getdents64 resumed>, 0x5646a05131e0 /* 0 entries */, 32768) = 0
3197 <... mount resumed>) = 0
3195 <... close resumed>) = 0
3178 <... read resumed>, 0x7f70c8000c60, 42) = -1 EAGAIN (Resource temporarily unavailable)
3197 close(5 <unfinished ...>
3195 close(64 <unfinished ...>
3194 close(5 <unfinished ...>
3197 <... close resumed>) = 0
3178 poll([{fd=81, events=POLLIN}, {fd=91, events=POLLIN}], 2, -1 <unfinished ...>
3197 newfstatat(AT_FDCWD, "/oldroot/nix/store" <unfinished ...>
3195 <... close resumed>) = 0
3194 <... close resumed>) = 0
3195 close(71 <unfinished ...>
3194 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3195 <... close resumed>) = 0
3194 <... prctl resumed>) = 0
3197 <... newfstatat resumed>, 0x7ffec271b940, 0) = -1 ENOENT (No such file or directory)
3195 close(83 <unfinished ...>
3207 +++ exited with 1 +++
3194 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x5646a0511eb0} <unfinished ...>
3197 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3195 <... close resumed>) = 0
3197 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=100, ...}, 0) = 0
3195 close(87 <unfinished ...>
3197 newfstatat(AT_FDCWD, "/newroot/tmp-home", 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3195 <... close resumed>) = 0
3197 mkdir("/newroot/tmp-home", 0755 <unfinished ...>
3195 close(88 <unfinished ...>
3197 <... mkdir resumed>) = 0
3195 <... close resumed>) = 0
3197 mount("tmpfs", "/newroot/tmp-home", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3195 getdents64(5, 0x55f9f7a3f2e0 /* 0 entries */, 32768) = 0
3195 close(5 <unfinished ...>
3197 <... mount resumed>) = 0
3195 <... close resumed>) = 0
3197 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3194 <... prctl resumed>) = 0
3195 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3197 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=120, ...}, 0) = 0
3194 wait4(-1 <unfinished ...>
3195 <... prctl resumed>) = 0
3197 newfstatat(AT_FDCWD, "/newroot/tmp-run" <unfinished ...>
3195 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=105, filter=0x55f9f7a3deb0} <unfinished ...>
3194 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 2
3197 <... newfstatat resumed>, 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3194 write(4, "\2\0\0\0\0\0\0\0", 8 <unfinished ...>
3197 mkdir("/newroot/tmp-run", 0755 <unfinished ...>
3194 <... write resumed>) = 8
3197 <... mkdir resumed>) = 0
3194 wait4(-1 <unfinished ...>
3181 <... poll resumed>) = 1 ([{fd=4, revents=POLLIN}])
3197 mount("tmpfs", "/newroot/tmp-run", "tmpfs", MS_NOSUID|MS_NODEV, "mode=0755" <unfinished ...>
3194 <... wait4 resumed>, 0x7ffc0c019734, 0, NULL) = -1 ECHILD (No child processes)
3181 read(4, "\2\0\0\0\0\0\0\0", 8) = 8
3197 <... mount resumed>) = 0
3197 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3194 exit_group(1 <unfinished ...>
3181 exit_group(1 <unfinished ...>
3197 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=140, ...}, 0) = 0
3194 <... exit_group resumed>) = ?
3181 <... exit_group resumed>) = ?
3197 symlink("/usr/lib", "/newroot/lib") = 0
3197 newfstatat(AT_FDCWD, "/newroot", {st_mode=S_IFDIR|0755, st_size=160, ...}, 0) = 0
3197 symlink("/usr/lib", "/newroot/lib64" <unfinished ...>
3195 <... prctl resumed>) = 0
3197 <... symlink resumed>) = 0
3195 wait4(-1 <unfinished ...>
3197 newfstatat(AT_FDCWD, "/oldroot/etc/fonts/conf.d" <unfinished ...>
3195 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 2
3175 <... poll resumed>) = 2 ([{fd=65, revents=POLLHUP}, {fd=69, revents=POLLHUP}])
3197 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3195 write(4, "\2\0\0\0\0\0\0\0", 8 <unfinished ...>
3181 +++ exited with 1 +++
3197 newfstatat(AT_FDCWD, "/newroot" <unfinished ...>
3175 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=3181, si_uid=1000, si_status=1, si_utime=0, si_stime=0} ---
3195 <... write resumed>) = 8
3197 <... newfstatat resumed>, {st_mode=S_IFDIR|0755, st_size=180, ...}, 0) = 0
3195 wait4(-1 <unfinished ...>
3184 <... poll resumed>) = 1 ([{fd=4, revents=POLLIN}])
3175 read(65 <unfinished ...>
3197 newfstatat(AT_FDCWD, "/newroot/etc" <unfinished ...>
3195 <... wait4 resumed>, 0x7ffca3b441f4, 0, NULL) = -1 ECHILD (No child processes)
3197 <... newfstatat resumed>, {st_mode=S_IFDIR|0700, st_size=60, ...}, 0) = 0
3184 read(4 <unfinished ...>
3175 <... read resumed>, "", 32) = 0
3197 newfstatat(AT_FDCWD, "/newroot/etc/fonts" <unfinished ...>
3184 <... read resumed>, "\2\0\0\0\0\0\0\0", 8) = 8
3197 <... newfstatat resumed>, 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3194 +++ exited with 1 +++
3175 ioctl(69, FIONBIO, [0] <unfinished ...>
3197 mkdir("/newroot/etc/fonts", 0700 <unfinished ...>
3195 exit_group(1 <unfinished ...>
3184 exit_group(1 <unfinished ...>
3175 <... ioctl resumed>) = 0
3195 <... exit_group resumed>) = ?
3197 <... mkdir resumed>) = 0
3184 <... exit_group resumed>) = ?
3175 read(69 <unfinished ...>
3197 newfstatat(AT_FDCWD, "/newroot/etc/fonts/conf.d" <unfinished ...>
3175 <... read resumed>, "", 42) = 0
3197 <... newfstatat resumed>, 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3175 close(69 <unfinished ...>
3197 mkdir("/newroot/etc/fonts/conf.d", 0755) = 0
3175 <... close resumed>) = 0
3197 mount("/oldroot/etc/fonts/conf.d", "/newroot/etc/fonts/conf.d", NULL, MS_BIND|MS_REC|MS_SILENT, NULL <unfinished ...>
3175 close(65 <unfinished ...>
3197 <... mount resumed>) = 0
3175 <... close resumed>) = 0
3197 readlink("/newroot" <unfinished ...>
3184 +++ exited with 1 +++
3178 <... poll resumed>) = ? ERESTART_RESTARTBLOCK (Interrupted by signal)
3175 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=3184, si_uid=1000, si_status=1, si_utime=0, si_stime=0} ---
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3178 restart_syscall(<... resuming interrupted poll ...> <unfinished ...>
3197 readlink("/newroot/etc" <unfinished ...>
3175 wait4(3181 <unfinished ...>
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/etc/fonts", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/etc/fonts/conf.d" <unfinished ...>
3175 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 3181
3197 <... readlink resumed>, 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 openat(AT_FDCWD, "/newroot/etc/fonts/conf.d", O_RDONLY|O_CLOEXEC|O_PATH <unfinished ...>
3175 futex(0x7f7164002370, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3178 <... restart_syscall resumed>) = 2
3197 <... openat resumed>) = 5
3178 read(81 <unfinished ...>
3175 <... futex resumed>) = 1
3197 readlink("/oldroot/proc/self/fd/5" <unfinished ...>
3116 <... futex resumed>) = 0
3178 <... read resumed>, "", 32) = 0
3195 +++ exited with 1 +++
3175 futex(0x7f71ad2278b0, FUTEX_WAIT_BITSET_PRIVATE, 108, {tv_sec=529, tv_nsec=377871123}, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3197 <... readlink resumed>, "/newroot/etc/fonts/conf.d", 99) = 25
3178 ioctl(91, FIONBIO, [0] <unfinished ...>
3197 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC <unfinished ...>
3116 close(83 <unfinished ...>
3178 <... ioctl resumed>) = 0
3197 <... openat resumed>) = 6
3178 read(91 <unfinished ...>
3197 read(6 <unfinished ...>
3116 <... close resumed>) = 0
3178 <... read resumed>, "", 42) = 0
3116 close(72 <unfinished ...>
3178 close(91) = 0
3116 <... close resumed>) = 0
3178 close(81 <unfinished ...>
3116 futex(0x7f7164002370, FUTEX_WAIT_BITSET_PRIVATE, 3, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3178 <... close resumed>) = 0
3178 wait4(3184 <unfinished ...>
3197 <... read resumed>, "625 295 259:3 / /oldroot rw,rela"..., 4079) = 3976
3197 read(6, "57 321 0:6 /tty /newroot/dev/tty"..., 103) = 103
3197 read(6 <unfinished ...>
3178 <... wait4 resumed>, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 3184
3197 <... read resumed>, "1939605,mode=755,inode64\n58 321 "..., 4080) = 561
3178 futex(0x7f7168002160, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3197 read(6, "", 3519) = 0
3178 <... futex resumed>) = 1
3115 <... futex resumed>) = 0
3197 close(6 <unfinished ...>
3178 futex(0x7f71ad2278b0, FUTEX_WAIT_BITSET_PRIVATE, 108, {tv_sec=529, tv_nsec=378117756}, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3197 <... close resumed>) = 0
3115 close(56 <unfinished ...>
3197 mount("none", "/newroot/etc/fonts/conf.d", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL <unfinished ...>
3115 <... close resumed>) = 0
3197 <... mount resumed>) = 0
3115 close(85 <unfinished ...>
3197 close(5 <unfinished ...>
3115 <... close resumed>) = 0
3197 <... close resumed>) = 0
3197 newfstatat(AT_FDCWD, "/oldroot/etc/fonts/fonts.conf" <unfinished ...>
3115 futex(0x7f7168002160, FUTEX_WAIT_BITSET_PRIVATE, 3, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3197 <... newfstatat resumed>, {st_mode=S_IFREG|0644, st_size=2700, ...}, 0) = 0
3197 newfstatat(AT_FDCWD, "/newroot", {st_mode=S_IFDIR|0755, st_size=180, ...}, 0) = 0
3197 newfstatat(AT_FDCWD, "/newroot/etc", {st_mode=S_IFDIR|0700, st_size=80, ...}, 0) = 0
3197 newfstatat(AT_FDCWD, "/newroot/etc/fonts", {st_mode=S_IFDIR|0700, st_size=60, ...}, 0) = 0
3197 newfstatat(AT_FDCWD, "/newroot/etc/fonts/fonts.conf", 0x7ffec271b790, 0) = -1 ENOENT (No such file or directory)
3197 creat("/newroot/etc/fonts/fonts.conf", 0444) = 5
3197 close(5) = 0
3197 mount("/oldroot/etc/fonts/fonts.conf", "/newroot/etc/fonts/fonts.conf", NULL, MS_BIND|MS_REC|MS_SILENT, NULL) = 0
3197 readlink("/newroot", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/etc", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/etc/fonts", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/etc/fonts/fonts.conf", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 openat(AT_FDCWD, "/newroot/etc/fonts/fonts.conf", O_RDONLY|O_CLOEXEC|O_PATH) = 5
3197 readlink("/oldroot/proc/self/fd/5", "/newroot/etc/fonts/fonts.conf", 99) = 29
3197 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC) = 6
3197 read(6, "625 295 259:3 / /oldroot rw,rela"..., 4079) = 3976
3197 read(6, "57 321 0:6 /tty /newroot/dev/tty"..., 103) = 103
3197 read(6, "1939605,mode=755,inode64\n58 321 "..., 4080) = 686
3197 read(6, "", 3394) = 0
3197 close(6) = 0
3197 mount("none", "/newroot/etc/fonts/fonts.conf", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL) = 0
3197 close(5) = 0
3197 newfstatat(AT_FDCWD, "/oldroot/home/albert/.cache/fontconfig", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3197 newfstatat(AT_FDCWD, "/newroot", {st_mode=S_IFDIR|0755, st_size=180, ...}, 0) = 0
3197 newfstatat(AT_FDCWD, "/newroot/home", 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3197 mkdir("/newroot/home", 0700) = 0
3197 newfstatat(AT_FDCWD, "/newroot/home/albert", 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3197 mkdir("/newroot/home/albert", 0700) = 0
3197 newfstatat(AT_FDCWD, "/newroot/home/albert/.cache", 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3197 mkdir("/newroot/home/albert/.cache", 0700) = 0
3197 newfstatat(AT_FDCWD, "/newroot/home/albert/.cache/fontconfig", 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3197 mkdir("/newroot/home/albert/.cache/fontconfig", 0755) = 0
3197 mount("/oldroot/home/albert/.cache/fontconfig", "/newroot/home/albert/.cache/fontconfig", NULL, MS_BIND|MS_REC|MS_SILENT, NULL) = 0
3197 readlink("/newroot", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/home", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/home/albert", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/home/albert/.cache", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/home/albert/.cache/fontconfig", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 openat(AT_FDCWD, "/newroot/home/albert/.cache/fontconfig", O_RDONLY|O_CLOEXEC|O_PATH) = 5
3197 readlink("/oldroot/proc/self/fd/5", "/newroot/home/albert/.cache/font"..., 99) = 38
3197 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC) = 6
3197 read(6, "625 295 259:3 / /oldroot rw,rela"..., 4079) = 3976
3197 read(6, "57 321 0:6 /tty /newroot/dev/tty"..., 103) = 103
3197 read(6, "1939605,mode=755,inode64\n58 321 "..., 4080) = 829
3197 read(6, "", 3251) = 0
3197 close(6) = 0
3197 mount("none", "/newroot/home/albert/.cache/fontconfig", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL) = 0
3197 close(5) = 0
3197 newfstatat(AT_FDCWD, "/oldroot/home/albert/.local/share/fonts", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3197 newfstatat(AT_FDCWD, "/newroot", {st_mode=S_IFDIR|0755, st_size=200, ...}, 0) = 0
3197 newfstatat(AT_FDCWD, "/newroot/home", {st_mode=S_IFDIR|0700, st_size=60, ...}, 0) = 0
3197 newfstatat(AT_FDCWD, "/newroot/home/albert", {st_mode=S_IFDIR|0700, st_size=60, ...}, 0) = 0
3197 newfstatat(AT_FDCWD, "/newroot/home/albert/.local", 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3197 mkdir("/newroot/home/albert/.local", 0700) = 0
3197 newfstatat(AT_FDCWD, "/newroot/home/albert/.local/share", 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3197 mkdir("/newroot/home/albert/.local/share", 0700) = 0
3197 newfstatat(AT_FDCWD, "/newroot/home/albert/.local/share/fonts", 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3197 mkdir("/newroot/home/albert/.local/share/fonts", 0755) = 0
3197 mount("/oldroot/home/albert/.local/share/fonts", "/newroot/home/albert/.local/share/fonts", NULL, MS_BIND|MS_REC|MS_SILENT, NULL) = 0
3197 readlink("/newroot", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/home", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/home/albert", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/home/albert/.local", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/home/albert/.local/share", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/home/albert/.local/share/fonts", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 openat(AT_FDCWD, "/newroot/home/albert/.local/share/fonts", O_RDONLY|O_CLOEXEC|O_PATH) = 5
3197 readlink("/oldroot/proc/self/fd/5", "/newroot/home/albert/.local/shar"..., 99) = 39
3197 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC) = 6
3197 read(6, "625 295 259:3 / /oldroot rw,rela"..., 4079) = 3976
3197 read(6, "57 321 0:6 /tty /newroot/dev/tty"..., 103) = 103
3197 read(6, "1939605,mode=755,inode64\n58 321 "..., 4080) = 974
3197 read(6, "", 3106) = 0
3197 close(6) = 0
3197 mount("none", "/newroot/home/albert/.local/share/fonts", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL) = 0
3197 close(5) = 0
3197 newfstatat(AT_FDCWD, "/oldroot/var/cache/fontconfig", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3197 newfstatat(AT_FDCWD, "/newroot", {st_mode=S_IFDIR|0755, st_size=200, ...}, 0) = 0
3197 newfstatat(AT_FDCWD, "/newroot/var", 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3197 mkdir("/newroot/var", 0700) = 0
3197 newfstatat(AT_FDCWD, "/newroot/var/cache", 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3197 mkdir("/newroot/var/cache", 0700) = 0
3197 newfstatat(AT_FDCWD, "/newroot/var/cache/fontconfig", 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3197 mkdir("/newroot/var/cache/fontconfig", 0755) = 0
3197 mount("/oldroot/var/cache/fontconfig", "/newroot/var/cache/fontconfig", NULL, MS_BIND|MS_REC|MS_SILENT, NULL) = 0
3197 readlink("/newroot", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/var", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/var/cache", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/var/cache/fontconfig", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 openat(AT_FDCWD, "/newroot/var/cache/fontconfig", O_RDONLY|O_CLOEXEC|O_PATH) = 5
3197 readlink("/oldroot/proc/self/fd/5", "/newroot/var/cache/fontconfig", 99) = 29
3197 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC) = 6
3197 read(6, "625 295 259:3 / /oldroot rw,rela"..., 4079) = 3976
3197 read(6, "57 321 0:6 /tty /newroot/dev/tty"..., 103) = 103
3197 read(6, "1939605,mode=755,inode64\n58 321 "..., 4080) = 1099
3197 read(6, "", 2981) = 0
3197 close(6) = 0
3197 mount("none", "/newroot/var/cache/fontconfig", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL) = 0
3197 close(5) = 0
3197 newfstatat(AT_FDCWD, "/oldroot/home/albert/.cache/glycin/usr/lib/glycin-loaders/2+/glycin-svg", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0
3197 newfstatat(AT_FDCWD, "/newroot", {st_mode=S_IFDIR|0755, st_size=220, ...}, 0) = 0
3197 newfstatat(AT_FDCWD, "/newroot/home", {st_mode=S_IFDIR|0700, st_size=60, ...}, 0) = 0
3197 newfstatat(AT_FDCWD, "/newroot/home/albert", {st_mode=S_IFDIR|0700, st_size=80, ...}, 0) = 0
3197 newfstatat(AT_FDCWD, "/newroot/home/albert/.cache", {st_mode=S_IFDIR|0700, st_size=60, ...}, 0) = 0
3197 newfstatat(AT_FDCWD, "/newroot/home/albert/.cache/glycin", 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3197 mkdir("/newroot/home/albert/.cache/glycin", 0700) = 0
3197 newfstatat(AT_FDCWD, "/newroot/home/albert/.cache/glycin/usr", 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3197 mkdir("/newroot/home/albert/.cache/glycin/usr", 0700) = 0
3197 newfstatat(AT_FDCWD, "/newroot/home/albert/.cache/glycin/usr/lib", 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3197 mkdir("/newroot/home/albert/.cache/glycin/usr/lib", 0700) = 0
3197 newfstatat(AT_FDCWD, "/newroot/home/albert/.cache/glycin/usr/lib/glycin-loaders", 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3197 mkdir("/newroot/home/albert/.cache/glycin/usr/lib/glycin-loaders", 0700) = 0
3197 newfstatat(AT_FDCWD, "/newroot/home/albert/.cache/glycin/usr/lib/glycin-loaders/2+", 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3197 mkdir("/newroot/home/albert/.cache/glycin/usr/lib/glycin-loaders/2+", 0700) = 0
3197 newfstatat(AT_FDCWD, "/newroot/home/albert/.cache/glycin/usr/lib/glycin-loaders/2+/glycin-svg", 0x7ffec271b7a0, 0) = -1 ENOENT (No such file or directory)
3197 mkdir("/newroot/home/albert/.cache/glycin/usr/lib/glycin-loaders/2+/glycin-svg", 0755) = 0
3197 mount("/oldroot/home/albert/.cache/glycin/usr/lib/glycin-loaders/2+/glycin-svg", "/newroot/home/albert/.cache/glycin/usr/lib/glycin-loaders/2+/glycin-svg", NULL, MS_BIND|MS_REC|MS_SILENT, NULL) = 0
3197 readlink("/newroot", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/home", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/home/albert", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/home/albert/.cache", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/home/albert/.cache/glycin", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/home/albert/.cache/glycin/usr", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/home/albert/.cache/glycin/usr/lib", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/home/albert/.cache/glycin/usr/lib/glycin-loaders", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/home/albert/.cache/glycin/usr/lib/glycin-loaders/2+", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 readlink("/newroot/home/albert/.cache/glycin/usr/lib/glycin-loaders/2+/glycin-svg", 0x7ffec27192c0, 1023) = -1 EINVAL (Invalid argument)
3197 openat(AT_FDCWD, "/newroot/home/albert/.cache/glycin/usr/lib/glycin-loaders/2+/glycin-svg", O_RDONLY|O_CLOEXEC|O_PATH) = 5
3197 readlink("/oldroot/proc/self/fd/5", "/newroot/home/albert/.cache/glyc"..., 99) = 71
3197 openat(3, "self/mountinfo", O_RDONLY|O_CLOEXEC) = 6
3197 read(6, "625 295 259:3 / /oldroot rw,rela"..., 4079) = 3976
3197 read(6, "57 321 0:6 /tty /newroot/dev/tty"..., 103) = 103
3197 read(6, "1939605,mode=755,inode64\n58 321 "..., 4080) = 1308
3197 read(6, "", 2772) = 0
3197 close(6) = 0
3197 mount("none", "/newroot/home/albert/.cache/glycin/usr/lib/glycin-loaders/2+/glycin-svg", NULL, MS_NOSUID|MS_NODEV|MS_REMOUNT|MS_BIND|MS_SILENT|MS_RELATIME, NULL) = 0
3197 close(5) = 0
3197 mount("oldroot", "oldroot", NULL, MS_REC|MS_SILENT|MS_PRIVATE, NULL) = 0
3197 umount2("oldroot", MNT_DETACH) = 0
3197 openat(AT_FDCWD, "/", O_RDONLY|O_DIRECTORY) = 5
3197 chdir("/newroot") = 0
3197 pivot_root(".", ".") = 0
3197 fchdir(5) = 0
3197 umount2(".", MNT_DETACH) = 0
3197 chdir("/") = 0
3197 close(5) = 0
3197 unshare(CLONE_NEWUSER) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_CHOWN) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_DAC_OVERRIDE) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_DAC_READ_SEARCH) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_FOWNER) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_FSETID) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_KILL) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SETGID) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SETUID) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SETPCAP) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_LINUX_IMMUTABLE) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_NET_BIND_SERVICE) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_NET_BROADCAST) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_NET_ADMIN) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_NET_RAW) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_IPC_LOCK) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_IPC_OWNER) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_MODULE) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_RAWIO) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_CHROOT) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_PTRACE) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_PACCT) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_ADMIN) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_NICE) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_RESOURCE) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_TIME) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SYS_TTY_CONFIG) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_MKNOD) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_LEASE) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_AUDIT_WRITE) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_AUDIT_CONTROL) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SETFCAP) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_MAC_OVERRIDE) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_MAC_ADMIN) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_SYSLOG) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_WAKE_ALARM) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_BLOCK_SUSPEND) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_AUDIT_READ) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_PERFMON) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_BPF) = 0
3197 prctl(PR_CAPBSET_DROP, CAP_CHECKPOINT_RESTORE) = 0
3197 openat(3, "self", O_RDONLY|O_PATH) = 5
3197 openat(5, "uid_map", O_RDWR|O_CLOEXEC) = 6
3197 write(6, "1000 0 1\n", 9) = 9
3197 close(6) = 0
3197 openat(5, "gid_map", O_RDWR|O_CLOEXEC) = 6
3197 write(6, "1000 0 1\n", 9) = 9
3197 close(6) = 0
3197 close(5) = 0
3197 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0}) = 0
3197 prctl(PR_SET_DUMPABLE, SUID_DUMP_USER) = 0
3197 read(21, " \0\0\0\4\0\0\0\25\0\0n>\0\0\300 \0\0\0\0\0\0\0005\0\0\1\0\0\0@"..., 4079) = 904
3197 read(21, "", 3175) = 0
3197 close(21) = 0
3197 umask(022) = 000
3197 chdir("/") = 0
3197 rt_sigprocmask(SIG_BLOCK, ~[], [CHLD], 8) = 0
3197 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f88ad372a10) = 2
3197 rt_sigprocmask(SIG_SETMASK, [CHLD], NULL, 8) = 0
3197 capset({version=_LINUX_CAPABILITY_VERSION_3, pid=0}, {effective=0, permitted=0, inheritable=0} <unfinished ...>
3208 set_robust_list(0x7f88ad372a20, 24 <unfinished ...>
3197 <... capset resumed>) = 0
3208 <... set_robust_list resumed>) = 0
3197 openat(3, "self/fd", O_RDONLY|O_NOCTTY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 5
3197 fstat(5, {st_mode=S_IFDIR|0500, st_size=7, ...}) = 0
3208 rt_sigprocmask(SIG_SETMASK, [CHLD] <unfinished ...>
3197 fcntl(5, F_GETFL) = 0x18800 (flags O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY)
3208 <... rt_sigprocmask resumed>, NULL, 8) = 0
3197 fcntl(5, F_SETFD, FD_CLOEXEC) = 0
3197 getdents64(5 <unfinished ...>
3208 close(3 <unfinished ...>
3197 <... getdents64 resumed>, 0x55a968e49560 /* 9 entries */, 32768) = 216
3208 <... close resumed>) = 0
3197 close(3 <unfinished ...>
3208 rt_sigprocmask(SIG_UNBLOCK, [CHLD] <unfinished ...>
3197 <... close resumed>) = 0
3208 <... rt_sigprocmask resumed>, NULL, 8) = 0
3197 close(17) = 0
3197 getdents64(5 <unfinished ...>
3208 prctl(PR_SET_PDEATHSIG, SIGKILL <unfinished ...>
3197 <... getdents64 resumed>, 0x55a968e49560 /* 0 entries */, 32768) = 0
3208 <... prctl resumed>) = 0
3197 close(5) = 0
3208 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=113, filter=0x55a968e46b30} <unfinished ...>
3197 prctl(PR_SET_PDEATHSIG, SIGKILL) = 0
3197 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, {len=113, filter=0x55a968e46b30}) = 0
3197 wait4(-1 <unfinished ...>
3208 <... prctl resumed>) = 0
3208 execve("/usr/lib/glycin-loaders/2+/glycin-svg", ["/usr/lib/glycin-loaders/2+/glyci"..., "--dbus-fd", "17"], 0x55a968e46490 /* 4 vars */) = 0
3208 brk(NULL) = 0x55819e67b000
3208 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
3208 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
3208 fstat(3, {st_mode=S_IFREG|0644, st_size=162207, ...}) = 0
3208 mmap(NULL, 162207, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fa110a09000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/librsvg-2.so.2", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=4879232, ...}) = 0
3208 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fa110a07000
3208 mmap(NULL, 4877648, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa110400000
3208 mmap(0x7fa110409000, 3244032, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9000) = 0x7fa110409000
3208 mmap(0x7fa110721000, 1110016, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x321000) = 0x7fa110721000
3208 mmap(0x7fa110830000, 487424, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x430000) = 0x7fa110830000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libgio-2.0.so.0", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=1895776, ...}) = 0
3208 mmap(NULL, 1905800, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa11022e000
3208 mmap(0x7fa110260000, 1175552, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x32000) = 0x7fa110260000
3208 mmap(0x7fa11037f000, 479232, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x151000) = 0x7fa11037f000
3208 mmap(0x7fa1103f4000, 40960, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c5000) = 0x7fa1103f4000
3208 mmap(0x7fa1103fe000, 5256, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fa1103fe000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libcairo.so.2", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=1293032, ...}) = 0
3208 mmap(NULL, 1295440, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa1108ca000
3208 mmap(0x7fa1108d8000, 995328, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe000) = 0x7fa1108d8000
3208 mmap(0x7fa1109cb000, 217088, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x101000) = 0x7fa1109cb000
3208 mmap(0x7fa110a00000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x136000) = 0x7fa110a00000
3208 mmap(0x7fa110a06000, 1104, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fa110a06000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libgobject-2.0.so.0", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=387184, ...}) = 0
3208 mmap(NULL, 388168, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa1101cf000
3208 mmap(0x7fa1101db000, 225280, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xc000) = 0x7fa1101db000
3208 mmap(0x7fa110212000, 98304, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x43000) = 0x7fa110212000
3208 mmap(0x7fa11022a000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5b000) = 0x7fa11022a000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libglib-2.0.so.0", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=1404328, ...}) = 0
3208 mmap(NULL, 1405576, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa110077000
3208 mmap(0x7fa110095000, 684032, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1e000) = 0x7fa110095000
3208 mmap(0x7fa11013c000, 589824, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xc5000) = 0x7fa11013c000
3208 mmap(0x7fa1101cc000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x155000) = 0x7fa1101cc000
3208 mmap(0x7fa1101ce000, 648, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fa1101ce000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0644, st_size=906056, ...}) = 0
3208 mmap(NULL, 180712, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa11004a000
3208 mmap(0x7fa11004e000, 143360, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fa11004e000
3208 mmap(0x7fa110071000, 16384, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x27000) = 0x7fa110071000
3208 mmap(0x7fa110075000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2a000) = 0x7fa110075000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000x\2\0\0\0\0\0"..., 832) = 832
3208 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 896, 64) = 896
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=2149728, ...}) = 0
3208 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fa1108c8000
3208 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 896, 64) = 896
3208 mmap(NULL, 2174000, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10fe00000
3208 mmap(0x7fa10fe24000, 1515520, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x24000) = 0x7fa10fe24000
3208 mmap(0x7fa10ff96000, 454656, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x196000) = 0x7fa10ff96000
3208 mmap(0x7fa110005000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x204000) = 0x7fa110005000
3208 mmap(0x7fa11000b000, 31792, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fa11000b000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libgdk_pixbuf-2.0.so.0", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=224392, ...}) = 0
3208 mmap(NULL, 227456, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10fdc8000
3208 mmap(0x7fa10fdcf000, 135168, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7fa10fdcf000
3208 mmap(0x7fa10fdf0000, 53248, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x28000) = 0x7fa10fdf0000
3208 mmap(0x7fa10fdfd000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x34000) = 0x7fa10fdfd000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=1100400, ...}) = 0
3208 mmap(NULL, 1102152, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10fcba000
3208 mmap(0x7fa10fcc9000, 569344, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xf000) = 0x7fa10fcc9000
3208 mmap(0x7fa10fd54000, 466944, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9a000) = 0x7fa10fd54000
3208 mmap(0x7fa10fdc6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x10b000) = 0x7fa10fdc6000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libdav1d.so.7", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=1734600, ...}) = 0
3208 mmap(NULL, 1970312, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10fad8000
3208 mmap(0x7fa10fada000, 1552384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fa10fada000
3208 mmap(0x7fa10fc55000, 159744, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17d000) = 0x7fa10fc55000
3208 mmap(0x7fa10fc7c000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1a3000) = 0x7fa10fc7c000
3208 mmap(0x7fa10fc81000, 229512, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fa10fc81000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libxml2.so.16", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=1260488, ...}) = 0
3208 mmap(NULL, 1262640, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10f9a3000
3208 mmap(0x7fa10f9bd000, 864256, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1a000) = 0x7fa10f9bd000
3208 mmap(0x7fa10fa90000, 249856, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xed000) = 0x7fa10fa90000
3208 mmap(0x7fa10facd000, 40960, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x12a000) = 0x7fa10facd000
3208 mmap(0x7fa10fad7000, 1072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fa10fad7000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libpangocairo-1.0.so.0", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=63496, ...}) = 0
3208 mmap(NULL, 61624, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa1108b8000
3208 mmap(0x7fa1108bd000, 28672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7fa1108bd000
3208 mmap(0x7fa1108c4000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xc000) = 0x7fa1108c4000
3208 mmap(0x7fa1108c6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe000) = 0x7fa1108c6000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libpango-1.0.so.0", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=433824, ...}) = 0
3208 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fa1108b6000
3208 mmap(NULL, 436792, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10f938000
3208 mmap(0x7fa10f946000, 253952, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe000) = 0x7fa10f946000
3208 mmap(0x7fa10f984000, 106496, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4c000) = 0x7fa10f984000
3208 mmap(0x7fa10f99e000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x65000) = 0x7fa10f99e000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libgmodule-2.0.so.0", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=22464, ...}) = 0
3208 mmap(NULL, 24712, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa1108af000
3208 mmap(0x7fa1108b1000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fa1108b1000
3208 mmap(0x7fa1108b3000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fa1108b3000
3208 mmap(0x7fa1108b4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fa1108b4000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=100368, ...}) = 0
3208 mmap(NULL, 98320, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa110031000
3208 mmap(0x7fa110034000, 57344, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7fa110034000
3208 mmap(0x7fa110042000, 24576, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x11000) = 0x7fa110042000
3208 mmap(0x7fa110048000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7fa110048000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libmount.so.1", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=350808, ...}) = 0
3208 mmap(NULL, 348760, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10f8e2000
3208 mmap(0x7fa10f8ec000, 237568, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa000) = 0x7fa10f8ec000
3208 mmap(0x7fa10f926000, 61440, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x44000) = 0x7fa10f926000
3208 mmap(0x7fa10f935000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x53000) = 0x7fa10f935000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libpng16.so.16", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=231448, ...}) = 0
3208 mmap(NULL, 233488, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10f8a8000
3208 mmap(0x7fa10f8ae000, 167936, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7fa10f8ae000
3208 mmap(0x7fa10f8d7000, 36864, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2f000) = 0x7fa10f8d7000
3208 mmap(0x7fa10f8e0000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x37000) = 0x7fa10f8e0000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libfontconfig.so.1", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=325592, ...}) = 0
3208 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fa1108ad000
3208 mmap(NULL, 328280, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10f857000
3208 mmap(0x7fa10f85d000, 200704, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7fa10f85d000
3208 mmap(0x7fa10f88e000, 94208, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x37000) = 0x7fa10f88e000
3208 mmap(0x7fa10f8a5000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4d000) = 0x7fa10f8a5000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libfreetype.so.6", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=845768, ...}) = 0
3208 mmap(NULL, 847888, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10f787000
3208 mmap(0x7fa10f78d000, 622592, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7fa10f78d000
3208 mmap(0x7fa10f825000, 167936, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9e000) = 0x7fa10f825000
3208 mmap(0x7fa10f84e000, 36864, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xc6000) = 0x7fa10f84e000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libX11.so.6", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=1309088, ...}) = 0
3208 mmap(NULL, 1313000, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10f646000
3208 mmap(0x7fa10f65d000, 606208, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7fa10f65d000
3208 mmap(0x7fa10f6f1000, 585728, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xab000) = 0x7fa10f6f1000
3208 mmap(0x7fa10f780000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x139000) = 0x7fa10f780000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libXext.so.6", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=80952, ...}) = 0
3208 mmap(NULL, 83776, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa11001c000
3208 mmap(0x7fa110020000, 45056, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fa110020000
3208 mmap(0x7fa11002b000, 16384, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xf000) = 0x7fa11002b000
3208 mmap(0x7fa11002f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x12000) = 0x7fa11002f000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libXrender.so.1", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=43152, ...}) = 0
3208 mmap(NULL, 45392, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10f63a000
3208 mmap(0x7fa10f63c000, 28672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fa10f63c000
3208 mmap(0x7fa10f643000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9000) = 0x7fa10f643000
3208 mmap(0x7fa10f644000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9000) = 0x7fa10f644000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libxcb.so.1", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=169984, ...}) = 0
3208 mmap(NULL, 172264, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10f60f000
3208 mmap(0x7fa10f61b000, 81920, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xc000) = 0x7fa10f61b000
3208 mmap(0x7fa10f62f000, 36864, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x20000) = 0x7fa10f62f000
3208 mmap(0x7fa10f638000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x28000) = 0x7fa10f638000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libxcb-render.so.0", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=59368, ...}) = 0
3208 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fa1108ab000
3208 mmap(NULL, 57384, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10f600000
3208 mmap(0x7fa10f606000, 20480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7fa10f606000
3208 mmap(0x7fa10f60b000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xb000) = 0x7fa10f60b000
3208 mmap(0x7fa10f60d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd000) = 0x7fa10f60d000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libxcb-shm.so.0", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=14304, ...}) = 0
3208 mmap(NULL, 16424, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa110017000
3208 mmap(0x7fa110018000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7fa110018000
3208 mmap(0x7fa110019000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fa110019000
3208 mmap(0x7fa11001a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fa11001a000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libpixman-1.so.0", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=714800, ...}) = 0
3208 mmap(NULL, 713048, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10f551000
3208 mmap(0x7fa10f556000, 593920, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7fa10f556000
3208 mmap(0x7fa10f5e7000, 65536, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x96000) = 0x7fa10f5e7000
3208 mmap(0x7fa10f5f7000, 36864, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa6000) = 0x7fa10f5f7000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libffi.so.8", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=47336, ...}) = 0
3208 mmap(NULL, 46320, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10f545000
3208 mmap(0x7fa10f547000, 28672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fa10f547000
3208 mmap(0x7fa10f54e000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9000) = 0x7fa10f54e000
3208 mmap(0x7fa10f54f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa000) = 0x7fa10f54f000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libpcre2-8.so.0", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=694488, ...}) = 0
3208 mmap(NULL, 696824, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10f49a000
3208 mmap(0x7fa10f49c000, 507904, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fa10f49c000
3208 mmap(0x7fa10f518000, 176128, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7e000) = 0x7fa10f518000
3208 mmap(0x7fa10f543000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa8000) = 0x7fa10f543000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libglycin-2.so.0", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=4348720, ...}) = 0
3208 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fa1108a9000
3208 mmap(NULL, 4360228, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10f000000
3208 mmap(0x7fa10f0c9000, 3395584, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xc8000) = 0x7fa10f0c9000
3208 mmap(0x7fa10f406000, 126976, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x404000) = 0x7fa10f406000
3208 mmap(0x7fa10f425000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x422000) = 0x7fa10f425000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libicuuc.so.76", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=2095152, ...}) = 0
3208 mmap(NULL, 2102320, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10ec00000
3208 mmap(0x7fa10ec48000, 1142784, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x48000) = 0x7fa10ec48000
3208 mmap(0x7fa10ed5f000, 577536, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15f000) = 0x7fa10ed5f000
3208 mmap(0x7fa10edec000, 81920, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1ec000) = 0x7fa10edec000
3208 mmap(0x7fa10ee00000, 5168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fa10ee00000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libpangoft2-1.0.so.0", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=120792, ...}) = 0
3208 mmap(NULL, 119304, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10f47c000
3208 mmap(0x7fa10f484000, 61440, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7fa10f484000
3208 mmap(0x7fa10f493000, 20480, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7fa10f493000
3208 mmap(0x7fa10f498000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c000) = 0x7fa10f498000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libharfbuzz.so.0", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=1278032, ...}) = 0
3208 mmap(NULL, 1280912, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10eec7000
3208 mmap(0x7fa10eed4000, 987136, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd000) = 0x7fa10eed4000
3208 mmap(0x7fa10efc5000, 229376, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xfe000) = 0x7fa10efc5000
3208 mmap(0x7fa10effd000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x135000) = 0x7fa10effd000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libfribidi.so.0", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=125000, ...}) = 0
3208 mmap(NULL, 127136, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10f45c000
3208 mmap(0x7fa10f45e000, 20480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fa10f45e000
3208 mmap(0x7fa10f463000, 94208, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7fa10f463000
3208 mmap(0x7fa10f47a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1d000) = 0x7fa10f47a000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libthai.so.0", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=40952, ...}) = 0
3208 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fa1108a7000
3208 mmap(NULL, 43152, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10f451000
3208 mmap(0x7fa10f453000, 16384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fa10f453000
3208 mmap(0x7fa10f457000, 12288, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7fa10f457000
3208 mmap(0x7fa10f45a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7fa10f45a000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libblkid.so.1", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=232304, ...}) = 0
3208 mmap(NULL, 234352, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10ee8d000
3208 mmap(0x7fa10ee92000, 151552, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7fa10ee92000
3208 mmap(0x7fa10eeb7000, 36864, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2a000) = 0x7fa10eeb7000
3208 mmap(0x7fa10eec0000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x32000) = 0x7fa10eec0000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libexpat.so.1", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=174024, ...}) = 0
3208 mmap(NULL, 172048, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10ee62000
3208 mmap(0x7fa10ee64000, 122880, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fa10ee64000
3208 mmap(0x7fa10ee82000, 32768, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x20000) = 0x7fa10ee82000
3208 mmap(0x7fa10ee8a000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x28000) = 0x7fa10ee8a000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libbz2.so.1.0", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=74720, ...}) = 0
3208 mmap(NULL, 76840, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10f43e000
3208 mmap(0x7fa10f440000, 53248, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fa10f440000
3208 mmap(0x7fa10f44d000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xf000) = 0x7fa10f44d000
3208 mmap(0x7fa10f44f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x10000) = 0x7fa10f44f000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libbrotlidec.so.1", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=55168, ...}) = 0
3208 mmap(NULL, 57360, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10f42f000
3208 mmap(0x7fa10f430000, 36864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7fa10f430000
3208 mmap(0x7fa10f439000, 12288, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa000) = 0x7fa10f439000
3208 mmap(0x7fa10f43c000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xc000) = 0x7fa10f43c000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libXau.so.6", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=14232, ...}) = 0
3208 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fa110015000
3208 mmap(NULL, 16424, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10f42a000
3208 mmap(0x7fa10f42b000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7fa10f42b000
3208 mmap(0x7fa10f42c000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fa10f42c000
3208 mmap(0x7fa10f42d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fa10f42d000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libXdmcp.so.6", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=26488, ...}) = 0
3208 mmap(NULL, 28688, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10ee5a000
3208 mmap(0x7fa10ee5c000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fa10ee5c000
3208 mmap(0x7fa10ee5e000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fa10ee5e000
3208 mmap(0x7fa10ee60000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7fa10ee60000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/liblcms2.so.2", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=414784, ...}) = 0
3208 mmap(NULL, 415296, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10eb9a000
3208 mmap(0x7fa10eba3000, 274432, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9000) = 0x7fa10eba3000
3208 mmap(0x7fa10ebe6000, 77824, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4c000) = 0x7fa10ebe6000
3208 mmap(0x7fa10ebf9000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5f000) = 0x7fa10ebf9000
3208 mmap(0x7fa10ebff000, 1600, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fa10ebff000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libseccomp.so.2", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=133136, ...}) = 0
3208 mmap(NULL, 131168, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10ee39000
3208 mmap(0x7fa10ee3b000, 61440, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fa10ee3b000
3208 mmap(0x7fa10ee4a000, 57344, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x11000) = 0x7fa10ee4a000
3208 mmap(0x7fa10ee58000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1f000) = 0x7fa10ee58000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libicudata.so.76", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=31859544, ...}) = 0
3208 mmap(NULL, 31862784, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10cc00000
3208 mmap(0x7fa10ea62000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1e61000) = 0x7fa10ea62000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=22480456, ...}) = 0
3208 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fa110013000
3208 mmap(NULL, 2699336, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10c800000
3208 mmap(0x7fa10c897000, 1396736, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x97000) = 0x7fa10c897000
3208 mmap(0x7fa10c9ec000, 598016, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1ec000) = 0x7fa10c9ec000
3208 mmap(0x7fa10ca7e000, 73728, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x27e000) = 0x7fa10ca7e000
3208 mmap(0x7fa10ca90000, 12360, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fa10ca90000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libgraphite2.so.3", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=137160, ...}) = 0
3208 mmap(NULL, 139280, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10ee16000
3208 mmap(0x7fa10ee18000, 102400, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fa10ee18000
3208 mmap(0x7fa10ee31000, 20480, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1b000) = 0x7fa10ee31000
3208 mmap(0x7fa10ee36000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1f000) = 0x7fa10ee36000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libdatrie.so.1", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=30592, ...}) = 0
3208 mmap(NULL, 32784, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10ee0d000
3208 mmap(0x7fa10ee0f000, 16384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fa10ee0f000
3208 mmap(0x7fa10ee13000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7fa10ee13000
3208 mmap(0x7fa10ee14000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7fa10ee14000
3208 close(3) = 0
3208 openat(AT_FDCWD, "/usr/lib/libbrotlicommon.so.1", O_RDONLY|O_CLOEXEC) = 3
3208 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
3208 fstat(3, {st_mode=S_IFREG|0755, st_size=141264, ...}) = 0
3208 mmap(NULL, 139280, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fa10eb77000
3208 mmap(0x7fa10eb78000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7fa10eb78000
3208 mmap(0x7fa10eb79000, 126976, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fa10eb79000
3208 mmap(0x7fa10eb98000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x21000) = 0x7fa10eb98000
3208 close(3) = 0
3208 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fa10ee0b000
3208 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fa10ee09000
3208 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fa10ee07000
3208 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fa10ee04000
3208 arch_prctl(ARCH_SET_FS, 0x7fa10ee04d00) = 0
3208 set_tid_address(0x7fa10ee04fd0) = 2
3208 set_robust_list(0x7fa10ee04fe0, 24) = 0
3208 rseq(0x7fa10ee046a0, 0x20, 0, 0x53053053) = 0
3208 mprotect(0x7fa110005000, 16384, PROT_READ) = 0
3208 mprotect(0x7fa10eb98000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa10ee14000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa10ee36000, 8192, PROT_READ) = 0
3208 mprotect(0x7fa10fdc6000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa110075000, 4096, PROT_READ) = 0
3208 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fa10ee02000
3208 mprotect(0x7fa10ca7e000, 69632, PROT_READ) = 0
3208 mprotect(0x7fa10ea62000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa10ee58000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa10ebf9000, 12288, PROT_READ) = 0
3208 mprotect(0x7fa10ee60000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa10f42d000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa10f43c000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa10f44f000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa10ee8a000, 8192, PROT_READ) = 0
3208 mprotect(0x7fa10eec0000, 24576, PROT_READ) = 0
3208 mprotect(0x7fa10f45a000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa10f47a000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa110048000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa10f8e0000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa10f84e000, 32768, PROT_READ) = 0
3208 mprotect(0x7fa10f543000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa1101cc000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa10effd000, 8192, PROT_READ) = 0
3208 mprotect(0x7fa10f54f000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa11022a000, 12288, PROT_READ) = 0
3208 mprotect(0x7fa1108b4000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa10f935000, 8192, PROT_READ) = 0
3208 mprotect(0x7fa1103f4000, 36864, PROT_READ) = 0
3208 mprotect(0x7fa10f99e000, 16384, PROT_READ) = 0
3208 mprotect(0x7fa10f8a5000, 8192, PROT_READ) = 0
3208 mprotect(0x7fa10f498000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa10edec000, 77824, PROT_READ) = 0
3208 mprotect(0x7fa10f406000, 126976, PROT_READ) = 0
3208 mprotect(0x7fa10f5f7000, 32768, PROT_READ) = 0
3208 mprotect(0x7fa10f638000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa11001a000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa10f60d000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa10f780000, 12288, PROT_READ) = 0
3208 mprotect(0x7fa10f644000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa11002f000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa110a00000, 16384, PROT_READ) = 0
3208 mprotect(0x7fa1108c6000, 4096, PROT_READ) = 0
3208 mprotect(0x7fa10facd000, 36864, PROT_READ) = 0
3208 mprotect(0x7fa10fc7c000, 16384, PROT_READ) = 0
3208 mprotect(0x7fa10fdfd000, 8192, PROT_READ) = 0
3208 mprotect(0x7fa110830000, 483328, PROT_READ) = 0
3208 mprotect(0x55819946e000, 45056, PROT_READ) = 0
3208 mprotect(0x7fa110a72000, 8192, PROT_READ) = 0
3208 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
3208 getrandom("\x38\xb1\x2f\xa6\x63\x38\x00\xa4", 8, GRND_NONBLOCK) = 8
3208 munmap(0x7fa110a09000, 162207) = 0
3208 futex(0x7fa10ca906bc, FUTEX_WAKE_PRIVATE, 2147483647) = 0
3208 brk(NULL) = 0x55819e67b000
3208 brk(0x55819e6ae000) = 0x55819e6ae000
3208 futex(0x7fa1101cdff8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
3208 futex(0x7fa1101cdff8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
3208 poll([{fd=0, events=0}, {fd=1, events=0}, {fd=2, events=0}], 3, 0) = 1 ([{fd=0, revents=POLLHUP}])
3208 rt_sigaction(SIGPIPE, {sa_handler=SIG_IGN, sa_mask=[PIPE], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7fa10fe3e540}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
3208 openat(AT_FDCWD, "/proc/self/maps", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
3208 rt_sigaction(SIGSEGV, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
3208 sigaltstack(NULL, {ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}) = 0
3208 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7fa110a2e000
3208 mprotect(0x7fa110a2e000, 4096, PROT_NONE) = 0
3208 sigaltstack({ss_sp=0x7fa110a2f000, ss_flags=0, ss_size=8192}, NULL) = 0
3208 rt_sigaction(SIGSEGV, {sa_handler=0x5581993f4b40, sa_mask=[], sa_flags=SA_RESTORER|SA_ONSTACK|SA_SIGINFO, sa_restorer=0x7fa10fe3e540}, NULL, 8) = 0
3208 rt_sigaction(SIGBUS, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
3208 rt_sigaction(SIGBUS, {sa_handler=0x5581993f4b40, sa_mask=[], sa_flags=SA_RESTORER|SA_ONSTACK|SA_SIGINFO, sa_restorer=0x7fa10fe3e540}, NULL, 8) = 0
3208 rt_sigprocmask(SIG_BLOCK, ~[], [], 8) = 0
3208 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_DROPPABLE|MAP_ANONYMOUS, -1, 0) = 0x7fa110a2d000
3208 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fa110a2c000
3208 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
3208 getrandom("\xaf\x04\x71\xb5\xc7\x68\xab\x31\x43\x4f\x33\x37\x38\x07\xe5\x17\x96\xd3\x3a\x67\xf4\x0a\x3d\x5b\xb9\x71\xb5\xed\x74\x15\x0a\x64", 32, 0) = 32
3208 ioctl(17, FIONBIO, [1]) = 0
3208 rt_sigaction(SIGRT_1, {sa_handler=0x7fa10fe940b0, sa_mask=[], sa_flags=SA_RESTORER|SA_ONSTACK|SA_RESTART|SA_SIGINFO, sa_restorer=0x7fa10fe3e540}, NULL, 8) = 0
3208 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
3208 mmap(NULL, 2101248, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7fa10c5ff000
3208 madvise(0x7fa10c5ff000, 4096, MADV_GUARD_INSTALL) = 0
3208 rt_sigprocmask(SIG_BLOCK, ~[], [], 8) = 0
3208 clone3({flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, child_tid=0x7fa10c7ff990, parent_tid=0x7fa10c7ff990, exit_signal=0, stack=0x7fa10c5ff000, stack_size=0x1ff9c0, tls=0x7fa10c7ff6c0} => {parent_tid=[3]}, 88) = 3
3209 rseq(0x7fa10c7ff060, 0x20, 0, 0x53053053 <unfinished ...>
3208 rt_sigprocmask(SIG_SETMASK, [] <unfinished ...>
3209 <... rseq resumed>) = 0
3208 <... rt_sigprocmask resumed>, NULL, 8) = 0
3209 set_robust_list(0x7fa10c7ff9a0, 24 <unfinished ...>
3208 epoll_create1(EPOLL_CLOEXEC <unfinished ...>
3209 <... set_robust_list resumed>) = 0
3209 rt_sigprocmask(SIG_SETMASK, [] <unfinished ...>
3208 <... epoll_create1 resumed>) = 3
3209 <... rt_sigprocmask resumed>, NULL, 8) = 0
3208 eventfd2(0, EFD_CLOEXEC|EFD_NONBLOCK <unfinished ...>
3209 mmap(NULL, 134217728, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 <unfinished ...>
3208 <... eventfd2 resumed>) = 4
3209 <... mmap resumed>) = 0x7fa104400000
3208 timerfd_create(CLOCK_MONOTONIC, TFD_CLOEXEC|TFD_NONBLOCK <unfinished ...>
3209 munmap(0x7fa104400000, 62914560 <unfinished ...>
3208 <... timerfd_create resumed>) = 5
3209 <... munmap resumed>) = 0
3208 epoll_ctl(3, EPOLL_CTL_ADD, 5, {events=EPOLLONESHOT, data=0xffffffffffffffff} <unfinished ...>
3209 munmap(0x7fa10c000000, 4194304 <unfinished ...>
3208 <... epoll_ctl resumed>) = 0
3209 <... munmap resumed>) = 0
3208 epoll_ctl(3, EPOLL_CTL_ADD, 4, {events=EPOLLIN|EPOLLPRI|EPOLLERR|EPOLLHUP|EPOLLONESHOT, data=0xffffffffffffffff} <unfinished ...>
3209 mprotect(0x7fa108000000, 135168, PROT_READ|PROT_WRITE <unfinished ...>
3208 <... epoll_ctl resumed>) = 0
3209 <... mprotect resumed>) = 0
3208 brk(0x55819e6cf000) = 0x55819e6cf000
3209 sched_getaffinity(3, 32, [0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15]) = 8
3208 epoll_ctl(3, EPOLL_CTL_ADD, 17, {events=EPOLLONESHOT, data=0} <unfinished ...>
3209 sigaltstack(NULL <unfinished ...>
3208 <... epoll_ctl resumed>) = 0
3209 <... sigaltstack resumed>, {ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}) = 0
3209 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7fa110a29000
3209 mprotect(0x7fa110a29000, 4096, PROT_NONE) = 0
3209 sigaltstack({ss_sp=0x7fa110a2a000, ss_flags=0, ss_size=8192}, NULL) = 0
3209 prctl(PR_SET_NAME, "async-io") = 0
3209 timerfd_settime(5, 0, {it_interval={tv_sec=0, tv_nsec=0}, it_value={tv_sec=0, tv_nsec=0}}, {it_interval={tv_sec=0, tv_nsec=0}, it_value={tv_sec=0, tv_nsec=0}}) = 0
3209 epoll_ctl(3, EPOLL_CTL_MOD, 5, {events=EPOLLIN|EPOLLPRI|EPOLLERR|EPOLLHUP|EPOLLONESHOT, data=0xffffffffffffffff}) = 0
3209 epoll_pwait(3 <unfinished ...>
3208 sendmsg(17, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\0AUTH ANONYMOUS 7a627573\r\n", iov_len=26}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 26
3208 recvmsg(17, {msg_namelen=110}, 0) = -1 EAGAIN (Resource temporarily unavailable)
3120 <... epoll_pwait resumed>, [{events=EPOLLIN, data=0}], 1024, -1, NULL, 727398420) = 1
3208 epoll_ctl(3, EPOLL_CTL_MOD, 17, {events=EPOLLIN|EPOLLPRI|EPOLLERR|EPOLLHUP|EPOLLONESHOT, data=0} <unfinished ...>
3120 read(8 <unfinished ...>
3208 <... epoll_ctl resumed>) = 0
3120 <... read resumed>, 0x7f71a83fcdf0, 8) = -1 EAGAIN (Resource temporarily unavailable)
3208 futex(0x55819e694c70, FUTEX_WAIT_BITSET_PRIVATE, 0, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3120 epoll_ctl(7, EPOLL_CTL_MOD, 8, {events=EPOLLIN|EPOLLPRI|EPOLLERR|EPOLLHUP|EPOLLONESHOT, data=0xffffffffffffffff}) = 0
3120 futex(0x7f718c002370, FUTEX_WAKE_PRIVATE, 1) = 1
3120 futex(0x7f71ad228400, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3122 <... futex resumed>) = 0
3120 <... futex resumed>) = 1
3107 <... futex resumed>) = 0
3122 timerfd_settime(9, 0, {it_interval={tv_sec=0, tv_nsec=0}, it_value={tv_sec=0, tv_nsec=0}} <unfinished ...>
3120 futex(0x7f7158011870, FUTEX_WAIT_BITSET_PRIVATE, 0, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3122 <... timerfd_settime resumed>, {it_interval={tv_sec=0, tv_nsec=0}, it_value={tv_sec=0, tv_nsec=0}}) = 0
3107 recvmsg(14 <unfinished ...>
3122 epoll_ctl(7, EPOLL_CTL_MOD, 9, {events=EPOLLIN|EPOLLPRI|EPOLLERR|EPOLLHUP|EPOLLONESHOT, data=0xffffffffffffffff}) = 0
3107 <... recvmsg resumed>, {msg_name=0x7f71a8bd8898, msg_namelen=110 => 0, msg_iov=[{iov_base="\0AUTH ANONYMOUS 7a627573\r\n", iov_len=1024}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 26
3122 epoll_pwait(7 <unfinished ...>
3107 sendmsg(14, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="OK c9d044e4d1b1b6eec9ddc3ca68df8"..., iov_len=37}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0 <unfinished ...>
3209 <... epoll_pwait resumed>, [{events=EPOLLIN, data=0}], 1024, -1, NULL, 587004) = 1
3107 <... sendmsg resumed>) = 37
3209 read(4, 0x7fa10c7fddf0, 8) = -1 EAGAIN (Resource temporarily unavailable)
3107 recvmsg(14 <unfinished ...>
3209 epoll_ctl(3, EPOLL_CTL_MOD, 4, {events=EPOLLIN|EPOLLPRI|EPOLLERR|EPOLLHUP|EPOLLONESHOT, data=0xffffffffffffffff}) = 0
3107 <... recvmsg resumed>, {msg_namelen=110}, 0) = -1 EAGAIN (Resource temporarily unavailable)
3209 futex(0x55819e694c70, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3107 epoll_ctl(7, EPOLL_CTL_MOD, 14, {events=EPOLLIN|EPOLLPRI|EPOLLERR|EPOLLHUP|EPOLLONESHOT, data=0} <unfinished ...>
3209 <... futex resumed>) = 1
3209 timerfd_settime(5, 0, {it_interval={tv_sec=0, tv_nsec=0}, it_value={tv_sec=0, tv_nsec=0}} <unfinished ...>
3107 <... epoll_ctl resumed>) = 0
3208 <... futex resumed>) = 0
3209 <... timerfd_settime resumed>, {it_interval={tv_sec=0, tv_nsec=0}, it_value={tv_sec=0, tv_nsec=0}}) = 0
3107 futex(0x7f718c002370, FUTEX_WAIT_BITSET_PRIVATE, 8, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3209 epoll_ctl(3, EPOLL_CTL_MOD, 5, {events=EPOLLIN|EPOLLPRI|EPOLLERR|EPOLLHUP|EPOLLONESHOT, data=0xffffffffffffffff} <unfinished ...>
3208 recvmsg(17 <unfinished ...>
3209 <... epoll_ctl resumed>) = 0
3209 epoll_pwait(3 <unfinished ...>
3208 <... recvmsg resumed>, {msg_name=0x7ffdd1687bc8, msg_namelen=110 => 0, msg_iov=[{iov_base="OK c9d044e4d1b1b6eec9ddc3ca68df8"..., iov_len=1024}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 37
3208 sendmsg(17, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="NEGOTIATE_UNIX_FD\r\nBEGIN\r\n", iov_len=26}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 26
3122 <... epoll_pwait resumed>, [{events=EPOLLIN, data=0}], 1024, -1, NULL, 912421635) = 1
3208 recvmsg(17 <unfinished ...>
3122 read(8 <unfinished ...>
3208 <... recvmsg resumed>, {msg_namelen=110}, 0) = -1 EAGAIN (Resource temporarily unavailable)
3122 <... read resumed>, 0x7f71907f7070, 8) = -1 EAGAIN (Resource temporarily unavailable)
3208 epoll_ctl(3, EPOLL_CTL_MOD, 17, {events=EPOLLIN|EPOLLPRI|EPOLLERR|EPOLLHUP|EPOLLONESHOT, data=0} <unfinished ...>
3122 epoll_ctl(7, EPOLL_CTL_MOD, 8, {events=EPOLLIN|EPOLLPRI|EPOLLERR|EPOLLHUP|EPOLLONESHOT, data=0xffffffffffffffff} <unfinished ...>
3208 <... epoll_ctl resumed>) = 0
3122 <... epoll_ctl resumed>) = 0
3208 futex(0x55819e694c70, FUTEX_WAIT_BITSET_PRIVATE, 1, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3122 futex(0x7f718c002370, FUTEX_WAKE_PRIVATE, 1) = 1
3107 <... futex resumed>) = 0
3122 futex(0x7f71ad228400, FUTEX_WAKE_PRIVATE, 1) = 0
3107 recvmsg(14 <unfinished ...>
3122 timerfd_settime(9, 0, {it_interval={tv_sec=0, tv_nsec=0}, it_value={tv_sec=0, tv_nsec=0}}, {it_interval={tv_sec=0, tv_nsec=0}, it_value={tv_sec=0, tv_nsec=0}}) = 0
3107 <... recvmsg resumed>, {msg_name=0x7f71a8bd8908, msg_namelen=110 => 0, msg_iov=[{iov_base="NEGOTIATE_UNIX_FD\r\nBEGIN\r\n", iov_len=1024}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 26
3122 epoll_ctl(7, EPOLL_CTL_MOD, 9, {events=EPOLLIN|EPOLLPRI|EPOLLERR|EPOLLHUP|EPOLLONESHOT, data=0xffffffffffffffff}) = 0
3107 sendmsg(14, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="AGREE_UNIX_FD\r\n", iov_len=15}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0 <unfinished ...>
3122 epoll_pwait(7 <unfinished ...>
3209 <... epoll_pwait resumed>, [{events=EPOLLIN, data=0}], 1024, -1, NULL, 587006) = 1
3107 <... sendmsg resumed>) = 15
3209 read(4 <unfinished ...>
3107 close(13 <unfinished ...>
3209 <... read resumed>, 0x7fa10c7fddf0, 8) = -1 EAGAIN (Resource temporarily unavailable)
3209 epoll_ctl(3, EPOLL_CTL_MOD, 4, {events=EPOLLIN|EPOLLPRI|EPOLLERR|EPOLLHUP|EPOLLONESHOT, data=0xffffffffffffffff} <unfinished ...>
3107 <... close resumed>) = 0
3209 <... epoll_ctl resumed>) = 0
3209 futex(0x55819e694c70, FUTEX_WAKE_PRIVATE, 1) = 1
3209 timerfd_settime(5, 0, {it_interval={tv_sec=0, tv_nsec=0}, it_value={tv_sec=0, tv_nsec=0}} <unfinished ...>
3208 <... futex resumed>) = 0
3107 mmap(NULL, 2101248, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0 <unfinished ...>
3209 <... timerfd_settime resumed>, {it_interval={tv_sec=0, tv_nsec=0}, it_value={tv_sec=0, tv_nsec=0}}) = 0
3208 recvmsg(17 <unfinished ...>
3209 epoll_ctl(3, EPOLL_CTL_MOD, 5, {events=EPOLLIN|EPOLLPRI|EPOLLERR|EPOLLHUP|EPOLLONESHOT, data=0xffffffffffffffff} <unfinished ...>
3107 <... mmap resumed>) = 0x7f7128fe8000
3208 <... recvmsg resumed>, {msg_name=0x7ffdd1687ee8, msg_namelen=110 => 0, msg_iov=[{iov_base="AGREE_UNIX_FD\r\n", iov_len=1024}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 15
3209 <... epoll_ctl resumed>) = 0
3107 madvise(0x7f7128fe8000, 4096, MADV_GUARD_INSTALL <unfinished ...>
3209 epoll_pwait(3 <unfinished ...>
3107 <... madvise resumed>) = 0
3107 rt_sigprocmask(SIG_BLOCK, ~[], [], 8) = 0
3107 clone3({flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, child_tid=0x7f71291e8990, parent_tid=0x7f71291e8990, exit_signal=0, stack=0x7f7128fe8000, stack_size=0x1ffc00, tls=0x7f71291e86c0} <unfinished ...>
3210 rseq(0x7f71291e8280, 0x20, 0, 0x53053053 <unfinished ...>
3107 <... clone3 resumed> => {parent_tid=[3210]}, 88) = 3210
3210 <... rseq resumed>) = 0
3210 set_robust_list(0x7f71291e89a0, 24 <unfinished ...>
3107 rt_sigprocmask(SIG_SETMASK, [] <unfinished ...>
3210 <... set_robust_list resumed>) = 0
3210 rt_sigprocmask(SIG_SETMASK, [] <unfinished ...>
3107 <... rt_sigprocmask resumed>, NULL, 8) = 0
3210 <... rt_sigprocmask resumed>, NULL, 8) = 0
3210 prctl(PR_SET_NAME, "zbus::Connectio"...) = 0
3107 close(21 <unfinished ...>
3210 mmap(NULL, 134217728, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f70c0000000
3107 <... close resumed>) = 0
3210 munmap(0x7f70c4000000, 67108864) = 0
3107 close(17 <unfinished ...>
3210 mprotect(0x7f70c0000000, 135168, PROT_READ|PROT_WRITE <unfinished ...>
3107 <... close resumed>) = 0
3210 <... mprotect resumed>) = 0
3107 futex(0x7f7188002370, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3210 recvmsg(14 <unfinished ...>
3107 <... futex resumed>) = 1
3210 <... recvmsg resumed>, {msg_namelen=110}, 0) = -1 EAGAIN (Resource temporarily unavailable)
3108 <... futex resumed>) = 0
3208 mmap(NULL, 2101248, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0 <unfinished ...>
3210 epoll_ctl(7, EPOLL_CTL_MOD, 14, {events=EPOLLIN|EPOLLPRI|EPOLLERR|EPOLLHUP|EPOLLONESHOT, data=0} <unfinished ...>
3107 socketpair(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0 <unfinished ...>
3210 <... epoll_ctl resumed>) = 0
3108 futex(0x7f7198002390, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3208 <... mmap resumed>) = 0x7fa10c3fe000
3210 futex(0x7f70c0000c30, FUTEX_WAIT_BITSET_PRIVATE, 0, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3108 <... futex resumed>) = 1
3208 madvise(0x7fa10c3fe000, 4096, MADV_GUARD_INSTALL <unfinished ...>
3107 <... socketpair resumed>, [13, 15]) = 0
3108 socketpair(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0 <unfinished ...>
3105 <... futex resumed>) = 0
3208 <... madvise resumed>) = 0
3108 <... socketpair resumed>, [17, 20]) = 0
3107 futex(0x7f713c009610, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3208 rt_sigprocmask(SIG_BLOCK, ~[] <unfinished ...>
3108 futex(0x7f7140010f80, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3107 <... futex resumed>) = 1
3105 futex(0x7f719400f320, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3208 <... rt_sigprocmask resumed>, [], 8) = 0
3108 <... futex resumed>) = 1
3208 clone3({flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, child_tid=0x7fa10c5fe990, parent_tid=0x7fa10c5fe990, exit_signal=0, stack=0x7fa10c3fe000, stack_size=0x1ff9c0, tls=0x7fa10c5fe6c0} <unfinished ...>
3125 <... futex resumed>) = 0
3105 <... futex resumed>) = 1
3126 <... futex resumed>) = 0
3106 <... futex resumed>) = 0
3105 socketpair(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0 <unfinished ...>
3108 fcntl(17, F_DUPFD_CLOEXEC, 3 <unfinished ...>
3125 sendto(15, "<svg xmlns=\"http://www.w3.org/20"..., 1404, MSG_NOSIGNAL, NULL, 0 <unfinished ...>
3107 fcntl(13, F_DUPFD_CLOEXEC, 3 <unfinished ...>
3126 sendto(20, "<svg xmlns=\"http://www.w3.org/20"..., 660, MSG_NOSIGNAL, NULL, 0 <unfinished ...>
3108 <... fcntl resumed>) = 21
3106 futex(0x7f7180002390, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3105 <... socketpair resumed>, [23, 24]) = 0
3211 rseq(0x7fa10c5fe060, 0x20, 0, 0x53053053 <unfinished ...>
3208 <... clone3 resumed> => {parent_tid=[4]}, 88) = 4
3125 <... sendto resumed>) = 1404
3107 <... fcntl resumed>) = 26
3108 sendmsg(14, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\1\0\1 \0\0\0\2\0\0\0\210\0\0\0\1\1o\0\21\0\0\0/org/gno"..., iov_len=184}], msg_iovlen=1, msg_control=[{cmsg_len=20, cmsg_level=SOL_SOCKET, cmsg_type=SCM_RIGHTS, cmsg_data=[21]}], msg_controllen=24, msg_flags=0}, 0 <unfinished ...>
3211 <... rseq resumed>) = 0
3208 rt_sigprocmask(SIG_SETMASK, [] <unfinished ...>
3126 <... sendto resumed>) = 660
3125 read(12 <unfinished ...>
3109 <... futex resumed>) = 0
3107 futex(0x7f718c002370, FUTEX_WAIT_BITSET_PRIVATE, 9, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3106 <... futex resumed>) = 1
3105 futex(0x7f7144010f80, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3211 set_robust_list(0x7fa10c5fe9a0, 24 <unfinished ...>
3208 <... rt_sigprocmask resumed>, NULL, 8) = 0
3108 <... sendmsg resumed>) = 184
3211 <... set_robust_list resumed>) = 0
3208 futex(0x55819e694c70, FUTEX_WAIT_BITSET_PRIVATE, 2, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3125 <... read resumed>, "", 65535) = 0
3108 futex(0x7f718c002370, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3211 rt_sigprocmask(SIG_SETMASK, [] <unfinished ...>
3126 read(18 <unfinished ...>
3109 futex(0x7f7184002200, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3106 socketpair(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0 <unfinished ...>
3108 <... futex resumed>) = 1
3105 <... futex resumed>) = 1
3125 close(15 <unfinished ...>
3211 <... rt_sigprocmask resumed>, NULL, 8) = 0
3126 <... read resumed>, "", 65535) = 0
3123 <... futex resumed>) = 0
3109 <... futex resumed>) = 1
3108 close(21 <unfinished ...>
3107 <... futex resumed>) = 0
3211 mmap(NULL, 134217728, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 <unfinished ...>
3126 close(20 <unfinished ...>
3125 <... close resumed>) = 0
3110 <... futex resumed>) = 0
3108 <... close resumed>) = 0
3106 <... socketpair resumed>, [27, 28]) = 0
3211 <... mmap resumed>) = 0x7fa100000000
3125 close(12 <unfinished ...>
3123 sendto(24, "<svg xmlns=\"http://www.w3.org/20"..., 625, MSG_NOSIGNAL, NULL, 0 <unfinished ...>
3126 <... close resumed>) = 0
3110 futex(0x7f71880130f0, FUTEX_WAIT_BITSET_PRIVATE, 2, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3108 futex(0x7f7188002370, FUTEX_WAIT_BITSET_PRIVATE, 5, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3107 sendmsg(14, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\1\0\1 \0\0\0\1\0\0\0\210\0\0\0\1\1o\0\21\0\0\0/org/gno"..., iov_len=184}], msg_iovlen=1, msg_control=[{cmsg_len=20, cmsg_level=SOL_SOCKET, cmsg_type=SCM_RIGHTS, cmsg_data=[26]}], msg_controllen=24, msg_flags=0}, 0 <unfinished ...>
3106 futex(0x7f7158011870, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3105 fcntl(23, F_DUPFD_CLOEXEC, 3 <unfinished ...>
3211 munmap(0x7fa104000000, 67108864 <unfinished ...>
3126 close(18 <unfinished ...>
3125 <... close resumed>) = 0
3123 <... sendto resumed>) = 625
3110 <... futex resumed>) = -1 EAGAIN (Resource temporarily unavailable)
3109 futex(0x7f71880130f0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3107 <... sendmsg resumed>) = 184
3106 <... futex resumed>) = 1
3105 <... fcntl resumed>) = 12
3120 <... futex resumed>) = 0
3211 <... munmap resumed>) = 0
3126 <... close resumed>) = 0
3125 futex(0x7f71ad2278b0, FUTEX_WAIT_BITSET_PRIVATE, 108, {tv_sec=529, tv_nsec=414164224}, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3123 read(11 <unfinished ...>
3107 close(26 <unfinished ...>
3106 write(8, "\1\0\0\0\0\0\0\0", 8 <unfinished ...>
3211 mprotect(0x7fa100000000, 135168, PROT_READ|PROT_WRITE <unfinished ...>
3126 futex(0x7f7188002370, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3123 <... read resumed>, "", 65535) = 0
3120 sendto(28, "<svg xmlns=\"http://www.w3.org/20"..., 2303, MSG_NOSIGNAL, NULL, 0 <unfinished ...>
3110 futex(0x7f71880130f0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3109 <... futex resumed>) = 0
3107 <... close resumed>) = 0
3106 <... write resumed>) = 8
3122 <... epoll_pwait resumed>, [{events=EPOLLIN, data=0xffffffffffffffff}], 1024, -1, NULL, 912942352) = 1
3105 sendmsg(14, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\1\0\1 \0\0\0\3\0\0\0\210\0\0\0\1\1o\0\21\0\0\0/org/gno"..., iov_len=184}], msg_iovlen=1, msg_control=[{cmsg_len=20, cmsg_level=SOL_SOCKET, cmsg_type=SCM_RIGHTS, cmsg_data=[12]}], msg_controllen=24, msg_flags=0}, 0 <unfinished ...>
3211 <... mprotect resumed>) = 0
3126 <... futex resumed>) = 1
3123 close(24 <unfinished ...>
3122 read(8 <unfinished ...>
3120 <... sendto resumed>) = 2303
3110 <... futex resumed>) = 0
3109 socketpair(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0 <unfinished ...>
3108 <... futex resumed>) = 0
3107 futex(0x7f718c002370, FUTEX_WAIT_BITSET_PRIVATE, 10, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3106 fcntl(27, F_DUPFD_CLOEXEC, 3 <unfinished ...>
3211 sched_getaffinity(4, 32 <unfinished ...>
3126 futex(0x7f71ad2278b0, FUTEX_WAIT_BITSET_PRIVATE, 108, {tv_sec=529, tv_nsec=414296291}, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3123 <... close resumed>) = 0
3122 <... read resumed>, "\1\0\0\0\0\0\0\0", 8) = 8
3120 read(10 <unfinished ...>
3110 futex(0x7f71700021d0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3108 futex(0x7f7188002370, FUTEX_WAIT_BITSET_PRIVATE, 6, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3106 <... fcntl resumed>) = 20
3105 <... sendmsg resumed>) = 184
3211 <... sched_getaffinity resumed>, [0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15]) = 8
3123 close(11 <unfinished ...>
3122 epoll_ctl(7, EPOLL_CTL_MOD, 8, {events=EPOLLIN|EPOLLPRI|EPOLLERR|EPOLLHUP|EPOLLONESHOT, data=0xffffffffffffffff} <unfinished ...>
3120 <... read resumed>, "", 65535) = 0
3113 <... futex resumed>) = 0
3110 <... futex resumed>) = 1
3109 <... socketpair resumed>, [15, 18]) = 0
3106 futex(0x7f719400f320, FUTEX_WAIT_BITSET_PRIVATE, 15, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3105 futex(0x7f719400f320, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3211 sigaltstack(NULL <unfinished ...>
3123 <... close resumed>) = 0
3122 <... epoll_ctl resumed>) = 0
3120 close(28 <unfinished ...>
3113 futex(0x7f71880130f0, FUTEX_WAIT_BITSET_PRIVATE, 2, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3110 futex(0x7f71880130f0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3109 futex(0x7f71480010d0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3106 <... futex resumed>) = -1 EAGAIN (Resource temporarily unavailable)
3105 <... futex resumed>) = 0
3211 <... sigaltstack resumed>, {ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}) = 0
3123 futex(0x7f71ad2278b0, FUTEX_WAIT_BITSET_PRIVATE, 108, {tv_sec=529, tv_nsec=414426686}, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3122 timerfd_settime(9, 0, {it_interval={tv_sec=0, tv_nsec=0}, it_value={tv_sec=0, tv_nsec=0}} <unfinished ...>
3113 <... futex resumed>) = -1 EAGAIN (Resource temporarily unavailable)
3120 <... close resumed>) = 0
3110 <... futex resumed>) = 0
3109 <... futex resumed>) = 1
3124 <... futex resumed>) = 0
3106 futex(0x7f7194021cd0, FUTEX_WAIT_BITSET_PRIVATE, 2, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3105 futex(0x7f7194021cd0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3211 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0 <unfinished ...>
3122 <... timerfd_settime resumed>, {it_interval={tv_sec=0, tv_nsec=0}, it_value={tv_sec=0, tv_nsec=0}}) = 0
3120 close(10 <unfinished ...>
3113 futex(0x7f71880130f0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3110 socketpair(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0 <unfinished ...>
3106 <... futex resumed>) = -1 EAGAIN (Resource temporarily unavailable)
3124 sendto(18, "<svg xmlns=\"http://www.w3.org/20"..., 417, MSG_NOSIGNAL, NULL, 0 <unfinished ...>
3105 <... futex resumed>) = 0
3211 <... mmap resumed>) = 0x7fa110a26000
3122 epoll_ctl(7, EPOLL_CTL_MOD, 9, {events=EPOLLIN|EPOLLPRI|EPOLLERR|EPOLLHUP|EPOLLONESHOT, data=0xffffffffffffffff} <unfinished ...>
3120 <... close resumed>) = 0
3113 <... futex resumed>) = 0
3110 <... socketpair resumed>, [10, 11]) = 0
3109 fcntl(15, F_DUPFD_CLOEXEC, 3 <unfinished ...>
3106 futex(0x7f7194021cd0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3105 close(12 <unfinished ...>
3124 <... sendto resumed>) = 417
3211 mprotect(0x7fa110a26000, 4096, PROT_NONE <unfinished ...>
3122 <... epoll_ctl resumed>) = 0
3120 futex(0x7f71ad2278b0, FUTEX_WAIT_BITSET_PRIVATE, 108, {tv_sec=529, tv_nsec=414569303}, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3113 futex(0x7f716c002390, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3110 futex(0x7f71240141d0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3109 <... fcntl resumed>) = 21
3124 read(19 <unfinished ...>
3106 <... futex resumed>) = 0
3105 <... close resumed>) = 0
3211 <... mprotect resumed>) = 0
3124 <... read resumed>, "", 65535) = 0
3134 <... futex resumed>) = 0
3122 epoll_pwait(7 <unfinished ...>
3114 <... futex resumed>) = 0
3113 <... futex resumed>) = 1
3110 <... futex resumed>) = 1
3109 futex(0x7f7180002390, FUTEX_WAIT_BITSET_PRIVATE, 4, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3106 sendmsg(14, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\1\0\1 \0\0\0\4\0\0\0\210\0\0\0\1\1o\0\21\0\0\0/org/gno"..., iov_len=184}], msg_iovlen=1, msg_control=[{cmsg_len=20, cmsg_level=SOL_SOCKET, cmsg_type=SCM_RIGHTS, cmsg_data=[20]}], msg_controllen=24, msg_flags=0}, 0 <unfinished ...>
3211 sigaltstack({ss_sp=0x7fa110a27000, ss_flags=0, ss_size=8192} <unfinished ...>
3134 sendto(11, "<svg xmlns=\"http://www.w3.org/20"..., 12901, MSG_NOSIGNAL, NULL, 0 <unfinished ...>
3124 close(18 <unfinished ...>
3114 futex(0x7f7178002370, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3113 socketpair(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0 <unfinished ...>
3105 futex(0x7f7198002390, FUTEX_WAIT_BITSET_PRIVATE, 16, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3211 <... sigaltstack resumed>, NULL) = 0
3110 fcntl(10, F_DUPFD_CLOEXEC, 3 <unfinished ...>
3124 <... close resumed>) = 0
3106 <... sendmsg resumed>) = 184
3114 <... futex resumed>) = 1
3211 prctl(PR_SET_NAME, "zbus::Connectio"... <unfinished ...>
3134 <... sendto resumed>) = 12901
3113 <... socketpair resumed>, [12, 18]) = 0
3124 close(19 <unfinished ...>
3110 <... fcntl resumed>) = 24
3111 <... futex resumed>) = 0
3106 futex(0x7f7180002390, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3114 socketpair(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0 <unfinished ...>
3211 <... prctl resumed>) = 0
3134 read(30 <unfinished ...>
3124 <... close resumed>) = 0
3113 futex(0x7f7110012330, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3110 sendmsg(14, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\1\0\1 \0\0\0\6\0\0\0\210\0\0\0\1\1o\0\21\0\0\0/org/gno"..., iov_len=184}], msg_iovlen=1, msg_control=[{cmsg_len=20, cmsg_level=SOL_SOCKET, cmsg_type=SCM_RIGHTS, cmsg_data=[24]}], msg_controllen=24, msg_flags=0}, 0 <unfinished ...>
3106 <... futex resumed>) = 1
3211 recvmsg(17 <unfinished ...>
3139 <... futex resumed>) = 0
3134 <... read resumed>, "", 65535) = 0
3124 futex(0x7f71ad2278b0, FUTEX_WAIT_BITSET_PRIVATE, 108, {tv_sec=529, tv_nsec=414789066}, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3114 <... socketpair resumed>, [19, 26]) = 0
3113 <... futex resumed>) = 1
3111 futex(0x7f717c002370, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3109 <... futex resumed>) = 0
3106 close(20 <unfinished ...>
3110 <... sendmsg resumed>) = 184
3211 <... recvmsg resumed>, {msg_name=0x7fa10c5fc838, msg_namelen=110 => 0, msg_iov=[{iov_base="l\1\0\1 \0\0\0\2\0\0\0\210\0\0\0", iov_len=16}], msg_iovlen=1, msg_control=[{cmsg_len=20, cmsg_level=SOL_SOCKET, cmsg_type=SCM_RIGHTS, cmsg_data=[6]}], msg_controllen=24, msg_flags=0}, 0) = 16
3139 sendto(18, "<svg xmlns=\"http://www.w3.org/20"..., 5058, MSG_NOSIGNAL, NULL, 0 <unfinished ...>
3134 close(11 <unfinished ...>
3114 futex(0x7f711c011120, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3106 <... close resumed>) = 0
3111 <... futex resumed>) = 1
3110 futex(0x7f7180002390, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
3109 futex(0x7f7180002390, FUTEX_WAIT_BITSET_PRIVATE, 5, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>
3211 recvmsg(17 <unfinished ...>
3139 <... sendto resumed>) = 5058
3134 <... close resumed>) = 0
3114 <... futex resumed>) = 1
3113 fcntl(12, F_DUPFD_CLOEXEC, 3 <unfinished ...>
3112 <... futex resumed>) = 0
3138 <... futex resumed>) = 0
3111 socketpair(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0 <unfinished ...>
3110 <... futex resumed>) = 0
3109 <... futex resumed>) = -1 EAGAIN (Resource temporarily unavailable)
3106 futex(0x7f719400f320, FUTEX_WAIT_BITSET_PRIVATE, 16, NULL, FUTEX_BITSET_MATCH_ANY <unfinished ...>going on, try to move away /home/albert/.fontconfig
Offline
Thanks for all the help. The issue was in fact related to bspwm. I fixed the issue by downgrading using the following command:
sudo pacman -U /var/cache/pacman/pkg/bspwm-0.9.10-4-x86_64.pkg.tar.zst Offline
While that makes sense it does somehow not fit the meager difference in the environment we had - do you still have the complete environment from before the downgrade so you can check what's actually missing?
Offline
This is what I have.
Offline
The sxhkd one is the same as the one in #5 (leaving aside _=/usr/bin/rofi and SXHKD_PID=924 but that's because you're comparing the sxhkd process to the rofi one)
I'm not entirely sure how this leads to different results ¯\_(ツ)_/¯
Offline