A missing securetty file is not an error.
[oweals/busybox.git] / sysklogd / klogd.c
index 33bc783fe5b68f6078be339a0c1f9ecf49ef9850..f2ab5ea7e7a89bcce694f64d1ef542e734a71f89 100644 (file)
@@ -33,9 +33,9 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <signal.h> /* for our signal() handlers */
-#include <string.h> /* strncpy() */
-#include <errno.h>  /* errno and friends */
+#include <signal.h>            /* for our signal() handlers */
+#include <string.h>            /* strncpy() */
+#include <errno.h>             /* errno and friends */
 #include <unistd.h>
 #include <ctype.h>
 #include <sys/syslog.h>
@@ -54,13 +54,13 @@ static void klogd_signal(int sig)
 {
        klogctl(7, NULL, 0);
        klogctl(0, 0, 0);
-       //logMessage(0, "Kernel log daemon exiting.");
-       syslog_msg(LOG_DAEMON, 0, "Kernel log daemon exiting.");
+       /* logMessage(0, "Kernel log daemon exiting."); */
+       syslog_msg(LOG_SYSLOG, LOG_NOTICE, "Kernel log daemon exiting.");
        exit(TRUE);
 }
 
-static void doKlogd (void) __attribute__ ((noreturn));
-static void doKlogd (void)
+static void doKlogd(void) __attribute__ ((noreturn));
+static void doKlogd(void)
 {
        int priority = LOG_INFO;
        char log_buffer[4096];
@@ -76,7 +76,7 @@ static void doKlogd (void)
        /* "Open the log. Currently a NOP." */
        klogctl(1, NULL, 0);
 
-       syslog_msg(LOG_DAEMON, 0, "klogd started: " BB_BANNER);
+       syslog_msg(LOG_SYSLOG, LOG_NOTICE, "klogd started: " BB_BANNER);
 
        while (1) {
                /* Use kernel syscalls */
@@ -87,30 +87,32 @@ static void doKlogd (void)
 
                        if (errno == EINTR)
                                continue;
-                       snprintf(message, 79, "klogd: Error return from sys_sycall: %d - %s.\n", 
-                                                                                               errno, strerror(errno));
-                       syslog_msg(LOG_DAEMON, LOG_SYSLOG | LOG_ERR, message);
+                       snprintf(message, 79,
+                                        "klogd: Error return from sys_sycall: %d - %s.\n", errno,
+                                        strerror(errno));
+                       syslog_msg(LOG_SYSLOG, LOG_ERR, message);
                        exit(1);
                }
 
                /* klogctl buffer parsing modelled after code in dmesg.c */
-               start=&log_buffer[0];
-               lastc='\0';
-               for (i=0; i<n; i++) {
+               start = &log_buffer[0];
+               lastc = '\0';
+               for (i = 0; i < n; i++) {
                        if (lastc == '\0' && log_buffer[i] == '<') {
                                priority = 0;
                                i++;
                                while (isdigit(log_buffer[i])) {
-                                       priority = priority*10+(log_buffer[i]-'0');
+                                       priority = priority * 10 + (log_buffer[i] - '0');
                                        i++;
                                }
-                               if (log_buffer[i] == '>') i++;
+                               if (log_buffer[i] == '>')
+                                       i++;
                                start = &log_buffer[i];
                        }
                        if (log_buffer[i] == '\n') {
-                               log_buffer[i] = '\0';  /* zero terminate this message */
-                               syslog_msg(LOG_DAEMON, LOG_KERN | priority, start);
-                               start = &log_buffer[i+1];
+                               log_buffer[i] = '\0';   /* zero terminate this message */
+                               syslog_msg(LOG_KERN, priority, start);
+                               start = &log_buffer[i + 1];
                                priority = LOG_INFO;
                        }
                        lastc = log_buffer[i];
@@ -127,20 +129,24 @@ extern int klogd_main(int argc, char **argv)
        /* do normal option parsing */
        while ((opt = getopt(argc, argv, "n")) > 0) {
                switch (opt) {
-                       case 'n':
-                               doFork = FALSE;
-                               break;
-                       default:
-                               show_usage();
+               case 'n':
+                       doFork = FALSE;
+                       break;
+               default:
+                       show_usage();
                }
        }
 
-       if (doFork == TRUE) {
+       if (doFork) {
+#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
                if (daemon(0, 1) < 0)
                        perror_msg_and_die("daemon");
+#else
+               error_msg_and_die("daemon not supported");
+#endif
        }
        doKlogd();
-       
+
        return EXIT_SUCCESS;
 }