Togg writes:
[oweals/busybox.git] / sysklogd / syslogd.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini syslogd implementation for busybox
4  *
5  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
6  *
7  * Copyright (C) 2000 by Karl M. Hegbloom <karlheg@debian.org>
8  *
9  * "circular buffer" Copyright (C) 2001 by Gennady Feldman <gfeldman@gena01.com>
10  *
11  * Maintainer: Gennady Feldman <gfeldman@gena01.com> as of Mar 12, 2001
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21  * General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26  *
27  */
28
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <ctype.h>
32 #include <errno.h>
33 #include <fcntl.h>
34 #include <getopt.h>
35 #include <netdb.h>
36 #include <paths.h>
37 #include <signal.h>
38 #include <stdarg.h>
39 #include <stdbool.h>
40 #include <time.h>
41 #include <string.h>
42 #include <unistd.h>
43 #include <sys/socket.h>
44 #include <sys/types.h>
45 #include <sys/un.h>
46 #include <sys/param.h>
47
48 #include "busybox.h"
49
50 /* SYSLOG_NAMES defined to pull some extra junk from syslog.h */
51 #define SYSLOG_NAMES
52 #include <sys/syslog.h>
53 #include <sys/uio.h>
54
55 /* Path for the file where all log messages are written */
56 #define __LOG_FILE "/var/log/messages"
57
58 /* Path to the unix socket */
59 static char lfile[MAXPATHLEN];
60
61 static const char *logFilePath = __LOG_FILE;
62
63 #ifdef CONFIG_FEATURE_ROTATE_LOGFILE
64 /* max size of message file before being rotated */
65 static int logFileSize = 200 * 1024;
66
67 /* number of rotated message files */
68 static int logFileRotate = 1;
69 #endif
70
71 /* interval between marks in seconds */
72 static int MarkInterval = 20 * 60;
73
74 /* localhost's name */
75 static char LocalHostName[64];
76
77 #ifdef CONFIG_FEATURE_REMOTE_LOG
78 #include <netinet/in.h>
79 /* udp socket for logging to remote host */
80 static int remotefd = -1;
81 static struct sockaddr_in remoteaddr;
82 static int remoteaddrlen;
83
84 /* where do we log? */
85 static char *RemoteHost;
86
87 /* what port to log to? */
88 static int RemotePort = 514;
89
90 /* To remote log or not to remote log, that is the question. */
91 static int doRemoteLog = FALSE;
92 static int local_logging = FALSE;
93 #endif
94
95 /* Make loging output smaller. */
96 static bool small = false;
97
98
99 #define MAXLINE         1024    /* maximum line length */
100
101
102 /* circular buffer variables/structures */
103 #ifdef CONFIG_FEATURE_IPC_SYSLOG
104
105 #if CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE < 4
106 #error Sorry, you must set the syslogd buffer size to at least 4KB.
107 #error Please check CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE
108 #endif
109
110 #include <sys/ipc.h>
111 #include <sys/sem.h>
112 #include <sys/shm.h>
113
114 /* our shared key */
115 static const long KEY_ID = 0x414e4547;  /*"GENA" */
116
117 // Semaphore operation structures
118 static struct shbuf_ds {
119         int size;                       // size of data written
120         int head;                       // start of message list
121         int tail;                       // end of message list
122         char data[1];           // data/messages
123 } *buf = NULL;                  // shared memory pointer
124
125 static struct sembuf SMwup[1] = { {1, -1, IPC_NOWAIT} };        // set SMwup
126 static struct sembuf SMwdn[3] = { {0, 0}, {1, 0}, {1, +1} };    // set SMwdn
127
128 static int shmid = -1;  // ipc shared memory id
129 static int s_semid = -1;        // ipc semaphore id
130 static int shm_size = ((CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE)*1024);   // default shm size
131 static int circular_logging = FALSE;
132
133 /*
134  * sem_up - up()'s a semaphore.
135  */
136 static inline void sem_up(int semid)
137 {
138         if (semop(semid, SMwup, 1) == -1) {
139                 bb_perror_msg_and_die("semop[SMwup]");
140         }
141 }
142
143 /*
144  * sem_down - down()'s a semaphore
145  */
146 static inline void sem_down(int semid)
147 {
148         if (semop(semid, SMwdn, 3) == -1) {
149                 bb_perror_msg_and_die("semop[SMwdn]");
150         }
151 }
152
153
154 void ipcsyslog_cleanup(void)
155 {
156         printf("Exiting Syslogd!\n");
157         if (shmid != -1) {
158                 shmdt(buf);
159         }
160
161         if (shmid != -1) {
162                 shmctl(shmid, IPC_RMID, NULL);
163         }
164         if (s_semid != -1) {
165                 semctl(s_semid, 0, IPC_RMID, 0);
166         }
167 }
168
169 void ipcsyslog_init(void)
170 {
171         if (buf == NULL) {
172                 if ((shmid = shmget(KEY_ID, shm_size, IPC_CREAT | 1023)) == -1) {
173                         bb_perror_msg_and_die("shmget");
174                 }
175
176                 if ((buf = shmat(shmid, NULL, 0)) == NULL) {
177                         bb_perror_msg_and_die("shmat");
178                 }
179
180                 buf->size = shm_size - sizeof(*buf);
181                 buf->head = buf->tail = 0;
182
183                 // we'll trust the OS to set initial semval to 0 (let's hope)
184                 if ((s_semid = semget(KEY_ID, 2, IPC_CREAT | IPC_EXCL | 1023)) == -1) {
185                         if (errno == EEXIST) {
186                                 if ((s_semid = semget(KEY_ID, 2, 0)) == -1) {
187                                         bb_perror_msg_and_die("semget");
188                                 }
189                         } else {
190                                 bb_perror_msg_and_die("semget");
191                         }
192                 }
193         } else {
194                 printf("Buffer already allocated just grab the semaphore?");
195         }
196 }
197
198 /* write message to buffer */
199 void circ_message(const char *msg)
200 {
201         int l = strlen(msg) + 1;        /* count the whole message w/ '\0' included */
202
203         sem_down(s_semid);
204
205         /*
206          * Circular Buffer Algorithm:
207          * --------------------------
208          *
209          * Start-off w/ empty buffer of specific size SHM_SIZ
210          * Start filling it up w/ messages. I use '\0' as separator to break up messages.
211          * This is also very handy since we can do printf on message.
212          *
213          * Once the buffer is full we need to get rid of the first message in buffer and
214          * insert the new message. (Note: if the message being added is >1 message then
215          * we will need to "remove" >1 old message from the buffer). The way this is done
216          * is the following:
217          *      When we reach the end of the buffer we set a mark and start from the beginning.
218          *      Now what about the beginning and end of the buffer? Well we have the "head"
219          *      index/pointer which is the starting point for the messages and we have "tail"
220          *      index/pointer which is the ending point for the messages. When we "display" the
221          *      messages we start from the beginning and continue until we reach "tail". If we
222          *      reach end of buffer, then we just start from the beginning (offset 0). "head" and
223          *      "tail" are actually offsets from the beginning of the buffer.
224          *
225          * Note: This algorithm uses Linux IPC mechanism w/ shared memory and semaphores to provide
226          *       a threasafe way of handling shared memory operations.
227          */
228         if ((buf->tail + l) < buf->size) {
229                 /* before we append the message we need to check the HEAD so that we won't
230                    overwrite any of the message that we still need and adjust HEAD to point
231                    to the next message! */
232                 if (buf->tail < buf->head) {
233                         if ((buf->tail + l) >= buf->head) {
234                                 /* we need to move the HEAD to point to the next message
235                                  * Theoretically we have enough room to add the whole message to the
236                                  * buffer, because of the first outer IF statement, so we don't have
237                                  * to worry about overflows here!
238                                  */
239                                 int k = buf->tail + l - buf->head;      /* we need to know how many bytes
240                                                                                                            we are overwriting to make
241                                                                                                            enough room */
242                                 char *c =
243                                         memchr(buf->data + buf->head + k, '\0',
244                                                    buf->size - (buf->head + k));
245                                 if (c != NULL) {        /* do a sanity check just in case! */
246                                         buf->head = c - buf->data + 1;  /* we need to convert pointer to
247                                                                                                            offset + skip the '\0' since
248                                                                                                            we need to point to the beginning
249                                                                                                            of the next message */
250                                         /* Note: HEAD is only used to "retrieve" messages, it's not used
251                                            when writing messages into our buffer */
252                                 } else {        /* show an error message to know we messed up? */
253                                         printf("Weird! Can't find the terminator token??? \n");
254                                         buf->head = 0;
255                                 }
256                         }
257                 }
258
259                 /* in other cases no overflows have been done yet, so we don't care! */
260                 /* we should be ok to append the message now */
261                 strncpy(buf->data + buf->tail, msg, l); /* append our message */
262                 buf->tail += l; /* count full message w/ '\0' terminating char */
263         } else {
264                 /* we need to break up the message and "circle" it around */
265                 char *c;
266                 int k = buf->tail + l - buf->size;      /* count # of bytes we don't fit */
267
268                 /* We need to move HEAD! This is always the case since we are going
269                  * to "circle" the message.
270                  */
271                 c = memchr(buf->data + k, '\0', buf->size - k);
272
273                 if (c != NULL) {        /* if we don't have '\0'??? weird!!! */
274                         /* move head pointer */
275                         buf->head = c - buf->data + 1;
276
277                         /* now write the first part of the message */
278                         strncpy(buf->data + buf->tail, msg, l - k - 1);
279
280                         /* ALWAYS terminate end of buffer w/ '\0' */
281                         buf->data[buf->size - 1] = '\0';
282
283                         /* now write out the rest of the string to the beginning of the buffer */
284                         strcpy(buf->data, &msg[l - k - 1]);
285
286                         /* we need to place the TAIL at the end of the message */
287                         buf->tail = k + 1;
288                 } else {
289                         printf
290                                 ("Weird! Can't find the terminator token from the beginning??? \n");
291                         buf->head = buf->tail = 0;      /* reset buffer, since it's probably corrupted */
292                 }
293
294         }
295         sem_up(s_semid);
296 }
297 #endif                                                  /* CONFIG_FEATURE_IPC_SYSLOG */
298
299 /* Note: There is also a function called "message()" in init.c */
300 /* Print a message to the log file. */
301 static void message(char *fmt, ...) __attribute__ ((format(printf, 1, 2)));
302 static void message(char *fmt, ...)
303 {
304         int fd;
305         struct flock fl;
306         va_list arguments;
307
308         fl.l_whence = SEEK_SET;
309         fl.l_start = 0;
310         fl.l_len = 1;
311
312 #ifdef CONFIG_FEATURE_IPC_SYSLOG
313         if ((circular_logging == TRUE) && (buf != NULL)) {
314                 char b[1024];
315
316                 va_start(arguments, fmt);
317                 vsnprintf(b, sizeof(b) - 1, fmt, arguments);
318                 va_end(arguments);
319                 circ_message(b);
320
321         } else
322 #endif
323         if ((fd =
324                          device_open(logFilePath,
325                                                          O_WRONLY | O_CREAT | O_NOCTTY | O_APPEND |
326                                                          O_NONBLOCK)) >= 0) {
327                 fl.l_type = F_WRLCK;
328                 fcntl(fd, F_SETLKW, &fl);
329 #ifdef CONFIG_FEATURE_ROTATE_LOGFILE
330                 if ( logFileSize > 0 ) {
331                         struct stat statf;
332                         int r = fstat(fd, &statf);
333                         if( !r && (statf.st_mode & S_IFREG)
334                                 && (lseek(fd,0,SEEK_END) > logFileSize) ) {
335                                 if(logFileRotate > 0) {
336                                         int i;
337                                         char oldFile[(strlen(logFilePath)+3)], newFile[(strlen(logFilePath)+3)];
338                                         for(i=logFileRotate-1;i>0;i--) {
339                                                 sprintf(oldFile, "%s.%d", logFilePath, i-1);
340                                                 sprintf(newFile, "%s.%d", logFilePath, i);
341                                                 rename(oldFile, newFile);
342                                         }
343                                         sprintf(newFile, "%s.%d", logFilePath, 0);
344                                         fl.l_type = F_UNLCK;
345                                         fcntl (fd, F_SETLKW, &fl);
346                                         close(fd);
347                                         rename(logFilePath, newFile);
348                                         fd = device_open (logFilePath,
349                                                    O_WRONLY | O_CREAT | O_NOCTTY | O_APPEND |
350                                                    O_NONBLOCK);
351                                         fl.l_type = F_WRLCK;
352                                         fcntl (fd, F_SETLKW, &fl);
353                                 } else {
354                                         ftruncate( fd, 0 );
355                                 }
356                         }
357                 }
358 #endif
359                 va_start(arguments, fmt);
360                 vdprintf(fd, fmt, arguments);
361                 va_end(arguments);
362                 fl.l_type = F_UNLCK;
363                 fcntl(fd, F_SETLKW, &fl);
364                 close(fd);
365         } else {
366                 /* Always send console messages to /dev/console so people will see them. */
367                 if ((fd =
368                          device_open(_PATH_CONSOLE,
369                                                  O_WRONLY | O_NOCTTY | O_NONBLOCK)) >= 0) {
370                         va_start(arguments, fmt);
371                         vdprintf(fd, fmt, arguments);
372                         va_end(arguments);
373                         close(fd);
374                 } else {
375                         fprintf(stderr, "Bummer, can't print: ");
376                         va_start(arguments, fmt);
377                         vfprintf(stderr, fmt, arguments);
378                         fflush(stderr);
379                         va_end(arguments);
380                 }
381         }
382 }
383
384 static void logMessage(int pri, char *msg)
385 {
386         time_t now;
387         char *timestamp;
388         static char res[20] = "";
389         static char line[512];
390         CODE *c_pri, *c_fac;
391
392         if (pri != 0) {
393                 for (c_fac = facilitynames;
394                          c_fac->c_name && !(c_fac->c_val == LOG_FAC(pri) << 3); c_fac++);
395                 for (c_pri = prioritynames;
396                          c_pri->c_name && !(c_pri->c_val == LOG_PRI(pri)); c_pri++);
397                 if (c_fac->c_name == NULL || c_pri->c_name == NULL) {
398                         snprintf(res, sizeof(res), "<%d>", pri);
399                 } else {
400                         snprintf(res, sizeof(res), "%s.%s", c_fac->c_name, c_pri->c_name);
401                 }
402         }
403
404         if (strlen(msg) < 16 || msg[3] != ' ' || msg[6] != ' ' ||
405                 msg[9] != ':' || msg[12] != ':' || msg[15] != ' ') {
406                 time(&now);
407                 timestamp = ctime(&now) + 4;
408                 timestamp[15] = '\0';
409         } else {
410                 timestamp = msg;
411                 timestamp[15] = '\0';
412                 msg += 16;
413         }
414
415         /* todo: supress duplicates */
416
417 #ifdef CONFIG_FEATURE_REMOTE_LOG
418         /* send message to remote logger */
419         if (-1 != remotefd) {
420
421                 memset(&line, 0, sizeof(line));
422                 snprintf(line, sizeof(line), "<%d> <%s>", pri, msg);
423
424         retry:
425         if(( -1 == sendto(remotefd, line, strlen(line), 0, 
426                                                 (struct sockaddr *) &remoteaddr, 
427                                                 remoteaddrlen)) && (errno == EINTR)) {
428                         goto retry;
429                 }
430         }
431         if (local_logging == TRUE)
432 #endif
433         {
434                 /* now spew out the message to wherever it is supposed to go */
435                 if (small)
436                         message("%s %s\n", timestamp, msg);
437                 else
438                         message("%s %s %s %s\n", timestamp, LocalHostName, res, msg);
439         }
440 }
441
442 static void quit_signal(int sig)
443 {
444         logMessage(LOG_SYSLOG | LOG_INFO, "System log daemon exiting.");
445         unlink(lfile);
446 #ifdef CONFIG_FEATURE_IPC_SYSLOG
447         ipcsyslog_cleanup();
448 #endif
449
450         exit(TRUE);
451 }
452
453 static void domark(int sig)
454 {
455         if (MarkInterval > 0) {
456                 logMessage(LOG_SYSLOG | LOG_INFO, "-- MARK --");
457                 alarm(MarkInterval);
458         }
459 }
460
461 /* This must be a #define, since when CONFIG_DEBUG and BUFFERS_GO_IN_BSS are
462  * enabled, we otherwise get a "storage size isn't constant error. */
463 static int serveConnection(char *tmpbuf, int n_read)
464 {
465         char *p = tmpbuf;
466
467         while (p < tmpbuf + n_read) {
468
469                 int pri = (LOG_USER | LOG_NOTICE);
470                 int num_lt = 0;
471                 char line[MAXLINE + 1];
472                 unsigned char c;
473                 char *q = line;
474
475                 while ((c = *p) && q < &line[sizeof(line) - 1]) {
476                         if (c == '<' && num_lt == 0) {
477                                 /* Parse the magic priority number. */
478                                 num_lt++;
479                                 pri = 0;
480                                 while (isdigit(*(++p))) {
481                                         pri = 10 * pri + (*p - '0');
482                                 }
483                                 if (pri & ~(LOG_FACMASK | LOG_PRIMASK)) {
484                                         pri = (LOG_USER | LOG_NOTICE);
485                                 }
486                         } else if (c == '\n') {
487                                 *q++ = ' ';
488                         } else if (iscntrl(c) && (c < 0177)) {
489                                 *q++ = '^';
490                                 *q++ = c ^ 0100;
491                         } else {
492                                 *q++ = c;
493                         }
494                         p++;
495                 }
496                 *q = '\0';
497                 p++;
498                 /* Now log it */
499                 logMessage(pri, line);
500         }
501         return n_read;
502 }
503
504
505 #ifdef CONFIG_FEATURE_REMOTE_LOG
506 static void init_RemoteLog(void)
507 {
508         struct hostent *hostinfo;
509         remoteaddrlen = sizeof(remoteaddr);
510
511         memset(&remoteaddr, 0, remoteaddrlen);
512
513         remotefd = socket(AF_INET, SOCK_DGRAM, 0);
514
515         if (remotefd < 0) {
516                 bb_error_msg_and_die("cannot create socket");
517         }
518
519         hostinfo = xgethostbyname(RemoteHost);
520
521         remoteaddr.sin_family = AF_INET;
522         remoteaddr.sin_addr = *(struct in_addr *) *hostinfo->h_addr_list;
523         remoteaddr.sin_port = htons(RemotePort);
524 }
525 #endif
526
527 static void doSyslogd(void) __attribute__ ((noreturn));
528 static void doSyslogd(void)
529 {
530         struct sockaddr_un sunx;
531         socklen_t addrLength;
532
533         int sock_fd;
534         fd_set fds;
535
536         /* Set up signal handlers. */
537         signal(SIGINT, quit_signal);
538         signal(SIGTERM, quit_signal);
539         signal(SIGQUIT, quit_signal);
540         signal(SIGHUP, SIG_IGN);
541         signal(SIGCHLD, SIG_IGN);
542 #ifdef SIGCLD
543         signal(SIGCLD, SIG_IGN);
544 #endif
545         signal(SIGALRM, domark);
546         alarm(MarkInterval);
547
548         /* Create the syslog file so realpath() can work. */
549         if (realpath(_PATH_LOG, lfile) != NULL) {
550                 unlink(lfile);
551         }
552
553         memset(&sunx, 0, sizeof(sunx));
554         sunx.sun_family = AF_UNIX;
555         strncpy(sunx.sun_path, lfile, sizeof(sunx.sun_path));
556         if ((sock_fd = socket(AF_UNIX, SOCK_DGRAM, 0)) < 0) {
557                 bb_perror_msg_and_die("Couldn't get file descriptor for socket "
558                                                    _PATH_LOG);
559         }
560
561         addrLength = sizeof(sunx.sun_family) + strlen(sunx.sun_path);
562         if (bind(sock_fd, (struct sockaddr *) &sunx, addrLength) < 0) {
563                 bb_perror_msg_and_die("Could not connect to socket " _PATH_LOG);
564         }
565
566         if (chmod(lfile, 0666) < 0) {
567                 bb_perror_msg_and_die("Could not set permission on " _PATH_LOG);
568         }
569 #ifdef CONFIG_FEATURE_IPC_SYSLOG
570         if (circular_logging == TRUE) {
571                 ipcsyslog_init();
572         }
573 #endif
574
575 #ifdef CONFIG_FEATURE_REMOTE_LOG
576         if (doRemoteLog == TRUE) {
577                 init_RemoteLog();
578         }
579 #endif
580
581         logMessage(LOG_SYSLOG | LOG_INFO, "syslogd started: " BB_BANNER);
582
583         for (;;) {
584
585                 FD_ZERO(&fds);
586                 FD_SET(sock_fd, &fds);
587
588                 if (select(sock_fd + 1, &fds, NULL, NULL, NULL) < 0) {
589                         if (errno == EINTR) {
590                                 /* alarm may have happened. */
591                                 continue;
592                         }
593                         bb_perror_msg_and_die("select error");
594                 }
595
596                 if (FD_ISSET(sock_fd, &fds)) {
597                         int i;
598
599                         RESERVE_CONFIG_BUFFER(tmpbuf, MAXLINE + 1);
600
601                         memset(tmpbuf, '\0', MAXLINE + 1);
602                         if ((i = recv(sock_fd, tmpbuf, MAXLINE, 0)) > 0) {
603                                 serveConnection(tmpbuf, i);
604                         } else {
605                                 bb_perror_msg_and_die("UNIX socket error");
606                         }
607                         RELEASE_CONFIG_BUFFER(tmpbuf);
608                 }                               /* FD_ISSET() */
609         }                                       /* for main loop */
610 }
611
612 extern int syslogd_main(int argc, char **argv)
613 {
614         int opt;
615
616         int doFork = TRUE;
617
618         char *p;
619
620         /* do normal option parsing */
621         while ((opt = getopt(argc, argv, "m:nO:s:Sb:R:LC::")) > 0) {
622                 switch (opt) {
623                 case 'm':
624                         MarkInterval = atoi(optarg) * 60;
625                         break;
626                 case 'n':
627                         doFork = FALSE;
628                         break;
629                 case 'O':
630                         logFilePath = optarg;
631                         break;
632 #ifdef CONFIG_FEATURE_ROTATE_LOGFILE
633                 case 's':
634                         logFileSize = atoi(optarg) * 1024;
635                         break;
636                 case 'b':
637                         logFileRotate = atoi(optarg);
638                         if( logFileRotate > 99 ) logFileRotate = 99;
639                         break;
640 #endif
641 #ifdef CONFIG_FEATURE_REMOTE_LOG
642                 case 'R':
643                         RemoteHost = bb_xstrdup(optarg);
644                         if ((p = strchr(RemoteHost, ':'))) {
645                                 RemotePort = atoi(p + 1);
646                                 *p = '\0';
647                         }
648                         doRemoteLog = TRUE;
649                         break;
650                 case 'L':
651                         local_logging = TRUE;
652                         break;
653 #endif
654 #ifdef CONFIG_FEATURE_IPC_SYSLOG
655                 case 'C':
656                         if (optarg) {
657                                 int buf_size = atoi(optarg);
658                                 if (buf_size >= 4) {
659                                         shm_size = buf_size * 1024;
660                                 }
661                         }
662                         circular_logging = TRUE;
663                         break;
664 #endif
665                 case 'S':
666                         small = true;
667                         break;
668                 default:
669                         bb_show_usage();
670                 }
671         }
672
673 #ifdef CONFIG_FEATURE_REMOTE_LOG
674         /* If they have not specified remote logging, then log locally */
675         if (doRemoteLog == FALSE)
676                 local_logging = TRUE;
677 #endif
678
679
680         /* Store away localhost's name before the fork */
681         gethostname(LocalHostName, sizeof(LocalHostName));
682         if ((p = strchr(LocalHostName, '.'))) {
683                 *p = '\0';
684         }
685
686         umask(0);
687
688         if (doFork == TRUE) {
689 #if defined(__uClinux__)
690                 vfork_daemon_rexec(0, 1, argc, argv, "-n");
691 #else /* __uClinux__ */
692                 if(daemon(0, 1) < 0)
693                         bb_perror_msg_and_die("daemon");
694 #endif /* __uClinux__ */
695         }
696         doSyslogd();
697
698         return EXIT_SUCCESS;
699 }
700
701 /*
702 Local Variables
703 c-file-style: "linux"
704 c-basic-offset: 4
705 tab-width: 4
706 End:
707 */