]> git.ipfire.org Git - thirdparty/util-linux.git/blob - sys-utils/dmesg.c
misc: consolidate version printing and close_stdout()
[thirdparty/util-linux.git] / sys-utils / dmesg.c
1 /*
2 * dmesg.c -- Print out the contents of the kernel ring buffer
3 *
4 * Copyright (C) 1993 Theodore Ts'o <tytso@athena.mit.edu>
5 * Copyright (C) 2011 Karel Zak <kzak@redhat.com>
6 *
7 * This program comes with ABSOLUTELY NO WARRANTY.
8 */
9 #include <stdio.h>
10 #include <getopt.h>
11 #include <stdlib.h>
12 #include <sys/klog.h>
13 #include <sys/syslog.h>
14 #include <sys/time.h>
15 #include <sys/sysinfo.h>
16 #include <ctype.h>
17 #include <time.h>
18 #include <sys/mman.h>
19 #include <sys/types.h>
20 #include <sys/stat.h>
21 #include <unistd.h>
22 #include <fcntl.h>
23
24 #include "c.h"
25 #include "colors.h"
26 #include "nls.h"
27 #include "strutils.h"
28 #include "xalloc.h"
29 #include "widechar.h"
30 #include "all-io.h"
31 #include "bitops.h"
32 #include "closestream.h"
33 #include "optutils.h"
34 #include "timeutils.h"
35 #include "monotonic.h"
36 #include "mangle.h"
37 #include "pager.h"
38
39 /* Close the log. Currently a NOP. */
40 #define SYSLOG_ACTION_CLOSE 0
41 /* Open the log. Currently a NOP. */
42 #define SYSLOG_ACTION_OPEN 1
43 /* Read from the log. */
44 #define SYSLOG_ACTION_READ 2
45 /* Read all messages remaining in the ring buffer. (allowed for non-root) */
46 #define SYSLOG_ACTION_READ_ALL 3
47 /* Read and clear all messages remaining in the ring buffer */
48 #define SYSLOG_ACTION_READ_CLEAR 4
49 /* Clear ring buffer. */
50 #define SYSLOG_ACTION_CLEAR 5
51 /* Disable printk's to console */
52 #define SYSLOG_ACTION_CONSOLE_OFF 6
53 /* Enable printk's to console */
54 #define SYSLOG_ACTION_CONSOLE_ON 7
55 /* Set level of messages printed to console */
56 #define SYSLOG_ACTION_CONSOLE_LEVEL 8
57 /* Return number of unread characters in the log buffer */
58 #define SYSLOG_ACTION_SIZE_UNREAD 9
59 /* Return size of the log buffer */
60 #define SYSLOG_ACTION_SIZE_BUFFER 10
61
62 /*
63 * Color scheme
64 */
65 struct dmesg_color {
66 const char *scheme; /* name used in termina-colors.d/dmesg.scheme */
67 const char *dflt; /* default color ESC sequence */
68 };
69
70 enum {
71 DMESG_COLOR_SUBSYS,
72 DMESG_COLOR_TIME,
73 DMESG_COLOR_TIMEBREAK,
74 DMESG_COLOR_ALERT,
75 DMESG_COLOR_CRIT,
76 DMESG_COLOR_ERR,
77 DMESG_COLOR_WARN,
78 DMESG_COLOR_SEGFAULT
79 };
80
81 static const struct dmesg_color colors[] =
82 {
83 [DMESG_COLOR_SUBSYS] = { "subsys", UL_COLOR_BROWN },
84 [DMESG_COLOR_TIME] = { "time", UL_COLOR_GREEN },
85 [DMESG_COLOR_TIMEBREAK] = { "timebreak",UL_COLOR_GREEN UL_COLOR_BOLD },
86 [DMESG_COLOR_ALERT] = { "alert", UL_COLOR_REVERSE UL_COLOR_RED },
87 [DMESG_COLOR_CRIT] = { "crit", UL_COLOR_BOLD UL_COLOR_RED },
88 [DMESG_COLOR_ERR] = { "err", UL_COLOR_RED },
89 [DMESG_COLOR_WARN] = { "warn", UL_COLOR_BOLD },
90 [DMESG_COLOR_SEGFAULT] = { "segfault", UL_COLOR_HALFBRIGHT UL_COLOR_RED }
91 };
92
93 #define dmesg_enable_color(_id) \
94 color_scheme_enable(colors[_id].scheme, colors[_id].dflt);
95
96 /*
97 * Priority and facility names
98 */
99 struct dmesg_name {
100 const char *name;
101 const char *help;
102 };
103
104 /*
105 * Priority names -- based on sys/syslog.h
106 */
107 static const struct dmesg_name level_names[] =
108 {
109 [LOG_EMERG] = { "emerg", N_("system is unusable") },
110 [LOG_ALERT] = { "alert", N_("action must be taken immediately") },
111 [LOG_CRIT] = { "crit", N_("critical conditions") },
112 [LOG_ERR] = { "err", N_("error conditions") },
113 [LOG_WARNING] = { "warn", N_("warning conditions") },
114 [LOG_NOTICE] = { "notice",N_("normal but significant condition") },
115 [LOG_INFO] = { "info", N_("informational") },
116 [LOG_DEBUG] = { "debug", N_("debug-level messages") }
117 };
118
119 /*
120 * sys/syslog.h uses (f << 3) for all facility codes.
121 * We want to use the codes as array indexes, so shift back...
122 *
123 * Note that libc LOG_FAC() macro returns the base codes, not the
124 * shifted code :-)
125 */
126 #define FAC_BASE(f) ((f) >> 3)
127
128 static const struct dmesg_name facility_names[] =
129 {
130 [FAC_BASE(LOG_KERN)] = { "kern", N_("kernel messages") },
131 [FAC_BASE(LOG_USER)] = { "user", N_("random user-level messages") },
132 [FAC_BASE(LOG_MAIL)] = { "mail", N_("mail system") },
133 [FAC_BASE(LOG_DAEMON)] = { "daemon", N_("system daemons") },
134 [FAC_BASE(LOG_AUTH)] = { "auth", N_("security/authorization messages") },
135 [FAC_BASE(LOG_SYSLOG)] = { "syslog", N_("messages generated internally by syslogd") },
136 [FAC_BASE(LOG_LPR)] = { "lpr", N_("line printer subsystem") },
137 [FAC_BASE(LOG_NEWS)] = { "news", N_("network news subsystem") },
138 [FAC_BASE(LOG_UUCP)] = { "uucp", N_("UUCP subsystem") },
139 [FAC_BASE(LOG_CRON)] = { "cron", N_("clock daemon") },
140 [FAC_BASE(LOG_AUTHPRIV)] = { "authpriv", N_("security/authorization messages (private)") },
141 [FAC_BASE(LOG_FTP)] = { "ftp", N_("FTP daemon") },
142 };
143
144 /* supported methods to read message buffer
145 */
146 enum {
147 DMESG_METHOD_KMSG, /* read messages from /dev/kmsg (default) */
148 DMESG_METHOD_SYSLOG, /* klogctl() buffer */
149 DMESG_METHOD_MMAP /* mmap file with records (see --file) */
150 };
151
152 enum {
153 DMESG_TIMEFTM_NONE = 0,
154 DMESG_TIMEFTM_CTIME, /* [ctime] */
155 DMESG_TIMEFTM_CTIME_DELTA, /* [ctime <delta>] */
156 DMESG_TIMEFTM_DELTA, /* [<delta>] */
157 DMESG_TIMEFTM_RELTIME, /* [relative] */
158 DMESG_TIMEFTM_TIME, /* [time] */
159 DMESG_TIMEFTM_TIME_DELTA, /* [time <delta>] */
160 DMESG_TIMEFTM_ISO8601 /* 2013-06-13T22:11:00,123456+0100 */
161 };
162 #define is_timefmt(c, f) ((c)->time_fmt == (DMESG_TIMEFTM_ ##f))
163
164 struct dmesg_control {
165 /* bit arrays -- see include/bitops.h */
166 char levels[ARRAY_SIZE(level_names) / NBBY + 1];
167 char facilities[ARRAY_SIZE(facility_names) / NBBY + 1];
168
169 struct timeval lasttime; /* last printed timestamp */
170 struct tm lasttm; /* last localtime */
171 struct timeval boot_time; /* system boot time */
172
173 int action; /* SYSLOG_ACTION_* */
174 int method; /* DMESG_METHOD_* */
175
176 size_t bufsize; /* size of syslog buffer */
177
178 int kmsg; /* /dev/kmsg file descriptor */
179 ssize_t kmsg_first_read;/* initial read() return code */
180 char kmsg_buf[BUFSIZ];/* buffer to read kmsg data */
181
182 /*
183 * For the --file option we mmap whole file. The unnecessary (already
184 * printed) pages are always unmapped. The result is that we have in
185 * memory only the currently used page(s).
186 */
187 char *filename;
188 char *mmap_buff;
189 size_t pagesize;
190 unsigned int time_fmt; /* time format */
191
192 unsigned int follow:1, /* wait for new messages */
193 raw:1, /* raw mode */
194 fltr_lev:1, /* filter out by levels[] */
195 fltr_fac:1, /* filter out by facilities[] */
196 decode:1, /* use "facility: level: " prefix */
197 pager:1, /* pipe output into a pager */
198 color:1, /* colorize messages */
199 force_prefix:1; /* force timestamp and decode prefix
200 on each line */
201 int indent; /* due to timestamps if newline */
202 };
203
204 struct dmesg_record {
205 const char *mesg;
206 size_t mesg_size;
207
208 int level;
209 int facility;
210 struct timeval tv;
211
212 const char *next; /* buffer with next unparsed record */
213 size_t next_size; /* size of the next buffer */
214 };
215
216 #define INIT_DMESG_RECORD(_r) do { \
217 (_r)->mesg = NULL; \
218 (_r)->mesg_size = 0; \
219 (_r)->facility = -1; \
220 (_r)->level = -1; \
221 (_r)->tv.tv_sec = 0; \
222 (_r)->tv.tv_usec = 0; \
223 } while (0)
224
225 static int read_kmsg(struct dmesg_control *ctl);
226
227 static int set_level_color(int log_level, const char *mesg, size_t mesgsz)
228 {
229 int id = -1;
230
231 switch (log_level) {
232 case LOG_ALERT:
233 id = DMESG_COLOR_ALERT;
234 break;
235 case LOG_CRIT:
236 id = DMESG_COLOR_CRIT;
237 break;
238 case LOG_ERR:
239 id = DMESG_COLOR_ERR;
240 break;
241 case LOG_WARNING:
242 id = DMESG_COLOR_WARN;
243 break;
244 default:
245 break;
246 }
247
248 /* well, sometimes the messages contains important keywords, but in
249 * non-warning/error messages
250 */
251 if (id < 0 && memmem(mesg, mesgsz, "segfault at", 11))
252 id = DMESG_COLOR_SEGFAULT;
253
254 if (id >= 0)
255 dmesg_enable_color(id);
256
257 return id >= 0 ? 0 : -1;
258 }
259
260 static void __attribute__((__noreturn__)) usage(void)
261 {
262 FILE *out = stdout;
263 size_t i;
264
265 fputs(USAGE_HEADER, out);
266 fprintf(out, _(" %s [options]\n"), program_invocation_short_name);
267
268 fputs(USAGE_SEPARATOR, out);
269 fputs(_("Display or control the kernel ring buffer.\n"), out);
270
271 fputs(USAGE_OPTIONS, out);
272 fputs(_(" -C, --clear clear the kernel ring buffer\n"), out);
273 fputs(_(" -c, --read-clear read and clear all messages\n"), out);
274 fputs(_(" -D, --console-off disable printing messages to console\n"), out);
275 fputs(_(" -E, --console-on enable printing messages to console\n"), out);
276 fputs(_(" -F, --file <file> use the file instead of the kernel log buffer\n"), out);
277 fputs(_(" -f, --facility <list> restrict output to defined facilities\n"), out);
278 fputs(_(" -H, --human human readable output\n"), out);
279 fputs(_(" -k, --kernel display kernel messages\n"), out);
280 fputs(_(" -L, --color[=<when>] colorize messages (auto, always or never)\n"), out);
281 fprintf(out,
282 " %s\n", USAGE_COLORS_DEFAULT);
283 fputs(_(" -l, --level <list> restrict output to defined levels\n"), out);
284 fputs(_(" -n, --console-level <level> set level of messages printed to console\n"), out);
285 fputs(_(" -P, --nopager do not pipe output into a pager\n"), out);
286 fputs(_(" -p, --force-prefix force timestamp output on each line of multi-line messages\n"), out);
287 fputs(_(" -r, --raw print the raw message buffer\n"), out);
288 fputs(_(" -S, --syslog force to use syslog(2) rather than /dev/kmsg\n"), out);
289 fputs(_(" -s, --buffer-size <size> buffer size to query the kernel ring buffer\n"), out);
290 fputs(_(" -u, --userspace display userspace messages\n"), out);
291 fputs(_(" -w, --follow wait for new messages\n"), out);
292 fputs(_(" -x, --decode decode facility and level to readable string\n"), out);
293 fputs(_(" -d, --show-delta show time delta between printed messages\n"), out);
294 fputs(_(" -e, --reltime show local time and time delta in readable format\n"), out);
295 fputs(_(" -T, --ctime show human-readable timestamp (may be inaccurate!)\n"), out);
296 fputs(_(" -t, --notime don't show any timestamp with messages\n"), out);
297 fputs(_(" --time-format <format> show timestamp using the given format:\n"
298 " [delta|reltime|ctime|notime|iso]\n"
299 "Suspending/resume will make ctime and iso timestamps inaccurate.\n"), out);
300 fputs(USAGE_SEPARATOR, out);
301 printf(USAGE_HELP_OPTIONS(29));
302 fputs(_("\nSupported log facilities:\n"), out);
303 for (i = 0; i < ARRAY_SIZE(level_names); i++)
304 fprintf(out, " %7s - %s\n",
305 facility_names[i].name,
306 _(facility_names[i].help));
307
308 fputs(_("\nSupported log levels (priorities):\n"), out);
309 for (i = 0; i < ARRAY_SIZE(level_names); i++)
310 fprintf(out, " %7s - %s\n",
311 level_names[i].name,
312 _(level_names[i].help));
313
314 printf(USAGE_MAN_TAIL("dmesg(1)"));
315 exit(EXIT_SUCCESS);
316 }
317
318 /*
319 * LEVEL ::= <number> | <name>
320 * <number> ::= @len is set: number in range <0..N>, where N < ARRAY_SIZE(level_names)
321 * ::= @len not set: number in range <1..N>, where N <= ARRAY_SIZE(level_names)
322 * <name> ::= case-insensitive text
323 *
324 * Note that @len argument is not set when parsing "-n <level>" command line
325 * option. The console_level is interpreted as "log level less than the value".
326 *
327 * For example "dmesg -n 8" or "dmesg -n debug" enables debug console log
328 * level by klogctl(SYSLOG_ACTION_CONSOLE_LEVEL, NULL, 8). The @str argument
329 * has to be parsed to number in range <1..8>.
330 */
331 static int parse_level(const char *str, size_t len)
332 {
333 int offset = 0;
334
335 if (!str)
336 return -1;
337 if (!len) {
338 len = strlen(str);
339 offset = 1;
340 }
341 errno = 0;
342
343 if (isdigit(*str)) {
344 char *end = NULL;
345 long x = strtol(str, &end, 10) - offset;
346
347 if (!errno && end && end > str && (size_t) (end - str) == len &&
348 x >= 0 && (size_t) x < ARRAY_SIZE(level_names))
349 return x + offset;
350 } else {
351 size_t i;
352
353 for (i = 0; i < ARRAY_SIZE(level_names); i++) {
354 const char *n = level_names[i].name;
355
356 if (strncasecmp(str, n, len) == 0 && *(n + len) == '\0')
357 return i + offset;
358 }
359 }
360
361 if (errno)
362 err(EXIT_FAILURE, _("failed to parse level '%s'"), str);
363
364 errx(EXIT_FAILURE, _("unknown level '%s'"), str);
365 return -1;
366 }
367
368 /*
369 * FACILITY ::= <number> | <name>
370 * <number> ::= number in range <0..N>, where N < ARRAY_SIZE(facility_names)
371 * <name> ::= case-insensitive text
372 */
373 static int parse_facility(const char *str, size_t len)
374 {
375 if (!str)
376 return -1;
377 if (!len)
378 len = strlen(str);
379 errno = 0;
380
381 if (isdigit(*str)) {
382 char *end = NULL;
383 long x = strtol(str, &end, 10);
384
385 if (!errno && end && end > str && (size_t) (end - str) == len &&
386 x >= 0 && (size_t) x < ARRAY_SIZE(facility_names))
387 return x;
388 } else {
389 size_t i;
390
391 for (i = 0; i < ARRAY_SIZE(facility_names); i++) {
392 const char *n = facility_names[i].name;
393
394 if (strncasecmp(str, n, len) == 0 && *(n + len) == '\0')
395 return i;
396 }
397 }
398
399 if (errno)
400 err(EXIT_FAILURE, _("failed to parse facility '%s'"), str);
401
402 errx(EXIT_FAILURE, _("unknown facility '%s'"), str);
403 return -1;
404 }
405
406 /*
407 * Parses numerical prefix used for all messages in kernel ring buffer.
408 *
409 * Priorities/facilities are encoded into a single 32-bit quantity, where the
410 * bottom 3 bits are the priority (0-7) and the top 28 bits are the facility
411 * (0-big number).
412 *
413 * Note that the number has to end with '>' or ',' char.
414 */
415 static const char *parse_faclev(const char *str, int *fac, int *lev)
416 {
417 long num;
418 char *end = NULL;
419
420 if (!str)
421 return str;
422
423 errno = 0;
424 num = strtol(str, &end, 10);
425
426 if (!errno && end && end > str) {
427 *fac = LOG_FAC(num);
428 *lev = LOG_PRI(num);
429
430 if (*lev < 0 || (size_t) *lev > ARRAY_SIZE(level_names))
431 *lev = -1;
432 if (*fac < 0 || (size_t) *fac > ARRAY_SIZE(facility_names))
433 *fac = -1;
434 return end + 1; /* skip '<' or ',' */
435 }
436
437 return str;
438 }
439
440 /*
441 * Parses timestamp from syslog message prefix, expected format:
442 *
443 * seconds.microseconds]
444 *
445 * the ']' is the timestamp field terminator.
446 */
447 static const char *parse_syslog_timestamp(const char *str0, struct timeval *tv)
448 {
449 const char *str = str0;
450 char *end = NULL;
451
452 if (!str0)
453 return str0;
454
455 errno = 0;
456 tv->tv_sec = strtol(str, &end, 10);
457
458 if (!errno && end && *end == '.' && *(end + 1)) {
459 str = end + 1;
460 end = NULL;
461 tv->tv_usec = strtol(str, &end, 10);
462 }
463 if (errno || !end || end == str || *end != ']')
464 return str0;
465
466 return end + 1; /* skip ']' */
467 }
468
469 /*
470 * Parses timestamp from /dev/kmsg, expected formats:
471 *
472 * microseconds,
473 * microseconds;
474 *
475 * the ',' is fields separators and ';' items terminator (for the last item)
476 */
477 static const char *parse_kmsg_timestamp(const char *str0, struct timeval *tv)
478 {
479 const char *str = str0;
480 char *end = NULL;
481 uint64_t usec;
482
483 if (!str0)
484 return str0;
485
486 errno = 0;
487 usec = strtoumax(str, &end, 10);
488
489 if (!errno && end && (*end == ';' || *end == ',')) {
490 tv->tv_usec = usec % 1000000;
491 tv->tv_sec = usec / 1000000;
492 } else
493 return str0;
494
495 return end + 1; /* skip separator */
496 }
497
498
499 static double time_diff(struct timeval *a, struct timeval *b)
500 {
501 return (a->tv_sec - b->tv_sec) + (a->tv_usec - b->tv_usec) / 1E6;
502 }
503
504 static int get_syslog_buffer_size(void)
505 {
506 int n = klogctl(SYSLOG_ACTION_SIZE_BUFFER, NULL, 0);
507
508 return n > 0 ? n : 0;
509 }
510
511 /*
512 * Reads messages from regular file by mmap
513 */
514 static ssize_t mmap_file_buffer(struct dmesg_control *ctl, char **buf)
515 {
516 struct stat st;
517 int fd;
518
519 if (!ctl->filename)
520 return -1;
521
522 fd = open(ctl->filename, O_RDONLY);
523 if (fd < 0)
524 err(EXIT_FAILURE, _("cannot open %s"), ctl->filename);
525 if (fstat(fd, &st))
526 err(EXIT_FAILURE, _("stat of %s failed"), ctl->filename);
527
528 *buf = mmap(NULL, st.st_size, PROT_READ, MAP_SHARED, fd, 0);
529 if (*buf == MAP_FAILED)
530 err(EXIT_FAILURE, _("cannot mmap: %s"), ctl->filename);
531 ctl->mmap_buff = *buf;
532 ctl->pagesize = getpagesize();
533 close(fd);
534
535 return st.st_size;
536 }
537
538 /*
539 * Reads messages from kernel ring buffer by klogctl()
540 */
541 static ssize_t read_syslog_buffer(struct dmesg_control *ctl, char **buf)
542 {
543 size_t sz;
544 int rc = -1;
545
546 if (ctl->bufsize) {
547 sz = ctl->bufsize + 8;
548 *buf = xmalloc(sz * sizeof(char));
549 rc = klogctl(ctl->action, *buf, sz);
550 } else {
551 sz = 16392;
552 while (1) {
553 *buf = xmalloc(sz * sizeof(char));
554 rc = klogctl(SYSLOG_ACTION_READ_ALL, *buf, sz);
555 if (rc < 0)
556 break;
557 if ((size_t) rc != sz || sz > (1 << 28))
558 break;
559 free(*buf);
560 *buf = NULL;
561 sz *= 4;
562 }
563
564 if (rc > 0 && ctl->action == SYSLOG_ACTION_READ_CLEAR)
565 rc = klogctl(SYSLOG_ACTION_READ_CLEAR, *buf, sz);
566 }
567
568 return rc;
569 }
570
571 /*
572 * Top level function to read messages
573 */
574 static ssize_t read_buffer(struct dmesg_control *ctl, char **buf)
575 {
576 ssize_t n = -1;
577
578 switch (ctl->method) {
579 case DMESG_METHOD_MMAP:
580 n = mmap_file_buffer(ctl, buf);
581 break;
582 case DMESG_METHOD_SYSLOG:
583 if (!ctl->bufsize)
584 ctl->bufsize = get_syslog_buffer_size();
585
586 n = read_syslog_buffer(ctl, buf);
587 break;
588 case DMESG_METHOD_KMSG:
589 /*
590 * Since kernel 3.5.0
591 */
592 n = read_kmsg(ctl);
593 if (n == 0 && ctl->action == SYSLOG_ACTION_READ_CLEAR)
594 n = klogctl(SYSLOG_ACTION_CLEAR, NULL, 0);
595 break;
596 default:
597 abort(); /* impossible method -> drop core */
598 }
599
600 return n;
601 }
602
603 static int fwrite_hex(const char *buf, size_t size, FILE *out)
604 {
605 size_t i;
606
607 for (i = 0; i < size; i++) {
608 int rc = fprintf(out, "\\x%02hhx", buf[i]);
609 if (rc < 0)
610 return rc;
611 }
612 return 0;
613 }
614
615 /*
616 * Prints to 'out' and non-printable chars are replaced with \x<hex> sequences.
617 */
618 static void safe_fwrite(const char *buf, size_t size, int indent, FILE *out)
619 {
620 size_t i;
621 #ifdef HAVE_WIDECHAR
622 mbstate_t s;
623 memset(&s, 0, sizeof (s));
624 #endif
625 for (i = 0; i < size; i++) {
626 const char *p = buf + i;
627 int rc, hex = 0;
628 size_t len;
629
630 #ifdef HAVE_WIDECHAR
631 wchar_t wc;
632 len = mbrtowc(&wc, p, size - i, &s);
633
634 if (len == 0) /* L'\0' */
635 return;
636
637 if (len == (size_t)-1 || len == (size_t)-2) { /* invalid sequence */
638 memset(&s, 0, sizeof (s));
639 len = hex = 1;
640 } else if (len > 1 && !iswprint(wc)) { /* non-printable multibyte */
641 hex = 1;
642 }
643 i += len - 1;
644 #else
645 len = 1;
646 if (!isprint((unsigned char) *p) &&
647 !isspace((unsigned char) *p)) /* non-printable */
648 hex = 1;
649 #endif
650 if (hex)
651 rc = fwrite_hex(p, len, out);
652 else if (*p == '\n' && *(p + 1) && indent) {
653 rc = fwrite(p, 1, len, out) != len;
654 if (fprintf(out, "%*s", indent, "") != indent)
655 rc |= 1;
656 }
657 else
658 rc = fwrite(p, 1, len, out) != len;
659 if (rc != 0) {
660 if (errno != EPIPE)
661 err(EXIT_FAILURE, _("write failed"));
662 exit(EXIT_SUCCESS);
663 }
664 }
665 }
666
667 static const char *skip_item(const char *begin, const char *end, const char *sep)
668 {
669 while (begin < end) {
670 int c = *begin++;
671
672 if (c == '\0' || strchr(sep, c))
673 break;
674 }
675
676 return begin;
677 }
678
679 /*
680 * Parses one record from syslog(2) buffer
681 */
682 static int get_next_syslog_record(struct dmesg_control *ctl,
683 struct dmesg_record *rec)
684 {
685 size_t i;
686 const char *begin = NULL;
687
688 if (ctl->method != DMESG_METHOD_MMAP &&
689 ctl->method != DMESG_METHOD_SYSLOG)
690 return -1;
691
692 if (!rec->next || !rec->next_size)
693 return 1;
694
695 INIT_DMESG_RECORD(rec);
696
697 /*
698 * Unmap already printed file data from memory
699 */
700 if (ctl->mmap_buff && (size_t) (rec->next - ctl->mmap_buff) > ctl->pagesize) {
701 void *x = ctl->mmap_buff;
702
703 ctl->mmap_buff += ctl->pagesize;
704 munmap(x, ctl->pagesize);
705 }
706
707 for (i = 0; i < rec->next_size; i++) {
708 const char *p = rec->next + i;
709 const char *end = NULL;
710
711 if (!begin)
712 begin = p;
713 if (i + 1 == rec->next_size) {
714 end = p + 1;
715 i++;
716 } else if (*p == '\n' && *(p + 1) == '<')
717 end = p;
718
719 if (begin && !*begin)
720 begin = NULL; /* zero(s) at the end of the buffer? */
721 if (!begin || !end)
722 continue;
723 if (end <= begin)
724 continue; /* error or empty line? */
725
726 if (*begin == '<') {
727 if (ctl->fltr_lev || ctl->fltr_fac || ctl->decode || ctl->color)
728 begin = parse_faclev(begin + 1, &rec->facility,
729 &rec->level);
730 else
731 begin = skip_item(begin, end, ">");
732 }
733
734 if (*begin == '[' && (*(begin + 1) == ' ' ||
735 isdigit(*(begin + 1)))) {
736
737 if (!is_timefmt(ctl, NONE))
738 begin = parse_syslog_timestamp(begin + 1, &rec->tv);
739 else
740 begin = skip_item(begin, end, "]");
741
742 if (begin < end && *begin == ' ')
743 begin++;
744 }
745
746 rec->mesg = begin;
747 rec->mesg_size = end - begin;
748
749 /* Don't count \n from the last message to the message size */
750 if (*end != '\n' && *(end - 1) == '\n')
751 rec->mesg_size--;
752
753 rec->next_size -= end - rec->next;
754 rec->next = rec->next_size > 0 ? end + 1 : NULL;
755 if (rec->next_size > 0)
756 rec->next_size--;
757
758 return 0;
759 }
760
761 return 1;
762 }
763
764 static int accept_record(struct dmesg_control *ctl, struct dmesg_record *rec)
765 {
766 if (ctl->fltr_lev && (rec->facility < 0 ||
767 !isset(ctl->levels, rec->level)))
768 return 0;
769
770 if (ctl->fltr_fac && (rec->facility < 0 ||
771 !isset(ctl->facilities, rec->facility)))
772 return 0;
773
774 return 1;
775 }
776
777 static void raw_print(struct dmesg_control *ctl, const char *buf, size_t size)
778 {
779 int lastc = '\n';
780
781 if (!ctl->mmap_buff) {
782 /*
783 * Print whole ring buffer
784 */
785 safe_fwrite(buf, size, 0, stdout);
786 lastc = buf[size - 1];
787 } else {
788 /*
789 * Print file in small chunks to save memory
790 */
791 while (size) {
792 size_t sz = size > ctl->pagesize ? ctl->pagesize : size;
793 char *x = ctl->mmap_buff;
794
795 safe_fwrite(x, sz, 0, stdout);
796 lastc = x[sz - 1];
797 size -= sz;
798 ctl->mmap_buff += sz;
799 munmap(x, sz);
800 }
801 }
802
803 if (lastc != '\n')
804 putchar('\n');
805 }
806
807 static struct tm *record_localtime(struct dmesg_control *ctl,
808 struct dmesg_record *rec,
809 struct tm *tm)
810 {
811 time_t t = ctl->boot_time.tv_sec + rec->tv.tv_sec;
812 return localtime_r(&t, tm);
813 }
814
815 static char *record_ctime(struct dmesg_control *ctl,
816 struct dmesg_record *rec,
817 char *buf, size_t bufsiz)
818 {
819 struct tm tm;
820
821 record_localtime(ctl, rec, &tm);
822
823 if (strftime(buf, bufsiz, "%a %b %e %H:%M:%S %Y", &tm) == 0)
824 *buf = '\0';
825 return buf;
826 }
827
828 static char *short_ctime(struct tm *tm, char *buf, size_t bufsiz)
829 {
830 if (strftime(buf, bufsiz, "%b%e %H:%M", tm) == 0)
831 *buf = '\0';
832 return buf;
833 }
834
835 static char *iso_8601_time(struct dmesg_control *ctl, struct dmesg_record *rec,
836 char *buf, size_t bufsz)
837 {
838 struct timeval tv = {
839 .tv_sec = ctl->boot_time.tv_sec + rec->tv.tv_sec,
840 .tv_usec = rec->tv.tv_usec
841 };
842
843 if (strtimeval_iso(&tv, ISO_TIMESTAMP_COMMA_T, buf, bufsz) != 0)
844 return NULL;
845
846 return buf;
847 }
848
849 static double record_count_delta(struct dmesg_control *ctl,
850 struct dmesg_record *rec)
851 {
852 double delta = 0;
853
854 if (timerisset(&ctl->lasttime))
855 delta = time_diff(&rec->tv, &ctl->lasttime);
856
857 ctl->lasttime = rec->tv;
858 return delta;
859 }
860
861 static const char *get_subsys_delimiter(const char *mesg, size_t mesg_size)
862 {
863 const char *p = mesg;
864 size_t sz = mesg_size;
865
866 while (sz > 0) {
867 const char *d = strnchr(p, sz, ':');
868 if (!d)
869 return NULL;
870 sz -= d - p + 1;
871 if (sz) {
872 if (isblank(*(d + 1)))
873 return d;
874 p = d + 1;
875 }
876 }
877 return NULL;
878 }
879
880 static void print_record(struct dmesg_control *ctl,
881 struct dmesg_record *rec)
882 {
883 char buf[128];
884 char fpbuf[32] = "\0";
885 char tsbuf[64] = "\0";
886 size_t mesg_size = rec->mesg_size;
887 int timebreak = 0;
888 char *mesg_copy = NULL;
889 const char *line = NULL;
890
891 if (!accept_record(ctl, rec))
892 return;
893
894 if (!rec->mesg_size) {
895 putchar('\n');
896 return;
897 }
898
899 /*
900 * Compose syslog(2) compatible raw output -- used for /dev/kmsg for
901 * backward compatibility with syslog(2) buffers only
902 */
903 if (ctl->raw) {
904 ctl->indent = snprintf(tsbuf, sizeof(tsbuf),
905 "<%d>[%5ld.%06ld] ",
906 LOG_MAKEPRI(rec->facility, rec->level),
907 (long) rec->tv.tv_sec,
908 (long) rec->tv.tv_usec);
909 goto full_output;
910 }
911
912 /* Store decode information (facility & priority level) in a buffer */
913 if (ctl->decode &&
914 (rec->level > -1) && (rec->level < (int) ARRAY_SIZE(level_names)) &&
915 (rec->facility > -1) &&
916 (rec->facility < (int) ARRAY_SIZE(facility_names)))
917 snprintf(fpbuf, sizeof(fpbuf), "%-6s:%-6s: ",
918 facility_names[rec->facility].name,
919 level_names[rec->level].name);
920
921 /* Store the timestamp in a buffer */
922 switch (ctl->time_fmt) {
923 double delta;
924 struct tm cur;
925 case DMESG_TIMEFTM_NONE:
926 ctl->indent = 0;
927 break;
928 case DMESG_TIMEFTM_CTIME:
929 ctl->indent = snprintf(tsbuf, sizeof(tsbuf), "[%s] ",
930 record_ctime(ctl, rec, buf, sizeof(buf)));
931 break;
932 case DMESG_TIMEFTM_CTIME_DELTA:
933 ctl->indent = snprintf(tsbuf, sizeof(tsbuf), "[%s <%12.06f>] ",
934 record_ctime(ctl, rec, buf, sizeof(buf)),
935 record_count_delta(ctl, rec));
936 break;
937 case DMESG_TIMEFTM_DELTA:
938 ctl->indent = snprintf(tsbuf, sizeof(tsbuf), "[<%12.06f>] ",
939 record_count_delta(ctl, rec));
940 break;
941 case DMESG_TIMEFTM_RELTIME:
942 record_localtime(ctl, rec, &cur);
943 delta = record_count_delta(ctl, rec);
944 if (cur.tm_min != ctl->lasttm.tm_min ||
945 cur.tm_hour != ctl->lasttm.tm_hour ||
946 cur.tm_yday != ctl->lasttm.tm_yday) {
947 timebreak = 1;
948 ctl->indent = snprintf(tsbuf, sizeof(tsbuf), "[%s] ",
949 short_ctime(&cur, buf,
950 sizeof(buf)));
951 } else {
952 if (delta < 10)
953 ctl->indent = snprintf(tsbuf, sizeof(tsbuf),
954 "[ %+8.06f] ", delta);
955 else
956 ctl->indent = snprintf(tsbuf, sizeof(tsbuf),
957 "[ %+9.06f] ", delta);
958 }
959 ctl->lasttm = cur;
960 break;
961 case DMESG_TIMEFTM_TIME:
962 ctl->indent = snprintf(tsbuf, sizeof(tsbuf), "[%5ld.%06ld] ",
963 (long)rec->tv.tv_sec,
964 (long)rec->tv.tv_usec);
965 break;
966 case DMESG_TIMEFTM_TIME_DELTA:
967 ctl->indent = snprintf(tsbuf, sizeof(tsbuf), "[%5ld.%06ld <%12.06f>] ",
968 (long)rec->tv.tv_sec,
969 (long)rec->tv.tv_usec,
970 record_count_delta(ctl, rec));
971 break;
972 case DMESG_TIMEFTM_ISO8601:
973 ctl->indent = snprintf(tsbuf, sizeof(tsbuf), "%s ",
974 iso_8601_time(ctl, rec, buf,
975 sizeof(buf)));
976 break;
977 default:
978 abort();
979 }
980
981 ctl->indent += strlen(fpbuf);
982
983 full_output:
984 /* Output the decode information */
985 if (*fpbuf)
986 fputs(fpbuf, stdout);
987
988 /* Output the timestamp buffer */
989 if (*tsbuf) {
990 /* Colorize the timestamp */
991 if (ctl->color)
992 dmesg_enable_color(timebreak ? DMESG_COLOR_TIMEBREAK :
993 DMESG_COLOR_TIME);
994 if (ctl->time_fmt != DMESG_TIMEFTM_RELTIME) {
995 fputs(tsbuf, stdout);
996 } else {
997 /*
998 * For relative timestamping, the first line's
999 * timestamp is the offset and all other lines will
1000 * report an offset of 0.000000.
1001 */
1002 if (!line)
1003 fputs(tsbuf, stdout);
1004 else
1005 printf("[ +0.000000] ");
1006 }
1007 if (ctl->color)
1008 color_disable();
1009 }
1010
1011 /*
1012 * A kernel message may contain several lines of output, separated
1013 * by '\n'. If the timestamp and decode outputs are forced then each
1014 * line of the message must be displayed with that information.
1015 */
1016 if (ctl->force_prefix) {
1017 if (!line) {
1018 mesg_copy = xstrdup(rec->mesg);
1019 line = strtok(mesg_copy, "\n");
1020 mesg_size = strlen(line);
1021 }
1022 } else {
1023 line = rec->mesg;
1024 mesg_size = rec->mesg_size;
1025 }
1026
1027 /* Colorize kernel message output */
1028 if (ctl->color) {
1029 /* Subsystem prefix */
1030 const char *subsys = get_subsys_delimiter(line, mesg_size);
1031 int has_color = 0;
1032
1033 if (subsys) {
1034 dmesg_enable_color(DMESG_COLOR_SUBSYS);
1035 safe_fwrite(line, subsys - line, ctl->indent, stdout);
1036 color_disable();
1037
1038 mesg_size -= subsys - line;
1039 line = subsys;
1040 }
1041 /* Error, alert .. etc. colors */
1042 has_color = set_level_color(rec->level, line, mesg_size) == 0;
1043 safe_fwrite(line, mesg_size, ctl->indent, stdout);
1044 if (has_color)
1045 color_disable();
1046 } else
1047 safe_fwrite(line, mesg_size, ctl->indent, stdout);
1048
1049 /* Get the next line */
1050 if (ctl->force_prefix) {
1051 line = strtok(NULL, "\n");
1052 if (line && *line) {
1053 putchar('\n');
1054 mesg_size = strlen(line);
1055 goto full_output;
1056 }
1057 free(mesg_copy);
1058 }
1059
1060 putchar('\n');
1061 }
1062
1063 /*
1064 * Prints the 'buf' kernel ring buffer; the messages are filtered out according
1065 * to 'levels' and 'facilities' bitarrays.
1066 */
1067 static void print_buffer(struct dmesg_control *ctl,
1068 const char *buf, size_t size)
1069 {
1070 struct dmesg_record rec = { .next = buf, .next_size = size };
1071
1072 if (ctl->raw) {
1073 raw_print(ctl, buf, size);
1074 return;
1075 }
1076
1077 while (get_next_syslog_record(ctl, &rec) == 0)
1078 print_record(ctl, &rec);
1079 }
1080
1081 static ssize_t read_kmsg_one(struct dmesg_control *ctl)
1082 {
1083 ssize_t size;
1084
1085 /* kmsg returns EPIPE if record was modified while reading */
1086 do {
1087 size = read(ctl->kmsg, ctl->kmsg_buf,
1088 sizeof(ctl->kmsg_buf) - 1);
1089 } while (size < 0 && errno == EPIPE);
1090
1091 return size;
1092 }
1093
1094 static int init_kmsg(struct dmesg_control *ctl)
1095 {
1096 int mode = O_RDONLY;
1097
1098 if (!ctl->follow)
1099 mode |= O_NONBLOCK;
1100 else
1101 setlinebuf(stdout);
1102
1103 ctl->kmsg = open("/dev/kmsg", mode);
1104 if (ctl->kmsg < 0)
1105 return -1;
1106
1107 /*
1108 * Seek after the last record available at the time
1109 * the last SYSLOG_ACTION_CLEAR was issued.
1110 *
1111 * ... otherwise SYSLOG_ACTION_CLEAR will have no effect for kmsg.
1112 */
1113 lseek(ctl->kmsg, 0, SEEK_DATA);
1114
1115 /*
1116 * Old kernels (<3.5) allow to successfully open /dev/kmsg for
1117 * read-only, but read() returns -EINVAL :-(((
1118 *
1119 * Let's try to read the first record. The record is later processed in
1120 * read_kmsg().
1121 */
1122 ctl->kmsg_first_read = read_kmsg_one(ctl);
1123 if (ctl->kmsg_first_read < 0) {
1124 close(ctl->kmsg);
1125 ctl->kmsg = -1;
1126 return -1;
1127 }
1128
1129 return 0;
1130 }
1131
1132 /*
1133 * /dev/kmsg record format:
1134 *
1135 * faclev,seqnum,timestamp[optional, ...];message\n
1136 * TAGNAME=value
1137 * ...
1138 *
1139 * - fields are separated by ','
1140 * - last field is terminated by ';'
1141 *
1142 */
1143 #define LAST_KMSG_FIELD(s) (!s || !*s || *(s - 1) == ';')
1144
1145 static int parse_kmsg_record(struct dmesg_control *ctl,
1146 struct dmesg_record *rec,
1147 char *buf,
1148 size_t sz)
1149 {
1150 const char *p = buf, *end;
1151
1152 if (sz == 0 || !buf || !*buf)
1153 return -1;
1154
1155 end = buf + (sz - 1);
1156 INIT_DMESG_RECORD(rec);
1157
1158 while (p < end && isspace(*p))
1159 p++;
1160
1161 /* A) priority and facility */
1162 if (ctl->fltr_lev || ctl->fltr_fac || ctl->decode ||
1163 ctl->raw || ctl->color)
1164 p = parse_faclev(p, &rec->facility, &rec->level);
1165 else
1166 p = skip_item(p, end, ",");
1167 if (LAST_KMSG_FIELD(p))
1168 goto mesg;
1169
1170 /* B) sequence number */
1171 p = skip_item(p, end, ",;");
1172 if (LAST_KMSG_FIELD(p))
1173 goto mesg;
1174
1175 /* C) timestamp */
1176 if (is_timefmt(ctl, NONE))
1177 p = skip_item(p, end, ",;");
1178 else
1179 p = parse_kmsg_timestamp(p, &rec->tv);
1180 if (LAST_KMSG_FIELD(p))
1181 goto mesg;
1182
1183 /* D) optional fields (ignore) */
1184 p = skip_item(p, end, ";");
1185
1186 mesg:
1187 /* E) message text */
1188 rec->mesg = p;
1189 p = skip_item(p, end, "\n");
1190 if (!p)
1191 return -1;
1192
1193 /* The message text is terminated by \n, but it's possible that the
1194 * message contains another stuff behind this linebreak; in this case
1195 * the previous skip_item() returns pointer to the stuff behind \n.
1196 * Let's normalize all these situations and make sure we always point to
1197 * the \n.
1198 *
1199 * Note that the next unhexmangle_to_buffer() will replace \n by \0.
1200 */
1201 if (*p && *p != '\n')
1202 p--;
1203
1204 /*
1205 * Kernel escapes non-printable characters, unfortunately kernel
1206 * definition of "non-printable" is too strict. On UTF8 console we can
1207 * print many chars, so let's decode from kernel.
1208 */
1209 rec->mesg_size = unhexmangle_to_buffer(rec->mesg,
1210 (char *) rec->mesg, p - rec->mesg + 1);
1211
1212 rec->mesg_size--; /* don't count \0 */
1213
1214 /* F) message tags (ignore) */
1215
1216 return 0;
1217 }
1218
1219 /*
1220 * Note that each read() call for /dev/kmsg returns always one record. It means
1221 * that we don't have to read whole message buffer before the records parsing.
1222 *
1223 * So this function does not compose one huge buffer (like read_syslog_buffer())
1224 * and print_buffer() is unnecessary. All is done in this function.
1225 *
1226 * Returns 0 on success, -1 on error.
1227 */
1228 static int read_kmsg(struct dmesg_control *ctl)
1229 {
1230 struct dmesg_record rec;
1231 ssize_t sz;
1232
1233 if (ctl->method != DMESG_METHOD_KMSG || ctl->kmsg < 0)
1234 return -1;
1235
1236 /*
1237 * The very first read() call is done in kmsg_init() where we test
1238 * /dev/kmsg usability. The return code from the initial read() is
1239 * stored in ctl->kmsg_first_read;
1240 */
1241 sz = ctl->kmsg_first_read;
1242
1243 while (sz > 0) {
1244 *(ctl->kmsg_buf + sz) = '\0'; /* for debug messages */
1245
1246 if (parse_kmsg_record(ctl, &rec,
1247 ctl->kmsg_buf, (size_t) sz) == 0)
1248 print_record(ctl, &rec);
1249
1250 sz = read_kmsg_one(ctl);
1251 }
1252
1253 return 0;
1254 }
1255
1256 static int which_time_format(const char *s)
1257 {
1258 if (!strcmp(s, "notime"))
1259 return DMESG_TIMEFTM_NONE;
1260 if (!strcmp(s, "ctime"))
1261 return DMESG_TIMEFTM_CTIME;
1262 if (!strcmp(s, "delta"))
1263 return DMESG_TIMEFTM_DELTA;
1264 if (!strcmp(s, "reltime"))
1265 return DMESG_TIMEFTM_RELTIME;
1266 if (!strcmp(s, "iso"))
1267 return DMESG_TIMEFTM_ISO8601;
1268 errx(EXIT_FAILURE, _("unknown time format: %s"), s);
1269 }
1270
1271 #ifdef TEST_DMESG
1272 static inline int dmesg_get_boot_time(struct timeval *tv)
1273 {
1274 char *str = getenv("DMESG_TEST_BOOTIME");
1275 uintmax_t sec, usec;
1276
1277 if (str && sscanf(str, "%ju.%ju", &sec, &usec) == 2) {
1278 tv->tv_sec = sec;
1279 tv->tv_usec = usec;
1280 return tv->tv_sec >= 0 && tv->tv_usec >= 0 ? 0 : -EINVAL;
1281 }
1282
1283 return get_boot_time(tv);
1284 }
1285 #else
1286 # define dmesg_get_boot_time get_boot_time
1287 #endif
1288
1289 int main(int argc, char *argv[])
1290 {
1291 char *buf = NULL;
1292 int c, nopager = 0;
1293 int console_level = 0;
1294 int klog_rc = 0;
1295 int delta = 0;
1296 ssize_t n;
1297 static struct dmesg_control ctl = {
1298 .filename = NULL,
1299 .action = SYSLOG_ACTION_READ_ALL,
1300 .method = DMESG_METHOD_KMSG,
1301 .kmsg = -1,
1302 .time_fmt = DMESG_TIMEFTM_TIME,
1303 .indent = 0,
1304 };
1305 int colormode = UL_COLORMODE_UNDEF;
1306 enum {
1307 OPT_TIME_FORMAT = CHAR_MAX + 1,
1308 };
1309
1310 static const struct option longopts[] = {
1311 { "buffer-size", required_argument, NULL, 's' },
1312 { "clear", no_argument, NULL, 'C' },
1313 { "color", optional_argument, NULL, 'L' },
1314 { "console-level", required_argument, NULL, 'n' },
1315 { "console-off", no_argument, NULL, 'D' },
1316 { "console-on", no_argument, NULL, 'E' },
1317 { "decode", no_argument, NULL, 'x' },
1318 { "file", required_argument, NULL, 'F' },
1319 { "facility", required_argument, NULL, 'f' },
1320 { "follow", no_argument, NULL, 'w' },
1321 { "human", no_argument, NULL, 'H' },
1322 { "help", no_argument, NULL, 'h' },
1323 { "kernel", no_argument, NULL, 'k' },
1324 { "level", required_argument, NULL, 'l' },
1325 { "syslog", no_argument, NULL, 'S' },
1326 { "raw", no_argument, NULL, 'r' },
1327 { "read-clear", no_argument, NULL, 'c' },
1328 { "reltime", no_argument, NULL, 'e' },
1329 { "show-delta", no_argument, NULL, 'd' },
1330 { "ctime", no_argument, NULL, 'T' },
1331 { "notime", no_argument, NULL, 't' },
1332 { "nopager", no_argument, NULL, 'P' },
1333 { "userspace", no_argument, NULL, 'u' },
1334 { "version", no_argument, NULL, 'V' },
1335 { "time-format", required_argument, NULL, OPT_TIME_FORMAT },
1336 { "force-prefix", no_argument, NULL, 'p' },
1337 { NULL, 0, NULL, 0 }
1338 };
1339
1340 static const ul_excl_t excl[] = { /* rows and cols in ASCII order */
1341 { 'C','D','E','c','n','r' }, /* clear,off,on,read-clear,level,raw*/
1342 { 'H','r' }, /* human, raw */
1343 { 'L','r' }, /* color, raw */
1344 { 'S','w' }, /* syslog,follow */
1345 { 'T','r' }, /* ctime, raw */
1346 { 'd','r' }, /* delta, raw */
1347 { 'e','r' }, /* reltime, raw */
1348 { 'r','x' }, /* raw, decode */
1349 { 'r','t' }, /* notime, raw */
1350 { 0 }
1351 };
1352 int excl_st[ARRAY_SIZE(excl)] = UL_EXCL_STATUS_INIT;
1353
1354 setlocale(LC_ALL, "");
1355 bindtextdomain(PACKAGE, LOCALEDIR);
1356 textdomain(PACKAGE);
1357 close_stdout_atexit();
1358
1359 while ((c = getopt_long(argc, argv, "CcDdEeF:f:HhkL::l:n:iPprSs:TtuVwx",
1360 longopts, NULL)) != -1) {
1361
1362 err_exclusive_options(c, longopts, excl, excl_st);
1363
1364 switch (c) {
1365 case 'C':
1366 ctl.action = SYSLOG_ACTION_CLEAR;
1367 break;
1368 case 'c':
1369 ctl.action = SYSLOG_ACTION_READ_CLEAR;
1370 break;
1371 case 'D':
1372 ctl.action = SYSLOG_ACTION_CONSOLE_OFF;
1373 break;
1374 case 'd':
1375 delta = 1;
1376 break;
1377 case 'E':
1378 ctl.action = SYSLOG_ACTION_CONSOLE_ON;
1379 break;
1380 case 'e':
1381 ctl.time_fmt = DMESG_TIMEFTM_RELTIME;
1382 break;
1383 case 'F':
1384 ctl.filename = optarg;
1385 ctl.method = DMESG_METHOD_MMAP;
1386 break;
1387 case 'f':
1388 ctl.fltr_fac = 1;
1389 if (string_to_bitarray(optarg,
1390 ctl.facilities, parse_facility) < 0)
1391 return EXIT_FAILURE;
1392 break;
1393 case 'H':
1394 ctl.time_fmt = DMESG_TIMEFTM_RELTIME;
1395 colormode = UL_COLORMODE_AUTO;
1396 ctl.pager = 1;
1397 break;
1398 case 'k':
1399 ctl.fltr_fac = 1;
1400 setbit(ctl.facilities, FAC_BASE(LOG_KERN));
1401 break;
1402 case 'L':
1403 colormode = UL_COLORMODE_AUTO;
1404 if (optarg)
1405 colormode = colormode_or_err(optarg,
1406 _("unsupported color mode"));
1407 break;
1408 case 'l':
1409 ctl.fltr_lev= 1;
1410 if (string_to_bitarray(optarg,
1411 ctl.levels, parse_level) < 0)
1412 return EXIT_FAILURE;
1413 break;
1414 case 'n':
1415 ctl.action = SYSLOG_ACTION_CONSOLE_LEVEL;
1416 console_level = parse_level(optarg, 0);
1417 break;
1418 case 'P':
1419 nopager = 1;
1420 break;
1421 case 'p':
1422 ctl.force_prefix = 1;
1423 break;
1424 case 'r':
1425 ctl.raw = 1;
1426 break;
1427 case 'S':
1428 ctl.method = DMESG_METHOD_SYSLOG;
1429 break;
1430 case 's':
1431 ctl.bufsize = strtou32_or_err(optarg,
1432 _("invalid buffer size argument"));
1433 if (ctl.bufsize < 4096)
1434 ctl.bufsize = 4096;
1435 break;
1436 case 'T':
1437 ctl.time_fmt = DMESG_TIMEFTM_CTIME;
1438 break;
1439 case 't':
1440 ctl.time_fmt = DMESG_TIMEFTM_NONE;
1441 break;
1442 case 'u':
1443 ctl.fltr_fac = 1;
1444 for (n = 1; (size_t) n < ARRAY_SIZE(facility_names); n++)
1445 setbit(ctl.facilities, n);
1446 break;
1447 case 'w':
1448 ctl.follow = 1;
1449 break;
1450 case 'x':
1451 ctl.decode = 1;
1452 break;
1453 case OPT_TIME_FORMAT:
1454 ctl.time_fmt = which_time_format(optarg);
1455 break;
1456
1457 case 'h':
1458 usage();
1459 case 'V':
1460 print_version(EXIT_SUCCESS);
1461 default:
1462 errtryhelp(EXIT_FAILURE);
1463 }
1464 }
1465
1466 if (argc != optind) {
1467 warnx(_("bad usage"));
1468 errtryhelp(EXIT_FAILURE);
1469 }
1470
1471 if ((is_timefmt(&ctl, RELTIME) ||
1472 is_timefmt(&ctl, CTIME) ||
1473 is_timefmt(&ctl, ISO8601))
1474 && dmesg_get_boot_time(&ctl.boot_time) != 0)
1475 ctl.time_fmt = DMESG_TIMEFTM_NONE;
1476
1477 if (delta)
1478 switch (ctl.time_fmt) {
1479 case DMESG_TIMEFTM_CTIME:
1480 ctl.time_fmt = DMESG_TIMEFTM_CTIME_DELTA;
1481 break;
1482 case DMESG_TIMEFTM_TIME:
1483 ctl.time_fmt = DMESG_TIMEFTM_TIME_DELTA;
1484 break;
1485 case DMESG_TIMEFTM_ISO8601:
1486 warnx(_("--show-delta is ignored when used together with iso8601 time format"));
1487 break;
1488 default:
1489 ctl.time_fmt = DMESG_TIMEFTM_DELTA;
1490 }
1491
1492
1493 ctl.color = colors_init(colormode, "dmesg") ? 1 : 0;
1494 if (ctl.follow)
1495 nopager = 1;
1496 ctl.pager = nopager ? 0 : ctl.pager;
1497 if (ctl.pager)
1498 pager_redirect();
1499
1500 switch (ctl.action) {
1501 case SYSLOG_ACTION_READ_ALL:
1502 case SYSLOG_ACTION_READ_CLEAR:
1503 if (ctl.method == DMESG_METHOD_KMSG && init_kmsg(&ctl) != 0)
1504 ctl.method = DMESG_METHOD_SYSLOG;
1505
1506 if (ctl.raw
1507 && ctl.method != DMESG_METHOD_KMSG
1508 && (ctl.fltr_lev || ctl.fltr_fac))
1509 errx(EXIT_FAILURE, _("--raw can be used together with --level or "
1510 "--facility only when reading messages from /dev/kmsg"));
1511
1512 /* only kmsg supports multi-line messages */
1513 if (ctl.force_prefix && ctl.method != DMESG_METHOD_KMSG)
1514 ctl.force_prefix = 0;
1515
1516 if (ctl.pager)
1517 pager_redirect();
1518 n = read_buffer(&ctl, &buf);
1519 if (n > 0)
1520 print_buffer(&ctl, buf, n);
1521 if (!ctl.mmap_buff)
1522 free(buf);
1523 if (n < 0)
1524 err(EXIT_FAILURE, _("read kernel buffer failed"));
1525 if (ctl.kmsg >= 0)
1526 close(ctl.kmsg);
1527 break;
1528 case SYSLOG_ACTION_CLEAR:
1529 case SYSLOG_ACTION_CONSOLE_OFF:
1530 case SYSLOG_ACTION_CONSOLE_ON:
1531 klog_rc = klogctl(ctl.action, NULL, 0);
1532 break;
1533 case SYSLOG_ACTION_CONSOLE_LEVEL:
1534 klog_rc = klogctl(ctl.action, NULL, console_level);
1535 break;
1536 default:
1537 errx(EXIT_FAILURE, _("unsupported command"));
1538 break;
1539 }
1540
1541
1542 if (klog_rc)
1543 err(EXIT_FAILURE, _("klogctl failed"));
1544
1545 return EXIT_SUCCESS;
1546 }