1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2012 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/>.
30 #include "systemd/sd-journal.h"
35 static char *arg_identifier = NULL;
36 static int arg_priority = LOG_INFO;
37 static bool arg_level_prefix = true;
39 static void help(void) {
40 printf("%s [OPTIONS...] {COMMAND} ...\n\n"
41 "Execute process with stdout/stderr connected to the journal.\n\n"
42 " -h --help Show this help\n"
43 " --version Show package version\n"
44 " -t --identifier=STRING Set syslog identifier\n"
45 " -p --priority=PRIORITY Set priority value (0..7)\n"
46 " --level-prefix=BOOL Control whether level prefix shall be parsed\n"
47 , program_invocation_short_name);
50 static int parse_argv(int argc, char *argv[]) {
57 static const struct option options[] = {
58 { "help", no_argument, NULL, 'h' },
59 { "version", no_argument, NULL, ARG_VERSION },
60 { "identifier", required_argument, NULL, 't' },
61 { "priority", required_argument, NULL, 'p' },
62 { "level-prefix", required_argument, NULL, ARG_LEVEL_PREFIX },
71 while ((c = getopt_long(argc, argv, "+ht:p:", options, NULL)) >= 0)
81 puts(SYSTEMD_FEATURES);
87 arg_identifier = NULL;
89 arg_identifier = strdup(optarg);
96 arg_priority = log_level_from_string(optarg);
97 if (arg_priority < 0) {
98 log_error("Failed to parse priority value.");
103 case ARG_LEVEL_PREFIX: {
106 k = parse_boolean(optarg);
108 log_error("Failed to parse level prefix value.");
111 arg_level_prefix = k;
119 assert_not_reached("Unhandled option");
125 int main(int argc, char *argv[]) {
126 int r, fd = -1, saved_stderr = -1;
128 log_parse_environment();
131 r = parse_argv(argc, argv);
135 fd = sd_journal_stream_fd(arg_identifier, arg_priority, arg_level_prefix);
137 log_error("Failed to create stream fd: %s", strerror(-fd));
142 saved_stderr = fcntl(STDERR_FILENO, F_DUPFD_CLOEXEC, 3);
144 if (dup3(fd, STDOUT_FILENO, 0) < 0 ||
145 dup3(fd, STDERR_FILENO, 0) < 0) {
146 log_error("Failed to duplicate fd: %m");
157 execl("/bin/cat", "/bin/cat", NULL);
159 execvp(argv[optind], argv + optind);
163 /* Let's try to restore a working stderr, so we can print the error message */
164 if (saved_stderr >= 0)
165 dup3(saved_stderr, STDERR_FILENO, 0);
167 log_error("Failed to execute process: %s", strerror(-r));
171 safe_close(saved_stderr);
173 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;