checkpoint-restore / criu

Checkpoint/Restore tool
criu.org
Other
2.78k stars 562 forks source link

Live migrate LXC with ipv6 server running inside #662

Closed haha150 closed 3 years ago

haha150 commented 5 years ago

Hi,

So my issue is regarding a issue that i posted in LXD github "https://github.com/lxc/lxd/issues/5612" and i was directed here. My issue is that i am running a iperf server inside the container and it is running ipv6 so i dont have any ipv4 address for the container only ipv6. The iperf command "iperf -s -V -i 1" to clarify that its a ipv6 iperf server. Now when i connect a client to this iperf server that is inside the container and i try to migrate the container from source to target, e.g. "lxc move c1 remote2:", i am getting the error presented in the post:

Error: Failed container creation: Error transferring container data: migration restore failed (00.001663) Warn (criu/cr-restore.c:1272): Set CLONE_PARENT | CLONE_NEWPID but it might cause restore problem,because not all kernels support such clone flags combinations! (00.083251) 788: Error (soccr/soccr.c:497): Can't bind inet socket back: Cannot assign requested address (00.083270) 788: Error (criu/files.c:1203): Unable to open fd=4 id=0x1a (00.084801) 787: Error (criu/cr-restore.c:1421): 788 exited, status=1 (00.086583) Error (criu/cr-restore.c:2300): Restoring FAILED.

Do you know if criu doesnt support migration of servers running inside the container with ipv6 or what can be the issue here?

haha150 commented 5 years ago

I tested some more and i can successfully migrate a container that runs iperf ipv6 server with 1 client connected to it. However, when the migration runs and is near the finish, the TCP connection from the server sends a FIN to the client and terminates the server and then successfully migrates. This does not happen with ipv4, do you have any idea?

Edit: Actually, more testing show that i keep getting the above error

Edit2: As mentioned in the reply in the LXD issue, i also disables the ipv6 security addressing/extensions so ensure that was not the issue. Still doesnt work. I also tried with a different TCP server and got the exact same issue, cannot bind socket back

adrianreber commented 5 years ago

Can you post the complete CRIU logs. Any transmissions from the network stack should be blocked by iptables rules which CRIU tries to inject. Maybe that fails.

haha150 commented 5 years ago

Hi, can you give me the command to get those logs?

On Mon, 1 Apr 2019, 16:08 Adrian Reber, notifications@github.com wrote:

Can you post the complete CRIU logs. Any transmissions from the network stack should be blocked by iptables rules which CRIU tries to inject. Maybe that fails.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/checkpoint-restore/criu/issues/662#issuecomment-478594552, or mute the thread https://github.com/notifications/unsubscribe-auth/ART_N5oeK-catGObgFCVxzNIi7Vb7OLIks5vchLsgaJpZM4cT3fY .

adrianreber commented 5 years ago

Not sure where LXD stores those logs. But Ubuntu 18.04 definitely has a too old version of iptables:

https://bugs.launchpad.net/ubuntu/+source/iptables/+bug/1791958

rst0git commented 5 years ago

@haha150 What is your CRIU version?

haha150 commented 5 years ago

@haha150 What is your CRIU version?

Hi,

I am using LXD 3.11 from snap which if i am not wrong, uses the latest CRIU...?

haha150 commented 5 years ago

@adrianreber Hi, i installed iptables v1.8.2 (legacy) compared to the version 1.6.1 that you mentioned was old, but i still have issues. After i migrate, the iperf ipv6 TCP server in the container it still breaks, it sends termination to the client. Message on client side "write failed: Connection reset by peer". But it seems that the migration went through for some reason.

Edit: While looking at the live migration, i can see that the migration is ongoing but right before the migration is finished the TCP connection breaks, seems like it cant be preserved when its ipv6?

haha150 commented 5 years ago

Hi, did anyone look in to this? Its kind of a big issue since Ipv6 is going to be used primarily.

rst0git commented 5 years ago

@haha150 Can you reproduce the same issue outside a container?

with something like:

$ mkdir /tmp/test
# criu dump -t `pidof iperf` -D /tmp/test -j --tcp-established -o dump.log -v4
# criu restore -D /tmp/test -j --tcp-established -o restore.log -v4
haha150 commented 5 years ago

Hi,

So i ran the above test and got the same issue that the connections breaks:

CLIENT:

ubuntu@client:~$ iperf -V -c 2001:db9:3::5 -i 1 -t 1000 -b 10m

Client connecting to 2001:db9:3::5, TCP port 5001
TCP window size: 85.0 KByte (default)

[  3] local 2001:db9:3::b port 47392 connected with 2001:db9:3::5 port 5001
[ ID] Interval       Transfer     Bandwidth
...
[  3] 68.0-69.0 sec  1.25 MBytes  10.5 Mbits/sec
[  3] 69.0-70.0 sec  1.12 MBytes  9.44 Mbits/sec
[  3] 70.0-71.0 sec  1.07 MBytes  8.94 Mbits/sec
[  3] 71.0-72.0 sec  1.35 KBytes  11.0 Kbits/sec
[  3] 72.0-73.0 sec  0.00 Bytes  0.00 bits/sec
[  3] 73.0-74.0 sec  0.00 Bytes  0.00 bits/sec
[  3] 74.0-75.0 sec  0.00 Bytes  0.00 bits/sec
[  3] 75.0-76.0 sec  0.00 Bytes  0.00 bits/sec
[  3] 76.0-77.0 sec  0.00 Bytes  0.00 bits/sec
[  3] 77.0-78.0 sec  0.00 Bytes  0.00 bits/sec
[  3] 78.0-79.0 sec  0.00 Bytes  0.00 bits/sec
[  3] 79.0-80.0 sec  0.00 Bytes  0.00 bits/sec
[  3] 80.0-81.0 sec  0.00 Bytes  0.00 bits/sec
[  3] 81.0-82.0 sec  0.00 Bytes  0.00 bits/sec
[  3] 82.0-83.0 sec  0.00 Bytes  0.00 bits/sec
write failed: Broken pipe
[  3]  0.0-84.2 sec  84.7 MBytes  8.44 Mbits/sec

SERVER:

ubuntu@server:~$ iperf -s -V -i 1 &
ubuntu@server:~$ sudo criu dump -t `pidof iperf` -D /tmp/test -j --tcp-established -o dump.log -v4
Warn  (criu/kerndat.c:659): Can't load /run/criu.kdat
ubuntu@test:~$ sudo criu restore -D /tmp/test -j --tcp-established -o restore.log -v4
[  4] 70.0-71.0 sec   961 KBytes  7.87 Mbits/sec
[  4] 71.0-72.0 sec  0.00 Bytes  0.00 bits/sec
[  4] 72.0-73.0 sec  0.00 Bytes  0.00 bits/sec
[  4] 73.0-74.0 sec  0.00 Bytes  0.00 bits/sec
[  4] 74.0-75.0 sec  0.00 Bytes  0.00 bits/sec
[  4] 75.0-76.0 sec  0.00 Bytes  0.00 bits/sec
[  4] 76.0-77.0 sec  0.00 Bytes  0.00 bits/sec
[  4] 77.0-78.0 sec  0.00 Bytes  0.00 bits/sec
[  4] 78.0-79.0 sec  0.00 Bytes  0.00 bits/sec
[  4] 79.0-80.0 sec  0.00 Bytes  0.00 bits/sec
[  4] 80.0-81.0 sec  0.00 Bytes  0.00 bits/sec
[  4] 81.0-82.0 sec  0.00 Bytes  0.00 bits/sec
[  4] 82.0-83.0 sec  0.00 Bytes  0.00 bits/sec
[  4]  0.0-83.4 sec  84.5 MBytes  8.50 Mbits/sec
rst0git commented 5 years ago

Thank you for running the test. Could you please upload/share dump.log and restore.log? They should be stored in /tmp/test.

haha150 commented 5 years ago

DUMP

ubuntu@test:/tmp/test$ cat dump.log 
(00.000059) Version: 3.6 (gitid 0)
(00.000083) ========================================
(00.000093) Dumping processes (pid: 1920)
(00.000097) ========================================
(00.000102) Running pre-dump scripts
(00.000114) irmap: Searching irmap cache in work dir
(00.000124) No irmap-cache image
(00.000129) irmap: Searching irmap cache in parent
(00.000134) irmap: No irmap cache
(00.000174) cpu: fpu:1 fxsr:1 xsave:1
(00.000313) cg-prop: Parsing controller "cpu"
(00.000322) cg-prop:    Strategy "replace"
(00.000327) cg-prop:    Property "cpu.shares"
(00.000332) cg-prop:    Property "cpu.cfs_period_us"
(00.000335) cg-prop:    Property "cpu.cfs_quota_us"
(00.000339) cg-prop:    Property "cpu.rt_period_us"
(00.000343) cg-prop:    Property "cpu.rt_runtime_us"
(00.000346) cg-prop: Parsing controller "memory"
(00.000350) cg-prop:    Strategy "replace"
(00.000354) cg-prop:    Property "memory.limit_in_bytes"
(00.000358) cg-prop:    Property "memory.memsw.limit_in_bytes"
(00.000361) cg-prop:    Property "memory.swappiness"
(00.000365) cg-prop:    Property "memory.soft_limit_in_bytes"
(00.000368) cg-prop:    Property "memory.move_charge_at_immigrate"
(00.000372) cg-prop:    Property "memory.oom_control"
(00.000375) cg-prop:    Property "memory.use_hierarchy"
(00.000379) cg-prop:    Property "memory.kmem.limit_in_bytes"
(00.000382) cg-prop:    Property "memory.kmem.tcp.limit_in_bytes"
(00.000386) cg-prop: Parsing controller "cpuset"
(00.000394) cg-prop:    Strategy "replace"
(00.000398) cg-prop:    Property "cpuset.cpus"
(00.000402) cg-prop:    Property "cpuset.mems"
(00.000405) cg-prop:    Property "cpuset.memory_migrate"
(00.000409) cg-prop:    Property "cpuset.cpu_exclusive"
(00.000412) cg-prop:    Property "cpuset.mem_exclusive"
(00.000416) cg-prop:    Property "cpuset.mem_hardwall"
(00.000419) cg-prop:    Property "cpuset.memory_spread_page"
(00.000423) cg-prop:    Property "cpuset.memory_spread_slab"
(00.000426) cg-prop:    Property "cpuset.sched_load_balance"
(00.000429) cg-prop:    Property "cpuset.sched_relax_domain_level"
(00.000433) cg-prop: Parsing controller "blkio"
(00.000437) cg-prop:    Strategy "replace"
(00.000440) cg-prop:    Property "blkio.weight"
(00.000444) cg-prop: Parsing controller "freezer"
(00.000448) cg-prop:    Strategy "replace"
(00.000451) cg-prop: Parsing controller "perf_event"
(00.000455) cg-prop:    Strategy "replace"
(00.000458) cg-prop: Parsing controller "net_cls"
(00.000462) cg-prop:    Strategy "replace"
(00.000466) cg-prop:    Property "net_cls.classid"
(00.000469) cg-prop: Parsing controller "net_prio"
(00.000473) cg-prop:    Strategy "replace"
(00.000476) cg-prop:    Property "net_prio.ifpriomap"
(00.000480) cg-prop: Parsing controller "pids"
(00.000484) cg-prop:    Strategy "replace"
(00.000487) cg-prop:    Property "pids.max"
(00.000491) cg-prop: Parsing controller "devices"
(00.000494) cg-prop:    Strategy "replace"
(00.000516) cg-prop:    Property "devices.list"
(00.000605) Perparing image inventory (version 1)
(00.000663) Add pid ns 1 pid 2045
(00.000705) Add net ns 2 pid 2045
(00.000725) Add ipc ns 3 pid 2045
(00.000745) Add uts ns 4 pid 2045
(00.000766) Add mnt ns 5 pid 2045
(00.000786) Add user ns 6 pid 2045
(00.000808) Add cgroup ns 7 pid 2045
(00.000816) cg: Dumping cgroups for 2045
(00.000876) cg:  `- New css ID 1
(00.000885) cg:     `- [blkio] -> [/user.slice] [0]
(00.000892) cg:     `- [cpu,cpuacct] -> [/user.slice] [0]
(00.000897) cg:     `- [cpuset] -> [/] [0]
(00.000903) cg:     `- [devices] -> [/user.slice] [0]
(00.000908) cg:     `- [freezer] -> [/] [0]
(00.000914) cg:     `- [hugetlb] -> [/] [0]
(00.000919) cg:     `- [memory] -> [/user.slice] [0]
(00.000924) cg:     `- [name=systemd] -> [/user.slice/user-1000.slice/session-3.scope] [0]
(00.000930) cg:     `- [net_cls,net_prio] -> [/] [0]
(00.000935) cg:     `- [perf_event] -> [/] [0]
(00.000941) cg:     `- [pids] -> [/user.slice/user-1000.slice/session-3.scope] [0]
(00.000946) cg:     `- [rdma] -> [/] [0]
(00.000951) cg: Set 1 is criu one
(00.001111) Seized task 1920, state 1
(00.001179)     Seizing 1920's 1921 thread
(00.001479)     Seizing 1920's 1922 thread
(00.001624)     Seizing 1920's 1925 thread
(00.001754) Collected (3 attempts, 0 in_progress)
(00.001849) Collected (4 attempts, 0 in_progress)
(00.001870) Collected 1920 in 1 state
(00.001975) Lock network
(00.002249)     type sysfs source sysfs mnt_id 23 s_dev 0x16 / @ ./sys flags 0x30000e options 
(00.002287)     type proc source proc mnt_id 24 s_dev 0x4 / @ ./proc flags 0x30000e options 
(00.002306)     type devtmpfs source udev mnt_id 25 s_dev 0x6 / @ ./dev flags 0x300002 options size=2007160k,nr_inodes=501790,mode=755
(00.002319)     type devpts source devpts mnt_id 26 s_dev 0x17 / @ ./dev/pts flags 0x30000a options gid=5,mode=620,ptmxmode=000
(00.002336)     type tmpfs source tmpfs mnt_id 27 s_dev 0x18 / @ ./run flags 0x30000a options size=403948k,mode=755
(00.002347)     type ext4 source /dev/vda1 mnt_id 28 s_dev 0xfc00001 / @ ./ flags 0x300000 options data=ordered
(00.002363)     type securityfs source securityfs mnt_id 29 s_dev 0x7 / @ ./sys/kernel/security flags 0x30000e options 
(00.002373)     type tmpfs source tmpfs mnt_id 30 s_dev 0x19 / @ ./dev/shm flags 0x1100006 options 
(00.002383)     type tmpfs source tmpfs mnt_id 31 s_dev 0x1a / @ ./run/lock flags 0x30000e options size=5120k
(00.002393)     type tmpfs source tmpfs mnt_id 32 s_dev 0x1b / @ ./sys/fs/cgroup flags 0x110000f options mode=755
(00.002403)     type cgroup2 source cgroup mnt_id 33 s_dev 0x1c / @ ./sys/fs/cgroup/unified flags 0x30000e options 
(00.002457)     type cgroup source cgroup mnt_id 34 s_dev 0x1d / @ ./sys/fs/cgroup/systemd flags 0x30000e options xattr,name=systemd
(00.002468)     type pstore source pstore mnt_id 35 s_dev 0x1e / @ ./sys/fs/pstore flags 0x30000e options 
(00.002478)     type cgroup source cgroup mnt_id 36 s_dev 0x1f / @ ./sys/fs/cgroup/cpu,cpuacct flags 0x30000e options cpu,cpuacct
(00.002488)     type cgroup source cgroup mnt_id 37 s_dev 0x20 / @ ./sys/fs/cgroup/pids flags 0x30000e options pids
(00.002519)     type cgroup source cgroup mnt_id 38 s_dev 0x21 / @ ./sys/fs/cgroup/net_cls,net_prio flags 0x30000e options net_cls,net_prio
(00.002538)     type cgroup source cgroup mnt_id 39 s_dev 0x22 / @ ./sys/fs/cgroup/freezer flags 0x30000e options freezer
(00.002557)     type cgroup source cgroup mnt_id 40 s_dev 0x23 / @ ./sys/fs/cgroup/blkio flags 0x30000e options blkio
(00.002571)     type cgroup source cgroup mnt_id 41 s_dev 0x24 / @ ./sys/fs/cgroup/devices flags 0x30000e options devices
(00.002585)     type cgroup source cgroup mnt_id 42 s_dev 0x25 / @ ./sys/fs/cgroup/hugetlb flags 0x30000e options hugetlb
(00.002614)     type cgroup source cgroup mnt_id 43 s_dev 0x26 / @ ./sys/fs/cgroup/memory flags 0x30000e options memory
(00.002708)     type cgroup source cgroup mnt_id 44 s_dev 0x27 / @ ./sys/fs/cgroup/perf_event flags 0x30000e options perf_event
(00.002724)     type cgroup source cgroup mnt_id 45 s_dev 0x28 / @ ./sys/fs/cgroup/cpuset flags 0x30000e options cpuset
(00.002733)     type cgroup source cgroup mnt_id 46 s_dev 0x29 / @ ./sys/fs/cgroup/rdma flags 0x30000e options rdma
(00.002746)     type autofs source systemd-1 mnt_id 47 s_dev 0x2a / @ ./proc/sys/fs/binfmt_misc flags 0x300000 options fd=33,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=12082
(00.002760)     type debugfs source debugfs mnt_id 48 s_dev 0x8 / @ ./sys/kernel/debug flags 0x300000 options 
(00.002777)     type hugetlbfs source hugetlbfs mnt_id 49 s_dev 0x2b / @ ./dev/hugepages flags 0x300000 options pagesize=2M
(00.002792)     type mqueue source mqueue mnt_id 50 s_dev 0x13 / @ ./dev/mqueue flags 0x300000 options 
(00.002807)     type configfs source configfs mnt_id 80 s_dev 0x14 / @ ./sys/kernel/config flags 0x300000 options 
(00.002822)     type fusectl source fusectl mnt_id 82 s_dev 0x2c / @ ./sys/fs/fuse/connections flags 0x300000 options 
(00.002841)     type vfat source /dev/vda15 mnt_id 84 s_dev 0xfc0000f / @ ./boot/efi flags 0x300000 options fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro
(00.002869)     type fuse source lxcfs mnt_id 314 s_dev 0x31 / @ ./var/lib/lxcfs flags 0x300006 options user_id=0,group_id=0,allow_other
(00.002892)     type tmpfs source tmpfs mnt_id 386 s_dev 0x33 / @ ./run/user/1000 flags 0x300006 options size=403944k,mode=700,uid=1000,gid=1000
(00.002918) mnt: Building mountpoints tree
(00.002925) mnt:    Building plain mount tree
(00.002930) mnt:        Working on 386->27
(00.002936) mnt:        Working on 314->28
(00.002942) mnt:        Working on 84->28
(00.002946) mnt:        Working on 82->23
(00.002953) mnt:        Working on 80->23
(00.002958) mnt:        Working on 50->25
(00.002964) mnt:        Working on 49->25
(00.002970) mnt:        Working on 48->23
(00.002975) mnt:        Working on 47->24
(00.002981) mnt:        Working on 46->32
(00.002986) mnt:        Working on 45->32
(00.002992) mnt:        Working on 44->32
(00.002997) mnt:        Working on 43->32
(00.003002) mnt:        Working on 42->32
(00.003008) mnt:        Working on 41->32
(00.003013) mnt:        Working on 40->32
(00.003019) mnt:        Working on 39->32
(00.003025) mnt:        Working on 38->32
(00.003029) mnt:        Working on 37->32
(00.003034) mnt:        Working on 36->32
(00.003040) mnt:        Working on 35->23
(00.003045) mnt:        Working on 34->32
(00.003050) mnt:        Working on 33->32
(00.003056) mnt:        Working on 32->23
(00.003062) mnt:        Working on 31->27
(00.003067) mnt:        Working on 30->25
(00.003073) mnt:        Working on 29->23
(00.003079) mnt:        Working on 28->0
(00.003085) mnt:        Working on 27->28
(00.003091) mnt:        Working on 26->25
(00.003096) mnt:        Working on 25->28
(00.003101) mnt:        Working on 24->28
(00.003106) mnt:        Working on 23->28
(00.003112) mnt:    Resorting siblings on 28
(00.003117) mnt:    Resorting siblings on 314
(00.003123) mnt:    Resorting siblings on 84
(00.003129) mnt:    Resorting siblings on 27
(00.003153) mnt:    Resorting siblings on 386
(00.003160) mnt:    Resorting siblings on 31
(00.003169) mnt:    Resorting siblings on 25
(00.003177) mnt:    Resorting siblings on 50
(00.003185) mnt:    Resorting siblings on 49
(00.003192) mnt:    Resorting siblings on 30
(00.003200) mnt:    Resorting siblings on 26
(00.003218) mnt:    Resorting siblings on 24
(00.003224) mnt:    Resorting siblings on 47
(00.003230) mnt:    Resorting siblings on 23
(00.003234) mnt:    Resorting siblings on 82
(00.003240) mnt:    Resorting siblings on 80
(00.003246) mnt:    Resorting siblings on 48
(00.003251) mnt:    Resorting siblings on 35
(00.003256) mnt:    Resorting siblings on 32
(00.003261) mnt:    Resorting siblings on 46
(00.003280) mnt:    Resorting siblings on 45
(00.003289) mnt:    Resorting siblings on 44
(00.003294) mnt:    Resorting siblings on 43
(00.003300) mnt:    Resorting siblings on 42
(00.003305) mnt:    Resorting siblings on 41
(00.003309) mnt:    Resorting siblings on 40
(00.003315) mnt:    Resorting siblings on 39
(00.003320) mnt:    Resorting siblings on 38
(00.003325) mnt:    Resorting siblings on 37
(00.003330) mnt:    Resorting siblings on 36
(00.003335) mnt:    Resorting siblings on 34
(00.003341) mnt:    Resorting siblings on 33
(00.003346) mnt:    Resorting siblings on 29
(00.003352) mnt: Done:
(00.003365) mnt: [./](28->0)
(00.003372) mnt:  [./run](27->28)
(00.003377) mnt:   [./run/lock](31->27)
(00.003383) mnt:   <--
(00.003388) mnt:   [./run/user/1000](386->27)
(00.003394) mnt:   <--
(00.003398) mnt:  <--
(00.003403) mnt:  [./sys](23->28)
(00.003409) mnt:   [./sys/kernel/config](80->23)
(00.003414) mnt:   <--
(00.003419) mnt:   [./sys/kernel/security](29->23)
(00.003425) mnt:   <--
(00.003430) mnt:   [./sys/fs/cgroup](32->23)
(00.003436) mnt:    [./sys/fs/cgroup/rdma](46->32)
(00.003441) mnt:    <--
(00.003447) mnt:    [./sys/fs/cgroup/unified](33->32)
(00.003452) mnt:    <--
(00.003457) mnt:    [./sys/fs/cgroup/systemd](34->32)
(00.003462) mnt:    <--
(00.003467) mnt:    [./sys/fs/cgroup/cpu,cpuacct](36->32)
(00.003472) mnt:    <--
(00.003477) mnt:    [./sys/fs/cgroup/pids](37->32)
(00.003483) mnt:    <--
(00.003488) mnt:    [./sys/fs/cgroup/net_cls,net_prio](38->32)
(00.003494) mnt:    <--
(00.003499) mnt:    [./sys/fs/cgroup/freezer](39->32)
(00.003504) mnt:    <--
(00.003509) mnt:    [./sys/fs/cgroup/blkio](40->32)
(00.003514) mnt:    <--
(00.003520) mnt:    [./sys/fs/cgroup/devices](41->32)
(00.003525) mnt:    <--
(00.003530) mnt:    [./sys/fs/cgroup/hugetlb](42->32)
(00.003535) mnt:    <--
(00.003540) mnt:    [./sys/fs/cgroup/memory](43->32)
(00.003545) mnt:    <--
(00.003560) mnt:    [./sys/fs/cgroup/perf_event](44->32)
(00.003567) mnt:    <--
(00.003572) mnt:    [./sys/fs/cgroup/cpuset](45->32)
(00.003577) mnt:    <--
(00.003583) mnt:   <--
(00.003588) mnt:   [./sys/fs/pstore](35->23)
(00.003593) mnt:   <--
(00.003599) mnt:   [./sys/kernel/debug](48->23)
(00.003604) mnt:   <--
(00.003610) mnt:   [./sys/fs/fuse/connections](82->23)
(00.003616) mnt:   <--
(00.003622) mnt:  <--
(00.003627) mnt:  [./proc](24->28)
(00.003633) mnt:   [./proc/sys/fs/binfmt_misc](47->24)
(00.003639) mnt:   <--
(00.003643) mnt:  <--
(00.003656) mnt:  [./dev](25->28)
(00.003673) mnt:   [./dev/mqueue](50->25)
(00.003682) mnt:   <--
(00.003688) mnt:   [./dev/pts](26->25)
(00.003694) mnt:   <--
(00.003699) mnt:   [./dev/shm](30->25)
(00.003704) mnt:   <--
(00.003709) mnt:   [./dev/hugepages](49->25)
(00.003715) mnt:   <--
(00.003720) mnt:  <--
(00.003725) mnt:  [./boot/efi](84->28)
(00.003731) mnt:  <--
(00.003737) mnt:  [./var/lib/lxcfs](314->28)
(00.003743) mnt:  <--
(00.003748) mnt: <--
(00.003783) Collecting netns 2/2045
(00.004068) sk unix:    Collected: ino 0x4c08 peer_ino 0 family    1 type    2 state  7 name /run/user/1000/systemd/notify
(00.004110) sk unix:    Collected: ino 0x2f3a peer_ino 0 family    1 type    5 state 10 name /run/udev/control
(00.004118) sk unix:    Collected: ino 0x4c0b peer_ino 0 family    1 type    1 state 10 name /run/user/1000/systemd/private
(00.004126) sk unix:    Collected: ino 0x4982 peer_ino 0 family    1 type    1 state 10 name /run/user/1000/gnupg/S.dirmngr
(00.004134) sk unix:    Collected: ino 0x3e07 peer_ino 0 family    1 type    1 state 10 name /run/uuidd/request
(00.004142) sk unix:    Collected: ino 0x4983 peer_ino 0 family    1 type    1 state 10 name /run/user/1000/gnupg/S.gpg-agent
(00.004150) sk unix:    Collected: ino 0x4984 peer_ino 0 family    1 type    1 state 10 name /run/user/1000/gnupg/S.gpg-agent.ssh
(00.004176) sk unix:    Collected: ino 0x3e0b peer_ino 0 family    1 type    1 state 10 name /run/snapd.socket
(00.004189) sk unix:    Collected: ino 0x4985 peer_ino 0 family    1 type    1 state 10 name /run/user/1000/gnupg/S.gpg-agent.extra
(00.004201) sk unix:    Collected: ino 0x3e0d peer_ino 0 family    1 type    1 state 10 name /run/snapd-snap.socket
(00.004214) sk unix:    Collected: ino 0x4986 peer_ino 0 family    1 type    1 state 10 name /run/user/1000/gnupg/S.gpg-agent.browser
(00.004229) sk unix:    Collected: ino 0x3e1f peer_ino 0 family    1 type    1 state 10 name /var/run/dbus/system_bus_socket
(00.004240) sk unix:    Collected: ino 0x3e27 peer_ino 0 family    1 type    1 state 10 name /run/acpid.socket
(00.004254) sk unix:    Collected: ino 0x3e16 peer_ino 0 family    1 type    1 state 10 name /var/lib/lxd/unix.socket
(00.004263) sk unix:    Collected: ino 0x3f97 peer_ino 0 family    1 type    1 state 10 name 
(00.004319) sk unix:    Collected: ino 0x2f1d peer_ino 0 family    1 type    2 state  7 name /run/systemd/notify
(00.004333) sk unix:    Collected: ino 0x2f20 peer_ino 0 family    1 type    1 state 10 name /run/systemd/private
(00.004345) sk unix:    Collected: ino 0x2f27 peer_ino 0 family    1 type    2 state  7 name /run/systemd/journal/dev-log
(00.004358) sk unix:    Collected: ino 0x2f34 peer_ino 0 family    1 type    2 state  7 name /run/systemd/journal/syslog
(00.004372) sk unix:    Collected: ino 0x2f36 peer_ino 0 family    1 type    1 state 10 name /run/lvm/lvmetad.socket
(00.004385) sk unix:    Collected: ino 0x2f38 peer_ino 0 family    1 type    1 state 10 name /run/lvm/lvmpolld.socket
(00.004399) sk unix:    Collected: ino 0x2f3c peer_ino 0 family    1 type    1 state 10 name /run/systemd/journal/stdout
(00.004417) sk unix:    Collected: ino 0x2f3e peer_ino 0 family    1 type    2 state  7 name /run/systemd/journal/socket
(00.004425) sk unix:    Collected: ino 0x44a6 peer_ino 0 family    1 type    1 state 10 name 
(00.004438) sk unix:    Collected: ino 0x43bb peer_ino 0x476e family    1 type    1 state  1 name /var/run/dbus/system_bus_socket
(00.004454) sk unix:    Collected: ino 0x475f peer_ino 0x475e family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.004485) sk unix:    Collected: ino 0x3c88 peer_ino 0x3c89 family    1 type    2 state  7 name (null)
(00.004495) sk unix:    Collected: ino 0x31c4 peer_ino 0x2ba8 family    1 type    1 state  1 name (null)
(00.004502) sk unix:    Collected: ino 0x4028 peer_ino 0x2f27 family    1 type    2 state  7 name (null)
(00.004510) sk unix:    Collected: ino 0x4a37 peer_ino 0x4a38 family    1 type    1 state  1 name (null)
(00.004523) sk unix:    Collected: ino 0x3f46 peer_ino 0x4078 family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.004548) sk unix:    Collected: ino 0x3c87 peer_ino 0x3c86 family    1 type    2 state  7 name (null)
(00.004558) sk unix:    Collected: ino 0x3c86 peer_ino 0x3c87 family    1 type    2 state  7 name (null)
(00.004569) sk unix:    Collected: ino 0x4a38 peer_ino 0x4a37 family    1 type    1 state  1 name (null)
(00.004580) sk unix:    Collected: ino 0x4029 peer_ino 0x402a family    1 type    1 state  1 name (null)
(00.004590) sk unix:    Collected: ino 0x3c7e peer_ino 0x2f3e family    1 type    2 state  7 name (null)
(00.004601) sk unix:    Collected: ino 0x44a5 peer_ino 0x2f27 family    1 type    2 state  7 name (null)
(00.004612) sk unix:    Collected: ino 0x402a peer_ino 0x4029 family    1 type    1 state  1 name (null)
(00.004623) sk unix:    Collected: ino 0x2b91 peer_ino 0x2f3e family    1 type    2 state  7 name (null)
(00.004634) sk unix:    Collected: ino 0x476e peer_ino 0x43bb family    1 type    1 state  1 name (null)
(00.004653) sk unix:    Collected: ino 0x3e45 peer_ino 0x4017 family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.004663) sk unix:    Collected: ino 0x5d24 peer_ino 0x2f27 family    1 type    2 state  7 name (null)
(00.004674) sk unix:    Collected: ino 0x4017 peer_ino 0x3e45 family    1 type    1 state  1 name (null)
(00.004683) sk unix:    Collected: ino 0x4078 peer_ino 0x3f46 family    1 type    1 state  1 name (null)
(00.004716) sk unix:    Collected: ino 0x475e peer_ino 0x475f family    1 type    1 state  1 name (null)
(00.004755) sk unix:    Collected: ino 0x2ba8 peer_ino 0x31c4 family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.004769) sk unix:    Collected: ino 0x3c89 peer_ino 0x3c88 family    1 type    2 state  7 name (null)
(00.004780) sk unix:    Collected: ino 0x5c14 peer_ino 0x5c13 family    1 type    1 state  1 name (null)
(00.004798) sk unix:    Collected: ino 0x43e4 peer_ino 0x47da family    1 type    1 state  1 name /var/run/dbus/system_bus_socket
(00.004809) sk unix:    Collected: ino 0x3f45 peer_ino 0x3f47 family    1 type    1 state  1 name (null)
(00.004833) sk unix:    Collected: ino 0x4c0a peer_ino 0x4c09 family    1 type    2 state  7 name (null)
(00.004845) sk unix:    Collected: ino 0x3860 peer_ino 0x376a family    1 type    1 state  1 name (null)
(00.004857) sk unix:    Collected: ino 0x47da peer_ino 0x43e4 family    1 type    1 state  1 name (null)
(00.004869) sk unix:    Collected: ino 0x579c peer_ino 0x2f27 family    1 type    2 state  7 name (null)
(00.004889) sk unix:    Collected: ino 0x3f47 peer_ino 0x3f45 family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.004903) sk unix:    Collected: ino 0x3c73 peer_ino 0x3c75 family    1 type    1 state  1 name (null)
(00.004914) sk unix:    Collected: ino 0x5c13 peer_ino 0x5c14 family    1 type    1 state  1 name (null)
(00.004933) sk unix:    Collected: ino 0x448c peer_ino 0x448b family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.004947) sk unix:    Collected: ino 0x4c09 peer_ino 0x4c0a family    1 type    2 state  7 name (null)
(00.004960) sk unix:    Collected: ino 0x2b7d peer_ino 0x2b7e family    1 type    2 state  7 name (null)
(00.004972) sk unix:    Collected: ino 0x2f1e peer_ino 0x2f1f family    1 type    2 state  7 name (null)
(00.004985) sk unix:    Collected: ino 0x48c2 peer_ino 0x2f27 family    1 type    2 state  7 name (null)
(00.005007) sk unix:    Collected: ino 0x402c peer_ino 0x3bce family    1 type    1 state  1 name /var/run/dbus/system_bus_socket
(00.005028) sk unix:    Collected: ino 0x3c75 peer_ino 0x3c73 family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.005049) sk unix:    Collected: ino 0x376a peer_ino 0x3860 family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.005080) sk unix:    Collected: ino 0x3ef3 peer_ino 0x3ef4 family    1 type    1 state  1 name (null)
(00.005094) sk unix:    Collected: ino 0x371a peer_ino 0x371b family    1 type    2 state  7 name (null)
(00.005106) sk unix:    Collected: ino 0x4937 peer_ino 0x4939 family    1 type    1 state  1 name (null)
(00.005127) sk unix:    Collected: ino 0x4939 peer_ino 0x4937 family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.005151) sk unix:    Collected: ino 0x371b peer_ino 0x371a family    1 type    2 state  7 name (null)
(00.005163) sk unix:    Collected: ino 0x2b7e peer_ino 0x2b7d family    1 type    2 state  7 name (null)
(00.005175) sk unix:    Collected: ino 0x2f1f peer_ino 0x2f1e family    1 type    2 state  7 name (null)
(00.005188) sk unix:    Collected: ino 0x448b peer_ino 0x448c family    1 type    1 state  1 name (null)
(00.005200) sk unix:    Collected: ino 0x4400 peer_ino 0x2f3e family    1 type    2 state  7 name (null)
(00.005222) sk unix:    Collected: ino 0x3ef4 peer_ino 0x3ef3 family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.005244) sk unix:    Collected: ino 0x402b peer_ino 0x3e21 family    1 type    1 state  1 name /var/run/dbus/system_bus_socket
(00.005264) sk unix:    Collected: ino 0x2ba7 peer_ino 0x318d family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.005326) sk unix:    Collected: ino 0x4356 peer_ino 0x4355 family    1 type    1 state  1 name /var/run/dbus/system_bus_socket
(00.005335) sk unix:    Collected: ino 0x410e peer_ino 0x3fe6 family    1 type    1 state  1 name (null)
(00.005343) sk unix:    Collected: ino 0x4355 peer_ino 0x4356 family    1 type    1 state  1 name (null)
(00.005351) sk unix:    Collected: ino 0x5ad7 peer_ino 0 family    1 type    5 state  7 name (null)
(00.005358) sk unix:    Collected: ino 0x318d peer_ino 0x2ba7 family    1 type    1 state  1 name (null)
(00.005364) sk unix:    Collected: ino 0x3e21 peer_ino 0x402b family    1 type    1 state  1 name (null)
(00.005372) sk unix:    Collected: ino 0x2b3e peer_ino 0x2f1d family    1 type    2 state  7 name (null)
(00.005379) sk unix:    Collected: ino 0x44ad peer_ino 0x2f27 family    1 type    2 state  7 name (null)
(00.005385) sk unix:    Collected: ino 0x3ced peer_ino 0x3cee family    1 type    1 state  1 name (null)
(00.005392) sk unix:    Collected: ino 0x4941 peer_ino 0x2f27 family    1 type    2 state  7 name (null)
(00.005398) sk unix:    Collected: ino 0x4348 peer_ino 0x2f27 family    1 type    2 state  7 name (null)
(00.005404) sk unix:    Collected: ino 0x40c1 peer_ino 0x3fe5 family    1 type    1 state  1 name (null)
(00.005411) sk unix:    Collected: ino 0x434a peer_ino 0x2f3e family    1 type    2 state  7 name (null)
(00.005424) sk unix:    Collected: ino 0x3fe6 peer_ino 0x410e family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.005437) sk unix:    Collected: ino 0x3fe5 peer_ino 0x40c1 family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.005452) sk unix:    Collected: ino 0x3a49 peer_ino 0x2f3e family    1 type    2 state  7 name (null)
(00.005465) sk unix:    Collected: ino 0x3cee peer_ino 0x3ced family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.005473) sk unix:    Collected: ino 0x38aa peer_ino 0x38a9 family    1 type    2 state  7 name (null)
(00.005480) sk unix:    Collected: ino 0x3e44 peer_ino 0x402d family    1 type    1 state  1 name (null)
(00.005487) sk unix:    Collected: ino 0x2b6f peer_ino 0x2f3e family    1 type    2 state  7 name (null)
(00.005499) sk unix:    Collected: ino 0x4437 peer_ino 0x4436 family    1 type    1 state  1 name /run/systemd/journal/stdout
(00.005533) sk unix:    Collected: ino 0x402d peer_ino 0x3e44 family    1 type    1 state  1 name /var/run/dbus/system_bus_socket
(00.005546) sk unix:    Collected: ino 0x389f peer_ino 0x2f3e family    1 type    2 state  7 name (null)
(00.005558) sk unix:    Collected: ino 0x4436 peer_ino 0x4437 family    1 type    1 state  1 name (null)
(00.005570) sk unix:    Collected: ino 0x3bce peer_ino 0x402c family    1 type    1 state  1 name (null)
(00.005600) sk unix:    Collected: ino 0x46c8 peer_ino 0x4340 family    1 type    1 state  1 name (null)
(00.005628) sk unix:    Collected: ino 0x38a9 peer_ino 0x38aa family    1 type    2 state  7 name (null)
(00.005639) sk unix:    Collected: ino 0x38a8 peer_ino 0x38a7 family    1 type    2 state  7 name (null)
(00.005657) sk unix:    Collected: ino 0x4340 peer_ino 0x46c8 family    1 type    1 state  1 name /var/run/dbus/system_bus_socket
(00.005668) sk unix:    Collected: ino 0x38a7 peer_ino 0x38a8 family    1 type    2 state  7 name (null)
(00.006012)     Collected: ino   0x3a51 family    2 type    1 port       53 state 10 src_addr 127.0.0.53
(00.006028)     Collected: ino   0x43c5 family    2 type    1 port       22 state 10 src_addr 0.0.0.0
(00.006037)     Collected: ino   0x43eb family    2 type    1 port       22 state  1 src_addr 10.0.1.27
(00.006045)     Collected: ino   0x5776 family    2 type    1 port       22 state  1 src_addr 10.0.1.27
(00.006086)     Collected: ino   0x3a50 family    2 type    2 port       53 state  7 src_addr 127.0.0.53
(00.006097)     Collected: ino   0x3d08 family    2 type    2 port       68 state  7 src_addr 10.0.1.27
(00.006362)     Collected: ino   0x5731 family   10 type    1 port     5001 state 10 src_addr ::
(00.006372)     Collected: ino   0x43c9 family   10 type    1 port       22 state 10 src_addr ::
(00.006378)     Collected: ino   0x5741 family   10 type    1 port     5001 state  1 src_addr 2001:db9:3::5
(00.006412) Collect packet sock 15619 35020
(00.006419)     Got 3 mreqs
(00.006424) Collect packet sock 15528 35020
(00.006428)     Got 3 mreqs
(00.006483) Collect netlink sock 0x2f26
(00.006490) Collect netlink sock 0x3a4d
(00.006494) Collect netlink sock 0xf
(00.006497) Collect netlink sock 0x3a4d
(00.006501) Collect netlink sock 0x2f26
(00.006504) Collect netlink sock 0x2c01
(00.006507) Collect netlink sock 0x5ad6
(00.006511) Collect netlink sock 0x2861
(00.006514) Collect netlink sock 0x318f
(00.006518) Collect netlink sock 0x42ce
(00.006521) Collect netlink sock 0x42ce
(00.006525) Collect netlink sock 0x2f2d
(00.006528) Collect netlink sock 0x5d20
(00.006548) Collect netlink sock 0x2b4f
(00.006554) Collect netlink sock 0x10
(00.006560) Collect netlink sock 0x2f2d
(00.006565) Collect netlink sock 0x25b8
(00.006571) Collect netlink sock 0x1a
(00.006577) Collect netlink sock 0x4351
(00.006583) Collect netlink sock 0x3c85
(00.006588) Collect netlink sock 0x2f2e
(00.006594) Collect netlink sock 0x4354
(00.006600) Collect netlink sock 0x4352
(00.006605) Collect netlink sock 0x14
(00.006626) Collect netlink sock 0x2f1b
(00.006631) Collect netlink sock 0x4c04
(00.006636) Collect netlink sock 0x4353
(00.006641) Collect netlink sock 0x4c04
(00.006646) Collect netlink sock 0x4354
(00.006651) Collect netlink sock 0x4353
(00.006656) Collect netlink sock 0x4352
(00.006660) Collect netlink sock 0x4351
(00.006665) Collect netlink sock 0x3c85
(00.006670) Collect netlink sock 0x2f2e
(00.006676) Collect netlink sock 0x2f1b
(00.006725) Collect netlink sock 0x22
(00.006731) Collect netlink sock 0x3c84
(00.006736) Collect netlink sock 0x1d
(00.006741) Collect netlink sock 0x31c6
(00.006767) ========================================
(00.006773) Dumping task (pid: 1920)
(00.006779) ========================================
(00.006783) Obtaining task stat ... 
(00.006848) 
(00.006856) Collecting mappings (pid: 1920)
(00.006861) ----------------------------------------
(00.007149) Dumping path for -3 fd via self 8 [/usr/bin/iperf]
(00.007319) vma 56475133b000 borrows vfi from previous 564751125000
(00.007339) vma 56475133c000 borrows vfi from previous 56475133b000
(00.007738) Dumping path for -3 fd via self 8 [/lib/x86_64-linux-gnu/libc-2.27.so]
(00.007780) vma 7f6408b71000 borrows vfi from previous 7f640898a000
(00.007883) vma 7f6408d71000 borrows vfi from previous 7f6408b71000
(00.007905) vma 7f6408d75000 borrows vfi from previous 7f6408d71000
(00.008024) Dumping path for -3 fd via self 8 [/lib/x86_64-linux-gnu/libpthread-2.27.so]
(00.008062) vma 7f6408d95000 borrows vfi from previous 7f6408d7b000
(00.008100) vma 7f6408f94000 borrows vfi from previous 7f6408d95000
(00.008219) vma 7f6408f95000 borrows vfi from previous 7f6408f94000
(00.008354) Dumping path for -3 fd via self 8 [/lib/x86_64-linux-gnu/libgcc_s.so.1]
(00.008391) vma 7f6408fb1000 borrows vfi from previous 7f6408f9a000
(00.008441) vma 7f64091b0000 borrows vfi from previous 7f6408fb1000
(00.008470) vma 7f64091b1000 borrows vfi from previous 7f64091b0000
(00.008634) Dumping path for -3 fd via self 8 [/lib/x86_64-linux-gnu/libm-2.27.so]
(00.008687) vma 7f640934f000 borrows vfi from previous 7f64091b2000
(00.008733) vma 7f640954e000 borrows vfi from previous 7f640934f000
(00.008754) vma 7f640954f000 borrows vfi from previous 7f640954e000
(00.008815) Dumping path for -3 fd via self 8 [/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25]
(00.008846) vma 7f64096ce000 borrows vfi from previous 7f6409550000
(00.008954) vma 7f64098ce000 borrows vfi from previous 7f64096ce000
(00.008977) vma 7f64098d8000 borrows vfi from previous 7f64098ce000
(00.009093) Dumping path for -3 fd via self 8 [/lib/x86_64-linux-gnu/librt-2.27.so]
(00.009139) vma 7f64098e5000 borrows vfi from previous 7f64098de000
(00.009165) vma 7f6409ae4000 borrows vfi from previous 7f64098e5000
(00.009316) vma 7f6409ae5000 borrows vfi from previous 7f6409ae4000
(00.009364) Dumping path for -3 fd via self 8 [/lib/x86_64-linux-gnu/ld-2.27.so]
(00.009428) vma 7f6409d0e000 borrows vfi from previous 7f6409d0d000
(00.009538) Collected, longest area occupies 16351 pages
(00.009547) 0x564751125000-0x56475113b000 (88K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x1
(00.009555) 0x56475133b000-0x56475133c000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x16000 reg fp  shmid: 0x1
(00.009562) 0x56475133c000-0x56475133d000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x17000 reg fp  shmid: 0x1
(00.009569) 0x56475292f000-0x564752950000 (132K) prot 0x3 flags 0x22 fdflags 0 st 0x221 off 0 reg heap ap  shmid: 0
(00.009575) 0x7f63f8000000-0x7f63f8021000 (132K) prot 0x3 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.009581) 0x7f63f8021000-0x7f63fc000000 (65404K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.009587) 0x7f63fc000000-0x7f63fc0be000 (760K) prot 0x3 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.009592) 0x7f63fc0be000-0x7f6400000000 (64776K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.009598) 0x7f6400000000-0x7f6400024000 (144K) prot 0x3 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.009604) 0x7f6400024000-0x7f6404000000 (65392K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.009610) 0x7f6407187000-0x7f6407188000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.009615) 0x7f6407188000-0x7f6407988000 (8192K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.009621) 0x7f6407988000-0x7f6407989000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.009627) 0x7f6407989000-0x7f6408189000 (8192K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.009633) 0x7f6408189000-0x7f640818a000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.009638) 0x7f640818a000-0x7f640898a000 (8192K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.009644) 0x7f640898a000-0x7f6408b71000 (1948K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x2
(00.009650) 0x7f6408b71000-0x7f6408d71000 (2048K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x1e7000 reg fp  shmid: 0x2
(00.009656) 0x7f6408d71000-0x7f6408d75000 (16K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x1e7000 reg fp  shmid: 0x2
(00.009662) 0x7f6408d75000-0x7f6408d77000 (8K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x1eb000 reg fp  shmid: 0x2
(00.009667) 0x7f6408d77000-0x7f6408d7b000 (16K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.009673) 0x7f6408d7b000-0x7f6408d95000 (104K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x3
(00.009679) 0x7f6408d95000-0x7f6408f94000 (2044K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x1a000 reg fp  shmid: 0x3
(00.009696) 0x7f6408f94000-0x7f6408f95000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x19000 reg fp  shmid: 0x3
(00.009703) 0x7f6408f95000-0x7f6408f96000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x1a000 reg fp  shmid: 0x3
(00.009710) 0x7f6408f96000-0x7f6408f9a000 (16K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.009721) 0x7f6408f9a000-0x7f6408fb1000 (92K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x4
(00.009731) 0x7f6408fb1000-0x7f64091b0000 (2044K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x17000 reg fp  shmid: 0x4
(00.009741) 0x7f64091b0000-0x7f64091b1000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x16000 reg fp  shmid: 0x4
(00.009749) 0x7f64091b1000-0x7f64091b2000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x17000 reg fp  shmid: 0x4
(00.009759) 0x7f64091b2000-0x7f640934f000 (1652K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x5
(00.009769) 0x7f640934f000-0x7f640954e000 (2044K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x19d000 reg fp  shmid: 0x5
(00.009779) 0x7f640954e000-0x7f640954f000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x19c000 reg fp  shmid: 0x5
(00.009788) 0x7f640954f000-0x7f6409550000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x19d000 reg fp  shmid: 0x5
(00.009798) 0x7f6409550000-0x7f64096ce000 (1528K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x6
(00.009808) 0x7f64096ce000-0x7f64098ce000 (2048K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x17e000 reg fp  shmid: 0x6
(00.009818) 0x7f64098ce000-0x7f64098d8000 (40K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x17e000 reg fp  shmid: 0x6
(00.009828) 0x7f64098d8000-0x7f64098da000 (8K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x188000 reg fp  shmid: 0x6
(00.009838) 0x7f64098da000-0x7f64098de000 (16K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.009849) 0x7f64098de000-0x7f64098e5000 (28K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x7
(00.009856) 0x7f64098e5000-0x7f6409ae4000 (2044K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x7000 reg fp  shmid: 0x7
(00.009862) 0x7f6409ae4000-0x7f6409ae5000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x6000 reg fp  shmid: 0x7
(00.009868) 0x7f6409ae5000-0x7f6409ae6000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x7000 reg fp  shmid: 0x7
(00.009874) 0x7f6409ae6000-0x7f6409b0d000 (156K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x8
(00.009879) 0x7f6409d00000-0x7f6409d07000 (28K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.009885) 0x7f6409d0d000-0x7f6409d0e000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x27000 reg fp  shmid: 0x8
(00.009891) 0x7f6409d0e000-0x7f6409d0f000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x28000 reg fp  shmid: 0x8
(00.009896) 0x7f6409d0f000-0x7f6409d10000 (4K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.009902) 0x7ffd80525000-0x7ffd80546000 (132K) prot 0x3 flags 0x122 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.009908) 0x7ffd805e4000-0x7ffd805e7000 (12K) prot 0x1 flags 0x22 fdflags 0 st 0x1201 off 0 reg vvar ap  shmid: 0
(00.009914) 0x7ffd805e7000-0x7ffd805e9000 (8K) prot 0x5 flags 0x22 fdflags 0 st 0x209 off 0 reg vdso ap  shmid: 0
(00.009920) 0xffffffffff600000-0xffffffffff601000 (4K) prot 0x5 flags 0x22 fdflags 0 st 0x204 off 0 vsys ap  shmid: 0
(00.009926) ----------------------------------------
(00.009931) 
(00.009935) Collecting fds (pid: 1920)
(00.009940) ----------------------------------------
(00.010015) Found 5 file descriptors
(00.010026) ----------------------------------------
(00.010070) Dump private signals of 1920
(00.010088) Dump private signals of 1921
(00.010097) Dump private signals of 1922
(00.010110) Dump private signals of 1925
(00.010135) Dump shared signals of 1920
(00.010157) Parasite syscall_ip at 0x564751125000
(00.010374) Set up parasite blob using memfd
(00.010382) Putting parasite blob into 0x7f5800066000->0x7f6409c07000
(00.010446) Dumping general registers for 1920 in native mode
(00.010452) Dumping GP/FPU registers for 1920
(00.010464) xsave runtime structure
(00.010468) -----------------------
(00.010478) cwd:37f swd:0 twd:0 fop:0 mxcsr:1f80 mxcsr_mask:ffff
(00.010483) magic1:46505853 extended_size:344 xstate_bv:7 xstate_size:340
(00.010487) xstate_bv: 7
(00.010490) -----------------------
(00.010494) Putting tsock into pid 1920
pie: 1920: Running daemon thread leader
pie: 1920: __sent ack msg: 2 2 0
pie: 1920: Daemon waits for command
(00.010628) Wait for parasite being daemonized...
(00.010636) Wait for ack 2 on daemon socket
(00.010644) Fetched ack: 2 2 0
(00.010650) Parasite 1920 has been switched to daemon mode
(00.010656) vdso: vDSO hint is reliable - omit checking
pie: 1920: __fetched msg: 74 0 0
pie: 1920: __sent ack msg: 74 74 0
pie: 1920: Daemon waits for command
(00.010765) Sent msg to daemon 74 0 0
(00.010774) Wait for ack 74 on daemon socket
(00.010782) Fetched ack: 74 74 0
pie: 1920: __fetched msg: 70 0 0
pie: 1920: __sent ack msg: 70 70 0
pie: 1920: Daemon waits for command
(00.010831) Sent msg to daemon 70 0 0
(00.010838) Wait for ack 70 on daemon socket
(00.010845) Fetched ack: 70 70 0
(00.010851) sid=1067 pgid=1920 pid=1920
(00.010899) 
(00.010907) Dumping opened files (pid: 1920)
(00.010913) ----------------------------------------
pie: 1920: __fetched msg: 71 0 0
pie: 1920: __sent ack msg: 71 71 0
pie: 1920: Daemon waits for command
(00.010971) Sent msg to daemon 71 0 0
(00.010985) Wait for ack 71 on daemon socket
(00.010993) Fetched ack: 71 71 0
(00.011054) 1920 fdinfo 0: pos:                0 flags:                2/0
(00.011097) tty: Dumping tty 8 with id 0x9
(00.011110) Dumping path for 0 fd via self 8 [/dev/pts/0]
pie: 1920: __fetched msg: 73 0 0
pie: 1920: __sent ack msg: 73 73 0
pie: 1920: Daemon waits for command
(00.011188) Sent msg to daemon 73 0 0
(00.011196) Wait for ack 73 on daemon socket
(00.011205) Fetched ack: 73 73 0
(00.011358) 1920 fdinfo 1: pos:                0 flags:                2/0
(00.011395) 1920 fdinfo 2: pos:                0 flags:                2/0
(00.011426) 1920 fdinfo 3: pos:                0 flags:                2/0
(00.011438)     Searching for socket 5731 (family 10.6)
(00.011458) No filter for socket
(00.011462) Dumping inet socket at 3
(00.011466)     Dumping: ino   0x5731 family   10 type    1 port     5001 state 10 src_addr ::
(00.011471)     Dumped: family 10 type 1 proto 6 port 5001 state 0 src_addr ::
(00.011498) 1920 fdinfo 4: pos:                0 flags:                2/0
(00.011522)     Searching for socket 5741 (family 10.6)
(00.011544) No filter for socket
(00.011549) Dumping inet socket at 4
(00.011557)     Dumping: ino   0x5741 family   10 type    1 port     5001 state  1 src_addr 2001:db9:3::5
(00.011564)     Dumped: family 10 type 1 proto 6 port 5001 state 0 src_addr 2001:db9:3::5
(00.011570) Dumping TCP connection
(00.011574)     Turning repair on for socket 5741
(00.011587)     Running iptables [ip6tables -w -t filter -I INPUT --protocol tcp -m mark ! --mark 0xC114 --source 2001:db9:3::b --sport 47392 --destination 2001:db9:3::5 --dport 5001 -j DROP]
(00.032472) Locked 2001:db9:3::5:5001 - 2001:db9:3::b:47392 connection
(00.032503)     Running iptables [ip6tables -w -t filter -I OUTPUT --protocol tcp -m mark ! --mark 0xC114 --source 2001:db9:3::5 --sport 5001 --destination 2001:db9:3::b --dport 47392 -j DROP]
(00.036242) Locked 2001:db9:3::b:47392 - 2001:db9:3::5:5001 connection
(00.036418) Done
(00.036455) ----------------------------------------
(00.036485) Sent msg to daemon 65 0 0
(00.036491) Wait for ack 65 on daemon socket
pie: 1920: __fetched msg: 65 0 0
pie: 1920: __sent ack msg: 65 65 0
pie: 1920: Daemon waits for command
(00.036600) Fetched ack: 65 65 0
(00.036608) 
(00.036613) Dumping pages (type: 52 pid: 1920)
(00.036619) ----------------------------------------
(00.036624)    Private vmas 16351/59887 pages
(00.036679) pagemap-cache: created for pid 1920 (takes 130808 bytes)
(00.036685) page-pipe: Create page pipe for 59887 segs
(00.036690) page-pipe: Will grow page pipe (iov off is 0)
(00.036744) pagemap-cache: filling VMA 564751125000-56475113b000 (88K) [l:564751000000 h:564751200000]
(00.036757) page-pipe: Add iov to page pipe (0 iovs, 0/59887 total)
(00.036769) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.036773) pagemap-cache: filling VMA 56475133b000-56475133c000 (4K) [l:564751200000 h:564751400000]
(00.036780) page-pipe: Add iov to page pipe (1 iovs, 1/59887 total)
(00.036784) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.036788) pagemap-cache: filling VMA 56475133c000-56475133d000 (4K) [l:564751200000 h:564751400000]
(00.036794) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.036798) pagemap-cache: filling VMA 56475292f000-564752950000 (132K) [l:564752800000 h:564752a00000]
(00.036805) page-pipe: Will grow page pipe (iov off is 2)
(00.036813) page-pipe: Add iov to page pipe (0 iovs, 2/59887 total)
(00.036817) page-pipe: Add iov to page pipe (1 iovs, 3/59887 total)
(00.036821) Pagemap generated: 3 pages (0 lazy) 0 holes
(00.036825) pagemap-cache: filling VMA 7f63f8000000-7f63f8021000 (132K) [l:7f63f8000000 h:7f63f8200000]
(00.036844) pagemap-cache:      7f63f8000000-7f63f8021000     nr:1     cov:135168
(00.036851) pagemap-cache:  simple mode [l:7f63f8000000 h:7f63f8021000]
(00.036863) page-pipe: Add iov to page pipe (2 iovs, 4/59887 total)
(00.036869) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.036874) pagemap-cache: filling VMA 7f63f8021000-7f63fc000000 (65404K) [l:7f63f8000000 h:7f63f8200000]
(00.037170) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.037177) pagemap-cache: filling VMA 7f63fc000000-7f63fc0be000 (760K) [l:7f63fc000000 h:7f63fc200000]
(00.037181) pagemap-cache:      7f63fc000000-7f63fc0be000     nr:1     cov:778240
(00.037185) pagemap-cache:  simple mode [l:7f63fc000000 h:7f63fc0be000]
(00.037195) page-pipe: Add iov to page pipe (3 iovs, 5/59887 total)
(00.037202) page-pipe: Grow pipe 10 -> 20
(00.037288) page-pipe: Grow pipe 20 -> 40
(00.037299) page-pipe: Add iov to page pipe (4 iovs, 6/59887 total)
(00.037303) Pagemap generated: 46 pages (0 lazy) 0 holes
(00.037307) pagemap-cache: filling VMA 7f63fc0be000-7f6400000000 (64776K) [l:7f63fc000000 h:7f63fc200000]
(00.037492) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.037497) pagemap-cache: filling VMA 7f6400000000-7f6400024000 (144K) [l:7f6400000000 h:7f6400200000]
(00.037501) pagemap-cache:      7f6400000000-7f6400024000     nr:1     cov:147456
(00.037505) pagemap-cache:  simple mode [l:7f6400000000 h:7f6400024000]
(00.037513) page-pipe: Add iov to page pipe (5 iovs, 7/59887 total)
(00.037517) page-pipe: Add iov to page pipe (6 iovs, 8/59887 total)
(00.037520) Pagemap generated: 5 pages (0 lazy) 0 holes
(00.037524) pagemap-cache: filling VMA 7f6400024000-7f6404000000 (65392K) [l:7f6400000000 h:7f6400200000]
(00.038855) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.039212) pagemap-cache: filling VMA 7f6407187000-7f6407188000 (4K) [l:7f6407000000 h:7f6407200000]
(00.039221) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.039225) pagemap-cache: filling VMA 7f6407188000-7f6407988000 (8192K) [l:7f6407000000 h:7f6407200000]
(00.039255) page-pipe: Add iov to page pipe (7 iovs, 9/59887 total)
(00.039259) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.039263) pagemap-cache: filling VMA 7f6407988000-7f6407989000 (4K) [l:7f6407800000 h:7f6407a00000]
(00.039269) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.039272) pagemap-cache: filling VMA 7f6407989000-7f6408189000 (8192K) [l:7f6407800000 h:7f6407a00000]
(00.039313) page-pipe: Add iov to page pipe (8 iovs, 10/59887 total)
(00.039318) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.039322) pagemap-cache: filling VMA 7f6408189000-7f640818a000 (4K) [l:7f6408000000 h:7f6408200000]
(00.039328) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.039332) pagemap-cache: filling VMA 7f640818a000-7f640898a000 (8192K) [l:7f6408000000 h:7f6408200000]
(00.039362) page-pipe: Add iov to page pipe (9 iovs, 11/59887 total)
(00.039366) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.039369) pagemap-cache: filling VMA 7f640898a000-7f6408b71000 (1948K) [l:7f6408800000 h:7f6408a00000]
(00.039385) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.039389) pagemap-cache: filling VMA 7f6408b71000-7f6408d71000 (2048K) [l:7f6408a00000 h:7f6408c00000]
(00.039410) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.039415) pagemap-cache: filling VMA 7f6408d71000-7f6408d75000 (16K) [l:7f6408c00000 h:7f6408e00000]
(00.039422) page-pipe: Will grow page pipe (iov off is 12)
(00.039433) page-pipe: Add iov to page pipe (0 iovs, 12/59887 total)
(00.039437) Pagemap generated: 4 pages (0 lazy) 0 holes
(00.039441) pagemap-cache: filling VMA 7f6408d75000-7f6408d77000 (8K) [l:7f6408c00000 h:7f6408e00000]
(00.039466) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.039471) pagemap-cache: filling VMA 7f6408d77000-7f6408d7b000 (16K) [l:7f6408c00000 h:7f6408e00000]
(00.039480) page-pipe: Will grow page pipe (iov off is 13)
(00.039494) page-pipe: Add iov to page pipe (0 iovs, 13/59887 total)
(00.039499) page-pipe: Add iov to page pipe (1 iovs, 14/59887 total)
(00.039504) Pagemap generated: 3 pages (0 lazy) 0 holes
(00.039509) pagemap-cache: filling VMA 7f6408d7b000-7f6408d95000 (104K) [l:7f6408c00000 h:7f6408e00000]
(00.039518) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.039524) pagemap-cache: filling VMA 7f6408d95000-7f6408f94000 (2044K) [l:7f6408c00000 h:7f6408e00000]
(00.039541) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.039547) pagemap-cache: filling VMA 7f6408f94000-7f6408f95000 (4K) [l:7f6408e00000 h:7f6409000000]
(00.039556) page-pipe: Will grow page pipe (iov off is 15)
(00.039567) page-pipe: Add iov to page pipe (0 iovs, 15/59887 total)
(00.039572) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.039577) pagemap-cache: filling VMA 7f6408f95000-7f6408f96000 (4K) [l:7f6408e00000 h:7f6409000000]
(00.039586) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.039591) pagemap-cache: filling VMA 7f6408f96000-7f6408f9a000 (16K) [l:7f6408e00000 h:7f6409000000]
(00.039600) page-pipe: Will grow page pipe (iov off is 16)
(00.039610) page-pipe: Add iov to page pipe (0 iovs, 16/59887 total)
(00.039616) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.039620) pagemap-cache: filling VMA 7f6408f9a000-7f6408fb1000 (92K) [l:7f6408e00000 h:7f6409000000]
(00.039630) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.039635) pagemap-cache: filling VMA 7f6408fb1000-7f64091b0000 (2044K) [l:7f6408e00000 h:7f6409000000]
(00.039653) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.039658) pagemap-cache: filling VMA 7f64091b0000-7f64091b1000 (4K) [l:7f6409000000 h:7f6409200000]
(00.039668) page-pipe: Will grow page pipe (iov off is 17)
(00.039679) page-pipe: Add iov to page pipe (0 iovs, 17/59887 total)
(00.039685) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.039690) pagemap-cache: filling VMA 7f64091b1000-7f64091b2000 (4K) [l:7f6409000000 h:7f6409200000]
(00.039699) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.039704) pagemap-cache: filling VMA 7f64091b2000-7f640934f000 (1652K) [l:7f6409000000 h:7f6409200000]
(00.039721) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.039726) pagemap-cache: filling VMA 7f640934f000-7f640954e000 (2044K) [l:7f6409200000 h:7f6409400000]
(00.039762) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.039767) pagemap-cache: filling VMA 7f640954e000-7f640954f000 (4K) [l:7f6409400000 h:7f6409600000]
(00.039779) page-pipe: Add iov to page pipe (1 iovs, 18/59887 total)
(00.039785) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.039789) pagemap-cache: filling VMA 7f640954f000-7f6409550000 (4K) [l:7f6409400000 h:7f6409600000]
(00.039801) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.039806) pagemap-cache: filling VMA 7f6409550000-7f64096ce000 (1528K) [l:7f6409400000 h:7f6409600000]
(00.039825) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.039831) pagemap-cache: filling VMA 7f64096ce000-7f64098ce000 (2048K) [l:7f6409600000 h:7f6409800000]
(00.039849) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.039854) pagemap-cache: filling VMA 7f64098ce000-7f64098d8000 (40K) [l:7f6409800000 h:7f6409a00000]
(00.039865) page-pipe: Add iov to page pipe (2 iovs, 19/59887 total)
(00.039870) Pagemap generated: 10 pages (0 lazy) 0 holes
(00.039875) pagemap-cache: filling VMA 7f64098d8000-7f64098da000 (8K) [l:7f6409800000 h:7f6409a00000]
(00.039884) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.039903) pagemap-cache: filling VMA 7f64098da000-7f64098de000 (16K) [l:7f6409800000 h:7f6409a00000]
(00.039916) page-pipe: Will grow page pipe (iov off is 20)
(00.039925) page-pipe: Add iov to page pipe (0 iovs, 20/59887 total)
(00.039929) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.039933) pagemap-cache: filling VMA 7f64098de000-7f64098e5000 (28K) [l:7f6409800000 h:7f6409a00000]
(00.039939) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.039943) pagemap-cache: filling VMA 7f64098e5000-7f6409ae4000 (2044K) [l:7f6409800000 h:7f6409a00000]
(00.039956) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.039959) pagemap-cache: filling VMA 7f6409ae4000-7f6409ae5000 (4K) [l:7f6409a00000 h:7f6409c00000]
(00.039966) page-pipe: Will grow page pipe (iov off is 21)
(00.039970) page-pipe: Page pipe:
(00.039974) page-pipe: * 8 pipes 21/59887 iovs:
(00.039977) page-pipe:  buf 3 pages, 2 iovs, flags: 0 :
(00.039981) page-pipe:      0x564751125000 1
(00.039984) page-pipe:      0x56475133b000 2
(00.039988) page-pipe:  buf 61 pages, 10 iovs, flags: 1 :
(00.039991) page-pipe:      0x56475292f000 1
(00.039994) page-pipe:      0x564752940000 2
(00.039998) page-pipe:      0x7f63f8000000 1
(00.040001) page-pipe:      0x7f63fc000000 45
(00.040004) page-pipe:      0x7f63fc0bd000 1
(00.040007) page-pipe:      0x7f6400000000 1
(00.040010) page-pipe:      0x7f6400020000 4
(00.040014) page-pipe:      0x7f6407986000 2
(00.040017) page-pipe:      0x7f6408187000 2
(00.040020) page-pipe:      0x7f6408988000 2
(00.040023) page-pipe:  buf 6 pages, 1 iovs, flags: 0 :
(00.040026) page-pipe:      0x7f6408d71000 6
(00.040030) page-pipe:  buf 3 pages, 2 iovs, flags: 1 :
(00.040033) page-pipe:      0x7f6408d77000 2
(00.040036) page-pipe:      0x7f6408d7a000 1
(00.040039) page-pipe:  buf 2 pages, 1 iovs, flags: 0 :
(00.040043) page-pipe:      0x7f6408f94000 2
(00.040046) page-pipe:  buf 1 pages, 1 iovs, flags: 1 :
(00.040049) page-pipe:      0x7f6408f99000 1
(00.040052) page-pipe:  buf 16 pages, 3 iovs, flags: 0 :
(00.040055) page-pipe:      0x7f64091b0000 2
(00.040058) page-pipe:      0x7f640954e000 2
(00.040062) page-pipe:      0x7f64098ce000 12
(00.040065) page-pipe:  buf 1 pages, 1 iovs, flags: 1 :
(00.040068) page-pipe:      0x7f64098dc000 1
(00.040071) page-pipe: * 0 holes:
(00.040074) PPB: 3 pages 2 segs 16 pipe 0 off
pie: 1920: __fetched msg: 66 0 0
(00.040102) Sent msg to daemon 66 0 0
pie: 1920: __sent ack msg: 66 66 0
pie: 1920: Daemon waits for command
(00.040136) Wait for ack 66 on daemon socket
(00.040142) Fetched ack: 66 66 0
(00.040146) PPB: 61 pages 10 segs 64 pipe 2 off
pie: 1920: __fetched msg: 66 0 0
(00.040162) Sent msg to daemon 66 0 0
pie: 1920: __sent ack msg: 66 66 0
pie: 1920: Daemon waits for command
(00.040223) Wait for ack 66 on daemon socket
(00.040245) Fetched ack: 66 66 0
(00.040249) PPB: 6 pages 1 segs 16 pipe 12 off
pie: 1920: __fetched msg: 66 0 0
(00.040265) Sent msg to daemon 66 0 0
pie: 1920: __sent ack msg: 66 66 0
pie: 1920: Daemon waits for command
(00.040307) Wait for ack 66 on daemon socket
(00.040314) Fetched ack: 66 66 0
(00.040318) PPB: 3 pages 2 segs 16 pipe 13 off
pie: 1920: __fetched msg: 66 0 0
(00.040334) Sent msg to daemon 66 0 0
pie: 1920: __sent ack msg: 66 66 0
pie: 1920: Daemon waits for command
(00.040359) Wait for ack 66 on daemon socket
(00.040365) Fetched ack: 66 66 0
(00.040368) PPB: 2 pages 1 segs 16 pipe 15 off
pie: 1920: __fetched msg: 66 0 0
(00.040384) Sent msg to daemon 66 0 0
pie: 1920: __sent ack msg: 66 66 0
pie: 1920: Daemon waits for command
(00.040409) Wait for ack 66 on daemon socket
(00.040414) Fetched ack: 66 66 0
(00.040418) PPB: 1 pages 1 segs 16 pipe 16 off
pie: 1920: __fetched msg: 66 0 0
(00.040434) Sent msg to daemon 66 0 0
pie: 1920: __sent ack msg: 66 66 0
pie: 1920: Daemon waits for command
(00.040458) Wait for ack 66 on daemon socket
(00.040463) Fetched ack: 66 66 0
(00.040467) PPB: 16 pages 3 segs 16 pipe 17 off
pie: 1920: __fetched msg: 66 0 0
(00.040483) Sent msg to daemon 66 0 0
pie: 1920: __sent ack msg: 66 66 0
pie: 1920: Daemon waits for command
(00.040536) Wait for ack 66 on daemon socket
(00.040545) Fetched ack: 66 66 0
(00.040550) PPB: 1 pages 1 segs 16 pipe 20 off
pie: 1920: __fetched msg: 66 0 0
(00.040583) Sent msg to daemon 66 0 0
pie: 1920: __sent ack msg: 66 66 0
pie: 1920: Daemon waits for command
(00.040618) Wait for ack 66 on daemon socket
(00.040627) Fetched ack: 66 66 0
(00.040634) Transferring pages:
(00.040638)     buf 3/2
(00.040644)     p 0x564751125000 [1]
(00.040677)     p 0x56475133b000 [2]
(00.040700)     buf 61/10
(00.040706)     p 0x56475292f000 [1]
(00.040720)     p 0x564752940000 [2]
(00.040739)     p 0x7f63f8000000 [1]
(00.040754)     p 0x7f63fc000000 [45]
(00.040992)     p 0x7f63fc0bd000 [1]
(00.041007)     p 0x7f6400000000 [1]
(00.041017)     p 0x7f6400020000 [4]
(00.041038)     p 0x7f6407986000 [2]
(00.041052)     p 0x7f6408187000 [2]
(00.041067)     p 0x7f6408988000 [2]
(00.041080)     buf 6/1
(00.041084)     p 0x7f6408d71000 [6]
(00.041114)     buf 3/2
(00.041118)     p 0x7f6408d77000 [2]
(00.041131)     p 0x7f6408d7a000 [1]
(00.041142)     buf 2/1
(00.041145)     p 0x7f6408f94000 [2]
(00.041158)     buf 1/1
(00.041162)     p 0x7f6408f99000 [1]
(00.041171)     buf 16/3
(00.041175)     p 0x7f64091b0000 [2]
(00.041189)     p 0x7f640954e000 [2]
(00.041202)     p 0x7f64098ce000 [12]
(00.041317)     buf 1/1
(00.041323)     p 0x7f64098dc000 [1]
(00.041335) page-pipe: Clean up page pipe
(00.041339) page-pipe: Will grow page pipe (iov off is 21)
(00.041343) page-pipe: Add iov to page pipe (0 iovs, 21/59887 total)
(00.041347) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.041350) pagemap-cache: filling VMA 7f6409ae5000-7f6409ae6000 (4K) [l:7f6409a00000 h:7f6409c00000]
(00.041359) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.041363) pagemap-cache: filling VMA 7f6409ae6000-7f6409b0d000 (156K) [l:7f6409a00000 h:7f6409c00000]
(00.041370) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.041374) pagemap-cache: filling VMA 7f6409d00000-7f6409d07000 (28K) [l:7f6409c00000 h:7f6409e00000]
(00.041381) page-pipe: Will grow page pipe (iov off is 22)
(00.041385) page-pipe: Add iov to page pipe (0 iovs, 22/59887 total)
(00.041389) Pagemap generated: 7 pages (0 lazy) 0 holes
(00.041392) pagemap-cache: filling VMA 7f6409d0d000-7f6409d0e000 (4K) [l:7f6409c00000 h:7f6409e00000]
(00.041399) page-pipe: Will grow page pipe (iov off is 23)
(00.041402) page-pipe: Add iov to page pipe (0 iovs, 23/59887 total)
(00.041406) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.041409) pagemap-cache: filling VMA 7f6409d0e000-7f6409d0f000 (4K) [l:7f6409c00000 h:7f6409e00000]
(00.041415) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.041419) pagemap-cache: filling VMA 7f6409d0f000-7f6409d10000 (4K) [l:7f6409c00000 h:7f6409e00000]
(00.041425) page-pipe: Will grow page pipe (iov off is 24)
(00.041428) page-pipe: Add iov to page pipe (0 iovs, 24/59887 total)
(00.041432) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.041435) pagemap-cache: filling VMA 7ffd80525000-7ffd80546000 (132K) [l:7ffd80400000 h:7ffd80600000]
(00.041451) page-pipe: Add iov to page pipe (1 iovs, 25/59887 total)
(00.041454) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.041458) pagemap-cache: filling VMA 7ffd805e4000-7ffd805e7000 (12K) [l:7ffd80400000 h:7ffd80600000]
(00.041463) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.041467) pagemap-cache: filling VMA 7ffd805e7000-7ffd805e9000 (8K) [l:7ffd80400000 h:7ffd80600000]
(00.041472) page-pipe: Will grow page pipe (iov off is 26)
(00.041476) page-pipe: Add iov to page pipe (0 iovs, 26/59887 total)
(00.041479) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.041483) page-pipe: Page pipe:
(00.041486) page-pipe: * 8 pipes 27/59887 iovs:
(00.041489) page-pipe:  buf 2 pages, 1 iovs, flags: 0 :
(00.041492) page-pipe:      0x7f6409ae4000 2
(00.041496) page-pipe:  buf 7 pages, 1 iovs, flags: 1 :
(00.041499) page-pipe:      0x7f6409d00000 7
(00.041502) page-pipe:  buf 2 pages, 1 iovs, flags: 0 :
(00.041506) page-pipe:      0x7f6409d0d000 2
(00.041509) page-pipe:  buf 3 pages, 2 iovs, flags: 1 :
(00.041512) page-pipe:      0x7f6409d0f000 1
(00.041515) page-pipe:      0x7ffd80544000 2
(00.041518) page-pipe:  buf 2 pages, 1 iovs, flags: 0 :
(00.041521) page-pipe:      0x7ffd805e7000 2
(00.041524) page-pipe: * 0 holes:
(00.041527) PPB: 2 pages 1 segs 16 pipe 21 off
pie: 1920: __fetched msg: 66 0 0
(00.041573) Sent msg to daemon 66 0 0
pie: 1920: __sent ack msg: 66 66 0
pie: 1920: Daemon waits for command
(00.041613) Wait for ack 66 on daemon socket
(00.041622) Fetched ack: 66 66 0
(00.041627) PPB: 7 pages 1 segs 16 pipe 22 off
pie: 1920: __fetched msg: 66 0 0
(00.041666) Sent msg to daemon 66 0 0
pie: 1920: __sent ack msg: 66 66 0
pie: 1920: Daemon waits for command
(00.041708) Wait for ack 66 on daemon socket
(00.041718) Fetched ack: 66 66 0
(00.041724) PPB: 2 pages 1 segs 16 pipe 23 off
pie: 1920: __fetched msg: 66 0 0
(00.041750) Sent msg to daemon 66 0 0
pie: 1920: __sent ack msg: 66 66 0
pie: 1920: Daemon waits for command
(00.041791) Wait for ack 66 on daemon socket
(00.041816) Fetched ack: 66 66 0
(00.041821) PPB: 3 pages 2 segs 16 pipe 24 off
pie: 1920: __fetched msg: 66 0 0
(00.041844) Sent msg to daemon 66 0 0
pie: 1920: __sent ack msg: 66 66 0
pie: 1920: Daemon waits for command
(00.041897) Wait for ack 66 on daemon socket
(00.041908) Fetched ack: 66 66 0
(00.041914) PPB: 2 pages 1 segs 16 pipe 26 off
pie: 1920: __fetched msg: 66 0 0
(00.041940) Sent msg to daemon 66 0 0
pie: 1920: __sent ack msg: 66 66 0
pie: 1920: Daemon waits for command
(00.041989) Wait for ack 66 on daemon socket
(00.042013) Fetched ack: 66 66 0
(00.042017) Transferring pages:
(00.042021)     buf 2/1
(00.042024)     p 0x7f6409ae4000 [2]
(00.042044)     buf 7/1
(00.042048)     p 0x7f6409d00000 [7]
(00.042084)     buf 2/1
(00.042088)     p 0x7f6409d0d000 [2]
(00.042103)     buf 3/2
(00.042106)     p 0x7f6409d0f000 [1]
(00.042116)     p 0x7ffd80544000 [2]
(00.042131)     buf 2/1
(00.042135)     p 0x7ffd805e7000 [2]
(00.042167) page-pipe: Killing page pipe
(00.042206) ----------------------------------------
pie: 1920: __fetched msg: 65 0 0
pie: 1920: __sent ack msg: 65 65 0
pie: 1920: Daemon waits for command
(00.042268) Sent msg to daemon 65 0 0
(00.042273) Wait for ack 65 on daemon socket
(00.042290) Fetched ack: 65 65 0
pie: 1920: __fetched msg: 67 0 0
pie: 1920: __sent ack msg: 67 67 0
pie: 1920: Daemon waits for command
(00.042359) Sent msg to daemon 67 0 0
(00.042364) Wait for ack 67 on daemon socket
(00.042369) Fetched ack: 67 67 0
pie: 1920: __fetched msg: 68 0 0
pie: 1920: __sent ack msg: 68 68 0
pie: 1920: Daemon waits for command
(00.042409) Sent msg to daemon 68 0 0
(00.042414) Wait for ack 68 on daemon socket
(00.042419) Fetched ack: 68 68 0
pie: 1920: __fetched msg: 69 0 0
pie: 1920: __sent ack msg: 69 69 0
pie: 1920: Daemon waits for command
(00.042443) Sent msg to daemon 69 0 0
(00.042448) Wait for ack 69 on daemon socket
(00.042452) Fetched ack: 69 69 0
(00.042457) 
(00.042460) Dumping core (pid: 1920)
(00.042464) ----------------------------------------
(00.042467) Obtaining personality ... 
pie: 1920: __fetched msg: 64 0 0
pie: 1920: __sent ack msg: 64 64 0
pie: 1920: Daemon waits for command
(00.042599) Sent msg to daemon 64 0 0
(00.042608) Wait for ack 64 on daemon socket
(00.042618) Fetched ack: 64 64 0
(00.042782) 1920 has 0 sched policy
(00.042797)     dumping 0 nice for 1920
(00.042803) dumping /proc/1920/loginuid
(00.042830) dumping /proc/1920/oom_score_adj
pie: 1920: __fetched msg: 76 0 0
pie: 1920: __sent ack msg: 76 76 0
pie: 1920: Daemon waits for command
(00.042983) Sent msg to daemon 76 0 0
(00.042991) Wait for ack 76 on daemon socket
(00.042999) Fetched ack: 76 76 0
(00.043006) cg: Dumping cgroups for 1920
(00.043086) cg:  `- New css ID 2
(00.043095) cg:     `- [blkio] -> [/user.slice] [0]
(00.043099) cg:     `- [cpu,cpuacct] -> [/user.slice] [0]
(00.043103) cg:     `- [cpuset] -> [/] [0]
(00.043106) cg:     `- [devices] -> [/user.slice] [0]
(00.043110) cg:     `- [freezer] -> [/] [0]
(00.043113) cg:     `- [hugetlb] -> [/] [0]
(00.043116) cg:     `- [memory] -> [/user.slice] [0]
(00.043119) cg:     `- [name=systemd] -> [/user.slice/user-1000.slice/session-1.scope] [0]
(00.043123) cg:     `- [net_cls,net_prio] -> [/] [0]
(00.043126) cg:     `- [perf_event] -> [/] [0]
(00.043129) cg:     `- [pids] -> [/user.slice/user-1000.slice/session-1.scope] [0]
(00.043133) cg:     `- [rdma] -> [/] [0]
(00.058868) cg: adding cgroup /proc/self/fd/8/user.slice
(00.058939) cg: Dumping value 500 from /proc/self/fd/8/user.slice/blkio.weight
(00.058969) cg: Dumping value 0 from /proc/self/fd/8/user.slice/cgroup.clone_children
(00.058994) cg: Dumping value 0 from /proc/self/fd/8/user.slice/notify_on_release
(00.059036) cg: Dumping value  from /proc/self/fd/8/user.slice/cgroup.procs
(00.059071) cg: Dumping value  from /proc/self/fd/8/user.slice/tasks
(00.074896) cg: adding cgroup /proc/self/fd/8/user.slice
(00.074933) cg: Dumping value 1024 from /proc/self/fd/8/user.slice/cpu.shares
(00.074956) cg: Dumping value 100000 from /proc/self/fd/8/user.slice/cpu.cfs_period_us
(00.074977) cg: Dumping value -1 from /proc/self/fd/8/user.slice/cpu.cfs_quota_us
(00.074990) cg: Couldn't open /proc/self/fd/8/user.slice/cpu.rt_period_us. This cgroup property may not exist on this kernel
(00.075001) cg: Couldn't open /proc/self/fd/8/user.slice/cpu.rt_runtime_us. This cgroup property may not exist on this kernel
(00.075025) cg: Dumping value 0 from /proc/self/fd/8/user.slice/cgroup.clone_children
(00.075056) cg: Dumping value 0 from /proc/self/fd/8/user.slice/notify_on_release
(00.075076) cg: Dumping value  from /proc/self/fd/8/user.slice/cgroup.procs
(00.075097) cg: Dumping value  from /proc/self/fd/8/user.slice/tasks
(00.075120) cg: Dumping value 0 from /proc/self/fd/8/user.slice/cgroup.clone_children
(00.075140) cg: Dumping value 0 from /proc/self/fd/8/user.slice/notify_on_release
(00.075157) cg: Dumping value  from /proc/self/fd/8/user.slice/cgroup.procs
(00.075174) cg: Dumping value  from /proc/self/fd/8/user.slice/tasks
(00.090840) cg: adding cgroup /proc/self/fd/8
(00.090899) cg: Dumping value 0-1 from /proc/self/fd/8/cpuset.cpus
(00.090926) cg: Dumping value 0 from /proc/self/fd/8/cpuset.mems
(00.090950) cg: Dumping value 0 from /proc/self/fd/8/cpuset.memory_migrate
(00.090972) cg: Dumping value 1 from /proc/self/fd/8/cpuset.cpu_exclusive
(00.090993) cg: Dumping value 1 from /proc/self/fd/8/cpuset.mem_exclusive
(00.091015) cg: Dumping value 0 from /proc/self/fd/8/cpuset.mem_hardwall
(00.091038) cg: Dumping value 0 from /proc/self/fd/8/cpuset.memory_spread_page
(00.091060) cg: Dumping value 0 from /proc/self/fd/8/cpuset.memory_spread_slab
(00.091082) cg: Dumping value 1 from /proc/self/fd/8/cpuset.sched_load_balance
(00.091145) cg: Dumping value -1 from /proc/self/fd/8/cpuset.sched_relax_domain_level
(00.091214) cg: Dumping value 0 from /proc/self/fd/8/cgroup.clone_children
(00.091261) cg: Dumping value 0 from /proc/self/fd/8/notify_on_release
(00.091329) cg: Dumping value  from /proc/self/fd/8/cgroup.procs
(00.091354) cg: Dumping value  from /proc/self/fd/8/tasks
(00.110902) cg: adding cgroup /proc/self/fd/8/user.slice
(00.110989) cg: Dumping value a *:* rwm from /proc/self/fd/8/user.slice/devices.list
(00.111030) cg: Dumping value 0 from /proc/self/fd/8/user.slice/cgroup.clone_children
(00.111069) cg: Dumping value 0 from /proc/self/fd/8/user.slice/notify_on_release
(00.111088) cg: Dumping value  from /proc/self/fd/8/user.slice/cgroup.procs
(00.111108) cg: Dumping value  from /proc/self/fd/8/user.slice/tasks
(00.126919) cg: adding cgroup /proc/self/fd/8
(00.126974) cg: Dumping value 0 from /proc/self/fd/8/cgroup.clone_children
(00.126999) cg: Dumping value 0 from /proc/self/fd/8/notify_on_release
(00.127020) cg: Dumping value  from /proc/self/fd/8/cgroup.procs
(00.127040) cg: Dumping value  from /proc/self/fd/8/tasks
(00.142881) cg: adding cgroup /proc/self/fd/8
(00.142947) cg: Dumping value 0 from /proc/self/fd/8/cgroup.clone_children
(00.142972) cg: Dumping value 0 from /proc/self/fd/8/notify_on_release
(00.142993) cg: Dumping value  from /proc/self/fd/8/cgroup.procs
(00.143014) cg: Dumping value  from /proc/self/fd/8/tasks
(00.158860) cg: adding cgroup /proc/self/fd/8/user.slice
(00.158921) cg: Dumping value 9223372036854771712 from /proc/self/fd/8/user.slice/memory.limit_in_bytes
(00.158939) cg: Couldn't open /proc/self/fd/8/user.slice/memory.memsw.limit_in_bytes. This cgroup property may not exist on this kernel
(00.158967) cg: Dumping value 60 from /proc/self/fd/8/user.slice/memory.swappiness
(00.159008) cg: Dumping value 9223372036854771712 from /proc/self/fd/8/user.slice/memory.soft_limit_in_bytes
(00.159032) cg: Dumping value 0 from /proc/self/fd/8/user.slice/memory.move_charge_at_immigrate
(00.159090) cg: Dumping value 0 from /proc/self/fd/8/user.slice/memory.oom_control
(00.159118) cg: Dumping value 1 from /proc/self/fd/8/user.slice/memory.use_hierarchy
(00.159145) cg: Dumping value 9223372036854771712 from /proc/self/fd/8/user.slice/memory.kmem.limit_in_bytes
(00.159171) cg: Dumping value 9223372036854771712 from /proc/self/fd/8/user.slice/memory.kmem.tcp.limit_in_bytes
(00.159197) cg: Dumping value 0 from /proc/self/fd/8/user.slice/cgroup.clone_children
(00.159223) cg: Dumping value 0 from /proc/self/fd/8/user.slice/notify_on_release
(00.159245) cg: Dumping value  from /proc/self/fd/8/user.slice/cgroup.procs
(00.159274) cg: Dumping value  from /proc/self/fd/8/user.slice/tasks
(00.178883) cg: adding cgroup /proc/self/fd/8/user.slice/user-1000.slice/session-1.scope
(00.178970) cg: Dumping value 0 from /proc/self/fd/8/user.slice/user-1000.slice/session-1.scope/cgroup.clone_children
(00.179024) cg: Dumping value 0 from /proc/self/fd/8/user.slice/user-1000.slice/session-1.scope/notify_on_release
(00.179065) cg: Dumping value  from /proc/self/fd/8/user.slice/user-1000.slice/session-1.scope/cgroup.procs
(00.179111) cg: Dumping value  from /proc/self/fd/8/user.slice/user-1000.slice/session-1.scope/tasks
(00.194965) cg: adding cgroup /proc/self/fd/8
(00.195040) cg: Dumping value 0 from /proc/self/fd/8/net_cls.classid
(00.195092) cg: Dumping value 0 from /proc/self/fd/8/cgroup.clone_children
(00.195125) cg: Dumping value 0 from /proc/self/fd/8/notify_on_release
(00.195153) cg: Dumping value  from /proc/self/fd/8/cgroup.procs
(00.195181) cg: Dumping value  from /proc/self/fd/8/tasks
(00.195214) cg: Dumping value lo 0
ens3 0
ens4 0 from /proc/self/fd/8/net_prio.ifpriomap
(00.195242) cg: Dumping value 0 from /proc/self/fd/8/cgroup.clone_children
(00.195278) cg: Dumping value 0 from /proc/self/fd/8/notify_on_release
(00.195295) cg: Dumping value  from /proc/self/fd/8/cgroup.procs
(00.195312) cg: Dumping value  from /proc/self/fd/8/tasks
(00.210899) cg: adding cgroup /proc/self/fd/8
(00.210958) cg: Dumping value 0 from /proc/self/fd/8/cgroup.clone_children
(00.210989) cg: Dumping value 0 from /proc/self/fd/8/notify_on_release
(00.211013) cg: Dumping value  from /proc/self/fd/8/cgroup.procs
(00.211037) cg: Dumping value  from /proc/self/fd/8/tasks
(00.230991) cg: adding cgroup /proc/self/fd/8/user.slice/user-1000.slice/session-1.scope
(00.231046) cg: Dumping value max from /proc/self/fd/8/user.slice/user-1000.slice/session-1.scope/pids.max
(00.231079) cg: Dumping value 0 from /proc/self/fd/8/user.slice/user-1000.slice/session-1.scope/cgroup.clone_children
(00.231104) cg: Dumping value 0 from /proc/self/fd/8/user.slice/user-1000.slice/session-1.scope/notify_on_release
(00.231124) cg: Dumping value  from /proc/self/fd/8/user.slice/user-1000.slice/session-1.scope/cgroup.procs
(00.231147) cg: Dumping value  from /proc/self/fd/8/user.slice/user-1000.slice/session-1.scope/tasks
(00.254928) cg: adding cgroup /proc/self/fd/8
(00.254991) cg: Dumping value 0 from /proc/self/fd/8/cgroup.clone_children
(00.255018) cg: Dumping value 0 from /proc/self/fd/8/notify_on_release
(00.255056) cg: Dumping value  from /proc/self/fd/8/cgroup.procs
(00.255092) cg: Dumping value  from /proc/self/fd/8/tasks
(00.255135) cg: Set 2 is root one
(00.255276) ----------------------------------------
(00.255320) Waiting for 1920 to trap
(00.255461) Daemon 1920 exited trapping
(00.255513) Sent msg to daemon 3 0 0
(00.255545) Force no-breakpoints restore
(00.255626) 1920 was trapped
(00.255651) 1920 (native) is going to execute the syscall 45, required is 15
(00.255787) 1920 was trapped
(00.255801) `- Expecting exit
(00.255851) 1920 was trapped
(00.255863) 1920 (native) is going to execute the syscall 186, required is 15
(00.255894) 1920 was trapped
(00.255900) `- Expecting exit
(00.255923) 1920 was trapped
(00.255948) 1920 (native) is going to execute the syscall 1, required is 15
pie: 1920: __fetched msg: 3 0 0
(00.255984) 1920 was trapped
(00.255994) `- Expecting exit
(00.256024) 1920 was trapped
(00.256034) 1920 (native) is going to execute the syscall 186, required is 15
(00.256064) 1920 was trapped
(00.256072) `- Expecting exit
(00.256107) 1920 was trapped
(00.256118) 1920 (native) is going to execute the syscall 186, required is 15
(00.256156) 1920 was trapped
(00.256164) `- Expecting exit
(00.256191) 1920 was trapped
(00.256202) 1920 (native) is going to execute the syscall 1, required is 15
pie: 1920: 1920: new_sp=0x7f6409cf7008 ip 0x7f6408d889f1
(00.256234) 1920 was trapped
(00.256243) `- Expecting exit
(00.256263) 1920 was trapped
(00.256274) 1920 (native) is going to execute the syscall 3, required is 15
(00.256309) 1920 was trapped
(00.256318) `- Expecting exit
(00.256357) 1920 was trapped
(00.256370) 1920 (native) is going to execute the syscall 3, required is 15
(00.256392) 1920 was trapped
(00.256400) `- Expecting exit
(00.256417) 1920 was trapped
(00.256426) 1920 (native) is going to execute the syscall 15, required is 15
(00.256452) 1920 was stopped
(00.256463) 
(00.256468) Dumping core for thread (pid: 1921)
(00.256474) ----------------------------------------
(00.256490) Dumping general registers for 1921 in native mode
(00.256497) Dumping GP/FPU registers for 1921
(00.256718) 1921 has 0 sched policy
(00.256732)     dumping 0 nice for 1921
(00.256810) ----------------------------------------
(00.256816) 
(00.256819) Dumping core for thread (pid: 1922)
(00.256823) ----------------------------------------
(00.256830) Dumping general registers for 1922 in native mode
(00.256834) Warn  (compel/arch/x86/src/lib/infect.c:249): Will restore 1922 with interrupted system call
(00.256838) Dumping GP/FPU registers for 1922
(00.256961) 1922 has 0 sched policy
(00.256969)     dumping 0 nice for 1922
(00.257024) ----------------------------------------
(00.257029) 
(00.257032) Dumping core for thread (pid: 1925)
(00.257035) ----------------------------------------
(00.257042) Dumping general registers for 1925 in native mode
(00.257046) Dumping GP/FPU registers for 1925
(00.257273) 1925 has 0 sched policy
(00.257281)     dumping 0 nice for 1925
(00.257352) ----------------------------------------
(00.257470) 
(00.257478) Dumping mm (pid: 1920)
(00.257482) ----------------------------------------
(00.257487) 0x564751125000-0x56475113b000 (88K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x1
(00.257493) 0x56475133b000-0x56475133c000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x16000 reg fp  shmid: 0x1
(00.257497) 0x56475133c000-0x56475133d000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x17000 reg fp  shmid: 0x1
(00.257502) 0x56475292f000-0x564752950000 (132K) prot 0x3 flags 0x22 fdflags 0 st 0x221 off 0 reg heap ap  shmid: 0
(00.257506) 0x7f63f8000000-0x7f63f8021000 (132K) prot 0x3 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.257510) 0x7f63f8021000-0x7f63fc000000 (65404K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.257514) 0x7f63fc000000-0x7f63fc0be000 (760K) prot 0x3 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.257518) 0x7f63fc0be000-0x7f6400000000 (64776K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.257522) 0x7f6400000000-0x7f6400024000 (144K) prot 0x3 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.257526) 0x7f6400024000-0x7f6404000000 (65392K) prot 0 flags 0x4022 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.257530) 0x7f6407187000-0x7f6407188000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.257535) 0x7f6407188000-0x7f6407988000 (8192K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.257539) 0x7f6407988000-0x7f6407989000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.257543) 0x7f6407989000-0x7f6408189000 (8192K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.257547) 0x7f6408189000-0x7f640818a000 (4K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.257558) 0x7f640818a000-0x7f640898a000 (8192K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.257563) 0x7f640898a000-0x7f6408b71000 (1948K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x2
(00.257567) 0x7f6408b71000-0x7f6408d71000 (2048K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x1e7000 reg fp  shmid: 0x2
(00.257571) 0x7f6408d71000-0x7f6408d75000 (16K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x1e7000 reg fp  shmid: 0x2
(00.257575) 0x7f6408d75000-0x7f6408d77000 (8K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x1eb000 reg fp  shmid: 0x2
(00.257579) 0x7f6408d77000-0x7f6408d7b000 (16K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.257583) 0x7f6408d7b000-0x7f6408d95000 (104K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x3
(00.257587) 0x7f6408d95000-0x7f6408f94000 (2044K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x1a000 reg fp  shmid: 0x3
(00.257591) 0x7f6408f94000-0x7f6408f95000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x19000 reg fp  shmid: 0x3
(00.257595) 0x7f6408f95000-0x7f6408f96000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x1a000 reg fp  shmid: 0x3
(00.257599) 0x7f6408f96000-0x7f6408f9a000 (16K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.257603) 0x7f6408f9a000-0x7f6408fb1000 (92K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x4
(00.257607) 0x7f6408fb1000-0x7f64091b0000 (2044K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x17000 reg fp  shmid: 0x4
(00.257611) 0x7f64091b0000-0x7f64091b1000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x16000 reg fp  shmid: 0x4
(00.257615) 0x7f64091b1000-0x7f64091b2000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x17000 reg fp  shmid: 0x4
(00.257619) 0x7f64091b2000-0x7f640934f000 (1652K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x5
(00.257623) 0x7f640934f000-0x7f640954e000 (2044K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x19d000 reg fp  shmid: 0x5
(00.257627) 0x7f640954e000-0x7f640954f000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x19c000 reg fp  shmid: 0x5
(00.257631) 0x7f640954f000-0x7f6409550000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x19d000 reg fp  shmid: 0x5
(00.257635) 0x7f6409550000-0x7f64096ce000 (1528K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x6
(00.257639) 0x7f64096ce000-0x7f64098ce000 (2048K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x17e000 reg fp  shmid: 0x6
(00.257643) 0x7f64098ce000-0x7f64098d8000 (40K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x17e000 reg fp  shmid: 0x6
(00.257647) 0x7f64098d8000-0x7f64098da000 (8K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x188000 reg fp  shmid: 0x6
(00.257651) 0x7f64098da000-0x7f64098de000 (16K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.257655) 0x7f64098de000-0x7f64098e5000 (28K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x7
(00.257659) 0x7f64098e5000-0x7f6409ae4000 (2044K) prot 0 flags 0x2 fdflags 0 st 0x41 off 0x7000 reg fp  shmid: 0x7
(00.257663) 0x7f6409ae4000-0x7f6409ae5000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x6000 reg fp  shmid: 0x7
(00.257667) 0x7f6409ae5000-0x7f6409ae6000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x7000 reg fp  shmid: 0x7
(00.257672) 0x7f6409ae6000-0x7f6409b0d000 (156K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x8
(00.257676) 0x7f6409d00000-0x7f6409d07000 (28K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.257680) 0x7f6409d0d000-0x7f6409d0e000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x27000 reg fp  shmid: 0x8
(00.257684) 0x7f6409d0e000-0x7f6409d0f000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x28000 reg fp  shmid: 0x8
(00.257688) 0x7f6409d0f000-0x7f6409d10000 (4K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.257692) 0x7ffd80525000-0x7ffd80546000 (132K) prot 0x3 flags 0x122 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.257696) 0x7ffd805e4000-0x7ffd805e7000 (12K) prot 0x1 flags 0x22 fdflags 0 st 0x1201 off 0 reg vvar ap  shmid: 0
(00.257700) 0x7ffd805e7000-0x7ffd805e9000 (8K) prot 0x5 flags 0x22 fdflags 0 st 0x209 off 0 reg vdso ap  shmid: 0
(00.257709) 0xffffffffff600000-0xffffffffff601000 (4K) prot 0x5 flags 0x22 fdflags 0 st 0x204 off 0 vsys ap  shmid: 0
(00.257714) Obtaining task auvx ...
(00.257898) Dumping path for -3 fd via self 11 [/home/ubuntu]
(00.257951) Dumping path for -3 fd via self 11 [/]
(00.257964) Dumping task cwd id 0xd root id 0xe
(00.258067) Dumping file-locks
(00.258074) 
(00.258078) Dumping pstree (pid: 1920)
(00.258083) ----------------------------------------
(00.258087) Process: 1920(1920)
(00.258113) ----------------------------------------
(00.258131) cg: Dumping 1 sets
(00.258137) cg:    `- Dumping blkio of /user.slice
(00.258142) cg:    `- Dumping cpu,cpuacct of /user.slice
(00.258146) cg:    `- Dumping cpuset of /
(00.258150) cg:    `- Dumping devices of /user.slice
(00.258154) cg:    `- Dumping freezer of /
(00.258158) cg:    `- Dumping hugetlb of /
(00.258165) cg:    `- Dumping memory of /user.slice
(00.258169) cg:    `- Dumping name=systemd of /user.slice/user-1000.slice/session-1.scope
(00.258172) cg:    `- Dumping net_cls,net_prio of /
(00.258176) cg:    `- Dumping perf_event of /
(00.258180) cg:    `- Dumping pids of /user.slice/user-1000.slice/session-1.scope
(00.258184) cg:    `- Dumping rdma of /
(00.258215) cg: Writing CG image
(00.258313) sk unix: Dumping external sockets
(00.258349) tty: Unpaired slave 0
(00.258362) Writing image inventory (version 1)
(00.258506) Running post-dump scripts
(00.258516) Unfreezing tasks into 2
(00.258522)     Unseizing 1920 into 2
(00.259167) Writing stats
(00.259260) Dumping finished successfully

RESTORE: ubuntu@test:/tmp/test$ sudo cat restore.log (00.000067) Version: 3.6 (gitid 0) (00.000213) cpu: fpu:1 fxsr:1 xsave:1 (00.000260) kernel pid_max=32768 (00.000268) Reading image tree (00.000309) Add mnt ns 5 pid 1920 (00.000320) pstree pid_max=1920 (00.000328) Migrating process tree (GID 1920->2067 SID 1067->1998) (00.000333) Will restore in 0 namespaces (00.000338) NS mask to use 0 (00.000344) Collecting 37/54 (flags 2) (00.000366) Collected [usr/bin/iperf] ID 0x1 (00.000374) Collected [lib/x86_64-linux-gnu/libc-2.27.so] ID 0x2 (00.000384) Collected [lib/x86_64-linux-gnu/libpthread-2.27.so] ID 0x3 (00.000391) Collected [lib/x86_64-linux-gnu/libgcc_s.so.1] ID 0x4 (00.000396) Collected [lib/x86_64-linux-gnu/libm-2.27.so] ID 0x5 (00.000402) Collected [usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25] ID 0x6 (00.000407) Collected [lib/x86_64-linux-gnu/librt-2.27.so] ID 0x7 (00.000413) Collected [lib/x86_64-linux-gnu/ld-2.27.so] ID 0x8 (00.000419) Collected [dev/pts/0] ID 0xa (00.000445) Collected [home/ubuntu] ID 0xd (00.000451) Collected [.] ID 0xe (00.000459)- ... done (00.000464) Collecting 43/59 (flags 0) (00.000472) No remap-fpath.img image (00.000493) - ... done (00.000609) cg: Preparing cgroups yard (cgroups restore mode 0x4) (00.002443) cg: Opening .criu.cgyard.b1V8h8 as cg yard (00.002474) cg: Making controller dir .criu.cgyard.b1V8h8/rdma (rdma) (00.004168) cg: Determined cgroup dir rdma/ already exist (00.004180) cg: Skip restoring properties on cgroup dir rdma/ (00.004201) cg: Making controller dir .criu.cgyard.b1V8h8/cpuset (cpuset) (00.005808) cg: Determined cgroup dir cpuset/ already exist (00.005822) cg: Skip restoring properties on cgroup dir cpuset/ (00.005847) cg: Making controller dir .criu.cgyard.b1V8h8/perf_event (perf_event) (00.005949) cg: Determined cgroup dir perf_event/ already exist (00.005955) cg: Skip restoring properties on cgroup dir perf_event/ (00.005970) cg: Making controller dir .criu.cgyard.b1V8h8/memory (memory) (00.006037) cg: Determined cgroup dir memory/user.slice already exist (00.006042) cg: Skip restoring properties on cgroup dir memory/user.slice (00.006057) cg: Making controller dir .criu.cgyard.b1V8h8/hugetlb (hugetlb) (00.006121) cg: Determined cgroup dir hugetlb/ already exist (00.006126) cg: Skip restoring properties on cgroup dir hugetlb/ (00.006139) cg: Making controller dir .criu.cgyard.b1V8h8/devices (devices) (00.006236) cg: Determined cgroup dir devices/user.slice already exist (00.006242) cg: Skip restoring properties on cgroup dir devices/user.slice (00.006259) cg: Making controller dir .criu.cgyard.b1V8h8/blkio (blkio) (00.006335) cg: Determined cgroup dir blkio/user.slice already exist (00.006341) cg: Skip restoring properties on cgroup dir blkio/user.slice (00.006356) cg: Making controller dir .criu.cgyard.b1V8h8/freezer (freezer) (00.006431) cg: Determined cgroup dir freezer/ already exist (00.006437) cg: Skip restoring properties on cgroup dir freezer/ (00.006453) cg: Making controller dir .criu.cgyard.b1V8h8/net_cls,net_prio (net_cls,net_prio) (00.006554) cg: Determined cgroup dir net_cls,net_prio/ already exist (00.006561) cg: Skip restoring properties on cgroup dir net_cls,net_prio/ (00.006575) cg: Making controller dir .criu.cgyard.b1V8h8/pids (pids) (00.006653) cg: Determined cgroup dir pids/user.slice/user-1000.slice/session-1.scope already exist (00.006659) cg: Skip restoring properties on cgroup dir pids/user.slice/user-1000.slice/session-1.scope (00.006673) cg: Making controller dir .criu.cgyard.b1V8h8/cpu,cpuacct (cpu,cpuacct) (00.006758) cg: Determined cgroup dir cpu,cpuacct/user.slice already exist (00.006765) cg: Skip restoring properties on cgroup dir cpu,cpuacct/user.slice (00.006781) cg: Making controller dir .criu.cgyard.b1V8h8/systemd (none,name=systemd) (00.006866) cg: Determined cgroup dir systemd/user.slice/user-1000.slice/session-1.scope already exist (00.006872) cg: Skip restoring properties on cgroup dir systemd/user.slice/user-1000.slice/session-1.scope (00.006889) Running pre-restore scripts (00.006960) No mountpoints-5.img image (00.006967) mnt: Reading mountpoint images (id 5 pid 1920) (00.007054) Forking task with 1920 pid (flags 0x0) (00.007213) PID: real 1920 virt 1920 (00.007494) 1920: cg: Move into 2 (00.007541) 1920: cg:-> blkio//user.slice/tasks (00.007581) 1920: cg: -> cpu,cpuacct//user.slice/tasks (00.007607) 1920: cg:-> cpuset///tasks (00.007630) 1920: cg: -> devices//user.slice/tasks (00.007647) 1920: cg:-> freezer///tasks (00.007661) 1920: cg: -> hugetlb///tasks (00.007680) 1920: cg:-> memory//user.slice/tasks (00.007696) 1920: cg: -> systemd//user.slice/user-1000.slice/session-1.scope/tasks (00.007720) 1920: cg:-> net_cls,net_prio///tasks (00.007735) 1920: cg: -> perf_event///tasks (00.007750) 1920: cg:-> pids//user.slice/user-1000.slice/session-1.scope/tasks (00.007771) 1920: cg: -> rdma///tasks (00.007816) 1920: Calling restore_sid() for init (00.007854) 1920: Collecting 41/37 (flags 2) (00.007914) 1920: tty: Collected tty ID 0x9 (pts) (00.007941) 1920:- ... done (00.007950) 1920: Collecting 42/51 (flags 0) (00.007977) 1920: No tty-data.img image (00.007984) 1920: - ... done (00.007990) 1920: Restoring namespaces 1920 flags 0x0 (00.007996) 1920: Preparing info about shared resources (00.008007) 1920: No seccomp.img image (00.008014) 1920: Collecting 45/38 (flags 0) (00.008024) 1920: No filelocks.img image (00.008030) 1920:- ... done (00.008036) 1920: Collecting 39/27 (flags 0) (00.008044) 1920: No pipes-data.img image (00.008049) 1920: - ... done (00.008052) 1920: Collecting 40/27 (flags 0) (00.008059) 1920: No fifo-data.img image (00.008062) 1920:- ... done (00.008066) 1920: Collecting 38/60 (flags 0) (00.008072) 1920: No sk-queues.img image (00.008076) 1920: - ... done (00.008136) 1920: Found 52 VMAs in image (00.008147) 1920: vma 0x564751125000 0x56475113b000 (00.008151) 1920: vma 0x56475133b000 0x56475133c000 (00.008155) 1920: vma 0x56475133c000 0x56475133d000 (00.008159) 1920: vma 0x56475292f000 0x564752950000 (00.008163) 1920: vma 0x7f63f8000000 0x7f63f8021000 (00.008166) 1920: vma 0x7f63f8021000 0x7f63fc000000 (00.008170) 1920: vma 0x7f63fc000000 0x7f63fc0be000 (00.008173) 1920: vma 0x7f63fc0be000 0x7f6400000000 (00.008177) 1920: vma 0x7f6400000000 0x7f6400024000 (00.008180) 1920: vma 0x7f6400024000 0x7f6404000000 (00.008184) 1920: vma 0x7f6407187000 0x7f6407188000 (00.008187) 1920: vma 0x7f6407188000 0x7f6407988000 (00.008191) 1920: vma 0x7f6407988000 0x7f6407989000 (00.008194) 1920: vma 0x7f6407989000 0x7f6408189000 (00.008198) 1920: vma 0x7f6408189000 0x7f640818a000 (00.008201) 1920: vma 0x7f640818a000 0x7f640898a000 (00.008204) 1920: vma 0x7f640898a000 0x7f6408b71000 (00.008208) 1920: vma 0x7f6408b71000 0x7f6408d71000 (00.008211) 1920: vma 0x7f6408d71000 0x7f6408d75000 (00.008215) 1920: vma 0x7f6408d75000 0x7f6408d77000 (00.008219) 1920: vma 0x7f6408d77000 0x7f6408d7b000 (00.008222) 1920: vma 0x7f6408d7b000 0x7f6408d95000 (00.008245) 1920: vma 0x7f6408d95000 0x7f6408f94000 (00.008250) 1920: vma 0x7f6408f94000 0x7f6408f95000 (00.008254) 1920: vma 0x7f6408f95000 0x7f6408f96000 (00.008258) 1920: vma 0x7f6408f96000 0x7f6408f9a000 (00.008266) 1920: vma 0x7f6408f9a000 0x7f6408fb1000 (00.008270) 1920: vma 0x7f6408fb1000 0x7f64091b0000 (00.008275) 1920: vma 0x7f64091b0000 0x7f64091b1000 (00.008279) 1920: vma 0x7f64091b1000 0x7f64091b2000 (00.008283) 1920: vma 0x7f64091b2000 0x7f640934f000 (00.008287) 1920: vma 0x7f640934f000 0x7f640954e000 (00.008291) 1920: vma 0x7f640954e000 0x7f640954f000 (00.008295) 1920: vma 0x7f640954f000 0x7f6409550000 (00.008299) 1920: vma 0x7f6409550000 0x7f64096ce000 (00.008303) 1920: vma 0x7f64096ce000 0x7f64098ce000 (00.008307) 1920: vma 0x7f64098ce000 0x7f64098d8000 (00.008311) 1920: vma 0x7f64098d8000 0x7f64098da000 (00.008315) 1920: vma 0x7f64098da000 0x7f64098de000 (00.008319) 1920: vma 0x7f64098de000 0x7f64098e5000 (00.008324) 1920: vma 0x7f64098e5000 0x7f6409ae4000 (00.008328) 1920: vma 0x7f6409ae4000 0x7f6409ae5000 (00.008332) 1920: vma 0x7f6409ae5000 0x7f6409ae6000 (00.008346) 1920: vma 0x7f6409ae6000 0x7f6409b0d000 (00.008351) 1920: vma 0x7f6409d00000 0x7f6409d07000 (00.008355) 1920: vma 0x7f6409d0d000 0x7f6409d0e000 (00.008359) 1920: vma 0x7f6409d0e000 0x7f6409d0f000 (00.008369) 1920: vma 0x7f6409d0f000 0x7f6409d10000 (00.008374) 1920: vma 0x7ffd80525000 0x7ffd80546000 (00.008378) 1920: vma 0x7ffd805e4000 0x7ffd805e7000 (00.008382) 1920: vma 0x7ffd805e7000 0x7ffd805e9000 (00.008386) 1920: vma 0xffffffffff600000 0xffffffffff601000 (00.008404) 1920: Collect fdinfo pid=1920 fd=0 id=0x9 (00.008411) 1920: Collect fdinfo pid=1920 fd=1 id=0x9 (00.008417) 1920: Collect fdinfo pid=1920 fd=2 id=0x9 (00.008422) 1920: Collect fdinfo pid=1920 fd=3 id=0xb (00.008427) 1920: Collect fdinfo pid=1920 fd=4 id=0xc (00.008535) 1920: Preparing SCMs (00.008545) 1920: tty: Unpaired slave 0 (00.008549) 1920: tty: ctl tty leader 0x9 (00.008553) 1920: tty: Inherit terminal for id 0x9 (00.008557) 1920: tty: head driver pts id 0x9 index 0 (master 0 sid 1067 pgrp 1067 inherit 1) (00.008562) 1920: tty: Found orphan slave fake leader (0x9) (00.008565) 1920: File descs: (00.008569) 1920:- type 1 ID 0x1 (00.008572) 1920: - type 1 ID 0x2 (00.008575) 1920:- type 1 ID 0x3 (00.008578) 1920: - type 1 ID 0x4 (00.008582) 1920:- type 1 ID 0x5 (00.008585) 1920: - type 1 ID 0x6 (00.008588) 1920:- type 1 ID 0x7 (00.008591) 1920: - type 1 ID 0x8 (00.008594) 1920:- type 11 ID 0x9 (00.008597) 1920: - FD 0 pid 1920 (00.008601) 1920:- FD 1 pid 1920 (00.008604) 1920: - FD 2 pid 1920 (00.008607) 1920:- type 1 ID 0xa (00.008610) 1920: - type 4 ID 0xb (00.008614) 1920:- FD 3 pid 1920 (00.008617) 1920: - type 4 ID 0xc (00.008620) 1920:- FD 4 pid 1920 (00.008623) 1920: - type 1 ID 0xd (00.008626) 1920:- type 1 ID 0xe (00.008673) 1920: Opened local page read 1 (parent 0) (00.008683) 1920: Enqueue page-read (00.008689) 1920: Enqueue page-read (00.008692) 1920: Enqueue page-read (00.008696) 1920: Enqueue page-read (00.008699) 1920: Enqueue page-read (00.008702) 1920: Enqueue page-read (00.008706) 1920: Enqueue page-read (00.008709) 1920: Enqueue page-read (00.008712) 1920: Enqueue page-read (00.008715) 1920: Enqueue page-read (00.008718) 1920: Enqueue page-read (00.008722) 1920: Enqueue page-read (00.008725) 1920: Enqueue page-read (00.008728) 1920: Enqueue page-read (00.008731) 1920: Enqueue page-read (00.008734) 1920: Enqueue page-read (00.008737) 1920: Enqueue page-read (00.008740) 1920: Enqueue page-read (00.008743) 1920: Enqueue page-read (00.008747) 1920: Enqueue page-read (00.008750) 1920: Enqueue page-read (00.008753) 1920: Enqueue page-read (00.008756) 1920: Enqueue page-read (00.008759) 1920: Enqueue page-read (00.008762) 1920: Enqueue page-read (00.008765) 1920: Enqueue page-read (00.008768) 1920: Enqueue page-read (00.008771) 1920: Enqueue page-read (00.008775) 1920: Enqueue page-read (00.008792) 1920: Enqueue page-read (00.008796) 1920: Enqueue page-read (00.008800) 1920: Enqueue page-read (00.008804) 1920: Enqueue page-read (00.008807) 1920: Enqueue page-read (00.008811) 1920: Enqueue page-read (00.008819) 1920: nr_restored_pages: 109 (00.008824) 1920: nr_shared_pages: 0 (00.008828) 1920: nr_droped_pages: 0 (00.008831) 1920: nr_lazy: 0 (00.008844) 1920: Shrunk premap area to 0x7f2a181f9000(0) (00.008850) 1920: Restore on-core sigactions for 1920 (00.008892) 1920: Restoring children in alien sessions: (00.008896) 1920: Restoring children in our session: (00.008900) 1920: Restoring 1920 to 2067 pgid (00.008923) 1920: Restoring resources (00.008939) 1920: Opening fdinfo-s (00.008946) 1920: tty: open driver pts id 0x9 index 0 (master 0 sid 1067 pgrp 1067 inherit 1) (00.008953) 1920: tty: Migrated slave peer 0x9 -> to fd 0 (00.008990) 1920: tty: Restore inherited group 2067 (00.009003) 1920: Create fd for 0 (00.009009) 1920: Going to dup 0 into 1 (00.009027) 1920: Going to dup 0 into 2 (00.009036) 1920: Receive fd for 1 (00.009043) 1920: Receive fd for 2 (00.009057) 1920: Restore: family 10 type 1 proto 6 port 5001 state 10 src_addr :: (00.009094) 1920: 3 restore sndbuf 16384 rcv buf 87380 (00.009104) 1920: restore priority 0 for socket (00.009109) 1920: restore rcvlowat 1 for socket (00.009113) 1920: restore mark 0 for socket (00.009121) 1920: Create fd for 3 (00.009126) 1920: Restore: family 10 type 1 proto 6 port 5001 state 1 src_addr 2001:db9:3::5 (00.009138) 1920: Restoring TCP connection (00.009144) 1920: Restoring TCP connection id c ino 5741 (00.009169) 1920: Debug: Setting 1 queue seq to 2202546339 (00.009176) 1920: Debug: Setting 2 queue seq to 2277725101 (00.009197) 1920: Debug: Restoring TCP options (00.009202) 1920: Debug: Will turn SAK on (00.009205) 1920: Debug: Will set snd_wscale to 7 (00.009209) 1920: Debug: Will set rcv_wscale to 7 (00.009212) 1920: Debug: Will turn timestamps on (00.009215) 1920: Debug: Will set mss clamp to 1390 (00.009229) 1920: 4 restore sndbuf 46080 rcv buf 2258168 (00.009236) 1920: restore priority 0 for socket (00.009240) 1920: restore rcvlowat 1 for socket (00.009244) 1920: restore mark 0 for socket (00.009251) 1920: Create fd for 4 (00.009255) 1920: Schedule 4 socket for repair off (00.009266) 1920: Opening 0x00564751125000-0x0056475113b000 0000000000000000 (41) vma (00.009293) 1920: Opening 0x0056475133b000-0x0056475133c000 0x00000000016000 (41) vma (00.009299) 1920: Opening 0x0056475133c000-0x0056475133d000 0x00000000017000 (41) vma (00.009303) 1920: Opening 0x007f640898a000-0x007f6408b71000 0000000000000000 (20000041) vma (00.009312) 1920: Opening 0x007f6408b71000-0x007f6408d71000 0x000000001e7000 (41) vma (00.009316) 1920: Opening 0x007f6408d71000-0x007f6408d75000 0x000000001e7000 (41) vma (00.009320) 1920: Opening 0x007f6408d75000-0x007f6408d77000 0x000000001eb000 (41) vma (00.009324) 1920: Opening 0x007f6408d7b000-0x007f6408d95000 0000000000000000 (20000041) vma (00.009332) 1920: Opening 0x007f6408d95000-0x007f6408f94000 0x0000000001a000 (41) vma (00.009336) 1920: Opening 0x007f6408f94000-0x007f6408f95000 0x00000000019000 (41) vma (00.009340) 1920: Opening 0x007f6408f95000-0x007f6408f96000 0x0000000001a000 (41) vma (00.009343) 1920: Opening 0x007f6408f9a000-0x007f6408fb1000 0000000000000000 (20000041) vma (00.009352) 1920: Opening 0x007f6408fb1000-0x007f64091b0000 0x00000000017000 (41) vma (00.009371) 1920: Opening 0x007f64091b0000-0x007f64091b1000 0x00000000016000 (41) vma (00.009376) 1920: Opening 0x007f64091b1000-0x007f64091b2000 0x00000000017000 (41) vma (00.009380) 1920: Opening 0x007f64091b2000-0x007f640934f000 0000000000000000 (20000041) vma (00.009389) 1920: Opening 0x007f640934f000-0x007f640954e000 0x0000000019d000 (41) vma (00.009394) 1920: Opening 0x007f640954e000-0x007f640954f000 0x0000000019c000 (41) vma (00.009399) 1920: Opening 0x007f640954f000-0x007f6409550000 0x0000000019d000 (41) vma (00.009403) 1920: Opening 0x007f6409550000-0x007f64096ce000 0000000000000000 (20000041) vma (00.009412) 1920: Opening 0x007f64096ce000-0x007f64098ce000 0x0000000017e000 (41) vma (00.009417) 1920: Opening 0x007f64098ce000-0x007f64098d8000 0x0000000017e000 (41) vma (00.009421) 1920: Opening 0x007f64098d8000-0x007f64098da000 0x00000000188000 (41) vma (00.009426) 1920: Opening 0x007f64098de000-0x007f64098e5000 0000000000000000 (20000041) vma (00.009434) 1920: Opening 0x007f64098e5000-0x007f6409ae4000 0x00000000007000 (41) vma (00.009439) 1920: Opening 0x007f6409ae4000-0x007f6409ae5000 0x00000000006000 (41) vma (00.009443) 1920: Opening 0x007f6409ae5000-0x007f6409ae6000 0x00000000007000 (41) vma (00.009448) 1920: Opening 0x007f6409ae6000-0x007f6409b0d000 0000000000000000 (20000041) vma (00.009456) 1920: Opening 0x007f6409d0d000-0x007f6409d0e000 0x00000000027000 (41) vma (00.009461) 1920: Opening 0x007f6409d0e000-0x007f6409d0f000 0x00000000028000 (41) vma (00.009642) 1920: `- render 25 iovs (0x564751125000:4096...) (00.013003) 1920: Restore via sigreturn (00.013135) 1920: Parsed 557a9b1e2000-557a9b2f3000 vma (00.013144) 1920: Parsed 557a9b4f3000-557a9b510000 vma (00.013149) 1920: Parsed 557a9b4f3000-557a9b515000 vma (00.013153) 1920: Parsed 557a9b4f3000-557a9b525000 vma (00.013158) 1920: Parsed 557a9c2f2000-557a9c313000 vma (00.013163) 1920: Parsed 7f2a26be8000-7f2a26d85000 vma (00.013167) 1920: Parsed 7f2a26be8000-7f2a26f84000 vma (00.013171) 1920: Parsed 7f2a26be8000-7f2a26f85000 vma (00.013175) 1920: Parsed 7f2a26be8000-7f2a26f86000 vma (00.013180) 1920: Parsed 7f2a26be8000-7f2a2716d000 vma (00.013184) 1920: Parsed 7f2a26be8000-7f2a2736d000 vma (00.013188) 1920: Parsed 7f2a26be8000-7f2a27371000 vma (00.013192) 1920: Parsed 7f2a26be8000-7f2a27373000 vma (00.013197) 1920: Parsed 7f2a26be8000-7f2a27377000 vma (00.013201) 1920: Parsed 7f2a26be8000-7f2a2738e000 vma (00.013205) 1920: Parsed 7f2a26be8000-7f2a2758d000 vma (00.013209) 1920: Parsed 7f2a26be8000-7f2a2758e000 vma (00.013213) 1920: Parsed 7f2a26be8000-7f2a2758f000 vma (00.013218) 1920: Parsed 7f2a26be8000-7f2a27591000 vma (00.013222) 1920: Parsed 7f2a26be8000-7f2a275af000 vma (00.013226) 1920: Parsed 7f2a26be8000-7f2a277ae000 vma (00.013230) 1920: Parsed 7f2a26be8000-7f2a277b0000 vma (00.013234) 1920: Parsed 7f2a26be8000-7f2a277b1000 vma (00.013238) 1920: Parsed 7f2a26be8000-7f2a277b4000 vma (00.013242) 1920: Parsed 7f2a26be8000-7f2a279b3000 vma (00.013247) 1920: Parsed 7f2a26be8000-7f2a279b4000 vma (00.013251) 1920: Parsed 7f2a26be8000-7f2a279b5000 vma (00.013255) 1920: Parsed 7f2a26be8000-7f2a279bd000 vma (00.013262) 1920: Parsed 7f2a26be8000-7f2a27bbc000 vma (00.013269) 1920: Parsed 7f2a26be8000-7f2a27bbd000 vma (00.013275) 1920: Parsed 7f2a26be8000-7f2a27bbe000 vma (00.013280) 1920: Parsed 7f2a26be8000-7f2a27bd8000 vma (00.013284) 1920: Parsed 7f2a26be8000-7f2a27dd7000 vma (00.013289) 1920: Parsed 7f2a26be8000-7f2a27dd8000 vma (00.013293) 1920: Parsed 7f2a26be8000-7f2a27dd9000 vma (00.013297) 1920: Parsed 7f2a26be8000-7f2a27ddd000 vma (00.013301) 1920: Parsed 7f2a26be8000-7f2a27e04000 vma (00.013306) 1920: Parsed 7f2a27fdd000-7f2a27fdf000 vma (00.013310) 1920: Parsed 7f2a27fdd000-7f2a27fe7000 vma (00.013314) 1920: Parsed 7f2a27fdd000-7f2a27ffe000 vma (00.013319) 1920: Parsed 7f2a27fff000-7f2a28000000 vma (00.013345) 1920: Parsed 7f2a27fff000-7f2a28002000 vma (00.013350) 1920: Parsed 7f2a27fff000-7f2a28004000 vma (00.013354) 1920: Parsed 7f2a27fff000-7f2a28005000 vma (00.013358) 1920: Parsed 7f2a27fff000-7f2a28006000 vma (00.013363) 1920: Parsed 7f2a27fff000-7f2a28007000 vma (00.013368) 1920: Parsed 7ffc3458c000-7ffc345ad000 vma (00.013372) 1920: Parsed 7ffc345c9000-7ffc345cc000 vma (00.013377) 1920: Parsed 7ffc345c9000-7ffc345ce000 vma (00.013381) 1920: Parsed ffffffffff600000-ffffffffff601000 vma (00.013398) 1920: 4 threads require 192K of memory (00.013404) 1920: Found bootstrap VMA hint at: 0x10000 (needs ~212K) (00.013577) 1920: call mremap(0x7f2a27fdd000, 8192, 8192, MAYMOVE | FIXED, 0x3c000) (00.013594) 1920: call mremap(0x7f2a28000000, 8192, 8192, MAYMOVE | FIXED, 0x3e000) (00.013615) 1920: xsave runtime structure (00.013620) 1920: ----------------------- (00.013625) 1920: cwd:37f swd:0 twd:0 fop:0 mxcsr:1f80 mxcsr_mask:ffff (00.013630) 1920: magic1:46505853 extended_size:344 xstate_bv:7 xstate_size:340 (00.013792) 1920: xstate_bv: 7 (00.013796) 1920: ----------------------- (00.013800) 1920: Thread 0 stack 0x18080 rt_sigframe 0x20080 (00.013805) 1920: xsave runtime structure (00.013809) 1920: ----------------------- (00.013812) 1920: cwd:37f swd:0 twd:0 fop:0 mxcsr:1f80 mxcsr_mask:ffff (00.013815) 1920: magic1:46505853 extended_size:344 xstate_bv:7 xstate_size:340 (00.013819) 1920: xstate_bv: 7 (00.013822) 1920: ----------------------- (00.013829) 1920: Thread 1 stack 0x20bc0 rt_sigframe 0x28bc0 (00.013833) 1920: xsave runtime structure (00.013836) 1920: ----------------------- (00.013847) 1920: cwd:37f swd:0 twd:0 fop:0 mxcsr:1fa0 mxcsr_mask:ffff (00.013851) 1920: magic1:46505853 extended_size:344 xstate_bv:7 xstate_size:340 (00.013855) 1920: xstate_bv: 7 (00.013858) 1920: ----------------------- (00.013863) 1920: Thread 2 stack 0x29700 rt_sigframe 0x31700 (00.013867) 1920: xsave runtime structure (00.013870) 1920: ----------------------- (00.013873) 1920: cwd:37f swd:0 twd:0 fop:0 mxcsr:1f80 mxcsr_mask:ffff (00.013877) 1920: magic1:46505853 extended_size:344 xstate_bv:7 xstate_size:340 (00.013880) 1920: xstate_bv: 7 (00.013883) 1920: ----------------------- (00.013888) 1920: Thread 3 stack 0x32240 rt_sigframe 0x3a240 (00.013918) 1920: Going to chroot into /proc/self/fd/17 (00.013944) 1920: Restoring umask to 2 (00.013967) 1920: task_args: 0x3b000 task_args->pid: 1920 task_args->nr_threads: 4 task_args->clone_restore_fn: 0x10d80 task_args->thread_args: 0x3b580 (00.013985)pie: 1920: Switched to the restorer 1920 (00.014118)pie: 1920: Mapping native vDSO at 0x40000 (00.014131)pie: 1920: mmap(0x564751125000 -> 0x56475113b000, 0x7 0x12 5) (00.014142)pie: 1920: mmap(0x56475133b000 -> 0x56475133c000, 0x3 0x12 5) (00.014149)pie: 1920: mmap(0x56475133c000 -> 0x56475133d000, 0x3 0x12 5) (00.014157)pie: 1920: mmap(0x56475292f000 -> 0x564752950000, 0x3 0x32 -1) (00.014164)pie: 1920: mmap(0x7f63f8000000 -> 0x7f63f8021000, 0x3 0x4032 -1)

(00.014171)pie: 1920: mmap(0x7f63f8021000 -> 0x7f63fc000000, 0x2 0x4032 -1)

(00.014177)pie: 1920: mmap(0x7f63fc000000 -> 0x7f63fc0be000, 0x3 0x4032 -1)

(00.014183)pie: 1920: mmap(0x7f63fc0be000 -> 0x7f6400000000, 0x2 0x4032 -1)

(00.014190)pie: 1920: mmap(0x7f6400000000 -> 0x7f6400024000, 0x3 0x4032 -1)

(00.014196)pie: 1920: mmap(0x7f6400024000 -> 0x7f6404000000, 0x0 0x4032 -1)

(00.014202)pie: 1920: mmap(0x7f6407187000 -> 0x7f6407188000, 0x0 0x32 -1) (00.014208)pie: 1920: mmap(0x7f6407188000 -> 0x7f6407988000, 0x3 0x32 -1) (00.014215)pie: 1920: mmap(0x7f6407988000 -> 0x7f6407989000, 0x0 0x32 -1) (00.014221)pie: 1920: mmap(0x7f6407989000 -> 0x7f6408189000, 0x3 0x32 -1) (00.014227)pie: 1920: mmap(0x7f6408189000 -> 0x7f640818a000, 0x0 0x32 -1) (00.014233)pie: 1920: mmap(0x7f640818a000 -> 0x7f640898a000, 0x3 0x32 -1) (00.014239)pie: 1920: mmap(0x7f640898a000 -> 0x7f6408b71000, 0x5 0x12 6) (00.014247)pie: 1920: mmap(0x7f6408b71000 -> 0x7f6408d71000, 0x2 0x12 6) (00.014254)pie: 1920: mmap(0x7f6408d71000 -> 0x7f6408d75000, 0x3 0x12 6) (00.014261)pie: 1920: mmap(0x7f6408d75000 -> 0x7f6408d77000, 0x3 0x12 6) (00.014268)pie: 1920: mmap(0x7f6408d77000 -> 0x7f6408d7b000, 0x3 0x32 -1) (00.014274)pie: 1920: mmap(0x7f6408d7b000 -> 0x7f6408d95000, 0x5 0x12 7) (00.014282)pie: 1920: mmap(0x7f6408d95000 -> 0x7f6408f94000, 0x2 0x12 7) (00.014289)pie: 1920: mmap(0x7f6408f94000 -> 0x7f6408f95000, 0x3 0x12 7) (00.014296)pie: 1920: mmap(0x7f6408f95000 -> 0x7f6408f96000, 0x3 0x12 7) (00.014303)pie: 1920: mmap(0x7f6408f96000 -> 0x7f6408f9a000, 0x3 0x32 -1) (00.014309)pie: 1920: mmap(0x7f6408f9a000 -> 0x7f6408fb1000, 0x5 0x12 8) (00.014316)pie: 1920: mmap(0x7f6408fb1000 -> 0x7f64091b0000, 0x2 0x12 8) (00.014323)pie: 1920: mmap(0x7f64091b0000 -> 0x7f64091b1000, 0x3 0x12 8) (00.014329)pie: 1920: mmap(0x7f64091b1000 -> 0x7f64091b2000, 0x3 0x12 8) (00.014336)pie: 1920: mmap(0x7f64091b2000 -> 0x7f640934f000, 0x5 0x12 9) (00.014343)pie: 1920: mmap(0x7f640934f000 -> 0x7f640954e000, 0x2 0x12 9) (00.014350)pie: 1920: mmap(0x7f640954e000 -> 0x7f640954f000, 0x3 0x12 9) (00.014357)pie: 1920: mmap(0x7f640954f000 -> 0x7f6409550000, 0x3 0x12 9) (00.014364)pie: 1920: mmap(0x7f6409550000 -> 0x7f64096ce000, 0x5 0x12 10) (00.014371)pie: 1920: mmap(0x7f64096ce000 -> 0x7f64098ce000, 0x2 0x12 10) (00.014377)pie: 1920: mmap(0x7f64098ce000 -> 0x7f64098d8000, 0x3 0x12 10) (00.014384)pie: 1920: mmap(0x7f64098d8000 -> 0x7f64098da000, 0x3 0x12 10) (00.014391)pie: 1920: mmap(0x7f64098da000 -> 0x7f64098de000, 0x3 0x32 -1) (00.014397)pie: 1920: mmap(0x7f64098de000 -> 0x7f64098e5000, 0x5 0x12 11) (00.014404)pie: 1920: mmap(0x7f64098e5000 -> 0x7f6409ae4000, 0x2 0x12 11) (00.014420)pie: 1920: mmap(0x7f6409ae4000 -> 0x7f6409ae5000, 0x3 0x12 11) (00.014428)pie: 1920: mmap(0x7f6409ae5000 -> 0x7f6409ae6000, 0x3 0x12 11) (00.014435)pie: 1920: mmap(0x7f6409ae6000 -> 0x7f6409b0d000, 0x5 0x12 12) (00.014443)pie: 1920: mmap(0x7f6409d00000 -> 0x7f6409d07000, 0x3 0x32 -1) (00.014449)pie: 1920: mmap(0x7f6409d0d000 -> 0x7f6409d0e000, 0x3 0x12 12) (00.014456)pie: 1920: mmap(0x7f6409d0e000 -> 0x7f6409d0f000, 0x3 0x12 12) (00.014463)pie: 1920: mmap(0x7f6409d0f000 -> 0x7f6409d10000, 0x3 0x32 -1) (00.014470)pie: 1920: mmap(0x7ffd80525000 -> 0x7ffd80546000, 0x3 0x132 -1) (00.014476)pie: 1920: mmap(0x7ffd805e4000 -> 0x7ffd805e7000, 0x3 0x32 -1) (00.014512)pie: 1920: mmap(0x7ffd805e7000 -> 0x7ffd805e9000, 0x7 0x32 -1) (00.014522)pie: 1920: Preadv 0x564751125000:4096... (25 iovs) (00.015044)pie: 1920: - returned 446464 (00.015052)pie: 1920:- skip pagemap (00.015057)pie: 1920: - skip pagemap (00.015061)pie: 1920:- skip pagemap (00.015065)pie: 1920: - skip pagemap (00.015069)pie: 1920:- skip pagemap (00.015074)pie: 1920: - skip pagemap (00.015078)pie: 1920:- skip pagemap (00.015082)pie: 1920: - skip pagemap (00.015086)pie: 1920:- skip pagemap (00.015090)pie: 1920: - skip pagemap (00.015094)pie: 1920:- skip pagemap (00.015099)pie: 1920: - skip pagemap (00.015103)pie: 1920:- skip pagemap (00.015107)pie: 1920: - skip pagemap (00.015111)pie: 1920:- skip pagemap (00.015115)pie: 1920: - skip pagemap (00.015120)pie: 1920:- skip pagemap (00.015124)pie: 1920: - skip pagemap (00.015128)pie: 1920:- skip pagemap (00.015132)pie: 1920: - skip pagemap (00.015136)pie: 1920:- skip pagemap (00.015140)pie: 1920: - skip pagemap (00.015144)pie: 1920:- skip pagemap (00.015149)pie: 1920: - skip pagemap (00.015153)pie: 1920:- skip pagemap (00.015162)pie: 1920: vdso: Parsing at 0x7ffd805e7000 0x7ffd805e9000 (00.015167)pie: 1920: vdso: PT_LOAD p_vaddr: 0x0 (00.015172)pie: 1920: vdso: DT_HASH: 0x120 (00.015176)pie: 1920: vdso: DT_STRTAB: 0x298 (00.015180)pie: 1920: vdso: DT_SYMTAB: 0x1a8 (00.015185)pie: 1920: vdso: DT_STRSZ: 0x5e (00.015189)pie: 1920: vdso: DT_SYMENT: 0x18 (00.015194)pie: 1920: vdso: nbucket 0x3 nchain 0xa bucket 0x7ffd805e7128 chai> (00.015194)pie: 1920: n 0x7ffd805e7134 (00.015203)pie: 1920: vdso: image [vdso] 0x7ffd805e7000-0x7ffd805e9000 [vvar]> (00.015203)pie: 1920: 0x7ffd805e4000-0x7ffd805e7000 (00.015211)pie: 1920: vdso: Runtime vdso/vvar matches dumpee, remap inplace (00.015227)pie: 1920: vdso: Remap rt-vdso 0x43000 -> 0x7ffd805e7000 (00.015240)pie: 1920: vdso: Remap rt-vvar 0x40000 -> 0x7ffd805e4000 (00.015328)pie: 1920: Restoring scheduler params 0.0.0 (00.015426)pie: 1920: 1920: Restored (00.015464)pie: 1922: Restoring scheduler params 0.0.0 (00.015525)pie: 1922: 1922: Restored (00.015542)pie: 1921: Restoring scheduler params 0.0.0 (00.015563)pie: 1921: 1921: Restored (00.017741)pie: 1925: Restoring scheduler params 0.0.0 (00.017804)pie: 1925: 1925: Restored (00.021289) Running post-restore scripts (00.021307) Unlock network (00.021327) Running iptables [ip6tables -w -t filter -D INPUT --protocol tcp -m mark ! --mark 0xC114 --source 2001:db9:3::b --sport 47392 --destination 2001:db9:3::5 --dport 5001 -j DROP] (00.024537) Unlocked 2001:db9:3::5:5001 - 2001:db9:3::b:47392 connection (00.024568) Running iptables [ip6tables -w -t filter -D OUTPUT --protocol tcp -m mark ! --mark 0xC114 --source 2001:db9:3::5 --sport 5001 --destination 2001:db9:3::b --dport 47392 -j DROP] (00.028229) Unlocked 2001:db9:3::b:47392 - 2001:db9:3::5:5001 connection (00.028476)pie: 1920: pie: Turning repair off for 4 (reuse 1) (00.028567)pie: 1920: restoring seccomp mode 0 for 1920 (00.028665) Force no-breakpoints restore (00.028689) Force no-breakpoints restore (00.028706) Force no-breakpoints restore (00.028762) Force no-breakpoints restore (00.028792) Restore finished successfully. Resuming tasks. (00.028807) 1920 was trapped (00.028817) 1920 (native) is going to execute the syscall 202, required is 15 (00.028839) 1925 was trapped (00.028846) 1925 (native) is going to execute the syscall 202, required is 15 (00.028862) 1922 was trapped (00.028870) 1922 (native) is going to execute the syscall 202, required is 15 (00.028878) 1925 was trapped (00.028884) 1925 (native) is going to execute the syscall 202, required is 15 (00.028894) 1921 was trapped (00.028901) 1921 (native) is going to execute the syscall 202, required is 15 (00.028909) 1925 was trapped (00.028915) 1925 (native) is going to execute the syscall 202, required is 15 (00.028939) 1920 was trapped (00.028946) 1920 (native) is going to execute the syscall 202, required is 15 (00.028955) 1925 was trapped (00.028961) 1925 (native) is going to execute the syscall 202, required is 15 (00.028986) 1920 was trapped (00.028995) 1920 (native) is going to execute the syscall 202, required is 15 (00.029003) 1925 was trapped (00.029009) 1925 (native) is going to execute the syscall 15, required is 15 (00.029041) 1925 was stopped (00.029049) 1922 was trapped (00.029055) 1922 (native) is going to execute the syscall 202, required is 15 (00.029063) 1921 was trapped (00.029069) 1921 (native) is going to execute the syscall 202, required is 15 (00.029083) 1921 was trapped (00.029091) 1921 (native) is going to execute the syscall 202, required is 15 (00.029108) 1920 was trapped (00.029114) 1920 (native) is going to execute the syscall 202, required is 15 (00.029122) 1921 was trapped (00.029128) 1921 (native) is going to execute the syscall 202, required is 15 (00.029141) 1920 was trapped (00.029161) 1920 (native) is going to execute the syscall 202, required is 15 (00.029176) 1921 was trapped (00.029181) 1921 (native) is going to execute the syscall 15, required is 15 (00.029194) 1921 was stopped (00.029204) 1922 was trapped (00.029209) 1922 (native) is going to execute the syscall 202, required is 15 (00.029223) 1920 was trapped (00.029229) 1920 (native) is going to execute the syscall 202, required is 15 (00.029236) 1922 was trapped (00.029240) 1922 (native) is going to execute the syscall 202, required is 15 (00.029252) 1920 was trapped (00.029258) 1920 (native) is going to execute the syscall 3, required is 15 (00.029271) 1920 was trapped (00.029277) 1920 (native) is going to execute the syscall 3, required is 15 (00.029288) 1920 was trapped (00.029293) 1920 (native) is going to execute the syscall 3, required is 15 (00.029304) 1920 was trapped (00.029310) 1920 (native) is going to execute the syscall 3, required is 15 (00.029322) 1920 was trapped (00.029327) 1920 (native) is going to execute the syscall 11, required is 15 (00.029352) 1920 was trapped (00.029359) 1920 (native) is going to execute the syscall 11, required is 15 (00.029372) 1920 was trapped (00.029378) 1920 (native) is going to execute the syscall 15, required is 15 (00.029392) 1920 was stopped (00.029403) 1922 was trapped (00.029408) 1922 (native) is going to execute the syscall 15, required is 15 (00.029436) 1922 was stopped (00.029461) 1920 was trapped (00.029468) 1920 (native) is going to execute the syscall 11, required is 11 (00.029524) 1920 was stopped (00.029538) Running pre-resume scripts (00.045852) Writing stats (00.045932) Running post-resume scripts `

rst0git commented 5 years ago

@haha150 Thank you for sharing the logs. From there I can see that your CRIU version is 3.6. However, there are a few patches for IPv6 checkpoint/restore support merged after this release.

Could you try to run the iperf test with the latest version? It can be installed as follows:

git clone https://github.com/checkpoint-restore/criu/
cd criu && git checkout master
make && make install

Then, you use the newer version with $ /usr/local/sbin/criu (instead of $ criu).

haha150 commented 5 years ago

Hi,

I am trying, but currenty getting compilation errors for CRIU:

In file included from images/google/protobuf/descriptor.pb-c.c:9:0:
images/google/protobuf/descriptor.pb-c.h:7:10: fatal error: protobuf-c/protobuf-c.h: No such file or directory
 #include <protobuf-c/protobuf-c.h>
haha150 commented 5 years ago

Hi,

I tried and it seems to work (i tried twice), the session is restored successfully. So i now want to try with LXC.

haha150 commented 5 years ago

Hi,

I tried with running the same thing, iperf server inside LXC but when i dump the container the tcp connection the the iperf server dies (still ipv6). Any ideas?

in combination with LXC it does not work with ipv6

rst0git commented 5 years ago

If checkpoint/restore of iperf server outside a container works the issue you are seeing could be related other processes running in the container.

Could you try to create a stateful snapshot of your LXD container and upload/share the logs?

lxc snapshot <container> <snapshot name> --stateful

If LXD is installed from snap, the logs should be stored in /var/snap/lxd/common/lxd/logs/<container>/snapshot_dump_<timestamp>.log

haha150 commented 5 years ago

Here you go sir:

Incase you wonder about the iptables:

zfs@zfs-VirtualBox:~$ iptables --version
iptables v1.8.2 (legacy)

I should also probably mention that the tcp connection to the iperf server inside the container breaks after doing the snapshot (broken pipe)

root@zfs-VirtualBox:/var/snap/lxd/common/lxd/logs/test# cat snapshot_dump_2019-04-05T00:48:25+02:00.log
(00.000000) Will dump/restore TCP connections
(00.000000) Will skip in-flight TCP connections
(00.000000) Will allow link remaps on FS
(00.000036) Warn  (criu/log.c:203): The early log isn't empty
(00.000042) Version: 3.11 (gitid v3.11-203-ge86c2e9)
(00.000045) Running on zfs-VirtualBox Linux 4.15.0-47-generic #50-Ubuntu SMP Wed Mar 13 10:44:52 UTC 2019 x86_64
(00.000051) File /run/criu.kdat does not exist
(00.000061) sockets: Probing sock diag modules
(00.037477) sockets: Done probing
(00.039179) Pagemap is fully functional
(00.039202) Found anon-shmem device at 5
(00.039207) Reset 3267's dirty tracking
(00.039237)  ... done
(00.039255) Dirty track supported on kernel
(00.039288) Found task size of 7ffffffff000
(00.041993) Warn  (criu/net.c:2937): Unable to get tun network namespace
(00.042675) Restoring netdev veth idx 10
(00.045032) Dumping netns links
(00.045053)     LD: Got link 1, type 772
(00.045057)     LD: Got link 10, type 1
(00.045717) vdso: Parsing at 7ffea231e000 7ffea2320000
(00.045726) vdso: PT_LOAD p_vaddr: 0
(00.045729) vdso: DT_HASH: 120
(00.045732) vdso: DT_STRTAB: 298
(00.045734) vdso: DT_SYMTAB: 1a8
(00.045736) vdso: DT_STRSZ: 5e
(00.045738) vdso: DT_SYMENT: 18
(00.045741) vdso: nbucket 3 nchain a bucket 7ffea231e128 chain 7ffea231e134
(00.045745) vdso: rt [vdso] 7ffea231e000-7ffea2320000 [vvar] 7ffea231b000-7ffea231e000
(00.045989) vdso: Parsing at 7f125b9a4000 7f125b9a6000
(00.045997) vdso: PT_LOAD p_vaddr: 0
(00.046000) vdso: DT_HASH: b4
(00.046002) vdso: DT_STRTAB: 1c0
(00.046004) vdso: DT_SYMTAB: 130
(00.046007) vdso: DT_STRSZ: 95
(00.046009) vdso: DT_SYMENT: 10
(00.046011) vdso: nbucket 3 nchain 9 bucket 7f125b9a40bc chain 7f125b9a40c8
(00.046015) vdso: compat [vdso] 7ffea2321000-7ffea2323000 [vvar] 7ffea231e000-7ffea2321000
(00.046240) cpu: x86_family 6 x86_vendor_id GenuineIntel x86_model_id Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz
(00.046251) cpu: fpu: xfeatures_mask 0x5 xsave_size 832 xsave_size_max 832 xsaves_size 1088
(00.046255) cpu: fpu: x87 floating point registers     xstate_offsets      0 / 0      xstate_sizes    160 / 160   
(00.046258) cpu: fpu: AVX registers                    xstate_offsets    576 / 576    xstate_sizes    256 / 256   
(00.046308) Found mmap_min_addr 0x10000
(00.046319) files stat: fs/file-max 398503, fs/nr_open 1048576
(00.046335) ========================================
(00.046338) Dumping processes (pid: 1653)
(00.046340) ========================================
(00.046345) Running pre-dump scripts
(00.046413) irmap: Searching irmap cache in work dir
(00.046423) No irmap-cache image
(00.046426) irmap: Searching irmap cache in parent
(00.046430) irmap: No irmap cache
(00.046433) cpu: fpu:1 fxsr:1 xsave:1 xsaveopt:0 xsavec:0 xgetbv1:0 xsaves:0
(00.046512) cg-prop: Parsing controller "cpu"
(00.046516) cg-prop:    Strategy "replace"
(00.046519) cg-prop:    Property "cpu.shares"
(00.046522) cg-prop:    Property "cpu.cfs_period_us"
(00.046524) cg-prop:    Property "cpu.cfs_quota_us"
(00.046527) cg-prop:    Property "cpu.rt_period_us"
(00.046529) cg-prop:    Property "cpu.rt_runtime_us"
(00.046532) cg-prop: Parsing controller "memory"
(00.046534) cg-prop:    Strategy "replace"
(00.046537) cg-prop:    Property "memory.limit_in_bytes"
(00.046539) cg-prop:    Property "memory.memsw.limit_in_bytes"
(00.046541) cg-prop:    Property "memory.swappiness"
(00.046544) cg-prop:    Property "memory.soft_limit_in_bytes"
(00.046546) cg-prop:    Property "memory.move_charge_at_immigrate"
(00.046548) cg-prop:    Property "memory.oom_control"
(00.046551) cg-prop:    Property "memory.use_hierarchy"
(00.046553) cg-prop:    Property "memory.kmem.limit_in_bytes"
(00.046555) cg-prop:    Property "memory.kmem.tcp.limit_in_bytes"
(00.046558) cg-prop: Parsing controller "cpuset"
(00.046560) cg-prop:    Strategy "replace"
(00.046563) cg-prop:    Property "cpuset.cpus"
(00.046565) cg-prop:    Property "cpuset.mems"
(00.046567) cg-prop:    Property "cpuset.memory_migrate"
(00.046570) cg-prop:    Property "cpuset.cpu_exclusive"
(00.046572) cg-prop:    Property "cpuset.mem_exclusive"
(00.046576) cg-prop:    Property "cpuset.mem_hardwall"
(00.046578) cg-prop:    Property "cpuset.memory_spread_page"
(00.046587) cg-prop:    Property "cpuset.memory_spread_slab"
(00.046590) cg-prop:    Property "cpuset.sched_load_balance"
(00.046592) cg-prop:    Property "cpuset.sched_relax_domain_level"
(00.046595) cg-prop: Parsing controller "blkio"
(00.046597) cg-prop:    Strategy "replace"
(00.046600) cg-prop:    Property "blkio.weight"
(00.046602) cg-prop: Parsing controller "freezer"
(00.046605) cg-prop:    Strategy "replace"
(00.046607) cg-prop: Parsing controller "perf_event"
(00.046610) cg-prop:    Strategy "replace"
(00.046613) cg-prop: Parsing controller "net_cls"
(00.046615) cg-prop:    Strategy "replace"
(00.046618) cg-prop:    Property "net_cls.classid"
(00.046620) cg-prop: Parsing controller "net_prio"
(00.046623) cg-prop:    Strategy "replace"
(00.046625) cg-prop:    Property "net_prio.ifpriomap"
(00.046628) cg-prop: Parsing controller "pids"
(00.046630) cg-prop:    Strategy "replace"
(00.046633) cg-prop:    Property "pids.max"
(00.046635) cg-prop: Parsing controller "devices"
(00.046638) cg-prop:    Strategy "replace"
(00.046640) cg-prop:    Property "devices.list"
(00.046665) Perparing image inventory (version 1)
(00.046684) Add pid ns 1 pid 3267
(00.046691) Add net ns 2 pid 3267
(00.046699) Add ipc ns 3 pid 3267
(00.046705) Add uts ns 4 pid 3267
(00.046710) Add mnt ns 5 pid 3267
(00.046715) Add user ns 6 pid 3267
(00.046721) Add cgroup ns 7 pid 3267
(00.046724) cg: Dumping cgroups for 3267
(00.046739) cg:  `- New css ID 1
(00.046742) cg:     `- [blkio] -> [/] [0]
(00.046745) cg:     `- [cpu,cpuacct] -> [/] [0]
(00.046747) cg:     `- [cpuset] -> [/] [0]
(00.046749) cg:     `- [devices] -> [/] [0]
(00.046752) cg:     `- [freezer] -> [/] [0]
(00.046754) cg:     `- [hugetlb] -> [/] [0]
(00.046756) cg:     `- [memory] -> [/] [0]
(00.046759) cg:     `- [name=systemd] -> [/] [0]
(00.046761) cg:     `- [net_cls,net_prio] -> [/] [0]
(00.046763) cg:     `- [perf_event] -> [/] [0]
(00.046765) cg:     `- [pids] -> [/] [0]
(00.046768) cg:     `- [rdma] -> [/] [0]
(00.046770) cg: Set 1 is criu one
(00.046776) freezing processes: 100000 attempts with 100 ms steps
(00.046789) freezer.state=THAWED
(00.046842) freezer.state=FROZEN
(00.046847) freezing processes: 0 attempts done
(00.046867) SEIZE 1653: success
(00.046872) SEIZE 2025: success
(00.046880) SEIZE 2083: success
(00.046885) SEIZE 2812: success
(00.046888) SEIZE 2860: success
(00.046892) SEIZE 2865: success
(00.046898) SEIZE 3192: success
(00.046902) SEIZE 3193: success
(00.046908) SEIZE 3194: success
(00.046911) SEIZE 3203: success
(00.046996) Seized task 1653, state 1
(00.047001) seccomp: Collected tid_real 1653 mode 0x2
(00.047012) Collected (0 attempts, 0 in_progress)
(00.047026) Seized task 2025, state 0
(00.047055) seccomp: Collected tid_real 2025 mode 0x2
(00.047064) Collected (0 attempts, 0 in_progress)
(00.047074) Collected (0 attempts, 0 in_progress)
(00.047081) Collected 2025 in 1 state
(00.047084) Seized task 2083, state 0
(00.047112) seccomp: Collected tid_real 2083 mode 0x2
(00.047123) Collected (0 attempts, 0 in_progress)
(00.047133) Collected (0 attempts, 0 in_progress)
(00.047138) Collected 2083 in 1 state
(00.047140) Seized task 2812, state 0
(00.047168) seccomp: Collected tid_real 2812 mode 0x2
(00.047178) Collected (0 attempts, 0 in_progress)
(00.047188) Collected (0 attempts, 0 in_progress)
(00.047192) Collected 2812 in 1 state
(00.047194) Seized task 2860, state 0
(00.047221) seccomp: Collected tid_real 2860 mode 0x2
(00.047232) Collected (0 attempts, 0 in_progress)
(00.047242) Collected (0 attempts, 0 in_progress)
(00.047245) Collected 2860 in 1 state
(00.047248) Seized task 2865, state 0
(00.047274) seccomp: Collected tid_real 2865 mode 0x2
(00.047283) Collected (0 attempts, 0 in_progress)
(00.047292) Collected (0 attempts, 0 in_progress)
(00.047297) Collected 2865 in 1 state
(00.047299) Seized task 3192, state 0
(00.047326) seccomp: Collected tid_real 3192 mode 0x2
(00.047339)     Seizing 3192's 3193 thread
(00.047368) seccomp: Collected tid_real 3193 mode 0x2
(00.047371)     Seizing 3192's 3194 thread
(00.047397) seccomp: Collected tid_real 3194 mode 0x2
(00.047406)     Seizing 3192's 3203 thread
(00.047433) seccomp: Collected tid_real 3203 mode 0x2
(00.047443) Collected (-1 attempts, 0 in_progress)
(00.047462) Collected (0 attempts, 0 in_progress)
(00.047469) Collected 3192 in 1 state
(00.047483) Collected (-1 attempts, 0 in_progress)
(00.047486) Collected 1653 in 1 state
(00.047496) Will take pid namespace in the image
(00.047498) Add pid ns 8 pid 1653
(00.047503) Will take net namespace in the image
(00.047505) Add net ns 9 pid 1653
(00.047510) Will take ipc namespace in the image
(00.047512) Add ipc ns 10 pid 1653
(00.047517) Will take uts namespace in the image
(00.047519) Add uts ns 11 pid 1653
(00.047523) Will take mnt namespace in the image
(00.047526) Add mnt ns 12 pid 1653
(00.047530) Will take user namespace in the image
(00.047532) Add user ns 13 pid 1653
(00.047537) Will take cgroup namespace in the image
(00.047539) Add cgroup ns 14 pid 1653
(00.047678) Lock network
(00.047682) Running network-lock scripts
iptables-restore: invalid option -- 'w'
ip6tables-restore: invalid option -- 'w'
(00.064319) id_map: 0 1000000 1000000000
(00.064336) id_map: 0 1000000 1000000000
(00.073352)     type btrfs source /dev/loop22 mnt_id 688 s_dev 0x37 /containers/test/rootfs @ ./ flags 0x200000 options space_cache,user_subvol_rm_allowed,subvolid=265,subvol=/containers/test/rootfs
(00.073367)     type tmpfs source none mnt_id 689 s_dev 0x3f / @ ./dev flags 0x200000 options size=492k,mode=755,uid=0,gid=0
(00.073373)     type proc source proc mnt_id 690 s_dev 0x3e / @ ./proc flags 0x20000e options 
(00.073378)     type sysfs source sysfs mnt_id 691 s_dev 0x40 / @ ./sys flags 0x200000 options 
(00.073385)     type fuse source lxcfs mnt_id 692 s_dev 0x34 /proc/cpuinfo @ ./proc/cpuinfo flags 0x280006 options user_id=0,group_id=0,allow_other
(00.073393)     type fuse source lxcfs mnt_id 693 s_dev 0x34 /proc/diskstats @ ./proc/diskstats flags 0x280006 options user_id=0,group_id=0,allow_other
(00.073399)     type fuse source lxcfs mnt_id 694 s_dev 0x34 /proc/loadavg @ ./proc/loadavg flags 0x280006 options user_id=0,group_id=0,allow_other
(00.073406)     type fuse source lxcfs mnt_id 695 s_dev 0x34 /proc/meminfo @ ./proc/meminfo flags 0x280006 options user_id=0,group_id=0,allow_other
(00.073412)     type fuse source lxcfs mnt_id 696 s_dev 0x34 /proc/stat @ ./proc/stat flags 0x280006 options user_id=0,group_id=0,allow_other
(00.073433)     type fuse source lxcfs mnt_id 697 s_dev 0x34 /proc/swaps @ ./proc/swaps flags 0x280006 options user_id=0,group_id=0,allow_other
(00.073440)     type fuse source lxcfs mnt_id 698 s_dev 0x34 /proc/uptime @ ./proc/uptime flags 0x280006 options user_id=0,group_id=0,allow_other
(00.073446)     type devtmpfs source udev mnt_id 699 s_dev 0x6 /full @ ./dev/full flags 0x280002 options size=1998236k,nr_inodes=499559,mode=755
(00.073453)     type devtmpfs source udev mnt_id 700 s_dev 0x6 /null @ ./dev/null flags 0x280002 options size=1998236k,nr_inodes=499559,mode=755
(00.073459)     type devtmpfs source udev mnt_id 701 s_dev 0x6 /random @ ./dev/random flags 0x280002 options size=1998236k,nr_inodes=499559,mode=755
(00.073465)     type devtmpfs source udev mnt_id 702 s_dev 0x6 /tty @ ./dev/tty flags 0x280002 options size=1998236k,nr_inodes=499559,mode=755
(00.073471)     type devtmpfs source udev mnt_id 703 s_dev 0x6 /urandom @ ./dev/urandom flags 0x280002 options size=1998236k,nr_inodes=499559,mode=755
(00.073477)     type devtmpfs source udev mnt_id 704 s_dev 0x6 /zero @ ./dev/zero flags 0x280002 options size=1998236k,nr_inodes=499559,mode=755
(00.073505)     type devtmpfs source udev mnt_id 705 s_dev 0x6 /fuse @ ./dev/fuse flags 0x280002 options size=1998236k,nr_inodes=499559,mode=755
(00.073512)     type devtmpfs source udev mnt_id 706 s_dev 0x6 /net/tun @ ./dev/net/tun flags 0x280002 options size=1998236k,nr_inodes=499559,mode=755
(00.073519)     type binfmt_misc source binfmt_misc mnt_id 718 s_dev 0x41 / @ ./proc/sys/fs/binfmt_misc flags 0x280000 options 
(00.073524)     type fusectl source fusectl mnt_id 719 s_dev 0x2a / @ ./sys/fs/fuse/connections flags 0x280000 options 
(00.073530)     type pstore source pstore mnt_id 720 s_dev 0x1c / @ ./sys/fs/pstore flags 0x28000e options 
(00.073540)     type debugfs source debugfs mnt_id 721 s_dev 0x8 / @ ./sys/kernel/debug flags 0x280000 options 
(00.073546)     type securityfs source securityfs mnt_id 722 s_dev 0x7 / @ ./sys/kernel/security flags 0x28000e options 
(00.073552)     type mqueue source mqueue mnt_id 723 s_dev 0x12 / @ ./dev/mqueue flags 0x280000 options 
(00.073558)     type tmpfs source tmpfs mnt_id 724 s_dev 0x36 / @ ./dev/lxd flags 0x200000 options size=100k,mode=755
(00.073565)     type tmpfs source tmpfs mnt_id 725 s_dev 0x35 /test @ ./dev/.lxd-mounts flags 0x280000 options size=100k,mode=711
(00.073571)     type devpts source devpts mnt_id 726 s_dev 0x2e /0 @ ./dev/console flags 0x200000 options gid=-1,mode=620,ptmxmode=666
(00.073589)     type devpts source devpts mnt_id 563 s_dev 0x42 / @ ./dev/pts flags 0x20000a options gid=5,mode=620,ptmxmode=666,max=1024
(00.073598)     type devpts source devpts mnt_id 564 s_dev 0x42 /ptmx @ ./dev/ptmx flags 0x20000a options gid=5,mode=620,ptmxmode=666,max=1024
(00.073605)     type tmpfs source tmpfs mnt_id 565 s_dev 0x43 / @ ./run flags 0x200004 options size=403972k,mode=755,uid=0,gid=0
(00.073611) mnt: Building mountpoints tree
(00.073613) mnt:    Building plain mount tree
(00.073615) mnt:        Working on 565->688
(00.073618) mnt:        Working on 564->689
(00.073621) mnt:        Working on 563->689
(00.073623) mnt:        Working on 726->689
(00.073625) mnt:        Working on 725->689
(00.073627) mnt:        Working on 724->689
(00.073630) mnt:        Working on 723->689
(00.073632) mnt:        Working on 722->691
(00.073634) mnt:        Working on 721->691
(00.073637) mnt:        Working on 720->691
(00.073639) mnt:        Working on 719->691
(00.073641) mnt:        Working on 718->690
(00.073643) mnt:        Working on 706->689
(00.073646) mnt:        Working on 705->689
(00.073648) mnt:        Working on 704->689
(00.073650) mnt:        Working on 703->689
(00.073653) mnt:        Working on 702->689
(00.073655) mnt:        Working on 701->689
(00.073657) mnt:        Working on 700->689
(00.073660) mnt:        Working on 699->689
(00.073662) mnt:        Working on 698->690
(00.073664) mnt:        Working on 697->690
(00.073666) mnt:        Working on 696->690
(00.073669) mnt:        Working on 695->690
(00.073671) mnt:        Working on 694->690
(00.073673) mnt:        Working on 693->690
(00.073676) mnt:        Working on 692->690
(00.073678) mnt:        Working on 691->688
(00.073680) mnt:        Working on 690->688
(00.073682) mnt:        Working on 689->688
(00.073685) mnt:        Working on 688->561
(00.073687) mnt:    Resorting siblings on 688
(00.073689) mnt:    Resorting siblings on 565
(00.073692) mnt:    Resorting siblings on 691
(00.073694) mnt:    Resorting siblings on 722
(00.073696) mnt:    Resorting siblings on 721
(00.073699) mnt:    Resorting siblings on 720
(00.073701) mnt:    Resorting siblings on 719
(00.073703) mnt:    Resorting siblings on 690
(00.073705) mnt:    Resorting siblings on 718
(00.073708) mnt:    Resorting siblings on 698
(00.073710) mnt:    Resorting siblings on 697
(00.073712) mnt:    Resorting siblings on 696
(00.073715) mnt:    Resorting siblings on 695
(00.073717) mnt:    Resorting siblings on 694
(00.073719) mnt:    Resorting siblings on 693
(00.073722) mnt:    Resorting siblings on 692
(00.073724) mnt:    Resorting siblings on 689
(00.073726) mnt:    Resorting siblings on 564
(00.073728) mnt:    Resorting siblings on 563
(00.073731) mnt:    Resorting siblings on 726
(00.073733) mnt:    Resorting siblings on 725
(00.073735) mnt:    Resorting siblings on 724
(00.073737) mnt:    Resorting siblings on 723
(00.073740) mnt:    Resorting siblings on 706
(00.073742) mnt:    Resorting siblings on 705
(00.073744) mnt:    Resorting siblings on 704
(00.073747) mnt:    Resorting siblings on 703
(00.073749) mnt:    Resorting siblings on 702
(00.073751) mnt:    Resorting siblings on 701
(00.073754) mnt:    Resorting siblings on 700
(00.073756) mnt:    Resorting siblings on 699
(00.073758) mnt: Done:
(00.073760) mnt: [./](688->561)
(00.073763) mnt:  [./run](565->688)
(00.073766) mnt:  <--
(00.073768) mnt:  [./sys](691->688)
(00.073770) mnt:   [./sys/fs/fuse/connections](719->691)
(00.073773) mnt:   <--
(00.073775) mnt:   [./sys/kernel/security](722->691)
(00.073781) mnt:   <--
(00.073783) mnt:   [./sys/kernel/debug](721->691)
(00.073786) mnt:   <--
(00.073788) mnt:   [./sys/fs/pstore](720->691)
(00.073791) mnt:   <--
(00.073793) mnt:  <--
(00.073795) mnt:  [./proc](690->688)
(00.073797) mnt:   [./proc/sys/fs/binfmt_misc](718->690)
(00.073800) mnt:   <--
(00.073802) mnt:   [./proc/uptime](698->690)
(00.073805) mnt:   <--
(00.073807) mnt:   [./proc/swaps](697->690)
(00.073809) mnt:   <--
(00.073811) mnt:   [./proc/stat](696->690)
(00.073814) mnt:   <--
(00.073816) mnt:   [./proc/meminfo](695->690)
(00.073818) mnt:   <--
(00.073821) mnt:   [./proc/loadavg](694->690)
(00.073823) mnt:   <--
(00.073825) mnt:   [./proc/diskstats](693->690)
(00.073828) mnt:   <--
(00.073830) mnt:   [./proc/cpuinfo](692->690)
(00.073832) mnt:   <--
(00.073834) mnt:  <--
(00.073837) mnt:  [./dev](689->688)
(00.073839) mnt:   [./dev/net/tun](706->689)
(00.073841) mnt:   <--
(00.073844) mnt:   [./dev/ptmx](564->689)
(00.073846) mnt:   <--
(00.073848) mnt:   [./dev/pts](563->689)
(00.073851) mnt:   <--
(00.073853) mnt:   [./dev/console](726->689)
(00.073855) mnt:   <--
(00.073857) mnt:   [./dev/.lxd-mounts](725->689)
(00.073860) mnt:   <--
(00.073862) mnt:   [./dev/lxd](724->689)
(00.073864) mnt:   <--
(00.073867) mnt:   [./dev/mqueue](723->689)
(00.073869) mnt:   <--
(00.073871) mnt:   [./dev/fuse](705->689)
(00.073874) mnt:   <--
(00.073876) mnt:   [./dev/zero](704->689)
(00.073878) mnt:   <--
(00.073880) mnt:   [./dev/urandom](703->689)
(00.073883) mnt:   <--
(00.073885) mnt:   [./dev/tty](702->689)
(00.073887) mnt:   <--
(00.073889) mnt:   [./dev/random](701->689)
(00.073892) mnt:   <--
(00.073894) mnt:   [./dev/null](700->689)
(00.073896) mnt:   <--
(00.073899) mnt:   [./dev/full](699->689)
(00.073901) mnt:   <--
(00.073903) mnt:  <--
(00.073905) mnt: <--
(00.073943)     type ext4 source /dev/sda1 mnt_id 387 s_dev 0x800001 / @ ./var/lib/snapd/hostfs flags 0x280000 options errors=remount-ro,data=ordered
(00.073952)     type tmpfs source tmpfs mnt_id 393 s_dev 0x16 / @ ./var/lib/snapd/hostfs/run flags 0x28000a options size=403972k,mode=755
(00.073958)     type tmpfs source tmpfs mnt_id 394 s_dev 0x18 / @ ./var/lib/snapd/hostfs/run/lock flags 0x28000e options size=5120k
(00.073964)     type tmpfs source tmpfs mnt_id 395 s_dev 0x16 /snapd/ns @ ./var/lib/snapd/hostfs/run/snapd/ns flags 0x20000a options size=403972k,mode=755
(00.073970)     type squashfs source /dev/loop0 mnt_id 418 s_dev 0x700000 / @ ./var/lib/snapd/hostfs/snap/gnome-3-26-1604/70 flags 0x280005 options 
(00.073976)     type squashfs source /dev/loop1 mnt_id 419 s_dev 0x700001 / @ ./var/lib/snapd/hostfs/snap/gnome-logs/37 flags 0x280005 options 
(00.073981)     type squashfs source /dev/loop2 mnt_id 420 s_dev 0x700002 / @ ./var/lib/snapd/hostfs/snap/gnome-calculator/260 flags 0x280005 options 
(00.073987)     type squashfs source /dev/loop3 mnt_id 421 s_dev 0x700003 / @ ./var/lib/snapd/hostfs/snap/gnome-characters/206 flags 0x280005 options 
(00.074009)     type squashfs source /dev/loop4 mnt_id 422 s_dev 0x700004 / @ ./var/lib/snapd/hostfs/snap/gnome-system-monitor/70 flags 0x280005 options 
(00.074017)     type squashfs source /dev/loop11 mnt_id 423 s_dev 0x70000b / @ ./var/lib/snapd/hostfs/snap/gnome-logs/57 flags 0x280005 options 
(00.074022)     type squashfs source /dev/loop6 mnt_id 424 s_dev 0x700006 / @ ./var/lib/snapd/hostfs/snap/gnome-3-26-1604/82 flags 0x280005 options 
(00.074028)     type squashfs source /dev/loop9 mnt_id 425 s_dev 0x700009 / @ ./var/lib/snapd/hostfs/snap/core/6405 flags 0x280005 options 
(00.074033)     type squashfs source /dev/loop10 mnt_id 426 s_dev 0x70000a / @ ./var/lib/snapd/hostfs/snap/core18/782 flags 0x280005 options 
(00.074038)     type squashfs source /dev/loop12 mnt_id 427 s_dev 0x70000c / @ ./var/lib/snapd/hostfs/snap/gnome-calculator/352 flags 0x280005 options 
(00.074044)     type squashfs source /dev/loop13 mnt_id 428 s_dev 0x70000d / @ ./var/lib/snapd/hostfs/snap/gtk-common-themes/319 flags 0x280005 options 
(00.074050)     type squashfs source /dev/loop14 mnt_id 429 s_dev 0x70000e / @ ./var/lib/snapd/hostfs/snap/gtk-common-themes/1198 flags 0x280005 options 
(00.074059)     type squashfs source /dev/loop15 mnt_id 430 s_dev 0x70000f / @ ./var/lib/snapd/hostfs/snap/gnome-characters/139 flags 0x280005 options 
(00.074081)     type squashfs source /dev/loop18 mnt_id 431 s_dev 0x700012 / @ ./var/lib/snapd/hostfs/snap/gnome-characters/103 flags 0x280005 options 
(00.074087)     type squashfs source /dev/loop16 mnt_id 432 s_dev 0x700010 / @ ./var/lib/snapd/hostfs/snap/gnome-system-monitor/51 flags 0x280005 options 
(00.074092)     type squashfs source /dev/loop17 mnt_id 433 s_dev 0x700011 / @ ./var/lib/snapd/hostfs/snap/gnome-calculator/180 flags 0x280005 options 
(00.074098)     type squashfs source /dev/loop19 mnt_id 434 s_dev 0x700013 / @ ./var/lib/snapd/hostfs/snap/gnome-3-28-1804/23 flags 0x280005 options 
(00.074103)     type squashfs source /dev/loop20 mnt_id 435 s_dev 0x700014 / @ ./var/lib/snapd/hostfs/snap/core/6531 flags 0x280005 options 
(00.074110)     type squashfs source /dev/loop21 mnt_id 436 s_dev 0x700015 / @ ./var/lib/snapd/hostfs/snap/lxd/10496 flags 0x280005 options 
(00.074115)     type squashfs source /dev/loop8 mnt_id 437 s_dev 0x700008 / @ ./var/lib/snapd/hostfs/snap/gnome-system-monitor/57 flags 0x280005 options 
(00.074121)     type squashfs source /dev/loop5 mnt_id 438 s_dev 0x700005 / @ ./var/lib/snapd/hostfs/snap/gnome-logs/45 flags 0x280005 options 
(00.074126)     type squashfs source /dev/loop7 mnt_id 439 s_dev 0x700007 / @ ./var/lib/snapd/hostfs/snap/core/6673 flags 0x280005 options 
(00.074131)     type squashfs source /dev/loop7 mnt_id 447 s_dev 0x700007 / @ ./ flags 0x280005 options 
(00.074173)     type devtmpfs source udev mnt_id 448 s_dev 0x6 / @ ./dev flags 0x280002 options size=1998236k,nr_inodes=499559,mode=755
(00.074182)     type devpts source devpts mnt_id 449 s_dev 0x15 / @ ./dev/pts flags 0x28000a options gid=-1,mode=620,ptmxmode=000
(00.074189)     type tmpfs source tmpfs mnt_id 450 s_dev 0x17 / @ ./dev/shm flags 0x1080006 options 
(00.074195)     type mqueue source mqueue mnt_id 451 s_dev 0x12 / @ ./dev/mqueue flags 0x280000 options 
(00.074201)     type hugetlbfs source hugetlbfs mnt_id 452 s_dev 0x29 / @ ./dev/hugepages flags 0x280000 options pagesize=2M
(00.074207)     type ext4 source /dev/sda1 mnt_id 454 s_dev 0x800001 /home @ ./home flags 0x280000 options errors=remount-ro,data=ordered
(00.074213)     type ext4 source /dev/sda1 mnt_id 455 s_dev 0x800001 /root @ ./root flags 0x280000 options errors=remount-ro,data=ordered
(00.074218)     type proc source proc mnt_id 456 s_dev 0x4 / @ ./proc flags 0x28000e options 
(00.074225)     type autofs source systemd-1 mnt_id 457 s_dev 0x28 / @ ./proc/sys/fs/binfmt_misc flags 0x280000 options fd=39,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=12236
(00.074233)     type sysfs source sysfs mnt_id 458 s_dev 0x14 / @ ./sys flags 0x28000e options 
(00.074239)     type securityfs source securityfs mnt_id 459 s_dev 0x7 / @ ./sys/kernel/security flags 0x28000e options 
(00.074267)     type tmpfs source tmpfs mnt_id 460 s_dev 0x19 / @ ./sys/fs/cgroup flags 0x108000f options mode=755
(00.074273)     type cgroup2 source cgroup mnt_id 461 s_dev 0x1a / @ ./sys/fs/cgroup/unified flags 0x28000e options 
(00.074280)     type cgroup source cgroup mnt_id 462 s_dev 0x1b / @ ./sys/fs/cgroup/systemd flags 0x28000e options xattr,name=systemd
(00.074286)     type cgroup source cgroup mnt_id 463 s_dev 0x1d / @ ./sys/fs/cgroup/hugetlb flags 0x28000e options hugetlb
(00.074292)     type cgroup source cgroup mnt_id 464 s_dev 0x1e / @ ./sys/fs/cgroup/cpu,cpuacct flags 0x28000e options cpu,cpuacct
(00.074299)     type cgroup source cgroup mnt_id 465 s_dev 0x1f / @ ./sys/fs/cgroup/pids flags 0x28000e options pids
(00.074304)     type cgroup source cgroup mnt_id 466 s_dev 0x20 / @ ./sys/fs/cgroup/cpuset flags 0x28000e options cpuset
(00.074310)     type cgroup source cgroup mnt_id 467 s_dev 0x21 / @ ./sys/fs/cgroup/net_cls,net_prio flags 0x28000e options net_cls,net_prio
(00.074316)     type cgroup source cgroup mnt_id 468 s_dev 0x22 / @ ./sys/fs/cgroup/devices flags 0x28000e options devices
(00.074343)     type cgroup source cgroup mnt_id 469 s_dev 0x23 / @ ./sys/fs/cgroup/memory flags 0x28000e options memory
(00.074353)     type cgroup source cgroup mnt_id 470 s_dev 0x24 / @ ./sys/fs/cgroup/perf_event flags 0x28000e options perf_event
(00.074361)     type cgroup source cgroup mnt_id 471 s_dev 0x25 / @ ./sys/fs/cgroup/freezer flags 0x28000e options freezer
(00.074367)     type cgroup source cgroup mnt_id 472 s_dev 0x26 / @ ./sys/fs/cgroup/rdma flags 0x28000e options rdma
(00.074373)     type cgroup source cgroup mnt_id 473 s_dev 0x27 / @ ./sys/fs/cgroup/blkio flags 0x28000e options blkio
(00.074378)     type pstore source pstore mnt_id 474 s_dev 0x1c / @ ./sys/fs/pstore flags 0x28000e options 
(00.074383)     type debugfs source debugfs mnt_id 475 s_dev 0x8 / @ ./sys/kernel/debug flags 0x280000 options 
(00.074388)     type configfs source configfs mnt_id 476 s_dev 0x13 / @ ./sys/kernel/config flags 0x280000 options 
(00.074395)     type fusectl source fusectl mnt_id 477 s_dev 0x2a / @ ./sys/fs/fuse/connections flags 0x280000 options 
(00.074401)     type ext4 source /dev/sda1 mnt_id 478 s_dev 0x800001 /tmp @ ./tmp flags 0x280000 options errors=remount-ro,data=ordered
(00.074407)     type ext4 source /dev/sda1 mnt_id 479 s_dev 0x800001 /var/snap @ ./var/snap flags 0x280000 options errors=remount-ro,data=ordered
(00.074429)     type ext4 source /dev/sda1 mnt_id 480 s_dev 0x800001 /var/lib/snapd @ ./var/lib/snapd flags 0x280000 options errors=remount-ro,data=ordered
(00.074436)     type ext4 source /dev/sda1 mnt_id 481 s_dev 0x800001 /var/tmp @ ./var/tmp flags 0x280000 options errors=remount-ro,data=ordered
(00.074442)     type ext4 source /dev/sda1 mnt_id 485 s_dev 0x800001 /lib/modules @ ./lib/modules flags 0x280000 options errors=remount-ro,data=ordered
(00.074449)     type ext4 source /dev/sda1 mnt_id 486 s_dev 0x800001 /usr/src @ ./usr/src flags 0x280000 options errors=remount-ro,data=ordered
(00.074454)     type ext4 source /dev/sda1 mnt_id 487 s_dev 0x800001 /var/log @ ./var/log flags 0x280000 options errors=remount-ro,data=ordered
(00.074460)     type ext4 source /dev/sda1 mnt_id 488 s_dev 0x800001 /media @ ./media flags 0x300000 options errors=remount-ro,data=ordered
(00.074466)     type ext4 source /dev/sda1 mnt_id 490 s_dev 0x800001 /mnt @ ./mnt flags 0x280000 options errors=remount-ro,data=ordered
(00.074472)     type ext4 source /dev/sda1 mnt_id 493 s_dev 0x800001 /snap @ ./snap flags 0x280000 options errors=remount-ro,data=ordered
(00.074477)     type squashfs source /dev/loop0 mnt_id 494 s_dev 0x700000 / @ ./snap/gnome-3-26-1604/70 flags 0x280005 options 
(00.074482)     type squashfs source /dev/loop1 mnt_id 495 s_dev 0x700001 / @ ./snap/gnome-logs/37 flags 0x280005 options 
(00.074489)     type squashfs source /dev/loop2 mnt_id 496 s_dev 0x700002 / @ ./snap/gnome-calculator/260 flags 0x280005 options 
(00.074509)     type squashfs source /dev/loop3 mnt_id 497 s_dev 0x700003 / @ ./snap/gnome-characters/206 flags 0x280005 options 
(00.074514)     type squashfs source /dev/loop4 mnt_id 498 s_dev 0x700004 / @ ./snap/gnome-system-monitor/70 flags 0x280005 options 
(00.074520)     type squashfs source /dev/loop11 mnt_id 499 s_dev 0x70000b / @ ./snap/gnome-logs/57 flags 0x280005 options 
(00.074525)     type squashfs source /dev/loop6 mnt_id 500 s_dev 0x700006 / @ ./snap/gnome-3-26-1604/82 flags 0x280005 options 
(00.074530)     type squashfs source /dev/loop9 mnt_id 501 s_dev 0x700009 / @ ./snap/core/6405 flags 0x280005 options 
(00.074536)     type squashfs source /dev/loop10 mnt_id 502 s_dev 0x70000a / @ ./snap/core18/782 flags 0x280005 options 
(00.074542)     type squashfs source /dev/loop12 mnt_id 503 s_dev 0x70000c / @ ./snap/gnome-calculator/352 flags 0x280005 options 
(00.074547)     type squashfs source /dev/loop13 mnt_id 504 s_dev 0x70000d / @ ./snap/gtk-common-themes/319 flags 0x280005 options 
(00.074553)     type squashfs source /dev/loop14 mnt_id 505 s_dev 0x70000e / @ ./snap/gtk-common-themes/1198 flags 0x280005 options 
(00.074558)     type squashfs source /dev/loop15 mnt_id 506 s_dev 0x70000f / @ ./snap/gnome-characters/139 flags 0x280005 options 
(00.074563)     type squashfs source /dev/loop18 mnt_id 507 s_dev 0x700012 / @ ./snap/gnome-characters/103 flags 0x280005 options 
(00.074585)     type squashfs source /dev/loop16 mnt_id 508 s_dev 0x700010 / @ ./snap/gnome-system-monitor/51 flags 0x280005 options 
(00.074591)     type squashfs source /dev/loop17 mnt_id 509 s_dev 0x700011 / @ ./snap/gnome-calculator/180 flags 0x280005 options 
(00.074597)     type squashfs source /dev/loop19 mnt_id 510 s_dev 0x700013 / @ ./snap/gnome-3-28-1804/23 flags 0x280005 options 
(00.074603)     type squashfs source /dev/loop20 mnt_id 511 s_dev 0x700014 / @ ./snap/core/6531 flags 0x280005 options 
(00.074608)     type squashfs source /dev/loop21 mnt_id 512 s_dev 0x700015 / @ ./snap/lxd/10496 flags 0x280005 options 
(00.074613)     type squashfs source /dev/loop8 mnt_id 513 s_dev 0x700008 / @ ./snap/gnome-system-monitor/57 flags 0x280005 options 
(00.074619)     type squashfs source /dev/loop5 mnt_id 514 s_dev 0x700005 / @ ./snap/gnome-logs/45 flags 0x280005 options 
(00.074624)     type squashfs source /dev/loop7 mnt_id 515 s_dev 0x700007 / @ ./snap/core/6673 flags 0x280005 options 
(00.074630)     type ext4 source /dev/sda1 mnt_id 516 s_dev 0x800001 /var/lib/snapd/hostfs @ ./var/lib/snapd/hostfs flags 0x200000 options errors=remount-ro,data=ordered
(00.074637)     type ext4 source /dev/sda1 mnt_id 388 s_dev 0x800001 /tmp/snap.lxd_kSXHyq/tmp @ ./tmp flags 0x200000 options errors=remount-ro,data=ordered
(00.074662)     type devpts source devpts mnt_id 389 s_dev 0x2e / @ ./dev/pts flags 0x200000 options gid=-1,mode=620,ptmxmode=666
(00.074668)     type devpts source devpts mnt_id 390 s_dev 0x2e /ptmx @ ./dev/ptmx flags 0x200000 options gid=-1,mode=620,ptmxmode=666
(00.074674)     type tmpfs source tmpfs mnt_id 559 s_dev 0x30 / @ ./var/snap/lxd/common/ns flags 0x280000 options size=1024k,mode=700
(00.074680)     type tmpfs source tmpfs mnt_id 553 s_dev 0x30 / @ ./var/lib/snapd/hostfs/var/snap/lxd/common/ns flags 0x280000 options size=1024k,mode=700
(00.074686)     type tmpfs source tmpfs mnt_id 562 s_dev 0x2f / @ ./var/snap/lxd/common/shmounts flags 0x300000 options size=1024k,mode=711
(00.074692)     type squashfs source /dev/loop21 mnt_id 542 s_dev 0x700015 /wrappers/kmod @ ./bin/kmod flags 0x280005 options 
(00.074699)     type ext4 source /dev/sda1 mnt_id 543 s_dev 0x800001 /boot @ ./boot flags 0x280000 options errors=remount-ro,data=ordered
(00.074704)     type tmpfs source tmpfs mnt_id 482 s_dev 0x31 / @ ./run flags 0x200006 options mode=755
(00.074709)     type tmpfs source tmpfs mnt_id 453 s_dev 0x32 / @ ./etc flags 0x200000 options mode=755
(00.074715)     type ext4 source /dev/sda1 mnt_id 483 s_dev 0x800001 /usr/share/ca-certificates @ ./usr/share/ca-certificates flags 0x280000 options errors=remount-ro,data=ordered
(00.074722)     type devtmpfs source udev mnt_id 484 s_dev 0x6 / @ ./var/lib/snapd/hostfs/dev flags 0x280002 options size=1998236k,nr_inodes=499559,mode=755
(00.074744)     type proc source proc mnt_id 489 s_dev 0x4 / @ ./var/lib/snapd/hostfs/proc flags 0x28000e options 
(00.074751)     type sysfs source sysfs mnt_id 491 s_dev 0x14 / @ ./var/lib/snapd/hostfs/sys flags 0x28000e options 
(00.074758)     type fuse source lxcfs mnt_id 544 s_dev 0x34 / @ ./var/snap/lxd/common/shmounts/lxcfs flags 0x300006 options user_id=0,group_id=0,allow_other
(00.074764)     type tmpfs source tmpfs mnt_id 546 s_dev 0x35 / @ ./var/snap/lxd/common/shmounts/containers flags 0x300000 options size=100k,mode=711
(00.074769)     type tmpfs source tmpfs mnt_id 548 s_dev 0x36 / @ ./var/snap/lxd/common/lxd/devlxd flags 0x200000 options size=100k,mode=755
(00.074776)     type btrfs source /dev/loop22 mnt_id 549 s_dev 0x37 / @ ./var/snap/lxd/common/lxd/storage-pools/default flags 0x200000 options space_cache,user_subvol_rm_allowed,subvolid=5,subvol=/
(00.074781)     type binfmt_misc source binfmt_misc mnt_id 709 s_dev 0x41 / @ ./proc/sys/fs/binfmt_misc flags 0x280000 options 
(00.074788)     type tmpfs source tmpfs mnt_id 568 s_dev 0x44 / @ ./var/lib/snapd/hostfs/run/user/1000 flags 0x280006 options size=403972k,mode=700,uid=-1,gid=-1
(00.074811)     type fuse source gvfsd-fuse mnt_id 583 s_dev 0x45 / @ ./var/lib/snapd/hostfs/run/user/1000/gvfs flags 0x280006 options user_id=1000,group_id=1000
(00.074824)     type iso9660 source /dev/sr0 mnt_id 964 s_dev 0xb00000 / @ ./var/lib/snapd/hostfs/media/zfs/VBox_GAs_5.2.26 flags 0x280007 options nojoliet,check=s,map=n,blocksize=2048,uid=-1,gid=-1,dmode=500,fmode=400
(00.074833)     type iso9660 source /dev/sr0 mnt_id 963 s_dev 0xb00000 / @ ./media/zfs/VBox_GAs_5.2.26 flags 0x300007 options nojoliet,check=s,map=n,blocksize=2048,uid=-1,gid=-1,dmode=500,fmode=400
(00.074838) mnt: Building mountpoints tree
(00.074840) mnt:    Building plain mount tree
(00.074843) mnt:        Working on 963->488
(00.074845) mnt:        Working on 964->387
(00.074848) mnt:        Working on 583->568
(00.074851) mnt:        Working on 568->393
(00.074853) mnt:        Working on 709->457
(00.074855) mnt:        Working on 549->479
(00.074858) mnt:        Working on 548->479
(00.074860) mnt:        Working on 546->562
(00.074862) mnt:        Working on 544->562
(00.074865) mnt:        Working on 491->387
(00.074867) mnt:        Working on 489->387
(00.074870) mnt:        Working on 484->387
(00.074872) mnt:        Working on 483->447
(00.074875) mnt:        Working on 453->447
(00.074877) mnt:        Working on 482->447
(00.074879) mnt:        Working on 543->447
(00.074882) mnt:        Working on 542->447
(00.074884) mnt:        Working on 562->479
(00.074887) mnt:        Working on 553->387
(00.074889) mnt:        Working on 559->479
(00.074891) mnt:        Working on 390->448
(00.074894) mnt:        Working on 389->449
(00.074896) mnt:        Working on 388->478
(00.074899) mnt:        Working on 516->480
(00.074901) mnt:        Working on 515->493
(00.074903) mnt:        Working on 514->493
(00.074905) mnt:        Working on 513->493
(00.074908) mnt:        Working on 512->493
(00.074910) mnt:        Working on 511->493
(00.074912) mnt:        Working on 510->493
(00.074915) mnt:        Working on 509->493
(00.074917) mnt:        Working on 508->493
(00.074919) mnt:        Working on 507->493
(00.074921) mnt:        Working on 506->493
(00.074924) mnt:        Working on 505->493
(00.074926) mnt:        Working on 504->493
(00.074928) mnt:        Working on 503->493
(00.074931) mnt:        Working on 502->493
(00.074933) mnt:        Working on 501->493
(00.074935) mnt:        Working on 500->493
(00.074937) mnt:        Working on 499->493
(00.074940) mnt:        Working on 498->493
(00.074942) mnt:        Working on 497->493
(00.074944) mnt:        Working on 496->493
(00.074947) mnt:        Working on 495->493
(00.074949) mnt:        Working on 494->493
(00.074951) mnt:        Working on 493->447
(00.074953) mnt:        Working on 490->447
(00.074956) mnt:        Working on 488->447
(00.074958) mnt:        Working on 487->447
(00.074961) mnt:        Working on 486->447
(00.074963) mnt:        Working on 485->447
(00.074965) mnt:        Working on 481->447
(00.074968) mnt:        Working on 480->447
(00.074970) mnt:        Working on 479->447
(00.074973) mnt:        Working on 478->447
(00.074975) mnt:        Working on 477->458
(00.074977) mnt:        Working on 476->458
(00.074980) mnt:        Working on 475->458
(00.074982) mnt:        Working on 474->458
(00.074984) mnt:        Working on 473->460
(00.074987) mnt:        Working on 472->460
(00.074989) mnt:        Working on 471->460
(00.074991) mnt:        Working on 470->460
(00.074994) mnt:        Working on 469->460
(00.074996) mnt:        Working on 468->460
(00.074998) mnt:        Working on 467->460
(00.075001) mnt:        Working on 466->460
(00.075003) mnt:        Working on 465->460
(00.075005) mnt:        Working on 464->460
(00.075008) mnt:        Working on 463->460
(00.075010) mnt:        Working on 462->460
(00.075012) mnt:        Working on 461->460
(00.075015) mnt:        Working on 460->458
(00.075017) mnt:        Working on 459->458
(00.075019) mnt:        Working on 458->447
(00.075022) mnt:        Working on 457->456
(00.075024) mnt:        Working on 456->447
(00.075027) mnt:        Working on 455->447
(00.075029) mnt:        Working on 454->447
(00.075031) mnt:        Working on 452->448
(00.075034) mnt:        Working on 451->448
(00.075036) mnt:        Working on 450->448
(00.075039) mnt:        Working on 449->448
(00.075041) mnt:        Working on 448->447
(00.075043) mnt:        Working on 447->386
(00.075046) mnt:        Working on 439->387
(00.075048) mnt:        Working on 438->387
(00.075051) mnt:        Working on 437->387
(00.075053) mnt:        Working on 436->387
(00.075056) mnt:        Working on 435->387
(00.075058) mnt:        Working on 434->387
(00.075064) mnt:        Working on 433->387
(00.075067) mnt:        Working on 432->387
(00.075069) mnt:        Working on 431->387
(00.075072) mnt:        Working on 430->387
(00.075074) mnt:        Working on 429->387
(00.075077) mnt:        Working on 428->387
(00.075079) mnt:        Working on 427->387
(00.075082) mnt:        Working on 426->387
(00.075084) mnt:        Working on 425->387
(00.075087) mnt:        Working on 424->387
(00.075090) mnt:        Working on 423->387
(00.075092) mnt:        Working on 422->387
(00.075095) mnt:        Working on 421->387
(00.075097) mnt:        Working on 420->387
(00.075100) mnt:        Working on 419->387
(00.075102) mnt:        Working on 418->387
(00.075105) mnt:        Working on 395->393
(00.075107) mnt:        Working on 394->393
(00.075110) mnt:        Working on 393->387
(00.075112) mnt:        Working on 387->516
(00.075114) mnt:    Resorting siblings on 447
(00.075117) mnt:    Resorting siblings on 483
(00.075119) mnt:    Resorting siblings on 453
(00.075121) mnt:    Resorting siblings on 482
(00.075139) mnt:    Resorting siblings on 543
(00.075142) mnt:    Resorting siblings on 542
(00.075145) mnt:    Resorting siblings on 493
(00.075147) mnt:    Resorting siblings on 515
(00.075149) mnt:    Resorting siblings on 514
(00.075152) mnt:    Resorting siblings on 513
(00.075154) mnt:    Resorting siblings on 512
(00.075157) mnt:    Resorting siblings on 511
(00.075159) mnt:    Resorting siblings on 510
(00.075162) mnt:    Resorting siblings on 509
(00.075165) mnt:    Resorting siblings on 508
(00.075167) mnt:    Resorting siblings on 507
(00.075170) mnt:    Resorting siblings on 506
(00.075172) mnt:    Resorting siblings on 505
(00.075175) mnt:    Resorting siblings on 504
(00.075181) mnt:    Resorting siblings on 503
(00.075184) mnt:    Resorting siblings on 502
(00.075187) mnt:    Resorting siblings on 501
(00.075189) mnt:    Resorting siblings on 500
(00.075192) mnt:    Resorting siblings on 499
(00.075194) mnt:    Resorting siblings on 498
(00.075197) mnt:    Resorting siblings on 497
(00.075199) mnt:    Resorting siblings on 496
(00.075202) mnt:    Resorting siblings on 495
(00.075204) mnt:    Resorting siblings on 494
(00.075207) mnt:    Resorting siblings on 490
(00.075209) mnt:    Resorting siblings on 488
(00.075211) mnt:    Resorting siblings on 963
(00.075214) mnt:    Resorting siblings on 487
(00.075216) mnt:    Resorting siblings on 486
(00.075218) mnt:    Resorting siblings on 485
(00.075220) mnt:    Resorting siblings on 481
(00.075223) mnt:    Resorting siblings on 480
(00.075225) mnt:    Resorting siblings on 516
(00.075227) mnt:    Resorting siblings on 387
(00.075230) mnt:    Resorting siblings on 964
(00.075232) mnt:    Resorting siblings on 491
(00.075234) mnt:    Resorting siblings on 489
(00.075236) mnt:    Resorting siblings on 484
(00.075239) mnt:    Resorting siblings on 553
(00.075241) mnt:    Resorting siblings on 439
(00.075243) mnt:    Resorting siblings on 438
(00.075246) mnt:    Resorting siblings on 437
(00.075248) mnt:    Resorting siblings on 436
(00.075251) mnt:    Resorting siblings on 435
(00.075253) mnt:    Resorting siblings on 434
(00.075256) mnt:    Resorting siblings on 433
(00.075258) mnt:    Resorting siblings on 432
(00.075261) mnt:    Resorting siblings on 431
(00.075263) mnt:    Resorting siblings on 430
(00.075266) mnt:    Resorting siblings on 429
(00.075269) mnt:    Resorting siblings on 428
(00.075271) mnt:    Resorting siblings on 427
(00.075274) mnt:    Resorting siblings on 426
(00.075277) mnt:    Resorting siblings on 425
(00.075279) mnt:    Resorting siblings on 424
(00.075282) mnt:    Resorting siblings on 423
(00.075285) mnt:    Resorting siblings on 422
(00.075288) mnt:    Resorting siblings on 421
(00.075291) mnt:    Resorting siblings on 420
(00.075294) mnt:    Resorting siblings on 419
(00.075297) mnt:    Resorting siblings on 418
(00.075300) mnt:    Resorting siblings on 393
(00.075302) mnt:    Resorting siblings on 568
(00.075304) mnt:    Resorting siblings on 583
(00.075306) mnt:    Resorting siblings on 395
(00.075309) mnt:    Resorting siblings on 394
(00.075311) mnt:    Resorting siblings on 479
(00.075313) mnt:    Resorting siblings on 549
(00.075315) mnt:    Resorting siblings on 548
(00.075318) mnt:    Resorting siblings on 562
(00.075320) mnt:    Resorting siblings on 546
(00.075327) mnt:    Resorting siblings on 544
(00.075329) mnt:    Resorting siblings on 559
(00.075332) mnt:    Resorting siblings on 478
(00.075334) mnt:    Resorting siblings on 388
(00.075336) mnt:    Resorting siblings on 458
(00.075339) mnt:    Resorting siblings on 477
(00.075341) mnt:    Resorting siblings on 476
(00.075343) mnt:    Resorting siblings on 475
(00.075345) mnt:    Resorting siblings on 474
(00.075348) mnt:    Resorting siblings on 460
(00.075350) mnt:    Resorting siblings on 473
(00.075352) mnt:    Resorting siblings on 472
(00.075354) mnt:    Resorting siblings on 471
(00.075357) mnt:    Resorting siblings on 470
(00.075359) mnt:    Resorting siblings on 469
(00.075361) mnt:    Resorting siblings on 468
(00.075364) mnt:    Resorting siblings on 467
(00.075366) mnt:    Resorting siblings on 466
(00.075368) mnt:    Resorting siblings on 465
(00.075371) mnt:    Resorting siblings on 464
(00.075373) mnt:    Resorting siblings on 463
(00.075375) mnt:    Resorting siblings on 462
(00.075378) mnt:    Resorting siblings on 461
(00.075380) mnt:    Resorting siblings on 459
(00.075382) mnt:    Resorting siblings on 456
(00.075385) mnt:    Resorting siblings on 457
(00.075387) mnt:    Resorting siblings on 709
(00.075389) mnt:    Resorting siblings on 455
(00.075392) mnt:    Resorting siblings on 454
(00.075394) mnt:    Resorting siblings on 448
(00.075396) mnt:    Resorting siblings on 390
(00.075398) mnt:    Resorting siblings on 452
(00.075401) mnt:    Resorting siblings on 451
(00.075403) mnt:    Resorting siblings on 450
(00.075405) mnt:    Resorting siblings on 449
(00.075407) mnt:    Resorting siblings on 389
(00.075410) mnt: Done:
(00.075412) mnt: [./](447->386)
(00.075414) mnt:  [./usr/share/ca-certificates](483->447)
(00.075417) mnt:  <--
(00.075419) mnt:  [./var/lib/snapd](480->447)
(00.075422) mnt:   [./var/lib/snapd/hostfs](516->480)
(00.075424) mnt:    [./var/lib/snapd/hostfs](387->516)
(00.075427) mnt:     [./var/lib/snapd/hostfs/var/snap/lxd/common/ns](553->387)
(00.075429) mnt:     <--
(00.075431) mnt:     [./var/lib/snapd/hostfs/media/zfs/VBox_GAs_5.2.26](964->387)
(00.075434) mnt:     <--
(00.075436) mnt:     [./var/lib/snapd/hostfs/snap/core/6673](439->387)
(00.075438) mnt:     <--
(00.075441) mnt:     [./var/lib/snapd/hostfs/snap/gnome-logs/45](438->387)
(00.075443) mnt:     <--
(00.075445) mnt:     [./var/lib/snapd/hostfs/snap/gnome-system-monitor/57](437->387)
(00.075448) mnt:     <--
(00.075450) mnt:     [./var/lib/snapd/hostfs/snap/lxd/10496](436->387)
(00.075452) mnt:     <--
(00.075455) mnt:     [./var/lib/snapd/hostfs/snap/core/6531](435->387)
(00.075457) mnt:     <--
(00.075459) mnt:     [./var/lib/snapd/hostfs/snap/gnome-3-28-1804/23](434->387)
(00.075462) mnt:     <--
(00.075464) mnt:     [./var/lib/snapd/hostfs/snap/gnome-calculator/180](433->387)
(00.075466) mnt:     <--
(00.075469) mnt:     [./var/lib/snapd/hostfs/snap/gnome-system-monitor/51](432->387)
(00.075471) mnt:     <--
(00.075473) mnt:     [./var/lib/snapd/hostfs/snap/gnome-characters/103](431->387)
(00.075476) mnt:     <--
(00.075478) mnt:     [./var/lib/snapd/hostfs/snap/gnome-characters/139](430->387)
(00.075480) mnt:     <--
(00.075483) mnt:     [./var/lib/snapd/hostfs/snap/gtk-common-themes/1198](429->387)
(00.075485) mnt:     <--
(00.075487) mnt:     [./var/lib/snapd/hostfs/snap/gtk-common-themes/319](428->387)
(00.075490) mnt:     <--
(00.075492) mnt:     [./var/lib/snapd/hostfs/snap/gnome-calculator/352](427->387)
(00.075494) mnt:     <--
(00.075497) mnt:     [./var/lib/snapd/hostfs/snap/core18/782](426->387)
(00.075499) mnt:     <--
(00.075501) mnt:     [./var/lib/snapd/hostfs/snap/core/6405](425->387)
(00.075504) mnt:     <--
(00.075506) mnt:     [./var/lib/snapd/hostfs/snap/gnome-3-26-1604/82](424->387)
(00.075509) mnt:     <--
(00.075511) mnt:     [./var/lib/snapd/hostfs/snap/gnome-logs/57](423->387)
(00.075513) mnt:     <--
(00.075515) mnt:     [./var/lib/snapd/hostfs/snap/gnome-system-monitor/70](422->387)
(00.075518) mnt:     <--
(00.075520) mnt:     [./var/lib/snapd/hostfs/snap/gnome-characters/206](421->387)
(00.075523) mnt:     <--
(00.075527) mnt:     [./var/lib/snapd/hostfs/snap/gnome-calculator/260](420->387)
(00.075530) mnt:     <--
(00.075532) mnt:     [./var/lib/snapd/hostfs/snap/gnome-logs/37](419->387)
(00.075534) mnt:     <--
(00.075537) mnt:     [./var/lib/snapd/hostfs/snap/gnome-3-26-1604/70](418->387)
(00.075539) mnt:     <--
(00.075541) mnt:     [./var/lib/snapd/hostfs/sys](491->387)
(00.075544) mnt:     <--
(00.075546) mnt:     [./var/lib/snapd/hostfs/proc](489->387)
(00.075548) mnt:     <--
(00.075551) mnt:     [./var/lib/snapd/hostfs/dev](484->387)
(00.075553) mnt:     <--
(00.075555) mnt:     [./var/lib/snapd/hostfs/run](393->387)
(00.075558) mnt:      [./var/lib/snapd/hostfs/run/user/1000](568->393)
(00.075560) mnt:       [./var/lib/snapd/hostfs/run/user/1000/gvfs](583->568)
(00.075563) mnt:       <--
(00.075565) mnt:      <--
(00.075567) mnt:      [./var/lib/snapd/hostfs/run/snapd/ns](395->393)
(00.075570) mnt:      <--
(00.075572) mnt:      [./var/lib/snapd/hostfs/run/lock](394->393)
(00.075574) mnt:      <--
(00.075577) mnt:     <--
(00.075579) mnt:    <--
(00.075581) mnt:   <--
(00.075583) mnt:  <--
(00.075585) mnt:  [./bin/kmod](542->447)
(00.075588) mnt:  <--
(00.075590) mnt:  [./var/log](487->447)
(00.075592) mnt:  <--
(00.075595) mnt:  [./usr/src](486->447)
(00.075597) mnt:  <--
(00.075599) mnt:  [./lib/modules](485->447)
(00.075602) mnt:  <--
(00.075604) mnt:  [./var/tmp](481->447)
(00.075606) mnt:  <--
(00.075609) mnt:  [./var/snap](479->447)
(00.075611) mnt:   [./var/snap/lxd/common/lxd/storage-pools/default](549->479)
(00.075613) mnt:   <--
(00.075616) mnt:   [./var/snap/lxd/common/lxd/devlxd](548->479)
(00.075618) mnt:   <--
(00.075620) mnt:   [./var/snap/lxd/common/shmounts](562->479)
(00.075623) mnt:    [./var/snap/lxd/common/shmounts/containers](546->562)
(00.075625) mnt:    <--
(00.075628) mnt:    [./var/snap/lxd/common/shmounts/lxcfs](544->562)
(00.075630) mnt:    <--
(00.075632) mnt:   <--
(00.075634) mnt:   [./var/snap/lxd/common/ns](559->479)
(00.075637) mnt:   <--
(00.075639) mnt:  <--
(00.075641) mnt:  [./etc](453->447)
(00.075644) mnt:  <--
(00.075646) mnt:  [./run](482->447)
(00.075648) mnt:  <--
(00.075651) mnt:  [./boot](543->447)
(00.075653) mnt:  <--
(00.075655) mnt:  [./snap](493->447)
(00.075658) mnt:   [./snap/core/6673](515->493)
(00.075660) mnt:   <--
(00.075662) mnt:   [./snap/gnome-logs/45](514->493)
(00.075665) mnt:   <--
(00.075667) mnt:   [./snap/gnome-system-monitor/57](513->493)
(00.075669) mnt:   <--
(00.075671) mnt:   [./snap/lxd/10496](512->493)
(00.075674) mnt:   <--
(00.075676) mnt:   [./snap/core/6531](511->493)
(00.075679) mnt:   <--
(00.075681) mnt:   [./snap/gnome-3-28-1804/23](510->493)
(00.075683) mnt:   <--
(00.075685) mnt:   [./snap/gnome-calculator/180](509->493)
(00.075688) mnt:   <--
(00.075690) mnt:   [./snap/gnome-system-monitor/51](508->493)
(00.075693) mnt:   <--
(00.075695) mnt:   [./snap/gnome-characters/103](507->493)
(00.075697) mnt:   <--
(00.075699) mnt:   [./snap/gnome-characters/139](506->493)
(00.075702) mnt:   <--
(00.075704) mnt:   [./snap/gtk-common-themes/1198](505->493)
(00.075707) mnt:   <--
(00.075709) mnt:   [./snap/gtk-common-themes/319](504->493)
(00.075711) mnt:   <--
(00.075713) mnt:   [./snap/gnome-calculator/352](503->493)
(00.075716) mnt:   <--
(00.075718) mnt:   [./snap/core18/782](502->493)
(00.075720) mnt:   <--
(00.075723) mnt:   [./snap/core/6405](501->493)
(00.075725) mnt:   <--
(00.075727) mnt:   [./snap/gnome-3-26-1604/82](500->493)
(00.075730) mnt:   <--
(00.075732) mnt:   [./snap/gnome-logs/57](499->493)
(00.075734) mnt:   <--
(00.075737) mnt:   [./snap/gnome-system-monitor/70](498->493)
(00.075739) mnt:   <--
(00.075741) mnt:   [./snap/gnome-characters/206](497->493)
(00.075744) mnt:   <--
(00.075746) mnt:   [./snap/gnome-calculator/260](496->493)
(00.075748) mnt:   <--
(00.075750) mnt:   [./snap/gnome-logs/37](495->493)
(00.075753) mnt:   <--
(00.075755) mnt:   [./snap/gnome-3-26-1604/70](494->493)
(00.075757) mnt:   <--
(00.075760) mnt:  <--
(00.075762) mnt:  [./mnt](490->447)
(00.075764) mnt:  <--
(00.075767) mnt:  [./media](488->447)
(00.075771) mnt:   [./media/zfs/VBox_GAs_5.2.26](963->488)
(00.075774) mnt:   <--
(00.075776) mnt:  <--
(00.075778) mnt:  [./tmp](478->447)
(00.075781) mnt:   [./tmp](388->478)
(00.075783) mnt:   <--
(00.075785) mnt:  <--
(00.075788) mnt:  [./sys](458->447)
(00.075790) mnt:   [./sys/fs/fuse/connections](477->458)
(00.075792) mnt:   <--
(00.075795) mnt:   [./sys/kernel/config](476->458)
(00.075797) mnt:   <--
(00.075799) mnt:   [./sys/kernel/debug](475->458)
(00.075820) mnt:   <--
(00.075824) mnt:   [./sys/fs/pstore](474->458)
(00.075826) mnt:   <--
(00.075828) mnt:   [./sys/fs/cgroup](460->458)
(00.075831) mnt:    [./sys/fs/cgroup/blkio](473->460)
(00.075833) mnt:    <--
(00.075835) mnt:    [./sys/fs/cgroup/rdma](472->460)
(00.075838) mnt:    <--
(00.075840) mnt:    [./sys/fs/cgroup/freezer](471->460)
(00.075843) mnt:    <--
(00.075845) mnt:    [./sys/fs/cgroup/perf_event](470->460)
(00.075847) mnt:    <--
(00.075849) mnt:    [./sys/fs/cgroup/memory](469->460)
(00.075852) mnt:    <--
(00.075854) mnt:    [./sys/fs/cgroup/devices](468->460)
(00.075856) mnt:    <--
(00.075859) mnt:    [./sys/fs/cgroup/net_cls,net_prio](467->460)
(00.075861) mnt:    <--
(00.075863) mnt:    [./sys/fs/cgroup/cpuset](466->460)
(00.075866) mnt:    <--
(00.075868) mnt:    [./sys/fs/cgroup/pids](465->460)
(00.075870) mnt:    <--
(00.075873) mnt:    [./sys/fs/cgroup/cpu,cpuacct](464->460)
(00.075875) mnt:    <--
(00.075877) mnt:    [./sys/fs/cgroup/hugetlb](463->460)
(00.075880) mnt:    <--
(00.075882) mnt:    [./sys/fs/cgroup/systemd](462->460)
(00.075884) mnt:    <--
(00.075887) mnt:    [./sys/fs/cgroup/unified](461->460)
(00.075889) mnt:    <--
(00.075891) mnt:   <--
(00.075894) mnt:   [./sys/kernel/security](459->458)
(00.075896) mnt:   <--
(00.075898) mnt:  <--
(00.075900) mnt:  [./proc](456->447)
(00.075903) mnt:   [./proc/sys/fs/binfmt_misc](457->456)
(00.075905) mnt:    [./proc/sys/fs/binfmt_misc](709->457)
(00.075908) mnt:    <--
(00.075910) mnt:   <--
(00.075912) mnt:  <--
(00.075915) mnt:  [./root](455->447)
(00.075917) mnt:  <--
(00.075919) mnt:  [./home](454->447)
(00.075922) mnt:  <--
(00.075924) mnt:  [./dev](448->447)
(00.075926) mnt:   [./dev/ptmx](390->448)
(00.075929) mnt:   <--
(00.075931) mnt:   [./dev/hugepages](452->448)
(00.075933) mnt:   <--
(00.075935) mnt:   [./dev/mqueue](451->448)
(00.075938) mnt:   <--
(00.075940) mnt:   [./dev/shm](450->448)
(00.075942) mnt:   <--
(00.075945) mnt:   [./dev/pts](449->448)
(00.075947) mnt:    [./dev/pts](389->449)
(00.075949) mnt:    <--
(00.075952) mnt:   <--
(00.075954) mnt:  <--
(00.075956) mnt: <--
(00.075965) mnt: Found console mapping for ./dev/console mountpoint
(00.075970) mnt: autodetected external mount /var/snap/lxd/common/shmounts/containers/test for ./dev/.lxd-mounts
(00.075973) mnt: Found dev/lxd mapping for ./dev/lxd mountpoint
(00.075975) mnt: Found dev/mqueue mapping for ./dev/mqueue mountpoint
(00.075978) mnt: Found sys/kernel/security mapping for ./sys/kernel/security mountpoint
(00.075981) mnt: Found sys/kernel/debug mapping for ./sys/kernel/debug mountpoint
(00.075983) mnt: Found sys/fs/pstore mapping for ./sys/fs/pstore mountpoint
(00.075986) mnt: Found sys/fs/fuse/connections mapping for ./sys/fs/fuse/connections mountpoint
(00.075989) mnt: Found proc/sys/fs/binfmt_misc mapping for ./proc/sys/fs/binfmt_misc mountpoint
(00.075992) mnt: Found dev/net/tun mapping for ./dev/net/tun mountpoint
(00.075994) mnt: Found dev/fuse mapping for ./dev/fuse mountpoint
(00.075998) mnt: autodetected external mount /dev/zero for ./dev/zero
(00.076002) mnt: autodetected external mount /dev/urandom for ./dev/urandom
(00.076006) mnt: autodetected external mount /dev/tty for ./dev/tty
(00.076010) mnt: autodetected external mount /dev/random for ./dev/random
(00.076014) mnt: autodetected external mount /dev/null for ./dev/null
(00.076017) mnt: autodetected external mount /dev/full for ./dev/full
(00.076022) mnt: autodetected external mount /var/snap/lxd/common/shmounts/lxcfs/proc/uptime for ./proc/uptime
(00.076026) mnt: autodetected external mount /var/snap/lxd/common/shmounts/lxcfs/proc/swaps for ./proc/swaps
(00.076033) mnt: autodetected external mount /var/snap/lxd/common/shmounts/lxcfs/proc/stat for ./proc/stat
(00.076037) mnt: autodetected external mount /var/snap/lxd/common/shmounts/lxcfs/proc/meminfo for ./proc/meminfo
(00.076041) mnt: autodetected external mount /var/snap/lxd/common/shmounts/lxcfs/proc/loadavg for ./proc/loadavg
(00.076045) mnt: autodetected external mount /var/snap/lxd/common/shmounts/lxcfs/proc/diskstats for ./proc/diskstats
(00.076049) mnt: autodetected external mount /var/snap/lxd/common/shmounts/lxcfs/proc/cpuinfo for ./proc/cpuinfo
(00.076055) mnt: Inspecting sharing on 565 shared_id 0 master_id 0 (@./run)
(00.076058) mnt: Inspecting sharing on 564 shared_id 0 master_id 0 (@./dev/ptmx)
(00.076061) mnt:    The mount 563 is bind for 564 (@./dev/pts -> @./dev/ptmx)
(00.076063) mnt: Inspecting sharing on 563 shared_id 0 master_id 0 (@./dev/pts)
(00.076066) mnt: Inspecting sharing on 726 shared_id 0 master_id 0 (@./dev/console)
(00.076069) mnt: Inspecting sharing on 725 shared_id 0 master_id 255 (@./dev/.lxd-mounts)
(00.076071) mnt: Inspecting sharing on 724 shared_id 0 master_id 0 (@./dev/lxd)
(00.076074) mnt: Inspecting sharing on 723 shared_id 0 master_id 26 (@./dev/mqueue)
(00.076077) mnt: Inspecting sharing on 722 shared_id 0 master_id 8 (@./sys/kernel/security)
(00.076079) mnt: Inspecting sharing on 721 shared_id 0 master_id 27 (@./sys/kernel/debug)
(00.076082) mnt: Inspecting sharing on 720 shared_id 0 master_id 12 (@./sys/fs/pstore)
(00.076085) mnt: Inspecting sharing on 719 shared_id 0 master_id 30 (@./sys/fs/fuse/connections)
(00.076087) mnt: Inspecting sharing on 718 shared_id 0 master_id 256 (@./proc/sys/fs/binfmt_misc)
(00.076090) mnt: Inspecting sharing on 706 shared_id 0 master_id 2 (@./dev/net/tun)
(00.076093) mnt:    The mount 705 is bind for 706 (@./dev/fuse -> @./dev/net/tun)
(00.076095) mnt: Inspecting sharing on 705 shared_id 0 master_id 2 (@./dev/fuse)
(00.076098) mnt: Inspecting sharing on 704 shared_id 0 master_id 2 (@./dev/zero)
(00.076113) mnt: Inspecting sharing on 703 shared_id 0 master_id 2 (@./dev/urandom)
(00.076116) mnt: Inspecting sharing on 702 shared_id 0 master_id 2 (@./dev/tty)
(00.076119) mnt: Inspecting sharing on 701 shared_id 0 master_id 2 (@./dev/random)
(00.076121) mnt: Inspecting sharing on 700 shared_id 0 master_id 2 (@./dev/null)
(00.076124) mnt: Inspecting sharing on 699 shared_id 0 master_id 2 (@./dev/full)
(00.076127) mnt: Inspecting sharing on 698 shared_id 0 master_id 254 (@./proc/uptime)
(00.076129) mnt: Inspecting sharing on 697 shared_id 0 master_id 254 (@./proc/swaps)
(00.076132) mnt: Inspecting sharing on 696 shared_id 0 master_id 254 (@./proc/stat)
(00.076135) mnt: Inspecting sharing on 695 shared_id 0 master_id 254 (@./proc/meminfo)
(00.076138) mnt: Inspecting sharing on 694 shared_id 0 master_id 254 (@./proc/loadavg)
(00.076140) mnt: Inspecting sharing on 693 shared_id 0 master_id 254 (@./proc/diskstats)
(00.076143) mnt: Inspecting sharing on 692 shared_id 0 master_id 254 (@./proc/cpuinfo)
(00.076145) mnt: Inspecting sharing on 691 shared_id 0 master_id 0 (@./sys)
(00.076148) mnt: Inspecting sharing on 690 shared_id 0 master_id 0 (@./proc)
(00.076150) mnt: Inspecting sharing on 689 shared_id 0 master_id 0 (@./dev)
(00.076153) mnt: Inspecting sharing on 688 shared_id 0 master_id 0 (@./)
(00.076159) Collecting netns 9/1653
(00.076162) Switching to 1653's net for collecting sockets
(00.076231) unix:   Collected: ino 26297 peer_ino 0 family    1 type    2 state  7 name /dev/log
(00.076236) unix:   Collected: ino 26516 peer_ino 26297 family    1 type    2 state  7 name (null)
(00.076240) unix:   Collected: ino 38227 peer_ino 0 family    1 type    5 state  7 name (null)
(00.076311) inet:   Collected: ino   0x78ad family AF_INET    type SOCK_STREAM    port       22 state TCP_LISTEN       src_addr 0.0.0.0
(00.076393) inet:   Collected: ino   0x91db family AF_INET6   type SOCK_STREAM    port     5001 state TCP_LISTEN       src_addr ::
(00.076397) inet:   Collected: ino   0x78af family AF_INET6   type SOCK_STREAM    port       22 state TCP_LISTEN       src_addr ::
(00.076406) inet:   Collected: ino   0x92ab family AF_INET6   type SOCK_STREAM    port     5001 state TCP_ESTABLISHED  src_addr 2000:1:2:3::5
(00.076426) packet: Collect packet sock 26546 2048
(00.076429) packet:     Got 0 mreqs
(00.076450) netlink: Collect netlink sock 0x60ad
(00.076453) netlink: Collect netlink sock 0x60b5
(00.076456) netlink: Collect netlink sock 0x9552
(00.076458) netlink: Collect netlink sock 0x60ae
(00.076461) netlink: Collect netlink sock 0x60b1
(00.076463) netlink: Collect netlink sock 0x60af
(00.076465) netlink: Collect netlink sock 0x60b0
(00.076482) seccomp: Use SECCOMP_FILTER_FLAG_TSYNC for tid_real 1653
(00.076487) seccomp: Use SECCOMP_FILTER_FLAG_TSYNC for tid_real 2025
(00.076491) seccomp: Use SECCOMP_FILTER_FLAG_TSYNC for tid_real 2083
(00.076497) seccomp: Use SECCOMP_FILTER_FLAG_TSYNC for tid_real 2812
(00.076501) seccomp: Use SECCOMP_FILTER_FLAG_TSYNC for tid_real 2860
(00.076505) seccomp: Use SECCOMP_FILTER_FLAG_TSYNC for tid_real 2865
(00.076516) seccomp: Use SECCOMP_FILTER_FLAG_TSYNC for tid_real 3192
(00.076518) seccomp:     Disable filter on tid_rea 3193, will be propagated
(00.076521) seccomp:     Disable filter on tid_rea 3194, will be propagated
(00.076523) seccomp:     Disable filter on tid_rea 3203, will be propagated
(00.076555) Warn  (criu/image.c:135): Failed to open parent directory
(00.076559) ========================================
(00.076561) Dumping task (pid: 1653)
(00.076563) ========================================
(00.076566) Obtaining task stat ... 
(00.076588) 
(00.076591) Collecting mappings (pid: 1653)
(00.076593) ----------------------------------------
(00.080155) Dumping path for -3 fd via self 12 [/bin/busybox]
(00.080211) vma 55e2abe4b000 borrows vfi from previous 55e2abe3f000
(00.080220) vma 55e2abee6000 borrows vfi from previous 55e2abe4b000
(00.080227) vma 55e2abf07000 borrows vfi from previous 55e2abee6000
(00.080233) vma 55e2abf0b000 borrows vfi from previous 55e2abf07000
(00.080257) Dumping path for -3 fd via self 12 [/lib/ld-musl-x86_64.so.1]
(00.080299) vma 7fcba0dfd000 borrows vfi from previous 7fcba0de8000
(00.080307) vma 7fcba0e43000 borrows vfi from previous 7fcba0dfd000
(00.080314) vma 7fcba0e75000 borrows vfi from previous 7fcba0e43000
(00.080322) vma 7fcba0e76000 borrows vfi from previous 7fcba0e75000
(00.080363) Collected, longest area occupies 155 pages
(00.080366) 0x55e2abe3f000-0x55e2abe4b000 (48K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x1
(00.080369) 0x55e2abe4b000-0x55e2abee6000 (620K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0xc000 reg fp  shmid: 0x1
(00.080373) 0x55e2abee6000-0x55e2abf06000 (128K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xa7000 reg fp  shmid: 0x1
(00.080376) 0x55e2abf07000-0x55e2abf0b000 (16K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xc7000 reg fp  shmid: 0x1
(00.080379) 0x55e2abf0b000-0x55e2abf0c000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0xcb000 reg fp  shmid: 0x1
(00.080381) 0x7fcba0de8000-0x7fcba0dfd000 (84K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x2
(00.080384) 0x7fcba0dfd000-0x7fcba0e43000 (280K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x15000 reg fp  shmid: 0x2
(00.080387) 0x7fcba0e43000-0x7fcba0e75000 (200K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x5b000 reg fp  shmid: 0x2
(00.080390) 0x7fcba0e75000-0x7fcba0e76000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x8c000 reg fp  shmid: 0x2
(00.080393) 0x7fcba0e76000-0x7fcba0e77000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x8d000 reg fp  shmid: 0x2
(00.080396) 0x7fcba0e77000-0x7fcba0e7a000 (12K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.080399) 0x7ffd75406000-0x7ffd75427000 (132K) prot 0x3 flags 0x122 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.080402) 0x7ffd7550d000-0x7ffd75510000 (12K) prot 0x1 flags 0x22 fdflags 0 st 0x1201 off 0 reg vvar ap  shmid: 0
(00.080405) 0x7ffd75510000-0x7ffd75512000 (8K) prot 0x5 flags 0x22 fdflags 0 st 0x209 off 0 reg vdso ap  shmid: 0
(00.080408) 0xffffffffff600000-0xffffffffff601000 (4K) prot 0x5 flags 0x22 fdflags 0 st 0x204 off 0 vsys ap  shmid: 0
(00.080416) ----------------------------------------
(00.080419) 
(00.080421) Collecting fds (pid: 1653)
(00.080423) ----------------------------------------
(00.080434) Found 3 file descriptors
(00.080437) ----------------------------------------
(00.080445) Dump private signals of 1653
(00.080450) Dump shared signals of 1653
(00.080457) Parasite syscall_ip at 0x55e2abe4b000
(00.080523) Set up parasite blob using memfd
(00.080527) Putting parasite blob into 0x7f125b97f000->0x7fcba0ddb000
(00.080552) Dumping general registers for 1653 in native mode
(00.080556) Dumping GP/FPU registers for 1653
(00.080563) x86: xsave runtime structure
(00.080565) x86: -----------------------
(00.080567) x86: cwd:0x37f swd:0 twd:0 fop:0 mxcsr:0x1f80 mxcsr_mask:0xffff
(00.080570) x86: magic1:0x46505853 extended_size:836 xstate_bv:0x7 xstate_size:832
(00.080573) x86: xstate_bv: 0x7
(00.080575) x86: -----------------------
(00.080577) Putting tsock into pid 1653
pie: 1: Running daemon thread leader
pie: 1: __sent ack msg: 2 2 0
pie: 1: Daemon waits for command
(00.080629) Wait for parasite being daemonized...
(00.080631) Wait for ack 2 on daemon socket
(00.080636) Fetched ack: 2 2 0
(00.080638) Parasite 1653 has been switched to daemon mode
pie: 1: __fetched msg: 72 0 0
pie: 1: __sent ack msg: 72 72 0
pie: 1: Daemon waits for command
(00.080661) Sent msg to daemon 72 0 0
(00.080664) Wait for ack 72 on daemon socket
(00.080667) Fetched ack: 72 72 0
(00.080670) vdso: vDSO hint is reliable - omit checking
pie: 1: __fetched msg: 74 0 0
pie: 1: __sent ack msg: 74 74 0
pie: 1: Daemon waits for command
(00.080683) Sent msg to daemon 74 0 0
(00.080686) Wait for ack 74 on daemon socket
(00.080689) Fetched ack: 74 74 0
pie: 1: __fetched msg: 70 0 0
pie: 1: __sent ack msg: 70 70 0
pie: 1: Daemon waits for command
(00.080704) Sent msg to daemon 70 0 0
(00.080707) Wait for ack 70 on daemon socket
(00.080709) Fetched ack: 70 70 0
(00.080712) sid=1 pgid=1 pid=1
(00.080731) 
(00.080735) Dumping opened files (pid: 1653)
(00.080737) ----------------------------------------
pie: 1: __fetched msg: 71 0 0
pie: 1: __sent ack msg: 71 71 0
pie: 1: Daemon waits for command
(00.080755) Sent msg to daemon 71 0 0
(00.080759) Wait for ack 71 on daemon socket
(00.080762) Fetched ack: 71 71 0
(00.080775) 1653 fdinfo 0: pos:                0 flags:           100002/0
(00.080786) tty: Dumping tty 15 with id 0x3
pie: 1: __fetched msg: 73 0 0
pie: 1: __sent ack msg: 73 73 0
pie: 1: Daemon waits for command
(00.080803) Sent msg to daemon 73 0 0
(00.080806) Wait for ack 73 on daemon socket
(00.080809) Fetched ack: 73 73 0
(00.080848) 1653 fdinfo 1: pos:                0 flags:           100002/0
(00.080867) 1653 fdinfo 2: pos:                0 flags:           100002/0
(00.080876) ----------------------------------------
pie: 1: __fetched msg: 65 0 0
pie: 1: __sent ack msg: 65 65 0
pie: 1: Daemon waits for command
(00.080899) Sent msg to daemon 65 0 0
(00.080902) Wait for ack 65 on daemon socket
(00.080905) Fetched ack: 65 65 0
(00.080907) 
(00.080910) Dumping pages (type: 52 pid: 1653)
(00.080912) ----------------------------------------
(00.080914)    Private vmas 155/388 pages
(00.080922) pagemap-cache: created for pid 1653 (takes 4096 bytes)
(00.080926) page-pipe: Create page pipe for 388 segs
(00.080928) page-pipe: Will grow page pipe (iov off is 0)
(00.080954) pagemap-cache: filling VMA 55e2abe3f000-55e2abe4b000 (48K) [l:55e2abe00000 h:55e2ac000000]
(00.080958) pagemap-cache:      55e2abe3f000-55e2abe4b000     nr:1     cov:49152
(00.080962) pagemap-cache:      55e2abe4b000-55e2abee6000     nr:2     cov:684032
(00.080964) pagemap-cache:      55e2abee6000-55e2abf06000     nr:3     cov:815104
(00.080967) pagemap-cache:      55e2abf07000-55e2abf0b000     nr:4     cov:831488
(00.080969) pagemap-cache:      55e2abf0b000-55e2abf0c000     nr:5     cov:835584
(00.080972) pagemap-cache:  cache  mode [l:55e2abe3f000 h:55e2ac000000]
(00.080979) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.092735) page-pipe: Add iov to page pipe (0 iovs, 0/388 total)
(00.092748) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.092761) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.092764) page-pipe: Add iov to page pipe (1 iovs, 1/388 total)
(00.092766) Pagemap generated: 4 pages (0 lazy) 0 holes
(00.092769) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.092771) pagemap-cache: filling VMA 7fcba0de8000-7fcba0dfd000 (84K) [l:7fcba0c00000 h:7fcba0e00000]
(00.092780) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.092782) pagemap-cache: filling VMA 7fcba0dfd000-7fcba0e43000 (280K) [l:7fcba0c00000 h:7fcba0e00000]
(00.092791) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.092793) pagemap-cache: filling VMA 7fcba0e43000-7fcba0e75000 (200K) [l:7fcba0e00000 h:7fcba1000000]
(00.092796) pagemap-cache:      7fcba0e43000-7fcba0e75000     nr:1     cov:204800
(00.092799) pagemap-cache:      7fcba0e75000-7fcba0e76000     nr:2     cov:208896
(00.092801) pagemap-cache:      7fcba0e76000-7fcba0e77000     nr:3     cov:212992
(00.092804) pagemap-cache:      7fcba0e77000-7fcba0e7a000     nr:4     cov:225280
(00.092807) pagemap-cache:  cache  mode [l:7fcba0e43000 h:7fcba1000000]
(00.092811) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.092814) page-pipe: Add iov to page pipe (2 iovs, 2/388 total)
(00.092816) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.092819) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.092821) page-pipe: Will grow page pipe (iov off is 3)
(00.092831) page-pipe: Add iov to page pipe (0 iovs, 3/388 total)
(00.092833) Pagemap generated: 3 pages (0 lazy) 0 holes
(00.092836) pagemap-cache: filling VMA 7ffd75406000-7ffd75427000 (132K) [l:7ffd75400000 h:7ffd75600000]
(00.092838) pagemap-cache:      7ffd75406000-7ffd75427000     nr:1     cov:135168
(00.092841) pagemap-cache:      7ffd7550d000-7ffd75510000     nr:2     cov:147456
(00.092844) pagemap-cache:      7ffd75510000-7ffd75512000     nr:3     cov:155648
(00.092846) pagemap-cache:  cache  mode [l:7ffd75406000 h:7ffd75600000]
(00.092851) page-pipe: Add iov to page pipe (1 iovs, 4/388 total)
(00.092854) page-pipe: Will grow page pipe (iov off is 5)
(00.092858) page-pipe: Add iov to page pipe (0 iovs, 5/388 total)
(00.092860) page-pipe: Will grow page pipe (iov off is 6)
(00.092865) page-pipe: Add iov to page pipe (0 iovs, 6/388 total)
(00.092867) Pagemap generated: 3 pages (0 lazy) 0 holes
(00.092870) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.092872) page-pipe: Will grow page pipe (iov off is 7)
(00.092877) page-pipe: Add iov to page pipe (0 iovs, 7/388 total)
(00.092879) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.092882) page-pipe: Page pipe:
(00.092885) page-pipe: * 5 pipes 8/388 iovs:
(00.092887) page-pipe:  buf 8 pages, 3 iovs, flags: 0 pipe_off: 0 :
(00.092889) page-pipe:      0x55e2abe4b000 1
(00.092892) page-pipe:      0x55e2abf07000 5
(00.092894) page-pipe:      0x7fcba0e75000 2
(00.092896) page-pipe:  buf 4 pages, 2 iovs, flags: 1 pipe_off: 0 :
(00.092899) page-pipe:      0x7fcba0e77000 3
(00.092901) page-pipe:      0x7ffd75424000 1
(00.092903) page-pipe:  buf 1 pages, 1 iovs, flags: 0 pipe_off: 0 :
(00.092906) page-pipe:      0x7ffd75425000 1
(00.092908) page-pipe:  buf 1 pages, 1 iovs, flags: 1 pipe_off: 0 :
(00.092910) page-pipe:      0x7ffd75426000 1
(00.092913) page-pipe:  buf 2 pages, 1 iovs, flags: 0 pipe_off: 0 :
(00.092915) page-pipe:      0x7ffd75510000 2
(00.092917) page-pipe: * 0 holes:
(00.092920) PPB: 8 pages 3 segs 16 pipe 0 off
pie: 1: __fetched msg: 66 0 0
(00.092940) Sent msg to daemon 66 0 0
pie: 1: __sent ack msg: 66 66 0
pie: 1: Daemon waits for command
(00.092959) Wait for ack 66 on daemon socket
(00.092962) Fetched ack: 66 66 0
(00.092965) PPB: 4 pages 2 segs 16 pipe 3 off
pie: 1: __fetched msg: 66 0 0
(00.092973) Sent msg to daemon 66 0 0
pie: 1: __sent ack msg: 66 66 0
pie: 1: Daemon waits for command
(00.092986) Wait for ack 66 on daemon socket
(00.092989) Fetched ack: 66 66 0
(00.092991) PPB: 1 pages 1 segs 16 pipe 5 off
pie: 1: __fetched msg: 66 0 0
(00.092999) Sent msg to daemon 66 0 0
pie: 1: __sent ack msg: 66 66 0
pie: 1: Daemon waits for command
(00.093011) Wait for ack 66 on daemon socket
(00.093014) Fetched ack: 66 66 0
(00.093020) PPB: 1 pages 1 segs 16 pipe 6 off
pie: 1: __fetched msg: 66 0 0
(00.093029) Sent msg to daemon 66 0 0
pie: 1: __sent ack msg: 66 66 0
pie: 1: Daemon waits for command
(00.093041) Wait for ack 66 on daemon socket
(00.093044) Fetched ack: 66 66 0
(00.093047) PPB: 2 pages 1 segs 16 pipe 7 off
pie: 1: __fetched msg: 66 0 0
(00.093055) Sent msg to daemon 66 0 0
pie: 1: __sent ack msg: 66 66 0
pie: 1: Daemon waits for command
(00.093069) Wait for ack 66 on daemon socket
(00.093072) Fetched ack: 66 66 0
(00.093075) Transferring pages:
(00.093077)     buf 8/3
(00.093080)     p 0x55e2abe4b000 [1]
(00.093094)     p 0x55e2abf07000 [5]
(00.093106)     p 0x7fcba0e75000 [2]
(00.093114)     buf 4/2
(00.093117)     p 0x7fcba0e77000 [3]
(00.093125)     p 0x7ffd75424000 [1]
(00.093130)     buf 1/1
(00.093132)     p 0x7ffd75425000 [1]
(00.093137)     buf 1/1
(00.093139)     p 0x7ffd75426000 [1]
(00.093144)     buf 2/1
(00.093146)     p 0x7ffd75510000 [2]
(00.093159) page-pipe: Killing page pipe
(00.093173) ----------------------------------------
pie: 1: __fetched msg: 65 0 0
pie: 1: __sent ack msg: 65 65 0
pie: 1: Daemon waits for command
(00.096651) Sent msg to daemon 65 0 0
(00.096664) Wait for ack 65 on daemon socket
(00.096670) Fetched ack: 65 65 0
pie: 1: __fetched msg: 67 0 0
pie: 1: __sent ack msg: 67 67 0
pie: 1: Daemon waits for command
(00.096721) Sent msg to daemon 67 0 0
(00.096725) Wait for ack 67 on daemon socket
(00.096729) Fetched ack: 67 67 0
pie: 1: __fetched msg: 68 0 0
pie: 1: __sent ack msg: 68 68 0
pie: 1: Daemon waits for command
(00.096754) Sent msg to daemon 68 0 0
(00.096758) Wait for ack 68 on daemon socket
(00.096762) Fetched ack: 68 68 0
pie: 1: __fetched msg: 69 0 0
pie: 1: __sent ack msg: 69 69 0
pie: 1: Daemon waits for command
(00.096823) Sent msg to daemon 69 0 0
(00.096828) Wait for ack 69 on daemon socket
(00.096832) Fetched ack: 69 69 0
(00.096835) 
(00.096839) Dumping core (pid: 1653)
(00.096842) ----------------------------------------
(00.096845) Obtaining personality ... 
pie: 1: __fetched msg: 64 0 0
pie: 1: __sent ack msg: 64 64 0
pie: 1: Daemon waits for command
(00.096919) Sent msg to daemon 64 0 0
(00.096922) Wait for ack 64 on daemon socket
(00.096926) Fetched ack: 64 64 0
(00.096950) 1653 has lsm profile lxd-test_</var/snap/lxd/common/lxd>//&:lxd-test_<var-snap-lxd-common-lxd>:unconfined
(00.096956) 1653 has 0 sched policy
(00.096963)     dumping 0 nice for 1653
(00.096968) dumping /proc/1653/loginuid
(00.096977) dumping /proc/1653/oom_score_adj
pie: 1: __fetched msg: 76 0 0
pie: 1: __sent ack msg: 76 76 0
pie: 1: Daemon waits for command
(00.097037) Sent msg to daemon 76 0 0
(00.097042) Wait for ack 76 on daemon socket
(00.097046) Fetched ack: 76 76 0
(00.097050) cg: Dumping cgroups for 1653
(00.097098) cg:  `- New css ID 2
(00.097103) cg:     `- [blkio] -> [/lxc.payload/test] [17]
(00.097107) cg:     `- [cpu,cpuacct] -> [/lxc.payload/test] [17]
(00.097110) cg:     `- [cpuset] -> [/lxc.payload/test] [17]
(00.097113) cg:     `- [devices] -> [/lxc.payload/test] [17]
(00.097117) cg:     `- [freezer] -> [/lxc.payload/test] [17]
(00.097120) cg:     `- [hugetlb] -> [/lxc.payload/test] [17]
(00.097123) cg:     `- [memory] -> [/lxc.payload/test] [17]
(00.097127) cg:     `- [name=systemd] -> [/lxc.payload/test] [17]
(00.097130) cg:     `- [net_cls,net_prio] -> [/lxc.payload/test] [17]
(00.097133) cg:     `- [perf_event] -> [/lxc.payload/test] [17]
(00.097137) cg:     `- [pids] -> [/lxc.payload/test] [17]
(00.097140) cg:     `- [rdma] -> [/lxc.payload/test] [17]
(00.097280) cg: adding cgroup /proc/self/fd/15/lxc.payload/test
(00.097331) cg: Dumping value 500 from /proc/self/fd/15/lxc.payload/test/blkio.weight
(00.097347) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/cgroup.clone_children
(00.097360) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/notify_on_release
(00.097375) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/cgroup.procs
(00.097387) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/tasks
(00.097537) cg: adding cgroup /proc/self/fd/15/lxc.payload/test
(00.097552) cg: Dumping value 1024 from /proc/self/fd/15/lxc.payload/test/cpu.shares
(00.097569) cg: Dumping value 100000 from /proc/self/fd/15/lxc.payload/test/cpu.cfs_period_us
(00.097618) cg: Dumping value -1 from /proc/self/fd/15/lxc.payload/test/cpu.cfs_quota_us
(00.097627) cg: Couldn't open /proc/self/fd/15/lxc.payload/test/cpu.rt_period_us. This cgroup property may not exist on this kernel
(00.097632) cg: Couldn't open /proc/self/fd/15/lxc.payload/test/cpu.rt_runtime_us. This cgroup property may not exist on this kernel
(00.097644) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/cgroup.clone_children
(00.097660) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/notify_on_release
(00.097673) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/cgroup.procs
(00.097684) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/tasks
(00.097695) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/cgroup.clone_children
(00.097705) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/notify_on_release
(00.097715) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/cgroup.procs
(00.097725) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/tasks
(00.097827) cg: adding cgroup /proc/self/fd/15/lxc.payload/test
(00.097842) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/cpuset.cpus
(00.097855) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/cpuset.mems
(00.097870) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/cpuset.memory_migrate
(00.097884) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/cpuset.cpu_exclusive
(00.097896) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/cpuset.mem_exclusive
(00.097908) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/cpuset.mem_hardwall
(00.097925) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/cpuset.memory_spread_page
(00.097939) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/cpuset.memory_spread_slab
(00.097950) cg: Dumping value 1 from /proc/self/fd/15/lxc.payload/test/cpuset.sched_load_balance
(00.097964) cg: Dumping value -1 from /proc/self/fd/15/lxc.payload/test/cpuset.sched_relax_domain_level
(00.097975) cg: Dumping value 1 from /proc/self/fd/15/lxc.payload/test/cgroup.clone_children
(00.097986) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/notify_on_release
(00.097995) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/cgroup.procs
(00.098005) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/tasks
(00.098090) cg: adding cgroup /proc/self/fd/15/lxc.payload/test
(00.098105) cg: Dumping value a *:* rwm from /proc/self/fd/15/lxc.payload/test/devices.list
(00.098116) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/cgroup.clone_children
(00.098127) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/notify_on_release
(00.098137) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/cgroup.procs
(00.098146) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/tasks
(00.098218) cg: adding cgroup /proc/self/fd/15/lxc.payload/test
(00.098231) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/cgroup.clone_children
(00.098242) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/notify_on_release
(00.098252) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/cgroup.procs
(00.098262) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/tasks
(00.098333) cg: adding cgroup /proc/self/fd/15/lxc.payload/test
(00.098347) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/cgroup.clone_children
(00.098358) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/notify_on_release
(00.098367) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/cgroup.procs
(00.098377) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/tasks
(00.098452) cg: adding cgroup /proc/self/fd/15/lxc.payload/test
(00.098466) cg: Dumping value 9223372036854771712 from /proc/self/fd/15/lxc.payload/test/memory.limit_in_bytes
(00.098472) cg: Couldn't open /proc/self/fd/15/lxc.payload/test/memory.memsw.limit_in_bytes. This cgroup property may not exist on this kernel
(00.098488) cg: Dumping value 60 from /proc/self/fd/15/lxc.payload/test/memory.swappiness
(00.098500) cg: Dumping value 9223372036854771712 from /proc/self/fd/15/lxc.payload/test/memory.soft_limit_in_bytes
(00.098511) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/memory.move_charge_at_immigrate
(00.098525) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/memory.oom_control
(00.098537) cg: Dumping value 1 from /proc/self/fd/15/lxc.payload/test/memory.use_hierarchy
(00.098547) cg: Dumping value 9223372036854771712 from /proc/self/fd/15/lxc.payload/test/memory.kmem.limit_in_bytes
(00.098594) cg: Dumping value 9223372036854771712 from /proc/self/fd/15/lxc.payload/test/memory.kmem.tcp.limit_in_bytes
(00.098620) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/cgroup.clone_children
(00.098637) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/notify_on_release
(00.098650) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/cgroup.procs
(00.098663) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/tasks
(00.098809) cg: adding cgroup /proc/self/fd/15/lxc.payload/test
(00.098825) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/cgroup.clone_children
(00.098836) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/notify_on_release
(00.098846) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/cgroup.procs
(00.098855) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/tasks
(00.098928) cg: adding cgroup /proc/self/fd/15/lxc.payload/test
(00.098942) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/net_cls.classid
(00.098953) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/cgroup.clone_children
(00.098964) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/notify_on_release
(00.098974) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/cgroup.procs
(00.098983) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/tasks
(00.098997) cg: Dumping value lo 0
enp0s3 0
enp0s8 0
ovs-system 0
ovs-1 0
lxdbr0 0
veth11FRP8 0 from /proc/self/fd/15/lxc.payload/test/net_prio.ifpriomap
(00.099007) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/cgroup.clone_children
(00.099017) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/notify_on_release
(00.099026) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/cgroup.procs
(00.099034) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/tasks
(00.099106) cg: adding cgroup /proc/self/fd/15/lxc.payload/test
(00.099120) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/cgroup.clone_children
(00.099131) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/notify_on_release
(00.099141) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/cgroup.procs
(00.099150) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/tasks
(00.099216) cg: adding cgroup /proc/self/fd/15/lxc.payload/test
(00.099230) cg: Dumping value max from /proc/self/fd/15/lxc.payload/test/pids.max
(00.099241) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/cgroup.clone_children
(00.099252) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/notify_on_release
(00.099262) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/cgroup.procs
(00.099271) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/tasks
(00.099342) cg: adding cgroup /proc/self/fd/15/lxc.payload/test
(00.099356) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/cgroup.clone_children
(00.099367) cg: Dumping value 0 from /proc/self/fd/15/lxc.payload/test/notify_on_release
(00.099376) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/cgroup.procs
(00.099385) cg: Dumping value  from /proc/self/fd/15/lxc.payload/test/tasks
(00.099399) cg: Set 2 is root one
(00.099442) ----------------------------------------
(00.099456) Waiting for 1653 to trap
(00.099462) Daemon 1653 exited trapping
(00.099468) Sent msg to daemon 3 0 0
(00.099474) Force no-breakpoints restore
(00.099482) 1653 was trapped
(00.099485) 1653 (native) is going to execute the syscall 45, required is 15
(00.099495) 1653 was trapped
(00.099499) `- Expecting exit
(00.099505) 1653 was trapped
(00.099508) 1653 (native) is going to execute the syscall 186, required is 15
(00.099514) 1653 was trapped
(00.099516) `- Expecting exit
(00.099522) 1653 was trapped
(00.099525) 1653 (native) is going to execute the syscall 1, required is 15
pie: 1: __fetched msg: 3 0 0
(00.099533) 1653 was trapped
(00.099563) `- Expecting exit
(00.099577) 1653 was trapped
(00.099581) 1653 (native) is going to execute the syscall 186, required is 15
(00.099588) 1653 was trapped
(00.099591) `- Expecting exit
(00.099596) 1653 was trapped
(00.099599) 1653 (native) is going to execute the syscall 186, required is 15
(00.099605) 1653 was trapped
(00.099608) `- Expecting exit
(00.099613) 1653 was trapped
(00.099616) 1653 (native) is going to execute the syscall 1, required is 15
pie: 1: 1: new_sp=0x7fcba0de2008 ip 0x7fcba0e3ad23
(00.099624) 1653 was trapped
(00.099627) `- Expecting exit
(00.099632) 1653 was trapped
(00.099635) 1653 (native) is going to execute the syscall 3, required is 15
(00.099645) 1653 was trapped
(00.099648) `- Expecting exit
(00.099653) 1653 was trapped
(00.099656) 1653 (native) is going to execute the syscall 3, required is 15
(00.099662) 1653 was trapped
(00.099664) `- Expecting exit
(00.099670) 1653 was trapped
(00.099673) 1653 (native) is going to execute the syscall 15, required is 15
(00.099679) 1653 was stopped
(00.099720) 
(00.099724) Dumping mm (pid: 1653)
(00.099726) ----------------------------------------
(00.099729) 0x55e2abe3f000-0x55e2abe4b000 (48K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x1
(00.099733) 0x55e2abe4b000-0x55e2abee6000 (620K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0xc000 reg fp  shmid: 0x1
(00.099736) 0x55e2abee6000-0x55e2abf06000 (128K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xa7000 reg fp  shmid: 0x1
(00.099739) 0x55e2abf07000-0x55e2abf0b000 (16K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xc7000 reg fp  shmid: 0x1
(00.099742) 0x55e2abf0b000-0x55e2abf0c000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0xcb000 reg fp  shmid: 0x1
(00.099745) 0x7fcba0de8000-0x7fcba0dfd000 (84K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x2
(00.099748) 0x7fcba0dfd000-0x7fcba0e43000 (280K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x15000 reg fp  shmid: 0x2
(00.099751) 0x7fcba0e43000-0x7fcba0e75000 (200K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x5b000 reg fp  shmid: 0x2
(00.099755) 0x7fcba0e75000-0x7fcba0e76000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x8c000 reg fp  shmid: 0x2
(00.099758) 0x7fcba0e76000-0x7fcba0e77000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x8d000 reg fp  shmid: 0x2
(00.099761) 0x7fcba0e77000-0x7fcba0e7a000 (12K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.099764) 0x7ffd75406000-0x7ffd75427000 (132K) prot 0x3 flags 0x122 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.099767) 0x7ffd7550d000-0x7ffd75510000 (12K) prot 0x1 flags 0x22 fdflags 0 st 0x1201 off 0 reg vvar ap  shmid: 0
(00.099770) 0x7ffd75510000-0x7ffd75512000 (8K) prot 0x5 flags 0x22 fdflags 0 st 0x209 off 0 reg vdso ap  shmid: 0
(00.099773) 0xffffffffff600000-0xffffffffff601000 (4K) prot 0x5 flags 0x22 fdflags 0 st 0x204 off 0 vsys ap  shmid: 0
(00.099776) Obtaining task auvx ...
(00.099845) Dumping path for -3 fd via self 16 [/]
(00.099862) Dumping task cwd id 0x4 root id 0x4
(00.099902) ========================================
(00.099906) Dumping task (pid: 2025)
(00.099908) ========================================
(00.099910) Obtaining task stat ... 
(00.099932) 
(00.099935) Collecting mappings (pid: 2025)
(00.099937) ----------------------------------------
(00.100010) vma 55ed82152000 borrows vfi from previous 55ed82146000
(00.100018) vma 55ed821ed000 borrows vfi from previous 55ed82152000
(00.100025) vma 55ed8220e000 borrows vfi from previous 55ed821ed000
(00.100032) vma 55ed82212000 borrows vfi from previous 55ed8220e000
(00.100105) vma 7fc6d928f000 borrows vfi from previous 7fc6d927a000
(00.100114) vma 7fc6d92d5000 borrows vfi from previous 7fc6d928f000
(00.100126) vma 7fc6d9307000 borrows vfi from previous 7fc6d92d5000
(00.100133) vma 7fc6d9308000 borrows vfi from previous 7fc6d9307000
(00.100172) Collected, longest area occupies 155 pages
(00.100175) 0x55ed82146000-0x55ed82152000 (48K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x1
(00.100178) 0x55ed82152000-0x55ed821ed000 (620K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0xc000 reg fp  shmid: 0x1
(00.100181) 0x55ed821ed000-0x55ed8220d000 (128K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xa7000 reg fp  shmid: 0x1
(00.100184) 0x55ed8220e000-0x55ed82212000 (16K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xc7000 reg fp  shmid: 0x1
(00.100187) 0x55ed82212000-0x55ed82213000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0xcb000 reg fp  shmid: 0x1
(00.100190) 0x7fc6d927a000-0x7fc6d928f000 (84K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x2
(00.100193) 0x7fc6d928f000-0x7fc6d92d5000 (280K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x15000 reg fp  shmid: 0x2
(00.100196) 0x7fc6d92d5000-0x7fc6d9307000 (200K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x5b000 reg fp  shmid: 0x2
(00.100199) 0x7fc6d9307000-0x7fc6d9308000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x8c000 reg fp  shmid: 0x2
(00.100201) 0x7fc6d9308000-0x7fc6d9309000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x8d000 reg fp  shmid: 0x2
(00.100204) 0x7fc6d9309000-0x7fc6d930c000 (12K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.100207) 0x7ffc8e1ae000-0x7ffc8e1cf000 (132K) prot 0x3 flags 0x122 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.100210) 0x7ffc8e1d0000-0x7ffc8e1d3000 (12K) prot 0x1 flags 0x22 fdflags 0 st 0x1201 off 0 reg vvar ap  shmid: 0
(00.100213) 0x7ffc8e1d3000-0x7ffc8e1d5000 (8K) prot 0x5 flags 0x22 fdflags 0 st 0x209 off 0 reg vdso ap  shmid: 0
(00.100216) 0xffffffffff600000-0xffffffffff601000 (4K) prot 0x5 flags 0x22 fdflags 0 st 0x204 off 0 vsys ap  shmid: 0
(00.100219) ----------------------------------------
(00.100221) 
(00.100223) Collecting fds (pid: 2025)
(00.100226) ----------------------------------------
(00.100237) Found 4 file descriptors
(00.100240) ----------------------------------------
(00.100247) Dump private signals of 2025
(00.100252) Dump shared signals of 2025
(00.100258) Parasite syscall_ip at 0x55ed82152000
(00.100314) Set up parasite blob using memfd
(00.100318) Putting parasite blob into 0x7f125b97f000->0x7fc6d926d000
(00.100342) Dumping general registers for 2025 in native mode
(00.100346) Dumping GP/FPU registers for 2025
(00.100353) x86: xsave runtime structure
(00.100355) x86: -----------------------
(00.100358) x86: cwd:0x37f swd:0 twd:0 fop:0 mxcsr:0x1f80 mxcsr_mask:0xffff
(00.100360) x86: magic1:0x46505853 extended_size:836 xstate_bv:0x7 xstate_size:832
(00.100363) x86: xstate_bv: 0x7
(00.100365) x86: -----------------------
(00.100367) Putting tsock into pid 2025
pie: 219: Running daemon thread leader
pie: 219: __sent ack msg: 2 2 0
pie: 219: Daemon waits for command
(00.100742) Wait for parasite being daemonized...
(00.100746) Wait for ack 2 on daemon socket
(00.100749) Fetched ack: 2 2 0
(00.100752) Parasite 2025 has been switched to daemon mode
(00.100754) vdso: vDSO hint is reliable - omit checking
pie: 219: __fetched msg: 74 0 0
pie: 219: __sent ack msg: 74 74 0
pie: 219: Daemon waits for command
(00.100768) Sent msg to daemon 74 0 0
(00.100771) Wait for ack 74 on daemon socket
(00.100774) Fetched ack: 74 74 0
pie: 219: __fetched msg: 70 0 0
pie: 219: __sent ack msg: 70 70 0
pie: 219: Daemon waits for command
(00.100791) Sent msg to daemon 70 0 0
(00.100793) Wait for ack 70 on daemon socket
(00.100796) Fetched ack: 70 70 0
(00.100799) sid=219 pgid=219 pid=219
(00.100818) 
(00.100822) Dumping opened files (pid: 2025)
(00.100824) ----------------------------------------
pie: 219: __fetched msg: 71 0 0
pie: 219: __sent ack msg: 71 71 0
pie: 219: Daemon waits for command
(00.100843) Sent msg to daemon 71 0 0
(00.100848) Wait for ack 71 on daemon socket
(00.100851) Fetched ack: 71 71 0
(00.100864) 2025 fdinfo 0: pos:                0 flags:                2/0
(00.100877) sockets: Searching for socket 0x66b9 family 1
(00.100897) sockets: No filter for socket
(00.100900) unix: Dumping unix socket at 0
(00.100903) unix:   Dumping: ino 26297 peer_ino 0 family    1 type    2 state  7 name /dev/log
(00.100909) unix:   Dumped: id 0x5 ino 26297 peer 0 type 2 state 7 name 9 bytes
(00.100956) 2025 fdinfo 1: pos:                0 flags:           100002/0
(00.100967) Dumping path for 1 fd via self 16 [/dev/null]
(00.100980) 2025 fdinfo 2: pos:                0 flags:           100002/0
(00.100992) 2025 fdinfo 3: pos:            0xc16 flags:           106001/0
(00.101000) Dumping path for 3 fd via self 19 [/var/log/messages]
(00.101007) ----------------------------------------
pie: 219: __fetched msg: 65 0 0
pie: 219: __sent ack msg: 65 65 0
pie: 219: Daemon waits for command
(00.104476) Sent msg to daemon 65 0 0
(00.104482) Wait for ack 65 on daemon socket
(00.104486) Fetched ack: 65 65 0
(00.104488) 
(00.104491) Dumping pages (type: 52 pid: 2025)
(00.104493) ----------------------------------------
(00.104496)    Private vmas 155/388 pages
(00.104503) pagemap-cache: created for pid 2025 (takes 4096 bytes)
(00.104506) page-pipe: Create page pipe for 388 segs
(00.104509) page-pipe: Will grow page pipe (iov off is 0)
(00.104538) pagemap-cache: filling VMA 55ed82146000-55ed82152000 (48K) [l:55ed82000000 h:55ed82200000]
(00.104547) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.104550) pagemap-cache: filling VMA 55ed82152000-55ed821ed000 (620K) [l:55ed82000000 h:55ed82200000]
(00.104554) page-pipe: Add iov to page pipe (0 iovs, 0/388 total)
(00.104557) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.104560) pagemap-cache: filling VMA 55ed821ed000-55ed8220d000 (128K) [l:55ed82000000 h:55ed82200000]
(00.104566) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.104568) pagemap-cache: filling VMA 55ed8220e000-55ed82212000 (16K) [l:55ed82200000 h:55ed82400000]
(00.104571) pagemap-cache:      55ed8220e000-55ed82212000     nr:1     cov:16384
(00.104574) pagemap-cache:      55ed82212000-55ed82213000     nr:2     cov:20480
(00.104576) pagemap-cache:  cache  mode [l:55ed8220e000 h:55ed82400000]
(00.104581) page-pipe: Add iov to page pipe (1 iovs, 1/388 total)
(00.104583) Pagemap generated: 4 pages (0 lazy) 0 holes
(00.104586) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.104588) pagemap-cache: filling VMA 7fc6d927a000-7fc6d928f000 (84K) [l:7fc6d9200000 h:7fc6d9400000]
(00.104591) pagemap-cache:      7fc6d927a000-7fc6d928f000     nr:1     cov:86016
(00.104594) pagemap-cache:      7fc6d928f000-7fc6d92d5000     nr:2     cov:372736
(00.104596) pagemap-cache:      7fc6d92d5000-7fc6d9307000     nr:3     cov:577536
(00.104599) pagemap-cache:      7fc6d9307000-7fc6d9308000     nr:4     cov:581632
(00.104601) pagemap-cache:      7fc6d9308000-7fc6d9309000     nr:5     cov:585728
(00.104604) pagemap-cache:      7fc6d9309000-7fc6d930c000     nr:6     cov:598016
(00.104607) pagemap-cache:  cache  mode [l:7fc6d927a000 h:7fc6d9400000]
(00.104613) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.104616) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.104618) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.104621) page-pipe: Add iov to page pipe (2 iovs, 2/388 total)
(00.104623) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.104626) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.104628) page-pipe: Will grow page pipe (iov off is 3)
(00.104633) page-pipe: Add iov to page pipe (0 iovs, 3/388 total)
(00.104635) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.104638) pagemap-cache: filling VMA 7ffc8e1ae000-7ffc8e1cf000 (132K) [l:7ffc8e000000 h:7ffc8e200000]
(00.104642) page-pipe: Will grow page pipe (iov off is 4)
(00.104646) page-pipe: Add iov to page pipe (0 iovs, 4/388 total)
(00.104649) page-pipe: Will grow page pipe (iov off is 5)
(00.104653) page-pipe: Add iov to page pipe (0 iovs, 5/388 total)
(00.104655) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.104658) pagemap-cache: filling VMA 7ffc8e1d0000-7ffc8e1d3000 (12K) [l:7ffc8e000000 h:7ffc8e200000]
(00.104661) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.104668) pagemap-cache: filling VMA 7ffc8e1d3000-7ffc8e1d5000 (8K) [l:7ffc8e000000 h:7ffc8e200000]
(00.104672) page-pipe: Will grow page pipe (iov off is 6)
(00.104676) page-pipe: Add iov to page pipe (0 iovs, 6/388 total)
(00.104679) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.104682) page-pipe: Page pipe:
(00.104684) page-pipe: * 5 pipes 7/388 iovs:
(00.104686) page-pipe:  buf 8 pages, 3 iovs, flags: 0 pipe_off: 0 :
(00.104689) page-pipe:      0x55ed82152000 1
(00.104691) page-pipe:      0x55ed8220e000 5
(00.104693) page-pipe:      0x7fc6d9307000 2
(00.104696) page-pipe:  buf 2 pages, 1 iovs, flags: 1 pipe_off: 0 :
(00.104698) page-pipe:      0x7fc6d930a000 2
(00.104700) page-pipe:  buf 1 pages, 1 iovs, flags: 0 pipe_off: 0 :
(00.104703) page-pipe:      0x7ffc8e1cd000 1
(00.104705) page-pipe:  buf 1 pages, 1 iovs, flags: 1 pipe_off: 0 :
(00.104707) page-pipe:      0x7ffc8e1ce000 1
(00.104710) page-pipe:  buf 2 pages, 1 iovs, flags: 0 pipe_off: 0 :
(00.104712) page-pipe:      0x7ffc8e1d3000 2
(00.104714) page-pipe: * 0 holes:
(00.104716) PPB: 8 pages 3 segs 16 pipe 0 off
pie: 219: __fetched msg: 66 0 0
(00.104729) Sent msg to daemon 66 0 0
pie: 219: __sent ack msg: 66 66 0
pie: 219: Daemon waits for command
(00.104745) Wait for ack 66 on daemon socket
(00.104748) Fetched ack: 66 66 0
(00.104751) PPB: 2 pages 1 segs 16 pipe 3 off
pie: 219: __fetched msg: 66 0 0
(00.104759) Sent msg to daemon 66 0 0
pie: 219: __sent ack msg: 66 66 0
pie: 219: Daemon waits for command
(00.104771) Wait for ack 66 on daemon socket
(00.104774) Fetched ack: 66 66 0
(00.104777) PPB: 1 pages 1 segs 16 pipe 4 off
pie: 219: __fetched msg: 66 0 0
(00.104785) Sent msg to daemon 66 0 0
pie: 219: __sent ack msg: 66 66 0
pie: 219: Daemon waits for command
(00.104797) Wait for ack 66 on daemon socket
(00.104800) Fetched ack: 66 66 0
(00.104802) PPB: 1 pages 1 segs 16 pipe 5 off
pie: 219: __fetched msg: 66 0 0
(00.104810) Sent msg to daemon 66 0 0
pie: 219: __sent ack msg: 66 66 0
pie: 219: Daemon waits for command
(00.104823) Wait for ack 66 on daemon socket
(00.104826) Fetched ack: 66 66 0
(00.104828) PPB: 2 pages 1 segs 16 pipe 6 off
pie: 219: __fetched msg: 66 0 0
(00.104836) Sent msg to daemon 66 0 0
pie: 219: __sent ack msg: 66 66 0
pie: 219: Daemon waits for command
(00.104850) Wait for ack 66 on daemon socket
(00.104853) Fetched ack: 66 66 0
(00.104855) Transferring pages:
(00.104857)     buf 8/3
(00.104860)     p 0x55ed82152000 [1]
(00.104868)     p 0x55ed8220e000 [5]
(00.104881)     p 0x7fc6d9307000 [2]
(00.104887)     buf 2/1
(00.104890)     p 0x7fc6d930a000 [2]
(00.104896)     buf 1/1
(00.104898)     p 0x7ffc8e1cd000 [1]
(00.104903)     buf 1/1
(00.104905)     p 0x7ffc8e1ce000 [1]
(00.104910)     buf 2/1
(00.104913)     p 0x7ffc8e1d3000 [2]
(00.104925) page-pipe: Killing page pipe
(00.104935) ----------------------------------------
pie: 219: __fetched msg: 65 0 0
pie: 219: __sent ack msg: 65 65 0
pie: 219: Daemon waits for command
(00.104950) Sent msg to daemon 65 0 0
(00.104952) Wait for ack 65 on daemon socket
(00.104955) Fetched ack: 65 65 0
pie: 219: __fetched msg: 67 0 0
pie: 219: __sent ack msg: 67 67 0
pie: 219: Daemon waits for command
(00.104986) Sent msg to daemon 67 0 0
(00.104989) Wait for ack 67 on daemon socket
(00.104991) Fetched ack: 67 67 0
pie: 219: __fetched msg: 68 0 0
pie: 219: __sent ack msg: 68 68 0
pie: 219: Daemon waits for command
(00.105009) Sent msg to daemon 68 0 0
(00.105012) Wait for ack 68 on daemon socket
(00.105014) Fetched ack: 68 68 0
pie: 219: __fetched msg: 69 0 0
pie: 219: __sent ack msg: 69 69 0
pie: 219: Daemon waits for command
(00.105027) Sent msg to daemon 69 0 0
(00.105030) Wait for ack 69 on daemon socket
(00.105033) Fetched ack: 69 69 0
(00.105035) 
(00.105037) Dumping core (pid: 2025)
(00.105040) ----------------------------------------
(00.105042) Obtaining personality ... 
pie: 219: __fetched msg: 64 0 0
pie: 219: __sent ack msg: 64 64 0
pie: 219: Daemon waits for command
(00.105088) Sent msg to daemon 64 0 0
(00.105091) Wait for ack 64 on daemon socket
(00.105094) Fetched ack: 64 64 0
(00.105108) 2025 has lsm profile lxd-test_</var/snap/lxd/common/lxd>//&:lxd-test_<var-snap-lxd-common-lxd>:unconfined
(00.105117) 2025 has 0 sched policy
(00.105120)     dumping 0 nice for 2025
(00.105123) dumping /proc/2025/loginuid
(00.105129) dumping /proc/2025/oom_score_adj
(00.105140) cg: Dumping cgroups for 2025
(00.105165) cg:  `- New css ID 3
(00.105168) cg:     `- [blkio] -> [/lxc.payload/test] [0]
(00.105171) cg:     `- [cpu,cpuacct] -> [/lxc.payload/test] [0]
(00.105173) cg:     `- [cpuset] -> [/lxc.payload/test] [0]
(00.105175) cg:     `- [devices] -> [/lxc.payload/test] [0]
(00.105178) cg:     `- [freezer] -> [/lxc.payload/test] [0]
(00.105180) cg:     `- [hugetlb] -> [/lxc.payload/test] [0]
(00.105182) cg:     `- [memory] -> [/lxc.payload/test] [0]
(00.105185) cg:     `- [name=systemd] -> [/lxc.payload/test] [0]
(00.105187) cg:     `- [net_cls,net_prio] -> [/lxc.payload/test] [0]
(00.105189) cg:     `- [perf_event] -> [/lxc.payload/test] [0]
(00.105192) cg:     `- [pids] -> [/lxc.payload/test] [0]
(00.105194) cg:     `- [rdma] -> [/lxc.payload/test] [0]
(00.105274) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.105382) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.105491) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.105574) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.105644) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.105717) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.105789) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.105883) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.105949) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.106019) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.106086) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.106155) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.106169) cg: Set 3 is a stray
(00.106211) ----------------------------------------
(00.106221) Waiting for 2025 to trap
(00.106225) Daemon 2025 exited trapping
(00.106230) Sent msg to daemon 3 0 0
(00.106235) Force no-breakpoints restore
(00.106241) 2025 was trapped
(00.106245) 2025 (native) is going to execute the syscall 45, required is 15
(00.106252) 2025 was trapped
(00.106254) `- Expecting exit
(00.106260) 2025 was trapped
(00.106263) 2025 (native) is going to execute the syscall 186, required is 15
(00.106268) 2025 was trapped
(00.106270) `- Expecting exit
(00.106276) 2025 was trapped
(00.106279) 2025 (native) is going to execute the syscall 1, required is 15
pie: 219: __fetched msg: 3 0 0
(00.106286) 2025 was trapped
(00.106289) `- Expecting exit
(00.106294) 2025 was trapped
(00.106297) 2025 (native) is going to execute the syscall 186, required is 15
(00.106303) 2025 was trapped
(00.106305) `- Expecting exit
(00.106310) 2025 was trapped
(00.106313) 2025 (native) is going to execute the syscall 186, required is 15
(00.106318) 2025 was trapped
(00.106320) `- Expecting exit
(00.106326) 2025 was trapped
(00.106329) 2025 (native) is going to execute the syscall 1, required is 15
pie: 219: 219: new_sp=0x7fc6d9274008 ip 0x7fc6d92ccd23
(00.106336) 2025 was trapped
(00.106338) `- Expecting exit
(00.106344) 2025 was trapped
(00.106347) 2025 (native) is going to execute the syscall 3, required is 15
(00.106354) 2025 was trapped
(00.106357) `- Expecting exit
(00.106362) 2025 was trapped
(00.106365) 2025 (native) is going to execute the syscall 3, required is 15
(00.106383) 2025 was trapped
(00.106388) `- Expecting exit
(00.106394) 2025 was trapped
(00.106398) 2025 (native) is going to execute the syscall 15, required is 15
(00.106404) 2025 was stopped
(00.106436) 
(00.106440) Dumping mm (pid: 2025)
(00.106443) ----------------------------------------
(00.106445) 0x55ed82146000-0x55ed82152000 (48K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x1
(00.106449) 0x55ed82152000-0x55ed821ed000 (620K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0xc000 reg fp  shmid: 0x1
(00.106452) 0x55ed821ed000-0x55ed8220d000 (128K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xa7000 reg fp  shmid: 0x1
(00.106455) 0x55ed8220e000-0x55ed82212000 (16K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xc7000 reg fp  shmid: 0x1
(00.106462) 0x55ed82212000-0x55ed82213000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0xcb000 reg fp  shmid: 0x1
(00.106465) 0x7fc6d927a000-0x7fc6d928f000 (84K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x2
(00.106468) 0x7fc6d928f000-0x7fc6d92d5000 (280K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x15000 reg fp  shmid: 0x2
(00.106471) 0x7fc6d92d5000-0x7fc6d9307000 (200K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x5b000 reg fp  shmid: 0x2
(00.106474) 0x7fc6d9307000-0x7fc6d9308000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x8c000 reg fp  shmid: 0x2
(00.106477) 0x7fc6d9308000-0x7fc6d9309000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x8d000 reg fp  shmid: 0x2
(00.106479) 0x7fc6d9309000-0x7fc6d930c000 (12K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.106482) 0x7ffc8e1ae000-0x7ffc8e1cf000 (132K) prot 0x3 flags 0x122 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.106485) 0x7ffc8e1d0000-0x7ffc8e1d3000 (12K) prot 0x1 flags 0x22 fdflags 0 st 0x1201 off 0 reg vvar ap  shmid: 0
(00.106488) 0x7ffc8e1d3000-0x7ffc8e1d5000 (8K) prot 0x5 flags 0x22 fdflags 0 st 0x209 off 0 reg vdso ap  shmid: 0
(00.106491) 0xffffffffff600000-0xffffffffff601000 (4K) prot 0x5 flags 0x22 fdflags 0 st 0x204 off 0 vsys ap  shmid: 0
(00.106494) Obtaining task auvx ...
(00.106550) Dumping task cwd id 0x4 root id 0x4
(00.106587) ========================================
(00.106590) Dumping task (pid: 2083)
(00.106593) ========================================
(00.106595) Obtaining task stat ... 
(00.106614) 
(00.106617) Collecting mappings (pid: 2083)
(00.106619) ----------------------------------------
(00.106681) vma 561a0caee000 borrows vfi from previous 561a0cae2000
(00.106690) vma 561a0cb89000 borrows vfi from previous 561a0caee000
(00.106696) vma 561a0cbaa000 borrows vfi from previous 561a0cb89000
(00.106703) vma 561a0cbae000 borrows vfi from previous 561a0cbaa000
(00.106754) vma 7f79e1ade000 borrows vfi from previous 7f79e1ac9000
(00.106762) vma 7f79e1b24000 borrows vfi from previous 7f79e1ade000
(00.106769) vma 7f79e1b56000 borrows vfi from previous 7f79e1b24000
(00.106775) vma 7f79e1b57000 borrows vfi from previous 7f79e1b56000
(00.106815) Collected, longest area occupies 155 pages
(00.106818) 0x561a0cae2000-0x561a0caee000 (48K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x1
(00.106821) 0x561a0caee000-0x561a0cb89000 (620K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0xc000 reg fp  shmid: 0x1
(00.106824) 0x561a0cb89000-0x561a0cba9000 (128K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xa7000 reg fp  shmid: 0x1
(00.106827) 0x561a0cbaa000-0x561a0cbae000 (16K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xc7000 reg fp  shmid: 0x1
(00.106830) 0x561a0cbae000-0x561a0cbaf000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0xcb000 reg fp  shmid: 0x1
(00.106833) 0x7f79e1ac9000-0x7f79e1ade000 (84K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x2
(00.106836) 0x7f79e1ade000-0x7f79e1b24000 (280K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x15000 reg fp  shmid: 0x2
(00.106839) 0x7f79e1b24000-0x7f79e1b56000 (200K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x5b000 reg fp  shmid: 0x2
(00.106842) 0x7f79e1b56000-0x7f79e1b57000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x8c000 reg fp  shmid: 0x2
(00.106845) 0x7f79e1b57000-0x7f79e1b58000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x8d000 reg fp  shmid: 0x2
(00.106848) 0x7f79e1b58000-0x7f79e1b5b000 (12K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.106851) 0x7ffc5f70a000-0x7ffc5f72b000 (132K) prot 0x3 flags 0x122 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.106854) 0x7ffc5f745000-0x7ffc5f748000 (12K) prot 0x1 flags 0x22 fdflags 0 st 0x1201 off 0 reg vvar ap  shmid: 0
(00.106857) 0x7ffc5f748000-0x7ffc5f74a000 (8K) prot 0x5 flags 0x22 fdflags 0 st 0x209 off 0 reg vdso ap  shmid: 0
(00.106859) 0xffffffffff600000-0xffffffffff601000 (4K) prot 0x5 flags 0x22 fdflags 0 st 0x204 off 0 vsys ap  shmid: 0
(00.106862) ----------------------------------------
(00.106865) 
(00.106867) Collecting fds (pid: 2083)
(00.106873) ----------------------------------------
(00.106884) Found 4 file descriptors
(00.106887) ----------------------------------------
(00.106894) Dump private signals of 2083
(00.106898) Dump shared signals of 2083
(00.106904) Parasite syscall_ip at 0x561a0caee000
(00.106953) Set up parasite blob using memfd
(00.106957) Putting parasite blob into 0x7f125b97f000->0x7f79e1abc000
(00.106980) Dumping general registers for 2083 in native mode
(00.106983) Warn  (compel/arch/x86/src/lib/infect.c:273): Will restore 2083 with interrupted system call
(00.106986) Dumping GP/FPU registers for 2083
(00.106992) x86: xsave runtime structure
(00.106995) x86: -----------------------
(00.106997) x86: cwd:0x37f swd:0 twd:0 fop:0 mxcsr:0x1f80 mxcsr_mask:0xffff
(00.107000) x86: magic1:0x46505853 extended_size:836 xstate_bv:0x7 xstate_size:832
(00.107002) x86: xstate_bv: 0x7
(00.107004) x86: -----------------------
(00.107007) Putting tsock into pid 2083
pie: 246: Running daemon thread leader
pie: 246: __sent ack msg: 2 2 0
pie: 246: Daemon waits for command
(00.107043) Wait for parasite being daemonized...
(00.107045) Wait for ack 2 on daemon socket
(00.107049) Fetched ack: 2 2 0
(00.107051) Parasite 2083 has been switched to daemon mode
(00.107054) vdso: vDSO hint is reliable - omit checking
pie: 246: __fetched msg: 74 0 0
pie: 246: __sent ack msg: 74 74 0
pie: 246: Daemon waits for command
(00.107067) Sent msg to daemon 74 0 0
(00.107070) Wait for ack 74 on daemon socket
(00.107073) Fetched ack: 74 74 0
pie: 246: __fetched msg: 70 0 0
pie: 246: __sent ack msg: 70 70 0
pie: 246: Daemon waits for command
(00.107089) Sent msg to daemon 70 0 0
(00.107091) Wait for ack 70 on daemon socket
(00.107094) Fetched ack: 70 70 0
(00.107097) sid=246 pgid=246 pid=246
(00.107114) 
(00.107118) Dumping opened files (pid: 2083)
(00.107120) ----------------------------------------
pie: 246: __fetched msg: 71 0 0
pie: 246: __sent ack msg: 71 71 0
pie: 246: Daemon waits for command
(00.107138) Sent msg to daemon 71 0 0
(00.107143) Wait for ack 71 on daemon socket
(00.107146) Fetched ack: 71 71 0
(00.107158) 2083 fdinfo 0: pos:                0 flags:           100002/0
(00.107168) Dumping path for 0 fd via self 12 [/dev/null]
(00.107193) 2083 fdinfo 1: pos:                0 flags:           100002/0
(00.107206) 2083 fdinfo 2: pos:                0 flags:           100002/0
(00.107217) 2083 fdinfo 3: pos:                0 flags:          2000002/0x1
(00.107222) sockets: Searching for socket 0x6794 family 1
(00.107224) sockets: Searching for socket 0x66b9 family 1
(00.107231) sockets: No filter for socket
(00.107233) unix: Dumping unix socket at 3
(00.107235) unix:   Dumping: ino 26516 peer_ino 26297 family    1 type    2 state  7 name (null)
(00.107241) unix:   Dumped: id 0x9 ino 26516 peer 26297 type 2 state 7 name 0 bytes
(00.107245) ----------------------------------------
pie: 246: __fetched msg: 65 0 0
pie: 246: __sent ack msg: 65 65 0
pie: 246: Daemon waits for command
(00.107267) Sent msg to daemon 65 0 0
(00.107270) Wait for ack 65 on daemon socket
(00.107272) Fetched ack: 65 65 0
(00.107275) 
(00.107277) Dumping pages (type: 52 pid: 2083)
(00.107279) ----------------------------------------
(00.107282)    Private vmas 155/388 pages
(00.107290) pagemap-cache: created for pid 2083 (takes 4096 bytes)
(00.107293) page-pipe: Create page pipe for 388 segs
(00.107295) page-pipe: Will grow page pipe (iov off is 0)
(00.107321) pagemap-cache: filling VMA 561a0cae2000-561a0caee000 (48K) [l:561a0ca00000 h:561a0cc00000]
(00.107328) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.107331) pagemap-cache: filling VMA 561a0caee000-561a0cb89000 (620K) [l:561a0ca00000 h:561a0cc00000]
(00.107336) page-pipe: Add iov to page pipe (0 iovs, 0/388 total)
(00.107339) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.107342) pagemap-cache: filling VMA 561a0cb89000-561a0cba9000 (128K) [l:561a0ca00000 h:561a0cc00000]
(00.107357) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.107362) pagemap-cache: filling VMA 561a0cbaa000-561a0cbae000 (16K) [l:561a0ca00000 h:561a0cc00000]
(00.107370) page-pipe: Add iov to page pipe (1 iovs, 1/388 total)
(00.107373) Pagemap generated: 4 pages (0 lazy) 0 holes
(00.107375) pagemap-cache: filling VMA 561a0cbae000-561a0cbaf000 (4K) [l:561a0ca00000 h:561a0cc00000]
(00.107379) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.107381) pagemap-cache: filling VMA 7f79e1ac9000-7f79e1ade000 (84K) [l:7f79e1a00000 h:7f79e1c00000]
(00.107387) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.107389) pagemap-cache: filling VMA 7f79e1ade000-7f79e1b24000 (280K) [l:7f79e1a00000 h:7f79e1c00000]
(00.107395) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.107397) pagemap-cache: filling VMA 7f79e1b24000-7f79e1b56000 (200K) [l:7f79e1a00000 h:7f79e1c00000]
(00.107402) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.107404) pagemap-cache: filling VMA 7f79e1b56000-7f79e1b57000 (4K) [l:7f79e1a00000 h:7f79e1c00000]
(00.107408) page-pipe: Add iov to page pipe (2 iovs, 2/388 total)
(00.107410) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.107413) pagemap-cache: filling VMA 7f79e1b57000-7f79e1b58000 (4K) [l:7f79e1a00000 h:7f79e1c00000]
(00.107416) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.107419) pagemap-cache: filling VMA 7f79e1b58000-7f79e1b5b000 (12K) [l:7f79e1a00000 h:7f79e1c00000]
(00.107422) page-pipe: Will grow page pipe (iov off is 3)
(00.107427) page-pipe: Add iov to page pipe (0 iovs, 3/388 total)
(00.107430) Pagemap generated: 3 pages (0 lazy) 0 holes
(00.107432) pagemap-cache: filling VMA 7ffc5f70a000-7ffc5f72b000 (132K) [l:7ffc5f600000 h:7ffc5f800000]
(00.107437) page-pipe: Add iov to page pipe (1 iovs, 4/388 total)
(00.107439) page-pipe: Will grow page pipe (iov off is 5)
(00.107443) page-pipe: Add iov to page pipe (0 iovs, 5/388 total)
(00.107445) page-pipe: Will grow page pipe (iov off is 6)
(00.107449) page-pipe: Add iov to page pipe (0 iovs, 6/388 total)
(00.107452) Pagemap generated: 3 pages (0 lazy) 0 holes
(00.107454) pagemap-cache: filling VMA 7ffc5f745000-7ffc5f748000 (12K) [l:7ffc5f600000 h:7ffc5f800000]
(00.107458) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.107460) pagemap-cache: filling VMA 7ffc5f748000-7ffc5f74a000 (8K) [l:7ffc5f600000 h:7ffc5f800000]
(00.107464) page-pipe: Will grow page pipe (iov off is 7)
(00.107467) page-pipe: Add iov to page pipe (0 iovs, 7/388 total)
(00.107470) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.107472) page-pipe: Page pipe:
(00.107475) page-pipe: * 5 pipes 8/388 iovs:
(00.107477) page-pipe:  buf 8 pages, 3 iovs, flags: 0 pipe_off: 0 :
(00.107480) page-pipe:      0x561a0caee000 1
(00.107482) page-pipe:      0x561a0cbaa000 5
(00.107484) page-pipe:      0x7f79e1b56000 2
(00.107487) page-pipe:  buf 4 pages, 2 iovs, flags: 1 pipe_off: 0 :
(00.107489) page-pipe:      0x7f79e1b58000 3
(00.107491) page-pipe:      0x7ffc5f728000 1
(00.107494) page-pipe:  buf 1 pages, 1 iovs, flags: 0 pipe_off: 0 :
(00.107496) page-pipe:      0x7ffc5f729000 1
(00.107498) page-pipe:  buf 1 pages, 1 iovs, flags: 1 pipe_off: 0 :
(00.107501) page-pipe:      0x7ffc5f72a000 1
(00.107503) page-pipe:  buf 2 pages, 1 iovs, flags: 0 pipe_off: 0 :
(00.107505) page-pipe:      0x7ffc5f748000 2
(00.107508) page-pipe: * 0 holes:
(00.107510) PPB: 8 pages 3 segs 16 pipe 0 off
pie: 246: __fetched msg: 66 0 0
(00.107523) Sent msg to daemon 66 0 0
pie: 246: __sent ack msg: 66 66 0
pie: 246: Daemon waits for command
(00.107538) Wait for ack 66 on daemon socket
(00.107541) Fetched ack: 66 66 0
(00.107543) PPB: 4 pages 2 segs 16 pipe 3 off
pie: 246: __fetched msg: 66 0 0
(00.107551) Sent msg to daemon 66 0 0
pie: 246: __sent ack msg: 66 66 0
pie: 246: Daemon waits for command
(00.107564) Wait for ack 66 on daemon socket
(00.107567) Fetched ack: 66 66 0
(00.107570) PPB: 1 pages 1 segs 16 pipe 5 off
pie: 246: __fetched msg: 66 0 0
(00.107578) Sent msg to daemon 66 0 0
pie: 246: __sent ack msg: 66 66 0
pie: 246: Daemon waits for command
(00.107590) Wait for ack 66 on daemon socket
(00.107593) Fetched ack: 66 66 0
(00.107596) PPB: 1 pages 1 segs 16 pipe 6 off
pie: 246: __fetched msg: 66 0 0
(00.107604) Sent msg to daemon 66 0 0
pie: 246: __sent ack msg: 66 66 0
pie: 246: Daemon waits for command
(00.107620) Wait for ack 66 on daemon socket
(00.107623) Fetched ack: 66 66 0
(00.107625) PPB: 2 pages 1 segs 16 pipe 7 off
pie: 246: __fetched msg: 66 0 0
(00.107634) Sent msg to daemon 66 0 0
pie: 246: __sent ack msg: 66 66 0
pie: 246: Daemon waits for command
(00.107647) Wait for ack 66 on daemon socket
(00.107650) Fetched ack: 66 66 0
(00.107653) Transferring pages:
(00.107655)     buf 8/3
(00.107657)     p 0x561a0caee000 [1]
(00.107665)     p 0x561a0cbaa000 [5]
(00.107677)     p 0x7f79e1b56000 [2]
(00.107684)     buf 4/2
(00.107686)     p 0x7f79e1b58000 [3]
(00.107694)     p 0x7ffc5f728000 [1]
(00.107699)     buf 1/1
(00.107702)     p 0x7ffc5f729000 [1]
(00.107706)     buf 1/1
(00.107709)     p 0x7ffc5f72a000 [1]
(00.107713)     buf 2/1
(00.107716)     p 0x7ffc5f748000 [2]
(00.107727) page-pipe: Killing page pipe
(00.107738) ----------------------------------------
pie: 246: __fetched msg: 65 0 0
pie: 246: __sent ack msg: 65 65 0
pie: 246: Daemon waits for command
(00.107752) Sent msg to daemon 65 0 0
(00.107755) Wait for ack 65 on daemon socket
(00.107758) Fetched ack: 65 65 0
pie: 246: __fetched msg: 67 0 0
pie: 246: __sent ack msg: 67 67 0
pie: 246: Daemon waits for command
(00.107788) Sent msg to daemon 67 0 0
(00.107791) Wait for ack 67 on daemon socket
(00.107793) Fetched ack: 67 67 0
pie: 246: __fetched msg: 68 0 0
pie: 246: __sent ack msg: 68 68 0
pie: 246: Daemon waits for command
(00.107811) Sent msg to daemon 68 0 0
(00.107814) Wait for ack 68 on daemon socket
(00.107816) Fetched ack: 68 68 0
pie: 246: __fetched msg: 69 0 0
pie: 246: __sent ack msg: 69 69 0
pie: 246: Daemon waits for command
(00.107829) Sent msg to daemon 69 0 0
(00.107832) Wait for ack 69 on daemon socket
(00.107835) Fetched ack: 69 69 0
(00.107837) 
(00.107840) Dumping core (pid: 2083)
(00.107842) ----------------------------------------
(00.107844) Obtaining personality ... 
pie: 246: __fetched msg: 64 0 0
pie: 246: __sent ack msg: 64 64 0
pie: 246: Daemon waits for command
(00.107891) Sent msg to daemon 64 0 0
(00.107894) Wait for ack 64 on daemon socket
(00.107897) Fetched ack: 64 64 0
(00.107909) 2083 has lsm profile lxd-test_</var/snap/lxd/common/lxd>//&:lxd-test_<var-snap-lxd-common-lxd>:unconfined
(00.107913) 2083 has 0 sched policy
(00.107916)     dumping 0 nice for 2083
(00.107919) dumping /proc/2083/loginuid
(00.107925) dumping /proc/2083/oom_score_adj
(00.107936) cg: Dumping cgroups for 2083
(00.107954) cg:  `- New css ID 4
(00.107957) cg:     `- [blkio] -> [/lxc.payload/test] [0]
(00.107960) cg:     `- [cpu,cpuacct] -> [/lxc.payload/test] [0]
(00.107962) cg:     `- [cpuset] -> [/lxc.payload/test] [0]
(00.107965) cg:     `- [devices] -> [/lxc.payload/test] [0]
(00.107967) cg:     `- [freezer] -> [/lxc.payload/test] [0]
(00.107969) cg:     `- [hugetlb] -> [/lxc.payload/test] [0]
(00.107972) cg:     `- [memory] -> [/lxc.payload/test] [0]
(00.107974) cg:     `- [name=systemd] -> [/lxc.payload/test] [0]
(00.107977) cg:     `- [net_cls,net_prio] -> [/lxc.payload/test] [0]
(00.107979) cg:     `- [perf_event] -> [/lxc.payload/test] [0]
(00.107981) cg:     `- [pids] -> [/lxc.payload/test] [0]
(00.107984) cg:     `- [rdma] -> [/lxc.payload/test] [0]
(00.108076) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.108182) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.108264) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.110825) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.110913) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.110990) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.111063) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.111159) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.111229) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.111320) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.111389) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.111460) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.111473) cg: Set 4 is a stray
(00.111516) ----------------------------------------
(00.111527) Waiting for 2083 to trap
(00.111532) Daemon 2083 exited trapping
(00.111542) Sent msg to daemon 3 0 0
(00.111548) Force no-breakpoints restore
(00.111555) 2083 was trapped
(00.111559) 2083 (native) is going to execute the syscall 45, required is 15
(00.111566) 2083 was trapped
(00.111568) `- Expecting exit
(00.111574) 2083 was trapped
(00.111577) 2083 (native) is going to execute the syscall 186, required is 15
(00.111582) 2083 was trapped
(00.111584) `- Expecting exit
(00.111590) 2083 was trapped
(00.111593) 2083 (native) is going to execute the syscall 1, required is 15
pie: 246: __fetched msg: 3 0 0
(00.111601) 2083 was trapped
(00.111603) `- Expecting exit
(00.111609) 2083 was trapped
(00.111612) 2083 (native) is going to execute the syscall 186, required is 15
(00.111617) 2083 was trapped
(00.111619) `- Expecting exit
(00.111625) 2083 was trapped
(00.111627) 2083 (native) is going to execute the syscall 186, required is 15
(00.111633) 2083 was trapped
(00.111635) `- Expecting exit
(00.111641) 2083 was trapped
(00.111643) 2083 (native) is going to execute the syscall 1, required is 15
pie: 246: 246: new_sp=0x7f79e1ac3008 ip 0x7f79e1b1bd25
(00.111650) 2083 was trapped
(00.111653) `- Expecting exit
(00.111658) 2083 was trapped
(00.111661) 2083 (native) is going to execute the syscall 3, required is 15
(00.111669) 2083 was trapped
(00.111671) `- Expecting exit
(00.111677) 2083 was trapped
(00.111680) 2083 (native) is going to execute the syscall 3, required is 15
(00.111685) 2083 was trapped
(00.111687) `- Expecting exit
(00.111692) 2083 was trapped
(00.111695) 2083 (native) is going to execute the syscall 15, required is 15
(00.111701) 2083 was stopped
(00.111734) 
(00.111738) Dumping mm (pid: 2083)
(00.111740) ----------------------------------------
(00.111743) 0x561a0cae2000-0x561a0caee000 (48K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x1
(00.111746) 0x561a0caee000-0x561a0cb89000 (620K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0xc000 reg fp  shmid: 0x1
(00.111750) 0x561a0cb89000-0x561a0cba9000 (128K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xa7000 reg fp  shmid: 0x1
(00.111752) 0x561a0cbaa000-0x561a0cbae000 (16K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xc7000 reg fp  shmid: 0x1
(00.111755) 0x561a0cbae000-0x561a0cbaf000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0xcb000 reg fp  shmid: 0x1
(00.111758) 0x7f79e1ac9000-0x7f79e1ade000 (84K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x2
(00.111761) 0x7f79e1ade000-0x7f79e1b24000 (280K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x15000 reg fp  shmid: 0x2
(00.111764) 0x7f79e1b24000-0x7f79e1b56000 (200K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x5b000 reg fp  shmid: 0x2
(00.111767) 0x7f79e1b56000-0x7f79e1b57000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x8c000 reg fp  shmid: 0x2
(00.111770) 0x7f79e1b57000-0x7f79e1b58000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x8d000 reg fp  shmid: 0x2
(00.111773) 0x7f79e1b58000-0x7f79e1b5b000 (12K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.111776) 0x7ffc5f70a000-0x7ffc5f72b000 (132K) prot 0x3 flags 0x122 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.111778) 0x7ffc5f745000-0x7ffc5f748000 (12K) prot 0x1 flags 0x22 fdflags 0 st 0x1201 off 0 reg vvar ap  shmid: 0
(00.111781) 0x7ffc5f748000-0x7ffc5f74a000 (8K) prot 0x5 flags 0x22 fdflags 0 st 0x209 off 0 reg vdso ap  shmid: 0
(00.111784) 0xffffffffff600000-0xffffffffff601000 (4K) prot 0x5 flags 0x22 fdflags 0 st 0x204 off 0 vsys ap  shmid: 0
(00.111787) Obtaining task auvx ...
(00.111853) Dumping path for -3 fd via self 16 [/etc/crontabs]
(00.111869) Dumping task cwd id 0xa root id 0x4
(00.111929) ========================================
(00.111932) Dumping task (pid: 2812)
(00.111934) ========================================
(00.111937) Obtaining task stat ... 
(00.111957) 
(00.111959) Collecting mappings (pid: 2812)
(00.111962) ----------------------------------------
(00.112028) vma 555ef5cea000 borrows vfi from previous 555ef5cde000
(00.112037) vma 555ef5d85000 borrows vfi from previous 555ef5cea000
(00.112045) vma 555ef5da6000 borrows vfi from previous 555ef5d85000
(00.112059) vma 555ef5daa000 borrows vfi from previous 555ef5da6000
(00.112109) vma 7f47e5cda000 borrows vfi from previous 7f47e5cc5000
(00.112117) vma 7f47e5d20000 borrows vfi from previous 7f47e5cda000
(00.112124) vma 7f47e5d52000 borrows vfi from previous 7f47e5d20000
(00.112131) vma 7f47e5d53000 borrows vfi from previous 7f47e5d52000
(00.112170) Collected, longest area occupies 155 pages
(00.112173) 0x555ef5cde000-0x555ef5cea000 (48K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x1
(00.112176) 0x555ef5cea000-0x555ef5d85000 (620K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0xc000 reg fp  shmid: 0x1
(00.112179) 0x555ef5d85000-0x555ef5da5000 (128K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xa7000 reg fp  shmid: 0x1
(00.112182) 0x555ef5da6000-0x555ef5daa000 (16K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xc7000 reg fp  shmid: 0x1
(00.112185) 0x555ef5daa000-0x555ef5dab000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0xcb000 reg fp  shmid: 0x1
(00.112188) 0x7f47e5cc5000-0x7f47e5cda000 (84K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x2
(00.112191) 0x7f47e5cda000-0x7f47e5d20000 (280K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x15000 reg fp  shmid: 0x2
(00.112194) 0x7f47e5d20000-0x7f47e5d52000 (200K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x5b000 reg fp  shmid: 0x2
(00.112197) 0x7f47e5d52000-0x7f47e5d53000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x8c000 reg fp  shmid: 0x2
(00.112200) 0x7f47e5d53000-0x7f47e5d54000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x8d000 reg fp  shmid: 0x2
(00.112203) 0x7f47e5d54000-0x7f47e5d57000 (12K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.112206) 0x7ffdf0472000-0x7ffdf0493000 (132K) prot 0x3 flags 0x122 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.112209) 0x7ffdf04c1000-0x7ffdf04c4000 (12K) prot 0x1 flags 0x22 fdflags 0 st 0x1201 off 0 reg vvar ap  shmid: 0
(00.112212) 0x7ffdf04c4000-0x7ffdf04c6000 (8K) prot 0x5 flags 0x22 fdflags 0 st 0x209 off 0 reg vdso ap  shmid: 0
(00.112215) 0xffffffffff600000-0xffffffffff601000 (4K) prot 0x5 flags 0x22 fdflags 0 st 0x204 off 0 vsys ap  shmid: 0
(00.112218) ----------------------------------------
(00.112220) 
(00.112222) Collecting fds (pid: 2812)
(00.112225) ----------------------------------------
(00.112269) Found 6 file descriptors
(00.112275) ----------------------------------------
(00.112282) Dump private signals of 2812
(00.112287) Dump shared signals of 2812
(00.112292) Parasite syscall_ip at 0x555ef5cea000
(00.112342) Set up parasite blob using memfd
(00.112347) Putting parasite blob into 0x7f125b97f000->0x7f47e5cb8000
(00.112371) Dumping general registers for 2812 in native mode
(00.112374) Warn  (compel/arch/x86/src/lib/infect.c:273): Will restore 2812 with interrupted system call
(00.112377) Dumping GP/FPU registers for 2812
(00.112383) x86: xsave runtime structure
(00.112386) x86: -----------------------
(00.112388) x86: cwd:0x37f swd:0 twd:0 fop:0 mxcsr:0x1f80 mxcsr_mask:0xffff
(00.112391) x86: magic1:0x46505853 extended_size:836 xstate_bv:0x7 xstate_size:832
(00.112394) x86: xstate_bv: 0x7
(00.112396) x86: -----------------------
(00.112398) Putting tsock into pid 2812
pie: 281: Running daemon thread leader
pie: 281: __sent ack msg: 2 2 0
pie: 281: Daemon waits for command
(00.112437) Wait for parasite being daemonized...
(00.112440) Wait for ack 2 on daemon socket
(00.112443) Fetched ack: 2 2 0
(00.112445) Parasite 2812 has been switched to daemon mode
(00.112448) vdso: vDSO hint is reliable - omit checking
pie: 281: __fetched msg: 74 0 0
pie: 281: __sent ack msg: 74 74 0
pie: 281: Daemon waits for command
(00.112463) Sent msg to daemon 74 0 0
(00.112466) Wait for ack 74 on daemon socket
(00.112469) Fetched ack: 74 74 0
pie: 281: __fetched msg: 70 0 0
pie: 281: __sent ack msg: 70 70 0
pie: 281: Daemon waits for command
(00.112484) Sent msg to daemon 70 0 0
(00.112486) Wait for ack 70 on daemon socket
(00.112489) Fetched ack: 70 70 0
(00.112492) sid=281 pgid=281 pid=281
(00.112511) 
(00.112514) Dumping opened files (pid: 2812)
(00.112517) ----------------------------------------
pie: 281: __fetched msg: 71 0 0
pie: 281: __sent ack msg: 71 71 0
pie: 281: Daemon waits for command
(00.112541) Sent msg to daemon 71 0 0
(00.112545) Wait for ack 71 on daemon socket
(00.112548) Fetched ack: 71 71 0
(00.112561) 2812 fdinfo 0: pos:                0 flags:           100002/0
(00.112572) Dumping path for 0 fd via self 12 [/dev/null]
(00.112597) 2812 fdinfo 1: pos:                0 flags:           100002/0
(00.112610) 2812 fdinfo 2: pos:                0 flags:           100002/0
(00.112624) 2812 fdinfo 3: pos:                0 flags:          2004000/0x1
(00.112628) Dumping pipe 19 with id 0xc pipe_id 0x67aa
(00.112632) Dumping data from pipe 0x67aa fd 19
(00.112672) 2812 fdinfo 4: pos:                0 flags:          2004001/0x1
(00.112677) Dumping pipe 20 with id 0xd pipe_id 0x67aa
(00.112687) 2812 fdinfo 5: pos:                0 flags:          2000002/0x1
(00.112692) sockets: Searching for socket 0x67b2 family 17
(00.112695) packet: Dumping packet socket fd 21 id 0xe
(00.112702) sockets: No filter for socket
(00.112709) ----------------------------------------
pie: 281: __fetched msg: 65 0 0
pie: 281: __sent ack msg: 65 65 0
pie: 281: Daemon waits for command
(00.112731) Sent msg to daemon 65 0 0
(00.112734) Wait for ack 65 on daemon socket
(00.112737) Fetched ack: 65 65 0
(00.112740) 
(00.112742) Dumping pages (type: 52 pid: 2812)
(00.112744) ----------------------------------------
(00.112747)    Private vmas 155/388 pages
(00.112755) pagemap-cache: created for pid 2812 (takes 4096 bytes)
(00.112758) page-pipe: Create page pipe for 388 segs
(00.112761) page-pipe: Will grow page pipe (iov off is 0)
(00.112787) pagemap-cache: filling VMA 555ef5cde000-555ef5cea000 (48K) [l:555ef5c00000 h:555ef5e00000]
(00.112794) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.112797) pagemap-cache: filling VMA 555ef5cea000-555ef5d85000 (620K) [l:555ef5c00000 h:555ef5e00000]
(00.112802) page-pipe: Add iov to page pipe (0 iovs, 0/388 total)
(00.112805) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.112808) pagemap-cache: filling VMA 555ef5d85000-555ef5da5000 (128K) [l:555ef5c00000 h:555ef5e00000]
(00.112812) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.112814) pagemap-cache: filling VMA 555ef5da6000-555ef5daa000 (16K) [l:555ef5c00000 h:555ef5e00000]
(00.112818) page-pipe: Add iov to page pipe (1 iovs, 1/388 total)
(00.112820) Pagemap generated: 4 pages (0 lazy) 0 holes
(00.112823) pagemap-cache: filling VMA 555ef5daa000-555ef5dab000 (4K) [l:555ef5c00000 h:555ef5e00000]
(00.112826) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.112829) pagemap-cache: filling VMA 7f47e5cc5000-7f47e5cda000 (84K) [l:7f47e5c00000 h:7f47e5e00000]
(00.112834) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.112836) pagemap-cache: filling VMA 7f47e5cda000-7f47e5d20000 (280K) [l:7f47e5c00000 h:7f47e5e00000]
(00.112841) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.112844) pagemap-cache: filling VMA 7f47e5d20000-7f47e5d52000 (200K) [l:7f47e5c00000 h:7f47e5e00000]
(00.112848) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.112850) pagemap-cache: filling VMA 7f47e5d52000-7f47e5d53000 (4K) [l:7f47e5c00000 h:7f47e5e00000]
(00.112854) page-pipe: Add iov to page pipe (2 iovs, 2/388 total)
(00.112856) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.112859) pagemap-cache: filling VMA 7f47e5d53000-7f47e5d54000 (4K) [l:7f47e5c00000 h:7f47e5e00000]
(00.112862) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.112865) pagemap-cache: filling VMA 7f47e5d54000-7f47e5d57000 (12K) [l:7f47e5c00000 h:7f47e5e00000]
(00.112868) page-pipe: Will grow page pipe (iov off is 3)
(00.112873) page-pipe: Add iov to page pipe (0 iovs, 3/388 total)
(00.112876) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.112878) pagemap-cache: filling VMA 7ffdf0472000-7ffdf0493000 (132K) [l:7ffdf0400000 h:7ffdf0600000]
(00.112880) pagemap-cache:      7ffdf0472000-7ffdf0493000     nr:1     cov:135168
(00.112883) pagemap-cache:      7ffdf04c1000-7ffdf04c4000     nr:2     cov:147456
(00.112886) pagemap-cache:      7ffdf04c4000-7ffdf04c6000     nr:3     cov:155648
(00.112889) pagemap-cache:  cache  mode [l:7ffdf0472000 h:7ffdf0600000]
(00.112897) page-pipe: Will grow page pipe (iov off is 4)
(00.112901) page-pipe: Add iov to page pipe (0 iovs, 4/388 total)
(00.112904) page-pipe: Will grow page pipe (iov off is 5)
(00.112907) page-pipe: Add iov to page pipe (0 iovs, 5/388 total)
(00.112910) Pagemap generated: 3 pages (0 lazy) 0 holes
(00.112912) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.112915) page-pipe: Will grow page pipe (iov off is 6)
(00.112918) page-pipe: Add iov to page pipe (0 iovs, 6/388 total)
(00.112921) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.112923) page-pipe: Page pipe:
(00.112926) page-pipe: * 5 pipes 7/388 iovs:
(00.112928) page-pipe:  buf 8 pages, 3 iovs, flags: 0 pipe_off: 0 :
(00.112930) page-pipe:      0x555ef5cea000 1
(00.112933) page-pipe:      0x555ef5da6000 5
(00.112935) page-pipe:      0x7f47e5d52000 2
(00.112937) page-pipe:  buf 2 pages, 1 iovs, flags: 1 pipe_off: 0 :
(00.112940) page-pipe:      0x7f47e5d55000 2
(00.112942) page-pipe:  buf 1 pages, 1 iovs, flags: 0 pipe_off: 0 :
(00.112944) page-pipe:      0x7ffdf0490000 1
(00.112946) page-pipe:  buf 2 pages, 1 iovs, flags: 1 pipe_off: 0 :
(00.112949) page-pipe:      0x7ffdf0491000 2
(00.112951) page-pipe:  buf 2 pages, 1 iovs, flags: 0 pipe_off: 0 :
(00.112953) page-pipe:      0x7ffdf04c4000 2
(00.112956) page-pipe: * 0 holes:
(00.112958) PPB: 8 pages 3 segs 16 pipe 0 off
pie: 281: __fetched msg: 66 0 0
(00.112968) Sent msg to daemon 66 0 0
pie: 281: __sent ack msg: 66 66 0
pie: 281: Daemon waits for command
(00.112983) Wait for ack 66 on daemon socket
(00.112986) Fetched ack: 66 66 0
(00.112988) PPB: 2 pages 1 segs 16 pipe 3 off
pie: 281: __fetched msg: 66 0 0
(00.112996) Sent msg to daemon 66 0 0
pie: 281: __sent ack msg: 66 66 0
pie: 281: Daemon waits for command
(00.113009) Wait for ack 66 on daemon socket
(00.113012) Fetched ack: 66 66 0
(00.113014) PPB: 1 pages 1 segs 16 pipe 4 off
pie: 281: __fetched msg: 66 0 0
(00.113022) Sent msg to daemon 66 0 0
pie: 281: __sent ack msg: 66 66 0
pie: 281: Daemon waits for command
(00.113034) Wait for ack 66 on daemon socket
(00.113037) Fetched ack: 66 66 0
(00.113040) PPB: 2 pages 1 segs 16 pipe 5 off
pie: 281: __fetched msg: 66 0 0
(00.113048) Sent msg to daemon 66 0 0
pie: 281: __sent ack msg: 66 66 0
pie: 281: Daemon waits for command
(00.113060) Wait for ack 66 on daemon socket
(00.113063) Fetched ack: 66 66 0
(00.113065) PPB: 2 pages 1 segs 16 pipe 6 off
pie: 281: __fetched msg: 66 0 0
(00.113073) Sent msg to daemon 66 0 0
pie: 281: __sent ack msg: 66 66 0
pie: 281: Daemon waits for command
(00.113087) Wait for ack 66 on daemon socket
(00.113090) Fetched ack: 66 66 0
(00.113092) Transferring pages:
(00.113094)     buf 8/3
(00.113097)     p 0x555ef5cea000 [1]
(00.113104)     p 0x555ef5da6000 [5]
(00.113116)     p 0x7f47e5d52000 [2]
(00.113123)     buf 2/1
(00.113125)     p 0x7f47e5d55000 [2]
(00.113131)     buf 1/1
(00.113134)     p 0x7ffdf0490000 [1]
(00.113139)     buf 2/1
(00.113141)     p 0x7ffdf0491000 [2]
(00.113147)     buf 2/1
(00.113150)     p 0x7ffdf04c4000 [2]
(00.113161) page-pipe: Killing page pipe
(00.113171) ----------------------------------------
pie: 281: __fetched msg: 65 0 0
pie: 281: __sent ack msg: 65 65 0
pie: 281: Daemon waits for command
(00.113185) Sent msg to daemon 65 0 0
(00.113188) Wait for ack 65 on daemon socket
(00.113191) Fetched ack: 65 65 0
pie: 281: __fetched msg: 67 0 0
pie: 281: __sent ack msg: 67 67 0
pie: 281: Daemon waits for command
(00.113330) Sent msg to daemon 67 0 0
(00.113335) Wait for ack 67 on daemon socket
(00.113339) Fetched ack: 67 67 0
pie: 281: __fetched msg: 68 0 0
pie: 281: __sent ack msg: 68 68 0
pie: 281: Daemon waits for command
(00.113359) Sent msg to daemon 68 0 0
(00.113362) Wait for ack 68 on daemon socket
(00.113365) Fetched ack: 68 68 0
pie: 281: __fetched msg: 69 0 0
pie: 281: __sent ack msg: 69 69 0
pie: 281: Daemon waits for command
(00.113378) Sent msg to daemon 69 0 0
(00.113381) Wait for ack 69 on daemon socket
(00.113383) Fetched ack: 69 69 0
(00.113386) 
(00.113388) Dumping core (pid: 2812)
(00.113390) ----------------------------------------
(00.113397) Obtaining personality ... 
pie: 281: __fetched msg: 64 0 0
pie: 281: __sent ack msg: 64 64 0
pie: 281: Daemon waits for command
(00.113444) Sent msg to daemon 64 0 0
(00.113447) Wait for ack 64 on daemon socket
(00.113450) Fetched ack: 64 64 0
(00.113464) 2812 has lsm profile lxd-test_</var/snap/lxd/common/lxd>//&:lxd-test_<var-snap-lxd-common-lxd>:unconfined
(00.113469) 2812 has 0 sched policy
(00.113471)     dumping 0 nice for 2812
(00.113474) dumping /proc/2812/loginuid
(00.113481) dumping /proc/2812/oom_score_adj
(00.113491) cg: Dumping cgroups for 2812
(00.113514) cg:  `- New css ID 5
(00.113517) cg:     `- [blkio] -> [/lxc.payload/test] [0]
(00.113519) cg:     `- [cpu,cpuacct] -> [/lxc.payload/test] [0]
(00.113522) cg:     `- [cpuset] -> [/lxc.payload/test] [0]
(00.113524) cg:     `- [devices] -> [/lxc.payload/test] [0]
(00.113526) cg:     `- [freezer] -> [/lxc.payload/test] [0]
(00.113529) cg:     `- [hugetlb] -> [/lxc.payload/test] [0]
(00.113531) cg:     `- [memory] -> [/lxc.payload/test] [0]
(00.113533) cg:     `- [name=systemd] -> [/lxc.payload/test] [0]
(00.113536) cg:     `- [net_cls,net_prio] -> [/lxc.payload/test] [0]
(00.113538) cg:     `- [perf_event] -> [/lxc.payload/test] [0]
(00.113540) cg:     `- [pids] -> [/lxc.payload/test] [0]
(00.113543) cg:     `- [rdma] -> [/lxc.payload/test] [0]
(00.113616) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.113723) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.113805) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.113887) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.113956) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.114026) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.114098) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.114204) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.114276) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.114345) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.114411) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.114479) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.114493) cg: Set 5 is a stray
(00.114534) ----------------------------------------
(00.116747) Waiting for 2812 to trap
(00.116755) Daemon 2812 exited trapping
(00.116760) Sent msg to daemon 3 0 0
(00.116765) Force no-breakpoints restore
(00.116773) 2812 was trapped
(00.116776) 2812 (native) is going to execute the syscall 45, required is 15
(00.116783) 2812 was trapped
(00.116786) `- Expecting exit
(00.116791) 2812 was trapped
(00.116794) 2812 (native) is going to execute the syscall 186, required is 15
(00.116800) 2812 was trapped
(00.116802) `- Expecting exit
(00.116807) 2812 was trapped
(00.116810) 2812 (native) is going to execute the syscall 1, required is 15
pie: 281: __fetched msg: 3 0 0
(00.116818) 2812 was trapped
(00.116820) `- Expecting exit
(00.116825) 2812 was trapped
(00.116828) 2812 (native) is going to execute the syscall 186, required is 15
(00.116833) 2812 was trapped
(00.116836) `- Expecting exit
(00.116841) 2812 was trapped
(00.116844) 2812 (native) is going to execute the syscall 186, required is 15
(00.116849) 2812 was trapped
(00.116851) `- Expecting exit
(00.116857) 2812 was trapped
(00.116860) 2812 (native) is going to execute the syscall 1, required is 15
pie: 281: 281: new_sp=0x7f47e5cbf008 ip 0x7f47e5d17d25
(00.116867) 2812 was trapped
(00.116869) `- Expecting exit
(00.116874) 2812 was trapped
(00.116877) 2812 (native) is going to execute the syscall 3, required is 15
(00.116884) 2812 was trapped
(00.116887) `- Expecting exit
(00.116892) 2812 was trapped
(00.116895) 2812 (native) is going to execute the syscall 3, required is 15
(00.116900) 2812 was trapped
(00.116903) `- Expecting exit
(00.116908) 2812 was trapped
(00.116910) 2812 (native) is going to execute the syscall 15, required is 15
(00.116916) 2812 was stopped
(00.116947) 
(00.116951) Dumping mm (pid: 2812)
(00.116953) ----------------------------------------
(00.116956) 0x555ef5cde000-0x555ef5cea000 (48K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x1
(00.116964) 0x555ef5cea000-0x555ef5d85000 (620K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0xc000 reg fp  shmid: 0x1
(00.116968) 0x555ef5d85000-0x555ef5da5000 (128K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xa7000 reg fp  shmid: 0x1
(00.116971) 0x555ef5da6000-0x555ef5daa000 (16K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xc7000 reg fp  shmid: 0x1
(00.116974) 0x555ef5daa000-0x555ef5dab000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0xcb000 reg fp  shmid: 0x1
(00.116977) 0x7f47e5cc5000-0x7f47e5cda000 (84K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x2
(00.116980) 0x7f47e5cda000-0x7f47e5d20000 (280K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x15000 reg fp  shmid: 0x2
(00.116982) 0x7f47e5d20000-0x7f47e5d52000 (200K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x5b000 reg fp  shmid: 0x2
(00.116985) 0x7f47e5d52000-0x7f47e5d53000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x8c000 reg fp  shmid: 0x2
(00.116988) 0x7f47e5d53000-0x7f47e5d54000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x8d000 reg fp  shmid: 0x2
(00.116991) 0x7f47e5d54000-0x7f47e5d57000 (12K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.116994) 0x7ffdf0472000-0x7ffdf0493000 (132K) prot 0x3 flags 0x122 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.116997) 0x7ffdf04c1000-0x7ffdf04c4000 (12K) prot 0x1 flags 0x22 fdflags 0 st 0x1201 off 0 reg vvar ap  shmid: 0
(00.117000) 0x7ffdf04c4000-0x7ffdf04c6000 (8K) prot 0x5 flags 0x22 fdflags 0 st 0x209 off 0 reg vdso ap  shmid: 0
(00.117003) 0xffffffffff600000-0xffffffffff601000 (4K) prot 0x5 flags 0x22 fdflags 0 st 0x204 off 0 vsys ap  shmid: 0
(00.117006) Obtaining task auvx ...
(00.117059) Dumping task cwd id 0x4 root id 0x4
(00.117092) ========================================
(00.117095) Dumping task (pid: 2860)
(00.117097) ========================================
(00.117100) Obtaining task stat ... 
(00.117132) 
(00.117136) Collecting mappings (pid: 2860)
(00.117139) ----------------------------------------
(00.117208) Dumping path for -3 fd via self 12 [/usr/sbin/sshd]
(00.117221) vma 5603b8303000 borrows vfi from previous 5603b82fa000
(00.117228) vma 5603b8357000 borrows vfi from previous 5603b8303000
(00.117234) vma 5603b8396000 borrows vfi from previous 5603b8357000
(00.117241) vma 5603b8399000 borrows vfi from previous 5603b8396000
(00.117305) Dumping path for -3 fd via self 12 [/lib/libz.so.1.2.11]
(00.117317) vma 7fb069903000 borrows vfi from previous 7fb0696ee000
(00.117323) vma 7fb069904000 borrows vfi from previous 7fb069903000
(00.117343) Dumping path for -3 fd via self 12 [/lib/libcrypto.so.1.1]
(00.117385) vma 7fb06997a000 borrows vfi from previous 7fb069905000
(00.117392) vma 7fb069ad2000 borrows vfi from previous 7fb06997a000
(00.117399) vma 7fb069b54000 borrows vfi from previous 7fb069ad2000
(00.117407) vma 7fb069b7e000 borrows vfi from previous 7fb069b54000
(00.117462) vma 7fb069b98000 borrows vfi from previous 7fb069b83000
(00.117469) vma 7fb069bde000 borrows vfi from previous 7fb069b98000
(00.117476) vma 7fb069c10000 borrows vfi from previous 7fb069bde000
(00.117483) vma 7fb069c11000 borrows vfi from previous 7fb069c10000
(00.117521) Collected, longest area occupies 533 pages
(00.117524) 0x5603b82fa000-0x5603b8303000 (36K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0xf
(00.117527) 0x5603b8303000-0x5603b8357000 (336K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x9000 reg fp  shmid: 0xf
(00.117530) 0x5603b8357000-0x5603b8396000 (252K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x5d000 reg fp  shmid: 0xf
(00.117533) 0x5603b8396000-0x5603b8399000 (12K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x9b000 reg fp  shmid: 0xf
(00.117536) 0x5603b8399000-0x5603b839a000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x9e000 reg fp  shmid: 0xf
(00.117539) 0x5603b839a000-0x5603b839e000 (16K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.117542) 0x5603b8f6c000-0x5603b8fa7000 (236K) prot 0x3 flags 0x22 fdflags 0 st 0x221 off 0 reg heap ap  shmid: 0
(00.117545) 0x5603b8fa7000-0x5603b8faf000 (32K) prot 0x3 flags 0x22 fdflags 0 st 0x221 off 0 reg heap ap  shmid: 0
(00.117553) 0x7fb0696ee000-0x7fb069903000 (2132K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x10
(00.117556) 0x7fb069903000-0x7fb069904000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x15000 reg fp  shmid: 0x10
(00.117559) 0x7fb069904000-0x7fb069905000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x16000 reg fp  shmid: 0x10
(00.117562) 0x7fb069905000-0x7fb06997a000 (468K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x11
(00.117565) 0x7fb06997a000-0x7fb069ad2000 (1376K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x75000 reg fp  shmid: 0x11
(00.117568) 0x7fb069ad2000-0x7fb069b54000 (520K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x1cd000 reg fp  shmid: 0x11
(00.117570) 0x7fb069b54000-0x7fb069b7e000 (168K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x24e000 reg fp  shmid: 0x11
(00.117573) 0x7fb069b7e000-0x7fb069b80000 (8K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x278000 reg fp  shmid: 0x11
(00.117576) 0x7fb069b80000-0x7fb069b83000 (12K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.117579) 0x7fb069b83000-0x7fb069b98000 (84K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x2
(00.117582) 0x7fb069b98000-0x7fb069bde000 (280K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x15000 reg fp  shmid: 0x2
(00.117585) 0x7fb069bde000-0x7fb069c10000 (200K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x5b000 reg fp  shmid: 0x2
(00.117588) 0x7fb069c10000-0x7fb069c11000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x8c000 reg fp  shmid: 0x2
(00.117591) 0x7fb069c11000-0x7fb069c12000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x8d000 reg fp  shmid: 0x2
(00.117594) 0x7fb069c12000-0x7fb069c15000 (12K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.117597) 0x7ffce94bf000-0x7ffce94e0000 (132K) prot 0x3 flags 0x122 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.117600) 0x7ffce9550000-0x7ffce9553000 (12K) prot 0x1 flags 0x22 fdflags 0 st 0x1201 off 0 reg vvar ap  shmid: 0
(00.117603) 0x7ffce9553000-0x7ffce9555000 (8K) prot 0x5 flags 0x22 fdflags 0 st 0x209 off 0 reg vdso ap  shmid: 0
(00.117605) 0xffffffffff600000-0xffffffffff601000 (4K) prot 0x5 flags 0x22 fdflags 0 st 0x204 off 0 vsys ap  shmid: 0
(00.117608) ----------------------------------------
(00.117611) 
(00.117613) Collecting fds (pid: 2860)
(00.117615) ----------------------------------------
(00.117626) Found 5 file descriptors
(00.117629) ----------------------------------------
(00.117636) Dump private signals of 2860
(00.117639) Dump shared signals of 2860
(00.117644) Parasite syscall_ip at 0x5603b8303000
(00.117694) Set up parasite blob using memfd
(00.117698) Putting parasite blob into 0x7f125b97a000->0x7fb0696dc000
(00.117722) Dumping general registers for 2860 in native mode
(00.117725) Dumping GP/FPU registers for 2860
(00.117731) x86: xsave runtime structure
(00.117734) x86: -----------------------
(00.117736) x86: cwd:0x37f swd:0 twd:0 fop:0 mxcsr:0x1f80 mxcsr_mask:0xffff
(00.117739) x86: magic1:0x46505853 extended_size:836 xstate_bv:0x7 xstate_size:832
(00.117741) x86: xstate_bv: 0x7
(00.117744) x86: -----------------------
(00.117746) Putting tsock into pid 2860
pie: 316: Running daemon thread leader
pie: 316: __sent ack msg: 2 2 0
pie: 316: Daemon waits for command
(00.117781) Wait for parasite being daemonized...
(00.117784) Wait for ack 2 on daemon socket
(00.117787) Fetched ack: 2 2 0
(00.117789) Parasite 2860 has been switched to daemon mode
(00.117792) vdso: vDSO hint is reliable - omit checking
pie: 316: __fetched msg: 74 0 0
pie: 316: __sent ack msg: 74 74 0
pie: 316: Daemon waits for command
(00.117806) Sent msg to daemon 74 0 0
(00.117808) Wait for ack 74 on daemon socket
(00.117811) Fetched ack: 74 74 0
pie: 316: __fetched msg: 70 0 0
pie: 316: __sent ack msg: 70 70 0
pie: 316: Daemon waits for command
(00.117826) Sent msg to daemon 70 0 0
(00.117829) Wait for ack 70 on daemon socket
(00.117831) Fetched ack: 70 70 0
(00.117834) sid=313 pgid=313 pid=316
(00.117852) 
(00.117855) Dumping opened files (pid: 2860)
(00.117858) ----------------------------------------
pie: 316: __fetched msg: 71 0 0
pie: 316: __sent ack msg: 71 71 0
pie: 316: Daemon waits for command
(00.117882) Sent msg to daemon 71 0 0
(00.117887) Wait for ack 71 on daemon socket
(00.117890) Fetched ack: 71 71 0
(00.117903) 2860 fdinfo 0: pos:                0 flags:           100002/0
(00.117913) Dumping path for 0 fd via self 12 [/dev/null]
(00.117937) 2860 fdinfo 1: pos:                0 flags:           100002/0
(00.117950) 2860 fdinfo 2: pos:                0 flags:           100002/0
(00.117963) 2860 fdinfo 3: pos:                0 flags:          2004002/0x1
(00.117969) sockets: Searching for socket 0x78ad family 2
(00.117978) sockets: No filter for socket
(00.117980) inet: Dumping inet socket at 3
(00.117984) inet:   Dumping: ino   0x78ad family AF_INET    type SOCK_STREAM    port       22 state TCP_LISTEN       src_addr 0.0.0.0
(00.117988) inet:   Dumped: family AF_INET    type SOCK_STREAM    proto IPPROTO_TCP      port 22 state 0                src_addr 0.0.0.0
(00.118001) 2860 fdinfo 4: pos:                0 flags:          2004002/0x1
(00.118005) sockets: Searching for socket 0x78af family 10
(00.118014) sockets: No filter for socket
(00.118016) inet: Dumping inet socket at 4
(00.118019) inet:   Dumping: ino   0x78af family AF_INET6   type SOCK_STREAM    port       22 state TCP_LISTEN       src_addr ::
(00.118022) inet:   Dumped: family AF_INET6   type SOCK_STREAM    proto IPPROTO_TCP      port 22 state 0                src_addr ::
(00.118029) ----------------------------------------
pie: 316: __fetched msg: 65 0 0
pie: 316: __sent ack msg: 65 65 0
pie: 316: Daemon waits for command
(00.120579) Sent msg to daemon 65 0 0
(00.120586) Wait for ack 65 on daemon socket
(00.120590) Fetched ack: 65 65 0
(00.120593) 
(00.120595) Dumping pages (type: 52 pid: 2860)
(00.120597) ----------------------------------------
(00.120600)    Private vmas 533/1588 pages
(00.120609) pagemap-cache: created for pid 2860 (takes 4264 bytes)
(00.120613) page-pipe: Create page pipe for 1588 segs
(00.120615) page-pipe: Will grow page pipe (iov off is 0)
(00.120643) pagemap-cache: filling VMA 5603b82fa000-5603b8303000 (36K) [l:5603b8200000 h:5603b8400000]
(00.120652) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.120655) pagemap-cache: filling VMA 5603b8303000-5603b8357000 (336K) [l:5603b8200000 h:5603b8400000]
(00.120660) page-pipe: Add iov to page pipe (0 iovs, 0/1588 total)
(00.120663) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.120665) pagemap-cache: filling VMA 5603b8357000-5603b8396000 (252K) [l:5603b8200000 h:5603b8400000]
(00.120670) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.120672) pagemap-cache: filling VMA 5603b8396000-5603b8399000 (12K) [l:5603b8200000 h:5603b8400000]
(00.120676) page-pipe: Add iov to page pipe (1 iovs, 1/1588 total)
(00.120678) Pagemap generated: 3 pages (0 lazy) 0 holes
(00.120681) pagemap-cache: filling VMA 5603b8399000-5603b839a000 (4K) [l:5603b8200000 h:5603b8400000]
(00.120684) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.120687) pagemap-cache: filling VMA 5603b839a000-5603b839e000 (16K) [l:5603b8200000 h:5603b8400000]
(00.120690) page-pipe: Will grow page pipe (iov off is 2)
(00.120696) page-pipe: Add iov to page pipe (0 iovs, 2/1588 total)
(00.120698) Pagemap generated: 4 pages (0 lazy) 0 holes
(00.120701) pagemap-cache: filling VMA 5603b8f6c000-5603b8fa7000 (236K) [l:5603b8e00000 h:5603b9000000]
(00.120705) page-pipe: Add iov to page pipe (1 iovs, 3/1588 total)
(00.120708) page-pipe: Grow pipe 10 -> 20
(00.120711) page-pipe: Grow pipe 20 -> 40
(00.120714) Pagemap generated: 59 pages (0 lazy) 0 holes
(00.120717) pagemap-cache: filling VMA 5603b8fa7000-5603b8faf000 (32K) [l:5603b8e00000 h:5603b9000000]
(00.120721) page-pipe: Grow pipe 40 -> 80
(00.120723) page-pipe: Add iov to page pipe (2 iovs, 4/1588 total)
(00.120726) Pagemap generated: 7 pages (0 lazy) 0 holes
(00.120728) pagemap-cache: filling VMA 7fb0696ee000-7fb069903000 (2132K) [l:7fb069600000 h:7fb069800000]
(00.120736) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.120739) pagemap-cache: filling VMA 7fb069903000-7fb069904000 (4K) [l:7fb069800000 h:7fb069a00000]
(00.120747) page-pipe: Will grow page pipe (iov off is 5)
(00.120751) page-pipe: Add iov to page pipe (0 iovs, 5/1588 total)
(00.120753) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.120756) pagemap-cache: filling VMA 7fb069904000-7fb069905000 (4K) [l:7fb069800000 h:7fb069a00000]
(00.120760) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.120762) pagemap-cache: filling VMA 7fb069905000-7fb06997a000 (468K) [l:7fb069800000 h:7fb069a00000]
(00.120767) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.120769) pagemap-cache: filling VMA 7fb06997a000-7fb069ad2000 (1376K) [l:7fb069800000 h:7fb069a00000]
(00.120779) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.120781) pagemap-cache: filling VMA 7fb069ad2000-7fb069b54000 (520K) [l:7fb069a00000 h:7fb069c00000]
(00.120788) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.120790) pagemap-cache: filling VMA 7fb069b54000-7fb069b7e000 (168K) [l:7fb069a00000 h:7fb069c00000]
(00.120795) page-pipe: Add iov to page pipe (1 iovs, 6/1588 total)
(00.120798) page-pipe: Grow pipe 10 -> 20
(00.120801) page-pipe: Grow pipe 20 -> 40
(00.120804) Pagemap generated: 42 pages (0 lazy) 0 holes
(00.120806) pagemap-cache: filling VMA 7fb069b7e000-7fb069b80000 (8K) [l:7fb069a00000 h:7fb069c00000]
(00.120810) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.120813) pagemap-cache: filling VMA 7fb069b80000-7fb069b83000 (12K) [l:7fb069a00000 h:7fb069c00000]
(00.120817) page-pipe: Will grow page pipe (iov off is 7)
(00.120821) page-pipe: Add iov to page pipe (0 iovs, 7/1588 total)
(00.120824) Pagemap generated: 3 pages (0 lazy) 0 holes
(00.120826) pagemap-cache: filling VMA 7fb069b83000-7fb069b98000 (84K) [l:7fb069a00000 h:7fb069c00000]
(00.120831) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.120833) pagemap-cache: filling VMA 7fb069b98000-7fb069bde000 (280K) [l:7fb069a00000 h:7fb069c00000]
(00.120838) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.120840) pagemap-cache: filling VMA 7fb069bde000-7fb069c10000 (200K) [l:7fb069a00000 h:7fb069c00000]
(00.120846) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.120848) pagemap-cache: filling VMA 7fb069c10000-7fb069c11000 (4K) [l:7fb069c00000 h:7fb069e00000]
(00.120851) pagemap-cache:      7fb069c10000-7fb069c11000     nr:1     cov:4096
(00.120854) pagemap-cache:      7fb069c11000-7fb069c12000     nr:2     cov:8192
(00.120856) pagemap-cache:      7fb069c12000-7fb069c15000     nr:3     cov:20480
(00.120859) pagemap-cache:  cache  mode [l:7fb069c10000 h:7fb069e00000]
(00.120863) page-pipe: Will grow page pipe (iov off is 8)
(00.120867) page-pipe: Add iov to page pipe (0 iovs, 8/1588 total)
(00.120869) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.120872) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.120874) page-pipe: Will grow page pipe (iov off is 9)
(00.120878) page-pipe: Add iov to page pipe (0 iovs, 9/1588 total)
(00.120881) Pagemap generated: 3 pages (0 lazy) 0 holes
(00.120883) pagemap-cache: filling VMA 7ffce94bf000-7ffce94e0000 (132K) [l:7ffce9400000 h:7ffce9600000]
(00.120888) page-pipe: Add iov to page pipe (1 iovs, 10/1588 total)
(00.120890) page-pipe: Will grow page pipe (iov off is 11)
(00.120894) page-pipe: Add iov to page pipe (0 iovs, 11/1588 total)
(00.120897) page-pipe: Will grow page pipe (iov off is 12)
(00.120900) page-pipe: Add iov to page pipe (0 iovs, 12/1588 total)
(00.120903) Pagemap generated: 3 pages (0 lazy) 0 holes
(00.120905) pagemap-cache: filling VMA 7ffce9550000-7ffce9553000 (12K) [l:7ffce9400000 h:7ffce9600000]
(00.120909) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.120911) pagemap-cache: filling VMA 7ffce9553000-7ffce9555000 (8K) [l:7ffce9400000 h:7ffce9600000]
(00.120915) page-pipe: Will grow page pipe (iov off is 13)
(00.120917) page-pipe: Page pipe:
(00.120920) page-pipe: * 8 pipes 13/1588 iovs:
(00.120922) page-pipe:  buf 5 pages, 2 iovs, flags: 0 pipe_off: 0 :
(00.120924) page-pipe:      0x5603b8303000 1
(00.120927) page-pipe:      0x5603b8396000 4
(00.120929) page-pipe:  buf 70 pages, 3 iovs, flags: 1 pipe_off: 0 :
(00.120931) page-pipe:      0x5603b839a000 4
(00.120934) page-pipe:      0x5603b8f6c000 65
(00.120939) page-pipe:      0x5603b8fae000 1
(00.120941) page-pipe:  buf 46 pages, 2 iovs, flags: 0 pipe_off: 0 :
(00.120944) page-pipe:      0x7fb069903000 2
(00.120946) page-pipe:      0x7fb069b54000 44
(00.120948) page-pipe:  buf 3 pages, 1 iovs, flags: 1 pipe_off: 0 :
(00.120950) page-pipe:      0x7fb069b80000 3
(00.120953) page-pipe:  buf 2 pages, 1 iovs, flags: 0 pipe_off: 0 :
(00.120955) page-pipe:      0x7fb069c10000 2
(00.120957) page-pipe:  buf 4 pages, 2 iovs, flags: 1 pipe_off: 0 :
(00.120960) page-pipe:      0x7fb069c12000 3
(00.120962) page-pipe:      0x7ffce94dd000 1
(00.120964) page-pipe:  buf 1 pages, 1 iovs, flags: 0 pipe_off: 0 :
(00.120967) page-pipe:      0x7ffce94de000 1
(00.120969) page-pipe:  buf 1 pages, 1 iovs, flags: 1 pipe_off: 0 :
(00.120971) page-pipe:      0x7ffce94df000 1
(00.120973) page-pipe: * 0 holes:
(00.120976) PPB: 5 pages 2 segs 16 pipe 0 off
pie: 316: __fetched msg: 66 0 0
(00.120990) Sent msg to daemon 66 0 0
pie: 316: __sent ack msg: 66 66 0
pie: 316: Daemon waits for command
(00.121005) Wait for ack 66 on daemon socket
(00.121008) Fetched ack: 66 66 0
(00.121010) PPB: 70 pages 3 segs 128 pipe 2 off
pie: 316: __fetched msg: 66 0 0
(00.121032) Sent msg to daemon 66 0 0
pie: 316: __sent ack msg: 66 66 0
pie: 316: Daemon waits for command
(00.121050) Wait for ack 66 on daemon socket
(00.121053) Fetched ack: 66 66 0
(00.121055) PPB: 46 pages 2 segs 64 pipe 5 off
pie: 316: __fetched msg: 66 0 0
(00.121064) Sent msg to daemon 66 0 0
pie: 316: __sent ack msg: 66 66 0
pie: 316: Daemon waits for command
(00.121077) Wait for ack 66 on daemon socket
(00.121080) Fetched ack: 66 66 0
(00.121083) PPB: 3 pages 1 segs 16 pipe 7 off
pie: 316: __fetched msg: 66 0 0
(00.121091) Sent msg to daemon 66 0 0
pie: 316: __sent ack msg: 66 66 0
pie: 316: Daemon waits for command
(00.121103) Wait for ack 66 on daemon socket
(00.121106) Fetched ack: 66 66 0
(00.121108) PPB: 2 pages 1 segs 16 pipe 8 off
pie: 316: __fetched msg: 66 0 0
(00.121116) Sent msg to daemon 66 0 0
pie: 316: __sent ack msg: 66 66 0
pie: 316: Daemon waits for command
(00.121129) Wait for ack 66 on daemon socket
(00.121132) Fetched ack: 66 66 0
(00.121134) PPB: 4 pages 2 segs 16 pipe 9 off
pie: 316: __fetched msg: 66 0 0
(00.121142) Sent msg to daemon 66 0 0
pie: 316: __sent ack msg: 66 66 0
pie: 316: Daemon waits for command
(00.121154) Wait for ack 66 on daemon socket
(00.121157) Fetched ack: 66 66 0
(00.121160) PPB: 1 pages 1 segs 16 pipe 11 off
pie: 316: __fetched msg: 66 0 0
(00.121168) Sent msg to daemon 66 0 0
pie: 316: __sent ack msg: 66 66 0
pie: 316: Daemon waits for command
(00.121180) Wait for ack 66 on daemon socket
(00.121183) Fetched ack: 66 66 0
(00.121185) PPB: 1 pages 1 segs 16 pipe 12 off
pie: 316: __fetched msg: 66 0 0
(00.121193) Sent msg to daemon 66 0 0
pie: 316: __sent ack msg: 66 66 0
pie: 316: Daemon waits for command
(00.121205) Wait for ack 66 on daemon socket
(00.121208) Fetched ack: 66 66 0
(00.121211) Transferring pages:
(00.121213)     buf 5/2
(00.121216)     p 0x5603b8303000 [1]
(00.121224)     p 0x5603b8396000 [4]
(00.121235)     buf 70/3
(00.121237)     p 0x5603b839a000 [4]
(00.121248)     p 0x5603b8f6c000 [65]
(00.121357)     p 0x5603b8fae000 [1]
(00.121362)     buf 46/2
(00.121365)     p 0x7fb069903000 [2]
(00.121372)     p 0x7fb069b54000 [44]
(00.121443)     buf 3/1
(00.121446)     p 0x7fb069b80000 [3]
(00.121454)     buf 2/1
(00.121456)     p 0x7fb069c10000 [2]
(00.121463)     buf 4/2
(00.121465)     p 0x7fb069c12000 [3]
(00.121473)     p 0x7ffce94dd000 [1]
(00.121477)     buf 1/1
(00.121480)     p 0x7ffce94de000 [1]
(00.121484)     buf 1/1
(00.121487)     p 0x7ffce94df000 [1]
(00.121492) page-pipe: Clean up page pipe
(00.121495) page-pipe: Will grow page pipe (iov off is 13)
(00.121497) page-pipe: Add iov to page pipe (0 iovs, 13/1588 total)
(00.121500) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.121502) page-pipe: Page pipe:
(00.121505) page-pipe: * 8 pipes 14/1588 iovs:
(00.121507) page-pipe:  buf 2 pages, 1 iovs, flags: 0 pipe_off: 0 :
(00.121509) page-pipe:      0x7ffce9553000 2
(00.121512) page-pipe: * 0 holes:
(00.121514) PPB: 2 pages 1 segs 16 pipe 13 off
pie: 316: __fetched msg: 66 0 0
(00.121528) Sent msg to daemon 66 0 0
pie: 316: __sent ack msg: 66 66 0
pie: 316: Daemon waits for command
(00.121543) Wait for ack 66 on daemon socket
(00.121546) Fetched ack: 66 66 0
(00.121548) Transferring pages:
(00.121551)     buf 2/1
(00.121553)     p 0x7ffce9553000 [2]
(00.121565) page-pipe: Killing page pipe
(00.121581) ----------------------------------------
pie: 316: __fetched msg: 65 0 0
pie: 316: __sent ack msg: 65 65 0
pie: 316: Daemon waits for command
(00.121595) Sent msg to daemon 65 0 0
(00.121598) Wait for ack 65 on daemon socket
(00.121600) Fetched ack: 65 65 0
pie: 316: __fetched msg: 67 0 0
pie: 316: __sent ack msg: 67 67 0
pie: 316: Daemon waits for command
(00.121631) Sent msg to daemon 67 0 0
(00.121634) Wait for ack 67 on daemon socket
(00.121637) Fetched ack: 67 67 0
pie: 316: __fetched msg: 68 0 0
pie: 316: __sent ack msg: 68 68 0
pie: 316: Daemon waits for command
(00.121654) Sent msg to daemon 68 0 0
(00.121656) Wait for ack 68 on daemon socket
(00.121659) Fetched ack: 68 68 0
pie: 316: __fetched msg: 69 0 0
pie: 316: __sent ack msg: 69 69 0
pie: 316: Daemon waits for command
(00.121672) Sent msg to daemon 69 0 0
(00.121675) Wait for ack 69 on daemon socket
(00.121677) Fetched ack: 69 69 0
(00.121680) 
(00.121682) Dumping core (pid: 2860)
(00.121685) ----------------------------------------
(00.121687) Obtaining personality ... 
pie: 316: __fetched msg: 64 0 0
pie: 316: __sent ack msg: 64 64 0
pie: 316: Daemon waits for command
(00.121733) Sent msg to daemon 64 0 0
(00.121736) Wait for ack 64 on daemon socket
(00.121739) Fetched ack: 64 64 0
(00.121752) 2860 has lsm profile lxd-test_</var/snap/lxd/common/lxd>//&:lxd-test_<var-snap-lxd-common-lxd>:unconfined
(00.121756) 2860 has 0 sched policy
(00.121759)     dumping 0 nice for 2860
(00.121762) dumping /proc/2860/loginuid
(00.121768) dumping /proc/2860/oom_score_adj
(00.121778) cg: Dumping cgroups for 2860
(00.121800) cg:  `- New css ID 6
(00.121804) cg:     `- [blkio] -> [/lxc.payload/test] [0]
(00.121806) cg:     `- [cpu,cpuacct] -> [/lxc.payload/test] [0]
(00.121808) cg:     `- [cpuset] -> [/lxc.payload/test] [0]
(00.121811) cg:     `- [devices] -> [/lxc.payload/test] [0]
(00.121813) cg:     `- [freezer] -> [/lxc.payload/test] [0]
(00.121815) cg:     `- [hugetlb] -> [/lxc.payload/test] [0]
(00.121818) cg:     `- [memory] -> [/lxc.payload/test] [0]
(00.121820) cg:     `- [name=systemd] -> [/lxc.payload/test] [0]
(00.121822) cg:     `- [net_cls,net_prio] -> [/lxc.payload/test] [0]
(00.121825) cg:     `- [perf_event] -> [/lxc.payload/test] [0]
(00.121827) cg:     `- [pids] -> [/lxc.payload/test] [0]
(00.121829) cg:     `- [rdma] -> [/lxc.payload/test] [0]
(00.121909) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.122035) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.122123) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.122203) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.122272) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.122344) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.122415) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.122508) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.122573) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.122642) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.122708) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.122777) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.122791) cg: Set 6 is a stray
(00.122833) ----------------------------------------
(00.122843) Waiting for 2860 to trap
(00.122847) Daemon 2860 exited trapping
(00.122852) Sent msg to daemon 3 0 0
(00.122856) Force no-breakpoints restore
(00.122864) 2860 was trapped
(00.122867) 2860 (native) is going to execute the syscall 45, required is 15
(00.122874) 2860 was trapped
(00.122876) `- Expecting exit
(00.122881) 2860 was trapped
(00.122884) 2860 (native) is going to execute the syscall 186, required is 15
(00.122890) 2860 was trapped
(00.122892) `- Expecting exit
(00.122897) 2860 was trapped
(00.122900) 2860 (native) is going to execute the syscall 1, required is 15
pie: 316: __fetched msg: 3 0 0
(00.122913) 2860 was trapped
(00.122915) `- Expecting exit
(00.122921) 2860 was trapped
(00.122924) 2860 (native) is going to execute the syscall 186, required is 15
(00.122929) 2860 was trapped
(00.122931) `- Expecting exit
(00.122936) 2860 was trapped
(00.122939) 2860 (native) is going to execute the syscall 186, required is 15
(00.122944) 2860 was trapped
(00.122947) `- Expecting exit
(00.122952) 2860 was trapped
(00.122955) 2860 (native) is going to execute the syscall 1, required is 15
pie: 316: 316: new_sp=0x7fb0696e8008 ip 0x7fb069bd5d23
(00.122962) 2860 was trapped
(00.122964) `- Expecting exit
(00.122981) 2860 was trapped
(00.122986) 2860 (native) is going to execute the syscall 3, required is 15
(00.122995) 2860 was trapped
(00.122997) `- Expecting exit
(00.123003) 2860 was trapped
(00.123006) 2860 (native) is going to execute the syscall 3, required is 15
(00.123012) 2860 was trapped
(00.123014) `- Expecting exit
(00.123019) 2860 was trapped
(00.123022) 2860 (native) is going to execute the syscall 15, required is 15
(00.123028) 2860 was stopped
(00.123060) 
(00.123064) Dumping mm (pid: 2860)
(00.123067) ----------------------------------------
(00.123069) 0x5603b82fa000-0x5603b8303000 (36K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0xf
(00.123073) 0x5603b8303000-0x5603b8357000 (336K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x9000 reg fp  shmid: 0xf
(00.123076) 0x5603b8357000-0x5603b8396000 (252K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x5d000 reg fp  shmid: 0xf
(00.123079) 0x5603b8396000-0x5603b8399000 (12K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x9b000 reg fp  shmid: 0xf
(00.123082) 0x5603b8399000-0x5603b839a000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x9e000 reg fp  shmid: 0xf
(00.123085) 0x5603b839a000-0x5603b839e000 (16K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.123088) 0x5603b8f6c000-0x5603b8fa7000 (236K) prot 0x3 flags 0x22 fdflags 0 st 0x221 off 0 reg heap ap  shmid: 0
(00.123091) 0x5603b8fa7000-0x5603b8faf000 (32K) prot 0x3 flags 0x22 fdflags 0 st 0x221 off 0 reg heap ap  shmid: 0
(00.123093) 0x7fb0696ee000-0x7fb069903000 (2132K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x10
(00.123096) 0x7fb069903000-0x7fb069904000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x15000 reg fp  shmid: 0x10
(00.123099) 0x7fb069904000-0x7fb069905000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x16000 reg fp  shmid: 0x10
(00.123102) 0x7fb069905000-0x7fb06997a000 (468K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x11
(00.123105) 0x7fb06997a000-0x7fb069ad2000 (1376K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x75000 reg fp  shmid: 0x11
(00.123108) 0x7fb069ad2000-0x7fb069b54000 (520K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x1cd000 reg fp  shmid: 0x11
(00.123111) 0x7fb069b54000-0x7fb069b7e000 (168K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x24e000 reg fp  shmid: 0x11
(00.123114) 0x7fb069b7e000-0x7fb069b80000 (8K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x278000 reg fp  shmid: 0x11
(00.123117) 0x7fb069b80000-0x7fb069b83000 (12K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.123119) 0x7fb069b83000-0x7fb069b98000 (84K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x2
(00.123122) 0x7fb069b98000-0x7fb069bde000 (280K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x15000 reg fp  shmid: 0x2
(00.123125) 0x7fb069bde000-0x7fb069c10000 (200K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x5b000 reg fp  shmid: 0x2
(00.123128) 0x7fb069c10000-0x7fb069c11000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x8c000 reg fp  shmid: 0x2
(00.123131) 0x7fb069c11000-0x7fb069c12000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x8d000 reg fp  shmid: 0x2
(00.123134) 0x7fb069c12000-0x7fb069c15000 (12K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.123137) 0x7ffce94bf000-0x7ffce94e0000 (132K) prot 0x3 flags 0x122 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.123140) 0x7ffce9550000-0x7ffce9553000 (12K) prot 0x1 flags 0x22 fdflags 0 st 0x1201 off 0 reg vvar ap  shmid: 0
(00.123146) 0x7ffce9553000-0x7ffce9555000 (8K) prot 0x5 flags 0x22 fdflags 0 st 0x209 off 0 reg vdso ap  shmid: 0
(00.123150) 0xffffffffff600000-0xffffffffff601000 (4K) prot 0x5 flags 0x22 fdflags 0 st 0x204 off 0 vsys ap  shmid: 0
(00.123153) Obtaining task auvx ...
(00.123212) Dumping task cwd id 0x4 root id 0x4
(00.123248) ========================================
(00.123251) Dumping task (pid: 2865)
(00.123254) ========================================
(00.123256) Obtaining task stat ... 
(00.123276) 
(00.123279) Collecting mappings (pid: 2865)
(00.123281) ----------------------------------------
(00.123351) vma 557eb6174000 borrows vfi from previous 557eb6168000
(00.123359) vma 557eb620f000 borrows vfi from previous 557eb6174000
(00.123366) vma 557eb6230000 borrows vfi from previous 557eb620f000
(00.123373) vma 557eb6234000 borrows vfi from previous 557eb6230000
(00.123422) vma 7f97facfc000 borrows vfi from previous 7f97face7000
(00.123429) vma 7f97fad42000 borrows vfi from previous 7f97facfc000
(00.123436) vma 7f97fad74000 borrows vfi from previous 7f97fad42000
(00.123442) vma 7f97fad75000 borrows vfi from previous 7f97fad74000
(00.123481) Collected, longest area occupies 155 pages
(00.123484) 0x557eb6168000-0x557eb6174000 (48K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x1
(00.123487) 0x557eb6174000-0x557eb620f000 (620K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0xc000 reg fp  shmid: 0x1
(00.123490) 0x557eb620f000-0x557eb622f000 (128K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xa7000 reg fp  shmid: 0x1
(00.123493) 0x557eb6230000-0x557eb6234000 (16K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xc7000 reg fp  shmid: 0x1
(00.123496) 0x557eb6234000-0x557eb6235000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0xcb000 reg fp  shmid: 0x1
(00.123499) 0x7f97face7000-0x7f97facfc000 (84K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x2
(00.123502) 0x7f97facfc000-0x7f97fad42000 (280K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x15000 reg fp  shmid: 0x2
(00.123504) 0x7f97fad42000-0x7f97fad74000 (200K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x5b000 reg fp  shmid: 0x2
(00.123507) 0x7f97fad74000-0x7f97fad75000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x8c000 reg fp  shmid: 0x2
(00.123510) 0x7f97fad75000-0x7f97fad76000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x8d000 reg fp  shmid: 0x2
(00.123513) 0x7f97fad76000-0x7f97fad79000 (12K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.123516) 0x7ffe5b291000-0x7ffe5b2b2000 (132K) prot 0x3 flags 0x122 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.123519) 0x7ffe5b34e000-0x7ffe5b351000 (12K) prot 0x1 flags 0x22 fdflags 0 st 0x1201 off 0 reg vvar ap  shmid: 0
(00.123522) 0x7ffe5b351000-0x7ffe5b353000 (8K) prot 0x5 flags 0x22 fdflags 0 st 0x209 off 0 reg vdso ap  shmid: 0
(00.123525) 0xffffffffff600000-0xffffffffff601000 (4K) prot 0x5 flags 0x22 fdflags 0 st 0x204 off 0 vsys ap  shmid: 0
(00.123528) ----------------------------------------
(00.123530) 
(00.123532) Collecting fds (pid: 2865)
(00.123535) ----------------------------------------
(00.123543) Found 3 file descriptors
(00.123546) ----------------------------------------
(00.123553) Dump private signals of 2865
(00.123556) Dump shared signals of 2865
(00.123561) Parasite syscall_ip at 0x557eb6174000
(00.124587) Set up parasite blob using memfd
(00.124593) Putting parasite blob into 0x7f125b97f000->0x7f97facda000
(00.124616) Dumping general registers for 2865 in native mode
(00.124619) Dumping GP/FPU registers for 2865
(00.124626) x86: xsave runtime structure
(00.124628) x86: -----------------------
(00.124630) x86: cwd:0x37f swd:0 twd:0 fop:0 mxcsr:0x1f80 mxcsr_mask:0xffff
(00.124633) x86: magic1:0x46505853 extended_size:836 xstate_bv:0x7 xstate_size:832
(00.124635) x86: xstate_bv: 0x7
(00.124638) x86: -----------------------
(00.124640) Putting tsock into pid 2865
pie: 321: Running daemon thread leader
pie: 321: __sent ack msg: 2 2 0
pie: 321: Daemon waits for command
(00.124676) Wait for parasite being daemonized...
(00.124679) Wait for ack 2 on daemon socket
(00.124682) Fetched ack: 2 2 0
(00.124686) Parasite 2865 has been switched to daemon mode
(00.124691) vdso: vDSO hint is reliable - omit checking
pie: 321: __fetched msg: 74 0 0
pie: 321: __sent ack msg: 74 74 0
pie: 321: Daemon waits for command
(00.124705) Sent msg to daemon 74 0 0
(00.124708) Wait for ack 74 on daemon socket
(00.124711) Fetched ack: 74 74 0
pie: 321: __fetched msg: 70 0 0
pie: 321: __sent ack msg: 70 70 0
pie: 321: Daemon waits for command
(00.124726) Sent msg to daemon 70 0 0
(00.124729) Wait for ack 70 on daemon socket
(00.124731) Fetched ack: 70 70 0
(00.124734) sid=321 pgid=321 pid=321
(00.124752) 
(00.124756) Dumping opened files (pid: 2865)
(00.124758) ----------------------------------------
pie: 321: __fetched msg: 71 0 0
pie: 321: __sent ack msg: 71 71 0
pie: 321: Daemon waits for command
(00.124776) Sent msg to daemon 71 0 0
(00.124780) Wait for ack 71 on daemon socket
(00.124783) Fetched ack: 71 71 0
(00.124799) 2865 fdinfo 0: pos:                0 flags:           100002/0
(00.124810) tty: Dumping tty 12 with id 0x15
pie: 321: __fetched msg: 73 0 0
pie: 321: __sent ack msg: 73 73 0
pie: 321: Daemon waits for command
(00.124827) Sent msg to daemon 73 0 0
(00.124830) Wait for ack 73 on daemon socket
(00.124833) Fetched ack: 73 73 0
(00.124861) 2865 fdinfo 1: pos:                0 flags:           100002/0
(00.124878) 2865 fdinfo 2: pos:                0 flags:           100002/0
(00.124887) ----------------------------------------
pie: 321: __fetched msg: 65 0 0
pie: 321: __sent ack msg: 65 65 0
pie: 321: Daemon waits for command
(00.124909) Sent msg to daemon 65 0 0
(00.124912) Wait for ack 65 on daemon socket
(00.124914) Fetched ack: 65 65 0
(00.124917) 
(00.124919) Dumping pages (type: 52 pid: 2865)
(00.124922) ----------------------------------------
(00.124949)    Private vmas 155/388 pages
(00.124960) pagemap-cache: created for pid 2865 (takes 4096 bytes)
(00.124963) page-pipe: Create page pipe for 388 segs
(00.124966) page-pipe: Will grow page pipe (iov off is 0)
(00.124993) pagemap-cache: filling VMA 557eb6168000-557eb6174000 (48K) [l:557eb6000000 h:557eb6200000]
(00.124999) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.125002) pagemap-cache: filling VMA 557eb6174000-557eb620f000 (620K) [l:557eb6000000 h:557eb6200000]
(00.125008) page-pipe: Add iov to page pipe (0 iovs, 0/388 total)
(00.125011) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.125014) pagemap-cache: filling VMA 557eb620f000-557eb622f000 (128K) [l:557eb6200000 h:557eb6400000]
(00.125016) pagemap-cache:      557eb620f000-557eb622f000     nr:1     cov:131072
(00.125019) pagemap-cache:      557eb6230000-557eb6234000     nr:2     cov:147456
(00.125022) pagemap-cache:      557eb6234000-557eb6235000     nr:3     cov:151552
(00.125024) pagemap-cache:  cache  mode [l:557eb620f000 h:557eb6400000]
(00.125029) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.125032) page-pipe: Add iov to page pipe (1 iovs, 1/388 total)
(00.125034) Pagemap generated: 4 pages (0 lazy) 0 holes
(00.125037) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.125039) pagemap-cache: filling VMA 7f97face7000-7f97facfc000 (84K) [l:7f97fac00000 h:7f97fae00000]
(00.125045) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.125047) pagemap-cache: filling VMA 7f97facfc000-7f97fad42000 (280K) [l:7f97fac00000 h:7f97fae00000]
(00.125052) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.125055) pagemap-cache: filling VMA 7f97fad42000-7f97fad74000 (200K) [l:7f97fac00000 h:7f97fae00000]
(00.125059) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.125062) pagemap-cache: filling VMA 7f97fad74000-7f97fad75000 (4K) [l:7f97fac00000 h:7f97fae00000]
(00.125065) page-pipe: Add iov to page pipe (2 iovs, 2/388 total)
(00.125068) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.125070) pagemap-cache: filling VMA 7f97fad75000-7f97fad76000 (4K) [l:7f97fac00000 h:7f97fae00000]
(00.125074) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.125076) pagemap-cache: filling VMA 7f97fad76000-7f97fad79000 (12K) [l:7f97fac00000 h:7f97fae00000]
(00.125080) page-pipe: Will grow page pipe (iov off is 3)
(00.125089) page-pipe: Add iov to page pipe (0 iovs, 3/388 total)
(00.125092) Pagemap generated: 3 pages (0 lazy) 0 holes
(00.125094) pagemap-cache: filling VMA 7ffe5b291000-7ffe5b2b2000 (132K) [l:7ffe5b200000 h:7ffe5b400000]
(00.125099) page-pipe: Will grow page pipe (iov off is 4)
(00.125103) page-pipe: Add iov to page pipe (0 iovs, 4/388 total)
(00.125105) page-pipe: Will grow page pipe (iov off is 5)
(00.125110) page-pipe: Add iov to page pipe (0 iovs, 5/388 total)
(00.125112) Pagemap generated: 3 pages (0 lazy) 0 holes
(00.125115) pagemap-cache: filling VMA 7ffe5b34e000-7ffe5b351000 (12K) [l:7ffe5b200000 h:7ffe5b400000]
(00.125118) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.125121) pagemap-cache: filling VMA 7ffe5b351000-7ffe5b353000 (8K) [l:7ffe5b200000 h:7ffe5b400000]
(00.125124) page-pipe: Will grow page pipe (iov off is 6)
(00.125128) page-pipe: Add iov to page pipe (0 iovs, 6/388 total)
(00.125131) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.125133) page-pipe: Page pipe:
(00.125135) page-pipe: * 5 pipes 7/388 iovs:
(00.125138) page-pipe:  buf 8 pages, 3 iovs, flags: 0 pipe_off: 0 :
(00.125140) page-pipe:      0x557eb6174000 1
(00.125143) page-pipe:      0x557eb6230000 5
(00.125145) page-pipe:      0x7f97fad74000 2
(00.125147) page-pipe:  buf 3 pages, 1 iovs, flags: 1 pipe_off: 0 :
(00.125150) page-pipe:      0x7f97fad76000 3
(00.125152) page-pipe:  buf 1 pages, 1 iovs, flags: 0 pipe_off: 0 :
(00.125154) page-pipe:      0x7ffe5b2af000 1
(00.125157) page-pipe:  buf 2 pages, 1 iovs, flags: 1 pipe_off: 0 :
(00.125159) page-pipe:      0x7ffe5b2b0000 2
(00.125161) page-pipe:  buf 2 pages, 1 iovs, flags: 0 pipe_off: 0 :
(00.125164) page-pipe:      0x7ffe5b351000 2
(00.125166) page-pipe: * 0 holes:
(00.125169) PPB: 8 pages 3 segs 16 pipe 0 off
pie: 321: __fetched msg: 66 0 0
(00.125181) Sent msg to daemon 66 0 0
pie: 321: __sent ack msg: 66 66 0
pie: 321: Daemon waits for command
(00.125196) Wait for ack 66 on daemon socket
(00.125199) Fetched ack: 66 66 0
(00.125202) PPB: 3 pages 1 segs 16 pipe 3 off
pie: 321: __fetched msg: 66 0 0
(00.125210) Sent msg to daemon 66 0 0
pie: 321: __sent ack msg: 66 66 0
pie: 321: Daemon waits for command
(00.125222) Wait for ack 66 on daemon socket
(00.125225) Fetched ack: 66 66 0
(00.125228) PPB: 1 pages 1 segs 16 pipe 4 off
pie: 321: __fetched msg: 66 0 0
(00.125236) Sent msg to daemon 66 0 0
pie: 321: __sent ack msg: 66 66 0
pie: 321: Daemon waits for command
(00.128386) Wait for ack 66 on daemon socket
(00.128393) Fetched ack: 66 66 0
(00.128396) PPB: 2 pages 1 segs 16 pipe 5 off
pie: 321: __fetched msg: 66 0 0
(00.128408) Sent msg to daemon 66 0 0
pie: 321: __sent ack msg: 66 66 0
pie: 321: Daemon waits for command
(00.128422) Wait for ack 66 on daemon socket
(00.128425) Fetched ack: 66 66 0
(00.128427) PPB: 2 pages 1 segs 16 pipe 6 off
pie: 321: __fetched msg: 66 0 0
(00.128435) Sent msg to daemon 66 0 0
pie: 321: __sent ack msg: 66 66 0
pie: 321: Daemon waits for command
(00.128449) Wait for ack 66 on daemon socket
(00.128452) Fetched ack: 66 66 0
(00.128455) Transferring pages:
(00.128457)     buf 8/3
(00.128459)     p 0x557eb6174000 [1]
(00.128468)     p 0x557eb6230000 [5]
(00.128480)     p 0x7f97fad74000 [2]
(00.128487)     buf 3/1
(00.128489)     p 0x7f97fad76000 [3]
(00.128498)     buf 1/1
(00.128500)     p 0x7ffe5b2af000 [1]
(00.128504)     buf 2/1
(00.128507)     p 0x7ffe5b2b0000 [2]
(00.128514)     buf 2/1
(00.128516)     p 0x7ffe5b351000 [2]
(00.128529) page-pipe: Killing page pipe
(00.128540) ----------------------------------------
pie: 321: __fetched msg: 65 0 0
pie: 321: __sent ack msg: 65 65 0
pie: 321: Daemon waits for command
(00.128554) Sent msg to daemon 65 0 0
(00.128557) Wait for ack 65 on daemon socket
(00.128560) Fetched ack: 65 65 0
pie: 321: __fetched msg: 67 0 0
pie: 321: __sent ack msg: 67 67 0
pie: 321: Daemon waits for command
(00.128590) Sent msg to daemon 67 0 0
(00.128592) Wait for ack 67 on daemon socket
(00.128595) Fetched ack: 67 67 0
pie: 321: __fetched msg: 68 0 0
pie: 321: __sent ack msg: 68 68 0
pie: 321: Daemon waits for command
(00.128613) Sent msg to daemon 68 0 0
(00.128615) Wait for ack 68 on daemon socket
(00.128622) Fetched ack: 68 68 0
pie: 321: __fetched msg: 69 0 0
pie: 321: __sent ack msg: 69 69 0
pie: 321: Daemon waits for command
(00.128635) Sent msg to daemon 69 0 0
(00.128638) Wait for ack 69 on daemon socket
(00.128641) Fetched ack: 69 69 0
(00.128643) 
(00.128645) Dumping core (pid: 2865)
(00.128648) ----------------------------------------
(00.128650) Obtaining personality ... 
pie: 321: __fetched msg: 64 0 0
pie: 321: __sent ack msg: 64 64 0
pie: 321: Daemon waits for command
(00.128695) Sent msg to daemon 64 0 0
(00.128698) Wait for ack 64 on daemon socket
(00.128701) Fetched ack: 64 64 0
(00.128713) 2865 has lsm profile lxd-test_</var/snap/lxd/common/lxd>//&:lxd-test_<var-snap-lxd-common-lxd>:unconfined
(00.128718) 2865 has 0 sched policy
(00.128721)     dumping 0 nice for 2865
(00.128725) dumping /proc/2865/loginuid
(00.128733) dumping /proc/2865/oom_score_adj
(00.128747) cg: Dumping cgroups for 2865
(00.128774) cg:  `- New css ID 7
(00.128777) cg:     `- [blkio] -> [/lxc.payload/test] [0]
(00.128780) cg:     `- [cpu,cpuacct] -> [/lxc.payload/test] [0]
(00.128782) cg:     `- [cpuset] -> [/lxc.payload/test] [0]
(00.128785) cg:     `- [devices] -> [/lxc.payload/test] [0]
(00.128787) cg:     `- [freezer] -> [/lxc.payload/test] [0]
(00.128789) cg:     `- [hugetlb] -> [/lxc.payload/test] [0]
(00.128791) cg:     `- [memory] -> [/lxc.payload/test] [0]
(00.128794) cg:     `- [name=systemd] -> [/lxc.payload/test] [0]
(00.128796) cg:     `- [net_cls,net_prio] -> [/lxc.payload/test] [0]
(00.128798) cg:     `- [perf_event] -> [/lxc.payload/test] [0]
(00.128801) cg:     `- [pids] -> [/lxc.payload/test] [0]
(00.128803) cg:     `- [rdma] -> [/lxc.payload/test] [0]
(00.128898) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.129006) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.129091) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.129171) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.129239) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.129310) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.129384) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.129476) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.129545) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.129614) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.129682) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.129751) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.129765) cg: Set 7 is a stray
(00.129820) ----------------------------------------
(00.129832) Waiting for 2865 to trap
(00.129836) Daemon 2865 exited trapping
(00.129840) Sent msg to daemon 3 0 0
(00.129845) Force no-breakpoints restore
(00.129852) 2865 was trapped
(00.129855) 2865 (native) is going to execute the syscall 45, required is 15
(00.129862) 2865 was trapped
(00.129865) `- Expecting exit
(00.129870) 2865 was trapped
(00.129873) 2865 (native) is going to execute the syscall 186, required is 15
(00.129878) 2865 was trapped
(00.129880) `- Expecting exit
(00.129886) 2865 was trapped
(00.129889) 2865 (native) is going to execute the syscall 1, required is 15
pie: 321: __fetched msg: 3 0 0
(00.129896) 2865 was trapped
(00.129899) `- Expecting exit
(00.129904) 2865 was trapped
(00.129907) 2865 (native) is going to execute the syscall 186, required is 15
(00.129912) 2865 was trapped
(00.129914) `- Expecting exit
(00.129919) 2865 was trapped
(00.129922) 2865 (native) is going to execute the syscall 186, required is 15
(00.129927) 2865 was trapped
(00.129930) `- Expecting exit
(00.129935) 2865 was trapped
(00.129938) 2865 (native) is going to execute the syscall 1, required is 15
pie: 321: 321: new_sp=0x7f97face1008 ip 0x7f97fad39d23
(00.129945) 2865 was trapped
(00.129947) `- Expecting exit
(00.129952) 2865 was trapped
(00.129955) 2865 (native) is going to execute the syscall 3, required is 15
(00.129963) 2865 was trapped
(00.129965) `- Expecting exit
(00.129971) 2865 was trapped
(00.129974) 2865 (native) is going to execute the syscall 3, required is 15
(00.129979) 2865 was trapped
(00.129986) `- Expecting exit
(00.129992) 2865 was trapped
(00.129995) 2865 (native) is going to execute the syscall 15, required is 15
(00.130001) 2865 was stopped
(00.130032) 
(00.130036) Dumping mm (pid: 2865)
(00.130038) ----------------------------------------
(00.130041) 0x557eb6168000-0x557eb6174000 (48K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x1
(00.130044) 0x557eb6174000-0x557eb620f000 (620K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0xc000 reg fp  shmid: 0x1
(00.130047) 0x557eb620f000-0x557eb622f000 (128K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xa7000 reg fp  shmid: 0x1
(00.130050) 0x557eb6230000-0x557eb6234000 (16K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xc7000 reg fp  shmid: 0x1
(00.130053) 0x557eb6234000-0x557eb6235000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0xcb000 reg fp  shmid: 0x1
(00.130056) 0x7f97face7000-0x7f97facfc000 (84K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x2
(00.130059) 0x7f97facfc000-0x7f97fad42000 (280K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x15000 reg fp  shmid: 0x2
(00.130062) 0x7f97fad42000-0x7f97fad74000 (200K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x5b000 reg fp  shmid: 0x2
(00.130065) 0x7f97fad74000-0x7f97fad75000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x8c000 reg fp  shmid: 0x2
(00.130068) 0x7f97fad75000-0x7f97fad76000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x8d000 reg fp  shmid: 0x2
(00.130071) 0x7f97fad76000-0x7f97fad79000 (12K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.130074) 0x7ffe5b291000-0x7ffe5b2b2000 (132K) prot 0x3 flags 0x122 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.130077) 0x7ffe5b34e000-0x7ffe5b351000 (12K) prot 0x1 flags 0x22 fdflags 0 st 0x1201 off 0 reg vvar ap  shmid: 0
(00.130080) 0x7ffe5b351000-0x7ffe5b353000 (8K) prot 0x5 flags 0x22 fdflags 0 st 0x209 off 0 reg vdso ap  shmid: 0
(00.130082) 0xffffffffff600000-0xffffffffff601000 (4K) prot 0x5 flags 0x22 fdflags 0 st 0x204 off 0 vsys ap  shmid: 0
(00.130086) Obtaining task auvx ...
(00.130139) Dumping task cwd id 0x4 root id 0x4
(00.130172) ========================================
(00.130175) Dumping task (pid: 3192)
(00.130177) ========================================
(00.130179) Obtaining task stat ... 
(00.130199) 
(00.130201) Collecting mappings (pid: 3192)
(00.130204) ----------------------------------------
(00.130273) Dumping path for -3 fd via self 12 [/usr/bin/iperf]
(00.130286) vma 561b9a075000 borrows vfi from previous 561b9a072000
(00.130293) vma 561b9a083000 borrows vfi from previous 561b9a075000
(00.130299) vma 561b9a08a000 borrows vfi from previous 561b9a083000
(00.130306) vma 561b9a08c000 borrows vfi from previous 561b9a08a000
(00.130413) Dumping path for -3 fd via self 12 [/usr/lib/libgcc_s.so.1]
(00.130424) vma 7f0db756d000 borrows vfi from previous 7f0db756a000
(00.130431) vma 7f0db7579000 borrows vfi from previous 7f0db756d000
(00.130437) vma 7f0db757c000 borrows vfi from previous 7f0db7579000
(00.130444) vma 7f0db757d000 borrows vfi from previous 7f0db757c000
(00.130492) Dumping path for -3 fd via self 12 [/usr/lib/libstdc++.so.6.0.25]
(00.130503) vma 7f0db761a000 borrows vfi from previous 7f0db757e000
(00.130511) vma 7f0db7688000 borrows vfi from previous 7f0db761a000
(00.130518) vma 7f0db76c1000 borrows vfi from previous 7f0db7688000
(00.130525) vma 7f0db76cf000 borrows vfi from previous 7f0db76c1000
(00.130578) vma 7f0db76e8000 borrows vfi from previous 7f0db76d3000
(00.130586) vma 7f0db772e000 borrows vfi from previous 7f0db76e8000
(00.130593) vma 7f0db7760000 borrows vfi from previous 7f0db772e000
(00.130600) vma 7f0db7761000 borrows vfi from previous 7f0db7760000
(00.130643) Collected, longest area occupies 2503 pages
(00.130646) 0x561b9a072000-0x561b9a075000 (12K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x16
(00.130650) 0x561b9a075000-0x561b9a083000 (56K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x3000 reg fp  shmid: 0x16
(00.130652) 0x561b9a083000-0x561b9a08a000 (28K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x11000 reg fp  shmid: 0x16
(00.130655) 0x561b9a08a000-0x561b9a08c000 (8K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x17000 reg fp  shmid: 0x16
(00.130662) 0x561b9a08c000-0x561b9a08d000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x19000 reg fp  shmid: 0x16
(00.130666) 0x561b9b8fb000-0x561b9b97c000 (516K) prot 0x3 flags 0x22 fdflags 0 st 0x221 off 0 reg heap ap  shmid: 0
(00.130669) 0x7f0db6b3a000-0x7f0db7501000 (10012K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.130672) 0x7f0db7501000-0x7f0db7503000 (8K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.130674) 0x7f0db7503000-0x7f0db7524000 (132K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.130677) 0x7f0db7524000-0x7f0db7526000 (8K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.130680) 0x7f0db7526000-0x7f0db7547000 (132K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.130683) 0x7f0db7547000-0x7f0db7549000 (8K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.130686) 0x7f0db7549000-0x7f0db756a000 (132K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.130689) 0x7f0db756a000-0x7f0db756d000 (12K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x17
(00.130692) 0x7f0db756d000-0x7f0db7579000 (48K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x3000 reg fp  shmid: 0x17
(00.130695) 0x7f0db7579000-0x7f0db757c000 (12K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xf000 reg fp  shmid: 0x17
(00.130697) 0x7f0db757c000-0x7f0db757d000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x11000 reg fp  shmid: 0x17
(00.130700) 0x7f0db757d000-0x7f0db757e000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x12000 reg fp  shmid: 0x17
(00.130703) 0x7f0db757e000-0x7f0db761a000 (624K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x18
(00.130706) 0x7f0db761a000-0x7f0db7688000 (440K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x9c000 reg fp  shmid: 0x18
(00.130709) 0x7f0db7688000-0x7f0db76c1000 (228K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x10a000 reg fp  shmid: 0x18
(00.130712) 0x7f0db76c1000-0x7f0db76cf000 (56K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x142000 reg fp  shmid: 0x18
(00.130715) 0x7f0db76cf000-0x7f0db76d0000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x150000 reg fp  shmid: 0x18
(00.130718) 0x7f0db76d0000-0x7f0db76d3000 (12K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.130720) 0x7f0db76d3000-0x7f0db76e8000 (84K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x2
(00.130723) 0x7f0db76e8000-0x7f0db772e000 (280K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x15000 reg fp  shmid: 0x2
(00.130726) 0x7f0db772e000-0x7f0db7760000 (200K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x5b000 reg fp  shmid: 0x2
(00.130729) 0x7f0db7760000-0x7f0db7761000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x8c000 reg fp  shmid: 0x2
(00.130732) 0x7f0db7761000-0x7f0db7762000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x8d000 reg fp  shmid: 0x2
(00.130735) 0x7f0db7762000-0x7f0db7765000 (12K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.130738) 0x7ffd4a7a8000-0x7ffd4a7c9000 (132K) prot 0x3 flags 0x122 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.130741) 0x7ffd4a7dd000-0x7ffd4a7e0000 (12K) prot 0x1 flags 0x22 fdflags 0 st 0x1201 off 0 reg vvar ap  shmid: 0
(00.130743) 0x7ffd4a7e0000-0x7ffd4a7e2000 (8K) prot 0x5 flags 0x22 fdflags 0 st 0x209 off 0 reg vdso ap  shmid: 0
(00.130746) 0xffffffffff600000-0xffffffffff601000 (4K) prot 0x5 flags 0x22 fdflags 0 st 0x204 off 0 vsys ap  shmid: 0
(00.130749) ----------------------------------------
(00.130752) 
(00.130754) Collecting fds (pid: 3192)
(00.130756) ----------------------------------------
(00.130769) Found 5 file descriptors
(00.130772) ----------------------------------------
(00.130779) Dump private signals of 3192
(00.130796) Dump private signals of 3193
(00.130800) Dump private signals of 3194
(00.130804) Dump private signals of 3203
(00.130808) Dump shared signals of 3192
(00.130817) Parasite syscall_ip at 0x561b9a075000
(00.130868) Set up parasite blob using memfd
(00.130872) Putting parasite blob into 0x7f125b96f000->0x7f0db6b1d000
(00.130900) Dumping general registers for 3192 in native mode
(00.130903) Dumping GP/FPU registers for 3192
(00.130910) x86: xsave runtime structure
(00.130912) x86: -----------------------
(00.130914) x86: cwd:0x37f swd:0 twd:0 fop:0 mxcsr:0x1f80 mxcsr_mask:0xffff
(00.130917) x86: magic1:0x46505853 extended_size:836 xstate_bv:0x7 xstate_size:832
(00.130920) x86: xstate_bv: 0x7
(00.130922) x86: -----------------------
(00.130924) Putting tsock into pid 3192
pie: 330: Running daemon thread leader
pie: 330: __sent ack msg: 2 2 0
pie: 330: Daemon waits for command
(00.130961) Wait for parasite being daemonized...
(00.130964) Wait for ack 2 on daemon socket
(00.130967) Fetched ack: 2 2 0
(00.130969) Parasite 3192 has been switched to daemon mode
(00.130972) vdso: vDSO hint is reliable - omit checking
pie: 330: __fetched msg: 74 0 0
pie: 330: __sent ack msg: 74 74 0
pie: 330: Daemon waits for command
(00.130986) Sent msg to daemon 74 0 0
(00.130989) Wait for ack 74 on daemon socket
(00.130992) Fetched ack: 74 74 0
pie: 330: __fetched msg: 70 0 0
pie: 330: __sent ack msg: 70 70 0
pie: 330: Daemon waits for command
(00.131007) Sent msg to daemon 70 0 0
(00.131010) Wait for ack 70 on daemon socket
(00.131013) Fetched ack: 70 70 0
(00.131016) sid=328 pgid=330 pid=330
(00.131034) 
(00.131037) Dumping opened files (pid: 3192)
(00.131040) ----------------------------------------
pie: 330: __fetched msg: 71 0 0
pie: 330: __sent ack msg: 71 71 0
pie: 330: Daemon waits for command
(00.131059) Sent msg to daemon 71 0 0
(00.131064) Wait for ack 71 on daemon socket
(00.131066) Fetched ack: 71 71 0
(00.131079) 3192 fdinfo 0: pos:                0 flags:           100002/0
(00.131089) tty: Dumping tty 12 with id 0x19
(00.131094) Dumping path for 0 fd via self 12 [/dev/pts/0 (deleted)]
(00.131096) Strip ' (deleted)' tag from './dev/pts/0 (deleted)'
pie: 330: __fetched msg: 73 0 0
pie: 330: tty: EIO on tty
pie: 330: __sent ack msg: 73 73 0
pie: 330: Daemon waits for command
(00.131115) Sent msg to daemon 73 0 0
(00.131118) Wait for ack 73 on daemon socket
(00.131121) Fetched ack: 73 73 0
(00.131148) 3192 fdinfo 1: pos:                0 flags:           100002/0
(00.131165) 3192 fdinfo 2: pos:                0 flags:           100002/0
(00.131179) 3192 fdinfo 3: pos:                0 flags:                2/0
(00.131185) sockets: Searching for socket 0x91db family 10
(00.131195) sockets: No filter for socket
(00.131197) inet: Dumping inet socket at 3
(00.131201) inet:   Dumping: ino   0x91db family AF_INET6   type SOCK_STREAM    port     5001 state TCP_LISTEN       src_addr ::
(00.131205) inet:   Dumped: family AF_INET6   type SOCK_STREAM    proto IPPROTO_TCP      port 5001 state 0                src_addr ::
(00.131218) 3192 fdinfo 4: pos:                0 flags:                2/0
(00.131222) sockets: Searching for socket 0x92ab family 10
(00.131230) sockets: No filter for socket
(00.131233) inet: Dumping inet socket at 4
(00.131236) inet:   Dumping: ino   0x92ab family AF_INET6   type SOCK_STREAM    port     5001 state TCP_ESTABLISHED  src_addr 2000:1:2:3::5
(00.131240) inet:   Dumped: family AF_INET6   type SOCK_STREAM    proto IPPROTO_TCP      port 5001 state 0                src_addr 2000:1:2:3::5
(00.131243) tcp: Dumping TCP connection
(00.131245) tcp:    Turning repair on for socket 92ab
(00.131266) tcp: Done
(00.131278) ----------------------------------------
pie: 330: __fetched msg: 65 0 0
pie: 330: __sent ack msg: 65 65 0
pie: 330: Daemon waits for command
(00.131302) Sent msg to daemon 65 0 0
(00.131305) Wait for ack 65 on daemon socket
(00.131308) Fetched ack: 65 65 0
(00.131310) 
(00.131312) Dumping pages (type: 52 pid: 3192)
(00.131315) ----------------------------------------
(00.131317)    Private vmas 2503/3309 pages
(00.131325) pagemap-cache: created for pid 3192 (takes 20024 bytes)
(00.131328) page-pipe: Create page pipe for 3309 segs
(00.131331) page-pipe: Will grow page pipe (iov off is 0)
(00.131356) pagemap-cache: filling VMA 561b9a072000-561b9a075000 (12K) [l:561b9a000000 h:561b9a200000]
(00.131359) pagemap-cache:      561b9a072000-561b9a075000     nr:1     cov:12288
(00.131366) pagemap-cache:      561b9a075000-561b9a083000     nr:2     cov:69632
(00.131369) pagemap-cache:      561b9a083000-561b9a08a000     nr:3     cov:98304
(00.131371) pagemap-cache:      561b9a08a000-561b9a08c000     nr:4     cov:106496
(00.131374) pagemap-cache:      561b9a08c000-561b9a08d000     nr:5     cov:110592
(00.131376) pagemap-cache:  cache  mode [l:561b9a072000 h:561b9a200000]
(00.131382) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.131384) page-pipe: Add iov to page pipe (0 iovs, 0/3309 total)
(00.131387) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.131389) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.131392) page-pipe: Add iov to page pipe (1 iovs, 1/3309 total)
(00.131394) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.131397) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.131399) pagemap-cache: filling VMA 561b9b8fb000-561b9b97c000 (516K) [l:561b9b800000 h:561b9ba00000]
(00.131404) page-pipe: Will grow page pipe (iov off is 2)
(00.131409) page-pipe: Add iov to page pipe (0 iovs, 2/3309 total)
(00.131412) page-pipe: Add iov to page pipe (1 iovs, 3/3309 total)
(00.131414) page-pipe: Add iov to page pipe (2 iovs, 4/3309 total)
(00.131417) page-pipe: Add iov to page pipe (3 iovs, 5/3309 total)
(00.131419) page-pipe: Add iov to page pipe (4 iovs, 6/3309 total)
(00.131422) page-pipe: Grow pipe 10 -> 20
(00.131425) page-pipe: Grow pipe 20 -> 40
(00.131428) page-pipe: Add iov to page pipe (5 iovs, 7/3309 total)
(00.131430) page-pipe: Add iov to page pipe (6 iovs, 8/3309 total)
(00.131433) page-pipe: Add iov to page pipe (7 iovs, 9/3309 total)
(00.131435) Pagemap generated: 43 pages (0 lazy) 0 holes
(00.131438) pagemap-cache: filling VMA 7f0db6b3a000-7f0db7501000 (10012K) [l:7f0db6a00000 h:7f0db6c00000]
(00.131452) page-pipe: Add iov to page pipe (8 iovs, 10/3309 total)
(00.131467) Pagemap generated: 16 pages (0 lazy) 0 holes
(00.131470) pagemap-cache: filling VMA 7f0db7501000-7f0db7503000 (8K) [l:7f0db7400000 h:7f0db7600000]
(00.131476) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.131478) pagemap-cache: filling VMA 7f0db7503000-7f0db7524000 (132K) [l:7f0db7400000 h:7f0db7600000]
(00.131484) page-pipe: Add iov to page pipe (9 iovs, 11/3309 total)
(00.131486) page-pipe: Will grow page pipe (iov off is 12)
(00.131490) page-pipe: Add iov to page pipe (0 iovs, 12/3309 total)
(00.131493) Pagemap generated: 3 pages (0 lazy) 0 holes
(00.131495) pagemap-cache: filling VMA 7f0db7524000-7f0db7526000 (8K) [l:7f0db7400000 h:7f0db7600000]
(00.131501) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.131503) pagemap-cache: filling VMA 7f0db7526000-7f0db7547000 (132K) [l:7f0db7400000 h:7f0db7600000]
(00.131508) page-pipe: Will grow page pipe (iov off is 13)
(00.131512) page-pipe: Add iov to page pipe (0 iovs, 13/3309 total)
(00.131515) page-pipe: Will grow page pipe (iov off is 14)
(00.131518) page-pipe: Add iov to page pipe (0 iovs, 14/3309 total)
(00.131521) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.131523) pagemap-cache: filling VMA 7f0db7547000-7f0db7549000 (8K) [l:7f0db7400000 h:7f0db7600000]
(00.131528) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.131531) pagemap-cache: filling VMA 7f0db7549000-7f0db756a000 (132K) [l:7f0db7400000 h:7f0db7600000]
(00.131536) page-pipe: Add iov to page pipe (1 iovs, 15/3309 total)
(00.131538) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.131541) pagemap-cache: filling VMA 7f0db756a000-7f0db756d000 (12K) [l:7f0db7400000 h:7f0db7600000]
(00.131546) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.131548) pagemap-cache: filling VMA 7f0db756d000-7f0db7579000 (48K) [l:7f0db7400000 h:7f0db7600000]
(00.131553) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.131555) pagemap-cache: filling VMA 7f0db7579000-7f0db757c000 (12K) [l:7f0db7400000 h:7f0db7600000]
(00.131560) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.131562) pagemap-cache: filling VMA 7f0db757c000-7f0db757d000 (4K) [l:7f0db7400000 h:7f0db7600000]
(00.131567) page-pipe: Add iov to page pipe (2 iovs, 16/3309 total)
(00.131569) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.131574) pagemap-cache: filling VMA 7f0db757d000-7f0db757e000 (4K) [l:7f0db7400000 h:7f0db7600000]
(00.131579) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.131582) pagemap-cache: filling VMA 7f0db757e000-7f0db761a000 (624K) [l:7f0db7400000 h:7f0db7600000]
(00.131591) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.131593) pagemap-cache: filling VMA 7f0db761a000-7f0db7688000 (440K) [l:7f0db7600000 h:7f0db7800000]
(00.131596) pagemap-cache:      7f0db761a000-7f0db7688000     nr:1     cov:450560
(00.131598) pagemap-cache:      7f0db7688000-7f0db76c1000     nr:2     cov:684032
(00.131601) pagemap-cache:      7f0db76c1000-7f0db76cf000     nr:3     cov:741376
(00.131603) pagemap-cache:      7f0db76cf000-7f0db76d0000     nr:4     cov:745472
(00.131606) pagemap-cache:      7f0db76d0000-7f0db76d3000     nr:5     cov:757760
(00.131608) pagemap-cache:      7f0db76d3000-7f0db76e8000     nr:6     cov:843776
(00.131611) pagemap-cache:      7f0db76e8000-7f0db772e000     nr:7     cov:1130496
(00.131614) pagemap-cache:      7f0db772e000-7f0db7760000     nr:8     cov:1335296
(00.131616) pagemap-cache:      7f0db7760000-7f0db7761000     nr:9     cov:1339392
(00.131619) pagemap-cache:      7f0db7761000-7f0db7762000     nr:10    cov:1343488
(00.131621) pagemap-cache:      7f0db7762000-7f0db7765000     nr:11    cov:1355776
(00.131624) pagemap-cache:  cache  mode [l:7f0db761a000 h:7f0db7800000]
(00.131630) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.131633) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.131635) page-pipe: Add iov to page pipe (3 iovs, 17/3309 total)
(00.131638) page-pipe: Grow pipe 10 -> 20
(00.131641) Pagemap generated: 14 pages (0 lazy) 0 holes
(00.131643) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.131646) page-pipe: Will grow page pipe (iov off is 18)
(00.131650) page-pipe: Add iov to page pipe (0 iovs, 18/3309 total)
(00.131653) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.131655) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.131658) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.131661) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.131663) page-pipe: Will grow page pipe (iov off is 19)
(00.131667) page-pipe: Add iov to page pipe (0 iovs, 19/3309 total)
(00.131669) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.131672) Pagemap generated: 1 pages (0 lazy) 0 holes
(00.131674) page-pipe: Will grow page pipe (iov off is 20)
(00.131678) page-pipe: Add iov to page pipe (0 iovs, 20/3309 total)
(00.131680) Pagemap generated: 3 pages (0 lazy) 0 holes
(00.131683) pagemap-cache: filling VMA 7ffd4a7a8000-7ffd4a7c9000 (132K) [l:7ffd4a600000 h:7ffd4a800000]
(00.131687) page-pipe: Add iov to page pipe (1 iovs, 21/3309 total)
(00.131689) page-pipe: Will grow page pipe (iov off is 22)
(00.131692) page-pipe: Page pipe:
(00.131694) page-pipe: * 8 pipes 22/3309 iovs:
(00.131696) page-pipe:  buf 4 pages, 2 iovs, flags: 0 pipe_off: 0 :
(00.131699) page-pipe:      0x561b9a075000 1
(00.131701) page-pipe:      0x561b9a08a000 3
(00.131703) page-pipe:  buf 61 pages, 10 iovs, flags: 1 pipe_off: 0 :
(00.131706) page-pipe:      0x561b9b8fb000 1
(00.131708) page-pipe:      0x561b9b90c000 1
(00.131710) page-pipe:      0x561b9b92c000 2
(00.131712) page-pipe:      0x561b9b92f000 2
(00.131715) page-pipe:      0x561b9b935000 33
(00.131717) page-pipe:      0x561b9b95a000 1
(00.131719) page-pipe:      0x561b9b95d000 2
(00.131721) page-pipe:      0x561b9b97b000 1
(00.131724) page-pipe:      0x7f0db6b3a000 16
(00.131726) page-pipe:      0x7f0db7521000 2
(00.131728) page-pipe:  buf 1 pages, 1 iovs, flags: 0 pipe_off: 0 :
(00.131730) page-pipe:      0x7f0db7523000 1
(00.131733) page-pipe:  buf 1 pages, 1 iovs, flags: 1 pipe_off: 0 :
(00.131735) page-pipe:      0x7f0db7544000 1
(00.131737) page-pipe:  buf 19 pages, 4 iovs, flags: 0 pipe_off: 0 :
(00.131740) page-pipe:      0x7f0db7546000 1
(00.131742) page-pipe:      0x7f0db7569000 1
(00.131744) page-pipe:      0x7f0db757c000 2
(00.131746) page-pipe:      0x7f0db76c1000 15
(00.131749) page-pipe:  buf 2 pages, 1 iovs, flags: 1 pipe_off: 0 :
(00.131751) page-pipe:      0x7f0db76d1000 2
(00.131753) page-pipe:  buf 2 pages, 1 iovs, flags: 0 pipe_off: 0 :
(00.131771) page-pipe:      0x7f0db7760000 2
(00.131775) page-pipe:  buf 5 pages, 2 iovs, flags: 1 pipe_off: 0 :
(00.131777) page-pipe:      0x7f0db7762000 3
(00.131780) page-pipe:      0x7ffd4a7c5000 2
(00.131782) page-pipe: * 0 holes:
(00.131784) PPB: 4 pages 2 segs 16 pipe 0 off
pie: 330: __fetched msg: 66 0 0
(00.132838) Sent msg to daemon 66 0 0
pie: 330: __sent ack msg: 66 66 0
pie: 330: Daemon waits for command
(00.132860) Wait for ack 66 on daemon socket
(00.132863) Fetched ack: 66 66 0
(00.132866) PPB: 61 pages 10 segs 64 pipe 2 off
pie: 330: __fetched msg: 66 0 0
(00.132874) Sent msg to daemon 66 0 0
pie: 330: __sent ack msg: 66 66 0
pie: 330: Daemon waits for command
(00.132889) Wait for ack 66 on daemon socket
(00.132892) Fetched ack: 66 66 0
(00.132895) PPB: 1 pages 1 segs 16 pipe 12 off
pie: 330: __fetched msg: 66 0 0
(00.132903) Sent msg to daemon 66 0 0
pie: 330: __sent ack msg: 66 66 0
pie: 330: Daemon waits for command
(00.132915) Wait for ack 66 on daemon socket
(00.132918) Fetched ack: 66 66 0
(00.132921) PPB: 1 pages 1 segs 16 pipe 13 off
pie: 330: __fetched msg: 66 0 0
(00.132929) Sent msg to daemon 66 0 0
pie: 330: __sent ack msg: 66 66 0
pie: 330: Daemon waits for command
(00.132941) Wait for ack 66 on daemon socket
(00.132944) Fetched ack: 66 66 0
(00.132946) PPB: 19 pages 4 segs 32 pipe 14 off
pie: 330: __fetched msg: 66 0 0
(00.132954) Sent msg to daemon 66 0 0
pie: 330: __sent ack msg: 66 66 0
pie: 330: Daemon waits for command
(00.132967) Wait for ack 66 on daemon socket
(00.132970) Fetched ack: 66 66 0
(00.132973) PPB: 2 pages 1 segs 16 pipe 18 off
pie: 330: __fetched msg: 66 0 0
(00.132981) Sent msg to daemon 66 0 0
pie: 330: __sent ack msg: 66 66 0
pie: 330: Daemon waits for command
(00.132993) Wait for ack 66 on daemon socket
(00.132996) Fetched ack: 66 66 0
(00.132998) PPB: 2 pages 1 segs 16 pipe 19 off
pie: 330: __fetched msg: 66 0 0
(00.133006) Sent msg to daemon 66 0 0
pie: 330: __sent ack msg: 66 66 0
pie: 330: Daemon waits for command
(00.133019) Wait for ack 66 on daemon socket
(00.133022) Fetched ack: 66 66 0
(00.133024) PPB: 5 pages 2 segs 16 pipe 20 off
pie: 330: __fetched msg: 66 0 0
(00.133032) Sent msg to daemon 66 0 0
pie: 330: __sent ack msg: 66 66 0
pie: 330: Daemon waits for command
(00.133045) Wait for ack 66 on daemon socket
(00.133048) Fetched ack: 66 66 0
(00.133050) Transferring pages:
(00.133052)     buf 4/2
(00.133055)     p 0x561b9a075000 [1]
(00.133065)     p 0x561b9a08a000 [3]
(00.133073)     buf 61/10
(00.133076)     p 0x561b9b8fb000 [1]
(00.133081)     p 0x561b9b90c000 [1]
(00.133085)     p 0x561b9b92c000 [2]
(00.133092)     p 0x561b9b92f000 [2]
(00.133098)     p 0x561b9b935000 [33]
(00.133155)     p 0x561b9b95a000 [1]
(00.133160)     p 0x561b9b95d000 [2]
(00.133166)     p 0x561b9b97b000 [1]
(00.133171)     p 0x7f0db6b3a000 [16]
(00.133200)     p 0x7f0db7521000 [2]
(00.133206)     buf 1/1
(00.133209)     p 0x7f0db7523000 [1]
(00.133213)     buf 1/1
(00.133216)     p 0x7f0db7544000 [1]
(00.133220)     buf 19/4
(00.133222)     p 0x7f0db7546000 [1]
(00.133227)     p 0x7f0db7569000 [1]
(00.133232)     p 0x7f0db757c000 [2]
(00.133239)     p 0x7f0db76c1000 [15]
(00.133265)     buf 2/1
(00.133268)     p 0x7f0db76d1000 [2]
(00.133274)     buf 2/1
(00.133277)     p 0x7f0db7760000 [2]
(00.133283)     buf 5/2
(00.133285)     p 0x7f0db7762000 [3]
(00.133293)     p 0x7ffd4a7c5000 [2]
(00.133299) page-pipe: Clean up page pipe
(00.133301) page-pipe: Will grow page pipe (iov off is 22)
(00.133304) page-pipe: Add iov to page pipe (0 iovs, 22/3309 total)
(00.133307) page-pipe: Will grow page pipe (iov off is 23)
(00.133309) page-pipe: Add iov to page pipe (0 iovs, 23/3309 total)
(00.133311) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.133314) pagemap-cache: filling VMA 7ffd4a7dd000-7ffd4a7e0000 (12K) [l:7ffd4a600000 h:7ffd4a800000]
(00.133318) Pagemap generated: 0 pages (0 lazy) 0 holes
(00.133321) pagemap-cache: filling VMA 7ffd4a7e0000-7ffd4a7e2000 (8K) [l:7ffd4a600000 h:7ffd4a800000]
(00.133324) page-pipe: Will grow page pipe (iov off is 24)
(00.133326) page-pipe: Add iov to page pipe (0 iovs, 24/3309 total)
(00.133329) Pagemap generated: 2 pages (0 lazy) 0 holes
(00.133335) page-pipe: Page pipe:
(00.133337) page-pipe: * 8 pipes 25/3309 iovs:
(00.133340) page-pipe:  buf 1 pages, 1 iovs, flags: 0 pipe_off: 0 :
(00.133342) page-pipe:      0x7ffd4a7c7000 1
(00.133344) page-pipe:  buf 1 pages, 1 iovs, flags: 1 pipe_off: 0 :
(00.133347) page-pipe:      0x7ffd4a7c8000 1
(00.133349) page-pipe:  buf 2 pages, 1 iovs, flags: 0 pipe_off: 0 :
(00.133351) page-pipe:      0x7ffd4a7e0000 2
(00.133353) page-pipe: * 0 holes:
(00.133356) PPB: 1 pages 1 segs 16 pipe 22 off
pie: 330: __fetched msg: 66 0 0
(00.133366) Sent msg to daemon 66 0 0
pie: 330: __sent ack msg: 66 66 0
pie: 330: Daemon waits for command
(00.133379) Wait for ack 66 on daemon socket
(00.133382) Fetched ack: 66 66 0
(00.133384) PPB: 1 pages 1 segs 16 pipe 23 off
pie: 330: __fetched msg: 66 0 0
(00.133392) Sent msg to daemon 66 0 0
pie: 330: __sent ack msg: 66 66 0
pie: 330: Daemon waits for command
(00.133404) Wait for ack 66 on daemon socket
(00.133408) Fetched ack: 66 66 0
(00.133410) PPB: 2 pages 1 segs 16 pipe 24 off
pie: 330: __fetched msg: 66 0 0
(00.133418) Sent msg to daemon 66 0 0
pie: 330: __sent ack msg: 66 66 0
pie: 330: Daemon waits for command
(00.133431) Wait for ack 66 on daemon socket
(00.133434) Fetched ack: 66 66 0
(00.133437) Transferring pages:
(00.133439)     buf 1/1
(00.133441)     p 0x7ffd4a7c7000 [1]
(00.133446)     buf 1/1
(00.133449)     p 0x7ffd4a7c8000 [1]
(00.133453)     buf 2/1
(00.133456)     p 0x7ffd4a7e0000 [2]
(00.133469) page-pipe: Killing page pipe
(00.133484) ----------------------------------------
pie: 330: __fetched msg: 65 0 0
pie: 330: __sent ack msg: 65 65 0
pie: 330: Daemon waits for command
(00.133500) Sent msg to daemon 65 0 0
(00.133503) Wait for ack 65 on daemon socket
(00.133506) Fetched ack: 65 65 0
pie: 330: __fetched msg: 67 0 0
pie: 330: __sent ack msg: 67 67 0
pie: 330: Daemon waits for command
(00.133536) Sent msg to daemon 67 0 0
(00.133539) Wait for ack 67 on daemon socket
(00.133541) Fetched ack: 67 67 0
pie: 330: __fetched msg: 68 0 0
pie: 330: __sent ack msg: 68 68 0
pie: 330: Daemon waits for command
(00.133560) Sent msg to daemon 68 0 0
(00.133563) Wait for ack 68 on daemon socket
(00.133566) Fetched ack: 68 68 0
pie: 330: __fetched msg: 69 0 0
pie: 330: __sent ack msg: 69 69 0
pie: 330: Daemon waits for command
(00.133579) Sent msg to daemon 69 0 0
(00.133582) Wait for ack 69 on daemon socket
(00.133585) Fetched ack: 69 69 0
(00.133587) 
(00.133589) Dumping core (pid: 3192)
(00.133592) ----------------------------------------
(00.133594) Obtaining personality ... 
pie: 330: __fetched msg: 64 0 0
pie: 330: __sent ack msg: 64 64 0
pie: 330: Daemon waits for command
(00.133640) Sent msg to daemon 64 0 0
(00.133643) Wait for ack 64 on daemon socket
(00.133646) Fetched ack: 64 64 0
(00.133659) 3192 has lsm profile lxd-test_</var/snap/lxd/common/lxd>//&:lxd-test_<var-snap-lxd-common-lxd>:unconfined
(00.133663) 3192 has 0 sched policy
(00.133665)     dumping 0 nice for 3192
(00.133668) dumping /proc/3192/loginuid
(00.133675) dumping /proc/3192/oom_score_adj
(00.133687) cg: Dumping cgroups for 3192
(00.133707) cg:  `- New css ID 8
(00.133711) cg:     `- [blkio] -> [/lxc.payload/test] [0]
(00.133726) cg:     `- [cpu,cpuacct] -> [/lxc.payload/test] [0]
(00.133729) cg:     `- [cpuset] -> [/lxc.payload/test] [0]
(00.133731) cg:     `- [devices] -> [/lxc.payload/test] [0]
(00.133734) cg:     `- [freezer] -> [/lxc.payload/test] [0]
(00.133736) cg:     `- [hugetlb] -> [/lxc.payload/test] [0]
(00.133738) cg:     `- [memory] -> [/lxc.payload/test] [0]
(00.133740) cg:     `- [name=systemd] -> [/lxc.payload/test] [0]
(00.133743) cg:     `- [net_cls,net_prio] -> [/lxc.payload/test] [0]
(00.133745) cg:     `- [perf_event] -> [/lxc.payload/test] [0]
(00.133747) cg:     `- [pids] -> [/lxc.payload/test] [0]
(00.133750) cg:     `- [rdma] -> [/lxc.payload/test] [0]
(00.133824) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.133927) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.134011) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.134091) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.134165) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.134235) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.134310) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.134403) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.134473) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.134543) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.134609) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.134676) cg: adding cgroup /proc/self/fd/12/lxc.payload/test
(00.134702) cg: Set 8 is a stray
(00.134746) ----------------------------------------
(00.136720) Waiting for 3192 to trap
(00.136727) Daemon 3192 exited trapping
(00.136732) Sent msg to daemon 3 0 0
(00.136737) Force no-breakpoints restore
(00.136745) 3192 was trapped
(00.136748) 3192 (native) is going to execute the syscall 45, required is 15
(00.136755) 3192 was trapped
(00.136758) `- Expecting exit
(00.136763) 3192 was trapped
(00.136766) 3192 (native) is going to execute the syscall 186, required is 15
(00.136771) 3192 was trapped
(00.136774) `- Expecting exit
(00.136779) 3192 was trapped
(00.136782) 3192 (native) is going to execute the syscall 1, required is 15
pie: 330: __fetched msg: 3 0 0
(00.136789) 3192 was trapped
(00.136792) `- Expecting exit
(00.136799) 3192 was trapped
(00.136802) 3192 (native) is going to execute the syscall 186, required is 15
(00.136807) 3192 was trapped
(00.136809) `- Expecting exit
(00.136814) 3192 was trapped
(00.136817) 3192 (native) is going to execute the syscall 186, required is 15
(00.136822) 3192 was trapped
(00.136825) `- Expecting exit
(00.136830) 3192 was trapped
(00.136833) 3192 (native) is going to execute the syscall 1, required is 15
pie: 330: 330: new_sp=0x7f0db6b30008 ip 0x7f0db7725d23
(00.136840) 3192 was trapped
(00.136842) `- Expecting exit
(00.136847) 3192 was trapped
(00.136850) 3192 (native) is going to execute the syscall 3, required is 15
(00.136858) 3192 was trapped
(00.136860) `- Expecting exit
(00.136865) 3192 was trapped
(00.136868) 3192 (native) is going to execute the syscall 3, required is 15
(00.136873) 3192 was trapped
(00.136876) `- Expecting exit
(00.136881) 3192 was trapped
(00.136884) 3192 (native) is going to execute the syscall 15, required is 15
(00.136890) 3192 was stopped
(00.136893) 
(00.136895) Dumping core for thread (pid: 3193)
(00.136897) ----------------------------------------
(00.136900) Dumping general registers for 3193 in native mode
(00.136903) Dumping GP/FPU registers for 3193
(00.136955) 3193 has lsm profile lxd-test_</var/snap/lxd/common/lxd>//&:lxd-test_<var-snap-lxd-common-lxd>:unconfined
(00.136960) 3193 has 0 sched policy
(00.136963)     dumping 0 nice for 3193
(00.136995) ----------------------------------------
(00.136998) 
(00.137000) Dumping core for thread (pid: 3194)
(00.137002) ----------------------------------------
(00.137004) Dumping general registers for 3194 in native mode
(00.137007) Warn  (compel/arch/x86/src/lib/infect.c:273): Will restore 3194 with interrupted system call
(00.137009) Dumping GP/FPU registers for 3194
(00.137056) 3194 has lsm profile lxd-test_</var/snap/lxd/common/lxd>//&:lxd-test_<var-snap-lxd-common-lxd>:unconfined
(00.137061) 3194 has 0 sched policy
(00.137064)     dumping 0 nice for 3194
(00.137091) ----------------------------------------
(00.137094) 
(00.137096) Dumping core for thread (pid: 3203)
(00.137098) ----------------------------------------
(00.137101) Dumping general registers for 3203 in native mode
(00.137103) Dumping GP/FPU registers for 3203
(00.137148) 3203 has lsm profile lxd-test_</var/snap/lxd/common/lxd>//&:lxd-test_<var-snap-lxd-common-lxd>:unconfined
(00.137153) 3203 has 0 sched policy
(00.137156)     dumping 0 nice for 3203
(00.137186) ----------------------------------------
(00.137221) 
(00.137225) Dumping mm (pid: 3192)
(00.137227) ----------------------------------------
(00.137230) 0x561b9a072000-0x561b9a075000 (12K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x16
(00.137233) 0x561b9a075000-0x561b9a083000 (56K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x3000 reg fp  shmid: 0x16
(00.137241) 0x561b9a083000-0x561b9a08a000 (28K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x11000 reg fp  shmid: 0x16
(00.137244) 0x561b9a08a000-0x561b9a08c000 (8K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x17000 reg fp  shmid: 0x16
(00.137247) 0x561b9a08c000-0x561b9a08d000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x19000 reg fp  shmid: 0x16
(00.137250) 0x561b9b8fb000-0x561b9b97c000 (516K) prot 0x3 flags 0x22 fdflags 0 st 0x221 off 0 reg heap ap  shmid: 0
(00.137253) 0x7f0db6b3a000-0x7f0db7501000 (10012K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.137256) 0x7f0db7501000-0x7f0db7503000 (8K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.137258) 0x7f0db7503000-0x7f0db7524000 (132K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.137261) 0x7f0db7524000-0x7f0db7526000 (8K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.137264) 0x7f0db7526000-0x7f0db7547000 (132K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.137267) 0x7f0db7547000-0x7f0db7549000 (8K) prot 0 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.137270) 0x7f0db7549000-0x7f0db756a000 (132K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.137273) 0x7f0db756a000-0x7f0db756d000 (12K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x17
(00.137276) 0x7f0db756d000-0x7f0db7579000 (48K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x3000 reg fp  shmid: 0x17
(00.137279) 0x7f0db7579000-0x7f0db757c000 (12K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0xf000 reg fp  shmid: 0x17
(00.137281) 0x7f0db757c000-0x7f0db757d000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x11000 reg fp  shmid: 0x17
(00.137284) 0x7f0db757d000-0x7f0db757e000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x12000 reg fp  shmid: 0x17
(00.137287) 0x7f0db757e000-0x7f0db761a000 (624K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x18
(00.137290) 0x7f0db761a000-0x7f0db7688000 (440K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x9c000 reg fp  shmid: 0x18
(00.137293) 0x7f0db7688000-0x7f0db76c1000 (228K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x10a000 reg fp  shmid: 0x18
(00.137296) 0x7f0db76c1000-0x7f0db76cf000 (56K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x142000 reg fp  shmid: 0x18
(00.137299) 0x7f0db76cf000-0x7f0db76d0000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x150000 reg fp  shmid: 0x18
(00.137301) 0x7f0db76d0000-0x7f0db76d3000 (12K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.137304) 0x7f0db76d3000-0x7f0db76e8000 (84K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0 reg fp  shmid: 0x2
(00.137307) 0x7f0db76e8000-0x7f0db772e000 (280K) prot 0x5 flags 0x2 fdflags 0 st 0x41 off 0x15000 reg fp  shmid: 0x2
(00.137310) 0x7f0db772e000-0x7f0db7760000 (200K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x5b000 reg fp  shmid: 0x2
(00.137313) 0x7f0db7760000-0x7f0db7761000 (4K) prot 0x1 flags 0x2 fdflags 0 st 0x41 off 0x8c000 reg fp  shmid: 0x2
(00.137316) 0x7f0db7761000-0x7f0db7762000 (4K) prot 0x3 flags 0x2 fdflags 0 st 0x41 off 0x8d000 reg fp  shmid: 0x2
(00.137319) 0x7f0db7762000-0x7f0db7765000 (12K) prot 0x3 flags 0x22 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.137322) 0x7ffd4a7a8000-0x7ffd4a7c9000 (132K) prot 0x3 flags 0x122 fdflags 0 st 0x201 off 0 reg ap  shmid: 0
(00.137324) 0x7ffd4a7dd000-0x7ffd4a7e0000 (12K) prot 0x1 flags 0x22 fdflags 0 st 0x1201 off 0 reg vvar ap  shmid: 0
(00.137327) 0x7ffd4a7e0000-0x7ffd4a7e2000 (8K) prot 0x5 flags 0x22 fdflags 0 st 0x209 off 0 reg vdso ap  shmid: 0
(00.137330) 0xffffffffff600000-0xffffffffff601000 (4K) prot 0x5 flags 0x22 fdflags 0 st 0x204 off 0 vsys ap  shmid: 0
(00.137333) Obtaining task auvx ...
(00.137392) Dumping path for -3 fd via self 16 [/home/alpine]
(00.137409) Dumping task cwd id 0x1d root id 0x4
(00.137442) mnt: Dumping mountpoints
(00.137445) mnt:    565: 43:/ @ ./run
(00.160992) mnt:    564: 42:/ptmx @ ./dev/ptmx
(00.161004) mnt:    563: 42:/ @ ./dev/pts
(00.161008) mnt:    726: 2e:/0 @ ./dev/console
(00.161011) mnt:    725: 35:/test @ ./dev/.lxd-mounts
(00.161015) mnt:    724: 36:/ @ ./dev/lxd
(00.161023) mnt:    723: 12:/ @ ./dev/mqueue
(00.161026) mnt:    722: 7:/ @ ./sys/kernel/security
(00.161030) mnt:    721: 8:/ @ ./sys/kernel/debug
(00.161033) mnt:    720: 1c:/ @ ./sys/fs/pstore
(00.161037) mnt:    719: 2a:/ @ ./sys/fs/fuse/connections
(00.161040) mnt:    718: 41:/ @ ./proc/sys/fs/binfmt_misc
(00.161043) mnt:    706: 6:/net/tun @ ./dev/net/tun
(00.161047) mnt:    705: 6:/fuse @ ./dev/fuse
(00.161050) mnt:    704: 6:/zero @ ./dev/zero
(00.161070) mnt:    703: 6:/urandom @ ./dev/urandom
(00.161077) mnt:    702: 6:/tty @ ./dev/tty
(00.161081) mnt:    701: 6:/random @ ./dev/random
(00.161084) mnt:    700: 6:/null @ ./dev/null
(00.161087) mnt:    699: 6:/full @ ./dev/full
(00.161090) mnt:    698: 34:/proc/uptime @ ./proc/uptime
(00.161094) mnt:    697: 34:/proc/swaps @ ./proc/swaps
(00.161097) mnt:    696: 34:/proc/stat @ ./proc/stat
(00.161100) mnt:    695: 34:/proc/meminfo @ ./proc/meminfo
(00.161103) mnt:    694: 34:/proc/loadavg @ ./proc/loadavg
(00.161107) mnt:    693: 34:/proc/diskstats @ ./proc/diskstats
(00.161110) mnt:    692: 34:/proc/cpuinfo @ ./proc/cpuinfo
(00.161113) mnt:    691: 40:/ @ ./sys
(00.161116) mnt:    690: 3e:/ @ ./proc
(00.161119) mnt:    689: 3f:/ @ ./dev
(00.161122) mnt: Mount is not fully visible ./dev
(00.161148) mnt:    mount has children ./dev
tar: ./log: socket ignored
(00.164749) mnt:    688: 37:/containers/test/rootfs @ ./
(00.164767) Dumping file-locks
(00.164775) 
(00.164778) Dumping pstree (pid: 1653)
(00.164780) ----------------------------------------
(00.164784) Process: 1(1653)
(00.164803) Process: 219(2025)
(00.164807) Process: 246(2083)
(00.164810) Process: 281(2812)
(00.164812) Process: 316(2860)
(00.164815) Process: 321(2865)
(00.164817) Process: 330(3192)
(00.164820) ----------------------------------------
(00.164827) Dumping 1(1653)'s namespaces
(00.165017) Dump NET namespace info 9 via 1653
(00.165175) Mount ns' sysfs in crtools-sys.Xzhsyh
(00.165209) Dumping netns links
(00.165248) Dumping netns links
(00.165262)     LD: Got link 1, type 772
(00.165265) The peer link is in the -1 netns with the 1 index
(00.165587) net/ipv6/conf/lo/stable_secret nr 200
(00.165646)     LD: Got link 7, type 1
(00.165655) The peer link is in the 0 netns with the 8 index
(00.165658) Warn  (criu/net.c:455): The eth0 veth is in an external netns
(00.165661) Found ll addr (00:../6) for eth0
(00.165964) net/ipv6/conf/eth0/stable_secret nr 200
(00.166021)     Running ip addr save  
(00.168510) Dump IPC namespace 10 via 1653
(00.168643) IPC shared memory segments: 0
(00.168650) IPC message queues: 0
(00.168655) IPC semaphore sets: 0
(00.172414) Dump UTS namespace 11 via 1653
(00.173140)     Running ip route save  
(00.173629)     Running ip -6 route save 
(00.174136)     Running ip rule save  
(00.174629)     Running iptables-save for iptables-save
(00.175836)     Running ip6tables-save for ip6tables-save
(00.179671) net/ipv6/conf/default/stable_secret nr 200
(00.179871) net/ipv6/conf/all/stable_secret nr 200
(00.179942) Dumping netns links
(00.191963) Dumping netns links
(00.192580) Namespaces dump complete
(00.192590) cg: Dumping 7 sets
(00.192598) cg:    `- Dumping blkio of /lxc.payload/test
(00.192602) cg:    `- Dumping cpu,cpuacct of /lxc.payload/test
(00.192604) cg:    `- Dumping cpuset of /lxc.payload/test
(00.192606) cg:    `- Dumping devices of /lxc.payload/test
(00.192609) cg:    `- Dumping freezer of /lxc.payload/test
(00.192611) cg:    `- Dumping hugetlb of /lxc.payload/test
(00.192613) cg:    `- Dumping memory of /lxc.payload/test
(00.192616) cg:    `- Dumping name=systemd of /lxc.payload/test
(00.192618) cg:    `- Dumping net_cls,net_prio of /lxc.payload/test
(00.192620) cg:    `- Dumping perf_event of /lxc.payload/test
(00.192622) cg:    `- Dumping pids of /lxc.payload/test
(00.192625) cg:    `- Dumping rdma of /lxc.payload/test
(00.192628) cg:    `- Dumping blkio of /lxc.payload/test
(00.192630) cg:    `- Dumping cpu,cpuacct of /lxc.payload/test
(00.192633) cg:    `- Dumping cpuset of /lxc.payload/test
(00.192635) cg:    `- Dumping devices of /lxc.payload/test
(00.192637) cg:    `- Dumping freezer of /lxc.payload/test
(00.192646) cg:    `- Dumping hugetlb of /lxc.payload/test
(00.192648) cg:    `- Dumping memory of /lxc.payload/test
(00.192650) cg:    `- Dumping name=systemd of /lxc.payload/test
(00.192653) cg:    `- Dumping net_cls,net_prio of /lxc.payload/test
(00.192655) cg:    `- Dumping perf_event of /lxc.payload/test
(00.192657) cg:    `- Dumping pids of /lxc.payload/test
(00.192659) cg:    `- Dumping rdma of /lxc.payload/test
(00.192662) cg:    `- Dumping blkio of /lxc.payload/test
(00.192664) cg:    `- Dumping cpu,cpuacct of /lxc.payload/test
(00.192667) cg:    `- Dumping cpuset of /lxc.payload/test
(00.192669) cg:    `- Dumping devices of /lxc.payload/test
(00.192671) cg:    `- Dumping freezer of /lxc.payload/test
(00.192673) cg:    `- Dumping hugetlb of /lxc.payload/test
(00.192676) cg:    `- Dumping memory of /lxc.payload/test
(00.192678) cg:    `- Dumping name=systemd of /lxc.payload/test
(00.192680) cg:    `- Dumping net_cls,net_prio of /lxc.payload/test
(00.192682) cg:    `- Dumping perf_event of /lxc.payload/test
(00.192685) cg:    `- Dumping pids of /lxc.payload/test
(00.192687) cg:    `- Dumping rdma of /lxc.payload/test
(00.192690) cg:    `- Dumping blkio of /lxc.payload/test
(00.192693) cg:    `- Dumping cpu,cpuacct of /lxc.payload/test
(00.192695) cg:    `- Dumping cpuset of /lxc.payload/test
(00.192698) cg:    `- Dumping devices of /lxc.payload/test
(00.192700) cg:    `- Dumping freezer of /lxc.payload/test
(00.192702) cg:    `- Dumping hugetlb of /lxc.payload/test
(00.192704) cg:    `- Dumping memory of /lxc.payload/test
(00.192707) cg:    `- Dumping name=systemd of /lxc.payload/test
(00.192709) cg:    `- Dumping net_cls,net_prio of /lxc.payload/test
(00.192711) cg:    `- Dumping perf_event of /lxc.payload/test
(00.192713) cg:    `- Dumping pids of /lxc.payload/test
(00.192716) cg:    `- Dumping rdma of /lxc.payload/test
(00.192718) cg:    `- Dumping blkio of /lxc.payload/test
(00.192720) cg:    `- Dumping cpu,cpuacct of /lxc.payload/test
(00.192723) cg:    `- Dumping cpuset of /lxc.payload/test
(00.192725) cg:    `- Dumping devices of /lxc.payload/test
(00.192727) cg:    `- Dumping freezer of /lxc.payload/test
(00.192730) cg:    `- Dumping hugetlb of /lxc.payload/test
(00.192732) cg:    `- Dumping memory of /lxc.payload/test
(00.192734) cg:    `- Dumping name=systemd of /lxc.payload/test
(00.192736) cg:    `- Dumping net_cls,net_prio of /lxc.payload/test
(00.192739) cg:    `- Dumping perf_event of /lxc.payload/test
(00.192741) cg:    `- Dumping pids of /lxc.payload/test
(00.192743) cg:    `- Dumping rdma of /lxc.payload/test
(00.192746) cg:    `- Dumping blkio of /lxc.payload/test
(00.192748) cg:    `- Dumping cpu,cpuacct of /lxc.payload/test
(00.192750) cg:    `- Dumping cpuset of /lxc.payload/test
(00.192753) cg:    `- Dumping devices of /lxc.payload/test
(00.192755) cg:    `- Dumping freezer of /lxc.payload/test
(00.192757) cg:    `- Dumping hugetlb of /lxc.payload/test
(00.192760) cg:    `- Dumping memory of /lxc.payload/test
(00.192762) cg:    `- Dumping name=systemd of /lxc.payload/test
(00.192764) cg:    `- Dumping net_cls,net_prio of /lxc.payload/test
(00.192766) cg:    `- Dumping perf_event of /lxc.payload/test
(00.192769) cg:    `- Dumping pids of /lxc.payload/test
(00.192771) cg:    `- Dumping rdma of /lxc.payload/test
(00.192773) cg:    `- Dumping blkio of /lxc.payload/test
(00.192776) cg:    `- Dumping cpu,cpuacct of /lxc.payload/test
(00.192778) cg:    `- Dumping cpuset of /lxc.payload/test
(00.192780) cg:    `- Dumping devices of /lxc.payload/test
(00.192782) cg:    `- Dumping freezer of /lxc.payload/test
(00.192785) cg:    `- Dumping hugetlb of /lxc.payload/test
(00.192787) cg:    `- Dumping memory of /lxc.payload/test
(00.192789) cg:    `- Dumping name=systemd of /lxc.payload/test
(00.192791) cg:    `- Dumping net_cls,net_prio of /lxc.payload/test
(00.192794) cg:    `- Dumping perf_event of /lxc.payload/test
(00.192796) cg:    `- Dumping pids of /lxc.payload/test
(00.192798) cg:    `- Dumping rdma of /lxc.payload/test
(00.192829) cg: Writing CG image
(00.192933) unix: Dumping external sockets
(00.192942) Writing image inventory (version 1)
(00.192994) Running post-dump scripts
(00.192997) Unlock network
(00.193008) Running network-unlock scripts
iptables-restore: invalid option -- 'w'
ip6tables-restore: invalid option -- 'w'
(00.194542) Unfreezing tasks into 1
(00.194550)     Unseizing 1653 into 1
(00.194563)     Unseizing 2025 into 1
(00.194575)     Unseizing 2083 into 1
(00.194595)     Unseizing 2812 into 1
(00.195142)     Unseizing 2860 into 1
(00.195158)     Unseizing 2865 into 1
(00.195169)     Unseizing 3192 into 1
(00.200709) Writing stats
(00.200758) Dumping finished successfully
haha150 commented 5 years ago

did the logs give any hint to how to solve the problem?

haha150 commented 5 years ago

Sorry to bother you, but was there any updates on this issue??

github-actions[bot] commented 3 years ago

A friendly reminder that this issue had no activity for 30 days.