blob: d5e330bdf75855098f0db48ff53c3e7ab57ca885 [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 *
9 * Copyright (C) 1999,2000,2001 by Lineo, inc.
10 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
11 *
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>
36#include <signal.h> /* for our signal() handlers */
37#include <string.h> /* strncpy() */
38#include <errno.h> /* errno and friends */
39#include <unistd.h>
40#include <ctype.h>
41#include <sys/syslog.h>
42
43#if ! defined __GLIBC__ && ! defined __UCLIBC__
44#include <sys/syscall.h>
45#include <linux/unistd.h>
Mark Whitley6317c4b2001-03-12 22:51:50 +000046
47#ifndef __alpha__
48# define __NR_klogctl __NR_syslog
49static inline _syscall3(int, klogctl, int, type, char *, b, int, len);
50#else /* __alpha__ */
51#define klogctl syslog
52#endif
53
54#else
55# include <sys/klog.h>
56#endif
57#include "busybox.h"
58
59static void klogd_signal(int sig)
60{
61 klogctl(7, NULL, 0);
62 klogctl(0, 0, 0);
63 //logMessage(0, "Kernel log daemon exiting.");
64 syslog_msg(LOG_DAEMON, 0, "Kernel log daemon exiting.");
65 exit(TRUE);
66}
67
68static void doKlogd (void) __attribute__ ((noreturn));
69static void doKlogd (void)
70{
71 int priority = LOG_INFO;
72 char log_buffer[4096];
73 int i, n, lastc;
74 char *start;
75
76 /* Set up sig handlers */
77 signal(SIGINT, klogd_signal);
78 signal(SIGKILL, klogd_signal);
79 signal(SIGTERM, klogd_signal);
80 signal(SIGHUP, SIG_IGN);
81
82 /* "Open the log. Currently a NOP." */
83 klogctl(1, NULL, 0);
84
85 syslog_msg(LOG_DAEMON, 0, "klogd started: BusyBox v" BB_VER " (" BB_BT ")");
86
87 while (1) {
88 /* Use kernel syscalls */
89 memset(log_buffer, '\0', sizeof(log_buffer));
90 n = klogctl(2, log_buffer, sizeof(log_buffer));
91 if (n < 0) {
92 char message[80];
93
94 if (errno == EINTR)
95 continue;
96 snprintf(message, 79, "klogd: Error return from sys_sycall: %d - %s.\n",
97 errno, strerror(errno));
98 syslog_msg(LOG_DAEMON, LOG_SYSLOG | LOG_ERR, message);
99 exit(1);
100 }
101
102 /* klogctl buffer parsing modelled after code in dmesg.c */
103 start=&log_buffer[0];
104 lastc='\0';
105 for (i=0; i<n; i++) {
106 if (lastc == '\0' && log_buffer[i] == '<') {
107 priority = 0;
108 i++;
109 while (isdigit(log_buffer[i])) {
110 priority = priority*10+(log_buffer[i]-'0');
111 i++;
112 }
113 if (log_buffer[i] == '>') i++;
114 start = &log_buffer[i];
115 }
116 if (log_buffer[i] == '\n') {
117 log_buffer[i] = '\0'; /* zero terminate this message */
118 syslog_msg(LOG_DAEMON, LOG_KERN | priority, start);
119 start = &log_buffer[i+1];
120 priority = LOG_INFO;
121 }
122 lastc = log_buffer[i];
123 }
124 }
125}
126
127static void daemon_init (char **argv, char *dz, void fn (void))
128{
129 setsid(); /* start a new session? */
130 strncpy(argv[0], dz, strlen(argv[0]));
131 fn();
132 exit(0);
133}
134
135extern int klogd_main(int argc, char **argv)
136{
137 /* no options, no getopt */
138 int opt, pid;
139 int doFork = TRUE;
140
141 /* do normal option parsing */
142 while ((opt = getopt(argc, argv, "n")) > 0) {
143 switch (opt) {
144 case 'n':
145 doFork = FALSE;
146 break;
147 default:
148 show_usage();
149 }
150 }
151
152 if (doFork == TRUE) {
153 pid = fork();
154 if (pid < 0)
155 exit(pid);
156 else if (pid == 0) {
157 daemon_init (argv, "klogd", doKlogd);
158 }
159 } else {
160 doKlogd();
161 }
162
163 return EXIT_SUCCESS;
164}
165
166/*
167Local Variables
168c-file-style: "linux"
169c-basic-offset: 4
170tab-width: 4
171End:
172*/