1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2011 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
35 #include <sys/ioctl.h>
43 #include "systemd/sd-journal.h"
46 #include "logs-show.h"
48 #include "path-util.h"
54 #include "journal-internal.h"
55 #include "journal-def.h"
56 #include "journal-verify.h"
57 #include "journal-authenticate.h"
58 #include "journal-qrcode.h"
60 #include "unit-name.h"
63 #define DEFAULT_FSS_INTERVAL_USEC (15*USEC_PER_MINUTE)
65 static OutputMode arg_output = OUTPUT_SHORT;
66 static bool arg_pager_end = false;
67 static bool arg_follow = false;
68 static bool arg_full = true;
69 static bool arg_all = false;
70 static bool arg_no_pager = false;
71 static int arg_lines = -1;
72 static bool arg_no_tail = false;
73 static bool arg_quiet = false;
74 static bool arg_merge = false;
75 static bool arg_boot = false;
76 static sd_id128_t arg_boot_id = {};
77 static int arg_boot_offset = 0;
78 static bool arg_dmesg = false;
79 static const char *arg_cursor = NULL;
80 static const char *arg_after_cursor = NULL;
81 static bool arg_show_cursor = false;
82 static const char *arg_directory = NULL;
83 static char **arg_file = NULL;
84 static int arg_priorities = 0xFF;
85 static const char *arg_verify_key = NULL;
87 static usec_t arg_interval = DEFAULT_FSS_INTERVAL_USEC;
88 static bool arg_force = false;
90 static usec_t arg_since, arg_until;
91 static bool arg_since_set = false, arg_until_set = false;
92 static char **arg_system_units = NULL;
93 static char **arg_user_units = NULL;
94 static const char *arg_field = NULL;
95 static bool arg_catalog = false;
96 static bool arg_reverse = false;
97 static int arg_journal_type = 0;
98 static const char *arg_root = NULL;
99 static const char *arg_machine = NULL;
110 ACTION_UPDATE_CATALOG,
112 } arg_action = ACTION_SHOW;
114 typedef struct boot_id_t {
120 static void pager_open_if_enabled(void) {
125 pager_open(arg_pager_end);
128 static int parse_boot_descriptor(const char *x, sd_id128_t *boot_id, int *offset) {
129 sd_id128_t id = SD_ID128_NULL;
132 if (strlen(x) >= 32) {
136 r = sd_id128_from_string(t, &id);
140 if (*x != '-' && *x != '+' && *x != 0)
144 r = safe_atoi(x, &off);
149 r = safe_atoi(x, &off);
163 static void help(void) {
165 pager_open_if_enabled();
167 printf("%s [OPTIONS...] [MATCHES...]\n\n"
168 "Query the journal.\n\n"
170 " --system Show the system journal\n"
171 " --user Show the user journal for the current user\n"
172 " -M --machine=CONTAINER Operate on local container\n"
173 " --since=DATE Start showing entries on or newer than the specified date\n"
174 " --until=DATE Stop showing entries on or older than the specified date\n"
175 " -c --cursor=CURSOR Start showing entries from the specified cursor\n"
176 " --after-cursor=CURSOR Start showing entries from after the specified cursor\n"
177 " --show-cursor Print the cursor after all the entries\n"
178 " -b --boot[=ID] Show data only from ID or, if unspecified, the current boot\n"
179 " --list-boots Show terse information about recorded boots\n"
180 " -k --dmesg Show kernel message log from the current boot\n"
181 " -u --unit=UNIT Show data only from the specified unit\n"
182 " --user-unit=UNIT Show data only from the specified user session unit\n"
183 " -p --priority=RANGE Show only messages within the specified priority range\n"
184 " -e --pager-end Immediately jump to end of the journal in the pager\n"
185 " -f --follow Follow the journal\n"
186 " -n --lines[=INTEGER] Number of journal entries to show\n"
187 " --no-tail Show all lines, even in follow mode\n"
188 " -r --reverse Show the newest entries first\n"
189 " -o --output=STRING Change journal output mode (short, short-iso,\n"
190 " short-precise, short-monotonic, verbose,\n"
191 " export, json, json-pretty, json-sse, cat)\n"
192 " -x --catalog Add message explanations where available\n"
193 " --no-full Ellipsize fields\n"
194 " -a --all Show all fields, including long and unprintable\n"
195 " -q --quiet Do not show privilege warning\n"
196 " --no-pager Do not pipe output into a pager\n"
197 " -m --merge Show entries from all available journals\n"
198 " -D --directory=PATH Show journal files from directory\n"
199 " --file=PATH Show journal file\n"
200 " --root=ROOT Operate on catalog files underneath the root ROOT\n"
202 " --interval=TIME Time interval for changing the FSS sealing key\n"
203 " --verify-key=KEY Specify FSS verification key\n"
204 " --force Force overriding of the FSS key pair with --setup-keys\n"
207 " -h --help Show this help text\n"
208 " --version Show package version\n"
209 " --new-id128 Generate a new 128-bit ID\n"
210 " --header Show journal header information\n"
211 " --disk-usage Show total disk usage of all journal files\n"
212 " -F --field=FIELD List all values that a specified field takes\n"
213 " --list-catalog Show message IDs of all entries in the message catalog\n"
214 " --dump-catalog Show entries in the message catalog\n"
215 " --update-catalog Update the message catalog database\n"
217 " --setup-keys Generate a new FSS key pair\n"
218 " --verify Verify journal file consistency\n"
220 , program_invocation_short_name);
223 static int parse_argv(int argc, char *argv[]) {
253 static const struct option options[] = {
254 { "help", no_argument, NULL, 'h' },
255 { "version" , no_argument, NULL, ARG_VERSION },
256 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
257 { "pager-end", no_argument, NULL, 'e' },
258 { "follow", no_argument, NULL, 'f' },
259 { "force", no_argument, NULL, ARG_FORCE },
260 { "output", required_argument, NULL, 'o' },
261 { "all", no_argument, NULL, 'a' },
262 { "full", no_argument, NULL, 'l' },
263 { "no-full", no_argument, NULL, ARG_NO_FULL },
264 { "lines", optional_argument, NULL, 'n' },
265 { "no-tail", no_argument, NULL, ARG_NO_TAIL },
266 { "new-id128", no_argument, NULL, ARG_NEW_ID128 },
267 { "quiet", no_argument, NULL, 'q' },
268 { "merge", no_argument, NULL, 'm' },
269 { "boot", optional_argument, NULL, 'b' },
270 { "list-boots", no_argument, NULL, ARG_LIST_BOOTS },
271 { "this-boot", optional_argument, NULL, 'b' }, /* deprecated */
272 { "dmesg", no_argument, NULL, 'k' },
273 { "system", no_argument, NULL, ARG_SYSTEM },
274 { "user", no_argument, NULL, ARG_USER },
275 { "directory", required_argument, NULL, 'D' },
276 { "file", required_argument, NULL, ARG_FILE },
277 { "root", required_argument, NULL, ARG_ROOT },
278 { "header", no_argument, NULL, ARG_HEADER },
279 { "priority", required_argument, NULL, 'p' },
280 { "setup-keys", no_argument, NULL, ARG_SETUP_KEYS },
281 { "interval", required_argument, NULL, ARG_INTERVAL },
282 { "verify", no_argument, NULL, ARG_VERIFY },
283 { "verify-key", required_argument, NULL, ARG_VERIFY_KEY },
284 { "disk-usage", no_argument, NULL, ARG_DISK_USAGE },
285 { "cursor", required_argument, NULL, 'c' },
286 { "after-cursor", required_argument, NULL, ARG_AFTER_CURSOR },
287 { "show-cursor", no_argument, NULL, ARG_SHOW_CURSOR },
288 { "since", required_argument, NULL, ARG_SINCE },
289 { "until", required_argument, NULL, ARG_UNTIL },
290 { "unit", required_argument, NULL, 'u' },
291 { "user-unit", required_argument, NULL, ARG_USER_UNIT },
292 { "field", required_argument, NULL, 'F' },
293 { "catalog", no_argument, NULL, 'x' },
294 { "list-catalog", no_argument, NULL, ARG_LIST_CATALOG },
295 { "dump-catalog", no_argument, NULL, ARG_DUMP_CATALOG },
296 { "update-catalog", no_argument, NULL, ARG_UPDATE_CATALOG },
297 { "reverse", no_argument, NULL, 'r' },
298 { "machine", required_argument, NULL, 'M' },
307 while ((c = getopt_long(argc, argv, "hefo:aln::qmb::kD:p:c:u:F:xrM:", options, NULL)) >= 0)
316 puts(PACKAGE_STRING);
317 puts(SYSTEMD_FEATURES);
325 arg_pager_end = true;
337 arg_output = output_mode_from_string(optarg);
338 if (arg_output < 0) {
339 log_error("Unknown output format '%s'.", optarg);
343 if (arg_output == OUTPUT_EXPORT ||
344 arg_output == OUTPUT_JSON ||
345 arg_output == OUTPUT_JSON_PRETTY ||
346 arg_output == OUTPUT_JSON_SSE ||
347 arg_output == OUTPUT_CAT)
366 r = safe_atoi(optarg, &arg_lines);
367 if (r < 0 || arg_lines < 0) {
368 log_error("Failed to parse lines '%s'", optarg);
374 /* Hmm, no argument? Maybe the next
375 * word on the command line is
376 * supposed to be the argument? Let's
377 * see if there is one, and is
378 * parsable as a positive
382 safe_atoi(argv[optind], &n) >= 0 &&
398 arg_action = ACTION_NEW_ID128;
413 r = parse_boot_descriptor(optarg, &arg_boot_id, &arg_boot_offset);
415 log_error("Failed to parse boot descriptor '%s'", optarg);
420 /* Hmm, no argument? Maybe the next
421 * word on the command line is
422 * supposed to be the argument? Let's
423 * see if there is one and is parsable
424 * as a boot descriptor... */
427 parse_boot_descriptor(argv[optind], &arg_boot_id, &arg_boot_offset) >= 0)
434 arg_action = ACTION_LIST_BOOTS;
438 arg_boot = arg_dmesg = true;
442 arg_journal_type |= SD_JOURNAL_SYSTEM;
446 arg_journal_type |= SD_JOURNAL_CURRENT_USER;
450 arg_machine = optarg;
454 arg_directory = optarg;
458 r = glob_extend(&arg_file, optarg);
460 log_error("Failed to add paths: %s", strerror(-r));
473 case ARG_AFTER_CURSOR:
474 arg_after_cursor = optarg;
477 case ARG_SHOW_CURSOR:
478 arg_show_cursor = true;
482 arg_action = ACTION_PRINT_HEADER;
486 arg_action = ACTION_VERIFY;
490 arg_action = ACTION_DISK_USAGE;
499 arg_action = ACTION_SETUP_KEYS;
504 arg_action = ACTION_VERIFY;
505 arg_verify_key = optarg;
510 r = parse_sec(optarg, &arg_interval);
511 if (r < 0 || arg_interval <= 0) {
512 log_error("Failed to parse sealing key change interval: %s", optarg);
521 log_error("Forward-secure sealing not available.");
528 dots = strstr(optarg, "..");
534 a = strndup(optarg, dots - optarg);
538 from = log_level_from_string(a);
539 to = log_level_from_string(dots + 2);
542 if (from < 0 || to < 0) {
543 log_error("Failed to parse log level range %s", optarg);
550 for (i = from; i <= to; i++)
551 arg_priorities |= 1 << i;
553 for (i = to; i <= from; i++)
554 arg_priorities |= 1 << i;
560 p = log_level_from_string(optarg);
562 log_error("Unknown log level %s", optarg);
568 for (i = 0; i <= p; i++)
569 arg_priorities |= 1 << i;
576 r = parse_timestamp(optarg, &arg_since);
578 log_error("Failed to parse timestamp: %s", optarg);
581 arg_since_set = true;
585 r = parse_timestamp(optarg, &arg_until);
587 log_error("Failed to parse timestamp: %s", optarg);
590 arg_until_set = true;
594 r = strv_extend(&arg_system_units, optarg);
600 r = strv_extend(&arg_user_units, optarg);
613 case ARG_LIST_CATALOG:
614 arg_action = ACTION_LIST_CATALOG;
617 case ARG_DUMP_CATALOG:
618 arg_action = ACTION_DUMP_CATALOG;
621 case ARG_UPDATE_CATALOG:
622 arg_action = ACTION_UPDATE_CATALOG;
633 assert_not_reached("Unhandled option");
636 if (arg_follow && !arg_no_tail && arg_lines < 0)
639 if (!!arg_directory + !!arg_file + !!arg_machine > 1) {
640 log_error("Please specify either -D/--directory= or --file= or -M/--machine=, not more than one.");
644 if (arg_since_set && arg_until_set && arg_since > arg_until) {
645 log_error("--since= must be before --until=.");
649 if (!!arg_cursor + !!arg_after_cursor + !!arg_since_set > 1) {
650 log_error("Please specify only one of --since=, --cursor=, and --after-cursor.");
654 if (arg_follow && arg_reverse) {
655 log_error("Please specify either --reverse= or --follow=, not both.");
659 if (arg_action != ACTION_SHOW && optind < argc) {
660 log_error("Extraneous arguments starting with '%s'", argv[optind]);
667 static int generate_new_id128(void) {
672 r = sd_id128_randomize(&id);
674 log_error("Failed to generate ID: %s", strerror(-r));
678 printf("As string:\n"
679 SD_ID128_FORMAT_STR "\n\n"
681 "%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x\n\n"
683 "#define MESSAGE_XYZ SD_ID128_MAKE(",
684 SD_ID128_FORMAT_VAL(id),
685 SD_ID128_FORMAT_VAL(id));
686 for (i = 0; i < 16; i++)
687 printf("%02x%s", id.bytes[i], i != 15 ? "," : "");
688 fputs(")\n\n", stdout);
690 printf("As Python constant:\n"
692 ">>> MESSAGE_XYZ = uuid.UUID('" SD_ID128_FORMAT_STR "')\n",
693 SD_ID128_FORMAT_VAL(id));
698 static int add_matches(sd_journal *j, char **args) {
700 bool have_term = false;
704 STRV_FOREACH(i, args) {
707 if (streq(*i, "+")) {
710 r = sd_journal_add_disjunction(j);
713 } else if (path_is_absolute(*i)) {
714 _cleanup_free_ char *p, *t = NULL, *t2 = NULL;
716 _cleanup_free_ char *interpreter = NULL;
719 p = canonicalize_file_name(*i);
722 if (stat(path, &st) < 0) {
723 log_error("Couldn't stat file: %m");
727 if (S_ISREG(st.st_mode) && (0111 & st.st_mode)) {
728 if (executable_is_script(path, &interpreter) > 0) {
729 _cleanup_free_ char *comm;
731 comm = strndup(basename(path), 15);
735 t = strappend("_COMM=", comm);
737 /* Append _EXE only if the interpreter is not a link.
738 Otherwise, it might be outdated often. */
739 if (lstat(interpreter, &st) == 0 &&
740 !S_ISLNK(st.st_mode)) {
741 t2 = strappend("_EXE=", interpreter);
746 t = strappend("_EXE=", path);
747 } else if (S_ISCHR(st.st_mode)) {
748 if (asprintf(&t, "_KERNEL_DEVICE=c%u:%u",
750 minor(st.st_rdev)) < 0)
752 } else if (S_ISBLK(st.st_mode)) {
753 if (asprintf(&t, "_KERNEL_DEVICE=b%u:%u",
755 minor(st.st_rdev)) < 0)
758 log_error("File is neither a device node, nor regular file, nor executable: %s", *i);
765 r = sd_journal_add_match(j, t, 0);
767 r = sd_journal_add_match(j, t2, 0);
771 r = sd_journal_add_match(j, *i, 0);
776 log_error("Failed to add match '%s': %s", *i, strerror(-r));
781 if (!strv_isempty(args) && !have_term) {
782 log_error("\"+\" can only be used between terms");
789 static int boot_id_cmp(const void *a, const void *b) {
792 _a = ((const boot_id_t *)a)->first;
793 _b = ((const boot_id_t *)b)->first;
795 return _a < _b ? -1 : (_a > _b ? 1 : 0);
798 static int list_boots(sd_journal *j) {
801 unsigned int count = 0;
803 size_t length, allocated = 0;
805 _cleanup_free_ boot_id_t *all_ids = NULL;
807 r = sd_journal_query_unique(j, "_BOOT_ID");
811 SD_JOURNAL_FOREACH_UNIQUE(j, data, length) {
812 if (length < strlen("_BOOT_ID="))
815 if (!GREEDY_REALLOC(all_ids, allocated, count + 1))
818 id = &all_ids[count];
820 r = sd_id128_from_string(((const char *)data) + strlen("_BOOT_ID="), &id->id);
824 r = sd_journal_add_match(j, data, length);
828 r = sd_journal_seek_head(j);
832 r = sd_journal_next(j);
838 r = sd_journal_get_realtime_usec(j, &id->first);
842 r = sd_journal_seek_tail(j);
846 r = sd_journal_previous(j);
852 r = sd_journal_get_realtime_usec(j, &id->last);
858 sd_journal_flush_matches(j);
861 qsort_safe(all_ids, count, sizeof(boot_id_t), boot_id_cmp);
863 /* numbers are one less, but we need an extra char for the sign */
864 w = DECIMAL_STR_WIDTH(count - 1) + 1;
866 for (id = all_ids, i = 0; id < all_ids + count; id++, i++) {
867 char a[FORMAT_TIMESTAMP_MAX], b[FORMAT_TIMESTAMP_MAX];
869 printf("% *i " SD_ID128_FORMAT_STR " %s—%s\n",
871 SD_ID128_FORMAT_VAL(id->id),
872 format_timestamp(a, sizeof(a), id->first),
873 format_timestamp(b, sizeof(b), id->last));
879 static int get_relative_boot_id(sd_journal *j, sd_id128_t *boot_id, int relative) {
882 unsigned int count = 0;
883 size_t length, allocated = 0;
884 boot_id_t ref_boot_id = {SD_ID128_NULL}, *id;
885 _cleanup_free_ boot_id_t *all_ids = NULL;
890 r = sd_journal_query_unique(j, "_BOOT_ID");
894 SD_JOURNAL_FOREACH_UNIQUE(j, data, length) {
895 if (length < strlen("_BOOT_ID="))
898 if (!GREEDY_REALLOC(all_ids, allocated, count + 1))
901 id = &all_ids[count];
903 r = sd_id128_from_string(((const char *)data) + strlen("_BOOT_ID="), &id->id);
907 r = sd_journal_add_match(j, data, length);
911 r = sd_journal_seek_head(j);
915 r = sd_journal_next(j);
921 r = sd_journal_get_realtime_usec(j, &id->first);
925 if (sd_id128_equal(id->id, *boot_id))
930 sd_journal_flush_matches(j);
933 qsort_safe(all_ids, count, sizeof(boot_id_t), boot_id_cmp);
935 if (sd_id128_equal(*boot_id, SD_ID128_NULL)) {
936 if (relative > (int) count || relative <= -(int)count)
937 return -EADDRNOTAVAIL;
939 *boot_id = all_ids[(relative <= 0)*count + relative - 1].id;
941 id = bsearch(&ref_boot_id, all_ids, count, sizeof(boot_id_t), boot_id_cmp);
944 relative <= 0 ? (id - all_ids) + relative < 0 :
945 (id - all_ids) + relative >= (int) count)
946 return -EADDRNOTAVAIL;
948 *boot_id = (id + relative)->id;
954 static int add_boot(sd_journal *j) {
955 char match[9+32+1] = "_BOOT_ID=";
963 if (arg_boot_offset == 0 && sd_id128_equal(arg_boot_id, SD_ID128_NULL))
964 return add_match_this_boot(j, arg_machine);
966 r = get_relative_boot_id(j, &arg_boot_id, arg_boot_offset);
968 if (sd_id128_equal(arg_boot_id, SD_ID128_NULL))
969 log_error("Failed to look up boot %+i: %s", arg_boot_offset, strerror(-r));
971 log_error("Failed to look up boot ID "SD_ID128_FORMAT_STR"%+i: %s",
972 SD_ID128_FORMAT_VAL(arg_boot_id), arg_boot_offset, strerror(-r));
976 sd_id128_to_string(arg_boot_id, match + 9);
978 r = sd_journal_add_match(j, match, sizeof(match) - 1);
980 log_error("Failed to add match: %s", strerror(-r));
984 r = sd_journal_add_conjunction(j);
991 static int add_dmesg(sd_journal *j) {
998 r = sd_journal_add_match(j, "_TRANSPORT=kernel", strlen("_TRANSPORT=kernel"));
1000 log_error("Failed to add match: %s", strerror(-r));
1004 r = sd_journal_add_conjunction(j);
1011 static int get_possible_units(sd_journal *j,
1015 _cleanup_set_free_free_ Set *found;
1019 found = set_new(string_hash_func, string_compare_func);
1023 NULSTR_FOREACH(field, fields) {
1027 r = sd_journal_query_unique(j, field);
1031 SD_JOURNAL_FOREACH_UNIQUE(j, data, size) {
1032 char **pattern, *eq;
1034 _cleanup_free_ char *u = NULL;
1036 eq = memchr(data, '=', size);
1038 prefix = eq - (char*) data + 1;
1042 u = strndup((char*) data + prefix, size - prefix);
1046 STRV_FOREACH(pattern, patterns)
1047 if (fnmatch(*pattern, u, FNM_NOESCAPE) == 0) {
1048 log_debug("Matched %s with pattern %s=%s", u, field, *pattern);
1050 r = set_consume(found, u);
1052 if (r < 0 && r != -EEXIST)
1065 /* This list is supposed to return the superset of unit names
1066 * possibly matched by rules added with add_matches_for_unit... */
1067 #define SYSTEM_UNITS \
1071 "OBJECT_SYSTEMD_UNIT\0" \
1074 /* ... and add_matches_for_user_unit */
1075 #define USER_UNITS \
1076 "_SYSTEMD_USER_UNIT\0" \
1078 "COREDUMP_USER_UNIT\0" \
1079 "OBJECT_SYSTEMD_USER_UNIT\0"
1081 static int add_units(sd_journal *j) {
1082 _cleanup_strv_free_ char **patterns = NULL;
1088 STRV_FOREACH(i, arg_system_units) {
1089 _cleanup_free_ char *u = NULL;
1091 u = unit_name_mangle(*i, MANGLE_GLOB);
1095 if (string_is_glob(u)) {
1096 r = strv_push(&patterns, u);
1101 r = add_matches_for_unit(j, u);
1104 r = sd_journal_add_disjunction(j);
1111 if (!strv_isempty(patterns)) {
1112 _cleanup_set_free_free_ Set *units = NULL;
1116 r = get_possible_units(j, SYSTEM_UNITS, patterns, &units);
1120 SET_FOREACH(u, units, it) {
1121 r = add_matches_for_unit(j, u);
1124 r = sd_journal_add_disjunction(j);
1131 strv_free(patterns);
1134 STRV_FOREACH(i, arg_user_units) {
1135 _cleanup_free_ char *u = NULL;
1137 u = unit_name_mangle(*i, MANGLE_GLOB);
1141 if (string_is_glob(u)) {
1142 r = strv_push(&patterns, u);
1147 r = add_matches_for_user_unit(j, u, getuid());
1150 r = sd_journal_add_disjunction(j);
1157 if (!strv_isempty(patterns)) {
1158 _cleanup_set_free_free_ Set *units = NULL;
1162 r = get_possible_units(j, USER_UNITS, patterns, &units);
1166 SET_FOREACH(u, units, it) {
1167 r = add_matches_for_user_unit(j, u, getuid());
1170 r = sd_journal_add_disjunction(j);
1177 /* Complain if the user request matches but nothing whatsoever was
1178 * found, since otherwise everything would be matched. */
1179 if (!(strv_isempty(arg_system_units) && strv_isempty(arg_user_units)) && count == 0)
1182 r = sd_journal_add_conjunction(j);
1189 static int add_priorities(sd_journal *j) {
1190 char match[] = "PRIORITY=0";
1194 if (arg_priorities == 0xFF)
1197 for (i = LOG_EMERG; i <= LOG_DEBUG; i++)
1198 if (arg_priorities & (1 << i)) {
1199 match[sizeof(match)-2] = '0' + i;
1201 r = sd_journal_add_match(j, match, strlen(match));
1203 log_error("Failed to add match: %s", strerror(-r));
1208 r = sd_journal_add_conjunction(j);
1215 static int setup_keys(void) {
1217 size_t mpk_size, seed_size, state_size, i;
1218 uint8_t *mpk, *seed, *state;
1220 int fd = -1, r, attr = 0;
1221 sd_id128_t machine, boot;
1222 char *p = NULL, *k = NULL;
1227 r = stat("/var/log/journal", &st);
1228 if (r < 0 && errno != ENOENT && errno != ENOTDIR) {
1229 log_error("stat(\"%s\") failed: %m", "/var/log/journal");
1233 if (r < 0 || !S_ISDIR(st.st_mode)) {
1234 log_error("%s is not a directory, must be using persistent logging for FSS.",
1235 "/var/log/journal");
1236 return r < 0 ? -errno : -ENOTDIR;
1239 r = sd_id128_get_machine(&machine);
1241 log_error("Failed to get machine ID: %s", strerror(-r));
1245 r = sd_id128_get_boot(&boot);
1247 log_error("Failed to get boot ID: %s", strerror(-r));
1251 if (asprintf(&p, "/var/log/journal/" SD_ID128_FORMAT_STR "/fss",
1252 SD_ID128_FORMAT_VAL(machine)) < 0)
1255 if (access(p, F_OK) >= 0) {
1259 log_error("unlink(\"%s\") failed: %m", p);
1264 log_error("Sealing key file %s exists already. (--force to recreate)", p);
1270 if (asprintf(&k, "/var/log/journal/" SD_ID128_FORMAT_STR "/fss.tmp.XXXXXX",
1271 SD_ID128_FORMAT_VAL(machine)) < 0) {
1276 mpk_size = FSPRG_mskinbytes(FSPRG_RECOMMENDED_SECPAR);
1277 mpk = alloca(mpk_size);
1279 seed_size = FSPRG_RECOMMENDED_SEEDLEN;
1280 seed = alloca(seed_size);
1282 state_size = FSPRG_stateinbytes(FSPRG_RECOMMENDED_SECPAR);
1283 state = alloca(state_size);
1285 fd = open("/dev/random", O_RDONLY|O_CLOEXEC|O_NOCTTY);
1287 log_error("Failed to open /dev/random: %m");
1292 log_info("Generating seed...");
1293 l = loop_read(fd, seed, seed_size, true);
1294 if (l < 0 || (size_t) l != seed_size) {
1295 log_error("Failed to read random seed: %s", strerror(EIO));
1300 log_info("Generating key pair...");
1301 FSPRG_GenMK(NULL, mpk, seed, seed_size, FSPRG_RECOMMENDED_SECPAR);
1303 log_info("Generating sealing key...");
1304 FSPRG_GenState0(state, mpk, seed, seed_size);
1306 assert(arg_interval > 0);
1308 n = now(CLOCK_REALTIME);
1312 fd = mkostemp_safe(k, O_WRONLY|O_CLOEXEC);
1314 log_error("Failed to open %s: %m", k);
1319 /* Enable secure remove, exclusion from dump, synchronous
1320 * writing and in-place updating */
1321 if (ioctl(fd, FS_IOC_GETFLAGS, &attr) < 0)
1322 log_warning("FS_IOC_GETFLAGS failed: %m");
1324 attr |= FS_SECRM_FL|FS_NODUMP_FL|FS_SYNC_FL|FS_NOCOW_FL;
1326 if (ioctl(fd, FS_IOC_SETFLAGS, &attr) < 0)
1327 log_warning("FS_IOC_SETFLAGS failed: %m");
1330 memcpy(h.signature, "KSHHRHLP", 8);
1331 h.machine_id = machine;
1333 h.header_size = htole64(sizeof(h));
1334 h.start_usec = htole64(n * arg_interval);
1335 h.interval_usec = htole64(arg_interval);
1336 h.fsprg_secpar = htole16(FSPRG_RECOMMENDED_SECPAR);
1337 h.fsprg_state_size = htole64(state_size);
1339 l = loop_write(fd, &h, sizeof(h), false);
1340 if (l < 0 || (size_t) l != sizeof(h)) {
1341 log_error("Failed to write header: %s", strerror(EIO));
1346 l = loop_write(fd, state, state_size, false);
1347 if (l < 0 || (size_t) l != state_size) {
1348 log_error("Failed to write state: %s", strerror(EIO));
1353 if (link(k, p) < 0) {
1354 log_error("Failed to link file: %m");
1362 "The new key pair has been generated. The " ANSI_HIGHLIGHT_ON "secret sealing key" ANSI_HIGHLIGHT_OFF " has been written to\n"
1363 "the following local file. This key file is automatically updated when the\n"
1364 "sealing key is advanced. It should not be used on multiple hosts.\n"
1368 "Please write down the following " ANSI_HIGHLIGHT_ON "secret verification key" ANSI_HIGHLIGHT_OFF ". It should be stored\n"
1369 "at a safe location and should not be saved locally on disk.\n"
1370 "\n\t" ANSI_HIGHLIGHT_RED_ON, p);
1373 for (i = 0; i < seed_size; i++) {
1374 if (i > 0 && i % 3 == 0)
1376 printf("%02x", ((uint8_t*) seed)[i]);
1379 printf("/%llx-%llx\n", (unsigned long long) n, (unsigned long long) arg_interval);
1382 char tsb[FORMAT_TIMESPAN_MAX], *hn;
1385 ANSI_HIGHLIGHT_OFF "\n"
1386 "The sealing key is automatically changed every %s.\n",
1387 format_timespan(tsb, sizeof(tsb), arg_interval, 0));
1389 hn = gethostname_malloc();
1392 hostname_cleanup(hn, false);
1393 fprintf(stderr, "\nThe keys have been generated for host %s/" SD_ID128_FORMAT_STR ".\n", hn, SD_ID128_FORMAT_VAL(machine));
1395 fprintf(stderr, "\nThe keys have been generated for host " SD_ID128_FORMAT_STR ".\n", SD_ID128_FORMAT_VAL(machine));
1397 #ifdef HAVE_QRENCODE
1398 /* If this is not an UTF-8 system don't print any QR codes */
1399 if (is_locale_utf8()) {
1400 fputs("\nTo transfer the verification key to your phone please scan the QR code below:\n\n", stderr);
1401 print_qr_code(stderr, seed, seed_size, n, arg_interval, hn, machine);
1421 log_error("Forward-secure sealing not available.");
1426 static int verify(sd_journal *j) {
1433 log_show_color(true);
1435 HASHMAP_FOREACH(f, j->files, i) {
1437 usec_t first, validated, last;
1440 if (!arg_verify_key && JOURNAL_HEADER_SEALED(f->header))
1441 log_notice("Journal file %s has sealing enabled but verification key has not been passed using --verify-key=.", f->path);
1444 k = journal_file_verify(f, arg_verify_key, &first, &validated, &last, true);
1446 /* If the key was invalid give up right-away. */
1449 log_warning("FAIL: %s (%s)", f->path, strerror(-k));
1452 char a[FORMAT_TIMESTAMP_MAX], b[FORMAT_TIMESTAMP_MAX], c[FORMAT_TIMESPAN_MAX];
1453 log_info("PASS: %s", f->path);
1455 if (arg_verify_key && JOURNAL_HEADER_SEALED(f->header)) {
1456 if (validated > 0) {
1457 log_info("=> Validated from %s to %s, final %s entries not sealed.",
1458 format_timestamp(a, sizeof(a), first),
1459 format_timestamp(b, sizeof(b), validated),
1460 format_timespan(c, sizeof(c), last > validated ? last - validated : 0, 0));
1461 } else if (last > 0)
1462 log_info("=> No sealing yet, %s of entries not sealed.",
1463 format_timespan(c, sizeof(c), last - first, 0));
1465 log_info("=> No sealing yet, no entries in file.");
1474 static int access_check_var_log_journal(sd_journal *j) {
1475 _cleanup_strv_free_ char **g = NULL;
1481 have_access = in_group("systemd-journal") > 0;
1484 /* Let's enumerate all groups from the default ACL of
1485 * the directory, which generally should allow access
1486 * to most journal files too */
1487 r = search_acl_groups(&g, "/var/log/journal/", &have_access);
1494 if (strv_isempty(g))
1495 log_notice("Hint: You are currently not seeing messages from other users and the system.\n"
1496 " Users in the 'systemd-journal' group can see all messages. Pass -q to\n"
1497 " turn off this notice.");
1499 _cleanup_free_ char *s = NULL;
1501 r = strv_extend(&g, "systemd-journal");
1508 s = strv_join(g, "', '");
1512 log_notice("Hint: You are currently not seeing messages from other users and the system.\n"
1513 " Users in the groups '%s' can see all messages.\n"
1514 " Pass -q to turn off this notice.", s);
1522 static int access_check(sd_journal *j) {
1529 if (set_isempty(j->errors)) {
1530 if (hashmap_isempty(j->files))
1531 log_notice("No journal files were found.");
1535 if (set_contains(j->errors, INT_TO_PTR(-EACCES))) {
1537 /* If /var/log/journal doesn't even exist,
1538 * unprivileged users have no access at all */
1539 if (access("/var/log/journal", F_OK) < 0 &&
1541 in_group("systemd-journal") <= 0) {
1542 log_error("Unprivileged users cannot access messages, unless persistent log storage is\n"
1543 "enabled. Users in the 'systemd-journal' group may always access messages.");
1547 /* If /var/log/journal exists, try to pring a nice
1548 notice if the user lacks access to it */
1549 if (!arg_quiet && geteuid() != 0) {
1550 r = access_check_var_log_journal(j);
1555 if (geteuid() != 0 && in_group("systemd-journal") <= 0) {
1556 log_error("Unprivileged users cannot access messages. Users in the 'systemd-journal' group\n"
1557 "group may access messages.");
1562 if (hashmap_isempty(j->files)) {
1563 log_error("No journal files were opened due to insufficient permissions.");
1568 SET_FOREACH(code, j->errors, it) {
1571 err = -PTR_TO_INT(code);
1575 log_warning("Error was encountered while opening journal files: %s",
1582 int main(int argc, char *argv[]) {
1584 _cleanup_journal_close_ sd_journal *j = NULL;
1585 bool need_seek = false;
1586 sd_id128_t previous_boot_id;
1587 bool previous_boot_id_valid = false, first_line = true;
1589 bool ellipsized = false;
1591 setlocale(LC_ALL, "");
1592 log_parse_environment();
1595 r = parse_argv(argc, argv);
1599 signal(SIGWINCH, columns_lines_cache_reset);
1601 if (arg_action == ACTION_NEW_ID128) {
1602 r = generate_new_id128();
1606 if (arg_action == ACTION_SETUP_KEYS) {
1611 if (arg_action == ACTION_UPDATE_CATALOG ||
1612 arg_action == ACTION_LIST_CATALOG ||
1613 arg_action == ACTION_DUMP_CATALOG) {
1615 _cleanup_free_ char *database;
1617 database = path_join(arg_root, CATALOG_DATABASE, NULL);
1623 if (arg_action == ACTION_UPDATE_CATALOG) {
1624 r = catalog_update(database, arg_root, catalog_file_dirs);
1626 log_error("Failed to list catalog: %s", strerror(-r));
1628 bool oneline = arg_action == ACTION_LIST_CATALOG;
1631 r = catalog_list_items(stdout, database,
1632 oneline, argv + optind);
1634 r = catalog_list(stdout, database, oneline);
1636 log_error("Failed to list catalog: %s", strerror(-r));
1643 r = sd_journal_open_directory(&j, arg_directory, arg_journal_type);
1645 r = sd_journal_open_files(&j, (const char**) arg_file, 0);
1646 else if (arg_machine)
1647 r = sd_journal_open_container(&j, arg_machine, 0);
1649 r = sd_journal_open(&j, !arg_merge*SD_JOURNAL_LOCAL_ONLY + arg_journal_type);
1651 log_error("Failed to open %s: %s",
1652 arg_directory ? arg_directory : arg_file ? "files" : "journal",
1654 return EXIT_FAILURE;
1657 r = access_check(j);
1659 return EXIT_FAILURE;
1661 if (arg_action == ACTION_VERIFY) {
1666 if (arg_action == ACTION_PRINT_HEADER) {
1667 journal_print_header(j);
1668 return EXIT_SUCCESS;
1671 if (arg_action == ACTION_DISK_USAGE) {
1673 char sbytes[FORMAT_BYTES_MAX];
1675 r = sd_journal_get_usage(j, &bytes);
1677 return EXIT_FAILURE;
1679 printf("Journals take up %s on disk.\n",
1680 format_bytes(sbytes, sizeof(sbytes), bytes));
1681 return EXIT_SUCCESS;
1684 if (arg_action == ACTION_LIST_BOOTS) {
1689 /* add_boot() must be called first!
1690 * It may need to seek the journal to find parent boot IDs. */
1693 return EXIT_FAILURE;
1697 return EXIT_FAILURE;
1700 strv_free(arg_system_units);
1701 strv_free(arg_user_units);
1704 log_error("Failed to add filter for units: %s", strerror(-r));
1705 return EXIT_FAILURE;
1708 r = add_priorities(j);
1710 log_error("Failed to add filter for priorities: %s", strerror(-r));
1711 return EXIT_FAILURE;
1714 r = add_matches(j, argv + optind);
1716 log_error("Failed to add filters: %s", strerror(-r));
1717 return EXIT_FAILURE;
1720 if (_unlikely_(log_get_max_level() >= LOG_PRI(LOG_DEBUG))) {
1721 _cleanup_free_ char *filter;
1723 filter = journal_make_match_string(j);
1724 log_debug("Journal filter: %s", filter);
1731 r = sd_journal_set_data_threshold(j, 0);
1733 log_error("Failed to unset data size threshold");
1734 return EXIT_FAILURE;
1737 r = sd_journal_query_unique(j, arg_field);
1739 log_error("Failed to query unique data objects: %s", strerror(-r));
1740 return EXIT_FAILURE;
1743 SD_JOURNAL_FOREACH_UNIQUE(j, data, size) {
1746 if (arg_lines >= 0 && n_shown >= arg_lines)
1749 eq = memchr(data, '=', size);
1751 printf("%.*s\n", (int) (size - ((const uint8_t*) eq - (const uint8_t*) data + 1)), (const char*) eq + 1);
1753 printf("%.*s\n", (int) size, (const char*) data);
1758 return EXIT_SUCCESS;
1761 /* Opening the fd now means the first sd_journal_wait() will actually wait */
1763 r = sd_journal_get_fd(j);
1765 return EXIT_FAILURE;
1768 if (arg_cursor || arg_after_cursor) {
1769 r = sd_journal_seek_cursor(j, arg_cursor ?: arg_after_cursor);
1771 log_error("Failed to seek to cursor: %s", strerror(-r));
1772 return EXIT_FAILURE;
1775 r = sd_journal_next_skip(j, 1 + !!arg_after_cursor);
1777 r = sd_journal_previous_skip(j, 1 + !!arg_after_cursor);
1779 if (arg_after_cursor && r < 2 && !arg_follow)
1780 /* We couldn't find the next entry after the cursor. */
1783 } else if (arg_since_set && !arg_reverse) {
1784 r = sd_journal_seek_realtime_usec(j, arg_since);
1786 log_error("Failed to seek to date: %s", strerror(-r));
1787 return EXIT_FAILURE;
1789 r = sd_journal_next(j);
1791 } else if (arg_until_set && arg_reverse) {
1792 r = sd_journal_seek_realtime_usec(j, arg_until);
1794 log_error("Failed to seek to date: %s", strerror(-r));
1795 return EXIT_FAILURE;
1797 r = sd_journal_previous(j);
1799 } else if (arg_lines >= 0) {
1800 r = sd_journal_seek_tail(j);
1802 log_error("Failed to seek to tail: %s", strerror(-r));
1803 return EXIT_FAILURE;
1806 r = sd_journal_previous_skip(j, arg_lines);
1808 } else if (arg_reverse) {
1809 r = sd_journal_seek_tail(j);
1811 log_error("Failed to seek to tail: %s", strerror(-r));
1812 return EXIT_FAILURE;
1815 r = sd_journal_previous(j);
1818 r = sd_journal_seek_head(j);
1820 log_error("Failed to seek to head: %s", strerror(-r));
1821 return EXIT_FAILURE;
1824 r = sd_journal_next(j);
1828 log_error("Failed to iterate through journal: %s", strerror(-r));
1829 return EXIT_FAILURE;
1833 pager_open_if_enabled();
1837 char start_buf[FORMAT_TIMESTAMP_MAX], end_buf[FORMAT_TIMESTAMP_MAX];
1839 r = sd_journal_get_cutoff_realtime_usec(j, &start, &end);
1841 log_error("Failed to get cutoff: %s", strerror(-r));
1847 printf("-- Logs begin at %s. --\n",
1848 format_timestamp(start_buf, sizeof(start_buf), start));
1850 printf("-- Logs begin at %s, end at %s. --\n",
1851 format_timestamp(start_buf, sizeof(start_buf), start),
1852 format_timestamp(end_buf, sizeof(end_buf), end));
1857 while (arg_lines < 0 || n_shown < arg_lines || (arg_follow && !first_line)) {
1862 r = sd_journal_next(j);
1864 r = sd_journal_previous(j);
1866 log_error("Failed to iterate through journal: %s", strerror(-r));
1873 if (arg_until_set && !arg_reverse) {
1876 r = sd_journal_get_realtime_usec(j, &usec);
1878 log_error("Failed to determine timestamp: %s", strerror(-r));
1881 if (usec > arg_until)
1885 if (arg_since_set && arg_reverse) {
1888 r = sd_journal_get_realtime_usec(j, &usec);
1890 log_error("Failed to determine timestamp: %s", strerror(-r));
1893 if (usec < arg_since)
1900 r = sd_journal_get_monotonic_usec(j, NULL, &boot_id);
1902 if (previous_boot_id_valid &&
1903 !sd_id128_equal(boot_id, previous_boot_id))
1904 printf("%s-- Reboot --%s\n",
1905 ansi_highlight(), ansi_highlight_off());
1907 previous_boot_id = boot_id;
1908 previous_boot_id_valid = true;
1913 arg_all * OUTPUT_SHOW_ALL |
1914 arg_full * OUTPUT_FULL_WIDTH |
1915 on_tty() * OUTPUT_COLOR |
1916 arg_catalog * OUTPUT_CATALOG;
1918 r = output_journal(stdout, j, arg_output, 0, flags, &ellipsized);
1920 if (r == -EADDRNOTAVAIL)
1922 else if (r < 0 || ferror(stdout))
1929 if (arg_show_cursor) {
1930 _cleanup_free_ char *cursor = NULL;
1932 r = sd_journal_get_cursor(j, &cursor);
1933 if (r < 0 && r != -EADDRNOTAVAIL)
1934 log_error("Failed to get cursor: %s", strerror(-r));
1936 printf("-- cursor: %s\n", cursor);
1942 r = sd_journal_wait(j, (uint64_t) -1);
1944 log_error("Couldn't wait for journal event: %s", strerror(-r));
1954 strv_free(arg_file);
1956 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;