blob: db659780e537d811c4c855d2d74c64c8f2daca55 [file] [log] [blame]
Mark Salyzyn0175b072014-02-26 09:50:16 -08001/*
2 * Copyright (C) 2012-2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Mark Salyzyn671e3432014-05-06 07:34:59 -070017#include <ctype.h>
Mark Salyzyn202e1532015-02-09 08:21:05 -080018#include <errno.h>
Mark Salyzyn0175b072014-02-26 09:50:16 -080019#include <stdio.h>
20#include <string.h>
Mark Salyzyn57a0af92014-05-09 17:44:18 -070021#include <sys/user.h>
Mark Salyzyn0175b072014-02-26 09:50:16 -080022#include <time.h>
23#include <unistd.h>
24
Mark Salyzyn511338d2015-05-19 09:12:30 -070025#include <unordered_map>
26
Mark Salyzyn671e3432014-05-06 07:34:59 -070027#include <cutils/properties.h>
Mark Salyzyn0175b072014-02-26 09:50:16 -080028#include <log/logger.h>
29
30#include "LogBuffer.h"
Mark Salyzynb6bee332015-09-08 08:56:32 -070031#include "LogKlog.h"
Mark Salyzyn671e3432014-05-06 07:34:59 -070032#include "LogReader.h"
Mark Salyzyn0175b072014-02-26 09:50:16 -080033
Mark Salyzyndfa7a072014-02-11 12:29:31 -080034// Default
Mark Salyzyn66607eb2016-01-05 08:49:44 -080035#define LOG_BUFFER_SIZE (256 * 1024) // Tuned with ro.logd.size per-platform
Mark Salyzyndfa7a072014-02-11 12:29:31 -080036#define log_buffer_size(id) mMaxSize[id]
Mark Salyzyn57a0af92014-05-09 17:44:18 -070037#define LOG_BUFFER_MIN_SIZE (64 * 1024UL)
38#define LOG_BUFFER_MAX_SIZE (256 * 1024 * 1024UL)
39
40static bool valid_size(unsigned long value) {
41 if ((value < LOG_BUFFER_MIN_SIZE) || (LOG_BUFFER_MAX_SIZE < value)) {
42 return false;
43 }
44
45 long pages = sysconf(_SC_PHYS_PAGES);
46 if (pages < 1) {
47 return true;
48 }
49
50 long pagesize = sysconf(_SC_PAGESIZE);
51 if (pagesize <= 1) {
52 pagesize = PAGE_SIZE;
53 }
54
55 // maximum memory impact a somewhat arbitrary ~3%
56 pages = (pages + 31) / 32;
57 unsigned long maximum = pages * pagesize;
58
59 if ((maximum < LOG_BUFFER_MIN_SIZE) || (LOG_BUFFER_MAX_SIZE < maximum)) {
60 return true;
61 }
62
63 return value <= maximum;
64}
Mark Salyzyn0175b072014-02-26 09:50:16 -080065
Mark Salyzyn671e3432014-05-06 07:34:59 -070066static unsigned long property_get_size(const char *key) {
67 char property[PROPERTY_VALUE_MAX];
68 property_get(key, property, "");
69
70 char *cp;
71 unsigned long value = strtoul(property, &cp, 10);
72
73 switch(*cp) {
74 case 'm':
75 case 'M':
76 value *= 1024;
77 /* FALLTHRU */
78 case 'k':
79 case 'K':
80 value *= 1024;
81 /* FALLTHRU */
82 case '\0':
83 break;
84
85 default:
86 value = 0;
87 }
88
Mark Salyzyn57a0af92014-05-09 17:44:18 -070089 if (!valid_size(value)) {
90 value = 0;
91 }
92
Mark Salyzyn671e3432014-05-06 07:34:59 -070093 return value;
94}
95
Mark Salyzyn11e55cb2015-03-10 16:45:17 -070096void LogBuffer::init() {
Mark Salyzyn57a0af92014-05-09 17:44:18 -070097 static const char global_tuneable[] = "persist.logd.size"; // Settings App
98 static const char global_default[] = "ro.logd.size"; // BoardConfig.mk
99
100 unsigned long default_size = property_get_size(global_tuneable);
101 if (!default_size) {
102 default_size = property_get_size(global_default);
Mark Salyzyncdda62b2015-12-14 13:07:12 -0800103 if (!default_size) {
Mark Salyzyn9c66a582015-12-14 16:40:12 -0800104 default_size = property_get_bool("ro.config.low_ram",
105 BOOL_DEFAULT_FALSE)
106 ? LOG_BUFFER_MIN_SIZE // 64K
107 : LOG_BUFFER_SIZE; // 256K
Mark Salyzyncdda62b2015-12-14 13:07:12 -0800108 }
Mark Salyzyn57a0af92014-05-09 17:44:18 -0700109 }
Mark Salyzyn671e3432014-05-06 07:34:59 -0700110
Mark Salyzyndfa7a072014-02-11 12:29:31 -0800111 log_id_for_each(i) {
Mark Salyzyn507eb9f2016-01-11 10:58:09 -0800112 mLastSet[i] = false;
113 mLast[i] = mLogElements.begin();
114
Mark Salyzyn671e3432014-05-06 07:34:59 -0700115 char key[PROP_NAME_MAX];
Mark Salyzyn671e3432014-05-06 07:34:59 -0700116
Mark Salyzyn57a0af92014-05-09 17:44:18 -0700117 snprintf(key, sizeof(key), "%s.%s",
118 global_tuneable, android_log_id_to_name(i));
119 unsigned long property_size = property_get_size(key);
120
121 if (!property_size) {
122 snprintf(key, sizeof(key), "%s.%s",
123 global_default, android_log_id_to_name(i));
124 property_size = property_get_size(key);
125 }
126
127 if (!property_size) {
128 property_size = default_size;
129 }
130
131 if (!property_size) {
132 property_size = LOG_BUFFER_SIZE;
133 }
134
135 if (setSize(i, property_size)) {
136 setSize(i, LOG_BUFFER_MIN_SIZE);
137 }
Mark Salyzyndfa7a072014-02-11 12:29:31 -0800138 }
Mark Salyzynb6bee332015-09-08 08:56:32 -0700139 bool lastMonotonic = monotonic;
Mark Salyzynba7a9a02015-12-01 15:57:25 -0800140 monotonic = android_log_clockid() == CLOCK_MONOTONIC;
Mark Salyzynb75cce02015-11-30 11:35:56 -0800141 if (lastMonotonic != monotonic) {
142 //
143 // Fixup all timestamps, may not be 100% accurate, but better than
144 // throwing what we have away when we get 'surprised' by a change.
145 // In-place element fixup so no need to check reader-lock. Entries
146 // should already be in timestamp order, but we could end up with a
147 // few out-of-order entries if new monotonics come in before we
148 // are notified of the reinit change in status. A Typical example would
149 // be:
150 // --------- beginning of system
151 // 10.494082 184 201 D Cryptfs : Just triggered post_fs_data
152 // --------- beginning of kernel
153 // 0.000000 0 0 I : Initializing cgroup subsys
154 // as the act of mounting /data would trigger persist.logd.timestamp to
155 // be corrected. 1/30 corner case YMMV.
156 //
157 pthread_mutex_lock(&mLogElementsLock);
158 LogBufferElementCollection::iterator it = mLogElements.begin();
159 while((it != mLogElements.end())) {
160 LogBufferElement *e = *it;
161 if (monotonic) {
162 if (!android::isMonotonic(e->mRealTime)) {
163 LogKlog::convertRealToMonotonic(e->mRealTime);
164 }
165 } else {
166 if (android::isMonotonic(e->mRealTime)) {
167 LogKlog::convertMonotonicToReal(e->mRealTime);
168 }
169 }
170 ++it;
171 }
172 pthread_mutex_unlock(&mLogElementsLock);
Mark Salyzynb6bee332015-09-08 08:56:32 -0700173 }
174
Mark Salyzynb75cce02015-11-30 11:35:56 -0800175 // We may have been triggered by a SIGHUP. Release any sleeping reader
176 // threads to dump their current content.
Mark Salyzynb6bee332015-09-08 08:56:32 -0700177 //
Mark Salyzynb75cce02015-11-30 11:35:56 -0800178 // NB: this is _not_ performed in the context of a SIGHUP, it is
179 // performed during startup, and in context of reinit administrative thread
180 LogTimeEntry::lock();
181
182 LastLogTimes::iterator times = mTimes.begin();
183 while(times != mTimes.end()) {
184 LogTimeEntry *entry = (*times);
185 if (entry->owned_Locked()) {
186 entry->triggerReader_Locked();
Mark Salyzynb6bee332015-09-08 08:56:32 -0700187 }
Mark Salyzynb75cce02015-11-30 11:35:56 -0800188 times++;
Mark Salyzynb6bee332015-09-08 08:56:32 -0700189 }
Mark Salyzynb75cce02015-11-30 11:35:56 -0800190
191 LogTimeEntry::unlock();
Mark Salyzyn0175b072014-02-26 09:50:16 -0800192}
193
Mark Salyzynb6bee332015-09-08 08:56:32 -0700194LogBuffer::LogBuffer(LastLogTimes *times):
Mark Salyzynba7a9a02015-12-01 15:57:25 -0800195 monotonic(android_log_clockid() == CLOCK_MONOTONIC),
Mark Salyzynb6bee332015-09-08 08:56:32 -0700196 mTimes(*times) {
Mark Salyzyn11e55cb2015-03-10 16:45:17 -0700197 pthread_mutex_init(&mLogElementsLock, NULL);
198
199 init();
200}
201
Mark Salyzyn202e1532015-02-09 08:21:05 -0800202int LogBuffer::log(log_id_t log_id, log_time realtime,
203 uid_t uid, pid_t pid, pid_t tid,
204 const char *msg, unsigned short len) {
Mark Salyzyn0175b072014-02-26 09:50:16 -0800205 if ((log_id >= LOG_ID_MAX) || (log_id < 0)) {
Mark Salyzyn202e1532015-02-09 08:21:05 -0800206 return -EINVAL;
Mark Salyzyn0175b072014-02-26 09:50:16 -0800207 }
Mark Salyzyne59c4692014-10-02 13:07:05 -0700208
Mark Salyzyn0175b072014-02-26 09:50:16 -0800209 LogBufferElement *elem = new LogBufferElement(log_id, realtime,
Mark Salyzynb992d0d2014-03-20 16:09:38 -0700210 uid, pid, tid, msg, len);
Mark Salyzyn0ee8de32016-01-06 21:17:43 +0000211 if (log_id != LOG_ID_SECURITY) {
Mark Salyzyn083b0372015-12-04 10:59:45 -0800212 int prio = ANDROID_LOG_INFO;
Mark Salyzyn0ee8de32016-01-06 21:17:43 +0000213 const char *tag = NULL;
Mark Salyzyn083b0372015-12-04 10:59:45 -0800214 if (log_id == LOG_ID_EVENTS) {
Mark Salyzyn0ee8de32016-01-06 21:17:43 +0000215 tag = android::tagToName(elem->getTag());
Mark Salyzyn083b0372015-12-04 10:59:45 -0800216 } else {
217 prio = *msg;
218 tag = msg + 1;
219 }
Mark Salyzyn0ee8de32016-01-06 21:17:43 +0000220 if (!__android_log_is_loggable(prio, tag, ANDROID_LOG_VERBOSE)) {
Mark Salyzyn083b0372015-12-04 10:59:45 -0800221 // Log traffic received to total
222 pthread_mutex_lock(&mLogElementsLock);
223 stats.add(elem);
224 stats.subtract(elem);
225 pthread_mutex_unlock(&mLogElementsLock);
226 delete elem;
227 return -EACCES;
228 }
Mark Salyzyne59c4692014-10-02 13:07:05 -0700229 }
Mark Salyzyn0175b072014-02-26 09:50:16 -0800230
231 pthread_mutex_lock(&mLogElementsLock);
232
233 // Insert elements in time sorted order if possible
234 // NB: if end is region locked, place element at end of list
235 LogBufferElementCollection::iterator it = mLogElements.end();
236 LogBufferElementCollection::iterator last = it;
Mark Salyzyneae155e2014-10-13 16:49:47 -0700237 while (last != mLogElements.begin()) {
238 --it;
Mark Salyzync03e72c2014-02-18 11:23:53 -0800239 if ((*it)->getRealTime() <= realtime) {
Mark Salyzyn0175b072014-02-26 09:50:16 -0800240 break;
241 }
242 last = it;
243 }
Mark Salyzync03e72c2014-02-18 11:23:53 -0800244
Mark Salyzyn0175b072014-02-26 09:50:16 -0800245 if (last == mLogElements.end()) {
246 mLogElements.push_back(elem);
247 } else {
Mark Salyzynf7c0f752015-03-03 13:39:37 -0800248 uint64_t end = 1;
Mark Salyzyn0175b072014-02-26 09:50:16 -0800249 bool end_set = false;
250 bool end_always = false;
251
252 LogTimeEntry::lock();
253
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700254 LastLogTimes::iterator times = mTimes.begin();
255 while(times != mTimes.end()) {
256 LogTimeEntry *entry = (*times);
Mark Salyzyn0175b072014-02-26 09:50:16 -0800257 if (entry->owned_Locked()) {
258 if (!entry->mNonBlock) {
259 end_always = true;
260 break;
261 }
262 if (!end_set || (end <= entry->mEnd)) {
263 end = entry->mEnd;
264 end_set = true;
265 }
266 }
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700267 times++;
Mark Salyzyn0175b072014-02-26 09:50:16 -0800268 }
269
270 if (end_always
Mark Salyzynf7c0f752015-03-03 13:39:37 -0800271 || (end_set && (end >= (*last)->getSequence()))) {
Mark Salyzyn0175b072014-02-26 09:50:16 -0800272 mLogElements.push_back(elem);
273 } else {
274 mLogElements.insert(last,elem);
275 }
276
277 LogTimeEntry::unlock();
278 }
279
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700280 stats.add(elem);
Mark Salyzyn0175b072014-02-26 09:50:16 -0800281 maybePrune(log_id);
282 pthread_mutex_unlock(&mLogElementsLock);
Mark Salyzyn202e1532015-02-09 08:21:05 -0800283
284 return len;
Mark Salyzyn0175b072014-02-26 09:50:16 -0800285}
286
Mark Salyzynaaad42f2015-09-30 07:40:09 -0700287// Prune at most 10% of the log entries or maxPrune, whichever is less.
Mark Salyzyn0175b072014-02-26 09:50:16 -0800288//
289// mLogElementsLock must be held when this function is called.
290void LogBuffer::maybePrune(log_id_t id) {
Mark Salyzyn34facab2014-02-06 14:48:50 -0800291 size_t sizes = stats.sizes(id);
Mark Salyzyn62ab0fd2015-08-10 10:23:56 -0700292 unsigned long maxSize = log_buffer_size(id);
293 if (sizes > maxSize) {
Mark Salyzynb39ed0c2015-08-19 12:20:36 -0700294 size_t sizeOver = sizes - ((maxSize * 9) / 10);
Mark Salyzyn58b8be82015-09-30 07:40:09 -0700295 size_t elements = stats.realElements(id);
296 size_t minElements = elements / 100;
297 if (minElements < minPrune) {
298 minElements = minPrune;
299 }
Mark Salyzyn62ab0fd2015-08-10 10:23:56 -0700300 unsigned long pruneRows = elements * sizeOver / sizes;
Mark Salyzynaaad42f2015-09-30 07:40:09 -0700301 if (pruneRows < minElements) {
Mark Salyzyn62ab0fd2015-08-10 10:23:56 -0700302 pruneRows = minElements;
Mark Salyzyn740f9b42014-01-13 16:37:51 -0800303 }
Mark Salyzynaaad42f2015-09-30 07:40:09 -0700304 if (pruneRows > maxPrune) {
305 pruneRows = maxPrune;
Mark Salyzynb39ed0c2015-08-19 12:20:36 -0700306 }
Mark Salyzyn740f9b42014-01-13 16:37:51 -0800307 prune(id, pruneRows);
Mark Salyzyn0175b072014-02-26 09:50:16 -0800308 }
309}
310
Mark Salyzyn831aa292015-09-03 16:08:50 -0700311LogBufferElementCollection::iterator LogBuffer::erase(
Mark Salyzynaaad42f2015-09-30 07:40:09 -0700312 LogBufferElementCollection::iterator it, bool coalesce) {
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700313 LogBufferElement *element = *it;
314 log_id_t id = element->getLogId();
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700315
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700316 { // start of scope for uid found iterator
317 LogBufferIteratorMap::iterator found =
318 mLastWorstUid[id].find(element->getUid());
319 if ((found != mLastWorstUid[id].end())
320 && (it == found->second)) {
321 mLastWorstUid[id].erase(found);
322 }
Mark Salyzync892ea32015-08-19 17:06:11 -0700323 }
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700324
325 if (element->getUid() == AID_SYSTEM) {
326 // start of scope for pid found iterator
327 LogBufferPidIteratorMap::iterator found =
328 mLastWorstPidOfSystem[id].find(element->getPid());
329 if ((found != mLastWorstPidOfSystem[id].end())
330 && (it == found->second)) {
331 mLastWorstPidOfSystem[id].erase(found);
332 }
333 }
334
Mark Salyzyn7fd6c5c2016-01-19 16:04:41 -0800335 bool setLast[LOG_ID_MAX];
336 bool doSetLast = false;
337 log_id_for_each(i) {
338 doSetLast |= setLast[i] = mLastSet[i] && (it == mLast[i]);
339 }
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700340 it = mLogElements.erase(it);
Mark Salyzyn7fd6c5c2016-01-19 16:04:41 -0800341 if (doSetLast) {
342 log_id_for_each(i) {
343 if (setLast[i]) {
344 if (it == mLogElements.end()) { // unlikely
345 mLastSet[i] = false;
346 } else {
347 mLast[i] = it;
348 }
349 }
Mark Salyzyn507eb9f2016-01-11 10:58:09 -0800350 }
351 }
Mark Salyzynaaad42f2015-09-30 07:40:09 -0700352 if (coalesce) {
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700353 stats.erase(element);
Mark Salyzynaaad42f2015-09-30 07:40:09 -0700354 } else {
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700355 stats.subtract(element);
Mark Salyzyn831aa292015-09-03 16:08:50 -0700356 }
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700357 delete element;
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700358
359 return it;
360}
361
Mark Salyzyn2c9d9092015-04-17 15:38:04 -0700362// Define a temporary mechanism to report the last LogBufferElement pointer
363// for the specified uid, pid and tid. Used below to help merge-sort when
364// pruning for worst UID.
365class LogBufferElementKey {
366 const union {
367 struct {
368 uint16_t uid;
369 uint16_t pid;
370 uint16_t tid;
371 uint16_t padding;
372 } __packed;
373 uint64_t value;
374 } __packed;
375
376public:
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700377 LogBufferElementKey(uid_t uid, pid_t pid, pid_t tid):
378 uid(uid),
379 pid(pid),
380 tid(tid),
381 padding(0) {
382 }
Chih-Hung Hsieh1cc82ce2016-04-25 13:49:46 -0700383 explicit LogBufferElementKey(uint64_t key):value(key) { }
Mark Salyzyn2c9d9092015-04-17 15:38:04 -0700384
385 uint64_t getKey() { return value; }
386};
387
Mark Salyzyn511338d2015-05-19 09:12:30 -0700388class LogBufferElementLast {
389
390 typedef std::unordered_map<uint64_t, LogBufferElement *> LogBufferElementMap;
391 LogBufferElementMap map;
Mark Salyzyn2c9d9092015-04-17 15:38:04 -0700392
393public:
Mark Salyzyn2c9d9092015-04-17 15:38:04 -0700394
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700395 bool coalesce(LogBufferElement *element, unsigned short dropped) {
396 LogBufferElementKey key(element->getUid(),
397 element->getPid(),
398 element->getTid());
Mark Salyzyn511338d2015-05-19 09:12:30 -0700399 LogBufferElementMap::iterator it = map.find(key.getKey());
400 if (it != map.end()) {
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700401 LogBufferElement *found = it->second;
402 unsigned short moreDropped = found->getDropped();
403 if ((dropped + moreDropped) > USHRT_MAX) {
Mark Salyzyn511338d2015-05-19 09:12:30 -0700404 map.erase(it);
Mark Salyzyn2c9d9092015-04-17 15:38:04 -0700405 } else {
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700406 found->setDropped(dropped + moreDropped);
Mark Salyzyn2c9d9092015-04-17 15:38:04 -0700407 return true;
408 }
409 }
410 return false;
411 }
412
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700413 void add(LogBufferElement *element) {
414 LogBufferElementKey key(element->getUid(),
415 element->getPid(),
416 element->getTid());
417 map[key.getKey()] = element;
Mark Salyzyn2c9d9092015-04-17 15:38:04 -0700418 }
419
Mark Salyzyne06a6e02015-04-20 14:08:56 -0700420 inline void clear() {
Mark Salyzyn511338d2015-05-19 09:12:30 -0700421 map.clear();
Mark Salyzyne06a6e02015-04-20 14:08:56 -0700422 }
423
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700424 void clear(LogBufferElement *element) {
425 uint64_t current = element->getRealTime().nsec()
Mark Salyzyn047cc072015-06-04 13:35:30 -0700426 - (EXPIRE_RATELIMIT * NS_PER_SEC);
Mark Salyzyn511338d2015-05-19 09:12:30 -0700427 for(LogBufferElementMap::iterator it = map.begin(); it != map.end();) {
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700428 LogBufferElement *mapElement = it->second;
429 if ((mapElement->getDropped() >= EXPIRE_THRESHOLD)
430 && (current > mapElement->getRealTime().nsec())) {
Mark Salyzyn511338d2015-05-19 09:12:30 -0700431 it = map.erase(it);
432 } else {
433 ++it;
Mark Salyzyne06a6e02015-04-20 14:08:56 -0700434 }
435 }
436 }
437
Mark Salyzyn2c9d9092015-04-17 15:38:04 -0700438};
439
Mark Salyzyn0175b072014-02-26 09:50:16 -0800440// prune "pruneRows" of type "id" from the buffer.
441//
Mark Salyzyn5bb29722015-09-08 09:12:51 -0700442// This garbage collection task is used to expire log entries. It is called to
443// remove all logs (clear), all UID logs (unprivileged clear), or every
444// 256 or 10% of the total logs (whichever is less) to prune the logs.
445//
446// First there is a prep phase where we discover the reader region lock that
447// acts as a backstop to any pruning activity to stop there and go no further.
448//
449// There are three major pruning loops that follow. All expire from the oldest
450// entries. Since there are multiple log buffers, the Android logging facility
451// will appear to drop entries 'in the middle' when looking at multiple log
452// sources and buffers. This effect is slightly more prominent when we prune
453// the worst offender by logging source. Thus the logs slowly loose content
454// and value as you move back in time. This is preferred since chatty sources
455// invariably move the logs value down faster as less chatty sources would be
456// expired in the noise.
457//
458// The first loop performs blacklisting and worst offender pruning. Falling
459// through when there are no notable worst offenders and have not hit the
460// region lock preventing further worst offender pruning. This loop also looks
461// after managing the chatty log entries and merging to help provide
462// statistical basis for blame. The chatty entries are not a notification of
463// how much logs you may have, but instead represent how much logs you would
464// have had in a virtual log buffer that is extended to cover all the in-memory
465// logs without loss. They last much longer than the represented pruned logs
466// since they get multiplied by the gains in the non-chatty log sources.
467//
468// The second loop get complicated because an algorithm of watermarks and
469// history is maintained to reduce the order and keep processing time
470// down to a minimum at scale. These algorithms can be costly in the face
471// of larger log buffers, or severly limited processing time granted to a
472// background task at lowest priority.
473//
474// This second loop does straight-up expiration from the end of the logs
475// (again, remember for the specified log buffer id) but does some whitelist
476// preservation. Thus whitelist is a Hail Mary low priority, blacklists and
477// spam filtration all take priority. This second loop also checks if a region
478// lock is causing us to buffer too much in the logs to help the reader(s),
479// and will tell the slowest reader thread to skip log entries, and if
480// persistent and hits a further threshold, kill the reader thread.
481//
482// The third thread is optional, and only gets hit if there was a whitelist
483// and more needs to be pruned against the backstop of the region lock.
484//
Mark Salyzyn0175b072014-02-26 09:50:16 -0800485// mLogElementsLock must be held when this function is called.
Mark Salyzyn5bb29722015-09-08 09:12:51 -0700486//
Mark Salyzync5dc9702015-09-16 15:34:00 -0700487bool LogBuffer::prune(log_id_t id, unsigned long pruneRows, uid_t caller_uid) {
Mark Salyzyn0175b072014-02-26 09:50:16 -0800488 LogTimeEntry *oldest = NULL;
Mark Salyzync5dc9702015-09-16 15:34:00 -0700489 bool busy = false;
Mark Salyzyn2b25c662015-09-16 15:34:00 -0700490 bool clearAll = pruneRows == ULONG_MAX;
Mark Salyzyn0175b072014-02-26 09:50:16 -0800491
492 LogTimeEntry::lock();
493
494 // Region locked?
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700495 LastLogTimes::iterator times = mTimes.begin();
496 while(times != mTimes.end()) {
497 LogTimeEntry *entry = (*times);
TraianX Schiauda6495d2014-12-17 10:53:41 +0200498 if (entry->owned_Locked() && entry->isWatching(id)
Mark Salyzynb75cce02015-11-30 11:35:56 -0800499 && (!oldest ||
500 (oldest->mStart > entry->mStart) ||
501 ((oldest->mStart == entry->mStart) &&
502 (entry->mTimeout.tv_sec || entry->mTimeout.tv_nsec)))) {
Mark Salyzyn0175b072014-02-26 09:50:16 -0800503 oldest = entry;
504 }
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700505 times++;
Mark Salyzyn0175b072014-02-26 09:50:16 -0800506 }
507
Mark Salyzyn64d6fe92014-02-06 18:11:13 -0800508 LogBufferElementCollection::iterator it;
509
Mark Salyzyn1a240b42014-06-12 11:16:16 -0700510 if (caller_uid != AID_ROOT) {
Mark Salyzyn2b25c662015-09-16 15:34:00 -0700511 // Only here if clearAll condition (pruneRows == ULONG_MAX)
Mark Salyzyn507eb9f2016-01-11 10:58:09 -0800512 it = mLastSet[id] ? mLast[id] : mLogElements.begin();
513 while (it != mLogElements.end()) {
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700514 LogBufferElement *element = *it;
Mark Salyzyn1a240b42014-06-12 11:16:16 -0700515
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700516 if ((element->getLogId() != id) || (element->getUid() != caller_uid)) {
Mark Salyzyn2b25c662015-09-16 15:34:00 -0700517 ++it;
518 continue;
519 }
520
Mark Salyzyn507eb9f2016-01-11 10:58:09 -0800521 if (!mLastSet[id] || ((*mLast[id])->getLogId() != id)) {
522 mLast[id] = it;
523 mLastSet[id] = true;
524 }
525
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700526 if (oldest && (oldest->mStart <= element->getSequence())) {
Mark Salyzync5dc9702015-09-16 15:34:00 -0700527 busy = true;
Mark Salyzynb75cce02015-11-30 11:35:56 -0800528 if (oldest->mTimeout.tv_sec || oldest->mTimeout.tv_nsec) {
529 oldest->triggerReader_Locked();
530 } else {
531 oldest->triggerSkip_Locked(id, pruneRows);
532 }
Mark Salyzyn1a240b42014-06-12 11:16:16 -0700533 break;
534 }
535
Mark Salyzyn2b25c662015-09-16 15:34:00 -0700536 it = erase(it);
537 pruneRows--;
Mark Salyzyn1a240b42014-06-12 11:16:16 -0700538 }
539 LogTimeEntry::unlock();
Mark Salyzync5dc9702015-09-16 15:34:00 -0700540 return busy;
Mark Salyzyn1a240b42014-06-12 11:16:16 -0700541 }
542
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700543 // prune by worst offenders; by blacklist, UID, and by PID of system UID
Mark Salyzyn083b0372015-12-04 10:59:45 -0800544 bool hasBlacklist = (id != LOG_ID_SECURITY) && mPrune.naughty();
Mark Salyzyn2b25c662015-09-16 15:34:00 -0700545 while (!clearAll && (pruneRows > 0)) {
Mark Salyzyn64d6fe92014-02-06 18:11:13 -0800546 // recalculate the worst offender on every batched pass
547 uid_t worst = (uid_t) -1;
548 size_t worst_sizes = 0;
549 size_t second_worst_sizes = 0;
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700550 pid_t worstPid = 0; // POSIX guarantees PID != 0
Mark Salyzyn64d6fe92014-02-06 18:11:13 -0800551
Mark Salyzynae769232015-03-17 17:17:25 -0700552 if (worstUidEnabledForLogid(id) && mPrune.worstUidEnabled()) {
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700553 { // begin scope for UID sorted list
554 std::unique_ptr<const UidEntry *[]> sorted = stats.sort(
555 AID_ROOT, (pid_t)0, 2, id);
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700556
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700557 if (sorted.get() && sorted[0] && sorted[1]) {
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700558 worst_sizes = sorted[0]->getSizes();
Mark Salyzynd717d802015-04-20 15:36:12 -0700559 // Calculate threshold as 12.5% of available storage
560 size_t threshold = log_buffer_size(id) / 8;
Mark Salyzyn50122692015-10-12 13:45:51 -0700561 if ((worst_sizes > threshold)
562 // Allow time horizon to extend roughly tenfold, assume
563 // average entry length is 100 characters.
564 && (worst_sizes > (10 * sorted[0]->getDropped()))) {
Mark Salyzynd717d802015-04-20 15:36:12 -0700565 worst = sorted[0]->getKey();
566 second_worst_sizes = sorted[1]->getSizes();
567 if (second_worst_sizes < threshold) {
568 second_worst_sizes = threshold;
569 }
570 }
Mark Salyzyndfa7a072014-02-11 12:29:31 -0800571 }
Mark Salyzyn64d6fe92014-02-06 18:11:13 -0800572 }
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700573
574 if ((worst == AID_SYSTEM) && mPrune.worstPidOfSystemEnabled()) {
575 // begin scope of PID sorted list
576 std::unique_ptr<const PidEntry *[]> sorted = stats.sort(
577 worst, (pid_t)0, 2, id, worst);
578 if (sorted.get() && sorted[0] && sorted[1]) {
579 worstPid = sorted[0]->getKey();
580 second_worst_sizes = worst_sizes
581 - sorted[0]->getSizes()
582 + sorted[1]->getSizes();
583 }
584 }
Mark Salyzyn64d6fe92014-02-06 18:11:13 -0800585 }
586
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700587 // skip if we have neither worst nor naughty filters
588 if ((worst == (uid_t) -1) && !hasBlacklist) {
589 break;
590 }
591
Mark Salyzyn64d6fe92014-02-06 18:11:13 -0800592 bool kick = false;
Mark Salyzynab0dcf62015-03-16 12:04:09 -0700593 bool leading = true;
Mark Salyzyn507eb9f2016-01-11 10:58:09 -0800594 it = mLastSet[id] ? mLast[id] : mLogElements.begin();
Mark Salyzyn5bb29722015-09-08 09:12:51 -0700595 // Perform at least one mandatory garbage collection cycle in following
596 // - clear leading chatty tags
Mark Salyzynaaad42f2015-09-30 07:40:09 -0700597 // - coalesce chatty tags
Mark Salyzyn5bb29722015-09-08 09:12:51 -0700598 // - check age-out of preserved logs
599 bool gc = pruneRows <= 1;
600 if (!gc && (worst != (uid_t) -1)) {
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700601 { // begin scope for uid worst found iterator
602 LogBufferIteratorMap::iterator found = mLastWorstUid[id].find(worst);
603 if ((found != mLastWorstUid[id].end())
604 && (found->second != mLogElements.end())) {
605 leading = false;
606 it = found->second;
607 }
608 }
609 if (worstPid) {
610 // begin scope for pid worst found iterator
611 LogBufferPidIteratorMap::iterator found
612 = mLastWorstPidOfSystem[id].find(worstPid);
613 if ((found != mLastWorstPidOfSystem[id].end())
614 && (found->second != mLogElements.end())) {
615 leading = false;
616 it = found->second;
617 }
Mark Salyzync892ea32015-08-19 17:06:11 -0700618 }
619 }
Mark Salyzynccfe8442015-08-24 13:43:27 -0700620 static const timespec too_old = {
621 EXPIRE_HOUR_THRESHOLD * 60 * 60, 0
622 };
623 LogBufferElementCollection::iterator lastt;
624 lastt = mLogElements.end();
625 --lastt;
Mark Salyzyn2c9d9092015-04-17 15:38:04 -0700626 LogBufferElementLast last;
Mark Salyzync892ea32015-08-19 17:06:11 -0700627 while (it != mLogElements.end()) {
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700628 LogBufferElement *element = *it;
Mark Salyzyn64d6fe92014-02-06 18:11:13 -0800629
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700630 if (oldest && (oldest->mStart <= element->getSequence())) {
Mark Salyzync5dc9702015-09-16 15:34:00 -0700631 busy = true;
Mark Salyzynb75cce02015-11-30 11:35:56 -0800632 if (oldest->mTimeout.tv_sec || oldest->mTimeout.tv_nsec) {
633 oldest->triggerReader_Locked();
634 }
Mark Salyzyn64d6fe92014-02-06 18:11:13 -0800635 break;
636 }
637
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700638 if (element->getLogId() != id) {
Mark Salyzyndfa7a072014-02-11 12:29:31 -0800639 ++it;
640 continue;
641 }
642
Mark Salyzyn507eb9f2016-01-11 10:58:09 -0800643 if (leading && (!mLastSet[id] || ((*mLast[id])->getLogId() != id))) {
644 mLast[id] = it;
645 mLastSet[id] = true;
646 }
647
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700648 unsigned short dropped = element->getDropped();
Mark Salyzyndfa7a072014-02-11 12:29:31 -0800649
Mark Salyzynab0dcf62015-03-16 12:04:09 -0700650 // remove any leading drops
651 if (leading && dropped) {
652 it = erase(it);
653 continue;
654 }
655
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700656 if (dropped && last.coalesce(element, dropped)) {
Mark Salyzynaaad42f2015-09-30 07:40:09 -0700657 it = erase(it, true);
Mark Salyzynab0dcf62015-03-16 12:04:09 -0700658 continue;
659 }
660
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700661 if (hasBlacklist && mPrune.naughty(element)) {
662 last.clear(element);
Mark Salyzynab0dcf62015-03-16 12:04:09 -0700663 it = erase(it);
664 if (dropped) {
665 continue;
666 }
667
668 pruneRows--;
669 if (pruneRows == 0) {
670 break;
671 }
672
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700673 if (element->getUid() == worst) {
Mark Salyzynab0dcf62015-03-16 12:04:09 -0700674 kick = true;
675 if (worst_sizes < second_worst_sizes) {
676 break;
677 }
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700678 worst_sizes -= element->getMsgLen();
Mark Salyzynab0dcf62015-03-16 12:04:09 -0700679 }
680 continue;
681 }
682
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700683 if ((element->getRealTime() < ((*lastt)->getRealTime() - too_old))
684 || (element->getRealTime() > (*lastt)->getRealTime())) {
Mark Salyzynccfe8442015-08-24 13:43:27 -0700685 break;
686 }
687
Mark Salyzynab0dcf62015-03-16 12:04:09 -0700688 if (dropped) {
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700689 last.add(element);
690 if (worstPid
691 && ((!gc && (element->getPid() == worstPid))
692 || (mLastWorstPidOfSystem[id].find(element->getPid())
693 == mLastWorstPidOfSystem[id].end()))) {
694 mLastWorstPidOfSystem[id][element->getUid()] = it;
695 }
696 if ((!gc && !worstPid && (element->getUid() == worst))
697 || (mLastWorstUid[id].find(element->getUid())
Mark Salyzyn49afe0d2015-08-24 13:43:27 -0700698 == mLastWorstUid[id].end())) {
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700699 mLastWorstUid[id][element->getUid()] = it;
Mark Salyzyn49afe0d2015-08-24 13:43:27 -0700700 }
Mark Salyzyn64d6fe92014-02-06 18:11:13 -0800701 ++it;
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700702 continue;
Mark Salyzyn64d6fe92014-02-06 18:11:13 -0800703 }
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700704
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700705 if ((element->getUid() != worst)
706 || (worstPid && (element->getPid() != worstPid))) {
Mark Salyzyn59212762015-06-01 09:41:19 -0700707 leading = false;
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700708 last.clear(element);
Mark Salyzynab0dcf62015-03-16 12:04:09 -0700709 ++it;
710 continue;
711 }
712
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700713 pruneRows--;
714 if (pruneRows == 0) {
715 break;
716 }
717
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700718 kick = true;
Mark Salyzynab0dcf62015-03-16 12:04:09 -0700719
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700720 unsigned short len = element->getMsgLen();
Mark Salyzyn5392aac2015-05-22 10:03:31 -0700721
722 // do not create any leading drops
723 if (leading) {
724 it = erase(it);
Mark Salyzynab0dcf62015-03-16 12:04:09 -0700725 } else {
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700726 stats.drop(element);
727 element->setDropped(1);
728 if (last.coalesce(element, 1)) {
Mark Salyzynaaad42f2015-09-30 07:40:09 -0700729 it = erase(it, true);
Mark Salyzyn5392aac2015-05-22 10:03:31 -0700730 } else {
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700731 last.add(element);
732 if (worstPid && (!gc
733 || (mLastWorstPidOfSystem[id].find(worstPid)
734 == mLastWorstPidOfSystem[id].end()))) {
735 mLastWorstPidOfSystem[id][worstPid] = it;
736 }
737 if ((!gc && !worstPid) || (mLastWorstUid[id].find(worst)
Mark Salyzyn5bb29722015-09-08 09:12:51 -0700738 == mLastWorstUid[id].end())) {
739 mLastWorstUid[id][worst] = it;
740 }
Mark Salyzyn5392aac2015-05-22 10:03:31 -0700741 ++it;
742 }
Mark Salyzynab0dcf62015-03-16 12:04:09 -0700743 }
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700744 if (worst_sizes < second_worst_sizes) {
745 break;
746 }
747 worst_sizes -= len;
Mark Salyzyn64d6fe92014-02-06 18:11:13 -0800748 }
Mark Salyzyn2c9d9092015-04-17 15:38:04 -0700749 last.clear();
Mark Salyzyn64d6fe92014-02-06 18:11:13 -0800750
Mark Salyzyn1c950472014-04-01 17:19:47 -0700751 if (!kick || !mPrune.worstUidEnabled()) {
Mark Salyzyn64d6fe92014-02-06 18:11:13 -0800752 break; // the following loop will ask bad clients to skip/drop
753 }
754 }
755
Mark Salyzyndfa7a072014-02-11 12:29:31 -0800756 bool whitelist = false;
Mark Salyzyn083b0372015-12-04 10:59:45 -0800757 bool hasWhitelist = (id != LOG_ID_SECURITY) && mPrune.nice() && !clearAll;
Mark Salyzyn507eb9f2016-01-11 10:58:09 -0800758 it = mLastSet[id] ? mLast[id] : mLogElements.begin();
Mark Salyzyn0175b072014-02-26 09:50:16 -0800759 while((pruneRows > 0) && (it != mLogElements.end())) {
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700760 LogBufferElement *element = *it;
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700761
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700762 if (element->getLogId() != id) {
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700763 it++;
764 continue;
765 }
766
Mark Salyzyn507eb9f2016-01-11 10:58:09 -0800767 if (!mLastSet[id] || ((*mLast[id])->getLogId() != id)) {
768 mLast[id] = it;
769 mLastSet[id] = true;
770 }
771
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700772 if (oldest && (oldest->mStart <= element->getSequence())) {
Mark Salyzync5dc9702015-09-16 15:34:00 -0700773 busy = true;
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700774 if (whitelist) {
Mark Salyzyn0175b072014-02-26 09:50:16 -0800775 break;
776 }
Mark Salyzyn1c950472014-04-01 17:19:47 -0700777
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700778 if (stats.sizes(id) > (2 * log_buffer_size(id))) {
779 // kick a misbehaving log reader client off the island
780 oldest->release_Locked();
Mark Salyzynb75cce02015-11-30 11:35:56 -0800781 } else if (oldest->mTimeout.tv_sec || oldest->mTimeout.tv_nsec) {
782 oldest->triggerReader_Locked();
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700783 } else {
784 oldest->triggerSkip_Locked(id, pruneRows);
Mark Salyzyndfa7a072014-02-11 12:29:31 -0800785 }
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700786 break;
Mark Salyzyn0175b072014-02-26 09:50:16 -0800787 }
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700788
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700789 if (hasWhitelist && !element->getDropped() && mPrune.nice(element)) {
790 // WhiteListed
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700791 whitelist = true;
792 it++;
793 continue;
794 }
795
796 it = erase(it);
797 pruneRows--;
Mark Salyzyn0175b072014-02-26 09:50:16 -0800798 }
799
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700800 // Do not save the whitelist if we are reader range limited
Mark Salyzyndfa7a072014-02-11 12:29:31 -0800801 if (whitelist && (pruneRows > 0)) {
Mark Salyzyn507eb9f2016-01-11 10:58:09 -0800802 it = mLastSet[id] ? mLast[id] : mLogElements.begin();
Mark Salyzyndfa7a072014-02-11 12:29:31 -0800803 while((it != mLogElements.end()) && (pruneRows > 0)) {
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700804 LogBufferElement *element = *it;
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700805
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700806 if (element->getLogId() != id) {
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700807 ++it;
808 continue;
Mark Salyzyndfa7a072014-02-11 12:29:31 -0800809 }
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700810
Mark Salyzyn507eb9f2016-01-11 10:58:09 -0800811 if (!mLastSet[id] || ((*mLast[id])->getLogId() != id)) {
812 mLast[id] = it;
813 mLastSet[id] = true;
814 }
815
Mark Salyzynbec3c3d2015-08-28 08:02:59 -0700816 if (oldest && (oldest->mStart <= element->getSequence())) {
Mark Salyzync5dc9702015-09-16 15:34:00 -0700817 busy = true;
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700818 if (stats.sizes(id) > (2 * log_buffer_size(id))) {
819 // kick a misbehaving log reader client off the island
820 oldest->release_Locked();
Mark Salyzynb75cce02015-11-30 11:35:56 -0800821 } else if (oldest->mTimeout.tv_sec || oldest->mTimeout.tv_nsec) {
822 oldest->triggerReader_Locked();
Mark Salyzyn97c1c2b2015-03-10 13:51:35 -0700823 } else {
824 oldest->triggerSkip_Locked(id, pruneRows);
825 }
826 break;
827 }
828
829 it = erase(it);
830 pruneRows--;
Mark Salyzyndfa7a072014-02-11 12:29:31 -0800831 }
832 }
Mark Salyzyndfa7a072014-02-11 12:29:31 -0800833
Mark Salyzyn0175b072014-02-26 09:50:16 -0800834 LogTimeEntry::unlock();
Mark Salyzync5dc9702015-09-16 15:34:00 -0700835
836 return (pruneRows > 0) && busy;
Mark Salyzyn0175b072014-02-26 09:50:16 -0800837}
838
839// clear all rows of type "id" from the buffer.
Mark Salyzync5dc9702015-09-16 15:34:00 -0700840bool LogBuffer::clear(log_id_t id, uid_t uid) {
841 bool busy = true;
842 // If it takes more than 4 tries (seconds) to clear, then kill reader(s)
843 for (int retry = 4;;) {
844 if (retry == 1) { // last pass
845 // Check if it is still busy after the sleep, we say prune
846 // one entry, not another clear run, so we are looking for
847 // the quick side effect of the return value to tell us if
848 // we have a _blocked_ reader.
849 pthread_mutex_lock(&mLogElementsLock);
850 busy = prune(id, 1, uid);
851 pthread_mutex_unlock(&mLogElementsLock);
852 // It is still busy, blocked reader(s), lets kill them all!
853 // otherwise, lets be a good citizen and preserve the slow
854 // readers and let the clear run (below) deal with determining
855 // if we are still blocked and return an error code to caller.
856 if (busy) {
857 LogTimeEntry::lock();
858 LastLogTimes::iterator times = mTimes.begin();
859 while (times != mTimes.end()) {
860 LogTimeEntry *entry = (*times);
861 // Killer punch
862 if (entry->owned_Locked() && entry->isWatching(id)) {
863 entry->release_Locked();
864 }
865 times++;
866 }
867 LogTimeEntry::unlock();
868 }
869 }
870 pthread_mutex_lock(&mLogElementsLock);
871 busy = prune(id, ULONG_MAX, uid);
872 pthread_mutex_unlock(&mLogElementsLock);
873 if (!busy || !--retry) {
874 break;
875 }
876 sleep (1); // Let reader(s) catch up after notification
877 }
878 return busy;
Mark Salyzyn0175b072014-02-26 09:50:16 -0800879}
880
881// get the used space associated with "id".
882unsigned long LogBuffer::getSizeUsed(log_id_t id) {
883 pthread_mutex_lock(&mLogElementsLock);
Mark Salyzyn34facab2014-02-06 14:48:50 -0800884 size_t retval = stats.sizes(id);
Mark Salyzyn0175b072014-02-26 09:50:16 -0800885 pthread_mutex_unlock(&mLogElementsLock);
886 return retval;
887}
888
Mark Salyzyndfa7a072014-02-11 12:29:31 -0800889// set the total space allocated to "id"
890int LogBuffer::setSize(log_id_t id, unsigned long size) {
891 // Reasonable limits ...
Mark Salyzyn57a0af92014-05-09 17:44:18 -0700892 if (!valid_size(size)) {
Mark Salyzyndfa7a072014-02-11 12:29:31 -0800893 return -1;
894 }
895 pthread_mutex_lock(&mLogElementsLock);
896 log_buffer_size(id) = size;
897 pthread_mutex_unlock(&mLogElementsLock);
898 return 0;
899}
900
901// get the total space allocated to "id"
902unsigned long LogBuffer::getSize(log_id_t id) {
903 pthread_mutex_lock(&mLogElementsLock);
904 size_t retval = log_buffer_size(id);
905 pthread_mutex_unlock(&mLogElementsLock);
906 return retval;
907}
908
Mark Salyzynf7c0f752015-03-03 13:39:37 -0800909uint64_t LogBuffer::flushTo(
Mark Salyzyn8fa88962016-01-26 14:32:35 -0800910 SocketClient *reader, const uint64_t start,
911 bool privileged, bool security,
Mark Salyzynf7c0f752015-03-03 13:39:37 -0800912 int (*filter)(const LogBufferElement *element, void *arg), void *arg) {
Mark Salyzyn0175b072014-02-26 09:50:16 -0800913 LogBufferElementCollection::iterator it;
Mark Salyzynf7c0f752015-03-03 13:39:37 -0800914 uint64_t max = start;
Mark Salyzyn0175b072014-02-26 09:50:16 -0800915 uid_t uid = reader->getUid();
916
917 pthread_mutex_lock(&mLogElementsLock);
Dragoslav Mitrinovic8e8e8db2015-01-15 09:29:43 -0600918
Mark Salyzynf7c0f752015-03-03 13:39:37 -0800919 if (start <= 1) {
Dragoslav Mitrinovic8e8e8db2015-01-15 09:29:43 -0600920 // client wants to start from the beginning
921 it = mLogElements.begin();
922 } else {
923 // Client wants to start from some specified time. Chances are
924 // we are better off starting from the end of the time sorted list.
925 for (it = mLogElements.end(); it != mLogElements.begin(); /* do nothing */) {
926 --it;
927 LogBufferElement *element = *it;
Mark Salyzynf7c0f752015-03-03 13:39:37 -0800928 if (element->getSequence() <= start) {
Dragoslav Mitrinovic8e8e8db2015-01-15 09:29:43 -0600929 it++;
930 break;
931 }
932 }
933 }
934
935 for (; it != mLogElements.end(); ++it) {
Mark Salyzyn0175b072014-02-26 09:50:16 -0800936 LogBufferElement *element = *it;
937
938 if (!privileged && (element->getUid() != uid)) {
939 continue;
940 }
941
Mark Salyzyn8fa88962016-01-26 14:32:35 -0800942 if (!security && (element->getLogId() == LOG_ID_SECURITY)) {
943 continue;
944 }
945
Mark Salyzynf7c0f752015-03-03 13:39:37 -0800946 if (element->getSequence() <= start) {
Mark Salyzyn0175b072014-02-26 09:50:16 -0800947 continue;
948 }
949
950 // NB: calling out to another object with mLogElementsLock held (safe)
Mark Salyzynf7c0f752015-03-03 13:39:37 -0800951 if (filter) {
952 int ret = (*filter)(element, arg);
953 if (ret == false) {
954 continue;
955 }
956 if (ret != true) {
957 break;
958 }
Mark Salyzyn0175b072014-02-26 09:50:16 -0800959 }
960
961 pthread_mutex_unlock(&mLogElementsLock);
962
963 // range locking in LastLogTimes looks after us
Mark Salyzyn7b873652015-12-03 15:38:35 -0800964 max = element->flushTo(reader, this, privileged);
Mark Salyzyn0175b072014-02-26 09:50:16 -0800965
966 if (max == element->FLUSH_ERROR) {
967 return max;
968 }
969
970 pthread_mutex_lock(&mLogElementsLock);
971 }
972 pthread_mutex_unlock(&mLogElementsLock);
973
974 return max;
975}
Mark Salyzyn34facab2014-02-06 14:48:50 -0800976
Mark Salyzynee3b8382015-12-17 09:58:43 -0800977std::string LogBuffer::formatStatistics(uid_t uid, pid_t pid,
978 unsigned int logMask) {
Mark Salyzyn34facab2014-02-06 14:48:50 -0800979 pthread_mutex_lock(&mLogElementsLock);
980
Mark Salyzynee3b8382015-12-17 09:58:43 -0800981 std::string ret = stats.format(uid, pid, logMask);
Mark Salyzyn34facab2014-02-06 14:48:50 -0800982
983 pthread_mutex_unlock(&mLogElementsLock);
Mark Salyzyn73160ac2015-08-20 10:01:44 -0700984
985 return ret;
Mark Salyzyn34facab2014-02-06 14:48:50 -0800986}