blob: ab50f4a28e701daba3e85aed3165781ca4d66b19 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersen3843e961999-11-25 07:30:46 +00002/*
3 * Mini syslogd implementation for busybox
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersen3843e961999-11-25 07:30:46 +00006 *
Erik Andersenf13df372000-04-18 23:51:51 +00007 * Copyright (C) 2000 by Karl M. Hegbloom <karlheg@debian.org>
8 *
Glenn L McGrath6ed77592002-12-12 10:54:48 +00009 * "circular buffer" Copyright (C) 2001 by Gennady Feldman <gfeldman@gena01.com>
Mark Whitley6317c4b2001-03-12 22:51:50 +000010 *
Glenn L McGrath6ed77592002-12-12 10:54:48 +000011 * Maintainer: Gennady Feldman <gfeldman@gena01.com> as of Mar 12, 2001
Mark Whitley6bff9cc2001-03-12 23:41:34 +000012 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020013 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersen3843e961999-11-25 07:30:46 +000014 */
Denys Vlasenkod34f3002015-10-18 18:42:03 +020015//config:config SYSLOGD
Denys Vlasenkob097a842018-12-28 03:20:17 +010016//config: bool "syslogd (13 kb)"
Denys Vlasenkod34f3002015-10-18 18:42:03 +020017//config: default y
18//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020019//config: The syslogd utility is used to record logs of all the
20//config: significant events that occur on a system. Every
21//config: message that is logged records the date and time of the
22//config: event, and will generally also record the name of the
23//config: application that generated the message. When used in
24//config: conjunction with klogd, messages from the Linux kernel
25//config: can also be recorded. This is terribly useful,
26//config: especially for finding what happened when something goes
27//config: wrong. And something almost always will go wrong if
28//config: you wait long enough....
Denys Vlasenkod34f3002015-10-18 18:42:03 +020029//config:
30//config:config FEATURE_ROTATE_LOGFILE
31//config: bool "Rotate message files"
32//config: default y
33//config: depends on SYSLOGD
34//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020035//config: This enables syslogd to rotate the message files
36//config: on his own. No need to use an external rotate script.
Denys Vlasenkod34f3002015-10-18 18:42:03 +020037//config:
38//config:config FEATURE_REMOTE_LOG
39//config: bool "Remote Log support"
40//config: default y
41//config: depends on SYSLOGD
42//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020043//config: When you enable this feature, the syslogd utility can
44//config: be used to send system log messages to another system
45//config: connected via a network. This allows the remote
46//config: machine to log all the system messages, which can be
47//config: terribly useful for reducing the number of serial
48//config: cables you use. It can also be a very good security
49//config: measure to prevent system logs from being tampered with
50//config: by an intruder.
Denys Vlasenkod34f3002015-10-18 18:42:03 +020051//config:
52//config:config FEATURE_SYSLOGD_DUP
53//config: bool "Support -D (drop dups) option"
54//config: default y
55//config: depends on SYSLOGD
56//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020057//config: Option -D instructs syslogd to drop consecutive messages
58//config: which are totally the same.
Denys Vlasenkod34f3002015-10-18 18:42:03 +020059//config:
60//config:config FEATURE_SYSLOGD_CFG
61//config: bool "Support syslog.conf"
62//config: default y
63//config: depends on SYSLOGD
64//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020065//config: Supports restricted syslogd config. See docs/syslog.conf.txt
Denys Vlasenkod34f3002015-10-18 18:42:03 +020066//config:
Peter Korsgaardeb7f9ac2020-01-27 15:36:41 +010067//config:config FEATURE_SYSLOGD_PRECISE_TIMESTAMPS
68//config: bool "Include milliseconds in timestamps"
69//config: default n
70//config: depends on SYSLOGD
71//config: help
72//config: Includes milliseconds (HH:MM:SS.mmm) in timestamp when
73//config: timestamps are added.
74//config:
Denys Vlasenkod34f3002015-10-18 18:42:03 +020075//config:config FEATURE_SYSLOGD_READ_BUFFER_SIZE
76//config: int "Read buffer size in bytes"
77//config: default 256
78//config: range 256 20000
79//config: depends on SYSLOGD
80//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020081//config: This option sets the size of the syslog read buffer.
82//config: Actual memory usage increases around five times the
83//config: change done here.
Denys Vlasenkod34f3002015-10-18 18:42:03 +020084//config:
85//config:config FEATURE_IPC_SYSLOG
86//config: bool "Circular Buffer support"
87//config: default y
88//config: depends on SYSLOGD
89//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020090//config: When you enable this feature, the syslogd utility will
91//config: use a circular buffer to record system log messages.
92//config: When the buffer is filled it will continue to overwrite
93//config: the oldest messages. This can be very useful for
94//config: systems with little or no permanent storage, since
95//config: otherwise system logs can eventually fill up your
96//config: entire filesystem, which may cause your system to
97//config: break badly.
Denys Vlasenkod34f3002015-10-18 18:42:03 +020098//config:
99//config:config FEATURE_IPC_SYSLOG_BUFFER_SIZE
100//config: int "Circular buffer size in Kbytes (minimum 4KB)"
101//config: default 16
102//config: range 4 2147483647
103//config: depends on FEATURE_IPC_SYSLOG
104//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200105//config: This option sets the size of the circular buffer
106//config: used to record system log messages.
Denys Vlasenkod34f3002015-10-18 18:42:03 +0200107//config:
108//config:config FEATURE_KMSG_SYSLOG
109//config: bool "Linux kernel printk buffer support"
110//config: default y
111//config: depends on SYSLOGD
112//config: select PLATFORM_LINUX
113//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200114//config: When you enable this feature, the syslogd utility will
115//config: write system log message to the Linux kernel's printk buffer.
116//config: This can be used as a smaller alternative to the syslogd IPC
117//config: support, as klogd and logread aren't needed.
Denys Vlasenkod34f3002015-10-18 18:42:03 +0200118//config:
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200119//config: NOTICE: Syslog facilities in log entries needs kernel 3.5+.
Denys Vlasenkod34f3002015-10-18 18:42:03 +0200120
121//applet:IF_SYSLOGD(APPLET(syslogd, BB_DIR_SBIN, BB_SUID_DROP))
122
123//kbuild:lib-$(CONFIG_SYSLOGD) += syslogd_and_logger.o
Eric Andersenb99df0f1999-11-24 09:04:33 +0000124
Pere Orga5bc8c002011-04-11 03:29:49 +0200125//usage:#define syslogd_trivial_usage
126//usage: "[OPTIONS]"
127//usage:#define syslogd_full_usage "\n\n"
Denys Vlasenkoaeab42e2011-05-25 11:58:56 +0200128//usage: "System logging utility\n"
129//usage: IF_NOT_FEATURE_SYSLOGD_CFG(
130//usage: "(this version of syslogd ignores /etc/syslog.conf)\n"
131//usage: )
Pere Orga5bc8c002011-04-11 03:29:49 +0200132//usage: "\n -n Run in foreground"
Pere Orga5bc8c002011-04-11 03:29:49 +0200133//usage: IF_FEATURE_REMOTE_LOG(
Denys Vlasenko257a7752013-03-15 01:50:35 +0100134//usage: "\n -R HOST[:PORT] Log to HOST:PORT (default PORT:514)"
Denys Vlasenkoaeab42e2011-05-25 11:58:56 +0200135//usage: "\n -L Log locally and via network (default is network only if -R)"
136//usage: )
Pere Orga5bc8c002011-04-11 03:29:49 +0200137//usage: IF_FEATURE_IPC_SYSLOG(
Pere Orga5bc8c002011-04-11 03:29:49 +0200138/* NB: -Csize shouldn't have space (because size is optional) */
Denys Vlasenkoaeab42e2011-05-25 11:58:56 +0200139//usage: "\n -C[size_kb] Log to shared mem buffer (use logread to read it)"
140//usage: )
Denys Vlasenkoa28c1b22014-07-02 15:21:30 +0200141//usage: IF_FEATURE_KMSG_SYSLOG(
142//usage: "\n -K Log to kernel printk buffer (use dmesg to read it)"
143//usage: )
Mike Frysingerea1b4442016-04-04 01:28:32 -0400144//usage: "\n -O FILE Log to FILE (default: /var/log/messages, stdout if -)"
Denys Vlasenkoa28c1b22014-07-02 15:21:30 +0200145//usage: IF_FEATURE_ROTATE_LOGFILE(
Denys Vlasenkof3d705f2017-01-21 03:46:35 +0100146//usage: "\n -s SIZE Max size (KB) before rotation (default 200KB, 0=off)"
147//usage: "\n -b N N rotated logs to keep (default 1, max 99, 0=purge)"
Denys Vlasenkoa28c1b22014-07-02 15:21:30 +0200148//usage: )
149//usage: "\n -l N Log only messages more urgent than prio N (1-8)"
150//usage: "\n -S Smaller output"
Peter Korsgaard9d539f92018-08-09 11:25:22 +0200151//usage: "\n -t Strip client-generated timestamps"
Denys Vlasenkoa28c1b22014-07-02 15:21:30 +0200152//usage: IF_FEATURE_SYSLOGD_DUP(
153//usage: "\n -D Drop duplicates"
154//usage: )
Denys Vlasenkoaeab42e2011-05-25 11:58:56 +0200155//usage: IF_FEATURE_SYSLOGD_CFG(
156//usage: "\n -f FILE Use FILE as config (default:/etc/syslog.conf)"
157//usage: )
Denys Vlasenkof3d705f2017-01-21 03:46:35 +0100158/* //usage: "\n -m MIN Minutes between MARK lines (default 20, 0=off)" */
Pere Orga5bc8c002011-04-11 03:29:49 +0200159//usage:
160//usage:#define syslogd_example_usage
161//usage: "$ syslogd -R masterlog:514\n"
162//usage: "$ syslogd -R 192.168.1.1:601\n"
163
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +0000164/*
165 * Done in syslogd_and_logger.c:
Denis Vlasenkob6adbf12007-05-26 19:00:18 +0000166#include "libbb.h"
Bernhard Reutner-Fischerf4701962008-01-27 12:50:12 +0000167#define SYSLOG_NAMES
168#define SYSLOG_NAMES_CONST
169#include <syslog.h>
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +0000170*/
Cédric Cabessaadc30b42013-08-05 02:09:16 +0200171#ifndef _PATH_LOG
172#define _PATH_LOG "/dev/log"
173#endif
Bernhard Reutner-Fischerf4701962008-01-27 12:50:12 +0000174
Erik Andersen983b51b2000-04-04 18:14:25 +0000175#include <sys/un.h>
Eric Andersenced2cef2000-07-20 23:41:24 +0000176#include <sys/uio.h>
Eric Andersen3843e961999-11-25 07:30:46 +0000177
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000178#if ENABLE_FEATURE_REMOTE_LOG
179#include <netinet/in.h>
Denis Vlasenko4998c812007-02-14 20:51:46 +0000180#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000181
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000182#if ENABLE_FEATURE_IPC_SYSLOG
183#include <sys/ipc.h>
184#include <sys/sem.h>
185#include <sys/shm.h>
186#endif
Denis Vlasenko1decd0e2006-09-30 19:17:40 +0000187
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000188
189#define DEBUG 0
190
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000191/* MARK code is not very useful, is bloat, and broken:
192 * can deadlock if alarmed to make MARK while writing to IPC buffer
193 * (semaphores are down but do_mark routine tries to down them again) */
194#undef SYSLOGD_MARK
195
Denis Vlasenko0d948202008-12-09 22:53:31 +0000196/* Write locking does not seem to be useful either */
197#undef SYSLOGD_WRLOCK
198
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000199enum {
Janne Kiviluotoc897dfe2010-03-31 15:58:58 +0200200 MAX_READ = CONFIG_FEATURE_SYSLOGD_READ_BUFFER_SIZE,
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000201 DNS_WAIT_SEC = 2 * 60,
202};
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000203
204/* Semaphore operation structures */
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000205struct shbuf_ds {
Denis Vlasenko5f1b1492007-08-12 21:33:06 +0000206 int32_t size; /* size of data - 1 */
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000207 int32_t tail; /* end of message list */
208 char data[1]; /* data/messages */
209};
210
Thomas Geuligd2f77792010-02-28 13:01:59 +0100211#if ENABLE_FEATURE_REMOTE_LOG
212typedef struct {
213 int remoteFD;
214 unsigned last_dns_resolve;
215 len_and_sockaddr *remoteAddr;
216 const char *remoteHostname;
217} remoteHost_t;
218#endif
219
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200220typedef struct logFile_t {
221 const char *path;
222 int fd;
Joshua Judson Rosenae57fca2014-07-03 14:51:47 +0200223 time_t last_log_time;
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200224#if ENABLE_FEATURE_ROTATE_LOGFILE
225 unsigned size;
226 uint8_t isRegular;
227#endif
228} logFile_t;
229
230#if ENABLE_FEATURE_SYSLOGD_CFG
231typedef struct logRule_t {
232 uint8_t enabled_facility_priomap[LOG_NFACILITIES];
233 struct logFile_t *file;
234 struct logRule_t *next;
235} logRule_t;
236#endif
237
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000238/* Allows us to have smaller initializer. Ugly. */
239#define GLOBALS \
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200240 logFile_t logFile; \
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000241 /* interval between marks in seconds */ \
242 /*int markInterval;*/ \
243 /* level of messages to be logged */ \
244 int logLevel; \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000245IF_FEATURE_ROTATE_LOGFILE( \
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000246 /* max size of file before rotation */ \
247 unsigned logFileSize; \
248 /* number of rotated message files */ \
249 unsigned logFileRotate; \
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000250) \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000251IF_FEATURE_IPC_SYSLOG( \
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000252 int shmid; /* ipc shared memory id */ \
253 int s_semid; /* ipc semaphore id */ \
254 int shm_size; \
255 struct sembuf SMwup[1]; \
256 struct sembuf SMwdn[3]; \
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200257) \
258IF_FEATURE_SYSLOGD_CFG( \
259 logRule_t *log_rules; \
Peter Korsgaardcd776cf2013-01-06 00:07:19 +0100260) \
261IF_FEATURE_KMSG_SYSLOG( \
262 int kmsgfd; \
263 int primask; \
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000264)
265
266struct init_globals {
267 GLOBALS
268};
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000269
270struct globals {
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000271 GLOBALS
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000272
273#if ENABLE_FEATURE_REMOTE_LOG
Thomas Geuligd2f77792010-02-28 13:01:59 +0100274 llist_t *remoteHosts;
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000275#endif
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000276#if ENABLE_FEATURE_IPC_SYSLOG
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000277 struct shbuf_ds *shbuf;
278#endif
Denis Vlasenko6f1713f2008-02-25 23:23:58 +0000279 /* localhost's name. We print only first 64 chars */
280 char *hostname;
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000281
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000282 /* We recv into recvbuf... */
Denis Vlasenkobe048f22008-02-26 20:13:52 +0000283 char recvbuf[MAX_READ * (1 + ENABLE_FEATURE_SYSLOGD_DUP)];
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000284 /* ...then copy to parsebuf, escaping control chars */
285 /* (can grow x2 max) */
286 char parsebuf[MAX_READ*2];
Peter Korsgaardeb7f9ac2020-01-27 15:36:41 +0100287 /* ...then sprintf into printbuf, adding timestamp (15 or 19 chars),
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000288 * host (64), fac.prio (20) to the message */
289 /* (growth by: 15 + 64 + 20 + delims = ~110) */
290 char printbuf[MAX_READ*2 + 128];
291};
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000292
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000293static const struct init_globals init_data = {
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200294 .logFile = {
295 .path = "/var/log/messages",
296 .fd = -1,
297 },
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000298#ifdef SYSLOGD_MARK
299 .markInterval = 20 * 60,
300#endif
301 .logLevel = 8,
302#if ENABLE_FEATURE_ROTATE_LOGFILE
303 .logFileSize = 200 * 1024,
304 .logFileRotate = 1,
305#endif
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000306#if ENABLE_FEATURE_IPC_SYSLOG
307 .shmid = -1,
308 .s_semid = -1,
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200309 .shm_size = ((CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE)*1024), /* default shm size */
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000310 .SMwup = { {1, -1, IPC_NOWAIT} },
311 .SMwdn = { {0, 0}, {1, 0}, {1, +1} },
312#endif
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000313};
314
315#define G (*ptr_to_globals)
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000316#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000317 SET_PTR_TO_GLOBALS(memcpy(xzalloc(sizeof(G)), &init_data, sizeof(init_data))); \
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000318} while (0)
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000319
320
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000321/* Options */
Denis Vlasenko14c19402006-09-30 19:20:00 +0000322enum {
323 OPTBIT_mark = 0, // -m
324 OPTBIT_nofork, // -n
325 OPTBIT_outfile, // -O
326 OPTBIT_loglevel, // -l
327 OPTBIT_small, // -S
Peter Korsgaard9d539f92018-08-09 11:25:22 +0200328 OPTBIT_timestamp, // -t
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000329 IF_FEATURE_ROTATE_LOGFILE(OPTBIT_filesize ,) // -s
330 IF_FEATURE_ROTATE_LOGFILE(OPTBIT_rotatecnt ,) // -b
331 IF_FEATURE_REMOTE_LOG( OPTBIT_remotelog ,) // -R
332 IF_FEATURE_REMOTE_LOG( OPTBIT_locallog ,) // -L
333 IF_FEATURE_IPC_SYSLOG( OPTBIT_circularlog,) // -C
334 IF_FEATURE_SYSLOGD_DUP( OPTBIT_dup ,) // -D
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200335 IF_FEATURE_SYSLOGD_CFG( OPTBIT_cfg ,) // -f
Peter Korsgaardcd776cf2013-01-06 00:07:19 +0100336 IF_FEATURE_KMSG_SYSLOG( OPTBIT_kmsg ,) // -K
Denis Vlasenko14c19402006-09-30 19:20:00 +0000337
338 OPT_mark = 1 << OPTBIT_mark ,
339 OPT_nofork = 1 << OPTBIT_nofork ,
340 OPT_outfile = 1 << OPTBIT_outfile ,
341 OPT_loglevel = 1 << OPTBIT_loglevel,
342 OPT_small = 1 << OPTBIT_small ,
Peter Korsgaard9d539f92018-08-09 11:25:22 +0200343 OPT_timestamp = 1 << OPTBIT_timestamp,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000344 OPT_filesize = IF_FEATURE_ROTATE_LOGFILE((1 << OPTBIT_filesize )) + 0,
345 OPT_rotatecnt = IF_FEATURE_ROTATE_LOGFILE((1 << OPTBIT_rotatecnt )) + 0,
346 OPT_remotelog = IF_FEATURE_REMOTE_LOG( (1 << OPTBIT_remotelog )) + 0,
347 OPT_locallog = IF_FEATURE_REMOTE_LOG( (1 << OPTBIT_locallog )) + 0,
348 OPT_circularlog = IF_FEATURE_IPC_SYSLOG( (1 << OPTBIT_circularlog)) + 0,
349 OPT_dup = IF_FEATURE_SYSLOGD_DUP( (1 << OPTBIT_dup )) + 0,
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200350 OPT_cfg = IF_FEATURE_SYSLOGD_CFG( (1 << OPTBIT_cfg )) + 0,
Peter Korsgaardcd776cf2013-01-06 00:07:19 +0100351 OPT_kmsg = IF_FEATURE_KMSG_SYSLOG( (1 << OPTBIT_kmsg )) + 0,
Denis Vlasenko14c19402006-09-30 19:20:00 +0000352};
Peter Korsgaard9d539f92018-08-09 11:25:22 +0200353#define OPTION_STR "m:nO:l:St" \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000354 IF_FEATURE_ROTATE_LOGFILE("s:" ) \
355 IF_FEATURE_ROTATE_LOGFILE("b:" ) \
Denys Vlasenko237bedd2016-07-06 21:58:02 +0200356 IF_FEATURE_REMOTE_LOG( "R:*") \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000357 IF_FEATURE_REMOTE_LOG( "L" ) \
358 IF_FEATURE_IPC_SYSLOG( "C::") \
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200359 IF_FEATURE_SYSLOGD_DUP( "D" ) \
Peter Korsgaardcd776cf2013-01-06 00:07:19 +0100360 IF_FEATURE_SYSLOGD_CFG( "f:" ) \
361 IF_FEATURE_KMSG_SYSLOG( "K" )
Denis Vlasenko14c19402006-09-30 19:20:00 +0000362#define OPTION_DECL *opt_m, *opt_l \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000363 IF_FEATURE_ROTATE_LOGFILE(,*opt_s) \
364 IF_FEATURE_ROTATE_LOGFILE(,*opt_b) \
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200365 IF_FEATURE_IPC_SYSLOG( ,*opt_C = NULL) \
366 IF_FEATURE_SYSLOGD_CFG( ,*opt_f = NULL)
367#define OPTION_PARAM &opt_m, &(G.logFile.path), &opt_l \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000368 IF_FEATURE_ROTATE_LOGFILE(,&opt_s) \
369 IF_FEATURE_ROTATE_LOGFILE(,&opt_b) \
Denys Vlasenko69675782013-01-14 01:34:48 +0100370 IF_FEATURE_REMOTE_LOG( ,&remoteAddrList) \
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200371 IF_FEATURE_IPC_SYSLOG( ,&opt_C) \
372 IF_FEATURE_SYSLOGD_CFG( ,&opt_f)
Eric Andersen871d93c2002-09-17 20:06:29 +0000373
Eric Andersen871d93c2002-09-17 20:06:29 +0000374
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200375#if ENABLE_FEATURE_SYSLOGD_CFG
376static const CODE* find_by_name(char *name, const CODE* c_set)
377{
378 for (; c_set->c_name; c_set++) {
379 if (strcmp(name, c_set->c_name) == 0)
380 return c_set;
381 }
382 return NULL;
383}
384#endif
385static const CODE* find_by_val(int val, const CODE* c_set)
386{
387 for (; c_set->c_name; c_set++) {
388 if (c_set->c_val == val)
389 return c_set;
390 }
391 return NULL;
392}
393
394#if ENABLE_FEATURE_SYSLOGD_CFG
395static void parse_syslogdcfg(const char *file)
396{
397 char *t;
398 logRule_t **pp_rule;
399 /* tok[0] set of selectors */
400 /* tok[1] file name */
401 /* tok[2] has to be NULL */
402 char *tok[3];
403 parser_t *parser;
404
405 parser = config_open2(file ? file : "/etc/syslog.conf",
Denys Vlasenko514cbfc2011-09-16 13:28:52 +0200406 file ? xfopen_for_read : fopen_for_read);
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200407 if (!parser)
408 /* didn't find default /etc/syslog.conf */
409 /* proceed as if we built busybox without config support */
410 return;
411
412 /* use ptr to ptr to avoid checking whether head was initialized */
413 pp_rule = &G.log_rules;
414 /* iterate through lines of config, skipping comments */
415 while (config_read(parser, tok, 3, 2, "# \t", PARSE_NORMAL | PARSE_MIN_DIE)) {
416 char *cur_selector;
417 logRule_t *cur_rule;
418
419 /* unexpected trailing token? */
Denys Vlasenko0288b272011-04-16 20:15:14 +0200420 if (tok[2])
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200421 goto cfgerr;
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200422
423 cur_rule = *pp_rule = xzalloc(sizeof(*cur_rule));
424
425 cur_selector = tok[0];
426 /* iterate through selectors: "kern.info;kern.!err;..." */
427 do {
428 const CODE *code;
429 char *next_selector;
430 uint8_t negated_prio; /* "kern.!err" */
431 uint8_t single_prio; /* "kern.=err" */
432 uint32_t facmap; /* bitmap of enabled facilities */
433 uint8_t primap; /* bitmap of enabled priorities */
434 unsigned i;
435
436 next_selector = strchr(cur_selector, ';');
437 if (next_selector)
438 *next_selector++ = '\0';
439
440 t = strchr(cur_selector, '.');
Denys Vlasenko0288b272011-04-16 20:15:14 +0200441 if (!t)
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200442 goto cfgerr;
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200443 *t++ = '\0'; /* separate facility from priority */
444
445 negated_prio = 0;
446 single_prio = 0;
447 if (*t == '!') {
448 negated_prio = 1;
449 ++t;
450 }
451 if (*t == '=') {
452 single_prio = 1;
453 ++t;
454 }
455
456 /* parse priority */
457 if (*t == '*')
458 primap = 0xff; /* all 8 log levels enabled */
459 else {
460 uint8_t priority;
Denys Vlasenkocf686ae2017-08-16 15:05:36 +0200461 code = find_by_name(t, bb_prioritynames);
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200462 if (!code)
463 goto cfgerr;
464 primap = 0;
465 priority = code->c_val;
466 if (priority == INTERNAL_NOPRI) {
467 /* ensure we take "enabled_facility_priomap[fac] &= 0" branch below */
468 negated_prio = 1;
469 } else {
470 priority = 1 << priority;
471 do {
472 primap |= priority;
473 if (single_prio)
474 break;
475 priority >>= 1;
476 } while (priority);
477 if (negated_prio)
478 primap = ~primap;
479 }
480 }
481
482 /* parse facility */
483 if (*cur_selector == '*')
484 facmap = (1<<LOG_NFACILITIES) - 1;
485 else {
486 char *next_facility;
487 facmap = 0;
488 t = cur_selector;
489 /* iterate through facilities: "kern,daemon.<priospec>" */
490 do {
491 next_facility = strchr(t, ',');
492 if (next_facility)
493 *next_facility++ = '\0';
Denys Vlasenkocf686ae2017-08-16 15:05:36 +0200494 code = find_by_name(t, bb_facilitynames);
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200495 if (!code)
496 goto cfgerr;
497 /* "mark" is not a real facility, skip it */
498 if (code->c_val != INTERNAL_MARK)
499 facmap |= 1<<(LOG_FAC(code->c_val));
500 t = next_facility;
501 } while (t);
502 }
503
504 /* merge result with previous selectors */
505 for (i = 0; i < LOG_NFACILITIES; ++i) {
506 if (!(facmap & (1<<i)))
507 continue;
508 if (negated_prio)
509 cur_rule->enabled_facility_priomap[i] &= primap;
510 else
511 cur_rule->enabled_facility_priomap[i] |= primap;
512 }
513
514 cur_selector = next_selector;
515 } while (cur_selector);
516
Sergey Naumove9c8bed2011-04-16 19:36:15 +0200517 /* check whether current file name was mentioned in previous rules or
518 * as global logfile (G.logFile).
519 */
520 if (strcmp(G.logFile.path, tok[1]) == 0) {
521 cur_rule->file = &G.logFile;
522 goto found;
523 }
524 /* temporarily use cur_rule as iterator, but *pp_rule still points
525 * to currently processing rule entry.
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200526 * NOTE: *pp_rule points to the current (and last in the list) rule.
527 */
528 for (cur_rule = G.log_rules; cur_rule != *pp_rule; cur_rule = cur_rule->next) {
529 if (strcmp(cur_rule->file->path, tok[1]) == 0) {
530 /* found - reuse the same file structure */
531 (*pp_rule)->file = cur_rule->file;
532 cur_rule = *pp_rule;
533 goto found;
534 }
535 }
536 cur_rule->file = xzalloc(sizeof(*cur_rule->file));
537 cur_rule->file->fd = -1;
538 cur_rule->file->path = xstrdup(tok[1]);
539 found:
540 pp_rule = &cur_rule->next;
541 }
542 config_close(parser);
543 return;
544
545 cfgerr:
Denys Vlasenko81fa9992013-01-20 16:05:41 +0100546 bb_error_msg_and_die("error in '%s' at line %d",
547 file ? file : "/etc/syslog.conf",
548 parser->lineno);
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200549}
550#endif
551
Mark Whitley6317c4b2001-03-12 22:51:50 +0000552/* circular buffer variables/structures */
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000553#if ENABLE_FEATURE_IPC_SYSLOG
554
Eric Andersend4a5e252003-12-19 11:32:14 +0000555#if CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE < 4
556#error Sorry, you must set the syslogd buffer size to at least 4KB.
557#error Please check CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE
558#endif
559
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +0000560/* our shared key (syslogd.c and logread.c must be in sync) */
561enum { KEY_ID = 0x414e4547 }; /* "GENA" */
Mark Whitley6317c4b2001-03-12 22:51:50 +0000562
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +0000563static void ipcsyslog_cleanup(void)
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000564{
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000565 if (G.shmid != -1) {
566 shmdt(G.shbuf);
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000567 }
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000568 if (G.shmid != -1) {
569 shmctl(G.shmid, IPC_RMID, NULL);
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000570 }
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000571 if (G.s_semid != -1) {
572 semctl(G.s_semid, 0, IPC_RMID, 0);
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000573 }
Mark Whitley6317c4b2001-03-12 22:51:50 +0000574}
575
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +0000576static void ipcsyslog_init(void)
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000577{
Denis Vlasenkoa9b60e92007-01-04 17:59:59 +0000578 if (DEBUG)
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +0000579 printf("shmget(%x, %d,...)\n", (int)KEY_ID, G.shm_size);
Denis Vlasenkoa9b60e92007-01-04 17:59:59 +0000580
Denis Vlasenkoa1120a82007-08-14 10:27:56 +0000581 G.shmid = shmget(KEY_ID, G.shm_size, IPC_CREAT | 0644);
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000582 if (G.shmid == -1) {
James Byrne69374872019-07-02 11:35:03 +0200583 bb_simple_perror_msg_and_die("shmget");
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000584 }
Mark Whitley6317c4b2001-03-12 22:51:50 +0000585
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000586 G.shbuf = shmat(G.shmid, NULL, 0);
Denis Vlasenko4e9ca752008-01-07 15:58:02 +0000587 if (G.shbuf == (void*) -1L) { /* shmat has bizarre error return */
James Byrne69374872019-07-02 11:35:03 +0200588 bb_simple_perror_msg_and_die("shmat");
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000589 }
Mark Whitley6317c4b2001-03-12 22:51:50 +0000590
Denis Vlasenko5f1b1492007-08-12 21:33:06 +0000591 memset(G.shbuf, 0, G.shm_size);
592 G.shbuf->size = G.shm_size - offsetof(struct shbuf_ds, data) - 1;
593 /*G.shbuf->tail = 0;*/
Mark Whitley6317c4b2001-03-12 22:51:50 +0000594
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200595 /* we'll trust the OS to set initial semval to 0 (let's hope) */
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000596 G.s_semid = semget(KEY_ID, 2, IPC_CREAT | IPC_EXCL | 1023);
597 if (G.s_semid == -1) {
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000598 if (errno == EEXIST) {
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000599 G.s_semid = semget(KEY_ID, 2, 0);
600 if (G.s_semid != -1)
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000601 return;
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000602 }
James Byrne69374872019-07-02 11:35:03 +0200603 bb_simple_perror_msg_and_die("semget");
Mark Whitley6317c4b2001-03-12 22:51:50 +0000604 }
605}
606
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000607/* Write message to shared mem buffer */
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200608static void log_to_shmem(const char *msg)
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000609{
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000610 int old_tail, new_tail;
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200611 int len;
Mark Whitley6317c4b2001-03-12 22:51:50 +0000612
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000613 if (semop(G.s_semid, G.SMwdn, 3) == -1) {
James Byrne69374872019-07-02 11:35:03 +0200614 bb_simple_perror_msg_and_die("SMwdn");
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000615 }
Mark Whitley6317c4b2001-03-12 22:51:50 +0000616
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000617 /* Circular Buffer Algorithm:
Mark Whitley6317c4b2001-03-12 22:51:50 +0000618 * --------------------------
Denis Vlasenko150f4022007-01-13 21:06:21 +0000619 * tail == position where to store next syslog message.
Denis Vlasenko5f1b1492007-08-12 21:33:06 +0000620 * tail's max value is (shbuf->size - 1)
621 * Last byte of buffer is never used and remains NUL.
Mark Whitley6317c4b2001-03-12 22:51:50 +0000622 */
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200623 len = strlen(msg) + 1; /* length with NUL included */
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000624 again:
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000625 old_tail = G.shbuf->tail;
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000626 new_tail = old_tail + len;
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000627 if (new_tail < G.shbuf->size) {
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000628 /* store message, set new tail */
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000629 memcpy(G.shbuf->data + old_tail, msg, len);
630 G.shbuf->tail = new_tail;
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000631 } else {
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000632 /* k == available buffer space ahead of old tail */
Denis Vlasenko5f1b1492007-08-12 21:33:06 +0000633 int k = G.shbuf->size - old_tail;
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000634 /* copy what fits to the end of buffer, and repeat */
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000635 memcpy(G.shbuf->data + old_tail, msg, k);
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000636 msg += k;
637 len -= k;
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000638 G.shbuf->tail = 0;
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000639 goto again;
Mark Whitley6317c4b2001-03-12 22:51:50 +0000640 }
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000641 if (semop(G.s_semid, G.SMwup, 1) == -1) {
James Byrne69374872019-07-02 11:35:03 +0200642 bb_simple_perror_msg_and_die("SMwup");
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000643 }
Denis Vlasenkoa9b60e92007-01-04 17:59:59 +0000644 if (DEBUG)
Denis Vlasenko5f1b1492007-08-12 21:33:06 +0000645 printf("tail:%d\n", G.shbuf->tail);
Mark Whitley6317c4b2001-03-12 22:51:50 +0000646}
Rob Landley028ba282006-08-28 20:16:42 +0000647#else
Peter Korsgaard99807072013-01-06 13:11:04 +0100648static void ipcsyslog_cleanup(void) {}
649static void ipcsyslog_init(void) {}
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000650void log_to_shmem(const char *msg);
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000651#endif /* FEATURE_IPC_SYSLOG */
652
Peter Korsgaardcd776cf2013-01-06 00:07:19 +0100653#if ENABLE_FEATURE_KMSG_SYSLOG
654static void kmsg_init(void)
655{
656 G.kmsgfd = xopen("/dev/kmsg", O_WRONLY);
657
658 /*
659 * kernel < 3.5 expects single char printk KERN_* priority prefix,
660 * from 3.5 onwards the full syslog facility/priority format is supported
661 */
662 if (get_linux_version_code() < KERNEL_VERSION(3,5,0))
663 G.primask = LOG_PRIMASK;
664 else
665 G.primask = -1;
666}
667
668static void kmsg_cleanup(void)
669{
670 if (ENABLE_FEATURE_CLEAN_UP)
671 close(G.kmsgfd);
672}
673
674/* Write message to /dev/kmsg */
675static void log_to_kmsg(int pri, const char *msg)
676{
677 /*
678 * kernel < 3.5 expects single char printk KERN_* priority prefix,
679 * from 3.5 onwards the full syslog facility/priority format is supported
680 */
681 pri &= G.primask;
682
Joshua Judson Rosene46047a2014-07-02 19:41:41 +0200683 full_write(G.kmsgfd, G.printbuf, sprintf(G.printbuf, "<%d>%s\n", pri, msg));
Peter Korsgaardcd776cf2013-01-06 00:07:19 +0100684}
685#else
Peter Korsgaard99807072013-01-06 13:11:04 +0100686static void kmsg_init(void) {}
687static void kmsg_cleanup(void) {}
688static void log_to_kmsg(int pri UNUSED_PARAM, const char *msg UNUSED_PARAM) {}
Peter Korsgaardcd776cf2013-01-06 00:07:19 +0100689#endif /* FEATURE_KMSG_SYSLOG */
690
Erik Andersen983b51b2000-04-04 18:14:25 +0000691/* Print a message to the log file. */
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200692static void log_locally(time_t now, char *msg, logFile_t *log_file)
Eric Andersen3843e961999-11-25 07:30:46 +0000693{
Denis Vlasenko0d948202008-12-09 22:53:31 +0000694#ifdef SYSLOGD_WRLOCK
Denis Vlasenkob8934972007-01-04 18:02:32 +0000695 struct flock fl;
Denis Vlasenko0d948202008-12-09 22:53:31 +0000696#endif
Denis Vlasenkob8934972007-01-04 18:02:32 +0000697 int len = strlen(msg);
Eric Andersen3843e961999-11-25 07:30:46 +0000698
Denys Vlasenkoa28c1b22014-07-02 15:21:30 +0200699 /* fd can't be 0 (we connect fd 0 to /dev/log socket) */
700 /* fd is 1 if "-O -" is in use */
701 if (log_file->fd > 1) {
Joshua Judson Rosenae57fca2014-07-03 14:51:47 +0200702 /* Reopen log files every second. This allows admin
703 * to delete the files and not worry about restarting us.
Denis Vlasenkod9415d62009-03-02 14:26:28 +0000704 * This costs almost nothing since it happens
Joshua Judson Rosenae57fca2014-07-03 14:51:47 +0200705 * _at most_ once a second for each file, and happens
706 * only when each file is actually written.
Denis Vlasenkod9415d62009-03-02 14:26:28 +0000707 */
Denis Vlasenko4dada742008-01-03 12:13:42 +0000708 if (!now)
709 now = time(NULL);
Joshua Judson Rosenae57fca2014-07-03 14:51:47 +0200710 if (log_file->last_log_time != now) {
711 log_file->last_log_time = now;
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200712 close(log_file->fd);
Denis Vlasenkob8934972007-01-04 18:02:32 +0000713 goto reopen;
714 }
Denys Vlasenkoa28c1b22014-07-02 15:21:30 +0200715 }
716 else if (log_file->fd == 1) {
717 /* We are logging to stdout: do nothing */
718 }
719 else {
720 if (LONE_DASH(log_file->path)) {
721 log_file->fd = 1;
722 /* log_file->isRegular = 0; - already is */
723 } else {
Denis Vlasenkob8934972007-01-04 18:02:32 +0000724 reopen:
Denys Vlasenkoa28c1b22014-07-02 15:21:30 +0200725 log_file->fd = open(log_file->path, O_WRONLY | O_CREAT
Denis Vlasenkod9415d62009-03-02 14:26:28 +0000726 | O_NOCTTY | O_APPEND | O_NONBLOCK,
727 0666);
Denys Vlasenkoa28c1b22014-07-02 15:21:30 +0200728 if (log_file->fd < 0) {
729 /* cannot open logfile? - print to /dev/console then */
730 int fd = device_open(DEV_CONSOLE, O_WRONLY | O_NOCTTY | O_NONBLOCK);
731 if (fd < 0)
732 fd = 2; /* then stderr, dammit */
733 full_write(fd, msg, len);
734 if (fd != 2)
735 close(fd);
736 return;
737 }
Denis Vlasenkob8934972007-01-04 18:02:32 +0000738#if ENABLE_FEATURE_ROTATE_LOGFILE
Denys Vlasenkoa28c1b22014-07-02 15:21:30 +0200739 {
740 struct stat statf;
741 log_file->isRegular = (fstat(log_file->fd, &statf) == 0 && S_ISREG(statf.st_mode));
742 /* bug (mostly harmless): can wrap around if file > 4gb */
743 log_file->size = statf.st_size;
744 }
Denis Vlasenkob8934972007-01-04 18:02:32 +0000745#endif
Denys Vlasenkoa28c1b22014-07-02 15:21:30 +0200746 }
Denis Vlasenkob8934972007-01-04 18:02:32 +0000747 }
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000748
Denis Vlasenko0d948202008-12-09 22:53:31 +0000749#ifdef SYSLOGD_WRLOCK
Denis Vlasenkob8934972007-01-04 18:02:32 +0000750 fl.l_whence = SEEK_SET;
751 fl.l_start = 0;
752 fl.l_len = 1;
753 fl.l_type = F_WRLCK;
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200754 fcntl(log_file->fd, F_SETLKW, &fl);
Denis Vlasenko0d948202008-12-09 22:53:31 +0000755#endif
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000756
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000757#if ENABLE_FEATURE_ROTATE_LOGFILE
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200758 if (G.logFileSize && log_file->isRegular && log_file->size > G.logFileSize) {
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000759 if (G.logFileRotate) { /* always 0..99 */
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200760 int i = strlen(log_file->path) + 3 + 1;
Denis Vlasenkob8934972007-01-04 18:02:32 +0000761 char oldFile[i];
762 char newFile[i];
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000763 i = G.logFileRotate - 1;
Denis Vlasenkob8934972007-01-04 18:02:32 +0000764 /* rename: f.8 -> f.9; f.7 -> f.8; ... */
765 while (1) {
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200766 sprintf(newFile, "%s.%d", log_file->path, i);
Denis Vlasenkob8934972007-01-04 18:02:32 +0000767 if (i == 0) break;
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200768 sprintf(oldFile, "%s.%d", log_file->path, --i);
Denis Vlasenko69dc3252008-05-24 21:03:53 +0000769 /* ignore errors - file might be missing */
770 rename(oldFile, newFile);
Eric Andersen29c77f72003-10-09 09:43:18 +0000771 }
Denis Vlasenkob8934972007-01-04 18:02:32 +0000772 /* newFile == "f.0" now */
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200773 rename(log_file->path, newFile);
Eric Andersen29c77f72003-10-09 09:43:18 +0000774 }
Joshua Judson Rosen1b90e032014-05-20 01:02:18 -0400775
Joshua Judson Rosen9aa6ffb2014-05-20 01:02:20 -0400776 /* We may or may not have just renamed the file away;
777 * if we didn't rename because we aren't keeping any backlog,
778 * then it's time to clobber the file. If we did rename it...,
779 * incredibly, if F and F.0 are hardlinks, POSIX _demands_
780 * that rename returns 0 but does not remove F!!!
781 * (hardlinked F/F.0 pair was observed after
782 * power failure during rename()).
783 * So ensure old file is gone in any case:
Joshua Judson Rosen1b90e032014-05-20 01:02:18 -0400784 */
Joshua Judson Rosen9aa6ffb2014-05-20 01:02:20 -0400785 unlink(log_file->path);
Joshua Judson Rosenb905d6c2014-05-20 01:02:19 -0400786#ifdef SYSLOGD_WRLOCK
787 fl.l_type = F_UNLCK;
788 fcntl(log_file->fd, F_SETLKW, &fl);
789#endif
Joshua Judson Rosen9aa6ffb2014-05-20 01:02:20 -0400790 close(log_file->fd);
791 goto reopen;
Eric Andersen3843e961999-11-25 07:30:46 +0000792 }
Joshua Judson Rosene46047a2014-07-02 19:41:41 +0200793/* TODO: what to do on write errors ("disk full")? */
794 len = full_write(log_file->fd, msg, len);
795 if (len > 0)
796 log_file->size += len;
797#else
798 full_write(log_file->fd, msg, len);
Denis Vlasenkob8934972007-01-04 18:02:32 +0000799#endif
Joshua Judson Rosene46047a2014-07-02 19:41:41 +0200800
Denis Vlasenko0d948202008-12-09 22:53:31 +0000801#ifdef SYSLOGD_WRLOCK
Denis Vlasenkob8934972007-01-04 18:02:32 +0000802 fl.l_type = F_UNLCK;
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200803 fcntl(log_file->fd, F_SETLKW, &fl);
Denis Vlasenko0d948202008-12-09 22:53:31 +0000804#endif
Eric Andersenb99df0f1999-11-24 09:04:33 +0000805}
806
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000807static void parse_fac_prio_20(int pri, char *res20)
Eric Andersen3843e961999-11-25 07:30:46 +0000808{
Denis Vlasenko3c8b5ba2007-06-04 18:23:59 +0000809 const CODE *c_pri, *c_fac;
Eric Andersenb99df0f1999-11-24 09:04:33 +0000810
Denys Vlasenkocf686ae2017-08-16 15:05:36 +0200811 c_fac = find_by_val(LOG_FAC(pri) << 3, bb_facilitynames);
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200812 if (c_fac) {
Denys Vlasenkocf686ae2017-08-16 15:05:36 +0200813 c_pri = find_by_val(LOG_PRI(pri), bb_prioritynames);
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200814 if (c_pri) {
815 snprintf(res20, 20, "%s.%s", c_fac->c_name, c_pri->c_name);
816 return;
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000817 }
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000818 }
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200819 snprintf(res20, 20, "<%d>", pri);
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000820}
Eric Andersen3843e961999-11-25 07:30:46 +0000821
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000822/* len parameter is used only for "is there a timestamp?" check.
Denis Vlasenko018b1552007-11-06 01:38:46 +0000823 * NB: some callers cheat and supply len==0 when they know
824 * that there is no timestamp, short-circuiting the test. */
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000825static void timestamp_and_log(int pri, char *msg, int len)
826{
Peter Korsgaard9d539f92018-08-09 11:25:22 +0200827 char *timestamp = NULL;
Denis Vlasenko4dada742008-01-03 12:13:42 +0000828 time_t now;
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000829
Denis Vlasenko574c3162009-04-22 02:53:02 +0000830 /* Jan 18 00:11:22 msg... */
831 /* 01234567890123456 */
Peter Korsgaard9d539f92018-08-09 11:25:22 +0200832 if (len >= 16 && msg[3] == ' ' && msg[6] == ' '
833 && msg[9] == ':' && msg[12] == ':' && msg[15] == ' '
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000834 ) {
Peter Korsgaard9d539f92018-08-09 11:25:22 +0200835 if (!(option_mask32 & OPT_timestamp)) {
836 /* use message timestamp */
837 timestamp = msg;
838 now = 0;
839 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000840 msg += 16;
841 }
Peter Korsgaard9d539f92018-08-09 11:25:22 +0200842
Peter Korsgaardeb7f9ac2020-01-27 15:36:41 +0100843#if ENABLE_FEATURE_SYSLOGD_PRECISE_TIMESTAMPS
844 if (!timestamp) {
845 struct timeval tv;
846 gettimeofday(&tv, NULL);
847 now = tv.tv_sec;
848 timestamp = ctime(&now) + 4; /* skip day of week */
849 /* overwrite year by milliseconds, zero terminate */
850 sprintf(timestamp + 15, ".%03u", (unsigned)tv.tv_usec / 1000u);
851 } else {
852 timestamp[15] = '\0';
853 }
854#else
Peter Korsgaard9d539f92018-08-09 11:25:22 +0200855 if (!timestamp) {
856 time(&now);
857 timestamp = ctime(&now) + 4; /* skip day of week */
858 }
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000859 timestamp[15] = '\0';
Peter Korsgaardeb7f9ac2020-01-27 15:36:41 +0100860#endif
Eric Andersen3843e961999-11-25 07:30:46 +0000861
Peter Korsgaard99807072013-01-06 13:11:04 +0100862 if (option_mask32 & OPT_kmsg) {
Peter Korsgaardcd776cf2013-01-06 00:07:19 +0100863 log_to_kmsg(pri, msg);
864 return;
865 }
866
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000867 if (option_mask32 & OPT_small)
868 sprintf(G.printbuf, "%s %s\n", timestamp, msg);
869 else {
870 char res[20];
871 parse_fac_prio_20(pri, res);
Denis Vlasenko6f1713f2008-02-25 23:23:58 +0000872 sprintf(G.printbuf, "%s %.64s %s %s\n", timestamp, G.hostname, res, msg);
Eric Andersenbf2b8ae2000-12-08 19:52:01 +0000873 }
Denis Vlasenko4dada742008-01-03 12:13:42 +0000874
875 /* Log message locally (to file or shared mem) */
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200876#if ENABLE_FEATURE_SYSLOGD_CFG
877 {
878 bool match = 0;
879 logRule_t *rule;
880 uint8_t facility = LOG_FAC(pri);
881 uint8_t prio_bit = 1 << LOG_PRI(pri);
882
883 for (rule = G.log_rules; rule; rule = rule->next) {
884 if (rule->enabled_facility_priomap[facility] & prio_bit) {
885 log_locally(now, G.printbuf, rule->file);
886 match = 1;
887 }
888 }
889 if (match)
890 return;
891 }
892#endif
893 if (LOG_PRI(pri) < G.logLevel) {
894#if ENABLE_FEATURE_IPC_SYSLOG
895 if ((option_mask32 & OPT_circularlog) && G.shbuf) {
Denys Vlasenko514cbfc2011-09-16 13:28:52 +0200896 log_to_shmem(G.printbuf);
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200897 return;
898 }
899#endif
900 log_locally(now, G.printbuf, &G.logFile);
901 }
Denis Vlasenko4dada742008-01-03 12:13:42 +0000902}
903
904static void timestamp_and_log_internal(const char *msg)
905{
Denis Vlasenko0d948202008-12-09 22:53:31 +0000906 /* -L, or no -R */
Denis Vlasenko4dada742008-01-03 12:13:42 +0000907 if (ENABLE_FEATURE_REMOTE_LOG && !(option_mask32 & OPT_locallog))
908 return;
909 timestamp_and_log(LOG_SYSLOG | LOG_INFO, (char*)msg, 0);
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000910}
Glenn L McGrath73ebb882004-09-14 18:12:13 +0000911
Denis Vlasenko75cddd82008-02-13 09:19:14 +0000912/* tmpbuf[len] is a NUL byte (set by caller), but there can be other,
913 * embedded NULs. Split messages on each of these NULs, parse prio,
914 * escape control chars and log each locally. */
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000915static void split_escape_and_log(char *tmpbuf, int len)
916{
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000917 char *p = tmpbuf;
918
919 tmpbuf += len;
920 while (p < tmpbuf) {
921 char c;
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000922 char *q = G.parsebuf;
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000923 int pri = (LOG_USER | LOG_NOTICE);
924
925 if (*p == '<') {
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000926 /* Parse the magic priority number */
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000927 pri = bb_strtou(p + 1, &p, 10);
Denis Vlasenko018b1552007-11-06 01:38:46 +0000928 if (*p == '>')
929 p++;
930 if (pri & ~(LOG_FACMASK | LOG_PRIMASK))
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000931 pri = (LOG_USER | LOG_NOTICE);
Denis Vlasenko1decd0e2006-09-30 19:17:40 +0000932 }
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000933
934 while ((c = *p++)) {
935 if (c == '\n')
936 c = ' ';
Denis Vlasenko2ee028d2007-06-21 13:44:53 +0000937 if (!(c & ~0x1f) && c != '\t') {
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000938 *q++ = '^';
939 c += '@'; /* ^@, ^A, ^B... */
940 }
941 *q++ = c;
942 }
943 *q = '\0';
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000944
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000945 /* Now log it */
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200946 timestamp_and_log(pri, G.parsebuf, q - G.parsebuf);
Eric Andersen7f94a5c2004-06-22 10:12:59 +0000947 }
Eric Andersen3843e961999-11-25 07:30:46 +0000948}
949
Denis Vlasenko4998c812007-02-14 20:51:46 +0000950#ifdef SYSLOGD_MARK
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000951static void do_mark(int sig)
Eric Andersen3843e961999-11-25 07:30:46 +0000952{
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000953 if (G.markInterval) {
Denis Vlasenko4dada742008-01-03 12:13:42 +0000954 timestamp_and_log_internal("-- MARK --");
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000955 alarm(G.markInterval);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000956 }
Eric Andersen3843e961999-11-25 07:30:46 +0000957}
Denis Vlasenko4998c812007-02-14 20:51:46 +0000958#endif
Eric Andersen3843e961999-11-25 07:30:46 +0000959
Denis Vlasenkod031b202007-11-10 01:28:19 +0000960/* Don't inline: prevent struct sockaddr_un to take up space on stack
961 * permanently */
962static NOINLINE int create_socket(void)
Eric Andersen3843e961999-11-25 07:30:46 +0000963{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000964 struct sockaddr_un sunx;
Denis Vlasenkod7ecd862007-09-07 13:53:32 +0000965 int sock_fd;
Denis Vlasenko6ca04442007-02-11 16:19:28 +0000966 char *dev_log_name;
Erik Andersenf13df372000-04-18 23:51:51 +0000967
Denis Vlasenkod031b202007-11-10 01:28:19 +0000968 memset(&sunx, 0, sizeof(sunx));
969 sunx.sun_family = AF_UNIX;
970
971 /* Unlink old /dev/log or object it points to. */
972 /* (if it exists, bind will fail) */
Cédric Cabessaadc30b42013-08-05 02:09:16 +0200973 strcpy(sunx.sun_path, _PATH_LOG);
974 dev_log_name = xmalloc_follow_symlinks(_PATH_LOG);
Denis Vlasenkod031b202007-11-10 01:28:19 +0000975 if (dev_log_name) {
976 safe_strncpy(sunx.sun_path, dev_log_name, sizeof(sunx.sun_path));
977 free(dev_log_name);
978 }
979 unlink(sunx.sun_path);
980
981 sock_fd = xsocket(AF_UNIX, SOCK_DGRAM, 0);
982 xbind(sock_fd, (struct sockaddr *) &sunx, sizeof(sunx));
Cédric Cabessaadc30b42013-08-05 02:09:16 +0200983 chmod(_PATH_LOG, 0666);
Denis Vlasenkod031b202007-11-10 01:28:19 +0000984
985 return sock_fd;
986}
987
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000988#if ENABLE_FEATURE_REMOTE_LOG
Thomas Geuligd2f77792010-02-28 13:01:59 +0100989static int try_to_resolve_remote(remoteHost_t *rh)
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000990{
Thomas Geuligd2f77792010-02-28 13:01:59 +0100991 if (!rh->remoteAddr) {
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000992 unsigned now = monotonic_sec();
993
994 /* Don't resolve name too often - DNS timeouts can be big */
Thomas Geuligd2f77792010-02-28 13:01:59 +0100995 if ((now - rh->last_dns_resolve) < DNS_WAIT_SEC)
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000996 return -1;
Thomas Geuligd2f77792010-02-28 13:01:59 +0100997 rh->last_dns_resolve = now;
998 rh->remoteAddr = host2sockaddr(rh->remoteHostname, 514);
999 if (!rh->remoteAddr)
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +00001000 return -1;
1001 }
Daniel Dickinsone74d7982010-08-03 04:26:20 +02001002 return xsocket(rh->remoteAddr->u.sa.sa_family, SOCK_DGRAM, 0);
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +00001003}
1004#endif
1005
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001006static void do_syslogd(void) NORETURN;
Denis Vlasenkod031b202007-11-10 01:28:19 +00001007static void do_syslogd(void)
1008{
Thomas Geuligd2f77792010-02-28 13:01:59 +01001009#if ENABLE_FEATURE_REMOTE_LOG
1010 llist_t *item;
1011#endif
Denis Vlasenkobe048f22008-02-26 20:13:52 +00001012#if ENABLE_FEATURE_SYSLOGD_DUP
1013 int last_sz = -1;
1014 char *last_buf;
1015 char *recvbuf = G.recvbuf;
1016#else
1017#define recvbuf (G.recvbuf)
1018#endif
Denis Vlasenkod031b202007-11-10 01:28:19 +00001019
Denis Vlasenko0d948202008-12-09 22:53:31 +00001020 /* Set up signal handlers (so that they interrupt read()) */
1021 signal_no_SA_RESTART_empty_mask(SIGTERM, record_signo);
1022 signal_no_SA_RESTART_empty_mask(SIGINT, record_signo);
1023 //signal_no_SA_RESTART_empty_mask(SIGQUIT, record_signo);
Glenn L McGrath912d8f42002-11-10 22:46:45 +00001024 signal(SIGHUP, SIG_IGN);
Denis Vlasenko4998c812007-02-14 20:51:46 +00001025#ifdef SYSLOGD_MARK
Denis Vlasenkoceab8702007-01-04 17:57:54 +00001026 signal(SIGALRM, do_mark);
Denis Vlasenko5e892ba2007-03-15 19:50:46 +00001027 alarm(G.markInterval);
Denis Vlasenko4998c812007-02-14 20:51:46 +00001028#endif
Denys Vlasenkoa28c1b22014-07-02 15:21:30 +02001029 xmove_fd(create_socket(), STDIN_FILENO);
Eric Andersenb99df0f1999-11-24 09:04:33 +00001030
Peter Korsgaard99807072013-01-06 13:11:04 +01001031 if (option_mask32 & OPT_circularlog)
Glenn L McGrath912d8f42002-11-10 22:46:45 +00001032 ipcsyslog_init();
Eric Andersenea906502001-04-05 20:55:17 +00001033
Peter Korsgaard99807072013-01-06 13:11:04 +01001034 if (option_mask32 & OPT_kmsg)
Peter Korsgaardcd776cf2013-01-06 00:07:19 +01001035 kmsg_init();
1036
Denis Vlasenko4dada742008-01-03 12:13:42 +00001037 timestamp_and_log_internal("syslogd started: BusyBox v" BB_VER);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001038
Denis Vlasenko0d948202008-12-09 22:53:31 +00001039 while (!bb_got_signal) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +00001040 ssize_t sz;
Denis Vlasenkobe048f22008-02-26 20:13:52 +00001041
1042#if ENABLE_FEATURE_SYSLOGD_DUP
1043 last_buf = recvbuf;
1044 if (recvbuf == G.recvbuf)
1045 recvbuf = G.recvbuf + MAX_READ;
1046 else
1047 recvbuf = G.recvbuf;
1048#endif
Denis Vlasenko018b1552007-11-06 01:38:46 +00001049 read_again:
Denys Vlasenkoa28c1b22014-07-02 15:21:30 +02001050 sz = read(STDIN_FILENO, recvbuf, MAX_READ - 1);
Denis Vlasenko0d948202008-12-09 22:53:31 +00001051 if (sz < 0) {
1052 if (!bb_got_signal)
Cédric Cabessaadc30b42013-08-05 02:09:16 +02001053 bb_perror_msg("read from %s", _PATH_LOG);
Denis Vlasenko0d948202008-12-09 22:53:31 +00001054 break;
1055 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001056
Denis Vlasenko75cddd82008-02-13 09:19:14 +00001057 /* Drop trailing '\n' and NULs (typically there is one NUL) */
Denis Vlasenko018b1552007-11-06 01:38:46 +00001058 while (1) {
1059 if (sz == 0)
1060 goto read_again;
Denis Vlasenkocb12cb22007-11-06 11:34:03 +00001061 /* man 3 syslog says: "A trailing newline is added when needed".
1062 * However, neither glibc nor uclibc do this:
1063 * syslog(prio, "test") sends "test\0" to /dev/log,
Denis Vlasenko75cddd82008-02-13 09:19:14 +00001064 * syslog(prio, "test\n") sends "test\n\0".
Denis Vlasenkocb12cb22007-11-06 11:34:03 +00001065 * IOW: newline is passed verbatim!
1066 * I take it to mean that it's syslogd's job
Denis Vlasenko75cddd82008-02-13 09:19:14 +00001067 * to make those look identical in the log files. */
Denis Vlasenkobe048f22008-02-26 20:13:52 +00001068 if (recvbuf[sz-1] != '\0' && recvbuf[sz-1] != '\n')
Denis Vlasenko018b1552007-11-06 01:38:46 +00001069 break;
1070 sz--;
1071 }
Denis Vlasenkobe048f22008-02-26 20:13:52 +00001072#if ENABLE_FEATURE_SYSLOGD_DUP
1073 if ((option_mask32 & OPT_dup) && (sz == last_sz))
1074 if (memcmp(last_buf, recvbuf, sz) == 0)
1075 continue;
1076 last_sz = sz;
1077#endif
Denis Vlasenkoceab8702007-01-04 17:57:54 +00001078#if ENABLE_FEATURE_REMOTE_LOG
Thomas Geuligd2f77792010-02-28 13:01:59 +01001079 /* Stock syslogd sends it '\n'-terminated
1080 * over network, mimic that */
1081 recvbuf[sz] = '\n';
1082
Denis Vlasenkod7ecd862007-09-07 13:53:32 +00001083 /* We are not modifying log messages in any way before send */
1084 /* Remote site cannot trust _us_ anyway and need to do validation again */
Thomas Geuligd2f77792010-02-28 13:01:59 +01001085 for (item = G.remoteHosts; item != NULL; item = item->link) {
1086 remoteHost_t *rh = (remoteHost_t *)item->data;
1087
1088 if (rh->remoteFD == -1) {
1089 rh->remoteFD = try_to_resolve_remote(rh);
1090 if (rh->remoteFD == -1)
1091 continue;
Glenn L McGrath912d8f42002-11-10 22:46:45 +00001092 }
Daniel Dickinsone74d7982010-08-03 04:26:20 +02001093
1094 /* Send message to remote logger.
1095 * On some errors, close and set remoteFD to -1
1096 * so that DNS resolution is retried.
1097 */
1098 if (sendto(rh->remoteFD, recvbuf, sz+1,
1099 MSG_DONTWAIT | MSG_NOSIGNAL,
1100 &(rh->remoteAddr->u.sa), rh->remoteAddr->len) == -1
1101 ) {
1102 switch (errno) {
1103 case ECONNRESET:
1104 case ENOTCONN: /* paranoia */
1105 case EPIPE:
1106 close(rh->remoteFD);
1107 rh->remoteFD = -1;
1108 free(rh->remoteAddr);
1109 rh->remoteAddr = NULL;
1110 }
1111 }
Denis Vlasenko87f3b262007-09-07 13:43:28 +00001112 }
Denis Vlasenkod7ecd862007-09-07 13:53:32 +00001113#endif
Denis Vlasenko75cddd82008-02-13 09:19:14 +00001114 if (!ENABLE_FEATURE_REMOTE_LOG || (option_mask32 & OPT_locallog)) {
Denis Vlasenkobe048f22008-02-26 20:13:52 +00001115 recvbuf[sz] = '\0'; /* ensure it *is* NUL terminated */
1116 split_escape_and_log(recvbuf, sz);
Denis Vlasenko75cddd82008-02-13 09:19:14 +00001117 }
Denis Vlasenko0d948202008-12-09 22:53:31 +00001118 } /* while (!bb_got_signal) */
1119
1120 timestamp_and_log_internal("syslogd exiting");
Denys Vlasenko50596532019-03-17 19:47:52 +01001121 remove_pidfile_std_path_and_ext("syslogd");
Peter Korsgaard99807072013-01-06 13:11:04 +01001122 ipcsyslog_cleanup();
1123 if (option_mask32 & OPT_kmsg)
Peter Korsgaardcd776cf2013-01-06 00:07:19 +01001124 kmsg_cleanup();
Denis Vlasenko0d948202008-12-09 22:53:31 +00001125 kill_myself_with_sig(bb_got_signal);
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +00001126#undef recvbuf
Eric Andersenb99df0f1999-11-24 09:04:33 +00001127}
1128
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00001129int syslogd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001130int syslogd_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen3843e961999-11-25 07:30:46 +00001131{
Denis Vlasenko0d948202008-12-09 22:53:31 +00001132 int opts;
Thomas Geuligd2f77792010-02-28 13:01:59 +01001133 char OPTION_DECL;
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +00001134#if ENABLE_FEATURE_REMOTE_LOG
Thomas Geuligd2f77792010-02-28 13:01:59 +01001135 llist_t *remoteAddrList = NULL;
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +00001136#endif
Denis Vlasenko5e892ba2007-03-15 19:50:46 +00001137
Thomas Geuligd2f77792010-02-28 13:01:59 +01001138 INIT_G();
1139
Denys Vlasenko237bedd2016-07-06 21:58:02 +02001140 /* No non-option params */
Denys Vlasenko22542ec2017-08-08 21:55:02 +02001141 opts = getopt32(argv, "^"OPTION_STR"\0""=0", OPTION_PARAM);
Thomas Geuligd2f77792010-02-28 13:01:59 +01001142#if ENABLE_FEATURE_REMOTE_LOG
1143 while (remoteAddrList) {
1144 remoteHost_t *rh = xzalloc(sizeof(*rh));
1145 rh->remoteHostname = llist_pop(&remoteAddrList);
1146 rh->remoteFD = -1;
1147 rh->last_dns_resolve = monotonic_sec() - DNS_WAIT_SEC - 1;
1148 llist_add_to(&G.remoteHosts, rh);
1149 }
1150#endif
1151
Denis Vlasenko4998c812007-02-14 20:51:46 +00001152#ifdef SYSLOGD_MARK
Denis Vlasenko0d948202008-12-09 22:53:31 +00001153 if (opts & OPT_mark) // -m
Denis Vlasenko5e892ba2007-03-15 19:50:46 +00001154 G.markInterval = xatou_range(opt_m, 0, INT_MAX/60) * 60;
Denis Vlasenko4998c812007-02-14 20:51:46 +00001155#endif
Denis Vlasenko0d948202008-12-09 22:53:31 +00001156 //if (opts & OPT_nofork) // -n
1157 //if (opts & OPT_outfile) // -O
1158 if (opts & OPT_loglevel) // -l
Denis Vlasenko5e892ba2007-03-15 19:50:46 +00001159 G.logLevel = xatou_range(opt_l, 1, 8);
Denis Vlasenko0d948202008-12-09 22:53:31 +00001160 //if (opts & OPT_small) // -S
Denis Vlasenko14c19402006-09-30 19:20:00 +00001161#if ENABLE_FEATURE_ROTATE_LOGFILE
Denis Vlasenko0d948202008-12-09 22:53:31 +00001162 if (opts & OPT_filesize) // -s
Denis Vlasenko5e892ba2007-03-15 19:50:46 +00001163 G.logFileSize = xatou_range(opt_s, 0, INT_MAX/1024) * 1024;
Denis Vlasenko0d948202008-12-09 22:53:31 +00001164 if (opts & OPT_rotatecnt) // -b
Denis Vlasenko5e892ba2007-03-15 19:50:46 +00001165 G.logFileRotate = xatou_range(opt_b, 0, 99);
Denis Vlasenko14c19402006-09-30 19:20:00 +00001166#endif
Denis Vlasenko14c19402006-09-30 19:20:00 +00001167#if ENABLE_FEATURE_IPC_SYSLOG
Denis Vlasenko218f2f42007-01-24 22:02:01 +00001168 if (opt_C) // -Cn
Denis Vlasenko5e892ba2007-03-15 19:50:46 +00001169 G.shm_size = xatoul_range(opt_C, 4, INT_MAX/1024) * 1024;
Denis Vlasenko14c19402006-09-30 19:20:00 +00001170#endif
Eric Andersen4ed17822000-12-11 19:28:29 +00001171 /* If they have not specified remote logging, then log locally */
Denis Vlasenko0d948202008-12-09 22:53:31 +00001172 if (ENABLE_FEATURE_REMOTE_LOG && !(opts & OPT_remotelog)) // -R
Denis Vlasenkoc12f5302006-10-06 09:49:47 +00001173 option_mask32 |= OPT_locallog;
Sergey Naumov73ef15c2011-04-10 07:34:27 +02001174#if ENABLE_FEATURE_SYSLOGD_CFG
1175 parse_syslogdcfg(opt_f);
1176#endif
Mark Whitley6317c4b2001-03-12 22:51:50 +00001177
Erik Andersene49d5ec2000-02-08 19:58:47 +00001178 /* Store away localhost's name before the fork */
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001179 G.hostname = safe_gethostname();
1180 *strchrnul(G.hostname, '.') = '\0';
Erik Andersene49d5ec2000-02-08 19:58:47 +00001181
Denis Vlasenko0d948202008-12-09 22:53:31 +00001182 if (!(opts & OPT_nofork)) {
Denis Vlasenko5a142022007-03-26 13:20:54 +00001183 bb_daemonize_or_rexec(DAEMON_CHDIR_ROOT, argv);
Eric Andersen35e643b2003-07-28 07:40:39 +00001184 }
Anthony G. Basile12677ac2012-12-10 14:49:39 -05001185
Denys Vlasenkoa4252422010-01-29 16:44:48 +01001186 //umask(0); - why??
Denys Vlasenko50596532019-03-17 19:47:52 +01001187 write_pidfile_std_path_and_ext("syslogd");
Anthony G. Basile12677ac2012-12-10 14:49:39 -05001188
Denis Vlasenkoceab8702007-01-04 17:57:54 +00001189 do_syslogd();
Denis Vlasenko8a820b22007-01-06 22:08:53 +00001190 /* return EXIT_SUCCESS; */
Eric Andersen3843e961999-11-25 07:30:46 +00001191}
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +00001192
1193/* Clean up. Needed because we are included from syslogd_and_logger.c */
Denis Vlasenko0d948202008-12-09 22:53:31 +00001194#undef DEBUG
1195#undef SYSLOGD_MARK
1196#undef SYSLOGD_WRLOCK
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +00001197#undef G
1198#undef GLOBALS
1199#undef INIT_G
1200#undef OPTION_STR
1201#undef OPTION_DECL
1202#undef OPTION_PARAM