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
|
2006-01-23 04:25:11 +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
|
|
|
*
|
2006-01-23 04:25:11 +05:30
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2001-03-13 04:21:50 +05:30
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2008-01-27 18:20:12 +05:30
|
|
|
#include <syslog.h>
|
2003-07-22 14:26:55 +05:30
|
|
|
#include <sys/klog.h>
|
2001-04-05 08:44:39 +05:30
|
|
|
|
2008-06-06 21:38:04 +05:30
|
|
|
static void klogd_signal(int sig)
|
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" */
|
2007-11-17 01:48:54 +05:30
|
|
|
syslog(LOG_NOTICE, "klogd: exiting");
|
2008-02-24 19:06:01 +05:30
|
|
|
kill_myself_with_sig(sig);
|
2001-03-13 04:21:50 +05:30
|
|
|
}
|
|
|
|
|
2007-02-17 19:42:10 +05:30
|
|
|
#define log_buffer bb_common_bufsiz1
|
2007-11-17 01:48:54 +05:30
|
|
|
enum {
|
|
|
|
KLOGD_LOGBUF_SIZE = sizeof(log_buffer),
|
|
|
|
OPT_LEVEL = (1 << 0),
|
|
|
|
OPT_FOREGROUND = (1 << 1),
|
|
|
|
};
|
2006-05-31 17:52:13 +05:30
|
|
|
|
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;
|
2008-10-04 22:10:17 +05:30
|
|
|
int used = 0;
|
2001-03-13 04:21:50 +05:30
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2004-06-22 15:37:17 +05:30
|
|
|
openlog("kernel", 0, LOG_KERN);
|
|
|
|
|
2008-11-19 13:29:49 +05:30
|
|
|
bb_signals(BB_FATAL_SIGS, klogd_signal);
|
2001-03-13 04:21:50 +05:30
|
|
|
signal(SIGHUP, SIG_IGN);
|
|
|
|
|
2008-06-06 21:38:04 +05:30
|
|
|
/* "Open the log. Currently a NOP" */
|
2001-03-13 04:21:50 +05:30
|
|
|
klogctl(1, NULL, 0);
|
|
|
|
|
2008-06-06 21:38:04 +05:30
|
|
|
/* "printk() prints a message on the console only if it has a loglevel
|
|
|
|
* less than console_loglevel". Here we set console_loglevel = i. */
|
|
|
|
if (i)
|
2007-01-09 21:16:36 +05:30
|
|
|
klogctl(8, NULL, i);
|
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
|
|
|
|
|
|
|
while (1) {
|
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;
|
|
|
|
n = klogctl(2, start, KLOGD_LOGBUF_SIZE-1 - used);
|
2001-03-13 04:21:50 +05:30
|
|
|
if (n < 0) {
|
|
|
|
if (errno == EINTR)
|
|
|
|
continue;
|
2008-06-06 21:38:04 +05:30
|
|
|
syslog(LOG_ERR, "klogd: error %d in klogctl(2): %m",
|
2007-02-17 19:42:10 +05:30
|
|
|
errno);
|
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
|
|
|
|
|
|
|
/* klogctl buffer parsing modelled after code in dmesg.c */
|
|
|
|
/* 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') {
|
2008-10-04 22:10:17 +05:30
|
|
|
/* This line is incomplete... */
|
|
|
|
if (start != log_buffer) {
|
|
|
|
/* move it to the front of the buffer */
|
2008-11-19 13:29:49 +05:30
|
|
|
overlapping_strcpy(log_buffer, start);
|
|
|
|
used = newline - start;
|
2008-10-04 22:10:17 +05:30
|
|
|
/* don't log it yet */
|
|
|
|
break;
|
|
|
|
}
|
2008-11-19 13:29:49 +05:30
|
|
|
/* ...but if 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++;
|
|
|
|
if (*start) {
|
|
|
|
/* kernel never generates multi-digit prios */
|
|
|
|
priority = (*start - '0');
|
|
|
|
start++;
|
|
|
|
}
|
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
|
|
|
|
2007-01-04 08:37:57 +05:30
|
|
|
return EXIT_FAILURE;
|
2001-03-13 04:21:50 +05:30
|
|
|
}
|