2014-02-26 18:50:16 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012-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.
|
|
|
|
*/
|
|
|
|
|
2014-05-06 16:34:59 +02:00
|
|
|
#include <ctype.h>
|
2014-02-26 18:50:16 +01:00
|
|
|
#include <stdio.h>
|
2014-05-06 16:34:59 +02:00
|
|
|
#include <stdlib.h>
|
2014-02-26 18:50:16 +01:00
|
|
|
#include <string.h>
|
2014-05-10 02:44:18 +02:00
|
|
|
#include <sys/user.h>
|
2014-02-26 18:50:16 +01:00
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2014-05-06 16:34:59 +02:00
|
|
|
#include <cutils/properties.h>
|
2014-02-26 18:50:16 +01:00
|
|
|
#include <log/logger.h>
|
|
|
|
|
|
|
|
#include "LogBuffer.h"
|
2014-05-06 16:34:59 +02:00
|
|
|
#include "LogReader.h"
|
2014-02-06 23:48:50 +01:00
|
|
|
#include "LogStatistics.h"
|
2014-02-11 21:29:31 +01:00
|
|
|
#include "LogWhiteBlackList.h"
|
2014-02-26 18:50:16 +01:00
|
|
|
|
2014-02-11 21:29:31 +01:00
|
|
|
// Default
|
2014-02-26 18:50:16 +01:00
|
|
|
#define LOG_BUFFER_SIZE (256 * 1024) // Tuned on a per-platform basis here?
|
2014-02-11 21:29:31 +01:00
|
|
|
#define log_buffer_size(id) mMaxSize[id]
|
2014-05-10 02:44:18 +02:00
|
|
|
#define LOG_BUFFER_MIN_SIZE (64 * 1024UL)
|
|
|
|
#define LOG_BUFFER_MAX_SIZE (256 * 1024 * 1024UL)
|
|
|
|
|
|
|
|
static bool valid_size(unsigned long value) {
|
|
|
|
if ((value < LOG_BUFFER_MIN_SIZE) || (LOG_BUFFER_MAX_SIZE < value)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
long pages = sysconf(_SC_PHYS_PAGES);
|
|
|
|
if (pages < 1) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
long pagesize = sysconf(_SC_PAGESIZE);
|
|
|
|
if (pagesize <= 1) {
|
|
|
|
pagesize = PAGE_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// maximum memory impact a somewhat arbitrary ~3%
|
|
|
|
pages = (pages + 31) / 32;
|
|
|
|
unsigned long maximum = pages * pagesize;
|
|
|
|
|
|
|
|
if ((maximum < LOG_BUFFER_MIN_SIZE) || (LOG_BUFFER_MAX_SIZE < maximum)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return value <= maximum;
|
|
|
|
}
|
2014-02-26 18:50:16 +01:00
|
|
|
|
2014-05-06 16:34:59 +02:00
|
|
|
static unsigned long property_get_size(const char *key) {
|
|
|
|
char property[PROPERTY_VALUE_MAX];
|
|
|
|
property_get(key, property, "");
|
|
|
|
|
|
|
|
char *cp;
|
|
|
|
unsigned long value = strtoul(property, &cp, 10);
|
|
|
|
|
|
|
|
switch(*cp) {
|
|
|
|
case 'm':
|
|
|
|
case 'M':
|
|
|
|
value *= 1024;
|
|
|
|
/* FALLTHRU */
|
|
|
|
case 'k':
|
|
|
|
case 'K':
|
|
|
|
value *= 1024;
|
|
|
|
/* FALLTHRU */
|
|
|
|
case '\0':
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
value = 0;
|
|
|
|
}
|
|
|
|
|
2014-05-10 02:44:18 +02:00
|
|
|
if (!valid_size(value)) {
|
|
|
|
value = 0;
|
|
|
|
}
|
|
|
|
|
2014-05-06 16:34:59 +02:00
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2014-02-26 18:50:16 +01:00
|
|
|
LogBuffer::LogBuffer(LastLogTimes *times)
|
2014-09-21 23:22:18 +02:00
|
|
|
: dgramQlenStatistics(false)
|
|
|
|
, mTimes(*times) {
|
2014-02-26 18:50:16 +01:00
|
|
|
pthread_mutex_init(&mLogElementsLock, NULL);
|
2014-02-20 02:18:31 +01:00
|
|
|
|
2014-05-10 02:44:18 +02:00
|
|
|
static const char global_tuneable[] = "persist.logd.size"; // Settings App
|
|
|
|
static const char global_default[] = "ro.logd.size"; // BoardConfig.mk
|
2014-05-06 16:34:59 +02:00
|
|
|
|
2014-05-10 02:44:18 +02:00
|
|
|
unsigned long default_size = property_get_size(global_tuneable);
|
|
|
|
if (!default_size) {
|
|
|
|
default_size = property_get_size(global_default);
|
|
|
|
}
|
2014-05-06 16:34:59 +02:00
|
|
|
|
2014-05-10 02:44:18 +02:00
|
|
|
log_id_for_each(i) {
|
2014-05-06 16:34:59 +02:00
|
|
|
char key[PROP_NAME_MAX];
|
2014-05-10 02:44:18 +02:00
|
|
|
|
2014-05-06 16:34:59 +02:00
|
|
|
snprintf(key, sizeof(key), "%s.%s",
|
2014-05-10 02:44:18 +02:00
|
|
|
global_tuneable, android_log_id_to_name(i));
|
|
|
|
unsigned long property_size = property_get_size(key);
|
|
|
|
|
|
|
|
if (!property_size) {
|
|
|
|
snprintf(key, sizeof(key), "%s.%s",
|
|
|
|
global_default, android_log_id_to_name(i));
|
|
|
|
property_size = property_get_size(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!property_size) {
|
|
|
|
property_size = default_size;
|
|
|
|
}
|
2014-05-06 16:34:59 +02:00
|
|
|
|
2014-05-10 02:44:18 +02:00
|
|
|
if (!property_size) {
|
|
|
|
property_size = LOG_BUFFER_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (setSize(i, property_size)) {
|
|
|
|
setSize(i, LOG_BUFFER_MIN_SIZE);
|
|
|
|
}
|
2014-02-11 21:29:31 +01:00
|
|
|
}
|
2014-02-26 18:50:16 +01:00
|
|
|
}
|
|
|
|
|
2014-03-05 16:41:49 +01:00
|
|
|
void LogBuffer::log(log_id_t log_id, log_time realtime,
|
2014-03-21 00:09:38 +01:00
|
|
|
uid_t uid, pid_t pid, pid_t tid,
|
|
|
|
const char *msg, unsigned short len) {
|
2014-02-26 18:50:16 +01:00
|
|
|
if ((log_id >= LOG_ID_MAX) || (log_id < 0)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
LogBufferElement *elem = new LogBufferElement(log_id, realtime,
|
2014-03-21 00:09:38 +01:00
|
|
|
uid, pid, tid, msg, len);
|
2014-02-26 18:50:16 +01:00
|
|
|
|
|
|
|
pthread_mutex_lock(&mLogElementsLock);
|
|
|
|
|
|
|
|
// Insert elements in time sorted order if possible
|
|
|
|
// NB: if end is region locked, place element at end of list
|
|
|
|
LogBufferElementCollection::iterator it = mLogElements.end();
|
|
|
|
LogBufferElementCollection::iterator last = it;
|
2014-10-14 01:49:47 +02:00
|
|
|
while (last != mLogElements.begin()) {
|
|
|
|
--it;
|
2014-02-18 20:23:53 +01:00
|
|
|
if ((*it)->getRealTime() <= realtime) {
|
2014-02-20 02:18:31 +01:00
|
|
|
// halves the peak performance, use with caution
|
2014-09-21 23:22:18 +02:00
|
|
|
if (dgramQlenStatistics) {
|
2014-02-20 02:18:31 +01:00
|
|
|
LogBufferElementCollection::iterator ib = it;
|
|
|
|
unsigned short buckets, num = 1;
|
2014-09-21 23:22:18 +02:00
|
|
|
for (unsigned short i = 0; (buckets = stats.dgramQlen(i)); ++i) {
|
2014-02-20 02:18:31 +01:00
|
|
|
buckets -= num;
|
|
|
|
num += buckets;
|
|
|
|
while (buckets && (--ib != mLogElements.begin())) {
|
|
|
|
--buckets;
|
|
|
|
}
|
|
|
|
if (buckets) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
stats.recordDiff(
|
|
|
|
elem->getRealTime() - (*ib)->getRealTime(), i);
|
|
|
|
}
|
|
|
|
}
|
2014-02-26 18:50:16 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
last = it;
|
|
|
|
}
|
2014-02-18 20:23:53 +01:00
|
|
|
|
2014-02-26 18:50:16 +01:00
|
|
|
if (last == mLogElements.end()) {
|
|
|
|
mLogElements.push_back(elem);
|
|
|
|
} else {
|
2014-05-23 01:07:31 +02:00
|
|
|
log_time end = log_time::EPOCH;
|
2014-02-26 18:50:16 +01:00
|
|
|
bool end_set = false;
|
|
|
|
bool end_always = false;
|
|
|
|
|
|
|
|
LogTimeEntry::lock();
|
|
|
|
|
|
|
|
LastLogTimes::iterator t = mTimes.begin();
|
|
|
|
while(t != mTimes.end()) {
|
|
|
|
LogTimeEntry *entry = (*t);
|
|
|
|
if (entry->owned_Locked()) {
|
|
|
|
if (!entry->mNonBlock) {
|
|
|
|
end_always = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!end_set || (end <= entry->mEnd)) {
|
|
|
|
end = entry->mEnd;
|
|
|
|
end_set = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
t++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (end_always
|
2014-02-18 20:23:53 +01:00
|
|
|
|| (end_set && (end >= (*last)->getMonotonicTime()))) {
|
2014-02-26 18:50:16 +01:00
|
|
|
mLogElements.push_back(elem);
|
|
|
|
} else {
|
|
|
|
mLogElements.insert(last,elem);
|
|
|
|
}
|
|
|
|
|
|
|
|
LogTimeEntry::unlock();
|
|
|
|
}
|
|
|
|
|
2014-02-06 23:48:50 +01:00
|
|
|
stats.add(len, log_id, uid, pid);
|
2014-02-26 18:50:16 +01:00
|
|
|
maybePrune(log_id);
|
|
|
|
pthread_mutex_unlock(&mLogElementsLock);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we're using more than 256K of memory for log entries, prune
|
2014-01-14 01:37:51 +01:00
|
|
|
// at least 10% of the log entries.
|
2014-02-26 18:50:16 +01:00
|
|
|
//
|
|
|
|
// mLogElementsLock must be held when this function is called.
|
|
|
|
void LogBuffer::maybePrune(log_id_t id) {
|
2014-02-06 23:48:50 +01:00
|
|
|
size_t sizes = stats.sizes(id);
|
2014-02-11 21:29:31 +01:00
|
|
|
if (sizes > log_buffer_size(id)) {
|
|
|
|
size_t sizeOver90Percent = sizes - ((log_buffer_size(id) * 9) / 10);
|
2014-02-06 23:48:50 +01:00
|
|
|
size_t elements = stats.elements(id);
|
2014-01-14 01:37:51 +01:00
|
|
|
unsigned long pruneRows = elements * sizeOver90Percent / sizes;
|
|
|
|
elements /= 10;
|
|
|
|
if (pruneRows <= elements) {
|
|
|
|
pruneRows = elements;
|
|
|
|
}
|
|
|
|
prune(id, pruneRows);
|
2014-02-26 18:50:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// prune "pruneRows" of type "id" from the buffer.
|
|
|
|
//
|
|
|
|
// mLogElementsLock must be held when this function is called.
|
2014-06-12 20:16:16 +02:00
|
|
|
void LogBuffer::prune(log_id_t id, unsigned long pruneRows, uid_t caller_uid) {
|
2014-02-26 18:50:16 +01:00
|
|
|
LogTimeEntry *oldest = NULL;
|
|
|
|
|
|
|
|
LogTimeEntry::lock();
|
|
|
|
|
|
|
|
// Region locked?
|
|
|
|
LastLogTimes::iterator t = mTimes.begin();
|
|
|
|
while(t != mTimes.end()) {
|
|
|
|
LogTimeEntry *entry = (*t);
|
2014-12-17 09:53:41 +01:00
|
|
|
if (entry->owned_Locked() && entry->isWatching(id)
|
2014-02-26 18:50:16 +01:00
|
|
|
&& (!oldest || (oldest->mStart > entry->mStart))) {
|
|
|
|
oldest = entry;
|
|
|
|
}
|
|
|
|
t++;
|
|
|
|
}
|
|
|
|
|
2014-02-07 03:11:13 +01:00
|
|
|
LogBufferElementCollection::iterator it;
|
|
|
|
|
2014-06-12 20:16:16 +02:00
|
|
|
if (caller_uid != AID_ROOT) {
|
|
|
|
for(it = mLogElements.begin(); it != mLogElements.end();) {
|
|
|
|
LogBufferElement *e = *it;
|
|
|
|
|
|
|
|
if (oldest && (oldest->mStart <= e->getMonotonicTime())) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (e->getLogId() != id) {
|
|
|
|
++it;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
uid_t uid = e->getUid();
|
|
|
|
|
|
|
|
if (uid == caller_uid) {
|
|
|
|
it = mLogElements.erase(it);
|
2014-09-21 23:22:18 +02:00
|
|
|
stats.subtract(e->getMsgLen(), id, uid, e->getPid());
|
2014-06-12 20:16:16 +02:00
|
|
|
delete e;
|
|
|
|
pruneRows--;
|
|
|
|
if (pruneRows == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LogTimeEntry::unlock();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-02-07 03:11:13 +01:00
|
|
|
// prune by worst offender by uid
|
|
|
|
while (pruneRows > 0) {
|
|
|
|
// recalculate the worst offender on every batched pass
|
|
|
|
uid_t worst = (uid_t) -1;
|
|
|
|
size_t worst_sizes = 0;
|
|
|
|
size_t second_worst_sizes = 0;
|
|
|
|
|
2014-04-07 23:58:08 +02:00
|
|
|
if ((id != LOG_ID_CRASH) && mPrune.worstUidEnabled()) {
|
2014-02-11 21:29:31 +01:00
|
|
|
LidStatistics &l = stats.id(id);
|
2014-04-05 01:35:59 +02:00
|
|
|
l.sort();
|
|
|
|
UidStatisticsCollection::iterator iu = l.begin();
|
|
|
|
if (iu != l.end()) {
|
|
|
|
UidStatistics *u = *iu;
|
|
|
|
worst = u->getUid();
|
|
|
|
worst_sizes = u->sizes();
|
|
|
|
if (++iu != l.end()) {
|
|
|
|
second_worst_sizes = (*iu)->sizes();
|
2014-02-11 21:29:31 +01:00
|
|
|
}
|
2014-02-07 03:11:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool kick = false;
|
|
|
|
for(it = mLogElements.begin(); it != mLogElements.end();) {
|
|
|
|
LogBufferElement *e = *it;
|
|
|
|
|
|
|
|
if (oldest && (oldest->mStart <= e->getMonotonicTime())) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-02-11 21:29:31 +01:00
|
|
|
if (e->getLogId() != id) {
|
|
|
|
++it;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
uid_t uid = e->getUid();
|
|
|
|
|
2014-09-21 23:22:18 +02:00
|
|
|
if ((uid == worst) || mPrune.naughty(e)) { // Worst or BlackListed
|
2014-02-07 03:11:13 +01:00
|
|
|
it = mLogElements.erase(it);
|
|
|
|
unsigned short len = e->getMsgLen();
|
2014-09-21 23:22:18 +02:00
|
|
|
stats.subtract(len, id, uid, e->getPid());
|
2014-02-11 21:29:31 +01:00
|
|
|
delete e;
|
|
|
|
pruneRows--;
|
2014-09-21 23:22:18 +02:00
|
|
|
if (uid == worst) {
|
|
|
|
kick = true;
|
|
|
|
if ((pruneRows == 0) || (worst_sizes < second_worst_sizes)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
worst_sizes -= len;
|
|
|
|
} else if (pruneRows == 0) {
|
2014-02-11 21:29:31 +01:00
|
|
|
break;
|
|
|
|
}
|
2014-04-02 02:19:47 +02:00
|
|
|
} else {
|
2014-02-07 03:11:13 +01:00
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-02 02:19:47 +02:00
|
|
|
if (!kick || !mPrune.worstUidEnabled()) {
|
2014-02-07 03:11:13 +01:00
|
|
|
break; // the following loop will ask bad clients to skip/drop
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-11 21:29:31 +01:00
|
|
|
bool whitelist = false;
|
2014-02-07 03:11:13 +01:00
|
|
|
it = mLogElements.begin();
|
2014-02-26 18:50:16 +01:00
|
|
|
while((pruneRows > 0) && (it != mLogElements.end())) {
|
|
|
|
LogBufferElement *e = *it;
|
|
|
|
if (e->getLogId() == id) {
|
|
|
|
if (oldest && (oldest->mStart <= e->getMonotonicTime())) {
|
2014-04-02 02:19:47 +02:00
|
|
|
if (!whitelist) {
|
2014-02-11 21:29:31 +01:00
|
|
|
if (stats.sizes(id) > (2 * log_buffer_size(id))) {
|
|
|
|
// kick a misbehaving log reader client off the island
|
|
|
|
oldest->release_Locked();
|
|
|
|
} else {
|
2014-12-17 09:53:41 +01:00
|
|
|
oldest->triggerSkip_Locked(id, pruneRows);
|
2014-02-11 21:29:31 +01:00
|
|
|
}
|
2014-02-26 18:50:16 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2014-04-02 02:19:47 +02:00
|
|
|
|
2014-02-11 21:29:31 +01:00
|
|
|
if (mPrune.nice(e)) { // WhiteListed
|
|
|
|
whitelist = true;
|
|
|
|
it++;
|
|
|
|
continue;
|
|
|
|
}
|
2014-04-02 02:19:47 +02:00
|
|
|
|
2014-02-26 18:50:16 +01:00
|
|
|
it = mLogElements.erase(it);
|
2014-02-06 23:48:50 +01:00
|
|
|
stats.subtract(e->getMsgLen(), id, e->getUid(), e->getPid());
|
2014-02-26 18:50:16 +01:00
|
|
|
delete e;
|
|
|
|
pruneRows--;
|
|
|
|
} else {
|
|
|
|
it++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-11 21:29:31 +01:00
|
|
|
if (whitelist && (pruneRows > 0)) {
|
|
|
|
it = mLogElements.begin();
|
|
|
|
while((it != mLogElements.end()) && (pruneRows > 0)) {
|
|
|
|
LogBufferElement *e = *it;
|
|
|
|
if (e->getLogId() == id) {
|
|
|
|
if (oldest && (oldest->mStart <= e->getMonotonicTime())) {
|
|
|
|
if (stats.sizes(id) > (2 * log_buffer_size(id))) {
|
|
|
|
// kick a misbehaving log reader client off the island
|
|
|
|
oldest->release_Locked();
|
|
|
|
} else {
|
2014-12-17 09:53:41 +01:00
|
|
|
oldest->triggerSkip_Locked(id, pruneRows);
|
2014-02-11 21:29:31 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
it = mLogElements.erase(it);
|
|
|
|
stats.subtract(e->getMsgLen(), id, e->getUid(), e->getPid());
|
|
|
|
delete e;
|
|
|
|
pruneRows--;
|
|
|
|
} else {
|
|
|
|
it++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-26 18:50:16 +01:00
|
|
|
LogTimeEntry::unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
// clear all rows of type "id" from the buffer.
|
2014-06-12 20:16:16 +02:00
|
|
|
void LogBuffer::clear(log_id_t id, uid_t uid) {
|
2014-02-26 18:50:16 +01:00
|
|
|
pthread_mutex_lock(&mLogElementsLock);
|
2014-06-12 20:16:16 +02:00
|
|
|
prune(id, ULONG_MAX, uid);
|
2014-02-26 18:50:16 +01:00
|
|
|
pthread_mutex_unlock(&mLogElementsLock);
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the used space associated with "id".
|
|
|
|
unsigned long LogBuffer::getSizeUsed(log_id_t id) {
|
|
|
|
pthread_mutex_lock(&mLogElementsLock);
|
2014-02-06 23:48:50 +01:00
|
|
|
size_t retval = stats.sizes(id);
|
2014-02-26 18:50:16 +01:00
|
|
|
pthread_mutex_unlock(&mLogElementsLock);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2014-02-11 21:29:31 +01:00
|
|
|
// set the total space allocated to "id"
|
|
|
|
int LogBuffer::setSize(log_id_t id, unsigned long size) {
|
|
|
|
// Reasonable limits ...
|
2014-05-10 02:44:18 +02:00
|
|
|
if (!valid_size(size)) {
|
2014-02-11 21:29:31 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
pthread_mutex_lock(&mLogElementsLock);
|
|
|
|
log_buffer_size(id) = size;
|
|
|
|
pthread_mutex_unlock(&mLogElementsLock);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the total space allocated to "id"
|
|
|
|
unsigned long LogBuffer::getSize(log_id_t id) {
|
|
|
|
pthread_mutex_lock(&mLogElementsLock);
|
|
|
|
size_t retval = log_buffer_size(id);
|
|
|
|
pthread_mutex_unlock(&mLogElementsLock);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2014-03-05 16:41:49 +01:00
|
|
|
log_time LogBuffer::flushTo(
|
|
|
|
SocketClient *reader, const log_time start, bool privileged,
|
2014-02-26 18:50:16 +01:00
|
|
|
bool (*filter)(const LogBufferElement *element, void *arg), void *arg) {
|
|
|
|
LogBufferElementCollection::iterator it;
|
|
|
|
log_time max = start;
|
|
|
|
uid_t uid = reader->getUid();
|
|
|
|
|
|
|
|
pthread_mutex_lock(&mLogElementsLock);
|
|
|
|
for (it = mLogElements.begin(); it != mLogElements.end(); ++it) {
|
|
|
|
LogBufferElement *element = *it;
|
|
|
|
|
|
|
|
if (!privileged && (element->getUid() != uid)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (element->getMonotonicTime() <= start) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// NB: calling out to another object with mLogElementsLock held (safe)
|
|
|
|
if (filter && !(*filter)(element, arg)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
pthread_mutex_unlock(&mLogElementsLock);
|
|
|
|
|
|
|
|
// range locking in LastLogTimes looks after us
|
|
|
|
max = element->flushTo(reader);
|
|
|
|
|
|
|
|
if (max == element->FLUSH_ERROR) {
|
|
|
|
return max;
|
|
|
|
}
|
|
|
|
|
|
|
|
pthread_mutex_lock(&mLogElementsLock);
|
|
|
|
}
|
|
|
|
pthread_mutex_unlock(&mLogElementsLock);
|
|
|
|
|
|
|
|
return max;
|
|
|
|
}
|
2014-02-06 23:48:50 +01:00
|
|
|
|
2014-02-11 21:29:31 +01:00
|
|
|
void LogBuffer::formatStatistics(char **strp, uid_t uid, unsigned int logMask) {
|
2014-02-06 23:48:50 +01:00
|
|
|
log_time oldest(CLOCK_MONOTONIC);
|
|
|
|
|
|
|
|
pthread_mutex_lock(&mLogElementsLock);
|
|
|
|
|
|
|
|
// Find oldest element in the log(s)
|
|
|
|
LogBufferElementCollection::iterator it;
|
|
|
|
for (it = mLogElements.begin(); it != mLogElements.end(); ++it) {
|
|
|
|
LogBufferElement *element = *it;
|
|
|
|
|
|
|
|
if ((logMask & (1 << element->getLogId()))) {
|
|
|
|
oldest = element->getMonotonicTime();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-11 21:29:31 +01:00
|
|
|
stats.format(strp, uid, logMask, oldest);
|
2014-02-06 23:48:50 +01:00
|
|
|
|
|
|
|
pthread_mutex_unlock(&mLogElementsLock);
|
|
|
|
}
|