2001-03-13 04:21:50 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini klogd implementation for busybox
|
|
|
|
*
|
2002-12-12 16:24:48 +05:30
|
|
|
* Copyright (C) 2001 by Gennady Feldman <gfeldman@gena01.com>.
|
2001-03-13 04:21:50 +05:30
|
|
|
* Changes: Made this a standalone busybox module which uses standalone
|
2010-08-01 06:31:44 +05:30
|
|
|
* syslog() client interface.
|
2001-03-13 04:21:50 +05:30
|
|
|
*
|
2004-03-15 13:59:22 +05:30
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2001-03-13 04:21:50 +05:30
|
|
|
*
|
|
|
|
* Copyright (C) 2000 by Karl M. Hegbloom <karlheg@debian.org>
|
|
|
|
*
|
2002-12-12 16:24:48 +05:30
|
|
|
* "circular buffer" Copyright (C) 2000 by Gennady Feldman <gfeldman@gena01.com>
|
2001-03-13 04:21:50 +05:30
|
|
|
*
|
2002-12-12 16:24:48 +05:30
|
|
|
* Maintainer: Gennady Feldman <gfeldman@gena01.com> as of Mar 12, 2001
|
2001-03-13 05:11:34 +05:30
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2001-03-13 04:21:50 +05:30
|
|
|
*/
|
2015-10-18 22:12:03 +05:30
|
|
|
//config:config KLOGD
|
|
|
|
//config: bool "klogd"
|
|
|
|
//config: default y
|
|
|
|
//config: help
|
|
|
|
//config: klogd is a utility which intercepts and logs all
|
|
|
|
//config: messages from the Linux kernel and sends the messages
|
|
|
|
//config: out to the 'syslogd' utility so they can be logged. If
|
|
|
|
//config: you wish to record the messages produced by the kernel,
|
|
|
|
//config: you should enable this option.
|
|
|
|
//config:
|
|
|
|
//config:comment "klogd should not be used together with syslog to kernel printk buffer"
|
|
|
|
//config: depends on KLOGD && FEATURE_KMSG_SYSLOG
|
|
|
|
//config:
|
|
|
|
//config:config FEATURE_KLOGD_KLOGCTL
|
|
|
|
//config: bool "Use the klogctl() interface"
|
|
|
|
//config: default y
|
|
|
|
//config: depends on KLOGD
|
|
|
|
//config: select PLATFORM_LINUX
|
|
|
|
//config: help
|
|
|
|
//config: The klogd applet supports two interfaces for reading
|
|
|
|
//config: kernel messages. Linux provides the klogctl() interface
|
|
|
|
//config: which allows reading messages from the kernel ring buffer
|
|
|
|
//config: independently from the file system.
|
|
|
|
//config:
|
|
|
|
//config: If you answer 'N' here, klogd will use the more portable
|
|
|
|
//config: approach of reading them from /proc or a device node.
|
|
|
|
//config: However, this method requires the file to be available.
|
|
|
|
//config:
|
|
|
|
//config: If in doubt, say 'Y'.
|
|
|
|
|
|
|
|
//applet:IF_KLOGD(APPLET(klogd, BB_DIR_SBIN, BB_SUID_DROP))
|
|
|
|
|
|
|
|
//kbuild:lib-$(CONFIG_KLOGD) += klogd.o
|
2001-03-13 04:21:50 +05:30
|
|
|
|
2011-04-11 06:59:49 +05:30
|
|
|
//usage:#define klogd_trivial_usage
|
|
|
|
//usage: "[-c N] [-n]"
|
|
|
|
//usage:#define klogd_full_usage "\n\n"
|
|
|
|
//usage: "Kernel logger\n"
|
2011-05-25 15:28:56 +05:30
|
|
|
//usage: "\n -c N Print to console messages more urgent than prio N (1-8)"
|
2011-04-11 06:59:49 +05:30
|
|
|
//usage: "\n -n Run in foreground"
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2016-04-21 19:56:30 +05:30
|
|
|
#include "common_bufsiz.h"
|
2008-01-27 18:20:12 +05:30
|
|
|
#include <syslog.h>
|
2001-04-05 08:44:39 +05:30
|
|
|
|
2010-08-01 06:31:44 +05:30
|
|
|
|
|
|
|
/* The Linux-specific klogctl(3) interface does not rely on the filesystem and
|
|
|
|
* allows us to change the console loglevel. Alternatively, we read the
|
|
|
|
* messages from _PATH_KLOG. */
|
|
|
|
|
|
|
|
#if ENABLE_FEATURE_KLOGD_KLOGCTL
|
|
|
|
|
|
|
|
# include <sys/klog.h>
|
|
|
|
|
|
|
|
static void klogd_open(void)
|
|
|
|
{
|
|
|
|
/* "Open the log. Currently a NOP" */
|
|
|
|
klogctl(1, NULL, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void klogd_setloglevel(int lvl)
|
|
|
|
{
|
|
|
|
/* "printk() prints a message on the console only if it has a loglevel
|
|
|
|
* less than console_loglevel". Here we set console_loglevel = lvl. */
|
|
|
|
klogctl(8, NULL, lvl);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int klogd_read(char *bufp, int len)
|
|
|
|
{
|
|
|
|
return klogctl(2, bufp, len);
|
|
|
|
}
|
|
|
|
# define READ_ERROR "klogctl(2) error"
|
|
|
|
|
|
|
|
static void klogd_close(void)
|
2001-03-13 04:21:50 +05:30
|
|
|
{
|
2008-06-06 21:38:04 +05:30
|
|
|
/* FYI: cmd 7 is equivalent to setting console_loglevel to 7
|
|
|
|
* via klogctl(8, NULL, 7). */
|
|
|
|
klogctl(7, NULL, 0); /* "7 -- Enable printk's to console" */
|
|
|
|
klogctl(0, NULL, 0); /* "0 -- Close the log. Currently a NOP" */
|
2001-03-13 04:21:50 +05:30
|
|
|
}
|
|
|
|
|
2010-08-01 06:31:44 +05:30
|
|
|
#else
|
|
|
|
|
|
|
|
# ifndef _PATH_KLOG
|
|
|
|
# ifdef __GNU__
|
|
|
|
# define _PATH_KLOG "/dev/klog"
|
|
|
|
# else
|
|
|
|
# error "your system's _PATH_KLOG is unknown"
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# define PATH_PRINTK "/proc/sys/kernel/printk"
|
|
|
|
|
|
|
|
enum { klogfd = 3 };
|
|
|
|
|
|
|
|
static void klogd_open(void)
|
|
|
|
{
|
|
|
|
int fd = xopen(_PATH_KLOG, O_RDONLY);
|
|
|
|
xmove_fd(fd, klogfd);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void klogd_setloglevel(int lvl)
|
|
|
|
{
|
|
|
|
FILE *fp = fopen_or_warn(PATH_PRINTK, "w");
|
|
|
|
if (fp) {
|
|
|
|
/* This changes only first value:
|
|
|
|
* "messages with a higher priority than this
|
|
|
|
* [that is, with numerically lower value]
|
|
|
|
* will be printed to the console".
|
|
|
|
* The other three values in this pseudo-file aren't changed.
|
|
|
|
*/
|
|
|
|
fprintf(fp, "%u\n", lvl);
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int klogd_read(char *bufp, int len)
|
|
|
|
{
|
|
|
|
return read(klogfd, bufp, len);
|
|
|
|
}
|
|
|
|
# define READ_ERROR "read error"
|
|
|
|
|
|
|
|
static void klogd_close(void)
|
|
|
|
{
|
|
|
|
klogd_setloglevel(7);
|
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
close(klogfd);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2016-04-21 22:08:51 +05:30
|
|
|
#define log_buffer bb_common_bufsiz1
|
2007-11-17 01:48:54 +05:30
|
|
|
enum {
|
2016-04-21 22:08:51 +05:30
|
|
|
KLOGD_LOGBUF_SIZE = COMMON_BUFSIZE,
|
2007-11-17 01:48:54 +05:30
|
|
|
OPT_LEVEL = (1 << 0),
|
|
|
|
OPT_FOREGROUND = (1 << 1),
|
|
|
|
};
|
2006-05-31 17:52:13 +05:30
|
|
|
|
2010-08-01 06:31:44 +05:30
|
|
|
/* TODO: glibc openlog(LOG_KERN) reverts to LOG_USER instead,
|
|
|
|
* because that's how they interpret word "default"
|
|
|
|
* in the openlog() manpage:
|
|
|
|
* LOG_USER (default)
|
|
|
|
* generic user-level messages
|
|
|
|
* and the fact that LOG_KERN is a constant 0.
|
|
|
|
* glibc interprets it as "0 in openlog() call means 'use default'".
|
|
|
|
* I think it means "if openlog wasn't called before syslog() is called,
|
|
|
|
* use default".
|
|
|
|
* Convincing glibc maintainers otherwise is, as usual, nearly impossible.
|
|
|
|
* Should we open-code syslog() here to use correct facility?
|
|
|
|
*/
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int klogd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int klogd_main(int argc UNUSED_PARAM, char **argv)
|
2001-03-13 04:21:50 +05:30
|
|
|
{
|
2008-06-06 21:38:04 +05:30
|
|
|
int i = 0;
|
2008-11-19 13:29:49 +05:30
|
|
|
char *opt_c;
|
2008-06-06 21:38:04 +05:30
|
|
|
int opt;
|
2010-10-20 02:37:49 +05:30
|
|
|
int used;
|
2001-03-13 04:21:50 +05:30
|
|
|
|
2016-04-21 22:08:51 +05:30
|
|
|
setup_common_bufsiz();
|
|
|
|
|
2008-11-19 13:29:49 +05:30
|
|
|
opt = getopt32(argv, "c:n", &opt_c);
|
2008-06-06 21:38:04 +05:30
|
|
|
if (opt & OPT_LEVEL) {
|
2007-01-04 08:37:57 +05:30
|
|
|
/* Valid levels are between 1 and 8 */
|
2008-11-19 13:29:49 +05:30
|
|
|
i = xatou_range(opt_c, 1, 8);
|
2007-01-04 08:37:57 +05:30
|
|
|
}
|
2008-06-06 21:38:04 +05:30
|
|
|
if (!(opt & OPT_FOREGROUND)) {
|
2007-03-26 18:50:54 +05:30
|
|
|
bb_daemonize_or_rexec(DAEMON_CHDIR_ROOT, argv);
|
2006-05-31 17:52:13 +05:30
|
|
|
}
|
|
|
|
|
2010-08-01 06:31:44 +05:30
|
|
|
logmode = LOGMODE_SYSLOG;
|
2001-03-13 04:21:50 +05:30
|
|
|
|
2010-08-01 06:31:44 +05:30
|
|
|
/* klogd_open() before openlog(), since it might use fixed fd 3,
|
|
|
|
* and openlog() also may use the same fd 3 if we swap them:
|
|
|
|
*/
|
|
|
|
klogd_open();
|
|
|
|
openlog("kernel", 0, LOG_KERN);
|
2011-03-07 15:27:26 +05:30
|
|
|
/*
|
|
|
|
* glibc problem: for some reason, glibc changes LOG_KERN to LOG_USER
|
|
|
|
* above. The logic behind this is that standard
|
|
|
|
* http://pubs.opengroup.org/onlinepubs/9699919799/functions/syslog.html
|
|
|
|
* says the following about openlog and syslog:
|
|
|
|
* "LOG_USER
|
|
|
|
* Messages generated by arbitrary processes.
|
|
|
|
* This is the default facility identifier if none is specified."
|
|
|
|
*
|
|
|
|
* I believe glibc misinterpreted this text as "if openlog's
|
|
|
|
* third parameter is 0 (=LOG_KERN), treat it as LOG_USER".
|
|
|
|
* Whereas it was meant to say "if *syslog* is called with facility
|
|
|
|
* 0 in its 1st parameter without prior call to openlog, then perform
|
|
|
|
* implicit openlog(LOG_USER)".
|
|
|
|
*
|
|
|
|
* As a result of this, eh, feature, standard klogd was forced
|
|
|
|
* to open-code its own openlog and syslog implementation (!).
|
|
|
|
*
|
|
|
|
* Note that prohibiting openlog(LOG_KERN) on libc level does not
|
|
|
|
* add any security: any process can open a socket to "/dev/log"
|
|
|
|
* and write a string "<0>Voila, a LOG_KERN + LOG_EMERG message"
|
|
|
|
*
|
|
|
|
* Google code search tells me there is no widespread use of
|
|
|
|
* openlog("foo", 0, 0), thus fixing glibc won't break userspace.
|
|
|
|
*
|
|
|
|
* The bug against glibc was filed:
|
|
|
|
* bugzilla.redhat.com/show_bug.cgi?id=547000
|
|
|
|
*/
|
2001-03-13 04:21:50 +05:30
|
|
|
|
2008-06-06 21:38:04 +05:30
|
|
|
if (i)
|
2010-08-01 06:31:44 +05:30
|
|
|
klogd_setloglevel(i);
|
|
|
|
|
|
|
|
signal(SIGHUP, SIG_IGN);
|
2011-03-07 15:27:26 +05:30
|
|
|
/* We want klogd_read to not be restarted, thus _norestart: */
|
|
|
|
bb_signals_recursive_norestart(BB_FATAL_SIGS, record_signo);
|
2002-12-01 17:01:58 +05:30
|
|
|
|
2007-06-13 17:57:17 +05:30
|
|
|
syslog(LOG_NOTICE, "klogd started: %s", bb_banner);
|
2001-03-13 04:21:50 +05:30
|
|
|
|
2012-12-11 01:19:39 +05:30
|
|
|
write_pidfile(CONFIG_PID_FILE_PATH "/klogd.pid");
|
|
|
|
|
2010-10-20 02:37:49 +05:30
|
|
|
used = 0;
|
2010-08-01 06:31:44 +05:30
|
|
|
while (!bb_got_signal) {
|
2007-01-09 21:16:36 +05:30
|
|
|
int n;
|
|
|
|
int priority;
|
2008-11-19 13:29:49 +05:30
|
|
|
char *start;
|
2007-01-09 21:16:36 +05:30
|
|
|
|
2008-06-06 21:38:04 +05:30
|
|
|
/* "2 -- Read from the log." */
|
2008-11-19 13:29:49 +05:30
|
|
|
start = log_buffer + used;
|
2010-08-01 06:31:44 +05:30
|
|
|
n = klogd_read(start, KLOGD_LOGBUF_SIZE-1 - used);
|
2001-03-13 04:21:50 +05:30
|
|
|
if (n < 0) {
|
|
|
|
if (errno == EINTR)
|
|
|
|
continue;
|
2010-08-01 06:31:44 +05:30
|
|
|
bb_perror_msg(READ_ERROR);
|
2007-01-04 08:37:57 +05:30
|
|
|
break;
|
2001-03-13 04:21:50 +05:30
|
|
|
}
|
2008-11-19 13:29:49 +05:30
|
|
|
start[n] = '\0';
|
2008-10-04 22:10:17 +05:30
|
|
|
|
|
|
|
/* Process each newline-terminated line in the buffer */
|
2008-11-19 15:05:00 +05:30
|
|
|
start = log_buffer;
|
2008-10-04 22:10:17 +05:30
|
|
|
while (1) {
|
2008-11-19 13:29:49 +05:30
|
|
|
char *newline = strchrnul(start, '\n');
|
2008-10-04 22:10:17 +05:30
|
|
|
|
2008-11-19 13:29:49 +05:30
|
|
|
if (*newline == '\0') {
|
2010-10-20 02:37:49 +05:30
|
|
|
/* This line is incomplete */
|
|
|
|
|
|
|
|
/* move it to the front of the buffer */
|
|
|
|
overlapping_strcpy(log_buffer, start);
|
|
|
|
used = newline - start;
|
|
|
|
if (used < KLOGD_LOGBUF_SIZE-1) {
|
|
|
|
/* buffer isn't full */
|
2008-10-04 22:10:17 +05:30
|
|
|
break;
|
|
|
|
}
|
2010-10-20 02:37:49 +05:30
|
|
|
/* buffer is full, log it anyway */
|
2008-10-04 22:10:17 +05:30
|
|
|
used = 0;
|
2008-11-19 13:29:49 +05:30
|
|
|
newline = NULL;
|
2008-10-04 22:10:17 +05:30
|
|
|
} else {
|
|
|
|
*newline++ = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Extract the priority */
|
2007-02-17 19:42:10 +05:30
|
|
|
priority = LOG_INFO;
|
2008-10-04 22:10:17 +05:30
|
|
|
if (*start == '<') {
|
|
|
|
start++;
|
2013-01-06 04:37:18 +05:30
|
|
|
if (*start)
|
|
|
|
priority = strtoul(start, &start, 10);
|
2008-11-19 13:29:49 +05:30
|
|
|
if (*start == '>')
|
2008-10-04 22:10:17 +05:30
|
|
|
start++;
|
2001-03-13 04:21:50 +05:30
|
|
|
}
|
2008-11-19 13:29:49 +05:30
|
|
|
/* Log (only non-empty lines) */
|
2008-10-04 22:10:17 +05:30
|
|
|
if (*start)
|
|
|
|
syslog(priority, "%s", start);
|
2008-11-19 13:29:49 +05:30
|
|
|
|
2008-10-04 22:10:17 +05:30
|
|
|
if (!newline)
|
|
|
|
break;
|
|
|
|
start = newline;
|
2001-03-13 04:21:50 +05:30
|
|
|
}
|
|
|
|
}
|
2002-08-23 00:11:20 +05:30
|
|
|
|
2010-08-01 06:31:44 +05:30
|
|
|
klogd_close();
|
|
|
|
syslog(LOG_NOTICE, "klogd: exiting");
|
2012-12-11 01:19:39 +05:30
|
|
|
remove_pidfile(CONFIG_PID_FILE_PATH "/klogd.pid");
|
2010-08-01 06:31:44 +05:30
|
|
|
if (bb_got_signal)
|
|
|
|
kill_myself_with_sig(bb_got_signal);
|
2007-01-04 08:37:57 +05:30
|
|
|
return EXIT_FAILURE;
|
2001-03-13 04:21:50 +05:30
|
|
|
}
|