1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339 | 908 execve("/snap/bin/chromium", ["/snap/bin/chromium"], ["TERM=xterm-256color", "LS_COLORS=rs=0:di=01;34:ln=01;36"..., "PATH=/usr/local/sbin:/usr/local/"..., "LANG=en_GB.UTF-8", "HOME=/home/alan", "LANGUAGE=en_GB:en", "DISPLAY=:0", "XAUTHORITY=/home/alan/.Xauthorit"..., "MAIL=/var/mail/root", "LOGNAME=root", "USER=root", "USERNAME=root", "SHELL=/bin/bash", "SUDO_COMMAND=/usr/bin/strace -u "..., "SUDO_USER=alan", "SUDO_UID=1000", "SUDO_GID=1000"]) = 0
908 brk(NULL) = 0x55faf83c2000
908 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
908 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6e26de1000
908 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
908 open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
908 fstat(3, {st_dev=makedev(259, 1), st_ino=27528670, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=272, st_size=136910, st_atime=2017/08/31-06:31:00.929081158, st_mtime=2017/08/30-06:30:39.335985220, st_ctime=2017/08/30-06:30:39.347985222}) = 0
908 mmap(NULL, 136910, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f6e26dbf000
908 close(3) = 0
908 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
908 open("/lib/x86_64-linux-gnu/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
908 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260`\0\0\0\0\0\0"..., 832) = 832
908 fstat(3, {st_dev=makedev(259, 1), st_ino=2883670, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=272, st_size=138696, st_atime=2017/08/31-10:48:00.776347951, st_mtime=2017/06/16-21:57:21, st_ctime=2017/07/03-17:45:45.423640709}) = 0
908 mmap(NULL, 2212904, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6e269a1000
908 mprotect(0x7f6e269b9000, 2093056, PROT_NONE) = 0
908 mmap(0x7f6e26bb8000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f6e26bb8000
908 mmap(0x7f6e26bba000, 13352, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f6e26bba000
908 close(3) = 0
908 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
908 open("/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
908 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\t\2\0\0\0\0\0"..., 832) = 832
908 fstat(3, {st_dev=makedev(259, 1), st_ino=2888106, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=3656, st_size=1868984, st_atime=2017/08/31-10:48:00.776347951, st_mtime=2017/06/16-21:57:16, st_ctime=2017/07/03-17:45:45.427640666}) = 0
908 mmap(NULL, 3971488, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6e265d7000
908 mprotect(0x7f6e26797000, 2097152, PROT_NONE) = 0
908 mmap(0x7f6e26997000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c0000) = 0x7f6e26997000
908 mmap(0x7f6e2699d000, 14752, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f6e2699d000
908 close(3) = 0
908 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6e26dbe000
908 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6e26dbd000
908 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6e26dbc000
908 arch_prctl(ARCH_SET_FS, 0x7f6e26dbd700) = 0
908 mprotect(0x7f6e26997000, 16384, PROT_READ) = 0
908 mprotect(0x7f6e26bb8000, 4096, PROT_READ) = 0
908 mprotect(0x55faf652c000, 5267456, PROT_READ) = 0
908 mprotect(0x7f6e26de3000, 4096, PROT_READ) = 0
908 munmap(0x7f6e26dbf000, 136910) = 0
908 set_tid_address(0x7f6e26dbd9d0) = 908
908 set_robust_list(0x7f6e26dbd9e0, 24) = 0
908 rt_sigaction(SIGRTMIN, {0x7f6e269a6b50, [], SA_RESTORER|SA_SIGINFO, 0x7f6e269b2390}, NULL, 8) = 0
908 rt_sigaction(SIGRT_1, {0x7f6e269a6be0, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7f6e269b2390}, NULL, 8) = 0
908 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
908 getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
908 brk(NULL) = 0x55faf83c2000
908 brk(0x55faf83e3000) = 0x55faf83e3000
908 sched_getaffinity(0, 8192, [ff, 0, 0, 0, 0, 0, 0, 0]) = 8
908 mmap(0xc000000000, 65536, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xc000000000
908 munmap(0xc000000000, 65536) = 0
908 mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6e26d7c000
908 mmap(0xc820000000, 1048576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xc820000000
908 mmap(0xc81fff8000, 32768, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xc81fff8000
908 mmap(0xc000000000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xc000000000
908 mmap(NULL, 65536, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6e26dd1000
908 rt_sigprocmask(SIG_SETMASK, NULL, [], 8) = 0
908 sigaltstack(NULL, {ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}) = 0
908 sigaltstack({ss_sp=0xc820002000, ss_flags=0, ss_size=32672}, NULL) = 0
908 gettid() = 908
908 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
908 rt_sigaction(SIGHUP, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGHUP, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGINT, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGINT, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGQUIT, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGQUIT, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGILL, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGILL, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGTRAP, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGTRAP, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGABRT, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGABRT, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGBUS, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGBUS, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGFPE, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGFPE, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGUSR1, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGUSR1, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGSEGV, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGSEGV, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGUSR2, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGUSR2, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGPIPE, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGPIPE, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGALRM, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGALRM, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGTERM, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGTERM, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGSTKFLT, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGSTKFLT, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGCHLD, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGCHLD, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGURG, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGURG, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGXCPU, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGXCPU, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGXFSZ, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGXFSZ, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGVTALRM, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGVTALRM, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGPROF, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGPROF, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGWINCH, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGWINCH, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGIO, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGIO, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGPWR, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGPWR, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGSYS, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGSYS, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRTMIN, NULL, {0x7f6e269a6b50, [], SA_RESTORER|SA_SIGINFO, 0x7f6e269b2390}, 8) = 0
908 rt_sigaction(SIGRTMIN, NULL, {0x7f6e269a6b50, [], SA_RESTORER|SA_SIGINFO, 0x7f6e269b2390}, 8) = 0
908 rt_sigaction(SIGRTMIN, {0x7f6e269a6b50, [], SA_RESTORER|SA_STACK|SA_SIGINFO, 0x7f6e269b2390}, NULL, 8) = 0
908 rt_sigaction(SIGRT_1, NULL, {0x7f6e269a6be0, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7f6e269b2390}, 8) = 0
908 rt_sigaction(SIGRT_1, NULL, {0x7f6e269a6be0, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7f6e269b2390}, 8) = 0
908 rt_sigaction(SIGRT_1, {0x7f6e269a6be0, [], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x7f6e269b2390}, NULL, 8) = 0
908 rt_sigaction(SIGRT_2, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_2, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_3, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_3, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_4, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_4, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_5, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_5, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_6, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_6, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_7, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_7, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_8, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_8, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_9, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_9, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_10, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_10, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_11, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_11, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_12, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_12, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_13, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_13, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_14, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_14, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_15, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_15, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_16, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_16, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_17, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_17, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_18, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_18, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_19, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_19, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_20, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_20, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_21, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_21, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_22, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_22, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_23, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_23, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_24, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_24, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_25, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_25, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_26, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_26, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_27, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_27, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_28, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_28, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_29, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_29, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_30, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_30, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_31, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_31, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigaction(SIGRT_32, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_32, {0x55faf5ea8900, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55faf5ea8920}, NULL, 8) = 0
908 rt_sigprocmask(SIG_SETMASK, ~[RTMIN RT_1], [], 8) = 0
908 mmap(NULL, 8392704, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f6e25dd6000
908 mprotect(0x7f6e25dd6000, 4096, PROT_NONE) = 0
908 clone(child_stack=0x7f6e265d5ff0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f6e265d69d0, tls=0x7f6e265d6700, child_tidptr=0x7f6e265d69d0) = 912
912 set_robust_list(0x7f6e265d69e0, 24 <unfinished ...>
908 rt_sigprocmask(SIG_SETMASK, [], <unfinished ...>
912 <... set_robust_list resumed> ) = 0
908 <... rt_sigprocmask resumed> NULL, 8) = 0
912 sigaltstack(NULL, {ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}) = 0
908 mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 <unfinished ...>
912 sigaltstack({ss_sp=0xc820040000, ss_flags=0, ss_size=32672}, <unfinished ...>
908 <... mmap resumed> ) = 0x7f6e26d3c000
912 <... sigaltstack resumed> NULL) = 0
912 gettid() = 912
912 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
908 rt_sigprocmask(SIG_SETMASK, ~[RTMIN RT_1], [], 8) = 0
908 mmap(NULL, 8392704, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f6e255d5000
908 mprotect(0x7f6e255d5000, 4096, PROT_NONE) = 0
908 clone(child_stack=0x7f6e25dd4ff0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f6e25dd59d0, tls=0x7f6e25dd5700, child_tidptr=0x7f6e25dd59d0) = 913
913 set_robust_list(0x7f6e25dd59e0, 24) = 0
908 rt_sigprocmask(SIG_SETMASK, [], <unfinished ...>
913 sigaltstack(NULL, <unfinished ...>
908 <... rt_sigprocmask resumed> NULL, 8) = 0
913 <... sigaltstack resumed> {ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}) = 0
913 sigaltstack({ss_sp=0xc820050000, ss_flags=0, ss_size=32672}, <unfinished ...>
908 rt_sigprocmask(SIG_SETMASK, ~[RTMIN RT_1], <unfinished ...>
913 <... sigaltstack resumed> NULL) = 0
908 <... rt_sigprocmask resumed> [], 8) = 0
913 gettid( <unfinished ...>
908 mmap(NULL, 8392704, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0 <unfinished ...>
913 <... gettid resumed> ) = 913
908 <... mmap resumed> ) = 0x7f6e24dd4000
913 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
908 mprotect(0x7f6e24dd4000, 4096, PROT_NONE) = 0
908 clone( <unfinished ...>
913 sched_yield() = 0
913 futex(0x55faf6a736e8, FUTEX_WAIT, 2, NULL <unfinished ...>
914 set_robust_list(0x7f6e255d49e0, 24) = 0
908 <... clone resumed> child_stack=0x7f6e255d3ff0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f6e255d49d0, tls=0x7f6e255d4700, child_tidptr=0x7f6e255d49d0) = 914
914 sigaltstack(NULL, <unfinished ...>
908 rt_sigprocmask(SIG_SETMASK, [], <unfinished ...>
914 <... sigaltstack resumed> {ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}) = 0
908 <... rt_sigprocmask resumed> NULL, 8) = 0
914 sigaltstack({ss_sp=0xc82005a000, ss_flags=0, ss_size=32672}, NULL) = 0
914 gettid( <unfinished ...>
908 futex(0x55faf6a736e8, FUTEX_WAKE, 1 <unfinished ...>
914 <... gettid resumed> ) = 914
913 <... futex resumed> ) = 0
914 rt_sigprocmask(SIG_SETMASK, [], <unfinished ...>
913 mmap(NULL, 134217728, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0 <unfinished ...>
914 <... rt_sigprocmask resumed> NULL, 8) = 0
913 <... mmap resumed> ) = 0x7f6e1cdd4000
908 <... futex resumed> ) = 1
914 futex(0xc82002ed08, FUTEX_WAIT, 0, NULL <unfinished ...>
913 munmap(0x7f6e1cdd4000, 52609024 <unfinished ...>
908 futex(0x55faf6a56c68, FUTEX_WAIT, 0, NULL <unfinished ...>
913 <... munmap resumed> ) = 0
913 munmap(0x7f6e24000000, 14499840) = 0
913 mprotect(0x7f6e20000000, 135168, PROT_READ|PROT_WRITE) = 0
913 rt_sigprocmask(SIG_SETMASK, ~[RTMIN RT_1], [], 8) = 0
913 mmap(NULL, 8392704, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f6e245d3000
913 mprotect(0x7f6e245d3000, 4096, PROT_NONE) = 0
913 clone( <unfinished ...>
915 set_robust_list(0x7f6e24dd39e0, 24 <unfinished ...>
913 <... clone resumed> child_stack=0x7f6e24dd2ff0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f6e24dd39d0, tls=0x7f6e24dd3700, child_tidptr=0x7f6e24dd39d0) = 915
915 <... set_robust_list resumed> ) = 0
913 rt_sigprocmask(SIG_SETMASK, [], <unfinished ...>
915 sigaltstack(NULL, <unfinished ...>
913 <... rt_sigprocmask resumed> NULL, 8) = 0
915 <... sigaltstack resumed> {ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}) = 0
913 futex(0x55faf6a736e8, FUTEX_WAKE, 1 <unfinished ...>
915 sigaltstack({ss_sp=0xc820066000, ss_flags=0, ss_size=32672}, <unfinished ...>
913 <... futex resumed> ) = 0
915 <... sigaltstack resumed> NULL) = 0
913 futex(0x55faf6a56c68, FUTEX_WAKE, 1 <unfinished ...>
915 gettid( <unfinished ...>
913 <... futex resumed> ) = 1
915 <... gettid resumed> ) = 915
913 futex(0xc82002e908, FUTEX_WAIT, 0, NULL <unfinished ...>
915 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
908 <... futex resumed> ) = 0
915 futex(0xc820062108, FUTEX_WAIT, 0, NULL) = -1 EAGAIN (Resource temporarily unavailable)
908 futex(0xc820062108, FUTEX_WAKE, 1) = 0
908 futex(0xc82002e908, FUTEX_WAKE, 1 <unfinished ...>
913 <... futex resumed> ) = 0
908 <... futex resumed> ) = 1
913 futex(0x55faf6a56c68, FUTEX_WAKE, 1) = 0
913 futex(0xc82002e908, FUTEX_WAIT, 0, NULL <unfinished ...>
908 mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6e26cfc000
915 futex(0xc820062108, FUTEX_WAIT, 0, NULL <unfinished ...>
908 futex(0xc820062108, FUTEX_WAKE, 1 <unfinished ...>
915 <... futex resumed> ) = 0
908 <... futex resumed> ) = 1
908 openat(AT_FDCWD, "/etc/os-release", O_RDONLY|O_CLOEXEC <unfinished ...>
915 futex(0xc82002e908, FUTEX_WAKE, 1 <unfinished ...>
908 <... openat resumed> ) = 3
915 <... futex resumed> ) = 1
913 <... futex resumed> ) = 0
915 futex(0xc820062108, FUTEX_WAIT, 0, NULL <unfinished ...>
913 futex(0xc82002e908, FUTEX_WAIT, 0, NULL <unfinished ...>
908 read(3, "NAME=\"Ubuntu\"\nVERSION=\"16.04.3 L"..., 4096) = 298
908 read(3, "", 3798) = 0
908 stat("/snap/core/current/usr/share/locale-langpack/en_GB/LC_MESSAGES/snappy.mo", 0xc820078fa8) = -1 ENOENT (No such file or directory)
908 stat("/snap/core/current/usr/share/locale/en_GB/LC_MESSAGES/snappy.mo", 0xc820079078) = -1 ENOENT (No such file or directory)
908 stat("/usr/share/locale-langpack/en_GB/LC_MESSAGES/snappy.mo", 0xc820079148) = -1 ENOENT (No such file or directory)
908 stat("/usr/share/locale/en_GB/LC_MESSAGES/snappy.mo", 0xc820079218) = -1 ENOENT (No such file or directory)
908 stat("/snap/core/current/usr/share/locale-langpack/en/LC_MESSAGES/snappy.mo", 0xc8200792e8) = -1 ENOENT (No such file or directory)
908 stat("/snap/core/current/usr/share/locale/en/LC_MESSAGES/snappy.mo", 0xc8200793b8) = -1 ENOENT (No such file or directory)
908 stat("/usr/share/locale-langpack/en/LC_MESSAGES/snappy.mo", 0xc820079488) = -1 ENOENT (No such file or directory)
908 stat("/usr/share/locale/en/LC_MESSAGES/snappy.mo", 0xc820079558) = -1 ENOENT (No such file or directory)
908 openat(AT_FDCWD, "", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
908 openat(AT_FDCWD, "/proc/sys/net/core/somaxconn", O_RDONLY|O_CLOEXEC) = 4
908 read(4, "128\n", 4096) = 4
908 read(4, "", 4092) = 0
908 close(4) = 0
908 socket(PF_INET, SOCK_STREAM, IPPROTO_TCP) = 4
908 close(4) = 0
908 socket(PF_INET6, SOCK_STREAM, IPPROTO_TCP) = 4
908 setsockopt(4, SOL_IPV6, IPV6_V6ONLY, [1], 4) = 0
908 bind(4, {sa_family=AF_INET6, sin6_port=htons(0), inet_pton(AF_INET6, "::1", &sin6_addr), sin6_flowinfo=0, sin6_scope_id=0}, 28) = 0
908 socket(PF_INET6, SOCK_STREAM, IPPROTO_TCP) = 5
908 setsockopt(5, SOL_IPV6, IPV6_V6ONLY, [0], 4) = 0
908 bind(5, {sa_family=AF_INET6, sin6_port=htons(0), inet_pton(AF_INET6, "::ffff:127.0.0.1", &sin6_addr), sin6_flowinfo=0, sin6_scope_id=0}, 28) = 0
908 close(5) = 0
908 close(4) = 0
908 mmap(0xc820100000, 1048576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xc820100000
908 mmap(0xc81fff0000, 32768, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xc81fff0000
908 mmap(NULL, 1439992, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6e24473000
908 futex(0xc82002e908, FUTEX_WAKE, 1) = 1
913 <... futex resumed> ) = 0
908 openat(AT_FDCWD, "/dev/tty", O_RDONLY|O_CLOEXEC) = 4
913 futex(0xc820062108, FUTEX_WAKE, 1) = 1
915 <... futex resumed> ) = 0
913 futex(0x55faf6a73a80, FUTEX_WAIT, 0, NULL <unfinished ...>
915 futex(0xc820062108, FUTEX_WAIT, 0, NULL <unfinished ...>
908 stat("/sys/kernel/security/apparmor/features/caps", {st_dev=makedev(0, 14), st_ino=10735, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=0, st_atime=2017/08/30-16:38:03.740450481, st_mtime=2017/08/26-10:46:59.260000000, st_ctime=2017/08/26-10:46:59.260000000}) = 0
908 stat("/sys/kernel/security/apparmor/features/dbus", {st_dev=makedev(0, 14), st_ino=10741, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=0, st_atime=2017/08/30-16:38:03.740450481, st_mtime=2017/08/26-10:46:59.260000000, st_ctime=2017/08/26-10:46:59.260000000}) = 0
908 stat("/sys/kernel/security/apparmor/features/domain", {st_dev=makedev(0, 14), st_ino=10714, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=0, st_atime=2017/08/30-16:38:03.740450481, st_mtime=2017/08/26-10:46:59.260000000, st_ctime=2017/08/26-10:46:59.260000000}) = 0
908 stat("/sys/kernel/security/apparmor/features/file", {st_dev=makedev(0, 14), st_ino=10722, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=0, st_atime=2017/08/30-16:38:03.740450481, st_mtime=2017/08/26-10:46:59.260000000, st_ctime=2017/08/26-10:46:59.260000000}) = 0
908 stat("/sys/kernel/security/apparmor/features/mount", {st_dev=makedev(0, 14), st_ino=10727, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=0, st_atime=2017/08/30-16:38:03.740450481, st_mtime=2017/08/26-10:46:59.260000000, st_ctime=2017/08/26-10:46:59.260000000}) = 0
908 stat("/sys/kernel/security/apparmor/features/namespaces", {st_dev=makedev(0, 14), st_ino=10729, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=0, st_atime=2017/08/30-16:38:03.740450481, st_mtime=2017/08/26-10:46:59.260000000, st_ctime=2017/08/26-10:46:59.260000000}) = 0
908 stat("/sys/kernel/security/apparmor/features/network", {st_dev=makedev(0, 14), st_ino=10724, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=0, st_atime=2017/08/30-16:38:03.740450481, st_mtime=2017/08/26-10:46:59.260000000, st_ctime=2017/08/26-10:46:59.260000000}) = 0
908 stat("/sys/kernel/security/apparmor/features/ptrace", {st_dev=makedev(0, 14), st_ino=10737, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=0, st_atime=2017/08/30-16:38:03.740450481, st_mtime=2017/08/26-10:46:59.260000000, st_ctime=2017/08/26-10:46:59.260000000}) = 0
908 stat("/sys/kernel/security/apparmor/features/signal", {st_dev=makedev(0, 14), st_ino=10739, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=0, st_atime=2017/08/30-16:38:03.740450481, st_mtime=2017/08/26-10:46:59.260000000, st_ctime=2017/08/26-10:46:59.260000000}) = 0
908 uname({sysname="Linux", nodename="hal", release="4.10.0-32-generic", version="#36~16.04.1-Ubuntu SMP Wed Aug 9 09:19:02 UTC 2017", machine="x86_64", domainname="(none)"}) = 0
908 readlinkat(AT_FDCWD, "/proc/self/exe", "/usr/bin/snap", 128) = 13
908 stat("/snap/core/current/usr/bin/snap", {st_dev=makedev(7, 15), st_ino=3044, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=30224, st_size=15474640, st_atime=2017/07/20-12:58:52, st_mtime=2017/07/20-12:58:52, st_ctime=2017/07/20-12:58:52}) = 0
908 stat("/snap/core/current/usr/lib/snapd/info", {st_dev=makedev(7, 15), st_ino=6486, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=1, st_size=16, st_atime=2017/07/20-12:56:38, st_mtime=2017/07/20-12:56:38, st_ctime=2017/07/20-12:56:38}) = 0
908 openat(AT_FDCWD, "/snap/core/current/usr/lib/snapd/info", O_RDONLY|O_CLOEXEC) = 5
908 fstat(5, {st_dev=makedev(7, 15), st_ino=6486, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=1, st_size=16, st_atime=2017/07/20-12:56:38, st_mtime=2017/07/20-12:56:38, st_ctime=2017/07/20-12:56:38}) = 0
908 read(5, "VERSION=2.26.14\n", 528) = 16
908 read(5, "", 512) = 0
908 close(5) = 0
908 lstat("/snap/bin/chromium", {st_dev=makedev(259, 1), st_ino=6553650, st_mode=S_IFLNK|0777, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=13, st_atime=2017/08/31-15:36:08.116208701, st_mtime=2017/08/31-15:35:36.748621833, st_ctime=2017/08/31-15:35:36.748621833}) = 0
908 readlinkat(AT_FDCWD, "/snap/bin/chromium", "/usr/bin/snap", 128) = 13
908 readlinkat(AT_FDCWD, "/snap/chromium/current", "9", 128) = 1
908 openat(AT_FDCWD, "/snap/chromium/9/meta/snap.yaml", O_RDONLY|O_CLOEXEC) = 5
908 fstat(5, {st_dev=makedev(7, 63), st_ino=241, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=2, st_size=696, st_atime=2017/08/17-13:15:30, st_mtime=2017/08/17-13:15:30, st_ctime=2017/08/17-13:15:30}) = 0
908 read(5, "apps:\n chromium:\n command: c"..., 1208) = 696
908 read(5, "", 512) = 0
908 close(5) = 0
908 stat("/var/lib/snapd/snaps/chromium_9.snap", {st_dev=makedev(259, 1), st_ino=9306153, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=477416, st_size=244436992, st_atime=2017/08/31-15:35:33.668662741, st_mtime=2017/08/31-15:35:33.396666357, st_ctime=2017/08/31-15:35:33.432665879}) = 0
908 stat("/snap/chromium/9/meta/hooks", 0xc8201a61d8) = -1 ENOENT (No such file or directory)
908 readlinkat(AT_FDCWD, "/proc/self/exe", "/usr/bin/snap", 128) = 13
908 stat("/usr/lib/snapd/snap-confine", {st_dev=makedev(259, 1), st_ino=5248990, st_mode=S_IFREG|S_ISUID|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=160, st_size=81672, st_atime=2017/08/31-15:26:23.741454142, st_mtime=2017/08/31-11:17:53, st_ctime=2017/08/31-15:25:56.637998870}) = 0
908 getuid() = 1000
908 socket(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 5
908 connect(5, {sa_family=AF_LOCAL, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
908 close(5) = 0
908 socket(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 5
908 connect(5, {sa_family=AF_LOCAL, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
908 close(5) = 0
908 open("/etc/nsswitch.conf", O_RDONLY|O_CLOEXEC) = 5
908 fstat(5, {st_dev=makedev(259, 1), st_ino=27525313, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=529, st_atime=2017/08/31-11:04:50.944015643, st_mtime=2017/02/15-20:35:28, st_ctime=2017/07/03-17:30:59.828024056}) = 0
908 read(5, "# /etc/nsswitch.conf\n#\n# Example"..., 4096) = 529
908 read(5, "", 4096) = 0
908 close(5) = 0
908 open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 5
908 fstat(5, {st_dev=makedev(259, 1), st_ino=27528670, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=272, st_size=136910, st_atime=2017/08/31-06:31:00.929081158, st_mtime=2017/08/30-06:30:39.335985220, st_ctime=2017/08/30-06:30:39.347985222}) = 0
908 mmap(NULL, 136910, PROT_READ, MAP_PRIVATE, 5, 0) = 0x7f6e26cda000
908 close(5) = 0
908 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
908 open("/lib/x86_64-linux-gnu/libnss_compat.so.2", O_RDONLY|O_CLOEXEC) = 5
908 read(5, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\22\0\0\0\0\0\0"..., 832) = 832
908 fstat(5, {st_dev=makedev(259, 1), st_ino=2883677, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=72, st_size=35688, st_atime=2017/08/31-15:10:01.886341857, st_mtime=2017/06/16-21:57:16, st_ctime=2017/07/03-17:45:45.427640666}) = 0
908 mmap(NULL, 2131040, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 5, 0) = 0x7f6e2426a000
908 mprotect(0x7f6e24272000, 2093056, PROT_NONE) = 0
908 mmap(0x7f6e24471000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0x7000) = 0x7f6e24471000
908 close(5) = 0
908 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
908 open("/lib/x86_64-linux-gnu/libnsl.so.1", O_RDONLY|O_CLOEXEC) = 5
908 read(5, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360?\0\0\0\0\0\0"..., 832) = 832
908 fstat(5, {st_dev=makedev(259, 1), st_ino=2883598, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=184, st_size=93128, st_atime=2017/08/31-15:10:01.886341857, st_mtime=2017/06/16-21:57:15, st_ctime=2017/07/03-17:45:45.423640709}) = 0
908 mmap(NULL, 2198104, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 5, 0) = 0x7f6e24051000
908 mprotect(0x7f6e24067000, 2093056, PROT_NONE) = 0
908 mmap(0x7f6e24266000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0x15000) = 0x7f6e24266000
908 mmap(0x7f6e24268000, 6744, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f6e24268000
908 close(5) = 0
908 mprotect(0x7f6e24266000, 4096, PROT_READ) = 0
908 mprotect(0x7f6e24471000, 4096, PROT_READ) = 0
908 munmap(0x7f6e26cda000, 136910) = 0
908 open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 5
908 fstat(5, {st_dev=makedev(259, 1), st_ino=27528670, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=272, st_size=136910, st_atime=2017/08/31-06:31:00.929081158, st_mtime=2017/08/30-06:30:39.335985220, st_ctime=2017/08/30-06:30:39.347985222}) = 0
908 mmap(NULL, 136910, PROT_READ, MAP_PRIVATE, 5, 0) = 0x7f6e26cda000
908 close(5) = 0
908 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
908 open("/lib/x86_64-linux-gnu/libnss_nis.so.2", O_RDONLY|O_CLOEXEC) = 5
908 read(5, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260 \0\0\0\0\0\0"..., 832) = 832
908 fstat(5, {st_dev=makedev(259, 1), st_ino=2883671, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=96, st_size=47648, st_atime=2017/08/31-15:10:01.886341857, st_mtime=2017/06/16-21:57:15, st_ctime=2017/07/03-17:45:45.423640709}) = 0
908 mmap(NULL, 2143624, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 5, 0) = 0x7f6e1fdf4000
908 mprotect(0x7f6e1fdff000, 2093056, PROT_NONE) = 0
908 mmap(0x7f6e1fffe000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0xa000) = 0x7f6e1fffe000
908 close(5) = 0
908 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
908 open("/lib/x86_64-linux-gnu/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = 5
908 read(5, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260!\0\0\0\0\0\0"..., 832) = 832
908 fstat(5, {st_dev=makedev(259, 1), st_ino=2883668, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=96, st_size=47600, st_atime=2017/08/31-11:04:50.944015643, st_mtime=2017/06/16-21:57:15, st_ctime=2017/07/03-17:45:45.423640709}) = 0
908 mmap(NULL, 2168600, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 5, 0) = 0x7f6e1fbe2000
908 mprotect(0x7f6e1fbed000, 2093056, PROT_NONE) = 0
908 mmap(0x7f6e1fdec000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0xa000) = 0x7f6e1fdec000
908 mmap(0x7f6e1fdee000, 22296, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f6e1fdee000
908 close(5) = 0
908 mprotect(0x7f6e1fdec000, 4096, PROT_READ) = 0
908 mprotect(0x7f6e1fffe000, 4096, PROT_READ) = 0
908 munmap(0x7f6e26cda000, 136910) = 0
908 open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 5
908 lseek(5, 0, SEEK_CUR) = 0
908 fstat(5, {st_dev=makedev(259, 1), st_ino=27528530, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=2633, st_atime=2017/08/31-13:07:01.046146996, st_mtime=2017/08/14-12:19:59.501332415, st_ctime=2017/08/14-12:19:59.509332430}) = 0
908 mmap(NULL, 2633, PROT_READ, MAP_SHARED, 5, 0) = 0x7f6e26dd0000
908 lseek(5, 2633, SEEK_SET) = 2633
908 munmap(0x7f6e26dd0000, 2633) = 0
908 close(5) = 0
908 stat("/home/alan/snap/chromium/9", 0xc8201a6378) = -1 ENOENT (No such file or directory)
908 stat("/home/alan/snap/chromium", {st_dev=makedev(8, 0), st_ino=40764868, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=1000, st_gid=1000, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2017/08/31-15:34:12.453765304, st_mtime=2017/08/31-15:34:12.453765304, st_ctime=2017/08/31-15:34:12.453765304}) = 0
908 mkdirat(AT_FDCWD, "/home/alan/snap/chromium/9", 0755) = 0
908 stat("/home/alan/snap/chromium/common", 0xc8201a6518) = -1 ENOENT (No such file or directory)
908 stat("/home/alan/snap/chromium", {st_dev=makedev(8, 0), st_ino=40764868, st_mode=S_IFDIR|0755, st_nlink=3, st_uid=1000, st_gid=1000, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2017/08/31-15:34:12.453765304, st_mtime=2017/08/31-15:36:08.128208545, st_ctime=2017/08/31-15:36:08.128208545}) = 0
908 mkdirat(AT_FDCWD, "/home/alan/snap/chromium/common", 0755) = 0
908 readlinkat(AT_FDCWD, "/home/alan/snap/chromium/current", "9", 128) = 1
908 getuid() = 1000
908 open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 5
908 lseek(5, 0, SEEK_CUR) = 0
908 fstat(5, {st_dev=makedev(259, 1), st_ino=27528530, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=2633, st_atime=2017/08/31-13:07:01.046146996, st_mtime=2017/08/14-12:19:59.501332415, st_ctime=2017/08/14-12:19:59.509332430}) = 0
908 mmap(NULL, 2633, PROT_READ, MAP_SHARED, 5, 0) = 0x7f6e26dd0000
908 lseek(5, 2633, SEEK_SET) = 2633
908 munmap(0x7f6e26dd0000, 2633) = 0
908 close(5) = 0
908 stat("/run/user/1000", {st_dev=makedev(0, 48), st_ino=48476, st_mode=S_IFDIR|0700, st_nlink=17, st_uid=1000, st_gid=1000, st_blksize=4096, st_blocks=0, st_size=480, st_atime=2017/08/31-15:34:12.453765304, st_mtime=2017/08/31-15:34:12.453765304, st_ctime=2017/08/31-15:34:12.453765304}) = 0
908 stat("/home/alan/.Xauthority", {st_dev=makedev(8, 0), st_ino=6553980, st_mode=S_IFREG|0600, st_nlink=1, st_uid=1000, st_gid=1000, st_blksize=4096, st_blocks=8, st_size=146, st_atime=2017/08/31-10:49:01.635725361, st_mtime=2017/08/26-10:47:31.412673388, st_ctime=2017/08/26-10:47:31.412673388}) = 0
908 openat(AT_FDCWD, "/home/alan/.Xauthority", O_RDONLY|O_CLOEXEC) = 5
908 lstat("/home", {st_dev=makedev(8, 0), st_ino=2, st_mode=S_IFDIR|0755, st_nlink=4, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2017/08/31-07:54:02.965487346, st_mtime=2017/07/03-19:53:39.706081361, st_ctime=2017/07/03-19:53:39.706081361}) = 0
908 lstat("/home/alan", {st_dev=makedev(8, 0), st_ino=6553602, st_mode=S_IFDIR|0775, st_nlink=247, st_uid=1000, st_gid=1000, st_blksize=4096, st_blocks=40, st_size=20480, st_atime=2017/08/31-15:33:10.666638031, st_mtime=2017/08/31-15:36:08.116208701, st_ctime=2017/08/31-15:36:08.116208701}) = 0
908 lstat("/home/alan/.Xauthority", {st_dev=makedev(8, 0), st_ino=6553980, st_mode=S_IFREG|0600, st_nlink=1, st_uid=1000, st_gid=1000, st_blksize=4096, st_blocks=8, st_size=146, st_atime=2017/08/31-10:49:01.635725361, st_mtime=2017/08/26-10:47:31.412673388, st_ctime=2017/08/26-10:47:31.412673388}) = 0
908 close(5) = 0
908 getuid() = 1000
908 open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 5
908 lseek(5, 0, SEEK_CUR) = 0
908 fstat(5, {st_dev=makedev(259, 1), st_ino=27528530, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=2633, st_atime=2017/08/31-13:07:01.046146996, st_mtime=2017/08/14-12:19:59.501332415, st_ctime=2017/08/14-12:19:59.509332430}) = 0
908 mmap(NULL, 2633, PROT_READ, MAP_SHARED, 5, 0) = 0x7f6e26dd0000
908 lseek(5, 2633, SEEK_SET) = 2633
908 munmap(0x7f6e26dd0000, 2633) = 0
908 close(5) = 0
908 geteuid() = 1000
908 execve("/usr/lib/snapd/snap-confine", ["/usr/lib/snapd/snap-confine", "snap.chromium.chromium", "/usr/lib/snapd/snap-exec", "chromium"], ["LANG=en_GB.UTF-8", "DISPLAY=:0", "USER=root", "SUDO_GID=1000", "TERM=xterm-256color", "LANGUAGE=en_GB:en", "SNAP_VERSION=60.0.3112.101", "HOME=/home/alan/snap/chromium/9", "USERNAME=root", "SUDO_COMMAND=/usr/bin/strace -u "..., "SNAP_ARCH=amd64", "LS_COLORS=rs=0:di=01;34:ln=01;36"..., "SUDO_UID=1000", "SNAP_REEXEC=", "SNAP_USER_DATA=/home/alan/snap/c"..., "XDG_RUNTIME_DIR=/run/user/1000/s"..., "PATH=/usr/local/sbin:/usr/local/"..., "XAUTHORITY=/home/alan/.Xauthorit"..., "SNAP_LIBRARY_PATH=/var/lib/snapd"..., "SNAP_COMMON=/var/snap/chromium/c"..., "SNAP_USER_COMMON=/home/alan/snap"..., "MAIL=/var/mail/root", "LOGNAME=root", "SHELL=/bin/bash", "SNAP_NAME=chromium", "SUDO_USER=alan", "SNAP=/snap/chromium/9", "SNAP_DATA=/var/snap/chromium/9", "SNAP_REVISION=9"] <unfinished ...>
915 +++ exited with 0 +++
914 +++ exited with 0 +++
913 +++ exited with 0 +++
912 +++ exited with 0 +++
908 <... execve resumed> ) = 0
908 brk(NULL) = 0x918000
908 fcntl(0, F_GETFD) = 0
908 fcntl(1, F_GETFD) = 0
908 fcntl(2, F_GETFD) = 0
908 access("/etc/suid-debug", F_OK) = -1 ENOENT (No such file or directory)
908 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
908 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2d925c7000
908 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
908 open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
908 fstat(3, {st_dev=makedev(259, 1), st_ino=27528670, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=272, st_size=136910, st_atime=2017/08/31-06:31:00.929081158, st_mtime=2017/08/30-06:30:39.335985220, st_ctime=2017/08/30-06:30:39.347985222}) = 0
908 mmap(NULL, 136910, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f2d925a5000
908 close(3) = 0
908 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
908 open("/lib/x86_64-linux-gnu/libudev.so.1", O_RDONLY|O_CLOEXEC) = 3
908 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
908 fstat(3, {st_dev=makedev(259, 1), st_ino=2887989, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=248, st_size=126840, st_atime=2017/08/30-18:57:54.413237430, st_mtime=2017/07/19-00:57:01, st_ctime=2017/08/08-01:18:29.153143739}) = 0
908 mmap(NULL, 130656, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2d92585000
908 mmap(0x7f2d925a3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1d000) = 0x7f2d925a3000
908 close(3) = 0
908 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
908 open("/lib/x86_64-linux-gnu/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
908 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260`\0\0\0\0\0\0"..., 832) = 832
908 fstat(3, {st_dev=makedev(259, 1), st_ino=2883670, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=272, st_size=138696, st_atime=2017/08/31-10:48:00.776347951, st_mtime=2017/06/16-21:57:21, st_ctime=2017/07/03-17:45:45.423640709}) = 0
908 mmap(NULL, 2212904, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2d92187000
908 mprotect(0x7f2d9219f000, 2093056, PROT_NONE) = 0
908 mmap(0x7f2d9239e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f2d9239e000
908 mmap(0x7f2d923a0000, 13352, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f2d923a0000
908 close(3) = 0
908 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
908 open("/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
908 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\t\2\0\0\0\0\0"..., 832) = 832
908 fstat(3, {st_dev=makedev(259, 1), st_ino=2888106, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=3656, st_size=1868984, st_atime=2017/08/31-10:48:00.776347951, st_mtime=2017/06/16-21:57:16, st_ctime=2017/07/03-17:45:45.427640666}) = 0
908 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2d92584000
908 mmap(NULL, 3971488, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2d91dbd000
908 mprotect(0x7f2d91f7d000, 2097152, PROT_NONE) = 0
908 mmap(0x7f2d9217d000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c0000) = 0x7f2d9217d000
908 mmap(0x7f2d92183000, 14752, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f2d92183000
908 close(3) = 0
908 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
908 open("/lib/x86_64-linux-gnu/librt.so.1", O_RDONLY|O_CLOEXEC) = 3
908 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0!\0\0\0\0\0\0"..., 832) = 832
908 fstat(3, {st_dev=makedev(259, 1), st_ino=2883673, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=64, st_size=31712, st_atime=2017/08/31-10:49:01.519726522, st_mtime=2017/06/16-21:57:16, st_ctime=2017/07/03-17:45:45.423640709}) = 0
908 mmap(NULL, 2128832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2d91bb5000
908 mprotect(0x7f2d91bbc000, 2093056, PROT_NONE) = 0
908 mmap(0x7f2d91dbb000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f2d91dbb000
908 close(3) = 0
908 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2d92583000
908 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2d92581000
908 arch_prctl(ARCH_SET_FS, 0x7f2d92581740) = 0
908 mprotect(0x7f2d9217d000, 16384, PROT_READ) = 0
908 mprotect(0x7f2d9239e000, 4096, PROT_READ) = 0
908 mprotect(0x7f2d91dbb000, 4096, PROT_READ) = 0
908 mprotect(0x7f2d925a3000, 4096, PROT_READ) = 0
908 mprotect(0x612000, 4096, PROT_READ) = 0
908 mprotect(0x7f2d925c9000, 4096, PROT_READ) = 0
908 munmap(0x7f2d925a5000, 136910) = 0
908 set_tid_address(0x7f2d92581a10) = 908
908 set_robust_list(0x7f2d92581a20, 24) = 0
908 rt_sigaction(SIGRTMIN, {0x7f2d9218cb50, [], SA_RESTORER|SA_SIGINFO, 0x7f2d92198390}, NULL, 8) = 0
908 rt_sigaction(SIGRT_1, {0x7f2d9218cbe0, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7f2d92198390}, NULL, 8) = 0
908 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
908 getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
908 brk(NULL) = 0x918000
908 brk(0x939000) = 0x939000
908 getuid() = 1000
908 getgid() = 1000
908 geteuid() = 0
908 open("/var/lib/snapd/cookie/snap.chromium", O_RDONLY|O_NOFOLLOW|O_CLOEXEC) = 3
908 read(3, "fBxqyh49fclf399JdVF14gknw40t0nfq"..., 254) = 44
908 close(3) = 0
908 open("/proc/mounts", O_RDONLY|O_CLOEXEC) = 3
908 futex(0x7f2d92184008, FUTEX_WAKE_PRIVATE, 2147483647) = 0
908 fstat(3, {st_dev=makedev(0, 4), st_ino=10261665, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=0, st_size=0, st_atime=2017/08/31-15:36:08.132208492, st_mtime=2017/08/31-15:36:08.132208492, st_ctime=2017/08/31-15:36:08.132208492}) = 0
908 read(3, "sysfs /sys sysfs rw,nosuid,nodev"..., 1024) = 1024
908 stat("/sys/kernel/security/apparmor", {st_dev=makedev(0, 14), st_ino=10700, st_mode=S_IFDIR|0755, st_nlink=4, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=0, st_atime=2017/08/26-10:46:59.260000000, st_mtime=2017/08/26-10:46:59.260000000, st_ctime=2017/08/26-10:46:59.260000000}) = 0
908 close(3) = 0
908 gettid() = 908
908 open("/proc/908/attr/current", O_RDONLY) = 3
908 read(3, "/usr/lib/snapd/snap-confine (enf"..., 128) = 38
908 read(3, "", 90) = 0
908 close(3) = 0
908 geteuid() = 0
908 open("/proc/1/ns/mnt", O_RDONLY|O_NOFOLLOW|O_CLOEXEC|O_PATH) = 3
908 open("/proc/self/ns/mnt", O_RDONLY|O_NOFOLLOW|O_CLOEXEC|O_PATH) = 4
908 readlinkat(3, "", "mnt:[4026531840]", 128) = 16
908 readlinkat(4, "", "mnt:[4026531840]", 128) = 16
908 close(4) = 0
908 close(3) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 3
908 mkdirat(3, "run", 0755) = -1 EEXIST (File exists)
908 openat(3, "run", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 4
908 close(3) = 0
908 mkdirat(4, "snapd", 0755) = -1 EEXIST (File exists)
908 openat(4, "snapd", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 3
908 close(4) = 0
908 mkdirat(3, "lock", 0755) = -1 EEXIST (File exists)
908 openat(3, "lock", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 4
908 close(3) = 0
908 close(4) = 0
908 open("/run/snapd/lock", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC|O_PATH) = 3
908 openat(3, "/run/snapd/lock/.lock", O_RDWR|O_CREAT|O_NOFOLLOW|O_CLOEXEC, 0600) = 4
908 rt_sigaction(SIGALRM, {0x406e90, [], SA_RESTORER, 0x7f2d92198390}, NULL, 8) = 0
908 alarm(3) = 0
908 flock(4, LOCK_EX) = 0
908 alarm(0) = 3
908 rt_sigaction(SIGALRM, {SIG_DFL, [], SA_RESTORER, 0x7f2d92198390}, NULL, 8) = 0
908 close(3) = 0
908 open("/proc/self/mountinfo", O_RDONLY) = 3
908 fstat(3, {st_dev=makedev(0, 4), st_ino=10261670, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=0, st_size=0, st_atime=2017/08/31-15:36:08.132208492, st_mtime=2017/08/31-15:36:08.132208492, st_ctime=2017/08/31-15:36:08.132208492}) = 0
908 read(3, "19 25 0:18 / /sys rw,nosuid,node"..., 1024) = 1024
908 read(3, "emd-cgroups-agent,name=systemd\n3"..., 1024) = 1024
908 read(3, "d,nodev,noexec,relatime shared:2"..., 1024) = 1024
908 read(3, " 25 7:10 / /snap/sunwait/17 ro,n"..., 1024) = 1024
908 read(3, "latime shared:42 - squashfs /dev"..., 1024) = 1024
908 read(3, "ime shared:57 - squashfs /dev/lo"..., 1024) = 1024
908 read(3, "nap/6 ro,nodev,relatime shared:7"..., 1024) = 1024
908 read(3, "/pycharm-community/22 ro,nodev,r"..., 1024) = 1024
908 read(3, "/2312 ro,nodev,relatime shared:9"..., 1024) = 1024
908 read(3, "/snapd/ns rw,nosuid,noexec,relat"..., 1024) = 1024
908 read(3, " /snap/chromium/9 ro,nodev,relat"..., 1024) = 72
908 read(3, "", 1024) = 0
908 close(3) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 3
908 mkdirat(3, "run", 0755) = -1 EEXIST (File exists)
908 openat(3, "run", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 5
908 close(3) = 0
908 mkdirat(5, "snapd", 0755) = -1 EEXIST (File exists)
908 openat(5, "snapd", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 3
908 close(5) = 0
908 mkdirat(3, "ns", 0755) = -1 EEXIST (File exists)
908 openat(3, "ns", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 5
908 close(3) = 0
908 close(5) = 0
908 open("/proc/self/mountinfo", O_RDONLY) = 3
908 fstat(3, {st_dev=makedev(0, 4), st_ino=10261670, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=0, st_size=0, st_atime=2017/08/31-15:36:08.132208492, st_mtime=2017/08/31-15:36:08.132208492, st_ctime=2017/08/31-15:36:08.132208492}) = 0
908 read(3, "19 25 0:18 / /sys rw,nosuid,node"..., 1024) = 1024
908 read(3, "emd-cgroups-agent,name=systemd\n3"..., 1024) = 1024
908 read(3, "d,nodev,noexec,relatime shared:2"..., 1024) = 1024
908 read(3, " 25 7:10 / /snap/sunwait/17 ro,n"..., 1024) = 1024
908 read(3, "latime shared:42 - squashfs /dev"..., 1024) = 1024
908 read(3, "ime shared:57 - squashfs /dev/lo"..., 1024) = 1024
908 read(3, "nap/6 ro,nodev,relatime shared:7"..., 1024) = 1024
908 read(3, "/pycharm-community/22 ro,nodev,r"..., 1024) = 1024
908 read(3, "/2312 ro,nodev,relatime shared:9"..., 1024) = 1024
908 read(3, "/snapd/ns rw,nosuid,noexec,relat"..., 1024) = 1024
908 read(3, " /snap/chromium/9 ro,nodev,relat"..., 1024) = 72
908 read(3, "", 1024) = 0
908 close(3) = 0
908 flock(4, LOCK_UN) = 0
908 close(4) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 3
908 mkdirat(3, "run", 0755) = -1 EEXIST (File exists)
908 openat(3, "run", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 4
908 close(3) = 0
908 mkdirat(4, "snapd", 0755) = -1 EEXIST (File exists)
908 openat(4, "snapd", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 3
908 close(4) = 0
908 mkdirat(3, "lock", 0755) = -1 EEXIST (File exists)
908 openat(3, "lock", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 4
908 close(3) = 0
908 close(4) = 0
908 open("/run/snapd/lock", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC|O_PATH) = 3
908 openat(3, "/run/snapd/lock/chromium.lock", O_RDWR|O_CREAT|O_NOFOLLOW|O_CLOEXEC, 0600) = 4
908 rt_sigaction(SIGALRM, {0x406e90, [], SA_RESTORER, 0x7f2d92198390}, NULL, 8) = 0
908 alarm(3) = 0
908 flock(4, LOCK_EX) = 0
908 alarm(0) = 3
908 rt_sigaction(SIGALRM, {SIG_DFL, [], SA_RESTORER, 0x7f2d92198390}, NULL, 8) = 0
908 close(3) = 0
908 open("/run/snapd/ns", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC|O_PATH) = 3
908 openat(3, "chromium.mnt", O_RDONLY|O_CREAT|O_NOFOLLOW|O_CLOEXEC, 0600) = 5
908 fstatfs(5, {f_type="TMPFS_MAGIC", f_bsize=4096, f_blocks=1648213, f_bfree=1631317, f_bavail=1631317, f_files=8241064, f_ffree=8239890, f_fsid={0, 0}, f_namelen=255, f_frsize=4096, f_flags=4138}) = 0
908 eventfd2(0, EFD_CLOEXEC) = 6
908 clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f2d92581a10) = 916
908 unshare(CLONE_NEWNS <unfinished ...>
916 set_robust_list(0x7f2d92581a20, 24) = 0
916 gettid() = 916
916 open("/proc/916/attr/current", O_WRONLY) = 7
916 write(7, "changehat 0000000000000000^mount"..., 57) = 57
916 close(7) = 0
916 prctl(PR_SET_PDEATHSIG, SIGINT) = 0
916 kill(908, SIG_0) = 0
916 fchdir(3) = 0
916 rt_sigaction(SIGALRM, {0x406e90, [], SA_RESTORER, 0x7f2d92198390}, NULL, 8) = 0
916 alarm(3) = 0
916 read(6, <unfinished ...>
908 <... unshare resumed> ) = 0
908 close(5) = 0
908 getcwd("/home/alan", 4096) = 11
908 access("/var/lib/dpkg/status", F_OK) = 0
908 access("/snap/core/current/", F_OK) = 0
908 mkdir("/tmp/snap.rootfs_LRzaJs", 0700) = 0
908 mount("none", "/", NULL, MS_REC|MS_SHARED, NULL) = 0
908 mount("/tmp/snap.rootfs_LRzaJs", "/tmp/snap.rootfs_LRzaJs", NULL, MS_BIND, NULL) = 0
908 mount("none", "/tmp/snap.rootfs_LRzaJs", NULL, MS_UNBINDABLE, NULL) = 0
908 mount("/snap/core/current/", "/tmp/snap.rootfs_LRzaJs", NULL, MS_BIND|MS_REC, NULL) = 0
908 mount("none", "/tmp/snap.rootfs_LRzaJs", NULL, MS_REC|MS_SLAVE, NULL) = 0
908 mount("/dev", "/tmp/snap.rootfs_LRzaJs//dev", NULL, MS_BIND|MS_REC, NULL) = 0
908 mount("none", "/tmp/snap.rootfs_LRzaJs//dev", NULL, MS_REC|MS_SLAVE, NULL) = 0
908 mount("/etc", "/tmp/snap.rootfs_LRzaJs//etc", NULL, MS_BIND|MS_REC, NULL) = 0
908 mount("none", "/tmp/snap.rootfs_LRzaJs//etc", NULL, MS_REC|MS_SLAVE, NULL) = 0
908 mount("/home", "/tmp/snap.rootfs_LRzaJs//home", NULL, MS_BIND|MS_REC, NULL) = 0
908 mount("none", "/tmp/snap.rootfs_LRzaJs//home", NULL, MS_REC|MS_SLAVE, NULL) = 0
908 mount("/root", "/tmp/snap.rootfs_LRzaJs//root", NULL, MS_BIND|MS_REC, NULL) = 0
908 mount("none", "/tmp/snap.rootfs_LRzaJs//root", NULL, MS_REC|MS_SLAVE, NULL) = 0
908 mount("/proc", "/tmp/snap.rootfs_LRzaJs//proc", NULL, MS_BIND|MS_REC, NULL) = 0
908 mount("none", "/tmp/snap.rootfs_LRzaJs//proc", NULL, MS_REC|MS_SLAVE, NULL) = 0
908 mount("/sys", "/tmp/snap.rootfs_LRzaJs//sys", NULL, MS_BIND|MS_REC, NULL) = 0
908 mount("none", "/tmp/snap.rootfs_LRzaJs//sys", NULL, MS_REC|MS_SLAVE, NULL) = 0
908 mount("/tmp", "/tmp/snap.rootfs_LRzaJs//tmp", NULL, MS_BIND|MS_REC, NULL) = 0
908 mount("none", "/tmp/snap.rootfs_LRzaJs//tmp", NULL, MS_REC|MS_SLAVE, NULL) = 0
908 mount("/var/snap", "/tmp/snap.rootfs_LRzaJs//var/snap", NULL, MS_BIND|MS_REC, NULL) = 0
908 mount("none", "/tmp/snap.rootfs_LRzaJs//var/snap", NULL, MS_REC|MS_SLAVE, NULL) = 0
908 mount("/var/lib/snapd", "/tmp/snap.rootfs_LRzaJs//var/lib/snapd", NULL, MS_BIND|MS_REC, NULL) = 0
908 mount("none", "/tmp/snap.rootfs_LRzaJs//var/lib/snapd", NULL, MS_REC|MS_SLAVE, NULL) = 0
908 mount("/var/tmp", "/tmp/snap.rootfs_LRzaJs//var/tmp", NULL, MS_BIND|MS_REC, NULL) = 0
908 mount("none", "/tmp/snap.rootfs_LRzaJs//var/tmp", NULL, MS_REC|MS_SLAVE, NULL) = 0
908 mount("/run", "/tmp/snap.rootfs_LRzaJs//run", NULL, MS_BIND|MS_REC, NULL) = 0
908 mount("none", "/tmp/snap.rootfs_LRzaJs//run", NULL, MS_REC|MS_SLAVE, NULL) = 0
908 mount("/lib/modules", "/tmp/snap.rootfs_LRzaJs//lib/modules", NULL, MS_BIND|MS_REC, NULL) = 0
908 mount("none", "/tmp/snap.rootfs_LRzaJs//lib/modules", NULL, MS_REC|MS_SLAVE, NULL) = 0
908 mount("/usr/src", "/tmp/snap.rootfs_LRzaJs//usr/src", NULL, MS_BIND|MS_REC, NULL) = 0
908 mount("none", "/tmp/snap.rootfs_LRzaJs//usr/src", NULL, MS_REC|MS_SLAVE, NULL) = 0
908 mount("/var/log", "/tmp/snap.rootfs_LRzaJs//var/log", NULL, MS_BIND|MS_REC, NULL) = 0
908 mount("none", "/tmp/snap.rootfs_LRzaJs//var/log", NULL, MS_REC|MS_SLAVE, NULL) = 0
908 mkdir("/media", 0755) = -1 EEXIST (File exists)
908 mount("/media", "/tmp/snap.rootfs_LRzaJs//media", NULL, MS_BIND|MS_REC, NULL) = 0
908 mkdir("/run/netns", 0755) = -1 EEXIST (File exists)
908 mount("/run/netns", "/tmp/snap.rootfs_LRzaJs//run/netns", NULL, MS_BIND|MS_REC, NULL) = 0
908 access("/etc/alternatives", F_OK) = 0
908 mount("/snap/core/current//etc/alternatives", "/tmp/snap.rootfs_LRzaJs/etc/alternatives", NULL, MS_BIND, NULL) = 0
908 mount("none", "/tmp/snap.rootfs_LRzaJs/etc/alternatives", NULL, MS_SLAVE, NULL) = 0
908 access("/etc/ssl", F_OK) = 0
908 mount("/snap/core/current//etc/ssl", "/tmp/snap.rootfs_LRzaJs/etc/ssl", NULL, MS_BIND, NULL) = 0
908 mount("none", "/tmp/snap.rootfs_LRzaJs/etc/ssl", NULL, MS_SLAVE, NULL) = 0
908 access("/etc/nsswitch.conf", F_OK) = 0
908 mount("/snap/core/current//etc/nsswitch.conf", "/tmp/snap.rootfs_LRzaJs/etc/nsswitch.conf", NULL, MS_BIND, NULL) = 0
908 mount("none", "/tmp/snap.rootfs_LRzaJs/etc/nsswitch.conf", NULL, MS_SLAVE, NULL) = 0
908 mount("/snap", "/tmp/snap.rootfs_LRzaJs/snap", NULL, MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 mount("none", "/tmp/snap.rootfs_LRzaJs/snap", NULL, MS_REC|MS_SLAVE, NULL) = 0
908 access("/var/lib/snapd/hostfs", F_OK) = 0
908 stat("/var/lib/snapd/hostfs", {st_dev=makedev(259, 1), st_ino=11012222, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2017/08/30-10:04:55.148336325, st_mtime=2017/07/03-20:01:03.648049959, st_ctime=2017/07/03-20:01:03.648049959}) = 0
908 mount("/tmp/snap.rootfs_LRzaJs//var/lib/snapd/hostfs", "/tmp/snap.rootfs_LRzaJs//var/lib/snapd/hostfs", NULL, MS_BIND, NULL) = 0
908 mount("none", "/tmp/snap.rootfs_LRzaJs//var/lib/snapd/hostfs", NULL, MS_PRIVATE, NULL) = 0
908 open("/sys/module/nvidia/version", O_RDONLY) = 5
908 fstat(5, {st_dev=makedev(0, 18), st_ino=20759, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2017/08/29-00:06:07.007411404, st_mtime=2017/08/29-00:06:07.007411404, st_ctime=2017/08/29-00:06:07.007411404}) = 0
908 read(5, "375.66\n", 4096) = 7
908 close(5) = 0
908 access("/usr/lib/nvidia-375", F_OK) = 0
908 mount("/usr/lib/nvidia-375", "/tmp/snap.rootfs_LRzaJs/var/lib/snapd/lib/gl", NULL, MS_BIND, NULL) = 0
908 pivot_root("/tmp/snap.rootfs_LRzaJs", "/tmp/snap.rootfs_LRzaJs//var/lib/snapd/hostfs") = 0
908 umount2("/var/lib/snapd/hostfs//tmp/snap.rootfs_LRzaJs", 0) = 0
908 rmdir("/tmp/snap.rootfs_LRzaJs") = 0
908 mount("none", "/var/lib/snapd/hostfs", NULL, MS_REC|MS_SLAVE, NULL) = 0
908 umount2("/var/lib/snapd/hostfs/sys", MNT_DETACH|UMOUNT_NOFOLLOW) = 0
908 umount2("/var/lib/snapd/hostfs/dev", MNT_DETACH|UMOUNT_NOFOLLOW) = 0
908 umount2("/var/lib/snapd/hostfs/proc", MNT_DETACH|UMOUNT_NOFOLLOW) = 0
908 getuid() = 1000
908 getgid() = 1000
908 mkdir("/tmp/snap.1000_chromium_fRWkWz", 0700) = 0
908 umask(0) = 022
908 mkdir("/tmp/snap.1000_chromium_fRWkWz/tmp", 01777) = 0
908 umask(022) = 0
908 getcwd("/var/lib/snapd/hostfs/home/alan", 4096) = 32
908 chdir("/") = 0
908 mount("/tmp/snap.1000_chromium_fRWkWz/tmp", "/tmp", NULL, MS_BIND, NULL) = 0
908 mount("none", "/tmp", NULL, MS_PRIVATE, NULL) = 0
908 chown("/tmp/", 1000, 1000) = 0
908 chdir("/var/lib/snapd/hostfs/home/alan") = 0
908 stat("/dev/pts/ptmx", {st_dev=makedev(0, 19), st_ino=2, st_mode=S_IFCHR, st_nlink=1, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=0, st_rdev=makedev(5, 2), st_atime=2017/08/26-10:47:00.508000000, st_mtime=2017/08/26-10:47:00.508000000, st_ctime=2017/08/26-10:47:00.508000000}) = 0
908 stat("/dev/ptmx", {st_dev=makedev(0, 6), st_ino=1110, st_mode=S_IFCHR|0666, st_nlink=1, st_uid=165536, st_gid=165536, st_blksize=4096, st_blocks=0, st_rdev=makedev(5, 2), st_atime=2017/08/31-15:36:08.212673764, st_mtime=2017/08/31-15:36:08.212673764, st_ctime=2017/08/29-00:00:53.387832989}) = 0
908 mount("devpts", "/dev/pts", "devpts", MS_MGC_VAL, "newinstance,ptmxmode=0666,mode=0"...) = 0
908 mount("/dev/pts/ptmx", "/dev/ptmx", 0x40c631, MS_BIND, NULL) = 0
908 mkdir("/tmp/snapd.quirks_qLnC9G", 0700) = 0
908 mount("/var/lib/snapd", "/tmp/snapd.quirks_qLnC9G", NULL, MS_MOVE, NULL) = 0
908 access("/snap/core/current/", F_OK) = 0
908 mount("none", "/var/lib", "tmpfs", MS_NOSUID|MS_NODEV, NULL) = 0
908 stat("/snap/core/current//var/lib", {st_dev=makedev(7, 15), st_ino=13547, st_mode=S_IFDIR|0755, st_nlink=27, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=0, st_size=395, st_atime=2017/07/20-13:45:34, st_mtime=2017/07/20-13:45:34, st_ctime=2017/07/20-13:45:34}) = 0
908 chown("/var/lib", 0, 0) = 0
908 chmod("/var/lib", 040755) = 0
908 open("/snap/core/current//var/lib", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 5
908 fstat(5, {st_dev=makedev(7, 15), st_ino=13547, st_mode=S_IFDIR|0755, st_nlink=27, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=0, st_size=395, st_atime=2017/07/20-13:45:34, st_mtime=2017/07/20-13:45:34, st_ctime=2017/07/20-13:45:34}) = 0
908 getdents(5, [{d_ino=13547, d_off=1, d_reclen=24, d_name=".", d_type=DT_DIR}, {d_ino=13536, d_off=3, d_reclen=24, d_name="..", d_type=DT_DIR}, {d_ino=13548, d_off=31, d_reclen=32, d_name="apparmor", d_type=DT_DIR}, {d_ino=13551, d_off=46, d_reclen=32, d_name="classic", d_type=DT_DIR}, {d_ino=13554, d_off=59, d_reclen=32, d_name="cloud", d_type=DT_DIR}, {d_ino=13555, d_off=79, d_reclen=32, d_name="console-conf", d_type=DT_DIR}, {d_ino=13556, d_off=91, d_reclen=24, d_name="dbus", d_type=DT_DIR}, {d_ino=13557, d_off=103, d_reclen=24, d_name="dhcp", d_type=DT_DIR}, {d_ino=13558, d_off=121, d_reclen=32, d_name="extrausers", d_type=DT_DIR}, {d_ino=13565, d_off=144, d_reclen=40, d_name="initramfs-tools", d_type=DT_DIR}, {d_ino=13568, d_off=163, d_reclen=32, d_name="initscripts", d_type=DT_DIR}, {d_ino=13569, d_off=178, d_reclen=32, d_name="insserv", d_type=DT_DIR}, {d_ino=13570, d_off=195, d_reclen=32, d_name="logrotate", d_type=DT_DIR}, {d_ino=13571, d_off=211, d_reclen=32, d_name="machines", d_type=DT_DIR}, {d_ino=13572, d_off=223, d_reclen=24, d_name="misc", d_type=DT_DIR}, {d_ino=13573, d_off=234, d_reclen=24, d_name="pam", d_type=DT_DIR}, {d_ino=13580, d_off=248, d_reclen=32, d_name="python", d_type=DT_DIR}, {d_ino=13582, d_off=266, d_reclen=32, d_name="resolvconf", d_type=DT_DIR}, {d_ino=13584, d_off=279, d_reclen=32, d_name="snapd", d_type=DT_DIR}, {d_ino=13595, d_off=291, d_reclen=24, d_name="sudo", d_type=DT_DIR}, {d_ino=13597, d_off=306, d_reclen=32, d_name="systemd", d_type=DT_DIR}, {d_ino=13653, d_off=324, d_reclen=32, d_name="ubuntu-fan", d_type=DT_DIR}, {d_ino=13656, d_off=335, d_reclen=24, d_name="ucf", d_type=DT_DIR}, {d_ino=13663, d_off=354, d_reclen=32, d_name="update-rc.d", d_type=DT_DIR}, {d_ino=13664, d_off=369, d_reclen=32, d_name="urandom", d_type=DT_DIR}, {d_ino=13665, d_off=380, d_reclen=24, d_name="vim", d_type=DT_DIR}, {d_ino=13667, d_off=395, d_reclen=32, d_name="waagent", d_type=DT_DIR}], 32768) = 800
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "apparmor", 0755) = 0
908 openat(7, "apparmor", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/apparmor", "/var/lib/apparmor", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "classic", 0755) = 0
908 openat(7, "classic", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/classic", "/var/lib/classic", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "cloud", 0755) = 0
908 openat(7, "cloud", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/cloud", "/var/lib/cloud", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "console-conf", 0755) = 0
908 openat(7, "console-conf", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/console-conf", "/var/lib/console-conf", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "dbus", 0755) = 0
908 openat(7, "dbus", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/dbus", "/var/lib/dbus", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "dhcp", 0755) = 0
908 openat(7, "dhcp", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/dhcp", "/var/lib/dhcp", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "extrausers", 0755) = 0
908 openat(7, "extrausers", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/extrausers", "/var/lib/extrausers", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "initramfs-tools", 0755) = 0
908 openat(7, "initramfs-tools", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/initramfs-tools", "/var/lib/initramfs-tools", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "initscripts", 0755) = 0
908 openat(7, "initscripts", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/initscripts", "/var/lib/initscripts", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "insserv", 0755) = 0
908 openat(7, "insserv", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/insserv", "/var/lib/insserv", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "logrotate", 0755) = 0
908 openat(7, "logrotate", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/logrotate", "/var/lib/logrotate", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "machines", 0755) = 0
908 openat(7, "machines", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/machines", "/var/lib/machines", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "misc", 0755) = 0
908 openat(7, "misc", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/misc", "/var/lib/misc", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "pam", 0755) = 0
908 openat(7, "pam", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/pam", "/var/lib/pam", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "python", 0755) = 0
908 openat(7, "python", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/python", "/var/lib/python", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "resolvconf", 0755) = 0
908 openat(7, "resolvconf", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/resolvconf", "/var/lib/resolvconf", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "snapd", 0755) = 0
908 openat(7, "snapd", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/snapd", "/var/lib/snapd", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "sudo", 0755) = 0
908 openat(7, "sudo", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/sudo", "/var/lib/sudo", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "systemd", 0755) = 0
908 openat(7, "systemd", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/systemd", "/var/lib/systemd", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "ubuntu-fan", 0755) = 0
908 openat(7, "ubuntu-fan", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/ubuntu-fan", "/var/lib/ubuntu-fan", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "ucf", 0755) = 0
908 openat(7, "ucf", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/ucf", "/var/lib/ucf", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "update-rc.d", 0755) = 0
908 openat(7, "update-rc.d", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/update-rc.d", "/var/lib/update-rc.d", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "urandom", 0755) = 0
908 openat(7, "urandom", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/urandom", "/var/lib/urandom", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "vim", 0755) = 0
908 openat(7, "vim", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/vim", "/var/lib/vim", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 mkdirat(7, "var", 0755) = -1 EEXIST (File exists)
908 openat(7, "var", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 mkdirat(8, "lib", 0755) = -1 EEXIST (File exists)
908 openat(8, "lib", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 7
908 close(8) = 0
908 mkdirat(7, "waagent", 0755) = 0
908 openat(7, "waagent", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 8
908 close(7) = 0
908 close(8) = 0
908 mount("/snap/core/current//var/lib/waagent", "/var/lib/waagent", NULL, MS_RDONLY|MS_NOSUID|MS_NODEV|MS_BIND|MS_REC|MS_SLAVE, NULL) = 0
908 getdents(5, [], 32768) = 0
908 close(5) = 0
908 umount2("/var/lib/snapd", 0) = 0
908 mount("/tmp/snapd.quirks_qLnC9G", "/var/lib/snapd", NULL, MS_MOVE, NULL) = 0
908 rmdir("/tmp/snapd.quirks_qLnC9G") = 0
908 access("/var/lib/snapd/hostfs/var/lib/lxd", F_OK) = -1 ENOENT (No such file or directory)
908 open("/run/snapd/ns/snap.chromium.fstab", O_WRONLY|O_CREAT|O_TRUNC|O_CLOEXEC, 0666) = 5
908 open("/var/lib/snapd/mount/snap.chromium.fstab", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
908 close(5) = 0
908 chdir("/home/alan") = 0
908 write(6, "\1\0\0\0\0\0\0\0", 8) = 8
916 <... read resumed> "\1\0\0\0\0\0\0\0", 8) = 8
908 wait4(916, <unfinished ...>
916 alarm(0) = 3
916 rt_sigaction(SIGALRM, {SIG_DFL, [], SA_RESTORER, 0x7f2d92198390}, NULL, 8) = 0
916 mount("/proc/908/ns/mnt", "chromium.mnt", NULL, MS_BIND, NULL) = 0
916 exit_group(0) = ?
916 +++ exited with 0 +++
908 <... wait4 resumed> [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 916
908 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=916, si_uid=1000, si_status=0, si_utime=0, si_stime=0} ---
908 close(3) = 0
908 close(6) = 0
908 stat("/var/lib", {st_dev=makedev(0, 126), st_ino=10256098, st_mode=S_IFDIR|0755, st_nlink=27, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=540, st_atime=2017/08/31-15:36:08.220207342, st_mtime=2017/08/31-15:36:08.224207289, st_ctime=2017/08/31-15:36:08.224207289}) = 0
908 flock(4, LOCK_UN) = 0
908 close(4) = 0
908 open("/etc/udev/udev.conf", O_RDONLY|O_CLOEXEC) = 3
908 fstat(3, {st_dev=makedev(259, 1), st_ino=27528010, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=153, st_atime=2017/08/31-10:57:35.047241052, st_mtime=2016/04/12-11:34:03, st_ctime=2017/07/03-17:31:00.104067960}) = 0
908 read(3, "# see udev.conf(5) for details\n#"..., 4096) = 153
908 read(3, "", 4096) = 0
908 close(3) = 0
908 gettid() = 908
908 getrandom(">m-\276\277\231\256!eLJ\374\32T\n\321", 16, GRND_NONBLOCK) = 16
908 open("/run/udev/tags/snap_chromium_chromium", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
908 setresgid(-1, 1000, -1) = 0
908 setresuid(-1, 1000, -1) = 0
908 geteuid() = 1000
908 getegid() = 1000
908 open("/", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 3
908 mkdirat(3, "home", 0755) = -1 EEXIST (File exists)
908 openat(3, "home", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 4
908 close(3) = 0
908 mkdirat(4, "alan", 0755) = -1 EEXIST (File exists)
908 openat(4, "alan", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 3
908 close(4) = 0
908 mkdirat(3, "snap", 0755) = -1 EEXIST (File exists)
908 openat(3, "snap", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 4
908 close(3) = 0
908 mkdirat(4, "chromium", 0755) = -1 EEXIST (File exists)
908 openat(4, "chromium", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 3
908 close(4) = 0
908 mkdirat(3, "9", 0755) = -1 EEXIST (File exists)
908 openat(3, "9", O_RDONLY|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 4
908 close(3) = 0
908 close(4) = 0
908 gettid() = 908
908 open("/proc/908/attr/exec", O_WRONLY) = 3
908 write(3, "exec snap.chromium.chromium", 27) = 27
908 close(3) = 0
908 access("/var/lib/snapd/seccomp/bpf//snap.chromium.chromium.bin", F_OK) = 0
908 stat("/", {st_dev=makedev(7, 15), st_ino=13690, st_mode=S_IFDIR|0755, st_nlink=24, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=0, st_size=321, st_atime=2017/07/20-13:45:34, st_mtime=2017/07/20-13:45:34, st_ctime=2017/07/20-13:45:34}) = 0
908 stat("/var", {st_dev=makedev(7, 15), st_ino=13536, st_mode=S_IFDIR|0755, st_nlink=12, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=0, st_size=172, st_atime=2017/07/20-13:45:35, st_mtime=2017/07/20-13:45:35, st_ctime=2017/07/20-13:45:35}) = 0
908 stat("/var/lib", {st_dev=makedev(0, 126), st_ino=10256098, st_mode=S_IFDIR|0755, st_nlink=27, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=540, st_atime=2017/08/31-15:36:08.220207342, st_mtime=2017/08/31-15:36:08.224207289, st_ctime=2017/08/31-15:36:08.224207289}) = 0
908 stat("/var/lib/snapd", {st_dev=makedev(259, 1), st_ino=9306806, st_mode=S_IFDIR|0755, st_nlink=16, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2017/08/31-08:18:30.531389249, st_mtime=2017/08/31-15:35:37.024618170, st_ctime=2017/08/31-15:35:37.024618170}) = 0
908 stat("/var/lib/snapd/seccomp", {st_dev=makedev(259, 1), st_ino=11012213, st_mode=S_IFDIR|0755, st_nlink=4, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2017/08/30-10:04:55.148336325, st_mtime=2017/07/17-10:35:30.483988408, st_ctime=2017/07/17-10:35:30.483988408}) = 0
908 stat("/var/lib/snapd/seccomp/bpf", {st_dev=makedev(259, 1), st_ino=11010060, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=24, st_size=12288, st_atime=2017/08/31-15:35:36.688622629, st_mtime=2017/08/31-15:35:36.704622417, st_ctime=2017/08/31-15:35:36.704622417}) = 0
908 stat("/var/lib/snapd/seccomp/bpf/snap.chromium.chromium.bin", {st_dev=makedev(259, 1), st_ino=11010122, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=56, st_atime=2017/08/31-15:35:36.512624965, st_mtime=2017/08/31-15:35:36.512624965, st_ctime=2017/08/31-15:35:36.520624859}) = 0
908 open("/var/lib/snapd/seccomp/bpf//snap.chromium.chromium.bin", O_RDONLY) = 3
908 fstat(3, {st_dev=makedev(259, 1), st_ino=11010122, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=56, st_atime=2017/08/31-15:35:36.512624965, st_mtime=2017/08/31-15:35:36.512624965, st_ctime=2017/08/31-15:35:36.520624859}) = 0
908 read(3, " \0\0\0\4\0\0\0\25\0\0\2>\0\0\300 \0\0\0\0\0\0\0005\0\2\1\0\0\0@"..., 32768) = 56
908 read(3, "", 28672) = 0
908 close(3) = 0
908 getresuid([1000], [1000], [0]) = 0
908 setresuid(-1, 0, -1) = 0
908 geteuid() = 0
908 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, [BPF_STMT(BPF_LD | BPF_W | BPF_ABS, 0x4), BPF_JUMP(BPF_JMP | BPF_K | BPF_JEQ, 0xc000003e, 0, 0x2), BPF_STMT(BPF_LD | BPF_W | BPF_ABS, 0), BPF_JUMP(BPF_JMP | BPF_K | BPF_JGE, 0x40000000, 0x2, 0x1), BPF_JUMP(BPF_JMP | BPF_K | BPF_JEQ, 0x40000003, 0, 0x1), BPF_STMT(BPF_RET | BPF_K, SECCOMP_RET_ALLOW), BPF_STMT(BPF_RET | BPF_K, SECCOMP_RET_KILL)]) = 0
908 geteuid() = 0
908 getuid() = 1000
908 setresuid(-1, 1000, -1) = 0
908 geteuid() = 1000
908 geteuid() = 1000
908 execve("/usr/lib/snapd/snap-exec", ["/usr/lib/snapd/snap-exec", "chromium"], ["LANG=en_GB.UTF-8", "DISPLAY=:0", "USER=root", "SUDO_GID=1000", "TERM=xterm-256color", "LANGUAGE=en_GB:en", "SNAP_VERSION=60.0.3112.101", "HOME=/home/alan/snap/chromium/9", "USERNAME=root", "SUDO_COMMAND=/usr/bin/strace -u "..., "SNAP_ARCH=amd64", "LS_COLORS=rs=0:di=01;34:ln=01;36"..., "SUDO_UID=1000", "SNAP_REEXEC=", "SNAP_USER_DATA=/home/alan/snap/c"..., "XDG_RUNTIME_DIR=/run/user/1000/s"..., "PATH=/usr/local/sbin:/usr/local/"..., "XAUTHORITY=/home/alan/.Xauthorit"..., "SNAP_LIBRARY_PATH=/var/lib/snapd"..., "SNAP_COMMON=/var/snap/chromium/c"..., "SNAP_USER_COMMON=/home/alan/snap"..., "MAIL=/var/mail/root", "LOGNAME=root", "SHELL=/bin/bash", "SNAP_NAME=chromium", "SUDO_USER=alan", "SNAP=/snap/chromium/9", "SNAP_DATA=/var/snap/chromium/9", "SNAP_REVISION=9", "TMPDIR=/tmp", "TEMPDIR=/tmp", "SNAP_COOKIE=fBxqyh49fclf399JdVF1"..., "SNAP_CONTEXT=fBxqyh49fclf399JdVF"...]) = 0
908 brk(NULL) = 0x55f4c93df000
908 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
908 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0da6db5000
908 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
908 open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
908 fstat(3, {st_dev=makedev(259, 1), st_ino=27528670, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=272, st_size=136910, st_atime=2017/08/31-06:31:00.929081158, st_mtime=2017/08/30-06:30:39.335985220, st_ctime=2017/08/30-06:30:39.347985222}) = 0
908 mmap(NULL, 136910, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f0da6d93000
908 close(3) = 0
908 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
908 open("/lib/x86_64-linux-gnu/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
908 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260`\0\0\0\0\0\0"..., 832) = 832
908 fstat(3, {st_dev=makedev(7, 15), st_ino=2372, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=271, st_size=138696, st_atime=2017/06/16-21:57:21, st_mtime=2017/06/16-21:57:21, st_ctime=2017/06/16-21:57:21}) = 0
908 mmap(NULL, 2212904, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0da6975000
908 mprotect(0x7f0da698d000, 2093056, PROT_NONE) = 0
908 mmap(0x7f0da6b8c000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f0da6b8c000
908 mmap(0x7f0da6b8e000, 13352, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f0da6b8e000
908 close(3) = 0
908 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
908 open("/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
908 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\t\2\0\0\0\0\0"..., 832) = 832
908 fstat(3, {st_dev=makedev(7, 15), st_ino=2256, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=3651, st_size=1868984, st_atime=2017/06/16-21:57:16, st_mtime=2017/06/16-21:57:16, st_ctime=2017/06/16-21:57:16}) = 0
908 mmap(NULL, 3971488, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0da65ab000
908 mprotect(0x7f0da676b000, 2097152, PROT_NONE) = 0
908 mmap(0x7f0da696b000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c0000) = 0x7f0da696b000
908 mmap(0x7f0da6971000, 14752, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f0da6971000
908 close(3) = 0
908 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0da6d92000
908 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0da6d91000
908 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0da6d90000
908 arch_prctl(ARCH_SET_FS, 0x7f0da6d91700) = 0
908 mprotect(0x7f0da696b000, 16384, PROT_READ) = 0
908 mprotect(0x7f0da6b8c000, 4096, PROT_READ) = 0
908 mprotect(0x55f4c8c04000, 1744896, PROT_READ) = 0
908 mprotect(0x7f0da6db7000, 4096, PROT_READ) = 0
908 munmap(0x7f0da6d93000, 136910) = 0
908 set_tid_address(0x7f0da6d919d0) = 908
908 set_robust_list(0x7f0da6d919e0, 24) = 0
908 rt_sigaction(SIGRTMIN, {0x7f0da697ab50, [], SA_RESTORER|SA_SIGINFO, 0x7f0da6986390}, NULL, 8) = 0
908 rt_sigaction(SIGRT_1, {0x7f0da697abe0, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7f0da6986390}, NULL, 8) = 0
908 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
908 getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
908 brk(NULL) = 0x55f4c93df000
908 brk(0x55f4c9400000) = 0x55f4c9400000
908 sched_getaffinity(0, 8192, [ff, 0, 0, 0, 0, 0, 0, 0]) = 8
908 mmap(0xc000000000, 65536, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xc000000000
908 munmap(0xc000000000, 65536) = 0
908 mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0da6d50000
908 mmap(0xc820000000, 1048576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xc820000000
908 mmap(0xc81fff8000, 32768, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xc81fff8000
908 mmap(0xc000000000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xc000000000
908 mmap(NULL, 65536, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0da6da5000
908 rt_sigprocmask(SIG_SETMASK, NULL, [], 8) = 0
908 sigaltstack(NULL, {ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}) = 0
908 sigaltstack({ss_sp=0xc820002000, ss_flags=0, ss_size=32672}, NULL) = 0
908 gettid() = 908
908 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
908 rt_sigaction(SIGHUP, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGHUP, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGINT, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGINT, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGQUIT, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGQUIT, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGILL, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGILL, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGTRAP, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGTRAP, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGABRT, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGABRT, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGBUS, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGBUS, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGFPE, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGFPE, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGUSR1, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGUSR1, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGSEGV, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGSEGV, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGUSR2, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGUSR2, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGPIPE, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGPIPE, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGALRM, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGALRM, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGTERM, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGTERM, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGSTKFLT, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGSTKFLT, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGCHLD, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGCHLD, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGURG, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGURG, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGXCPU, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGXCPU, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGXFSZ, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGXFSZ, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGVTALRM, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGVTALRM, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGPROF, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGPROF, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGWINCH, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGWINCH, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGIO, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGIO, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGPWR, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGPWR, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGSYS, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGSYS, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRTMIN, NULL, {0x7f0da697ab50, [], SA_RESTORER|SA_SIGINFO, 0x7f0da6986390}, 8) = 0
908 rt_sigaction(SIGRTMIN, NULL, {0x7f0da697ab50, [], SA_RESTORER|SA_SIGINFO, 0x7f0da6986390}, 8) = 0
908 rt_sigaction(SIGRTMIN, {0x7f0da697ab50, [], SA_RESTORER|SA_STACK|SA_SIGINFO, 0x7f0da6986390}, NULL, 8) = 0
908 rt_sigaction(SIGRT_1, NULL, {0x7f0da697abe0, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7f0da6986390}, 8) = 0
908 rt_sigaction(SIGRT_1, NULL, {0x7f0da697abe0, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7f0da6986390}, 8) = 0
908 rt_sigaction(SIGRT_1, {0x7f0da697abe0, [], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x7f0da6986390}, NULL, 8) = 0
908 rt_sigaction(SIGRT_2, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_2, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_3, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_3, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_4, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_4, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_5, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_5, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_6, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_6, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_7, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_7, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_8, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_8, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_9, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_9, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_10, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_10, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_11, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_11, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_12, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_12, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_13, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_13, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_14, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_14, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_15, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_15, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_16, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_16, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_17, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_17, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_18, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_18, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_19, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_19, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_20, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_20, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_21, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_21, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_22, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_22, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_23, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_23, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_24, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_24, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_25, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_25, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_26, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_26, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_27, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_27, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_28, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_28, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_29, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_29, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_30, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_30, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_31, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_31, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigaction(SIGRT_32, NULL, {SIG_DFL, [], 0}, 8) = 0
908 rt_sigaction(SIGRT_32, {0x55f4c88bea60, ~[], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x55f4c88bea80}, NULL, 8) = 0
908 rt_sigprocmask(SIG_SETMASK, ~[RTMIN RT_1], [], 8) = 0
908 mmap(NULL, 8392704, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f0da5daa000
908 mprotect(0x7f0da5daa000, 4096, PROT_NONE) = 0
908 clone(child_stack=0x7f0da65a9ff0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f0da65aa9d0, tls=0x7f0da65aa700, child_tidptr=0x7f0da65aa9d0) = 917
917 set_robust_list(0x7f0da65aa9e0, 24 <unfinished ...>
908 rt_sigprocmask(SIG_SETMASK, [], <unfinished ...>
917 <... set_robust_list resumed> ) = 0
908 <... rt_sigprocmask resumed> NULL, 8) = 0
917 sigaltstack(NULL, <unfinished ...>
908 mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 <unfinished ...>
917 <... sigaltstack resumed> {ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}) = 0
908 <... mmap resumed> ) = 0x7f0da6d10000
917 sigaltstack({ss_sp=0xc820042000, ss_flags=0, ss_size=32672}, NULL) = 0
917 gettid() = 917
917 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
908 rt_sigprocmask(SIG_SETMASK, ~[RTMIN RT_1], [], 8) = 0
908 mmap(NULL, 8392704, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f0da55a9000
908 mprotect(0x7f0da55a9000, 4096, PROT_NONE) = 0
908 clone(child_stack=0x7f0da5da8ff0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f0da5da99d0, tls=0x7f0da5da9700, child_tidptr=0x7f0da5da99d0) = 918
908 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
908 rt_sigprocmask(SIG_SETMASK, ~[RTMIN RT_1], [], 8) = 0
908 mmap(NULL, 8392704, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f0da4da8000
908 mprotect(0x7f0da4da8000, 4096, PROT_NONE) = 0
908 clone( <unfinished ...>
919 set_robust_list(0x7f0da55a89e0, 24 <unfinished ...>
908 <... clone resumed> child_stack=0x7f0da55a7ff0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f0da55a89d0, tls=0x7f0da55a8700, child_tidptr=0x7f0da55a89d0) = 919
919 <... set_robust_list resumed> ) = 0
908 rt_sigprocmask(SIG_SETMASK, [], <unfinished ...>
919 sigaltstack(NULL, {ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}) = 0
919 sigaltstack({ss_sp=0xc82005a000, ss_flags=0, ss_size=32672}, <unfinished ...>
908 <... rt_sigprocmask resumed> NULL, 8) = 0
919 <... sigaltstack resumed> NULL) = 0
908 futex(0x55f4c8dc5e28, FUTEX_WAIT, 0, NULL <unfinished ...>
919 gettid() = 919
919 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
919 futex(0x55f4c8dc5e28, FUTEX_WAKE, 1) = 1
919 futex(0xc820030d08, FUTEX_WAIT, 0, NULL <unfinished ...>
908 <... futex resumed> ) = 0
908 futex(0xc820030d08, FUTEX_WAKE, 1) = 1
908 futex(0x55f4c8dc5e28, FUTEX_WAIT, 0, NULL <unfinished ...>
919 <... futex resumed> ) = 0
919 futex(0x55f4c8dc5e28, FUTEX_WAKE, 1) = 1
908 <... futex resumed> ) = 0
919 futex(0xc820030d08, FUTEX_WAIT, 0, NULL <unfinished ...>
908 openat(AT_FDCWD, "/etc/os-release", O_RDONLY|O_CLOEXEC) = 3
908 read(3, "NAME=\"Ubuntu Core\"\nVERSION=\"16\"\n"..., 4096) = 179
908 read(3, "", 3917) = 0
908 openat(AT_FDCWD, "/snap/chromium/9/meta/snap.yaml", O_RDONLY|O_CLOEXEC) = 4
908 fstat(4, {st_dev=makedev(7, 63), st_ino=241, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=2, st_size=696, st_atime=2017/08/17-13:15:30, st_mtime=2017/08/17-13:15:30, st_ctime=2017/08/17-13:15:30}) = 0
908 read(4, "apps:\n chromium:\n command: c"..., 1208) = 696
908 read(4, "", 512) = 0
908 close(4) = 0
908 stat("/var/lib/snapd/snaps/chromium_9.snap", {st_dev=makedev(259, 1), st_ino=9306153, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=477416, st_size=244436992, st_atime=2017/08/31-15:35:33.668662741, st_mtime=2017/08/31-15:35:33.396666357, st_ctime=2017/08/31-15:35:33.432665879}) = 0
908 stat("/snap/chromium/9/meta/hooks", 0xc8200b6378) = -1 ENOENT (No such file or directory)
908 execve("/snap/chromium/9/command-chromium.wrapper", ["/snap/chromium/9/command-chromiu"...], ["LANG=en_GB.UTF-8", "DISPLAY=:0", "USER=root", "SUDO_GID=1000", "TERM=xterm-256color", "LANGUAGE=en_GB:en", "SNAP_VERSION=60.0.3112.101", "HOME=/home/alan/snap/chromium/9", "USERNAME=root", "SUDO_COMMAND=/usr/bin/strace -u "..., "SNAP_ARCH=amd64", "LS_COLORS=rs=0:di=01;34:ln=01;36"..., "SUDO_UID=1000", "SNAP_REEXEC=", "SNAP_USER_DATA=/home/alan/snap/c"..., "XDG_RUNTIME_DIR=/run/user/1000/s"..., "PATH=/usr/local/sbin:/usr/local/"..., "XAUTHORITY=/home/alan/.Xauthorit"..., "SNAP_LIBRARY_PATH=/var/lib/snapd"..., "SNAP_COMMON=/var/snap/chromium/c"..., "SNAP_USER_COMMON=/home/alan/snap"..., "MAIL=/var/mail/root", "LOGNAME=root", "SHELL=/bin/bash", "SNAP_NAME=chromium", "SUDO_USER=alan", "SNAP=/snap/chromium/9", "SNAP_DATA=/var/snap/chromium/9", "SNAP_REVISION=9", "TMPDIR=/tmp", "TEMPDIR=/tmp", "SNAP_COOKIE=fBxqyh49fclf399JdVF1"..., "SNAP_CONTEXT=fBxqyh49fclf399JdVF"...] <unfinished ...>
918 set_robust_list(0x7f0da5da99e0, 24) = 0
918 sigaltstack(NULL,
|