logd: security buffer only AID_SYSTEM reader

Bug: 26029733
Change-Id: I140e5eb8bb39271fa674744651127e3fc545cbe8
This commit is contained in:
Mark Salyzyn 2016-01-25 07:32:38 -08:00
parent 4606c95760
commit 756332e88b
1 changed files with 13 additions and 1 deletions

View File

@ -36,6 +36,18 @@ LogListener::LogListener(LogBuffer *buf, LogReader *reader) :
reader(reader) {
}
static bool clientHasSecurityCredentials(uid_t uid, gid_t gid, pid_t /* pid */) {
if (uid == AID_SYSTEM) {
return true;
}
if (gid == AID_SYSTEM) {
return true;
}
return false;
}
bool LogListener::onDataAvailable(SocketClient *cli) {
static bool name_set;
if (!name_set) {
@ -98,7 +110,7 @@ bool LogListener::onDataAvailable(SocketClient *cli) {
if ((header->id == LOG_ID_SECURITY) &&
(!__android_log_security() ||
!clientHasLogCredentials(cred->uid, cred->gid, cred->pid))) {
!clientHasSecurityCredentials(cred->uid, cred->gid, cred->pid))) {
return false;
}