forked from ColinIanKing/stress-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcore-log.c
591 lines (517 loc) · 11.1 KB
/
core-log.c
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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
/*
* Copyright (C) 2013-2021 Canonical, Ltd.
* Copyright (C) 2022-2023 Colin Ian King.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "stress-ng.h"
#include "core-syslog.h"
#define PR_TIMEOUT (0.5) /* pr_lock timeout in seconds */
#if defined(HAVE_SYSLOG_H)
#include <syslog.h>
#endif
static uint16_t abort_fails; /* count of failures */
static bool abort_msg_emitted;
static FILE *log_file = NULL;
static inline FILE *pr_file(void)
{
return (g_opt_flags & OPT_FLAGS_STDOUT) ? stdout : stderr;
}
#if defined(HAVE_ATOMIC_COMPARE_EXCHANGE) && \
defined(HAVE_ATOMIC_STORE)
/*
* pr_lock_init()
*/
void pr_lock_init(void)
{
if (g_opt_flags & OPT_FLAGS_LOG_LOCKLESS)
return;
if (!g_shared)
return;
g_shared->pr_pid = -1;
g_shared->pr_lock_count = 0;
g_shared->pr_atomic_lock = 0;
g_shared->pr_whence = -1.0;
}
/*
* pr_spin_lock()
* simple spin lock
*/
static void pr_spin_lock(void)
{
double timeout_time;
pid_t val, orig;
pid_t pid;
if (g_opt_flags & OPT_FLAGS_LOG_LOCKLESS)
return;
if (!g_shared)
return;
timeout_time = stress_time_now() + PR_TIMEOUT;
pid = getpid();
for (;;) {
while (stress_time_now() < timeout_time) {
orig = 0;
val = pid;
if (__atomic_compare_exchange(&g_shared->pr_atomic_lock, &orig,
&val, 0, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST))
return;
/* Owner dead? force unlock and retry */
if ((kill(orig, 0) < 0) && (errno == ESRCH)) {
val = 0;
__atomic_exchange(&g_shared->pr_atomic_lock, &val, &orig, __ATOMIC_SEQ_CST);
continue;
}
shim_sched_yield();
}
/*
* Owner won't let go of spinlock, we force the lock to be unlocked
* and re-try. Urgh.
*/
val = 0;
__atomic_exchange(&g_shared->pr_atomic_lock, &val, &orig, __ATOMIC_SEQ_CST);
/* reset the timeout */
timeout_time = stress_time_now() + PR_TIMEOUT;
}
}
/*
* pr_spin_unlock()
* spin unlock
*/
static void pr_spin_unlock(void)
{
int zero;
if (g_opt_flags & OPT_FLAGS_LOG_LOCKLESS)
return;
if (!g_shared)
return;
zero = 0;
__atomic_store(&g_shared->pr_atomic_lock, &zero, __ATOMIC_SEQ_CST);
}
/*
* pr_lock_acquire()
* acquire a pr lock in a timely way, force lock ownership
* if we wait for too long
*/
static void pr_lock_acquire(const pid_t pid)
{
if (g_opt_flags & OPT_FLAGS_LOG_LOCKLESS)
return;
if (!g_shared)
return;
for (;;) {
int32_t count;
double whence, now;
pr_spin_lock();
count = g_shared->pr_lock_count;
whence = g_shared->pr_whence;
now = stress_time_now();
/*
* Locks held for too long are broken and holding logging
* up, so pass ownership over
*/
if (((now - whence) > PR_TIMEOUT) || count == 0) {
g_shared->pr_pid = pid; /* Indicate we now own lock */
g_shared->pr_lock_count++;
g_shared->pr_whence = now;
pr_spin_unlock();
return;
}
pr_spin_unlock();
shim_usleep(100000);
}
}
/*
* pr_lock()
* attempt to get a lock, it's just too bad
* if it fails, this is just to stop messages
* getting intermixed.
*
* pr_lock can be called multiple times by a process, only
* the first call acquires the lock
*/
void pr_lock(void)
{
pid_t pid;
double now;
if (g_opt_flags & OPT_FLAGS_LOG_LOCKLESS)
return;
if (!g_shared)
return;
pid = getpid();
pr_spin_lock();
/* Already own lock? */
if (g_shared->pr_pid == pid) {
g_shared->pr_lock_count++;
pr_spin_unlock();
return;
}
if (g_shared->pr_pid == -1) {
/* No owner, acquire lock */
g_shared->pr_pid = pid;
pr_spin_unlock();
pr_lock_acquire(pid);
return;
}
/*
* Sanity check, has the lock been owned for too long
* or has the owenr pid died, then force unlock and
* take ownership.
*/
now = stress_time_now();
if (((now - g_shared->pr_whence) > PR_TIMEOUT) ||
(kill(g_shared->pr_pid, 0) == ESRCH)) {
/* force acquire */
g_shared->pr_pid = pid;
g_shared->pr_lock_count = 0;
g_shared->pr_whence = now;
pr_spin_unlock();
return;
}
/* Wait on lock */
pr_spin_unlock();
pr_lock_acquire(pid);
}
/*
* pr_unlock()
* attempt to unlock
*/
void pr_unlock(void)
{
pid_t pid;
if (g_opt_flags & OPT_FLAGS_LOG_LOCKLESS)
return;
if (!g_shared)
return;
pid = getpid();
pr_spin_lock();
/* Do we own the lock? */
if (g_shared->pr_pid == pid) {
g_shared->pr_lock_count--;
if (g_shared->pr_lock_count == 0) {
g_shared->pr_pid = -1;
g_shared->pr_whence = -1.0;
}
}
pr_spin_unlock();
}
/*
* pr_lock_exited()
* process has terminated, ensure locks are cleared on it
*/
void pr_lock_exited(const pid_t pid)
{
if (g_opt_flags & OPT_FLAGS_LOG_LOCKLESS)
return;
if (!g_shared)
return;
pr_spin_lock();
if (g_shared->pr_pid == pid) {
g_shared->pr_pid = -1;
g_shared->pr_lock_count = 0;
g_shared->pr_whence = 0.0;
}
pr_spin_unlock();
}
#else
void pr_lock_init(void)
{
}
void pr_lock(void)
{
}
void pr_unlock(void)
{
}
void pr_lock_exited(const pid_t pid)
{
(void)pid;
}
#endif
/*
* pr_fail_check()
* set rc to EXIT_FAILURE if we detected a pr_fail
* error condition in the logging during a run.
* This is horribly indirect but it allows the main
* stress-ng parent to check that an EXIT_SUCCESS
* is really a failure based on the logging rather
* that each stressor doing it's own failure exit
* return accounting
*/
void pr_fail_check(int *const rc)
{
if (abort_msg_emitted && (*rc == EXIT_SUCCESS))
*rc = EXIT_FAILURE;
}
/*
* pr_yaml()
* print to yaml file if it is open
*/
int pr_yaml(FILE *fp, const char *const fmt, ...)
{
va_list ap;
int ret = 0;
va_start(ap, fmt);
if (fp)
ret = vfprintf(fp, fmt, ap);
va_end(ap);
return ret;
}
/*
* pr_closelog()
* log closing
*/
void pr_closelog(void)
{
if (log_file) {
(void)fflush(log_file);
(void)fclose(log_file);
log_file = NULL;
}
}
/*
* pr_openlog()
* optional pr logging to a file
*/
void pr_openlog(const char *filename)
{
if (!filename)
return;
log_file = fopen(filename, "w");
if (!log_file) {
pr_err("Cannot open log file %s\n", filename);
return;
}
}
static int pr_msg(
FILE *fp,
const uint64_t flag,
const char *const fmt,
va_list ap) FORMAT(printf, 3, 0);
/*
* pr_msg_lockable()
* print some debug or info messages with locking
*/
static int pr_msg(
FILE *fp,
const uint64_t flag,
const char *const fmt,
va_list ap)
{
int ret = 0;
char ts[32];
pr_lock();
if (g_opt_flags & OPT_FLAGS_TIMESTAMP) {
struct timeval tv;
static const char empty_ts[] = "xx-xx-xx.xxx ";
if (gettimeofday(&tv, NULL) < 0) {
strncpy(ts, empty_ts, sizeof(ts));
} else {
time_t t = tv.tv_sec;
struct tm *tm;
tm = localtime(&t);
if (tm) {
(void)snprintf(ts, sizeof(ts), "%2.2d:%2.2d:%2.2d.%2.2ld ",
tm->tm_hour, tm->tm_min, tm->tm_sec,
(long)tv.tv_usec / 10000);
} else {
strncpy(ts, empty_ts, sizeof(ts));
}
}
} else {
*ts = '\0';
}
if ((flag & (PR_FAIL | PR_WARN)) || (g_opt_flags & flag)) {
char buf[4096];
const char *type = "";
if (flag & PR_ERROR)
type = "error:";
if (flag & PR_DEBUG)
type = "debug:";
if (flag & PR_INFO)
type = "info: ";
if (flag & PR_FAIL)
type = "fail: ";
if (flag & PR_WARN)
type = "warn: ";
if (flag & PR_METRICS)
type = "metrc:";
if (g_opt_flags & OPT_FLAGS_LOG_BRIEF) {
size_t n = (size_t)vsnprintf(buf, sizeof(buf), fmt, ap);
if (log_file) {
VOID_RET(size_t, fwrite(buf, 1, n, log_file));
(void)fflush(log_file);
}
VOID_RET(size_t, fwrite(buf, 1, n, fp));
} else {
size_t n = (size_t)snprintf(buf, sizeof(buf), "%s%s [%d] ",
ts, type, (int)getpid());
ret = vsnprintf(buf + n, sizeof(buf) - n, fmt, ap);
(void)fprintf(fp, "%s: %s", g_app_name, buf);
if (log_file) {
(void)fprintf(log_file, "%s: %s", g_app_name, buf);
(void)fflush(log_file);
}
}
(void)fflush(fp);
if (flag & PR_FAIL) {
abort_fails++;
if (abort_fails >= ABORT_FAILURES) {
if (!abort_msg_emitted) {
abort_msg_emitted = true;
keep_stressing_set_flag(false);
(void)fprintf(fp, "info: %d failures "
"reached, aborting stress "
"process\n", ABORT_FAILURES);
(void)fflush(fp);
}
}
}
#if defined(HAVE_SYSLOG_H)
/* Log messages if syslog requested, don't log DEBUG */
if ((g_opt_flags & OPT_FLAGS_SYSLOG) &&
(!(flag & PR_DEBUG))) {
syslog(LOG_INFO, "%s", buf);
}
#endif
}
pr_unlock();
return ret;
}
/*
* pr_dbg()
* print debug messages
*/
void pr_dbg(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
(void)pr_msg(pr_file(), PR_DEBUG, fmt, ap);
va_end(ap);
}
/*
* pr_dbg_info()
* print debug message, don't print if skip silent is enabled
*/
void pr_dbg_skip(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
if (!(g_opt_flags & OPT_FLAGS_SKIP_SILENT))
(void)pr_msg(pr_file(), PR_DEBUG, fmt, ap);
va_end(ap);
}
/*
* pr_inf()
* print info messages
*/
void pr_inf(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
(void)pr_msg(pr_file(), PR_INFO, fmt, ap);
va_end(ap);
}
/*
* pr_inf_skip()
* print info message, don't print if skip silent is enabled
*/
void pr_inf_skip(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
if (!(g_opt_flags & OPT_FLAGS_SKIP_SILENT))
(void)pr_msg(pr_file(), PR_INFO, fmt, ap);
va_end(ap);
}
/*
* pr_err()
* print error messages
*/
void pr_err(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
(void)pr_msg(pr_file(), PR_ERROR, fmt, ap);
va_end(ap);
}
/*
* pr_err_skip()
* print error messages, don't print if skip silent is enabled
*/
void pr_err_skip(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
if (!(g_opt_flags & OPT_FLAGS_SKIP_SILENT))
(void)pr_msg(pr_file(), PR_ERROR, fmt, ap);
va_end(ap);
}
/*
* pr_fail()
* print failure messages
*/
void pr_fail(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
(void)pr_msg(pr_file(), PR_FAIL, fmt, ap);
va_end(ap);
}
/*
* pr_tidy()
* print tidy up error messages
*/
void pr_tidy(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
(void)pr_msg(pr_file(), g_caught_signal ? PR_INFO : PR_DEBUG, fmt, ap);
va_end(ap);
}
/*
* pr_warn()
* print warning messages
*/
void pr_warn(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
(void)pr_msg(pr_file(), PR_WARN, fmt, ap);
va_end(ap);
}
/*
* pr_warn_skip()
* print warn message, don't print if skip silent is enabled
*/
void pr_warn_skip(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
if (!(g_opt_flags & OPT_FLAGS_SKIP_SILENT))
(void)pr_msg(pr_file(), PR_WARN, fmt, ap);
va_end(ap);
}
/*
* pr_metrics()
* print metrics messages
*/
void pr_metrics(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
(void)pr_msg(pr_file(), PR_METRICS, fmt, ap);
va_end(ap);
}