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 | 2906 execve("/usr/bin/ubuntu-core-launcher", ["/usr/bin/ubuntu-core-launcher", "spreed-webrtc.sideload", "spreed-webrtc.sideload_spreed-webrtc_0.0.1", "/apps/spreed-webrtc.sideload/0.0.1/bin/start.wrapper"], [/* 19 vars */]) = 0
2906 brk(0) = 0x24000
2906 uname({sys="Linux", node="odroid", ...}) = 0
2906 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2906 mmap2(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6f46000
2906 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
2906 open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
2906 fstat64(3, {st_mode=S_IFREG|0644, st_size=14802, ...}) = 0
2906 mmap2(NULL, 14802, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6f42000
2906 close(3) = 0
2906 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2906 open("/lib/arm-linux-gnueabihf/libapparmor.so.1", O_RDONLY|O_CLOEXEC) = 3
2906 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0T\20\0\0004\0\0\0@\203\0\0\2\4\0\0054\0 \0\6\0(\0\32\0\31\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\304|\0\0\304|\0\0\5\0\0\0\0\0\1\0\1\0\0\0\354~\0\0\354~\1\0\354~\1\0\374\2\0\0\30\3\0\0\6\0\0\0\0\0\1\0\2\0\0\0\370~\0\0\370~\1\0\370~\1\0\10\1\0\0\10\1\0\0\6\0\0\0\4\0\0\0\4\0\0\0\364\0\0\0\364\0\0\0\364\0\0\0$\0\0\0$\0\0\0\4\0\0\0\4\0\0\0Q\345td\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\20\0\0\0R\345td\354~\0\0\354~\1\0\354~\1\0\24\1\0\0\24\1\0\0\4\0\0\0\1\0\0\0\4\0\0\0\24\0\0\0\3\0\0\0GNU\0W\316\343\264w\240l\243\34J\r\332\312\304}$\241\251u\352\21\0\0\0003\0\0\0\4\0\0\0\7\0\0\0\f\20\10\20\250\0`bP\21\0JD-\355\3153\0\0\0006\0\0\0008\0\0\0:\0\0\0;\0\0\0<\0\0\0>\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0A\0\0\0B\0\0\0\0\0\0\0E\0\0\0H\0\0\0\0\0\0\0I\0\0\0\34\201-W^\346\34\342\245\261D\250\246\216f\250\247\216f\250\276\254\334\206s\201@\315\365\351Ht\373=E\312\352\33\304\365g\344\271\"\376\365\356\334~,\365C[\364\335\223\215)\252\230z\310\361\345l\v\362\301{\310\361\345\2!>3\264\361\356\334YR\316\370\267\361\356\334ICT\374\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0<\16\0\0\0\0\0\0\3\0\n\0\0\0\0\0\364~\1\0", 512) = 512
2906 lseek(3, 33600, SEEK_SET) = 33600
2906 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\7\0\0\0\2\0\0\0\364\0\0\0\364\0\0\0$\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\36\0\0\0\366\377\377o\2\0\0\0\30\1\0\0\30\1\0\0\300\0\0\0\3\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0(\0\0\0\v\0\0\0\2\0\0\0\330\1\0\0\330\1\0\0\240\4\0\0\4\0\0\0\3\0\0\0\4\0\0\0\20\0\0\0000\0\0\0\3\0\0\0\2\0\0\0x\6\0\0x\6\0\0Y\3\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0008\0\0\0\377\377\377o\2\0\0\0\322\t\0\0\322\t\0\0\224\0\0\0\3\0\0\0\0\0\0\0\2\0\0\0\2\0\0\0E\0\0\0\375\377\377o\2\0\0\0h\n\0\0h\n\0\0\244\0\0\0\4\0\0\0\5\0\0\0\4\0\0\0\0\0\0\0T\0\0\0\376\377\377o\2\0\0\0\f\v\0\0\f\v\0\0p\0\0\0\4\0\0\0\3\0\0\0\4\0\0\0\0\0\0\0c\0\0\0\t\0\0\0\2\0\0\0|\v\0\0|\v\0\0x\1\0\0\3\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0l\0\0\0\t\0\0\0B\0\0\0\364\f\0\0\364\f\0\0H\1\0\0\3\0\0\0\v\0\0\0\4\0\0\0\10\0\0\0u\0\0\0\1\0\0\0\6\0\0\0<\16\0\0<\16\0\0\f\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0p\0\0\0\1\0\0\0\6\0\0\0H\16\0\0H\16\0\0\f\2\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0{\0\0\0\1\0\0\0\6\0\0\0T\20\0\0T\20\0\0\210.\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\201\0\0\0\1\0\0\0\6\0\0\0\334>\0\0\334>\0\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\207\0\0\0\1\0\0\0\2\0\0\0\344>\0\0\344>\0\0\334=\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\217\0\0\0\1\0\0\0\2\0\0\0\300|\0\0\300|\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\231\0\0\0\16\0\0\0\3\0\0\0\354~\1\0\354~\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\245\0\0\0\17\0\0\0\3\0\0\0\360~\1\0\360~\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\261\0\0\0\1\0\0\0\3\0\0\0\364~\1\0\364~\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\266\0\0\0\6\0\0\0\3\0\0\0\370~\1\0\370~\0\0\10\1\0\0\4\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0\277\0\0\0\1\0\0\0\3\0\0\0\0\200\1\0\0\200\0\0\344\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\304\0\0\0\1\0\0\0\3\0\0\0\344\200\1\0\344\200\0\0\4\1\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\312\0\0\0\10\0\0\0\3\0\0\0\350\201\1\0\350\201\0\0\34\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\317\0\0\0\3\0\0p\0\0\0\0\0\0\0\0\350\201\0\0003\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\337\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\33\202\0\0004\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0"..., 1040) = 1040
2906 lseek(3, 33256, SEEK_SET) = 33256
2906 read(3, "A2\0\0\0aeabi\0\1(\0\0\0\0057-A\0\6\n\7A\10\1\t\2\n\4\22\4\24\1\25\1\27\3\30\1\31\1\32\2\33\3\34\1\"\1", 51) = 51
2906 fstat64(3, {st_mode=S_IFREG|0644, st_size=34640, ...}) = 0
2906 mmap2(NULL, 98820, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb6f09000
2906 mprotect(0xb6f11000, 61440, PROT_NONE) = 0
2906 mmap2(0xb6f20000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0xb6f20000
2906 close(3) = 0
2906 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2906 open("/usr/lib/arm-linux-gnueabihf/libseccomp.so.2", O_RDONLY|O_CLOEXEC) = 3
2906 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\344F\0\0004\0\0\0\370\341\0\0\2\4\0\0054\0 \0\6\0(\0\32\0\31\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0,\240\0\0,\240\0\0\5\0\0\0\0\0\1\0\1\0\0\0t\254\0\0t\254\1\0t\254\1\00004\0\00044\0\0\6\0\0\0\0\0\1\0\2\0\0\0\20\337\0\0\20\337\1\0\20\337\1\0\360\0\0\0\360\0\0\0\6\0\0\0\4\0\0\0\4\0\0\0\364\0\0\0\364\0\0\0\364\0\0\0$\0\0\0$\0\0\0\4\0\0\0\4\0\0\0Q\345td\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\20\0\0\0R\345tdt\254\0\0t\254\1\0t\254\1\0\2143\0\0\2143\0\0\4\0\0\0\1\0\0\0\4\0\0\0\24\0\0\0\3\0\0\0GNU\0\2226\366\321\37\227\27D\202\350\236L\300{\23|\37\0312\357C\0\0\0\35\0\0\0\20\0\0\0\t\0\0\0J\t\4\2\20\203\204!\0\1\200\t\20\245\302^\0\f\201\200\\!\0\304\1\24\10S\0\300\375\4\21l\302\314\2@BU\f\22\202\1\0\304\300\30\f\4 \nY\"\262\t\341$A\1\3606\4\306\0\0\0\0\35\0\0\0\0\0\0\0\37\0\0\0!\0\0\0\0\0\0\0\"\0\0\0#\0\0\0$\0\0\0\0\0\0\0&\0\0\0'\0\0\0\0\0\0\0(\0\0\0+\0\0\0,\0\0\0\0\0\0\0\0\0\0\0.\0\0\0/\0\0\0000\0\0\0\0\0\0\0002\0\0\0006\0\0\0\0\0\0\0\0\0\0\0008\0\0\0\0\0\0\0009\0\0\0:\0\0\0<\0\0\0>\0\0\0\0\0\0\0?\0\0\0A\0\0\0C\0\0\0D\0\0\0E\0\0\0", 512) = 512
2906 lseek(3, 57848, SEEK_SET) = 57848
2906 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\7\0\0\0\2\0\0\0\364\0\0\0\364\0\0\0$\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\36\0\0\0\366\377\377o\2\0\0\0\30\1\0\0\30\1\0\0\224\2\0\0\3\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0(\0\0\0\v\0\0\0\2\0\0\0\254\3\0\0\254\3\0\0\260\6\0\0\4\0\0\0\3\0\0\0\4\0\0\0\20\0\0\0000\0\0\0\3\0\0\0\2\0\0\0\\\n\0\0\\\n\0\0\212\6\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0008\0\0\0\377\377\377o\2\0\0\0\346\20\0\0\346\20\0\0\326\0\0\0\3\0\0\0\0\0\0\0\2\0\0\0\2\0\0\0E\0\0\0\376\377\377o\2\0\0\0\274\21\0\0\274\21\0\0@\0\0\0\4\0\0\0\2\0\0\0\4\0\0\0\0\0\0\0T\0\0\0\t\0\0\0\2\0\0\0\374\21\0\0\374\21\0\0\0003\0\0\3\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0]\0\0\0\t\0\0\0B\0\0\0\374D\0\0\374D\0\0\260\0\0\0\3\0\0\0\n\0\0\0\4\0\0\0\10\0\0\0f\0\0\0\1\0\0\0\6\0\0\0\254E\0\0\254E\0\0\f\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0a\0\0\0\1\0\0\0\6\0\0\0\270E\0\0\270E\0\0,\1\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0l\0\0\0\1\0\0\0\6\0\0\0\344F\0\0\344F\0\0|E\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0r\0\0\0\1\0\0\0\6\0\0\0`\214\0\0`\214\0\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0x\0\0\0\1\0\0\0\2\0\0\0h\214\0\0h\214\0\0\300\23\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\200\0\0\0\1\0\0\0\2\0\0\0(\240\0\0(\240\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\212\0\0\0\16\0\0\0\3\0\0\0t\254\1\0t\254\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\226\0\0\0\17\0\0\0\3\0\0\0x\254\1\0x\254\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\242\0\0\0\1\0\0\0\3\0\0\0|\254\1\0|\254\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\247\0\0\0\1\0\0\0\3\0\0\0\200\254\1\0\200\254\0\0\2202\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\264\0\0\0\6\0\0\0\3\0\0\0\20\337\1\0\20\337\0\0\360\0\0\0\4\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0\275\0\0\0\1\0\0\0\3\0\0\0\0\340\1\0\0\340\0\0\234\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\302\0\0\0\1\0\0\0\3\0\0\0\234\340\1\0\234\340\0\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\310\0\0\0\10\0\0\0\3\0\0\0\244\340\1\0\244\340\0\0\4\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\315\0\0\0\3\0\0p\0\0\0\0\0\0\0\0\244\340\0\0003\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\335\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\327\340\0\0004\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0"..., 1040) = 1040
2906 lseek(3, 57508, SEEK_SET) = 57508
2906 read(3, "A2\0\0\0aeabi\0\1(\0\0\0\0057-A\0\6\n\7A\10\1\t\2\n\4\22\4\24\1\25\1\27\3\30\1\31\1\32\2\33\3\34\1\"\1", 51) = 51
2906 fstat64(3, {st_mode=S_IFREG|0644, st_size=58888, ...}) = 0
2906 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6f41000
2906 mmap2(NULL, 123048, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb6eea000
2906 mprotect(0xb6ef5000, 61440, PROT_NONE) = 0
2906 mmap2(0xb6f04000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa000) = 0xb6f04000
2906 close(3) = 0
2906 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2906 open("/lib/arm-linux-gnueabihf/libudev.so.1", O_RDONLY|O_CLOEXEC) = 3
2906 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\320(\0\0004\0\0\0004\304\0\0\2\4\0\0054\0 \0\10\0(\0\36\0\35\0\1\0\0p\304\266\0\0\304\266\0\0\304\266\0\0\10\0\0\0\10\0\0\0\4\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\320\266\0\0\320\266\0\0\5\0\0\0\0\0\1\0\1\0\0\0\334\274\0\0\334\274\1\0\334\274\1\0\324\5\0\0\f\16\0\0\6\0\0\0\0\0\1\0\2\0\0\0\220\275\0\0\220\275\1\0\220\275\1\0\30\1\0\0\30\1\0\0\6\0\0\0\4\0\0\0\4\0\0\0004\1\0\0004\1\0\0004\1\0\0$\0\0\0$\0\0\0\4\0\0\0\4\0\0\0\7\0\0\0\334\274\0\0\334\274\1\0\334\274\1\0\0\0\0\0\10\0\0\0\4\0\0\0\4\0\0\0Q\345td\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\20\0\0\0R\345td\334\274\0\0\334\274\1\0\334\274\1\0$\3\0\0$\3\0\0\4\0\0\0\1\0\0\0\4\0\0\0\24\0\0\0\3\0\0\0GNU\0\260\0202bC\340!p\36m\300\321\240\362\\\376\334\351\211\3C\0\0\0T\0\0\0\20\0\0\0\t\0\0\0!\20b\25\326X\265k\20\200\200J@\tg#\350\212V\5^@\5\201\24\"\204\200\2640\20\22\301\202\200\1\0\0\0P\241 j\260 \276\r%j\325q\25\20 \22H\230\224%\20\241\21C\"\0\0\0\0T\0\0\0U\0\0\0W\0\0\0Z\0\0\0\\\0\0\0\0\0\0\0^\0\0\0a\0\0\0c\0\0\0\0\0\0\0d\0\0\0e\0\0\0f\0\0\0g\0\0\0i\0\0\0l\0\0\0m\0\0\0\0\0\0\0n\0\0\0o\0\0\0q\0\0\0", 512) = 512
2906 lseek(3, 50228, SEEK_SET) = 50228
2906 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\7\0\0\0\2\0\0\0004\1\0\0004\1\0\0$\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\36\0\0\0\366\377\377o\2\0\0\0X\1\0\0X\1\0\0\330\2\0\0\3\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0(\0\0\0\v\0\0\0\2\0\0\0000\4\0\0000\4\0\0000\v\0\0\4\0\0\0\3\0\0\0\4\0\0\0\20\0\0\0000\0\0\0\3\0\0\0\2\0\0\0`\17\0\0`\17\0\0\351\f\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0008\0\0\0\377\377\377o\2\0\0\0J\34\0\0J\34\0\0f\1\0\0\3\0\0\0\0\0\0\0\2\0\0\0\2\0\0\0E\0\0\0\375\377\377o\2\0\0\0\260\35\0\0\260\35\0\0\310\0\0\0\4\0\0\0\6\0\0\0\4\0\0\0\0\0\0\0T\0\0\0\376\377\377o\2\0\0\0x\36\0\0x\36\0\0\240\0\0\0\4\0\0\0\3\0\0\0\4\0\0\0\0\0\0\0c\0\0\0\t\0\0\0\2\0\0\0\30\37\0\0\30\37\0\0\300\3\0\0\3\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0l\0\0\0\t\0\0\0B\0\0\0\330\"\0\0\330\"\0\0P\2\0\0\3\0\0\0\v\0\0\0\4\0\0\0\10\0\0\0u\0\0\0\1\0\0\0\6\0\0\0(%\0\0(%\0\0\f\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0p\0\0\0\1\0\0\0\6\0\0\0004%\0\0004%\0\0\230\3\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0{\0\0\0\1\0\0\0\6\0\0\0\320(\0\0\320(\0\0$q\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0\201\0\0\0\1\0\0\0\6\0\0\0\364\231\0\0\364\231\0\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\207\0\0\0\1\0\0\0\2\0\0\0\374\231\0\0\374\231\0\0\310\34\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\217\0\0\0\1\0\0p\202\0\0\0\304\266\0\0\304\266\0\0\10\0\0\0\f\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\232\0\0\0\1\0\0\0\2\0\0\0\314\266\0\0\314\266\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\244\0\0\0\10\0\0\0\3\4\0\0\334\274\1\0\334\274\0\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\252\0\0\0\16\0\0\0\3\0\0\0\334\274\1\0\334\274\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\266\0\0\0\17\0\0\0\3\0\0\0\340\274\1\0\340\274\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\302\0\0\0\1\0\0\0\3\0\0\0\344\274\1\0\344\274\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\307\0\0\0\1\0\0\0\3\0\0\0\350\274\1\0\350\274\0\0\250\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\324\0\0\0\6\0\0\0\3\0\0\0\220\275\1\0\220\275\0\0\30\1\0\0\4\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0\335\0\0\0\1\0\0\0\3\0\0\0\250\276\1\0\250\276\0\0X\1\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\342\0\0\0\1\0\0\0\3\0\0\0\0\300\1\0\0\300\0\0008\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0"..., 1200) = 1200
2906 lseek(3, 49840, SEEK_SET) = 49840
2906 read(3, "A4\0\0\0aeabi\0\1*\0\0\0\0057-A\0\6\n\7A\10\1\t\2\n\4\22\4\23\1\24\1\25\1\27\3\30\1\31\1\32\2\33\3\34\1\"\1", 53) = 53
2906 fstat64(3, {st_mode=S_IFREG|0644, st_size=51428, ...}) = 0
2906 mmap2(NULL, 117480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb6ecd000
2906 mprotect(0xb6ed9000, 61440, PROT_NONE) = 0
2906 mmap2(0xb6ee8000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xb000) = 0xb6ee8000
2906 close(3) = 0
2906 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2906 open("/lib/arm-linux-gnueabihf/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
2906 read(3, "\177ELF\1\1\1\3\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\255h\1\0004\0\0\0\214\304\r\0\2\4\0\0054\0 \0\n\0(\0J\0I\0\1\0\0p\340>\r\0\340>\r\0\340>\r\0000\24\0\0000\24\0\0\4\0\0\0\4\0\0\0\6\0\0\0004\0\0\0004\0\0\0004\0\0\0@\1\0\0@\1\0\0\5\0\0\0\4\0\0\0\3\0\0\0\0203\r\0\0203\r\0\0203\r\0\34\0\0\0\34\0\0\0\4\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\204\205\r\0\204\205\r\0\5\0\0\0\0\0\1\0\1\0\0\0\340\206\r\0\340\206\16\0\340\206\16\0,'\0\0\230N\0\0\6\0\0\0\0\0\1\0\2\0\0\0 \237\r\0 \237\16\0 \237\16\0\340\0\0\0\340\0\0\0\6\0\0\0\4\0\0\0\4\0\0\0t\1\0\0t\1\0\0t\1\0\0D\0\0\0D\0\0\0\4\0\0\0\4\0\0\0\7\0\0\0\340\206\r\0\340\206\16\0\340\206\16\0\10\0\0\0L\0\0\0\4\0\0\0\4\0\0\0Q\345td\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\20\0\0\0R\345td\340\206\r\0\340\206\16\0\340\206\16\0 \31\0\0 \31\0\0\4\0\0\0\1\0\0\0\4\0\0\0\24\0\0\0\3\0\0\0GNU\0&\210G)\250\243Fu\361>\363\3722j\24\254\325\v\366\234\4\0\0\0\20\0\0\0\1\0\0\0GNU\0\0\0\0\0\2\0\0\0\6\0\0\0 \0\0\0\363\3\0\0\v\0\0\0\0\2\0\0\16\0\0\0\2440\20D\204!\n\1\214\3\346\220AE\210\0\204\0\10\0E\200\0`\300\200\0\f\212\f\0\0010\0\10@2\10\256\4\210H6l\240\0268\0&\204\200\216\4\10@\4", 512) = 512
2906 lseek(3, 902284, SEEK_SET) = 902284
2906 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\7\0\0\0\2\0\0\0t\1\0\0t\1\0\0$\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\36\0\0\0\7\0\0\0\2\0\0\0\230\1\0\0\230\1\0\0 \0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0,\0\0\0\366\377\377o\2\0\0\0\270\1\0\0\270\1\0\0004:\0\0\4\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0006\0\0\0\v\0\0\0\2\0\0\0\354;\0\0\354;\0\0\20\212\0\0\5\0\0\0\3\0\0\0\4\0\0\0\20\0\0\0>\0\0\0\3\0\0\0\2\0\0\0\374\305\0\0\374\305\0\0\243Y\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0F\0\0\0\377\377\377o\2\0\0\0\240\37\1\0\240\37\1\0B\21\0\0\4\0\0\0\0\0\0\0\2\0\0\0\2\0\0\0S\0\0\0\375\377\377o\2\0\0\0\3440\1\0\3440\1\0T\2\0\0\5\0\0\0\21\0\0\0\4\0\0\0\0\0\0\0b\0\0\0\376\377\377o\2\0\0\00083\1\00083\1\0000\0\0\0\5\0\0\0\1\0\0\0\4\0\0\0\0\0\0\0q\0\0\0\t\0\0\0\2\0\0\0h3\1\0h3\1\0\0(\0\0\4\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0z\0\0\0\t\0\0\0B\0\0\0h[\1\0h[\1\0P\0\0\0\4\0\0\0\v\0\0\0\4\0\0\0\10\0\0\0~\0\0\0\1\0\0\0\6\0\0\0\270[\1\0\270[\1\0\224\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\203\0\0\0\1\0\0\0\6\0\0\0L\\\1\0L\\\1\0\20\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\211\0\0\0\1\0\0\0\6\0\0\0\200\\\1\0\200\\\1\0\0005\n\0\0\0\0\0\0\0\0\0@\0\0\0\0\0\0\0\217\0\0\0\1\0\0\0\6\0\0\0\200\221\v\0\200\221\v\0\270\t\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\241\0\0\0\1\0\0\0\6\0\0\0008\233\v\0008\233\v\0\200\1\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\272\0\0\0\1\0\0\0\2\0\0\0\270\234\v\0\270\234\v\0U\226\1\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0\302\0\0\0\1\0\0\0\2\0\0\0\r3\r\0\r3\r\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\320\0\0\0\1\0\0\0\2\0\0\0\0203\r\0\0203\r\0\34\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\330\0\0\0\1\0\0\0\2\0\0\0,3\r\0,3\r\0\264\v\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\343\0\0\0\1\0\0p\202\0\0\0\340>\r\0\340>\r\0000\24\0\0\r\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\356\0\0\0\1\0\0\0\2\0\0\0\20S\r\0\20S\r\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0000\0\0\0\5\0\0\0\2\0\0\0\24S\r\0\24S\r\0p2\0\0\4\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\370\0\0\0\1\0\0\0\3\4\0\0\340\206\16\0\340\206\r\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\377\0\0\0\10\0\0\0\3\4\0\0\350\206\16\0\350\206\r\0D\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0"..., 2960) = 2960
2906 lseek(3, 896524, SEEK_SET) = 896524
2906 read(3, "A4\0\0\0aeabi\0\1*\0\0\0\0057-A\0\6\n\7A\10\1\t\2\n\3\f\1\22\4\23\1\24\1\25\1\27\3\30\1\32\2\33\3\34\1\"\1", 53) = 53
2906 fstat64(3, {st_mode=S_IFREG|0755, st_size=905244, ...}) = 0
2906 mmap2(NULL, 972152, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb6ddf000
2906 mprotect(0xb6eb8000, 61440, PROT_NONE) = 0
2906 mmap2(0xb6ec7000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd8000) = 0xb6ec7000
2906 mmap2(0xb6eca000, 9592, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb6eca000
2906 close(3) = 0
2906 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2906 open("/lib/arm-linux-gnueabihf/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
2906 read(3, "\177ELF\1\1\1\3\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0IF\0\0004\0\0\0\240\246\1\0\2\4\0\0054\0 \0\7\0(\0(\0%\0\1\0\0p \354\0\0 \354\0\0 \354\0\0\320\3\0\0\320\3\0\0\4\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\304\376\0\0\304\376\0\0\5\0\0\0\0\0\1\0\1\0\0\0\0\16\1\0\0\16\1\0\0\16\1\0\240\3\0\0H$\0\0\6\0\0\0\0\0\1\0\2\0\0\0\350\16\1\0\350\16\1\0\350\16\1\0\30\1\0\0\30\1\0\0\6\0\0\0\4\0\0\0\4\0\0\0\24\1\0\0\24\1\0\0\24\1\0\0D\0\0\0D\0\0\0\4\0\0\0\4\0\0\0Q\345td\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\20\0\0\0R\345td\0\16\1\0\0\16\1\0\0\16\1\0\0\2\0\0\0\2\0\0\4\0\0\0\1\0\0\0\4\0\0\0\24\0\0\0\3\0\0\0GNU\0\364\303}7\363,\275\271\246\337\377\264\314\vI\36\365k\\=\4\0\0\0\20\0\0\0\1\0\0\0GNU\0\0\0\0\0\2\0\0\0\6\0\0\0 \0\0\0\262\1\0\0[\0\0\0@\0\0\0\v\0\0\0\31!\2\221\1\n\20\"@H \331\3\0I4\200\0\0@\0 \200\200\221Q`\300@\22\213\0020D\0\0\20\1\0\n\0\0\5\0\200\n\220\1X\260\r\240\200\10 $\204\20B\242!m\10@\234V\20\0\224 \204$H\0X(\1\222\34\301B\240\220\22\10\f \2\30dA\245c\4@\n\32\3\0\0)\t(\314D\204\210\314\2\10\240\0\4\0\10\0\300Q\0\2009\4C\300\2248@\20\31\20\0\265\0 \0\200`\0\20 \0\3@\22!-\0P\10\211\22G", 512) = 512
2906 lseek(3, 108192, SEEK_SET) = 108192
2906 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\33\0\0\0\7\0\0\0\2\0\0\0\24\1\0\0\24\1\0\0$\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0.\0\0\0\7\0\0\0\2\0\0\0008\1\0\0008\1\0\0 \0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0<\0\0\0\366\377\377o\2\0\0\0X\1\0\0X\1\0\0|\v\0\0\4\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0F\0\0\0\v\0\0\0\2\0\0\0\324\f\0\0\324\f\0\0@\24\0\0\5\0\0\0\3\0\0\0\4\0\0\0\20\0\0\0N\0\0\0\3\0\0\0\2\0\0\0\24!\0\0\24!\0\0\251\23\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0V\0\0\0\377\377\377o\2\0\0\0\2764\0\0\2764\0\0\210\2\0\0\4\0\0\0\0\0\0\0\2\0\0\0\2\0\0\0c\0\0\0\375\377\377o\2\0\0\0H7\0\0H7\0\0\310\0\0\0\5\0\0\0\6\0\0\0\4\0\0\0\0\0\0\0r\0\0\0\376\377\377o\2\0\0\0\0208\0\0\0208\0\0`\0\0\0\5\0\0\0\2\0\0\0\4\0\0\0\0\0\0\0\201\0\0\0\t\0\0\0\2\0\0\0p8\0\0p8\0\0008\2\0\0\4\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0\212\0\0\0\t\0\0\0B\0\0\0\250:\0\0\250:\0\0h\2\0\0\4\0\0\0\f\0\0\0\4\0\0\0\10\0\0\0\223\0\0\0\1\0\0\0\6\0\0\0\20=\0\0\20=\0\0\f\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\216\0\0\0\1\0\0\0\6\0\0\0\34=\0\0\34=\0\0\324\3\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\231\0\0\0\1\0\0\0\6\0\0\0\360@\0\0\360@\0\0d\237\0\0\0\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\237\0\0\0\1\0\0\0\6\0\0\0T\340\0\0T\340\0\0D\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\261\0\0\0\1\0\0\0\6\0\0\0\230\340\0\0\230\340\0\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\267\0\0\0\1\0\0\0\2\0\0\0\240\340\0\0\240\340\0\0\204\t\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\277\0\0\0\1\0\0\0\2\0\0\0$\352\0\0$\352\0\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\315\0\0\0\1\0\0\0\2\0\0\0(\352\0\0(\352\0\0\370\1\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\330\0\0\0\1\0\0p\202\0\0\0 \354\0\0 \354\0\0\320\3\0\0\r\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\343\0\0\0\1\0\0\0\2\0\0\0\360\357\0\0\360\357\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0@\0\0\0\5\0\0\0\2\0\0\0\364\357\0\0\364\357\0\0\320\16\0\0\4\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\355\0\0\0\16\0\0\0\3\0\0\0\0\16\1\0\0\16\1\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\371\0\0\0\17\0\0\0\3\0\0\0\4\16\1\0\4\16\1\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\5\1\0\0\1\0\0\0\3\0\0\0\10\16\1\0\10\16\1\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0"..., 1600) = 1600
2906 lseek(3, 70048, SEEK_SET) = 70048
2906 read(3, "A4\0\0\0aeabi\0\1*\0\0\0\0057-A\0\6\n\7A\10\1\t\2\n\4\22\4\23\1\24\1\25\1\27\3\30\1\31\1\32\2\33\3\34\1\"\1", 53) = 53
2906 fstat64(3, {st_mode=S_IFREG|0755, st_size=109792, ...}) = 0
2906 mmap2(NULL, 78408, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb6dcb000
2906 mmap2(0xb6ddb000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x10000) = 0xb6ddb000
2906 mmap2(0xb6ddd000, 4680, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb6ddd000
2906 close(3) = 0
2906 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6f40000
2906 set_tls(0xb6f40780, 0xb6f40e68, 0xb6f4a050, 0xb6f40780, 0xb6f4a050) = 0
2906 mprotect(0xb6ec7000, 8192, PROT_READ) = 0
2906 mprotect(0xb6ddb000, 4096, PROT_READ) = 0
2906 mprotect(0xb6ee8000, 4096, PROT_READ) = 0
2906 mprotect(0xb6f04000, 16384, PROT_READ) = 0
2906 mprotect(0xb6f20000, 4096, PROT_READ) = 0
2906 mprotect(0x22000, 4096, PROT_READ) = 0
2906 mprotect(0xb6f49000, 4096, PROT_READ) = 0
2906 munmap(0xb6f42000, 14802) = 0
2906 set_tid_address(0xb6f40328) = 2906
2906 set_robust_list(0xb6f40330, 12) = 0
2906 rt_sigaction(SIGRTMIN, {0xb6dcf1d5, [], SA_SIGINFO|0x4000000}, NULL, 8) = 0
2906 rt_sigaction(SIGRT_1, {0xb6dcf275, [], SA_RESTART|SA_SIGINFO|0x4000000}, NULL, 8) = 0
2906 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
2906 getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM_INFINITY}) = 0
2906 brk(0) = 0x24000
2906 brk(0x45000) = 0x45000
2906 geteuid32() = 0
2906 geteuid32() = 0
2906 getuid32() = 0
2906 getgid32() = 0
2906 gettimeofday({1438349720, 397984}, NULL) = 0
2906 mkdir("/tmp/snap.0_spreed-webrtc.sideload_AegTAD", 0700) = 0
2906 umask(0) = 022
2906 mkdir("/tmp/snap.0_spreed-webrtc.sideload_AegTAD/tmp", 01777) = 0
2906 umask(022) = 0
2906 unshare(CLONE_NEWNS) = 0
2906 mount("none", "/tmp", NULL, MS_PRIVATE, NULL) = 0
2906 mount("/tmp/snap.0_spreed-webrtc.sideload_AegTAD/tmp", "/tmp", NULL, MS_BIND, NULL) = 0
2906 chown32("/tmp/", 0, 0) = 0
2906 open("/var/lib/apparmor/clicks/spreed-webrtc.sideload.json.additional", O_RDONLY|O_NOFOLLOW|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 getuid32() = 0
2906 getgid32() = 0
2906 setgid32(0) = 0
2906 setuid32(0) = 0
2906 gettid() = 2906
2906 open("/proc/2906/attr/exec", O_WRONLY) = 3
2906 write(3, "exec spreed-webrtc.sideload_spreed-webrtc_0.0.1", 47) = 47
2906 close(3) = 0
2906 open("/var/lib/snappy/seccomp/profiles//spreed-webrtc.sideload_spreed-webrtc_0.0.1", O_RDONLY) = 3
2906 fstat64(3, {st_mode=S_IFREG|0644, st_size=6881, ...}) = 0
2906 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6f45000
2906 read(3, "# Description: default seccomp filter\n# Usage: common\n#\n\n# Dangerous syscalls that we don't ever want to allow\n\n# kexec\n# EXPLICITLY DENIED: kexec_load\n\n# kernel modules\n# EXPLICITLY DENIED: create_module\n# EXPLICITLY DENIED: init_module\n# EXPLICITLY DENIED: finit_module\n# EXPLICITLY DENIED: delete_module\n\n# these have a history of vulnerabilities, are not widely used, and\n# open_by_handle_at has been used to break out of docker containers by brute\n# forcing the handle value: http://stealth.openwall.net/xSports/shocker.c\n# EXPLICITLY DENIED: name_to_handle_at\n# EXPLICITLY DENIED: open_by_handle_at\n\n# Explicitly deny ptrace since it can be abused to break out of the seccomp\n# sandbox\n# EXPLICITLY DENIED: ptrace\n\n# Explicitly deny capability mknod so apps can't create devices\n# EXPLICITLY DENIED: mknod\n# EXPLICITLY DENIED: mknodat\n\n# Explicitly deny (u)mount so apps can't change mounts in their namespace\n# EXPLICITLY DENIED: mount\n# EXPLICITLY DENIED: umount\n# EXPLICITLY DENIED: umount2"..., 4096) = 4096
2906 read(3, "s own scheduler\nsched_setscheduler\n\nsched_yield\n\nselect\n_newselect\npselect\npselect6\n\nsemctl\nsemget\nsemop\nsemtimedop\nsendfile\nsendfile64\n\n# snappy doesn't currently support per-app UID/GIDs so don't allow this family\n# of syscalls. To properly support these, we need to have syscall arg filtering\n# (LP: #1446748) and per-app UID/GIDs.\n#setgid\n#setgid32\n#setgroups\n#setgroups32\n#setregid\n#setregid32\n#setresgid\n#setresgid32\n#setresuid\n#setresuid32\n#setreuid\n#setreuid32\n#setuid\n#setuid32\n\n# These break isolation but are common and can't be mediated at the seccomp\n# level with arg filtering\nsetpgid\nsetpgrp\n\nset_thread_area\nsetitimer\n\n# apps don't have CAP_SYS_RESOURCE so these can't be abused to raise the hard\n# limits\nsetrlimit\nprlimit64\n\nset_mempolicy\nset_robust_list\nsetsid\nset_tid_address\n\nsetxattr\nfsetxattr\nlsetxattr\n\nshmat\nshmctl\nshmdt\nshmget\nsignal\nsigaction\nsignalfd\nsignalfd4\nsigaltstack\nsigpending\nsigprocmask\nsigreturn\nsigsuspend\nsigtimedwait\nsigwaitinfo\nsplice\n\nstat\nstat64\nfstat\nfst"..., 4096) = 2785
2906 read(3, "", 4096) = 0
2906 prctl(PR_SET_NO_NEW_PRIVS, 0x1, 0, 0, 0) = 0
2906 prctl(PR_SET_SECCOMP, 0x2, 0x24500, 0, 0) = 0
2906 close(3) = 0
2906 munmap(0xb6f45000, 4096) = 0
2906 execve("/apps/spreed-webrtc.sideload/0.0.1/bin/start.wrapper", ["/apps/spreed-webrtc.sideload/0.0.1/bin/start.wrapper"], [/* 19 vars */]) = 0
2906 brk(0) = 0xb6fe9000
2906 uname({sys="Linux", node="odroid", ...}) = 0
2906 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2906 mmap2(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6fe2000
2906 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
2906 open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
2906 fstat64(3, {st_mode=S_IFREG|0644, st_size=14802, ...}) = 0
2906 mmap2(NULL, 14802, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6fde000
2906 close(3) = 0
2906 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2906 open("/lib/arm-linux-gnueabihf/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
2906 read(3, "\177ELF\1\1\1\3\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\255h\1\0004\0\0\0\214\304\r\0\2\4\0\0054\0 \0\n\0(\0J\0I\0\1\0\0p\340>\r\0\340>\r\0\340>\r\0000\24\0\0000\24\0\0\4\0\0\0\4\0\0\0\6\0\0\0004\0\0\0004\0\0\0004\0\0\0@\1\0\0@\1\0\0\5\0\0\0\4\0\0\0\3\0\0\0\0203\r\0\0203\r\0\0203\r\0\34\0\0\0\34\0\0\0\4\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\204\205\r\0\204\205\r\0\5\0\0\0\0\0\1\0\1\0\0\0\340\206\r\0\340\206\16\0\340\206\16\0,'\0\0\230N\0\0\6\0\0\0\0\0\1\0\2\0\0\0 \237\r\0 \237\16\0 \237\16\0\340\0\0\0\340\0\0\0\6\0\0\0\4\0\0\0\4\0\0\0t\1\0\0t\1\0\0t\1\0\0D\0\0\0D\0\0\0\4\0\0\0\4\0\0\0\7\0\0\0\340\206\r\0\340\206\16\0\340\206\16\0\10\0\0\0L\0\0\0\4\0\0\0\4\0\0\0Q\345td\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\20\0\0\0R\345td\340\206\r\0\340\206\16\0\340\206\16\0 \31\0\0 \31\0\0\4\0\0\0\1\0\0\0\4\0\0\0\24\0\0\0\3\0\0\0GNU\0&\210G)\250\243Fu\361>\363\3722j\24\254\325\v\366\234\4\0\0\0\20\0\0\0\1\0\0\0GNU\0\0\0\0\0\2\0\0\0\6\0\0\0 \0\0\0\363\3\0\0\v\0\0\0\0\2\0\0\16\0\0\0\2440\20D\204!\n\1\214\3\346\220AE\210\0\204\0\10\0E\200\0`\300\200\0\f\212\f\0\0010\0\10@2\10\256\4\210H6l\240\0268\0&\204\200\216\4\10@\4", 512) = 512
2906 lseek(3, 902284, SEEK_SET) = 902284
2906 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\7\0\0\0\2\0\0\0t\1\0\0t\1\0\0$\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\36\0\0\0\7\0\0\0\2\0\0\0\230\1\0\0\230\1\0\0 \0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0,\0\0\0\366\377\377o\2\0\0\0\270\1\0\0\270\1\0\0004:\0\0\4\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0006\0\0\0\v\0\0\0\2\0\0\0\354;\0\0\354;\0\0\20\212\0\0\5\0\0\0\3\0\0\0\4\0\0\0\20\0\0\0>\0\0\0\3\0\0\0\2\0\0\0\374\305\0\0\374\305\0\0\243Y\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0F\0\0\0\377\377\377o\2\0\0\0\240\37\1\0\240\37\1\0B\21\0\0\4\0\0\0\0\0\0\0\2\0\0\0\2\0\0\0S\0\0\0\375\377\377o\2\0\0\0\3440\1\0\3440\1\0T\2\0\0\5\0\0\0\21\0\0\0\4\0\0\0\0\0\0\0b\0\0\0\376\377\377o\2\0\0\00083\1\00083\1\0000\0\0\0\5\0\0\0\1\0\0\0\4\0\0\0\0\0\0\0q\0\0\0\t\0\0\0\2\0\0\0h3\1\0h3\1\0\0(\0\0\4\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0z\0\0\0\t\0\0\0B\0\0\0h[\1\0h[\1\0P\0\0\0\4\0\0\0\v\0\0\0\4\0\0\0\10\0\0\0~\0\0\0\1\0\0\0\6\0\0\0\270[\1\0\270[\1\0\224\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\203\0\0\0\1\0\0\0\6\0\0\0L\\\1\0L\\\1\0\20\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\211\0\0\0\1\0\0\0\6\0\0\0\200\\\1\0\200\\\1\0\0005\n\0\0\0\0\0\0\0\0\0@\0\0\0\0\0\0\0\217\0\0\0\1\0\0\0\6\0\0\0\200\221\v\0\200\221\v\0\270\t\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\241\0\0\0\1\0\0\0\6\0\0\0008\233\v\0008\233\v\0\200\1\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\272\0\0\0\1\0\0\0\2\0\0\0\270\234\v\0\270\234\v\0U\226\1\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0\302\0\0\0\1\0\0\0\2\0\0\0\r3\r\0\r3\r\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\320\0\0\0\1\0\0\0\2\0\0\0\0203\r\0\0203\r\0\34\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\330\0\0\0\1\0\0\0\2\0\0\0,3\r\0,3\r\0\264\v\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\343\0\0\0\1\0\0p\202\0\0\0\340>\r\0\340>\r\0000\24\0\0\r\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\356\0\0\0\1\0\0\0\2\0\0\0\20S\r\0\20S\r\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0000\0\0\0\5\0\0\0\2\0\0\0\24S\r\0\24S\r\0p2\0\0\4\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\370\0\0\0\1\0\0\0\3\4\0\0\340\206\16\0\340\206\r\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\377\0\0\0\10\0\0\0\3\4\0\0\350\206\16\0\350\206\r\0D\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0"..., 2960) = 2960
2906 lseek(3, 896524, SEEK_SET) = 896524
2906 read(3, "A4\0\0\0aeabi\0\1*\0\0\0\0057-A\0\6\n\7A\10\1\t\2\n\3\f\1\22\4\23\1\24\1\25\1\27\3\30\1\32\2\33\3\34\1\"\1", 53) = 53
2906 fstat64(3, {st_mode=S_IFREG|0755, st_size=905244, ...}) = 0
2906 mmap2(NULL, 972152, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb6eb5000
2906 mprotect(0xb6f8e000, 61440, PROT_NONE) = 0
2906 mmap2(0xb6f9d000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd8000) = 0xb6f9d000
2906 mmap2(0xb6fa0000, 9592, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb6fa0000
2906 close(3) = 0
2906 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6fdd000
2906 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6fc9000
2906 set_tls(0xb6fdd850, 0xb6fc9008, 0xb6fcb050, 0xb6fdd850, 0xb6fcb050) = 0
2906 mprotect(0xb6f9d000, 8192, PROT_READ) = 0
2906 mprotect(0xb6fe5000, 4096, PROT_READ) = 0
2906 mprotect(0xb6fca000, 4096, PROT_READ) = 0
2906 munmap(0xb6fde000, 14802) = 0
2906 getpid() = 2906
2906 rt_sigaction(SIGCHLD, {0xb6fd8bc9, ~[RTMIN RT_1], 0x4000000 /* SA_??? */}, NULL, 8) = 0
2906 geteuid32() = 0
2906 brk(0) = 0xb6fe9000
2906 brk(0xb700a000) = 0xb700a000
2906 getppid() = 2901
2906 getcwd("/apps/spreed-webrtc.sideload/0.0.1", 4096) = 35
2906 open("/apps/spreed-webrtc.sideload/0.0.1/bin/start.wrapper", O_RDONLY) = 3
2906 fcntl64(3, F_DUPFD, 10) = 10
2906 close(3) = 0
2906 fcntl64(10, F_SETFD, FD_CLOEXEC) = 0
2906 rt_sigaction(SIGINT, NULL, {SIG_DFL, [], 0}, 8) = 0
2906 rt_sigaction(SIGINT, {0xb6fd8bc9, ~[RTMIN RT_1], 0x4000000 /* SA_??? */}, NULL, 8) = 0
2906 rt_sigaction(SIGQUIT, NULL, {SIG_DFL, [], 0}, 8) = 0
2906 rt_sigaction(SIGQUIT, {SIG_DFL, ~[RTMIN RT_1], 0x4000000 /* SA_??? */}, NULL, 8) = 0
2906 rt_sigaction(SIGTERM, NULL, {SIG_DFL, [], 0}, 8) = 0
2906 rt_sigaction(SIGTERM, {SIG_DFL, ~[RTMIN RT_1], 0x4000000 /* SA_??? */}, NULL, 8) = 0
2906 read(10, "#!/bin/sh\nexport PATH=\"$SNAP_APP_PATH/bin:$SNAP_APP_PATH/usr/bin:$PATH\"\nexport LD_LIBRARY_PATH=\"$SNAP_APP_PATH/lib:$SNAP_APP_PATH/usr/lib:$LD_LIBRARY_PATH\"\nexec \"$SNAP_APP_PATH/bin/start\" $*", 8192) = 190
2906 read(10, "", 8192) = 0
2906 execve("/apps/spreed-webrtc.sideload/0.0.1/bin/start", ["/apps/spreed-webrtc.sideload/0.0.1/bin/start"], [/* 21 vars */]) = 0
2906 brk(0) = 0xb6f97000
2906 uname({sys="Linux", node="odroid", ...}) = 0
2906 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2906 mmap2(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6f90000
2906 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l/neon/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l/neon/vfp", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l/neon/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l/neon", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l/vfp", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/neon/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/neon/vfp", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/neon/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/neon", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/vfp", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l/neon/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l/neon/vfp", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l/neon/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l/neon", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l/vfp", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/lib/neon/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/neon/vfp", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/lib/neon/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/neon", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/lib/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/vfp", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l/neon/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l/neon/vfp", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l/neon/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l/neon", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l/vfp", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/neon/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/neon/vfp", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/neon/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/neon", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/vfp", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l/neon/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l/neon/vfp", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l/neon/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l/neon", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l/vfp", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/neon/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/neon/vfp", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/neon/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/neon", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/vfp", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib", 0xbeaca1b8) = -1 ENOENT (No such file or directory)
2906 open("tls/v7l/neon/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 open("tls/v7l/neon/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 open("tls/v7l/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 open("tls/v7l/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 open("tls/neon/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 open("tls/neon/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 open("tls/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 open("tls/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 open("v7l/neon/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 open("v7l/neon/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 open("v7l/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 open("v7l/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 open("neon/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 open("neon/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 open("vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 open("libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2906 open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
2906 fstat64(3, {st_mode=S_IFREG|0644, st_size=14802, ...}) = 0
2906 mmap2(NULL, 14802, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6f8c000
2906 close(3) = 0
2906 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2906 open("/lib/arm-linux-gnueabihf/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
2906 read(3, "\177ELF\1\1\1\3\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\255h\1\0004\0\0\0\214\304\r\0\2\4\0\0054\0 \0\n\0(\0J\0I\0\1\0\0p\340>\r\0\340>\r\0\340>\r\0000\24\0\0000\24\0\0\4\0\0\0\4\0\0\0\6\0\0\0004\0\0\0004\0\0\0004\0\0\0@\1\0\0@\1\0\0\5\0\0\0\4\0\0\0\3\0\0\0\0203\r\0\0203\r\0\0203\r\0\34\0\0\0\34\0\0\0\4\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\204\205\r\0\204\205\r\0\5\0\0\0\0\0\1\0\1\0\0\0\340\206\r\0\340\206\16\0\340\206\16\0,'\0\0\230N\0\0\6\0\0\0\0\0\1\0\2\0\0\0 \237\r\0 \237\16\0 \237\16\0\340\0\0\0\340\0\0\0\6\0\0\0\4\0\0\0\4\0\0\0t\1\0\0t\1\0\0t\1\0\0D\0\0\0D\0\0\0\4\0\0\0\4\0\0\0\7\0\0\0\340\206\r\0\340\206\16\0\340\206\16\0\10\0\0\0L\0\0\0\4\0\0\0\4\0\0\0Q\345td\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\20\0\0\0R\345td\340\206\r\0\340\206\16\0\340\206\16\0 \31\0\0 \31\0\0\4\0\0\0\1\0\0\0\4\0\0\0\24\0\0\0\3\0\0\0GNU\0&\210G)\250\243Fu\361>\363\3722j\24\254\325\v\366\234\4\0\0\0\20\0\0\0\1\0\0\0GNU\0\0\0\0\0\2\0\0\0\6\0\0\0 \0\0\0\363\3\0\0\v\0\0\0\0\2\0\0\16\0\0\0\2440\20D\204!\n\1\214\3\346\220AE\210\0\204\0\10\0E\200\0`\300\200\0\f\212\f\0\0010\0\10@2\10\256\4\210H6l\240\0268\0&\204\200\216\4\10@\4", 512) = 512
2906 lseek(3, 902284, SEEK_SET) = 902284
2906 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\7\0\0\0\2\0\0\0t\1\0\0t\1\0\0$\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\36\0\0\0\7\0\0\0\2\0\0\0\230\1\0\0\230\1\0\0 \0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0,\0\0\0\366\377\377o\2\0\0\0\270\1\0\0\270\1\0\0004:\0\0\4\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0006\0\0\0\v\0\0\0\2\0\0\0\354;\0\0\354;\0\0\20\212\0\0\5\0\0\0\3\0\0\0\4\0\0\0\20\0\0\0>\0\0\0\3\0\0\0\2\0\0\0\374\305\0\0\374\305\0\0\243Y\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0F\0\0\0\377\377\377o\2\0\0\0\240\37\1\0\240\37\1\0B\21\0\0\4\0\0\0\0\0\0\0\2\0\0\0\2\0\0\0S\0\0\0\375\377\377o\2\0\0\0\3440\1\0\3440\1\0T\2\0\0\5\0\0\0\21\0\0\0\4\0\0\0\0\0\0\0b\0\0\0\376\377\377o\2\0\0\00083\1\00083\1\0000\0\0\0\5\0\0\0\1\0\0\0\4\0\0\0\0\0\0\0q\0\0\0\t\0\0\0\2\0\0\0h3\1\0h3\1\0\0(\0\0\4\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0z\0\0\0\t\0\0\0B\0\0\0h[\1\0h[\1\0P\0\0\0\4\0\0\0\v\0\0\0\4\0\0\0\10\0\0\0~\0\0\0\1\0\0\0\6\0\0\0\270[\1\0\270[\1\0\224\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\203\0\0\0\1\0\0\0\6\0\0\0L\\\1\0L\\\1\0\20\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\211\0\0\0\1\0\0\0\6\0\0\0\200\\\1\0\200\\\1\0\0005\n\0\0\0\0\0\0\0\0\0@\0\0\0\0\0\0\0\217\0\0\0\1\0\0\0\6\0\0\0\200\221\v\0\200\221\v\0\270\t\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\241\0\0\0\1\0\0\0\6\0\0\0008\233\v\0008\233\v\0\200\1\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\272\0\0\0\1\0\0\0\2\0\0\0\270\234\v\0\270\234\v\0U\226\1\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0\302\0\0\0\1\0\0\0\2\0\0\0\r3\r\0\r3\r\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\320\0\0\0\1\0\0\0\2\0\0\0\0203\r\0\0203\r\0\34\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\330\0\0\0\1\0\0\0\2\0\0\0,3\r\0,3\r\0\264\v\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\343\0\0\0\1\0\0p\202\0\0\0\340>\r\0\340>\r\0000\24\0\0\r\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\356\0\0\0\1\0\0\0\2\0\0\0\20S\r\0\20S\r\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0000\0\0\0\5\0\0\0\2\0\0\0\24S\r\0\24S\r\0p2\0\0\4\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\370\0\0\0\1\0\0\0\3\4\0\0\340\206\16\0\340\206\r\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\377\0\0\0\10\0\0\0\3\4\0\0\350\206\16\0\350\206\r\0D\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0"..., 2960) = 2960
2906 lseek(3, 896524, SEEK_SET) = 896524
2906 read(3, "A4\0\0\0aeabi\0\1*\0\0\0\0057-A\0\6\n\7A\10\1\t\2\n\3\f\1\22\4\23\1\24\1\25\1\27\3\30\1\32\2\33\3\34\1\"\1", 53) = 53
2906 fstat64(3, {st_mode=S_IFREG|0755, st_size=905244, ...}) = 0
2906 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6f8b000
2906 mmap2(NULL, 972152, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb6e63000
2906 mprotect(0xb6f3c000, 61440, PROT_NONE) = 0
2906 mmap2(0xb6f4b000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd8000) = 0xb6f4b000
2906 mmap2(0xb6f4e000, 9592, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb6f4e000
2906 close(3) = 0
2906 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6f77000
2906 set_tls(0xb6f774c0, 0xb6f77ba8, 0xb6f79050, 0xb6f774c0, 0xb6f79050) = 0
2906 mprotect(0xb6f4b000, 8192, PROT_READ) = 0
2906 mprotect(0xb6f93000, 4096, PROT_READ) = 0
2906 mprotect(0xb6f78000, 4096, PROT_READ) = 0
2906 munmap(0xb6f8c000, 14802) = 0
2906 getpid() = 2906
2906 rt_sigaction(SIGCHLD, {0xb6f86bc9, ~[RTMIN RT_1], 0x4000000 /* SA_??? */}, NULL, 8) = 0
2906 geteuid32() = 0
2906 brk(0) = 0xb6f97000
2906 brk(0xb6fb8000) = 0xb6fb8000
2906 getppid() = 2901
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
2906 stat64(".", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
2906 open("/apps/spreed-webrtc.sideload/0.0.1/bin/start", O_RDONLY) = 3
2906 fcntl64(3, F_DUPFD, 10) = 10
2906 close(3) = 0
2906 fcntl64(10, F_SETFD, FD_CLOEXEC) = 0
2906 rt_sigaction(SIGINT, NULL, {SIG_DFL, [], 0}, 8) = 0
2906 rt_sigaction(SIGINT, {0xb6f86bc9, ~[RTMIN RT_1], 0x4000000 /* SA_??? */}, NULL, 8) = 0
2906 rt_sigaction(SIGQUIT, NULL, {SIG_DFL, [], 0}, 8) = 0
2906 rt_sigaction(SIGQUIT, {SIG_DFL, ~[RTMIN RT_1], 0x4000000 /* SA_??? */}, NULL, 8) = 0
2906 rt_sigaction(SIGTERM, NULL, {SIG_DFL, [], 0}, 8) = 0
2906 rt_sigaction(SIGTERM, {SIG_DFL, ~[RTMIN RT_1], 0x4000000 /* SA_??? */}, NULL, 8) = 0
2906 read(10, "#!/bin/sh\n\nset -e\n\nCONF=$SNAP_APP_DATA_PATH/server.conf\n\nif [ ! -e \"$CONF\" ]; then\n\techo \"Creating new config ...\"\n\tcp -f \"$SNAP_APP_PATH/etc/spreed/webrtc.conf\" \"$CONF.new\"\n\techo \"1\"\n\tsed -i \"s|root = .*|root = $SNAP_APP_PATH/usr/share/spreed-webrtc-server/www|\" \"$CONF.new\"\n\techo \"2\"\n\tsed -i \"s|listen = 127.*|listen = :8080|\" \"$CONF.new\"\n\techo \"3\"\n\tmv -f \"$CONF.new\" \"$CONF\"\n\techo \"4\"\nfi\n\necho \"Starting Spreed WebRTC ...\"\nexec \"$SNAP_APP_PATH/usr/sbin/spreed-webrtc-server\" -c \"$CONF\"\n", 8192) = 489
2906 stat64("/var/lib/apps/spreed-webrtc.sideload/0.0.1/server.conf", 0xbeaca3d8) = -1 ENOENT (No such file or directory)
2906 write(1, "Creating new config ...\n", 24) = 24
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/bin/cp", 0xbeaca5c8) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/bin/cp", 0xbeaca5c8) = -1 ENOENT (No such file or directory)
2906 stat64("/usr/local/sbin/cp", 0xbeaca5c8) = -1 ENOENT (No such file or directory)
2906 stat64("/usr/local/bin/cp", 0xbeaca5c8) = -1 ENOENT (No such file or directory)
2906 stat64("/usr/sbin/cp", 0xbeaca5c8) = -1 ENOENT (No such file or directory)
2906 stat64("/usr/bin/cp", 0xbeaca5c8) = -1 ENOENT (No such file or directory)
2906 stat64("/sbin/cp", 0xbeaca5c8) = -1 ENOENT (No such file or directory)
2906 stat64("/bin/cp", {st_mode=S_IFREG|0755, st_size=92280, ...}) = 0
2906 clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb6f77068) = 2907
2907 close(10 <unfinished ...>
2906 wait4(-1, <unfinished ...>
2907 <... close resumed> ) = 0
2907 execve("/bin/cp", ["cp", "-f", "/apps/spreed-webrtc.sideload/0.0.1/etc/spreed/webrtc.conf", "/var/lib/apps/spreed-webrtc.sideload/0.0.1/server.conf.new"], [/* 21 vars */]) = 0
2907 brk(0) = 0x37000
2907 uname({sys="Linux", node="odroid", ...}) = 0
2907 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2907 mmap2(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6f4f000
2907 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l/neon/vfp", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l/neon", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l/vfp", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/neon/vfp", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/neon", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/vfp", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l/neon/vfp", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l/neon", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l/vfp", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/lib/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/neon/vfp", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/lib/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/neon", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/lib/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/vfp", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/lib/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l/neon/vfp", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l/neon", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l/vfp", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/neon/vfp", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/neon", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/vfp", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l/neon/vfp", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l/neon", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l/vfp", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/neon/vfp", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/neon", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/vfp", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib", 0xbec62188) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
2907 fstat64(3, {st_mode=S_IFREG|0644, st_size=14802, ...}) = 0
2907 mmap2(NULL, 14802, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6f4b000
2907 close(3) = 0
2907 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2907 open("/lib/arm-linux-gnueabihf/libselinux.so.1", O_RDONLY|O_CLOEXEC) = 3
2907 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0pD\0\0004\0\0\0\314S\1\0\2\4\0\0054\0 \0\7\0(\0\34\0\33\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0lF\1\0lF\1\0\5\0\0\0\0\0\1\0\1\0\0\0\264N\1\0\264N\2\0\264N\2\0\270\3\0\0008\35\0\0\6\0\0\0\0\0\1\0\2\0\0\0\0O\1\0\0O\2\0\0O\2\0\0\1\0\0\0\1\0\0\6\0\0\0\4\0\0\0\4\0\0\0\24\1\0\0\24\1\0\0\24\1\0\0$\0\0\0$\0\0\0\4\0\0\0\4\0\0\0\7\0\0\0\264N\1\0\264N\2\0\264N\2\0\24\0\0\0x\0\0\0\4\0\0\0\4\0\0\0Q\345td\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\20\0\0\0R\345td\264N\1\0\264N\2\0\264N\2\0L\1\0\0L\1\0\0\4\0\0\0\1\0\0\0\4\0\0\0\24\0\0\0\3\0\0\0GNU\0\4\2:\203\307\313\304$w\276\356\217\r\21\27H\317\316R\207\305\0\0\0\177\0\0\0@\0\0\0\v\0\0\0\270 \4\200\0H\0\3\"\30@JU\0\356\320\2\4h\nT\26\0\4\20\210\4\0\0\305@\1\0\16\1\20P&\30hH \220+\30\10\22\t\0\4!\4\21(\217\7\240\340@Q\10\30\0\20\0B\24\234\4\21\1\6\33\1\23\r \20\v\302\10\1H\220\n\2\0\211j\207D\201\"\10\340\202\200\2*\204\202@\200\0\0\0Q\10\4\0\2\220:\0!\246\10\5\1\236\204\4\0@\0\24\0F\n\0\240\0\0`\20t\1@\204\0\20\4\340\24\20\234\10\204\0@\0\200\10@\6\7\200\0\200\200\1\n\10\0\2\0\0\200\233\1\4\306\24\223(\0\200\0\10\0\1@\2\1", 512) = 512
2907 lseek(3, 86988, SEEK_SET) = 86988
2907 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\7\0\0\0\2\0\0\0\24\1\0\0\24\1\0\0$\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\36\0\0\0\366\377\377o\2\0\0\0008\1\0\0008\1\0\0\314\7\0\0\3\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0(\0\0\0\v\0\0\0\2\0\0\0\4\t\0\0\4\t\0\0\220\26\0\0\4\0\0\0\3\0\0\0\4\0\0\0\20\0\0\0000\0\0\0\3\0\0\0\2\0\0\0\224\37\0\0\224\37\0\0\f\27\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0008\0\0\0\377\377\377o\2\0\0\0\2406\0\0\2406\0\0\322\2\0\0\3\0\0\0\0\0\0\0\2\0\0\0\2\0\0\0E\0\0\0\376\377\377o\2\0\0\0t9\0\0t9\0\0\200\0\0\0\4\0\0\0\3\0\0\0\4\0\0\0\0\0\0\0T\0\0\0\t\0\0\0\2\0\0\0\3649\0\0\3649\0\0008\1\0\0\3\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0]\0\0\0\t\0\0\0B\0\0\0,;\0\0,;\0\0\240\3\0\0\3\0\0\0\n\0\0\0\4\0\0\0\10\0\0\0f\0\0\0\1\0\0\0\6\0\0\0\314>\0\0\314>\0\0\f\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0a\0\0\0\1\0\0\0\6\0\0\0\330>\0\0\330>\0\0\230\5\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0l\0\0\0\1\0\0\0\6\0\0\0pD\0\0pD\0\0l\317\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0r\0\0\0\1\0\0\0\6\0\0\0\334\23\1\0\334\23\1\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0x\0\0\0\1\0\0\0\2\0\0\0\344\23\1\0\344\23\1\0\2042\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\200\0\0\0\1\0\0\0\2\0\0\0hF\1\0hF\1\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\212\0\0\0\1\0\0\0\3\4\0\0\264N\2\0\264N\1\0\24\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\221\0\0\0\10\0\0\0\3\4\0\0\310N\2\0\310N\1\0d\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\227\0\0\0\16\0\0\0\3\0\0\0\310N\2\0\310N\1\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\243\0\0\0\17\0\0\0\3\0\0\0\320N\2\0\320N\1\0\30\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\257\0\0\0\1\0\0\0\3\0\0\0\350N\2\0\350N\1\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\264\0\0\0\1\0\0\0\3\0\0\0\354N\2\0\354N\1\0\24\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\301\0\0\0\6\0\0\0\3\0\0\0\0O\2\0\0O\1\0\0\1\0\0\4\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0\312\0\0\0\1\0\0\0\3\0\0\0\0P\2\0\0P\1\0,\2\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\317\0\0\0\1\0\0\0\3\0\0\0,R\2\0,R\1\0@\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\325\0\0\0\10\0\0\0\3\0\0\0lR\2\0lR\1\0\200\31\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0"..., 1120) = 1120
2907 lseek(3, 86636, SEEK_SET) = 86636
2907 read(3, "A2\0\0\0aeabi\0\1(\0\0\0\0057-A\0\6\n\7A\10\1\t\2\n\4\22\4\24\1\25\1\27\3\30\1\31\1\32\2\33\3\34\1\"\1", 51) = 51
2907 fstat64(3, {st_mode=S_IFREG|0644, st_size=88108, ...}) = 0
2907 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6f4a000
2907 mmap2(NULL, 158700, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb6f04000
2907 mprotect(0xb6f19000, 61440, PROT_NONE) = 0
2907 mmap2(0xb6f28000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14000) = 0xb6f28000
2907 mmap2(0xb6f2a000, 3052, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb6f2a000
2907 close(3) = 0
2907 open("tls/v7l/neon/vfp/libacl.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/neon/libacl.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/vfp/libacl.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/libacl.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/neon/vfp/libacl.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/neon/libacl.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/vfp/libacl.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/libacl.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/neon/vfp/libacl.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/neon/libacl.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/vfp/libacl.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/libacl.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("neon/vfp/libacl.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("neon/libacl.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("vfp/libacl.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("libacl.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2907 open("/lib/arm-linux-gnueabihf/libacl.so.1", O_RDONLY|O_CLOEXEC) = 3
2907 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\310\24\0\0004\0\0\0pR\0\0\2\4\0\0054\0 \0\6\0(\0\32\0\31\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0(C\0\0(C\0\0\5\0\0\0\0\0\1\0\1\0\0\0\354N\0\0\354N\1\0\354N\1\0,\2\0\0D\2\0\0\6\0\0\0\0\0\1\0\2\0\0\0\370N\0\0\370N\1\0\370N\1\0\10\1\0\0\10\1\0\0\6\0\0\0\4\0\0\0\4\0\0\0\364\0\0\0\364\0\0\0\364\0\0\0$\0\0\0$\0\0\0\4\0\0\0\4\0\0\0Q\345td\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\20\0\0\0R\345td\354N\0\0\354N\1\0\354N\1\0\24\1\0\0\24\1\0\0\4\0\0\0\1\0\0\0\4\0\0\0\24\0\0\0\3\0\0\0GNU\0G8\273\225T\330\37\265z\265v\376a\316\223x\37*\365*%\0\0\0002\0\0\0\20\0\0\0\t\0\0\0\301\302(\240\202\0$\1\10T'\200\210\24\302\20\1\0000\1\200\240@\200\"B\30 \0\0\0\0\5\2\202\"\0\0\0\0\16\10\237\3018\1\203\0\6\"\2042@\230\n\t\23\10\0=\25\6!`2\0\0\0004\0\0\0006\0\0\0008\0\0\0:\0\0\0;\0\0\0<\0\0\0A\0\0\0\0\0\0\0C\0\0\0D\0\0\0\0\0\0\0E\0\0\0J\0\0\0M\0\0\0O\0\0\0P\0\0\0\0\0\0\0\0\0\0\0R\0\0\0S\0\0\0T\0\0\0W\0\0\0\0\0\0\0Y\0\0\0Z\0\0\0\\\0\0\0]\0\0\0^\0\0\0_\0\0\0a\0\0\0c\0\0\0\0\0\0\0\0\0\0\0e\0\0\0f\0\0\0k\0\0\0\36\346\256\366", 512) = 512
2907 lseek(3, 21104, SEEK_SET) = 21104
2907 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\7\0\0\0\2\0\0\0\364\0\0\0\364\0\0\0$\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\36\0\0\0\366\377\377o\2\0\0\0\30\1\0\0\30\1\0\0\334\1\0\0\3\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0(\0\0\0\v\0\0\0\2\0\0\0\364\2\0\0\364\2\0\0\0\7\0\0\4\0\0\0\3\0\0\0\4\0\0\0\20\0\0\0000\0\0\0\3\0\0\0\2\0\0\0\364\t\0\0\364\t\0\0\26\5\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0008\0\0\0\377\377\377o\2\0\0\0\n\17\0\0\n\17\0\0\340\0\0\0\3\0\0\0\0\0\0\0\2\0\0\0\2\0\0\0E\0\0\0\375\377\377o\2\0\0\0\354\17\0\0\354\17\0\0\200\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\0\0\0\0T\0\0\0\376\377\377o\2\0\0\0l\20\0\0l\20\0\0`\0\0\0\4\0\0\0\3\0\0\0\4\0\0\0\0\0\0\0c\0\0\0\t\0\0\0\2\0\0\0\314\20\0\0\314\20\0\0\210\0\0\0\3\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0l\0\0\0\t\0\0\0B\0\0\0T\21\0\0T\21\0\0P\1\0\0\3\0\0\0\v\0\0\0\4\0\0\0\10\0\0\0u\0\0\0\1\0\0\0\6\0\0\0\244\22\0\0\244\22\0\0\f\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0p\0\0\0\1\0\0\0\6\0\0\0\260\22\0\0\260\22\0\0\24\2\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0{\0\0\0\1\0\0\0\6\0\0\0\310\24\0\0\310\24\0\0$-\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0\201\0\0\0\1\0\0\0\6\0\0\0\354A\0\0\354A\0\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\207\0\0\0\1\0\0\0002\0\0\0\364A\0\0\364A\0\0000\1\0\0\0\0\0\0\0\0\0\0\4\0\0\0\1\0\0\0\217\0\0\0\1\0\0\0\2\0\0\0$C\0\0$C\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\231\0\0\0\16\0\0\0\3\0\0\0\354N\1\0\354N\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\245\0\0\0\17\0\0\0\3\0\0\0\360N\1\0\360N\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\261\0\0\0\1\0\0\0\3\0\0\0\364N\1\0\364N\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\266\0\0\0\6\0\0\0\3\0\0\0\370N\1\0\370N\0\0\10\1\0\0\4\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0\277\0\0\0\1\0\0\0\3\0\0\0\0P\1\0\0P\0\0\340\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\304\0\0\0\1\0\0\0\3\0\0\0\340P\1\0\340P\0\0008\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0\312\0\0\0\10\0\0\0\3\0\0\0\30Q\1\0\30Q\0\0\30\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\317\0\0\0\3\0\0p\0\0\0\0\0\0\0\0\30Q\0\0003\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\337\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0KQ\0\0004\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0"..., 1040) = 1040
2907 lseek(3, 20760, SEEK_SET) = 20760
2907 read(3, "A2\0\0\0aeabi\0\1(\0\0\0\0057-A\0\6\n\7A\10\1\t\2\n\4\22\4\24\1\25\1\27\3\30\1\31\1\32\2\33\3\34\1\"\1", 51) = 51
2907 fstat64(3, {st_mode=S_IFREG|0644, st_size=22144, ...}) = 0
2907 mmap2(NULL, 86320, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb6eee000
2907 mprotect(0xb6ef3000, 61440, PROT_NONE) = 0
2907 mmap2(0xb6f02000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0xb6f02000
2907 close(3) = 0
2907 open("tls/v7l/neon/vfp/libattr.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/neon/libattr.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/vfp/libattr.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/libattr.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/neon/vfp/libattr.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/neon/libattr.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/vfp/libattr.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/libattr.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/neon/vfp/libattr.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/neon/libattr.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/vfp/libattr.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/libattr.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("neon/vfp/libattr.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("neon/libattr.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("vfp/libattr.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("libattr.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2907 open("/lib/arm-linux-gnueabihf/libattr.so.1", O_RDONLY|O_CLOEXEC) = 3
2907 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\20\r\0\0004\0\0\0\3401\0\0\2\4\0\0054\0 \0\6\0(\0\32\0\31\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\200#\0\0\200#\0\0\5\0\0\0\0\0\1\0\1\0\0\0\364.\0\0\364.\1\0\364.\1\0\224\1\0\0\234\1\0\0\6\0\0\0\0\0\1\0\2\0\0\0\0/\0\0\0/\1\0\0/\1\0\0\1\0\0\0\1\0\0\6\0\0\0\4\0\0\0\4\0\0\0\364\0\0\0\364\0\0\0\364\0\0\0$\0\0\0$\0\0\0\4\0\0\0\4\0\0\0Q\345td\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\20\0\0\0R\345td\364.\0\0\364.\1\0\364.\1\0\f\1\0\0\f\1\0\0\4\0\0\0\1\0\0\0\4\0\0\0\24\0\0\0\3\0\0\0GNU\0G\0\3076!nu\306\231\243\0g\337\20q\16\211\31\220\204%\0\0\0\36\0\0\0\10\0\0\0\10\0\0\0+\240\20\0\10\300\215\0208\204A#D X@\0\0#\1\17\271\10\315\20\231\2\r\0\4\f\204\36\0\0\0\0\0\0\0 \0\0\0!\0\0\0\"\0\0\0#\0\0\0&\0\0\0(\0\0\0\0\0\0\0)\0\0\0\0\0\0\0*\0\0\0\0\0\0\0\0\0\0\0+\0\0\0\0\0\0\0,\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0-\0\0\0.\0\0\0/\0\0\0000\0\0\0001\0\0\0003\0\0\0004\0\0\0006\0\0\0\0\0\0\0007\0\0\0:\0\0\0<\0\0\0\0\0\0\0=\0\0\0\0\0\0\0?\0\0\0B\0\0\0J=G\363\221x\251\335\353\32\346\300/cx\204/cx\204\352\323\357\0160cx\204\333\217[\25\362?\355s", 512) = 512
2907 lseek(3, 12768, SEEK_SET) = 12768
2907 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\7\0\0\0\2\0\0\0\364\0\0\0\364\0\0\0$\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\36\0\0\0\366\377\377o\2\0\0\0\30\1\0\0\30\1\0\0\\\1\0\0\3\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0(\0\0\0\v\0\0\0\2\0\0\0t\2\0\0t\2\0\0@\4\0\0\4\0\0\0\3\0\0\0\4\0\0\0\20\0\0\0000\0\0\0\3\0\0\0\2\0\0\0\264\6\0\0\264\6\0\0\321\2\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0008\0\0\0\377\377\377o\2\0\0\0\206\t\0\0\206\t\0\0\210\0\0\0\3\0\0\0\0\0\0\0\2\0\0\0\2\0\0\0E\0\0\0\375\377\377o\2\0\0\0\20\n\0\0\20\n\0\0\200\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\0\0\0\0T\0\0\0\376\377\377o\2\0\0\0\220\n\0\0\220\n\0\0@\0\0\0\4\0\0\0\2\0\0\0\4\0\0\0\0\0\0\0c\0\0\0\t\0\0\0\2\0\0\0\320\n\0\0\320\n\0\0P\0\0\0\3\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0l\0\0\0\t\0\0\0B\0\0\0 \v\0\0 \v\0\0\270\0\0\0\3\0\0\0\v\0\0\0\4\0\0\0\10\0\0\0u\0\0\0\1\0\0\0\6\0\0\0\330\v\0\0\330\v\0\0\f\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0p\0\0\0\1\0\0\0\6\0\0\0\344\v\0\0\344\v\0\0,\1\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0{\0\0\0\1\0\0\0\6\0\0\0\20\r\0\0\20\r\0\0\230\25\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\201\0\0\0\1\0\0\0\6\0\0\0\250\"\0\0\250\"\0\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\207\0\0\0\1\0\0\0002\0\0\0\260\"\0\0\260\"\0\0\314\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\1\0\0\0\217\0\0\0\1\0\0\0\2\0\0\0|#\0\0|#\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\231\0\0\0\16\0\0\0\3\0\0\0\364.\1\0\364.\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\245\0\0\0\17\0\0\0\3\0\0\0\370.\1\0\370.\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\261\0\0\0\1\0\0\0\3\0\0\0\374.\1\0\374.\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\266\0\0\0\6\0\0\0\3\0\0\0\0/\1\0\0/\0\0\0\1\0\0\4\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0\277\0\0\0\1\0\0\0\3\0\0\0\0000\1\0\0000\0\0\204\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\304\0\0\0\1\0\0\0\3\0\0\0\2040\1\0\2040\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\312\0\0\0\10\0\0\0\3\0\0\0\2100\1\0\2100\0\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\317\0\0\0\3\0\0p\0\0\0\0\0\0\0\0\2100\0\0003\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\337\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\2730\0\0004\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0"..., 1040) = 1040
2907 lseek(3, 12424, SEEK_SET) = 12424
2907 read(3, "A2\0\0\0aeabi\0\1(\0\0\0\0057-A\0\6\n\7A\10\1\t\2\n\4\22\4\24\1\25\1\27\3\30\1\31\1\32\2\33\3\34\1\"\1", 51) = 51
2907 fstat64(3, {st_mode=S_IFREG|0644, st_size=13808, ...}) = 0
2907 mmap2(NULL, 77968, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb6eda000
2907 mprotect(0xb6edd000, 61440, PROT_NONE) = 0
2907 mmap2(0xb6eec000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0xb6eec000
2907 close(3) = 0
2907 open("tls/v7l/neon/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/neon/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/neon/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/neon/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/neon/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/neon/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("neon/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("neon/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2907 open("/lib/arm-linux-gnueabihf/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
2907 read(3, "\177ELF\1\1\1\3\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\255h\1\0004\0\0\0\214\304\r\0\2\4\0\0054\0 \0\n\0(\0J\0I\0\1\0\0p\340>\r\0\340>\r\0\340>\r\0000\24\0\0000\24\0\0\4\0\0\0\4\0\0\0\6\0\0\0004\0\0\0004\0\0\0004\0\0\0@\1\0\0@\1\0\0\5\0\0\0\4\0\0\0\3\0\0\0\0203\r\0\0203\r\0\0203\r\0\34\0\0\0\34\0\0\0\4\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\204\205\r\0\204\205\r\0\5\0\0\0\0\0\1\0\1\0\0\0\340\206\r\0\340\206\16\0\340\206\16\0,'\0\0\230N\0\0\6\0\0\0\0\0\1\0\2\0\0\0 \237\r\0 \237\16\0 \237\16\0\340\0\0\0\340\0\0\0\6\0\0\0\4\0\0\0\4\0\0\0t\1\0\0t\1\0\0t\1\0\0D\0\0\0D\0\0\0\4\0\0\0\4\0\0\0\7\0\0\0\340\206\r\0\340\206\16\0\340\206\16\0\10\0\0\0L\0\0\0\4\0\0\0\4\0\0\0Q\345td\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\20\0\0\0R\345td\340\206\r\0\340\206\16\0\340\206\16\0 \31\0\0 \31\0\0\4\0\0\0\1\0\0\0\4\0\0\0\24\0\0\0\3\0\0\0GNU\0&\210G)\250\243Fu\361>\363\3722j\24\254\325\v\366\234\4\0\0\0\20\0\0\0\1\0\0\0GNU\0\0\0\0\0\2\0\0\0\6\0\0\0 \0\0\0\363\3\0\0\v\0\0\0\0\2\0\0\16\0\0\0\2440\20D\204!\n\1\214\3\346\220AE\210\0\204\0\10\0E\200\0`\300\200\0\f\212\f\0\0010\0\10@2\10\256\4\210H6l\240\0268\0&\204\200\216\4\10@\4", 512) = 512
2907 lseek(3, 902284, SEEK_SET) = 902284
2907 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\7\0\0\0\2\0\0\0t\1\0\0t\1\0\0$\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\36\0\0\0\7\0\0\0\2\0\0\0\230\1\0\0\230\1\0\0 \0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0,\0\0\0\366\377\377o\2\0\0\0\270\1\0\0\270\1\0\0004:\0\0\4\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0006\0\0\0\v\0\0\0\2\0\0\0\354;\0\0\354;\0\0\20\212\0\0\5\0\0\0\3\0\0\0\4\0\0\0\20\0\0\0>\0\0\0\3\0\0\0\2\0\0\0\374\305\0\0\374\305\0\0\243Y\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0F\0\0\0\377\377\377o\2\0\0\0\240\37\1\0\240\37\1\0B\21\0\0\4\0\0\0\0\0\0\0\2\0\0\0\2\0\0\0S\0\0\0\375\377\377o\2\0\0\0\3440\1\0\3440\1\0T\2\0\0\5\0\0\0\21\0\0\0\4\0\0\0\0\0\0\0b\0\0\0\376\377\377o\2\0\0\00083\1\00083\1\0000\0\0\0\5\0\0\0\1\0\0\0\4\0\0\0\0\0\0\0q\0\0\0\t\0\0\0\2\0\0\0h3\1\0h3\1\0\0(\0\0\4\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0z\0\0\0\t\0\0\0B\0\0\0h[\1\0h[\1\0P\0\0\0\4\0\0\0\v\0\0\0\4\0\0\0\10\0\0\0~\0\0\0\1\0\0\0\6\0\0\0\270[\1\0\270[\1\0\224\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\203\0\0\0\1\0\0\0\6\0\0\0L\\\1\0L\\\1\0\20\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\211\0\0\0\1\0\0\0\6\0\0\0\200\\\1\0\200\\\1\0\0005\n\0\0\0\0\0\0\0\0\0@\0\0\0\0\0\0\0\217\0\0\0\1\0\0\0\6\0\0\0\200\221\v\0\200\221\v\0\270\t\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\241\0\0\0\1\0\0\0\6\0\0\0008\233\v\0008\233\v\0\200\1\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\272\0\0\0\1\0\0\0\2\0\0\0\270\234\v\0\270\234\v\0U\226\1\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0\302\0\0\0\1\0\0\0\2\0\0\0\r3\r\0\r3\r\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\320\0\0\0\1\0\0\0\2\0\0\0\0203\r\0\0203\r\0\34\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\330\0\0\0\1\0\0\0\2\0\0\0,3\r\0,3\r\0\264\v\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\343\0\0\0\1\0\0p\202\0\0\0\340>\r\0\340>\r\0000\24\0\0\r\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\356\0\0\0\1\0\0\0\2\0\0\0\20S\r\0\20S\r\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0000\0\0\0\5\0\0\0\2\0\0\0\24S\r\0\24S\r\0p2\0\0\4\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\370\0\0\0\1\0\0\0\3\4\0\0\340\206\16\0\340\206\r\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\377\0\0\0\10\0\0\0\3\4\0\0\350\206\16\0\350\206\r\0D\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0"..., 2960) = 2960
2907 lseek(3, 896524, SEEK_SET) = 896524
2907 read(3, "A4\0\0\0aeabi\0\1*\0\0\0\0057-A\0\6\n\7A\10\1\t\2\n\3\f\1\22\4\23\1\24\1\25\1\27\3\30\1\32\2\33\3\34\1\"\1", 53) = 53
2907 fstat64(3, {st_mode=S_IFREG|0755, st_size=905244, ...}) = 0
2907 mmap2(NULL, 972152, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb6dec000
2907 mprotect(0xb6ec5000, 61440, PROT_NONE) = 0
2907 mmap2(0xb6ed4000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd8000) = 0xb6ed4000
2907 mmap2(0xb6ed7000, 9592, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb6ed7000
2907 close(3) = 0
2907 open("tls/v7l/neon/vfp/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/neon/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/vfp/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/neon/vfp/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/neon/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/vfp/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/neon/vfp/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/neon/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/vfp/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("neon/vfp/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("neon/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("vfp/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2907 open("/lib/arm-linux-gnueabihf/libpcre.so.3", O_RDONLY|O_CLOEXEC) = 3
2907 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\254\17\0\0004\0\0\0P\261\4\0\2\4\0\0054\0 \0\6\0(\0\32\0\31\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\234\241\4\0\234\241\4\0\5\0\0\0\0\0\1\0\1\0\0\0\224\255\4\0\224\255\5\0\224\255\5\0\204\2\0\0\270\2\0\0\6\0\0\0\0\0\1\0\2\0\0\0(\256\4\0(\256\5\0(\256\5\0\10\1\0\0\10\1\0\0\6\0\0\0\4\0\0\0\4\0\0\0\364\0\0\0\364\0\0\0\364\0\0\0$\0\0\0$\0\0\0\4\0\0\0\4\0\0\0Q\345td\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\20\0\0\0R\345td\224\255\4\0\224\255\5\0\224\255\5\0l\2\0\0l\2\0\0\4\0\0\0\1\0\0\0\4\0\0\0\24\0\0\0\3\0\0\0GNU\0\365j\222\241Kf\273t\346a\305v0k\250R\316\7a\323%\0\0\0\36\0\0\0\10\0\0\0\10\0\0\0\3\200\t\200\302\245\30 (\200\0\1\304\320\321\32\0\202XH\32 E\217\200\10\2\1\242>\234\2\36\0\0\0 \0\0\0\0\0\0\0\0\0\0\0\"\0\0\0#\0\0\0$\0\0\0%\0\0\0\0\0\0\0&\0\0\0\0\0\0\0(\0\0\0)\0\0\0+\0\0\0\0\0\0\0\0\0\0\0-\0\0\0000\0\0\0002\0\0\0003\0\0\0\0\0\0\0\0\0\0\0004\0\0\0006\0\0\0007\0\0\0009\0\0\0<\0\0\0\0\0\0\0\0\0\0\0=\0\0\0?\0\0\0A\0\0\0\0\0\0\0B\0\0\0\0\0\0\0C\0\0\0E\0\0\0&\206t\2005\317\205\323\270\201\272\305\21\177\27\257\225\273q3\353\323\357\16\1\2574\350q\\\374\177\364\354\2212", 512) = 512
2907 lseek(3, 307536, SEEK_SET) = 307536
2907 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\7\0\0\0\2\0\0\0\364\0\0\0\364\0\0\0$\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\36\0\0\0\366\377\377o\2\0\0\0\30\1\0\0\30\1\0\0l\1\0\0\3\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0(\0\0\0\v\0\0\0\2\0\0\0\204\2\0\0\204\2\0\0\200\4\0\0\4\0\0\0\3\0\0\0\4\0\0\0\20\0\0\0000\0\0\0\3\0\0\0\2\0\0\0\4\7\0\0\4\7\0\0&\4\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0008\0\0\0\377\377\377o\2\0\0\0*\v\0\0*\v\0\0\220\0\0\0\3\0\0\0\0\0\0\0\2\0\0\0\2\0\0\0E\0\0\0\376\377\377o\2\0\0\0\274\v\0\0\274\v\0\0`\0\0\0\4\0\0\0\3\0\0\0\4\0\0\0\0\0\0\0T\0\0\0\t\0\0\0\2\0\0\0\34\f\0\0\34\f\0\0\310\1\0\0\3\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0]\0\0\0\t\0\0\0B\0\0\0\344\r\0\0\344\r\0\0\250\0\0\0\3\0\0\0\n\0\0\0\4\0\0\0\10\0\0\0f\0\0\0\1\0\0\0\6\0\0\0\214\16\0\0\214\16\0\0\f\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0a\0\0\0\1\0\0\0\6\0\0\0\230\16\0\0\230\16\0\0\24\1\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0l\0\0\0\1\0\0\0\6\0\0\0\254\17\0\0\254\17\0\0\360h\3\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0r\0\0\0\1\0\0\0\6\0\0\0\234x\3\0\234x\3\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0x\0\0\0\1\0\0\0\2\0\0\0\244x\3\0\244x\3\0\364(\1\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\200\0\0\0\1\0\0\0\2\0\0\0\230\241\4\0\230\241\4\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\212\0\0\0\16\0\0\0\3\0\0\0\224\255\5\0\224\255\4\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\226\0\0\0\17\0\0\0\3\0\0\0\230\255\5\0\230\255\4\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\242\0\0\0\1\0\0\0\3\0\0\0\234\255\5\0\234\255\4\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\247\0\0\0\1\0\0\0\3\0\0\0\240\255\5\0\240\255\4\0\210\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\264\0\0\0\6\0\0\0\3\0\0\0(\256\5\0(\256\4\0\10\1\0\0\4\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0\275\0\0\0\1\0\0\0\3\0\0\0000\257\5\0000\257\4\0\320\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\302\0\0\0\1\0\0\0\3\0\0\0\0\260\5\0\0\260\4\0\30\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\310\0\0\0\10\0\0\0\3\0\0\0\30\260\5\0\30\260\4\0004\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\315\0\0\0\3\0\0p\0\0\0\0\0\0\0\0\30\260\4\0003\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\335\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0K\260\4\0\30\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0"..., 1040) = 1040
2907 lseek(3, 307224, SEEK_SET) = 307224
2907 read(3, "A2\0\0\0aeabi\0\1(\0\0\0\0057-A\0\6\n\7A\10\1\t\2\n\4\22\4\24\1\25\1\27\3\30\1\31\1\32\2\33\3\34\1\"\1", 51) = 51
2907 fstat64(3, {st_mode=S_IFREG|0644, st_size=308576, ...}) = 0
2907 mmap2(NULL, 372812, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb6d90000
2907 mprotect(0xb6ddb000, 61440, PROT_NONE) = 0
2907 mmap2(0xb6dea000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4a000) = 0xb6dea000
2907 close(3) = 0
2907 open("tls/v7l/neon/vfp/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/neon/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/vfp/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/neon/vfp/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/neon/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/vfp/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/neon/vfp/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/neon/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/vfp/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("neon/vfp/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("neon/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("vfp/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2907 open("/lib/arm-linux-gnueabihf/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
2907 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0`\t\0\0004\0\0\0\320!\0\0\2\4\0\0054\0 \0\6\0(\0\34\0\33\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0000\24\0\0000\24\0\0\5\0\0\0\0\0\1\0\1\0\0\0\344\36\0\0\344\36\1\0\344\36\1\0\244\1\0\0\324\1\0\0\6\0\0\0\0\0\1\0\2\0\0\0\370\36\0\0\370\36\1\0\370\36\1\0\10\1\0\0\10\1\0\0\6\0\0\0\4\0\0\0\4\0\0\0\364\0\0\0\364\0\0\0\364\0\0\0D\0\0\0D\0\0\0\4\0\0\0\4\0\0\0Q\345td\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\20\0\0\0R\345td\344\36\0\0\344\36\1\0\344\36\1\0\34\1\0\0\34\1\0\0\4\0\0\0\1\0\0\0\4\0\0\0\24\0\0\0\3\0\0\0GNU\0,\232\177X\210H\241\315h\27\2\323y\10\275\225\250l^\r\4\0\0\0\20\0\0\0\1\0\0\0GNU\0\0\0\0\0\2\0\0\0\6\0\0\0 \0\0\0\22\0\0\0\35\0\0\0\4\0\0\0\7\0\0\0\230\0\21\0\0B\0\0\202\0\0\n\223(\0\330\35\0\0\0\0\0\0\0\36\0\0\0\0\0\0\0\0\0\0\0\37\0\0\0!\0\0\0#\0\0\0$\0\0\0%\0\0\0\0\0\0\0&\0\0\0\0\0\0\0'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\257\304M\17\221!\374\370\300S\200\30\331=l\366\224\263_\31\5\350\7\371\177\236\320\30a\242\222\6\353\26\251\30a\257\0\371\6\2\4\371\3733\373\17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0d\10\0\0\0\0\0\0\3\0\v\0\0\0\0\0\364\36\1\0\0\0\0\0\3\0\24\0", 512) = 512
2907 lseek(3, 8656, SEEK_SET) = 8656
2907 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\7\0\0\0\2\0\0\0\364\0\0\0\364\0\0\0$\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\36\0\0\0\7\0\0\0\2\0\0\0\30\1\0\0\30\1\0\0 \0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0,\0\0\0\366\377\377o\2\0\0\0008\1\0\0008\1\0\0\230\0\0\0\4\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0006\0\0\0\v\0\0\0\2\0\0\0\320\1\0\0\320\1\0\0\220\2\0\0\5\0\0\0\3\0\0\0\4\0\0\0\20\0\0\0>\0\0\0\3\0\0\0\2\0\0\0`\4\0\0`\4\0\0\355\1\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0F\0\0\0\377\377\377o\2\0\0\0N\6\0\0N\6\0\0R\0\0\0\4\0\0\0\0\0\0\0\2\0\0\0\2\0\0\0S\0\0\0\375\377\377o\2\0\0\0\240\6\0\0\240\6\0\0\\\0\0\0\5\0\0\0\3\0\0\0\4\0\0\0\0\0\0\0b\0\0\0\376\377\377o\2\0\0\0\374\6\0\0\374\6\0\0P\0\0\0\5\0\0\0\2\0\0\0\4\0\0\0\0\0\0\0q\0\0\0\t\0\0\0\2\0\0\0L\7\0\0L\7\0\0\220\0\0\0\4\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0z\0\0\0\t\0\0\0B\0\0\0\334\7\0\0\334\7\0\0\210\0\0\0\4\0\0\0\f\0\0\0\4\0\0\0\10\0\0\0\203\0\0\0\1\0\0\0\6\0\0\0d\10\0\0d\10\0\0\f\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0~\0\0\0\1\0\0\0\6\0\0\0p\10\0\0p\10\0\0\360\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\211\0\0\0\1\0\0\0\6\0\0\0`\t\0\0`\t\0\0\320\10\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\217\0\0\0\1\0\0\0\6\0\0\0000\22\0\0000\22\0\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\225\0\0\0\1\0\0\0002\0\0\0008\22\0\0008\22\0\0\200\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\1\0\0\0\235\0\0\0\1\0\0\0\2\0\0\0\270\22\0\0\270\22\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0000\0\0\0\5\0\0\0\2\0\0\0\274\22\0\0\274\22\0\0t\1\0\0\4\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\247\0\0\0\16\0\0\0\3\0\0\0\344\36\1\0\344\36\0\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\263\0\0\0\17\0\0\0\3\0\0\0\354\36\1\0\354\36\0\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\277\0\0\0\1\0\0\0\3\0\0\0\364\36\1\0\364\36\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\304\0\0\0\6\0\0\0\3\0\0\0\370\36\1\0\370\36\0\0\10\1\0\0\5\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0\315\0\0\0\1\0\0\0\3\0\0\0\0 \1\0\0 \0\0\204\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\322\0\0\0\1\0\0\0\3\0\0\0\204 \1\0\204 \0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\330\0\0\0\10\0\0\0\3\0\0\0\210 \1\0\210 \0\0000\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0"..., 1120) = 1120
2907 lseek(3, 8328, SEEK_SET) = 8328
2907 read(3, "A4\0\0\0aeabi\0\1*\0\0\0\0057-A\0\6\n\7A\10\1\t\2\n\4\22\4\23\1\24\1\25\1\27\3\30\1\31\1\32\2\33\3\34\1\"\1", 53) = 53
2907 fstat64(3, {st_mode=S_IFREG|0644, st_size=9776, ...}) = 0
2907 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6f49000
2907 mmap2(NULL, 73912, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb6d7d000
2907 mprotect(0xb6d7f000, 61440, PROT_NONE) = 0
2907 mmap2(0xb6d8e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0xb6d8e000
2907 close(3) = 0
2907 open("tls/v7l/neon/vfp/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/neon/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/vfp/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/v7l/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/neon/vfp/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/neon/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/vfp/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/neon/vfp/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/neon/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/vfp/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("v7l/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("neon/vfp/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("neon/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("vfp/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2907 open("/lib/arm-linux-gnueabihf/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
2907 read(3, "\177ELF\1\1\1\3\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0IF\0\0004\0\0\0\240\246\1\0\2\4\0\0054\0 \0\7\0(\0(\0%\0\1\0\0p \354\0\0 \354\0\0 \354\0\0\320\3\0\0\320\3\0\0\4\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\304\376\0\0\304\376\0\0\5\0\0\0\0\0\1\0\1\0\0\0\0\16\1\0\0\16\1\0\0\16\1\0\240\3\0\0H$\0\0\6\0\0\0\0\0\1\0\2\0\0\0\350\16\1\0\350\16\1\0\350\16\1\0\30\1\0\0\30\1\0\0\6\0\0\0\4\0\0\0\4\0\0\0\24\1\0\0\24\1\0\0\24\1\0\0D\0\0\0D\0\0\0\4\0\0\0\4\0\0\0Q\345td\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\20\0\0\0R\345td\0\16\1\0\0\16\1\0\0\16\1\0\0\2\0\0\0\2\0\0\4\0\0\0\1\0\0\0\4\0\0\0\24\0\0\0\3\0\0\0GNU\0\364\303}7\363,\275\271\246\337\377\264\314\vI\36\365k\\=\4\0\0\0\20\0\0\0\1\0\0\0GNU\0\0\0\0\0\2\0\0\0\6\0\0\0 \0\0\0\262\1\0\0[\0\0\0@\0\0\0\v\0\0\0\31!\2\221\1\n\20\"@H \331\3\0I4\200\0\0@\0 \200\200\221Q`\300@\22\213\0020D\0\0\20\1\0\n\0\0\5\0\200\n\220\1X\260\r\240\200\10 $\204\20B\242!m\10@\234V\20\0\224 \204$H\0X(\1\222\34\301B\240\220\22\10\f \2\30dA\245c\4@\n\32\3\0\0)\t(\314D\204\210\314\2\10\240\0\4\0\10\0\300Q\0\2009\4C\300\2248@\20\31\20\0\265\0 \0\200`\0\20 \0\3@\22!-\0P\10\211\22G", 512) = 512
2907 lseek(3, 108192, SEEK_SET) = 108192
2907 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\33\0\0\0\7\0\0\0\2\0\0\0\24\1\0\0\24\1\0\0$\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0.\0\0\0\7\0\0\0\2\0\0\0008\1\0\0008\1\0\0 \0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0<\0\0\0\366\377\377o\2\0\0\0X\1\0\0X\1\0\0|\v\0\0\4\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0F\0\0\0\v\0\0\0\2\0\0\0\324\f\0\0\324\f\0\0@\24\0\0\5\0\0\0\3\0\0\0\4\0\0\0\20\0\0\0N\0\0\0\3\0\0\0\2\0\0\0\24!\0\0\24!\0\0\251\23\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0V\0\0\0\377\377\377o\2\0\0\0\2764\0\0\2764\0\0\210\2\0\0\4\0\0\0\0\0\0\0\2\0\0\0\2\0\0\0c\0\0\0\375\377\377o\2\0\0\0H7\0\0H7\0\0\310\0\0\0\5\0\0\0\6\0\0\0\4\0\0\0\0\0\0\0r\0\0\0\376\377\377o\2\0\0\0\0208\0\0\0208\0\0`\0\0\0\5\0\0\0\2\0\0\0\4\0\0\0\0\0\0\0\201\0\0\0\t\0\0\0\2\0\0\0p8\0\0p8\0\0008\2\0\0\4\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0\212\0\0\0\t\0\0\0B\0\0\0\250:\0\0\250:\0\0h\2\0\0\4\0\0\0\f\0\0\0\4\0\0\0\10\0\0\0\223\0\0\0\1\0\0\0\6\0\0\0\20=\0\0\20=\0\0\f\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\216\0\0\0\1\0\0\0\6\0\0\0\34=\0\0\34=\0\0\324\3\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\231\0\0\0\1\0\0\0\6\0\0\0\360@\0\0\360@\0\0d\237\0\0\0\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\237\0\0\0\1\0\0\0\6\0\0\0T\340\0\0T\340\0\0D\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\261\0\0\0\1\0\0\0\6\0\0\0\230\340\0\0\230\340\0\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\267\0\0\0\1\0\0\0\2\0\0\0\240\340\0\0\240\340\0\0\204\t\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\277\0\0\0\1\0\0\0\2\0\0\0$\352\0\0$\352\0\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\315\0\0\0\1\0\0\0\2\0\0\0(\352\0\0(\352\0\0\370\1\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\330\0\0\0\1\0\0p\202\0\0\0 \354\0\0 \354\0\0\320\3\0\0\r\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\343\0\0\0\1\0\0\0\2\0\0\0\360\357\0\0\360\357\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0@\0\0\0\5\0\0\0\2\0\0\0\364\357\0\0\364\357\0\0\320\16\0\0\4\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\355\0\0\0\16\0\0\0\3\0\0\0\0\16\1\0\0\16\1\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\371\0\0\0\17\0\0\0\3\0\0\0\4\16\1\0\4\16\1\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\5\1\0\0\1\0\0\0\3\0\0\0\10\16\1\0\10\16\1\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0"..., 1600) = 1600
2907 lseek(3, 70048, SEEK_SET) = 70048
2907 read(3, "A4\0\0\0aeabi\0\1*\0\0\0\0057-A\0\6\n\7A\10\1\t\2\n\4\22\4\23\1\24\1\25\1\27\3\30\1\31\1\32\2\33\3\34\1\"\1", 53) = 53
2907 fstat64(3, {st_mode=S_IFREG|0755, st_size=109792, ...}) = 0
2907 mmap2(NULL, 78408, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb6d69000
2907 mmap2(0xb6d79000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x10000) = 0xb6d79000
2907 mmap2(0xb6d7b000, 4680, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb6d7b000
2907 close(3) = 0
2907 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6f48000
2907 set_tls(0xb6f484c0, 0xb6f48c18, 0xb6f53050, 0xb6f484c0, 0xb6f53050) = 0
2907 mprotect(0xb6ed4000, 8192, PROT_READ) = 0
2907 mprotect(0xb6d79000, 4096, PROT_READ) = 0
2907 mprotect(0xb6d8e000, 4096, PROT_READ) = 0
2907 mprotect(0xb6dea000, 4096, PROT_READ) = 0
2907 mprotect(0xb6eec000, 4096, PROT_READ) = 0
2907 mprotect(0xb6f02000, 4096, PROT_READ) = 0
2907 mprotect(0xb6f28000, 4096, PROT_READ) = 0
2907 mprotect(0x35000, 4096, PROT_READ) = 0
2907 mprotect(0xb6f52000, 4096, PROT_READ) = 0
2907 munmap(0xb6f4b000, 14802) = 0
2907 set_tid_address(0xb6f48068) = 2907
2907 set_robust_list(0xb6f48070, 12) = 0
2907 rt_sigaction(SIGRTMIN, {0xb6d6d1d5, [], SA_SIGINFO|0x4000000}, NULL, 8) = 0
2907 rt_sigaction(SIGRT_1, {0xb6d6d275, [], SA_RESTART|SA_SIGINFO|0x4000000}, NULL, 8) = 0
2907 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
2907 getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM_INFINITY}) = 0
2907 statfs64("/sys/fs/selinux", 88, 0xbec62980) = -1 ENOENT (No such file or directory)
2907 statfs64("/selinux", 88, 0xbec62980) = -1 ENOENT (No such file or directory)
2907 brk(0) = 0x37000
2907 brk(0x58000) = 0x58000
2907 open("/proc/filesystems", O_RDONLY|O_LARGEFILE) = 3
2907 fstat64(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
2907 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6f4e000
2907 read(3, "nodev\tsysfs\nnodev\trootfs\nnodev\tbdev\nnodev\tproc\nnodev\tcgroup\nnodev\tcpuset\nnodev\ttmpfs\nnodev\tdevtmpfs\nnodev\tbinfmt_misc\nnodev\tdebugfs\nnodev\tsecurityfs\nnodev\tsockfs\nnodev\tpipefs\nnodev\tanon_inodefs\nnodev\tconfigfs\nnodev\tdevpts\n\text3\n\text2\n\text4\n\tcramfs\nnodev\tramfs\n\tvfat\n\tmsdos\nnodev\tautofs\n\tfuseblk\nnodev\tfuse\nnodev\tfusectl\nnodev\taufs\nnodev\tmqueue\nnodev\tmtd_inodefs\n", 1024) = 362
2907 read(3, "", 1024) = 0
2907 close(3) = 0
2907 munmap(0xb6f4e000, 4096) = 0
2907 open("/usr/lib/locale/locale-archive", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("/usr/share/locale/locale.alias", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2907 open("/usr/lib/locale/C.UTF-8/LC_IDENTIFICATION", O_RDONLY|O_CLOEXEC) = 3
2907 fstat64(3, {st_mode=S_IFREG|0644, st_size=168, ...}) = 0
2907 mmap2(NULL, 168, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6f4e000
2907 close(3) = 0
2907 open("/usr/lib/arm-linux-gnueabihf/gconv/gconv-modules.cache", O_RDONLY) = 3
2907 fstat64(3, {st_mode=S_IFREG|0644, st_size=26262, ...}) = 0
2907 mmap2(NULL, 26262, PROT_READ, MAP_SHARED, 3, 0) = 0xb6d62000
2907 close(3) = 0
2907 futex(0xb6ed6ee8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
2907 open("/usr/lib/locale/C.UTF-8/LC_MEASUREMENT", O_RDONLY|O_CLOEXEC) = 3
2907 fstat64(3, {st_mode=S_IFREG|0644, st_size=23, ...}) = 0
2907 mmap2(NULL, 23, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6f4d000
2907 close(3) = 0
2907 open("/usr/lib/locale/C.UTF-8/LC_TELEPHONE", O_RDONLY|O_CLOEXEC) = 3
2907 fstat64(3, {st_mode=S_IFREG|0644, st_size=47, ...}) = 0
2907 mmap2(NULL, 47, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6f4c000
2907 close(3) = 0
2907 open("/usr/lib/locale/C.UTF-8/LC_ADDRESS", O_RDONLY|O_CLOEXEC) = 3
2907 fstat64(3, {st_mode=S_IFREG|0644, st_size=131, ...}) = 0
2907 mmap2(NULL, 131, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6f4b000
2907 close(3) = 0
2907 open("/usr/lib/locale/C.UTF-8/LC_NAME", O_RDONLY|O_CLOEXEC) = 3
2907 fstat64(3, {st_mode=S_IFREG|0644, st_size=62, ...}) = 0
2907 mmap2(NULL, 62, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6f47000
2907 close(3) = 0
2907 open("/usr/lib/locale/C.UTF-8/LC_PAPER", O_RDONLY|O_CLOEXEC) = 3
2907 fstat64(3, {st_mode=S_IFREG|0644, st_size=34, ...}) = 0
2907 mmap2(NULL, 34, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6f46000
2907 close(3) = 0
2907 open("/usr/lib/locale/C.UTF-8/LC_MESSAGES", O_RDONLY|O_CLOEXEC) = 3
2907 fstat64(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
2907 close(3) = 0
2907 open("/usr/lib/locale/C.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES", O_RDONLY|O_CLOEXEC) = 3
2907 fstat64(3, {st_mode=S_IFREG|0644, st_size=48, ...}) = 0
2907 mmap2(NULL, 48, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6f45000
2907 close(3) = 0
2907 open("/usr/lib/locale/C.UTF-8/LC_MONETARY", O_RDONLY|O_CLOEXEC) = 3
2907 fstat64(3, {st_mode=S_IFREG|0644, st_size=270, ...}) = 0
2907 mmap2(NULL, 270, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6f44000
2907 close(3) = 0
2907 open("/usr/lib/locale/C.UTF-8/LC_COLLATE", O_RDONLY|O_CLOEXEC) = 3
2907 fstat64(3, {st_mode=S_IFREG|0644, st_size=1501202, ...}) = 0
2907 mmap2(NULL, 1501202, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6bf3000
2907 close(3) = 0
2907 open("/usr/lib/locale/C.UTF-8/LC_TIME", O_RDONLY|O_CLOEXEC) = 3
2907 fstat64(3, {st_mode=S_IFREG|0644, st_size=2454, ...}) = 0
2907 mmap2(NULL, 2454, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6f43000
2907 close(3) = 0
2907 open("/usr/lib/locale/C.UTF-8/LC_NUMERIC", O_RDONLY|O_CLOEXEC) = 3
2907 fstat64(3, {st_mode=S_IFREG|0644, st_size=50, ...}) = 0
2907 mmap2(NULL, 50, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6bf2000
2907 close(3) = 0
2907 open("/usr/lib/locale/C.UTF-8/LC_CTYPE", O_RDONLY|O_CLOEXEC) = 3
2907 fstat64(3, {st_mode=S_IFREG|0644, st_size=151984, ...}) = 0
2907 mmap2(NULL, 151984, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6bcc000
2907 close(3) = 0
2907 geteuid32() = 0
2907 stat64("/var/lib/apps/spreed-webrtc.sideload/0.0.1/server.conf.new", {st_mode=S_IFREG|0644, st_size=9877, ...}) = 0
2907 stat64("/apps/spreed-webrtc.sideload/0.0.1/etc/spreed/webrtc.conf", {st_mode=S_IFREG|0644, st_size=9877, ...}) = 0
2907 stat64("/var/lib/apps/spreed-webrtc.sideload/0.0.1/server.conf.new", {st_mode=S_IFREG|0644, st_size=9877, ...}) = 0
2907 open("/apps/spreed-webrtc.sideload/0.0.1/etc/spreed/webrtc.conf", O_RDONLY|O_LARGEFILE) = 3
2907 fstat64(3, {st_mode=S_IFREG|0644, st_size=9877, ...}) = 0
2907 open("/var/lib/apps/spreed-webrtc.sideload/0.0.1/server.conf.new", O_WRONLY|O_TRUNC|O_LARGEFILE) = 4
2907 fstat64(4, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
2907 fadvise64_64(3, 0, 0, POSIX_FADV_SEQUENTIAL) = 0
2907 mmap2(NULL, 139264, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6baa000
2907 read(3, "; Spreed WebRTC server example configuration\n\n[http]\n; HTTP listener in format ip:port.\nlisten = 127.0.0.1:8080\n; Full path to directory where to find the server web assets.\nroot = /usr/share/spreed-webrtc-server/www\n; HTTP socket read timeout in seconds.\n;readtimeout = 10\n; HTTP socket write timeout in seconds.\n;writetimeout = 10\n; Use basePath if the server does not run on the root path (/) of your server.\n;basePath = /some/sub/path/\n; Set maximum number of open files (only works when run as root).\n;maxfd = 32768\n; Enable stats API /api/v1/stats for debugging (not for production use!).\n;stats = false\n; Enable HTTP listener for golang pprof module. See\n; http://golang.org/pkg/net/http/pprof/ for details.\n;pprofListen = 127.0.0.1:6060\n\n[https]\n; Native HTTPS listener in format ip:port.\n;listen = 127.0.0.1:8443\n; Full path to PEM encoded certificate chain.\n;certificate = server.crt\n; Full path to PEM encoded private key.\n;key = server.key\n; Mimimal supported encryption standard (SSLv3,"..., 131072) = 9877
2907 write(4, "; Spreed WebRTC server example configuration\n\n[http]\n; HTTP listener in format ip:port.\nlisten = 127.0.0.1:8080\n; Full path to directory where to find the server web assets.\nroot = /usr/share/spreed-webrtc-server/www\n; HTTP socket read timeout in seconds.\n;readtimeout = 10\n; HTTP socket write timeout in seconds.\n;writetimeout = 10\n; Use basePath if the server does not run on the root path (/) of your server.\n;basePath = /some/sub/path/\n; Set maximum number of open files (only works when run as root).\n;maxfd = 32768\n; Enable stats API /api/v1/stats for debugging (not for production use!).\n;stats = false\n; Enable HTTP listener for golang pprof module. See\n; http://golang.org/pkg/net/http/pprof/ for details.\n;pprofListen = 127.0.0.1:6060\n\n[https]\n; Native HTTPS listener in format ip:port.\n;listen = 127.0.0.1:8443\n; Full path to PEM encoded certificate chain.\n;certificate = server.crt\n; Full path to PEM encoded private key.\n;key = server.key\n; Mimimal supported encryption standard (SSLv3,"..., 9877) = 9877
2907 read(3, "", 131072) = 0
2907 close(4) = 0
2907 close(3) = 0
2907 munmap(0xb6baa000, 139264) = 0
2907 _llseek(0, 0, [0], SEEK_CUR) = 0
2907 close(0) = 0
2907 close(1) = 0
2907 close(2) = 0
2907 exit_group(0) = ?
2907 +++ exited with 0 +++
2906 <... wait4 resumed> [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 2907
2906 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=2907, si_status=0, si_utime=1, si_stime=1} ---
2906 sigreturn() (mask []) = 2907
2906 write(1, "1\n", 2) = 2
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/bin/sed", 0xbeaca5f8) = -1 ENOENT (No such file or directory)
2906 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/bin/sed", 0xbeaca5f8) = -1 ENOENT (No such file or directory)
2906 stat64("/usr/local/sbin/sed", 0xbeaca5f8) = -1 ENOENT (No such file or directory)
2906 stat64("/usr/local/bin/sed", 0xbeaca5f8) = -1 ENOENT (No such file or directory)
2906 stat64("/usr/sbin/sed", 0xbeaca5f8) = -1 ENOENT (No such file or directory)
2906 stat64("/usr/bin/sed", 0xbeaca5f8) = -1 ENOENT (No such file or directory)
2906 stat64("/sbin/sed", 0xbeaca5f8) = -1 ENOENT (No such file or directory)
2906 stat64("/bin/sed", {st_mode=S_IFREG|0755, st_size=43212, ...}) = 0
2906 clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb6f77068) = 2908
2908 close(10 <unfinished ...>
2906 wait4(-1, <unfinished ...>
2908 <... close resumed> ) = 0
2908 execve("/bin/sed", ["sed", "-i", "s|root = .*|root = /apps/spreed-webrtc.sideload/0.0.1/usr/share/spreed-webrtc-server/www|", "/var/lib/apps/spreed-webrtc.sideload/0.0.1/server.conf.new"], [/* 21 vars */]) = 0
2908 brk(0) = 0x20000
2908 uname({sys="Linux", node="odroid", ...}) = 0
2908 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2908 mmap2(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6ff5000
2908 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l/neon/vfp", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l/neon", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l/vfp", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/v7l", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/neon/vfp", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/neon", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/vfp", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/lib/tls/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/tls", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l/neon/vfp", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l/neon", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l/vfp", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/v7l", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/lib/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/neon/vfp", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/lib/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/neon", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/lib/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib/vfp", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/lib/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/lib", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l/neon/vfp", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l/neon", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l/vfp", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/v7l", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/neon/vfp", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/neon", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/vfp", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/tls", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l/neon/vfp", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l/neon", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l/vfp", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/v7l", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/neon/vfp", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/neon", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/vfp", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("/apps/spreed-webrtc.sideload/0.0.1/usr/lib/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 stat64("/apps/spreed-webrtc.sideload/0.0.1/usr/lib", 0xbeb54168) = -1 ENOENT (No such file or directory)
2908 open("tls/v7l/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/v7l/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/v7l/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/v7l/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("v7l/neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("v7l/neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("v7l/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("v7l/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("neon/vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("neon/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("vfp/libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("libselinux.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
2908 fstat64(3, {st_mode=S_IFREG|0644, st_size=14802, ...}) = 0
2908 mmap2(NULL, 14802, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6ff1000
2908 close(3) = 0
2908 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2908 open("/lib/arm-linux-gnueabihf/libselinux.so.1", O_RDONLY|O_CLOEXEC) = 3
2908 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0pD\0\0004\0\0\0\314S\1\0\2\4\0\0054\0 \0\7\0(\0\34\0\33\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0lF\1\0lF\1\0\5\0\0\0\0\0\1\0\1\0\0\0\264N\1\0\264N\2\0\264N\2\0\270\3\0\0008\35\0\0\6\0\0\0\0\0\1\0\2\0\0\0\0O\1\0\0O\2\0\0O\2\0\0\1\0\0\0\1\0\0\6\0\0\0\4\0\0\0\4\0\0\0\24\1\0\0\24\1\0\0\24\1\0\0$\0\0\0$\0\0\0\4\0\0\0\4\0\0\0\7\0\0\0\264N\1\0\264N\2\0\264N\2\0\24\0\0\0x\0\0\0\4\0\0\0\4\0\0\0Q\345td\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\20\0\0\0R\345td\264N\1\0\264N\2\0\264N\2\0L\1\0\0L\1\0\0\4\0\0\0\1\0\0\0\4\0\0\0\24\0\0\0\3\0\0\0GNU\0\4\2:\203\307\313\304$w\276\356\217\r\21\27H\317\316R\207\305\0\0\0\177\0\0\0@\0\0\0\v\0\0\0\270 \4\200\0H\0\3\"\30@JU\0\356\320\2\4h\nT\26\0\4\20\210\4\0\0\305@\1\0\16\1\20P&\30hH \220+\30\10\22\t\0\4!\4\21(\217\7\240\340@Q\10\30\0\20\0B\24\234\4\21\1\6\33\1\23\r \20\v\302\10\1H\220\n\2\0\211j\207D\201\"\10\340\202\200\2*\204\202@\200\0\0\0Q\10\4\0\2\220:\0!\246\10\5\1\236\204\4\0@\0\24\0F\n\0\240\0\0`\20t\1@\204\0\20\4\340\24\20\234\10\204\0@\0\200\10@\6\7\200\0\200\200\1\n\10\0\2\0\0\200\233\1\4\306\24\223(\0\200\0\10\0\1@\2\1", 512) = 512
2908 lseek(3, 86988, SEEK_SET) = 86988
2908 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\7\0\0\0\2\0\0\0\24\1\0\0\24\1\0\0$\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\36\0\0\0\366\377\377o\2\0\0\0008\1\0\0008\1\0\0\314\7\0\0\3\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0(\0\0\0\v\0\0\0\2\0\0\0\4\t\0\0\4\t\0\0\220\26\0\0\4\0\0\0\3\0\0\0\4\0\0\0\20\0\0\0000\0\0\0\3\0\0\0\2\0\0\0\224\37\0\0\224\37\0\0\f\27\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0008\0\0\0\377\377\377o\2\0\0\0\2406\0\0\2406\0\0\322\2\0\0\3\0\0\0\0\0\0\0\2\0\0\0\2\0\0\0E\0\0\0\376\377\377o\2\0\0\0t9\0\0t9\0\0\200\0\0\0\4\0\0\0\3\0\0\0\4\0\0\0\0\0\0\0T\0\0\0\t\0\0\0\2\0\0\0\3649\0\0\3649\0\0008\1\0\0\3\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0]\0\0\0\t\0\0\0B\0\0\0,;\0\0,;\0\0\240\3\0\0\3\0\0\0\n\0\0\0\4\0\0\0\10\0\0\0f\0\0\0\1\0\0\0\6\0\0\0\314>\0\0\314>\0\0\f\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0a\0\0\0\1\0\0\0\6\0\0\0\330>\0\0\330>\0\0\230\5\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0l\0\0\0\1\0\0\0\6\0\0\0pD\0\0pD\0\0l\317\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0r\0\0\0\1\0\0\0\6\0\0\0\334\23\1\0\334\23\1\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0x\0\0\0\1\0\0\0\2\0\0\0\344\23\1\0\344\23\1\0\2042\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\200\0\0\0\1\0\0\0\2\0\0\0hF\1\0hF\1\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\212\0\0\0\1\0\0\0\3\4\0\0\264N\2\0\264N\1\0\24\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\221\0\0\0\10\0\0\0\3\4\0\0\310N\2\0\310N\1\0d\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\227\0\0\0\16\0\0\0\3\0\0\0\310N\2\0\310N\1\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\243\0\0\0\17\0\0\0\3\0\0\0\320N\2\0\320N\1\0\30\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\257\0\0\0\1\0\0\0\3\0\0\0\350N\2\0\350N\1\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\264\0\0\0\1\0\0\0\3\0\0\0\354N\2\0\354N\1\0\24\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\301\0\0\0\6\0\0\0\3\0\0\0\0O\2\0\0O\1\0\0\1\0\0\4\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0\312\0\0\0\1\0\0\0\3\0\0\0\0P\2\0\0P\1\0,\2\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\317\0\0\0\1\0\0\0\3\0\0\0,R\2\0,R\1\0@\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\325\0\0\0\10\0\0\0\3\0\0\0lR\2\0lR\1\0\200\31\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0"..., 1120) = 1120
2908 lseek(3, 86636, SEEK_SET) = 86636
2908 read(3, "A2\0\0\0aeabi\0\1(\0\0\0\0057-A\0\6\n\7A\10\1\t\2\n\4\22\4\24\1\25\1\27\3\30\1\31\1\32\2\33\3\34\1\"\1", 51) = 51
2908 fstat64(3, {st_mode=S_IFREG|0644, st_size=88108, ...}) = 0
2908 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6ff0000
2908 mmap2(NULL, 158700, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb6faa000
2908 mprotect(0xb6fbf000, 61440, PROT_NONE) = 0
2908 mmap2(0xb6fce000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14000) = 0xb6fce000
2908 mmap2(0xb6fd0000, 3052, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb6fd0000
2908 close(3) = 0
2908 open("tls/v7l/neon/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/v7l/neon/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/v7l/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/v7l/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/neon/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/neon/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("v7l/neon/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("v7l/neon/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("v7l/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("v7l/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("neon/vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("neon/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("vfp/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2908 open("/lib/arm-linux-gnueabihf/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
2908 read(3, "\177ELF\1\1\1\3\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\255h\1\0004\0\0\0\214\304\r\0\2\4\0\0054\0 \0\n\0(\0J\0I\0\1\0\0p\340>\r\0\340>\r\0\340>\r\0000\24\0\0000\24\0\0\4\0\0\0\4\0\0\0\6\0\0\0004\0\0\0004\0\0\0004\0\0\0@\1\0\0@\1\0\0\5\0\0\0\4\0\0\0\3\0\0\0\0203\r\0\0203\r\0\0203\r\0\34\0\0\0\34\0\0\0\4\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\204\205\r\0\204\205\r\0\5\0\0\0\0\0\1\0\1\0\0\0\340\206\r\0\340\206\16\0\340\206\16\0,'\0\0\230N\0\0\6\0\0\0\0\0\1\0\2\0\0\0 \237\r\0 \237\16\0 \237\16\0\340\0\0\0\340\0\0\0\6\0\0\0\4\0\0\0\4\0\0\0t\1\0\0t\1\0\0t\1\0\0D\0\0\0D\0\0\0\4\0\0\0\4\0\0\0\7\0\0\0\340\206\r\0\340\206\16\0\340\206\16\0\10\0\0\0L\0\0\0\4\0\0\0\4\0\0\0Q\345td\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\20\0\0\0R\345td\340\206\r\0\340\206\16\0\340\206\16\0 \31\0\0 \31\0\0\4\0\0\0\1\0\0\0\4\0\0\0\24\0\0\0\3\0\0\0GNU\0&\210G)\250\243Fu\361>\363\3722j\24\254\325\v\366\234\4\0\0\0\20\0\0\0\1\0\0\0GNU\0\0\0\0\0\2\0\0\0\6\0\0\0 \0\0\0\363\3\0\0\v\0\0\0\0\2\0\0\16\0\0\0\2440\20D\204!\n\1\214\3\346\220AE\210\0\204\0\10\0E\200\0`\300\200\0\f\212\f\0\0010\0\10@2\10\256\4\210H6l\240\0268\0&\204\200\216\4\10@\4", 512) = 512
2908 lseek(3, 902284, SEEK_SET) = 902284
2908 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\7\0\0\0\2\0\0\0t\1\0\0t\1\0\0$\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\36\0\0\0\7\0\0\0\2\0\0\0\230\1\0\0\230\1\0\0 \0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0,\0\0\0\366\377\377o\2\0\0\0\270\1\0\0\270\1\0\0004:\0\0\4\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0006\0\0\0\v\0\0\0\2\0\0\0\354;\0\0\354;\0\0\20\212\0\0\5\0\0\0\3\0\0\0\4\0\0\0\20\0\0\0>\0\0\0\3\0\0\0\2\0\0\0\374\305\0\0\374\305\0\0\243Y\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0F\0\0\0\377\377\377o\2\0\0\0\240\37\1\0\240\37\1\0B\21\0\0\4\0\0\0\0\0\0\0\2\0\0\0\2\0\0\0S\0\0\0\375\377\377o\2\0\0\0\3440\1\0\3440\1\0T\2\0\0\5\0\0\0\21\0\0\0\4\0\0\0\0\0\0\0b\0\0\0\376\377\377o\2\0\0\00083\1\00083\1\0000\0\0\0\5\0\0\0\1\0\0\0\4\0\0\0\0\0\0\0q\0\0\0\t\0\0\0\2\0\0\0h3\1\0h3\1\0\0(\0\0\4\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0z\0\0\0\t\0\0\0B\0\0\0h[\1\0h[\1\0P\0\0\0\4\0\0\0\v\0\0\0\4\0\0\0\10\0\0\0~\0\0\0\1\0\0\0\6\0\0\0\270[\1\0\270[\1\0\224\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\203\0\0\0\1\0\0\0\6\0\0\0L\\\1\0L\\\1\0\20\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\211\0\0\0\1\0\0\0\6\0\0\0\200\\\1\0\200\\\1\0\0005\n\0\0\0\0\0\0\0\0\0@\0\0\0\0\0\0\0\217\0\0\0\1\0\0\0\6\0\0\0\200\221\v\0\200\221\v\0\270\t\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\241\0\0\0\1\0\0\0\6\0\0\0008\233\v\0008\233\v\0\200\1\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\272\0\0\0\1\0\0\0\2\0\0\0\270\234\v\0\270\234\v\0U\226\1\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0\302\0\0\0\1\0\0\0\2\0\0\0\r3\r\0\r3\r\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\320\0\0\0\1\0\0\0\2\0\0\0\0203\r\0\0203\r\0\34\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\330\0\0\0\1\0\0\0\2\0\0\0,3\r\0,3\r\0\264\v\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\343\0\0\0\1\0\0p\202\0\0\0\340>\r\0\340>\r\0000\24\0\0\r\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\356\0\0\0\1\0\0\0\2\0\0\0\20S\r\0\20S\r\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0000\0\0\0\5\0\0\0\2\0\0\0\24S\r\0\24S\r\0p2\0\0\4\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\370\0\0\0\1\0\0\0\3\4\0\0\340\206\16\0\340\206\r\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\377\0\0\0\10\0\0\0\3\4\0\0\350\206\16\0\350\206\r\0D\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0"..., 2960) = 2960
2908 lseek(3, 896524, SEEK_SET) = 896524
2908 read(3, "A4\0\0\0aeabi\0\1*\0\0\0\0057-A\0\6\n\7A\10\1\t\2\n\3\f\1\22\4\23\1\24\1\25\1\27\3\30\1\32\2\33\3\34\1\"\1", 53) = 53
2908 fstat64(3, {st_mode=S_IFREG|0755, st_size=905244, ...}) = 0
2908 mmap2(NULL, 972152, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb6ebc000
2908 mprotect(0xb6f95000, 61440, PROT_NONE) = 0
2908 mmap2(0xb6fa4000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd8000) = 0xb6fa4000
2908 mmap2(0xb6fa7000, 9592, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb6fa7000
2908 close(3) = 0
2908 open("tls/v7l/neon/vfp/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/v7l/neon/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/v7l/vfp/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/v7l/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/neon/vfp/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/neon/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/vfp/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("v7l/neon/vfp/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("v7l/neon/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("v7l/vfp/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("v7l/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("neon/vfp/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("neon/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("vfp/libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("libpcre.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2908 open("/lib/arm-linux-gnueabihf/libpcre.so.3", O_RDONLY|O_CLOEXEC) = 3
2908 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\254\17\0\0004\0\0\0P\261\4\0\2\4\0\0054\0 \0\6\0(\0\32\0\31\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\234\241\4\0\234\241\4\0\5\0\0\0\0\0\1\0\1\0\0\0\224\255\4\0\224\255\5\0\224\255\5\0\204\2\0\0\270\2\0\0\6\0\0\0\0\0\1\0\2\0\0\0(\256\4\0(\256\5\0(\256\5\0\10\1\0\0\10\1\0\0\6\0\0\0\4\0\0\0\4\0\0\0\364\0\0\0\364\0\0\0\364\0\0\0$\0\0\0$\0\0\0\4\0\0\0\4\0\0\0Q\345td\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\20\0\0\0R\345td\224\255\4\0\224\255\5\0\224\255\5\0l\2\0\0l\2\0\0\4\0\0\0\1\0\0\0\4\0\0\0\24\0\0\0\3\0\0\0GNU\0\365j\222\241Kf\273t\346a\305v0k\250R\316\7a\323%\0\0\0\36\0\0\0\10\0\0\0\10\0\0\0\3\200\t\200\302\245\30 (\200\0\1\304\320\321\32\0\202XH\32 E\217\200\10\2\1\242>\234\2\36\0\0\0 \0\0\0\0\0\0\0\0\0\0\0\"\0\0\0#\0\0\0$\0\0\0%\0\0\0\0\0\0\0&\0\0\0\0\0\0\0(\0\0\0)\0\0\0+\0\0\0\0\0\0\0\0\0\0\0-\0\0\0000\0\0\0002\0\0\0003\0\0\0\0\0\0\0\0\0\0\0004\0\0\0006\0\0\0007\0\0\0009\0\0\0<\0\0\0\0\0\0\0\0\0\0\0=\0\0\0?\0\0\0A\0\0\0\0\0\0\0B\0\0\0\0\0\0\0C\0\0\0E\0\0\0&\206t\2005\317\205\323\270\201\272\305\21\177\27\257\225\273q3\353\323\357\16\1\2574\350q\\\374\177\364\354\2212", 512) = 512
2908 lseek(3, 307536, SEEK_SET) = 307536
2908 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\7\0\0\0\2\0\0\0\364\0\0\0\364\0\0\0$\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\36\0\0\0\366\377\377o\2\0\0\0\30\1\0\0\30\1\0\0l\1\0\0\3\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0(\0\0\0\v\0\0\0\2\0\0\0\204\2\0\0\204\2\0\0\200\4\0\0\4\0\0\0\3\0\0\0\4\0\0\0\20\0\0\0000\0\0\0\3\0\0\0\2\0\0\0\4\7\0\0\4\7\0\0&\4\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0008\0\0\0\377\377\377o\2\0\0\0*\v\0\0*\v\0\0\220\0\0\0\3\0\0\0\0\0\0\0\2\0\0\0\2\0\0\0E\0\0\0\376\377\377o\2\0\0\0\274\v\0\0\274\v\0\0`\0\0\0\4\0\0\0\3\0\0\0\4\0\0\0\0\0\0\0T\0\0\0\t\0\0\0\2\0\0\0\34\f\0\0\34\f\0\0\310\1\0\0\3\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0]\0\0\0\t\0\0\0B\0\0\0\344\r\0\0\344\r\0\0\250\0\0\0\3\0\0\0\n\0\0\0\4\0\0\0\10\0\0\0f\0\0\0\1\0\0\0\6\0\0\0\214\16\0\0\214\16\0\0\f\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0a\0\0\0\1\0\0\0\6\0\0\0\230\16\0\0\230\16\0\0\24\1\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0l\0\0\0\1\0\0\0\6\0\0\0\254\17\0\0\254\17\0\0\360h\3\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0r\0\0\0\1\0\0\0\6\0\0\0\234x\3\0\234x\3\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0x\0\0\0\1\0\0\0\2\0\0\0\244x\3\0\244x\3\0\364(\1\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\200\0\0\0\1\0\0\0\2\0\0\0\230\241\4\0\230\241\4\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\212\0\0\0\16\0\0\0\3\0\0\0\224\255\5\0\224\255\4\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\226\0\0\0\17\0\0\0\3\0\0\0\230\255\5\0\230\255\4\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\242\0\0\0\1\0\0\0\3\0\0\0\234\255\5\0\234\255\4\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\247\0\0\0\1\0\0\0\3\0\0\0\240\255\5\0\240\255\4\0\210\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\264\0\0\0\6\0\0\0\3\0\0\0(\256\5\0(\256\4\0\10\1\0\0\4\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0\275\0\0\0\1\0\0\0\3\0\0\0000\257\5\0000\257\4\0\320\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\302\0\0\0\1\0\0\0\3\0\0\0\0\260\5\0\0\260\4\0\30\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\310\0\0\0\10\0\0\0\3\0\0\0\30\260\5\0\30\260\4\0004\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\315\0\0\0\3\0\0p\0\0\0\0\0\0\0\0\30\260\4\0003\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\335\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0K\260\4\0\30\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0"..., 1040) = 1040
2908 lseek(3, 307224, SEEK_SET) = 307224
2908 read(3, "A2\0\0\0aeabi\0\1(\0\0\0\0057-A\0\6\n\7A\10\1\t\2\n\4\22\4\24\1\25\1\27\3\30\1\31\1\32\2\33\3\34\1\"\1", 51) = 51
2908 fstat64(3, {st_mode=S_IFREG|0644, st_size=308576, ...}) = 0
2908 mmap2(NULL, 372812, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb6e60000
2908 mprotect(0xb6eab000, 61440, PROT_NONE) = 0
2908 mmap2(0xb6eba000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4a000) = 0xb6eba000
2908 close(3) = 0
2908 open("tls/v7l/neon/vfp/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/v7l/neon/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/v7l/vfp/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/v7l/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/neon/vfp/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/neon/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/vfp/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("v7l/neon/vfp/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("v7l/neon/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("v7l/vfp/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("v7l/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("neon/vfp/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("neon/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("vfp/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2908 open("/lib/arm-linux-gnueabihf/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
2908 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0`\t\0\0004\0\0\0\320!\0\0\2\4\0\0054\0 \0\6\0(\0\34\0\33\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0000\24\0\0000\24\0\0\5\0\0\0\0\0\1\0\1\0\0\0\344\36\0\0\344\36\1\0\344\36\1\0\244\1\0\0\324\1\0\0\6\0\0\0\0\0\1\0\2\0\0\0\370\36\0\0\370\36\1\0\370\36\1\0\10\1\0\0\10\1\0\0\6\0\0\0\4\0\0\0\4\0\0\0\364\0\0\0\364\0\0\0\364\0\0\0D\0\0\0D\0\0\0\4\0\0\0\4\0\0\0Q\345td\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\20\0\0\0R\345td\344\36\0\0\344\36\1\0\344\36\1\0\34\1\0\0\34\1\0\0\4\0\0\0\1\0\0\0\4\0\0\0\24\0\0\0\3\0\0\0GNU\0,\232\177X\210H\241\315h\27\2\323y\10\275\225\250l^\r\4\0\0\0\20\0\0\0\1\0\0\0GNU\0\0\0\0\0\2\0\0\0\6\0\0\0 \0\0\0\22\0\0\0\35\0\0\0\4\0\0\0\7\0\0\0\230\0\21\0\0B\0\0\202\0\0\n\223(\0\330\35\0\0\0\0\0\0\0\36\0\0\0\0\0\0\0\0\0\0\0\37\0\0\0!\0\0\0#\0\0\0$\0\0\0%\0\0\0\0\0\0\0&\0\0\0\0\0\0\0'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\257\304M\17\221!\374\370\300S\200\30\331=l\366\224\263_\31\5\350\7\371\177\236\320\30a\242\222\6\353\26\251\30a\257\0\371\6\2\4\371\3733\373\17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0d\10\0\0\0\0\0\0\3\0\v\0\0\0\0\0\364\36\1\0\0\0\0\0\3\0\24\0", 512) = 512
2908 lseek(3, 8656, SEEK_SET) = 8656
2908 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\7\0\0\0\2\0\0\0\364\0\0\0\364\0\0\0$\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\36\0\0\0\7\0\0\0\2\0\0\0\30\1\0\0\30\1\0\0 \0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0,\0\0\0\366\377\377o\2\0\0\0008\1\0\0008\1\0\0\230\0\0\0\4\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0006\0\0\0\v\0\0\0\2\0\0\0\320\1\0\0\320\1\0\0\220\2\0\0\5\0\0\0\3\0\0\0\4\0\0\0\20\0\0\0>\0\0\0\3\0\0\0\2\0\0\0`\4\0\0`\4\0\0\355\1\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0F\0\0\0\377\377\377o\2\0\0\0N\6\0\0N\6\0\0R\0\0\0\4\0\0\0\0\0\0\0\2\0\0\0\2\0\0\0S\0\0\0\375\377\377o\2\0\0\0\240\6\0\0\240\6\0\0\\\0\0\0\5\0\0\0\3\0\0\0\4\0\0\0\0\0\0\0b\0\0\0\376\377\377o\2\0\0\0\374\6\0\0\374\6\0\0P\0\0\0\5\0\0\0\2\0\0\0\4\0\0\0\0\0\0\0q\0\0\0\t\0\0\0\2\0\0\0L\7\0\0L\7\0\0\220\0\0\0\4\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0z\0\0\0\t\0\0\0B\0\0\0\334\7\0\0\334\7\0\0\210\0\0\0\4\0\0\0\f\0\0\0\4\0\0\0\10\0\0\0\203\0\0\0\1\0\0\0\6\0\0\0d\10\0\0d\10\0\0\f\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0~\0\0\0\1\0\0\0\6\0\0\0p\10\0\0p\10\0\0\360\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\211\0\0\0\1\0\0\0\6\0\0\0`\t\0\0`\t\0\0\320\10\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\217\0\0\0\1\0\0\0\6\0\0\0000\22\0\0000\22\0\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\225\0\0\0\1\0\0\0002\0\0\0008\22\0\0008\22\0\0\200\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\1\0\0\0\235\0\0\0\1\0\0\0\2\0\0\0\270\22\0\0\270\22\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0000\0\0\0\5\0\0\0\2\0\0\0\274\22\0\0\274\22\0\0t\1\0\0\4\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\247\0\0\0\16\0\0\0\3\0\0\0\344\36\1\0\344\36\0\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\263\0\0\0\17\0\0\0\3\0\0\0\354\36\1\0\354\36\0\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\277\0\0\0\1\0\0\0\3\0\0\0\364\36\1\0\364\36\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\304\0\0\0\6\0\0\0\3\0\0\0\370\36\1\0\370\36\0\0\10\1\0\0\5\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0\315\0\0\0\1\0\0\0\3\0\0\0\0 \1\0\0 \0\0\204\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\322\0\0\0\1\0\0\0\3\0\0\0\204 \1\0\204 \0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\330\0\0\0\10\0\0\0\3\0\0\0\210 \1\0\210 \0\0000\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0"..., 1120) = 1120
2908 lseek(3, 8328, SEEK_SET) = 8328
2908 read(3, "A4\0\0\0aeabi\0\1*\0\0\0\0057-A\0\6\n\7A\10\1\t\2\n\4\22\4\23\1\24\1\25\1\27\3\30\1\31\1\32\2\33\3\34\1\"\1", 53) = 53
2908 fstat64(3, {st_mode=S_IFREG|0644, st_size=9776, ...}) = 0
2908 mmap2(NULL, 73912, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb6e4d000
2908 mprotect(0xb6e4f000, 61440, PROT_NONE) = 0
2908 mmap2(0xb6e5e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0xb6e5e000
2908 close(3) = 0
2908 open("tls/v7l/neon/vfp/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/v7l/neon/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/v7l/vfp/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/v7l/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/neon/vfp/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/neon/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/vfp/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("v7l/neon/vfp/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("v7l/neon/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("v7l/vfp/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("v7l/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("neon/vfp/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("neon/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("vfp/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
2908 open("/lib/arm-linux-gnueabihf/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
2908 read(3, "\177ELF\1\1\1\3\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0IF\0\0004\0\0\0\240\246\1\0\2\4\0\0054\0 \0\7\0(\0(\0%\0\1\0\0p \354\0\0 \354\0\0 \354\0\0\320\3\0\0\320\3\0\0\4\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\304\376\0\0\304\376\0\0\5\0\0\0\0\0\1\0\1\0\0\0\0\16\1\0\0\16\1\0\0\16\1\0\240\3\0\0H$\0\0\6\0\0\0\0\0\1\0\2\0\0\0\350\16\1\0\350\16\1\0\350\16\1\0\30\1\0\0\30\1\0\0\6\0\0\0\4\0\0\0\4\0\0\0\24\1\0\0\24\1\0\0\24\1\0\0D\0\0\0D\0\0\0\4\0\0\0\4\0\0\0Q\345td\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\20\0\0\0R\345td\0\16\1\0\0\16\1\0\0\16\1\0\0\2\0\0\0\2\0\0\4\0\0\0\1\0\0\0\4\0\0\0\24\0\0\0\3\0\0\0GNU\0\364\303}7\363,\275\271\246\337\377\264\314\vI\36\365k\\=\4\0\0\0\20\0\0\0\1\0\0\0GNU\0\0\0\0\0\2\0\0\0\6\0\0\0 \0\0\0\262\1\0\0[\0\0\0@\0\0\0\v\0\0\0\31!\2\221\1\n\20\"@H \331\3\0I4\200\0\0@\0 \200\200\221Q`\300@\22\213\0020D\0\0\20\1\0\n\0\0\5\0\200\n\220\1X\260\r\240\200\10 $\204\20B\242!m\10@\234V\20\0\224 \204$H\0X(\1\222\34\301B\240\220\22\10\f \2\30dA\245c\4@\n\32\3\0\0)\t(\314D\204\210\314\2\10\240\0\4\0\10\0\300Q\0\2009\4C\300\2248@\20\31\20\0\265\0 \0\200`\0\20 \0\3@\22!-\0P\10\211\22G", 512) = 512
2908 lseek(3, 108192, SEEK_SET) = 108192
2908 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\33\0\0\0\7\0\0\0\2\0\0\0\24\1\0\0\24\1\0\0$\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0.\0\0\0\7\0\0\0\2\0\0\0008\1\0\0008\1\0\0 \0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0<\0\0\0\366\377\377o\2\0\0\0X\1\0\0X\1\0\0|\v\0\0\4\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0F\0\0\0\v\0\0\0\2\0\0\0\324\f\0\0\324\f\0\0@\24\0\0\5\0\0\0\3\0\0\0\4\0\0\0\20\0\0\0N\0\0\0\3\0\0\0\2\0\0\0\24!\0\0\24!\0\0\251\23\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0V\0\0\0\377\377\377o\2\0\0\0\2764\0\0\2764\0\0\210\2\0\0\4\0\0\0\0\0\0\0\2\0\0\0\2\0\0\0c\0\0\0\375\377\377o\2\0\0\0H7\0\0H7\0\0\310\0\0\0\5\0\0\0\6\0\0\0\4\0\0\0\0\0\0\0r\0\0\0\376\377\377o\2\0\0\0\0208\0\0\0208\0\0`\0\0\0\5\0\0\0\2\0\0\0\4\0\0\0\0\0\0\0\201\0\0\0\t\0\0\0\2\0\0\0p8\0\0p8\0\0008\2\0\0\4\0\0\0\0\0\0\0\4\0\0\0\10\0\0\0\212\0\0\0\t\0\0\0B\0\0\0\250:\0\0\250:\0\0h\2\0\0\4\0\0\0\f\0\0\0\4\0\0\0\10\0\0\0\223\0\0\0\1\0\0\0\6\0\0\0\20=\0\0\20=\0\0\f\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\216\0\0\0\1\0\0\0\6\0\0\0\34=\0\0\34=\0\0\324\3\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\231\0\0\0\1\0\0\0\6\0\0\0\360@\0\0\360@\0\0d\237\0\0\0\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\237\0\0\0\1\0\0\0\6\0\0\0T\340\0\0T\340\0\0D\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\261\0\0\0\1\0\0\0\6\0\0\0\230\340\0\0\230\340\0\0\10\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\267\0\0\0\1\0\0\0\2\0\0\0\240\340\0\0\240\340\0\0\204\t\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\277\0\0\0\1\0\0\0\2\0\0\0$\352\0\0$\352\0\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\315\0\0\0\1\0\0\0\2\0\0\0(\352\0\0(\352\0\0\370\1\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\330\0\0\0\1\0\0p\202\0\0\0 \354\0\0 \354\0\0\320\3\0\0\r\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\343\0\0\0\1\0\0\0\2\0\0\0\360\357\0\0\360\357\0\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0@\0\0\0\5\0\0\0\2\0\0\0\364\357\0\0\364\357\0\0\320\16\0\0\4\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\355\0\0\0\16\0\0\0\3\0\0\0\0\16\1\0\0\16\1\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\371\0\0\0\17\0\0\0\3\0\0\0\4\16\1\0\4\16\1\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\5\1\0\0\1\0\0\0\3\0\0\0\10\16\1\0\10\16\1\0\4\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\0\0\0"..., 1600) = 1600
2908 lseek(3, 70048, SEEK_SET) = 70048
2908 read(3, "A4\0\0\0aeabi\0\1*\0\0\0\0057-A\0\6\n\7A\10\1\t\2\n\4\22\4\23\1\24\1\25\1\27\3\30\1\31\1\32\2\33\3\34\1\"\1", 53) = 53
2908 fstat64(3, {st_mode=S_IFREG|0755, st_size=109792, ...}) = 0
2908 mmap2(NULL, 78408, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb6e39000
2908 mmap2(0xb6e49000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x10000) = 0xb6e49000
2908 mmap2(0xb6e4b000, 4680, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb6e4b000
2908 close(3) = 0
2908 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6fef000
2908 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6fee000
2908 set_tls(0xb6fee4c0, 0xb6feec18, 0xb6ff9050, 0xb6fee4c0, 0xb6ff9050) = 0
2908 mprotect(0xb6fa4000, 8192, PROT_READ) = 0
2908 mprotect(0xb6e49000, 4096, PROT_READ) = 0
2908 mprotect(0xb6e5e000, 4096, PROT_READ) = 0
2908 mprotect(0xb6eba000, 4096, PROT_READ) = 0
2908 mprotect(0xb6fce000, 4096, PROT_READ) = 0
2908 mprotect(0x19000, 4096, PROT_READ) = 0
2908 mprotect(0xb6ff8000, 4096, PROT_READ) = 0
2908 munmap(0xb6ff1000, 14802) = 0
2908 set_tid_address(0xb6fee068) = 2908
2908 set_robust_list(0xb6fee070, 12) = 0
2908 rt_sigaction(SIGRTMIN, {0xb6e3d1d5, [], SA_SIGINFO|0x4000000}, NULL, 8) = 0
2908 rt_sigaction(SIGRT_1, {0xb6e3d275, [], SA_RESTART|SA_SIGINFO|0x4000000}, NULL, 8) = 0
2908 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
2908 getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM_INFINITY}) = 0
2908 statfs64("/sys/fs/selinux", 88, 0xbeb54960) = -1 ENOENT (No such file or directory)
2908 statfs64("/selinux", 88, 0xbeb54960) = -1 ENOENT (No such file or directory)
2908 brk(0) = 0x20000
2908 brk(0x41000) = 0x41000
2908 open("/proc/filesystems", O_RDONLY|O_LARGEFILE) = 3
2908 fstat64(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
2908 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6ff4000
2908 read(3, "nodev\tsysfs\nnodev\trootfs\nnodev\tbdev\nnodev\tproc\nnodev\tcgroup\nnodev\tcpuset\nnodev\ttmpfs\nnodev\tdevtmpfs\nnodev\tbinfmt_misc\nnodev\tdebugfs\nnodev\tsecurityfs\nnodev\tsockfs\nnodev\tpipefs\nnodev\tanon_inodefs\nnodev\tconfigfs\nnodev\tdevpts\n\text3\n\text2\n\text4\n\tcramfs\nnodev\tramfs\n\tvfat\n\tmsdos\nnodev\tautofs\n\tfuseblk\nnodev\tfuse\nnodev\tfusectl\nnodev\taufs\nnodev\tmqueue\nnodev\tmtd_inodefs\n", 1024) = 362
2908 read(3, "", 1024) = 0
2908 close(3) = 0
2908 munmap(0xb6ff4000, 4096) = 0
2908 open("/usr/lib/locale/locale-archive", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("/usr/share/locale/locale.alias", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
2908 open("/usr/lib/locale/C.UTF-8/LC_IDENTIFICATION", O_RDONLY|O_CLOEXEC) = 3
2908 fstat64(3, {st_mode=S_IFREG|0644, st_size=168, ...}) = 0
2908 mmap2(NULL, 168, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6ff4000
2908 close(3) = 0
2908 open("/usr/lib/arm-linux-gnueabihf/gconv/gconv-modules.cache", O_RDONLY) = 3
2908 fstat64(3, {st_mode=S_IFREG|0644, st_size=26262, ...}) = 0
2908 mmap2(NULL, 26262, PROT_READ, MAP_SHARED, 3, 0) = 0xb6e32000
2908 close(3) = 0
2908 futex(0xb6fa6ee8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
2908 open("/usr/lib/locale/C.UTF-8/LC_MEASUREMENT", O_RDONLY|O_CLOEXEC) = 3
2908 fstat64(3, {st_mode=S_IFREG|0644, st_size=23, ...}) = 0
2908 mmap2(NULL, 23, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6ff3000
2908 close(3) = 0
2908 open("/usr/lib/locale/C.UTF-8/LC_TELEPHONE", O_RDONLY|O_CLOEXEC) = 3
2908 fstat64(3, {st_mode=S_IFREG|0644, st_size=47, ...}) = 0
2908 mmap2(NULL, 47, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6ff2000
2908 close(3) = 0
2908 open("/usr/lib/locale/C.UTF-8/LC_ADDRESS", O_RDONLY|O_CLOEXEC) = 3
2908 fstat64(3, {st_mode=S_IFREG|0644, st_size=131, ...}) = 0
2908 mmap2(NULL, 131, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6ff1000
2908 close(3) = 0
2908 open("/usr/lib/locale/C.UTF-8/LC_NAME", O_RDONLY|O_CLOEXEC) = 3
2908 fstat64(3, {st_mode=S_IFREG|0644, st_size=62, ...}) = 0
2908 mmap2(NULL, 62, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6fed000
2908 close(3) = 0
2908 open("/usr/lib/locale/C.UTF-8/LC_PAPER", O_RDONLY|O_CLOEXEC) = 3
2908 fstat64(3, {st_mode=S_IFREG|0644, st_size=34, ...}) = 0
2908 mmap2(NULL, 34, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6fec000
2908 close(3) = 0
2908 open("/usr/lib/locale/C.UTF-8/LC_MESSAGES", O_RDONLY|O_CLOEXEC) = 3
2908 fstat64(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
2908 close(3) = 0
2908 open("/usr/lib/locale/C.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES", O_RDONLY|O_CLOEXEC) = 3
2908 fstat64(3, {st_mode=S_IFREG|0644, st_size=48, ...}) = 0
2908 mmap2(NULL, 48, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6feb000
2908 close(3) = 0
2908 open("/usr/lib/locale/C.UTF-8/LC_MONETARY", O_RDONLY|O_CLOEXEC) = 3
2908 fstat64(3, {st_mode=S_IFREG|0644, st_size=270, ...}) = 0
2908 mmap2(NULL, 270, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6fea000
2908 close(3) = 0
2908 open("/usr/lib/locale/C.UTF-8/LC_COLLATE", O_RDONLY|O_CLOEXEC) = 3
2908 fstat64(3, {st_mode=S_IFREG|0644, st_size=1501202, ...}) = 0
2908 mmap2(NULL, 1501202, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6cc3000
2908 close(3) = 0
2908 open("/usr/lib/locale/C.UTF-8/LC_TIME", O_RDONLY|O_CLOEXEC) = 3
2908 fstat64(3, {st_mode=S_IFREG|0644, st_size=2454, ...}) = 0
2908 mmap2(NULL, 2454, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6fe9000
2908 close(3) = 0
2908 open("/usr/lib/locale/C.UTF-8/LC_NUMERIC", O_RDONLY|O_CLOEXEC) = 3
2908 fstat64(3, {st_mode=S_IFREG|0644, st_size=50, ...}) = 0
2908 mmap2(NULL, 50, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6cc2000
2908 close(3) = 0
2908 open("/usr/lib/locale/C.UTF-8/LC_CTYPE", O_RDONLY|O_CLOEXEC) = 3
2908 fstat64(3, {st_mode=S_IFREG|0644, st_size=151984, ...}) = 0
2908 mmap2(NULL, 151984, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb6c9c000
2908 close(3) = 0
2908 open("//lib/charset.alias", O_RDONLY|O_LARGEFILE|O_NOFOLLOW) = -1 ENOENT (No such file or directory)
2908 open("/var/lib/apps/spreed-webrtc.sideload/0.0.1/server.conf.new", O_RDONLY|O_LARGEFILE) = 3
2908 ioctl(3, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0xbeb54794) = -1 ENOTTY (Inappropriate ioctl for device)
2908 fstat64(3, {st_mode=S_IFREG|0644, st_size=9877, ...}) = 0
2908 umask(0700) = 022
2908 gettimeofday({1438349720, 519906}, NULL) = 0
2908 open("/var/lib/apps/spreed-webrtc.sideload/0.0.1/sedCOqxpK", O_RDWR|O_CREAT|O_EXCL|O_LARGEFILE, 0600) = 4
2908 umask(022) = 0700
2908 fcntl64(4, F_GETFL) = 0x20002 (flags O_RDWR|O_LARGEFILE)
2908 fstat64(3, {st_mode=S_IFREG|0644, st_size=9877, ...}) = 0
2908 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6c9b000
2908 read(3, "; Spreed WebRTC server example configuration\n\n[http]\n; HTTP listener in format ip:port.\nlisten = 127.0.0.1:8080\n; Full path to directory where to find the server web assets.\nroot = /usr/share/spreed-webrtc-server/www\n; HTTP socket read timeout in seconds.\n;readtimeout = 10\n; HTTP socket write timeout in seconds.\n;writetimeout = 10\n; Use basePath if the server does not run on the root path (/) of your server.\n;basePath = /some/sub/path/\n; Set maximum number of open files (only works when run as root).\n;maxfd = 32768\n; Enable stats API /api/v1/stats for debugging (not for production use!).\n;stats = false\n; Enable HTTP listener for golang pprof module. See\n; http://golang.org/pkg/net/http/pprof/ for details.\n;pprofListen = 127.0.0.1:6060\n\n[https]\n; Native HTTPS listener in format ip:port.\n;listen = 127.0.0.1:8443\n; Full path to PEM encoded certificate chain.\n;certificate = server.crt\n; Full path to PEM encoded private key.\n;key = server.key\n; Mimimal supported encryption standard (SSLv3,"..., 4096) = 4096
2908 fstat64(4, {st_mode=S_IFREG, st_size=0, ...}) = 0
2908 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb6c9a000
2908 write(4, "; Spreed WebRTC server example configuration\n", 45) = 45
2908 write(4, "\n", 1) = 1
2908 write(4, "[http]\n", 7) = 7
2908 write(4, "; HTTP listener in format ip:port.\n", 35) = 35
2908 write(4, "listen = 127.0.0.1:8080\n", 24) = 24
2908 write(4, "; Full path to directory where to find the server web assets.\n", 62) = 62
2908 write(4, "root = /apps/spreed-webrtc.sideload/0.0.1/usr/share/spreed-webrtc-server/www\n", 77) = 77
2908 write(4, "; HTTP socket read timeout in seconds.\n", 39) = 39
2908 write(4, ";readtimeout = 10\n", 18) = 18
2908 write(4, "; HTTP socket write timeout in seconds.\n", 40) = 40
2908 write(4, ";writetimeout = 10\n", 19) = 19
2908 write(4, "; Use basePath if the server does not run on the root path (/) of your server.\n", 79) = 79
2908 write(4, ";basePath = /some/sub/path/\n", 28) = 28
2908 write(4, "; Set maximum number of open files (only works when run as root).\n", 66) = 66
2908 write(4, ";maxfd = 32768\n", 15) = 15
2908 write(4, "; Enable stats API /api/v1/stats for debugging (not for production use!).\n", 74) = 74
2908 write(4, ";stats = false\n", 15) = 15
2908 write(4, "; Enable HTTP listener for golang pprof module. See\n", 52) = 52
2908 write(4, "; http://golang.org/pkg/net/http/pprof/ for details.\n", 53) = 53
2908 write(4, ";pprofListen = 127.0.0.1:6060\n", 30) = 30
2908 write(4, "\n", 1) = 1
2908 write(4, "[https]\n", 8) = 8
2908 write(4, "; Native HTTPS listener in format ip:port.\n", 43) = 43
2908 write(4, ";listen = 127.0.0.1:8443\n", 25) = 25
2908 write(4, "; Full path to PEM encoded certificate chain.\n", 46) = 46
2908 write(4, ";certificate = server.crt\n", 26) = 26
2908 write(4, "; Full path to PEM encoded private key.\n", 40) = 40
2908 write(4, ";key = server.key\n", 18) = 18
2908 write(4, "; Mimimal supported encryption standard (SSLv3, TLSv1, TLSv1.1 or TLSv1.2).\n", 76) = 76
2908 write(4, ";minVersion = SSLv3\n", 20) = 20
2908 write(4, "; HTTPS socket read timeout in seconds.\n", 40) = 40
2908 write(4, ";readtimeout = 10\n", 18) = 18
2908 write(4, "; HTTPS socket write timeout in seconds.\n", 41) = 41
2908 write(4, ";writetimeout = 10\n", 19) = 19
2908 write(4, "\n", 1) = 1
2908 write(4, "[app]\n", 6) = 6
2908 write(4, "; HTML page title\n", 18) = 18
2908 write(4, ";title = Spreed WebRTC\n", 23) = 23
2908 write(4, "; Version string to use for static resources. This defaults to the server\n", 74) = 74
2908 write(4, "; version and should only be changed when you use your own way to invalidate\n", 77) = 77
2908 write(4, "; long cached static resources.\n", 32) = 32
2908 write(4, ";ver = 1234\n", 12) = 12
2908 write(4, "; STUN server URIs in format host:port. You can provide multiple seperated by\n", 78) = 78
2908 write(4, "; space. If you do not have one use a public one like stun.spreed.me:443. If\n", 77) = 77
2908 write(4, "; you have a TURN server you do not need to set an STUN server as the TURN\n", 75) = 75
2908 write(4, "; server will provide STUN services.\n", 37) = 37
2908 write(4, ";stunURIs = stun:stun.spreed.me:443\n", 36) = 36
2908 write(4, "; TURN server URIs in format host:port?transport=udp|tcp. You can provide\n", 74) = 74
2908 write(4, "; multiple seperated by space. If you do not have at least one TURN server then\n", 80) = 80
2908 write(4, "; some users will not be able to use the server as the peer to peer connection\n", 79) = 79
2908 write(4, "; cannot be established without a TURN server due to firewall reasons. An open\n", 79) = 79
2908 write(4, "; source TURN server which is fully supported can be found at\n", 62) = 62
2908 write(4, "; https://code.google.com/p/rfc5766-turn-server/.\n", 50) = 50
2908 write(4, ";turnURIs = turn:turnserver:port?transport=udp\n", 47) = 47
2908 write(4, "; Shared secret authentication for TURN user generation if the TURN server is\n", 78) = 78
2908 write(4, "; protected (which it should be).\n", 34) = 34
2908 write(4, "; See http://tools.ietf.org/html/draft-uberti-behave-turn-rest-00 for details.\n", 79) = 79
2908 write(4, "; A supported TURN server is https://code.google.com/p/rfc5766-turn-server/.\n", 77) = 77
2908 write(4, ";turnSecret = the-default-turn-shared-secret-do-not-keep\n", 57) = 57
2908 write(4, "; Enable renegotiation support. Set to true to tell clients that they can\n", 74) = 74
2908 write(4, "; renegotiate peer connections when required. Firefox support is not complete,\n", 79) = 79
2908 write(4, "; so do not enable if you want compatibility with Firefox clients.\n", 67) = 67
2908 write(4, ";renegotiation = false\n", 23) = 23
2908 write(4, "; Session secret to use for session id generator. 32 or 64 bytes of random data\n", 80) = 80
2908 write(4, "; are recommented (hex encoded). A warning will be logged if hex decode fails.\n", 79) = 79
2908 write(4, "; You can generate a secret easily with \"xxd -ps -l 32 -c 32 /dev/random\".\n", 75) = 75
2908 write(4, "sessionSecret = the-default-secret-do-not-keep-me\n", 50) = 50
2908 write(4, "; Encryption secret protecting the data in generated server side tokens. Use\n", 77) = 77
2908 write(4, "; 16, 24, or 32 bytes (hex encoded) to select AES-128, AES-192, or AES-256.\n", 76) = 76
2908 write(4, "; When you change the encryption secret, stored authentications, sessions and\n", 78) = 78
2908 write(4, "; contacts become invalid. A warning will be logged if hex decode fails. You\n", 77) = 77
2908 write(4, "; can generate a secret easily with \"xxd -ps -l 32 -c 32 /dev/random\".\n", 71) = 71
2908 write(4, "encryptionSecret = tne-default-encryption-block-key\n", 52) = 52
2908 write(4, "; Full path to a text file containig client tokens which a user needs to enter\n", 79) = 79
2908 write(4, "; when accessing the web client. Each line in this file represents a valid\n", 75) = 75
2908 write(4, "; token.\n", 9) = 9
2908 write(4, ";tokenFile = tokens.txt\n", 24) = 24
2908 write(4, "; The name of a global room. If enabled it should be kept secret. Users in that\n", 80) = 80
2908 write(4, "; room are visible in all other rooms.\n", 39) = 39
2908 write(4, ";globalRoom = global\n", 21) = 21
2908 write(4, "; The default room is the room at the root URL of the servers base address and\n", 79) = 79
2908 write(4, "; all users will join this room if enabled. If it is disabled then a room join\n", 79) = 79
2908 write(4, "; form will be shown instead.\n", 30) = 30
2908 write(4, ";defaultRoomEnabled = true\n", 27) = 27
2908 write(4, "; Whether a user account is required to join a room. This only has an effect\n", 77) = 77
2908 read(3, "ccounts are enabled. Optional, defaults to false.\n;authorizeRoomJoin = false\n; Whether a user account is required to create a room. This only has an effect\n; if user accounts are enabled. Optional, defaults to false.\n;authorizeRoomCreation = false\n; Server token is a public random string which is used to enhance security of\n; server generated security tokens. When the serverToken is changed all existing\n; nonces become invalid. Use 32 or 64 characters (eg. 16 or 32 byte hex).\nserverToken = i-did-not-change-the-public-token-boo\n; The server realm is part of the validation chain of tokens and nonces and is\n; added as suffix to server created user ids if user creation is enabled. When\n; the realm is changed, all existing tokens and nonces become invalid.\nserverRealm = local\n; Full path to an extra templates directory. Templates in this directory ending\n; with .html will be parsed on startup and can be used to fill the supported\n; extra-* template slots. If the extra folder has a sub fold"..., 4096) = 4096
2908 write(4, "; if user accounts are enabled. Optional, defaults to false.\n", 61) = 61
2908 write(4, ";authorizeRoomJoin = false\n", 27) = 27
2908 write(4, "; Whether a user account is required to create a room. This only has an effect\n", 79) = 79
2908 write(4, "; if user accounts are enabled. Optional, defaults to false.\n", 61) = 61
2908 write(4, ";authorizeRoomCreation = false\n", 31) = 31
2908 write(4, "; Server token is a public random string which is used to enhance security of\n", 78) = 78
2908 write(4, "; server generated security tokens. When the serverToken is changed all existing\n", 81) = 81
2908 write(4, "; nonces become invalid. Use 32 or 64 characters (eg. 16 or 32 byte hex).\n", 74) = 74
2908 write(4, "serverToken = i-did-not-change-the-public-token-boo\n", 52) = 52
2908 write(4, "; The server realm is part of the validation chain of tokens and nonces and is\n", 79) = 79
2908 write(4, "; added as suffix to server created user ids if user creation is enabled. When\n", 79) = 79
2908 write(4, "; the realm is changed, all existing tokens and nonces become invalid.\n", 71) = 71
2908 write(4, "serverRealm = local\n", 20) = 20
2908 write(4, "; Full path to an extra templates directory. Templates in this directory ending\n", 80) = 80
2908 write(4, "; with .html will be parsed on startup and can be used to fill the supported\n", 77) = 77
2908 write(4, "; extra-* template slots. If the extra folder has a sub folder \"static\", the\n", 77) = 77
2908 write(4, "; resources in this static folder will be available as /extra/static/filename\n", 78) = 78
2908 write(4, "; relative to your servers base URL.\n", 37) = 37
2908 write(4, ";extra = /usr/share/spreed-webrtc-server/extra\n", 47) = 47
2908 write(4, "; URL relative to the servers base path for a plugin javascript file which is\n", 78) = 78
2908 write(4, "; automatically loaded on web client start for all users. You can put your\n", 75) = 75
2908 write(4, "; plugin in the extra/static folder (see above) or provide another folder using\n", 80) = 80
2908 write(4, "; a front end webserver. Check the doc folder for more info about plugins and\n", 78) = 78
2908 write(4, "; examples.\n", 12) = 12
2908 write(4, ";plugin = extra/static/myplugin.js\n", 35) = 35
2908 write(4, "; Content-Security-Policy HTTP response header value.\n", 54) = 54
2908 write(4, "; Spreed WebRTC requires inline styles, WebSocket connection to itself and\n", 75) = 75
2908 write(4, "; data: URL for images.\n", 24) = 24
2908 write(4, "; The currently recommended CSP is:\n", 36) = 36
2908 write(4, "; default-src 'self';\n", 24) = 24
2908 write(4, "; frame-src 'self' blob:;\n", 28) = 28
2908 write(4, "; style-src 'self' 'unsafe-inline';\n", 38) = 38
2908 write(4, "; img-src 'self' data: blob:;\n", 32) = 32
2908 write(4, "; connect-src 'self' wss://server:port/ws blob:;\n", 51) = 51
2908 write(4, "; font-src 'self' data: blob:;\n", 33) = 33
2908 write(4, "; media-src 'self' blob:;\n", 28) = 28
2908 write(4, ";contentSecurityPolicy =\n", 25) = 25
2908 write(4, "; Content-Security-Policy-Report-Only HTTP response header value. Use this\n", 75) = 75
2908 write(4, "; to test your CSP before putting it into production.\n", 54) = 54
2908 write(4, ";contentSecurityPolicyReportOnly =\n", 35) = 35
2908 write(4, "\n", 1) = 1
2908 write(4, "[modules]\n", 10) = 10
2908 write(4, "; Modules provide optional functionality. Modules are enabled by default and\n", 77) = 77
2908 write(4, "; can be disabled by setting false to their corresponding configuration.\n", 73) = 73
2908 write(4, ";screensharing = true\n", 22) = 22
2908 write(4, ";youtube = true\n", 16) = 16
2908 write(4, ";presentation = true\n", 21) = 21
2908 write(4, ";contacts = true\n", 17) = 17
2908 write(4, "\n", 1) = 1
2908 write(4, "[log]\n", 6) = 6
2908 write(4, ";logfile = /var/log/spreed-webrtc-server.log\n", 45) = 45
2908 write(4, "\n", 1) = 1
2908 write(4, "[users]\n", 8) = 8
2908 write(4, "; Set to true to enable user functionality.\n", 44) = 44
2908 write(4, "enabled = false\n", 16) = 16
2908 write(4, "; Set users authorization mode.\n", 32) = 32
2908 write(4, "; sharedsecret:\n", 16) = 16
2908 write(4, "; Validates the userid with a HMAC authentication secret.\n", 60) = 60
2908 write(4, "; The format goes like this:\n", 31) = 31
2908 write(4, "; BASE64(HMAC-SHA-256(secret, expirationTimestampInSeconds:userid))\n", 72) = 72
2908 write(4, "; httpheader:\n", 14) = 14
2908 write(4, "; The userid is provided as an HTTP header. The server does not do any\n", 73) = 73
2908 write(4, "; validation. This usually only makes sense with a front end HTTPS proxy which\n", 81) = 81
2908 write(4, "; does the authentication and injects the user id as HTTP header for sessions\n", 80) = 80
2908 write(4, "; REST requests. In mode httpheader, allowRegistration should be false.\n", 74) = 74
2908 write(4, "; certificate:\n", 15) = 15
2908 write(4, "; The userid is provided as CommonName with a certificate provided with TLS\n", 78) = 78
2908 write(4, "; client authentication. When you use this with a front end proxy for TLS\n", 76) = 76
2908 write(4, "; termination, that proxy has to validate the certificate and inject certain\n", 79) = 79
2908 write(4, "; headers into the proxy connection. In certificate mode the server can act as\n", 81) = 81
2908 write(4, "; a signing CA to sign incoming user certificate requests with a private key\n", 79) = 79
2908 write(4, "; when allowRegistration is true. While certificate mode offers the highest\n", 78) = 78
2908 write(4, "; security it is currently considered experimental and the user experience\n", 77) = 77
2908 write(4, "; varies between browsers and platforms.\n", 43) = 43
2908 write(4, ";mode = sharedsecret\n", 21) = 21
2908 write(4, "; The shared secred for HMAC validation in \"sharedsecret\" mode. Best use 32 or\n", 79) = 79
2908 write(4, "; 64 bytes of random data.\n", 27) = 27
2908 write(4, ";sharedsecret_secret = some-secret-do-not-keep\n", 47) = 47
2908 write(4, "; The HTTP header name where to find the userid in \"httpheader\" mode.\n", 70) = 70
2908 write(4, ";httpheader_header = x-userid\n", 30) = 30
2908 write(4, "; Full path to PEM encoded private key to use for user creation in \"certificate\"\n", 81) = 81
2908 write(4, "; mode. Keep this commented if you do not want the server to sign certificate\n", 78) = 78
2908 write(4, "; requests.\n", 12) = 12
2908 read(3, "ficate_key = userskey.key\n; Full path to PEM encoded certificate to use for user validation in\n; \"certificate\" mode. When allowRegistration is true and certificate_key is also\n; set then the server will act as a CA and sign incoming user registrations and\n; return certificates to users as registration.\n;certificate_certificate = usersca.crt\n; The HTTP header name where to find if the TLS client authentication was\n; successfull. The value of this header is matched to\n; certificate_verifiedHeaderValue and only if there is a match, the proxy\n; handled TLS client authentication is accepted as success. Make sure to secure\n; these headers with your front end proxy (always set them). Do not use these\n; settings when not using a front end proxy.\n;certificate_verifiedHeader = x-verified\n;certificate_verifiedHeaderValue = SUCCESS\n; The HTTP header name where to find the PEM encoded certificate authenticated\n; by a front end proxy. With Nginx the required value is in $ssl_client_cert.\n;certifica"..., 4096) = 1685
2908 write(4, ";certificate_key = userskey.key\n", 32) = 32
2908 write(4, "; Full path to PEM encoded certificate to use for user validation in\n", 69) = 69
2908 write(4, "; \"certificate\" mode. When allowRegistration is true and certificate_key is also\n", 81) = 81
2908 write(4, "; set then the server will act as a CA and sign incoming user registrations and\n", 80) = 80
2908 write(4, "; return certificates to users as registration.\n", 48) = 48
2908 write(4, ";certificate_certificate = usersca.crt\n", 39) = 39
2908 write(4, "; The HTTP header name where to find if the TLS client authentication was\n", 74) = 74
2908 write(4, "; successfull. The value of this header is matched to\n", 54) = 54
2908 write(4, "; certificate_verifiedHeaderValue and only if there is a match, the proxy\n", 74) = 74
2908 write(4, "; handled TLS client authentication is accepted as success. Make sure to secure\n", 80) = 80
2908 write(4, "; these headers with your front end proxy (always set them). Do not use these\n", 78) = 78
2908 write(4, "; settings when not using a front end proxy.\n", 45) = 45
2908 write(4, ";certificate_verifiedHeader = x-verified\n", 41) = 41
2908 write(4, ";certificate_verifiedHeaderValue = SUCCESS\n", 43) = 43
2908 write(4, "; The HTTP header name where to find the PEM encoded certificate authenticated\n", 79) = 79
2908 write(4, "; by a front end proxy. With Nginx the required value is in $ssl_client_cert.\n", 78) = 78
2908 write(4, ";certificate_certificateHeader = x-certificate\n", 47) = 47
2908 write(4, "; The valid duration of generated certificates created in certificate mode when\n", 80) = 80
2908 write(4, "; allowRegistration is enabled.\n", 32) = 32
2908 write(4, ";certificate_validForDays = 365\n", 32) = 32
2908 write(4, "; Organization to set into the created user certificates. Use a readable public\n", 80) = 80
2908 write(4, "; name to make the certificate easily recognizable as certificate for your\n", 75) = 75
2908 write(4, "; server so users can choose the correct certificate when prompted.\n", 68) = 68
2908 write(4, ";certificate_organization= = My Spreed Server\n", 46) = 46
2908 write(4, "; If enabled the server can create new userids. Set allowRegistration to true to\n", 81) = 81
2908 write(4, "; enable userid creation/registration. Users are created according the settings\n", 80) = 80
2908 write(4, "; of the currently configured mode (see above).\n", 48) = 48
2908 write(4, ";allowRegistration = false\n", 27) = 27
2908 read(3, "", 4096) = 0
2908 +++ killed by SIGSYS +++
2906 <... wait4 resumed> [{WIFSIGNALED(s) && WTERMSIG(s) == SIGSYS}], 0, NULL) = 2908
2906 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_KILLED, si_pid=2908, si_status=SIGSYS, si_utime=0, si_stime=5} ---
2906 sigreturn() (mask [ILL ABRT BUS KILL SEGV ALRM STKFLT STOP TSTP TTOU XCPU VTALRM PROF WINCH IO PWR RTMIN]) = 2908
2906 write(2, "Bad system call\n", 16) = 16
2906 exit_group(159) = ?
2906 +++ exited with 159 +++
|