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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LOGD_LOG_BUFFER_H__
|
|
|
|
#define _LOGD_LOG_BUFFER_H__
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2015-08-19 22:41:51 +02:00
|
|
|
#include <list>
|
2015-08-20 19:01:44 +02:00
|
|
|
#include <string>
|
2015-08-19 22:41:51 +02:00
|
|
|
|
2016-09-29 00:54:45 +02:00
|
|
|
#include <android/log.h>
|
2014-06-12 20:16:16 +02:00
|
|
|
#include <private/android_filesystem_config.h>
|
2016-09-29 00:54:45 +02:00
|
|
|
#include <sysutils/SocketClient.h>
|
2014-06-12 20:16:16 +02:00
|
|
|
|
2014-02-26 18:50:16 +01:00
|
|
|
#include "LogBufferElement.h"
|
2017-04-28 01:49:09 +02:00
|
|
|
#include "LogBufferInterface.h"
|
2017-03-10 23:31:54 +01:00
|
|
|
#include "LogStatistics.h"
|
2016-09-12 23:51:54 +02:00
|
|
|
#include "LogTags.h"
|
2014-02-26 18:50:16 +01:00
|
|
|
#include "LogTimes.h"
|
2014-02-11 21:29:31 +01:00
|
|
|
#include "LogWhiteBlackList.h"
|
2014-02-26 18:50:16 +01:00
|
|
|
|
2015-09-08 17:56:32 +02:00
|
|
|
//
|
2015-12-29 00:33:01 +01:00
|
|
|
// We are either in 1970ish (MONOTONIC) or 2016+ish (REALTIME) so to
|
|
|
|
// differentiate without prejudice, we use 1972 to delineate, earlier
|
|
|
|
// is likely monotonic, later is real. Otherwise we start using a
|
|
|
|
// dividing line between monotonic and realtime if more than a minute
|
|
|
|
// difference between them.
|
2015-09-08 17:56:32 +02:00
|
|
|
//
|
|
|
|
namespace android {
|
|
|
|
|
2017-03-10 23:31:54 +01:00
|
|
|
static bool isMonotonic(const log_time& mono) {
|
2015-12-29 00:33:01 +01:00
|
|
|
static const uint32_t EPOCH_PLUS_2_YEARS = 2 * 24 * 60 * 60 * 1461 / 4;
|
|
|
|
static const uint32_t EPOCH_PLUS_MINUTE = 60;
|
2015-09-08 17:56:32 +02:00
|
|
|
|
2015-12-29 00:33:01 +01:00
|
|
|
if (mono.tv_sec >= EPOCH_PLUS_2_YEARS) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
log_time now(CLOCK_REALTIME);
|
|
|
|
|
|
|
|
/* Timezone and ntp time setup? */
|
|
|
|
if (now.tv_sec >= EPOCH_PLUS_2_YEARS) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* no way to differentiate realtime from monotonic time */
|
|
|
|
if (now.tv_sec < EPOCH_PLUS_MINUTE) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
log_time cpu(CLOCK_MONOTONIC);
|
|
|
|
/* too close to call to differentiate monotonic times from realtime */
|
|
|
|
if ((cpu.tv_sec + EPOCH_PLUS_MINUTE) >= now.tv_sec) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* dividing line half way between monotonic and realtime */
|
|
|
|
return mono.tv_sec < ((cpu.tv_sec + now.tv_sec) / 2);
|
2015-09-08 17:56:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-10 23:31:54 +01:00
|
|
|
typedef std::list<LogBufferElement*> LogBufferElementCollection;
|
2014-02-26 18:50:16 +01:00
|
|
|
|
2017-04-28 01:49:09 +02:00
|
|
|
class LogBuffer : public LogBufferInterface {
|
2014-02-26 18:50:16 +01:00
|
|
|
LogBufferElementCollection mLogElements;
|
2017-04-18 23:09:45 +02:00
|
|
|
pthread_rwlock_t mLogElementsLock;
|
2014-02-26 18:50:16 +01:00
|
|
|
|
2014-02-06 23:48:50 +01:00
|
|
|
LogStatistics stats;
|
2014-02-20 02:18:31 +01:00
|
|
|
|
2014-02-11 21:29:31 +01:00
|
|
|
PruneList mPrune;
|
2016-01-11 19:58:09 +01:00
|
|
|
// watermark for last per log id
|
|
|
|
LogBufferElementCollection::iterator mLast[LOG_ID_MAX];
|
|
|
|
bool mLastSet[LOG_ID_MAX];
|
2015-08-20 02:06:11 +02:00
|
|
|
// watermark of any worst/chatty uid processing
|
2017-03-10 23:31:54 +01:00
|
|
|
typedef std::unordered_map<uid_t, LogBufferElementCollection::iterator>
|
|
|
|
LogBufferIteratorMap;
|
2016-07-15 00:34:30 +02:00
|
|
|
LogBufferIteratorMap mLastWorst[LOG_ID_MAX];
|
2015-08-28 17:02:59 +02:00
|
|
|
// watermark of any worst/chatty pid of system processing
|
2017-03-10 23:31:54 +01:00
|
|
|
typedef std::unordered_map<pid_t, LogBufferElementCollection::iterator>
|
|
|
|
LogBufferPidIteratorMap;
|
2015-08-28 17:02:59 +02:00
|
|
|
LogBufferPidIteratorMap mLastWorstPidOfSystem[LOG_ID_MAX];
|
2014-02-11 21:29:31 +01:00
|
|
|
|
|
|
|
unsigned long mMaxSize[LOG_ID_MAX];
|
|
|
|
|
2015-09-08 17:56:32 +02:00
|
|
|
bool monotonic;
|
|
|
|
|
2016-09-12 23:51:54 +02:00
|
|
|
LogTags tags;
|
|
|
|
|
2016-12-13 19:31:29 +01:00
|
|
|
LogBufferElement* lastLoggedElements[LOG_ID_MAX];
|
|
|
|
LogBufferElement* droppedElements[LOG_ID_MAX];
|
|
|
|
void log(LogBufferElement* elem);
|
|
|
|
|
2017-03-10 23:31:54 +01:00
|
|
|
public:
|
|
|
|
LastLogTimes& mTimes;
|
2014-02-26 18:50:16 +01:00
|
|
|
|
2017-03-10 23:31:54 +01:00
|
|
|
explicit LogBuffer(LastLogTimes* times);
|
2017-04-28 01:49:09 +02:00
|
|
|
~LogBuffer() override;
|
2015-03-11 00:45:17 +01:00
|
|
|
void init();
|
2017-03-10 23:31:54 +01:00
|
|
|
bool isMonotonic() {
|
|
|
|
return monotonic;
|
|
|
|
}
|
2014-02-26 18:50:16 +01:00
|
|
|
|
2017-03-10 23:31:54 +01:00
|
|
|
int log(log_id_t log_id, log_time realtime, uid_t uid, pid_t pid, pid_t tid,
|
2018-08-13 23:22:56 +02:00
|
|
|
const char* msg, uint16_t len) override;
|
2017-03-31 19:48:39 +02:00
|
|
|
// lastTid is an optional context to help detect if the last previous
|
|
|
|
// valid message was from the same source so we can differentiate chatty
|
|
|
|
// filter types (identical or expired)
|
2017-03-10 17:44:14 +01:00
|
|
|
log_time flushTo(SocketClient* writer, const log_time& start,
|
2017-03-31 19:48:39 +02:00
|
|
|
pid_t* lastTid, // &lastTid[LOG_ID_MAX] or nullptr
|
2016-01-26 23:32:35 +01:00
|
|
|
bool privileged, bool security,
|
2017-03-10 23:31:54 +01:00
|
|
|
int (*filter)(const LogBufferElement* element,
|
2017-03-31 19:48:39 +02:00
|
|
|
void* arg) = nullptr,
|
|
|
|
void* arg = nullptr);
|
2014-02-26 18:50:16 +01:00
|
|
|
|
2015-09-17 00:34:00 +02:00
|
|
|
bool clear(log_id_t id, uid_t uid = AID_ROOT);
|
2014-02-26 18:50:16 +01:00
|
|
|
unsigned long getSize(log_id_t id);
|
2014-02-11 21:29:31 +01:00
|
|
|
int setSize(log_id_t id, unsigned long size);
|
2014-02-26 18:50:16 +01:00
|
|
|
unsigned long getSizeUsed(log_id_t id);
|
2016-09-28 17:38:21 +02:00
|
|
|
|
2015-12-17 18:58:43 +01:00
|
|
|
std::string formatStatistics(uid_t uid, pid_t pid, unsigned int logMask);
|
2014-02-11 21:29:31 +01:00
|
|
|
|
2014-09-21 23:22:18 +02:00
|
|
|
void enableStatistics() {
|
|
|
|
stats.enableStatistics();
|
|
|
|
}
|
|
|
|
|
2017-03-10 23:31:54 +01:00
|
|
|
int initPrune(const char* cp) {
|
|
|
|
return mPrune.init(cp);
|
|
|
|
}
|
|
|
|
std::string formatPrune() {
|
|
|
|
return mPrune.format();
|
|
|
|
}
|
2014-02-26 18:50:16 +01:00
|
|
|
|
2017-03-10 23:31:54 +01:00
|
|
|
std::string formatGetEventTag(uid_t uid, const char* name,
|
|
|
|
const char* format) {
|
2016-09-12 23:51:54 +02:00
|
|
|
return tags.formatGetEventTag(uid, name, format);
|
|
|
|
}
|
2017-02-22 01:19:08 +01:00
|
|
|
std::string formatEntry(uint32_t tag, uid_t uid) {
|
|
|
|
return tags.formatEntry(tag, uid);
|
|
|
|
}
|
2017-03-10 23:31:54 +01:00
|
|
|
const char* tagToName(uint32_t tag) {
|
|
|
|
return tags.tagToName(tag);
|
|
|
|
}
|
2016-09-12 23:51:54 +02:00
|
|
|
|
2017-04-18 23:09:45 +02:00
|
|
|
// helper must be protected directly or implicitly by wrlock()/unlock()
|
2017-03-10 23:31:54 +01:00
|
|
|
const char* pidToName(pid_t pid) {
|
|
|
|
return stats.pidToName(pid);
|
|
|
|
}
|
2017-05-04 22:54:46 +02:00
|
|
|
virtual uid_t pidToUid(pid_t pid) override {
|
2017-03-10 23:31:54 +01:00
|
|
|
return stats.pidToUid(pid);
|
|
|
|
}
|
2017-05-04 22:54:46 +02:00
|
|
|
virtual pid_t tidToPid(pid_t tid) override {
|
|
|
|
return stats.tidToPid(tid);
|
|
|
|
}
|
2017-03-10 23:31:54 +01:00
|
|
|
const char* uidToName(uid_t uid) {
|
|
|
|
return stats.uidToName(uid);
|
|
|
|
}
|
2017-04-18 23:09:45 +02:00
|
|
|
void wrlock() {
|
|
|
|
pthread_rwlock_wrlock(&mLogElementsLock);
|
|
|
|
}
|
|
|
|
void rdlock() {
|
|
|
|
pthread_rwlock_rdlock(&mLogElementsLock);
|
2017-03-10 23:31:54 +01:00
|
|
|
}
|
|
|
|
void unlock() {
|
2017-04-18 23:09:45 +02:00
|
|
|
pthread_rwlock_unlock(&mLogElementsLock);
|
2017-03-10 23:31:54 +01:00
|
|
|
}
|
2015-09-30 16:40:09 +02:00
|
|
|
|
2017-03-10 23:31:54 +01:00
|
|
|
private:
|
2015-09-30 16:40:09 +02:00
|
|
|
static constexpr size_t minPrune = 4;
|
2015-09-30 16:40:09 +02:00
|
|
|
static constexpr size_t maxPrune = 256;
|
2017-04-17 21:46:12 +02:00
|
|
|
static const log_time pruneMargin;
|
2015-09-30 16:40:09 +02:00
|
|
|
|
2014-02-26 18:50:16 +01:00
|
|
|
void maybePrune(log_id_t id);
|
2017-05-11 22:28:33 +02:00
|
|
|
bool isBusy(log_time watermark);
|
|
|
|
void kickMe(LogTimeEntry* me, log_id_t id, unsigned long pruneRows);
|
|
|
|
|
2015-09-17 00:34:00 +02:00
|
|
|
bool prune(log_id_t id, unsigned long pruneRows, uid_t uid = AID_ROOT);
|
2015-09-04 01:08:50 +02:00
|
|
|
LogBufferElementCollection::iterator erase(
|
2015-09-30 16:40:09 +02:00
|
|
|
LogBufferElementCollection::iterator it, bool coalesce = false);
|
2014-02-26 18:50:16 +01:00
|
|
|
};
|
|
|
|
|
2017-03-10 23:31:54 +01:00
|
|
|
#endif // _LOGD_LOG_BUFFER_H__
|