2001-03-12 22:51:50 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini klogd implementation for busybox
|
|
|
|
*
|
2002-12-12 10:54:48 +00:00
|
|
|
* Copyright (C) 2001 by Gennady Feldman <gfeldman@gena01.com>.
|
2001-03-12 22:51:50 +00:00
|
|
|
* Changes: Made this a standalone busybox module which uses standalone
|
2006-01-22 22:55:11 +00:00
|
|
|
* syslog() client interface.
|
2001-03-12 22:51:50 +00:00
|
|
|
*
|
2004-03-15 08:29:22 +00:00
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2001-03-12 22:51:50 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2000 by Karl M. Hegbloom <karlheg@debian.org>
|
|
|
|
*
|
2002-12-12 10:54:48 +00:00
|
|
|
* "circular buffer" Copyright (C) 2000 by Gennady Feldman <gfeldman@gena01.com>
|
2001-03-12 22:51:50 +00:00
|
|
|
*
|
2002-12-12 10:54:48 +00:00
|
|
|
* Maintainer: Gennady Feldman <gfeldman@gena01.com> as of Mar 12, 2001
|
2001-03-12 23:41:34 +00:00
|
|
|
*
|
2006-01-22 22:55:11 +00:00
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2001-03-12 22:51:50 +00:00
|
|
|
*/
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2008-01-27 12:50:12 +00:00
|
|
|
#include <syslog.h>
|
2003-07-22 08:56:55 +00:00
|
|
|
#include <sys/klog.h>
|
2001-04-05 03:14:39 +00:00
|
|
|
|
2008-06-06 16:08:04 +00:00
|
|
|
static void klogd_signal(int sig)
|
2001-03-12 22:51:50 +00:00
|
|
|
{
|
2008-06-06 16:08:04 +00:00
|
|
|
/* 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-16 20:18:54 +00:00
|
|
|
syslog(LOG_NOTICE, "klogd: exiting");
|
2008-02-24 13:36:01 +00:00
|
|
|
kill_myself_with_sig(sig);
|
2001-03-12 22:51:50 +00:00
|
|
|
}
|
|
|
|
|
2007-02-17 14:12:10 +00:00
|
|
|
#define log_buffer bb_common_bufsiz1
|
2007-11-16 20:18:54 +00:00
|
|
|
enum {
|
|
|
|
KLOGD_LOGBUF_SIZE = sizeof(log_buffer),
|
|
|
|
OPT_LEVEL = (1 << 0),
|
|
|
|
OPT_FOREGROUND = (1 << 1),
|
|
|
|
};
|
2006-05-31 12:22:13 +00:00
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int klogd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 09:18:54 +00:00
|
|
|
int klogd_main(int argc UNUSED_PARAM, char **argv)
|
2001-03-12 22:51:50 +00:00
|
|
|
{
|
2008-06-06 16:08:04 +00:00
|
|
|
int i = 0;
|
2001-03-12 22:51:50 +00:00
|
|
|
char *start;
|
2008-06-06 16:08:04 +00:00
|
|
|
int opt;
|
2001-03-12 22:51:50 +00:00
|
|
|
|
2008-06-06 16:08:04 +00:00
|
|
|
opt = getopt32(argv, "c:n", &start);
|
|
|
|
if (opt & OPT_LEVEL) {
|
2007-01-04 03:07:57 +00:00
|
|
|
/* Valid levels are between 1 and 8 */
|
2008-06-06 16:08:04 +00:00
|
|
|
i = xatou_range(start, 1, 8);
|
2007-01-04 03:07:57 +00:00
|
|
|
}
|
2008-06-06 16:08:04 +00:00
|
|
|
if (!(opt & OPT_FOREGROUND)) {
|
2007-03-26 13:20:54 +00:00
|
|
|
bb_daemonize_or_rexec(DAEMON_CHDIR_ROOT, argv);
|
2006-05-31 12:22:13 +00:00
|
|
|
}
|
|
|
|
|
2004-06-22 10:07:17 +00:00
|
|
|
openlog("kernel", 0, LOG_KERN);
|
|
|
|
|
2008-02-16 22:58:56 +00:00
|
|
|
bb_signals(0
|
|
|
|
+ (1 << SIGINT)
|
|
|
|
+ (1 << SIGTERM)
|
|
|
|
, klogd_signal);
|
2001-03-12 22:51:50 +00:00
|
|
|
signal(SIGHUP, SIG_IGN);
|
|
|
|
|
2008-06-06 16:08:04 +00:00
|
|
|
/* "Open the log. Currently a NOP" */
|
2001-03-12 22:51:50 +00:00
|
|
|
klogctl(1, NULL, 0);
|
|
|
|
|
2008-06-06 16:08:04 +00:00
|
|
|
/* "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 15:46:36 +00:00
|
|
|
klogctl(8, NULL, i);
|
2002-12-01 11:31:58 +00:00
|
|
|
|
2007-06-13 12:27:17 +00:00
|
|
|
syslog(LOG_NOTICE, "klogd started: %s", bb_banner);
|
2001-03-12 22:51:50 +00:00
|
|
|
|
2007-02-17 14:12:10 +00:00
|
|
|
/* Note: this code does not detect incomplete messages
|
|
|
|
* (messages not ending with '\n' or just when kernel
|
|
|
|
* generates too many messages for us to keep up)
|
|
|
|
* and will split them in two separate lines */
|
2001-03-12 22:51:50 +00:00
|
|
|
while (1) {
|
2007-01-09 15:46:36 +00:00
|
|
|
int n;
|
|
|
|
int priority;
|
|
|
|
|
2008-06-06 16:08:04 +00:00
|
|
|
/* "2 -- Read from the log." */
|
2007-01-04 03:07:57 +00:00
|
|
|
n = klogctl(2, log_buffer, KLOGD_LOGBUF_SIZE - 1);
|
2001-03-12 22:51:50 +00:00
|
|
|
if (n < 0) {
|
|
|
|
if (errno == EINTR)
|
|
|
|
continue;
|
2008-06-06 16:08:04 +00:00
|
|
|
syslog(LOG_ERR, "klogd: error %d in klogctl(2): %m",
|
2007-02-17 14:12:10 +00:00
|
|
|
errno);
|
2007-01-04 03:07:57 +00:00
|
|
|
break;
|
2001-03-12 22:51:50 +00:00
|
|
|
}
|
2007-02-17 14:12:10 +00:00
|
|
|
log_buffer[n] = '\n';
|
|
|
|
i = 0;
|
|
|
|
while (i < n) {
|
|
|
|
priority = LOG_INFO;
|
|
|
|
start = &log_buffer[i];
|
|
|
|
if (log_buffer[i] == '<') {
|
2001-03-12 22:51:50 +00:00
|
|
|
i++;
|
2007-01-04 03:07:57 +00:00
|
|
|
// kernel never ganerates multi-digit prios
|
|
|
|
//priority = 0;
|
|
|
|
//while (log_buffer[i] >= '0' && log_buffer[i] <= '9') {
|
|
|
|
// priority = priority * 10 + (log_buffer[i] - '0');
|
|
|
|
// i++;
|
|
|
|
//}
|
|
|
|
if (isdigit(log_buffer[i])) {
|
|
|
|
priority = (log_buffer[i] - '0');
|
2001-03-12 22:51:50 +00:00
|
|
|
i++;
|
|
|
|
}
|
2002-08-22 18:41:20 +00:00
|
|
|
if (log_buffer[i] == '>')
|
|
|
|
i++;
|
2001-03-12 22:51:50 +00:00
|
|
|
start = &log_buffer[i];
|
|
|
|
}
|
2007-02-17 14:12:10 +00:00
|
|
|
while (log_buffer[i] != '\n')
|
|
|
|
i++;
|
|
|
|
log_buffer[i] = '\0';
|
|
|
|
syslog(priority, "%s", start);
|
|
|
|
i++;
|
2001-03-12 22:51:50 +00:00
|
|
|
}
|
|
|
|
}
|
2002-08-22 18:41:20 +00:00
|
|
|
|
2007-01-04 03:07:57 +00:00
|
|
|
return EXIT_FAILURE;
|
2001-03-12 22:51:50 +00:00
|
|
|
}
|