Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Freezing the DBus program creates some problems #2448

Open
wjyrich opened this issue Jul 19, 2024 · 1 comment
Open

Freezing the DBus program creates some problems #2448

wjyrich opened this issue Jul 19, 2024 · 1 comment

Comments

@wjyrich
Copy link

wjyrich commented Jul 19, 2024

Description
I am currently working on freezing a dbus program using CRIU, but I have encountered some issues with restore it.I would like to be able to restore the DBus program without changing the node of the DBus socket, which is still the same as before。
When I open the dbus program to listen, I can get the PID and the socket node as follows:
image

Steps to reproduce the issue:
1.The command I had to dump the dbus program was:

sudo criu dump -D imgdir -o dump.log -v4 -x --external unix[66434] -t 5690 -j

2.After dumping the program was successfully dump, but I had a problem trying to restore,At first I wanted to use this code for restore:

sudo criu restore -d -D imgdir -o restore.log -v4 --ext-unix-sk --inherit-fd fd[3]:socket:[66434]

.
But it had an error as shown in the picture:
image

And when I do the following code, I change fd[3] to fd[2] to be able to restoreAlso the content of the log is that the command I executed below. I see socket node 66434 in fd[3] in the log.:

sudo criu restore -d -D imgdir -o restore.log -v4 --ext-unix-sk --inherit-fd fd[2]:socket:[66434] -j

I was able to get fd[3] and it became something like this: It turns out that the socket is overwritten
image
And when I do the following code, I change fd[3] to fd[2] to be able to restore and change socket node 66434 to 66436

sudo criu restore -d -D imgdir -o restore.log -v4 --ext-unix-sk --inherit-fd fd[2]:socket:[66436] -j

It produces a new socket node, but that's not the result I wanted.
image

3.Besides, I used the following code to successfully restore too:

criu restore -d -D imgdir -o restore.log -v4 -x -j

but a new node was generated, which caused the message to not be able to send information to this dbus program, and the connection could not be generated:
image

Describe the results you received:
Unable to restore fd[3] with socket[node] stored.

Describe the results you expected:
What I want is to be able to restore the socket node of fd[3] through the following code:sudo criu restore -d -D imgdir -o restore.log -v4 --ext-unix-sk --inherit-fd fd[3]:socket:[44341] , instead of generating a new node for communication connection.

I would appreciate it if you could get back to my question as soon as possible Thanks again!

CRIU logs and information:

CRIU full restore logs:

