You are not logged in.
Ahoj,
since a few months, `pmount` is not able to mount `vfat` formatted USB drives anymore.
When I run for example `pmount sdb1` (which always used to work and did mount `/dev/sdb1` to `/mnt/sdb1`, thereby autoprobing the filesystem), it now fails with
mount: /media/sdb1: unknown filesystem type 'ntfs'.
dmesg(1) may have more information after failed mount system call.
mount: /media/sdb1: unknown filesystem type 'ntfs'.
dmesg(1) may have more information after failed mount system call.
`dmesg` shows for this mounting try:
[75896.910864] UDF-fs: warning (device sdb1): udf_load_vrs: No VRS found
[75896.910872] UDF-fs: Scanning with blocksize 512 failed
[75896.911321] UDF-fs: warning (device sdb1): udf_load_vrs: No VRS found
[75896.911324] UDF-fs: Scanning with blocksize 1024 failed
[75896.911762] UDF-fs: warning (device sdb1): udf_load_vrs: No VRS found
[75896.911765] UDF-fs: Scanning with blocksize 2048 failed
[75896.912248] UDF-fs: warning (device sdb1): udf_load_vrs: No VRS found
[75896.912251] UDF-fs: Scanning with blocksize 4096 failed
[75896.915486] UDF-fs: warning (device sdb1): udf_load_vrs: No VRS found
[75896.915492] UDF-fs: Scanning with blocksize 512 failed
[75896.915937] UDF-fs: warning (device sdb1): udf_load_vrs: No VRS found
[75896.915940] UDF-fs: Scanning with blocksize 1024 failed
[75896.916361] UDF-fs: warning (device sdb1): udf_load_vrs: No VRS found
[75896.916364] UDF-fs: Scanning with blocksize 2048 failed
[75896.916803] UDF-fs: warning (device sdb1): udf_load_vrs: No VRS found
[75896.916806] UDF-fs: Scanning with blocksize 4096 failed
[75896.956757] ISOFS: Unable to identify CD-ROM format.
[75896.997030] ISOFS: Unable to identify CD-ROM format.
[75897.017864] hfsplus: unable to find HFS+ superblock
[75897.021196] hfsplus: unable to find HFS+ superblock
[75897.024606] hfs: can't find a HFS filesystem on dev sdb1
[75897.028430] hfs: can't find a HFS filesystem on dev sdb1
[75897.031667] EXT4-fs (sdb1): VFS: Can't find ext4 filesystem
[75897.035038] EXT4-fs (sdb1): VFS: Can't find ext4 filesystem
[75897.037927] EXT4-fs (sdb1): VFS: Can't find ext4 filesystem
[75897.040719] EXT4-fs (sdb1): VFS: Can't find ext4 filesystem
[75897.043572] EXT4-fs (sdb1): VFS: Can't find ext4 filesystem
[75897.046892] EXT4-fs (sdb1): VFS: Can't find ext4 filesystem
[75897.050701] REISERFS warning (device sdb1): sh-2021 reiserfs_fill_super: can not find reiserfs on sdb1
[75897.053810] REISERFS warning (device sdb1): sh-2021 reiserfs_fill_super: can not find reiserfs on sdb1
[75897.071371] XFS (sdb1): Invalid superblock magic number
[75897.075036] XFS (sdb1): Invalid superblock magic number
[75897.084523] omfs: Invalid superblock (0)
[75897.087347] omfs: Invalid superblock (0)
It tries to probe some filesystems which are not present on `/dev/sdb1`.
If I explicitly say `pmount -t vfat sdb1`, it fails with
mount: /media/sdb1: not mount point or bad option.
dmesg(1) may have more information after failed mount system call.
`dmesg` is not showing anything in this case.
Has anyone an idea what has changed such that `pmount` is not working anymore?
I know `pmount` has not received updates for some time, but I found it the most convenient way to mount stuff as mormal user. I know that there is also `udevil mount`/ `udevil umount`, but they are a bit more complicated for me to use (the mount directory is named after the filesystem's label, not after the device name, which is usually more to type).
There is also some discussion about it in the AUR.
Regards!
Last edited by dreieck (2023-07-24 16:24:07)
Offline
What is "tt"?
Some sanity checks:
- you explicitly don't want to use udisks?
- lsmod | grep fat
- sudo file -s /dev/sdb1
- ls -laR /media
Offline
It cannot mount not only vfat formatted USB drives anymore, but even ext4 LUKS encrypted drives:
$ LC_ALL=C pmount /dev/sdb1 axagon
Enter passphrase for /dev/sdb1:
NTFS signature is missing.
Failed to mount '/dev/mapper/_dev_sdb1': Invalid argument
The device '/dev/mapper/_dev_sdb1' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?
Error: could not delete mount point: No such file or directory
# LC_ALL=C cryptsetup luksOpen /dev/sdb1 enc1
Enter passphrase for /dev/sdb1:
# LC_ALL=C blkid /dev/mapper/enc1
/dev/mapper/enc1: UUID="e787b716-caa2-44d5-b5ec-a6d6bfbf37c8" BLOCK_SIZE="4096" TYPE="ext4"
Offline
What is "tt"?
Sorry, formatting (print in monospace font, a workaround for "inlinecode") which this forum does not understand. I delete it and replace with enclosing in "`".
Last edited by dreieck (2023-07-24 16:08:49)
Offline
Some sanity checks:
- you explicitly don't want to use udisks?
I do not want to use any automatic mounting stuff, and no daemon at all with regards to mounts. I want to do it on the command line the "interactive-quick-and-go" way, and `pmount` was the best I could found for this task.
- lsmod | grep fat
exfat 114688 0
vfat 20480 1
fat 106496 1 vfat
- sudo file -s /dev/sdb1
/dev/sdb1: DOS/MBR boot sector, code offset 0x58+2, OEM-ID "mkfs.fat", sectors/cluster 64, reserved sectors 64, Media descriptor 0xf8, sectors/track 32, heads 64, hidden sectors 2048, sectors 124733440 (volumes > 32 MB), FAT (32 bit), sectors/FAT 15232, serial number 0xf219a536, label: "GARMINSD "
- ls -laR /media
/media:
total 0
drwxr-xr-x 1 root root 0 24. Jul 11:29 .
drwxr-xr-x 1 root root 224 24. Jul 11:29 ..
Last edited by dreieck (2023-07-24 10:10:13)
Offline
OK, I have now made a wrapper around `udevil` that is even a bit more quick to use than `pmount`/ `pumount`:
`/usr/local/bin/udm`:
#!/bin/bash
if [ $# -lt 1 ]; then
{
printf '%s\n' "$0: Error: Too few arguments."
printf '%s\n' "Usage:"
printf '%s\n' " $0 <device> [<additional 'uedvil mount' options>]"
printf '\n'
printf '%s\n' "Where '<device>' is the device name under '/dev/', e.g. 'sdc1' for '/dev/sdc1',"
printf '%s\n' "and '<additional 'uedvil mount' options>' can contain mount options; see 'udevil help'."
} > /dev/stderr
exit 1
else
_dev="$1"
shift
fi
udevil mount "$@" "/dev/${_dev}" "/mnt/${_dev}"
`/usr/local/bin/udu`:
#!/bin/bash
if [ $# -lt 1 ]; then
{
printf '%s\n' "$0: Error: Too few arguments."
printf '%s\n' "Usage:"
printf '%s\n' " $0 <mount> [<additional 'uedvil umount' options>]"
printf '\n'
printf '%s\n' "Where '<mount>' is a mountpoint below '/mnt/', e.g. 'sdc1' for '/mnt/sdc1',"
printf '%s\n' "and for '<additional 'uedvil umount' options>' see 'udevil help'."
} > /dev/stderr
exit 1
else
_mount="$1"
shift
fi
udevil umount "$@" "/mnt/${_mount}"
Last edited by dreieck (2023-07-24 12:02:59)
Offline
you are aware udevil hasn't seen commits since 2017 ?
I have been looking at udisks2 / udisksctl and found it to be not-as-good as pmount but usable .
(automounting anything is disabled in my DE / filemanager)
Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.
clean chroot building not flexible enough ?
Try clean chroot manager by graysky
Offline
you are aware udevil hasn't seen commits since 2017 ?
Thats later than `pmount`, as far as I can tell.
Offline
Not automounting either and no relevant complaints about udisks.
But let's try to see where pmount is falling apart:
strace -f -tt -o /tmp/pmount.strace pmount -t vfat /dev/sdb1
Offline
strace -f -tt -o /tmp/pmount.strace pmount -t vfat /dev/sdb1
`/tmp/pmount.strace` of the above command (run as root; as user `pmount` complains when called via `strace` that it is not suid root):
(For download here)
2136 16:02:07.671057 execve("/usr/bin/pmount", ["pmount", "-t", "vfat", "/dev/sdb1"], 0x7ffee6409a48 /* 65 vars */) = 0
2136 16:02:07.671969 brk(NULL) = 0x55945c85b000
2136 16:02:07.672119 arch_prctl(0x3001 /* ARCH_??? */, 0x7fffe6fc4750) = -1 EINVAL (Invalid argument)
2136 16:02:07.672292 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
2136 16:02:07.672466 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
2136 16:02:07.672600 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=267755, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.672738 mmap(NULL, 267755, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f564f2cb000
2136 16:02:07.672851 close(3) = 0
2136 16:02:07.672989 openat(AT_FDCWD, "/usr/lib/libblkid.so.1", O_RDONLY|O_CLOEXEC) = 3
2136 16:02:07.673107 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
2136 16:02:07.673217 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=244472, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.673338 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f564f2c9000
2136 16:02:07.673456 mmap(NULL, 242608, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f564f28d000
2136 16:02:07.673568 mmap(0x7f564f295000, 143360, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7f564f295000
2136 16:02:07.673698 mmap(0x7f564f2b8000, 40960, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2b000) = 0x7f564f2b8000
2136 16:02:07.673818 mmap(0x7f564f2c2000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x35000) = 0x7f564f2c2000
2136 16:02:07.673968 close(3) = 0
2136 16:02:07.674081 openat(AT_FDCWD, "/usr/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
2136 16:02:07.674194 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P9\2\0\0\0\0\0"..., 832) = 832
2136 16:02:07.674303 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"..., 784, 64) = 784
2136 16:02:07.674411 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=1953440, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.674532 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"..., 784, 64) = 784
2136 16:02:07.674640 mmap(NULL, 1994352, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f564f0a6000
2136 16:02:07.674754 mmap(0x7f564f0c8000, 1417216, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x22000) = 0x7f564f0c8000
2136 16:02:07.674886 mmap(0x7f564f222000, 360448, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17c000) = 0x7f564f222000
2136 16:02:07.675005 mmap(0x7f564f27a000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1d4000) = 0x7f564f27a000
2136 16:02:07.675138 mmap(0x7f564f280000, 52848, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f564f280000
2136 16:02:07.675277 close(3) = 0
2136 16:02:07.675405 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f564f0a3000
2136 16:02:07.675548 arch_prctl(ARCH_SET_FS, 0x7f564f0a3740) = 0
2136 16:02:07.675648 set_tid_address(0x7f564f0a3a10) = 2136
2136 16:02:07.675744 set_robust_list(0x7f564f0a3a20, 24) = 0
2136 16:02:07.675843 rseq(0x7f564f0a4060, 0x20, 0, 0x53053053) = 0
2136 16:02:07.676087 mprotect(0x7f564f27a000, 16384, PROT_READ) = 0
2136 16:02:07.676348 mprotect(0x7f564f2c2000, 24576, PROT_READ) = 0
2136 16:02:07.676502 mprotect(0x55945bfe7000, 4096, PROT_READ) = 0
2136 16:02:07.676620 mprotect(0x7f564f33e000, 8192, PROT_READ) = 0
2136 16:02:07.676778 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
2136 16:02:07.676910 munmap(0x7f564f2cb000, 267755) = 0
2136 16:02:07.677129 getrandom("\x85\x83\x84\xc9\x1c\x50\xe7\xe4", 8, GRND_NONBLOCK) = 8
2136 16:02:07.677241 brk(NULL) = 0x55945c85b000
2136 16:02:07.677340 brk(0x55945c87c000) = 0x55945c87c000
2136 16:02:07.677462 openat(AT_FDCWD, "/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 3
2136 16:02:07.677598 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=7311072, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.677720 mmap(NULL, 7311072, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f564e800000
2136 16:02:07.677870 close(3) = 0
2136 16:02:07.678099 geteuid() = 0
2136 16:02:07.678200 getuid() = 0
2136 16:02:07.678363 setresuid(-1, 0, -1) = 0
2136 16:02:07.678559 newfstatat(AT_FDCWD, "/dev/sdb1", {st_mode=S_IFBLK|0660, st_rdev=makedev(0x8, 0x11), ...}, 0) = 0
2136 16:02:07.678903 readlink("/dev", 0x7fffe6fc0590, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.679099 readlink("/dev/sdb1", 0x7fffe6fc0590, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.679273 openat(AT_FDCWD, "/etc/fstab", O_RDONLY) = 3
2136 16:02:07.679407 readlink("/dev", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.679513 readlink("/dev/sdb1", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.679634 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=2745, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.679771 read(3, "# Static information about the f"..., 4096) = 2745
2136 16:02:07.679928 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.680042 readlink("/root/tmp/devtmpfs", 0x7fffe6fbe530, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.680163 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.680264 readlink("/root/tmp/debugfs", 0x7fffe6fbe530, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.680373 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.680473 readlink("/root/tmp/securityfs", 0x7fffe6fbe530, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.680581 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.680681 readlink("/root/tmp/configfs", 0x7fffe6fbe530, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.680791 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.680892 readlink("/root/tmp/pstore", 0x7fffe6fbe530, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.681002 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.681102 readlink("/root/tmp/binfmt_misc", 0x7fffe6fbe530, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.681214 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.681315 readlink("/root/tmp/LABEL=ESP", 0x7fffe6fbe530, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.681427 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.681527 readlink("/root/tmp/LABEL=Artix_Linux", 0x7fffe6fbe530, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.681638 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.681739 readlink("/root/tmp/LABEL=Artix_Linux", 0x7fffe6fbe530, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.681849 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.681951 readlink("/root/tmp/LABEL=Artix_Linux", 0x7fffe6fbe530, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.682062 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.682180 readlink("/root/tmp/LABEL=Artix_Linux", 0x7fffe6fbe530, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.682289 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.682388 readlink("/root/tmp/LABEL=Artix_Linux", 0x7fffe6fbe530, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.682540 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.682640 readlink("/root/tmp/LABEL=Artix_Linux", 0x7fffe6fbe530, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.682752 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.682953 readlink("/root/tmp/LABEL=Artix_Linux", 0x7fffe6fbe530, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.683063 readlink("/mnt", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.683233 readlink("/mnt/btrfs_root", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.683340 readlink("/mnt/btrfs_root/subvolumes", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.683444 readlink("/mnt/btrfs_root/subvolumes/tmpdirs", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.683548 readlink("/mnt/btrfs_root/subvolumes/tmpdirs/_tmp", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.683659 readlink("/mnt", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.683764 readlink("/mnt/btrfs_root", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.683910 readlink("/mnt/btrfs_root/subvolumes", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.684015 readlink("/mnt/btrfs_root/subvolumes/tmpdirs", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.684123 readlink("/mnt/btrfs_root/subvolumes/tmpdirs/_var_tmp", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.684233 readlink("/mnt", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.684338 readlink("/mnt/btrfs_root", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.684443 readlink("/mnt/btrfs_root/subvolumes", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.684548 readlink("/mnt/btrfs_root/subvolumes/tmpdirs", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.684653 readlink("/mnt/btrfs_root/subvolumes/tmpdirs/_var_cache", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.684765 readlink("/mnt", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.684870 readlink("/mnt/btrfs_root", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.684975 readlink("/mnt/btrfs_root/subvolumes", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.685081 readlink("/mnt/btrfs_root/subvolumes/tmpdirs", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.685190 readlink("/mnt/btrfs_root/subvolumes/tmpdirs/_run", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.685300 readlink("/mnt", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.685407 readlink("/mnt/btrfs_root", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.685529 readlink("/mnt/btrfs_root/subvolumes", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.685635 readlink("/mnt/btrfs_root/subvolumes/tmpdirs", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.685740 readlink("/mnt/btrfs_root/subvolumes/tmpdirs/_root_.cache", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.685851 readlink("/mnt", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.685956 readlink("/mnt/btrfs_root", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.686062 readlink("/mnt/btrfs_root/subvolumes", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.686167 readlink("/mnt/btrfs_root/subvolumes/tmpdirs", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.686273 readlink("/mnt/btrfs_root/subvolumes/tmpdirs/_home_felics_.cache", 0x7fffe6fbe530, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.686384 read(3, "", 4096) = 0
2136 16:02:07.686483 close(3) = 0
2136 16:02:07.686595 setreuid(-1, 0) = 0
2136 16:02:07.686697 openat(AT_FDCWD, "/var/lib/pmount-locks/dev_sdb1", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = -1 ENOENT (No such file or directory)
2136 16:02:07.686818 getuid() = 0
2136 16:02:07.686910 setreuid(-1, 0) = 0
2136 16:02:07.687006 newfstatat(AT_FDCWD, "/dev/sdb1", {st_mode=S_IFBLK|0660, st_rdev=makedev(0x8, 0x11), ...}, 0) = 0
2136 16:02:07.687129 openat(AT_FDCWD, "/etc/mtab", O_RDONLY) = 3
2136 16:02:07.687279 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.687390 readlink("/dev/sdb1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.687499 newfstatat(3, "", {st_mode=S_IFREG|0444, st_size=0, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.687617 read(3, "proc /proc proc rw,nosuid,nodev,"..., 1024) = 1024
2136 16:02:07.687806 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.687908 readlink("/root/tmp/proc", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.688020 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.688155 readlink("/root/tmp/sys", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.688339 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.688434 readlink("/root/tmp/dev", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.688554 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.688644 readlink("/root/tmp/run", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.688741 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.688842 readlink("/root/tmp/efivarfs", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.688939 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.689034 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.689127 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.689229 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.689327 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.689418 readlink("/root/tmp/securityfs", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.689515 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.689604 readlink("/root/tmp/debugfs", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.689701 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.689791 readlink("/root/tmp/configfs", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.689887 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.689977 readlink("/root/tmp/pstore", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.690074 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.690163 readlink("/root/tmp/cgroup_root", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.690259 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.690355 readlink("/root/tmp/openrc", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.690452 read(3, "fs/cgroup/unified cgroup2 rw,nos"..., 1024) = 1024
2136 16:02:07.690601 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.690691 readlink("/root/tmp/none", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.690788 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.690877 readlink("/root/tmp/cpuset", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.690973 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.691061 readlink("/root/tmp/cpu", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.691157 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.691246 readlink("/root/tmp/cpuacct", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.691343 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.691429 readlink("/root/tmp/blkio", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.691523 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.691642 readlink("/root/tmp/memory", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.691775 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.691860 readlink("/root/tmp/devices", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.691953 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.692040 readlink("/root/tmp/freezer", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.692154 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.692241 readlink("/root/tmp/net_cls", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.692335 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.692421 readlink("/root/tmp/perf_event", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.692515 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.692601 readlink("/root/tmp/net_prio", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.692694 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.692780 readlink("/root/tmp/hugetlb", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.692872 read(3, "me,pids 0 0\nrdma /sys/fs/cgroup/"..., 1024) = 1024
2136 16:02:07.693038 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.693123 readlink("/root/tmp/pids", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.693217 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.693332 readlink("/root/tmp/rdma", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.693427 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.693513 readlink("/root/tmp/misc", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.693608 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.693694 readlink("/root/tmp/mqueue", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.693788 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.693875 readlink("/root/tmp/devpts", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.693970 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.694059 readlink("/root/tmp/shm", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.694155 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.694242 readlink("/root/tmp/devtmpfs", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.694339 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.694427 readlink("/root/tmp/debugfs", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.694524 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.694624 readlink("/root/tmp/securityfs", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.694723 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.694812 readlink("/root/tmp/configfs", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.694958 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.695050 readlink("/root/tmp/binfmt_misc", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.695145 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.695240 readlink("/dev/sda1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.695338 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.695459 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.695613 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.695717 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.695810 read(3, "s=zstd:5,ssd_spread,discard,noac"..., 1024) = 1024
2136 16:02:07.695952 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.696042 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.696130 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.696224 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.696319 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.696432 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.696542 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.696631 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.696719 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.696802 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.696885 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.696974 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.697060 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.697143 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.697227 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.697315 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.697403 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.698940 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.699064 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.699161 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.699301 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.699388 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.699471 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.699560 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.699644 read(3, "che=v2,commit=60,subvolid=290,su"..., 1024) = 1024
2136 16:02:07.699795 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.699878 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.699961 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.700047 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.700133 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.700215 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.700297 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.700384 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.700469 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.700551 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.700633 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.700719 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.700805 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.700887 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.700970 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.701057 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.701143 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.701224 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.701306 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.701393 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.701478 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.701557 readlink("/root/tmp/gvfsd-fuse", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.701645 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.701723 readlink("/root/tmp/portal", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.701805 read(3, "oup_id=0 0 0\ngvfsd-fuse /root/.g"..., 1024) = 588
2136 16:02:07.701902 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.701981 readlink("/root/tmp/portal", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.702066 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.702156 readlink("/root/tmp/gvfsd-fuse", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.702245 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.702396 readlink("/dev/sda1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.702501 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.702623 readlink("/dev/sda1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.702714 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.702798 readlink("/dev/sda1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.702881 read(3, "", 1024) = 0
2136 16:02:07.703009 close(3) = 0
2136 16:02:07.703121 openat(AT_FDCWD, "/proc/mounts", O_RDONLY) = 3
2136 16:02:07.703229 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.703313 readlink("/dev/sdb1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.703399 newfstatat(3, "", {st_mode=S_IFREG|0444, st_size=0, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.703496 read(3, "proc /proc proc rw,nosuid,nodev,"..., 1024) = 1024
2136 16:02:07.703648 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.703729 readlink("/root/tmp/proc", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.703817 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.703899 readlink("/root/tmp/sys", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.703986 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.704066 readlink("/root/tmp/dev", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.704153 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.704232 readlink("/root/tmp/run", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.704320 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.704400 readlink("/root/tmp/efivarfs", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.704488 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.704572 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.704656 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.704746 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.704834 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.704914 readlink("/root/tmp/securityfs", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.705001 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.705080 readlink("/root/tmp/debugfs", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.705169 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.705249 readlink("/root/tmp/configfs", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.705335 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.705430 readlink("/root/tmp/pstore", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.705517 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.705596 readlink("/root/tmp/cgroup_root", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.705684 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.705763 readlink("/root/tmp/openrc", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.705847 read(3, "fs/cgroup/unified cgroup2 rw,nos"..., 1024) = 1024
2136 16:02:07.705974 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.706054 readlink("/root/tmp/none", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.706141 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.706221 readlink("/root/tmp/cpuset", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.706307 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.706387 readlink("/root/tmp/cpu", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.706473 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.706552 readlink("/root/tmp/cpuacct", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.706638 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.706717 readlink("/root/tmp/blkio", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.706803 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.706882 readlink("/root/tmp/memory", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.706969 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.707050 readlink("/root/tmp/devices", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.707136 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.707217 readlink("/root/tmp/freezer", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.707303 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.707383 readlink("/root/tmp/net_cls", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.707470 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.707550 readlink("/root/tmp/perf_event", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.707638 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.707718 readlink("/root/tmp/net_prio", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.707814 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.707895 readlink("/root/tmp/hugetlb", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.707980 read(3, "me,pids 0 0\nrdma /sys/fs/cgroup/"..., 1024) = 1024
2136 16:02:07.708102 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.708182 readlink("/root/tmp/pids", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.708269 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.708349 readlink("/root/tmp/rdma", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.708435 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.708515 readlink("/root/tmp/misc", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.708601 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.708681 readlink("/root/tmp/mqueue", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.708772 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.708860 readlink("/root/tmp/devpts", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.708948 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.709026 readlink("/root/tmp/shm", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.709113 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.709193 readlink("/root/tmp/devtmpfs", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.709279 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.709359 readlink("/root/tmp/debugfs", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.709446 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.709525 readlink("/root/tmp/securityfs", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.709612 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.709692 readlink("/root/tmp/configfs", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.709780 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.709858 readlink("/root/tmp/binfmt_misc", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.709946 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.710031 readlink("/dev/sda1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.710120 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.710205 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.710288 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.710377 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.710462 read(3, "s=zstd:5,ssd_spread,discard,noac"..., 1024) = 1024
2136 16:02:07.710579 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.710664 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.710749 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.710838 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.710924 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.711007 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.711090 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.711178 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.711265 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.711349 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.711432 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.711520 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.711606 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.711688 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.711772 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.711869 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.711956 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.712039 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.712127 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.712215 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.712303 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.712387 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.712471 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.712561 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.712646 read(3, "che=v2,commit=60,subvolid=290,su"..., 1024) = 1024
2136 16:02:07.712756 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.712841 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.712925 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.713015 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.713102 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.713186 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.713270 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.713360 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.713448 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.713532 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.713616 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.713705 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.713793 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.713877 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.713961 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.714050 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.714139 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.714222 readlink("/dev/mapper", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.714306 readlink("/dev/mapper/btrfs_root", "../dm-1", 4096) = 7
2136 16:02:07.714396 readlink("/dev/dm-1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.714484 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.714564 readlink("/root/tmp/gvfsd-fuse", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.714652 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.714733 readlink("/root/tmp/portal", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.714819 read(3, "oup_id=0 0 0\ngvfsd-fuse /root/.g"..., 1024) = 588
2136 16:02:07.714943 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.715043 readlink("/root/tmp/portal", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.715142 getcwd("/root/tmp", 4094) = 10
2136 16:02:07.715229 readlink("/root/tmp/gvfsd-fuse", 0x7fffe6fbe3c0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.715315 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.715399 readlink("/dev/sda1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.715507 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.715589 readlink("/dev/sda1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.715676 readlink("/dev", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.715759 readlink("/dev/sda1", 0x7fffe6fbe3c0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.715857 read(3, "", 1024) = 0
2136 16:02:07.715933 close(3) = 0
2136 16:02:07.716011 openat(AT_FDCWD, "/etc/pmount.allow", O_RDONLY) = 3
2136 16:02:07.716118 openat(AT_FDCWD, "/usr/lib/gconv/gconv-modules.cache", O_RDONLY) = -1 ENOENT (No such file or directory)
2136 16:02:07.716208 openat(AT_FDCWD, "/usr/lib/gconv/gconv-modules", O_RDONLY|O_CLOEXEC) = 4
2136 16:02:07.716296 newfstatat(4, "", {st_mode=S_IFREG|0644, st_size=3916, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.716396 read(4, "# GNU libc iconv configuration.\n"..., 4096) = 3916
2136 16:02:07.716522 read(4, "", 4096) = 0
2136 16:02:07.716597 close(4) = 0
2136 16:02:07.716673 openat(AT_FDCWD, "/usr/lib/gconv/gconv-modules.d", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
2136 16:02:07.716760 newfstatat(4, "", {st_mode=S_IFDIR|0755, st_size=48, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.716855 getdents64(4, 0x55945c861ef0 /* 3 entries */, 32768) = 96
2136 16:02:07.716953 openat(AT_FDCWD, "/usr/lib/gconv/gconv-modules.d/gconv-modules-extra.conf", O_RDONLY|O_CLOEXEC) = 5
2136 16:02:07.717039 newfstatat(5, "", {st_mode=S_IFREG|0644, st_size=53974, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.717132 read(5, "# GNU libc iconv configuration.\n"..., 4096) = 4096
2136 16:02:07.717267 read(5, "B1002//\tJUS_I.B1.002//\nmodule\tJU"..., 4096) = 4096
2136 16:02:07.717451 read(5, "59-5//\nalias\tISO_8859-5//\t\tISO-8"..., 4096) = 4096
2136 16:02:07.717632 read(5, "59-16//\t\tINTERNAL\t\tISO8859-16\t1\n"..., 4096) = 4096
2136 16:02:07.717816 read(5, "-SE-A\t1\nmodule\tINTERNAL\t\tEBCDIC-"..., 4096) = 4096
2136 16:02:07.718022 read(5, "97\t\t1\n\n#\tfrom\t\t\tto\t\t\tmodule\t\tcos"..., 4096) = 4096
2136 16:02:07.718259 read(5, "1\n\n#\tfrom\t\t\tto\t\t\tmodule\t\tcost\nal"..., 4096) = 4096
2136 16:02:07.718519 read(5, "6//\t\tIBM1046//\nalias\tCP1046//\t\tI"..., 4096) = 4096
2136 16:02:07.718656 brk(0x55945c89d000) = 0x55945c89d000
2136 16:02:07.718889 read(5, "\tto\t\t\tmodule\t\tcost\nalias\tRUSCII/"..., 4096) = 4096
2136 16:02:07.719203 read(5, "03//\nmodule\tCSN_369103//\t\tINTERN"..., 4096) = 4096
2136 16:02:07.719506 read(5, "\tmodule\t\tcost\nalias\tISO-IR-8-1//"..., 4096) = 4096
2136 16:02:07.719853 read(5, "IBM1156\t\t1\n\n#\tfrom\t\t\tto\t\t\tmodule"..., 4096) = 4096
2136 16:02:07.720216 read(5, "\t\tIBM1166//\nalias\tCP1166//\t\tIBM1"..., 4096) = 4096
2136 16:02:07.720559 read(5, "alias\tROMAN9//\t\tHP-ROMAN9//\nalia"..., 4096) = 726
2136 16:02:07.720693 read(5, "", 4096) = 0
2136 16:02:07.720769 close(5) = 0
2136 16:02:07.720846 getdents64(4, 0x55945c861ef0 /* 0 entries */, 32768) = 0
2136 16:02:07.720926 close(4) = 0
2136 16:02:07.721084 futex(0x7f564f27f98c, FUTEX_WAKE_PRIVATE, 2147483647) = 0
2136 16:02:07.721915 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=104, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.722011 read(3, "# /etc/pmount.allow\n# pmount wil"..., 4096) = 104
2136 16:02:07.722100 read(3, "", 4096) = 0
2136 16:02:07.722173 close(3) = 0
2136 16:02:07.722249 newfstatat(AT_FDCWD, "/dev/sdb1", {st_mode=S_IFBLK|0660, st_rdev=makedev(0x8, 0x11), ...}, 0) = 0
2136 16:02:07.722339 newfstatat(AT_FDCWD, "/sys/subsystem/block", 0x7fffe6fbf190, 0) = -1 ENOENT (No such file or directory)
2136 16:02:07.722427 newfstatat(AT_FDCWD, "/sys/class/block", {st_mode=S_IFDIR|0755, st_size=0, ...}, 0) = 0
2136 16:02:07.722519 openat(AT_FDCWD, "/sys/class/block/", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
2136 16:02:07.722604 newfstatat(3, "", {st_mode=S_IFDIR|0755, st_size=0, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.722696 getdents64(3, 0x55945c88a250 /* 10 entries */, 32768) = 240
2136 16:02:07.722792 openat(AT_FDCWD, "/sys/class/block/./dev", O_RDONLY) = -1 ENOENT (No such file or directory)
2136 16:02:07.722882 openat(AT_FDCWD, "/sys/class/block/../dev", O_RDONLY) = -1 ENOENT (No such file or directory)
2136 16:02:07.722970 openat(AT_FDCWD, "/sys/class/block/dm-1/dev", O_RDONLY) = 4
2136 16:02:07.723073 newfstatat(4, "", {st_mode=S_IFREG|0444, st_size=4096, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.723180 read(4, "254:1\n", 4096) = 6
2136 16:02:07.723266 read(4, "", 4096) = 0
2136 16:02:07.723340 close(4) = 0
2136 16:02:07.723423 openat(AT_FDCWD, "/sys/class/block/sda2/dev", O_RDONLY) = 4
2136 16:02:07.723525 newfstatat(4, "", {st_mode=S_IFREG|0444, st_size=4096, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.723613 read(4, "8:2\n", 4096) = 4
2136 16:02:07.723695 read(4, "", 4096) = 0
2136 16:02:07.723767 close(4) = 0
2136 16:02:07.723846 openat(AT_FDCWD, "/sys/class/block/sda2", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
2136 16:02:07.723937 newfstatat(4, "", {st_mode=S_IFDIR|0755, st_size=0, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.724032 getdents64(4, 0x55945c892290 /* 16 entries */, 32768) = 480
2136 16:02:07.724122 openat(AT_FDCWD, "/sys/class/block/sda2/./dev", O_RDONLY) = 5
2136 16:02:07.724213 newfstatat(5, "", {st_mode=S_IFREG|0444, st_size=4096, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.724301 read(5, "8:2\n", 4096) = 4
2136 16:02:07.724381 read(5, "", 4096) = 0
2136 16:02:07.724457 close(5) = 0
2136 16:02:07.724535 openat(AT_FDCWD, "/sys/class/block/sda2/../dev", O_RDONLY) = 5
2136 16:02:07.724627 newfstatat(5, "", {st_mode=S_IFREG|0444, st_size=4096, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.724715 read(5, "8:0\n", 4096) = 4
2136 16:02:07.724796 read(5, "", 4096) = 0
2136 16:02:07.724870 close(5) = 0
2136 16:02:07.724948 openat(AT_FDCWD, "/sys/class/block/sda2/power/dev", O_RDONLY) = -1 ENOENT (No such file or directory)
2136 16:02:07.725045 openat(AT_FDCWD, "/sys/class/block/sda2/holders/dev", O_RDONLY) = -1 ENOENT (No such file or directory)
2136 16:02:07.725140 openat(AT_FDCWD, "/sys/class/block/sda2/trace/dev", O_RDONLY) = -1 ENOENT (No such file or directory)
2136 16:02:07.725233 getdents64(4, 0x55945c892290 /* 0 entries */, 32768) = 0
2136 16:02:07.725309 close(4) = 0
2136 16:02:07.725385 openat(AT_FDCWD, "/sys/class/block/sdb/dev", O_RDONLY) = 4
2136 16:02:07.725506 newfstatat(4, "", {st_mode=S_IFREG|0444, st_size=4096, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.725594 read(4, "8:16\n", 4096) = 5
2136 16:02:07.725676 read(4, "", 4096) = 0
2136 16:02:07.725750 close(4) = 0
2136 16:02:07.725827 openat(AT_FDCWD, "/sys/class/block/sdb", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
2136 16:02:07.725917 newfstatat(4, "", {st_mode=S_IFDIR|0755, st_size=0, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.726006 getdents64(4, 0x55945c892290 /* 30 entries */, 32768) = 912
2136 16:02:07.726100 openat(AT_FDCWD, "/sys/class/block/sdb/./dev", O_RDONLY) = 5
2136 16:02:07.726193 newfstatat(5, "", {st_mode=S_IFREG|0444, st_size=4096, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.726280 read(5, "8:16\n", 4096) = 5
2136 16:02:07.726361 read(5, "", 4096) = 0
2136 16:02:07.726435 close(5) = 0
2136 16:02:07.726512 openat(AT_FDCWD, "/sys/class/block/sdb/../dev", O_RDONLY) = -1 ENOENT (No such file or directory)
2136 16:02:07.726607 openat(AT_FDCWD, "/sys/class/block/sdb/power/dev", O_RDONLY) = -1 ENOENT (No such file or directory)
2136 16:02:07.726700 openat(AT_FDCWD, "/sys/class/block/sdb/holders/dev", O_RDONLY) = -1 ENOENT (No such file or directory)
2136 16:02:07.726794 openat(AT_FDCWD, "/sys/class/block/sdb/mq/dev", O_RDONLY) = -1 ENOENT (No such file or directory)
2136 16:02:07.726888 openat(AT_FDCWD, "/sys/class/block/sdb/queue/dev", O_RDONLY) = -1 ENOENT (No such file or directory)
2136 16:02:07.726983 openat(AT_FDCWD, "/sys/class/block/sdb/integrity/dev", O_RDONLY) = -1 ENOENT (No such file or directory)
2136 16:02:07.727077 openat(AT_FDCWD, "/sys/class/block/sdb/sdb1/dev", O_RDONLY) = 5
2136 16:02:07.727171 newfstatat(5, "", {st_mode=S_IFREG|0444, st_size=4096, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.727258 read(5, "8:17\n", 4096) = 5
2136 16:02:07.727339 read(5, "", 4096) = 0
2136 16:02:07.727414 close(5) = 0
2136 16:02:07.727490 close(4) = 0
2136 16:02:07.727565 close(3) = 0
2136 16:02:07.727641 openat(AT_FDCWD, "/sys/class/block/sdb/removable", O_RDONLY) = 3
2136 16:02:07.727733 newfstatat(3, "", {st_mode=S_IFREG|0444, st_size=4096, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.727836 read(3, "1\n", 4096) = 2
2136 16:02:07.727918 close(3) = 0
2136 16:02:07.727996 newfstatat(AT_FDCWD, "/var/lib/pmount-locks/dev_sdb1", 0x7fffe6fc04e0, 0) = -1 ENOENT (No such file or directory)
2136 16:02:07.728085 readlink("/media", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.728169 readlink("/media/sdb1", 0x7fffe6fbd4f0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.728253 openat(AT_FDCWD, "/etc/fstab", O_RDONLY) = 3
2136 16:02:07.728348 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=2745, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.728443 read(3, "# Static information about the f"..., 4096) = 2745
2136 16:02:07.728534 readlink("/devtmp", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.728620 readlink("/debugfs", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.728706 readlink("/securityfs", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.728804 readlink("/configfs", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.728891 readlink("/dev", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.728975 readlink("/dev/pstore", 0x7fffe6fbd4f0, 4096) = -1 ENOENT (No such file or directory)
2136 16:02:07.729067 readlink("/proc", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.729151 readlink("/proc/sys", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.729236 readlink("/proc/sys/fs", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.729320 readlink("/proc/sys/fs/binfmt_misc", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.729410 readlink("/boot", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.729500 readlink("/mnt", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.729583 readlink("/mnt/btrfs_root", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.729671 readlink("/var", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.729756 readlink("/var", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.729838 readlink("/var/log", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.729924 readlink("/var", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.730007 readlink("/var/spool", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.730094 readlink("/root", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.730181 readlink("/home", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.730264 readlink("/home/felics", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.730352 readlink("/tmp", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.730438 readlink("/var", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.730520 readlink("/var/tmp", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.730607 readlink("/var", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.730690 readlink("/var/cache", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.730775 readlink("/run", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.730862 readlink("/root", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.730946 readlink("/root/.cache", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.731032 readlink("/home", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.731114 readlink("/home/felics", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.731197 readlink("/home/felics/.cache", 0x7fffe6fbd4f0, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.731284 read(3, "", 4096) = 0
2136 16:02:07.731359 close(3) = 0
2136 16:02:07.731434 newfstatat(AT_FDCWD, "/media/sdb1", 0x7fffe6fbf4d0, 0) = -1 ENOENT (No such file or directory)
2136 16:02:07.731518 setreuid(-1, 0) = 0
2136 16:02:07.731608 setregid(-1, 0) = 0
2136 16:02:07.731683 mkdir("/media/sdb1", 0755) = 0
2136 16:02:07.731905 getgid() = 0
2136 16:02:07.731978 setregid(-1, 0) = 0
2136 16:02:07.732053 getuid() = 0
2136 16:02:07.732133 setreuid(-1, 0) = 0
2136 16:02:07.732209 setreuid(-1, 0) = 0
2136 16:02:07.732283 setregid(-1, 0) = 0
2136 16:02:07.732357 openat(AT_FDCWD, "/media/sdb1/.created_by_pmount", O_WRONLY|O_CREAT|O_EXCL, 0600) = 3
2136 16:02:07.732470 getgid() = 0
2136 16:02:07.732542 setregid(-1, 0) = 0
2136 16:02:07.732617 getuid() = 0
2136 16:02:07.732689 setreuid(-1, 0) = 0
2136 16:02:07.732764 close(3) = 0
2136 16:02:07.732837 setreuid(-1, 0) = 0
2136 16:02:07.732910 openat(AT_FDCWD, "/media/sdb1", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
2136 16:02:07.732996 newfstatat(3, "", {st_mode=S_IFDIR|0755, st_size=36, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.733084 getuid() = 0
2136 16:02:07.733157 setreuid(-1, 0) = 0
2136 16:02:07.733231 getdents64(3, 0x55945c88a250 /* 3 entries */, 32768) = 88
2136 16:02:07.733323 getdents64(3, 0x55945c88a250 /* 0 entries */, 32768) = 0
2136 16:02:07.733401 close(3) = 0
2136 16:02:07.733476 readlink("/media", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.733558 readlink("/media/sdb1", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.733641 openat(AT_FDCWD, "/etc/mtab", O_RDONLY) = 3
2136 16:02:07.733736 newfstatat(3, "", {st_mode=S_IFREG|0444, st_size=0, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.733825 read(3, "proc /proc proc rw,nosuid,nodev,"..., 1024) = 1024
2136 16:02:07.733968 readlink("/proc", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.734055 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.734141 readlink("/dev", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.734228 readlink("/run", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.734316 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.734400 readlink("/sys/firmware", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.734486 readlink("/sys/firmware/efi", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.734572 readlink("/sys/firmware/efi/efivars", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.734664 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.734747 readlink("/sys/kernel", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.734833 readlink("/sys/kernel/security", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.734922 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.735006 readlink("/sys/kernel", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.735091 readlink("/sys/kernel/debug", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.735181 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.735265 readlink("/sys/kernel", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.735349 readlink("/sys/kernel/config", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.735440 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.735524 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.735608 readlink("/sys/fs/pstore", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.735696 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.735779 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.735862 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.735950 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.736034 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.736126 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.736210 readlink("/sys/fs/cgroup/openrc", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.736296 read(3, "fs/cgroup/unified cgroup2 rw,nos"..., 1024) = 1024
2136 16:02:07.736422 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.736504 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.736587 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.736672 readlink("/sys/fs/cgroup/unified", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.736760 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.736842 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.736926 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.737010 readlink("/sys/fs/cgroup/cpuset", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.737097 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.737180 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.737263 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.737347 readlink("/sys/fs/cgroup/cpu", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.737435 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.737517 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.737601 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.737685 readlink("/sys/fs/cgroup/cpuacct", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.737772 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.737855 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.737939 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.738023 readlink("/sys/fs/cgroup/blkio", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.738109 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.738192 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.738275 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.738359 readlink("/sys/fs/cgroup/memory", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.738446 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.738530 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.738613 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.738697 readlink("/sys/fs/cgroup/devices", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.738793 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.738876 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.738959 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.739043 readlink("/sys/fs/cgroup/freezer", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.739131 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.739214 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.739297 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.739381 readlink("/sys/fs/cgroup/net_cls", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.739470 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.739553 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.739636 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.739736 readlink("/sys/fs/cgroup/perf_event", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.739825 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.739908 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.739992 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.740075 readlink("/sys/fs/cgroup/net_prio", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.740163 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.740246 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.740330 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.740414 readlink("/sys/fs/cgroup/hugetlb", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.740500 read(3, "me,pids 0 0\nrdma /sys/fs/cgroup/"..., 1024) = 1024
2136 16:02:07.740624 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.740706 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.740791 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.740875 readlink("/sys/fs/cgroup/pids", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.740962 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.741045 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.741128 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.741212 readlink("/sys/fs/cgroup/rdma", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.741300 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.741382 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.741466 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.741551 readlink("/sys/fs/cgroup/misc", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.741786 readlink("/dev", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.741909 readlink("/dev/mqueue", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.742015 readlink("/dev", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.742116 readlink("/dev/pts", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.742247 readlink("/dev", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.742352 readlink("/dev/shm", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.742439 readlink("/devtmp", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.742525 readlink("/debugfs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.742610 readlink("/securityfs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.742695 readlink("/configfs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.742782 readlink("/proc", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.742865 readlink("/proc/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.742948 readlink("/proc/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.743031 readlink("/proc/sys/fs/binfmt_misc", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.743119 readlink("/boot", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.743211 readlink("/mnt", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.743295 readlink("/mnt/btrfs_root", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.743380 read(3, "s=zstd:5,ssd_spread,discard,noac"..., 1024) = 1024
2136 16:02:07.743503 readlink("/var", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.743589 readlink("/var", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.743688 readlink("/var/log", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.743775 readlink("/var", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.743858 readlink("/var/spool", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.743943 readlink("/root", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.744029 readlink("/home", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.744111 readlink("/home/felics", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.744197 readlink("/tmp", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.744280 read(3, "che=v2,commit=60,subvolid=290,su"..., 1024) = 1024
2136 16:02:07.744399 readlink("/var", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.744482 readlink("/var/tmp", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.744568 readlink("/var", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.744651 readlink("/var/cache", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.744737 readlink("/run", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.744822 readlink("/root", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.744904 readlink("/root/.cache", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.744989 readlink("/home", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.745071 readlink("/home/felics", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.745154 readlink("/home/felics/.cache", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.745241 readlink("/run", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.745324 readlink("/run/user", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.745408 readlink("/run/user/1000", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.745504 readlink("/run/user/1000/gvfs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.745593 readlink("/run", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.745675 readlink("/run/user", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.745758 readlink("/run/user/1000", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.745841 readlink("/run/user/1000/doc", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.745925 read(3, "oup_id=0 0 0\ngvfsd-fuse /root/.g"..., 1024) = 588
2136 16:02:07.746021 readlink("/root", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.746104 readlink("/root/.cache", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.746186 readlink("/root/.cache/doc", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.746273 readlink("/root", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.746355 readlink("/root/.gvfs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.746441 readlink("/boot", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.746527 readlink("/boot", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.746612 readlink("/boot", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.746695 read(3, "", 1024) = 0
2136 16:02:07.746772 close(3) = 0
2136 16:02:07.746856 readlink("/media", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.746939 readlink("/media/sdb1", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.747024 openat(AT_FDCWD, "/proc/mounts", O_RDONLY) = 3
2136 16:02:07.747128 newfstatat(3, "", {st_mode=S_IFREG|0444, st_size=0, ...}, AT_EMPTY_PATH) = 0
2136 16:02:07.747222 read(3, "proc /proc proc rw,nosuid,nodev,"..., 1024) = 1024
2136 16:02:07.747354 readlink("/proc", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.747439 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.747544 readlink("/dev", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.747630 readlink("/run", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.747725 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.747808 readlink("/sys/firmware", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.747893 readlink("/sys/firmware/efi", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.747978 readlink("/sys/firmware/efi/efivars", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.748069 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.748154 readlink("/sys/kernel", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.748239 readlink("/sys/kernel/security", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.748328 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.748413 readlink("/sys/kernel", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.748497 readlink("/sys/kernel/debug", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.748587 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.748670 readlink("/sys/kernel", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.748769 readlink("/sys/kernel/config", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.748860 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.748943 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.749028 readlink("/sys/fs/pstore", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.749117 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.749199 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.749283 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.749371 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.749454 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.749537 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.749621 readlink("/sys/fs/cgroup/openrc", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.749707 read(3, "fs/cgroup/unified cgroup2 rw,nos"..., 1024) = 1024
2136 16:02:07.749835 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.749917 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.750000 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.750085 readlink("/sys/fs/cgroup/unified", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.750173 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.750256 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.750339 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.750423 readlink("/sys/fs/cgroup/cpuset", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.750511 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.750593 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.750677 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.750760 readlink("/sys/fs/cgroup/cpu", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.750848 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.750931 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.751015 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.751099 readlink("/sys/fs/cgroup/cpuacct", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.751198 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.751281 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.751364 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.751448 readlink("/sys/fs/cgroup/blkio", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.751535 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.751618 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.751701 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.751785 readlink("/sys/fs/cgroup/memory", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.751872 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.751955 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.752038 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.752129 readlink("/sys/fs/cgroup/devices", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.752218 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.752301 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.752385 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.752468 readlink("/sys/fs/cgroup/freezer", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.752556 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.752638 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.752722 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.752805 readlink("/sys/fs/cgroup/net_cls", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.752893 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.752975 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.753058 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.753142 readlink("/sys/fs/cgroup/perf_event", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.753231 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.753314 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.753398 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.753482 readlink("/sys/fs/cgroup/net_prio", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.753570 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.753652 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.753735 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.753819 readlink("/sys/fs/cgroup/hugetlb", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.753905 read(3, "me,pids 0 0\nrdma /sys/fs/cgroup/"..., 1024) = 1024
2136 16:02:07.754027 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.754110 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.754193 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.754277 readlink("/sys/fs/cgroup/pids", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.754364 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.754447 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.754530 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.754614 readlink("/sys/fs/cgroup/rdma", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.754710 readlink("/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.754793 readlink("/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.754878 readlink("/sys/fs/cgroup", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.754961 readlink("/sys/fs/cgroup/misc", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.755049 readlink("/dev", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.755131 readlink("/dev/mqueue", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.755218 readlink("/dev", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.755301 readlink("/dev/pts", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.755388 readlink("/dev", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.755473 readlink("/dev/shm", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.755560 readlink("/devtmp", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.755646 readlink("/debugfs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.755732 readlink("/securityfs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.755817 readlink("/configfs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.755903 readlink("/proc", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.755985 readlink("/proc/sys", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.756069 readlink("/proc/sys/fs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.756154 readlink("/proc/sys/fs/binfmt_misc", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.756242 readlink("/boot", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.756329 readlink("/mnt", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.756411 readlink("/mnt/btrfs_root", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.756496 read(3, "s=zstd:5,ssd_spread,discard,noac"..., 1024) = 1024
2136 16:02:07.756612 readlink("/var", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.756699 readlink("/var", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.756782 readlink("/var/log", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.756868 readlink("/var", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.756951 readlink("/var/spool", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.757037 readlink("/root", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.757124 readlink("/home", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.757207 readlink("/home/felics", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.757294 readlink("/tmp", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.757377 read(3, "che=v2,commit=60,subvolid=290,su"..., 1024) = 1024
2136 16:02:07.757492 readlink("/var", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.757574 readlink("/var/tmp", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.757661 readlink("/var", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.757743 readlink("/var/cache", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.757829 readlink("/run", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.757915 readlink("/root", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.757998 readlink("/root/.cache", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.758084 readlink("/home", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.758166 readlink("/home/felics", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.758249 readlink("/home/felics/.cache", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.758336 readlink("/run", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.758427 readlink("/run/user", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.758511 readlink("/run/user/1000", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.758594 readlink("/run/user/1000/gvfs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.758681 readlink("/run", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.758768 readlink("/run/user", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.758852 readlink("/run/user/1000", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.758935 readlink("/run/user/1000/doc", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.759020 read(3, "oup_id=0 0 0\ngvfsd-fuse /root/.g"..., 1024) = 588
2136 16:02:07.759113 readlink("/root", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.759195 readlink("/root/.cache", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.759277 readlink("/root/.cache/doc", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.759363 readlink("/root", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.759445 readlink("/root/.gvfs", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.759531 readlink("/boot", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.759616 readlink("/boot", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.759702 readlink("/boot", 0x7fffe6fbe500, 4096) = -1 EINVAL (Invalid argument)
2136 16:02:07.759786 read(3, "", 1024) = 0
2136 16:02:07.759861 close(3) = 0
2136 16:02:07.759943 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f564f0a3a10) = 2137
2136 16:02:07.760236 wait4(-1, <unfinished ...>
2137 16:02:07.760265 set_robust_list(0x7f564f0a3a20, 24) = 0
2137 16:02:07.760416 setreuid(-1, 0) = 0
2137 16:02:07.760496 setreuid(0, -1) = 0
2137 16:02:07.760575 openat(AT_FDCWD, "/dev/null", O_WRONLY) = 3
2137 16:02:07.760674 dup2(3, 1) = 1
2137 16:02:07.760749 dup2(3, 2) = 2
2137 16:02:07.760822 execve("/usr/bin/cryptsetup", ["/usr/bin/cryptsetup", "isLuks", "/dev/sdb1"], 0x7fffe6fc48d0 /* 65 vars */) = 0
2137 16:02:07.761285 brk(NULL) = 0x5614844fe000
2137 16:02:07.761385 arch_prctl(0x3001 /* ARCH_??? */, 0x7ffdff6eeeb0) = -1 EINVAL (Invalid argument)
2137 16:02:07.761506 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
2137 16:02:07.761603 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 4
2137 16:02:07.761692 newfstatat(4, "", {st_mode=S_IFREG|0644, st_size=267755, ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.761784 mmap(NULL, 267755, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7fea8d1a2000
2137 16:02:07.761869 close(4) = 0
2137 16:02:07.761978 openat(AT_FDCWD, "/usr/lib/libcryptsetup.so.12", O_RDONLY|O_CLOEXEC) = 4
2137 16:02:07.762066 read(4, "\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
2137 16:02:07.762153 newfstatat(4, "", {st_mode=S_IFREG|0755, st_size=529464, ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.762246 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fea8d1a0000
2137 16:02:07.762332 mmap(NULL, 531792, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7fea8d11e000
2137 16:02:07.762412 mmap(0x7fea8d126000, 372736, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x8000) = 0x7fea8d126000
2137 16:02:07.762504 mmap(0x7fea8d181000, 110592, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x63000) = 0x7fea8d181000
2137 16:02:07.762592 mmap(0x7fea8d19c000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x7d000) = 0x7fea8d19c000
2137 16:02:07.762706 close(4) = 0
2137 16:02:07.762785 openat(AT_FDCWD, "/usr/lib/libpopt.so.0", O_RDONLY|O_CLOEXEC) = 4
2137 16:02:07.762873 read(4, "\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
2137 16:02:07.762953 newfstatat(4, "", {st_mode=S_IFREG|0755, st_size=55728, ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.763051 mmap(NULL, 58000, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7fea8d10f000
2137 16:02:07.763135 mmap(0x7fea8d112000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x3000) = 0x7fea8d112000
2137 16:02:07.763227 mmap(0x7fea8d11a000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xb000) = 0x7fea8d11a000
2137 16:02:07.763312 mmap(0x7fea8d11c000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xc000) = 0x7fea8d11c000
2137 16:02:07.763418 close(4) = 0
2137 16:02:07.763496 openat(AT_FDCWD, "/usr/lib/libuuid.so.1", O_RDONLY|O_CLOEXEC) = 4
2137 16:02:07.763585 read(4, "\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
2137 16:02:07.763665 newfstatat(4, "", {st_mode=S_IFREG|0755, st_size=30624, ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.763754 mmap(NULL, 32808, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7fea8d106000
2137 16:02:07.763836 mmap(0x7fea8d108000, 16384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2000) = 0x7fea8d108000
2137 16:02:07.763929 mmap(0x7fea8d10c000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x6000) = 0x7fea8d10c000
2137 16:02:07.764020 mmap(0x7fea8d10d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x6000) = 0x7fea8d10d000
2137 16:02:07.764126 close(4) = 0
2137 16:02:07.764209 openat(AT_FDCWD, "/usr/lib/libblkid.so.1", O_RDONLY|O_CLOEXEC) = 4
2137 16:02:07.764297 read(4, "\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
2137 16:02:07.764375 newfstatat(4, "", {st_mode=S_IFREG|0755, st_size=244472, ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.764469 mmap(NULL, 242608, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7fea8d0ca000
2137 16:02:07.764553 mmap(0x7fea8d0d2000, 143360, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x8000) = 0x7fea8d0d2000
2137 16:02:07.764646 mmap(0x7fea8d0f5000, 40960, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2b000) = 0x7fea8d0f5000
2137 16:02:07.764734 mmap(0x7fea8d0ff000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x35000) = 0x7fea8d0ff000
2137 16:02:07.764847 close(4) = 0
2137 16:02:07.764924 openat(AT_FDCWD, "/usr/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 4
2137 16:02:07.765009 read(4, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P9\2\0\0\0\0\0"..., 832) = 832
2137 16:02:07.765089 pread64(4, "\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"..., 784, 64) = 784
2137 16:02:07.765169 newfstatat(4, "", {st_mode=S_IFREG|0755, st_size=1953440, ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.765257 pread64(4, "\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"..., 784, 64) = 784
2137 16:02:07.765337 mmap(NULL, 1994352, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7fea8cee3000
2137 16:02:07.765424 mmap(0x7fea8cf05000, 1417216, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x22000) = 0x7fea8cf05000
2137 16:02:07.765519 mmap(0x7fea8d05f000, 360448, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x17c000) = 0x7fea8d05f000
2137 16:02:07.765607 mmap(0x7fea8d0b7000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1d4000) = 0x7fea8d0b7000
2137 16:02:07.765706 mmap(0x7fea8d0bd000, 52848, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fea8d0bd000
2137 16:02:07.765808 close(4) = 0
2137 16:02:07.765893 openat(AT_FDCWD, "/usr/lib/libdevmapper.so.1.02", O_RDONLY|O_CLOEXEC) = 4
2137 16:02:07.765978 read(4, "\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
2137 16:02:07.766059 newfstatat(4, "", {st_mode=S_IFREG|0755, st_size=363680, ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.766147 mmap(NULL, 366176, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7fea8ce89000
2137 16:02:07.766227 mmap(0x7fea8ce94000, 221184, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xb000) = 0x7fea8ce94000
2137 16:02:07.766325 mmap(0x7fea8ceca000, 81920, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x41000) = 0x7fea8ceca000
2137 16:02:07.766411 mmap(0x7fea8cede000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x55000) = 0x7fea8cede000
2137 16:02:07.766506 mmap(0x7fea8cee2000, 1632, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fea8cee2000
2137 16:02:07.766607 close(4) = 0
2137 16:02:07.766684 openat(AT_FDCWD, "/usr/lib/libcrypto.so.3", O_RDONLY|O_CLOEXEC) = 4
2137 16:02:07.766769 read(4, "\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
2137 16:02:07.766850 newfstatat(4, "", {st_mode=S_IFREG|0755, st_size=5214776, ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.766940 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fea8ce87000
2137 16:02:07.767026 mmap(NULL, 5225312, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7fea8c800000
2137 16:02:07.767110 mmap(0x7fea8c8b1000, 3244032, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xb1000) = 0x7fea8c8b1000
2137 16:02:07.767202 mmap(0x7fea8cbc9000, 860160, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x3c9000) = 0x7fea8cbc9000
2137 16:02:07.767288 mmap(0x7fea8cc9b000, 385024, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x49b000) = 0x7fea8cc9b000
2137 16:02:07.767385 mmap(0x7fea8ccf9000, 11104, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fea8ccf9000
2137 16:02:07.767490 close(4) = 0
2137 16:02:07.767576 openat(AT_FDCWD, "/usr/lib/libargon2.so.1", O_RDONLY|O_CLOEXEC) = 4
2137 16:02:07.767662 read(4, "\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
2137 16:02:07.767743 newfstatat(4, "", {st_mode=S_IFREG|0644, st_size=34496, ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.767832 mmap(NULL, 36880, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7fea8ce7d000
2137 16:02:07.767913 mmap(0x7fea8ce7e000, 20480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1000) = 0x7fea8ce7e000
2137 16:02:07.768008 mmap(0x7fea8ce83000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x6000) = 0x7fea8ce83000
2137 16:02:07.768093 mmap(0x7fea8ce85000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x7000) = 0x7fea8ce85000
2137 16:02:07.768202 close(4) = 0
2137 16:02:07.768279 openat(AT_FDCWD, "/usr/lib/libjson-c.so.5", O_RDONLY|O_CLOEXEC) = 4
2137 16:02:07.768366 read(4, "\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
2137 16:02:07.768447 newfstatat(4, "", {st_mode=S_IFREG|0755, st_size=71848, ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.768540 mmap(NULL, 74184, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7fea8ce6a000
2137 16:02:07.768623 mmap(0x7fea8ce6e000, 36864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x4000) = 0x7fea8ce6e000
2137 16:02:07.768715 mmap(0x7fea8ce77000, 16384, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xd000) = 0x7fea8ce77000
2137 16:02:07.768808 mmap(0x7fea8ce7b000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x10000) = 0x7fea8ce7b000
2137 16:02:07.768929 close(4) = 0
2137 16:02:07.769019 openat(AT_FDCWD, "/usr/lib/libudev.so.1", O_RDONLY|O_CLOEXEC) = 4
2137 16:02:07.769105 read(4, "\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
2137 16:02:07.769186 newfstatat(4, "", {st_mode=S_IFREG|0755, st_size=211104, ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.769278 mmap(NULL, 211224, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7fea8ce36000
2137 16:02:07.769360 mmap(0x7fea8ce3b000, 135168, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x5000) = 0x7fea8ce3b000
2137 16:02:07.769455 mmap(0x7fea8ce5c000, 49152, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x26000) = 0x7fea8ce5c000
2137 16:02:07.769542 mmap(0x7fea8ce68000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x32000) = 0x7fea8ce68000
2137 16:02:07.769652 close(4) = 0
2137 16:02:07.769730 openat(AT_FDCWD, "/usr/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = 4
2137 16:02:07.769825 read(4, "\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
2137 16:02:07.769954 newfstatat(4, "", {st_mode=S_IFREG|0755, st_size=944608, ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.770086 mmap(NULL, 946368, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7fea8cd4e000
2137 16:02:07.770217 mmap(0x7fea8cd5c000, 499712, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xe000) = 0x7fea8cd5c000
2137 16:02:07.770334 mmap(0x7fea8cdd6000, 385024, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x88000) = 0x7fea8cdd6000
2137 16:02:07.770423 mmap(0x7fea8ce34000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xe5000) = 0x7fea8ce34000
2137 16:02:07.770541 close(4) = 0
2137 16:02:07.770624 openat(AT_FDCWD, "/usr/lib/libcap.so.2", O_RDONLY|O_CLOEXEC) = 4
2137 16:02:07.770714 read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 s\0\0\0\0\0\0"..., 832) = 832
2137 16:02:07.770793 newfstatat(4, "", {st_mode=S_IFREG|0755, st_size=42880, ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.770881 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fea8cd4c000
2137 16:02:07.770967 mmap(NULL, 45128, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7fea8cd40000
2137 16:02:07.771050 mmap(0x7fea8cd43000, 20480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x3000) = 0x7fea8cd43000
2137 16:02:07.771156 mmap(0x7fea8cd48000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x8000) = 0x7fea8cd48000
2137 16:02:07.771245 mmap(0x7fea8cd4a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x9000) = 0x7fea8cd4a000
2137 16:02:07.771351 close(4) = 0
2137 16:02:07.771429 openat(AT_FDCWD, "/usr/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 4
2137 16:02:07.771514 read(4, "\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
2137 16:02:07.771595 newfstatat(4, "", {st_mode=S_IFREG|0644, st_size=728128, ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.771683 mmap(NULL, 147912, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7fea8cd1b000
2137 16:02:07.771764 mmap(0x7fea8cd1f000, 110592, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x4000) = 0x7fea8cd1f000
2137 16:02:07.771866 mmap(0x7fea8cd3a000, 16384, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1f000) = 0x7fea8cd3a000
2137 16:02:07.771959 mmap(0x7fea8cd3e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x22000) = 0x7fea8cd3e000
2137 16:02:07.772073 close(4) = 0
2137 16:02:07.772198 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fea8cd19000
2137 16:02:07.772299 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fea8cd17000
2137 16:02:07.772383 arch_prctl(ARCH_SET_FS, 0x7fea8cd1a600) = 0
2137 16:02:07.772458 set_tid_address(0x7fea8cd1a8d0) = 2137
2137 16:02:07.772529 set_robust_list(0x7fea8cd1a8e0, 24) = 0
2137 16:02:07.772602 rseq(0x7fea8cd1af20, 0x20, 0, 0x53053053) = 0
2137 16:02:07.772796 mprotect(0x7fea8d0b7000, 16384, PROT_READ) = 0
2137 16:02:07.772919 mprotect(0x7fea8cd3e000, 4096, PROT_READ) = 0
2137 16:02:07.773038 mprotect(0x7fea8cd4a000, 4096, PROT_READ) = 0
2137 16:02:07.773162 mprotect(0x7fea8ce34000, 4096, PROT_READ) = 0
2137 16:02:07.773317 mprotect(0x7fea8ce68000, 4096, PROT_READ) = 0
2137 16:02:07.773436 mprotect(0x7fea8ce7b000, 4096, PROT_READ) = 0
2137 16:02:07.773529 mprotect(0x7fea8ce85000, 4096, PROT_READ) = 0
2137 16:02:07.774386 mprotect(0x7fea8cc9b000, 372736, PROT_READ) = 0
2137 16:02:07.774574 mprotect(0x7fea8cede000, 4096, PROT_READ) = 0
2137 16:02:07.774742 mprotect(0x7fea8d0ff000, 24576, PROT_READ) = 0
2137 16:02:07.774850 mprotect(0x7fea8d10d000, 4096, PROT_READ) = 0
2137 16:02:07.774963 mprotect(0x7fea8d11c000, 4096, PROT_READ) = 0
2137 16:02:07.775170 mprotect(0x7fea8d19c000, 8192, PROT_READ) = 0
2137 16:02:07.775339 mprotect(0x561484402000, 4096, PROT_READ) = 0
2137 16:02:07.775481 mprotect(0x7fea8d215000, 8192, PROT_READ) = 0
2137 16:02:07.775677 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
2137 16:02:07.775791 munmap(0x7fea8d1a2000, 267755) = 0
2137 16:02:07.775932 prctl(PR_CAPBSET_READ, CAP_MAC_OVERRIDE) = 1
2137 16:02:07.776010 prctl(PR_CAPBSET_READ, 0x30 /* CAP_??? */) = -1 EINVAL (Invalid argument)
2137 16:02:07.776090 prctl(PR_CAPBSET_READ, CAP_CHECKPOINT_RESTORE) = 1
2137 16:02:07.776162 prctl(PR_CAPBSET_READ, 0x2c /* CAP_??? */) = -1 EINVAL (Invalid argument)
2137 16:02:07.776236 prctl(PR_CAPBSET_READ, 0x2a /* CAP_??? */) = -1 EINVAL (Invalid argument)
2137 16:02:07.776308 prctl(PR_CAPBSET_READ, 0x29 /* CAP_??? */) = -1 EINVAL (Invalid argument)
2137 16:02:07.776549 getrandom("\x1a\x45\x54\xe4\x54\x98\x6f\xf4", 8, GRND_NONBLOCK) = 8
2137 16:02:07.776634 brk(NULL) = 0x5614844fe000
2137 16:02:07.776709 brk(0x56148451f000) = 0x56148451f000
2137 16:02:07.776793 openat(AT_FDCWD, "/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 4
2137 16:02:07.776890 newfstatat(4, "", {st_mode=S_IFREG|0644, st_size=7311072, ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.776980 mmap(NULL, 7311072, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7fea8c000000
2137 16:02:07.777071 close(4) = 0
2137 16:02:07.777286 rt_sigaction(SIGINT, {sa_handler=0x5614843dbf40, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fea8cf1bf50}, NULL, 8) = 0
2137 16:02:07.777377 rt_sigaction(SIGTERM, {sa_handler=0x5614843dbf40, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fea8cf1bf50}, NULL, 8) = 0
2137 16:02:07.777459 rt_sigprocmask(SIG_UNBLOCK, [INT TERM], NULL, 8) = 0
2137 16:02:07.777558 openat(AT_FDCWD, "/dev/sdb1", O_RDONLY|O_DIRECT) = 4
2137 16:02:07.778592 newfstatat(4, "", {st_mode=S_IFBLK|0660, st_rdev=makedev(0x8, 0x11), ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.778682 ioctl(4, BLKSSZGET, [512]) = 0
2137 16:02:07.778775 fstatfs(4, {f_type=TMPFS_MAGIC, f_bsize=4096, f_blocks=2560, f_bfree=2560, f_bavail=2560, f_files=991019, f_ffree=990346, f_fsid={val=[0xa01acf3, 0x47248beb]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NOEXEC|ST_RELATIME}) = 0
2137 16:02:07.778881 read(4, "\353X\220mkfs.fat\0\20\20\20\0\2\0\0\0\0\370\0\0?\0\377\0\0\0\1\0"..., 512) = 512
2137 16:02:07.781235 newfstatat(4, "", {st_mode=S_IFBLK|0660, st_rdev=makedev(0x8, 0x11), ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.781328 fstatfs(4, {f_type=TMPFS_MAGIC, f_bsize=4096, f_blocks=2560, f_bfree=2560, f_bavail=2560, f_files=991019, f_ffree=990346, f_fsid={val=[0xa01acf3, 0x47248beb]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NOEXEC|ST_RELATIME}) = 0
2137 16:02:07.781416 newfstatat(4, "", {st_mode=S_IFBLK|0660, st_rdev=makedev(0x8, 0x11), ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.781507 ioctl(4, BLKSSZGET, [512]) = 0
2137 16:02:07.781587 close(4) = 0
2137 16:02:07.781719 openat(AT_FDCWD, "/dev/urandom", O_RDONLY|O_CLOEXEC) = 4
2137 16:02:07.781815 openat(AT_FDCWD, "/dev/random", O_RDONLY|O_NONBLOCK|O_CLOEXEC) = 5
2137 16:02:07.782181 futex(0x7fea8ccf9484, FUTEX_WAKE_PRIVATE, 2147483647) = 0
2137 16:02:07.782317 futex(0x7fea8ccf8b10, FUTEX_WAKE_PRIVATE, 2147483647) = 0
2137 16:02:07.782436 futex(0x7fea8ccf8d28, FUTEX_WAKE_PRIVATE, 2147483647) = 0
2137 16:02:07.782720 openat(AT_FDCWD, "/usr/lib/ossl-modules/legacy.so", O_RDONLY|O_CLOEXEC) = 6
2137 16:02:07.782897 read(6, "\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
2137 16:02:07.783006 newfstatat(6, "", {st_mode=S_IFREG|0755, st_size=112400, ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.783193 mmap(NULL, 110624, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7fea8d1c8000
2137 16:02:07.783313 mmap(0x7fea8d1cf000, 45056, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x7000) = 0x7fea8d1cf000
2137 16:02:07.783416 mmap(0x7fea8d1da000, 20480, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x12000) = 0x7fea8d1da000
2137 16:02:07.783503 mmap(0x7fea8d1df000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x17000) = 0x7fea8d1df000
2137 16:02:07.783691 close(6) = 0
2137 16:02:07.783997 mprotect(0x7fea8d1df000, 16384, PROT_READ) = 0
2137 16:02:07.784154 uname({sysname="Linux", nodename="felics-micropc", ...}) = 0
2137 16:02:07.784252 openat(AT_FDCWD, "/dev/sdb1", O_RDONLY|O_DIRECT) = 6
2137 16:02:07.784445 lseek(6, 0, SEEK_SET) = 0
2137 16:02:07.784533 read(6, "", 0) = 0
2137 16:02:07.784672 read(6, "\353X\220mkfs.fat\0\20\20\20\0\2\0\0\0\0\370\0\0?\0\377\0\0\0\1\0"..., 512) = 512
2137 16:02:07.784967 close(6) = 0
2137 16:02:07.785121 openat(AT_FDCWD, "/dev/sdb1", O_RDONLY|O_NONBLOCK|O_CLOEXEC) = 6
2137 16:02:07.785319 newfstatat(6, "", {st_mode=S_IFBLK|0660, st_rdev=makedev(0x8, 0x11), ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.785436 openat(AT_FDCWD, "/run", O_RDONLY|O_CLOEXEC|O_DIRECTORY) = 7
2137 16:02:07.785525 openat(7, "cryptsetup", O_RDONLY|O_NOFOLLOW|O_CLOEXEC|O_DIRECTORY) = 8
2137 16:02:07.785611 close(7) = 0
2137 16:02:07.785695 openat(8, "L_8:17", O_RDWR|O_CREAT|O_NOFOLLOW|O_CLOEXEC, 0777) = 7
2137 16:02:07.785896 close(8) = 0
2137 16:02:07.785970 close(6) = 0
2137 16:02:07.786048 flock(7, LOCK_SH) = 0
2137 16:02:07.786129 newfstatat(7, "", {st_mode=S_IFREG|0755, st_size=0, ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.786218 newfstatat(AT_FDCWD, "/run/cryptsetup/L_8:17", {st_mode=S_IFREG|0755, st_size=0, ...}, 0) = 0
2137 16:02:07.786316 openat(AT_FDCWD, "/dev/sdb1", O_RDONLY|O_DIRECT) = 6
2137 16:02:07.786516 newfstatat(6, "", {st_mode=S_IFBLK|0660, st_rdev=makedev(0x8, 0x11), ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.786603 newfstatat(7, "", {st_mode=S_IFREG|0755, st_size=0, ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.786696 newfstatat(AT_FDCWD, "/run/cryptsetup/L_8:17", {st_mode=S_IFREG|0755, st_size=0, ...}, 0) = 0
2137 16:02:07.786786 lseek(6, 0, SEEK_SET) = 0
2137 16:02:07.786866 read(6, "\353X\220mkfs.fat\0\20\20\20\0\2\0\0\0\0\370\0\0?\0\377\0\0\0\1\0"..., 4096) = 4096
2137 16:02:07.787218 lseek(6, 16384, SEEK_SET) = 16384
2137 16:02:07.787297 read(6, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 4096
2137 16:02:07.787624 lseek(6, 32768, SEEK_SET) = 32768
2137 16:02:07.787704 read(6, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 4096
2137 16:02:07.788164 lseek(6, 65536, SEEK_SET) = 65536
2137 16:02:07.788245 read(6, "\370\377\377\17\377\377\377\17\370\377\377\17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 4096
2137 16:02:07.788597 lseek(6, 131072, SEEK_SET) = 131072
2137 16:02:07.788675 read(6, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 4096
2137 16:02:07.789063 lseek(6, 262144, SEEK_SET) = 262144
2137 16:02:07.789154 read(6, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 4096
2137 16:02:07.789535 lseek(6, 524288, SEEK_SET) = 524288
2137 16:02:07.789625 read(6, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 4096
2137 16:02:07.789998 lseek(6, 1048576, SEEK_SET) = 1048576
2137 16:02:07.790077 read(6, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 4096
2137 16:02:07.790435 lseek(6, 2097152, SEEK_SET) = 2097152
2137 16:02:07.790508 read(6, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 4096
2137 16:02:07.790931 lseek(6, 4194304, SEEK_SET) = 4194304
2137 16:02:07.791005 read(6, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 4096
2137 16:02:07.791409 flock(7, LOCK_UN) = 0
2137 16:02:07.791484 flock(7, LOCK_EX|LOCK_NB) = 0
2137 16:02:07.791560 newfstatat(7, "", {st_mode=S_IFREG|0755, st_size=0, ...}, AT_EMPTY_PATH) = 0
2137 16:02:07.791646 newfstatat(AT_FDCWD, "/run/cryptsetup/L_8:17", {st_mode=S_IFREG|0755, st_size=0, ...}, 0) = 0
2137 16:02:07.791735 unlink("/run/cryptsetup/L_8:17") = 0
2137 16:02:07.791846 close(7) = 0
2137 16:02:07.791973 close(6) = 0
2137 16:02:07.792131 futex(0x7fea8ccf92e0, FUTEX_WAKE_PRIVATE, 2147483647) = 0
2137 16:02:07.792228 close(5) = 0
2137 16:02:07.792306 close(4) = 0
2137 16:02:07.792455 exit_group(1) = ?
2137 16:02:07.793130 +++ exited with 1 +++
2136 16:02:07.793165 <... wait4 resumed>[{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 2137
2136 16:02:07.793233 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=2137, si_uid=0, si_status=1, si_utime=0, si_stime=0} ---
2136 16:02:07.793348 setreuid(-1, 0) = 0
2136 16:02:07.793445 creat("/var/lock/pmount__media_sdb1", 0600) = 3
2136 16:02:07.793668 getuid() = 0
2136 16:02:07.793743 setreuid(-1, 0) = 0
2136 16:02:07.793820 fcntl(3, F_SETLK, {l_type=F_WRLCK, l_whence=SEEK_CUR, l_start=0, l_len=0}) = 0
2136 16:02:07.793914 getgid() = 0
2136 16:02:07.793986 setreuid(-1, 0) = 0
2136 16:02:07.794063 newfstatat(AT_FDCWD, "/proc/self/exe", {st_mode=S_IFREG|S_ISUID|0755, st_size=52752, ...}, 0) = 0
2136 16:02:07.794176 getuid() = 0
2136 16:02:07.794250 setreuid(-1, 0) = 0
2136 16:02:07.794324 getuid() = 0
2136 16:02:07.794406 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f564f0a3a10) = 2138
2136 16:02:07.794684 wait4(-1, <unfinished ...>
2138 16:02:07.794711 set_robust_list(0x7f564f0a3a20, 24) = 0
2138 16:02:07.794812 setreuid(-1, 0) = 0
2138 16:02:07.794887 setreuid(0, -1) = 0
2138 16:02:07.794967 openat(AT_FDCWD, "/dev/null", O_WRONLY) = 4
2138 16:02:07.795062 execve("/bin/mount", ["/bin/mount", "-t", "vfat", "-o", "nosuid,nodev,user,quiet,shortnam"..., "/dev/sdb1", "/media/sdb1"], 0x7fffe6fc48d0 /* 65 vars */) = 0
2138 16:02:07.795569 brk(NULL) = 0x5634feebc000
2138 16:02:07.795658 arch_prctl(0x3001 /* ARCH_??? */, 0x7fffd58b1660) = -1 EINVAL (Invalid argument)
2138 16:02:07.795792 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
2138 16:02:07.795888 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 5
2138 16:02:07.795976 newfstatat(5, "", {st_mode=S_IFREG|0644, st_size=267755, ...}, AT_EMPTY_PATH) = 0
2138 16:02:07.796066 mmap(NULL, 267755, PROT_READ, MAP_PRIVATE, 5, 0) = 0x7f176c58f000
2138 16:02:07.796151 close(5) = 0
2138 16:02:07.796256 openat(AT_FDCWD, "/usr/lib/libmount.so.1", O_RDONLY|O_CLOEXEC) = 5
2138 16:02:07.796345 read(5, "\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
2138 16:02:07.796426 newfstatat(5, "", {st_mode=S_IFREG|0755, st_size=326000, ...}, AT_EMPTY_PATH) = 0
2138 16:02:07.796515 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f176c58d000
2138 16:02:07.796603 mmap(NULL, 328232, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 5, 0) = 0x7f176c53c000
2138 16:02:07.796686 mmap(0x7f176c546000, 217088, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0xa000) = 0x7f176c546000
2138 16:02:07.796784 mmap(0x7f176c57b000, 61440, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0x3f000) = 0x7f176c57b000
2138 16:02:07.796872 mmap(0x7f176c58a000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0x4d000) = 0x7f176c58a000
2138 16:02:07.796982 close(5) = 0
2138 16:02:07.797070 openat(AT_FDCWD, "/usr/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 5
2138 16:02:07.797155 read(5, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P9\2\0\0\0\0\0"..., 832) = 832
2138 16:02:07.797234 pread64(5, "\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"..., 784, 64) = 784
2138 16:02:07.797318 newfstatat(5, "", {st_mode=S_IFREG|0755, st_size=1953440, ...}, AT_EMPTY_PATH) = 0
2138 16:02:07.797412 pread64(5, "\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"..., 784, 64) = 784
2138 16:02:07.797495 mmap(NULL, 1994352, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 5, 0) = 0x7f176c355000
2138 16:02:07.797583 mmap(0x7f176c377000, 1417216, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0x22000) = 0x7f176c377000
2138 16:02:07.797691 mmap(0x7f176c4d1000, 360448, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0x17c000) = 0x7f176c4d1000
2138 16:02:07.797783 mmap(0x7f176c529000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0x1d4000) = 0x7f176c529000
2138 16:02:07.797909 mmap(0x7f176c52f000, 52848, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f176c52f000
2138 16:02:07.798014 close(5) = 0
2138 16:02:07.798097 openat(AT_FDCWD, "/usr/lib/libblkid.so.1", O_RDONLY|O_CLOEXEC) = 5
2138 16:02:07.798185 read(5, "\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
2138 16:02:07.798266 newfstatat(5, "", {st_mode=S_IFREG|0755, st_size=244472, ...}, AT_EMPTY_PATH) = 0
2138 16:02:07.798356 mmap(NULL, 242608, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 5, 0) = 0x7f176c319000
2138 16:02:07.798440 mmap(0x7f176c321000, 143360, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0x8000) = 0x7f176c321000
2138 16:02:07.798532 mmap(0x7f176c344000, 40960, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0x2b000) = 0x7f176c344000
2138 16:02:07.798622 mmap(0x7f176c34e000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0x35000) = 0x7f176c34e000
2138 16:02:07.798733 close(5) = 0
2138 16:02:07.798839 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f176c317000
2138 16:02:07.798933 arch_prctl(ARCH_SET_FS, 0x7f176c317b80) = 0
2138 16:02:07.799005 set_tid_address(0x7f176c317e50) = 2138
2138 16:02:07.799079 set_robust_list(0x7f176c317e60, 24) = 0
2138 16:02:07.799150 rseq(0x7f176c3184a0, 0x20, 0, 0x53053053) = 0
2138 16:02:07.799338 mprotect(0x7f176c529000, 16384, PROT_READ) = 0
2138 16:02:07.799540 mprotect(0x7f176c34e000, 24576, PROT_READ) = 0
2138 16:02:07.799727 mprotect(0x7f176c58a000, 8192, PROT_READ) = 0
2138 16:02:07.799929 mprotect(0x5634fe676000, 4096, PROT_READ) = 0
2138 16:02:07.800024 mprotect(0x7f176c602000, 8192, PROT_READ) = 0
2138 16:02:07.800145 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
2138 16:02:07.800243 munmap(0x7f176c58f000, 267755) = 0
2138 16:02:07.800386 getrandom("\x13\x59\x14\x2f\x72\xfc\x10\x65", 8, GRND_NONBLOCK) = 8
2138 16:02:07.800470 brk(NULL) = 0x5634feebc000
2138 16:02:07.800543 brk(0x5634feedd000) = 0x5634feedd000
2138 16:02:07.800678 openat(AT_FDCWD, "/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 5
2138 16:02:07.800777 newfstatat(5, "", {st_mode=S_IFREG|0644, st_size=7311072, ...}, AT_EMPTY_PATH) = 0
2138 16:02:07.800867 mmap(NULL, 7311072, PROT_READ, MAP_PRIVATE, 5, 0) = 0x7f176bc00000
2138 16:02:07.800959 close(5) = 0
2138 16:02:07.801140 getuid() = 0
2138 16:02:07.801212 geteuid() = 0
2138 16:02:07.801363 readlink("/dev", 0x7fffd58aff20, 1023) = -1 EINVAL (Invalid argument)
2138 16:02:07.801452 readlink("/dev/sdb1", 0x7fffd58aff20, 1023) = -1 EINVAL (Invalid argument)
2138 16:02:07.801543 newfstatat(AT_FDCWD, "/dev/sdb1", {st_mode=S_IFBLK|0660, st_rdev=makedev(0x8, 0x11), ...}, 0) = 0
2138 16:02:07.801639 readlink("/media", 0x7fffd58aff20, 1023) = -1 EINVAL (Invalid argument)
2138 16:02:07.801722 readlink("/media/sdb1", 0x7fffd58aff20, 1023) = -1 EINVAL (Invalid argument)
2138 16:02:07.801834 statx(AT_FDCWD, "/usr/bin/mount.vfat", AT_STATX_DONT_SYNC|AT_NO_AUTOMOUNT, STATX_TYPE|STATX_MODE|STATX_INO, 0x7fffd58af1f0) = -1 ENOENT (No such file or directory)
2138 16:02:07.801924 statx(AT_FDCWD, "/usr/local/bin/mount.vfat", AT_STATX_DONT_SYNC|AT_NO_AUTOMOUNT, STATX_TYPE|STATX_MODE|STATX_INO, 0x7fffd58af1f0) = -1 ENOENT (No such file or directory)
2138 16:02:07.802013 fsopen("vfat", FSOPEN_CLOEXEC) = 5
2138 16:02:07.802119 mount_setattr(-1, NULL, 0, NULL, 0) = -1 EINVAL (Invalid argument)
2138 16:02:07.802199 getuid() = 0
2138 16:02:07.802269 geteuid() = 0
2138 16:02:07.802340 getgid() = 0
2138 16:02:07.802411 getegid() = 0
2138 16:02:07.802480 prctl(PR_GET_DUMPABLE) = 1 (SUID_DUMP_USER)
2138 16:02:07.802554 newfstatat(AT_FDCWD, "/run/mount/utab", 0x7fffd58b0450, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
2138 16:02:07.802642 mkdir("/run/mount", 0755) = -1 EEXIST (File exists)
2138 16:02:07.802728 newfstatat(AT_FDCWD, "/run/mount/utab", 0x7fffd58b0350, 0) = -1 ENOENT (No such file or directory)
2138 16:02:07.802825 newfstatat(AT_FDCWD, "/run/mount", {st_mode=S_IFDIR|0755, st_size=0, ...}, 0) = 0
2138 16:02:07.802914 geteuid() = 0
2138 16:02:07.802986 getegid() = 0
2138 16:02:07.803056 getuid() = 0
2138 16:02:07.803127 getgid() = 0
2138 16:02:07.803196 access("/run/mount", R_OK|W_OK) = 0
2138 16:02:07.803302 fsconfig(5, FSCONFIG_SET_STRING, "source", "/dev/sdb1", 0) = 0
2138 16:02:07.803392 fsconfig(5, FSCONFIG_SET_FLAG, "quiet", NULL, 0) = 0
2138 16:02:07.803473 fsconfig(5, FSCONFIG_SET_STRING, "shortname", "mixed", 0) = 0
2138 16:02:07.803556 fsconfig(5, FSCONFIG_SET_STRING, "uid", "0", 0) = 0
2138 16:02:07.803637 fsconfig(5, FSCONFIG_SET_STRING, "gid", "0", 0) = 0
2138 16:02:07.803718 fsconfig(5, FSCONFIG_SET_STRING, "umask", "077", 0) = 0
2138 16:02:07.803798 fsconfig(5, FSCONFIG_SET_STRING, "fmask", "0177", 0) = 0
2138 16:02:07.803879 fsconfig(5, FSCONFIG_SET_STRING, "dmask", "0077", 0) = 0
2138 16:02:07.803960 fsconfig(5, FSCONFIG_SET_FLAG, "utf8", NULL, 0) = 0
2138 16:02:07.804040 fsconfig(5, FSCONFIG_SET_STRING, "iocharset", "iso8859-1", 0) = 0
2138 16:02:07.804122 fsconfig(5, FSCONFIG_CMD_CREATE, NULL, NULL, 0) = 0
2138 16:02:07.808370 fsmount(5, FSMOUNT_CLOEXEC, 0) = 6
2138 16:02:07.808505 statx(6, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_MNT_ID, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=STATX_ATTR_MOUNT_ROOT, stx_mode=S_IFDIR|0700, stx_size=65536, ...}) = 0
2138 16:02:07.808615 mount_setattr(6, "", AT_EMPTY_PATH, {attr_set=MOUNT_ATTR_NOSUID|MOUNT_ATTR_NODEV|MOUNT_ATTR_NOEXEC, attr_clr=MOUNT_ATTR_NOATIME, propagation=0 /* MS_??? */, userns_fd=0}, 32) = -1 EINVAL (Invalid argument)
2138 16:02:07.808708 close(5) = 0
2138 16:02:07.808793 close(6) = 0
2138 16:02:07.810893 write(2, "mount: ", 7) = 7
2138 16:02:07.811097 write(2, "/media/sdb1: not mount point or "..., 43) = 43
2138 16:02:07.811241 write(2, "\n", 1) = 1
2138 16:02:07.811377 write(2, " dmesg(1) may have more in"..., 74) = 74
2138 16:02:07.811482 dup(1) = 5
2138 16:02:07.811558 close(5) = 0
2138 16:02:07.811631 dup(2) = 5
2138 16:02:07.811702 close(5) = 0
2138 16:02:07.811785 exit_group(32) = ?
2138 16:02:07.812038 +++ exited with 32 +++
2136 16:02:07.812070 <... wait4 resumed>[{WIFEXITED(s) && WEXITSTATUS(s) == 32}], 0, NULL) = 2138
2136 16:02:07.812131 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=2138, si_uid=0, si_status=32, si_utime=0, si_stime=0} ---
2136 16:02:07.812208 setreuid(-1, 0) = 0
2136 16:02:07.812288 openat(AT_FDCWD, "/var/lock/pmount__media_sdb1", O_WRONLY) = 4
2136 16:02:07.812384 getuid() = 0
2136 16:02:07.812456 setreuid(-1, 0) = 0
2136 16:02:07.812532 fcntl(4, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_CUR, l_start=0, l_len=0}) = 0
2136 16:02:07.812621 setreuid(-1, 0) = 0
2136 16:02:07.812696 unlink("/var/lock/pmount__media_sdb1") = 0
2136 16:02:07.812826 getuid() = 0
2136 16:02:07.812900 setreuid(-1, 0) = 0
2136 16:02:07.812978 setreuid(-1, 0) = 0
2136 16:02:07.813053 unlink("/media/sdb1/.created_by_pmount") = 0
2136 16:02:07.813184 rmdir("/media/sdb1") = 0
2136 16:02:07.813300 getuid() = 0
2136 16:02:07.813372 setreuid(-1, 0) = 0
2136 16:02:07.813489 exit_group(5) = ?
2136 16:02:07.813722 +++ exited with 5 +++
Last edited by dreieck (2023-07-24 14:06:21)
Offline
Can you
sudo mkdir /media/sdb1; sudo mount -t vfat -o "nosuid,nodev,user,quiet,shortname=mixed,async,atime,noexec,uid=1000,gid=1000,umask=077,fmask=0177,dmask=0077,utf8,iocharset=iso8859-1" /dev/sdb1 /media/sdb1
?
Offline
Can you
sudo mkdir /media/sdb1; sudo mount -t vfat -o "nosuid,nodev,user,quiet,shortname=mixed,async,atime,noexec,uid=1000,gid=1000,umask=077,fmask=0177,dmask=0077,utf8,iocharset=iso8859-1" /dev/sdb1 /media/sdb1
?
(Note, if this matters: I don't do `sudo`, I do root stuff directly as root.)
No, I can't.
The mount command fails with
mount: /media/sdb1: not mount point or bad option.
dmesg(1) may have more information after failed mount system call.
Bisecting the mount options, the `atime` option makes the mount fail. Without it, it succeeds.
Where do you have `atime` from? In the `/tmp/pmount.strace` I do not find the string.
If `pmount` uses the `atime` mount option, then I suppose:
Either `atime` previously was supported by the `vfat` kernel driver and now not anymore, or something in the operating system changed that `pmount`, although itself not having received updates, now uses `atime` and hasn't used it before.
Last edited by dreieck (2023-07-24 16:07:34)
Offline
No, src/pmount.c, "atime_opt" - it's in the list of default options.
Try pmount --noatime, if that doesn't work you'll have to patch it out of the source.
Edit:
Where do you have `atime` from? In the `/tmp/pmount.strace` I do not find the string.
"strace -s 1024 …", the options get truncated in the strace otherwise.
Last edited by seth (2023-07-24 16:08:39)
Offline
No, src/pmount.c, "atime_opt" - it's in the list of default options.
Try pmount --noatime, if that doesn't work you'll have to patch it out of the source.
Thanks, this works.
I will report it to the AUR package, since others also have the issue, and also to pmount git fork.
Last edited by dreieck (2023-07-24 16:25:14)
Offline
Thanks, --noatime works for me too.
Last edited by vitac (2023-07-26 09:51:37)
Offline