Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 674ce6ef authored by Mark Salyzyn's avatar Mark Salyzyn
Browse files

Revert "logd: security buffer only AID_SYSTEM reader"

This reverts commit 756332e8.

Change-Id: Ib8607ac758b7e88a9db716ec4274ec0e4e3dc596
parent 756332e8
Loading
Loading
Loading
Loading
+1 −13
Original line number Diff line number Diff line
@@ -36,18 +36,6 @@ 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) {
@@ -110,7 +98,7 @@ bool LogListener::onDataAvailable(SocketClient *cli) {

    if ((header->id == LOG_ID_SECURITY) &&
            (!__android_log_security() ||
             !clientHasSecurityCredentials(cred->uid, cred->gid, cred->pid))) {
             !clientHasLogCredentials(cred->uid, cred->gid, cred->pid))) {
        return false;
    }