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