From fc8d8850ab5164c26386210db2e3fe1bc286b40d Mon Sep 17 00:00:00 2001 From: Yifan Hong Date: Wed, 26 Jul 2017 10:47:14 -0700 Subject: Use getpwnam()/getgrnam() instead of AID_* macros (libgui) AID_* values are defined in libcutils private headers and hence is not exported. Use getpwnam() instead to get these values. Test: device boots Bug: 63135587 Change-Id: I417d0472df2170ab190c1c1622117df58292125c Merged-In: I417d0472df2170ab190c1c1622117df58292125c --- libs/gui/BufferQueueConsumer.cpp | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'libs/gui/BufferQueueConsumer.cpp') diff --git a/libs/gui/BufferQueueConsumer.cpp b/libs/gui/BufferQueueConsumer.cpp index ee4c58cfce..17ff24983c 100644 --- a/libs/gui/BufferQueueConsumer.cpp +++ b/libs/gui/BufferQueueConsumer.cpp @@ -15,6 +15,8 @@ */ #include +#include +#include #define LOG_TAG "BufferQueueConsumer" #define ATRACE_TAG ATRACE_TAG_GRAPHICS @@ -34,7 +36,6 @@ #include #include -#include namespace android { @@ -734,12 +735,18 @@ status_t BufferQueueConsumer::discardFreeBuffers() { } void BufferQueueConsumer::dumpState(String8& result, const char* prefix) const { + struct passwd* pwd = getpwnam("shell"); + uid_t shellUid = pwd ? pwd->pw_uid : 0; + if (!shellUid) { + BQ_LOGE("Cannot get AID_SHELL"); + return; + } + const IPCThreadState* ipc = IPCThreadState::self(); const pid_t pid = ipc->getCallingPid(); const uid_t uid = ipc->getCallingUid(); - if ((uid != AID_SHELL) - && !PermissionCache::checkPermission(String16( - "android.permission.DUMP"), pid, uid)) { + if ((uid != shellUid) && + !PermissionCache::checkPermission(String16("android.permission.DUMP"), pid, uid)) { result.appendFormat("Permission Denial: can't dump BufferQueueConsumer " "from pid=%d, uid=%d\n", pid, uid); android_errorWriteWithInfoLog(0x534e4554, "27046057", -- cgit v1.2.3-59-g8ed1b