Initial public busybox upstream commit
[busybox4maemo] / 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  * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
14  */
15
16 #include "libbb.h"
17 #define SYSLOG_NAMES
18 #define SYSLOG_NAMES_CONST
19 #include <syslog.h>
20
21 #include <paths.h>
22 #include <sys/un.h>
23 #include <sys/uio.h>
24
25 #if ENABLE_FEATURE_REMOTE_LOG
26 #include <netinet/in.h>
27 #endif
28
29 #if ENABLE_FEATURE_IPC_SYSLOG
30 #include <sys/ipc.h>
31 #include <sys/sem.h>
32 #include <sys/shm.h>
33 #endif
34
35
36 #define DEBUG 0
37
38 /* MARK code is not very useful, is bloat, and broken:
39  * can deadlock if alarmed to make MARK while writing to IPC buffer
40  * (semaphores are down but do_mark routine tries to down them again) */
41 #undef SYSLOGD_MARK
42
43 enum {
44         MAX_READ = 256,
45         DNS_WAIT_SEC = 2 * 60,
46 };
47
48 /* Semaphore operation structures */
49 struct shbuf_ds {
50         int32_t size;   /* size of data - 1 */
51         int32_t tail;   /* end of message list */
52         char data[1];   /* data/messages */
53 };
54
55 /* Allows us to have smaller initializer. Ugly. */
56 #define GLOBALS \
57         const char *logFilePath;                \
58         int logFD;                              \
59         /* interval between marks in seconds */ \
60         /*int markInterval;*/                   \
61         /* level of messages to be logged */    \
62         int logLevel;                           \
63 USE_FEATURE_ROTATE_LOGFILE( \
64         /* max size of file before rotation */  \
65         unsigned logFileSize;                   \
66         /* number of rotated message files */   \
67         unsigned logFileRotate;                 \
68         unsigned curFileSize;                   \
69         smallint isRegular;                     \
70 ) \
71 USE_FEATURE_REMOTE_LOG( \
72         /* udp socket for remote logging */     \
73         int remoteFD;                           \
74         len_and_sockaddr* remoteAddr;           \
75 ) \
76 USE_FEATURE_IPC_SYSLOG( \
77         int shmid; /* ipc shared memory id */   \
78         int s_semid; /* ipc semaphore id */     \
79         int shm_size;                           \
80         struct sembuf SMwup[1];                 \
81         struct sembuf SMwdn[3];                 \
82 )
83
84 struct init_globals {
85         GLOBALS
86 };
87
88 struct globals {
89         GLOBALS
90
91 #if ENABLE_FEATURE_REMOTE_LOG
92         unsigned last_dns_resolve;
93         char *remoteAddrStr;
94 #endif
95
96 #if ENABLE_FEATURE_IPC_SYSLOG
97         struct shbuf_ds *shbuf;
98 #endif
99         time_t last_log_time;
100         /* localhost's name. We print only first 64 chars */
101         char *hostname;
102
103         /* We recv into recvbuf... */
104         char recvbuf[MAX_READ * (1 + ENABLE_FEATURE_SYSLOGD_DUP)];
105         /* ...then copy to parsebuf, escaping control chars */
106         /* (can grow x2 max) */
107         char parsebuf[MAX_READ*2];
108         /* ...then sprintf into printbuf, adding timestamp (15 chars),
109          * host (64), fac.prio (20) to the message */
110         /* (growth by: 15 + 64 + 20 + delims = ~110) */
111         char printbuf[MAX_READ*2 + 128];
112 };
113
114 static const struct init_globals init_data = {
115         .logFilePath = "/var/log/messages",
116         .logFD = -1,
117 #ifdef SYSLOGD_MARK
118         .markInterval = 20 * 60,
119 #endif
120         .logLevel = 8,
121 #if ENABLE_FEATURE_ROTATE_LOGFILE
122         .logFileSize = 200 * 1024,
123         .logFileRotate = 1,
124 #endif
125 #if ENABLE_FEATURE_REMOTE_LOG
126         .remoteFD = -1,
127 #endif
128 #if ENABLE_FEATURE_IPC_SYSLOG
129         .shmid = -1,
130         .s_semid = -1,
131         .shm_size = ((CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE)*1024), // default shm size
132         .SMwup = { {1, -1, IPC_NOWAIT} },
133         .SMwdn = { {0, 0}, {1, 0}, {1, +1} },
134 #endif
135 };
136
137 #define G (*ptr_to_globals)
138 #define INIT_G() do { \
139         SET_PTR_TO_GLOBALS(memcpy(xzalloc(sizeof(G)), &init_data, sizeof(init_data))); \
140 } while (0)
141
142
143 /* Options */
144 enum {
145         OPTBIT_mark = 0, // -m
146         OPTBIT_nofork, // -n
147         OPTBIT_outfile, // -O
148         OPTBIT_loglevel, // -l
149         OPTBIT_small, // -S
150         USE_FEATURE_ROTATE_LOGFILE(OPTBIT_filesize   ,) // -s
151         USE_FEATURE_ROTATE_LOGFILE(OPTBIT_rotatecnt  ,) // -b
152         USE_FEATURE_REMOTE_LOG(    OPTBIT_remote     ,) // -R
153         USE_FEATURE_REMOTE_LOG(    OPTBIT_locallog   ,) // -L
154         USE_FEATURE_IPC_SYSLOG(    OPTBIT_circularlog,) // -C
155         USE_FEATURE_SYSLOGD_DUP(   OPTBIT_dup        ,) // -D
156
157         OPT_mark        = 1 << OPTBIT_mark    ,
158         OPT_nofork      = 1 << OPTBIT_nofork  ,
159         OPT_outfile     = 1 << OPTBIT_outfile ,
160         OPT_loglevel    = 1 << OPTBIT_loglevel,
161         OPT_small       = 1 << OPTBIT_small   ,
162         OPT_filesize    = USE_FEATURE_ROTATE_LOGFILE((1 << OPTBIT_filesize   )) + 0,
163         OPT_rotatecnt   = USE_FEATURE_ROTATE_LOGFILE((1 << OPTBIT_rotatecnt  )) + 0,
164         OPT_remotelog   = USE_FEATURE_REMOTE_LOG(    (1 << OPTBIT_remote     )) + 0,
165         OPT_locallog    = USE_FEATURE_REMOTE_LOG(    (1 << OPTBIT_locallog   )) + 0,
166         OPT_circularlog = USE_FEATURE_IPC_SYSLOG(    (1 << OPTBIT_circularlog)) + 0,
167         OPT_dup         = USE_FEATURE_SYSLOGD_DUP(   (1 << OPTBIT_dup        )) + 0,
168 };
169 #define OPTION_STR "m:nO:l:S" \
170         USE_FEATURE_ROTATE_LOGFILE("s:" ) \
171         USE_FEATURE_ROTATE_LOGFILE("b:" ) \
172         USE_FEATURE_REMOTE_LOG(    "R:" ) \
173         USE_FEATURE_REMOTE_LOG(    "L"  ) \
174         USE_FEATURE_IPC_SYSLOG(    "C::") \
175         USE_FEATURE_SYSLOGD_DUP(   "D"  )
176 #define OPTION_DECL *opt_m, *opt_l \
177         USE_FEATURE_ROTATE_LOGFILE(,*opt_s) \
178         USE_FEATURE_ROTATE_LOGFILE(,*opt_b) \
179         USE_FEATURE_IPC_SYSLOG(    ,*opt_C = NULL)
180 #define OPTION_PARAM &opt_m, &G.logFilePath, &opt_l \
181         USE_FEATURE_ROTATE_LOGFILE(,&opt_s) \
182         USE_FEATURE_ROTATE_LOGFILE(,&opt_b) \
183         USE_FEATURE_REMOTE_LOG(    ,&G.remoteAddrStr) \
184         USE_FEATURE_IPC_SYSLOG(    ,&opt_C)
185
186
187 /* circular buffer variables/structures */
188 #if ENABLE_FEATURE_IPC_SYSLOG
189
190 #if CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE < 4
191 #error Sorry, you must set the syslogd buffer size to at least 4KB.
192 #error Please check CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE
193 #endif
194
195 /* our shared key */
196 #define KEY_ID ((long)0x414e4547) /* "GENA" */
197
198 static void ipcsyslog_cleanup(void)
199 {
200         if (G.shmid != -1) {
201                 shmdt(G.shbuf);
202         }
203         if (G.shmid != -1) {
204                 shmctl(G.shmid, IPC_RMID, NULL);
205         }
206         if (G.s_semid != -1) {
207                 semctl(G.s_semid, 0, IPC_RMID, 0);
208         }
209 }
210
211 static void ipcsyslog_init(void)
212 {
213         if (DEBUG)
214                 printf("shmget(%lx, %d,...)\n", KEY_ID, G.shm_size);
215
216         G.shmid = shmget(KEY_ID, G.shm_size, IPC_CREAT | 0644);
217         if (G.shmid == -1) {
218                 bb_perror_msg_and_die("shmget");
219         }
220
221         G.shbuf = shmat(G.shmid, NULL, 0);
222         if (G.shbuf == (void*) -1L) { /* shmat has bizarre error return */
223                 bb_perror_msg_and_die("shmat");
224         }
225
226         memset(G.shbuf, 0, G.shm_size);
227         G.shbuf->size = G.shm_size - offsetof(struct shbuf_ds, data) - 1;
228         /*G.shbuf->tail = 0;*/
229
230         // we'll trust the OS to set initial semval to 0 (let's hope)
231         G.s_semid = semget(KEY_ID, 2, IPC_CREAT | IPC_EXCL | 1023);
232         if (G.s_semid == -1) {
233                 if (errno == EEXIST) {
234                         G.s_semid = semget(KEY_ID, 2, 0);
235                         if (G.s_semid != -1)
236                                 return;
237                 }
238                 bb_perror_msg_and_die("semget");
239         }
240 }
241
242 /* Write message to shared mem buffer */
243 static void log_to_shmem(const char *msg, int len)
244 {
245         int old_tail, new_tail;
246
247         if (semop(G.s_semid, G.SMwdn, 3) == -1) {
248                 bb_perror_msg_and_die("SMwdn");
249         }
250
251         /* Circular Buffer Algorithm:
252          * --------------------------
253          * tail == position where to store next syslog message.
254          * tail's max value is (shbuf->size - 1)
255          * Last byte of buffer is never used and remains NUL.
256          */
257         len++; /* length with NUL included */
258  again:
259         old_tail = G.shbuf->tail;
260         new_tail = old_tail + len;
261         if (new_tail < G.shbuf->size) {
262                 /* store message, set new tail */
263                 memcpy(G.shbuf->data + old_tail, msg, len);
264                 G.shbuf->tail = new_tail;
265         } else {
266                 /* k == available buffer space ahead of old tail */
267                 int k = G.shbuf->size - old_tail;
268                 /* copy what fits to the end of buffer, and repeat */
269                 memcpy(G.shbuf->data + old_tail, msg, k);
270                 msg += k;
271                 len -= k;
272                 G.shbuf->tail = 0;
273                 goto again;
274         }
275         if (semop(G.s_semid, G.SMwup, 1) == -1) {
276                 bb_perror_msg_and_die("SMwup");
277         }
278         if (DEBUG)
279                 printf("tail:%d\n", G.shbuf->tail);
280 }
281 #else
282 void ipcsyslog_cleanup(void);
283 void ipcsyslog_init(void);
284 void log_to_shmem(const char *msg);
285 #endif /* FEATURE_IPC_SYSLOG */
286
287
288 /* Print a message to the log file. */
289 static void log_locally(time_t now, char *msg)
290 {
291         struct flock fl;
292         int len = strlen(msg);
293
294 #if ENABLE_FEATURE_IPC_SYSLOG
295         if ((option_mask32 & OPT_circularlog) && G.shbuf) {
296                 log_to_shmem(msg, len);
297                 return;
298         }
299 #endif
300         if (G.logFD >= 0) {
301                 if (!now)
302                         now = time(NULL);
303                 if (G.last_log_time != now) {
304                         G.last_log_time = now; /* reopen log file every second */
305                         close(G.logFD);
306                         goto reopen;
307                 }
308         } else {
309  reopen:
310                 G.logFD = device_open(G.logFilePath, O_WRONLY | O_CREAT
311                                         | O_NOCTTY | O_APPEND | O_NONBLOCK);
312                 if (G.logFD < 0) {
313                         /* cannot open logfile? - print to /dev/console then */
314                         int fd = device_open(DEV_CONSOLE, O_WRONLY | O_NOCTTY | O_NONBLOCK);
315                         if (fd < 0)
316                                 fd = 2; /* then stderr, dammit */
317                         full_write(fd, msg, len);
318                         if (fd != 2)
319                                 close(fd);
320                         return;
321                 }
322 #if ENABLE_FEATURE_ROTATE_LOGFILE
323                 {
324                         struct stat statf;
325                         G.isRegular = (fstat(G.logFD, &statf) == 0 && S_ISREG(statf.st_mode));
326                         /* bug (mostly harmless): can wrap around if file > 4gb */
327                         G.curFileSize = statf.st_size;
328                 }
329 #endif
330         }
331
332         fl.l_whence = SEEK_SET;
333         fl.l_start = 0;
334         fl.l_len = 1;
335         fl.l_type = F_WRLCK;
336         fcntl(G.logFD, F_SETLKW, &fl);
337
338 #if ENABLE_FEATURE_ROTATE_LOGFILE
339         if (G.logFileSize && G.isRegular && G.curFileSize > G.logFileSize) {
340                 if (G.logFileRotate) { /* always 0..99 */
341                         int i = strlen(G.logFilePath) + 3 + 1;
342                         char oldFile[i];
343                         char newFile[i];
344                         i = G.logFileRotate - 1;
345                         /* rename: f.8 -> f.9; f.7 -> f.8; ... */
346                         while (1) {
347                                 sprintf(newFile, "%s.%d", G.logFilePath, i);
348                                 if (i == 0) break;
349                                 sprintf(oldFile, "%s.%d", G.logFilePath, --i);
350                                 xrename(oldFile, newFile);
351                         }
352                         /* newFile == "f.0" now */
353                         xrename(G.logFilePath, newFile);
354                         fl.l_type = F_UNLCK;
355                         fcntl(G.logFD, F_SETLKW, &fl);
356                         close(G.logFD);
357                         goto reopen;
358                 }
359                 ftruncate(G.logFD, 0);
360         }
361         G.curFileSize +=
362 #endif
363                         full_write(G.logFD, msg, len);
364         fl.l_type = F_UNLCK;
365         fcntl(G.logFD, F_SETLKW, &fl);
366 }
367
368 static void parse_fac_prio_20(int pri, char *res20)
369 {
370         const CODE *c_pri, *c_fac;
371
372         if (pri != 0) {
373                 c_fac = facilitynames;
374                 while (c_fac->c_name) {
375                         if (c_fac->c_val != (LOG_FAC(pri) << 3)) {
376                                 c_fac++;
377                                 continue;
378                         }
379                         /* facility is found, look for prio */
380                         c_pri = prioritynames;
381                         while (c_pri->c_name) {
382                                 if (c_pri->c_val != LOG_PRI(pri)) {
383                                         c_pri++;
384                                         continue;
385                                 }
386                                 snprintf(res20, 20, "%s.%s",
387                                                 c_fac->c_name, c_pri->c_name);
388                                 return;
389                         }
390                         /* prio not found, bail out */
391                         break;
392                 }
393                 snprintf(res20, 20, "<%d>", pri);
394         }
395 }
396
397 /* len parameter is used only for "is there a timestamp?" check.
398  * NB: some callers cheat and supply len==0 when they know
399  * that there is no timestamp, short-circuiting the test. */
400 static void timestamp_and_log(int pri, char *msg, int len)
401 {
402         char *timestamp;
403         time_t now;
404
405         if (len < 16 || msg[3] != ' ' || msg[6] != ' '
406          || msg[9] != ':' || msg[12] != ':' || msg[15] != ' '
407         ) {
408                 time(&now);
409                 timestamp = ctime(&now) + 4; /* skip day of week */
410         } else {
411                 now = 0;
412                 timestamp = msg;
413                 msg += 16;
414         }
415         timestamp[15] = '\0';
416
417         if (option_mask32 & OPT_small)
418                 sprintf(G.printbuf, "%s %s\n", timestamp, msg);
419         else {
420                 char res[20];
421                 parse_fac_prio_20(pri, res);
422                 sprintf(G.printbuf, "%s %.64s %s %s\n", timestamp, G.hostname, res, msg);
423         }
424
425         /* Log message locally (to file or shared mem) */
426         log_locally(now, G.printbuf);
427 }
428
429 static void timestamp_and_log_internal(const char *msg)
430 {
431         if (ENABLE_FEATURE_REMOTE_LOG && !(option_mask32 & OPT_locallog))
432                 return;
433         timestamp_and_log(LOG_SYSLOG | LOG_INFO, (char*)msg, 0);
434 }
435
436 /* tmpbuf[len] is a NUL byte (set by caller), but there can be other,
437  * embedded NULs. Split messages on each of these NULs, parse prio,
438  * escape control chars and log each locally. */
439 static void split_escape_and_log(char *tmpbuf, int len)
440 {
441         char *p = tmpbuf;
442
443         tmpbuf += len;
444         while (p < tmpbuf) {
445                 char c;
446                 char *q = G.parsebuf;
447                 int pri = (LOG_USER | LOG_NOTICE);
448
449                 if (*p == '<') {
450                         /* Parse the magic priority number */
451                         pri = bb_strtou(p + 1, &p, 10);
452                         if (*p == '>')
453                                 p++;
454                         if (pri & ~(LOG_FACMASK | LOG_PRIMASK))
455                                 pri = (LOG_USER | LOG_NOTICE);
456                 }
457
458                 while ((c = *p++)) {
459                         if (c == '\n')
460                                 c = ' ';
461                         if (!(c & ~0x1f) && c != '\t') {
462                                 *q++ = '^';
463                                 c += '@'; /* ^@, ^A, ^B... */
464                         }
465                         *q++ = c;
466                 }
467                 *q = '\0';
468
469                 /* Now log it */
470                 if (LOG_PRI(pri) < G.logLevel)
471                         timestamp_and_log(pri, G.parsebuf, q - G.parsebuf);
472         }
473 }
474
475 static void quit_signal(int sig)
476 {
477         timestamp_and_log_internal("syslogd exiting");
478         puts("syslogd exiting");
479         if (ENABLE_FEATURE_IPC_SYSLOG)
480                 ipcsyslog_cleanup();
481         kill_myself_with_sig(sig);
482 }
483
484 #ifdef SYSLOGD_MARK
485 static void do_mark(int sig)
486 {
487         if (G.markInterval) {
488                 timestamp_and_log_internal("-- MARK --");
489                 alarm(G.markInterval);
490         }
491 }
492 #endif
493
494 /* Don't inline: prevent struct sockaddr_un to take up space on stack
495  * permanently */
496 static NOINLINE int create_socket(void)
497 {
498         struct sockaddr_un sunx;
499         int sock_fd;
500         char *dev_log_name;
501
502         memset(&sunx, 0, sizeof(sunx));
503         sunx.sun_family = AF_UNIX;
504
505         /* Unlink old /dev/log or object it points to. */
506         /* (if it exists, bind will fail) */
507         strcpy(sunx.sun_path, "/dev/log");
508         dev_log_name = xmalloc_follow_symlinks("/dev/log");
509         if (dev_log_name) {
510                 safe_strncpy(sunx.sun_path, dev_log_name, sizeof(sunx.sun_path));
511                 free(dev_log_name);
512         }
513         unlink(sunx.sun_path);
514
515         sock_fd = xsocket(AF_UNIX, SOCK_DGRAM, 0);
516         xbind(sock_fd, (struct sockaddr *) &sunx, sizeof(sunx));
517         chmod("/dev/log", 0666);
518
519         return sock_fd;
520 }
521
522 #if ENABLE_FEATURE_REMOTE_LOG
523 static int try_to_resolve_remote(void)
524 {
525         if (!G.remoteAddr) {
526                 unsigned now = monotonic_sec();
527
528                 /* Don't resolve name too often - DNS timeouts can be big */
529                 if ((now - G.last_dns_resolve) < DNS_WAIT_SEC)
530                         return -1;
531                 G.last_dns_resolve = now;
532                 G.remoteAddr = host2sockaddr(G.remoteAddrStr, 514);
533                 if (!G.remoteAddr)
534                         return -1;
535         }
536         return socket(G.remoteAddr->u.sa.sa_family, SOCK_DGRAM, 0);
537 }
538 #endif
539
540 static void do_syslogd(void) ATTRIBUTE_NORETURN;
541 static void do_syslogd(void)
542 {
543         int sock_fd;
544 #if ENABLE_FEATURE_SYSLOGD_DUP
545         int last_sz = -1;
546         char *last_buf;
547         char *recvbuf = G.recvbuf;
548 #else
549 #define recvbuf (G.recvbuf)
550 #endif
551
552         /* Set up signal handlers */
553         bb_signals(0
554                 + (1 << SIGINT)
555                 + (1 << SIGTERM)
556                 + (1 << SIGQUIT)
557                 , quit_signal);
558         signal(SIGHUP, SIG_IGN);
559         /* signal(SIGCHLD, SIG_IGN); - why? */
560 #ifdef SYSLOGD_MARK
561         signal(SIGALRM, do_mark);
562         alarm(G.markInterval);
563 #endif
564         sock_fd = create_socket();
565
566         if (ENABLE_FEATURE_IPC_SYSLOG && (option_mask32 & OPT_circularlog)) {
567                 ipcsyslog_init();
568         }
569
570         timestamp_and_log_internal("syslogd started: BusyBox v" BB_VER);
571
572         for (;;) {
573                 size_t sz;
574
575 #if ENABLE_FEATURE_SYSLOGD_DUP
576                 last_buf = recvbuf;
577                 if (recvbuf == G.recvbuf)
578                         recvbuf = G.recvbuf + MAX_READ;
579                 else
580                         recvbuf = G.recvbuf;
581 #endif
582  read_again:
583                 sz = safe_read(sock_fd, recvbuf, MAX_READ - 1);
584                 if (sz < 0)
585                         bb_perror_msg_and_die("read from /dev/log");
586
587                 /* Drop trailing '\n' and NULs (typically there is one NUL) */
588                 while (1) {
589                         if (sz == 0)
590                                 goto read_again;
591                         /* man 3 syslog says: "A trailing newline is added when needed".
592                          * However, neither glibc nor uclibc do this:
593                          * syslog(prio, "test")   sends "test\0" to /dev/log,
594                          * syslog(prio, "test\n") sends "test\n\0".
595                          * IOW: newline is passed verbatim!
596                          * I take it to mean that it's syslogd's job
597                          * to make those look identical in the log files. */
598                         if (recvbuf[sz-1] != '\0' && recvbuf[sz-1] != '\n')
599                                 break;
600                         sz--;
601                 }
602 #if ENABLE_FEATURE_SYSLOGD_DUP
603                 if ((option_mask32 & OPT_dup) && (sz == last_sz))
604                         if (memcmp(last_buf, recvbuf, sz) == 0)
605                                 continue;
606                 last_sz = sz;
607 #endif
608 #if ENABLE_FEATURE_REMOTE_LOG
609                 /* We are not modifying log messages in any way before send */
610                 /* Remote site cannot trust _us_ anyway and need to do validation again */
611                 if (G.remoteAddrStr) {
612                         if (-1 == G.remoteFD) {
613                                 G.remoteFD = try_to_resolve_remote();
614                                 if (-1 == G.remoteFD)
615                                         goto no_luck;
616                         }
617                         /* Stock syslogd sends it '\n'-terminated
618                          * over network, mimic that */
619                         recvbuf[sz] = '\n';
620                         /* send message to remote logger, ignore possible error */
621                         /* TODO: on some errors, close and set G.remoteFD to -1
622                          * so that DNS resolution and connect is retried? */
623                         sendto(G.remoteFD, recvbuf, sz+1, MSG_DONTWAIT,
624                                     &G.remoteAddr->u.sa, G.remoteAddr->len);
625  no_luck: ;
626                 }
627 #endif
628                 if (!ENABLE_FEATURE_REMOTE_LOG || (option_mask32 & OPT_locallog)) {
629                         recvbuf[sz] = '\0'; /* ensure it *is* NUL terminated */
630                         split_escape_and_log(recvbuf, sz);
631                 }
632         } /* for (;;) */
633 }
634
635 int syslogd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
636 int syslogd_main(int argc ATTRIBUTE_UNUSED, char **argv)
637 {
638         char OPTION_DECL;
639
640         INIT_G();
641 #if ENABLE_FEATURE_REMOTE_LOG
642         G.last_dns_resolve = monotonic_sec() - DNS_WAIT_SEC - 1;
643 #endif
644
645         /* do normal option parsing */
646         opt_complementary = "=0"; /* no non-option params */
647         getopt32(argv, OPTION_STR, OPTION_PARAM);
648 #ifdef SYSLOGD_MARK
649         if (option_mask32 & OPT_mark) // -m
650                 G.markInterval = xatou_range(opt_m, 0, INT_MAX/60) * 60;
651 #endif
652         //if (option_mask32 & OPT_nofork) // -n
653         //if (option_mask32 & OPT_outfile) // -O
654         if (option_mask32 & OPT_loglevel) // -l
655                 G.logLevel = xatou_range(opt_l, 1, 8);
656         //if (option_mask32 & OPT_small) // -S
657 #if ENABLE_FEATURE_ROTATE_LOGFILE
658         if (option_mask32 & OPT_filesize) // -s
659                 G.logFileSize = xatou_range(opt_s, 0, INT_MAX/1024) * 1024;
660         if (option_mask32 & OPT_rotatecnt) // -b
661                 G.logFileRotate = xatou_range(opt_b, 0, 99);
662 #endif
663 #if ENABLE_FEATURE_IPC_SYSLOG
664         if (opt_C) // -Cn
665                 G.shm_size = xatoul_range(opt_C, 4, INT_MAX/1024) * 1024;
666 #endif
667
668         /* If they have not specified remote logging, then log locally */
669         if (ENABLE_FEATURE_REMOTE_LOG && !(option_mask32 & OPT_remotelog))
670                 option_mask32 |= OPT_locallog;
671
672         /* Store away localhost's name before the fork */
673         G.hostname = safe_gethostname();
674         *strchrnul(G.hostname, '.') = '\0';
675
676         if (!(option_mask32 & OPT_nofork)) {
677                 bb_daemonize_or_rexec(DAEMON_CHDIR_ROOT, argv);
678         }
679         umask(0);
680         write_pidfile("/var/run/syslogd.pid");
681         do_syslogd();
682         /* return EXIT_SUCCESS; */
683 }