blob: a546bdbd71f519e82da96e3192791d55c8e8ace7 [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 Andersenbdfd0d72001-10-24 05:00:29 +00005 * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
6 * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
Eric Andersen3843e961999-11-25 07:30:46 +00007 *
Erik Andersenf13df372000-04-18 23:51:51 +00008 * Copyright (C) 2000 by Karl M. Hegbloom <karlheg@debian.org>
9 *
Mark Whitley6317c4b2001-03-12 22:51:50 +000010 * "circular buffer" Copyright (C) 2001 by Gennady Feldman <gfeldman@cachier.com>
11 *
Mark Whitley6bff9cc2001-03-12 23:41:34 +000012 * Maintainer: Gennady Feldman <gena01@cachier.com> as of Mar 12, 2001
13 *
Eric Andersen3843e961999-11-25 07:30:46 +000014 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 *
28 */
Eric Andersenb99df0f1999-11-24 09:04:33 +000029
Eric Andersen67e32302000-06-19 17:48:02 +000030#include <stdio.h>
31#include <stdlib.h>
Eric Andersen3843e961999-11-25 07:30:46 +000032#include <ctype.h>
Eric Andersenb186d981999-12-03 09:19:54 +000033#include <errno.h>
Erik Andersen983b51b2000-04-04 18:14:25 +000034#include <fcntl.h>
35#include <netdb.h>
Eric Andersenb186d981999-12-03 09:19:54 +000036#include <paths.h>
Erik Andersen983b51b2000-04-04 18:14:25 +000037#include <signal.h>
38#include <stdarg.h>
Eric Andersen67e32302000-06-19 17:48:02 +000039#include <time.h>
Eric Andersened3ef502001-01-27 08:24:39 +000040#include <string.h>
Eric Andersen67e32302000-06-19 17:48:02 +000041#include <unistd.h>
Erik Andersen983b51b2000-04-04 18:14:25 +000042#include <sys/socket.h>
Erik Andersen983b51b2000-04-04 18:14:25 +000043#include <sys/types.h>
44#include <sys/un.h>
Erik Andersen7d6ba572000-04-19 20:02:50 +000045#include <sys/param.h>
Eric Andersenb186d981999-12-03 09:19:54 +000046
Eric Andersencbe31da2001-02-20 06:14:08 +000047#include "busybox.h"
Eric Andersen67e32302000-06-19 17:48:02 +000048
Eric Andersen3843e961999-11-25 07:30:46 +000049/* SYSLOG_NAMES defined to pull some extra junk from syslog.h */
50#define SYSLOG_NAMES
51#include <sys/syslog.h>
Eric Andersenced2cef2000-07-20 23:41:24 +000052#include <sys/uio.h>
Eric Andersen3843e961999-11-25 07:30:46 +000053
54/* Path for the file where all log messages are written */
Erik Andersen983b51b2000-04-04 18:14:25 +000055#define __LOG_FILE "/var/log/messages"
Eric Andersen3843e961999-11-25 07:30:46 +000056
Erik Andersen983b51b2000-04-04 18:14:25 +000057/* Path to the unix socket */
Eric Andersen871d93c2002-09-17 20:06:29 +000058static char lfile[MAXPATHLEN];
Eric Andersen3843e961999-11-25 07:30:46 +000059
Erik Andersene49d5ec2000-02-08 19:58:47 +000060static char *logFilePath = __LOG_FILE;
61
Eric Andersen3843e961999-11-25 07:30:46 +000062/* interval between marks in seconds */
Erik Andersene49d5ec2000-02-08 19:58:47 +000063static int MarkInterval = 20 * 60;
64
Eric Andersen3843e961999-11-25 07:30:46 +000065/* localhost's name */
Eric Andersen871d93c2002-09-17 20:06:29 +000066static char LocalHostName[64];
Eric Andersen3843e961999-11-25 07:30:46 +000067
Eric Andersenbdfd0d72001-10-24 05:00:29 +000068#ifdef CONFIG_FEATURE_REMOTE_LOG
Eric Andersenced2cef2000-07-20 23:41:24 +000069#include <netinet/in.h>
70/* udp socket for logging to remote host */
Eric Andersenbf2b8ae2000-12-08 19:52:01 +000071static int remotefd = -1;
Glenn L McGrath912d8f42002-11-10 22:46:45 +000072
Eric Andersenced2cef2000-07-20 23:41:24 +000073/* where do we log? */
74static char *RemoteHost;
Glenn L McGrath912d8f42002-11-10 22:46:45 +000075
Eric Andersenced2cef2000-07-20 23:41:24 +000076/* what port to log to? */
Eric Andersenbf2b8ae2000-12-08 19:52:01 +000077static int RemotePort = 514;
Glenn L McGrath912d8f42002-11-10 22:46:45 +000078
Eric Andersenced2cef2000-07-20 23:41:24 +000079/* To remote log or not to remote log, that is the question. */
Eric Andersenbf2b8ae2000-12-08 19:52:01 +000080static int doRemoteLog = FALSE;
Eric Andersen70d09ed2000-12-11 16:24:16 +000081static int local_logging = FALSE;
Eric Andersenced2cef2000-07-20 23:41:24 +000082#endif
83
Eric Andersen871d93c2002-09-17 20:06:29 +000084
Glenn L McGrath912d8f42002-11-10 22:46:45 +000085#define MAXLINE 1024 /* maximum line length */
Eric Andersen871d93c2002-09-17 20:06:29 +000086
87
Mark Whitley6317c4b2001-03-12 22:51:50 +000088/* circular buffer variables/structures */
Eric Andersenbdfd0d72001-10-24 05:00:29 +000089#ifdef CONFIG_FEATURE_IPC_SYSLOG
Gennady Feldman087bc822001-10-26 16:09:09 +000090#if __GNU_LIBRARY__ < 5
91#error Sorry. Looks like you are using libc5.
92#error libc5 shm support isnt good enough.
93#error Please disable CONFIG_FEATURE_IPC_SYSLOG
94#endif
95
Mark Whitley6317c4b2001-03-12 22:51:50 +000096#include <sys/ipc.h>
97#include <sys/sem.h>
98#include <sys/shm.h>
99
100/* our shared key */
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000101static const long KEY_ID = 0x414e4547; /*"GENA" */
Mark Whitley6317c4b2001-03-12 22:51:50 +0000102
103// Semaphore operation structures
104static struct shbuf_ds {
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000105 int size; // size of data written
106 int head; // start of message list
107 int tail; // end of message list
108 char data[1]; // data/messages
109} *buf = NULL; // shared memory pointer
Mark Whitley6317c4b2001-03-12 22:51:50 +0000110
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000111static struct sembuf SMwup[1] = { {1, -1, IPC_NOWAIT} }; // set SMwup
112static struct sembuf SMwdn[3] = { {0, 0}, {1, 0}, {1, +1} }; // set SMwdn
Mark Whitley6317c4b2001-03-12 22:51:50 +0000113
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000114static int shmid = -1; // ipc shared memory id
115static int s_semid = -1; // ipc semaphore id
116int data_size = 16000; // data size
117int shm_size = 16000 + sizeof(*buf); // our buffer size
Mark Whitley6317c4b2001-03-12 22:51:50 +0000118static int circular_logging = FALSE;
119
120/*
121 * sem_up - up()'s a semaphore.
122 */
123static inline void sem_up(int semid)
124{
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000125 if (semop(semid, SMwup, 1) == -1) {
Mark Whitley6317c4b2001-03-12 22:51:50 +0000126 perror_msg_and_die("semop[SMwup]");
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000127 }
Mark Whitley6317c4b2001-03-12 22:51:50 +0000128}
129
130/*
131 * sem_down - down()'s a semaphore
132 */
133static inline void sem_down(int semid)
134{
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000135 if (semop(semid, SMwdn, 3) == -1) {
Mark Whitley6317c4b2001-03-12 22:51:50 +0000136 perror_msg_and_die("semop[SMwdn]");
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000137 }
Mark Whitley6317c4b2001-03-12 22:51:50 +0000138}
139
Eric Andersen871d93c2002-09-17 20:06:29 +0000140
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000141void ipcsyslog_cleanup(void)
142{
Mark Whitley6317c4b2001-03-12 22:51:50 +0000143 printf("Exiting Syslogd!\n");
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000144 if (shmid != -1) {
Mark Whitley6317c4b2001-03-12 22:51:50 +0000145 shmdt(buf);
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000146 }
Mark Whitley6317c4b2001-03-12 22:51:50 +0000147
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000148 if (shmid != -1) {
Mark Whitley6317c4b2001-03-12 22:51:50 +0000149 shmctl(shmid, IPC_RMID, NULL);
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000150 }
151 if (s_semid != -1) {
Mark Whitley6317c4b2001-03-12 22:51:50 +0000152 semctl(s_semid, 0, IPC_RMID, 0);
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000153 }
Mark Whitley6317c4b2001-03-12 22:51:50 +0000154}
155
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000156void ipcsyslog_init(void)
157{
158 if (buf == NULL) {
159 if ((shmid = shmget(KEY_ID, shm_size, IPC_CREAT | 1023)) == -1) {
Eric Andersen871d93c2002-09-17 20:06:29 +0000160 perror_msg_and_die("shmget");
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000161 }
Mark Whitley6317c4b2001-03-12 22:51:50 +0000162
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000163 if ((buf = shmat(shmid, NULL, 0)) == NULL) {
Eric Andersen871d93c2002-09-17 20:06:29 +0000164 perror_msg_and_die("shmat");
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000165 }
Mark Whitley6317c4b2001-03-12 22:51:50 +0000166
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000167 buf->size = data_size;
168 buf->head = buf->tail = 0;
Mark Whitley6317c4b2001-03-12 22:51:50 +0000169
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000170 // we'll trust the OS to set initial semval to 0 (let's hope)
171 if ((s_semid = semget(KEY_ID, 2, IPC_CREAT | IPC_EXCL | 1023)) == -1) {
172 if (errno == EEXIST) {
173 if ((s_semid = semget(KEY_ID, 2, 0)) == -1) {
174 perror_msg_and_die("semget");
175 }
176 } else {
177 perror_msg_and_die("semget");
178 }
179 }
180 } else {
Mark Whitley6317c4b2001-03-12 22:51:50 +0000181 printf("Buffer already allocated just grab the semaphore?");
182 }
183}
184
185/* write message to buffer */
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000186void circ_message(const char *msg)
187{
188 int l = strlen(msg) + 1; /* count the whole message w/ '\0' included */
Mark Whitley6317c4b2001-03-12 22:51:50 +0000189
190 sem_down(s_semid);
191
192 /*
193 * Circular Buffer Algorithm:
194 * --------------------------
195 *
196 * Start-off w/ empty buffer of specific size SHM_SIZ
197 * Start filling it up w/ messages. I use '\0' as separator to break up messages.
198 * This is also very handy since we can do printf on message.
199 *
200 * Once the buffer is full we need to get rid of the first message in buffer and
201 * insert the new message. (Note: if the message being added is >1 message then
202 * we will need to "remove" >1 old message from the buffer). The way this is done
203 * is the following:
Eric Andersen871d93c2002-09-17 20:06:29 +0000204 * When we reach the end of the buffer we set a mark and start from the beginning.
205 * Now what about the beginning and end of the buffer? Well we have the "head"
206 * index/pointer which is the starting point for the messages and we have "tail"
207 * index/pointer which is the ending point for the messages. When we "display" the
208 * messages we start from the beginning and continue until we reach "tail". If we
209 * reach end of buffer, then we just start from the beginning (offset 0). "head" and
210 * "tail" are actually offsets from the beginning of the buffer.
Mark Whitley6317c4b2001-03-12 22:51:50 +0000211 *
212 * Note: This algorithm uses Linux IPC mechanism w/ shared memory and semaphores to provide
Eric Andersen871d93c2002-09-17 20:06:29 +0000213 * a threasafe way of handling shared memory operations.
Mark Whitley6317c4b2001-03-12 22:51:50 +0000214 */
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000215 if ((buf->tail + l) < buf->size) {
Mark Whitley6317c4b2001-03-12 22:51:50 +0000216 /* before we append the message we need to check the HEAD so that we won't
217 overwrite any of the message that we still need and adjust HEAD to point
218 to the next message! */
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000219 if (buf->tail < buf->head) {
220 if ((buf->tail + l) >= buf->head) {
221 /* we need to move the HEAD to point to the next message
222 * Theoretically we have enough room to add the whole message to the
223 * buffer, because of the first outer IF statement, so we don't have
224 * to worry about overflows here!
225 */
226 int k = buf->tail + l - buf->head; /* we need to know how many bytes
227 we are overwriting to make
228 enough room */
229 char *c =
230 memchr(buf->data + buf->head + k, '\0',
231 buf->size - (buf->head + k));
232 if (c != NULL) { /* do a sanity check just in case! */
233 buf->head = c - buf->data + 1; /* we need to convert pointer to
234 offset + skip the '\0' since
235 we need to point to the beginning
236 of the next message */
237 /* Note: HEAD is only used to "retrieve" messages, it's not used
238 when writing messages into our buffer */
239 } else { /* show an error message to know we messed up? */
240 printf("Weird! Can't find the terminator token??? \n");
241 buf->head = 0;
242 }
Mark Whitley6317c4b2001-03-12 22:51:50 +0000243 }
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000244 }
Mark Whitley6317c4b2001-03-12 22:51:50 +0000245
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000246 /* in other cases no overflows have been done yet, so we don't care! */
Mark Whitley6317c4b2001-03-12 22:51:50 +0000247 /* we should be ok to append the message now */
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000248 strncpy(buf->data + buf->tail, msg, l); /* append our message */
249 buf->tail += l; /* count full message w/ '\0' terminating char */
250 } else {
Mark Whitley6317c4b2001-03-12 22:51:50 +0000251 /* we need to break up the message and "circle" it around */
252 char *c;
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000253 int k = buf->tail + l - buf->size; /* count # of bytes we don't fit */
Eric Andersen871d93c2002-09-17 20:06:29 +0000254
Mark Whitley6317c4b2001-03-12 22:51:50 +0000255 /* We need to move HEAD! This is always the case since we are going
256 * to "circle" the message.
257 */
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000258 c = memchr(buf->data + k, '\0', buf->size - k);
Eric Andersen871d93c2002-09-17 20:06:29 +0000259
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000260 if (c != NULL) { /* if we don't have '\0'??? weird!!! */
261 /* move head pointer */
262 buf->head = c - buf->data + 1;
Eric Andersen871d93c2002-09-17 20:06:29 +0000263
264 /* now write the first part of the message */
Mark Whitley6317c4b2001-03-12 22:51:50 +0000265 strncpy(buf->data + buf->tail, msg, l - k - 1);
Eric Andersen871d93c2002-09-17 20:06:29 +0000266
Mark Whitley6317c4b2001-03-12 22:51:50 +0000267 /* ALWAYS terminate end of buffer w/ '\0' */
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000268 buf->data[buf->size - 1] = '\0';
Eric Andersen871d93c2002-09-17 20:06:29 +0000269
Mark Whitley6317c4b2001-03-12 22:51:50 +0000270 /* now write out the rest of the string to the beginning of the buffer */
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000271 strcpy(buf->data, &msg[l - k - 1]);
Mark Whitley6317c4b2001-03-12 22:51:50 +0000272
273 /* we need to place the TAIL at the end of the message */
274 buf->tail = k + 1;
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000275 } else {
276 printf
277 ("Weird! Can't find the terminator token from the beginning??? \n");
278 buf->head = buf->tail = 0; /* reset buffer, since it's probably corrupted */
Mark Whitley6317c4b2001-03-12 22:51:50 +0000279 }
Eric Andersen871d93c2002-09-17 20:06:29 +0000280
Mark Whitley6317c4b2001-03-12 22:51:50 +0000281 }
282 sem_up(s_semid);
283}
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000284#endif /* CONFIG_FEATURE_IPC_SYSLOG */
Eric Andersen871d93c2002-09-17 20:06:29 +0000285
Erik Andersenc053e412000-03-21 01:31:24 +0000286/* Note: There is also a function called "message()" in init.c */
Erik Andersen983b51b2000-04-04 18:14:25 +0000287/* Print a message to the log file. */
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000288static void message(char *fmt, ...) __attribute__ ((format(printf, 1, 2)));
289static void message(char *fmt, ...)
Eric Andersen3843e961999-11-25 07:30:46 +0000290{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000291 int fd;
Erik Andersene3ed1562000-04-19 18:52:56 +0000292 struct flock fl;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000293 va_list arguments;
Eric Andersen3843e961999-11-25 07:30:46 +0000294
Erik Andersene3ed1562000-04-19 18:52:56 +0000295 fl.l_whence = SEEK_SET;
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000296 fl.l_start = 0;
297 fl.l_len = 1;
Erik Andersene3ed1562000-04-19 18:52:56 +0000298
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000299#ifdef CONFIG_FEATURE_IPC_SYSLOG
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000300 if ((circular_logging == TRUE) && (buf != NULL)) {
301 char b[1024];
Mark Whitley6317c4b2001-03-12 22:51:50 +0000302
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000303 va_start(arguments, fmt);
304 vsnprintf(b, sizeof(b) - 1, fmt, arguments);
305 va_end(arguments);
306 circ_message(b);
307
308 } else
Mark Whitley6317c4b2001-03-12 22:51:50 +0000309#endif
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000310 if ((fd =
311 device_open(logFilePath,
312 O_WRONLY | O_CREAT | O_NOCTTY | O_APPEND |
313 O_NONBLOCK)) >= 0) {
Erik Andersene3ed1562000-04-19 18:52:56 +0000314 fl.l_type = F_WRLCK;
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000315 fcntl(fd, F_SETLKW, &fl);
316 va_start(arguments, fmt);
317 vdprintf(fd, fmt, arguments);
318 va_end(arguments);
Erik Andersene3ed1562000-04-19 18:52:56 +0000319 fl.l_type = F_UNLCK;
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000320 fcntl(fd, F_SETLKW, &fl);
321 close(fd);
Eric Andersen3843e961999-11-25 07:30:46 +0000322 } else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000323 /* Always send console messages to /dev/console so people will see them. */
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000324 if ((fd =
325 device_open(_PATH_CONSOLE,
326 O_WRONLY | O_NOCTTY | O_NONBLOCK)) >= 0) {
327 va_start(arguments, fmt);
328 vdprintf(fd, fmt, arguments);
329 va_end(arguments);
330 close(fd);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000331 } else {
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000332 fprintf(stderr, "Bummer, can't print: ");
333 va_start(arguments, fmt);
334 vfprintf(stderr, fmt, arguments);
335 fflush(stderr);
336 va_end(arguments);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000337 }
Eric Andersen3843e961999-11-25 07:30:46 +0000338 }
Eric Andersenb99df0f1999-11-24 09:04:33 +0000339}
340
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000341static void logMessage(int pri, char *msg)
Eric Andersen3843e961999-11-25 07:30:46 +0000342{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000343 time_t now;
344 char *timestamp;
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000345 static char res[20] = "";
Erik Andersene49d5ec2000-02-08 19:58:47 +0000346 CODE *c_pri, *c_fac;
Eric Andersenb99df0f1999-11-24 09:04:33 +0000347
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000348 if (pri != 0) {
349 for (c_fac = facilitynames;
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000350 c_fac->c_name && !(c_fac->c_val == LOG_FAC(pri) << 3); c_fac++);
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000351 for (c_pri = prioritynames;
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000352 c_pri->c_name && !(c_pri->c_val == LOG_PRI(pri)); c_pri++);
353 if (c_fac->c_name == NULL || c_pri->c_name == NULL) {
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000354 snprintf(res, sizeof(res), "<%d>", pri);
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000355 } else {
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000356 snprintf(res, sizeof(res), "%s.%s", c_fac->c_name, c_pri->c_name);
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000357 }
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000358 }
Eric Andersen3843e961999-11-25 07:30:46 +0000359
Erik Andersene49d5ec2000-02-08 19:58:47 +0000360 if (strlen(msg) < 16 || msg[3] != ' ' || msg[6] != ' ' ||
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000361 msg[9] != ':' || msg[12] != ':' || msg[15] != ' ') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000362 time(&now);
363 timestamp = ctime(&now) + 4;
364 timestamp[15] = '\0';
365 } else {
366 timestamp = msg;
367 timestamp[15] = '\0';
368 msg += 16;
369 }
Eric Andersen3843e961999-11-25 07:30:46 +0000370
Erik Andersene49d5ec2000-02-08 19:58:47 +0000371 /* todo: supress duplicates */
Eric Andersen3843e961999-11-25 07:30:46 +0000372
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000373#ifdef CONFIG_FEATURE_REMOTE_LOG
Eric Andersenced2cef2000-07-20 23:41:24 +0000374 /* send message to remote logger */
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000375 if (-1 != remotefd) {
376 static const int IOV_COUNT = 2;
Eric Andersenbf2b8ae2000-12-08 19:52:01 +0000377 struct iovec iov[IOV_COUNT];
378 struct iovec *v = iov;
Eric Andersenced2cef2000-07-20 23:41:24 +0000379
Eric Andersen044228d2001-07-17 01:12:36 +0000380 memset(&res, 0, sizeof(res));
Eric Andersenbf2b8ae2000-12-08 19:52:01 +0000381 snprintf(res, sizeof(res), "<%d>", pri);
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000382 v->iov_base = res;
Eric Andersen871d93c2002-09-17 20:06:29 +0000383 v->iov_len = strlen(res);
Eric Andersenbf2b8ae2000-12-08 19:52:01 +0000384 v++;
Eric Andersenced2cef2000-07-20 23:41:24 +0000385
Eric Andersenbf2b8ae2000-12-08 19:52:01 +0000386 v->iov_base = msg;
Eric Andersen871d93c2002-09-17 20:06:29 +0000387 v->iov_len = strlen(msg);
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000388 writev_retry:
389 if (-1 == writev(remotefd, iov, IOV_COUNT)) {
390 if (errno == EINTR) {
391 goto writev_retry;
392 }
393 error_msg_and_die("cannot write to remote file handle on %s:%d",
394 RemoteHost, RemotePort);
Eric Andersenbf2b8ae2000-12-08 19:52:01 +0000395 }
396 }
Eric Andersen871d93c2002-09-17 20:06:29 +0000397 if (local_logging == TRUE)
Eric Andersenced2cef2000-07-20 23:41:24 +0000398#endif
Eric Andersenbf2b8ae2000-12-08 19:52:01 +0000399 /* now spew out the message to wherever it is supposed to go */
400 message("%s %s %s %s\n", timestamp, LocalHostName, res, msg);
Eric Andersen3843e961999-11-25 07:30:46 +0000401}
402
403static void quit_signal(int sig)
404{
Eric Andersen238bc402001-05-07 17:55:05 +0000405 logMessage(LOG_SYSLOG | LOG_INFO, "System log daemon exiting.");
Erik Andersen983b51b2000-04-04 18:14:25 +0000406 unlink(lfile);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000407#ifdef CONFIG_FEATURE_IPC_SYSLOG
Mark Whitley6317c4b2001-03-12 22:51:50 +0000408 ipcsyslog_cleanup();
409#endif
410
Erik Andersene49d5ec2000-02-08 19:58:47 +0000411 exit(TRUE);
Eric Andersen3843e961999-11-25 07:30:46 +0000412}
413
Eric Andersen3843e961999-11-25 07:30:46 +0000414static void domark(int sig)
415{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000416 if (MarkInterval > 0) {
417 logMessage(LOG_SYSLOG | LOG_INFO, "-- MARK --");
418 alarm(MarkInterval);
419 }
Eric Andersen3843e961999-11-25 07:30:46 +0000420}
421
Eric Andersen22ecf042001-07-02 17:32:40 +0000422/* This must be a #define, since when DODEBUG and BUFFERS_GO_IN_BSS are
423 * enabled, we otherwise get a "storage size isn't constant error. */
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000424static int serveConnection(char *tmpbuf, int n_read)
Pavel Roskinda10ec02000-06-07 21:08:25 +0000425{
Matt Kraaib6ec7812001-08-14 17:32:23 +0000426 char *p = tmpbuf;
Pavel Roskinda10ec02000-06-07 21:08:25 +0000427
Matt Kraaib6ec7812001-08-14 17:32:23 +0000428 while (p < tmpbuf + n_read) {
Pavel Roskinda10ec02000-06-07 21:08:25 +0000429
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000430 int pri = (LOG_USER | LOG_NOTICE);
431 char line[MAXLINE + 1];
Pavel Roskinda10ec02000-06-07 21:08:25 +0000432 unsigned char c;
433
Matt Kraaib6ec7812001-08-14 17:32:23 +0000434 char *q = line;
Pavel Roskinda10ec02000-06-07 21:08:25 +0000435
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000436 while ((c = *p) && q < &line[sizeof(line) - 1]) {
Eric Andersen871d93c2002-09-17 20:06:29 +0000437 if (c == '<') {
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000438 /* Parse the magic priority number. */
Pavel Roskinda10ec02000-06-07 21:08:25 +0000439 pri = 0;
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000440 while (isdigit(*(++p))) {
Pavel Roskinda10ec02000-06-07 21:08:25 +0000441 pri = 10 * pri + (*p - '0');
442 }
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000443 if (pri & ~(LOG_FACMASK | LOG_PRIMASK)) {
Pavel Roskinda10ec02000-06-07 21:08:25 +0000444 pri = (LOG_USER | LOG_NOTICE);
Eric Andersenced2cef2000-07-20 23:41:24 +0000445 }
Pavel Roskinda10ec02000-06-07 21:08:25 +0000446 } else if (c == '\n') {
447 *q++ = ' ';
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000448 } else if (iscntrl(c) && (c < 0177)) {
Pavel Roskinda10ec02000-06-07 21:08:25 +0000449 *q++ = '^';
450 *q++ = c ^ 0100;
451 } else {
452 *q++ = c;
453 }
454 p++;
455 }
456 *q = '\0';
Matt Kraaib6ec7812001-08-14 17:32:23 +0000457 p++;
Pavel Roskinda10ec02000-06-07 21:08:25 +0000458 /* Now log it */
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000459 logMessage(pri, line);
Pavel Roskinda10ec02000-06-07 21:08:25 +0000460 }
Mark Whitleybff6b182001-03-27 20:17:58 +0000461 return n_read;
Pavel Roskinda10ec02000-06-07 21:08:25 +0000462}
463
Eric Andersenced2cef2000-07-20 23:41:24 +0000464
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000465#ifdef CONFIG_FEATURE_REMOTE_LOG
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000466static void init_RemoteLog(void)
Eric Andersen871d93c2002-09-17 20:06:29 +0000467{
Eric Andersenced2cef2000-07-20 23:41:24 +0000468
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000469 struct sockaddr_in remoteaddr;
470 struct hostent *hostinfo;
471 int len = sizeof(remoteaddr);
Eric Andersenced2cef2000-07-20 23:41:24 +0000472
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000473 memset(&remoteaddr, 0, len);
Mark Whitleybff6b182001-03-27 20:17:58 +0000474
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000475 remotefd = socket(AF_INET, SOCK_DGRAM, 0);
Eric Andersenced2cef2000-07-20 23:41:24 +0000476
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000477 if (remotefd < 0) {
478 error_msg_and_die("cannot create socket");
479 }
Eric Andersenced2cef2000-07-20 23:41:24 +0000480
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000481 hostinfo = xgethostbyname(RemoteHost);
Eric Andersenced2cef2000-07-20 23:41:24 +0000482
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000483 remoteaddr.sin_family = AF_INET;
484 remoteaddr.sin_addr = *(struct in_addr *) *hostinfo->h_addr_list;
485 remoteaddr.sin_port = htons(RemotePort);
Eric Andersenced2cef2000-07-20 23:41:24 +0000486
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000487 /* Since we are using UDP sockets, connect just sets the default host and port
488 * for future operations
489 */
490 if (0 != (connect(remotefd, (struct sockaddr *) &remoteaddr, len))) {
491 error_msg_and_die("cannot connect to remote host %s:%d", RemoteHost,
492 RemotePort);
493 }
Eric Andersenced2cef2000-07-20 23:41:24 +0000494
495}
496#endif
497
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000498static void doSyslogd(void) __attribute__ ((noreturn));
499static void doSyslogd(void)
Eric Andersen3843e961999-11-25 07:30:46 +0000500{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000501 struct sockaddr_un sunx;
Erik Andersen1d1d9502000-04-21 01:26:49 +0000502 socklen_t addrLength;
503
Erik Andersen983b51b2000-04-04 18:14:25 +0000504 int sock_fd;
Erik Andersenf13df372000-04-18 23:51:51 +0000505 fd_set fds;
506
Erik Andersenf13df372000-04-18 23:51:51 +0000507 /* Set up signal handlers. */
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000508 signal(SIGINT, quit_signal);
509 signal(SIGTERM, quit_signal);
510 signal(SIGQUIT, quit_signal);
511 signal(SIGHUP, SIG_IGN);
512 signal(SIGCHLD, SIG_IGN);
Pavel Roskind39d1202000-09-13 14:14:29 +0000513#ifdef SIGCLD
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000514 signal(SIGCLD, SIG_IGN);
Pavel Roskind39d1202000-09-13 14:14:29 +0000515#endif
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000516 signal(SIGALRM, domark);
517 alarm(MarkInterval);
Eric Andersenb99df0f1999-11-24 09:04:33 +0000518
Erik Andersenf13df372000-04-18 23:51:51 +0000519 /* Create the syslog file so realpath() can work. */
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000520 if (realpath(_PATH_LOG, lfile) != NULL) {
521 unlink(lfile);
522 }
Erik Andersen983b51b2000-04-04 18:14:25 +0000523
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000524 memset(&sunx, 0, sizeof(sunx));
Erik Andersen983b51b2000-04-04 18:14:25 +0000525 sunx.sun_family = AF_UNIX;
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000526 strncpy(sunx.sun_path, lfile, sizeof(sunx.sun_path));
527 if ((sock_fd = socket(AF_UNIX, SOCK_DGRAM, 0)) < 0) {
528 perror_msg_and_die("Couldn't get file descriptor for socket "
529 _PATH_LOG);
530 }
Eric Andersenb99df0f1999-11-24 09:04:33 +0000531
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000532 addrLength = sizeof(sunx.sun_family) + strlen(sunx.sun_path);
533 if (bind(sock_fd, (struct sockaddr *) &sunx, addrLength) < 0) {
534 perror_msg_and_die("Could not connect to socket " _PATH_LOG);
535 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000536
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000537 if (chmod(lfile, 0666) < 0) {
538 perror_msg_and_die("Could not set permission on " _PATH_LOG);
539 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000540#ifdef CONFIG_FEATURE_IPC_SYSLOG
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000541 if (circular_logging == TRUE) {
542 ipcsyslog_init();
Eric Andersenea906502001-04-05 20:55:17 +0000543 }
544#endif
545
Eric Andersen871d93c2002-09-17 20:06:29 +0000546#ifdef CONFIG_FEATURE_REMOTE_LOG
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000547 if (doRemoteLog == TRUE) {
548 init_RemoteLog();
Eric Andersen871d93c2002-09-17 20:06:29 +0000549 }
550#endif
Eric Andersenced2cef2000-07-20 23:41:24 +0000551
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000552 logMessage(LOG_SYSLOG | LOG_INFO, "syslogd started: " BB_BANNER);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000553
Erik Andersen983b51b2000-04-04 18:14:25 +0000554 for (;;) {
Erik Andersenf13df372000-04-18 23:51:51 +0000555
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000556 FD_ZERO(&fds);
557 FD_SET(sock_fd, &fds);
Erik Andersenf13df372000-04-18 23:51:51 +0000558
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000559 if (select(sock_fd + 1, &fds, NULL, NULL, NULL) < 0) {
Eric Andersen871d93c2002-09-17 20:06:29 +0000560 if (errno == EINTR) {
561 /* alarm may have happened. */
562 continue;
563 }
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000564 perror_msg_and_die("select error");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000565 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000566
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000567 if (FD_ISSET(sock_fd, &fds)) {
568 int i;
Erik Andersene3ed1562000-04-19 18:52:56 +0000569
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000570 RESERVE_CONFIG_BUFFER(tmpbuf, BUFSIZ + 1);
571
572 memset(tmpbuf, '\0', BUFSIZ + 1);
573 if ((i = recv(sock_fd, tmpbuf, BUFSIZ, 0)) > 0) {
574 serveConnection(tmpbuf, i);
575 } else {
576 perror_msg_and_die("UNIX socket error");
577 }
578 RELEASE_CONFIG_BUFFER(tmpbuf);
579 } /* FD_ISSET() */
580 } /* for main loop */
Eric Andersenb99df0f1999-11-24 09:04:33 +0000581}
582
Eric Andersen3843e961999-11-25 07:30:46 +0000583extern int syslogd_main(int argc, char **argv)
584{
Eric Andersene5c24df2001-03-29 21:58:33 +0000585 int opt;
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000586
Eric Andersen871d93c2002-09-17 20:06:29 +0000587#if ! defined(__uClinux__)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000588 int doFork = TRUE;
Eric Andersen871d93c2002-09-17 20:06:29 +0000589#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000590
Erik Andersene49d5ec2000-02-08 19:58:47 +0000591 char *p;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000592
Eric Andersen394cf222000-12-11 16:48:50 +0000593 /* do normal option parsing */
Mark Whitley6317c4b2001-03-12 22:51:50 +0000594 while ((opt = getopt(argc, argv, "m:nO:R:LC")) > 0) {
Eric Andersen394cf222000-12-11 16:48:50 +0000595 switch (opt) {
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000596 case 'm':
597 MarkInterval = atoi(optarg) * 60;
598 break;
Eric Andersen871d93c2002-09-17 20:06:29 +0000599#if ! defined(__uClinux__)
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000600 case 'n':
601 doFork = FALSE;
602 break;
Eric Andersen871d93c2002-09-17 20:06:29 +0000603#endif
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000604 case 'O':
605 logFilePath = xstrdup(optarg);
606 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000607#ifdef CONFIG_FEATURE_REMOTE_LOG
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000608 case 'R':
609 RemoteHost = xstrdup(optarg);
610 if ((p = strchr(RemoteHost, ':'))) {
611 RemotePort = atoi(p + 1);
612 *p = '\0';
613 }
614 doRemoteLog = TRUE;
615 break;
616 case 'L':
617 local_logging = TRUE;
618 break;
Eric Andersenced2cef2000-07-20 23:41:24 +0000619#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000620#ifdef CONFIG_FEATURE_IPC_SYSLOG
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000621 case 'C':
622 circular_logging = TRUE;
623 break;
Mark Whitley6317c4b2001-03-12 22:51:50 +0000624#endif
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000625 default:
626 show_usage();
Eric Andersen3843e961999-11-25 07:30:46 +0000627 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000628 }
629
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000630#ifdef CONFIG_FEATURE_REMOTE_LOG
Eric Andersen4ed17822000-12-11 19:28:29 +0000631 /* If they have not specified remote logging, then log locally */
Eric Andersen871d93c2002-09-17 20:06:29 +0000632 if (doRemoteLog == FALSE)
Eric Andersen4ed17822000-12-11 19:28:29 +0000633 local_logging = TRUE;
634#endif
635
Mark Whitley6317c4b2001-03-12 22:51:50 +0000636
Erik Andersene49d5ec2000-02-08 19:58:47 +0000637 /* Store away localhost's name before the fork */
638 gethostname(LocalHostName, sizeof(LocalHostName));
639 if ((p = strchr(LocalHostName, '.'))) {
640 *p++ = '\0';
641 }
642
Erik Andersen983b51b2000-04-04 18:14:25 +0000643 umask(0);
644
Eric Andersen871d93c2002-09-17 20:06:29 +0000645#if ! defined(__uClinux__)
Glenn L McGrath912d8f42002-11-10 22:46:45 +0000646 if ((doFork == TRUE) && (daemon(0, 1) < 0)) {
647 perror_msg_and_die("daemon");
Eric Andersen3843e961999-11-25 07:30:46 +0000648 }
Eric Andersen871d93c2002-09-17 20:06:29 +0000649#endif
Eric Andersene5c24df2001-03-29 21:58:33 +0000650 doSyslogd();
Eric Andersenb186d981999-12-03 09:19:54 +0000651
Matt Kraai3e856ce2000-12-01 02:55:13 +0000652 return EXIT_SUCCESS;
Eric Andersen3843e961999-11-25 07:30:46 +0000653}
Erik Andersen983b51b2000-04-04 18:14:25 +0000654
655/*
Erik Andersene3ed1562000-04-19 18:52:56 +0000656Local Variables
657c-file-style: "linux"
658c-basic-offset: 4
659tab-width: 4
660End:
661*/