1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61#ifndef _PATH_LOG
62#define _PATH_LOG "/dev/log"
63#endif
64
65#include <sys/un.h>
66#include <sys/uio.h>
67
68#if ENABLE_FEATURE_REMOTE_LOG
69#include <netinet/in.h>
70#endif
71
72#if ENABLE_FEATURE_IPC_SYSLOG
73#include <sys/ipc.h>
74#include <sys/sem.h>
75#include <sys/shm.h>
76#endif
77
78
79#define DEBUG 0
80
81
82
83
84#undef SYSLOGD_MARK
85
86
87#undef SYSLOGD_WRLOCK
88
89enum {
90 MAX_READ = CONFIG_FEATURE_SYSLOGD_READ_BUFFER_SIZE,
91 DNS_WAIT_SEC = 2 * 60,
92};
93
94
95struct shbuf_ds {
96 int32_t size;
97 int32_t tail;
98 char data[1];
99};
100
101#if ENABLE_FEATURE_REMOTE_LOG
102typedef struct {
103 int remoteFD;
104 unsigned last_dns_resolve;
105 len_and_sockaddr *remoteAddr;
106 const char *remoteHostname;
107} remoteHost_t;
108#endif
109
110typedef struct logFile_t {
111 const char *path;
112 int fd;
113 time_t last_log_time;
114#if ENABLE_FEATURE_ROTATE_LOGFILE
115 unsigned size;
116 uint8_t isRegular;
117#endif
118} logFile_t;
119
120#if ENABLE_FEATURE_SYSLOGD_CFG
121typedef struct logRule_t {
122 uint8_t enabled_facility_priomap[LOG_NFACILITIES];
123 struct logFile_t *file;
124 struct logRule_t *next;
125} logRule_t;
126#endif
127
128
129#define GLOBALS \
130 logFile_t logFile; \
131 \
132 \
133 \
134 int logLevel; \
135IF_FEATURE_ROTATE_LOGFILE( \
136 \
137 unsigned logFileSize; \
138 \
139 unsigned logFileRotate; \
140) \
141IF_FEATURE_IPC_SYSLOG( \
142 int shmid; \
143 int s_semid; \
144 int shm_size; \
145 struct sembuf SMwup[1]; \
146 struct sembuf SMwdn[3]; \
147) \
148IF_FEATURE_SYSLOGD_CFG( \
149 logRule_t *log_rules; \
150) \
151IF_FEATURE_KMSG_SYSLOG( \
152 int kmsgfd; \
153 int primask; \
154)
155
156struct init_globals {
157 GLOBALS
158};
159
160struct globals {
161 GLOBALS
162
163#if ENABLE_FEATURE_REMOTE_LOG
164 llist_t *remoteHosts;
165#endif
166#if ENABLE_FEATURE_IPC_SYSLOG
167 struct shbuf_ds *shbuf;
168#endif
169
170 char *hostname;
171
172
173 char recvbuf[MAX_READ * (1 + ENABLE_FEATURE_SYSLOGD_DUP)];
174
175
176 char parsebuf[MAX_READ*2];
177
178
179
180 char printbuf[MAX_READ*2 + 128];
181};
182
183static const struct init_globals init_data = {
184 .logFile = {
185 .path = "/var/log/messages",
186 .fd = -1,
187 },
188#ifdef SYSLOGD_MARK
189 .markInterval = 20 * 60,
190#endif
191 .logLevel = 8,
192#if ENABLE_FEATURE_ROTATE_LOGFILE
193 .logFileSize = 200 * 1024,
194 .logFileRotate = 1,
195#endif
196#if ENABLE_FEATURE_IPC_SYSLOG
197 .shmid = -1,
198 .s_semid = -1,
199 .shm_size = ((CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE)*1024),
200 .SMwup = { {1, -1, IPC_NOWAIT} },
201 .SMwdn = { {0, 0}, {1, 0}, {1, +1} },
202#endif
203};
204
205#define G (*ptr_to_globals)
206#define INIT_G() do { \
207 SET_PTR_TO_GLOBALS(memcpy(xzalloc(sizeof(G)), &init_data, sizeof(init_data))); \
208} while (0)
209
210
211
212enum {
213 OPTBIT_mark = 0,
214 OPTBIT_nofork,
215 OPTBIT_outfile,
216 OPTBIT_loglevel,
217 OPTBIT_small,
218 IF_FEATURE_ROTATE_LOGFILE(OPTBIT_filesize ,)
219 IF_FEATURE_ROTATE_LOGFILE(OPTBIT_rotatecnt ,)
220 IF_FEATURE_REMOTE_LOG( OPTBIT_remotelog ,)
221 IF_FEATURE_REMOTE_LOG( OPTBIT_locallog ,)
222 IF_FEATURE_IPC_SYSLOG( OPTBIT_circularlog,)
223 IF_FEATURE_SYSLOGD_DUP( OPTBIT_dup ,)
224 IF_FEATURE_SYSLOGD_CFG( OPTBIT_cfg ,)
225 IF_FEATURE_KMSG_SYSLOG( OPTBIT_kmsg ,)
226
227 OPT_mark = 1 << OPTBIT_mark ,
228 OPT_nofork = 1 << OPTBIT_nofork ,
229 OPT_outfile = 1 << OPTBIT_outfile ,
230 OPT_loglevel = 1 << OPTBIT_loglevel,
231 OPT_small = 1 << OPTBIT_small ,
232 OPT_filesize = IF_FEATURE_ROTATE_LOGFILE((1 << OPTBIT_filesize )) + 0,
233 OPT_rotatecnt = IF_FEATURE_ROTATE_LOGFILE((1 << OPTBIT_rotatecnt )) + 0,
234 OPT_remotelog = IF_FEATURE_REMOTE_LOG( (1 << OPTBIT_remotelog )) + 0,
235 OPT_locallog = IF_FEATURE_REMOTE_LOG( (1 << OPTBIT_locallog )) + 0,
236 OPT_circularlog = IF_FEATURE_IPC_SYSLOG( (1 << OPTBIT_circularlog)) + 0,
237 OPT_dup = IF_FEATURE_SYSLOGD_DUP( (1 << OPTBIT_dup )) + 0,
238 OPT_cfg = IF_FEATURE_SYSLOGD_CFG( (1 << OPTBIT_cfg )) + 0,
239 OPT_kmsg = IF_FEATURE_KMSG_SYSLOG( (1 << OPTBIT_kmsg )) + 0,
240
241};
242#define OPTION_STR "m:nO:l:S" \
243 IF_FEATURE_ROTATE_LOGFILE("s:" ) \
244 IF_FEATURE_ROTATE_LOGFILE("b:" ) \
245 IF_FEATURE_REMOTE_LOG( "R:" ) \
246 IF_FEATURE_REMOTE_LOG( "L" ) \
247 IF_FEATURE_IPC_SYSLOG( "C::") \
248 IF_FEATURE_SYSLOGD_DUP( "D" ) \
249 IF_FEATURE_SYSLOGD_CFG( "f:" ) \
250 IF_FEATURE_KMSG_SYSLOG( "K" )
251#define OPTION_DECL *opt_m, *opt_l \
252 IF_FEATURE_ROTATE_LOGFILE(,*opt_s) \
253 IF_FEATURE_ROTATE_LOGFILE(,*opt_b) \
254 IF_FEATURE_IPC_SYSLOG( ,*opt_C = NULL) \
255 IF_FEATURE_SYSLOGD_CFG( ,*opt_f = NULL)
256#define OPTION_PARAM &opt_m, &(G.logFile.path), &opt_l \
257 IF_FEATURE_ROTATE_LOGFILE(,&opt_s) \
258 IF_FEATURE_ROTATE_LOGFILE(,&opt_b) \
259 IF_FEATURE_REMOTE_LOG( ,&remoteAddrList) \
260 IF_FEATURE_IPC_SYSLOG( ,&opt_C) \
261 IF_FEATURE_SYSLOGD_CFG( ,&opt_f)
262
263
264#if ENABLE_FEATURE_SYSLOGD_CFG
265static const CODE* find_by_name(char *name, const CODE* c_set)
266{
267 for (; c_set->c_name; c_set++) {
268 if (strcmp(name, c_set->c_name) == 0)
269 return c_set;
270 }
271 return NULL;
272}
273#endif
274static const CODE* find_by_val(int val, const CODE* c_set)
275{
276 for (; c_set->c_name; c_set++) {
277 if (c_set->c_val == val)
278 return c_set;
279 }
280 return NULL;
281}
282
283#if ENABLE_FEATURE_SYSLOGD_CFG
284static void parse_syslogdcfg(const char *file)
285{
286 char *t;
287 logRule_t **pp_rule;
288
289
290
291 char *tok[3];
292 parser_t *parser;
293
294 parser = config_open2(file ? file : "/etc/syslog.conf",
295 file ? xfopen_for_read : fopen_for_read);
296 if (!parser)
297
298
299 return;
300
301
302 pp_rule = &G.log_rules;
303
304 while (config_read(parser, tok, 3, 2, "# \t", PARSE_NORMAL | PARSE_MIN_DIE)) {
305 char *cur_selector;
306 logRule_t *cur_rule;
307
308
309 if (tok[2])
310 goto cfgerr;
311
312 cur_rule = *pp_rule = xzalloc(sizeof(*cur_rule));
313
314 cur_selector = tok[0];
315
316 do {
317 const CODE *code;
318 char *next_selector;
319 uint8_t negated_prio;
320 uint8_t single_prio;
321 uint32_t facmap;
322 uint8_t primap;
323 unsigned i;
324
325 next_selector = strchr(cur_selector, ';');
326 if (next_selector)
327 *next_selector++ = '\0';
328
329 t = strchr(cur_selector, '.');
330 if (!t)
331 goto cfgerr;
332 *t++ = '\0';
333
334 negated_prio = 0;
335 single_prio = 0;
336 if (*t == '!') {
337 negated_prio = 1;
338 ++t;
339 }
340 if (*t == '=') {
341 single_prio = 1;
342 ++t;
343 }
344
345
346 if (*t == '*')
347 primap = 0xff;
348 else {
349 uint8_t priority;
350 code = find_by_name(t, prioritynames);
351 if (!code)
352 goto cfgerr;
353 primap = 0;
354 priority = code->c_val;
355 if (priority == INTERNAL_NOPRI) {
356
357 negated_prio = 1;
358 } else {
359 priority = 1 << priority;
360 do {
361 primap |= priority;
362 if (single_prio)
363 break;
364 priority >>= 1;
365 } while (priority);
366 if (negated_prio)
367 primap = ~primap;
368 }
369 }
370
371
372 if (*cur_selector == '*')
373 facmap = (1<<LOG_NFACILITIES) - 1;
374 else {
375 char *next_facility;
376 facmap = 0;
377 t = cur_selector;
378
379 do {
380 next_facility = strchr(t, ',');
381 if (next_facility)
382 *next_facility++ = '\0';
383 code = find_by_name(t, facilitynames);
384 if (!code)
385 goto cfgerr;
386
387 if (code->c_val != INTERNAL_MARK)
388 facmap |= 1<<(LOG_FAC(code->c_val));
389 t = next_facility;
390 } while (t);
391 }
392
393
394 for (i = 0; i < LOG_NFACILITIES; ++i) {
395 if (!(facmap & (1<<i)))
396 continue;
397 if (negated_prio)
398 cur_rule->enabled_facility_priomap[i] &= primap;
399 else
400 cur_rule->enabled_facility_priomap[i] |= primap;
401 }
402
403 cur_selector = next_selector;
404 } while (cur_selector);
405
406
407
408
409 if (strcmp(G.logFile.path, tok[1]) == 0) {
410 cur_rule->file = &G.logFile;
411 goto found;
412 }
413
414
415
416
417 for (cur_rule = G.log_rules; cur_rule != *pp_rule; cur_rule = cur_rule->next) {
418 if (strcmp(cur_rule->file->path, tok[1]) == 0) {
419
420 (*pp_rule)->file = cur_rule->file;
421 cur_rule = *pp_rule;
422 goto found;
423 }
424 }
425 cur_rule->file = xzalloc(sizeof(*cur_rule->file));
426 cur_rule->file->fd = -1;
427 cur_rule->file->path = xstrdup(tok[1]);
428 found:
429 pp_rule = &cur_rule->next;
430 }
431 config_close(parser);
432 return;
433
434 cfgerr:
435 bb_error_msg_and_die("error in '%s' at line %d",
436 file ? file : "/etc/syslog.conf",
437 parser->lineno);
438}
439#endif
440
441
442#if ENABLE_FEATURE_IPC_SYSLOG
443
444#if CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE < 4
445#error Sorry, you must set the syslogd buffer size to at least 4KB.
446#error Please check CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE
447#endif
448
449
450enum { KEY_ID = 0x414e4547 };
451
452static void ipcsyslog_cleanup(void)
453{
454 if (G.shmid != -1) {
455 shmdt(G.shbuf);
456 }
457 if (G.shmid != -1) {
458 shmctl(G.shmid, IPC_RMID, NULL);
459 }
460 if (G.s_semid != -1) {
461 semctl(G.s_semid, 0, IPC_RMID, 0);
462 }
463}
464
465static void ipcsyslog_init(void)
466{
467 if (DEBUG)
468 printf("shmget(%x, %d,...)\n", (int)KEY_ID, G.shm_size);
469
470 G.shmid = shmget(KEY_ID, G.shm_size, IPC_CREAT | 0644);
471 if (G.shmid == -1) {
472 bb_perror_msg_and_die("shmget");
473 }
474
475 G.shbuf = shmat(G.shmid, NULL, 0);
476 if (G.shbuf == (void*) -1L) {
477 bb_perror_msg_and_die("shmat");
478 }
479
480 memset(G.shbuf, 0, G.shm_size);
481 G.shbuf->size = G.shm_size - offsetof(struct shbuf_ds, data) - 1;
482
483
484
485 G.s_semid = semget(KEY_ID, 2, IPC_CREAT | IPC_EXCL | 1023);
486 if (G.s_semid == -1) {
487 if (errno == EEXIST) {
488 G.s_semid = semget(KEY_ID, 2, 0);
489 if (G.s_semid != -1)
490 return;
491 }
492 bb_perror_msg_and_die("semget");
493 }
494}
495
496
497static void log_to_shmem(const char *msg)
498{
499 int old_tail, new_tail;
500 int len;
501
502 if (semop(G.s_semid, G.SMwdn, 3) == -1) {
503 bb_perror_msg_and_die("SMwdn");
504 }
505
506
507
508
509
510
511
512 len = strlen(msg) + 1;
513 again:
514 old_tail = G.shbuf->tail;
515 new_tail = old_tail + len;
516 if (new_tail < G.shbuf->size) {
517
518 memcpy(G.shbuf->data + old_tail, msg, len);
519 G.shbuf->tail = new_tail;
520 } else {
521
522 int k = G.shbuf->size - old_tail;
523
524 memcpy(G.shbuf->data + old_tail, msg, k);
525 msg += k;
526 len -= k;
527 G.shbuf->tail = 0;
528 goto again;
529 }
530 if (semop(G.s_semid, G.SMwup, 1) == -1) {
531 bb_perror_msg_and_die("SMwup");
532 }
533 if (DEBUG)
534 printf("tail:%d\n", G.shbuf->tail);
535}
536#else
537static void ipcsyslog_cleanup(void) {}
538static void ipcsyslog_init(void) {}
539void log_to_shmem(const char *msg);
540#endif
541
542#if ENABLE_FEATURE_KMSG_SYSLOG
543static void kmsg_init(void)
544{
545 G.kmsgfd = xopen("/dev/kmsg", O_WRONLY);
546
547
548
549
550
551 if (get_linux_version_code() < KERNEL_VERSION(3,5,0))
552 G.primask = LOG_PRIMASK;
553 else
554 G.primask = -1;
555}
556
557static void kmsg_cleanup(void)
558{
559 if (ENABLE_FEATURE_CLEAN_UP)
560 close(G.kmsgfd);
561}
562
563
564static void log_to_kmsg(int pri, const char *msg)
565{
566
567
568
569
570 pri &= G.primask;
571
572 full_write(G.kmsgfd, G.printbuf, sprintf(G.printbuf, "<%d>%s\n", pri, msg));
573}
574#else
575static void kmsg_init(void) {}
576static void kmsg_cleanup(void) {}
577static void log_to_kmsg(int pri UNUSED_PARAM, const char *msg UNUSED_PARAM) {}
578#endif
579
580
581static void log_locally(time_t now, char *msg, logFile_t *log_file)
582{
583#ifdef SYSLOGD_WRLOCK
584 struct flock fl;
585#endif
586 int len = strlen(msg);
587
588
589
590 if (log_file->fd > 1) {
591
592
593
594
595
596
597 if (!now)
598 now = time(NULL);
599 if (log_file->last_log_time != now) {
600 log_file->last_log_time = now;
601 close(log_file->fd);
602 goto reopen;
603 }
604 }
605 else if (log_file->fd == 1) {
606
607 }
608 else {
609 if (LONE_DASH(log_file->path)) {
610 log_file->fd = 1;
611
612 } else {
613 reopen:
614 log_file->fd = open(log_file->path, O_WRONLY | O_CREAT
615 | O_NOCTTY | O_APPEND | O_NONBLOCK,
616 0666);
617 if (log_file->fd < 0) {
618
619 int fd = device_open(DEV_CONSOLE, O_WRONLY | O_NOCTTY | O_NONBLOCK);
620 if (fd < 0)
621 fd = 2;
622 full_write(fd, msg, len);
623 if (fd != 2)
624 close(fd);
625 return;
626 }
627#if ENABLE_FEATURE_ROTATE_LOGFILE
628 {
629 struct stat statf;
630 log_file->isRegular = (fstat(log_file->fd, &statf) == 0 && S_ISREG(statf.st_mode));
631
632 log_file->size = statf.st_size;
633 }
634#endif
635 }
636 }
637
638#ifdef SYSLOGD_WRLOCK
639 fl.l_whence = SEEK_SET;
640 fl.l_start = 0;
641 fl.l_len = 1;
642 fl.l_type = F_WRLCK;
643 fcntl(log_file->fd, F_SETLKW, &fl);
644#endif
645
646#if ENABLE_FEATURE_ROTATE_LOGFILE
647 if (G.logFileSize && log_file->isRegular && log_file->size > G.logFileSize) {
648 if (G.logFileRotate) {
649 int i = strlen(log_file->path) + 3 + 1;
650 char oldFile[i];
651 char newFile[i];
652 i = G.logFileRotate - 1;
653
654 while (1) {
655 sprintf(newFile, "%s.%d", log_file->path, i);
656 if (i == 0) break;
657 sprintf(oldFile, "%s.%d", log_file->path, --i);
658
659 rename(oldFile, newFile);
660 }
661
662 rename(log_file->path, newFile);
663 }
664
665
666
667
668
669
670
671
672
673
674 unlink(log_file->path);
675#ifdef SYSLOGD_WRLOCK
676 fl.l_type = F_UNLCK;
677 fcntl(log_file->fd, F_SETLKW, &fl);
678#endif
679 close(log_file->fd);
680 goto reopen;
681 }
682
683 len = full_write(log_file->fd, msg, len);
684 if (len > 0)
685 log_file->size += len;
686#else
687 full_write(log_file->fd, msg, len);
688#endif
689
690#ifdef SYSLOGD_WRLOCK
691 fl.l_type = F_UNLCK;
692 fcntl(log_file->fd, F_SETLKW, &fl);
693#endif
694}
695
696static void parse_fac_prio_20(int pri, char *res20)
697{
698 const CODE *c_pri, *c_fac;
699
700 c_fac = find_by_val(LOG_FAC(pri) << 3, facilitynames);
701 if (c_fac) {
702 c_pri = find_by_val(LOG_PRI(pri), prioritynames);
703 if (c_pri) {
704 snprintf(res20, 20, "%s.%s", c_fac->c_name, c_pri->c_name);
705 return;
706 }
707 }
708 snprintf(res20, 20, "<%d>", pri);
709}
710
711
712
713
714static void timestamp_and_log(int pri, char *msg, int len)
715{
716 char *timestamp;
717 time_t now;
718
719
720
721 if (len < 16 || msg[3] != ' ' || msg[6] != ' '
722 || msg[9] != ':' || msg[12] != ':' || msg[15] != ' '
723 ) {
724 time(&now);
725 timestamp = ctime(&now) + 4;
726 } else {
727 now = 0;
728 timestamp = msg;
729 msg += 16;
730 }
731 timestamp[15] = '\0';
732
733 if (option_mask32 & OPT_kmsg) {
734 log_to_kmsg(pri, msg);
735 return;
736 }
737
738 if (option_mask32 & OPT_small)
739 sprintf(G.printbuf, "%s %s\n", timestamp, msg);
740 else {
741 char res[20];
742 parse_fac_prio_20(pri, res);
743 sprintf(G.printbuf, "%s %.64s %s %s\n", timestamp, G.hostname, res, msg);
744 }
745
746
747#if ENABLE_FEATURE_SYSLOGD_CFG
748 {
749 bool match = 0;
750 logRule_t *rule;
751 uint8_t facility = LOG_FAC(pri);
752 uint8_t prio_bit = 1 << LOG_PRI(pri);
753
754 for (rule = G.log_rules; rule; rule = rule->next) {
755 if (rule->enabled_facility_priomap[facility] & prio_bit) {
756 log_locally(now, G.printbuf, rule->file);
757 match = 1;
758 }
759 }
760 if (match)
761 return;
762 }
763#endif
764 if (LOG_PRI(pri) < G.logLevel) {
765#if ENABLE_FEATURE_IPC_SYSLOG
766 if ((option_mask32 & OPT_circularlog) && G.shbuf) {
767 log_to_shmem(G.printbuf);
768 return;
769 }
770#endif
771 log_locally(now, G.printbuf, &G.logFile);
772 }
773}
774
775static void timestamp_and_log_internal(const char *msg)
776{
777
778 if (ENABLE_FEATURE_REMOTE_LOG && !(option_mask32 & OPT_locallog))
779 return;
780 timestamp_and_log(LOG_SYSLOG | LOG_INFO, (char*)msg, 0);
781}
782
783
784
785
786static void split_escape_and_log(char *tmpbuf, int len)
787{
788 char *p = tmpbuf;
789
790 tmpbuf += len;
791 while (p < tmpbuf) {
792 char c;
793 char *q = G.parsebuf;
794 int pri = (LOG_USER | LOG_NOTICE);
795
796 if (*p == '<') {
797
798 pri = bb_strtou(p + 1, &p, 10);
799 if (*p == '>')
800 p++;
801 if (pri & ~(LOG_FACMASK | LOG_PRIMASK))
802 pri = (LOG_USER | LOG_NOTICE);
803 }
804
805 while ((c = *p++)) {
806 if (c == '\n')
807 c = ' ';
808 if (!(c & ~0x1f) && c != '\t') {
809 *q++ = '^';
810 c += '@';
811 }
812 *q++ = c;
813 }
814 *q = '\0';
815
816
817 timestamp_and_log(pri, G.parsebuf, q - G.parsebuf);
818 }
819}
820
821#ifdef SYSLOGD_MARK
822static void do_mark(int sig)
823{
824 if (G.markInterval) {
825 timestamp_and_log_internal("-- MARK --");
826 alarm(G.markInterval);
827 }
828}
829#endif
830
831
832
833static NOINLINE int create_socket(void)
834{
835 struct sockaddr_un sunx;
836 int sock_fd;
837 char *dev_log_name;
838
839#if ENABLE_FEATURE_SYSTEMD
840 if (sd_listen_fds() == 1)
841 return SD_LISTEN_FDS_START;
842#endif
843
844 memset(&sunx, 0, sizeof(sunx));
845 sunx.sun_family = AF_UNIX;
846
847
848
849 strcpy(sunx.sun_path, _PATH_LOG);
850 dev_log_name = xmalloc_follow_symlinks(_PATH_LOG);
851 if (dev_log_name) {
852 safe_strncpy(sunx.sun_path, dev_log_name, sizeof(sunx.sun_path));
853 free(dev_log_name);
854 }
855 unlink(sunx.sun_path);
856
857 sock_fd = xsocket(AF_UNIX, SOCK_DGRAM, 0);
858 xbind(sock_fd, (struct sockaddr *) &sunx, sizeof(sunx));
859 chmod(_PATH_LOG, 0666);
860
861 return sock_fd;
862}
863
864#if ENABLE_FEATURE_REMOTE_LOG
865static int try_to_resolve_remote(remoteHost_t *rh)
866{
867 if (!rh->remoteAddr) {
868 unsigned now = monotonic_sec();
869
870
871 if ((now - rh->last_dns_resolve) < DNS_WAIT_SEC)
872 return -1;
873 rh->last_dns_resolve = now;
874 rh->remoteAddr = host2sockaddr(rh->remoteHostname, 514);
875 if (!rh->remoteAddr)
876 return -1;
877 }
878 return xsocket(rh->remoteAddr->u.sa.sa_family, SOCK_DGRAM, 0);
879}
880#endif
881
882static void do_syslogd(void) NORETURN;
883static void do_syslogd(void)
884{
885#if ENABLE_FEATURE_REMOTE_LOG
886 llist_t *item;
887#endif
888#if ENABLE_FEATURE_SYSLOGD_DUP
889 int last_sz = -1;
890 char *last_buf;
891 char *recvbuf = G.recvbuf;
892#else
893#define recvbuf (G.recvbuf)
894#endif
895
896
897 signal_no_SA_RESTART_empty_mask(SIGTERM, record_signo);
898 signal_no_SA_RESTART_empty_mask(SIGINT, record_signo);
899
900 signal(SIGHUP, SIG_IGN);
901#ifdef SYSLOGD_MARK
902 signal(SIGALRM, do_mark);
903 alarm(G.markInterval);
904#endif
905 xmove_fd(create_socket(), STDIN_FILENO);
906
907 if (option_mask32 & OPT_circularlog)
908 ipcsyslog_init();
909
910 if (option_mask32 & OPT_kmsg)
911 kmsg_init();
912
913 timestamp_and_log_internal("syslogd started: BusyBox v" BB_VER);
914
915 while (!bb_got_signal) {
916 ssize_t sz;
917
918#if ENABLE_FEATURE_SYSLOGD_DUP
919 last_buf = recvbuf;
920 if (recvbuf == G.recvbuf)
921 recvbuf = G.recvbuf + MAX_READ;
922 else
923 recvbuf = G.recvbuf;
924#endif
925 read_again:
926 sz = read(STDIN_FILENO, recvbuf, MAX_READ - 1);
927 if (sz < 0) {
928 if (!bb_got_signal)
929 bb_perror_msg("read from %s", _PATH_LOG);
930 break;
931 }
932
933
934 while (1) {
935 if (sz == 0)
936 goto read_again;
937
938
939
940
941
942
943
944 if (recvbuf[sz-1] != '\0' && recvbuf[sz-1] != '\n')
945 break;
946 sz--;
947 }
948#if ENABLE_FEATURE_SYSLOGD_DUP
949 if ((option_mask32 & OPT_dup) && (sz == last_sz))
950 if (memcmp(last_buf, recvbuf, sz) == 0)
951 continue;
952 last_sz = sz;
953#endif
954#if ENABLE_FEATURE_REMOTE_LOG
955
956
957 recvbuf[sz] = '\n';
958
959
960
961 for (item = G.remoteHosts; item != NULL; item = item->link) {
962 remoteHost_t *rh = (remoteHost_t *)item->data;
963
964 if (rh->remoteFD == -1) {
965 rh->remoteFD = try_to_resolve_remote(rh);
966 if (rh->remoteFD == -1)
967 continue;
968 }
969
970
971
972
973
974 if (sendto(rh->remoteFD, recvbuf, sz+1,
975 MSG_DONTWAIT | MSG_NOSIGNAL,
976 &(rh->remoteAddr->u.sa), rh->remoteAddr->len) == -1
977 ) {
978 switch (errno) {
979 case ECONNRESET:
980 case ENOTCONN:
981 case EPIPE:
982 close(rh->remoteFD);
983 rh->remoteFD = -1;
984 free(rh->remoteAddr);
985 rh->remoteAddr = NULL;
986 }
987 }
988 }
989#endif
990 if (!ENABLE_FEATURE_REMOTE_LOG || (option_mask32 & OPT_locallog)) {
991 recvbuf[sz] = '\0';
992 split_escape_and_log(recvbuf, sz);
993 }
994 }
995
996 timestamp_and_log_internal("syslogd exiting");
997 remove_pidfile(CONFIG_PID_FILE_PATH "/syslogd.pid");
998 ipcsyslog_cleanup();
999 if (option_mask32 & OPT_kmsg)
1000 kmsg_cleanup();
1001 kill_myself_with_sig(bb_got_signal);
1002#undef recvbuf
1003}
1004
1005int syslogd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
1006int syslogd_main(int argc UNUSED_PARAM, char **argv)
1007{
1008 int opts;
1009 char OPTION_DECL;
1010#if ENABLE_FEATURE_REMOTE_LOG
1011 llist_t *remoteAddrList = NULL;
1012#endif
1013
1014 INIT_G();
1015
1016
1017 opt_complementary = "=0" IF_FEATURE_REMOTE_LOG(":R::");
1018 opts = getopt32(argv, OPTION_STR, OPTION_PARAM);
1019#if ENABLE_FEATURE_REMOTE_LOG
1020 while (remoteAddrList) {
1021 remoteHost_t *rh = xzalloc(sizeof(*rh));
1022 rh->remoteHostname = llist_pop(&remoteAddrList);
1023 rh->remoteFD = -1;
1024 rh->last_dns_resolve = monotonic_sec() - DNS_WAIT_SEC - 1;
1025 llist_add_to(&G.remoteHosts, rh);
1026 }
1027#endif
1028
1029#ifdef SYSLOGD_MARK
1030 if (opts & OPT_mark)
1031 G.markInterval = xatou_range(opt_m, 0, INT_MAX/60) * 60;
1032#endif
1033
1034
1035 if (opts & OPT_loglevel)
1036 G.logLevel = xatou_range(opt_l, 1, 8);
1037
1038#if ENABLE_FEATURE_ROTATE_LOGFILE
1039 if (opts & OPT_filesize)
1040 G.logFileSize = xatou_range(opt_s, 0, INT_MAX/1024) * 1024;
1041 if (opts & OPT_rotatecnt)
1042 G.logFileRotate = xatou_range(opt_b, 0, 99);
1043#endif
1044#if ENABLE_FEATURE_IPC_SYSLOG
1045 if (opt_C)
1046 G.shm_size = xatoul_range(opt_C, 4, INT_MAX/1024) * 1024;
1047#endif
1048
1049 if (ENABLE_FEATURE_REMOTE_LOG && !(opts & OPT_remotelog))
1050 option_mask32 |= OPT_locallog;
1051#if ENABLE_FEATURE_SYSLOGD_CFG
1052 parse_syslogdcfg(opt_f);
1053#endif
1054
1055
1056 G.hostname = safe_gethostname();
1057 *strchrnul(G.hostname, '.') = '\0';
1058
1059 if (!(opts & OPT_nofork)) {
1060 bb_daemonize_or_rexec(DAEMON_CHDIR_ROOT, argv);
1061 }
1062
1063
1064 write_pidfile(CONFIG_PID_FILE_PATH "/syslogd.pid");
1065
1066 do_syslogd();
1067
1068}
1069
1070
1071#undef DEBUG
1072#undef SYSLOGD_MARK
1073#undef SYSLOGD_WRLOCK
1074#undef G
1075#undef GLOBALS
1076#undef INIT_G
1077#undef OPTION_STR
1078#undef OPTION_DECL
1079#undef OPTION_PARAM
1080