blob: cdf5d08fb8a08d8793b7418a1957d9bceebe9cae [file] [log] [blame]
Mark Salyzyn12bac902014-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 Salyzyn4e756fb2014-05-06 07:34:59 -070017#include <ctype.h>
Mark Salyzyn88fe7cc2015-02-09 08:21:05 -080018#include <errno.h>
Mark Salyzyn12bac902014-02-26 09:50:16 -080019#include <stdio.h>
20#include <string.h>
Mark Salyzyn7b85c592014-05-09 17:44:18 -070021#include <sys/user.h>
Mark Salyzyn12bac902014-02-26 09:50:16 -080022#include <time.h>
23#include <unistd.h>
24
Mark Salyzyn6a404192015-05-19 09:12:30 -070025#include <unordered_map>
26
Mark Salyzyn4e756fb2014-05-06 07:34:59 -070027#include <cutils/properties.h>
Mark Salyzyn12bac902014-02-26 09:50:16 -080028#include <log/logger.h>
29
30#include "LogBuffer.h"
Mark Salyzyn0e2fe422015-09-08 08:56:32 -070031#include "LogKlog.h"
Mark Salyzyn4e756fb2014-05-06 07:34:59 -070032#include "LogReader.h"
Mark Salyzyn12bac902014-02-26 09:50:16 -080033
Mark Salyzync89839a2014-02-11 12:29:31 -080034// Default
Mark Salyzynec207762016-01-05 08:49:44 -080035#define LOG_BUFFER_SIZE (256 * 1024) // Tuned with ro.logd.size per-platform
Mark Salyzync89839a2014-02-11 12:29:31 -080036#define log_buffer_size(id) mMaxSize[id]
Mark Salyzyn7b85c592014-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 Salyzyn12bac902014-02-26 09:50:16 -080065
Mark Salyzyn4e756fb2014-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 Salyzyn7b85c592014-05-09 17:44:18 -070089 if (!valid_size(value)) {
90 value = 0;
91 }
92
Mark Salyzyn4e756fb2014-05-06 07:34:59 -070093 return value;
94}
95
Mark Salyzyn3fe25932015-03-10 16:45:17 -070096void LogBuffer::init() {
Mark Salyzyn7b85c592014-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 Salyzynb0e83862015-12-14 13:07:12 -0800103 if (!default_size) {
Mark Salyzyn8510ef22015-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 Salyzynb0e83862015-12-14 13:07:12 -0800108 }
Mark Salyzyn7b85c592014-05-09 17:44:18 -0700109 }
Mark Salyzyn4e756fb2014-05-06 07:34:59 -0700110
Mark Salyzync89839a2014-02-11 12:29:31 -0800111 log_id_for_each(i) {
Mark Salyzynb7dd96e2016-01-11 10:58:09 -0800112 mLastSet[i] = false;
113 mLast[i] = mLogElements.begin();
114
Mark Salyzyn4e756fb2014-05-06 07:34:59 -0700115 char key[PROP_NAME_MAX];
Mark Salyzyn4e756fb2014-05-06 07:34:59 -0700116
Mark Salyzyn7b85c592014-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 Salyzync89839a2014-02-11 12:29:31 -0800138 }
Mark Salyzyn0e2fe422015-09-08 08:56:32 -0700139 bool lastMonotonic = monotonic;
Mark Salyzyn11a3e702015-12-01 15:57:25 -0800140 monotonic = android_log_clockid() == CLOCK_MONOTONIC;
Mark Salyzync959c642015-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 Salyzyn0e2fe422015-09-08 08:56:32 -0700173 }
174
Mark Salyzync959c642015-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 Salyzyn0e2fe422015-09-08 08:56:32 -0700177 //
Mark Salyzync959c642015-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 Salyzyn0e2fe422015-09-08 08:56:32 -0700187 }
Mark Salyzync959c642015-11-30 11:35:56 -0800188 times++;
Mark Salyzyn0e2fe422015-09-08 08:56:32 -0700189 }
Mark Salyzync959c642015-11-30 11:35:56 -0800190
191 LogTimeEntry::unlock();
Mark Salyzyn12bac902014-02-26 09:50:16 -0800192}
193
Mark Salyzyn0e2fe422015-09-08 08:56:32 -0700194LogBuffer::LogBuffer(LastLogTimes *times):
Mark Salyzyn11a3e702015-12-01 15:57:25 -0800195 monotonic(android_log_clockid() == CLOCK_MONOTONIC),
Mark Salyzyn0e2fe422015-09-08 08:56:32 -0700196 mTimes(*times) {
Mark Salyzyn3fe25932015-03-10 16:45:17 -0700197 pthread_mutex_init(&mLogElementsLock, NULL);
198
199 init();
200}
201
Mark Salyzyn88fe7cc2015-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 Salyzyn12bac902014-02-26 09:50:16 -0800205 if ((log_id >= LOG_ID_MAX) || (log_id < 0)) {
Mark Salyzyn88fe7cc2015-02-09 08:21:05 -0800206 return -EINVAL;
Mark Salyzyn12bac902014-02-26 09:50:16 -0800207 }
Mark Salyzyn0dcfae62014-10-02 13:07:05 -0700208
Mark Salyzyn12bac902014-02-26 09:50:16 -0800209 LogBufferElement *elem = new LogBufferElement(log_id, realtime,
Mark Salyzyn3661dd02014-03-20 16:09:38 -0700210 uid, pid, tid, msg, len);
Mark Salyzync55cc112016-01-06 21:17:43 +0000211 if (log_id != LOG_ID_SECURITY) {
Mark Salyzync9690862015-12-04 10:59:45 -0800212 int prio = ANDROID_LOG_INFO;
Mark Salyzync55cc112016-01-06 21:17:43 +0000213 const char *tag = NULL;
Mark Salyzync9690862015-12-04 10:59:45 -0800214 if (log_id == LOG_ID_EVENTS) {
Mark Salyzync55cc112016-01-06 21:17:43 +0000215 tag = android::tagToName(elem->getTag());
Mark Salyzync9690862015-12-04 10:59:45 -0800216 } else {
217 prio = *msg;
218 tag = msg + 1;
219 }
Mark Salyzync55cc112016-01-06 21:17:43 +0000220 if (!__android_log_is_loggable(prio, tag, ANDROID_LOG_VERBOSE)) {
Mark Salyzync9690862015-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 Salyzyn0dcfae62014-10-02 13:07:05 -0700229 }
Mark Salyzyn12bac902014-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 Salyzyna222a772014-10-13 16:49:47 -0700237 while (last != mLogElements.begin()) {
238 --it;
Mark Salyzyn5b7a8d82014-02-18 11:23:53 -0800239 if ((*it)->getRealTime() <= realtime) {
Mark Salyzyn12bac902014-02-26 09:50:16 -0800240 break;
241 }
242 last = it;
243 }
Mark Salyzyn5b7a8d82014-02-18 11:23:53 -0800244
Mark Salyzyn12bac902014-02-26 09:50:16 -0800245 if (last == mLogElements.end()) {
246 mLogElements.push_back(elem);
247 } else {
Mark Salyzyn0aaf6cd2015-03-03 13:39:37 -0800248 uint64_t end = 1;
Mark Salyzyn12bac902014-02-26 09:50:16 -0800249 bool end_set = false;
250 bool end_always = false;
251
252 LogTimeEntry::lock();
253
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700254 LastLogTimes::iterator times = mTimes.begin();
255 while(times != mTimes.end()) {
256 LogTimeEntry *entry = (*times);
Mark Salyzyn12bac902014-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 Salyzynedcbdfa2015-08-28 08:02:59 -0700267 times++;
Mark Salyzyn12bac902014-02-26 09:50:16 -0800268 }
269
270 if (end_always
Mark Salyzyn0aaf6cd2015-03-03 13:39:37 -0800271 || (end_set && (end >= (*last)->getSequence()))) {
Mark Salyzyn12bac902014-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 Salyzyn9cf5d402015-03-10 13:51:35 -0700280 stats.add(elem);
Mark Salyzyn12bac902014-02-26 09:50:16 -0800281 maybePrune(log_id);
282 pthread_mutex_unlock(&mLogElementsLock);
Mark Salyzyn88fe7cc2015-02-09 08:21:05 -0800283
284 return len;
Mark Salyzyn12bac902014-02-26 09:50:16 -0800285}
286
Mark Salyzyn5c5189a2015-09-30 07:40:09 -0700287// Prune at most 10% of the log entries or maxPrune, whichever is less.
Mark Salyzyn12bac902014-02-26 09:50:16 -0800288//
289// mLogElementsLock must be held when this function is called.
290void LogBuffer::maybePrune(log_id_t id) {
Mark Salyzynd774bce2014-02-06 14:48:50 -0800291 size_t sizes = stats.sizes(id);
Mark Salyzyn5f190312015-08-10 10:23:56 -0700292 unsigned long maxSize = log_buffer_size(id);
293 if (sizes > maxSize) {
Mark Salyzyn185d8da2015-08-19 12:20:36 -0700294 size_t sizeOver = sizes - ((maxSize * 9) / 10);
Mark Salyzyn49858cc2015-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 Salyzyn5f190312015-08-10 10:23:56 -0700300 unsigned long pruneRows = elements * sizeOver / sizes;
Mark Salyzyn5c5189a2015-09-30 07:40:09 -0700301 if (pruneRows < minElements) {
Mark Salyzyn5f190312015-08-10 10:23:56 -0700302 pruneRows = minElements;
Mark Salyzyn9d4e34e2014-01-13 16:37:51 -0800303 }
Mark Salyzyn5c5189a2015-09-30 07:40:09 -0700304 if (pruneRows > maxPrune) {
305 pruneRows = maxPrune;
Mark Salyzyn185d8da2015-08-19 12:20:36 -0700306 }
Mark Salyzyn9d4e34e2014-01-13 16:37:51 -0800307 prune(id, pruneRows);
Mark Salyzyn12bac902014-02-26 09:50:16 -0800308 }
309}
310
Mark Salyzyn1fdf71f2015-09-03 16:08:50 -0700311LogBufferElementCollection::iterator LogBuffer::erase(
Mark Salyzyn5c5189a2015-09-30 07:40:09 -0700312 LogBufferElementCollection::iterator it, bool coalesce) {
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700313 LogBufferElement *element = *it;
314 log_id_t id = element->getLogId();
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700315
Mark Salyzynedcbdfa2015-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 Salyzyn5af07be2015-08-19 17:06:11 -0700323 }
Mark Salyzynedcbdfa2015-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 Salyzynb7dd96e2016-01-11 10:58:09 -0800335 bool setLast = mLastSet[id] && (it == mLast[id]);
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700336 it = mLogElements.erase(it);
Mark Salyzynb7dd96e2016-01-11 10:58:09 -0800337 if (setLast) {
338 if (it == mLogElements.end()) { // unlikely
339 mLastSet[id] = false;
340 } else {
341 mLast[id] = it;
342 }
343 }
Mark Salyzyn5c5189a2015-09-30 07:40:09 -0700344 if (coalesce) {
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700345 stats.erase(element);
Mark Salyzyn5c5189a2015-09-30 07:40:09 -0700346 } else {
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700347 stats.subtract(element);
Mark Salyzyn1fdf71f2015-09-03 16:08:50 -0700348 }
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700349 delete element;
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700350
351 return it;
352}
353
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700354// Define a temporary mechanism to report the last LogBufferElement pointer
355// for the specified uid, pid and tid. Used below to help merge-sort when
356// pruning for worst UID.
357class LogBufferElementKey {
358 const union {
359 struct {
360 uint16_t uid;
361 uint16_t pid;
362 uint16_t tid;
363 uint16_t padding;
364 } __packed;
365 uint64_t value;
366 } __packed;
367
368public:
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700369 LogBufferElementKey(uid_t uid, pid_t pid, pid_t tid):
370 uid(uid),
371 pid(pid),
372 tid(tid),
373 padding(0) {
374 }
375 LogBufferElementKey(uint64_t key):value(key) { }
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700376
377 uint64_t getKey() { return value; }
378};
379
Mark Salyzyn6a404192015-05-19 09:12:30 -0700380class LogBufferElementLast {
381
382 typedef std::unordered_map<uint64_t, LogBufferElement *> LogBufferElementMap;
383 LogBufferElementMap map;
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700384
385public:
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700386
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700387 bool coalesce(LogBufferElement *element, unsigned short dropped) {
388 LogBufferElementKey key(element->getUid(),
389 element->getPid(),
390 element->getTid());
Mark Salyzyn6a404192015-05-19 09:12:30 -0700391 LogBufferElementMap::iterator it = map.find(key.getKey());
392 if (it != map.end()) {
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700393 LogBufferElement *found = it->second;
394 unsigned short moreDropped = found->getDropped();
395 if ((dropped + moreDropped) > USHRT_MAX) {
Mark Salyzyn6a404192015-05-19 09:12:30 -0700396 map.erase(it);
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700397 } else {
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700398 found->setDropped(dropped + moreDropped);
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700399 return true;
400 }
401 }
402 return false;
403 }
404
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700405 void add(LogBufferElement *element) {
406 LogBufferElementKey key(element->getUid(),
407 element->getPid(),
408 element->getTid());
409 map[key.getKey()] = element;
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700410 }
411
Mark Salyzynbe1a30c2015-04-20 14:08:56 -0700412 inline void clear() {
Mark Salyzyn6a404192015-05-19 09:12:30 -0700413 map.clear();
Mark Salyzynbe1a30c2015-04-20 14:08:56 -0700414 }
415
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700416 void clear(LogBufferElement *element) {
417 uint64_t current = element->getRealTime().nsec()
Mark Salyzyn80c1fc62015-06-04 13:35:30 -0700418 - (EXPIRE_RATELIMIT * NS_PER_SEC);
Mark Salyzyn6a404192015-05-19 09:12:30 -0700419 for(LogBufferElementMap::iterator it = map.begin(); it != map.end();) {
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700420 LogBufferElement *mapElement = it->second;
421 if ((mapElement->getDropped() >= EXPIRE_THRESHOLD)
422 && (current > mapElement->getRealTime().nsec())) {
Mark Salyzyn6a404192015-05-19 09:12:30 -0700423 it = map.erase(it);
424 } else {
425 ++it;
Mark Salyzynbe1a30c2015-04-20 14:08:56 -0700426 }
427 }
428 }
429
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700430};
431
Mark Salyzyn12bac902014-02-26 09:50:16 -0800432// prune "pruneRows" of type "id" from the buffer.
433//
Mark Salyzyne2827d52015-09-08 09:12:51 -0700434// This garbage collection task is used to expire log entries. It is called to
435// remove all logs (clear), all UID logs (unprivileged clear), or every
436// 256 or 10% of the total logs (whichever is less) to prune the logs.
437//
438// First there is a prep phase where we discover the reader region lock that
439// acts as a backstop to any pruning activity to stop there and go no further.
440//
441// There are three major pruning loops that follow. All expire from the oldest
442// entries. Since there are multiple log buffers, the Android logging facility
443// will appear to drop entries 'in the middle' when looking at multiple log
444// sources and buffers. This effect is slightly more prominent when we prune
445// the worst offender by logging source. Thus the logs slowly loose content
446// and value as you move back in time. This is preferred since chatty sources
447// invariably move the logs value down faster as less chatty sources would be
448// expired in the noise.
449//
450// The first loop performs blacklisting and worst offender pruning. Falling
451// through when there are no notable worst offenders and have not hit the
452// region lock preventing further worst offender pruning. This loop also looks
453// after managing the chatty log entries and merging to help provide
454// statistical basis for blame. The chatty entries are not a notification of
455// how much logs you may have, but instead represent how much logs you would
456// have had in a virtual log buffer that is extended to cover all the in-memory
457// logs without loss. They last much longer than the represented pruned logs
458// since they get multiplied by the gains in the non-chatty log sources.
459//
460// The second loop get complicated because an algorithm of watermarks and
461// history is maintained to reduce the order and keep processing time
462// down to a minimum at scale. These algorithms can be costly in the face
463// of larger log buffers, or severly limited processing time granted to a
464// background task at lowest priority.
465//
466// This second loop does straight-up expiration from the end of the logs
467// (again, remember for the specified log buffer id) but does some whitelist
468// preservation. Thus whitelist is a Hail Mary low priority, blacklists and
469// spam filtration all take priority. This second loop also checks if a region
470// lock is causing us to buffer too much in the logs to help the reader(s),
471// and will tell the slowest reader thread to skip log entries, and if
472// persistent and hits a further threshold, kill the reader thread.
473//
474// The third thread is optional, and only gets hit if there was a whitelist
475// and more needs to be pruned against the backstop of the region lock.
476//
Mark Salyzyn12bac902014-02-26 09:50:16 -0800477// mLogElementsLock must be held when this function is called.
Mark Salyzyne2827d52015-09-08 09:12:51 -0700478//
Mark Salyzyn8cf0d032015-09-16 15:34:00 -0700479bool LogBuffer::prune(log_id_t id, unsigned long pruneRows, uid_t caller_uid) {
Mark Salyzyn12bac902014-02-26 09:50:16 -0800480 LogTimeEntry *oldest = NULL;
Mark Salyzyn8cf0d032015-09-16 15:34:00 -0700481 bool busy = false;
Mark Salyzyn71541f32015-09-16 15:34:00 -0700482 bool clearAll = pruneRows == ULONG_MAX;
Mark Salyzyn12bac902014-02-26 09:50:16 -0800483
484 LogTimeEntry::lock();
485
486 // Region locked?
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700487 LastLogTimes::iterator times = mTimes.begin();
488 while(times != mTimes.end()) {
489 LogTimeEntry *entry = (*times);
TraianX Schiau6ba427e2014-12-17 10:53:41 +0200490 if (entry->owned_Locked() && entry->isWatching(id)
Mark Salyzync959c642015-11-30 11:35:56 -0800491 && (!oldest ||
492 (oldest->mStart > entry->mStart) ||
493 ((oldest->mStart == entry->mStart) &&
494 (entry->mTimeout.tv_sec || entry->mTimeout.tv_nsec)))) {
Mark Salyzyn12bac902014-02-26 09:50:16 -0800495 oldest = entry;
496 }
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700497 times++;
Mark Salyzyn12bac902014-02-26 09:50:16 -0800498 }
499
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800500 LogBufferElementCollection::iterator it;
501
Mark Salyzyn276d5352014-06-12 11:16:16 -0700502 if (caller_uid != AID_ROOT) {
Mark Salyzyn71541f32015-09-16 15:34:00 -0700503 // Only here if clearAll condition (pruneRows == ULONG_MAX)
Mark Salyzynb7dd96e2016-01-11 10:58:09 -0800504 it = mLastSet[id] ? mLast[id] : mLogElements.begin();
505 while (it != mLogElements.end()) {
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700506 LogBufferElement *element = *it;
Mark Salyzyn276d5352014-06-12 11:16:16 -0700507
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700508 if ((element->getLogId() != id) || (element->getUid() != caller_uid)) {
Mark Salyzyn71541f32015-09-16 15:34:00 -0700509 ++it;
510 continue;
511 }
512
Mark Salyzynb7dd96e2016-01-11 10:58:09 -0800513 if (!mLastSet[id] || ((*mLast[id])->getLogId() != id)) {
514 mLast[id] = it;
515 mLastSet[id] = true;
516 }
517
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700518 if (oldest && (oldest->mStart <= element->getSequence())) {
Mark Salyzyn8cf0d032015-09-16 15:34:00 -0700519 busy = true;
Mark Salyzync959c642015-11-30 11:35:56 -0800520 if (oldest->mTimeout.tv_sec || oldest->mTimeout.tv_nsec) {
521 oldest->triggerReader_Locked();
522 } else {
523 oldest->triggerSkip_Locked(id, pruneRows);
524 }
Mark Salyzyn276d5352014-06-12 11:16:16 -0700525 break;
526 }
527
Mark Salyzyn71541f32015-09-16 15:34:00 -0700528 it = erase(it);
529 pruneRows--;
Mark Salyzyn276d5352014-06-12 11:16:16 -0700530 }
531 LogTimeEntry::unlock();
Mark Salyzyn8cf0d032015-09-16 15:34:00 -0700532 return busy;
Mark Salyzyn276d5352014-06-12 11:16:16 -0700533 }
534
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700535 // prune by worst offenders; by blacklist, UID, and by PID of system UID
Mark Salyzync9690862015-12-04 10:59:45 -0800536 bool hasBlacklist = (id != LOG_ID_SECURITY) && mPrune.naughty();
Mark Salyzyn71541f32015-09-16 15:34:00 -0700537 while (!clearAll && (pruneRows > 0)) {
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800538 // recalculate the worst offender on every batched pass
539 uid_t worst = (uid_t) -1;
540 size_t worst_sizes = 0;
541 size_t second_worst_sizes = 0;
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700542 pid_t worstPid = 0; // POSIX guarantees PID != 0
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800543
Mark Salyzyn0e765c62015-03-17 17:17:25 -0700544 if (worstUidEnabledForLogid(id) && mPrune.worstUidEnabled()) {
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700545 { // begin scope for UID sorted list
546 std::unique_ptr<const UidEntry *[]> sorted = stats.sort(
547 AID_ROOT, (pid_t)0, 2, id);
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700548
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700549 if (sorted.get() && sorted[0] && sorted[1]) {
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700550 worst_sizes = sorted[0]->getSizes();
Mark Salyzyn84a83982015-04-20 15:36:12 -0700551 // Calculate threshold as 12.5% of available storage
552 size_t threshold = log_buffer_size(id) / 8;
Mark Salyzyn8b3b07f2015-10-12 13:45:51 -0700553 if ((worst_sizes > threshold)
554 // Allow time horizon to extend roughly tenfold, assume
555 // average entry length is 100 characters.
556 && (worst_sizes > (10 * sorted[0]->getDropped()))) {
Mark Salyzyn84a83982015-04-20 15:36:12 -0700557 worst = sorted[0]->getKey();
558 second_worst_sizes = sorted[1]->getSizes();
559 if (second_worst_sizes < threshold) {
560 second_worst_sizes = threshold;
561 }
562 }
Mark Salyzync89839a2014-02-11 12:29:31 -0800563 }
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800564 }
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700565
566 if ((worst == AID_SYSTEM) && mPrune.worstPidOfSystemEnabled()) {
567 // begin scope of PID sorted list
568 std::unique_ptr<const PidEntry *[]> sorted = stats.sort(
569 worst, (pid_t)0, 2, id, worst);
570 if (sorted.get() && sorted[0] && sorted[1]) {
571 worstPid = sorted[0]->getKey();
572 second_worst_sizes = worst_sizes
573 - sorted[0]->getSizes()
574 + sorted[1]->getSizes();
575 }
576 }
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800577 }
578
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700579 // skip if we have neither worst nor naughty filters
580 if ((worst == (uid_t) -1) && !hasBlacklist) {
581 break;
582 }
583
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800584 bool kick = false;
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700585 bool leading = true;
Mark Salyzynb7dd96e2016-01-11 10:58:09 -0800586 it = mLastSet[id] ? mLast[id] : mLogElements.begin();
Mark Salyzyne2827d52015-09-08 09:12:51 -0700587 // Perform at least one mandatory garbage collection cycle in following
588 // - clear leading chatty tags
Mark Salyzyn5c5189a2015-09-30 07:40:09 -0700589 // - coalesce chatty tags
Mark Salyzyne2827d52015-09-08 09:12:51 -0700590 // - check age-out of preserved logs
591 bool gc = pruneRows <= 1;
592 if (!gc && (worst != (uid_t) -1)) {
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700593 { // begin scope for uid worst found iterator
594 LogBufferIteratorMap::iterator found = mLastWorstUid[id].find(worst);
595 if ((found != mLastWorstUid[id].end())
596 && (found->second != mLogElements.end())) {
597 leading = false;
598 it = found->second;
599 }
600 }
601 if (worstPid) {
602 // begin scope for pid worst found iterator
603 LogBufferPidIteratorMap::iterator found
604 = mLastWorstPidOfSystem[id].find(worstPid);
605 if ((found != mLastWorstPidOfSystem[id].end())
606 && (found->second != mLogElements.end())) {
607 leading = false;
608 it = found->second;
609 }
Mark Salyzyn5af07be2015-08-19 17:06:11 -0700610 }
611 }
Mark Salyzyn7f62d6b2015-08-24 13:43:27 -0700612 static const timespec too_old = {
613 EXPIRE_HOUR_THRESHOLD * 60 * 60, 0
614 };
615 LogBufferElementCollection::iterator lastt;
616 lastt = mLogElements.end();
617 --lastt;
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700618 LogBufferElementLast last;
Mark Salyzyn5af07be2015-08-19 17:06:11 -0700619 while (it != mLogElements.end()) {
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700620 LogBufferElement *element = *it;
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800621
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700622 if (oldest && (oldest->mStart <= element->getSequence())) {
Mark Salyzyn8cf0d032015-09-16 15:34:00 -0700623 busy = true;
Mark Salyzync959c642015-11-30 11:35:56 -0800624 if (oldest->mTimeout.tv_sec || oldest->mTimeout.tv_nsec) {
625 oldest->triggerReader_Locked();
626 }
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800627 break;
628 }
629
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700630 if (element->getLogId() != id) {
Mark Salyzync89839a2014-02-11 12:29:31 -0800631 ++it;
632 continue;
633 }
634
Mark Salyzynb7dd96e2016-01-11 10:58:09 -0800635 if (leading && (!mLastSet[id] || ((*mLast[id])->getLogId() != id))) {
636 mLast[id] = it;
637 mLastSet[id] = true;
638 }
639
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700640 unsigned short dropped = element->getDropped();
Mark Salyzync89839a2014-02-11 12:29:31 -0800641
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700642 // remove any leading drops
643 if (leading && dropped) {
644 it = erase(it);
645 continue;
646 }
647
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700648 if (dropped && last.coalesce(element, dropped)) {
Mark Salyzyn5c5189a2015-09-30 07:40:09 -0700649 it = erase(it, true);
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700650 continue;
651 }
652
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700653 if (hasBlacklist && mPrune.naughty(element)) {
654 last.clear(element);
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700655 it = erase(it);
656 if (dropped) {
657 continue;
658 }
659
660 pruneRows--;
661 if (pruneRows == 0) {
662 break;
663 }
664
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700665 if (element->getUid() == worst) {
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700666 kick = true;
667 if (worst_sizes < second_worst_sizes) {
668 break;
669 }
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700670 worst_sizes -= element->getMsgLen();
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700671 }
672 continue;
673 }
674
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700675 if ((element->getRealTime() < ((*lastt)->getRealTime() - too_old))
676 || (element->getRealTime() > (*lastt)->getRealTime())) {
Mark Salyzyn7f62d6b2015-08-24 13:43:27 -0700677 break;
678 }
679
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700680 if (dropped) {
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700681 last.add(element);
682 if (worstPid
683 && ((!gc && (element->getPid() == worstPid))
684 || (mLastWorstPidOfSystem[id].find(element->getPid())
685 == mLastWorstPidOfSystem[id].end()))) {
686 mLastWorstPidOfSystem[id][element->getUid()] = it;
687 }
688 if ((!gc && !worstPid && (element->getUid() == worst))
689 || (mLastWorstUid[id].find(element->getUid())
Mark Salyzyn76aab492015-08-24 13:43:27 -0700690 == mLastWorstUid[id].end())) {
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700691 mLastWorstUid[id][element->getUid()] = it;
Mark Salyzyn76aab492015-08-24 13:43:27 -0700692 }
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800693 ++it;
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700694 continue;
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800695 }
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700696
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700697 if ((element->getUid() != worst)
698 || (worstPid && (element->getPid() != worstPid))) {
Mark Salyzynfd318a82015-06-01 09:41:19 -0700699 leading = false;
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700700 last.clear(element);
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700701 ++it;
702 continue;
703 }
704
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700705 pruneRows--;
706 if (pruneRows == 0) {
707 break;
708 }
709
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700710 kick = true;
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700711
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700712 unsigned short len = element->getMsgLen();
Mark Salyzyn65ec8602015-05-22 10:03:31 -0700713
714 // do not create any leading drops
715 if (leading) {
716 it = erase(it);
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700717 } else {
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700718 stats.drop(element);
719 element->setDropped(1);
720 if (last.coalesce(element, 1)) {
Mark Salyzyn5c5189a2015-09-30 07:40:09 -0700721 it = erase(it, true);
Mark Salyzyn65ec8602015-05-22 10:03:31 -0700722 } else {
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700723 last.add(element);
724 if (worstPid && (!gc
725 || (mLastWorstPidOfSystem[id].find(worstPid)
726 == mLastWorstPidOfSystem[id].end()))) {
727 mLastWorstPidOfSystem[id][worstPid] = it;
728 }
729 if ((!gc && !worstPid) || (mLastWorstUid[id].find(worst)
Mark Salyzyne2827d52015-09-08 09:12:51 -0700730 == mLastWorstUid[id].end())) {
731 mLastWorstUid[id][worst] = it;
732 }
Mark Salyzyn65ec8602015-05-22 10:03:31 -0700733 ++it;
734 }
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700735 }
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700736 if (worst_sizes < second_worst_sizes) {
737 break;
738 }
739 worst_sizes -= len;
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800740 }
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700741 last.clear();
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800742
Mark Salyzync402bc72014-04-01 17:19:47 -0700743 if (!kick || !mPrune.worstUidEnabled()) {
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800744 break; // the following loop will ask bad clients to skip/drop
745 }
746 }
747
Mark Salyzync89839a2014-02-11 12:29:31 -0800748 bool whitelist = false;
Mark Salyzync9690862015-12-04 10:59:45 -0800749 bool hasWhitelist = (id != LOG_ID_SECURITY) && mPrune.nice() && !clearAll;
Mark Salyzynb7dd96e2016-01-11 10:58:09 -0800750 it = mLastSet[id] ? mLast[id] : mLogElements.begin();
Mark Salyzyn12bac902014-02-26 09:50:16 -0800751 while((pruneRows > 0) && (it != mLogElements.end())) {
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700752 LogBufferElement *element = *it;
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700753
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700754 if (element->getLogId() != id) {
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700755 it++;
756 continue;
757 }
758
Mark Salyzynb7dd96e2016-01-11 10:58:09 -0800759 if (!mLastSet[id] || ((*mLast[id])->getLogId() != id)) {
760 mLast[id] = it;
761 mLastSet[id] = true;
762 }
763
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700764 if (oldest && (oldest->mStart <= element->getSequence())) {
Mark Salyzyn8cf0d032015-09-16 15:34:00 -0700765 busy = true;
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700766 if (whitelist) {
Mark Salyzyn12bac902014-02-26 09:50:16 -0800767 break;
768 }
Mark Salyzync402bc72014-04-01 17:19:47 -0700769
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700770 if (stats.sizes(id) > (2 * log_buffer_size(id))) {
771 // kick a misbehaving log reader client off the island
772 oldest->release_Locked();
Mark Salyzync959c642015-11-30 11:35:56 -0800773 } else if (oldest->mTimeout.tv_sec || oldest->mTimeout.tv_nsec) {
774 oldest->triggerReader_Locked();
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700775 } else {
776 oldest->triggerSkip_Locked(id, pruneRows);
Mark Salyzync89839a2014-02-11 12:29:31 -0800777 }
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700778 break;
Mark Salyzyn12bac902014-02-26 09:50:16 -0800779 }
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700780
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700781 if (hasWhitelist && !element->getDropped() && mPrune.nice(element)) {
782 // WhiteListed
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700783 whitelist = true;
784 it++;
785 continue;
786 }
787
788 it = erase(it);
789 pruneRows--;
Mark Salyzyn12bac902014-02-26 09:50:16 -0800790 }
791
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700792 // Do not save the whitelist if we are reader range limited
Mark Salyzync89839a2014-02-11 12:29:31 -0800793 if (whitelist && (pruneRows > 0)) {
Mark Salyzynb7dd96e2016-01-11 10:58:09 -0800794 it = mLastSet[id] ? mLast[id] : mLogElements.begin();
Mark Salyzync89839a2014-02-11 12:29:31 -0800795 while((it != mLogElements.end()) && (pruneRows > 0)) {
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700796 LogBufferElement *element = *it;
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700797
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700798 if (element->getLogId() != id) {
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700799 ++it;
800 continue;
Mark Salyzync89839a2014-02-11 12:29:31 -0800801 }
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700802
Mark Salyzynb7dd96e2016-01-11 10:58:09 -0800803 if (!mLastSet[id] || ((*mLast[id])->getLogId() != id)) {
804 mLast[id] = it;
805 mLastSet[id] = true;
806 }
807
Mark Salyzynedcbdfa2015-08-28 08:02:59 -0700808 if (oldest && (oldest->mStart <= element->getSequence())) {
Mark Salyzyn8cf0d032015-09-16 15:34:00 -0700809 busy = true;
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700810 if (stats.sizes(id) > (2 * log_buffer_size(id))) {
811 // kick a misbehaving log reader client off the island
812 oldest->release_Locked();
Mark Salyzync959c642015-11-30 11:35:56 -0800813 } else if (oldest->mTimeout.tv_sec || oldest->mTimeout.tv_nsec) {
814 oldest->triggerReader_Locked();
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700815 } else {
816 oldest->triggerSkip_Locked(id, pruneRows);
817 }
818 break;
819 }
820
821 it = erase(it);
822 pruneRows--;
Mark Salyzync89839a2014-02-11 12:29:31 -0800823 }
824 }
Mark Salyzync89839a2014-02-11 12:29:31 -0800825
Mark Salyzyn12bac902014-02-26 09:50:16 -0800826 LogTimeEntry::unlock();
Mark Salyzyn8cf0d032015-09-16 15:34:00 -0700827
828 return (pruneRows > 0) && busy;
Mark Salyzyn12bac902014-02-26 09:50:16 -0800829}
830
831// clear all rows of type "id" from the buffer.
Mark Salyzyn8cf0d032015-09-16 15:34:00 -0700832bool LogBuffer::clear(log_id_t id, uid_t uid) {
833 bool busy = true;
834 // If it takes more than 4 tries (seconds) to clear, then kill reader(s)
835 for (int retry = 4;;) {
836 if (retry == 1) { // last pass
837 // Check if it is still busy after the sleep, we say prune
838 // one entry, not another clear run, so we are looking for
839 // the quick side effect of the return value to tell us if
840 // we have a _blocked_ reader.
841 pthread_mutex_lock(&mLogElementsLock);
842 busy = prune(id, 1, uid);
843 pthread_mutex_unlock(&mLogElementsLock);
844 // It is still busy, blocked reader(s), lets kill them all!
845 // otherwise, lets be a good citizen and preserve the slow
846 // readers and let the clear run (below) deal with determining
847 // if we are still blocked and return an error code to caller.
848 if (busy) {
849 LogTimeEntry::lock();
850 LastLogTimes::iterator times = mTimes.begin();
851 while (times != mTimes.end()) {
852 LogTimeEntry *entry = (*times);
853 // Killer punch
854 if (entry->owned_Locked() && entry->isWatching(id)) {
855 entry->release_Locked();
856 }
857 times++;
858 }
859 LogTimeEntry::unlock();
860 }
861 }
862 pthread_mutex_lock(&mLogElementsLock);
863 busy = prune(id, ULONG_MAX, uid);
864 pthread_mutex_unlock(&mLogElementsLock);
865 if (!busy || !--retry) {
866 break;
867 }
868 sleep (1); // Let reader(s) catch up after notification
869 }
870 return busy;
Mark Salyzyn12bac902014-02-26 09:50:16 -0800871}
872
873// get the used space associated with "id".
874unsigned long LogBuffer::getSizeUsed(log_id_t id) {
875 pthread_mutex_lock(&mLogElementsLock);
Mark Salyzynd774bce2014-02-06 14:48:50 -0800876 size_t retval = stats.sizes(id);
Mark Salyzyn12bac902014-02-26 09:50:16 -0800877 pthread_mutex_unlock(&mLogElementsLock);
878 return retval;
879}
880
Mark Salyzync89839a2014-02-11 12:29:31 -0800881// set the total space allocated to "id"
882int LogBuffer::setSize(log_id_t id, unsigned long size) {
883 // Reasonable limits ...
Mark Salyzyn7b85c592014-05-09 17:44:18 -0700884 if (!valid_size(size)) {
Mark Salyzync89839a2014-02-11 12:29:31 -0800885 return -1;
886 }
887 pthread_mutex_lock(&mLogElementsLock);
888 log_buffer_size(id) = size;
889 pthread_mutex_unlock(&mLogElementsLock);
890 return 0;
891}
892
893// get the total space allocated to "id"
894unsigned long LogBuffer::getSize(log_id_t id) {
895 pthread_mutex_lock(&mLogElementsLock);
896 size_t retval = log_buffer_size(id);
897 pthread_mutex_unlock(&mLogElementsLock);
898 return retval;
899}
900
Mark Salyzyn0aaf6cd2015-03-03 13:39:37 -0800901uint64_t LogBuffer::flushTo(
902 SocketClient *reader, const uint64_t start, bool privileged,
903 int (*filter)(const LogBufferElement *element, void *arg), void *arg) {
Mark Salyzyn12bac902014-02-26 09:50:16 -0800904 LogBufferElementCollection::iterator it;
Mark Salyzyn0aaf6cd2015-03-03 13:39:37 -0800905 uint64_t max = start;
Mark Salyzyn12bac902014-02-26 09:50:16 -0800906 uid_t uid = reader->getUid();
907
908 pthread_mutex_lock(&mLogElementsLock);
Dragoslav Mitrinovic81624f22015-01-15 09:29:43 -0600909
Mark Salyzyn0aaf6cd2015-03-03 13:39:37 -0800910 if (start <= 1) {
Dragoslav Mitrinovic81624f22015-01-15 09:29:43 -0600911 // client wants to start from the beginning
912 it = mLogElements.begin();
913 } else {
914 // Client wants to start from some specified time. Chances are
915 // we are better off starting from the end of the time sorted list.
916 for (it = mLogElements.end(); it != mLogElements.begin(); /* do nothing */) {
917 --it;
918 LogBufferElement *element = *it;
Mark Salyzyn0aaf6cd2015-03-03 13:39:37 -0800919 if (element->getSequence() <= start) {
Dragoslav Mitrinovic81624f22015-01-15 09:29:43 -0600920 it++;
921 break;
922 }
923 }
924 }
925
926 for (; it != mLogElements.end(); ++it) {
Mark Salyzyn12bac902014-02-26 09:50:16 -0800927 LogBufferElement *element = *it;
928
929 if (!privileged && (element->getUid() != uid)) {
930 continue;
931 }
932
Mark Salyzyn0aaf6cd2015-03-03 13:39:37 -0800933 if (element->getSequence() <= start) {
Mark Salyzyn12bac902014-02-26 09:50:16 -0800934 continue;
935 }
936
937 // NB: calling out to another object with mLogElementsLock held (safe)
Mark Salyzyn0aaf6cd2015-03-03 13:39:37 -0800938 if (filter) {
939 int ret = (*filter)(element, arg);
940 if (ret == false) {
941 continue;
942 }
943 if (ret != true) {
944 break;
945 }
Mark Salyzyn12bac902014-02-26 09:50:16 -0800946 }
947
948 pthread_mutex_unlock(&mLogElementsLock);
949
950 // range locking in LastLogTimes looks after us
Mark Salyzyn069c25d2015-12-03 15:38:35 -0800951 max = element->flushTo(reader, this, privileged);
Mark Salyzyn12bac902014-02-26 09:50:16 -0800952
953 if (max == element->FLUSH_ERROR) {
954 return max;
955 }
956
957 pthread_mutex_lock(&mLogElementsLock);
958 }
959 pthread_mutex_unlock(&mLogElementsLock);
960
961 return max;
962}
Mark Salyzynd774bce2014-02-06 14:48:50 -0800963
Mark Salyzyn4a2fc1c2015-12-17 09:58:43 -0800964std::string LogBuffer::formatStatistics(uid_t uid, pid_t pid,
965 unsigned int logMask) {
Mark Salyzynd774bce2014-02-06 14:48:50 -0800966 pthread_mutex_lock(&mLogElementsLock);
967
Mark Salyzyn4a2fc1c2015-12-17 09:58:43 -0800968 std::string ret = stats.format(uid, pid, logMask);
Mark Salyzynd774bce2014-02-06 14:48:50 -0800969
970 pthread_mutex_unlock(&mLogElementsLock);
Mark Salyzyn7c528d92015-08-20 10:01:44 -0700971
972 return ret;
Mark Salyzynd774bce2014-02-06 14:48:50 -0800973}