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