(00.000000) CRIU run id = 0xeffffffc000017bc
(00.000067) Version: 3.19 (gitid 0)
(00.000073) Running on wjy-20 Linux 5.15.77-amd64-desktop #1 SMP Wed Nov 9 15:59:34 CST 2022 x86_64
(00.000091) Loaded kdat cache from /run/criu.kdat
(00.000116) Hugetlb size 2 Mb is supported but cannot get dev's number
(00.000135) Hugetlb size 1024 Mb is supported but cannot get dev's number
(00.000794) File socket:[66434] will be restored from inherit fd 2
(00.000815) rlimit: RLIMIT_NOFILE unlimited for self
(00.000941) cpu: x86_family 6 x86_vendor_id GenuineIntel x86_model_id 12th Gen Intel(R) Core(TM) i5-12500H
(00.000950) cpu: fpu: xfeatures_mask 0x205 xsave_size 2696 xsave_size_max 2696 xsaves_size 840
(00.000961) cpu: fpu: x87 floating point registers     xstate_offsets      0 / 0      xstate_sizes    160 / 160   
(00.000963) cpu: fpu: AVX registers                    xstate_offsets    576 / 576    xstate_sizes    256 / 256   
(00.000965) cpu: fpu: Protection Keys User registers   xstate_offsets   2688 / 832    xstate_sizes      8 / 8     
(00.000967) cpu: fpu:1 fxsr:1 xsave:1 xsaveopt:1 xsavec:1 xgetbv1:1 xsaves:1
(00.001001) kernel pid_max=4194304
(00.001004) Reading image tree
(00.001027) Add mnt ns 6 pid 5690
(00.001031) Add net ns 2 pid 5690
(00.001032) Add pid ns 1 pid 5690
(00.001036) pstree pid_max=5690
(00.001041) Migrating process tree (SID 3374->3364)
(00.001043) Will restore in 0 namespaces
(00.001045) NS mask to use 0
(00.001083) Collecting 51/56 (flags 3)
(00.001089) No memfd.img image
(00.001095)  `- ... done
(00.001103) Collecting 40/54 (flags 2)
(00.001115) Collected [home/wjy-20/Music/dbus_test/dbus_test] ID 0x1
(00.001120) Collected [usr/lib/x86_64-linux-gnu/libgpg-error.so.0.26.1] ID 0x2
(00.001122) Collected [usr/lib/x86_64-linux-gnu/libgcrypt.so.20.2.4] ID 0x3
(00.001124) Collected [usr/lib/x86_64-linux-gnu/liblz4.so.1.8.3] ID 0x4
(00.001129) Collected [usr/lib/x86_64-linux-gnu/libzstd.so.1.4.8] ID 0x5
(00.001133) Collected [usr/lib/x86_64-linux-gnu/liblzma.so.5.2.5] ID 0x6
(00.001135) Collected [usr/lib/x86_64-linux-gnu/librt-2.31.so] ID 0x7
(00.001138) Collected [usr/lib/x86_64-linux-gnu/libsystemd.so.0.33.0] ID 0x8
(00.001140) Collected [usr/lib/x86_64-linux-gnu/libpthread-2.31.so] ID 0x9
(00.001141) Collected [usr/lib/x86_64-linux-gnu/libc-2.31.so] ID 0xa
(00.001143) Collected [usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13] ID 0xb
(00.001145) Collected [usr/lib/x86_64-linux-gnu/ld-2.31.so] ID 0xc
(00.001147) Collected [dev/tty2] ID 0xe
(00.001159) Collected [home/wjy-20/Music/dbus_test] ID 0x10
(00.001163) Collected [.] ID 0x11
(00.001167) unix:  `- Got id 0x12 ino 60946 type SOCK_DGRAM state TCP_LISTEN peer 0 (name /run/user/1000/bus dir -)
(00.001176) unix:  `- Got id 0xf ino 66434 type SOCK_STREAM state TCP_ESTABLISHED peer 60946 (name - dir -)
(00.001182)  `- ... done
(00.001183) Collecting 46/68 (flags 0)
(00.001187) No remap-fpath.img image
(00.001189)  `- ... done
(00.001200) No apparmor.img image
(00.001266) cg: Preparing cgroups yard (cgroups restore mode 0x4)
(00.001545) cg: Opening .criu.cgyard.HOoXCF as cg yard
(00.001558) cg: 	Making controller dir .criu.cgyard.HOoXCF/cpuset (cpuset)
(00.001606) cg: Determined cgroup dir cpuset/ already exist
(00.001609) cg: Skip restoring properties on cgroup dir cpuset/
(00.001625) cg: 	Making controller dir .criu.cgyard.HOoXCF/blkio (blkio)
(00.001652) cg: Determined cgroup dir blkio/ already exist
(00.001654) cg: Skip restoring properties on cgroup dir blkio/
(00.001662) cg: 	Making controller dir .criu.cgyard.HOoXCF/freezer (freezer)
(00.001680) cg: Determined cgroup dir freezer/ already exist
(00.001682) cg: Skip restoring properties on cgroup dir freezer/
(00.001689) cg: 	Making controller dir .criu.cgyard.HOoXCF/hugetlb (hugetlb)
(00.001766) cg: Determined cgroup dir hugetlb/ already exist
(00.001769) cg: Skip restoring properties on cgroup dir hugetlb/
(00.002123) cg: 	Making controller dir .criu.cgyard.HOoXCF/memory (memory)
(00.002224) cg: Determined cgroup dir memory/user.slice/user-1000.slice/session-5.scope already exist
(00.002232) cg: Skip restoring properties on cgroup dir memory/user.slice/user-1000.slice/session-5.scope
(00.002256) cg: 	Making controller dir .criu.cgyard.HOoXCF/perf_event (perf_event)
(00.002559) cg: Determined cgroup dir perf_event/ already exist
(00.002566) cg: Skip restoring properties on cgroup dir perf_event/
(00.002579) cg: 	Making controller dir .criu.cgyard.HOoXCF/devices (devices)
(00.003146) cg: Determined cgroup dir devices/user.slice already exist
(00.003155) cg: Skip restoring properties on cgroup dir devices/user.slice
(00.003168) cg: 	Making controller dir .criu.cgyard.HOoXCF/net_cls,net_prio (net_cls,net_prio)
(00.003313) cg: Determined cgroup dir net_cls,net_prio/ already exist
(00.003318) cg: Skip restoring properties on cgroup dir net_cls,net_prio/
(00.003565) cg: 	Making controller dir .criu.cgyard.HOoXCF/rdma (rdma)
(00.003627) cg: Determined cgroup dir rdma/ already exist
(00.003631) cg: Skip restoring properties on cgroup dir rdma/
(00.003641) cg: 	Making controller dir .criu.cgyard.HOoXCF/pids (pids)
(00.003675) cg: Determined cgroup dir pids/user.slice/user-1000.slice/session-5.scope already exist
(00.003677) cg: Skip restoring properties on cgroup dir pids/user.slice/user-1000.slice/session-5.scope
(00.003686) cg: 	Making controller dir .criu.cgyard.HOoXCF/cpu,cpuacct (cpu,cpuacct)
(00.003751) cg: Determined cgroup dir cpu,cpuacct/ already exist
(00.003755) cg: Skip restoring properties on cgroup dir cpu,cpuacct/
(00.004231) cg: 	Making controller dir .criu.cgyard.HOoXCF/unified ()
(00.004293) cg: Determined cgroup dir unified/user.slice/user-1000.slice/session-5.scope already exist
(00.004297) cg: Skip restoring properties on cgroup dir unified/user.slice/user-1000.slice/session-5.scope
(00.004311) cg: 	Making controller dir .criu.cgyard.HOoXCF/systemd (none,name=systemd)
(00.004351) cg: Determined cgroup dir systemd/user.slice/user-1000.slice/session-5.scope already exist
(00.004354) cg: Skip restoring properties on cgroup dir systemd/user.slice/user-1000.slice/session-5.scope
(00.004554) Running pre-restore scripts
(00.004628) No pidns-1.img image
(00.004625) cg: cgroud: Daemon started
(00.004722) Forking task with 5690 pid (flags 0x0)
(00.004727) Creating process using clone3()
(00.005150) PID: real 5690 virt 5690
(00.005382)   5690: timens: monotonic -542 806750012
(00.005397)   5690: timens: boottime -542 806734148
(00.005460)   5690: cg: Move into 2
(00.005466)   5690: cg:   `-> unified//user.slice/user-1000.slice/session-5.scope/cgroup.procs
(00.005497)   5690: cg:   `-> blkio///cgroup.procs
(00.005509)   5690: cg:   `-> cpu,cpuacct///cgroup.procs
(00.005520)   5690: cg:   `-> cpuset///cgroup.procs
(00.005530)   5690: cg:   `-> devices//user.slice/cgroup.procs
(00.005540)   5690: cg:   `-> freezer///cgroup.procs
(00.005549)   5690: cg:   `-> hugetlb///cgroup.procs
(00.005559)   5690: cg:   `-> memory//user.slice/user-1000.slice/session-5.scope/cgroup.procs
(00.005576)   5690: cg:   `-> systemd//user.slice/user-1000.slice/session-5.scope/cgroup.procs
(00.005590)   5690: cg:   `-> net_cls,net_prio///cgroup.procs
(00.005600)   5690: cg:   `-> perf_event///cgroup.procs
(00.005610)   5690: cg:   `-> pids//user.slice/user-1000.slice/session-5.scope/cgroup.procs
(00.005623)   5690: cg:   `-> rdma///cgroup.procs
(00.005633)   5690: Calling restore_sid() for init
(00.005642)   5690: Collecting 44/37 (flags 2)
(00.005665)   5690: tty: Collected tty ID 0xd (vt)
(00.005682)   5690:  `- ... done
(00.005685)   5690: Collecting 45/51 (flags 0)
(00.005689)   5690: No tty-data.img image
(00.005698)   5690:  `- ... done
(00.005701)   5690: Restoring namespaces 5690 flags 0x0
(00.005714)   5690: Preparing info about shared resources
(00.005729)   5690: Collecting 48/38 (flags 0)
(00.005733)   5690: No filelocks.img image
(00.005735)   5690:  `- ... done
(00.005737)   5690: Collecting 42/27 (flags 0)
(00.005739)   5690: No pipes-data.img image
(00.005741)   5690:  `- ... done
(00.005742)   5690: Collecting 43/27 (flags 0)
(00.005745)   5690: No fifo-data.img image
(00.005747)   5690:  `- ... done
(00.005748)   5690: Collecting 41/69 (flags 0)
(00.005759)   5690: No sk-queues.img image
(00.005761)   5690:  `- ... done
(00.005808)   5690: Found 76 VMAs in image
(00.005814)   5690: vma 0x400000 0x401000
(00.005816)   5690: vma 0x401000 0x402000
(00.005817)   5690: vma 0x402000 0x403000
(00.005819)   5690: vma 0x403000 0x404000
(00.005821)   5690: vma 0x404000 0x405000
(00.005822)   5690: vma 0xefd000 0xf1e000
(00.005824)   5690: vma 0x7f59522f8000 0x7f59522fd000
(00.005825)   5690: vma 0x7f59522fd000 0x7f5952301000
(00.005827)   5690: vma 0x7f5952301000 0x7f5952314000
(00.005829)   5690: vma 0x7f5952314000 0x7f595231d000
(00.005830)   5690: vma 0x7f595231d000 0x7f595231e000
(00.005832)   5690: vma 0x7f595231e000 0x7f595231f000
(00.005833)   5690: vma 0x7f595231f000 0x7f5952320000
(00.005835)   5690: vma 0x7f5952320000 0x7f595232c000
(00.005836)   5690: vma 0x7f595232c000 0x7f59523ff000
(00.005838)   5690: vma 0x7f59523ff000 0x7f595243c000
(00.005839)   5690: vma 0x7f595243c000 0x7f595243d000
(00.005841)   5690: vma 0x7f595243d000 0x7f595243f000
(00.005842)   5690: vma 0x7f595243f000 0x7f5952444000
(00.005844)   5690: vma 0x7f5952444000 0x7f5952445000
(00.005845)   5690: vma 0x7f5952445000 0x7f5952447000
(00.005847)   5690: vma 0x7f5952447000 0x7f595245f000
(00.005848)   5690: vma 0x7f595245f000 0x7f5952462000
(00.005850)   5690: vma 0x7f5952462000 0x7f5952463000
(00.005851)   5690: vma 0x7f5952463000 0x7f5952464000
(00.005853)   5690: vma 0x7f5952464000 0x7f595246f000
(00.005854)   5690: vma 0x7f595246f000 0x7f5952526000
(00.005856)   5690: vma 0x7f5952526000 0x7f5952538000
(00.005857)   5690: vma 0x7f5952538000 0x7f5952539000
(00.005859)   5690: vma 0x7f5952539000 0x7f595253a000
(00.005860)   5690: vma 0x7f595253a000 0x7f595253b000
(00.005862)   5690: vma 0x7f595253b000 0x7f595253d000
(00.005863)   5690: vma 0x7f595253d000 0x7f5952540000
(00.005865)   5690: vma 0x7f5952540000 0x7f5952558000
(00.005866)   5690: vma 0x7f5952558000 0x7f5952563000
(00.005867)   5690: vma 0x7f5952563000 0x7f5952564000
(00.005869)   5690: vma 0x7f5952564000 0x7f5952565000
(00.005870)   5690: vma 0x7f5952565000 0x7f5952567000
(00.005872)   5690: vma 0x7f5952567000 0x7f595256b000
(00.005873)   5690: vma 0x7f595256b000 0x7f595256d000
(00.005875)   5690: vma 0x7f595256d000 0x7f595256e000
(00.005877)   5690: vma 0x7f595256e000 0x7f595256f000
(00.005878)   5690: vma 0x7f595256f000 0x7f5952585000
(00.005880)   5690: vma 0x7f5952585000 0x7f5952602000
(00.005881)   5690: vma 0x7f5952602000 0x7f5952632000
(00.005883)   5690: vma 0x7f5952632000 0x7f595263e000
(00.005884)   5690: vma 0x7f595263e000 0x7f595263f000
(00.005886)   5690: vma 0x7f595263f000 0x7f5952640000
(00.005888)   5690: vma 0x7f5952640000 0x7f5952646000
(00.005889)   5690: vma 0x7f5952646000 0x7f5952657000
(00.005906)   5690: vma 0x7f5952657000 0x7f595265d000
(00.005910)   5690: vma 0x7f595265d000 0x7f595265e000
(00.005912)   5690: vma 0x7f595265e000 0x7f595265f000
(00.005914)   5690: vma 0x7f595265f000 0x7f5952663000
(00.005915)   5690: vma 0x7f5952663000 0x7f5952685000
(00.005917)   5690: vma 0x7f5952685000 0x7f59527fd000
(00.005918)   5690: vma 0x7f59527fd000 0x7f595284b000
(00.005920)   5690: vma 0x7f595284b000 0x7f595284f000
(00.005921)   5690: vma 0x7f595284f000 0x7f5952851000
(00.005923)   5690: vma 0x7f5952851000 0x7f5952855000
(00.005924)   5690: vma 0x7f5952855000 0x7f5952862000
(00.005926)   5690: vma 0x7f5952862000 0x7f5952890000
(00.005930)   5690: vma 0x7f5952890000 0x7f59528a5000
(00.005933)   5690: vma 0x7f59528a5000 0x7f59528a7000
(00.005935)   5690: vma 0x7f59528a7000 0x7f59528a8000
(00.005936)   5690: vma 0x7f59528a8000 0x7f59528aa000
(00.005938)   5690: vma 0x7f59528c6000 0x7f59528c7000
(00.005939)   5690: vma 0x7f59528c7000 0x7f59528ea000
(00.005941)   5690: vma 0x7f59528ea000 0x7f59528f2000
(00.005942)   5690: vma 0x7f59528f3000 0x7f59528f4000
(00.005944)   5690: vma 0x7f59528f4000 0x7f59528f5000
(00.005945)   5690: vma 0x7f59528f5000 0x7f59528f6000
(00.005947)   5690: vma 0x7ffdbe188000 0x7ffdbe1a9000
(00.005948)   5690: vma 0x7ffdbe1c8000 0x7ffdbe1cc000
(00.005950)   5690: vma 0x7ffdbe1cc000 0x7ffdbe1ce000
(00.005956)   5690: vma 0xffffffffff600000 0xffffffffff601000
(00.005963)   5690: Collect fdinfo pid=5690 fd=0 id=0xd
(00.005966)   5690: Collect fdinfo pid=5690 fd=1 id=0xd
(00.005968)   5690: Collect fdinfo pid=5690 fd=2 id=0xd
(00.005970)   5690: Collect fdinfo pid=5690 fd=3 id=0xf
(00.006019)   5690: skqueue: Preparing SCMs
(00.006024)   5690: tty: ctl tty leader 0xd
(00.006026)   5690: tty: Inherit terminal for id 0xd
(00.006028)   5690: tty: head driver vt id 0xd index 1004 (master 0 sid 3374 pgrp 5690 inherit 1)
(00.006030)   5690: tty: Found orphan slave fake leader (0xd)
(00.006037)   5690: unix: ghost: Resolving addresses
(00.006040)   5690: File descs:
(00.006042)   5690:  `- type 1 ID 0x1
(00.006043)   5690:  `- type 1 ID 0x2
(00.006044)   5690:  `- type 1 ID 0x3
(00.006046)   5690:  `- type 1 ID 0x4
(00.006047)   5690:  `- type 1 ID 0x5
(00.006048)   5690:  `- type 1 ID 0x6
(00.006050)   5690:  `- type 1 ID 0x7
(00.006051)   5690:  `- type 1 ID 0x8
(00.006052)   5690:  `- type 1 ID 0x9
(00.006054)   5690:  `- type 1 ID 0xa
(00.006055)   5690:  `- type 1 ID 0xb
(00.006056)   5690:  `- type 1 ID 0xc
(00.006058)   5690:  `- type 11 ID 0xd
(00.006059)   5690:    `- FD 0 pid 5690
(00.006060)   5690:    `- FD 1 pid 5690
(00.006062)   5690:    `- FD 2 pid 5690
(00.006063)   5690:  `- type 1 ID 0xe
(00.006064)   5690:  `- type 5 ID 0xf
(00.006066)   5690:    `- FD 3 pid 5690
(00.006067)   5690:  `- type 1 ID 0x10
(00.006068)   5690:  `- type 1 ID 0x11
(00.006070)   5690:  `- type 5 ID 0x12
(00.006149)   5690: No parent images directory provided
(00.006167)   5690: Opened local page read 1 (parent 0)
(00.006175)   5690: Enqueue page-read
(00.006180)   5690: Enqueue page-read
(00.006181)   5690: Enqueue page-read
(00.006183)   5690: Enqueue page-read
(00.006184)   5690: Enqueue page-read
(00.006186)   5690: Enqueue page-read
(00.006187)   5690: Enqueue page-read
(00.006189)   5690: Enqueue page-read
(00.006190)   5690: Enqueue page-read
(00.006192)   5690: Enqueue page-read
(00.006193)   5690: Enqueue page-read
(00.006194)   5690: Enqueue page-read
(00.006196)   5690: Enqueue page-read
(00.006197)   5690: Enqueue page-read
(00.006198)   5690: Enqueue page-read
(00.006200)   5690: Enqueue page-read
(00.006201)   5690: Enqueue page-read
(00.006202)   5690: Enqueue page-read
(00.006204)   5690: Enqueue page-read
(00.006205)   5690: Enqueue page-read
(00.006206)   5690: Enqueue page-read
(00.006208)   5690: Enqueue page-read
(00.006209)   5690: Enqueue page-read
(00.006210)   5690: Enqueue page-read
(00.006212)   5690: Enqueue page-read
(00.006213)   5690: Enqueue page-read
(00.006214)   5690: Enqueue page-read
(00.006216)   5690: Enqueue page-read
(00.006217)   5690: Enqueue page-read
(00.006218)   5690: Enqueue page-read
(00.006220)   5690: Enqueue page-read
(00.006221)   5690: Enqueue page-read
(00.006222)   5690: Enqueue page-read
(00.006224)   5690: Enqueue page-read
(00.006225)   5690: Enqueue page-read
(00.006226)   5690: Enqueue page-read
(00.006231)   5690: nr_restored_pages: 68
(00.006232)   5690: nr_shared_pages:   0
(00.006234)   5690: nr_dropped_pages:   0
(00.006235)   5690: nr_lazy:           0
(00.006243)   5690: Shrunk premap area to 0x7fcd88d3e000(0)
(00.006245)   5690: Restore on-core sigactions for 5690
(00.006268)   5690: Restoring children in alien sessions:
(00.006269)   5690: Restoring children in our session:
(00.006277)   5690: Restoring 5690 to 5690 pgid
(00.006281)   5690: 	will call setpgid, mine pgid is 6075
(00.006288)   5690: Restoring resources
(00.006296)   5690: Opening fdinfo-s
(00.006301)   5690: tty: open driver vt id 0xd index 1004 (master 0 sid 3374 pgrp 5690 inherit 1)
(00.006371)   5690: 		Create fd for 0
(00.006377)   5690: 			Going to dup 0 into 1
(00.006379)   5690: 			Going to dup 0 into 2
(00.006381)   5690: 	Receive fd for 1
(00.006382)   5690: 	Receive fd for 2
(00.006402)   5690: Found id socket:[66434] (fd 3) in inherit fd list
(00.006406)   5690: File socket:[66434] will be restored from fd 3 dumped from inherit fd 3
(00.006408)   5690: 		Create fd for 3
(00.006410)   5690: Opening 0x00000000400000-0x00000000401000 0000000000000000 (41) vma
(00.006440)   5690: Opening 0x00000000401000-0x00000000402000 0x00000000001000 (41) vma
(00.006445)   5690: Opening 0x00000000402000-0x00000000403000 0x00000000002000 (41) vma
(00.006446)   5690: Opening 0x00000000403000-0x00000000404000 0x00000000002000 (41) vma
(00.006448)   5690: Opening 0x00000000404000-0x00000000405000 0x00000000003000 (41) vma
(00.006450)   5690: Opening 0x007f59522fd000-0x007f5952301000 0000000000000000 (20000041) vma
(00.006471)   5690: Opening 0x007f5952301000-0x007f5952314000 0x00000000004000 (20000041) vma
(00.006475)   5690: Opening 0x007f5952314000-0x007f595231d000 0x00000000017000 (20000041) vma
(00.006477)   5690: Opening 0x007f595231d000-0x007f595231e000 0x00000000020000 (41) vma
(00.006478)   5690: Opening 0x007f595231e000-0x007f595231f000 0x00000000020000 (41) vma
(00.006480)   5690: Opening 0x007f595231f000-0x007f5952320000 0x00000000021000 (41) vma
(00.006482)   5690: Opening 0x007f5952320000-0x007f595232c000 0000000000000000 (20000041) vma
(00.006500)   5690: Opening 0x007f595232c000-0x007f59523ff000 0x0000000000c000 (20000041) vma
(00.006504)   5690: Opening 0x007f59523ff000-0x007f595243c000 0x000000000df000 (20000041) vma
(00.006506)   5690: Opening 0x007f595243c000-0x007f595243d000 0x0000000011c000 (41) vma
(00.006508)   5690: Opening 0x007f595243d000-0x007f595243f000 0x0000000011c000 (41) vma
(00.006509)   5690: Opening 0x007f595243f000-0x007f5952444000 0x0000000011e000 (41) vma
(00.006511)   5690: Opening 0x007f5952445000-0x007f5952447000 0000000000000000 (20000041) vma
(00.006528)   5690: Opening 0x007f5952447000-0x007f595245f000 0x00000000002000 (20000041) vma
(00.006532)   5690: Opening 0x007f595245f000-0x007f5952462000 0x0000000001a000 (41) vma
(00.006534)   5690: Opening 0x007f5952462000-0x007f5952463000 0x0000000001c000 (41) vma
(00.006535)   5690: Opening 0x007f5952463000-0x007f5952464000 0x0000000001d000 (41) vma
(00.006537)   5690: Opening 0x007f5952464000-0x007f595246f000 0000000000000000 (20000041) vma
(00.006554)   5690: Opening 0x007f595246f000-0x007f5952526000 0x0000000000b000 (20000041) vma
(00.006558)   5690: Opening 0x007f5952526000-0x007f5952538000 0x000000000c2000 (20000041) vma
(00.006560)   5690: Opening 0x007f5952538000-0x007f5952539000 0x000000000d4000 (41) vma
(00.006561)   5690: Opening 0x007f5952539000-0x007f595253a000 0x000000000d4000 (41) vma
(00.006563)   5690: Opening 0x007f595253a000-0x007f595253b000 0x000000000d5000 (41) vma
(00.006565)   5690: Opening 0x007f595253d000-0x007f5952540000 0000000000000000 (20000041) vma
(00.006581)   5690: Opening 0x007f5952540000-0x007f5952558000 0x00000000003000 (20000041) vma
(00.006585)   5690: Opening 0x007f5952558000-0x007f5952563000 0x0000000001b000 (41) vma
(00.006586)   5690: Opening 0x007f5952563000-0x007f5952564000 0x00000000025000 (41) vma
(00.006588)   5690: Opening 0x007f5952564000-0x007f5952565000 0x00000000026000 (41) vma
(00.006589)   5690: Opening 0x007f5952565000-0x007f5952567000 0000000000000000 (20000041) vma
(00.006606)   5690: Opening 0x007f5952567000-0x007f595256b000 0x00000000002000 (20000041) vma
(00.006610)   5690: Opening 0x007f595256b000-0x007f595256d000 0x00000000006000 (41) vma
(00.006612)   5690: Opening 0x007f595256d000-0x007f595256e000 0x00000000007000 (41) vma
(00.006614)   5690: Opening 0x007f595256e000-0x007f595256f000 0x00000000008000 (41) vma
(00.006615)   5690: Opening 0x007f595256f000-0x007f5952585000 0000000000000000 (20000041) vma
(00.006634)   5690: Opening 0x007f5952585000-0x007f5952602000 0x00000000016000 (20000041) vma
(00.006638)   5690: Opening 0x007f5952602000-0x007f5952632000 0x00000000093000 (41) vma
(00.006640)   5690: Opening 0x007f5952632000-0x007f595263e000 0x000000000c2000 (41) vma
(00.006641)   5690: Opening 0x007f595263e000-0x007f595263f000 0x000000000ce000 (41) vma
(00.006643)   5690: Opening 0x007f5952640000-0x007f5952646000 0000000000000000 (20000041) vma
(00.006661)   5690: Opening 0x007f5952646000-0x007f5952657000 0x00000000006000 (20000041) vma
(00.006665)   5690: Opening 0x007f5952657000-0x007f595265d000 0x00000000017000 (41) vma
(00.006672)   5690: Opening 0x007f595265d000-0x007f595265e000 0x0000000001c000 (41) vma
(00.006674)   5690: Opening 0x007f595265e000-0x007f595265f000 0x0000000001d000 (41) vma
(00.006675)   5690: Opening 0x007f5952663000-0x007f5952685000 0000000000000000 (20000041) vma
(00.006694)   5690: Opening 0x007f5952685000-0x007f59527fd000 0x00000000022000 (20000041) vma
(00.006699)   5690: Opening 0x007f59527fd000-0x007f595284b000 0x0000000019a000 (41) vma
(00.006700)   5690: Opening 0x007f595284b000-0x007f595284f000 0x000000001e7000 (41) vma
(00.006702)   5690: Opening 0x007f595284f000-0x007f5952851000 0x000000001eb000 (41) vma
(00.006704)   5690: Opening 0x007f5952855000-0x007f5952862000 0000000000000000 (20000041) vma
(00.006722)   5690: Opening 0x007f5952862000-0x007f5952890000 0x0000000000d000 (20000041) vma
(00.006726)   5690: Opening 0x007f5952890000-0x007f59528a5000 0x0000000003b000 (41) vma
(00.006728)   5690: Opening 0x007f59528a5000-0x007f59528a7000 0x0000000004f000 (41) vma
(00.006729)   5690: Opening 0x007f59528a7000-0x007f59528a8000 0x00000000051000 (41) vma
(00.006731)   5690: Opening 0x007f59528c6000-0x007f59528c7000 0000000000000000 (20000041) vma
(00.006750)   5690: Opening 0x007f59528c7000-0x007f59528ea000 0x00000000001000 (20000041) vma
(00.006754)   5690: Opening 0x007f59528ea000-0x007f59528f2000 0x00000000024000 (20000041) vma
(00.006756)   5690: Opening 0x007f59528f3000-0x007f59528f4000 0x0000000002c000 (41) vma
(00.006757)   5690: Opening 0x007f59528f4000-0x007f59528f5000 0x0000000002d000 (41) vma
(00.006791)   5690: `- render 20 iovs (0x401000:4096...)
(00.006808)   5690: Restore via sigreturn
(00.006848)   5690: Parsed 400000-426000 vma
(00.006852)   5690: Parsed 400000-4c8000 vma
(00.006854)   5690: Parsed 400000-55b000 vma
(00.006856)   5690: Parsed 400000-55c000 vma
(00.006857)   5690: Parsed 400000-564000 vma
(00.006859)   5690: Parsed 400000-597000 vma
(00.006861)   5690: Parsed 16d5000-1717000 vma
(00.006863)   5690: Parsed 7fcd8936c000-7fcd89378000 vma
(00.006864)   5690: Parsed 7fcd8936c000-7fcd8937d000 vma
(00.006866)   5690: Parsed 7fcd8936c000-7fcd8938b000 vma
(00.006867)   5690: Parsed 7fcd8936c000-7fcd89399000 vma
(00.006869)   5690: Parsed 7fcd8936c000-7fcd893a6000 vma
(00.006871)   5690: Parsed 7fcd8936c000-7fcd893aa000 vma
(00.006872)   5690: Parsed 7fcd8936c000-7fcd893ab000 vma
(00.006874)   5690: Parsed 7fcd8936c000-7fcd893ad000 vma
(00.006875)   5690: Parsed 7fcd8936c000-7fcd893b3000 vma
(00.006877)   5690: Parsed 7fcd8936c000-7fcd893b4000 vma
(00.006878)   5690: Parsed 7fcd8936c000-7fcd893b5000 vma
(00.006880)   5690: Parsed 7fcd8936c000-7fcd893b6000 vma
(00.006881)   5690: Parsed 7fcd8936c000-7fcd893b7000 vma
(00.006883)   5690: Parsed 7fcd8936c000-7fcd893b9000 vma
(00.006884)   5690: Parsed 7fcd8936c000-7fcd893bf000 vma
(00.006886)   5690: Parsed 7fcd8936c000-7fcd893d0000 vma
(00.006887)   5690: Parsed 7fcd8936c000-7fcd893d6000 vma
(00.006889)   5690: Parsed 7fcd8936c000-7fcd893d7000 vma
(00.006890)   5690: Parsed 7fcd8936c000-7fcd893d8000 vma
(00.006891)   5690: Parsed 7fcd8936c000-7fcd893dc000 vma
(00.006893)   5690: Parsed 7fcd8936c000-7fcd893f1000 vma
(00.006894)   5690: Parsed 7fcd8936c000-7fcd89417000 vma
(00.006896)   5690: Parsed 7fcd8936c000-7fcd89420000 vma
(00.006897)   5690: Parsed 7fcd8936c000-7fcd89421000 vma
(00.006899)   5690: Parsed 7fcd8936c000-7fcd89423000 vma
(00.006900)   5690: Parsed 7fcd8936c000-7fcd89429000 vma
(00.006902)   5690: Parsed 7fcd8936c000-7fcd8942b000 vma
(00.006904)   5690: Parsed 7fcd8936c000-7fcd8942d000 vma
(00.006906)   5690: Parsed 7fcd8936c000-7fcd89435000 vma
(00.006907)   5690: Parsed 7fcd8936c000-7fcd89438000 vma
(00.006909)   5690: Parsed 7fcd8936c000-7fcd89439000 vma
(00.006910)   5690: Parsed 7fcd8936c000-7fcd8943a000 vma
(00.006927)   5690: Parsed 7fcd8936c000-7fcd8943e000 vma
(00.006929)   5690: Parsed 7fcd8936c000-7fcd89445000 vma
(00.006930)   5690: Parsed 7fcd8936c000-7fcd89448000 vma
(00.006932)   5690: Parsed 7fcd8936c000-7fcd89449000 vma
(00.006933)   5690: Parsed 7fcd8936c000-7fcd8944a000 vma
(00.006938)   5690: Parsed 7fcd8936c000-7fcd8944b000 vma
(00.006940)   5690: Parsed 7fcd8936c000-7fcd8944d000 vma
(00.006942)   5690: Parsed 7fcd8936c000-7fcd89456000 vma
(00.006943)   5690: Parsed 7fcd8936c000-7fcd8946d000 vma
(00.006945)   5690: Parsed 7fcd8936c000-7fcd89476000 vma
(00.006946)   5690: Parsed 7fcd8936c000-7fcd89477000 vma
(00.006947)   5690: Parsed 7fcd8936c000-7fcd8947a000 vma
(00.006949)   5690: Parsed 7fcd8936c000-7fcd8947b000 vma
(00.006950)   5690: Parsed 7fcd8936c000-7fcd8947d000 vma
(00.006952)   5690: Parsed 7fcd8936c000-7fcd89480000 vma
(00.006953)   5690: Parsed 7fcd8936c000-7fcd89481000 vma
(00.006955)   5690: Parsed 7fcd8936c000-7fcd89482000 vma
(00.006956)   5690: Parsed 7fcd8936c000-7fcd89483000 vma
(00.006958)   5690: Parsed 7fcd8936c000-7fcd89484000 vma
(00.006959)   5690: Parsed 7fcd8936c000-7fcd89486000 vma
(00.006961)   5690: Parsed 7fcd8936c000-7fcd89491000 vma
(00.006962)   5690: Parsed 7fcd8936c000-7fcd894ef000 vma
(00.006964)   5690: Parsed 7fcd8936c000-7fcd89506000 vma
(00.006966)   5690: Parsed 7fcd8936c000-7fcd89507000 vma
(00.006967)   5690: Parsed 7fcd8936c000-7fcd89508000 vma
(00.006969)   5690: Parsed 7fcd8936c000-7fcd89509000 vma
(00.006970)   5690: Parsed 7fcd8936c000-7fcd89510000 vma
(00.006972)   5690: Parsed 7fcd8936c000-7fcd89520000 vma
(00.006973)   5690: Parsed 7fcd8936c000-7fcd8953e000 vma
(00.006975)   5690: Parsed 7fcd8936c000-7fcd8953f000 vma
(00.006976)   5690: Parsed 7fcd8936c000-7fcd89540000 vma
(00.006978)   5690: Parsed 7fcd8936c000-7fcd89549000 vma
(00.006979)   5690: Parsed 7fcd8936c000-7fcd89567000 vma
(00.006981)   5690: Parsed 7fcd8936c000-7fcd89577000 vma
(00.006983)   5690: Parsed 7fcd8936c000-7fcd89579000 vma
(00.006984)   5690: Parsed 7fcd8936c000-7fcd8957a000 vma
(00.007000)   5690: Parsed 7fcd8936c000-7fcd8957d000 vma
(00.007002)   5690: Parsed 7fcd8936c000-7fcd89589000 vma
(00.007004)   5690: Parsed 7fcd8936c000-7fcd8958d000 vma
(00.007005)   5690: Parsed 7fcd8936c000-7fcd8958e000 vma
(00.007007)   5690: Parsed 7fcd8936c000-7fcd8958f000 vma
(00.007009)   5690: Parsed 7fcd8936c000-7fcd89590000 vma
(00.007010)   5690: Parsed 7fcd8936c000-7fcd895a1000 vma
(00.007012)   5690: Parsed 7fcd8936c000-7fcd895d6000 vma
(00.007013)   5690: Parsed 7fcd8936c000-7fcd8970d000 vma
(00.007015)   5690: Parsed 7fcd8936c000-7fcd89711000 vma
(00.007016)   5690: Parsed 7fcd8936c000-7fcd89712000 vma
(00.007018)   5690: Parsed 7fcd8936c000-7fcd89714000 vma
(00.007019)   5690: Parsed 7fcd8936c000-7fcd89718000 vma
(00.007021)   5690: Parsed 7fcd8936c000-7fcd8972f000 vma
(00.007022)   5690: Parsed 7fcd8936c000-7fcd89730000 vma
(00.007024)   5690: Parsed 7fcd8936c000-7fcd89731000 vma
(00.007025)   5690: Parsed 7fcd8936c000-7fcd89733000 vma
(00.007027)   5690: Parsed 7fcd8936c000-7fcd8975e000 vma
(00.007028)   5690: Parsed 7fcd8936c000-7fcd897f8000 vma
(00.007030)   5690: Parsed 7fcd8936c000-7fcd89854000 vma
(00.007031)   5690: Parsed 7fcd8936c000-7fcd8985f000 vma
(00.007033)   5690: Parsed 7fcd8936c000-7fcd89869000 vma
(00.007034)   5690: Parsed 7fcd8936c000-7fcd8986b000 vma
(00.007036)   5690: Parsed 7fcd8936c000-7fcd898bd000 vma
(00.007037)   5690: Parsed 7fcd8936c000-7fcd898db000 vma
(00.007039)   5690: Parsed 7fcd8936c000-7fcd898dc000 vma
(00.007040)   5690: Parsed 7fcd8936c000-7fcd898dd000 vma
(00.007042)   5690: Parsed 7fcd8936c000-7fcd898df000 vma
(00.007043)   5690: Parsed 7fcd8936c000-7fcd898e3000 vma
(00.007044)   5690: Parsed 7fcd8936c000-7fcd898e5000 vma
(00.007046)   5690: Parsed 7fcd8936c000-7fcd898e6000 vma
(00.007047)   5690: Parsed 7fcd8936c000-7fcd898e7000 vma
(00.007048)   5690: Parsed 7fcd8936c000-7fcd89909000 vma
(00.007050)   5690: Parsed 7fcd8936c000-7fcd89a81000 vma
(00.007051)   5690: Parsed 7fcd8936c000-7fcd89acf000 vma
(00.007066)   5690: Parsed 7fcd8936c000-7fcd89ad3000 vma
(00.007068)   5690: Parsed 7fcd8936c000-7fcd89ad5000 vma
(00.007069)   5690: Parsed 7fcd8936c000-7fcd89ad9000 vma
(00.007071)   5690: Parsed 7fcd8936c000-7fcd89add000 vma
(00.007072)   5690: Parsed 7fcd8936c000-7fcd89aeb000 vma
(00.007074)   5690: Parsed 7fcd8936c000-7fcd89af1000 vma
(00.007078)   5690: Parsed 7fcd8936c000-7fcd89af2000 vma
(00.007080)   5690: Parsed 7fcd8936c000-7fcd89af3000 vma
(00.007081)   5690: Parsed 7fcd8936c000-7fcd89af5000 vma
(00.007083)   5690: Parsed 7fcd8936c000-7fcd89afd000 vma
(00.007084)   5690: Parsed 7fcd8936c000-7fcd89b0c000 vma
(00.007086)   5690: Parsed 7fcd8936c000-7fcd89b15000 vma
(00.007087)   5690: Parsed 7fcd8936c000-7fcd89b17000 vma
(00.007088)   5690: Parsed 7fcd8936c000-7fcd89b18000 vma
(00.007090)   5690: Parsed 7fcd8936c000-7fcd89b1a000 vma
(00.007091)   5690: Parsed 7fcd8936c000-7fcd89b1b000 vma
(00.007093)   5690: Parsed 7fcd8936c000-7fcd89b1d000 vma
(00.007094)   5690: Parsed 7fcd8936c000-7fcd89b1e000 vma
(00.007095)   5690: Parsed 7fcd8936c000-7fcd89b1f000 vma
(00.007097)   5690: Parsed 7fcd8936c000-7fcd89b20000 vma
(00.007098)   5690: Parsed 7fcd8936c000-7fcd89b21000 vma
(00.007100)   5690: Parsed 7fcd8936c000-7fcd89b27000 vma
(00.007101)   5690: Parsed 7fcd8936c000-7fcd89b28000 vma
(00.007102)   5690: Parsed 7fcd8936c000-7fcd89b29000 vma
(00.007104)   5690: Parsed 7fcd8936c000-7fcd89b2a000 vma
(00.007105)   5690: Parsed 7fcd8936c000-7fcd89b2b000 vma
(00.007107)   5690: Parsed 7fcd8936c000-7fcd89b4a000 vma
(00.007108)   5690: Parsed 7fcd8936c000-7fcd89b91000 vma
(00.007110)   5690: Parsed 7fcd8936c000-7fcd89bba000 vma
(00.007111)   5690: Parsed 7fcd8936c000-7fcd89bbb000 vma
(00.007112)   5690: Parsed 7fcd8936c000-7fcd89bca000 vma
(00.007114)   5690: Parsed 7fcd8936c000-7fcd89bcb000 vma
(00.007115)   5690: Parsed 7fcd8936c000-7fcd89bfa000 vma
(00.007117)   5690: Parsed 7fcd8936c000-7fcd89d1c000 vma
(00.007118)   5690: Parsed 7fcd8936c000-7fcd89d8d000 vma
(00.007119)   5690: Parsed 7fcd8936c000-7fcd89d8e000 vma
(00.007132)   5690: Parsed 7fcd8936c000-7fcd89d9d000 vma
(00.007134)   5690: Parsed 7fcd8936c000-7fcd89d9f000 vma
(00.007135)   5690: Parsed 7fcd8936c000-7fcd89da1000 vma
(00.007137)   5690: Parsed 7fcd8936c000-7fcd89da8000 vma
(00.007138)   5690: Parsed 7fcd8936c000-7fcd89dc1000 vma
(00.007140)   5690: Parsed 7fcd8936c000-7fcd89dc8000 vma
(00.007141)   5690: Parsed 7fcd8936c000-7fcd89dc9000 vma
(00.007143)   5690: Parsed 7fcd8936c000-7fcd89dca000 vma
(00.007144)   5690: Parsed 7fcd8936c000-7fcd89dcb000 vma
(00.007145)   5690: Parsed 7fcd8936c000-7fcd89dcd000 vma
(00.007147)   5690: Parsed 7fcd8936c000-7fcd89dd1000 vma
(00.007148)   5690: Parsed 7fcd8936c000-7fcd89de0000 vma
(00.007150)   5690: Parsed 7fcd8936c000-7fcd89de3000 vma
(00.007151)   5690: Parsed 7fcd8936c000-7fcd89de4000 vma
(00.007152)   5690: Parsed 7fcd8936c000-7fcd89de5000 vma
(00.007154)   5690: Parsed 7fcd8936c000-7fcd89de6000 vma
(00.007155)   5690: Parsed 7fcd8936c000-7fcd89de9000 vma
(00.007157)   5690: Parsed 7fcd89deb000-7fcd89def000 vma
(00.007158)   5690: Parsed 7fcd89df1000-7fcd89df3000 vma
(00.007160)   5690: Parsed 7fcd89df1000-7fcd89df5000 vma
(00.007161)   5690: Parsed 7fcd89df1000-7fcd89e05000 vma
(00.007162)   5690: Parsed 7fcd89df1000-7fcd89e06000 vma
(00.007164)   5690: Parsed 7fcd89df1000-7fcd89e29000 vma
(00.007165)   5690: Parsed 7fcd89df1000-7fcd89e31000 vma
(00.007167)   5690: Parsed 7fcd89df1000-7fcd89e32000 vma
(00.007168)   5690: Parsed 7fcd89df1000-7fcd89e33000 vma
(00.007169)   5690: Parsed 7fcd89df1000-7fcd89e34000 vma
(00.007171)   5690: Parsed 7fcd89df1000-7fcd89e35000 vma
(00.007172)   5690: Parsed 7ffdeac9b000-7ffdeacbd000 vma
(00.007174)   5690: Parsed 7ffdeacd0000-7ffdeacd4000 vma
(00.007175)   5690: Parsed 7ffdeacd0000-7ffdeacd6000 vma
(00.007177)   5690: Parsed ffffffffff600000-ffffffffff601000 vma
(00.007181)   5690: 1 threads require 128K of memory
(00.007184)   5690: Found bootstrap VMA hint at: 0x10000 (needs ~152K)
(00.007225)   5690: 	call mremap(0x7fcd89deb000, 16384, 16384, MAYMOVE | FIXED, 0x2a000)
(00.007233)   5690: 	call mremap(0x7fcd89df1000, 8192, 8192, MAYMOVE | FIXED, 0x2e000)
(00.007247)   5690: x86: xsave runtime structure
(00.007250)   5690: x86: -----------------------
(00.007252)   5690: x86: cwd:0x37f swd:0 twd:0 fop:0 mxcsr:0x1f80 mxcsr_mask:0xffff
(00.007254)   5690: x86: magic1:0x46505853 extended_size:2700 xstate_bv:0x203 xstate_size:2696
(00.007259)   5690: x86: xstate_bv: 0x203
(00.007261)   5690: x86: -----------------------
(00.007262)   5690: Thread    0 stack  0x1c080 rt_sigframe  0x24080
(00.007288)   5690: Going to chroot into /proc/self/fd/19
(00.007293)   5690: Restoring umask to 22
(00.007308)   5690: task_args: 0x29000
task_args->pid: 5690
task_args->nr_threads: 1
task_args->clone_restore_fn: 0x11f30
task_args->thread_args: 0x29580
(00.007312) pie: 5690: Switched to the restorer 5690
(00.007487) pie: 5690: Mapping native vDSO at 0x30000
(00.007494) pie: 5690: vdso: Using gettimeofday() on vdso at 0x34630
(00.007507) pie: 5690: 	mmap(0x400000 -> 0x401000, 0x3 0x12 4)
(00.007512) pie: 5690: 	mmap(0x401000 -> 0x402000, 0x7 0x12 4)
(00.007515) pie: 5690: 	mmap(0x402000 -> 0x403000, 0x3 0x12 4)
(00.007517) pie: 5690: 	mmap(0x403000 -> 0x404000, 0x3 0x12 4)
(00.007519) pie: 5690: 	mmap(0x404000 -> 0x405000, 0x3 0x12 4)
(00.007522) pie: 5690: 	mmap(0xefd000 -> 0xf1e000, 0x3 0x32 -1)
(00.007524) pie: 5690: 	mmap(0x7f59522f8000 -> 0x7f59522fd000, 0x3 0x32 -1)
(00.007526) pie: 5690: 	mmap(0x7f59522fd000 -> 0x7f5952301000, 0x1 0x12 5)
(00.007529) pie: 5690: 	mmap(0x7f5952301000 -> 0x7f5952314000, 0x5 0x12 5)
(00.007532) pie: 5690: 	mmap(0x7f5952314000 -> 0x7f595231d000, 0x1 0x12 5)
(00.007535) pie: 5690: 	mmap(0x7f595231d000 -> 0x7f595231e000, 0x2 0x12 5)
(00.007538) pie: 5690: 	mmap(0x7f595231e000 -> 0x7f595231f000, 0x3 0x12 5)
(00.007540) pie: 5690: 	mmap(0x7f595231f000 -> 0x7f5952320000, 0x3 0x12 5)
(00.007542) pie: 5690: 	mmap(0x7f5952320000 -> 0x7f595232c000, 0x1 0x12 6)
(00.007545) pie: 5690: 	mmap(0x7f595232c000 -> 0x7f59523ff000, 0x5 0x12 6)
(00.007547) pie: 5690: 	mmap(0x7f59523ff000 -> 0x7f595243c000, 0x1 0x12 6)
(00.007550) pie: 5690: 	mmap(0x7f595243c000 -> 0x7f595243d000, 0x2 0x12 6)
(00.007553) pie: 5690: 	mmap(0x7f595243d000 -> 0x7f595243f000, 0x3 0x12 6)
(00.007555) pie: 5690: 	mmap(0x7f595243f000 -> 0x7f5952444000, 0x3 0x12 6)
(00.007557) pie: 5690: 	mmap(0x7f5952444000 -> 0x7f5952445000, 0x3 0x32 -1)
(00.007559) pie: 5690: 	mmap(0x7f5952445000 -> 0x7f5952447000, 0x1 0x12 7)
(00.007562) pie: 5690: 	mmap(0x7f5952447000 -> 0x7f595245f000, 0x5 0x12 7)
(00.007564) pie: 5690: 	mmap(0x7f595245f000 -> 0x7f5952462000, 0x3 0x12 7)
(00.007567) pie: 5690: 	mmap(0x7f5952462000 -> 0x7f5952463000, 0x3 0x12 7)
(00.007569) pie: 5690: 	mmap(0x7f5952463000 -> 0x7f5952464000, 0x3 0x12 7)
(00.007572) pie: 5690: 	mmap(0x7f5952464000 -> 0x7f595246f000, 0x1 0x12 8)
(00.007574) pie: 5690: 	mmap(0x7f595246f000 -> 0x7f5952526000, 0x5 0x12 8)
(00.007577) pie: 5690: 	mmap(0x7f5952526000 -> 0x7f5952538000, 0x1 0x12 8)
(00.007580) pie: 5690: 	mmap(0x7f5952538000 -> 0x7f5952539000, 0x2 0x12 8)
(00.007583) pie: 5690: 	mmap(0x7f5952539000 -> 0x7f595253a000, 0x3 0x12 8)
(00.007585) pie: 5690: 	mmap(0x7f595253a000 -> 0x7f595253b000, 0x3 0x12 8)
(00.007587) pie: 5690: 	mmap(0x7f595253b000 -> 0x7f595253d000, 0x3 0x32 -1)
(00.007589) pie: 5690: 	mmap(0x7f595253d000 -> 0x7f5952540000, 0x1 0x12 9)
(00.007592) pie: 5690: 	mmap(0x7f5952540000 -> 0x7f5952558000, 0x5 0x12 9)
(00.007594) pie: 5690: 	mmap(0x7f5952558000 -> 0x7f5952563000, 0x3 0x12 9)
(00.007597) pie: 5690: 	mmap(0x7f5952563000 -> 0x7f5952564000, 0x3 0x12 9)
(00.007599) pie: 5690: 	mmap(0x7f5952564000 -> 0x7f5952565000, 0x3 0x12 9)
(00.007602) pie: 5690: 	mmap(0x7f5952565000 -> 0x7f5952567000, 0x1 0x12 10)
(00.007604) pie: 5690: 	mmap(0x7f5952567000 -> 0x7f595256b000, 0x5 0x12 10)
(00.007608) pie: 5690: 	mmap(0x7f595256b000 -> 0x7f595256d000, 0x3 0x12 10)
(00.007611) pie: 5690: 	mmap(0x7f595256d000 -> 0x7f595256e000, 0x3 0x12 10)
(00.007614) pie: 5690: 	mmap(0x7f595256e000 -> 0x7f595256f000, 0x3 0x12 10)
(00.007616) pie: 5690: 	mmap(0x7f595256f000 -> 0x7f5952585000, 0x1 0x12 11)
(00.007619) pie: 5690: 	mmap(0x7f5952585000 -> 0x7f5952602000, 0x5 0x12 11)
(00.007622) pie: 5690: 	mmap(0x7f5952602000 -> 0x7f5952632000, 0x3 0x12 11)
(00.007625) pie: 5690: 	mmap(0x7f5952632000 -> 0x7f595263e000, 0x3 0x12 11)
(00.007628) pie: 5690: 	mmap(0x7f595263e000 -> 0x7f595263f000, 0x3 0x12 11)
(00.007635) pie: 5690: 	mmap(0x7f595263f000 -> 0x7f5952640000, 0x3 0x32 -1)
(00.007638) pie: 5690: 	mmap(0x7f5952640000 -> 0x7f5952646000, 0x1 0x12 12)
(00.007640) pie: 5690: 	mmap(0x7f5952646000 -> 0x7f5952657000, 0x5 0x12 12)
(00.007643) pie: 5690: 	mmap(0x7f5952657000 -> 0x7f595265d000, 0x3 0x12 12)
(00.007646) pie: 5690: 	mmap(0x7f595265d000 -> 0x7f595265e000, 0x3 0x12 12)
(00.007649) pie: 5690: 	mmap(0x7f595265e000 -> 0x7f595265f000, 0x3 0x12 12)
(00.007651) pie: 5690: 	mmap(0x7f595265f000 -> 0x7f5952663000, 0x3 0x32 -1)
(00.007653) pie: 5690: 	mmap(0x7f5952663000 -> 0x7f5952685000, 0x1 0x12 13)
(00.007656) pie: 5690: 	mmap(0x7f5952685000 -> 0x7f59527fd000, 0x5 0x12 13)
(00.007659) pie: 5690: 	mmap(0x7f59527fd000 -> 0x7f595284b000, 0x3 0x12 13)
(00.007662) pie: 5690: 	mmap(0x7f595284b000 -> 0x7f595284f000, 0x3 0x12 13)
(00.007665) pie: 5690: 	mmap(0x7f595284f000 -> 0x7f5952851000, 0x3 0x12 13)
(00.007667) pie: 5690: 	mmap(0x7f5952851000 -> 0x7f5952855000, 0x3 0x32 -1)
(00.007669) pie: 5690: 	mmap(0x7f5952855000 -> 0x7f5952862000, 0x1 0x12 14)
(00.007672) pie: 5690: 	mmap(0x7f5952862000 -> 0x7f5952890000, 0x5 0x12 14)
(00.007675) pie: 5690: 	mmap(0x7f5952890000 -> 0x7f59528a5000, 0x3 0x12 14)
(00.007678) pie: 5690: 	mmap(0x7f59528a5000 -> 0x7f59528a7000, 0x3 0x12 14)
(00.007681) pie: 5690: 	mmap(0x7f59528a7000 -> 0x7f59528a8000, 0x3 0x12 14)
(00.007683) pie: 5690: 	mmap(0x7f59528a8000 -> 0x7f59528aa000, 0x3 0x32 -1)
(00.007685) pie: 5690: 	mmap(0x7f59528c6000 -> 0x7f59528c7000, 0x1 0x12 15)
(00.007688) pie: 5690: 	mmap(0x7f59528c7000 -> 0x7f59528ea000, 0x5 0x12 15)
(00.007691) pie: 5690: 	mmap(0x7f59528ea000 -> 0x7f59528f2000, 0x1 0x12 15)
(00.007694) pie: 5690: 	mmap(0x7f59528f3000 -> 0x7f59528f4000, 0x3 0x12 15)
(00.007697) pie: 5690: 	mmap(0x7f59528f4000 -> 0x7f59528f5000, 0x3 0x12 15)
(00.007699) pie: 5690: 	mmap(0x7f59528f5000 -> 0x7f59528f6000, 0x3 0x32 -1)
(00.007701) pie: 5690: 	mmap(0x7ffdbe188000 -> 0x7ffdbe1a9000, 0x3 0x132 -1)
(00.007703) pie: 5690: 	mmap(0x7ffdbe1c8000 -> 0x7ffdbe1cc000, 0x3 0x32 -1)
(00.007705) pie: 5690: 	mmap(0x7ffdbe1cc000 -> 0x7ffdbe1ce000, 0x7 0x32 -1)
(00.007707) pie: 5690: Preadv 0x401000:4096... (20 iovs)
(00.007907) pie: 5690: `- returned 278528
(00.007912) pie: 5690:    `- skip pagemap
(00.007913) pie: 5690:    `- skip pagemap
(00.007914) pie: 5690:    `- skip pagemap
(00.007915) pie: 5690:    `- skip pagemap
(00.007916) pie: 5690:    `- skip pagemap
(00.007918) pie: 5690:    `- skip pagemap
(00.007919) pie: 5690:    `- skip pagemap
(00.007920) pie: 5690:    `- skip pagemap
(00.007921) pie: 5690:    `- skip pagemap
(00.007922) pie: 5690:    `- skip pagemap
(00.007923) pie: 5690:    `- skip pagemap
(00.007924) pie: 5690:    `- skip pagemap
(00.007925) pie: 5690:    `- skip pagemap
(00.007926) pie: 5690:    `- skip pagemap
(00.007927) pie: 5690:    `- skip pagemap
(00.007928) pie: 5690:    `- skip pagemap
(00.007929) pie: 5690:    `- skip pagemap
(00.007930) pie: 5690:    `- skip pagemap
(00.007931) pie: 5690:    `- skip pagemap
(00.007933) pie: 5690:    `- skip pagemap
(00.007936) pie: 5690: vdso: Parsing at 0x7ffdbe1cc000 0x7ffdbe1ce000
(00.007937) pie: 5690: vdso: PT_LOAD p_vaddr: 0x0
(00.007939) pie: 5690: vdso: DT_HASH: 0x120
(00.007940) pie: 5690: vdso: DT_STRTAB: 0x2d8
(00.007941) pie: 5690: vdso: DT_SYMTAB: 0x1b8
(00.007942) pie: 5690: vdso: DT_STRSZ: 0x72
(00.007943) pie: 5690: vdso: DT_SYMENT: 0x18
(00.007991) pie: 5690: vdso: nbucket 0x3 nchain 0xc bucket 0x7ffdbe1cc128 chain 0x7ffdbe1cc134
(00.007997) pie: 5690: vdso: image [vdso] 0x7ffdbe1cc000-0x7ffdbe1ce000 [vvar] 0x7ffdbe1c8000-0x7ffdbe1cc000
(00.007998) pie: 5690: vdso: Runtime vdso/vvar matches dumpee, remap inplace
(00.008007) pie: 5690: vdso: Remap rt-vdso 0x34000 -> 0x7ffdbe1cc000
(00.008015) pie: 5690: vdso: Remap rt-vvar 0x30000 -> 0x7ffdbe1c8000
(00.008021) pie: 5690: vdso: Using gettimeofday() on vdso at 0x7ffdbe1cc630
(00.008082) pie: 5690: Restoring scheduler params 0.0.0
(00.008088) pie: 5690: rseq: nothing to restore
(00.008093) pie: 5690: 5690: Restored
(00.008572) Running post-restore scripts
(00.008591) net: Unlock network
(00.008842) pie: 5690: seccomp: mode 0 on tid 5690
(00.027776) 5690 was trapped
(00.027934) 5690 was trapped
(00.027941) 5690 (native) is going to execute the syscall 15, required is 15
(00.028071) 5690 was stopped
(00.028245) 5690 was trapped
(00.028253) 5690 (native) is going to execute the syscall 11, required is 11
(00.028449) 5690 was stopped
(00.028460) Run late stage hook from criu master for external devices
(00.028462) restore late stage hook for external plugin failed
(00.028464) Running pre-resume scripts
(00.028481) Restore finished successfully. Tasks resumed.
(00.028484) Writing stats
(00.028681) Running post-resume scripts

Output of `criu --version`:

Version: 3.19

Output of `criu check --all`:

Looks good.

Additional environment details:

Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant