blob: 4686a3429866e41664191e6ad4f473be6e5a0be9 [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 *
5 * Copyright (C) 2001 by Gennady Feldman <gfeldman@cachier.com>.
6 * Changes: Made this a standalone busybox module which uses standalone
7 * syslog() client interface.
8 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00009 * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
10 * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
Mark Whitley6317c4b2001-03-12 22:51:50 +000011 *
12 * Copyright (C) 2000 by Karl M. Hegbloom <karlheg@debian.org>
13 *
14 * "circular buffer" Copyright (C) 2000 by Gennady Feldman <gfeldman@mail.com>
15 *
Mark Whitley6bff9cc2001-03-12 23:41:34 +000016 * Maintainer: Gennady Feldman <gena01@cachier.com> as of Mar 12, 2001
17 *
Mark Whitley6317c4b2001-03-12 22:51:50 +000018 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2 of the License, or
21 * (at your option) any later version.
22 *
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
26 * General Public License for more details.
27 *
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 *
32 */
33
34#include <stdio.h>
35#include <stdlib.h>
Glenn L McGrath9fef17d2002-08-22 18:41:20 +000036#include <signal.h> /* for our signal() handlers */
37#include <string.h> /* strncpy() */
38#include <errno.h> /* errno and friends */
Mark Whitley6317c4b2001-03-12 22:51:50 +000039#include <unistd.h>
40#include <ctype.h>
41#include <sys/syslog.h>
42
Eric Andersene76c3b02001-04-05 03:14:39 +000043#if __GNU_LIBRARY__ < 5
44# ifdef __alpha__
45# define klogctl syslog
46# endif
Mark Whitley6317c4b2001-03-12 22:51:50 +000047#else
48# include <sys/klog.h>
49#endif
Eric Andersene76c3b02001-04-05 03:14:39 +000050
Mark Whitley6317c4b2001-03-12 22:51:50 +000051#include "busybox.h"
52
53static void klogd_signal(int sig)
54{
55 klogctl(7, NULL, 0);
56 klogctl(0, 0, 0);
Glenn L McGrath9fef17d2002-08-22 18:41:20 +000057 /* logMessage(0, "Kernel log daemon exiting."); */
Mark Whitley6317c4b2001-03-12 22:51:50 +000058 syslog_msg(LOG_DAEMON, 0, "Kernel log daemon exiting.");
59 exit(TRUE);
60}
61
Glenn L McGrath9fef17d2002-08-22 18:41:20 +000062static void doKlogd(void) __attribute__ ((noreturn));
63static void doKlogd(void)
Mark Whitley6317c4b2001-03-12 22:51:50 +000064{
65 int priority = LOG_INFO;
66 char log_buffer[4096];
67 int i, n, lastc;
68 char *start;
69
70 /* Set up sig handlers */
71 signal(SIGINT, klogd_signal);
72 signal(SIGKILL, klogd_signal);
73 signal(SIGTERM, klogd_signal);
74 signal(SIGHUP, SIG_IGN);
75
76 /* "Open the log. Currently a NOP." */
77 klogctl(1, NULL, 0);
78
Matt Kraai6ba1a802001-04-12 20:11:55 +000079 syslog_msg(LOG_DAEMON, 0, "klogd started: " BB_BANNER);
Mark Whitley6317c4b2001-03-12 22:51:50 +000080
81 while (1) {
82 /* Use kernel syscalls */
83 memset(log_buffer, '\0', sizeof(log_buffer));
84 n = klogctl(2, log_buffer, sizeof(log_buffer));
85 if (n < 0) {
86 char message[80];
87
88 if (errno == EINTR)
89 continue;
Glenn L McGrath9fef17d2002-08-22 18:41:20 +000090 snprintf(message, 79,
91 "klogd: Error return from sys_sycall: %d - %s.\n", errno,
92 strerror(errno));
Mark Whitley6317c4b2001-03-12 22:51:50 +000093 syslog_msg(LOG_DAEMON, LOG_SYSLOG | LOG_ERR, message);
94 exit(1);
95 }
96
97 /* klogctl buffer parsing modelled after code in dmesg.c */
Glenn L McGrath9fef17d2002-08-22 18:41:20 +000098 start = &log_buffer[0];
99 lastc = '\0';
100 for (i = 0; i < n; i++) {
Mark Whitley6317c4b2001-03-12 22:51:50 +0000101 if (lastc == '\0' && log_buffer[i] == '<') {
102 priority = 0;
103 i++;
104 while (isdigit(log_buffer[i])) {
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000105 priority = priority * 10 + (log_buffer[i] - '0');
Mark Whitley6317c4b2001-03-12 22:51:50 +0000106 i++;
107 }
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000108 if (log_buffer[i] == '>')
109 i++;
Mark Whitley6317c4b2001-03-12 22:51:50 +0000110 start = &log_buffer[i];
111 }
112 if (log_buffer[i] == '\n') {
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000113 log_buffer[i] = '\0'; /* zero terminate this message */
Mark Whitley6317c4b2001-03-12 22:51:50 +0000114 syslog_msg(LOG_DAEMON, LOG_KERN | priority, start);
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000115 start = &log_buffer[i + 1];
Mark Whitley6317c4b2001-03-12 22:51:50 +0000116 priority = LOG_INFO;
117 }
118 lastc = log_buffer[i];
119 }
120 }
121}
122
Mark Whitley6317c4b2001-03-12 22:51:50 +0000123extern int klogd_main(int argc, char **argv)
124{
125 /* no options, no getopt */
Eric Andersene5c24df2001-03-29 21:58:33 +0000126 int opt;
Mark Whitley6317c4b2001-03-12 22:51:50 +0000127 int doFork = TRUE;
128
129 /* do normal option parsing */
130 while ((opt = getopt(argc, argv, "n")) > 0) {
131 switch (opt) {
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000132 case 'n':
133 doFork = FALSE;
134 break;
135 default:
136 show_usage();
Mark Whitley6317c4b2001-03-12 22:51:50 +0000137 }
138 }
139
Matt Kraai1f0c4362001-12-20 23:13:26 +0000140 if (doFork) {
Eric Andersen72f9a422001-10-28 05:12:20 +0000141#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
Eric Andersene5c24df2001-03-29 21:58:33 +0000142 if (daemon(0, 1) < 0)
143 perror_msg_and_die("daemon");
Eric Andersen72f9a422001-10-28 05:12:20 +0000144#else
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000145 error_msg_and_die("daemon not supported");
Eric Andersen72f9a422001-10-28 05:12:20 +0000146#endif
Mark Whitley6317c4b2001-03-12 22:51:50 +0000147 }
Eric Andersene5c24df2001-03-29 21:58:33 +0000148 doKlogd();
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000149
Mark Whitley6317c4b2001-03-12 22:51:50 +0000150 return EXIT_SUCCESS;
151}
152
153/*
154Local Variables
155c-file-style: "linux"
156c-basic-offset: 4
157tab-width: 4
158End:
159*/