blob: 17b6ca23543d70c743a4197d85ddcbb5b68cb4ad [file] [log] [blame]
Mark Whitley6317c4b2001-03-12 22:51:50 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Mini klogd implementation for busybox
4 *
Glenn L McGrath6ed77592002-12-12 10:54:48 +00005 * Copyright (C) 2001 by Gennady Feldman <gfeldman@gena01.com>.
Mark Whitley6317c4b2001-03-12 22:51:50 +00006 * Changes: Made this a standalone busybox module which uses standalone
Jeremie Koenig63c2e7e2010-08-01 03:01:44 +02007 * syslog() client interface.
Mark Whitley6317c4b2001-03-12 22:51:50 +00008 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00009 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Mark Whitley6317c4b2001-03-12 22:51:50 +000010 *
11 * Copyright (C) 2000 by Karl M. Hegbloom <karlheg@debian.org>
12 *
Glenn L McGrath6ed77592002-12-12 10:54:48 +000013 * "circular buffer" Copyright (C) 2000 by Gennady Feldman <gfeldman@gena01.com>
Mark Whitley6317c4b2001-03-12 22:51:50 +000014 *
Glenn L McGrath6ed77592002-12-12 10:54:48 +000015 * Maintainer: Gennady Feldman <gfeldman@gena01.com> as of Mar 12, 2001
Mark Whitley6bff9cc2001-03-12 23:41:34 +000016 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020017 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Mark Whitley6317c4b2001-03-12 22:51:50 +000018 */
Denys Vlasenkod34f3002015-10-18 18:42:03 +020019//config:config KLOGD
Denys Vlasenkob097a842018-12-28 03:20:17 +010020//config: bool "klogd (5.7 kb)"
Denys Vlasenkod34f3002015-10-18 18:42:03 +020021//config: default y
22//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020023//config: klogd is a utility which intercepts and logs all
24//config: messages from the Linux kernel and sends the messages
25//config: out to the 'syslogd' utility so they can be logged. If
26//config: you wish to record the messages produced by the kernel,
27//config: you should enable this option.
Denys Vlasenkod34f3002015-10-18 18:42:03 +020028//config:
29//config:comment "klogd should not be used together with syslog to kernel printk buffer"
30//config: depends on KLOGD && FEATURE_KMSG_SYSLOG
31//config:
32//config:config FEATURE_KLOGD_KLOGCTL
33//config: bool "Use the klogctl() interface"
34//config: default y
35//config: depends on KLOGD
36//config: select PLATFORM_LINUX
37//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020038//config: The klogd applet supports two interfaces for reading
39//config: kernel messages. Linux provides the klogctl() interface
40//config: which allows reading messages from the kernel ring buffer
41//config: independently from the file system.
Denys Vlasenkod34f3002015-10-18 18:42:03 +020042//config:
Denys Vlasenko72089cf2017-07-21 09:50:55 +020043//config: If you answer 'N' here, klogd will use the more portable
44//config: approach of reading them from /proc or a device node.
45//config: However, this method requires the file to be available.
Denys Vlasenkod34f3002015-10-18 18:42:03 +020046//config:
Denys Vlasenko72089cf2017-07-21 09:50:55 +020047//config: If in doubt, say 'Y'.
Denys Vlasenkod34f3002015-10-18 18:42:03 +020048
49//applet:IF_KLOGD(APPLET(klogd, BB_DIR_SBIN, BB_SUID_DROP))
50
51//kbuild:lib-$(CONFIG_KLOGD) += klogd.o
Mark Whitley6317c4b2001-03-12 22:51:50 +000052
Pere Orga5bc8c002011-04-11 03:29:49 +020053//usage:#define klogd_trivial_usage
54//usage: "[-c N] [-n]"
55//usage:#define klogd_full_usage "\n\n"
Denys Vlasenkoe8073512018-07-31 15:25:00 +020056//usage: "Log kernel messages to syslog\n"
Denys Vlasenkoaeab42e2011-05-25 11:58:56 +020057//usage: "\n -c N Print to console messages more urgent than prio N (1-8)"
Pere Orga5bc8c002011-04-11 03:29:49 +020058//usage: "\n -n Run in foreground"
59
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000060#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020061#include "common_bufsiz.h"
Bernhard Reutner-Fischerf4701962008-01-27 12:50:12 +000062#include <syslog.h>
Eric Andersene76c3b02001-04-05 03:14:39 +000063
Jeremie Koenig63c2e7e2010-08-01 03:01:44 +020064
65/* The Linux-specific klogctl(3) interface does not rely on the filesystem and
66 * allows us to change the console loglevel. Alternatively, we read the
67 * messages from _PATH_KLOG. */
68
69#if ENABLE_FEATURE_KLOGD_KLOGCTL
70
71# include <sys/klog.h>
72
73static void klogd_open(void)
74{
75 /* "Open the log. Currently a NOP" */
76 klogctl(1, NULL, 0);
77}
78
79static void klogd_setloglevel(int lvl)
80{
81 /* "printk() prints a message on the console only if it has a loglevel
82 * less than console_loglevel". Here we set console_loglevel = lvl. */
83 klogctl(8, NULL, lvl);
84}
85
86static int klogd_read(char *bufp, int len)
87{
Denys Vlasenkoe8073512018-07-31 15:25:00 +020088 /* "2 -- Read from the log." */
Jeremie Koenig63c2e7e2010-08-01 03:01:44 +020089 return klogctl(2, bufp, len);
90}
91# define READ_ERROR "klogctl(2) error"
92
93static void klogd_close(void)
Mark Whitley6317c4b2001-03-12 22:51:50 +000094{
Denis Vlasenko7bdf0c82008-06-06 16:08:04 +000095 /* FYI: cmd 7 is equivalent to setting console_loglevel to 7
96 * via klogctl(8, NULL, 7). */
97 klogctl(7, NULL, 0); /* "7 -- Enable printk's to console" */
98 klogctl(0, NULL, 0); /* "0 -- Close the log. Currently a NOP" */
Mark Whitley6317c4b2001-03-12 22:51:50 +000099}
100
Jeremie Koenig63c2e7e2010-08-01 03:01:44 +0200101#else
102
Jeremie Koenig63c2e7e2010-08-01 03:01:44 +0200103# ifndef _PATH_KLOG
104# ifdef __GNU__
105# define _PATH_KLOG "/dev/klog"
106# else
107# error "your system's _PATH_KLOG is unknown"
108# endif
109# endif
110# define PATH_PRINTK "/proc/sys/kernel/printk"
111
112enum { klogfd = 3 };
113
114static void klogd_open(void)
115{
116 int fd = xopen(_PATH_KLOG, O_RDONLY);
117 xmove_fd(fd, klogfd);
118}
119
120static void klogd_setloglevel(int lvl)
121{
122 FILE *fp = fopen_or_warn(PATH_PRINTK, "w");
123 if (fp) {
124 /* This changes only first value:
125 * "messages with a higher priority than this
126 * [that is, with numerically lower value]
127 * will be printed to the console".
128 * The other three values in this pseudo-file aren't changed.
129 */
130 fprintf(fp, "%u\n", lvl);
131 fclose(fp);
132 }
133}
134
135static int klogd_read(char *bufp, int len)
136{
137 return read(klogfd, bufp, len);
138}
139# define READ_ERROR "read error"
140
141static void klogd_close(void)
142{
143 klogd_setloglevel(7);
144 if (ENABLE_FEATURE_CLEAN_UP)
145 close(klogfd);
146}
147
148#endif
149
Denys Vlasenko9de2e5a2016-04-21 18:38:51 +0200150#define log_buffer bb_common_bufsiz1
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +0000151enum {
Denys Vlasenko9de2e5a2016-04-21 18:38:51 +0200152 KLOGD_LOGBUF_SIZE = COMMON_BUFSIZE,
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +0000153 OPT_LEVEL = (1 << 0),
154 OPT_FOREGROUND = (1 << 1),
155};
Bernhard Reutner-Fischer595159f2006-05-31 12:22:13 +0000156
Jeremie Koenig63c2e7e2010-08-01 03:01:44 +0200157/* TODO: glibc openlog(LOG_KERN) reverts to LOG_USER instead,
158 * because that's how they interpret word "default"
159 * in the openlog() manpage:
160 * LOG_USER (default)
161 * generic user-level messages
162 * and the fact that LOG_KERN is a constant 0.
163 * glibc interprets it as "0 in openlog() call means 'use default'".
164 * I think it means "if openlog wasn't called before syslog() is called,
165 * use default".
166 * Convincing glibc maintainers otherwise is, as usual, nearly impossible.
167 * Should we open-code syslog() here to use correct facility?
168 */
169
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000170int klogd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000171int klogd_main(int argc UNUSED_PARAM, char **argv)
Mark Whitley6317c4b2001-03-12 22:51:50 +0000172{
Denis Vlasenko7bdf0c82008-06-06 16:08:04 +0000173 int i = 0;
Denis Vlasenko2e7dc5d2008-11-19 07:59:49 +0000174 char *opt_c;
Denis Vlasenko7bdf0c82008-06-06 16:08:04 +0000175 int opt;
Denys Vlasenko0016bce2010-10-19 23:07:49 +0200176 int used;
Mark Whitley6317c4b2001-03-12 22:51:50 +0000177
Denys Vlasenko9de2e5a2016-04-21 18:38:51 +0200178 setup_common_bufsiz();
179
Denis Vlasenko2e7dc5d2008-11-19 07:59:49 +0000180 opt = getopt32(argv, "c:n", &opt_c);
Denis Vlasenko7bdf0c82008-06-06 16:08:04 +0000181 if (opt & OPT_LEVEL) {
Denis Vlasenkoe428e9d2007-01-04 03:07:57 +0000182 /* Valid levels are between 1 and 8 */
Denis Vlasenko2e7dc5d2008-11-19 07:59:49 +0000183 i = xatou_range(opt_c, 1, 8);
Denis Vlasenkoe428e9d2007-01-04 03:07:57 +0000184 }
Denis Vlasenko7bdf0c82008-06-06 16:08:04 +0000185 if (!(opt & OPT_FOREGROUND)) {
Denis Vlasenko5a142022007-03-26 13:20:54 +0000186 bb_daemonize_or_rexec(DAEMON_CHDIR_ROOT, argv);
Bernhard Reutner-Fischer595159f2006-05-31 12:22:13 +0000187 }
188
Jeremie Koenig63c2e7e2010-08-01 03:01:44 +0200189 logmode = LOGMODE_SYSLOG;
190
191 /* klogd_open() before openlog(), since it might use fixed fd 3,
192 * and openlog() also may use the same fd 3 if we swap them:
193 */
194 klogd_open();
Eric Andersen36adca82004-06-22 10:07:17 +0000195 openlog("kernel", 0, LOG_KERN);
Denys Vlasenko8b6b4722011-03-07 10:57:26 +0100196 /*
197 * glibc problem: for some reason, glibc changes LOG_KERN to LOG_USER
198 * above. The logic behind this is that standard
199 * http://pubs.opengroup.org/onlinepubs/9699919799/functions/syslog.html
200 * says the following about openlog and syslog:
201 * "LOG_USER
202 * Messages generated by arbitrary processes.
203 * This is the default facility identifier if none is specified."
204 *
205 * I believe glibc misinterpreted this text as "if openlog's
206 * third parameter is 0 (=LOG_KERN), treat it as LOG_USER".
207 * Whereas it was meant to say "if *syslog* is called with facility
208 * 0 in its 1st parameter without prior call to openlog, then perform
209 * implicit openlog(LOG_USER)".
210 *
211 * As a result of this, eh, feature, standard klogd was forced
212 * to open-code its own openlog and syslog implementation (!).
213 *
214 * Note that prohibiting openlog(LOG_KERN) on libc level does not
215 * add any security: any process can open a socket to "/dev/log"
216 * and write a string "<0>Voila, a LOG_KERN + LOG_EMERG message"
217 *
218 * Google code search tells me there is no widespread use of
219 * openlog("foo", 0, 0), thus fixing glibc won't break userspace.
220 *
221 * The bug against glibc was filed:
222 * bugzilla.redhat.com/show_bug.cgi?id=547000
223 */
Eric Andersen36adca82004-06-22 10:07:17 +0000224
Denis Vlasenko7bdf0c82008-06-06 16:08:04 +0000225 if (i)
Jeremie Koenig63c2e7e2010-08-01 03:01:44 +0200226 klogd_setloglevel(i);
227
Jeremie Koenig63c2e7e2010-08-01 03:01:44 +0200228 signal(SIGHUP, SIG_IGN);
Denys Vlasenko8b6b4722011-03-07 10:57:26 +0100229 /* We want klogd_read to not be restarted, thus _norestart: */
230 bb_signals_recursive_norestart(BB_FATAL_SIGS, record_signo);
Glenn L McGrathe1ad6722002-12-01 11:31:58 +0000231
Denis Vlasenkoca525b42007-06-13 12:27:17 +0000232 syslog(LOG_NOTICE, "klogd started: %s", bb_banner);
Mark Whitley6317c4b2001-03-12 22:51:50 +0000233
Denys Vlasenko50596532019-03-17 19:47:52 +0100234 write_pidfile_std_path_and_ext("klogd");
Anthony G. Basile12677ac2012-12-10 14:49:39 -0500235
Denys Vlasenko0016bce2010-10-19 23:07:49 +0200236 used = 0;
Jeremie Koenig63c2e7e2010-08-01 03:01:44 +0200237 while (!bb_got_signal) {
Bernhard Reutner-Fischer8fc40112007-01-09 15:46:36 +0000238 int n;
239 int priority;
Denis Vlasenko2e7dc5d2008-11-19 07:59:49 +0000240 char *start;
Bernhard Reutner-Fischer8fc40112007-01-09 15:46:36 +0000241
Denis Vlasenko2e7dc5d2008-11-19 07:59:49 +0000242 start = log_buffer + used;
Jeremie Koenig63c2e7e2010-08-01 03:01:44 +0200243 n = klogd_read(start, KLOGD_LOGBUF_SIZE-1 - used);
Mark Whitley6317c4b2001-03-12 22:51:50 +0000244 if (n < 0) {
Mark Whitley6317c4b2001-03-12 22:51:50 +0000245 if (errno == EINTR)
246 continue;
Jeremie Koenig63c2e7e2010-08-01 03:01:44 +0200247 bb_perror_msg(READ_ERROR);
Denis Vlasenkoe428e9d2007-01-04 03:07:57 +0000248 break;
Mark Whitley6317c4b2001-03-12 22:51:50 +0000249 }
Denis Vlasenko2e7dc5d2008-11-19 07:59:49 +0000250 start[n] = '\0';
Denis Vlasenko93d07762008-10-04 16:40:17 +0000251
Denis Vlasenko93d07762008-10-04 16:40:17 +0000252 /* Process each newline-terminated line in the buffer */
Denis Vlasenko58a88912008-11-19 09:35:00 +0000253 start = log_buffer;
Denis Vlasenko93d07762008-10-04 16:40:17 +0000254 while (1) {
Denis Vlasenko2e7dc5d2008-11-19 07:59:49 +0000255 char *newline = strchrnul(start, '\n');
Denis Vlasenko93d07762008-10-04 16:40:17 +0000256
Denis Vlasenko2e7dc5d2008-11-19 07:59:49 +0000257 if (*newline == '\0') {
Denys Vlasenko0016bce2010-10-19 23:07:49 +0200258 /* This line is incomplete */
259
260 /* move it to the front of the buffer */
261 overlapping_strcpy(log_buffer, start);
262 used = newline - start;
263 if (used < KLOGD_LOGBUF_SIZE-1) {
264 /* buffer isn't full */
Denis Vlasenko93d07762008-10-04 16:40:17 +0000265 break;
Mark Whitley6317c4b2001-03-12 22:51:50 +0000266 }
Denys Vlasenko0016bce2010-10-19 23:07:49 +0200267 /* buffer is full, log it anyway */
Denis Vlasenko93d07762008-10-04 16:40:17 +0000268 used = 0;
Denis Vlasenko2e7dc5d2008-11-19 07:59:49 +0000269 newline = NULL;
Denis Vlasenko93d07762008-10-04 16:40:17 +0000270 } else {
271 *newline++ = '\0';
Mark Whitley6317c4b2001-03-12 22:51:50 +0000272 }
Denis Vlasenko93d07762008-10-04 16:40:17 +0000273
274 /* Extract the priority */
275 priority = LOG_INFO;
276 if (*start == '<') {
277 start++;
Denys Vlasenkoc16ae462018-07-31 16:50:26 +0200278 if (*start) {
279 char *end;
280 priority = strtoul(start, &end, 10);
281 if (*end == '>')
282 end++;
283 start = end;
284 }
Denis Vlasenko93d07762008-10-04 16:40:17 +0000285 }
Denis Vlasenko2e7dc5d2008-11-19 07:59:49 +0000286 /* Log (only non-empty lines) */
Denis Vlasenko93d07762008-10-04 16:40:17 +0000287 if (*start)
288 syslog(priority, "%s", start);
Denis Vlasenko2e7dc5d2008-11-19 07:59:49 +0000289
Denis Vlasenko93d07762008-10-04 16:40:17 +0000290 if (!newline)
291 break;
292 start = newline;
Mark Whitley6317c4b2001-03-12 22:51:50 +0000293 }
294 }
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000295
Jeremie Koenig63c2e7e2010-08-01 03:01:44 +0200296 klogd_close();
297 syslog(LOG_NOTICE, "klogd: exiting");
Denys Vlasenko50596532019-03-17 19:47:52 +0100298 remove_pidfile_std_path_and_ext("klogd");
Jeremie Koenig63c2e7e2010-08-01 03:01:44 +0200299 if (bb_got_signal)
300 kill_myself_with_sig(bb_got_signal);
Denis Vlasenkoe428e9d2007-01-04 03:07:57 +0000301 return EXIT_FAILURE;
Mark Whitley6317c4b2001-03-12 22:51:50 +0000302}