blob: a6a4ff25c69e035707d396f8e1f25fa62f6f4fd4 [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 */
Eric Andersenb99df0f1999-11-24 09:04:33 +000015
Pere Orga5bc8c002011-04-11 03:29:49 +020016//usage:#define syslogd_trivial_usage
17//usage: "[OPTIONS]"
18//usage:#define syslogd_full_usage "\n\n"
Denys Vlasenkoaeab42e2011-05-25 11:58:56 +020019//usage: "System logging utility\n"
20//usage: IF_NOT_FEATURE_SYSLOGD_CFG(
21//usage: "(this version of syslogd ignores /etc/syslog.conf)\n"
22//usage: )
Pere Orga5bc8c002011-04-11 03:29:49 +020023//usage: "\n -n Run in foreground"
Denys Vlasenkoaeab42e2011-05-25 11:58:56 +020024//usage: "\n -O FILE Log to FILE (default:/var/log/messages)"
25//usage: "\n -l N Log only messages more urgent than prio N (1-8)"
26//usage: "\n -S Smaller output"
Pere Orga5bc8c002011-04-11 03:29:49 +020027//usage: IF_FEATURE_ROTATE_LOGFILE(
Denys Vlasenkoaeab42e2011-05-25 11:58:56 +020028//usage: "\n -s SIZE Max size (KB) before rotation (default:200KB, 0=off)"
29//usage: "\n -b N N rotated logs to keep (default:1, max=99, 0=purge)"
30//usage: )
Pere Orga5bc8c002011-04-11 03:29:49 +020031//usage: IF_FEATURE_REMOTE_LOG(
maxwen27116ba2015-08-14 21:41:28 +020032//usage: "\n -R HOST[:PORT] Log to HOST:PORT (default PORT:514)"
Denys Vlasenkoaeab42e2011-05-25 11:58:56 +020033//usage: "\n -L Log locally and via network (default is network only if -R)"
34//usage: )
Pere Orga5bc8c002011-04-11 03:29:49 +020035//usage: IF_FEATURE_SYSLOGD_DUP(
Denys Vlasenkoaeab42e2011-05-25 11:58:56 +020036//usage: "\n -D Drop duplicates"
37//usage: )
Pere Orga5bc8c002011-04-11 03:29:49 +020038//usage: IF_FEATURE_IPC_SYSLOG(
Pere Orga5bc8c002011-04-11 03:29:49 +020039/* NB: -Csize shouldn't have space (because size is optional) */
Denys Vlasenkoaeab42e2011-05-25 11:58:56 +020040//usage: "\n -C[size_kb] Log to shared mem buffer (use logread to read it)"
41//usage: )
42//usage: IF_FEATURE_SYSLOGD_CFG(
43//usage: "\n -f FILE Use FILE as config (default:/etc/syslog.conf)"
44//usage: )
Pere Orga5bc8c002011-04-11 03:29:49 +020045/* //usage: "\n -m MIN Minutes between MARK lines (default:20, 0=off)" */
Tanguy Pruvot823694d2012-11-18 13:20:29 +010046//usage: IF_FEATURE_KMSG_SYSLOG(
47//usage: "\n -K Log to kernel printk buffer (use dmesg to read it)"
48//usage: )
Pere Orga5bc8c002011-04-11 03:29:49 +020049//usage:
50//usage:#define syslogd_example_usage
51//usage: "$ syslogd -R masterlog:514\n"
52//usage: "$ syslogd -R 192.168.1.1:601\n"
53
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +000054/*
55 * Done in syslogd_and_logger.c:
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000056#include "libbb.h"
Bernhard Reutner-Fischerf4701962008-01-27 12:50:12 +000057#define SYSLOG_NAMES
58#define SYSLOG_NAMES_CONST
59#include <syslog.h>
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +000060*/
maxwen27116ba2015-08-14 21:41:28 +020061#ifndef _PATH_LOG
62#define _PATH_LOG "/dev/log"
63#endif
Bernhard Reutner-Fischerf4701962008-01-27 12:50:12 +000064
Erik Andersen983b51b2000-04-04 18:14:25 +000065#include <sys/un.h>
Eric Andersenced2cef2000-07-20 23:41:24 +000066#include <sys/uio.h>
Eric Andersen3843e961999-11-25 07:30:46 +000067
Denis Vlasenko5e892ba2007-03-15 19:50:46 +000068#if ENABLE_FEATURE_REMOTE_LOG
69#include <netinet/in.h>
Denis Vlasenko4998c812007-02-14 20:51:46 +000070#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +000071
Denis Vlasenko5e892ba2007-03-15 19:50:46 +000072#if ENABLE_FEATURE_IPC_SYSLOG
73#include <sys/ipc.h>
74#include <sys/sem.h>
75#include <sys/shm.h>
76#endif
Denis Vlasenko1decd0e2006-09-30 19:17:40 +000077
Denis Vlasenko5e892ba2007-03-15 19:50:46 +000078
79#define DEBUG 0
80
Denis Vlasenko4f93cde2007-03-20 20:03:03 +000081/* MARK code is not very useful, is bloat, and broken:
82 * can deadlock if alarmed to make MARK while writing to IPC buffer
83 * (semaphores are down but do_mark routine tries to down them again) */
84#undef SYSLOGD_MARK
85
Denis Vlasenko0d948202008-12-09 22:53:31 +000086/* Write locking does not seem to be useful either */
87#undef SYSLOGD_WRLOCK
88
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +000089enum {
Janne Kiviluotoc897dfe2010-03-31 15:58:58 +020090 MAX_READ = CONFIG_FEATURE_SYSLOGD_READ_BUFFER_SIZE,
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +000091 DNS_WAIT_SEC = 2 * 60,
92};
Denis Vlasenko4f93cde2007-03-20 20:03:03 +000093
94/* Semaphore operation structures */
Denis Vlasenko5e892ba2007-03-15 19:50:46 +000095struct shbuf_ds {
Denis Vlasenko5f1b1492007-08-12 21:33:06 +000096 int32_t size; /* size of data - 1 */
Denis Vlasenko4f93cde2007-03-20 20:03:03 +000097 int32_t tail; /* end of message list */
98 char data[1]; /* data/messages */
99};
100
Thomas Geuligd2f77792010-02-28 13:01:59 +0100101#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
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200110typedef struct logFile_t {
111 const char *path;
112 int fd;
113#if ENABLE_FEATURE_ROTATE_LOGFILE
114 unsigned size;
115 uint8_t isRegular;
116#endif
117} logFile_t;
118
119#if ENABLE_FEATURE_SYSLOGD_CFG
120typedef struct logRule_t {
121 uint8_t enabled_facility_priomap[LOG_NFACILITIES];
122 struct logFile_t *file;
123 struct logRule_t *next;
124} logRule_t;
125#endif
126
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000127/* Allows us to have smaller initializer. Ugly. */
128#define GLOBALS \
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200129 logFile_t logFile; \
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000130 /* interval between marks in seconds */ \
131 /*int markInterval;*/ \
132 /* level of messages to be logged */ \
133 int logLevel; \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000134IF_FEATURE_ROTATE_LOGFILE( \
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000135 /* max size of file before rotation */ \
136 unsigned logFileSize; \
137 /* number of rotated message files */ \
138 unsigned logFileRotate; \
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000139) \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000140IF_FEATURE_IPC_SYSLOG( \
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000141 int shmid; /* ipc shared memory id */ \
142 int s_semid; /* ipc semaphore id */ \
143 int shm_size; \
144 struct sembuf SMwup[1]; \
145 struct sembuf SMwdn[3]; \
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200146) \
147IF_FEATURE_SYSLOGD_CFG( \
148 logRule_t *log_rules; \
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100149) \
150IF_FEATURE_KMSG_SYSLOG( \
151 int kmsgfd; \
152 int primask; \
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000153)
154
155struct init_globals {
156 GLOBALS
157};
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000158
159struct globals {
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000160 GLOBALS
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000161
162#if ENABLE_FEATURE_REMOTE_LOG
Thomas Geuligd2f77792010-02-28 13:01:59 +0100163 llist_t *remoteHosts;
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000164#endif
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000165#if ENABLE_FEATURE_IPC_SYSLOG
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000166 struct shbuf_ds *shbuf;
167#endif
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000168 time_t last_log_time;
Denis Vlasenko6f1713f2008-02-25 23:23:58 +0000169 /* localhost's name. We print only first 64 chars */
170 char *hostname;
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000171
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000172 /* We recv into recvbuf... */
Denis Vlasenkobe048f22008-02-26 20:13:52 +0000173 char recvbuf[MAX_READ * (1 + ENABLE_FEATURE_SYSLOGD_DUP)];
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000174 /* ...then copy to parsebuf, escaping control chars */
175 /* (can grow x2 max) */
176 char parsebuf[MAX_READ*2];
177 /* ...then sprintf into printbuf, adding timestamp (15 chars),
178 * host (64), fac.prio (20) to the message */
179 /* (growth by: 15 + 64 + 20 + delims = ~110) */
180 char printbuf[MAX_READ*2 + 128];
181};
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000182
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000183static const struct init_globals init_data = {
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200184 .logFile = {
185 .path = "/var/log/messages",
186 .fd = -1,
187 },
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000188#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
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000196#if ENABLE_FEATURE_IPC_SYSLOG
197 .shmid = -1,
198 .s_semid = -1,
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200199 .shm_size = ((CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE)*1024), /* default shm size */
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000200 .SMwup = { {1, -1, IPC_NOWAIT} },
201 .SMwdn = { {0, 0}, {1, 0}, {1, +1} },
202#endif
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000203};
204
205#define G (*ptr_to_globals)
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000206#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000207 SET_PTR_TO_GLOBALS(memcpy(xzalloc(sizeof(G)), &init_data, sizeof(init_data))); \
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000208} while (0)
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000209
210
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000211/* Options */
Denis Vlasenko14c19402006-09-30 19:20:00 +0000212enum {
213 OPTBIT_mark = 0, // -m
214 OPTBIT_nofork, // -n
215 OPTBIT_outfile, // -O
216 OPTBIT_loglevel, // -l
217 OPTBIT_small, // -S
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000218 IF_FEATURE_ROTATE_LOGFILE(OPTBIT_filesize ,) // -s
219 IF_FEATURE_ROTATE_LOGFILE(OPTBIT_rotatecnt ,) // -b
220 IF_FEATURE_REMOTE_LOG( OPTBIT_remotelog ,) // -R
221 IF_FEATURE_REMOTE_LOG( OPTBIT_locallog ,) // -L
222 IF_FEATURE_IPC_SYSLOG( OPTBIT_circularlog,) // -C
223 IF_FEATURE_SYSLOGD_DUP( OPTBIT_dup ,) // -D
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200224 IF_FEATURE_SYSLOGD_CFG( OPTBIT_cfg ,) // -f
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100225 IF_FEATURE_KMSG_SYSLOG( OPTBIT_kmsg ,) // -K
Denis Vlasenko14c19402006-09-30 19:20:00 +0000226
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 ,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000232 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,
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200238 OPT_cfg = IF_FEATURE_SYSLOGD_CFG( (1 << OPTBIT_cfg )) + 0,
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100239 OPT_kmsg = IF_FEATURE_KMSG_SYSLOG( (1 << OPTBIT_kmsg )) + 0,
240
Denis Vlasenko14c19402006-09-30 19:20:00 +0000241};
242#define OPTION_STR "m:nO:l:S" \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000243 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::") \
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200248 IF_FEATURE_SYSLOGD_DUP( "D" ) \
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100249 IF_FEATURE_SYSLOGD_CFG( "f:" ) \
250 IF_FEATURE_KMSG_SYSLOG( "K" )
Denis Vlasenko14c19402006-09-30 19:20:00 +0000251#define OPTION_DECL *opt_m, *opt_l \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000252 IF_FEATURE_ROTATE_LOGFILE(,*opt_s) \
253 IF_FEATURE_ROTATE_LOGFILE(,*opt_b) \
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200254 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 \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000257 IF_FEATURE_ROTATE_LOGFILE(,&opt_s) \
258 IF_FEATURE_ROTATE_LOGFILE(,&opt_b) \
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100259 IF_FEATURE_REMOTE_LOG( ,&remoteAddrList) \
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200260 IF_FEATURE_IPC_SYSLOG( ,&opt_C) \
261 IF_FEATURE_SYSLOGD_CFG( ,&opt_f)
Eric Andersen871d93c2002-09-17 20:06:29 +0000262
Eric Andersen871d93c2002-09-17 20:06:29 +0000263
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200264#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 /* tok[0] set of selectors */
289 /* tok[1] file name */
290 /* tok[2] has to be NULL */
291 char *tok[3];
292 parser_t *parser;
293
294 parser = config_open2(file ? file : "/etc/syslog.conf",
Tanguy Pruvot29d8ebe2011-10-29 15:15:34 +0200295 file ? xfopen_for_read : fopen_for_read);
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200296 if (!parser)
297 /* didn't find default /etc/syslog.conf */
298 /* proceed as if we built busybox without config support */
299 return;
300
301 /* use ptr to ptr to avoid checking whether head was initialized */
302 pp_rule = &G.log_rules;
303 /* iterate through lines of config, skipping comments */
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 /* unexpected trailing token? */
Denys Vlasenko0288b272011-04-16 20:15:14 +0200309 if (tok[2])
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200310 goto cfgerr;
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200311
312 cur_rule = *pp_rule = xzalloc(sizeof(*cur_rule));
313
314 cur_selector = tok[0];
315 /* iterate through selectors: "kern.info;kern.!err;..." */
316 do {
317 const CODE *code;
318 char *next_selector;
319 uint8_t negated_prio; /* "kern.!err" */
320 uint8_t single_prio; /* "kern.=err" */
321 uint32_t facmap; /* bitmap of enabled facilities */
322 uint8_t primap; /* bitmap of enabled priorities */
323 unsigned i;
324
325 next_selector = strchr(cur_selector, ';');
326 if (next_selector)
327 *next_selector++ = '\0';
328
329 t = strchr(cur_selector, '.');
Denys Vlasenko0288b272011-04-16 20:15:14 +0200330 if (!t)
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200331 goto cfgerr;
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200332 *t++ = '\0'; /* separate facility from priority */
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 /* parse priority */
346 if (*t == '*')
347 primap = 0xff; /* all 8 log levels enabled */
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 /* ensure we take "enabled_facility_priomap[fac] &= 0" branch below */
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 /* parse facility */
372 if (*cur_selector == '*')
373 facmap = (1<<LOG_NFACILITIES) - 1;
374 else {
375 char *next_facility;
376 facmap = 0;
377 t = cur_selector;
378 /* iterate through facilities: "kern,daemon.<priospec>" */
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 /* "mark" is not a real facility, skip it */
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 /* merge result with previous selectors */
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
Sergey Naumove9c8bed2011-04-16 19:36:15 +0200406 /* check whether current file name was mentioned in previous rules or
407 * as global logfile (G.logFile).
408 */
409 if (strcmp(G.logFile.path, tok[1]) == 0) {
410 cur_rule->file = &G.logFile;
411 goto found;
412 }
413 /* temporarily use cur_rule as iterator, but *pp_rule still points
414 * to currently processing rule entry.
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200415 * NOTE: *pp_rule points to the current (and last in the list) rule.
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 /* found - reuse the same file structure */
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:
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100435 bb_error_msg_and_die("error in '%s' at line %d",
436 file ? file : "/etc/syslog.conf",
437 parser->lineno);
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200438}
439#endif
440
Mark Whitley6317c4b2001-03-12 22:51:50 +0000441/* circular buffer variables/structures */
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000442#if ENABLE_FEATURE_IPC_SYSLOG
443
Eric Andersend4a5e252003-12-19 11:32:14 +0000444#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
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +0000449/* our shared key (syslogd.c and logread.c must be in sync) */
450enum { KEY_ID = 0x414e4547 }; /* "GENA" */
Mark Whitley6317c4b2001-03-12 22:51:50 +0000451
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +0000452static void ipcsyslog_cleanup(void)
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000453{
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000454 if (G.shmid != -1) {
455 shmdt(G.shbuf);
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000456 }
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000457 if (G.shmid != -1) {
458 shmctl(G.shmid, IPC_RMID, NULL);
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000459 }
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000460 if (G.s_semid != -1) {
461 semctl(G.s_semid, 0, IPC_RMID, 0);
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000462 }
Mark Whitley6317c4b2001-03-12 22:51:50 +0000463}
464
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +0000465static void ipcsyslog_init(void)
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000466{
Denis Vlasenkoa9b60e92007-01-04 17:59:59 +0000467 if (DEBUG)
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +0000468 printf("shmget(%x, %d,...)\n", (int)KEY_ID, G.shm_size);
Denis Vlasenkoa9b60e92007-01-04 17:59:59 +0000469
Denis Vlasenkoa1120a82007-08-14 10:27:56 +0000470 G.shmid = shmget(KEY_ID, G.shm_size, IPC_CREAT | 0644);
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000471 if (G.shmid == -1) {
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000472 bb_perror_msg_and_die("shmget");
473 }
Mark Whitley6317c4b2001-03-12 22:51:50 +0000474
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000475 G.shbuf = shmat(G.shmid, NULL, 0);
Denis Vlasenko4e9ca752008-01-07 15:58:02 +0000476 if (G.shbuf == (void*) -1L) { /* shmat has bizarre error return */
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000477 bb_perror_msg_and_die("shmat");
478 }
Mark Whitley6317c4b2001-03-12 22:51:50 +0000479
Denis Vlasenko5f1b1492007-08-12 21:33:06 +0000480 memset(G.shbuf, 0, G.shm_size);
481 G.shbuf->size = G.shm_size - offsetof(struct shbuf_ds, data) - 1;
482 /*G.shbuf->tail = 0;*/
Mark Whitley6317c4b2001-03-12 22:51:50 +0000483
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200484 /* we'll trust the OS to set initial semval to 0 (let's hope) */
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000485 G.s_semid = semget(KEY_ID, 2, IPC_CREAT | IPC_EXCL | 1023);
486 if (G.s_semid == -1) {
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000487 if (errno == EEXIST) {
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000488 G.s_semid = semget(KEY_ID, 2, 0);
489 if (G.s_semid != -1)
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000490 return;
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000491 }
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000492 bb_perror_msg_and_die("semget");
Mark Whitley6317c4b2001-03-12 22:51:50 +0000493 }
494}
495
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000496/* Write message to shared mem buffer */
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200497static void log_to_shmem(const char *msg)
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000498{
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000499 int old_tail, new_tail;
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200500 int len;
Mark Whitley6317c4b2001-03-12 22:51:50 +0000501
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000502 if (semop(G.s_semid, G.SMwdn, 3) == -1) {
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000503 bb_perror_msg_and_die("SMwdn");
504 }
Mark Whitley6317c4b2001-03-12 22:51:50 +0000505
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000506 /* Circular Buffer Algorithm:
Mark Whitley6317c4b2001-03-12 22:51:50 +0000507 * --------------------------
Denis Vlasenko150f4022007-01-13 21:06:21 +0000508 * tail == position where to store next syslog message.
Denis Vlasenko5f1b1492007-08-12 21:33:06 +0000509 * tail's max value is (shbuf->size - 1)
510 * Last byte of buffer is never used and remains NUL.
Mark Whitley6317c4b2001-03-12 22:51:50 +0000511 */
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200512 len = strlen(msg) + 1; /* length with NUL included */
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000513 again:
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000514 old_tail = G.shbuf->tail;
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000515 new_tail = old_tail + len;
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000516 if (new_tail < G.shbuf->size) {
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000517 /* store message, set new tail */
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000518 memcpy(G.shbuf->data + old_tail, msg, len);
519 G.shbuf->tail = new_tail;
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000520 } else {
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000521 /* k == available buffer space ahead of old tail */
Denis Vlasenko5f1b1492007-08-12 21:33:06 +0000522 int k = G.shbuf->size - old_tail;
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000523 /* copy what fits to the end of buffer, and repeat */
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000524 memcpy(G.shbuf->data + old_tail, msg, k);
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000525 msg += k;
526 len -= k;
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000527 G.shbuf->tail = 0;
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000528 goto again;
Mark Whitley6317c4b2001-03-12 22:51:50 +0000529 }
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000530 if (semop(G.s_semid, G.SMwup, 1) == -1) {
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000531 bb_perror_msg_and_die("SMwup");
532 }
Denis Vlasenkoa9b60e92007-01-04 17:59:59 +0000533 if (DEBUG)
Denis Vlasenko5f1b1492007-08-12 21:33:06 +0000534 printf("tail:%d\n", G.shbuf->tail);
Mark Whitley6317c4b2001-03-12 22:51:50 +0000535}
Rob Landley028ba282006-08-28 20:16:42 +0000536#else
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100537static void ipcsyslog_cleanup(void) {}
538static void ipcsyslog_init(void) {}
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000539void log_to_shmem(const char *msg);
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000540#endif /* FEATURE_IPC_SYSLOG */
541
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100542#if ENABLE_FEATURE_KMSG_SYSLOG
543static void kmsg_init(void)
544{
545 G.kmsgfd = xopen("/dev/kmsg", O_WRONLY);
546
547 /*
548 * kernel < 3.5 expects single char printk KERN_* priority prefix,
549 * from 3.5 onwards the full syslog facility/priority format is supported
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/* Write message to /dev/kmsg */
564static void log_to_kmsg(int pri, const char *msg)
565{
566 /*
567 * kernel < 3.5 expects single char printk KERN_* priority prefix,
568 * from 3.5 onwards the full syslog facility/priority format is supported
569 */
570 pri &= G.primask;
571
572 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 /* FEATURE_KMSG_SYSLOG */
579
Erik Andersen983b51b2000-04-04 18:14:25 +0000580/* Print a message to the log file. */
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200581static void log_locally(time_t now, char *msg, logFile_t *log_file)
Eric Andersen3843e961999-11-25 07:30:46 +0000582{
Denis Vlasenko0d948202008-12-09 22:53:31 +0000583#ifdef SYSLOGD_WRLOCK
Denis Vlasenkob8934972007-01-04 18:02:32 +0000584 struct flock fl;
Denis Vlasenko0d948202008-12-09 22:53:31 +0000585#endif
Denis Vlasenkob8934972007-01-04 18:02:32 +0000586 int len = strlen(msg);
Eric Andersen3843e961999-11-25 07:30:46 +0000587
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200588 if (log_file->fd >= 0) {
Denis Vlasenkod9415d62009-03-02 14:26:28 +0000589 /* Reopen log file every second. This allows admin
590 * to delete the file and not worry about restarting us.
591 * This costs almost nothing since it happens
592 * _at most_ once a second.
593 */
Denis Vlasenko4dada742008-01-03 12:13:42 +0000594 if (!now)
595 now = time(NULL);
596 if (G.last_log_time != now) {
Denis Vlasenkod9415d62009-03-02 14:26:28 +0000597 G.last_log_time = now;
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200598 close(log_file->fd);
Denis Vlasenkob8934972007-01-04 18:02:32 +0000599 goto reopen;
600 }
601 } else {
Denis Vlasenkob8934972007-01-04 18:02:32 +0000602 reopen:
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200603 log_file->fd = open(log_file->path, O_WRONLY | O_CREAT
Denis Vlasenkod9415d62009-03-02 14:26:28 +0000604 | O_NOCTTY | O_APPEND | O_NONBLOCK,
605 0666);
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200606 if (log_file->fd < 0) {
Denis Vlasenkob8934972007-01-04 18:02:32 +0000607 /* cannot open logfile? - print to /dev/console then */
Denis Vlasenko70ab28f2007-11-18 05:43:05 +0000608 int fd = device_open(DEV_CONSOLE, O_WRONLY | O_NOCTTY | O_NONBLOCK);
Denis Vlasenkob8934972007-01-04 18:02:32 +0000609 if (fd < 0)
610 fd = 2; /* then stderr, dammit */
611 full_write(fd, msg, len);
612 if (fd != 2)
613 close(fd);
614 return;
615 }
616#if ENABLE_FEATURE_ROTATE_LOGFILE
Denis Vlasenkobae79482007-01-09 23:42:43 +0000617 {
Denis Vlasenko5f1b1492007-08-12 21:33:06 +0000618 struct stat statf;
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200619 log_file->isRegular = (fstat(log_file->fd, &statf) == 0 && S_ISREG(statf.st_mode));
Denis Vlasenko5f1b1492007-08-12 21:33:06 +0000620 /* bug (mostly harmless): can wrap around if file > 4gb */
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200621 log_file->size = statf.st_size;
Denis Vlasenkobae79482007-01-09 23:42:43 +0000622 }
Denis Vlasenkob8934972007-01-04 18:02:32 +0000623#endif
624 }
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000625
Denis Vlasenko0d948202008-12-09 22:53:31 +0000626#ifdef SYSLOGD_WRLOCK
Denis Vlasenkob8934972007-01-04 18:02:32 +0000627 fl.l_whence = SEEK_SET;
628 fl.l_start = 0;
629 fl.l_len = 1;
630 fl.l_type = F_WRLCK;
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200631 fcntl(log_file->fd, F_SETLKW, &fl);
Denis Vlasenko0d948202008-12-09 22:53:31 +0000632#endif
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000633
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000634#if ENABLE_FEATURE_ROTATE_LOGFILE
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200635 if (G.logFileSize && log_file->isRegular && log_file->size > G.logFileSize) {
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000636 if (G.logFileRotate) { /* always 0..99 */
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200637 int i = strlen(log_file->path) + 3 + 1;
Denis Vlasenkob8934972007-01-04 18:02:32 +0000638 char oldFile[i];
639 char newFile[i];
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000640 i = G.logFileRotate - 1;
Denis Vlasenkob8934972007-01-04 18:02:32 +0000641 /* rename: f.8 -> f.9; f.7 -> f.8; ... */
642 while (1) {
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200643 sprintf(newFile, "%s.%d", log_file->path, i);
Denis Vlasenkob8934972007-01-04 18:02:32 +0000644 if (i == 0) break;
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200645 sprintf(oldFile, "%s.%d", log_file->path, --i);
Denis Vlasenko69dc3252008-05-24 21:03:53 +0000646 /* ignore errors - file might be missing */
647 rename(oldFile, newFile);
Eric Andersen29c77f72003-10-09 09:43:18 +0000648 }
Denis Vlasenkob8934972007-01-04 18:02:32 +0000649 /* newFile == "f.0" now */
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200650 rename(log_file->path, newFile);
Tanguy Pruvot29d8ebe2011-10-29 15:15:34 +0200651 /* Incredibly, if F and F.0 are hardlinks, POSIX
652 * _demands_ that rename returns 0 but does not
653 * remove F!!!
654 * (hardlinked F/F.0 pair was observed after
655 * power failure during rename()).
656 * Ensure old file is gone:
657 */
658 unlink(log_file->path);
Denis Vlasenko0d948202008-12-09 22:53:31 +0000659#ifdef SYSLOGD_WRLOCK
Denis Vlasenkob8934972007-01-04 18:02:32 +0000660 fl.l_type = F_UNLCK;
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200661 fcntl(log_file->fd, F_SETLKW, &fl);
Denis Vlasenko0d948202008-12-09 22:53:31 +0000662#endif
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200663 close(log_file->fd);
Denis Vlasenkob8934972007-01-04 18:02:32 +0000664 goto reopen;
Eric Andersen29c77f72003-10-09 09:43:18 +0000665 }
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200666 ftruncate(log_file->fd, 0);
Eric Andersen3843e961999-11-25 07:30:46 +0000667 }
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200668 log_file->size +=
Denis Vlasenkob8934972007-01-04 18:02:32 +0000669#endif
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200670 full_write(log_file->fd, msg, len);
Denis Vlasenko0d948202008-12-09 22:53:31 +0000671#ifdef SYSLOGD_WRLOCK
Denis Vlasenkob8934972007-01-04 18:02:32 +0000672 fl.l_type = F_UNLCK;
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200673 fcntl(log_file->fd, F_SETLKW, &fl);
Denis Vlasenko0d948202008-12-09 22:53:31 +0000674#endif
Eric Andersenb99df0f1999-11-24 09:04:33 +0000675}
676
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000677static void parse_fac_prio_20(int pri, char *res20)
Eric Andersen3843e961999-11-25 07:30:46 +0000678{
Denis Vlasenko3c8b5ba2007-06-04 18:23:59 +0000679 const CODE *c_pri, *c_fac;
Eric Andersenb99df0f1999-11-24 09:04:33 +0000680
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200681 c_fac = find_by_val(LOG_FAC(pri) << 3, facilitynames);
682 if (c_fac) {
683 c_pri = find_by_val(LOG_PRI(pri), prioritynames);
684 if (c_pri) {
685 snprintf(res20, 20, "%s.%s", c_fac->c_name, c_pri->c_name);
686 return;
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000687 }
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000688 }
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200689 snprintf(res20, 20, "<%d>", pri);
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000690}
Eric Andersen3843e961999-11-25 07:30:46 +0000691
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000692/* len parameter is used only for "is there a timestamp?" check.
Denis Vlasenko018b1552007-11-06 01:38:46 +0000693 * NB: some callers cheat and supply len==0 when they know
694 * that there is no timestamp, short-circuiting the test. */
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000695static void timestamp_and_log(int pri, char *msg, int len)
696{
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000697 char *timestamp;
Denis Vlasenko4dada742008-01-03 12:13:42 +0000698 time_t now;
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000699
Denis Vlasenko574c3162009-04-22 02:53:02 +0000700 /* Jan 18 00:11:22 msg... */
701 /* 01234567890123456 */
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000702 if (len < 16 || msg[3] != ' ' || msg[6] != ' '
703 || msg[9] != ':' || msg[12] != ':' || msg[15] != ' '
704 ) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000705 time(&now);
Denis Vlasenko4dada742008-01-03 12:13:42 +0000706 timestamp = ctime(&now) + 4; /* skip day of week */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000707 } else {
Denis Vlasenko4dada742008-01-03 12:13:42 +0000708 now = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000709 timestamp = msg;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000710 msg += 16;
711 }
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000712 timestamp[15] = '\0';
Eric Andersen3843e961999-11-25 07:30:46 +0000713
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100714 if (option_mask32 & OPT_kmsg) {
715 log_to_kmsg(pri, msg);
716 return;
717 }
718
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000719 if (option_mask32 & OPT_small)
720 sprintf(G.printbuf, "%s %s\n", timestamp, msg);
721 else {
722 char res[20];
723 parse_fac_prio_20(pri, res);
Denis Vlasenko6f1713f2008-02-25 23:23:58 +0000724 sprintf(G.printbuf, "%s %.64s %s %s\n", timestamp, G.hostname, res, msg);
Eric Andersenbf2b8ae2000-12-08 19:52:01 +0000725 }
Denis Vlasenko4dada742008-01-03 12:13:42 +0000726
727 /* Log message locally (to file or shared mem) */
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200728#if ENABLE_FEATURE_SYSLOGD_CFG
729 {
730 bool match = 0;
731 logRule_t *rule;
732 uint8_t facility = LOG_FAC(pri);
733 uint8_t prio_bit = 1 << LOG_PRI(pri);
734
735 for (rule = G.log_rules; rule; rule = rule->next) {
736 if (rule->enabled_facility_priomap[facility] & prio_bit) {
737 log_locally(now, G.printbuf, rule->file);
738 match = 1;
739 }
740 }
741 if (match)
742 return;
743 }
744#endif
745 if (LOG_PRI(pri) < G.logLevel) {
746#if ENABLE_FEATURE_IPC_SYSLOG
747 if ((option_mask32 & OPT_circularlog) && G.shbuf) {
Tanguy Pruvot29d8ebe2011-10-29 15:15:34 +0200748 log_to_shmem(G.printbuf);
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200749 return;
750 }
751#endif
752 log_locally(now, G.printbuf, &G.logFile);
753 }
Denis Vlasenko4dada742008-01-03 12:13:42 +0000754}
755
756static void timestamp_and_log_internal(const char *msg)
757{
Denis Vlasenko0d948202008-12-09 22:53:31 +0000758 /* -L, or no -R */
Denis Vlasenko4dada742008-01-03 12:13:42 +0000759 if (ENABLE_FEATURE_REMOTE_LOG && !(option_mask32 & OPT_locallog))
760 return;
761 timestamp_and_log(LOG_SYSLOG | LOG_INFO, (char*)msg, 0);
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000762}
Glenn L McGrath73ebb882004-09-14 18:12:13 +0000763
Denis Vlasenko75cddd82008-02-13 09:19:14 +0000764/* tmpbuf[len] is a NUL byte (set by caller), but there can be other,
765 * embedded NULs. Split messages on each of these NULs, parse prio,
766 * escape control chars and log each locally. */
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000767static void split_escape_and_log(char *tmpbuf, int len)
768{
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000769 char *p = tmpbuf;
770
771 tmpbuf += len;
772 while (p < tmpbuf) {
773 char c;
Denis Vlasenko4f93cde2007-03-20 20:03:03 +0000774 char *q = G.parsebuf;
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000775 int pri = (LOG_USER | LOG_NOTICE);
776
777 if (*p == '<') {
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000778 /* Parse the magic priority number */
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000779 pri = bb_strtou(p + 1, &p, 10);
Denis Vlasenko018b1552007-11-06 01:38:46 +0000780 if (*p == '>')
781 p++;
782 if (pri & ~(LOG_FACMASK | LOG_PRIMASK))
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000783 pri = (LOG_USER | LOG_NOTICE);
Denis Vlasenko1decd0e2006-09-30 19:17:40 +0000784 }
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000785
786 while ((c = *p++)) {
787 if (c == '\n')
788 c = ' ';
Denis Vlasenko2ee028d2007-06-21 13:44:53 +0000789 if (!(c & ~0x1f) && c != '\t') {
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000790 *q++ = '^';
791 c += '@'; /* ^@, ^A, ^B... */
792 }
793 *q++ = c;
794 }
795 *q = '\0';
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000796
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000797 /* Now log it */
Sergey Naumov73ef15c2011-04-10 07:34:27 +0200798 timestamp_and_log(pri, G.parsebuf, q - G.parsebuf);
Eric Andersen7f94a5c2004-06-22 10:12:59 +0000799 }
Eric Andersen3843e961999-11-25 07:30:46 +0000800}
801
Denis Vlasenko4998c812007-02-14 20:51:46 +0000802#ifdef SYSLOGD_MARK
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000803static void do_mark(int sig)
Eric Andersen3843e961999-11-25 07:30:46 +0000804{
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000805 if (G.markInterval) {
Denis Vlasenko4dada742008-01-03 12:13:42 +0000806 timestamp_and_log_internal("-- MARK --");
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000807 alarm(G.markInterval);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000808 }
Eric Andersen3843e961999-11-25 07:30:46 +0000809}
Denis Vlasenko4998c812007-02-14 20:51:46 +0000810#endif
Eric Andersen3843e961999-11-25 07:30:46 +0000811
Denis Vlasenkod031b202007-11-10 01:28:19 +0000812/* Don't inline: prevent struct sockaddr_un to take up space on stack
813 * permanently */
814static NOINLINE int create_socket(void)
Eric Andersen3843e961999-11-25 07:30:46 +0000815{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000816 struct sockaddr_un sunx;
Denis Vlasenkod7ecd862007-09-07 13:53:32 +0000817 int sock_fd;
Denis Vlasenko6ca04442007-02-11 16:19:28 +0000818 char *dev_log_name;
Erik Andersenf13df372000-04-18 23:51:51 +0000819
Davide Cavalca9b3b9792011-01-25 02:26:03 +0100820#if ENABLE_FEATURE_SYSTEMD
821 if (sd_listen_fds() == 1)
822 return SD_LISTEN_FDS_START;
823#endif
824
Denis Vlasenkod031b202007-11-10 01:28:19 +0000825 memset(&sunx, 0, sizeof(sunx));
826 sunx.sun_family = AF_UNIX;
827
828 /* Unlink old /dev/log or object it points to. */
829 /* (if it exists, bind will fail) */
maxwen27116ba2015-08-14 21:41:28 +0200830 strcpy(sunx.sun_path, _PATH_LOG);
831 dev_log_name = xmalloc_follow_symlinks(_PATH_LOG);
Denis Vlasenkod031b202007-11-10 01:28:19 +0000832 if (dev_log_name) {
833 safe_strncpy(sunx.sun_path, dev_log_name, sizeof(sunx.sun_path));
834 free(dev_log_name);
835 }
836 unlink(sunx.sun_path);
837
838 sock_fd = xsocket(AF_UNIX, SOCK_DGRAM, 0);
839 xbind(sock_fd, (struct sockaddr *) &sunx, sizeof(sunx));
maxwen27116ba2015-08-14 21:41:28 +0200840 chmod(_PATH_LOG, 0666);
Denis Vlasenkod031b202007-11-10 01:28:19 +0000841
842 return sock_fd;
843}
844
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000845#if ENABLE_FEATURE_REMOTE_LOG
Thomas Geuligd2f77792010-02-28 13:01:59 +0100846static int try_to_resolve_remote(remoteHost_t *rh)
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000847{
Thomas Geuligd2f77792010-02-28 13:01:59 +0100848 if (!rh->remoteAddr) {
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000849 unsigned now = monotonic_sec();
850
851 /* Don't resolve name too often - DNS timeouts can be big */
Thomas Geuligd2f77792010-02-28 13:01:59 +0100852 if ((now - rh->last_dns_resolve) < DNS_WAIT_SEC)
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000853 return -1;
Thomas Geuligd2f77792010-02-28 13:01:59 +0100854 rh->last_dns_resolve = now;
855 rh->remoteAddr = host2sockaddr(rh->remoteHostname, 514);
856 if (!rh->remoteAddr)
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000857 return -1;
858 }
Daniel Dickinsone74d7982010-08-03 04:26:20 +0200859 return xsocket(rh->remoteAddr->u.sa.sa_family, SOCK_DGRAM, 0);
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000860}
861#endif
862
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000863static void do_syslogd(void) NORETURN;
Denis Vlasenkod031b202007-11-10 01:28:19 +0000864static void do_syslogd(void)
865{
866 int sock_fd;
Thomas Geuligd2f77792010-02-28 13:01:59 +0100867#if ENABLE_FEATURE_REMOTE_LOG
868 llist_t *item;
869#endif
Denis Vlasenkobe048f22008-02-26 20:13:52 +0000870#if ENABLE_FEATURE_SYSLOGD_DUP
871 int last_sz = -1;
872 char *last_buf;
873 char *recvbuf = G.recvbuf;
874#else
875#define recvbuf (G.recvbuf)
876#endif
Denis Vlasenkod031b202007-11-10 01:28:19 +0000877
Denis Vlasenko0d948202008-12-09 22:53:31 +0000878 /* Set up signal handlers (so that they interrupt read()) */
879 signal_no_SA_RESTART_empty_mask(SIGTERM, record_signo);
880 signal_no_SA_RESTART_empty_mask(SIGINT, record_signo);
881 //signal_no_SA_RESTART_empty_mask(SIGQUIT, record_signo);
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000882 signal(SIGHUP, SIG_IGN);
Denis Vlasenko4998c812007-02-14 20:51:46 +0000883#ifdef SYSLOGD_MARK
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000884 signal(SIGALRM, do_mark);
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000885 alarm(G.markInterval);
Denis Vlasenko4998c812007-02-14 20:51:46 +0000886#endif
Denis Vlasenkod031b202007-11-10 01:28:19 +0000887 sock_fd = create_socket();
Eric Andersenb99df0f1999-11-24 09:04:33 +0000888
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100889 if (option_mask32 & OPT_circularlog)
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000890 ipcsyslog_init();
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100891
892 if (option_mask32 & OPT_kmsg)
893 kmsg_init();
Eric Andersenea906502001-04-05 20:55:17 +0000894
Denis Vlasenko4dada742008-01-03 12:13:42 +0000895 timestamp_and_log_internal("syslogd started: BusyBox v" BB_VER);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000896
Denis Vlasenko0d948202008-12-09 22:53:31 +0000897 while (!bb_got_signal) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000898 ssize_t sz;
Denis Vlasenkobe048f22008-02-26 20:13:52 +0000899
900#if ENABLE_FEATURE_SYSLOGD_DUP
901 last_buf = recvbuf;
902 if (recvbuf == G.recvbuf)
903 recvbuf = G.recvbuf + MAX_READ;
904 else
905 recvbuf = G.recvbuf;
906#endif
Denis Vlasenko018b1552007-11-06 01:38:46 +0000907 read_again:
Denis Vlasenko0d948202008-12-09 22:53:31 +0000908 sz = read(sock_fd, recvbuf, MAX_READ - 1);
909 if (sz < 0) {
910 if (!bb_got_signal)
maxwen27116ba2015-08-14 21:41:28 +0200911 bb_perror_msg("read from %s", _PATH_LOG);
Denis Vlasenko0d948202008-12-09 22:53:31 +0000912 break;
913 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000914
Denis Vlasenko75cddd82008-02-13 09:19:14 +0000915 /* Drop trailing '\n' and NULs (typically there is one NUL) */
Denis Vlasenko018b1552007-11-06 01:38:46 +0000916 while (1) {
917 if (sz == 0)
918 goto read_again;
Denis Vlasenkocb12cb22007-11-06 11:34:03 +0000919 /* man 3 syslog says: "A trailing newline is added when needed".
920 * However, neither glibc nor uclibc do this:
921 * syslog(prio, "test") sends "test\0" to /dev/log,
Denis Vlasenko75cddd82008-02-13 09:19:14 +0000922 * syslog(prio, "test\n") sends "test\n\0".
Denis Vlasenkocb12cb22007-11-06 11:34:03 +0000923 * IOW: newline is passed verbatim!
924 * I take it to mean that it's syslogd's job
Denis Vlasenko75cddd82008-02-13 09:19:14 +0000925 * to make those look identical in the log files. */
Denis Vlasenkobe048f22008-02-26 20:13:52 +0000926 if (recvbuf[sz-1] != '\0' && recvbuf[sz-1] != '\n')
Denis Vlasenko018b1552007-11-06 01:38:46 +0000927 break;
928 sz--;
929 }
Denis Vlasenkobe048f22008-02-26 20:13:52 +0000930#if ENABLE_FEATURE_SYSLOGD_DUP
931 if ((option_mask32 & OPT_dup) && (sz == last_sz))
932 if (memcmp(last_buf, recvbuf, sz) == 0)
933 continue;
934 last_sz = sz;
935#endif
Denis Vlasenkoceab8702007-01-04 17:57:54 +0000936#if ENABLE_FEATURE_REMOTE_LOG
Thomas Geuligd2f77792010-02-28 13:01:59 +0100937 /* Stock syslogd sends it '\n'-terminated
938 * over network, mimic that */
939 recvbuf[sz] = '\n';
940
Denis Vlasenkod7ecd862007-09-07 13:53:32 +0000941 /* We are not modifying log messages in any way before send */
942 /* Remote site cannot trust _us_ anyway and need to do validation again */
Thomas Geuligd2f77792010-02-28 13:01:59 +0100943 for (item = G.remoteHosts; item != NULL; item = item->link) {
944 remoteHost_t *rh = (remoteHost_t *)item->data;
945
946 if (rh->remoteFD == -1) {
947 rh->remoteFD = try_to_resolve_remote(rh);
948 if (rh->remoteFD == -1)
949 continue;
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000950 }
Daniel Dickinsone74d7982010-08-03 04:26:20 +0200951
952 /* Send message to remote logger.
953 * On some errors, close and set remoteFD to -1
954 * so that DNS resolution is retried.
955 */
956 if (sendto(rh->remoteFD, recvbuf, sz+1,
957 MSG_DONTWAIT | MSG_NOSIGNAL,
958 &(rh->remoteAddr->u.sa), rh->remoteAddr->len) == -1
959 ) {
960 switch (errno) {
961 case ECONNRESET:
962 case ENOTCONN: /* paranoia */
963 case EPIPE:
964 close(rh->remoteFD);
965 rh->remoteFD = -1;
966 free(rh->remoteAddr);
967 rh->remoteAddr = NULL;
968 }
969 }
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000970 }
Denis Vlasenkod7ecd862007-09-07 13:53:32 +0000971#endif
Denis Vlasenko75cddd82008-02-13 09:19:14 +0000972 if (!ENABLE_FEATURE_REMOTE_LOG || (option_mask32 & OPT_locallog)) {
Denis Vlasenkobe048f22008-02-26 20:13:52 +0000973 recvbuf[sz] = '\0'; /* ensure it *is* NUL terminated */
974 split_escape_and_log(recvbuf, sz);
Denis Vlasenko75cddd82008-02-13 09:19:14 +0000975 }
Denis Vlasenko0d948202008-12-09 22:53:31 +0000976 } /* while (!bb_got_signal) */
977
978 timestamp_and_log_internal("syslogd exiting");
979 puts("syslogd exiting");
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100980 remove_pidfile(CONFIG_PID_FILE_PATH "/syslogd.pid");
981 ipcsyslog_cleanup();
982 if (option_mask32 & OPT_kmsg)
983 kmsg_cleanup();
Denis Vlasenko0d948202008-12-09 22:53:31 +0000984 kill_myself_with_sig(bb_got_signal);
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +0000985#undef recvbuf
Eric Andersenb99df0f1999-11-24 09:04:33 +0000986}
987
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000988int syslogd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000989int syslogd_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen3843e961999-11-25 07:30:46 +0000990{
Denis Vlasenko0d948202008-12-09 22:53:31 +0000991 int opts;
Thomas Geuligd2f77792010-02-28 13:01:59 +0100992 char OPTION_DECL;
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000993#if ENABLE_FEATURE_REMOTE_LOG
Thomas Geuligd2f77792010-02-28 13:01:59 +0100994 llist_t *remoteAddrList = NULL;
Denis Vlasenko4f2e8bc2008-01-03 12:12:27 +0000995#endif
Denis Vlasenko5e892ba2007-03-15 19:50:46 +0000996
Thomas Geuligd2f77792010-02-28 13:01:59 +0100997 INIT_G();
998
999 /* No non-option params, -R can occur multiple times */
1000 opt_complementary = "=0" IF_FEATURE_REMOTE_LOG(":R::");
Denis Vlasenko0d948202008-12-09 22:53:31 +00001001 opts = getopt32(argv, OPTION_STR, OPTION_PARAM);
Thomas Geuligd2f77792010-02-28 13:01:59 +01001002#if ENABLE_FEATURE_REMOTE_LOG
1003 while (remoteAddrList) {
1004 remoteHost_t *rh = xzalloc(sizeof(*rh));
1005 rh->remoteHostname = llist_pop(&remoteAddrList);
1006 rh->remoteFD = -1;
1007 rh->last_dns_resolve = monotonic_sec() - DNS_WAIT_SEC - 1;
1008 llist_add_to(&G.remoteHosts, rh);
1009 }
1010#endif
1011
Denis Vlasenko4998c812007-02-14 20:51:46 +00001012#ifdef SYSLOGD_MARK
Denis Vlasenko0d948202008-12-09 22:53:31 +00001013 if (opts & OPT_mark) // -m
Denis Vlasenko5e892ba2007-03-15 19:50:46 +00001014 G.markInterval = xatou_range(opt_m, 0, INT_MAX/60) * 60;
Denis Vlasenko4998c812007-02-14 20:51:46 +00001015#endif
Denis Vlasenko0d948202008-12-09 22:53:31 +00001016 //if (opts & OPT_nofork) // -n
1017 //if (opts & OPT_outfile) // -O
1018 if (opts & OPT_loglevel) // -l
Denis Vlasenko5e892ba2007-03-15 19:50:46 +00001019 G.logLevel = xatou_range(opt_l, 1, 8);
Denis Vlasenko0d948202008-12-09 22:53:31 +00001020 //if (opts & OPT_small) // -S
Denis Vlasenko14c19402006-09-30 19:20:00 +00001021#if ENABLE_FEATURE_ROTATE_LOGFILE
Denis Vlasenko0d948202008-12-09 22:53:31 +00001022 if (opts & OPT_filesize) // -s
Denis Vlasenko5e892ba2007-03-15 19:50:46 +00001023 G.logFileSize = xatou_range(opt_s, 0, INT_MAX/1024) * 1024;
Denis Vlasenko0d948202008-12-09 22:53:31 +00001024 if (opts & OPT_rotatecnt) // -b
Denis Vlasenko5e892ba2007-03-15 19:50:46 +00001025 G.logFileRotate = xatou_range(opt_b, 0, 99);
Denis Vlasenko14c19402006-09-30 19:20:00 +00001026#endif
Denis Vlasenko14c19402006-09-30 19:20:00 +00001027#if ENABLE_FEATURE_IPC_SYSLOG
Denis Vlasenko218f2f42007-01-24 22:02:01 +00001028 if (opt_C) // -Cn
Denis Vlasenko5e892ba2007-03-15 19:50:46 +00001029 G.shm_size = xatoul_range(opt_C, 4, INT_MAX/1024) * 1024;
Denis Vlasenko14c19402006-09-30 19:20:00 +00001030#endif
Eric Andersen4ed17822000-12-11 19:28:29 +00001031 /* If they have not specified remote logging, then log locally */
Denis Vlasenko0d948202008-12-09 22:53:31 +00001032 if (ENABLE_FEATURE_REMOTE_LOG && !(opts & OPT_remotelog)) // -R
Denis Vlasenkoc12f5302006-10-06 09:49:47 +00001033 option_mask32 |= OPT_locallog;
Sergey Naumov73ef15c2011-04-10 07:34:27 +02001034#if ENABLE_FEATURE_SYSLOGD_CFG
1035 parse_syslogdcfg(opt_f);
1036#endif
Mark Whitley6317c4b2001-03-12 22:51:50 +00001037
Erik Andersene49d5ec2000-02-08 19:58:47 +00001038 /* Store away localhost's name before the fork */
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001039 G.hostname = safe_gethostname();
1040 *strchrnul(G.hostname, '.') = '\0';
Erik Andersene49d5ec2000-02-08 19:58:47 +00001041
Denis Vlasenko0d948202008-12-09 22:53:31 +00001042 if (!(opts & OPT_nofork)) {
Denis Vlasenko5a142022007-03-26 13:20:54 +00001043 bb_daemonize_or_rexec(DAEMON_CHDIR_ROOT, argv);
Eric Andersen35e643b2003-07-28 07:40:39 +00001044 }
Tanguy Pruvot823694d2012-11-18 13:20:29 +01001045
Denys Vlasenkoa4252422010-01-29 16:44:48 +01001046 //umask(0); - why??
Tanguy Pruvot823694d2012-11-18 13:20:29 +01001047 write_pidfile(CONFIG_PID_FILE_PATH "/syslogd.pid");
1048
Denis Vlasenkoceab8702007-01-04 17:57:54 +00001049 do_syslogd();
Denis Vlasenko8a820b22007-01-06 22:08:53 +00001050 /* return EXIT_SUCCESS; */
Eric Andersen3843e961999-11-25 07:30:46 +00001051}
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +00001052
1053/* Clean up. Needed because we are included from syslogd_and_logger.c */
Denis Vlasenko0d948202008-12-09 22:53:31 +00001054#undef DEBUG
1055#undef SYSLOGD_MARK
1056#undef SYSLOGD_WRLOCK
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +00001057#undef G
1058#undef GLOBALS
1059#undef INIT_G
1060#undef OPTION_STR
1061#undef OPTION_DECL
1062#undef OPTION_PARAM