2014-02-06 23:48:50 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
#include <algorithm> // std::max
|
2014-04-07 16:05:40 +02:00
|
|
|
#include <fcntl.h>
|
2015-03-10 21:51:35 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2014-02-06 23:48:50 +01:00
|
|
|
|
|
|
|
#include <log/logger.h>
|
|
|
|
#include <private/android_filesystem_config.h>
|
|
|
|
#include <utils/String8.h>
|
|
|
|
|
|
|
|
#include "LogStatistics.h"
|
|
|
|
|
2015-03-16 16:26:05 +01:00
|
|
|
LogStatistics::LogStatistics()
|
|
|
|
: enable(false) {
|
2015-03-10 21:51:35 +01:00
|
|
|
log_id_for_each(id) {
|
|
|
|
mSizes[id] = 0;
|
|
|
|
mElements[id] = 0;
|
|
|
|
mSizesTotal[id] = 0;
|
|
|
|
mElementsTotal[id] = 0;
|
2014-02-06 23:48:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-16 16:26:05 +01:00
|
|
|
namespace android {
|
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
// caller must own and free character string
|
2015-03-16 16:26:05 +01:00
|
|
|
static char *pidToName(pid_t pid) {
|
2014-04-07 16:05:40 +02:00
|
|
|
char *retval = NULL;
|
2014-09-21 23:22:18 +02:00
|
|
|
if (pid == 0) { // special case from auditd for kernel
|
|
|
|
retval = strdup("logd.auditd");
|
2015-03-10 21:51:35 +01:00
|
|
|
} else {
|
2014-04-07 16:05:40 +02:00
|
|
|
char buffer[512];
|
|
|
|
snprintf(buffer, sizeof(buffer), "/proc/%u/cmdline", pid);
|
|
|
|
int fd = open(buffer, O_RDONLY);
|
|
|
|
if (fd >= 0) {
|
|
|
|
ssize_t ret = read(fd, buffer, sizeof(buffer));
|
|
|
|
if (ret > 0) {
|
|
|
|
buffer[sizeof(buffer)-1] = '\0';
|
|
|
|
// frameworks intermediate state
|
|
|
|
if (strcmp(buffer, "<pre-initialized>")) {
|
|
|
|
retval = strdup(buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2015-03-16 16:26:05 +01:00
|
|
|
}
|
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
void LogStatistics::add(LogBufferElement *e) {
|
|
|
|
log_id_t log_id = e->getLogId();
|
|
|
|
unsigned short size = e->getMsgLen();
|
|
|
|
mSizes[log_id] += size;
|
|
|
|
++mElements[log_id];
|
2014-02-06 23:48:50 +01:00
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
uid_t uid = e->getUid();
|
|
|
|
android::hash_t hash = android::hash_type(uid);
|
|
|
|
uidTable_t &table = uidTable[log_id];
|
|
|
|
ssize_t index = table.find(-1, hash, uid);
|
|
|
|
if (index == -1) {
|
|
|
|
UidEntry initEntry(uid);
|
|
|
|
initEntry.add(size);
|
|
|
|
table.add(hash, initEntry);
|
2014-02-06 23:48:50 +01:00
|
|
|
} else {
|
2015-03-10 21:51:35 +01:00
|
|
|
UidEntry &entry = table.editEntryAt(index);
|
|
|
|
entry.add(size);
|
2014-02-06 23:48:50 +01:00
|
|
|
}
|
2014-04-05 01:35:59 +02:00
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
mSizesTotal[log_id] += size;
|
|
|
|
++mElementsTotal[log_id];
|
2015-03-16 16:26:05 +01:00
|
|
|
|
|
|
|
if (!enable) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pid_t pid = e->getPid();
|
|
|
|
hash = android::hash_type(pid);
|
|
|
|
index = pidTable.find(-1, hash, pid);
|
|
|
|
if (index == -1) {
|
|
|
|
PidEntry initEntry(pid, uid, android::pidToName(pid));
|
|
|
|
initEntry.add(size);
|
|
|
|
pidTable.add(hash, initEntry);
|
|
|
|
} else {
|
|
|
|
PidEntry &entry = pidTable.editEntryAt(index);
|
|
|
|
if (entry.getUid() != uid) {
|
|
|
|
entry.setUid(uid);
|
|
|
|
entry.setName(android::pidToName(pid));
|
|
|
|
} else if (!entry.getName()) {
|
|
|
|
char *name = android::pidToName(pid);
|
|
|
|
if (name) {
|
|
|
|
entry.setName(name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
entry.add(size);
|
|
|
|
}
|
2014-02-06 23:48:50 +01:00
|
|
|
}
|
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
void LogStatistics::subtract(LogBufferElement *e) {
|
|
|
|
log_id_t log_id = e->getLogId();
|
|
|
|
unsigned short size = e->getMsgLen();
|
|
|
|
mSizes[log_id] -= size;
|
|
|
|
--mElements[log_id];
|
2014-02-06 23:48:50 +01:00
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
uid_t uid = e->getUid();
|
|
|
|
android::hash_t hash = android::hash_type(uid);
|
|
|
|
uidTable_t &table = uidTable[log_id];
|
|
|
|
ssize_t index = table.find(-1, hash, uid);
|
|
|
|
if (index != -1) {
|
|
|
|
UidEntry &entry = table.editEntryAt(index);
|
|
|
|
if (entry.subtract(size)) {
|
|
|
|
table.removeAt(index);
|
2014-02-06 23:48:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-16 16:26:05 +01:00
|
|
|
if (!enable) {
|
|
|
|
return;
|
2014-02-06 23:48:50 +01:00
|
|
|
}
|
|
|
|
|
2015-03-16 16:26:05 +01:00
|
|
|
pid_t pid = e->getPid();
|
|
|
|
hash = android::hash_type(pid);
|
|
|
|
index = pidTable.find(-1, hash, pid);
|
|
|
|
if (index != -1) {
|
|
|
|
PidEntry &entry = pidTable.editEntryAt(index);
|
|
|
|
if (entry.subtract(size)) {
|
|
|
|
pidTable.removeAt(index);
|
2014-04-05 01:35:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
// caller must own and free character string
|
|
|
|
char *LogStatistics::uidToName(uid_t uid) {
|
|
|
|
// Local hard coded favourites
|
|
|
|
if (uid == AID_LOGD) {
|
|
|
|
return strdup("auditd");
|
2014-02-06 23:48:50 +01:00
|
|
|
}
|
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
// Android hard coded
|
|
|
|
const struct android_id_info *info = android_ids;
|
2014-02-06 23:48:50 +01:00
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
for (size_t i = 0; i < android_id_count; ++i) {
|
|
|
|
if (info->aid == uid) {
|
|
|
|
return strdup(info->name);
|
2014-02-06 23:48:50 +01:00
|
|
|
}
|
2015-03-10 21:51:35 +01:00
|
|
|
++info;
|
2014-02-06 23:48:50 +01:00
|
|
|
}
|
|
|
|
|
2015-03-16 16:26:05 +01:00
|
|
|
// Parse /data/system/packages.list
|
|
|
|
char *name = android::uidToName(uid);
|
|
|
|
if (name) {
|
|
|
|
return name;
|
|
|
|
}
|
2015-03-16 16:26:05 +01:00
|
|
|
|
|
|
|
// report uid -> pid(s) -> pidToName if unique
|
|
|
|
ssize_t index = -1;
|
|
|
|
while ((index = pidTable.next(index)) != -1) {
|
|
|
|
const PidEntry &entry = pidTable.entryAt(index);
|
|
|
|
|
|
|
|
if (entry.getUid() == uid) {
|
|
|
|
const char *n = entry.getName();
|
|
|
|
|
|
|
|
if (n) {
|
|
|
|
if (!name) {
|
|
|
|
name = strdup(n);
|
|
|
|
} else if (strcmp(name, n)) {
|
|
|
|
free(name);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
// No one
|
2015-03-16 16:26:05 +01:00
|
|
|
return name;
|
2014-02-06 23:48:50 +01:00
|
|
|
}
|
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
static void format_line(android::String8 &output,
|
|
|
|
android::String8 &name, android::String8 &size) {
|
|
|
|
static const size_t total_len = 70;
|
2014-02-06 23:48:50 +01:00
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
output.appendFormat("%s%*s\n", name.string(),
|
2015-03-20 21:44:53 +01:00
|
|
|
(int)std::max(total_len - name.length() - 1, size.length() + 1),
|
2015-03-10 21:51:35 +01:00
|
|
|
size.string());
|
2014-02-06 23:48:50 +01:00
|
|
|
}
|
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
void LogStatistics::format(char **buf, uid_t uid, unsigned int logMask) {
|
2014-04-07 16:05:40 +02:00
|
|
|
static const unsigned short spaces_total = 19;
|
2014-02-06 23:48:50 +01:00
|
|
|
|
|
|
|
if (*buf) {
|
2014-04-07 06:25:58 +02:00
|
|
|
free(*buf);
|
2014-02-06 23:48:50 +01:00
|
|
|
*buf = NULL;
|
|
|
|
}
|
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
// Report on total logging, current and for all time
|
|
|
|
|
|
|
|
android::String8 output("size/num");
|
2014-02-06 23:48:50 +01:00
|
|
|
size_t oldLength;
|
2015-03-10 21:51:35 +01:00
|
|
|
short spaces = 1;
|
2014-02-06 23:48:50 +01:00
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
log_id_for_each(id) {
|
|
|
|
if (!(logMask & (1 << id))) {
|
2014-04-05 01:35:59 +02:00
|
|
|
continue;
|
|
|
|
}
|
2015-03-10 21:51:35 +01:00
|
|
|
oldLength = output.length();
|
2014-04-05 01:35:59 +02:00
|
|
|
if (spaces < 0) {
|
|
|
|
spaces = 0;
|
|
|
|
}
|
2015-03-10 21:51:35 +01:00
|
|
|
output.appendFormat("%*s%s", spaces, "", android_log_id_to_name(id));
|
|
|
|
spaces += spaces_total + oldLength - output.length();
|
|
|
|
}
|
2014-04-05 01:35:59 +02:00
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
spaces = 4;
|
|
|
|
output.appendFormat("\nTotal");
|
2014-04-05 01:35:59 +02:00
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
log_id_for_each(id) {
|
|
|
|
if (!(logMask & (1 << id))) {
|
|
|
|
continue;
|
2014-02-06 23:48:50 +01:00
|
|
|
}
|
2015-03-10 21:51:35 +01:00
|
|
|
oldLength = output.length();
|
|
|
|
if (spaces < 0) {
|
|
|
|
spaces = 0;
|
2014-02-20 02:18:31 +01:00
|
|
|
}
|
2015-03-10 21:51:35 +01:00
|
|
|
output.appendFormat("%*s%zu/%zu", spaces, "",
|
|
|
|
sizesTotal(id), elementsTotal(id));
|
|
|
|
spaces += spaces_total + oldLength - output.length();
|
2014-02-06 23:48:50 +01:00
|
|
|
}
|
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
spaces = 6;
|
|
|
|
output.appendFormat("\nNow");
|
2014-02-06 23:48:50 +01:00
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
log_id_for_each(id) {
|
|
|
|
if (!(logMask & (1 << id))) {
|
2014-02-06 23:48:50 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
size_t els = elements(id);
|
2014-02-06 23:48:50 +01:00
|
|
|
if (els) {
|
2015-03-10 21:51:35 +01:00
|
|
|
oldLength = output.length();
|
2014-02-20 02:18:31 +01:00
|
|
|
if (spaces < 0) {
|
|
|
|
spaces = 0;
|
|
|
|
}
|
2015-03-10 21:51:35 +01:00
|
|
|
output.appendFormat("%*s%zu/%zu", spaces, "", sizes(id), els);
|
|
|
|
spaces -= output.length() - oldLength;
|
2014-02-06 23:48:50 +01:00
|
|
|
}
|
|
|
|
spaces += spaces_total;
|
|
|
|
}
|
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
// Report on Chattiest
|
2014-03-26 18:46:39 +01:00
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
// Chattiest by application (UID)
|
2015-03-16 16:26:05 +01:00
|
|
|
static const size_t maximum_sorted_entries = 32;
|
2015-03-10 21:51:35 +01:00
|
|
|
log_id_for_each(id) {
|
|
|
|
if (!(logMask & (1 << id))) {
|
2014-03-26 18:46:39 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-03-16 16:26:05 +01:00
|
|
|
bool headerPrinted = false;
|
|
|
|
std::unique_ptr<const UidEntry *[]> sorted = sort(maximum_sorted_entries, id);
|
|
|
|
ssize_t index = -1;
|
|
|
|
while ((index = uidTable_t::next(index, sorted, maximum_sorted_entries)) >= 0) {
|
2015-03-10 21:51:35 +01:00
|
|
|
const UidEntry *entry = sorted[index];
|
|
|
|
uid_t u = entry->getKey();
|
|
|
|
if ((uid != AID_ROOT) && (u != uid)) {
|
2014-02-06 23:48:50 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-03-16 16:26:05 +01:00
|
|
|
if (!headerPrinted) {
|
2015-03-10 21:51:35 +01:00
|
|
|
if (uid == AID_ROOT) {
|
|
|
|
output.appendFormat(
|
|
|
|
"\n\nChattiest UIDs in %s:\n",
|
|
|
|
android_log_id_to_name(id));
|
|
|
|
android::String8 name("UID");
|
|
|
|
android::String8 size("Size");
|
|
|
|
format_line(output, name, size);
|
|
|
|
} else {
|
|
|
|
output.appendFormat(
|
|
|
|
"\n\nLogging for your UID in %s:\n",
|
|
|
|
android_log_id_to_name(id));
|
2014-02-20 02:18:31 +01:00
|
|
|
}
|
2015-03-16 16:26:05 +01:00
|
|
|
headerPrinted = true;
|
2014-02-06 23:48:50 +01:00
|
|
|
}
|
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
android::String8 name("");
|
|
|
|
name.appendFormat("%u", u);
|
|
|
|
char *n = uidToName(u);
|
|
|
|
if (n) {
|
|
|
|
name.appendFormat("%*s%s", (int)std::max(6 - name.length(), (size_t)1), "", n);
|
|
|
|
free(n);
|
2014-02-06 23:48:50 +01:00
|
|
|
}
|
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
android::String8 size("");
|
2015-03-16 16:26:05 +01:00
|
|
|
size.appendFormat("%zu", entry->getSizes());
|
2014-02-06 23:48:50 +01:00
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
format_line(output, name, size);
|
2014-02-06 23:48:50 +01:00
|
|
|
}
|
2015-03-16 16:26:05 +01:00
|
|
|
}
|
2015-03-10 21:51:35 +01:00
|
|
|
|
2015-03-16 16:26:05 +01:00
|
|
|
if (enable) {
|
|
|
|
bool headerPrinted = false;
|
|
|
|
std::unique_ptr<const PidEntry *[]> sorted = pidTable.sort(maximum_sorted_entries);
|
|
|
|
ssize_t index = -1;
|
|
|
|
while ((index = pidTable.next(index, sorted, maximum_sorted_entries)) >= 0) {
|
|
|
|
const PidEntry *entry = sorted[index];
|
|
|
|
uid_t u = entry->getUid();
|
|
|
|
if ((uid != AID_ROOT) && (u != uid)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!headerPrinted) {
|
|
|
|
if (uid == AID_ROOT) {
|
|
|
|
output.appendFormat("\n\nChattiest PIDs:\n");
|
|
|
|
} else {
|
|
|
|
output.appendFormat("\n\nLogging for this PID:\n");
|
|
|
|
}
|
|
|
|
android::String8 name(" PID/UID");
|
|
|
|
android::String8 size("Size");
|
2015-04-09 01:09:28 +02:00
|
|
|
format_line(output, name, size);
|
2015-03-16 16:26:05 +01:00
|
|
|
headerPrinted = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
android::String8 name("");
|
|
|
|
name.appendFormat("%5u/%u", entry->getKey(), u);
|
|
|
|
const char *n = entry->getName();
|
|
|
|
if (n) {
|
|
|
|
name.appendFormat("%*s%s", (int)std::max(12 - name.length(), (size_t)1), "", n);
|
|
|
|
} else {
|
|
|
|
char *un = uidToName(u);
|
|
|
|
if (un) {
|
|
|
|
name.appendFormat("%*s%s", (int)std::max(12 - name.length(), (size_t)1), "", un);
|
|
|
|
free(un);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
android::String8 size("");
|
|
|
|
size.appendFormat("%zu", entry->getSizes());
|
|
|
|
|
|
|
|
format_line(output, name, size);
|
|
|
|
}
|
2014-02-06 23:48:50 +01:00
|
|
|
}
|
|
|
|
|
2015-03-10 21:51:35 +01:00
|
|
|
*buf = strdup(output.string());
|
2014-02-06 23:48:50 +01:00
|
|
|
}
|
2014-04-07 16:15:33 +02:00
|
|
|
|
2015-03-16 16:26:05 +01:00
|
|
|
namespace android {
|
|
|
|
|
|
|
|
uid_t pidToUid(pid_t pid) {
|
2015-03-10 21:51:35 +01:00
|
|
|
char buffer[512];
|
|
|
|
snprintf(buffer, sizeof(buffer), "/proc/%u/status", pid);
|
|
|
|
FILE *fp = fopen(buffer, "r");
|
|
|
|
if (fp) {
|
|
|
|
while (fgets(buffer, sizeof(buffer), fp)) {
|
|
|
|
int uid;
|
|
|
|
if (sscanf(buffer, "Groups: %d", &uid) == 1) {
|
|
|
|
fclose(fp);
|
|
|
|
return uid;
|
2014-04-07 16:15:33 +02:00
|
|
|
}
|
|
|
|
}
|
2015-03-10 21:51:35 +01:00
|
|
|
fclose(fp);
|
2014-04-07 16:15:33 +02:00
|
|
|
}
|
|
|
|
return getuid(); // associate this with the logger
|
|
|
|
}
|
2015-03-16 16:26:05 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
uid_t LogStatistics::pidToUid(pid_t pid) {
|
|
|
|
uid_t uid;
|
|
|
|
android::hash_t hash = android::hash_type(pid);
|
|
|
|
ssize_t index = pidTable.find(-1, hash, pid);
|
|
|
|
if (index == -1) {
|
|
|
|
uid = android::pidToUid(pid);
|
|
|
|
PidEntry initEntry(pid, uid, android::pidToName(pid));
|
|
|
|
pidTable.add(hash, initEntry);
|
|
|
|
} else {
|
|
|
|
PidEntry &entry = pidTable.editEntryAt(index);
|
|
|
|
if (!entry.getName()) {
|
|
|
|
char *name = android::pidToName(pid);
|
|
|
|
if (name) {
|
|
|
|
entry.setName(name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
uid = entry.getUid();
|
|
|
|
}
|
|
|
|
return uid;
|
|
|
|
}
|
|
|
|
|
|
|
|
// caller must free character string
|
|
|
|
char *LogStatistics::pidToName(pid_t pid) {
|
|
|
|
char *name;
|
|
|
|
|
|
|
|
android::hash_t hash = android::hash_type(pid);
|
|
|
|
ssize_t index = pidTable.find(-1, hash, pid);
|
|
|
|
if (index == -1) {
|
|
|
|
name = android::pidToName(pid);
|
|
|
|
PidEntry initEntry(pid, android::pidToUid(pid), name ? strdup(name) : NULL);
|
|
|
|
pidTable.add(hash, initEntry);
|
|
|
|
} else {
|
|
|
|
PidEntry &entry = pidTable.editEntryAt(index);
|
|
|
|
const char *n = entry.getName();
|
|
|
|
if (n) {
|
|
|
|
name = strdup(n);
|
|
|
|
} else {
|
|
|
|
name = android::pidToName(pid);
|
|
|
|
if (name) {
|
|
|
|
entry.setName(strdup(name));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return name;
|
|
|
|
}
|