-
Notifications
You must be signed in to change notification settings - Fork 0
/
MFGTool Install.txt
1629 lines (1582 loc) · 108 KB
/
MFGTool Install.txt
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
:r:hal_sensors_default:s0 tclass=file permissive=1
type=1400 audit(1530723062.328:14456): avc: denied { read } for pid=11725 comm="top" name="stat" dev=ss=file permissive=1
|grep com.ge
package:/system/app/launcherapp/launcherapp.apk=com.ge.med.mic.launcher
package:/data/app/com.ge.ppd-2ypCl0ucc2m8NAjYw6Ki8A==/base.apk=com.ge.ppd
package:/system/app/serviceapp/serviceapp.apk=com.ge.med.mic.service
package:/system/app/monitoringapp/monitoringapp.apk=com.ge.med.mic.monitoring
type=1400 audit(1530723066.418:14478): avc: denied { search } for pid=11762 comm="top" name="980" dev8 tclass=dir permissive=1
lotus:/vendor # type=1400 audit(1530723069.908:14479): avc: denied { getattr } for pid=11794 comm="tol_configstore_default:s0 tclass=dir permissive=1
type=1400 audit(1530723069.908:14479): avc: denied { getattr } for pid=11794 comm="top" path="/proc/2fault:s0 tclass=dir permissive=1
type=1400 audit(1530723069.938:14480): avc: denied { search } for pid=11794 comm="top" name="257" dev0 tclass=dir permissive=1
type=1400 audit(1530723069.938:14480): avc: denied { search } for pid=11794 comm="top" name="257" dev0 tclass=dir permissive=1
type=1400 audit(1530723069.938:14481): avc: denied { read } for pid=11794 comm="top" name="stat" dev=s=file permissive=1
type=1400 audit(1530723069.938:14481): avc: denied { read } for pid=11794 comm="top" name="stat" dev=s=file permissive=1
type=1400 audit(1530723069.938:14482): avc: denied { open } for pid=11794 comm="top" path="/proc/259/t:s0 tclass=file permissive=1
type=1400 audit(1530723069.938:14482): avc: denied { open } for pid=11794 comm="top" path="/proc/259/t:s0 tclass=file permissive=1
type=1400 audit(1530723070.118:14483): avc: denied { call } for pid=496 comm="hci_thread" scontext=u:
type=1400 audit(1530723070.118:14483): avc: denied { call } for pid=496 comm="hci_thread" scontext=u:
type=1400 audit(1530723082.578:14484): avc: denied { getattr } for pid=11933 comm="top" path="/proc/2ss=dir permissive=1
type=1400 audit(1530723082.578:14484): avc: denied { getattr } for pid=11933 comm="top" path="/proc/2ss=dir permissive=1
type=1400 audit(1530723082.598:14485): avc: denied { search } for pid=11933 comm="top" name="256" devpermissive=1
type=1400 audit(1530723082.598:14485): avc: denied { search } for pid=11933 comm="top" name="256" devpermissive=1
type=1400 audit(1530723082.598:14486): avc: denied { read } for pid=11933 comm="top" name="stat" dev= tclass=file permissive=1
type=1400 audit(1530723082.598:14486): avc: denied { read } for pid=11933 comm="top" name="stat" dev= tclass=file permissive=1
type=1400 audit(1530723082.598:14487): avc: denied { open } for pid=11933 comm="top" path="/proc/257/default:s0 tclass=file permissive=1
type=1400 audit(1530723082.598:14487): avc: denied { open } for pid=11933 comm="top" path="/proc/257/default:s0 tclass=file permissive=1
type=1400 audit(1530723082.618:14488): avc: denied { read } for pid=11933 comm="top" name="stat" dev=ssive=1
audit: audit_lost=6589 audit_rate_limit=20 audit_backlog_limit=64
audit: rate limit exceeded
type=1400 audit(1530723087.018:14586): avc: denied { open } for pid=11981 comm="top" path="/proc/279/ile permissive=1
type=1400 audit(1530723102.388:14587): avc: denied { getattr } for pid=12133 comm="top" path="/proc/2class=dir permissive=1
type=1400 audit(1530723102.388:14587): avc: denied { getattr } for pid=12133 comm="top" path="/proc/2class=dir permissive=1
type=1400 audit(1530723102.388:14588): avc: denied { search } for pid=12133 comm="top" name="233" devir permissive=1
type=1400 audit(1530723102.388:14588): avc: denied { search } for pid=12133 comm="top" name="233" devir permissive=1
type=1400 audit(1530723102.388:14589): avc: denied { read } for pid=12133 comm="top" name="stat" dev==file permissive=1
type=1400 audit(1530723102.388:14589): avc: denied { read } for pid=12133 comm="top" name="stat" dev==file permissive=1
type=1400 audit(1530723102.388:14590): avc: denied { open } for pid=12133 comm="top" path="/proc/234/:s0 tclass=file permissive=1
type=1400 audit(1530723102.388:14590): avc: denied { open } for pid=12133 comm="top" path="/proc/234/:s0 tclass=file permissive=1
type=1400 audit(1530723102.388:14591): avc: denied { read } for pid=12133 comm="top" name="stat" dev=s=file permissive=1
type=1400 audit(1530723102.408:14596): avc: denied { open } for pid=12133 comm="top" path="/proc/284/tclass=file permissive=1
audit: audit_lost=6654 audit_rate_limit=20 audit_backlog_limit=64
audit: rate limit exceeded
type=1400 audit(1530723115.808:14597): avc: denied { search } for pid=1278 comm="_ServicePT" name="23missive=1
type=1400 audit(1530723115.808:14597): avc: denied { search } for pid=1278 comm="_ServicePT" name="23missive=1
type=1400 audit(1530723115.838:14598): avc: denied { read } for pid=1278 comm="_ServicePT" name="statpermissive=1
type=1400 audit(1530723115.838:14598): avc: denied { read } for pid=1278 comm="_ServicePT" name="statpermissive=1
type=1400 audit(1530723115.838:14599): avc: denied { open } for pid=1278 comm="_ServicePT" path="/prolass=file permissive=1
type=1400 audit(1530723115.838:14599): avc: denied { open } for pid=1278 comm="_ServicePT" path="/prolass=file permissive=1
type=1400 audit(1530723115.838:14600): avc: denied { search } for pid=1278 comm="_ServicePT" name="23permissive=1
type=1400 audit(1530723115.838:14600): avc: denied { search } for pid=1278 comm="_ServicePT" name="23permissive=1
type=1400 audit(1530723115.838:14601): avc: denied { read } for pid=1278 comm="_ServicePT" name="stat permissive=1
type=1400 audit(1530723120.158:14646): avc: denied { open } for pid=12313 comm="top" path="/proc/232/ile permissive=1
type=1400 audit(1530723122.378:14647): avc: denied { getattr } for pid=12335 comm="top" path="/proc/2permissive=1
type=1400 audit(1530723122.378:14647): avc: denied { getattr } for pid=12335 comm="top" path="/proc/2permissive=1
type=1400 audit(1530723122.408:14648): avc: denied { search } for pid=12335 comm="top" name="232" devive=1
type=1400 audit(1530723122.408:14648): avc: denied { search } for pid=12335 comm="top" name="232" devive=1
type=1400 audit(1530723145.718:14649): avc: denied { search } for pid=1278 comm="_ServicePT" name="1"
type=1400 audit(1530723145.718:14649): avc: denied { search } for pid=1278 comm="_ServicePT" name="1"
type=1400 audit(1530723145.748:14650): avc: denied { read } for pid=1278 comm="_ServicePT" name="stat
type=1400 audit(1530723145.748:14650): avc: denied { read } for pid=1278 comm="_ServicePT" name="stat
type=1400 audit(1530723145.748:14651): avc: denied { open } for pid=1278 comm="_ServicePT" path="/proissive=1
type=1400 audit(1530723145.748:14651): avc: denied { open } for pid=1278 comm="_ServicePT" path="/proissive=1
type=1400 audit(1530723145.768:14652): avc: denied { search } for pid=1278 comm="_ServicePT" name="21ve=1
type=1400 audit(1530723145.768:14652): avc: denied { search } for pid=1278 comm="_ServicePT" name="21ve=1
type=1400 audit(1530723145.778:14653): avc: denied { read } for pid=1278 comm="_ServicePT" name="stative=1
type=1400 audit(1530723145.968:14665): avc: denied { open } for pid=12565 comm="top" path="/proc/210/ass=file permissive=1
type=1400 audit(1530723158.068:14666): avc: denied { getattr } for pid=12691 comm="top" path="/proc/3ss=dir permissive=1
type=1400 audit(1530723158.068:14666): avc: denied { getattr } for pid=12691 comm="top" path="/proc/3ss=dir permissive=1
type=1400 audit(1530723158.068:14667): avc: denied { search } for pid=12691 comm="top" name="312" devpermissive=1
type=1400 audit(1530723158.068:14667): avc: denied { search } for pid=12691 comm="top" name="312" devpermissive=1
type=1400 audit(1530723158.068:14668): avc: denied { read } for pid=12691 comm="top" name="stat" dev=permissive=1
type=1400 audit(1530723158.068:14668): avc: denied { read } for pid=12691 comm="top" name="stat" dev=permissive=1
type=1400 audit(1530723158.068:14669): avc: denied { open } for pid=12691 comm="top" path="/proc/312/lass=file permissive=1
type=1400 audit(1530723158.068:14669): avc: denied { open } for pid=12691 comm="top" path="/proc/312/lass=file permissive=1
type=1400 audit(1530723158.498:14670): avc: denied { getattr } for pid=12691 comm="top" path="/proc/3ss=dir permissive=1
type=1400 audit(1530723158.498:14671): avc: denied { search } for pid=12691 comm="top" name="304" devpermissive=1
type=1400 audit(1530723175.928:14672): avc: denied { search } for pid=1278 comm="_ServicePT" name="30
type=1400 audit(1530723175.928:14672): avc: denied { search } for pid=1278 comm="_ServicePT" name="30
type=1400 audit(1530723175.968:14673): avc: denied { read } for pid=1278 comm="_ServicePT" name="statssive=1
type=1400 audit(1530723175.968:14673): avc: denied { read } for pid=1278 comm="_ServicePT" name="statssive=1
type=1400 audit(1530723175.968:14674): avc: denied { open } for pid=1278 comm="_ServicePT" path="/profile permissive=1
type=1400 audit(1530723175.968:14674): avc: denied { open } for pid=1278 comm="_ServicePT" path="/profile permissive=1
type=1400 audit(1530723175.968:14675): avc: denied { search } for pid=1278 comm="_ServicePT" name="31sive=1
type=1400 audit(1530723175.968:14675): avc: denied { search } for pid=1278 comm="_ServicePT" name="31sive=1
type=1400 audit(1530723175.968:14676): avc: denied { read } for pid=1278 comm="_ServicePT" name="statsive=1
type=1400 audit(1530723176.368:14683): avc: denied { open } for pid=12876 comm="top" path="/proc/310/class=file permissive=1
type=1400 audit(1530723185.948:14684): avc: denied { getattr } for pid=12977 comm="top" path="/proc/2permissive=1
type=1400 audit(1530723185.948:14684): avc: denied { getattr } for pid=12977 comm="top" path="/proc/2permissive=1
type=1400 audit(1530723185.968:14685): avc: denied { search } for pid=12977 comm="top" name="244" devive=1
type=1400 audit(1530723185.968:14685): avc: denied { search } for pid=12977 comm="top" name="244" devive=1
type=1400 audit(1530723185.978:14686): avc: denied { getattr } for pid=12977 comm="top" path="/proc/2ss=dir permissive=1
type=1400 audit(1530723185.978:14686): avc: denied { getattr } for pid=12977 comm="top" path="/proc/2ss=dir permissive=1
type=1400 audit(1530723185.978:14687): avc: denied { search } for pid=12977 comm="top" name="296" devpermissive=1
type=1400 audit(1530723185.978:14687): avc: denied { search } for pid=12977 comm="top" name="296" devpermissive=1
type=1400 audit(1530723185.978:14688): avc: denied { read } for pid=12977 comm="top" name="stat" dev=rmissive=1
type=1400 audit(1530723185.988:14693): avc: denied { search } for pid=12977 comm="top" name="310" dev permissive=1
type=1400 audit(1530723191.628:14694): avc: denied { read write } for pid=1278 comm="_USBProcess" namass=chr_file permissive=1
type=1400 audit(1530723191.628:14694): avc: denied { read write } for pid=1278 comm="_USBProcess" namass=chr_file permissive=1
type=1400 audit(1530723191.628:14695): avc: denied { open } for pid=1278 comm="_USBProcess" path="/dess=chr_file permissive=1
type=1400 audit(1530723191.628:14695): avc: denied { open } for pid=1278 comm="_USBProcess" path="/dess=chr_file permissive=1
type=1400 audit(1530723191.628:14696): avc: denied { ioctl } for pid=1278 comm="_USBProcess" path="/d_r:device:s0 tclass=chr_file permissive=1
type=1400 audit(1530723191.628:14696): avc: denied { ioctl } for pid=1278 comm="_USBProcess" path="/d_r:device:s0 tclass=chr_file permissive=1
type=1400 audit(1530723194.908:14697): avc: denied { read } for pid=13068 comm="top" name="stat" dev=sive=1
type=1400 audit(1530723194.908:14697): avc: denied { read } for pid=13068 comm="top" name="stat" dev=sive=1
type=1400 audit(1530723194.958:14698): avc: denied { open } for pid=13068 comm="top" path="/proc/244/ile permissive=1
type=1400 audit(1530723195.638:14714): avc: denied { open } for pid=13076 comm="top" path="/proc/299/ss=file permissive=1
type=1400 audit(1530723205.738:14715): avc: denied { search } for pid=1278 comm="_ServicePT" name="24
type=1400 audit(1530723205.738:14715): avc: denied { search } for pid=1278 comm="_ServicePT" name="24
type=1400 audit(1530723205.768:14716): avc: denied { read } for pid=1278 comm="_ServicePT" name="stat
type=1400 audit(1530723205.768:14716): avc: denied { read } for pid=1278 comm="_ServicePT" name="stat
type=1400 audit(1530723205.768:14717): avc: denied { open } for pid=1278 comm="_ServicePT" path="/prormissive=1
type=1400 audit(1530723205.768:14717): avc: denied { open } for pid=1278 comm="_ServicePT" path="/prormissive=1
type=1400 audit(1530723205.768:14718): avc: denied { search } for pid=1278 comm="_ServicePT" name="29e=1
type=1400 audit(1530723205.768:14718): avc: denied { search } for pid=1278 comm="_ServicePT" name="29e=1
type=1400 audit(1530723205.768:14719): avc: denied { search } for pid=1278 comm="_ServicePT" name="29rmissive=1
audit: audit_lost=6674 audit_rate_limit=20 audit_backlog_limit=64
audit: rate limit exceeded
type=1400 audit(1530723206.018:14742): avc: denied { open } for pid=13178 comm="top" path="/proc/250/ile permissive=1
type=1400 audit(1530723218.998:14753): avc: denied { call } for pid=256 comm="[email protected]" sconte
type=1400 audit(1530723218.998:14753): avc: denied { call } for pid=256 comm="[email protected]" sconte
type=1400 audit(1530723219.268:14754): avc: denied { getattr } for pid=13313 comm="top" path="/proc/2permissive=1
type=1400 audit(1530723219.268:14754): avc: denied { getattr } for pid=13313 comm="top" path="/proc/2permissive=1
type=1400 audit(1530723219.288:14755): avc: denied { search } for pid=13313 comm="top" name="250" devive=1
type=1400 audit(1530723219.288:14755): avc: denied { search } for pid=13313 comm="top" name="250" devive=1
type=1400 audit(1530723219.288:14756): avc: denied { read } for pid=13313 comm="top" name="stat" dev=issive=1
type=1400 audit(1530723219.288:14756): avc: denied { read } for pid=13313 comm="top" name="stat" dev=issive=1
type=1400 audit(1530723219.288:14757): avc: denied { open } for pid=13313 comm="top" path="/proc/251/=file permissive=1
type=1400 audit(1530723222.758:14773): avc: denied { getattr } for pid=13347 comm="top" path="/proc/4s=dir permissive=1
type=1400 audit(1530723235.738:14774): avc: denied { search } for pid=1278 comm="_ServicePT" name="20=1
type=1400 audit(1530723235.738:14774): avc: denied { search } for pid=1278 comm="_ServicePT" name="20=1
type=1400 audit(1530723235.738:14775): avc: denied { search } for pid=1278 comm="_ServicePT" name="25
type=1400 audit(1530723235.738:14775): avc: denied { search } for pid=1278 comm="_ServicePT" name="25
type=1400 audit(1530723235.738:14776): avc: denied { read } for pid=1278 comm="_ServicePT" name="stat
type=1400 audit(1530723235.738:14776): avc: denied { read } for pid=1278 comm="_ServicePT" name="stat
type=1400 audit(1530723235.738:14777): avc: denied { open } for pid=1278 comm="_ServicePT" path="/prormissive=1
type=1400 audit(1530723235.738:14777): avc: denied { open } for pid=1278 comm="_ServicePT" path="/prormissive=1
type=1400 audit(1530723235.738:14778): avc: denied { search } for pid=1278 comm="_ServicePT" name="251
type=1400 audit(1530723237.098:14802): avc: denied { getattr } for pid=256 comm="[email protected]" pattclass=chr_file permissive=1
type=1400 audit(1530723242.378:14803): avc: denied { getattr } for pid=13544 comm="top" path="/proc/2ir permissive=1
type=1400 audit(1530723242.378:14803): avc: denied { getattr } for pid=13544 comm="top" path="/proc/2ir permissive=1
type=1400 audit(1530723242.378:14804): avc: denied { search } for pid=13544 comm="top" name="265" devissive=1
type=1400 audit(1530723242.378:14804): avc: denied { search } for pid=13544 comm="top" name="265" devissive=1
type=1400 audit(1530723242.378:14805): avc: denied { read } for pid=13544 comm="top" name="stat" dev=ile permissive=1
type=1400 audit(1530723242.378:14805): avc: denied { read } for pid=13544 comm="top" name="stat" dev=ile permissive=1
type=1400 audit(1530723242.378:14806): avc: denied { open } for pid=13544 comm="top" path="/proc/268/0 tclass=file permissive=1
type=1400 audit(1530723242.378:14806): avc: denied { open } for pid=13544 comm="top" path="/proc/268/0 tclass=file permissive=1
type=1400 audit(1530723242.398:14807): avc: denied { getattr } for pid=13544 comm="top" path="/proc/1lass=dir permissive=1
type=1400 audit(1530723242.408:14810): avc: denied { open } for pid=13544 comm="top" path="/proc/1386le permissive=1
type=1400 audit(1530723257.468:14811): avc: denied { getattr } for pid=13699 comm="top" path="/proc/2ss=dir permissive=1
audit: audit_lost=6684 audit_rate_limit=20 audit_backlog_limit=64
audit: rate limit exceeded
type=1400 audit(1530723257.468:14811): avc: denied { getattr } for pid=13699 comm="top" path="/proc/2ss=dir permissive=1
type=1400 audit(1530723257.488:14812): avc: denied { search } for pid=13699 comm="top" name="256" devpermissive=1
type=1400 audit(1530723257.488:14812): avc: denied { search } for pid=13699 comm="top" name="256" devpermissive=1
type=1400 audit(1530723257.488:14813): avc: denied { read } for pid=13699 comm="top" name="stat" dev=permissive=1
type=1400 audit(1530723257.488:14813): avc: denied { read } for pid=13699 comm="top" name="stat" dev=permissive=1
type=1400 audit(1530723257.488:14814): avc: denied { open } for pid=13699 comm="top" path="/proc/256/lass=file permissive=1
type=1400 audit(1530723257.488:14814): avc: denied { open } for pid=13699 comm="top" path="/proc/256/lass=file permissive=1
type=1400 audit(1530723257.488:14815): avc: denied { getattr } for pid=13699 comm="top" path="/proc/2fault:s0 tclass=dir permissive=1
type=1400 audit(1530723262.258:14889): avc: denied { open } for pid=13748 comm="top" path="/proc/285/ass=file permissive=1
type=1400 audit(1530723262.658:14890): avc: denied { getattr } for pid=13748 comm="top" path="/proc/2class=dir permissive=1
audit: audit_lost=6735 audit_rate_limit=20 audit_backlog_limit=64
audit: rate limit exceeded
type=1400 audit(1530723262.658:14890): avc: denied { getattr } for pid=13748 comm="top" path="/proc/2class=dir permissive=1
type=1400 audit(1530723262.658:14891): avc: denied { search } for pid=13748 comm="top" name="233" devir permissive=1
type=1400 audit(1530723262.658:14891): avc: denied { search } for pid=13748 comm="top" name="233" devir permissive=1
type=1400 audit(1530723262.658:14892): avc: denied { read } for pid=13748 comm="top" name="stat" dev==file permissive=1
type=1400 audit(1530723262.658:14892): avc: denied { read } for pid=13748 comm="top" name="stat" dev==file permissive=1
type=1400 audit(1530723262.658:14893): avc: denied { open } for pid=13748 comm="top" path="/proc/234/:s0 tclass=file permissive=1
type=1400 audit(1530723262.658:14893): avc: denied { open } for pid=13748 comm="top" path="/proc/234/:s0 tclass=file permissive=1
type=1400 audit(1530723262.658:14894): avc: denied { read } for pid=13748 comm="top" name="stat" dev=ssive=1
audit: audit_lost=6744 audit_rate_limit=20 audit_backlog_limit=64
audit: rate limit exceeded
type=1400 audit(1530723265.728:14932): avc: denied { search } for pid=1278 comm="_ServicePT" name="25permissive=1
type=1400 audit(1530723280.068:15039): avc: denied { read } for pid=13927 comm="top" name="stat" dev=permissive=1
type=1400 audit(1530723280.068:15039): avc: denied { read } for pid=13927 comm="top" name="stat" dev=permissive=1
type=1400 audit(1530723280.068:15040): avc: denied { open } for pid=13927 comm="top" path="/proc/304/lass=file permissive=1
type=1400 audit(1530723280.068:15040): avc: denied { open } for pid=13927 comm="top" path="/proc/304/lass=file permissive=1
type=1400 audit(1530723280.668:15041): avc: denied { getattr } for pid=13936 comm="top" path="/proc/2permissive=1
type=1400 audit(1530723280.668:15041): avc: denied { getattr } for pid=13936 comm="top" path="/proc/2permissive=1
type=1400 audit(1530723280.668:15042): avc: denied { search } for pid=13936 comm="top" name="244" devive=1
type=1400 audit(1530723280.668:15042): avc: denied { search } for pid=13936 comm="top" name="244" devive=1
type=1400 audit(1530723280.668:15043): avc: denied { getattr } for pid=13936 comm="top" path="/proc/2ss=dir permissive=1
audit: audit_lost=6850 audit_rate_limit=20 audit_backlog_limit=64
audit: rate limit exceeded
type=1400 audit(1530723284.618:15103): avc: denied { open } for pid=13974 comm="top" path="/proc/1386le permissive=1
type=1400 audit(1530723293.178:15104): avc: denied { read } for pid=14065 comm="top" name="stat" dev==file permissive=1
type=1400 audit(1530723293.178:15104): avc: denied { read } for pid=14065 comm="top" name="stat" dev==file permissive=1
type=1400 audit(1530723293.218:15105): avc: denied { open } for pid=14065 comm="top" path="/proc/264/:s0 tclass=file permissive=1
type=1400 audit(1530723293.218:15105): avc: denied { open } for pid=14065 comm="top" path="/proc/264/:s0 tclass=file permissive=1
type=1400 audit(1530723293.218:15106): avc: denied { read } for pid=14065 comm="top" name="stat" dev=missive=1
type=1400 audit(1530723293.218:15106): avc: denied { read } for pid=14065 comm="top" name="stat" dev=missive=1
type=1400 audit(1530723293.218:15107): avc: denied { open } for pid=14065 comm="top" path="/proc/265/s=file permissive=1
type=1400 audit(1530723293.218:15107): avc: denied { open } for pid=14065 comm="top" path="/proc/265/s=file permissive=1
type=1400 audit(1530723293.218:15108): avc: denied { getattr } for pid=14065 comm="top" path="/proc/2permissive=1
audit: audit_lost=6869 audit_rate_limit=20 audit_backlog_limit=64
audit: rate limit exceeded
type=1400 audit(1530723297.718:15292): avc: denied { write } for pid=1278 comm="_CommUpt1SPT" laddr=1d_acq:s0 tclass=tcp_socket permissive=1
type=1400 audit(1530723300.508:15293): avc: denied { read } for pid=14147 comm="top" name="stat" dev=ssive=1
type=1400 audit(1530723300.508:15293): avc: denied { read } for pid=14147 comm="top" name="stat" dev=ssive=1
type=1400 audit(1530723300.528:15294): avc: denied { open } for pid=14147 comm="top" path="/proc/278/file permissive=1
type=1400 audit(1530723300.528:15294): avc: denied { open } for pid=14147 comm="top" path="/proc/278/file permissive=1
type=1400 audit(1530723300.528:15295): avc: denied { read } for pid=14147 comm="top" name="stat" dev=sive=1
type=1400 audit(1530723300.528:15295): avc: denied { read } for pid=14147 comm="top" name="stat" dev=sive=1
type=1400 audit(1530723300.528:15296): avc: denied { open } for pid=14147 comm="top" path="/proc/279/ile permissive=1
type=1400 audit(1530723300.528:15296): avc: denied { open } for pid=14147 comm="top" path="/proc/279/ile permissive=1
type=1400 audit(1530723300.528:15297): avc: denied { getattr } for pid=14147 comm="top" path="/proc/2=dir permissive=1
type=1400 audit(1530723302.618:15324): avc: denied { open } for pid=14172 comm="top" path="/proc/232/ile permissive=1
type=1400 audit(1530723322.418:15325): avc: denied { getattr } for pid=14370 comm="top" path="/proc/2=dir permissive=1
type=1400 audit(1530723322.418:15325): avc: denied { getattr } for pid=14370 comm="top" path="/proc/2=dir permissive=1
type=1400 audit(1530723322.438:15326): avc: denied { search } for pid=14370 comm="top" name="210" devrmissive=1
type=1400 audit(1530723322.438:15326): avc: denied { search } for pid=14370 comm="top" name="210" devrmissive=1
type=1400 audit(1530723323.028:15327): avc: denied { read } for pid=14376 comm="top" name="stat" dev=ermissive=1
type=1400 audit(1530723323.028:15327): avc: denied { read } for pid=14376 comm="top" name="stat" dev=ermissive=1
type=1400 audit(1530723323.028:15328): avc: denied { open } for pid=14376 comm="top" path="/proc/210/ass=file permissive=1
type=1400 audit(1530723323.028:15328): avc: denied { open } for pid=14376 comm="top" path="/proc/210/ass=file permissive=1
type=1400 audit(1530723323.048:15329): avc: denied { getattr } for pid=14376 comm="top" path="/proc/3ss=dir permissive=1
audit: audit_lost=6999 audit_rate_limit=20 audit_backlog_limit=64
audit: rate limit exceeded
type=1400 audit(1530723325.788:15367): avc: denied { read } for pid=1278 comm="_ServicePT" name="stat1
type=1400 audit(1530723341.968:15405): avc: denied { getattr } for pid=14578 comm="top" path="/proc/2permissive=1
type=1400 audit(1530723341.968:15405): avc: denied { getattr } for pid=14578 comm="top" path="/proc/2permissive=1
type=1400 audit(1530723341.988:15406): avc: denied { search } for pid=14578 comm="top" name="244" devive=1
type=1400 audit(1530723341.988:15406): avc: denied { search } for pid=14578 comm="top" name="244" devive=1
type=1400 audit(1530723341.988:15407): avc: denied { getattr } for pid=14578 comm="top" path="/proc/2ss=dir permissive=1
type=1400 audit(1530723341.988:15407): avc: denied { getattr } for pid=14578 comm="top" path="/proc/2ss=dir permissive=1
type=1400 audit(1530723341.988:15408): avc: denied { search } for pid=14578 comm="top" name="296" devpermissive=1
type=1400 audit(1530723341.988:15408): avc: denied { search } for pid=14578 comm="top" name="296" devpermissive=1
type=1400 audit(1530723341.988:15409): avc: denied { read } for pid=14578 comm="top" name="stat" dev= permissive=1
type=1400 audit(1530723346.748:15442): avc: denied { open } for pid=14626 comm="top" path="/proc/523/s=file permissive=1
type=1400 audit(1530723348.508:15443): avc: denied { getattr } for pid=14648 comm="top" path="/proc/2permissive=1
type=1400 audit(1530723348.508:15443): avc: denied { getattr } for pid=14648 comm="top" path="/proc/2permissive=1
type=1400 audit(1530723348.538:15444): avc: denied { search } for pid=14648 comm="top" name="250" devive=1
type=1400 audit(1530723348.538:15444): avc: denied { search } for pid=14648 comm="top" name="250" devive=1
type=1400 audit(1530723348.538:15445): avc: denied { read } for pid=14648 comm="top" name="stat" dev=issive=1
type=1400 audit(1530723348.538:15445): avc: denied { read } for pid=14648 comm="top" name="stat" dev=issive=1
type=1400 audit(1530723348.538:15446): avc: denied { open } for pid=14648 comm="top" path="/proc/251/=file permissive=1
type=1400 audit(1530723348.538:15446): avc: denied { open } for pid=14648 comm="top" path="/proc/251/=file permissive=1
type=1400 audit(1530723348.568:15447): avc: denied { read } for pid=14648 comm="top" name="stat" dev=le permissive=1
type=1400 audit(1530723348.578:15450): avc: denied { open } for pid=14648 comm="top" path="/proc/513/:s0:c512,c768 tclass=file permissive=1
audit: audit_lost=7036 audit_rate_limit=20 audit_backlog_limit=64
audit: rate limit exceeded
type=1400 audit(1530723355.738:15451): avc: denied { read } for pid=1278 comm="_ServicePT" name="stat
type=1400 audit(1530723355.738:15451): avc: denied { read } for pid=1278 comm="_ServicePT" name="stat
type=1400 audit(1530723355.758:15452): avc: denied { open } for pid=1278 comm="_ServicePT" path="/prormissive=1
type=1400 audit(1530723355.758:15452): avc: denied { open } for pid=1278 comm="_ServicePT" path="/prormissive=1
type=1400 audit(1530723355.758:15453): avc: denied { read } for pid=1278 comm="_ServicePT" name="stat
type=1400 audit(1530723355.758:15453): avc: denied { read } for pid=1278 comm="_ServicePT" name="stat
type=1400 audit(1530723355.758:15454): avc: denied { open } for pid=1278 comm="_ServicePT" path="/prormissive=1
type=1400 audit(1530723355.758:15454): avc: denied { open } for pid=1278 comm="_ServicePT" path="/prormissive=1
type=1400 audit(1530723355.758:15455): avc: denied { search } for pid=1278 comm="_ServicePT" name="251
type=1400 audit(1530723360.198:15502): avc: denied { open } for pid=14778 comm="top" path="/proc/206/s=file permissive=1
type=1400 audit(1530723362.228:15503): avc: denied { getattr } for pid=14803 comm="top" path="/proc/20 tclass=dir permissive=1
type=1400 audit(1530723362.228:15503): avc: denied { getattr } for pid=14803 comm="top" path="/proc/20 tclass=dir permissive=1
type=1400 audit(1530723362.228:15504): avc: denied { search } for pid=14803 comm="top" name="264" devs=dir permissive=1
type=1400 audit(1530723362.228:15504): avc: denied { search } for pid=14803 comm="top" name="264" devs=dir permissive=1
type=1400 audit(1530723362.228:15505): avc: denied { read } for pid=14803 comm="top" name="stat" dev=sive=1
type=1400 audit(1530723362.228:15505): avc: denied { read } for pid=14803 comm="top" name="stat" dev=sive=1
type=1400 audit(1530723362.228:15506): avc: denied { open } for pid=14803 comm="top" path="/proc/267/ile permissive=1
type=1400 audit(1530723362.228:15506): avc: denied { open } for pid=14803 comm="top" path="/proc/267/ile permissive=1
type=1400 audit(1530723362.608:15507): avc: denied { getattr } for pid=14803 comm="top" path="/proc/2ir permissive=1
type=1400 audit(1530723362.808:15518): avc: denied { search } for pid=14808 comm="top" name="267" devive=1
type=1400 audit(1530723373.018:15519): avc: denied { read } for pid=14913 comm="top" name="stat" dev=missive=1
type=1400 audit(1530723373.018:15519): avc: denied { read } for pid=14913 comm="top" name="stat" dev=missive=1
type=1400 audit(1530723373.018:15520): avc: denied { open } for pid=14913 comm="top" path="/proc/265/s=file permissive=1
type=1400 audit(1530723373.018:15520): avc: denied { open } for pid=14913 comm="top" path="/proc/265/s=file permissive=1
type=1400 audit(1530723373.018:15521): avc: denied { getattr } for pid=14913 comm="top" path="/proc/2class=dir permissive=1
type=1400 audit(1530723373.018:15521): avc: denied { getattr } for pid=14913 comm="top" path="/proc/2class=dir permissive=1
type=1400 audit(1530723373.018:15522): avc: denied { search } for pid=14913 comm="top" name="268" devir permissive=1
type=1400 audit(1530723373.018:15522): avc: denied { search } for pid=14913 comm="top" name="268" devir permissive=1
type=1400 audit(1530723373.038:15523): avc: denied { read } for pid=14913 comm="top" name="stat" dev= permissive=1
type=1400 audit(1530723373.038:15526): avc: denied { search } for pid=14913 comm="top" name="1386" deive=1
type=1400 audit(1530723382.248:15527): avc: denied { read } for pid=15016 comm="top" name="stat" dev=ss=file permissive=1
type=1400 audit(1530723382.248:15527): avc: denied { read } for pid=15016 comm="top" name="stat" dev=ss=file permissive=1
type=1400 audit(1530723382.248:15528): avc: denied { open } for pid=15016 comm="top" path="/proc/931/,c768 tclass=file permissive=1
type=1400 audit(1530723382.248:15528): avc: denied { open } for pid=15016 comm="top" path="/proc/931/,c768 tclass=file permissive=1
type=1400 audit(1530723382.608:15529): avc: denied { read } for pid=15016 comm="top" name="stat" dev=file permissive=1
type=1400 audit(1530723382.608:15529): avc: denied { read } for pid=15016 comm="top" name="stat" dev=file permissive=1
type=1400 audit(1530723382.628:15530): avc: denied { open } for pid=15016 comm="top" path="/proc/263/s0 tclass=file permissive=1
type=1400 audit(1530723382.628:15530): avc: denied { open } for pid=15016 comm="top" path="/proc/263/s0 tclass=file permissive=1
type=1400 audit(1530723385.728:15531): avc: denied { search } for pid=1278 comm="_ServicePT" name="20=1
audit: audit_lost=7051 audit_rate_limit=20 audit_backlog_limit=64
audit: rate limit exceeded
type=1400 audit(1530723385.748:15559): avc: denied { open } for pid=1278 comm="_ServicePT" path="/proc768 tclass=file permissive=1
type=1400 audit(1530723402.468:15589): avc: denied { getattr } for pid=15229 comm="top" path="/proc/2ss=dir permissive=1
type=1400 audit(1530723402.468:15589): avc: denied { getattr } for pid=15229 comm="top" path="/proc/2ss=dir permissive=1
type=1400 audit(1530723402.468:15590): avc: denied { search } for pid=15229 comm="top" name="256" devpermissive=1
type=1400 audit(1530723402.468:15590): avc: denied { search } for pid=15229 comm="top" name="256" devpermissive=1
type=1400 audit(1530723402.468:15591): avc: denied { getattr } for pid=15229 comm="top" path="/proc/2tor_default:s0 tclass=dir permissive=1
type=1400 audit(1530723402.468:15591): avc: denied { getattr } for pid=15229 comm="top" path="/proc/2tor_default:s0 tclass=dir permissive=1
type=1400 audit(1530723402.468:15592): avc: denied { search } for pid=15229 comm="top" name="258" devault:s0 tclass=dir permissive=1
type=1400 audit(1530723402.468:15592): avc: denied { search } for pid=15229 comm="top" name="258" devault:s0 tclass=dir permissive=1
type=1400 audit(1530723402.468:15593): avc: denied { read } for pid=15229 comm="top" name="stat" dev=ssive=1
type=1400 audit(1530723404.788:15604): avc: denied { open } for pid=15250 comm="top" path="/proc/2943 tclass=file permissive=1
type=1400 audit(1530723415.728:15605): avc: denied { search } for pid=1278 comm="_ServicePT" name="25sive=1
type=1400 audit(1530723415.728:15605): avc: denied { search } for pid=1278 comm="_ServicePT" name="25sive=1
type=1400 audit(1530723415.748:15606): avc: denied { search } for pid=1278 comm="_ServicePT" name="25ss=dir permissive=1
type=1400 audit(1530723415.748:15606): avc: denied { search } for pid=1278 comm="_ServicePT" name="25ss=dir permissive=1
type=1400 audit(1530723415.748:15607): avc: denied { read } for pid=1278 comm="_ServicePT" name="stats=file permissive=1
type=1400 audit(1530723415.748:15607): avc: denied { read } for pid=1278 comm="_ServicePT" name="stats=file permissive=1
type=1400 audit(1530723415.748:15608): avc: denied { open } for pid=1278 comm="_ServicePT" path="/prot:s0 tclass=file permissive=1
type=1400 audit(1530723415.748:15608): avc: denied { open } for pid=1278 comm="_ServicePT" path="/prot:s0 tclass=file permissive=1
type=1400 audit(1530723415.748:15609): avc: denied { search } for pid=1278 comm="_ServicePT" name="250 tclass=dir permissive=1
audit: audit_lost=7080 audit_rate_limit=20 audit_backlog_limit=64
audit: rate limit exceeded
type=1400 audit(1530723416.108:15628): avc: denied { read } for pid=15374 comm="top" name="stat" dev=class=file permissive=1
type=1400 audit(1530723422.338:15634): avc: denied { read } for pid=15439 comm="top" name="stat" dev=issive=1
type=1400 audit(1530723422.338:15634): avc: denied { read } for pid=15439 comm="top" name="stat" dev=issive=1
type=1400 audit(1530723422.338:15635): avc: denied { open } for pid=15439 comm="top" path="/proc/2/stile permissive=1
type=1400 audit(1530723422.338:15635): avc: denied { open } for pid=15439 comm="top" path="/proc/2/stile permissive=1
type=1400 audit(1530723422.418:15636): avc: denied { getattr } for pid=15439 comm="top" path="/proc/2lt:s0 tclass=dir permissive=1
type=1400 audit(1530723422.418:15636): avc: denied { getattr } for pid=15439 comm="top" path="/proc/2lt:s0 tclass=dir permissive=1
type=1400 audit(1530723422.418:15637): avc: denied { search } for pid=15439 comm="top" name="254" devclass=dir permissive=1
type=1400 audit(1530723422.418:15637): avc: denied { search } for pid=15439 comm="top" name="254" devclass=dir permissive=1
type=1400 audit(1530723422.438:15638): avc: denied { read } for pid=15439 comm="top" name="stat" dev=ile permissive=1
type=1400 audit(1530723426.048:15652): avc: denied { search } for pid=15480 comm="top" name="285" devrmissive=1
type=1400 audit(1530723442.388:15653): avc: denied { getattr } for pid=15650 comm="top" path="/proc/2=dir permissive=1
type=1400 audit(1530723442.388:15653): avc: denied { getattr } for pid=15650 comm="top" path="/proc/2=dir permissive=1
type=1400 audit(1530723442.388:15654): avc: denied { search } for pid=15650 comm="top" name="287" devrmissive=1
type=1400 audit(1530723442.388:15654): avc: denied { search } for pid=15650 comm="top" name="287" devrmissive=1
type=1400 audit(1530723445.718:15655): avc: denied { read } for pid=1278 comm="_ServicePT" name="stat=1
type=1400 audit(1530723445.718:15655): avc: denied { read } for pid=1278 comm="_ServicePT" name="stat=1
type=1400 audit(1530723445.738:15656): avc: denied { open } for pid=1278 comm="_ServicePT" path="/prormissive=1
type=1400 audit(1530723445.738:15656): avc: denied { open } for pid=1278 comm="_ServicePT" path="/prormissive=1
type=1400 audit(1530723445.748:15657): avc: denied { search } for pid=1278 comm="_ServicePT" name="25dir permissive=1
type=1400 audit(1530723445.828:15682): avc: denied { open } for pid=15687 comm="top" path="/proc/283/class=file permissive=1
type=1400 audit(1530723462.368:15683): avc: denied { read } for pid=15865 comm="top" name="stat" dev=ile permissive=1
type=1400 audit(1530723462.368:15683): avc: denied { read } for pid=15865 comm="top" name="stat" dev=ile permissive=1
type=1400 audit(1530723462.388:15684): avc: denied { open } for pid=15865 comm="top" path="/proc/233/0 tclass=file permissive=1
type=1400 audit(1530723462.388:15684): avc: denied { open } for pid=15865 comm="top" path="/proc/233/0 tclass=file permissive=1
type=1400 audit(1530723462.388:15685): avc: denied { getattr } for pid=15865 comm="top" path="/proc/2 tclass=dir permissive=1
type=1400 audit(1530723462.388:15685): avc: denied { getattr } for pid=15865 comm="top" path="/proc/2 tclass=dir permissive=1
type=1400 audit(1530723462.388:15686): avc: denied { search } for pid=15865 comm="top" name="234" dev=dir permissive=1
type=1400 audit(1530723462.388:15686): avc: denied { search } for pid=15865 comm="top" name="234" dev=dir permissive=1
type=1400 audit(1530723462.408:15687): avc: denied { getattr } for pid=15865 comm="top" path="/proc/2ss=dir permissive=1
type=1400 audit(1530723462.408:15688): avc: denied { search } for pid=15865 comm="top" name="283" devpermissive=1
type=1400 audit(1530723475.748:15689): avc: denied { read } for pid=1278 comm="_ServicePT" name="statpermissive=1
type=1400 audit(1530723475.748:15689): avc: denied { read } for pid=1278 comm="_ServicePT" name="statpermissive=1
type=1400 audit(1530723475.768:15690): avc: denied { open } for pid=1278 comm="_ServicePT" path="/prolass=file permissive=1
type=1400 audit(1530723475.768:15690): avc: denied { open } for pid=1278 comm="_ServicePT" path="/prolass=file permissive=1
type=1400 audit(1530723475.778:15691): avc: denied { search } for pid=1278 comm="_ServicePT" name="23permissive=1
type=1400 audit(1530723475.778:15691): avc: denied { search } for pid=1278 comm="_ServicePT" name="23permissive=1
type=1400 audit(1530723475.778:15692): avc: denied { read } for pid=1278 comm="_ServicePT" name="stat permissive=1
type=1400 audit(1530723475.778:15692): avc: denied { read } for pid=1278 comm="_ServicePT" name="stat permissive=1
type=1400 audit(1530723475.778:15693): avc: denied { open } for pid=1278 comm="_ServicePT" path="/proclass=file permissive=1
type=1400 audit(1530723480.168:15707): avc: denied { search } for pid=16060 comm="top" name="284" devr permissive=1
type=1400 audit(1530723505.728:15708): avc: denied { read } for pid=1278 comm="_ServicePT" name="stat
type=1400 audit(1530723505.728:15708): avc: denied { read } for pid=1278 comm="_ServicePT" name="stat
type=1400 audit(1530723505.748:15709): avc: denied { open } for pid=1278 comm="_ServicePT" path="/prormissive=1
type=1400 audit(1530723505.748:15709): avc: denied { open } for pid=1278 comm="_ServicePT" path="/prormissive=1
type=1400 audit(1530723505.748:15710): avc: denied { read } for pid=1278 comm="_ServicePT" name="statrmissive=1
type=1400 audit(1530723505.748:15710): avc: denied { read } for pid=1278 comm="_ServicePT" name="statrmissive=1
type=1400 audit(1530723505.748:15711): avc: denied { open } for pid=1278 comm="_ServicePT" path="/pross=file permissive=1
type=1400 audit(1530723505.748:15711): avc: denied { open } for pid=1278 comm="_ServicePT" path="/pross=file permissive=1
type=1400 audit(1530723505.748:15712): avc: denied { search } for pid=1278 comm="_ServicePT" name="23ermissive=1
type=1400 audit(1530723506.078:15717): avc: denied { open } for pid=16328 comm="top" path="/proc/232/ile permissive=1
type=1400 audit(1530723535.718:15718): avc: denied { search } for pid=1278 comm="_ServicePT" name="1"
type=1400 audit(1530723535.718:15718): avc: denied { search } for pid=1278 comm="_ServicePT" name="1"
type=1400 audit(1530723535.758:15719): avc: denied { search } for pid=1278 comm="_ServicePT" name="23
type=1400 audit(1530723535.758:15719): avc: denied { search } for pid=1278 comm="_ServicePT" name="23
type=1400 audit(1530723546.028:15720): avc: denied { getattr } for pid=16763 comm="top" path="/proc/2=dir permissive=1
type=1400 audit(1530723546.028:15720): avc: denied { getattr } for pid=16763 comm="top" path="/proc/2=dir permissive=1
type=1400 audit(1530723546.048:15721): avc: denied { search } for pid=16763 comm="top" name="210" devrmissive=1
type=1400 audit(1530723546.048:15721): avc: denied { search } for pid=16763 comm="top" name="210" devrmissive=1
type=1400 audit(1530723546.058:15722): avc: denied { getattr } for pid=16763 comm="top" path="/proc/2permissive=1
type=1400 audit(1530723546.058:15722): avc: denied { getattr } for pid=16763 comm="top" path="/proc/2permissive=1
type=1400 audit(1530723546.058:15723): avc: denied { search } for pid=16763 comm="top" name="232" devive=1
type=1400 audit(1530723546.058:15723): avc: denied { search } for pid=16763 comm="top" name="232" devive=1
type=1400 audit(1530723565.718:15724): avc: denied { read } for pid=1278 comm="_ServicePT" name="stat
type=1400 audit(1530723565.718:15724): avc: denied { read } for pid=1278 comm="_ServicePT" name="stat
type=1400 audit(1530723565.718:15725): avc: denied { open } for pid=1278 comm="_ServicePT" path="/proissive=1
type=1400 audit(1530723565.718:15725): avc: denied { open } for pid=1278 comm="_ServicePT" path="/proissive=1
type=1400 audit(1530723565.718:15726): avc: denied { search } for pid=1278 comm="_ServicePT" name="21ve=1
type=1400 audit(1530723565.718:15726): avc: denied { search } for pid=1278 comm="_ServicePT" name="21ve=1
type=1400 audit(1530723660.148:15727): avc: denied { read } for pid=17977 comm="top" name="stat" dev=ermissive=1
type=1400 audit(1530723660.148:15727): avc: denied { read } for pid=17977 comm="top" name="stat" dev=ermissive=1
type=1400 audit(1530723660.148:15728): avc: denied { open } for pid=17977 comm="top" path="/proc/210/ass=file permissive=1
type=1400 audit(1530723660.148:15728): avc: denied { open } for pid=17977 comm="top" path="/proc/210/ass=file permissive=1
type=1400 audit(1530723662.258:15729): avc: denied { getattr } for pid=17996 comm="top" path="/proc/3ss=dir permissive=1
type=1400 audit(1530723662.258:15729): avc: denied { getattr } for pid=17996 comm="top" path="/proc/3ss=dir permissive=1
type=1400 audit(1530723662.258:15730): avc: denied { search } for pid=17996 comm="top" name="312" devpermissive=1
type=1400 audit(1530723662.258:15730): avc: denied { search } for pid=17996 comm="top" name="312" devpermissive=1
type=1400 audit(1530723662.258:15731): avc: denied { read } for pid=17996 comm="top" name="stat" dev=permissive=1
type=1400 audit(1530723662.258:15732): avc: denied { open } for pid=17996 comm="top" path="/proc/312/lass=file permissive=1
type=1400 audit(1530723685.758:15733): avc: denied { read } for pid=1278 comm="_ServicePT" name="stative=1
type=1400 audit(1530723685.758:15733): avc: denied { read } for pid=1278 comm="_ServicePT" name="stative=1
type=1400 audit(1530723685.758:15734): avc: denied { open } for pid=1278 comm="_ServicePT" path="/prole permissive=1
type=1400 audit(1530723685.758:15734): avc: denied { open } for pid=1278 comm="_ServicePT" path="/prole permissive=1
type=1400 audit(1530723685.758:15735): avc: denied { search } for pid=1278 comm="_ServicePT" name="31sive=1
type=1400 audit(1530723685.758:15735): avc: denied { search } for pid=1278 comm="_ServicePT" name="31sive=1
type=1400 audit(1530723685.758:15736): avc: denied { read } for pid=1278 comm="_ServicePT" name="statsive=1
type=1400 audit(1530723685.758:15736): avc: denied { read } for pid=1278 comm="_ServicePT" name="statsive=1
type=1400 audit(1530723685.758:15737): avc: denied { open } for pid=1278 comm="_ServicePT" path="/proile permissive=1
type=1400 audit(1530723685.808:15743): avc: denied { open } for pid=18244 comm="top" path="/proc/310/class=file permissive=1
type=1400 audit(1530723715.728:15744): avc: denied { search } for pid=1278 comm="_ServicePT" name="30sive=1
type=1400 audit(1530723715.728:15744): avc: denied { search } for pid=1278 comm="_ServicePT" name="30sive=1
type=1400 audit(1530723715.748:15745): avc: denied { search } for pid=1278 comm="_ServicePT" name="30
type=1400 audit(1530723715.748:15745): avc: denied { search } for pid=1278 comm="_ServicePT" name="30
type=1400 audit(1530723715.748:15746): avc: denied { read } for pid=1278 comm="_ServicePT" name="statssive=1
type=1400 audit(1530723715.748:15746): avc: denied { read } for pid=1278 comm="_ServicePT" name="statssive=1
type=1400 audit(1530723715.748:15747): avc: denied { open } for pid=1278 comm="_ServicePT" path="/profile permissive=1
type=1400 audit(1530723715.748:15747): avc: denied { open } for pid=1278 comm="_ServicePT" path="/profile permissive=1
type=1400 audit(1530724107.048:15748): avc: denied { write } for pid=1278 comm="_ACFRead" laddr=127.0ssive=1
type=1400 audit(1530724107.048:15748): avc: denied { write } for pid=1278 comm="_ACFRead" laddr=127.0ssive=1
type=1400 audit(1530724107.048:15749): avc: denied { read } for pid=22805 comm="top" name="stat" dev= tclass=file permissive=1
type=1400 audit(1530724107.048:15749): avc: denied { read } for pid=22805 comm="top" name="stat" dev= tclass=file permissive=1
type=1400 audit(1530724107.048:15750): avc: denied { open } for pid=22805 comm="top" path="/proc/1877s0:c512,c768 tclass=file permissive=1
audit: audit_lost=7085 audit_rate_limit=20 audit_backlog_limit=64
audit: rate limit exceeded
type=1400 audit(1530724107.048:15750): avc: denied { open } for pid=22805 comm="top" path="/proc/1877s0:c512,c768 tclass=file permissive=1
type=1400 audit(1530724107.208:15751): avc: denied { getattr } for pid=22812 comm="top" path="/proc/2permissive=1
type=1400 audit(1530724107.208:15751): avc: denied { getattr } for pid=22812 comm="top" path="/proc/2permissive=1
type=1400 audit(1530724107.208:15752): avc: denied { search } for pid=22812 comm="top" name="244" devive=1
type=1400 audit(1530724107.208:15773): avc: denied { getattr } for pid=22812 comm="top" path="/proc/2ss=dir permissive=1
type=1400 audit(1530724122.478:15807): avc: denied { getattr } for pid=22969 comm="top" path="/proc/20 tclass=dir permissive=1
type=1400 audit(1530724122.478:15807): avc: denied { getattr } for pid=22969 comm="top" path="/proc/20 tclass=dir permissive=1
type=1400 audit(1530724122.478:15808): avc: denied { search } for pid=22969 comm="top" name="264" devs=dir permissive=1
type=1400 audit(1530724122.478:15808): avc: denied { search } for pid=22969 comm="top" name="264" devs=dir permissive=1
type=1400 audit(1530724122.478:15809): avc: denied { read } for pid=22969 comm="top" name="stat" dev==file permissive=1
type=1400 audit(1530724122.478:15809): avc: denied { read } for pid=22969 comm="top" name="stat" dev==file permissive=1
type=1400 audit(1530724122.478:15810): avc: denied { open } for pid=22969 comm="top" path="/proc/264/:s0 tclass=file permissive=1
type=1400 audit(1530724122.478:15810): avc: denied { open } for pid=22969 comm="top" path="/proc/264/:s0 tclass=file permissive=1
type=1400 audit(1530724122.478:15811): avc: denied { getattr } for pid=22969 comm="top" path="/proc/2permissive=1
audit: audit_lost=7118 audit_rate_limit=20 audit_backlog_limit=64
audit: rate limit exceeded
type=1400 audit(1530724124.838:15846): avc: denied { getattr } for pid=22994 comm="top" path="/proc/2fault:s0 tclass=dir permissive=1
type=1400 audit(1530724132.538:15850): avc: denied { call } for pid=496 comm="hci_thread" scontext=u:
type=1400 audit(1530724132.538:15850): avc: denied { call } for pid=496 comm="hci_thread" scontext=u:
type=1400 audit(1530724132.578:15851): avc: denied { getattr } for pid=256 comm="[email protected]" pattclass=chr_file permissive=1
type=1400 audit(1530724132.578:15851): avc: denied { getattr } for pid=256 comm="[email protected]" pattclass=chr_file permissive=1
type=1400 audit(1530724132.578:15852): avc: denied { call } for pid=256 comm="[email protected]" sconte
type=1400 audit(1530724132.578:15852): avc: denied { call } for pid=256 comm="[email protected]" sconte
audit: audit_lost=7121 audit_rate_limit=20 audit_backlog_limit=64
audit: rate limit exceeded
type=1400 audit(1530724135.718:15853): avc: denied { search } for pid=1278 comm="_ServicePT" name="20=1
type=1400 audit(1530724135.718:15853): avc: denied { search } for pid=1278 comm="_ServicePT" name="20=1
type=1400 audit(1530724135.718:15854): avc: denied { read } for pid=1278 comm="_ServicePT" name="state=1
type=1400 audit(1530724135.718:15889): avc: denied { search } for pid=1278 comm="_ServicePT" name="26missive=1
type=1400 audit(1530724140.048:15997): avc: denied { getattr } for pid=23164 comm="top" path="/proc/2ss=dir permissive=1
type=1400 audit(1530724140.048:15997): avc: denied { getattr } for pid=23164 comm="top" path="/proc/2ss=dir permissive=1
type=1400 audit(1530724140.068:15998): avc: denied { search } for pid=23164 comm="top" name="280" devpermissive=1
type=1400 audit(1530724140.068:15998): avc: denied { search } for pid=23164 comm="top" name="280" devpermissive=1
type=1400 audit(1530724140.068:15999): avc: denied { read } for pid=23164 comm="top" name="stat" dev=e permissive=1
type=1400 audit(1530724140.068:15999): avc: denied { read } for pid=23164 comm="top" name="stat" dev=e permissive=1
type=1400 audit(1530724140.068:16000): avc: denied { open } for pid=23164 comm="top" path="/proc/284/tclass=file permissive=1
type=1400 audit(1530724140.068:16000): avc: denied { open } for pid=23164 comm="top" path="/proc/284/tclass=file permissive=1
type=1400 audit(1530724140.438:16001): avc: denied { read } for pid=23164 comm="top" name="stat" dev=ile permissive=1
type=1400 audit(1530724142.418:16026): avc: denied { open } for pid=23188 comm="top" path="/proc/312/lass=file permissive=1
type=1400 audit(1530724146.228:16027): avc: denied { read } for pid=23224 comm="top" name="stat" dev=permissive=1
type=1400 audit(1530724146.228:16027): avc: denied { read } for pid=23224 comm="top" name="stat" dev=permissive=1
type=1400 audit(1530724146.248:16028): avc: denied { open } for pid=23224 comm="top" path="/proc/304/lass=file permissive=1
type=1400 audit(1530724146.248:16028): avc: denied { open } for pid=23224 comm="top" path="/proc/304/lass=file permissive=1
type=1400 audit(1530724146.248:16029): avc: denied { getattr } for pid=23224 comm="top" path="/proc/3 permissive=1
type=1400 audit(1530724146.248:16029): avc: denied { getattr } for pid=23224 comm="top" path="/proc/3 permissive=1
type=1400 audit(1530724146.248:16030): avc: denied { search } for pid=23224 comm="top" name="305" devsive=1
type=1400 audit(1530724146.248:16030): avc: denied { search } for pid=23224 comm="top" name="305" devsive=1
type=1400 audit(1530724146.248:16031): avc: denied { read } for pid=23224 comm="top" name="stat" dev= permissive=1
type=1400 audit(1530724146.248:16032): avc: denied { open } for pid=23224 comm="top" path="/proc/310/class=file permissive=1
type=1400 audit(1530724154.798:16033): avc: denied { getattr } for pid=23318 comm="top" path="/proc/2ss=dir permissive=1
type=1400 audit(1530724154.798:16033): avc: denied { getattr } for pid=23318 comm="top" path="/proc/2ss=dir permissive=1
type=1400 audit(1530724154.798:16034): avc: denied { search } for pid=23318 comm="top" name="296" devpermissive=1
type=1400 audit(1530724154.798:16034): avc: denied { search } for pid=23318 comm="top" name="296" devpermissive=1
type=1400 audit(1530724154.798:16035): avc: denied { read } for pid=23318 comm="top" name="stat" dev=rmissive=1
type=1400 audit(1530724154.798:16035): avc: denied { read } for pid=23318 comm="top" name="stat" dev=rmissive=1
type=1400 audit(1530724154.798:16036): avc: denied { open } for pid=23318 comm="top" path="/proc/300/ss=file permissive=1
type=1400 audit(1530724154.798:16036): avc: denied { open } for pid=23318 comm="top" path="/proc/300/ss=file permissive=1
type=1400 audit(1530724154.798:16037): avc: denied { read } for pid=23318 comm="top" name="stat" dev=sive=1
type=1400 audit(1530724157.678:16052): avc: denied { search } for pid=23348 comm="top" name="300" devrmissive=1
type=1400 audit(1530724162.238:16053): avc: denied { read } for pid=23400 comm="top" name="stat" dev=rmissive=1
type=1400 audit(1530724162.238:16053): avc: denied { read } for pid=23400 comm="top" name="stat" dev=rmissive=1
type=1400 audit(1530724162.258:16054): avc: denied { open } for pid=23400 comm="top" path="/proc/290/ss=file permissive=1
type=1400 audit(1530724162.258:16054): avc: denied { open } for pid=23400 comm="top" path="/proc/290/ss=file permissive=1
type=1400 audit(1530724162.258:16055): avc: denied { read } for pid=23400 comm="top" name="stat" dev=ile permissive=1
type=1400 audit(1530724162.258:16055): avc: denied { read } for pid=23400 comm="top" name="stat" dev=ile permissive=1
type=1400 audit(1530724162.258:16056): avc: denied { open } for pid=23400 comm="top" path="/proc/291/0 tclass=file permissive=1
type=1400 audit(1530724162.258:16056): avc: denied { open } for pid=23400 comm="top" path="/proc/291/0 tclass=file permissive=1
type=1400 audit(1530724162.258:16057): avc: denied { getattr } for pid=23400 comm="top" path="/proc/2lass=dir permissive=1
audit: audit_lost=7228 audit_rate_limit=20 audit_backlog_limit=64
audit: rate limit exceeded
type=1400 audit(1530724165.728:16096): avc: denied { read } for pid=23435 comm="top" name="stat" dev=768 tclass=file permissive=1
type=1400 audit(1530724169.198:16175): avc: denied { getattr } for pid=23472 comm="top" path="/proc/20 tclass=dir permissive=1
type=1400 audit(1530724169.198:16175): avc: denied { getattr } for pid=23472 comm="top" path="/proc/20 tclass=dir permissive=1
type=1400 audit(1530724169.218:16176): avc: denied { search } for pid=23472 comm="top" name="264" devs=dir permissive=1
type=1400 audit(1530724169.218:16176): avc: denied { search } for pid=23472 comm="top" name="264" devs=dir permissive=1
type=1400 audit(1530724169.228:16177): avc: denied { getattr } for pid=23472 comm="top" path="/proc/2ir permissive=1
type=1400 audit(1530724169.228:16177): avc: denied { getattr } for pid=23472 comm="top" path="/proc/2ir permissive=1
type=1400 audit(1530724169.228:16178): avc: denied { search } for pid=23472 comm="top" name="265" devissive=1
type=1400 audit(1530724169.228:16178): avc: denied { search } for pid=23472 comm="top" name="265" devissive=1
type=1400 audit(1530724169.228:16179): avc: denied { read } for pid=23472 comm="top" name="stat" dev=sive=1
type=1400 audit(1530724169.248:16186): avc: denied { open } for pid=23472 comm="top" path="/proc/1386le permissive=1
type=1400 audit(1530724179.018:16187): avc: denied { read } for pid=23577 comm="top" name="stat" dev==file permissive=1
type=1400 audit(1530724179.018:16187): avc: denied { read } for pid=23577 comm="top" name="stat" dev==file permissive=1
type=1400 audit(1530724179.038:16188): avc: denied { open } for pid=23577 comm="top" path="/proc/264/:s0 tclass=file permissive=1
type=1400 audit(1530724179.038:16188): avc: denied { open } for pid=23577 comm="top" path="/proc/264/:s0 tclass=file permissive=1
type=1400 audit(1530724179.038:16189): avc: denied { read } for pid=23577 comm="top" name="stat" dev=missive=1
type=1400 audit(1530724179.038:16189): avc: denied { read } for pid=23577 comm="top" name="stat" dev=missive=1
type=1400 audit(1530724179.038:16190): avc: denied { open } for pid=23577 comm="top" path="/proc/265/s=file permissive=1
type=1400 audit(1530724179.038:16190): avc: denied { open } for pid=23577 comm="top" path="/proc/265/s=file permissive=1
type=1400 audit(1530724179.038:16191): avc: denied { getattr } for pid=23577 comm="top" path="/proc/2permissive=1
130|lotus:/vendor # type=1400 audit(1530724182.558:16219): avc: denied { open } for pid=23613 comm="tu:r:mediaprovider:s0:c512,c768 tclass=file permissive=1
type=1400 audit(1530724187.978:16220): avc: denied { getattr } for pid=23672 comm="top" path="/proc/2fault:s0 tclass=dir permissive=1
type=1400 audit(1530724187.978:16220): avc: denied { getattr } for pid=23672 comm="top" path="/proc/2fault:s0 tclass=dir permissive=1
type=1400 audit(1530724187.978:16221): avc: denied { search } for pid=23672 comm="top" name="257" dev0 tclass=dir permissive=1
type=1400 audit(1530724187.978:16221): avc: denied { search } for pid=23672 comm="top" name="257" dev0 tclass=dir permissive=1
type=1400 audit(1530724187.978:16222): avc: denied { getattr } for pid=23672 comm="top" path="/proc/2tor_default:s0 tclass=dir permissive=1
type=1400 audit(1530724187.978:16222): avc: denied { getattr } for pid=23672 comm="top" path="/proc/2tor_default:s0 tclass=dir permissive=1
type=1400 audit(1530724187.978:16223): avc: denied { search } for pid=23672 comm="top" name="258" devault:s0 tclass=dir permissive=1
130|lotus:/vendor # type=1400 audit(1530724187.978:16223): avc: denied { search } for pid=23672 comm=aphics_allocator_default:s0 tclass=dir permissive=1
type=1400 audit(1530724187.978:16224): avc: denied { read } for pid=23672 comm="top" name="stat" dev=s=file permissive=1
130|lotus:/vendor #
130|lotus:/vendor # date
Wed Jul 4 17:09:49 GMT 2018
lotus:/vendor #
lotus:/vendor #
lotus:/vendor #
lotus:/vendor #
lotus:/vendor #
lotus:/vendor #
lotus:/vendor #
lotus:/vendor #
lotus:/vendor # cd /sdcard
lotus:/sdcard # rm -rf *
lotus:/sdcard # type=1400 audit(1530724189.588:16239): avc: denied { open } for pid=23684 comm="top" :r:system_app:s0 tclass=file permissive=1
type=1400 audit(1530724194.728:16240): avc: denied { read } for pid=23743 comm="top" name="stat" dev=s=file permissive=1
type=1400 audit(1530724194.728:16240): avc: denied { read } for pid=23743 comm="top" name="stat" dev=s=file permissive=1
type=1400 audit(1530724194.748:16241): avc: denied { open } for pid=23743 comm="top" path="/proc/255/t:s0 tclass=file permissive=1
type=1400 audit(1530724194.748:16241): avc: denied { open } for pid=23743 comm="top" path="/proc/255/t:s0 tclass=file permissive=1
type=1400 audit(1530724194.778:16242): avc: denied { read } for pid=23743 comm="top" name="stat" dev=ile permissive=1
type=1400 audit(1530724194.778:16242): avc: denied { read } for pid=23743 comm="top" name="stat" dev=ile permissive=1
type=1400 audit(1530724194.778:16243): avc: denied { open } for pid=23743 comm="top" path="/proc/545/0 tclass=file permissive=1
lotus:/sdcard #
lotus:/sdcard #
lotus:/sdcard # cdtype=1400 audit(1530724194.778:16243): avc: denied { open } for pid=23743 comm="topr:webview_zygote:s0 tclass=file permissive=1
audit: audit_lost=7306 audit_rate_limit=20 audit_backlog_limit=64
audit: rate limit exceeded
type=1400 audit(1530724195.718:16244): avc: denied { search } for pid=1278 comm="_ServicePT" name="2"
/data/data
lotus:/data/data # rm -rf
lotus:/data/data #
lotus:/data/data #
lotus:/data/data # ls
android com.android.musicfx
android.ext.services com.android.nfc
android.ext.shared com.android.onetimeinitializer
com.android.backupconfirm com.android.packageinstaller
com.android.bips com.android.pacprocessor
com.android.bluetooth com.android.phone
com.android.bluetoothmidiservice com.android.printservice.recommendation
com.android.bookmarkprovider com.android.printspooler
com.android.calculator2 com.android.providers.blockednumber
com.android.calendar com.android.providers.calendar
com.android.calllogbackup com.android.providers.contacts
com.android.camera2 com.android.providers.downloads
com.android.captiveportallogin com.android.providers.downloads.ui
com.android.carrierconfig com.android.providers.media
com.android.carrierdefaultapp com.android.providers.settings
com.android.cellbroadcastreceiver com.android.providers.telephony
com.android.certinstaller com.android.providers.userdictionary
com.android.companiondevicemanager com.android.provision
com.android.contacts com.android.proxyhandler
com.android.cts.ctsshim com.android.quicksearchbox
com.android.cts.priv.ctsshim com.android.server.telecom
com.android.defcontainer com.android.settings
com.android.deskclock com.android.sharedstoragebackup
com.android.dialer com.android.shell
com.android.documentsui com.android.statementservice
com.android.dreams.basic com.android.storagemanager
com.android.egg com.android.systemui
com.android.email com.android.systemui.theme.dark
com.android.emergencytype=1400 audit(1530724195.718:16274): avc: denied { open } for pid=1278 comm="_al_sensors_default:s0 tclass=file permissive=1
com.android.vpndialogs
com.android.externalstorage com.antype=1400 audit(1530724202.278:16346): avc: denied { getattr2,c768 tcontext=u:r:init:s0 tclass=dir permissive=1
droid.wallpaperbackup
com.android.gallery3d type=1400 audit(1530724202.278:16346): avc: denied { getattr } for pid=2ext=u:r:init:s0 tclass=dir permissive=1
com.android.wallpapercropper
com.android.htmlviewer com.android.webview
com.type=1400 audit(1530724202.278:16347): avc: denied { search } for pid=23829 comm="top" name="1" dssive=1
android.inputdevices cotype=1400 audit(1530724202.278:16347): avc: denied { search } for pi=u:r:init:s0 tclass=dir permissive=1
m.fsl.android.ota
com.android.inputmethod.latin com.fsl.ethernet type=1400 audit(1530724202.278:16348): avc: _app:s0:c512,c768 tcontext=u:r:init:s0 tclass=file permissive=1
com.android.inputmethod.pinyin com.ge.med.mic.launcher
com.android.keychain com.ge.med.mic.monitoring
com.android.launchetype=1400 audit(1530724202.278:16348): avc: denied { read } for pid=23829 comm="to tclass=file permissive=1
r3 com.ge.med.mic.setype=1400 audit(1530724202.278:16349): avc: denied { open } for pid=8 tcontext=u:r:init:s0 tclass=file permissive=1
rvice
com.andrtype=1400 audit(1530724202.278:16349): avc: denied { open } for pid=23829 comm="top" path="/plass=file permissive=1
oid.location.fused com.getype=1400 audit(1530724202.348:16350): avc: denied { getattr } for p tcontext=u:r:logd:s0 tclass=dir permissive=1
.ppd
com.android.managedprovisioning com.halbae87.koreanbasicime
com.android.mms.service com.svox.pico
com.android.mtp jp.co.omronsoft.openwnn
com.android.music audit: audit_lost=7377 audit_rate_limit=20 audit_backlog_limit=64
org.chromium.webviewaudit: rate limit exceeded
_shell
lotus:/data/data #
lotus:/data/data #
lotus:/data/data # reboot
init: Clear action queue and start shutdown trigger
init: processing action (shutdown_done) from (<Builtin Action>:0)
init: Reboot start, reason: reboot,, rebootTarget:
init: Shutdown timeout: 6000 ms
init: terminating init services
init: Sending signal 15 to service 'healthd' (pid 265) process group...
init: Sending signal 15 to service 'console' (pid 278) process group...
collectd[5069]: Exiting normally.
collectd[5069]: collectd: Stopping 5 read threads.
collectd[5069]: collectd: Stoppiinit: Sending signal 15 to service 'lotuseventlogger' (pid 280) proce
ng 5 write threads.
collectd[5069]: rrdtool plugin: Shutting down the queue thread. init: Sending signal 15 to service 'l
This may take a while.
Terminated
init: Sending signal 15 to service 'lotusmainlogger' (pid 282) process group...
143|lotus:/data/data # (stc): st_tty_close (stc): 2 not un-registered
(stc): 3 not un-registered(stc): 4 not un-registered
143|lotus:/data/data # (hci_tty): inside hci_tty_release (d0a6bac0, d16759c0)
(stc): chnl_id 4 not registered(hci_tty): st_unregister(4) failed with error -93
(stc): chnl_id 2 not registered(hci_tty): st_unregister(2) failed with error -93
(stc): chnl_id 3 not registered(hci_tty): st_unregister(3) failed with error -93
binder: release 262:443 transaction 1581194 in, still active
binder: send failed reply for transaction 1581194 to 392:445
143|lotus:/data/data #
143|lotus:/data/data # binder: 392: binder_alloc_buf, no vma
binder: 268:333 transaction failed 29201, size 68-0
binder: 392: binder_alloc_buf, no vma
binder: 268:332 transaction failed 29201, size 68-0
143|lotus:/data/data #
143|lotus:/data/data #
143|lotus:/data/data # binder: 268:333 transaction failed 29189, size 68-0
143|lotus:/data/data #
143|lotus:/data/data #
143|lotus:/data/data #
143|lotus:/data/data #
143|lotus:/data/data #
143|lotus:/data/data #
143|lotus:/data/data #
143|lotus:/data/data #
143|lotus:/data/data #
143|lotus:/data/data #
vdc: 651 emulated 5
vdc: 651 emulated 0
vdc: 651 emulated 8
vdc: 659 emulated
vdc: 200 23856 Command succeeded
logd.klogd: 14251 output lines suppressed due to ratelimiting
imx2-wdt 20bc000.wdog: Device shutdown: Expect reboot!
ci_hdrc ci_hdrc.1: remove, state 1
usb usb1: USB disconnect, device number 1
usb 1-1: USB disconnect, device number 2
usb 1-1.2: USB disconnect, device number 3
usb 1-1.2.1: USB disconnect, device number 5
usb 1-1.2.2: USB disconnect, device number 6
ftdi_sio ttyUSB2: FTDI USB Serial Device converter now disconnected from ttyUSB2
ftdi_sio 1-1.2.2:1.0: device disconnected
ftdi_sio ttyUSB3: FTDI USB Serial Device converter now disconnected from ttyUSB3
ftdi_sio 1-1.2.2:1.1: device disconnected
ftdi_sio ttyUSB4: FTDI USB Serial Device converter now disconnected from ttyUSB4
ftdi_sio 1-1.2.2:1.2: device disconnected
ftdi_sio ttyUSB5: FTDI USB Serial Device converter now disconnected from ttyUSB5
ftdi_sio 1-1.2.2:1.3: device disconnected
usb 1-1.4: USB disconnect, device number 4
ftdi_sio ttyUSB0: FTDI USB Serial Device converter now disconnected from ttyUSB0
ftdi_sio 1-1.4:1.0: device disconnected
ftdi_sio ttyUSB1: FTDI USB Serial Device converter now disconnected from ttyUSB1
ftdi_sio 1-1.4:1.1: device disconnected
ci_hdrc ci_hdrc.1: USB bus 1 deregistered
reboot: Restarting system with command ''
U-Boot 2016.09.01-g28bfd7f (Jul 04 2018 - 13:10:08 +0530), Build: jenkins-OREO-NIGHTLY-revC-65
CPU: Freescale i.MX6D rev1.5 at 792 MHz
Reset cause: WDOG
BOARD: Advantech DMS-BA16
I2C: ready
DRAM: 2 GiB
MMC: FSL_SDHC: 0, FSL_SDHC: 1, FSL_SDHC: 2
Using default environment
auto-detected panel INNOLUX-G101ICE-L01
Display: INNOLUX-G101ICE-L01 (1280x800)
In: serial
Out: serial
Err: serial
Net: Board Net Initialization Failed
No ethernet found.
Hit any key to stop autoboot: 0
=>
=>
=>
=>
=>
=> mw.l 0x20d8040 0x30; md.l 0x20d8040 1; mw.l 0x20d8044 0x10000000; reset
020d8040: 00000030 0...
resetting ...
U-Boot 2016.09.01-00040-g98d2563-dirty (Feb 02 2018 - 18:42:01 +0000)
CPU: Freescale i.MX6D rev1.5 at 792 MHz
Reset cause: WDOG
BOARD: Advantech DMS-BA16
I2C: ready
DRAM: 2 GiB
MMC: FSL_SDHC: 0, FSL_SDHC: 1, FSL_SDHC: 2
Using default environment
auto-detected panel INNOLUX-G101ICE-L01
Display: INNOLUX-G101ICE-L01 (1280x800)
In: serial
Out: serial
Err: serial
Net: Board Net Initialization Failed
No ethernet found.
Hit any key to stop autoboot: 0
Kernel image @ 0x12000000 [ 0x000000 - 0x8b7b18 ]
## Loading init Ramdisk from Legacy Image at 12c00000 ...
Image Name: fsl-image-mfgtool-initramfs-imx6
Image Type: ARM Linux RAMDisk Image (gzip compressed)
Data Size: 8594071 Bytes = 8.2 MiB
Load Address: 00000000
Entry Point: 00000000
Verifying Checksum ... OK
## Flattened Device Tree blob at 18000000
Booting using the fdt blob at 0x18000000
Loading Ramdisk to 147cd000, end 14fff297 ... CACHE: Misaligned operation at range [147cd000, 14fff297]
OK
Loading Device Tree to 147bf000, end 147cca32 ... OK
Starting kernel ...
Booting Linux on physical CPU 0x0
Initializing cgroup subsys cpu
Initializing cgroup subsys cpuacct
Linux version 4.1.15-00153-g4b7912b-dirty (root@plaid) (gcc version 4.6.x-google 20120106 (prerelease) (GCC) ) #55 SMP PREEMPT Thu Nov 30 19:51:03 UTC 2017
CPU: ARMv7 Processor [412fc09a] revision 10 (ARMv7), cr=10c53c7d
CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
Machine model: Advantech DMS-BA16
Memory policy: Data cache writealloc
PERCPU: Embedded 13 pages/cpu @ee7b5000 s22016 r8192 d23040 u53248
Built 1 zonelists in Zone order, mobility grouping on. Total pages: 522768
Kernel command line: console=ttymxc3,115200 rdinit=/linuxrc g_mass_storage.stall =0 g_mass_storage.removable=1 g_mass_storage.idVendor=0x066F g_mass_storage.idPr oduct=0x37FF g_mass_storage.iSerialNumber= clk_ignore_unused
PID hash table entries: 4096 (order: 2, 16384 bytes)
Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Memory: 2051176K/2097152K available (11585K kernel code, 971K rwdata, 3872K roda ta, 2048K init, 642K bss, 45976K reserved, 0K cma-reserved, 1318912K highmem)
Virtual kernel memory layout:
vector : 0xffff0000 - 0xffff1000 ( 4 kB)
fixmap : 0xffc00000 - 0xfff00000 (3072 kB)
vmalloc : 0xf0000000 - 0xff000000 ( 240 MB)
lowmem : 0xc0000000 - 0xef800000 ( 760 MB)
pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB)
modules : 0xbf000000 - 0xbfe00000 ( 14 MB)
.text : 0xc0008000 - 0xc10186a4 (16450 kB)
.init : 0xc1100000 - 0xc1300000 (2048 kB)
.data : 0xc1300000 - 0xc13f2ec0 ( 972 kB)
.bss : 0xc13f5000 - 0xc149588c ( 643 kB)
SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
Preemptible hierarchical RCU implementation.
Additional per-CPU info printed with stalls.
RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2.
RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
NR_IRQS:16 nr_irqs:16 16
L2C-310 erratum 769419 enabled
L2C-310 enabling early BRESP for Cortex-A9
L2C-310 full line of zeros enabled for Cortex-A9
L2C-310 ID prefetch enabled, offset 16 lines
L2C-310 dynamic clock gating enabled, standby mode enabled
L2C-310 cache controller enabled, 16 ways, 1024 kB
L2C-310: CACHE_ID 0x410000c7, AUX_CTRL 0x76470001
mxc_clocksource_init 3000000
Switching to timer-based delay loop, resolution 333ns
sched_clock: 32 bits at 3000kHz, resolution 333ns, wraps every 715827882841ns
clocksource mxc_timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 63 7086815595 ns
Console: colour dummy device 80x30
Calibrating delay loop (skipped), value calculated using timer frequency.. 6.00 BogoMIPS (lpj=30000)
pid_max: default: 32768 minimum: 301
Security Framework initialized
SELinux: Initializing.
AppArmor: AppArmor disabled by boot time parameter
Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
Initializing cgroup subsys freezer
Initializing cgroup subsys debug
CPU: Testing write buffer coherency: ok
CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
Setting up static identity map for 0x10100000 - 0x10100058
CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
Brought up 2 CPUs
SMP: Total of 2 processors activated (12.00 BogoMIPS).
CPU: All CPU(s) started in SVC mode.
devtmpfs: initialized
VFP support v0.3: implementor 41 architecture 3 part 30 variant 9 rev 4
clocksource jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112 604462750000 ns
pinctrl core: initialized pinctrl subsystem
NET: Registered protocol family 16
DMA: preallocated 256 KiB pool for atomic coherent allocations
cpuidle: using governor ladder
cpuidle: using governor menu
CPU identified as i.MX6Q, silicon rev 1.5
hw-breakpoint: found 5 (+1 reserved) breakpoint and 1 watchpoint registers.
hw-breakpoint: maximum watchpoint size is 4 bytes.
imx6q-pinctrl 20e0000.iomuxc: initialized IMX pinctrl driver
mxs-dma 110000.dma-apbh: initialized
i2c i2c-0: IMX I2C adapter registered
i2c i2c-0: can't use DMA
i2c i2c-1: IMX I2C adapter registered
i2c i2c-1: can't use DMA
Installing DA9063 poweroff control
i2c i2c-2: IMX I2C adapter registered
i2c i2c-2: can't use DMA
SCSI subsystem initialized
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
2000000.aips-bus:usbphy_nop1 supply vcc not found, using dummy regulator
2000000.aips-bus:usbphy_nop2 supply vcc not found, using dummy regulator
Linux video capture interface: v2.00
pps_core: LinuxPPS API ver. 1 registered
pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@l inux.it>
PTP clock support registered
imx-ipuv3 2400000.ipu: IPU DMFC NORMAL mode: 1(0~1), 5B(4,5), 5F(6,7)
imx-ipuv3 2800000.ipu: IPU DMFC NORMAL mode: 1(0~1), 5B(4,5), 5F(6,7)
MIPI CSI2 driver module loaded
Advanced Linux Sound Architecture Driver Initialized.
Bluetooth: Core ver 2.20
NET: Registered protocol family 31
Bluetooth: HCI device and connection manager initialized
Bluetooth: HCI socket layer initialized
Bluetooth: L2CAP socket layer initialized
Bluetooth: SCO socket layer initialized
Switched to clocksource mxc_timer1
NET: Registered protocol family 2
TCP established hash table entries: 8192 (order: 3, 32768 bytes)
TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
TCP: Hash tables configured (established 8192 bind 8192)
UDP hash table entries: 512 (order: 2, 16384 bytes)
UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
NET: Registered protocol family 1
RPC: Registered named UNIX socket transport module.
RPC: Registered udp transport module.
RPC: Registered tcp transport module.
RPC: Registered tcp NFSv4.1 backchannel transport module.
Trying to unpack rootfs image as initramfs...
Freeing initrd memory: 8396K (c47cd000 - c5000000)
CPU PMU: Failed to parse /soc/pmu/interrupt-affinity[0]
hw perfevents: enabled with armv7_cortex_a9 PMU driver, 7 counters available
imx rpmsg driver is registered.
Bus freq driver module loaded
futex hash table entries: 512 (order: 3, 32768 bytes)
audit: initializing netlink subsys (disabled)
audit: type=2000 audit(1.040:1): initialized
VFS: Disk quotas dquot_6.6.0
VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
NFS: Registering the id_resolver key type
Key type id_resolver registered
Key type id_legacy registered
ntfs: driver 2.1.32 [Flags: R/W DEBUG].
jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
fuse init (API version 7.23)
bounce: pool size: 64 pages
io scheduler noop registered
io scheduler deadline registered
io scheduler cfq registered (default)
imx-weim 21b8000.weim: Driver registered.
MIPI DSI driver module loaded
MIPI DSI driver module loaded
ldb 2000000.aips-bus:ldb@020e0008: dual mode
ldb 2000000.aips-bus:ldb@020e0008: split mode or dual mode, ignoring second outp ut
mxc_sdc_fb fb@0: registered mxc display driver ldb
imx-ipuv3 2400000.ipu: WARNING: adapt panel end blank lines
imx-ipuv3 2400000.ipu: IPU DMFC DP HIGH RESOLUTION: 1(0,1), 5B(2~5), 5F(6,7)
imx-ipuv3 2400000.ipu: WARNING: adapt panel end blank lines
Console: switching to colour frame buffer device 160x50
imx-sdma 20ec000.sdma: no iram assigned, using external mem
imx-sdma 20ec000.sdma: no event needs to be remapped
imx-sdma 20ec000.sdma: loaded firmware 3.3
imx-sdma 20ec000.sdma: initialized
21ec000.serial: ttymxc2 at MMIO 0x21ec000 (irq = 297, base_baud = 5000000) is a IMX
21f0000.serial: ttymxc3 at MMIO 0x21f0000 (irq = 298, base_baud = 5000000) is a IMX
console [ttymxc3] enabled
imx sema4 driver is registered.
i2c /dev entries driver
i2c i2c-1: Added multiplexed i2c bus 3
i2c i2c-1: Added multiplexed i2c bus 4
i2c i2c-1: Added multiplexed i2c bus 5
i2c i2c-1: Added multiplexed i2c bus 6
i2c i2c-1: Added multiplexed i2c bus 7
i2c i2c-1: Added multiplexed i2c bus 8
i2c i2c-1: Added multiplexed i2c bus 9
i2c i2c-1: Added multiplexed i2c bus 10
pca954x 1-0070: registered 8 multiplexed busses for I2C switch pca9548
[drm] Initialized drm 1.1.0 20060810
[drm] Initialized vivante 1.0.0 20120216 on minor 0
brd: module loaded
loop: module loaded
zram: Created 1 device(s)
da9063 2-0058: Device detected (chip-ID: 0x61, var-ID: 0x60)
ahci-imx 2200000.sata: fsl,transmit-level-mV value 1133, using 00000050
ahci-imx 2200000.sata: fsl,transmit-boost-mdB value 3330, using 00000480
ahci-imx 2200000.sata: fsl,transmit-atten-16ths value 12, using 00001000
ahci-imx 2200000.sata: fsl,receive-eq-mdB not specified, using 05000000
ahci-imx 2200000.sata: fsl,receive-dpll-mode value 1, using 00010000
ahci-imx 2200000.sata: SSS flag set, parallel bus scan disabled
ahci-imx 2200000.sata: AHCI 0001.0300 32 slots 1 ports 3 Gbps 0x1 impl platform mode
ahci-imx 2200000.sata: flags: ncq sntf stag pm led clo only pmp pio slum part cc c apst
scsi host0: ahci-imx
ata1: SATA max UDMA/133 mmio [mem 0x02200000-0x02203fff] port 0x100 irq 308
m25p80 spi0.0: n25q032 (4096 Kbytes)
3 ofpart partitions found on MTD device spi0.0
Creating 3 MTD partitions on "spi0.0":
0x000000000000-0x0000000c0000 : "U-Boot"
0x0000000c0000-0x0000000d0000 : "env"
0x0000000d0000-0x000000200000 : "spare"
spi_imx 2008000.ecspi: probed
tpm_tis_core_init: tpm_chip_alloc()
tpm_tis_core_init: wait_startup()
tpm_tis_core_init: tpm_tis_read32 TPM_INT_ENABLE(priv->locality)
tpm_tis_core_init: tpm_tis_write32 TPM_INT_ENABLE(priv->locality), intmask = 0x8 F
tpm_tis_core_init: tpm2_probe()
tpm2_probe: tpm_transmit_cmd()
tpm_tis_core_init: tpm_tis_read32 TPM_DID_VID(0)
tpm_tis_core_init: +7
tpm_tis_core_init: +8
tpm_tis_spi spi4.2: 1.2 TPM (device-id 0x3205, rev-id 80)
tpm_tis_core_init: +9
tpm tpm0: Issuing TPM_STARTUP
tpm_do_selftest++
tpm_do_selftest: tpm_pcr_read_dev
ata1: SATA link down (SStatus 0 SControl 300)
ahci-imx 2200000.sata: no device found, disabling link.
ahci-imx 2200000.sata: pass ahci_imx..hotplug=1 to enable hotplug
tpm_do_selftest: rc != DOING_SELFTEST (== 0x0)
tpm_do_selftest-- --
spi_imx 2018000.ecspi: probed
tun: Universal TUN/TAP device driver, 1.6
tun: (C) 1999-2004 Max Krasnyansky <[email protected]>
CAN device driver interface
2188000.ethernet supply phy not found, using dummy regulator
pps pps0: new PPS source ptp0
fec 2188000.ethernet (unnamed net_device) (uninitialized): Invalid MAC address: 00:00:00:00:00:00
fec 2188000.ethernet (unnamed net_device) (uninitialized): Using random MAC addr ess: ae:8c:3a:71:d9:72
libphy: fec_enet_mii_bus: probed
fec 2188000.ethernet eth0: registered PHC device 0
PPP generic driver version 2.4.2
PPP BSD Compression module registered
PPP Deflate Compression module registered
PPP MPPE Compression module registered
NET: Registered protocol family 24
pegasus: v0.9.3 (2013/04/25), Pegasus/Pegasus II USB Ethernet driver
usbcore: registered new interface driver pegasus
usbcore: registered new interface driver rtl8150
usbcore: registered new interface driver r8152
usbcore: registered new interface driver asix
usbcore: registered new interface driver ax88179_178a
usbcore: registered new interface driver cdc_ether
usbcore: registered new interface driver cdc_eem
usbcore: registered new interface driver net1080
usbcore: registered new interface driver cdc_subset
usbcore: registered new interface driver zaurus
usbcore: registered new interface driver cdc_ncm
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
ehci-mxc: Freescale On-Chip EHCI Host driver
usbcore: registered new interface driver cdc_acm
cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
usbcore: registered new interface driver usb-storage
usbcore: registered new interface driver usbserial
usbcore: registered new interface driver usbserial_generic
usbserial: USB Serial support registered for generic
usbcore: registered new interface driver ftdi_sio
usbserial: USB Serial support registered for FTDI USB Serial Device
usbcore: registered new interface driver option
usbserial: USB Serial support registered for GSM modem (1-port)
usbcore: registered new interface driver usb_ehset_test
2184800.usbmisc supply vbus-wakeup not found, using dummy regulator
ci_hdrc ci_hdrc.1: EHCI Host Controller
ci_hdrc ci_hdrc.1: new USB bus registered, assigned bus number 1
ci_hdrc ci_hdrc.1: USB 2.0 started, EHCI 1.00
usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb1: Product: EHCI Host Controller
usb usb1: Manufacturer: Linux 4.1.15-00153-g4b7912b-dirty ehci_hcd
usb usb1: SerialNumber: ci_hdrc.1
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 1 port detected