journalctl.c revision fafb6eccc2c9e3f8d6ce0aad9cb428f8cc402b24
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2011 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <fcntl.h>
#include <errno.h>
#include <stddef.h>
#include <string.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <time.h>
#include <getopt.h>
#include <systemd/sd-journal.h>
#include "log.h"
#include "util.h"
#include "path-util.h"
#include "build.h"
#include "pager.h"
#include "logs-show.h"
#include "strv.h"
#include "journal-internal.h"
static bool arg_follow = false;
static bool arg_show_all = false;
static bool arg_no_pager = false;
static int arg_lines = -1;
static bool arg_no_tail = false;
static bool arg_new_id128 = false;
static bool arg_print_header = false;
static bool arg_quiet = false;
static bool arg_local = false;
static bool arg_this_boot = false;
static const char *arg_directory = NULL;
static int help(void) {
printf("%s [OPTIONS...] [MATCH]\n\n"
"Send control commands to or query the journal.\n\n"
" -h --help Show this help\n"
" --version Show package version\n"
" --no-pager Do not pipe output into a pager\n"
" -a --all Show all fields, including long and unprintable\n"
" -f --follow Follow journal\n"
" -n --lines=INTEGER Journal entries to show\n"
" --no-tail Show all lines, even in follow mode\n"
" -o --output=STRING Change journal output mode (short, short-monotonic,\n"
" verbose, export, json, cat)\n"
" -q --quiet Don't show privilege warning\n"
" -l --local Only local entries\n"
" -b --this-boot Show data only from current boot\n"
" -D --directory=PATH Show journal files from directory\n"
" --header Show journal header information\n"
" --new-id128 Generate a new 128 Bit id\n",
return 0;
}
enum {
ARG_VERSION = 0x100,
};
};
int c, r;
switch (c) {
case 'h':
help();
return 0;
case ARG_VERSION:
return 0;
case ARG_NO_PAGER:
arg_no_pager = true;
break;
case 'f':
arg_follow = true;
break;
case 'o':
if (arg_output < 0) {
return -EINVAL;
}
break;
case 'a':
arg_show_all = true;
break;
case 'n':
if (r < 0 || arg_lines < 0) {
return -EINVAL;
}
break;
case ARG_NO_TAIL:
arg_no_tail = true;
break;
case ARG_NEW_ID128:
arg_new_id128 = true;
break;
case 'q':
arg_quiet = true;
break;
case 'l':
arg_local = true;
break;
case 'b':
arg_this_boot = true;
break;
case 'D':
break;
case ARG_HEADER:
arg_print_header = true;
break;
case '?':
return -EINVAL;
default:
log_error("Unknown option code %c", c);
return -EINVAL;
}
}
arg_lines = 10;
return 1;
}
static int generate_new_id128(void) {
int r;
unsigned i;
r = sd_id128_randomize(&id);
if (r < 0) {
return r;
}
printf("As string:\n"
SD_ID128_FORMAT_STR "\n\n"
"As UUID:\n"
"%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x\n\n"
"As macro:\n"
"#define MESSAGE_XYZ SD_ID128_MAKE(",
for (i = 0; i < 16; i++)
return 0;
}
char **i;
int r;
assert(j);
STRV_FOREACH(i, args) {
if (streq(*i, "+"))
r = sd_journal_add_disjunction(j);
else if (path_is_absolute(*i)) {
char *p;
const char *path;
p = canonicalize_file_name(*i);
path = p ? p : *i;
free(p);
log_error("Couldn't stat file: %m");
return -errno;
}
char *t;
if (!t) {
free(p);
log_error("Out of memory");
return -ENOMEM;
}
r = sd_journal_add_match(j, t, 0);
free(t);
} else {
free(p);
log_error("File is not a regular file or is not executable: %s", *i);
return -EINVAL;
}
free(p);
} else
r = sd_journal_add_match(j, *i, 0);
if (r < 0) {
return r;
}
}
return 0;
}
static int add_this_boot(sd_journal *j) {
int r;
if (!arg_this_boot)
return 0;
r = sd_id128_get_boot(&boot_id);
if (r < 0) {
return r;
}
if (r < 0) {
return r;
}
return 0;
}
int r;
sd_journal *j = NULL;
unsigned line = 0;
bool need_seek = false;
bool previous_boot_id_valid = false;
bool have_pager;
log_open();
if (r <= 0)
goto finish;
if (arg_new_id128) {
r = generate_new_id128();
goto finish;
}
#ifdef HAVE_ACL
log_warning("Showing user generated messages only. Users in the group 'adm' can see all messages. Pass -q to turn this message off.");
#endif
if (arg_directory)
r = sd_journal_open_directory(&j, arg_directory, 0);
else
if (r < 0) {
goto finish;
}
if (arg_print_header) {
r = 0;
goto finish;
}
r = add_this_boot(j);
if (r < 0)
goto finish;
if (r < 0)
goto finish;
if (!arg_quiet) {
if (r < 0) {
goto finish;
}
if (r > 0) {
if (arg_follow)
else
printf("Logs begin at %s, end at %s.\n",
}
}
if (arg_lines >= 0) {
r = sd_journal_seek_tail(j);
if (r < 0) {
goto finish;
}
r = sd_journal_previous_skip(j, arg_lines);
} else {
r = sd_journal_seek_head(j);
if (r < 0) {
goto finish;
}
r = sd_journal_next(j);
}
if (r < 0) {
goto finish;
}
if (arg_output == OUTPUT_JSON) {
}
for (;;) {
for (;;) {
if (need_seek) {
r = sd_journal_next(j);
if (r < 0) {
goto finish;
}
}
if (r == 0)
break;
if (r >= 0) {
if (previous_boot_id_valid &&
previous_boot_id_valid = true;
}
line ++;
if (r < 0)
goto finish;
need_seek = true;
}
if (!arg_follow)
break;
if (r < 0) {
goto finish;
}
}
if (arg_output == OUTPUT_JSON)
if (j)
sd_journal_close(j);
pager_close();
return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
}