-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLog.cc
492 lines (418 loc) · 11.3 KB
/
Log.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#include "Log.h"
#include <errno.h>
#include <syslog.h>
#include "common/errno.h"
#include "common/safe_io.h"
#include "common/Clock.h"
#include "common/Graylog.h"
#include "common/valgrind.h"
#include "include/assert.h"
#include "include/compat.h"
#include "include/on_exit.h"
#include "Entry.h"
#include "LogClock.h"
#include "SubsystemMap.h"
#define DEFAULT_MAX_NEW 100
#define DEFAULT_MAX_RECENT 10000
#define PREALLOC 1000000
namespace ceph {
namespace logging {
static OnExitManager exit_callbacks;
static void log_on_exit(void *p)
{
Log *l = *(Log **)p;
if (l)
l->flush();
delete (Log **)p;// Delete allocated pointer (not Log object, the pointer only!)
}
Log::Log(SubsystemMap *s)
: m_indirect_this(NULL),
m_subs(s),
m_queue_mutex_holder(0),
m_flush_mutex_holder(0),
m_new(), m_recent(),
m_fd(-1),
m_uid(0),
m_gid(0),
m_fd_last_error(0),
m_syslog_log(-2), m_syslog_crash(-2),
m_stderr_log(1), m_stderr_crash(-1),
m_graylog_log(-3), m_graylog_crash(-3),
m_stop(false),
m_max_new(DEFAULT_MAX_NEW),
m_max_recent(DEFAULT_MAX_RECENT),
m_inject_segv(false)
{
int ret;
ret = pthread_mutex_init(&m_flush_mutex, NULL);
assert(ret == 0);
ret = pthread_mutex_init(&m_queue_mutex, NULL);
assert(ret == 0);
ret = pthread_cond_init(&m_cond_loggers, NULL);
assert(ret == 0);
ret = pthread_cond_init(&m_cond_flusher, NULL);
assert(ret == 0);
// kludge for prealloc testing
if (false)
for (int i=0; i < PREALLOC; i++)
m_recent.enqueue(new Entry);
}
Log::~Log()
{
if (m_indirect_this) {
*m_indirect_this = NULL;
}
assert(!is_started());
if (m_fd >= 0)
VOID_TEMP_FAILURE_RETRY(::close(m_fd));
pthread_mutex_destroy(&m_queue_mutex);
pthread_mutex_destroy(&m_flush_mutex);
pthread_cond_destroy(&m_cond_loggers);
pthread_cond_destroy(&m_cond_flusher);
}
///
void Log::set_coarse_timestamps(bool coarse) {
if (coarse)
clock.coarsen();
else
clock.refine();
}
void Log::set_flush_on_exit()
{
// Make sure we flush on shutdown. We do this by deliberately
// leaking an indirect pointer to ourselves (on_exit() can't
// unregister a callback). This is not racy only becuase we
// assume that exit() won't race with ~Log().
if (m_indirect_this == NULL) {
m_indirect_this = new (Log*)(this);
exit_callbacks.add_callback(log_on_exit, m_indirect_this);
}
}
void Log::set_max_new(int n)
{
m_max_new = n;
}
void Log::set_max_recent(int n)
{
pthread_mutex_lock(&m_flush_mutex);
m_flush_mutex_holder = pthread_self();
m_max_recent = n;
m_flush_mutex_holder = 0;
pthread_mutex_unlock(&m_flush_mutex);
}
void Log::set_log_file(string fn)
{
m_log_file = fn;
}
void Log::set_log_stderr_prefix(const std::string& p)
{
m_log_stderr_prefix = p;
}
void Log::reopen_log_file()
{
pthread_mutex_lock(&m_flush_mutex);
m_flush_mutex_holder = pthread_self();
if (m_fd >= 0)
VOID_TEMP_FAILURE_RETRY(::close(m_fd));
if (m_log_file.length()) {
m_fd = ::open(m_log_file.c_str(), O_CREAT|O_WRONLY|O_APPEND, 0644);
if (m_fd >= 0 && (m_uid || m_gid)) {
int r = ::fchown(m_fd, m_uid, m_gid);
if (r < 0) {
r = -errno;
cerr << "failed to chown " << m_log_file << ": " << cpp_strerror(r)
<< std::endl;
}
}
} else {
m_fd = -1;
}
m_flush_mutex_holder = 0;
pthread_mutex_unlock(&m_flush_mutex);
}
void Log::chown_log_file(uid_t uid, gid_t gid)
{
pthread_mutex_lock(&m_flush_mutex);
if (m_fd >= 0) {
int r = ::fchown(m_fd, uid, gid);
if (r < 0) {
r = -errno;
cerr << "failed to chown " << m_log_file << ": " << cpp_strerror(r)
<< std::endl;
}
}
pthread_mutex_unlock(&m_flush_mutex);
}
void Log::set_syslog_level(int log, int crash)
{
pthread_mutex_lock(&m_flush_mutex);
m_syslog_log = log;
m_syslog_crash = crash;
pthread_mutex_unlock(&m_flush_mutex);
}
void Log::set_stderr_level(int log, int crash)
{
pthread_mutex_lock(&m_flush_mutex);
m_stderr_log = log;
m_stderr_crash = crash;
pthread_mutex_unlock(&m_flush_mutex);
}
void Log::set_graylog_level(int log, int crash)
{
pthread_mutex_lock(&m_flush_mutex);
m_graylog_log = log;
m_graylog_crash = crash;
pthread_mutex_unlock(&m_flush_mutex);
}
void Log::start_graylog()
{
pthread_mutex_lock(&m_flush_mutex);
if (! m_graylog.get())
m_graylog = std::make_shared<Graylog>(m_subs, "dlog");
pthread_mutex_unlock(&m_flush_mutex);
}
void Log::stop_graylog()
{
pthread_mutex_lock(&m_flush_mutex);
m_graylog.reset();
pthread_mutex_unlock(&m_flush_mutex);
}
void Log::submit_entry(Entry *e)
{
e->finish();
pthread_mutex_lock(&m_queue_mutex);
m_queue_mutex_holder = pthread_self();
if (m_inject_segv)
*(volatile int *)(0) = 0xdead;
// wait for flush to catch up
while (m_new.m_len > m_max_new)
pthread_cond_wait(&m_cond_loggers, &m_queue_mutex);
m_new.enqueue(e);
pthread_cond_signal(&m_cond_flusher);
m_queue_mutex_holder = 0;
pthread_mutex_unlock(&m_queue_mutex);
}
Entry *Log::create_entry(int level, int subsys, const char* msg)
{
if (true) {
return new Entry(clock.now(),
pthread_self(),
level, subsys, msg);
} else {
// kludge for perf testing
Entry *e = m_recent.dequeue();
e->m_stamp = clock.now();
e->m_thread = pthread_self();
e->m_prio = level;
e->m_subsys = subsys;
return e;
}
}
Entry *Log::create_entry(int level, int subsys, size_t* expected_size)
{
if (true) {
ANNOTATE_BENIGN_RACE_SIZED(expected_size, sizeof(*expected_size),
"Log hint");
size_t size = __atomic_load_n(expected_size, __ATOMIC_RELAXED);
void *ptr = ::operator new(sizeof(Entry) + size);
return new(ptr) Entry(clock.now(),
pthread_self(), level, subsys,
reinterpret_cast<char*>(ptr) + sizeof(Entry), size, expected_size);
} else {
// kludge for perf testing
Entry *e = m_recent.dequeue();
e->m_stamp = clock.now();
e->m_thread = pthread_self();
e->m_prio = level;
e->m_subsys = subsys;
return e;
}
}
void Log::flush()
{
pthread_mutex_lock(&m_flush_mutex);
m_flush_mutex_holder = pthread_self();
pthread_mutex_lock(&m_queue_mutex);
m_queue_mutex_holder = pthread_self();
EntryQueue t;
t.swap(m_new);
pthread_cond_broadcast(&m_cond_loggers);
m_queue_mutex_holder = 0;
pthread_mutex_unlock(&m_queue_mutex);
_flush(&t, &m_recent, false);
// trim
while (m_recent.m_len > m_max_recent) {
delete m_recent.dequeue();
}
m_flush_mutex_holder = 0;
pthread_mutex_unlock(&m_flush_mutex);
}
void Log::_flush(EntryQueue *t, EntryQueue *requeue, bool crash)
{
Entry *e;
while ((e = t->dequeue()) != NULL) {
unsigned sub = e->m_subsys;
bool should_log = crash || m_subs->get_log_level(sub) >= e->m_prio;
bool do_fd = m_fd >= 0 && should_log;
bool do_syslog = m_syslog_crash >= e->m_prio && should_log;
bool do_stderr = m_stderr_crash >= e->m_prio && should_log;
bool do_graylog2 = m_graylog_crash >= e->m_prio && should_log;
e->hint_size();
if (do_fd || do_syslog || do_stderr) {
size_t buflen = 0;
char *buf;
size_t buf_size = 80 + e->size();
bool need_dynamic = buf_size >= 0x10000; //avoids >64K buffers
//allocation at stack
char buf0[need_dynamic ? 1 : buf_size];
if (need_dynamic) {
buf = new char[buf_size];
} else {
buf = buf0;
}
if (crash)
buflen += snprintf(buf, buf_size, "%6d> ", -t->m_len);
buflen += append_time(e->m_stamp, buf + buflen, buf_size - buflen);
buflen += snprintf(buf + buflen, buf_size-buflen, " %lx %2d ",
(unsigned long)e->m_thread, e->m_prio);
buflen += e->snprintf(buf + buflen, buf_size - buflen - 1);
if (buflen > buf_size - 1) { //paranoid check, buf was declared
//to hold everything
buflen = buf_size - 1;
buf[buflen] = 0;
}
if (do_syslog) {
syslog(LOG_USER|LOG_INFO, "%s", buf);
}
if (do_stderr) {
cerr << m_log_stderr_prefix << buf << std::endl;
}
if (do_fd) {
buf[buflen] = '\n';
int r = safe_write(m_fd, buf, buflen+1);
if (r != m_fd_last_error) {
if (r < 0)
cerr << "problem writing to " << m_log_file
<< ": " << cpp_strerror(r)
<< std::endl;
m_fd_last_error = r;
}
}
if (need_dynamic)
delete[] buf;
}
if (do_graylog2 && m_graylog) {
m_graylog->log_entry(e);
}
requeue->enqueue(e);
}
}
void Log::_log_message(const char *s, bool crash)
{
if (m_fd >= 0) {
size_t len = strlen(s);
std::string b;
b.reserve(len + 1);
b.append(s, len);
b += '\n';
int r = safe_write(m_fd, b.c_str(), b.size());
if (r < 0)
cerr << "problem writing to " << m_log_file << ": " << cpp_strerror(r) << std::endl;
}
if ((crash ? m_syslog_crash : m_syslog_log) >= 0) {
syslog(LOG_USER|LOG_INFO, "%s", s);
}
if ((crash ? m_stderr_crash : m_stderr_log) >= 0) {
cerr << s << std::endl;
}
}
void Log::dump_recent()
{
pthread_mutex_lock(&m_flush_mutex);
m_flush_mutex_holder = pthread_self();
pthread_mutex_lock(&m_queue_mutex);
m_queue_mutex_holder = pthread_self();
EntryQueue t;
t.swap(m_new);
m_queue_mutex_holder = 0;
pthread_mutex_unlock(&m_queue_mutex);
_flush(&t, &m_recent, false);
EntryQueue old;
_log_message("--- begin dump of recent events ---", true);
_flush(&m_recent, &old, true);
char buf[4096];
_log_message("--- logging levels ---", true);
for (const auto& p : m_subs->m_subsys) {
snprintf(buf, sizeof(buf), " %2d/%2d %s", p.log_level, p.gather_level, p.name);
_log_message(buf, true);
}
sprintf(buf, " %2d/%2d (syslog threshold)", m_syslog_log, m_syslog_crash);
_log_message(buf, true);
sprintf(buf, " %2d/%2d (stderr threshold)", m_stderr_log, m_stderr_crash);
_log_message(buf, true);
sprintf(buf, " max_recent %9d", m_max_recent);
_log_message(buf, true);
sprintf(buf, " max_new %9d", m_max_new);
_log_message(buf, true);
sprintf(buf, " log_file %s", m_log_file.c_str());
_log_message(buf, true);
_log_message("--- end dump of recent events ---", true);
m_flush_mutex_holder = 0;
pthread_mutex_unlock(&m_flush_mutex);
}
void Log::start()
{
assert(!is_started());
pthread_mutex_lock(&m_queue_mutex);
m_stop = false;
pthread_mutex_unlock(&m_queue_mutex);
create("log");
}
void Log::stop()
{
assert(is_started());
pthread_mutex_lock(&m_queue_mutex);
m_stop = true;
pthread_cond_signal(&m_cond_flusher);
pthread_cond_broadcast(&m_cond_loggers);
pthread_mutex_unlock(&m_queue_mutex);
join();
}
void *Log::entry()
{
pthread_mutex_lock(&m_queue_mutex);
m_queue_mutex_holder = pthread_self();
while (!m_stop) {
if (!m_new.empty()) {
m_queue_mutex_holder = 0;
pthread_mutex_unlock(&m_queue_mutex);
flush();
pthread_mutex_lock(&m_queue_mutex);
m_queue_mutex_holder = pthread_self();
continue;
}
pthread_cond_wait(&m_cond_flusher, &m_queue_mutex);
}
m_queue_mutex_holder = 0;
pthread_mutex_unlock(&m_queue_mutex);
flush();
return NULL;
}
bool Log::is_inside_log_lock()
{
return
pthread_self() == m_queue_mutex_holder ||
pthread_self() == m_flush_mutex_holder;
}
void Log::inject_segv()
{
m_inject_segv = true;
}
void Log::reset_segv()
{
m_inject_segv = false;
}
} // ceph::logging::
} // ceph::