NOMMU re-exec trick shuld not depend on existence of "don't daemonize"
[oweals/busybox.git] / sysklogd / klogd.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini klogd implementation for busybox
4  *
5  * Copyright (C) 2001 by Gennady Feldman <gfeldman@gena01.com>.
6  * Changes: Made this a standalone busybox module which uses standalone
7  *                                      syslog() client interface.
8  *
9  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
10  *
11  * Copyright (C) 2000 by Karl M. Hegbloom <karlheg@debian.org>
12  *
13  * "circular buffer" Copyright (C) 2000 by Gennady Feldman <gfeldman@gena01.com>
14  *
15  * Maintainer: Gennady Feldman <gfeldman@gena01.com> as of Mar 12, 2001
16  *
17  * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
18  */
19
20 #include "busybox.h"
21 #include <sys/syslog.h>
22 #include <sys/klog.h>
23
24 static void klogd_signal(int sig ATTRIBUTE_UNUSED)
25 {
26         klogctl(7, NULL, 0);
27         klogctl(0, 0, 0);
28         syslog(LOG_NOTICE, "Kernel log daemon exiting");
29         exit(EXIT_SUCCESS);
30 }
31
32 #define OPT_LEVEL        1
33 #define OPT_FOREGROUND   2
34
35 #define KLOGD_LOGBUF_SIZE BUFSIZ
36 #define log_buffer bb_common_bufsiz1
37
38 int klogd_main(int argc, char **argv);
39 int klogd_main(int argc, char **argv)
40 {
41         int i = i; /* silence gcc */
42         char *start;
43
44         /* do normal option parsing */
45         getopt32(argc, argv, "c:n", &start);
46
47         if (option_mask32 & OPT_LEVEL) {
48                 /* Valid levels are between 1 and 8 */
49                 i = xatoul_range(start, 1, 8);
50         }
51
52         if (!(option_mask32 & OPT_FOREGROUND)) {
53 #ifdef BB_NOMMU
54                 if (!re_execed)
55                         vfork_daemon_rexec(0, 1, argv);
56 #else
57                 bb_daemonize();
58 #endif
59         }
60
61         openlog("kernel", 0, LOG_KERN);
62
63         /* Set up sig handlers */
64         signal(SIGINT, klogd_signal);
65         signal(SIGKILL, klogd_signal);
66         signal(SIGTERM, klogd_signal);
67         signal(SIGHUP, SIG_IGN);
68
69         /* "Open the log. Currently a NOP." */
70         klogctl(1, NULL, 0);
71
72         /* Set level of kernel console messaging. */
73         if (option_mask32 & OPT_LEVEL)
74                 klogctl(8, NULL, i);
75
76         syslog(LOG_NOTICE, "klogd started: %s", BB_BANNER);
77
78         /* Note: this code does not detect incomplete messages
79          * (messages not ending with '\n' or just when kernel
80          * generates too many messages for us to keep up)
81          * and will split them in two separate lines */
82         while (1) {
83                 int n;
84                 int priority;
85
86                 n = klogctl(2, log_buffer, KLOGD_LOGBUF_SIZE - 1);
87                 if (n < 0) {
88                         if (errno == EINTR)
89                                 continue;
90                         syslog(LOG_ERR, "klogd: error from klogctl(2): %d - %m",
91                                         errno);
92                         break;
93                 }
94                 log_buffer[n] = '\n';
95                 i = 0;
96                 while (i < n) {
97                         priority = LOG_INFO;
98                         start = &log_buffer[i];
99                         if (log_buffer[i] == '<') {
100                                 i++;
101                                 // kernel never ganerates multi-digit prios
102                                 //priority = 0;
103                                 //while (log_buffer[i] >= '0' && log_buffer[i] <= '9') {
104                                 //      priority = priority * 10 + (log_buffer[i] - '0');
105                                 //      i++;
106                                 //}
107                                 if (isdigit(log_buffer[i])) {
108                                         priority = (log_buffer[i] - '0');
109                                         i++;
110                                 }
111                                 if (log_buffer[i] == '>')
112                                         i++;
113                                 start = &log_buffer[i];
114                         }
115                         while (log_buffer[i] != '\n')
116                                 i++;
117                         log_buffer[i] = '\0';
118                         syslog(priority, "%s", start);
119                         i++;
120                 }
121         }
122
123         return EXIT_FAILURE;
124 }