Android Debug: avc denied 已存在的目录不能访问

Android应用USB功能问题与SELinux解决办法

某三方应用,使用了USB摄像头,启动应用后功能不能使用,看log有如下错误,

denied后面{}里的是要执行的动作,比如append,open,execmod,link等等

scontext指的是域,对应的是te文件 上面报错这条对应te文件是untrusted_app.te, scontext全写是source_type context;

tcontext指的是目标类型,上面报错这条对应的是目标类型system_file,tcontext全写是target_type context;

tclass指的是类别,上面报错这条对应的是类别是file,

avc denied的错误,提示某个路径不能访问,一般添加allow 语句解决,

allow  源类型 目标类型:访问类别 {权限};

其中allow语句的源类型 在avc denied里面找到,  目标类型 可以用ls -Z来查询,访问类别 {权限}   在avc denied里面找到;

然后找到对应的te文件添加响应语句,

device\rockchip\common\sepolicy\vendor\untrusted_app.te

allow untrusted_app usb_device:dir { open read };

关于selinux 相关的知识,已有很多相关blog,请自行百度。

        

01-01 13:02:33.162 863 863 D Zygote : Forked child process 7448 01-01 13:02:33.162 1664 1820 I ActivityManager: Start proc 7448:com.google.android.partnersetup/u0a117 for broadcast {com.google.android.partnersetup/com.google.android.partnersetup.PhoneStateReceiver} 01-01 13:02:33.162 1664 1820 I ActivityManager: mPidMap put ProcessRecord{24812d1 7448:com.google.android.partnersetup/u0a117} 01-01 13:02:33.162 1664 1778 I ActivityManager: ProcessObserver broadcast disabled 01-01 13:02:33.162 1664 1820 D OStatsManager_OplusBatteryStatsEventManager: onProcessStarted : pid = 7448processUid = 10117packageUid = 10117packageName = com.google.android.partnersetupprocessName = com.google.android.partnersetup 01-01 13:02:33.163 1664 5354 I OStatsManager_OplusBatteryStatsManager: updateStateTime: PkgName = com.google.android.partnersetup, uid = 10117, state to bg, mForegroundCnt = 0, isFg = false 01-01 13:02:33.163 1664 5354 D OStatsManager_OplusBatteryStatsManager: noteProcessCreate [7448], uid = 10117, pkgName = com.google.android.partnersetup, pid = 7448, processName = com.google.android.partnersetup 01-01 13:02:33.165 7448 7448 E libprocessgroup: Failed to write '10117' to /dev/memcg/apps/uid_10117//memory.app_uid: Permission denied 01-01 13:02:33.165 7448 7448 F app_process: jni_internal.cc:826] JNI FatalError called: (com.google.android.partnersetup) frameworks/base/core/jni/com_android_internal_os_Zygote.cpp:2025: createProcessGroup(10117, 0) failed: Permission denied 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] Runtime aborting... 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] Dumping all threads without mutator lock held 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] All threads: 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] DALVIK THREADS (1): 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] "main" prio=5 tid=1 Runnable 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] | group="" sCount=0 ucsCount=0 flags=0 obj=0x751e8f88 self=0xb400007d5f8d0000 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] | sysTid=863 nice=0 cgrp=default sched=0/0 handle=0x7e13039098 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] | state=? schedstat=( 0 0 0 ) utm=0 stm=0 core=0 HZ=100 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] | stack=0x7fc901e000-0x7fc9020000 stackSize=8188KB 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] | held mutexes= "abort lock" "mutator lock"(shared held) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] native: (Unwind failed for thread 863: Thread Does Not Exist) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.Zygote.nativeSpecializeAppProcess(Native method) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.Zygote.specializeAppProcess(Zygote.java:538) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.Zygote.childMain(Zygote.java:1000) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.Zygote.forkSimpleApps(Zygote.java:854) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.ZygoteConnection.processCommand(ZygoteConnection.java:294) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.ZygoteServer.runSelectLoop(ZygoteServer.java:575) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1061) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] Aborting thread: 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] "main" prio=5 tid=1 Native 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] | group="" sCount=0 ucsCount=0 flags=0 obj=0x751e8f88 self=0xb400007d5f8d0000 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] | sysTid=863 nice=0 cgrp=default sched=0/0 handle=0x7e13039098 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] | state=? schedstat=( 0 0 0 ) utm=0 stm=0 core=0 HZ=100 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] | stack=0x7fc901e000-0x7fc9020000 stackSize=8188KB 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] | held mutexes= "abort lock" "mutator lock"(shared held) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] native: (Unwind failed for thread 863: Thread Does Not Exist) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.Zygote.nativeSpecializeAppProcess(Native method) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.Zygote.specializeAppProcess(Zygote.java:538) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.Zygote.childMain(Zygote.java:1000) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.Zygote.forkSimpleApps(Zygote.java:854) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.ZygoteConnection.processCommand(ZygoteConnection.java:294) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.ZygoteServer.runSelectLoop(ZygoteServer.java:575) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1061) 01-01 13:02:33.177 7448 7448 F app_process: runtime.cc:709] 01-01 13:02:33.178 7448 7448 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 7448 (main), pid 7448 (main) 01-01 13:02:33.186 7450 7450 E libc : capset failed: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 0: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 1: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 2: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 3: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 4: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 5: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 6: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 7: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 8: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 9: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 10: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 11: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 12: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 13: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 14: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 15: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 16: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 17: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 18: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 19: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 20: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 21: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 22: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 23: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 24: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 25: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 26: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 27: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 28: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 29: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 30: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 31: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 32: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 33: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 34: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 35: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 36: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 37: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 38: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 39: Operation not permitted 01-01 13:02:33.186 7450 7450 E libc : failed to raise ambient capability 40: Operation not permitted 01-01 13:02:33.200 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/0: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/1: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/2: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/3: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/4: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/5: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/7: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/8: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/9: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/10: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/11: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/12: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/13: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/14: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/15: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/16: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/17: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/18: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/19: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/20: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/21: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/22: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/23: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/24: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/25: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/26: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/27: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/28: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/29: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/30: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/31: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/32: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/33: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/34: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/35: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/36: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/37: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/38: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/39: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/40: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/41: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/42: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/43: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/44: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/45: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/46: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/47: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/48: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/49: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/50: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/51: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/52: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/53: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/54: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/55: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/56: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/57: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/58: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/59: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/60: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/61: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/62: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/63: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/64: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/65: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/66: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/67: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/68: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/69: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/70: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/71: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/72: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/73: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/74: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/75: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/76: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/77: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/78: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/79: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/80: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/81: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/82: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/83: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/84: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/85: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/86: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/87: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/88: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/89: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/90: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/91: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/92: Permission denied 01-01 13:02:33.201 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/93: Permission denied 01-01 13:02:33.202 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/94: Permission denied 01-01 13:02:33.202 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/95: Permission denied 01-01 13:02:33.202 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/96: Permission denied 01-01 13:02:33.202 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/97: Permission denied 01-01 13:02:33.202 7451 7451 E DEBUG : failed to readlink /proc/7448/fd/98: Permission denied 01-01 13:02:33.202 7451 7451 F crash_dump64: crash_dump.cpp:671] failed to attach to thread 7448: Operation not permitted 01-01 13:02:33.202 702 702 I tombstoned: received crash request for pid 7448 01-01 13:02:33.202 702 702 E tombstoned: unexpected dump type: kDebuggerdAnyIntercept 01-01 13:02:33.202 702 702 E tombstoned: failed to get crash output for type kDebuggerdAnyIntercept 01-01 13:02:33.203 7451 7451 E libc : failed to read response to DumpRequest packet: No message of desired type 01-01 13:02:33.203 7451 7451 E crash_dump64: failed to connected to tombstoned to report failure 01-01 13:02:33.204 7448 7448 F libc : Crash due to signal: crash_dump helper failed to exec, or was killed 01-01 13:02:33.212 863 863 I Zygote : Process 7448 exited due to signal 6 (Aborted)
07-19
SELinux : avc: denied { find } for interface=vendor.xiaomi.hw.touchfeature::ITouchFeature sid=u:r:system_server:s0 pid=1578 scontext=u:r:system_server:s0 tcontext=u:object_r:default_android_hwservice:s0 tclass=hwservice_manager permissive=0 SELinux : avc: denied { find } for interface=vendor.xiaomi.hardware.cld::ICld sid=u:r:system_server:s0 pid=1578 scontext=u:r:system_server:s0 tcontext=u:object_r:hal_health_storage_hwservice:s0 tclass=hwservice_manager permissive=0 SELinux : avc: denied { find } for interface=vendor.qti.sla.service::ISlaService sid=u:r:system_server:s0 pid=1578 scontext=u:r:system_server:s0 tcontext=u:object_r:default_android_hwservice:s0 tclass=hwservice_manager permissive=0 SELinux : avc: denied { find } for interface=vendor.xiaomi.hidl.miwill::IMiwillService sid=u:r:system_server:s0 pid=1578 scontext=u:r:system_server:s0 tcontext=u:object_r:default_android_hwservice:s0 tclass=hwservice_manager permissive=0 SELinux : avc: denied { find } for interface=vendor.qti.sla.service::ISlaService sid=u:r:system_server:s0 pid=1578 scontext=u:r:system_server:s0 tcontext=u:object_r:default_android_hwservice:s0 tclass=hwservice_manager permissive=0 SELinux : avc: denied { find } for interface=vendor.xiaomi.hidl.minet::IMiNetService sid=u:r:system_server:s0 pid=1578 scontext=u:r:system_server:s0 tcontext=u:object_r:default_android_hwservice:s0 tclass=hwservice_manager permissive=0 SELinux : avc: denied { find } for interface=vendor.xiaomi.hidl.minet::IMiNetService sid=u:r:system_server:s0 pid=1578 scontext=u:r:system_server:s0 tcontext=u:object_r:default_android_hwservice:s0 tclass=hwservice_manager permissive=0 SELinux : avc: denied { find } for interface=vendor.xiaomi.hw.touchfeature::ITouchFeature sid=u:r:system_app:s0 pid=3872 scontext=u:r:system_app:s0 tcontext=u:object_r:default_android_hwservice:s0 tclass=hwservice_manager permissive=0 SELinux : avc: denied { find } for interface=vendor.xiaomi.hardware.fbo::IFbo sid=u:r:system_server:s0 pid=1578 scontext=u:r:system_server:s0 tcontext=u:object_r:default_android_hwservice:s0 tclass=hwservice_manager permissive=0 SELinux : avc: denied { find } for interface=vendor.xiaomi.hardware.fbo::IFbo sid=u:r:system_server:s0 pid=1578 scontext=u:r:system_server:s0 tcontext=u:object_r:default_android_hwservice:s0 tclass=hwservice_manager permissive=0 SELinux : avc: denied { find } for interface=vendor.xiaomi.hardware.campostproc::IMiPostProcService sid=u:r:platform_app:s0:c512,c768 pid=9054 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:default_android_hwservice:s0 tclass=hwservice_manager permissive=0 SELinux : avc: denied { find } for interface=vendor.xiaomi.hw.touchfeature::ITouchFeature sid=u:r:system_app:s0 pid=10143 scontext=u:r:system_app:s0 tcontext=u:object_r:default_android_hwservice:s0 tclass=hwservice_manager permissive=0 SELinux : avc: denied { find } for interface=vendor.xiaomi.hw.touchfeature::ITouchFeature sid=u:r:system_app:s0 pid=10143 scontext=u:r:system_app:s0 tcontext=u:object_r:default_android_hwservice:s0 tclass=hwservice_manager permissive=0 SELinux : avc: denied { find } for interface=vendor.xiaomi.hw.touchfeature::ITouchFeature sid=u:r:system_app:s0 pid=11940 scontext=u:r:system_app:s0 tcontext=u:object_r:default_android_hwservice:s0 tclass=hwservice_manager permissive=0 SELinux : avc: denied { find } for interface=vendor.xiaomi.hardware.wireless::IWirelessSwitch sid=u:r:system_app:s0 pid=12014 scontext=u:r:system_app:s0 tcontext=u:object_r:default_android_hwservice:s0 tclass=hwservice_manager permissive=0 SELinux : avc: denied { find } for interface=vendor.xiaomi.hardware.fbo::IFbo sid=u:r:system_server:s0 pid=1578 scontext=u:r:system_server:s0 tcontext=u:object_r:default_android_hwservice:s0 tclass=hwservice_manager permissive=0
最新发布
07-24
01-01 00:00:11.856 1 1 I auditd : type=1400 audit(0.0:3): avc: denied { open } for comm="init" path="/dev/kmsg" dev="tmpfs" ino=5 scontext=u:r:kernel:s0 tcontext=u:object_r:tmpfs:s0 tclass=chr_file permissive=1 01-01 00:00:12.104 1 1 I auditd : type=1107 audit(0.0:5): uid=0 auid=4294967295 ses=4294967295 subj=u:r:init:s0 msg='avc: denied { set } for property=ro.telephony.sim.count pid=1 uid=0 gid=0 scontext=u:r:vendor_init:s0 tcontext=u:object_r:default_prop:s0 tclass=property_service permissive=0' 01-01 00:00:12.896 1 1 I auditd : type=1107 audit(0.0:6): uid=0 auid=4294967295 ses=4294967295 subj=u:r:init:s0 msg='avc: denied { read } for property=vts.native_server.on pid=0 uid=0 gid=0 scontext=u:r:vendor_init:s0 tcontext=u:object_r:vts_status_prop:s0 tclass=file permissive=0' 01-01 00:00:12.904 1 1 I auditd : type=1107 audit(0.0:7): uid=0 auid=4294967295 ses=4294967295 subj=u:r:init:s0 msg='avc: denied { read } for property=vts.native_server.on pid=0 uid=0 gid=0 scontext=u:r:vendor_init:s0 tcontext=u:object_r:vts_status_prop:s0 tclass=file permissive=0' 01-01 00:00:12.908 1 1 I auditd : type=1107 audit(0.0:8): uid=0 auid=4294967295 ses=4294967295 subj=u:r:init:s0 msg='avc: denied { read } for property=vts.native_server.on pid=0 uid=0 gid=0 scontext=u:r:vendor_init:s0 tcontext=u:object_r:vts_status_prop:s0 tclass=file permissive=0' 01-01 00:00:12.916 1 1 I auditd : type=1107 audit(0.0:9): uid=0 auid=4294967295 ses=4294967295 subj=u:r:init:s0 msg='avc: denied { read } for property=vts.native_server.on pid=0 uid=0 gid=0 scontext=u:r:vendor_init:s0 tcontext=u:object_r:vts_status_prop:s0 tclass=file permissive=0' 01-01 00:00:13.048 1 1 I auditd : type=1107 audit(0.0:10): uid=0 auid=4294967295 ses=4294967295 subj=u:r:init:s0 msg='avc: denied { read } for property=init.svc.dplanner-2-0 pid=0 uid=0 gid=0 scontext=u:r:vendor_init:s0 tcontext=u:object_r:init_service_status_private_prop:s0 tclass=file permissive=0' 01-01 00:00:13.052 1 1 I auditd : type=1107 audit(0.0:11): uid=0 auid=4294967295 ses=4294967295 subj=u:r:init:s0 msg='avc: denied { read } for property=init.svc.dplanner-2-0 pid=0 uid=0 gid=0 scontext=u:r:vendor_init:s0 tcontext=u:object_r:init_service_status_private_prop:s0 tclass=file permissive=0' 01-01 00:00:14.784 325 325 I auditd : type=1400 audit(0.0:12): avc: denied { read } for comm="modprobe" name="cmdline" dev="proc" ino=4026532095 scontext=u:r:init_insmod_sh:s0 tcontext=u:object_r:proc_cmdline:s0 tclass=file permissive=0 01-01 00:00:15.708 367 367 I auditd : type=1400 audit(0.0:13): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=25249 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.712 367 367 I auditd : type=1400 audit(0.0:14): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=46006 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.720 367 367 I auditd : type=1400 audit(0.0:15): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=45106 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.728 367 367 I auditd : type=1400 audit(0.0:16): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=46726 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.732 367 367 I auditd : type=1400 audit(0.0:17): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=45826 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.732 367 367 I auditd : type=1400 audit(0.0:18): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=44926 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.736 367 367 I auditd : type=1400 audit(0.0:19): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=25879 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.736 367 367 I auditd : type=1400 audit(0.0:20): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=46546 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.744 367 367 I auditd : type=1400 audit(0.0:21): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=45646 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.760 367 367 I auditd : type=1400 audit(0.0:22): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=26509 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.764 367 367 I auditd : type=1400 audit(0.0:23): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=25699 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.764 367 367 I auditd : type=1400 audit(0.0:24): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=46366 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.768 367 367 I auditd : type=1400 audit(0.0:25): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=45466 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.772 367 367 I auditd : type=1400 audit(0.0:26): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=26329 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.776 367 367 I auditd : type=1400 audit(0.0:27): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=25519 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.776 367 367 I auditd : type=1400 audit(0.0:28): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=46186 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.780 367 367 I auditd : type=1400 audit(0.0:29): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=45286 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.784 367 367 I auditd : type=1400 audit(0.0:30): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=26149 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.788 367 367 I auditd : type=1400 audit(0.0:31): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=25339 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.788 367 367 I auditd : type=1400 audit(0.0:32): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=46816 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.792 367 367 I auditd : type=1400 audit(0.0:33): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=25159 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.792 367 367 I auditd : type=1400 audit(0.0:34): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=45916 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.796 367 367 I auditd : type=1400 audit(0.0:35): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=45016 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.800 367 367 I auditd : type=1400 audit(0.0:36): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=25969 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.800 367 367 I auditd : type=1400 audit(0.0:37): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=46636 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.804 367 367 I auditd : type=1400 audit(0.0:38): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=45736 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.804 367 367 I auditd : type=1400 audit(0.0:39): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=44836 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.808 367 367 I auditd : type=1400 audit(0.0:40): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=25789 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.808 367 367 I auditd : type=1400 audit(0.0:41): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=46456 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.816 367 367 I auditd : type=1400 audit(0.0:42): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=45556 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.824 367 367 I auditd : type=1400 audit(0.0:43): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=26419 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.828 367 367 I auditd : type=1400 audit(0.0:44): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=25609 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.828 367 367 I auditd : type=1400 audit(0.0:45): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=46276 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.836 367 367 I auditd : type=1400 audit(0.0:46): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=45376 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.840 367 367 I auditd : type=1400 audit(0.0:47): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=26239 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.848 367 367 I auditd : type=1400 audit(0.0:48): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=25429 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.848 367 367 I auditd : type=1400 audit(0.0:49): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=46096 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.856 367 367 I auditd : type=1400 audit(0.0:50): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=45196 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.864 367 367 I auditd : type=1400 audit(0.0:51): avc: denied { write } for comm="binder:367_2" name="uevent" dev="sysfs" ino=26059 scontext=u:r:vold:s0 tcontext=u:object_r:sysfs_loop_recovery:s0 tclass=file permissive=0 01-01 00:00:15.912 1 1 I auditd : type=1107 audit(0.0:52): uid=0 auid=4294967295 ses=4294967295 subj=u:r:init:s0 msg='avc: denied { set } for property=vendor.keymaster.optee.status pid=368 uid=1000 gid=1000 scontext=u:r:hal_keymaster_default:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=property_service permissive=0' 01-01 00:00:16.360 400 400 I auditd : type=1400 audit(0.0:53): avc: denied { read } for comm="e2fsck" name="mmcblk0p50" dev="tmpfs" ino=729 scontext=u:r:fsck:s0 tcontext=u:object_r:block_device:s0 tclass=blk_file permissive=0 01-01 00:00:16.364 400 400 I auditd : type=1400 audit(0.0:54): avc: denied { read write } for comm="e2fsck" name="mmcblk0p50" dev="tmpfs" ino=729 scontext=u:r:fsck:s0 tcontext=u:object_r:block_device:s0 tclass=blk_file permissive=0 01-01 00:00:16.432 405 405 I auditd : type=1400 audit(0.0:55): avc: denied { read } for comm="e2fsck" name="mmcblk0p49" dev="tmpfs" ino=787 scontext=u:r:fsck:s0 tcontext=u:object_r:block_device:s0 tclass=blk_file permissive=0 01-01 00:00:16.432 405 405 I auditd : type=1400 audit(0.0:56): avc: denied { read write } for comm="e2fsck" name="mmcblk0p49" dev="tmpfs" ino=787 scontext=u:r:fsck:s0 tcontext=u:object_r:block_device:s0 tclass=blk_file permissive=0 01-01 00:00:22.744 750 750 I auditd : type=1400 audit(0.0:57): avc: denied { dac_read_search } for comm="bhd_radio_autoc" capability=2 scontext=u:r:systemmix:s0 tcontext=u:r:systemmix:s0 tclass=capability permissive=0 01-01 00:00:22.748 750 750 I auditd : type=1400 audit(0.0:58): avc: denied { dac_override } for comm="bhd_radio_autoc" capability=1 scontext=u:r:systemmix:s0 tcontext=u:r:systemmix:s0 tclass=capability permissive=0 01-01 00:00:22.752 750 750 I auditd : type=1400 audit(0.0:59): avc: denied { read } for comm="bhd_radio_autoc" name="u:object_r:system_prop:s0" dev="tmpfs" ino=424 scontext=u:r:systemmix:s0 tcontext=u:object_r:system_prop:s0 tclass=file permissive=0 01-01 00:00:22.752 750 750 I auditd : type=1400 audit(0.0:60): avc: denied { read } for comm="bhd_radio_autoc" name="u:object_r:system_prop:s0" dev="tmpfs" ino=424 scontext=u:r:systemmix:s0 tcontext=u:object_r:system_prop:s0 tclass=file permissive=0 01-01 00:00:22.752 750 750 I auditd : type=1400 audit(0.0:61): avc: denied { read write } for comm="bhd_radio_autoc" name="gpio_sw" dev="tmpfs" ino=1008 scontext=u:r:systemmix:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=0 01-01 00:00:22.852 750 750 I auditd : type=1400 audit(0.0:62): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:22.856 750 750 I auditd : type=1400 audit(0.0:63): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:22.856 750 750 I auditd : type=1400 audit(0.0:64): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:22.856 750 750 I auditd : type=1400 audit(0.0:65): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:22.896 750 750 I auditd : type=1400 audit(0.0:66): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:22.896 750 750 I auditd : type=1400 audit(0.0:67): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:22.896 750 750 I auditd : type=1400 audit(0.0:68): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:23.296 750 750 I auditd : type=1400 audit(0.0:69): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:23.296 750 750 I auditd : type=1400 audit(0.0:70): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:23.300 750 750 I auditd : type=1400 audit(0.0:71): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:23.304 750 750 I auditd : type=1400 audit(0.0:72): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:23.304 750 750 I auditd : type=1400 audit(0.0:73): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:23.308 750 750 I auditd : type=1400 audit(0.0:74): avc: denied { write } for comm="bhd_radio_autoc" name="property_service" dev="tmpfs" ino=715 scontext=u:r:systemmix:s0 tcontext=u:object_r:property_socket:s0 tclass=sock_file permissive=0 01-01 00:00:23.308 750 750 I auditd : type=1400 audit(0.0:75): avc: denied { write } for comm="bhd_radio_autoc" name="property_service" dev="tmpfs" ino=715 scontext=u:r:systemmix:s0 tcontext=u:object_r:property_socket:s0 tclass=sock_file permissive=0 01-01 00:00:23.340 1 1 I auditd : type=1400 audit(0.0:76): avc: denied { write } for comm="init" name="discard_max_bytes" dev="sysfs" ino=40447 scontext=u:r:init:s0 tcontext=u:object_r:sysfs_devices_block:s0 tclass=file permissive=0 01-01 00:00:23.972 792 792 I auditd : type=1400 audit(0.0:77): avc: denied { search } for comm="nvram_daemon" name="android" dev="sysfs" ino=39 scontext=u:r:nvram_daemon:s0 tcontext=u:object_r:sysfs_dt_firmware_android:s0 tclass=dir permissive=0 01-01 00:00:23.972 792 792 I auditd : type=1400 audit(0.0:78): avc: denied { search } for comm="nvram_daemon" name="android" dev="sysfs" ino=39 scontext=u:r:nvram_daemon:s0 tcontext=u:object_r:sysfs_dt_firmware_android:s0 tclass=dir permissive=0 01-01 00:00:23.980 792 792 I auditd : type=1400 audit(0.0:79): avc: denied { search } for comm="nvram_daemon" name="android" dev="sysfs" ino=39 scontext=u:r:nvram_daemon:s0 tcontext=u:object_r:sysfs_dt_firmware_android:s0 tclass=dir permissive=0 01-01 00:00:23.984 792 792 I auditd : type=1400 audit(0.0:80): avc: denied { search } for comm="nvram_daemon" name="android" dev="sysfs" ino=39 scontext=u:r:nvram_daemon:s0 tcontext=u:object_r:sysfs_dt_firmware_android:s0 tclass=dir permissive=0 01-01 00:00:24.184 810 810 I auditd : type=1400 audit(0.0:81): avc: denied { dac_read_search } for comm="gsid" capability=2 scontext=u:r:gsid:s0 tcontext=u:r:gsid:s0 tclass=capability permissive=0 01-01 00:00:24.488 812 812 I auditd : type=1400 audit(0.0:82): avc: denied { dac_read_search } for comm="profcollectctl" capability=2 scontext=u:r:profcollectd:s0 tcontext=u:r:profcollectd:s0 tclass=capability permissive=0 01-01 00:00:24.488 812 812 I auditd : type=1400 audit(0.0:83): avc: denied { dac_override } for comm="profcollectctl" capability=1 scontext=u:r:profcollectd:s0 tcontext=u:r:profcollectd:s0 tclass=capability permissive=0 01-01 00:00:24.952 855 855 I auditd : type=1400 audit(0.0:84): avc: denied { dac_read_search } for comm="adbd" capability=2 scontext=u:r:adbd:s0 tcontext=u:r:adbd:s0 tclass=capability permissive=0 01-01 00:00:24.952 855 855 I auditd : type=1400 audit(0.0:85): avc: denied { dac_override } for comm="adbd" capability=1 scontext=u:r:adbd:s0 tcontext=u:r:adbd:s0 tclass=capability permissive=0 01-01 00:00:25.380 332 332 I auditd : avc: denied { find } for pid=783 uid=1000 name=vendor.mediatek.hardware.composer_ext.IComposerExt/default scontext=u:r:surfaceflinger:s0 tcontext=u:object_r:default_android_service:s0 tclass=service_manager permissive=0 01-01 00:00:25.420 889 889 I auditd : type=1400 audit(0.0:86): avc: denied { dac_read_search } for comm="bhd_radio_autoc" capability=2 scontext=u:r:systemmix:s0 tcontext=u:r:systemmix:s0 tclass=capability permissive=0 01-01 00:00:25.420 889 889 I auditd : type=1400 audit(0.0:87): avc: denied { dac_override } for comm="bhd_radio_autoc" capability=1 scontext=u:r:systemmix:s0 tcontext=u:r:systemmix:s0 tclass=capability permissive=0 01-01 00:00:25.428 889 889 I auditd : type=1400 audit(0.0:88): avc: denied { read } for comm="bhd_radio_autoc" name="u:object_r:system_prop:s0" dev="tmpfs" ino=424 scontext=u:r:systemmix:s0 tcontext=u:object_r:system_prop:s0 tclass=file permissive=0 01-01 00:00:25.428 889 889 I auditd : type=1400 audit(0.0:89): avc: denied { read } for comm="bhd_radio_autoc" name="u:object_r:system_prop:s0" dev="tmpfs" ino=424 scontext=u:r:systemmix:s0 tcontext=u:object_r:system_prop:s0 tclass=file permissive=0 01-01 00:00:25.428 889 889 I auditd : type=1400 audit(0.0:90): avc: denied { read write } for comm="bhd_radio_autoc" name="gpio_sw" dev="tmpfs" ino=1008 scontext=u:r:systemmix:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=0 01-01 00:00:25.452 890 890 I auditd : type=1400 audit(0.0:91): avc: denied { dac_read_search } for comm="atrace" capability=2 scontext=u:r:atrace:s0 tcontext=u:r:atrace:s0 tclass=capability permissive=0 01-01 00:00:25.532 889 889 I auditd : type=1400 audit(0.0:92): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:25.532 889 889 I auditd : type=1400 audit(0.0:93): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:25.532 889 889 I auditd : type=1400 audit(0.0:94): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:25.532 889 889 I auditd : type=1400 audit(0.0:95): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:25.536 1 1 I auditd : type=1400 audit(0.0:96): avc: denied { create } for comm="init" name="lbs_dbg_ext" scontext=u:r:init:s0 tcontext=u:object_r:socket_device:s0 tclass=sock_file permissive=0 01-01 00:00:25.572 889 889 I auditd : type=1400 audit(0.0:97): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:25.572 889 889 I auditd : type=1400 audit(0.0:98): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:25.572 889 889 I auditd : type=1400 audit(0.0:99): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:25.700 920 920 I auditd : type=1400 audit(0.0:100): avc: denied { dac_read_search } for comm="mobile_log_d" capability=2 scontext=u:r:mobile_log_d:s0 tcontext=u:r:mobile_log_d:s0 tclass=capability permissive=0 01-01 00:00:25.708 920 920 I auditd : type=1400 audit(0.0:101): avc: denied { dac_override } for comm="mobile_log_d" capability=1 scontext=u:r:mobile_log_d:s0 tcontext=u:r:mobile_log_d:s0 tclass=capability permissive=0 01-01 00:00:25.712 915 915 I auditd : type=1400 audit(0.0:102): avc: denied { call } for comm="binder:915_2" scontext=u:r:lbs_dbg_ext:s0 tcontext=u:r:servicemanager:s0 tclass=binder permissive=0 01-01 00:00:25.716 915 915 I auditd : type=1400 audit(0.0:103): avc: denied { call } for comm="binder:915_2" scontext=u:r:lbs_dbg_ext:s0 tcontext=u:r:servicemanager:s0 tclass=binder permissive=0 01-01 00:00:25.848 926 926 I auditd : type=1400 audit(0.0:104): avc: denied { read } for comm="netdiag" name="u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=467 scontext=u:r:netdiag:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=0 01-01 00:00:25.924 778 778 I auditd : type=1400 audit(0.0:105): avc: denied { read } for comm="audioserver" name="u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=467 scontext=u:r:audioserver:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=0 01-01 00:00:25.924 778 778 I auditd : type=1400 audit(0.0:106): avc: denied { read } for comm="audioserver" name="u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=467 scontext=u:r:audioserver:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=0 01-01 00:00:25.972 889 889 I auditd : type=1400 audit(0.0:107): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:25.972 889 889 I auditd : type=1400 audit(0.0:108): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:25.976 889 889 I auditd : type=1400 audit(0.0:109): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:25.976 889 889 I auditd : type=1400 audit(0.0:110): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:25.980 889 889 I auditd : type=1400 audit(0.0:111): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 01-01 00:00:25.980 889 889 I auditd : type=1400 audit(0.0:112): avc: denied { write } for comm="bhd_radio_autoc" name="property_service" dev="tmpfs" ino=715 scontext=u:r:systemmix:s0 tcontext=u:object_r:property_socket:s0 tclass=sock_file permissive=0 01-01 00:00:25.980 889 889 I auditd : type=1400 audit(0.0:113): avc: denied { write } for comm="bhd_radio_autoc" name="property_service" dev="tmpfs" ino=715 scontext=u:r:systemmix:s0 tcontext=u:object_r:property_socket:s0 tclass=sock_file permissive=0 01-01 00:00:26.092 929 929 I auditd : type=1400 audit(0.0:114): avc: denied { read } for comm="android.hardwar" name="u:object_r:default_prop:s0" dev="tmpfs" ino=158 scontext=u:r:mediacodec:s0 tcontext=u:object_r:default_prop:s0 tclass=file permissive=0 01-01 00:00:26.156 920 920 I auditd : type=1400 audit(0.0:115): avc: denied { read } for comm="mobile_log_d" name="atc_arm2_log" dev="proc" ino=4026532933 scontext=u:r:mobile_log_d:s0 tcontext=u:object_r:proc:s0 tclass=file permissive=0 01-01 00:00:26.328 778 778 I auditd : type=1400 audit(0.0:116): avc: denied { read } for comm="audioserver" name="u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=467 scontext=u:r:audioserver:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=0 01-01 00:00:26.392 1004 1004 I auditd : type=1400 audit(0.0:117): avc: denied { dac_read_search } for comm="mobile_log_d" capability=2 scontext=u:r:mobile_log_d:s0 tcontext=u:r:mobile_log_d:s0 tclass=capability permissive=0 01-01 00:00:26.404 1004 1004 I auditd : type=1400 audit(0.0:118): avc: denied { dac_override } for comm="mobile_log_d" capability=1 scontext=u:r:mobile_log_d:s0 tcontext=u:r:mobile_log_d:s0 tclass=capability permissive=0 01-01 00:00:26.592 1008 1008 I auditd : type=1400 audit(0.0:119): avc: denied { dac_read_search } for comm="sh" capability=2 scontext=u:r:mobile_log_d:s0 tcontext=u:r:mobile_log_d:s0 tclass=capability permissive=0 01-01 00:00:26.596 1008 1008 I auditd : type=1400 audit(0.0:120): avc: denied { dac_override } for comm="sh" capability=1 scontext=u:r:mobile_log_d:s0 tcontext=u:r:mobile_log_d:s0 tclass=capability permissive=0 01-01 00:00:26.600 1008 1008 I auditd : type=1400 audit(0.0:121): avc: denied { dac_override } for comm="sh" capability=1 scontext=u:r:mobile_log_d:s0 tcontext=u:r:mobile_log_d:s0 tclass=capability permissive=0 01-01 00:00:26.616 1009 1009 I auditd : type=1400 audit(0.0:122): avc: denied { dac_read_search } for comm="sh" capability=2 scontext=u:r:mobile_log_d:s0 tcontext=u:r:mobile_log_d:s0 tclass=capability permissive=0 01-01 00:00:26.616 1009 1009 I auditd : type=1400 audit(0.0:123): avc: denied { dac_override } for comm="sh" capability=1 scontext=u:r:mobile_log_d:s0 tcontext=u:r:mobile_log_d:s0 tclass=capability permissive=0 01-01 00:00:26.644 1013 1013 I auditd : type=1400 audit(0.0:124): avc: denied { dac_read_search } for comm="sh" capability=2 scontext=u:r:mobile_log_d:s0 tcontext=u:r:mobile_log_d:s0 tclass=capability permissive=0 01-01 00:00:26.644 1013 1013 I auditd : type=1400 audit(0.0:125): avc: denied { dac_override } for comm="sh" capability=1 scontext=u:r:mobile_log_d:s0 tcontext=u:r:mobile_log_d:s0 tclass=capability permissive=0 01-01 00:00:26.664 1016 1016 I auditd : type=1400 audit(0.0:126): avc: denied { dac_read_search } for comm="sh" capability=2 scontext=u:r:mobile_log_d:s0 tcontext=u:r:mobile_log_d:s0 tclass=capability permissive=0 01-01 00:00:26.664 1016 1016 I auditd : type=1400 audit(0.0:127): avc: denied { dac_override } for comm="sh" capability=1 scontext=u:r:mobile_log_d:s0 tcontext=u:r:mobile_log_d:s0 tclass=capability permissive=0 01-01 00:00:26.688 1017 1017 I auditd : type=1400 audit(0.0:128): avc: denied { dac_read_search } for comm="sh" capability=2 scontext=u:r:mobile_log_d:s0 tcontext=u:r:mobile_log_d:s0 tclass=capability permissive=0 01-01 00:00:26.688 1017 1017 I auditd : type=1400 audit(0.0:129): avc: denied { dac_override } for comm="sh" capability=1 scontext=u:r:mobile_log_d:s0 tcontext=u:r:mobile_log_d:s0 tclass=capability permissive=0 01-01 00:00:27.184 1037 1037 I auditd : type=1400 audit(0.0:130): avc: denied { read } for comm="aee" name="u:object_r:system_mtk_persist_aee_prop:s0" dev="tmpfs" ino=388 scontext=u:r:mobile_log_d:s0 tcontext=u:object_r:system_mtk_persist_aee_prop:s0 tclass=file permissive=0 01-01 00:00:28.060 907 907 I auditd : type=1400 audit(0.0:131): avc: denied { read } for comm="system_server" name="u:object_r:qemu_sf_lcd_density_prop:s0" dev="tmpfs" ino=286 scontext=u:r:system_server:s0 tcontext=u:object_r:qemu_sf_lcd_density_prop:s0 tclass=file permissive=0 01-01 00:00:28.060 907 907 I auditd : type=1400 audit(0.0:132): avc: denied { read } for comm="system_server" name="u:object_r:qemu_sf_lcd_density_prop:s0" dev="tmpfs" ino=286 scontext=u:r:system_server:s0 tcontext=u:object_r:qemu_sf_lcd_density_prop:s0 tclass=file permissive=0 01-01 00:00:28.552 907 907 I auditd : type=1400 audit(0.0:133): avc: denied { execute } for comm="system_server" name="idmap2" dev="dm-6" ino=288 scontext=u:r:system_server:s0 tcontext=u:object_r:idmap_exec:s0 tclass=file permissive=0 01-01 00:00:30.480 424 424 I auditd : type=1400 audit(0.0:134): avc: denied { read } for comm="binder:424_2" name="wakeup2" dev="sysfs" ino=37747 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs:s0 tclass=dir permissive=0 01-01 00:00:30.488 424 424 I auditd : type=1400 audit(0.0:135): avc: denied { read } for comm="binder:424_2" name="wakeup26" dev="sysfs" ino=49976 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs:s0 tclass=dir permissive=0 01-01 00:00:30.544 424 424 I auditd : type=1400 audit(0.0:136): avc: denied { read } for comm="binder:424_2" name="wakeup7" dev="sysfs" ino=41499 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs_usb_nonplat:s0 tclass=dir permissive=0 01-01 00:00:30.564 424 424 I auditd : type=1400 audit(0.0:137): avc: denied { read } for comm="binder:424_2" name="wakeup10" dev="sysfs" ino=41988 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs_rtc:s0 tclass=dir permissive=0 01-01 00:00:31.708 778 778 I auditd : type=1400 audit(0.0:138): avc: denied { read } for comm="audioserver" name="u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=467 scontext=u:r:audioserver:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=0 01-01 00:00:31.716 778 778 I auditd : type=1400 audit(0.0:139): avc: denied { read } for comm="audioserver" name="u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=467 scontext=u:r:audioserver:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=0 01-01 00:00:31.832 778 778 I auditd : type=1400 audit(0.0:140): avc: denied { read } for comm="audioserver" name="u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=467 scontext=u:r:audioserver:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=0 01-01 00:00:31.832 778 778 I auditd : type=1400 audit(0.0:141): avc: denied { read } for comm="audioserver" name="u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=467 scontext=u:r:audioserver:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=0 01-01 00:00:31.880 778 778 I auditd : type=1400 audit(0.0:142): avc: denied { read } for comm="audioserver" name="u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=467 scontext=u:r:audioserver:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=0 01-01 00:00:31.880 778 778 I auditd : type=1400 audit(0.0:143): avc: denied { read } for comm="audioserver" name="u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=467 scontext=u:r:audioserver:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=0 05-29 06:30:56.804 907 907 I auditd : type=1400 audit(0.0:144): avc: denied { read } for comm="InputReader" name="virtualkeys.mtk-tpd" dev="sysfs" ino=62995 scontext=u:r:system_server:s0 tcontext=u:object_r:sysfs:s0 tclass=file permissive=0 05-29 06:30:56.976 1164 1164 I auditd : type=1400 audit(0.0:145): avc: denied { dac_read_search } for comm="extra_free_kbyt" capability=2 scontext=u:r:extra_free_kbytes:s0 tcontext=u:r:extra_free_kbytes:s0 tclass=capability permissive=0 05-29 06:30:56.976 1164 1164 I auditd : type=1400 audit(0.0:146): avc: denied { dac_override } for comm="extra_free_kbyt" capability=1 scontext=u:r:extra_free_kbytes:s0 tcontext=u:r:extra_free_kbytes:s0 tclass=capability permissive=0 05-29 06:30:58.608 332 332 I auditd : avc: denied { find } for pid=907 uid=1000 name=vendor.mediatek.hardware.nps.nos.fastswitch.INativeFastSwitch/default scontext=u:r:system_server:s0 tcontext=u:object_r:default_android_service:s0 tclass=service_manager permissive=0 05-29 06:31:00.728 766 766 I auditd : type=1400 audit(0.0:147): avc: denied { read } for comm="VcodecProcess" name="u:object_r:default_prop:s0" dev="tmpfs" ino=158 scontext=u:r:mtk_hal_c2:s0 tcontext=u:object_r:default_prop:s0 tclass=file permissive=0 05-29 06:31:00.764 766 766 I auditd : type=1400 audit(0.0:148): avc: denied { read } for comm="VcodecProcess" name="u:object_r:default_prop:s0" dev="tmpfs" ino=158 scontext=u:r:mtk_hal_c2:s0 tcontext=u:object_r:default_prop:s0 tclass=file permissive=0 05-29 06:31:00.788 766 766 I auditd : type=1400 audit(0.0:149): avc: denied { read } for comm="VcodecProcess" name="u:object_r:default_prop:s0" dev="tmpfs" ino=158 scontext=u:r:mtk_hal_c2:s0 tcontext=u:object_r:default_prop:s0 tclass=file permissive=0 05-29 06:31:00.812 766 766 I auditd : type=1400 audit(0.0:150): avc: denied { read } for comm="VcodecProcess" name="u:object_r:default_prop:s0" dev="tmpfs" ino=158 scontext=u:r:mtk_hal_c2:s0 tcontext=u:object_r:default_prop:s0 tclass=file permissive=0 05-29 06:31:02.331 332 332 I auditd : avc: denied { find } for pid=907 uid=1000 name=vendor.mediatek.hardware.mtkpower.IMtkPowerService/default scontext=u:r:system_server:s0 tcontext=u:object_r:default_android_service:s0 tclass=service_manager permissive=0 05-29 06:31:02.748 332 332 I auditd : avc: denied { add } for pid=907 uid=1000 name=vendor.mediatek.hardware.mbrainj.IMBrainJava/default scontext=u:r:system_server:s0 tcontext=u:object_r:default_android_service:s0 tclass=service_manager permissive=0 05-29 06:31:02.976 1477 1477 I auditd : type=1400 audit(0.0:151): avc: granted { read } for comm="rkstack.process" name="psched" dev="proc" ino=4026532090 scontext=u:r:network_stack:s0 tcontext=u:object_r:proc_net:s0 tclass=file 05-29 06:31:02.976 1477 1477 I auditd : type=1400 audit(0.0:152): avc: granted { read open } for comm="rkstack.process" path="/proc/1477/net/psched" dev="proc" ino=4026532090 scontext=u:r:network_stack:s0 tcontext=u:object_r:proc_net:s0 tclass=file 05-29 06:31:02.976 1477 1477 I auditd : type=1400 audit(0.0:153): avc: granted { getattr } for comm="rkstack.process" path="/proc/1477/net/psched" dev="proc" ino=4026532090 scontext=u:r:network_stack:s0 tcontext=u:object_r:proc_net:s0 tclass=file 05-29 06:31:04.859 332 332 I auditd : avc: denied { add } for pid=907 uid=1000 name=vendor.mediatek.hardware.mbrainj.IMBrainJava/default scontext=u:r:system_server:s0 tcontext=u:object_r:default_android_service:s0 tclass=service_manager permissive=0 05-29 06:31:11.640 1971 1971 I auditd : type=1400 audit(0.0:154): avc: denied { dac_read_search } for comm="aee_aed" capability=2 scontext=u:r:crash_dump:s0 tcontext=u:r:crash_dump:s0 tclass=capability permissive=0 05-29 06:31:11.640 1971 1971 I auditd : type=1400 audit(0.0:155): avc: denied { dac_override } for comm="aee_aed" capability=1 scontext=u:r:crash_dump:s0 tcontext=u:r:crash_dump:s0 tclass=capability permissive=0 05-29 06:31:11.688 1982 1982 I auditd : type=1400 audit(0.0:156): avc: denied { dac_read_search } for comm="perfetto" capability=2 scontext=u:r:perfetto:s0 tcontext=u:r:perfetto:s0 tclass=capability permissive=0 05-29 06:31:11.688 1982 1982 I auditd : type=1400 audit(0.0:157): avc: denied { dac_override } for comm="perfetto" capability=1 scontext=u:r:perfetto:s0 tcontext=u:r:perfetto:s0 tclass=capability permissive=0 05-29 06:31:11.948 259 259 I auditd : type=1400 audit(0.0:158): avc: denied { write } for comm="init" name="control" dev="proc" ino=4026532112 scontext=u:r:vendor_init:s0 tcontext=u:object_r:proc_dynamic_debug_control:s0 tclass=file permissive=0 05-29 06:31:13.240 2075 2075 I auditd : type=1400 audit(0.0:159): avc: denied { setattr } for comm="wmt_loader" name="wmt_aee" dev="proc" ino=4026534089 scontext=u:r:wmt_loader:s0 tcontext=u:object_r:proc_wmt_aee:s0 tclass=file permissive=0 05-29 06:31:13.456 1 1 I auditd : type=1107 audit(0.0:160): uid=0 auid=4294967295 ses=4294967295 subj=u:r:init:s0 msg='avc: denied { set } for property=vendor.pullFWlog pid=2108 uid=2000 gid=1007 scontext=u:r:connsyslogger:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=property_service permissive=0' 05-29 06:31:13.488 424 424 I auditd : type=1400 audit(0.0:161): avc: denied { read } for comm="binder:424_3" name="wakeup2" dev="sysfs" ino=37747 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs:s0 tclass=dir permissive=0 05-29 06:31:13.504 424 424 I auditd : type=1400 audit(0.0:162): avc: denied { read } for comm="binder:424_3" name="wakeup26" dev="sysfs" ino=49976 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs:s0 tclass=dir permissive=0 05-29 06:31:13.660 424 424 I auditd : type=1400 audit(0.0:163): avc: denied { read } for comm="binder:424_3" name="wakeup7" dev="sysfs" ino=41499 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs_usb_nonplat:s0 tclass=dir permissive=0 05-29 06:31:13.812 424 424 I auditd : type=1400 audit(0.0:164): avc: denied { read } for comm="binder:424_3" name="wakeup10" dev="sysfs" ino=41988 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs_rtc:s0 tclass=dir permissive=0 05-29 06:31:14.060 332 332 I auditd : avc: denied { find } for pid=2021 uid=1000 name=hzbhd_share scontext=u:r:system_app:s0 tcontext=u:object_r:default_android_service:s0 tclass=service_manager permissive=0 05-29 06:31:14.995 332 332 I auditd : avc: denied { find } for pid=907 uid=1000 name=vendor.mediatek.hardware.lbs.ILbs/mtk_lppe_socket_wlan scontext=u:r:system_server:s0 tcontext=u:object_r:default_android_service:s0 tclass=service_manager permissive=0 05-29 06:31:15.072 332 332 I auditd : avc: denied { find } for pid=907 uid=1000 name=vendor.mediatek.hardware.lbs.ILbs/mtk_lppe_socket_bt scontext=u:r:system_server:s0 tcontext=u:object_r:default_android_service:s0 tclass=service_manager permissive=0 05-29 06:31:15.120 332 332 I auditd : avc: denied { find } for pid=907 uid=1000 name=vendor.mediatek.hardware.lbs.ILbs/mtk_lppe_socket_sensor scontext=u:r:system_server:s0 tcontext=u:object_r:default_android_service:s0 tclass=service_manager permissive=0 05-29 06:31:15.141 332 332 I auditd : avc: denied { find } for pid=907 uid=1000 name=vendor.mediatek.hardware.lbs.ILbs/mtk_lppe_socket_network scontext=u:r:system_server:s0 tcontext=u:object_r:default_android_service:s0 tclass=service_manager permissive=0 05-29 06:31:15.161 332 332 I auditd : avc: denied { find } for pid=907 uid=1000 name=vendor.mediatek.hardware.lbs.ILbs/mtk_lppe_socket_ipaddr scontext=u:r:system_server:s0 tcontext=u:object_r:default_android_service:s0 tclass=service_manager permissive=0 05-29 06:31:15.175 332 332 I auditd : avc: denied { find } for pid=907 uid=1000 name=vendor.mediatek.hardware.lbs.ILbs/mtk_lppe_socket_lbs scontext=u:r:system_server:s0 tcontext=u:object_r:default_android_service:s0 tclass=service_manager permissive=0 05-29 06:31:15.237 332 332 I auditd : avc: denied { find } for pid=907 uid=1000 name=vendor.mediatek.hardware.lbs.ILbs/mtk_agps2framework scontext=u:r:system_server:s0 tcontext=u:object_r:default_android_service:s0 tclass=service_manager permissive=0 05-29 06:31:15.288 332 332 I auditd : avc: denied { find } for pid=907 uid=1000 name=vendor.mediatek.hardware.lbs.ILbs/mtk_lppe_socket_agps scontext=u:r:system_server:s0 tcontext=u:object_r:default_android_service:s0 tclass=service_manager permissive=0 05-29 06:31:16.234 332 332 I auditd : avc: denied { find } for pid=2236 uid=10082 name=vendor.mediatek.hardware.lbs.ILbs/mtk_mtklogger2mnld scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:default_android_service:s0 tclass=service_manager permissive=0 05-29 06:31:16.339 332 332 I auditd : avc: denied { find } for pid=2236 uid=10082 name=vendor.mediatek.hardware.lbs.ILbs/mtk_mtklogger2mnld scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:default_android_service:s0 tclass=service_manager permissive=0 05-29 06:31:16.448 332 332 I auditd : avc: denied { find } for pid=2236 uid=10082 name=vendor.mediatek.hardware.lbs.ILbs/mtk_mtklogger2mnld scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:default_android_service:s0 tclass=service_manager permissive=0 05-29 06:31:16.712 920 920 I auditd : type=1400 audit(0.0:166): avc: denied { read } for comm="mobile_log_d.cp" name="last_arm2_log" dev="proc" ino=4026532935 scontext=u:r:mobile_log_d:s0 tcontext=u:object_r:proc:s0 tclass=file permissive=0 05-29 06:31:16.752 2484 2484 I auditd : type=1400 audit(0.0:167): avc: denied { read } for comm="logcat" path="/proc/kmsg" dev="proc" ino=4026532106 scontext=u:r:dumpstate:s0 tcontext=u:object_r:proc_kmsg:s0 tclass=file permissive=0 05-29 06:31:16.752 2484 2484 I auditd : type=1400 audit(0.0:168): avc: denied { read } for comm="logcat" path="/dev/scp" dev="tmpfs" ino=1232 scontext=u:r:dumpstate:s0 tcontext=u:object_r:scp_device:s0 tclass=chr_file permissive=0 05-29 06:31:16.752 2484 2484 I auditd : type=1400 audit(0.0:169): avc: denied { read } for comm="logcat" path="/dev/sspm" dev="tmpfs" ino=1183 scontext=u:r:dumpstate:s0 tcontext=u:object_r:sspm_device:s0 tclass=chr_file permissive=0 05-29 06:31:16.752 2484 2484 I auditd : type=1400 audit(0.0:170): avc: denied { read append } for comm="logcat" path="/data/log_temp/boot_3__normal/main_log_2010_0101_000027.curf" dev="mmcblk0p51" ino=745477 scontext=u:r:dumpstate:s0 tcontext=u:object_r:logtemp_data_file:s0 tclass=file permissive=0 05-29 06:58:41.496 3308 3308 I auditd : type=1400 audit(0.0:179): avc: denied { dac_read_search } for comm="bhd_radio_autoc" capability=2 scontext=u:r:systemmix:s0 tcontext=u:r:systemmix:s0 tclass=capability permissive=0 05-29 06:58:41.496 3308 3308 I auditd : type=1400 audit(0.0:180): avc: denied { dac_override } for comm="bhd_radio_autoc" capability=1 scontext=u:r:systemmix:s0 tcontext=u:r:systemmix:s0 tclass=capability permissive=0 05-29 06:58:41.500 3308 3308 I auditd : type=1400 audit(0.0:181): avc: denied { read } for comm="bhd_radio_autoc" name="u:object_r:system_prop:s0" dev="tmpfs" ino=424 scontext=u:r:systemmix:s0 tcontext=u:object_r:system_prop:s0 tclass=file permissive=0 05-29 06:58:41.500 3308 3308 I auditd : type=1400 audit(0.0:182): avc: denied { read } for comm="bhd_radio_autoc" name="u:object_r:system_prop:s0" dev="tmpfs" ino=424 scontext=u:r:systemmix:s0 tcontext=u:object_r:system_prop:s0 tclass=file permissive=0 05-29 06:58:41.500 3308 3308 I auditd : type=1400 audit(0.0:183): avc: denied { read write } for comm="bhd_radio_autoc" name="gpio_sw" dev="tmpfs" ino=1008 scontext=u:r:systemmix:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=0 05-29 06:58:49.824 3315 3315 I auditd : type=1400 audit(0.0:198): avc: denied { dac_read_search } for comm="bhd_radio_autoc" capability=2 scontext=u:r:systemmix:s0 tcontext=u:r:systemmix:s0 tclass=capability permissive=0 05-29 06:58:49.824 3315 3315 I auditd : type=1400 audit(0.0:199): avc: denied { dac_override } for comm="bhd_radio_autoc" capability=1 scontext=u:r:systemmix:s0 tcontext=u:r:systemmix:s0 tclass=capability permissive=0 05-29 06:58:49.828 3315 3315 I auditd : type=1400 audit(0.0:200): avc: denied { read } for comm="bhd_radio_autoc" name="u:object_r:system_prop:s0" dev="tmpfs" ino=424 scontext=u:r:systemmix:s0 tcontext=u:object_r:system_prop:s0 tclass=file permissive=0 05-29 06:58:49.828 3315 3315 I auditd : type=1400 audit(0.0:201): avc: denied { read } for comm="bhd_radio_autoc" name="u:object_r:system_prop:s0" dev="tmpfs" ino=424 scontext=u:r:systemmix:s0 tcontext=u:object_r:system_prop:s0 tclass=file permissive=0 05-29 06:58:49.828 3315 3315 I auditd : type=1400 audit(0.0:202): avc: denied { read write } for comm="bhd_radio_autoc" name="gpio_sw" dev="tmpfs" ino=1008 scontext=u:r:systemmix:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=0 05-29 06:59:02.224 3323 3323 I auditd : type=1400 audit(0.0:217): avc: denied { dac_read_search } for comm="bhd_radio_autoc" capability=2 scontext=u:r:systemmix:s0 tcontext=u:r:systemmix:s0 tclass=capability permissive=0 05-29 06:59:02.224 3323 3323 I auditd : type=1400 audit(0.0:218): avc: denied { dac_override } for comm="bhd_radio_autoc" capability=1 scontext=u:r:systemmix:s0 tcontext=u:r:systemmix:s0 tclass=capability permissive=0 05-29 06:59:02.228 3323 3323 I auditd : type=1400 audit(0.0:219): avc: denied { read } for comm="bhd_radio_autoc" name="u:object_r:system_prop:s0" dev="tmpfs" ino=424 scontext=u:r:systemmix:s0 tcontext=u:object_r:system_prop:s0 tclass=file permissive=0 05-29 06:59:02.228 3323 3323 I auditd : type=1400 audit(0.0:220): avc: denied { read } for comm="bhd_radio_autoc" name="u:object_r:system_prop:s0" dev="tmpfs" ino=424 scontext=u:r:systemmix:s0 tcontext=u:object_r:system_prop:s0 tclass=file permissive=0 05-29 06:59:02.228 3323 3323 I auditd : type=1400 audit(0.0:221): avc: denied { read write } for comm="bhd_radio_autoc" name="gpio_sw" dev="tmpfs" ino=1008 scontext=u:r:systemmix:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=0 05-29 06:59:07.004 3328 3328 I auditd : type=1400 audit(0.0:236): avc: denied { dac_read_search } for comm="bhd_radio_autoc" capability=2 scontext=u:r:systemmix:s0 tcontext=u:r:systemmix:s0 tclass=capability permissive=0 05-29 06:59:07.004 3328 3328 I auditd : type=1400 audit(0.0:237): avc: denied { dac_override } for comm="bhd_radio_autoc" capability=1 scontext=u:r:systemmix:s0 tcontext=u:r:systemmix:s0 tclass=capability permissive=0 05-29 06:59:07.004 3328 3328 I auditd : type=1400 audit(0.0:238): avc: denied { read } for comm="bhd_radio_autoc" name="u:object_r:system_prop:s0" dev="tmpfs" ino=424 scontext=u:r:systemmix:s0 tcontext=u:object_r:system_prop:s0 tclass=file permissive=0 05-29 06:59:07.008 3328 3328 I auditd : type=1400 audit(0.0:239): avc: denied { read } for comm="bhd_radio_autoc" name="u:object_r:system_prop:s0" dev="tmpfs" ino=424 scontext=u:r:systemmix:s0 tcontext=u:object_r:system_prop:s0 tclass=file permissive=0 05-29 06:59:07.008 3328 3328 I auditd : type=1400 audit(0.0:240): avc: denied { read write } for comm="bhd_radio_autoc" name="gpio_sw" dev="tmpfs" ino=1008 scontext=u:r:systemmix:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=0 05-29 06:59:08.744 3331 3331 I auditd : type=1400 audit(0.0:255): avc: denied { dac_read_search } for comm="bhd_radio_autoc" capability=2 scontext=u:r:systemmix:s0 tcontext=u:r:systemmix:s0 tclass=capability permissive=0 05-29 06:59:08.744 3331 3331 I auditd : type=1400 audit(0.0:256): avc: denied { dac_override } for comm="bhd_radio_autoc" capability=1 scontext=u:r:systemmix:s0 tcontext=u:r:systemmix:s0 tclass=capability permissive=0 05-29 06:59:08.748 3331 3331 I auditd : type=1400 audit(0.0:257): avc: denied { read } for comm="bhd_radio_autoc" name="u:object_r:system_prop:s0" dev="tmpfs" ino=424 scontext=u:r:systemmix:s0 tcontext=u:object_r:system_prop:s0 tclass=file permissive=0 05-29 06:59:08.748 3331 3331 I auditd : type=1400 audit(0.0:258): avc: denied { read } for comm="bhd_radio_autoc" name="u:object_r:system_prop:s0" dev="tmpfs" ino=424 scontext=u:r:systemmix:s0 tcontext=u:object_r:system_prop:s0 tclass=file permissive=0 05-29 06:59:08.748 3331 3331 I auditd : type=1400 audit(0.0:259): avc: denied { read write } for comm="bhd_radio_autoc" name="gpio_sw" dev="tmpfs" ino=1008 scontext=u:r:systemmix:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=0 05-29 06:59:10.088 3334 3334 I auditd : type=1400 audit(0.0:286): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 05-29 06:59:10.088 3334 3334 I auditd : type=1400 audit(0.0:287): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 05-29 06:59:10.088 3334 3334 I auditd : type=1400 audit(0.0:288): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 05-29 06:59:10.088 3334 3334 I auditd : type=1400 audit(0.0:289): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 05-29 06:59:10.092 3334 3334 I auditd : type=1400 audit(0.0:290): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 05-29 06:59:11.296 3342 3342 I auditd : type=1400 audit(0.0:317): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 05-29 06:59:11.300 3342 3342 I auditd : type=1400 audit(0.0:318): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 05-29 06:59:11.300 3342 3342 I auditd : type=1400 audit(0.0:319): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 05-29 06:59:11.304 3342 3342 I auditd : type=1400 audit(0.0:320): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 05-29 06:59:11.308 3342 3342 I auditd : type=1400 audit(0.0:321): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 05-29 06:59:12.400 3345 3345 I auditd : type=1400 audit(0.0:336): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 05-29 06:59:12.400 3345 3345 I auditd : type=1400 audit(0.0:337): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 05-29 06:59:12.404 3345 3345 I auditd : type=1400 audit(0.0:338): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 05-29 06:59:12.408 3345 3345 I auditd : type=1400 audit(0.0:339): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 05-29 06:59:12.408 3345 3345 I auditd : type=1400 audit(0.0:340): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 05-29 06:59:13.432 3348 3348 I auditd : type=1400 audit(0.0:355): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 05-29 06:59:13.432 3348 3348 I auditd : type=1400 audit(0.0:356): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 05-29 06:59:13.436 3348 3348 I auditd : type=1400 audit(0.0:357): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 05-29 06:59:13.440 3348 3348 I auditd : type=1400 audit(0.0:358): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 05-29 06:59:13.444 3348 3348 I auditd : type=1400 audit(0.0:359): avc: denied { read write } for comm="bhd_radio_autoc" name="i2c-3" dev="tmpfs" ino=757 scontext=u:r:systemmix:s0 tcontext=u:object_r:ttyS_device:s0 tclass=chr_file permissive=0 05-29 06:59:15.116 3353 3353 I auditd : type=1400 audit(0.0:362): avc: denied { dac_read_search } for comm="bhd_radio_autoc" capability=2 scontext=u:r:systemmix:s0 tcontext=u:r:systemmix:s0 tclass=capability permissive=0 05-29 06:59:15.116 3353 3353 I auditd : type=1400 audit(0.0:363): avc: denied { dac_override } for comm="bhd_radio_autoc" capability=1 scontext=u:r:systemmix:s0 tcontext=u:r:systemmix:s0 tclass=capability permissive=0 05-29 06:59:15.124 3353 3353 I auditd : type=1400 audit(0.0:364): avc: denied { read } for comm="bhd_radio_autoc" name="u:object_r:system_prop:s0" dev="tmpfs" ino=424 scontext=u:r:systemmix:s0 tcontext=u:object_r:system_prop:s0 tclass=file permissive=0 05-29 06:59:15.124 3353 3353 I auditd : type=1400 audit(0.0:365): avc: denied { read } for comm="bhd_radio_autoc" name="u:object_r:system_prop:s0" dev="tmpfs" ino=424 scontext=u:r:systemmix:s0 tcontext=u:object_r:system_prop:s0 tclass=file permissive=0 05-29 06:59:15.124 3353 3353 I auditd : type=1400 audit(0.0:366): avc: denied { read write } for comm="bhd_radio_autoc" name="gpio_sw" dev="tmpfs" ino=1008 scontext=u:r:systemmix:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=0 05-29 07:00:29.388 424 424 I auditd : type=1400 audit(0.0:381): avc: denied { read } for comm="binder:424_3" name="wakeup2" dev="sysfs" ino=37747 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs:s0 tclass=dir permissive=0 05-29 07:00:29.392 424 424 I auditd : type=1400 audit(0.0:382): avc: denied { read } for comm="binder:424_3" name="wakeup26" dev="sysfs" ino=49976 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs:s0 tclass=dir permissive=0 05-29 07:00:29.408 424 424 I auditd : type=1400 audit(0.0:383): avc: denied { read } for comm="binder:424_3" name="wakeup7" dev="sysfs" ino=41499 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs_usb_nonplat:s0 tclass=dir permissive=0 05-29 07:00:29.416 424 424 I auditd : type=1400 audit(0.0:384): avc: denied { read } for comm="binder:424_3" name="wakeup10" dev="sysfs" ino=41988 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs_rtc:s0 tclass=dir permissive=0 05-29 07:00:29.436 424 424 I auditd : type=1400 audit(0.0:385): avc: denied { read } for comm="binder:424_3" name="wakeup63" dev="sysfs" ino=64642 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs:s0 tclass=dir permissive=0
05-30
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值