blob: 5cfc02f3291995a97642539b250d6ecfd69318f3 [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 Salyzyn4e756fb2014-05-06 07:34:59 -070031#include "LogReader.h"
Mark Salyzyn12bac902014-02-26 09:50:16 -080032
Mark Salyzync89839a2014-02-11 12:29:31 -080033// Default
Mark Salyzyn12bac902014-02-26 09:50:16 -080034#define LOG_BUFFER_SIZE (256 * 1024) // Tuned on a per-platform basis here?
Mark Salyzync89839a2014-02-11 12:29:31 -080035#define log_buffer_size(id) mMaxSize[id]
Mark Salyzyn7b85c592014-05-09 17:44:18 -070036#define LOG_BUFFER_MIN_SIZE (64 * 1024UL)
37#define LOG_BUFFER_MAX_SIZE (256 * 1024 * 1024UL)
38
39static bool valid_size(unsigned long value) {
40 if ((value < LOG_BUFFER_MIN_SIZE) || (LOG_BUFFER_MAX_SIZE < value)) {
41 return false;
42 }
43
44 long pages = sysconf(_SC_PHYS_PAGES);
45 if (pages < 1) {
46 return true;
47 }
48
49 long pagesize = sysconf(_SC_PAGESIZE);
50 if (pagesize <= 1) {
51 pagesize = PAGE_SIZE;
52 }
53
54 // maximum memory impact a somewhat arbitrary ~3%
55 pages = (pages + 31) / 32;
56 unsigned long maximum = pages * pagesize;
57
58 if ((maximum < LOG_BUFFER_MIN_SIZE) || (LOG_BUFFER_MAX_SIZE < maximum)) {
59 return true;
60 }
61
62 return value <= maximum;
63}
Mark Salyzyn12bac902014-02-26 09:50:16 -080064
Mark Salyzyn4e756fb2014-05-06 07:34:59 -070065static unsigned long property_get_size(const char *key) {
66 char property[PROPERTY_VALUE_MAX];
67 property_get(key, property, "");
68
69 char *cp;
70 unsigned long value = strtoul(property, &cp, 10);
71
72 switch(*cp) {
73 case 'm':
74 case 'M':
75 value *= 1024;
76 /* FALLTHRU */
77 case 'k':
78 case 'K':
79 value *= 1024;
80 /* FALLTHRU */
81 case '\0':
82 break;
83
84 default:
85 value = 0;
86 }
87
Mark Salyzyn7b85c592014-05-09 17:44:18 -070088 if (!valid_size(value)) {
89 value = 0;
90 }
91
Mark Salyzyn4e756fb2014-05-06 07:34:59 -070092 return value;
93}
94
Mark Salyzyn3fe25932015-03-10 16:45:17 -070095void LogBuffer::init() {
Mark Salyzyn7b85c592014-05-09 17:44:18 -070096 static const char global_tuneable[] = "persist.logd.size"; // Settings App
97 static const char global_default[] = "ro.logd.size"; // BoardConfig.mk
98
99 unsigned long default_size = property_get_size(global_tuneable);
100 if (!default_size) {
101 default_size = property_get_size(global_default);
102 }
Mark Salyzyn4e756fb2014-05-06 07:34:59 -0700103
Mark Salyzync89839a2014-02-11 12:29:31 -0800104 log_id_for_each(i) {
Mark Salyzyn4e756fb2014-05-06 07:34:59 -0700105 char key[PROP_NAME_MAX];
Mark Salyzyn4e756fb2014-05-06 07:34:59 -0700106
Mark Salyzyn7b85c592014-05-09 17:44:18 -0700107 snprintf(key, sizeof(key), "%s.%s",
108 global_tuneable, android_log_id_to_name(i));
109 unsigned long property_size = property_get_size(key);
110
111 if (!property_size) {
112 snprintf(key, sizeof(key), "%s.%s",
113 global_default, android_log_id_to_name(i));
114 property_size = property_get_size(key);
115 }
116
117 if (!property_size) {
118 property_size = default_size;
119 }
120
121 if (!property_size) {
122 property_size = LOG_BUFFER_SIZE;
123 }
124
125 if (setSize(i, property_size)) {
126 setSize(i, LOG_BUFFER_MIN_SIZE);
127 }
Mark Salyzync89839a2014-02-11 12:29:31 -0800128 }
Mark Salyzyn12bac902014-02-26 09:50:16 -0800129}
130
Mark Salyzyncd766f92015-05-12 15:21:31 -0700131LogBuffer::LogBuffer(LastLogTimes *times) : mTimes(*times) {
Mark Salyzyn3fe25932015-03-10 16:45:17 -0700132 pthread_mutex_init(&mLogElementsLock, NULL);
133
134 init();
135}
136
Mark Salyzyn88fe7cc2015-02-09 08:21:05 -0800137int LogBuffer::log(log_id_t log_id, log_time realtime,
138 uid_t uid, pid_t pid, pid_t tid,
139 const char *msg, unsigned short len) {
Mark Salyzyn12bac902014-02-26 09:50:16 -0800140 if ((log_id >= LOG_ID_MAX) || (log_id < 0)) {
Mark Salyzyn88fe7cc2015-02-09 08:21:05 -0800141 return -EINVAL;
Mark Salyzyn12bac902014-02-26 09:50:16 -0800142 }
Mark Salyzyn19c91112014-10-02 13:07:05 -0700143
Mark Salyzyn12bac902014-02-26 09:50:16 -0800144 LogBufferElement *elem = new LogBufferElement(log_id, realtime,
Mark Salyzyn3661dd02014-03-20 16:09:38 -0700145 uid, pid, tid, msg, len);
Mark Salyzyn19c91112014-10-02 13:07:05 -0700146 int prio = ANDROID_LOG_INFO;
147 const char *tag = NULL;
148 if (log_id == LOG_ID_EVENTS) {
149 tag = android::tagToName(elem->getTag());
150 } else {
151 prio = *msg;
152 tag = msg + 1;
153 }
154 if (!__android_log_is_loggable(prio, tag, ANDROID_LOG_VERBOSE)) {
155 // Log traffic received to total
156 pthread_mutex_lock(&mLogElementsLock);
157 stats.add(elem);
158 stats.subtract(elem);
159 pthread_mutex_unlock(&mLogElementsLock);
160 delete elem;
161 return -EACCES;
162 }
Mark Salyzyn12bac902014-02-26 09:50:16 -0800163
164 pthread_mutex_lock(&mLogElementsLock);
165
166 // Insert elements in time sorted order if possible
167 // NB: if end is region locked, place element at end of list
168 LogBufferElementCollection::iterator it = mLogElements.end();
169 LogBufferElementCollection::iterator last = it;
Mark Salyzyna222a772014-10-13 16:49:47 -0700170 while (last != mLogElements.begin()) {
171 --it;
Mark Salyzyn5b7a8d82014-02-18 11:23:53 -0800172 if ((*it)->getRealTime() <= realtime) {
Mark Salyzyn12bac902014-02-26 09:50:16 -0800173 break;
174 }
175 last = it;
176 }
Mark Salyzyn5b7a8d82014-02-18 11:23:53 -0800177
Mark Salyzyn12bac902014-02-26 09:50:16 -0800178 if (last == mLogElements.end()) {
179 mLogElements.push_back(elem);
180 } else {
Mark Salyzyn0aaf6cd2015-03-03 13:39:37 -0800181 uint64_t end = 1;
Mark Salyzyn12bac902014-02-26 09:50:16 -0800182 bool end_set = false;
183 bool end_always = false;
184
185 LogTimeEntry::lock();
186
187 LastLogTimes::iterator t = mTimes.begin();
188 while(t != mTimes.end()) {
189 LogTimeEntry *entry = (*t);
190 if (entry->owned_Locked()) {
191 if (!entry->mNonBlock) {
192 end_always = true;
193 break;
194 }
195 if (!end_set || (end <= entry->mEnd)) {
196 end = entry->mEnd;
197 end_set = true;
198 }
199 }
200 t++;
201 }
202
203 if (end_always
Mark Salyzyn0aaf6cd2015-03-03 13:39:37 -0800204 || (end_set && (end >= (*last)->getSequence()))) {
Mark Salyzyn12bac902014-02-26 09:50:16 -0800205 mLogElements.push_back(elem);
206 } else {
207 mLogElements.insert(last,elem);
208 }
209
210 LogTimeEntry::unlock();
211 }
212
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700213 stats.add(elem);
Mark Salyzyn12bac902014-02-26 09:50:16 -0800214 maybePrune(log_id);
215 pthread_mutex_unlock(&mLogElementsLock);
Mark Salyzyn88fe7cc2015-02-09 08:21:05 -0800216
217 return len;
Mark Salyzyn12bac902014-02-26 09:50:16 -0800218}
219
Mark Salyzyn63745722015-08-19 12:20:36 -0700220// Prune at most 10% of the log entries or 256, whichever is less.
Mark Salyzyn12bac902014-02-26 09:50:16 -0800221//
222// mLogElementsLock must be held when this function is called.
223void LogBuffer::maybePrune(log_id_t id) {
Mark Salyzynd774bce2014-02-06 14:48:50 -0800224 size_t sizes = stats.sizes(id);
Mark Salyzyn4436d4c2015-08-10 10:23:56 -0700225 unsigned long maxSize = log_buffer_size(id);
226 if (sizes > maxSize) {
Mark Salyzyn63745722015-08-19 12:20:36 -0700227 size_t sizeOver = sizes - ((maxSize * 9) / 10);
228 size_t elements = stats.elements(id);
229 size_t minElements = elements / 10;
Mark Salyzyn4436d4c2015-08-10 10:23:56 -0700230 unsigned long pruneRows = elements * sizeOver / sizes;
231 if (pruneRows <= minElements) {
232 pruneRows = minElements;
Mark Salyzyn9d4e34e2014-01-13 16:37:51 -0800233 }
Mark Salyzyn63745722015-08-19 12:20:36 -0700234 if (pruneRows > 256) {
235 pruneRows = 256;
236 }
Mark Salyzyn9d4e34e2014-01-13 16:37:51 -0800237 prune(id, pruneRows);
Mark Salyzyn12bac902014-02-26 09:50:16 -0800238 }
239}
240
Mark Salyzyn57b82a62015-09-03 16:08:50 -0700241LogBufferElementCollection::iterator LogBuffer::erase(
242 LogBufferElementCollection::iterator it, bool engageStats) {
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700243 LogBufferElement *e = *it;
Mark Salyzyncfcffdaf2015-08-19 17:06:11 -0700244 log_id_t id = e->getLogId();
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700245
Mark Salyzyn50e21082015-09-08 09:12:51 -0700246 LogBufferIteratorMap::iterator f = mLastWorstUid[id].find(e->getUid());
Mark Salyzyncfcffdaf2015-08-19 17:06:11 -0700247 if ((f != mLastWorstUid[id].end()) && (it == f->second)) {
248 mLastWorstUid[id].erase(f);
249 }
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700250 it = mLogElements.erase(it);
Mark Salyzyn57b82a62015-09-03 16:08:50 -0700251 if (engageStats) {
252 stats.subtract(e);
253 } else {
254 stats.erase(e);
255 }
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700256 delete e;
257
258 return it;
259}
260
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700261// Define a temporary mechanism to report the last LogBufferElement pointer
262// for the specified uid, pid and tid. Used below to help merge-sort when
263// pruning for worst UID.
264class LogBufferElementKey {
265 const union {
266 struct {
267 uint16_t uid;
268 uint16_t pid;
269 uint16_t tid;
270 uint16_t padding;
271 } __packed;
272 uint64_t value;
273 } __packed;
274
275public:
276 LogBufferElementKey(uid_t u, pid_t p, pid_t t):uid(u),pid(p),tid(t),padding(0) { }
277 LogBufferElementKey(uint64_t k):value(k) { }
278
279 uint64_t getKey() { return value; }
280};
281
Mark Salyzyn6a404192015-05-19 09:12:30 -0700282class LogBufferElementLast {
283
284 typedef std::unordered_map<uint64_t, LogBufferElement *> LogBufferElementMap;
285 LogBufferElementMap map;
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700286
287public:
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700288
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700289 bool merge(LogBufferElement *e, unsigned short dropped) {
290 LogBufferElementKey key(e->getUid(), e->getPid(), e->getTid());
Mark Salyzyn6a404192015-05-19 09:12:30 -0700291 LogBufferElementMap::iterator it = map.find(key.getKey());
292 if (it != map.end()) {
293 LogBufferElement *l = it->second;
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700294 unsigned short d = l->getDropped();
295 if ((dropped + d) > USHRT_MAX) {
Mark Salyzyn6a404192015-05-19 09:12:30 -0700296 map.erase(it);
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700297 } else {
298 l->setDropped(dropped + d);
299 return true;
300 }
301 }
302 return false;
303 }
304
Mark Salyzyn6a404192015-05-19 09:12:30 -0700305 void add(LogBufferElement *e) {
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700306 LogBufferElementKey key(e->getUid(), e->getPid(), e->getTid());
Mark Salyzyn6a404192015-05-19 09:12:30 -0700307 map[key.getKey()] = e;
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700308 }
309
Mark Salyzynbe1a30c2015-04-20 14:08:56 -0700310 inline void clear() {
Mark Salyzyn6a404192015-05-19 09:12:30 -0700311 map.clear();
Mark Salyzynbe1a30c2015-04-20 14:08:56 -0700312 }
313
314 void clear(LogBufferElement *e) {
Mark Salyzyn80c1fc62015-06-04 13:35:30 -0700315 uint64_t current = e->getRealTime().nsec()
316 - (EXPIRE_RATELIMIT * NS_PER_SEC);
Mark Salyzyn6a404192015-05-19 09:12:30 -0700317 for(LogBufferElementMap::iterator it = map.begin(); it != map.end();) {
318 LogBufferElement *l = it->second;
Mark Salyzyn4f199f32015-05-15 15:58:17 -0700319 if ((l->getDropped() >= EXPIRE_THRESHOLD)
320 && (current > l->getRealTime().nsec())) {
Mark Salyzyn6a404192015-05-19 09:12:30 -0700321 it = map.erase(it);
322 } else {
323 ++it;
Mark Salyzynbe1a30c2015-04-20 14:08:56 -0700324 }
325 }
326 }
327
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700328};
329
Mark Salyzyn12bac902014-02-26 09:50:16 -0800330// prune "pruneRows" of type "id" from the buffer.
331//
Mark Salyzyn50e21082015-09-08 09:12:51 -0700332// This garbage collection task is used to expire log entries. It is called to
333// remove all logs (clear), all UID logs (unprivileged clear), or every
334// 256 or 10% of the total logs (whichever is less) to prune the logs.
335//
336// First there is a prep phase where we discover the reader region lock that
337// acts as a backstop to any pruning activity to stop there and go no further.
338//
339// There are three major pruning loops that follow. All expire from the oldest
340// entries. Since there are multiple log buffers, the Android logging facility
341// will appear to drop entries 'in the middle' when looking at multiple log
342// sources and buffers. This effect is slightly more prominent when we prune
343// the worst offender by logging source. Thus the logs slowly loose content
344// and value as you move back in time. This is preferred since chatty sources
345// invariably move the logs value down faster as less chatty sources would be
346// expired in the noise.
347//
348// The first loop performs blacklisting and worst offender pruning. Falling
349// through when there are no notable worst offenders and have not hit the
350// region lock preventing further worst offender pruning. This loop also looks
351// after managing the chatty log entries and merging to help provide
352// statistical basis for blame. The chatty entries are not a notification of
353// how much logs you may have, but instead represent how much logs you would
354// have had in a virtual log buffer that is extended to cover all the in-memory
355// logs without loss. They last much longer than the represented pruned logs
356// since they get multiplied by the gains in the non-chatty log sources.
357//
358// The second loop get complicated because an algorithm of watermarks and
359// history is maintained to reduce the order and keep processing time
360// down to a minimum at scale. These algorithms can be costly in the face
361// of larger log buffers, or severly limited processing time granted to a
362// background task at lowest priority.
363//
364// This second loop does straight-up expiration from the end of the logs
365// (again, remember for the specified log buffer id) but does some whitelist
366// preservation. Thus whitelist is a Hail Mary low priority, blacklists and
367// spam filtration all take priority. This second loop also checks if a region
368// lock is causing us to buffer too much in the logs to help the reader(s),
369// and will tell the slowest reader thread to skip log entries, and if
370// persistent and hits a further threshold, kill the reader thread.
371//
372// The third thread is optional, and only gets hit if there was a whitelist
373// and more needs to be pruned against the backstop of the region lock.
374//
Mark Salyzyn12bac902014-02-26 09:50:16 -0800375// mLogElementsLock must be held when this function is called.
Mark Salyzyn50e21082015-09-08 09:12:51 -0700376//
Mark Salyzyn7702c3e2015-09-16 15:34:00 -0700377bool LogBuffer::prune(log_id_t id, unsigned long pruneRows, uid_t caller_uid) {
Mark Salyzyn12bac902014-02-26 09:50:16 -0800378 LogTimeEntry *oldest = NULL;
Mark Salyzyn7702c3e2015-09-16 15:34:00 -0700379 bool busy = false;
Mark Salyzynd280d812015-09-16 15:34:00 -0700380 bool clearAll = pruneRows == ULONG_MAX;
Mark Salyzyn12bac902014-02-26 09:50:16 -0800381
382 LogTimeEntry::lock();
383
384 // Region locked?
385 LastLogTimes::iterator t = mTimes.begin();
386 while(t != mTimes.end()) {
387 LogTimeEntry *entry = (*t);
TraianX Schiau6ba427e2014-12-17 10:53:41 +0200388 if (entry->owned_Locked() && entry->isWatching(id)
Mark Salyzyn12bac902014-02-26 09:50:16 -0800389 && (!oldest || (oldest->mStart > entry->mStart))) {
390 oldest = entry;
391 }
392 t++;
393 }
394
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800395 LogBufferElementCollection::iterator it;
396
Mark Salyzyn276d5352014-06-12 11:16:16 -0700397 if (caller_uid != AID_ROOT) {
Mark Salyzynd280d812015-09-16 15:34:00 -0700398 // Only here if clearAll condition (pruneRows == ULONG_MAX)
Mark Salyzyn276d5352014-06-12 11:16:16 -0700399 for(it = mLogElements.begin(); it != mLogElements.end();) {
400 LogBufferElement *e = *it;
401
Mark Salyzynd280d812015-09-16 15:34:00 -0700402 if ((e->getLogId() != id) || (e->getUid() != caller_uid)) {
403 ++it;
404 continue;
405 }
406
Mark Salyzyn0aaf6cd2015-03-03 13:39:37 -0800407 if (oldest && (oldest->mStart <= e->getSequence())) {
Mark Salyzyn7702c3e2015-09-16 15:34:00 -0700408 oldest->triggerSkip_Locked(id, pruneRows);
409 busy = true;
Mark Salyzyn276d5352014-06-12 11:16:16 -0700410 break;
411 }
412
Mark Salyzynd280d812015-09-16 15:34:00 -0700413 it = erase(it);
414 pruneRows--;
Mark Salyzyn276d5352014-06-12 11:16:16 -0700415 }
416 LogTimeEntry::unlock();
Mark Salyzyn7702c3e2015-09-16 15:34:00 -0700417 return busy;
Mark Salyzyn276d5352014-06-12 11:16:16 -0700418 }
419
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800420 // prune by worst offender by uid
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700421 bool hasBlacklist = mPrune.naughty();
Mark Salyzynd280d812015-09-16 15:34:00 -0700422 while (!clearAll && (pruneRows > 0)) {
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800423 // recalculate the worst offender on every batched pass
424 uid_t worst = (uid_t) -1;
425 size_t worst_sizes = 0;
426 size_t second_worst_sizes = 0;
427
Mark Salyzyn0e765c62015-03-17 17:17:25 -0700428 if (worstUidEnabledForLogid(id) && mPrune.worstUidEnabled()) {
Mark Salyzyn1435b472015-03-16 08:26:05 -0700429 std::unique_ptr<const UidEntry *[]> sorted = stats.sort(2, id);
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700430
Mark Salyzyn1435b472015-03-16 08:26:05 -0700431 if (sorted.get()) {
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700432 if (sorted[0] && sorted[1]) {
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700433 worst_sizes = sorted[0]->getSizes();
Mark Salyzyn84a83982015-04-20 15:36:12 -0700434 // Calculate threshold as 12.5% of available storage
435 size_t threshold = log_buffer_size(id) / 8;
436 if (worst_sizes > threshold) {
437 worst = sorted[0]->getKey();
438 second_worst_sizes = sorted[1]->getSizes();
439 if (second_worst_sizes < threshold) {
440 second_worst_sizes = threshold;
441 }
442 }
Mark Salyzync89839a2014-02-11 12:29:31 -0800443 }
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800444 }
445 }
446
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700447 // skip if we have neither worst nor naughty filters
448 if ((worst == (uid_t) -1) && !hasBlacklist) {
449 break;
450 }
451
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800452 bool kick = false;
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700453 bool leading = true;
Mark Salyzyncfcffdaf2015-08-19 17:06:11 -0700454 it = mLogElements.begin();
Mark Salyzyn50e21082015-09-08 09:12:51 -0700455 // Perform at least one mandatory garbage collection cycle in following
456 // - clear leading chatty tags
457 // - merge chatty tags
458 // - check age-out of preserved logs
459 bool gc = pruneRows <= 1;
460 if (!gc && (worst != (uid_t) -1)) {
Mark Salyzyncfcffdaf2015-08-19 17:06:11 -0700461 LogBufferIteratorMap::iterator f = mLastWorstUid[id].find(worst);
462 if ((f != mLastWorstUid[id].end())
463 && (f->second != mLogElements.end())) {
464 leading = false;
465 it = f->second;
466 }
467 }
Mark Salyzyn4e29e172015-08-24 13:43:27 -0700468 static const timespec too_old = {
469 EXPIRE_HOUR_THRESHOLD * 60 * 60, 0
470 };
471 LogBufferElementCollection::iterator lastt;
472 lastt = mLogElements.end();
473 --lastt;
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700474 LogBufferElementLast last;
Mark Salyzyncfcffdaf2015-08-19 17:06:11 -0700475 while (it != mLogElements.end()) {
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800476 LogBufferElement *e = *it;
477
Mark Salyzyn0aaf6cd2015-03-03 13:39:37 -0800478 if (oldest && (oldest->mStart <= e->getSequence())) {
Mark Salyzyn7702c3e2015-09-16 15:34:00 -0700479 busy = true;
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800480 break;
481 }
482
Mark Salyzync89839a2014-02-11 12:29:31 -0800483 if (e->getLogId() != id) {
484 ++it;
485 continue;
486 }
487
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700488 unsigned short dropped = e->getDropped();
Mark Salyzync89839a2014-02-11 12:29:31 -0800489
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700490 // remove any leading drops
491 if (leading && dropped) {
492 it = erase(it);
493 continue;
494 }
495
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700496 // merge any drops
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700497 if (dropped && last.merge(e, dropped)) {
Mark Salyzyn57b82a62015-09-03 16:08:50 -0700498 it = erase(it, false);
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700499 continue;
500 }
501
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700502 if (hasBlacklist && mPrune.naughty(e)) {
Mark Salyzynbe1a30c2015-04-20 14:08:56 -0700503 last.clear(e);
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700504 it = erase(it);
505 if (dropped) {
506 continue;
507 }
508
509 pruneRows--;
510 if (pruneRows == 0) {
511 break;
512 }
513
514 if (e->getUid() == worst) {
515 kick = true;
516 if (worst_sizes < second_worst_sizes) {
517 break;
518 }
519 worst_sizes -= e->getMsgLen();
520 }
521 continue;
522 }
523
Mark Salyzyn4e29e172015-08-24 13:43:27 -0700524 if ((e->getRealTime() < ((*lastt)->getRealTime() - too_old))
525 || (e->getRealTime() > (*lastt)->getRealTime())) {
526 break;
527 }
528
Mark Salyzyncfcffdaf2015-08-19 17:06:11 -0700529 // unmerged drop message
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700530 if (dropped) {
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700531 last.add(e);
Mark Salyzyn50e21082015-09-08 09:12:51 -0700532 if ((!gc && (e->getUid() == worst))
Mark Salyzyncb15c7c2015-08-24 13:43:27 -0700533 || (mLastWorstUid[id].find(e->getUid())
534 == mLastWorstUid[id].end())) {
535 mLastWorstUid[id][e->getUid()] = it;
536 }
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800537 ++it;
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700538 continue;
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800539 }
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700540
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700541 if (e->getUid() != worst) {
Mark Salyzynfd318a82015-06-01 09:41:19 -0700542 leading = false;
Mark Salyzynbe1a30c2015-04-20 14:08:56 -0700543 last.clear(e);
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700544 ++it;
545 continue;
546 }
547
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700548 pruneRows--;
549 if (pruneRows == 0) {
550 break;
551 }
552
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700553 kick = true;
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700554
555 unsigned short len = e->getMsgLen();
Mark Salyzyn65ec8602015-05-22 10:03:31 -0700556
557 // do not create any leading drops
558 if (leading) {
559 it = erase(it);
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700560 } else {
Mark Salyzyn65ec8602015-05-22 10:03:31 -0700561 stats.drop(e);
562 e->setDropped(1);
563 if (last.merge(e, 1)) {
Mark Salyzyn57b82a62015-09-03 16:08:50 -0700564 it = erase(it, false);
Mark Salyzyn65ec8602015-05-22 10:03:31 -0700565 } else {
566 last.add(e);
Mark Salyzyn50e21082015-09-08 09:12:51 -0700567 if (!gc || (mLastWorstUid[id].find(worst)
568 == mLastWorstUid[id].end())) {
569 mLastWorstUid[id][worst] = it;
570 }
Mark Salyzyn65ec8602015-05-22 10:03:31 -0700571 ++it;
572 }
Mark Salyzyna69d5a42015-03-16 12:04:09 -0700573 }
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700574 if (worst_sizes < second_worst_sizes) {
575 break;
576 }
577 worst_sizes -= len;
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800578 }
Mark Salyzynd84b27e2015-04-17 15:38:04 -0700579 last.clear();
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800580
Mark Salyzync402bc72014-04-01 17:19:47 -0700581 if (!kick || !mPrune.worstUidEnabled()) {
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800582 break; // the following loop will ask bad clients to skip/drop
583 }
584 }
585
Mark Salyzync89839a2014-02-11 12:29:31 -0800586 bool whitelist = false;
Mark Salyzynd280d812015-09-16 15:34:00 -0700587 bool hasWhitelist = mPrune.nice() && !clearAll;
Mark Salyzyn5c06ca42014-02-06 18:11:13 -0800588 it = mLogElements.begin();
Mark Salyzyn12bac902014-02-26 09:50:16 -0800589 while((pruneRows > 0) && (it != mLogElements.end())) {
590 LogBufferElement *e = *it;
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700591
592 if (e->getLogId() != id) {
593 it++;
594 continue;
595 }
596
597 if (oldest && (oldest->mStart <= e->getSequence())) {
Mark Salyzyn7702c3e2015-09-16 15:34:00 -0700598 busy = true;
599
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700600 if (whitelist) {
Mark Salyzyn12bac902014-02-26 09:50:16 -0800601 break;
602 }
Mark Salyzync402bc72014-04-01 17:19:47 -0700603
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700604 if (stats.sizes(id) > (2 * log_buffer_size(id))) {
605 // kick a misbehaving log reader client off the island
606 oldest->release_Locked();
607 } else {
608 oldest->triggerSkip_Locked(id, pruneRows);
Mark Salyzync89839a2014-02-11 12:29:31 -0800609 }
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700610 break;
Mark Salyzyn12bac902014-02-26 09:50:16 -0800611 }
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700612
Mark Salyzynd910ca92015-05-21 12:50:31 -0700613 if (hasWhitelist && !e->getDropped() && mPrune.nice(e)) { // WhiteListed
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700614 whitelist = true;
615 it++;
616 continue;
617 }
618
619 it = erase(it);
620 pruneRows--;
Mark Salyzyn12bac902014-02-26 09:50:16 -0800621 }
622
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700623 // Do not save the whitelist if we are reader range limited
Mark Salyzync89839a2014-02-11 12:29:31 -0800624 if (whitelist && (pruneRows > 0)) {
625 it = mLogElements.begin();
626 while((it != mLogElements.end()) && (pruneRows > 0)) {
627 LogBufferElement *e = *it;
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700628
629 if (e->getLogId() != id) {
630 ++it;
631 continue;
Mark Salyzync89839a2014-02-11 12:29:31 -0800632 }
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700633
634 if (oldest && (oldest->mStart <= e->getSequence())) {
Mark Salyzyn7702c3e2015-09-16 15:34:00 -0700635 busy = true;
Mark Salyzyn9cf5d402015-03-10 13:51:35 -0700636 if (stats.sizes(id) > (2 * log_buffer_size(id))) {
637 // kick a misbehaving log reader client off the island
638 oldest->release_Locked();
639 } else {
640 oldest->triggerSkip_Locked(id, pruneRows);
641 }
642 break;
643 }
644
645 it = erase(it);
646 pruneRows--;
Mark Salyzync89839a2014-02-11 12:29:31 -0800647 }
648 }
Mark Salyzync89839a2014-02-11 12:29:31 -0800649
Mark Salyzyn12bac902014-02-26 09:50:16 -0800650 LogTimeEntry::unlock();
Mark Salyzyn7702c3e2015-09-16 15:34:00 -0700651
652 return (pruneRows > 0) && busy;
Mark Salyzyn12bac902014-02-26 09:50:16 -0800653}
654
655// clear all rows of type "id" from the buffer.
Mark Salyzyn7702c3e2015-09-16 15:34:00 -0700656bool LogBuffer::clear(log_id_t id, uid_t uid) {
657 bool busy = true;
658 // If it takes more than 4 tries (seconds) to clear, then kill reader(s)
659 for (int retry = 4;;) {
660 if (retry == 1) { // last pass
661 // Check if it is still busy after the sleep, we say prune
662 // one entry, not another clear run, so we are looking for
663 // the quick side effect of the return value to tell us if
664 // we have a _blocked_ reader.
665 pthread_mutex_lock(&mLogElementsLock);
666 busy = prune(id, 1, uid);
667 pthread_mutex_unlock(&mLogElementsLock);
668 // It is still busy, blocked reader(s), lets kill them all!
669 // otherwise, lets be a good citizen and preserve the slow
670 // readers and let the clear run (below) deal with determining
671 // if we are still blocked and return an error code to caller.
672 if (busy) {
673 LogTimeEntry::lock();
674 LastLogTimes::iterator times = mTimes.begin();
675 while (times != mTimes.end()) {
676 LogTimeEntry *entry = (*times);
677 // Killer punch
678 if (entry->owned_Locked() && entry->isWatching(id)) {
679 entry->release_Locked();
680 }
681 times++;
682 }
683 LogTimeEntry::unlock();
684 }
685 }
686 pthread_mutex_lock(&mLogElementsLock);
687 busy = prune(id, ULONG_MAX, uid);
688 pthread_mutex_unlock(&mLogElementsLock);
689 if (!busy || !--retry) {
690 break;
691 }
692 sleep (1); // Let reader(s) catch up after notification
693 }
694 return busy;
Mark Salyzyn12bac902014-02-26 09:50:16 -0800695}
696
697// get the used space associated with "id".
698unsigned long LogBuffer::getSizeUsed(log_id_t id) {
699 pthread_mutex_lock(&mLogElementsLock);
Mark Salyzynd774bce2014-02-06 14:48:50 -0800700 size_t retval = stats.sizes(id);
Mark Salyzyn12bac902014-02-26 09:50:16 -0800701 pthread_mutex_unlock(&mLogElementsLock);
702 return retval;
703}
704
Mark Salyzync89839a2014-02-11 12:29:31 -0800705// set the total space allocated to "id"
706int LogBuffer::setSize(log_id_t id, unsigned long size) {
707 // Reasonable limits ...
Mark Salyzyn7b85c592014-05-09 17:44:18 -0700708 if (!valid_size(size)) {
Mark Salyzync89839a2014-02-11 12:29:31 -0800709 return -1;
710 }
711 pthread_mutex_lock(&mLogElementsLock);
712 log_buffer_size(id) = size;
713 pthread_mutex_unlock(&mLogElementsLock);
714 return 0;
715}
716
717// get the total space allocated to "id"
718unsigned long LogBuffer::getSize(log_id_t id) {
719 pthread_mutex_lock(&mLogElementsLock);
720 size_t retval = log_buffer_size(id);
721 pthread_mutex_unlock(&mLogElementsLock);
722 return retval;
723}
724
Mark Salyzyn0aaf6cd2015-03-03 13:39:37 -0800725uint64_t LogBuffer::flushTo(
726 SocketClient *reader, const uint64_t start, bool privileged,
727 int (*filter)(const LogBufferElement *element, void *arg), void *arg) {
Mark Salyzyn12bac902014-02-26 09:50:16 -0800728 LogBufferElementCollection::iterator it;
Mark Salyzyn0aaf6cd2015-03-03 13:39:37 -0800729 uint64_t max = start;
Mark Salyzyn12bac902014-02-26 09:50:16 -0800730 uid_t uid = reader->getUid();
731
732 pthread_mutex_lock(&mLogElementsLock);
Dragoslav Mitrinovic81624f22015-01-15 09:29:43 -0600733
Mark Salyzyn0aaf6cd2015-03-03 13:39:37 -0800734 if (start <= 1) {
Dragoslav Mitrinovic81624f22015-01-15 09:29:43 -0600735 // client wants to start from the beginning
736 it = mLogElements.begin();
737 } else {
738 // Client wants to start from some specified time. Chances are
739 // we are better off starting from the end of the time sorted list.
740 for (it = mLogElements.end(); it != mLogElements.begin(); /* do nothing */) {
741 --it;
742 LogBufferElement *element = *it;
Mark Salyzyn0aaf6cd2015-03-03 13:39:37 -0800743 if (element->getSequence() <= start) {
Dragoslav Mitrinovic81624f22015-01-15 09:29:43 -0600744 it++;
745 break;
746 }
747 }
748 }
749
750 for (; it != mLogElements.end(); ++it) {
Mark Salyzyn12bac902014-02-26 09:50:16 -0800751 LogBufferElement *element = *it;
752
753 if (!privileged && (element->getUid() != uid)) {
754 continue;
755 }
756
Mark Salyzyn0aaf6cd2015-03-03 13:39:37 -0800757 if (element->getSequence() <= start) {
Mark Salyzyn12bac902014-02-26 09:50:16 -0800758 continue;
759 }
760
761 // NB: calling out to another object with mLogElementsLock held (safe)
Mark Salyzyn0aaf6cd2015-03-03 13:39:37 -0800762 if (filter) {
763 int ret = (*filter)(element, arg);
764 if (ret == false) {
765 continue;
766 }
767 if (ret != true) {
768 break;
769 }
Mark Salyzyn12bac902014-02-26 09:50:16 -0800770 }
771
772 pthread_mutex_unlock(&mLogElementsLock);
773
774 // range locking in LastLogTimes looks after us
Mark Salyzynbf918322015-04-20 07:26:27 -0700775 max = element->flushTo(reader, this);
Mark Salyzyn12bac902014-02-26 09:50:16 -0800776
777 if (max == element->FLUSH_ERROR) {
778 return max;
779 }
780
781 pthread_mutex_lock(&mLogElementsLock);
782 }
783 pthread_mutex_unlock(&mLogElementsLock);
784
785 return max;
786}
Mark Salyzynd774bce2014-02-06 14:48:50 -0800787
Mark Salyzyn1c7b6fb2015-08-20 10:01:44 -0700788std::string LogBuffer::formatStatistics(uid_t uid, unsigned int logMask) {
Mark Salyzynd774bce2014-02-06 14:48:50 -0800789 pthread_mutex_lock(&mLogElementsLock);
790
Mark Salyzyn1c7b6fb2015-08-20 10:01:44 -0700791 std::string ret = stats.format(uid, logMask);
Mark Salyzynd774bce2014-02-06 14:48:50 -0800792
793 pthread_mutex_unlock(&mLogElementsLock);
Mark Salyzyn1c7b6fb2015-08-20 10:01:44 -0700794
795 return ret;
Mark Salyzynd774bce2014-02-06 14:48:50 -0800796}