Simon Kelley | 2a8710a | 2020-01-05 16:40:06 +0000 | [diff] [blame] | 1 | /* dnsmasq is Copyright (c) 2000-2020 Simon Kelley |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 2 | |
| 3 | This program is free software; you can redistribute it and/or modify |
| 4 | it under the terms of the GNU General Public License as published by |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 5 | the Free Software Foundation; version 2 dated June, 1991, or |
| 6 | (at your option) version 3 dated 29 June, 2007. |
| 7 | |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 8 | This program is distributed in the hope that it will be useful, |
| 9 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | GNU General Public License for more details. |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 12 | |
Simon Kelley | 73a08a2 | 2009-02-05 20:28:08 +0000 | [diff] [blame] | 13 | You should have received a copy of the GNU General Public License |
| 14 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 15 | */ |
| 16 | |
| 17 | #include "dnsmasq.h" |
| 18 | |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 19 | #ifdef __ANDROID__ |
| 20 | # include <android/log.h> |
| 21 | #endif |
| 22 | |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 23 | /* Implement logging to /dev/log asynchronously. If syslogd is |
| 24 | making DNS lookups through dnsmasq, and dnsmasq blocks awaiting |
| 25 | syslogd, then the two daemons can deadlock. We get around this |
| 26 | by not blocking when talking to syslog, instead we queue up to |
| 27 | MAX_LOGS messages. If more are queued, they will be dropped, |
| 28 | and the drop event itself logged. */ |
| 29 | |
| 30 | /* The "wire" protocol for logging is defined in RFC 3164 */ |
| 31 | |
| 32 | /* From RFC 3164 */ |
| 33 | #define MAX_MESSAGE 1024 |
| 34 | |
| 35 | /* defaults in case we die() before we log_start() */ |
| 36 | static int log_fac = LOG_DAEMON; |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 37 | static int log_stderr = 0; |
| 38 | static int echo_stderr = 0; |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 39 | static int log_fd = -1; |
| 40 | static int log_to_file = 0; |
| 41 | static int entries_alloced = 0; |
| 42 | static int entries_lost = 0; |
| 43 | static int connection_good = 1; |
| 44 | static int max_logs = 0; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 45 | static int connection_type = SOCK_DGRAM; |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 46 | |
| 47 | struct log_entry { |
| 48 | int offset, length; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 49 | pid_t pid; /* to avoid duplicates over a fork */ |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 50 | struct log_entry *next; |
| 51 | char payload[MAX_MESSAGE]; |
| 52 | }; |
| 53 | |
| 54 | static struct log_entry *entries = NULL; |
| 55 | static struct log_entry *free_entries = NULL; |
| 56 | |
| 57 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 58 | int log_start(struct passwd *ent_pw, int errfd) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 59 | { |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 60 | int ret = 0; |
| 61 | |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 62 | echo_stderr = option_bool(OPT_DEBUG); |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 63 | |
| 64 | if (daemon->log_fac != -1) |
| 65 | log_fac = daemon->log_fac; |
| 66 | #ifdef LOG_LOCAL0 |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 67 | else if (option_bool(OPT_DEBUG)) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 68 | log_fac = LOG_LOCAL0; |
| 69 | #endif |
| 70 | |
| 71 | if (daemon->log_file) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 72 | { |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 73 | log_to_file = 1; |
| 74 | daemon->max_logs = 0; |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 75 | if (strcmp(daemon->log_file, "-") == 0) |
| 76 | { |
| 77 | log_stderr = 1; |
| 78 | echo_stderr = 0; |
| 79 | log_fd = dup(STDERR_FILENO); |
| 80 | } |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 81 | } |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 82 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 83 | max_logs = daemon->max_logs; |
| 84 | |
| 85 | if (!log_reopen(daemon->log_file)) |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 86 | { |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 87 | send_event(errfd, EVENT_LOG_ERR, errno, daemon->log_file ? daemon->log_file : ""); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 88 | _exit(0); |
| 89 | } |
| 90 | |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 91 | /* if queuing is inhibited, make sure we allocate |
| 92 | the one required buffer now. */ |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 93 | if (max_logs == 0) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 94 | { |
| 95 | free_entries = safe_malloc(sizeof(struct log_entry)); |
| 96 | free_entries->next = NULL; |
| 97 | entries_alloced = 1; |
| 98 | } |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 99 | |
| 100 | /* If we're running as root and going to change uid later, |
| 101 | change the ownership here so that the file is always owned by |
| 102 | the dnsmasq user. Then logrotate can just copy the owner. |
| 103 | Failure of the chown call is OK, (for instance when started as non-root) */ |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 104 | if (log_to_file && !log_stderr && ent_pw && ent_pw->pw_uid != 0 && |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 105 | fchown(log_fd, ent_pw->pw_uid, -1) != 0) |
| 106 | ret = errno; |
| 107 | |
| 108 | return ret; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 109 | } |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 110 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 111 | int log_reopen(char *log_file) |
| 112 | { |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 113 | if (!log_stderr) |
| 114 | { |
| 115 | if (log_fd != -1) |
| 116 | close(log_fd); |
| 117 | |
| 118 | /* NOTE: umask is set to 022 by the time this gets called */ |
| 119 | |
| 120 | if (log_file) |
| 121 | log_fd = open(log_file, O_WRONLY|O_CREAT|O_APPEND, S_IRUSR|S_IWUSR|S_IRGRP); |
| 122 | else |
| 123 | { |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 124 | #if defined(HAVE_SOLARIS_NETWORK) || defined(__ANDROID__) |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 125 | /* Solaris logging is "different", /dev/log is not unix-domain socket. |
| 126 | Just leave log_fd == -1 and use the vsyslog call for everything.... */ |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 127 | # define _PATH_LOG "" /* dummy */ |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 128 | return 1; |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 129 | #else |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 130 | int flags; |
| 131 | log_fd = socket(AF_UNIX, connection_type, 0); |
| 132 | |
| 133 | /* if max_logs is zero, leave the socket blocking */ |
| 134 | if (log_fd != -1 && max_logs != 0 && (flags = fcntl(log_fd, F_GETFL)) != -1) |
| 135 | fcntl(log_fd, F_SETFL, flags | O_NONBLOCK); |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 136 | #endif |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 137 | } |
| 138 | } |
| 139 | |
| 140 | return log_fd != -1; |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 141 | } |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 142 | |
| 143 | static void free_entry(void) |
| 144 | { |
| 145 | struct log_entry *tmp = entries; |
| 146 | entries = tmp->next; |
| 147 | tmp->next = free_entries; |
| 148 | free_entries = tmp; |
| 149 | } |
| 150 | |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 151 | static void log_write(void) |
| 152 | { |
| 153 | ssize_t rc; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 154 | |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 155 | while (entries) |
| 156 | { |
Josh Soref | 730c674 | 2017-02-06 16:14:04 +0000 | [diff] [blame] | 157 | /* The data in the payload is written with a terminating zero character |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 158 | and the length reflects this. For a stream connection we need to |
| 159 | send the zero as a record terminator, but this isn't done for a |
| 160 | datagram connection, so treat the length as one less than reality |
| 161 | to elide the zero. If we're logging to a file, turn the zero into |
| 162 | a newline, and leave the length alone. */ |
| 163 | int len_adjust = 0; |
| 164 | |
| 165 | if (log_to_file) |
| 166 | entries->payload[entries->offset + entries->length - 1] = '\n'; |
| 167 | else if (connection_type == SOCK_DGRAM) |
| 168 | len_adjust = 1; |
| 169 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 170 | /* Avoid duplicates over a fork() */ |
| 171 | if (entries->pid != getpid()) |
| 172 | { |
| 173 | free_entry(); |
| 174 | continue; |
| 175 | } |
| 176 | |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 177 | connection_good = 1; |
| 178 | |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 179 | if ((rc = write(log_fd, entries->payload + entries->offset, entries->length - len_adjust)) != -1) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 180 | { |
| 181 | entries->length -= rc; |
| 182 | entries->offset += rc; |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 183 | if (entries->length == len_adjust) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 184 | { |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 185 | free_entry(); |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 186 | if (entries_lost != 0) |
| 187 | { |
| 188 | int e = entries_lost; |
| 189 | entries_lost = 0; /* avoid wild recursion */ |
| 190 | my_syslog(LOG_WARNING, _("overflow: %d log entries lost"), e); |
| 191 | } |
| 192 | } |
| 193 | continue; |
| 194 | } |
| 195 | |
| 196 | if (errno == EINTR) |
| 197 | continue; |
| 198 | |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 199 | if (errno == EAGAIN || errno == EWOULDBLOCK) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 200 | return; /* syslogd busy, go again when select() or poll() says so */ |
| 201 | |
| 202 | if (errno == ENOBUFS) |
| 203 | { |
| 204 | connection_good = 0; |
| 205 | return; |
| 206 | } |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 207 | |
| 208 | /* errors handling after this assumes sockets */ |
| 209 | if (!log_to_file) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 210 | { |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 211 | /* Once a stream socket hits EPIPE, we have to close and re-open |
| 212 | (we ignore SIGPIPE) */ |
| 213 | if (errno == EPIPE) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 214 | { |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 215 | if (log_reopen(NULL)) |
| 216 | continue; |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 217 | } |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 218 | else if (errno == ECONNREFUSED || |
| 219 | errno == ENOTCONN || |
| 220 | errno == EDESTADDRREQ || |
| 221 | errno == ECONNRESET) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 222 | { |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 223 | /* socket went (syslogd down?), try and reconnect. If we fail, |
| 224 | stop trying until the next call to my_syslog() |
| 225 | ECONNREFUSED -> connection went down |
| 226 | ENOTCONN -> nobody listening |
| 227 | (ECONNRESET, EDESTADDRREQ are *BSD equivalents) */ |
| 228 | |
| 229 | struct sockaddr_un logaddr; |
| 230 | |
| 231 | #ifdef HAVE_SOCKADDR_SA_LEN |
| 232 | logaddr.sun_len = sizeof(logaddr) - sizeof(logaddr.sun_path) + strlen(_PATH_LOG) + 1; |
| 233 | #endif |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 234 | logaddr.sun_family = AF_UNIX; |
Petr MenÅ¡Ãk | 47b45b2 | 2018-08-15 18:17:00 +0200 | [diff] [blame] | 235 | safe_strncpy(logaddr.sun_path, _PATH_LOG, sizeof(logaddr.sun_path)); |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 236 | |
| 237 | /* Got connection back? try again. */ |
| 238 | if (connect(log_fd, (struct sockaddr *)&logaddr, sizeof(logaddr)) != -1) |
| 239 | continue; |
| 240 | |
| 241 | /* errors from connect which mean we should keep trying */ |
| 242 | if (errno == ENOENT || |
| 243 | errno == EALREADY || |
| 244 | errno == ECONNREFUSED || |
| 245 | errno == EISCONN || |
| 246 | errno == EINTR || |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 247 | errno == EAGAIN || |
| 248 | errno == EWOULDBLOCK) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 249 | { |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 250 | /* try again on next syslog() call */ |
| 251 | connection_good = 0; |
| 252 | return; |
| 253 | } |
| 254 | |
| 255 | /* try the other sort of socket... */ |
| 256 | if (errno == EPROTOTYPE) |
| 257 | { |
| 258 | connection_type = connection_type == SOCK_DGRAM ? SOCK_STREAM : SOCK_DGRAM; |
| 259 | if (log_reopen(NULL)) |
| 260 | continue; |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 261 | } |
| 262 | } |
| 263 | } |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 264 | |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 265 | /* give up - fall back to syslog() - this handles out-of-space |
| 266 | when logging to a file, for instance. */ |
| 267 | log_fd = -1; |
| 268 | my_syslog(LOG_CRIT, _("log failed: %s"), strerror(errno)); |
| 269 | return; |
| 270 | } |
| 271 | } |
| 272 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 273 | /* priority is one of LOG_DEBUG, LOG_INFO, LOG_NOTICE, etc. See sys/syslog.h. |
| 274 | OR'd to priority can be MS_TFTP, MS_DHCP, ... to be able to do log separation between |
| 275 | DNS, DHCP and TFTP services. |
| 276 | */ |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 277 | void my_syslog(int priority, const char *format, ...) |
| 278 | { |
| 279 | va_list ap; |
| 280 | struct log_entry *entry; |
| 281 | time_t time_now; |
| 282 | char *p; |
| 283 | size_t len; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 284 | pid_t pid = getpid(); |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 285 | char *func = ""; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 286 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 287 | if ((LOG_FACMASK & priority) == MS_TFTP) |
| 288 | func = "-tftp"; |
| 289 | else if ((LOG_FACMASK & priority) == MS_DHCP) |
| 290 | func = "-dhcp"; |
Petr MenÅ¡Ãk | c77fb9d | 2017-04-16 20:20:08 +0100 | [diff] [blame] | 291 | else if ((LOG_FACMASK & priority) == MS_SCRIPT) |
| 292 | func = "-script"; |
| 293 | |
Simon Kelley | 316e273 | 2010-01-22 20:16:09 +0000 | [diff] [blame] | 294 | #ifdef LOG_PRI |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 295 | priority = LOG_PRI(priority); |
Simon Kelley | 316e273 | 2010-01-22 20:16:09 +0000 | [diff] [blame] | 296 | #else |
| 297 | /* Solaris doesn't have LOG_PRI */ |
| 298 | priority &= LOG_PRIMASK; |
| 299 | #endif |
| 300 | |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 301 | if (echo_stderr) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 302 | { |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 303 | fprintf(stderr, "dnsmasq%s: ", func); |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 304 | va_start(ap, format); |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 305 | vfprintf(stderr, format, ap); |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 306 | va_end(ap); |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 307 | fputc('\n', stderr); |
| 308 | } |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 309 | |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 310 | if (log_fd == -1) |
| 311 | { |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 312 | #ifdef __ANDROID__ |
| 313 | /* do android-specific logging. |
| 314 | log_fd is always -1 on Android except when logging to a file. */ |
| 315 | int alog_lvl; |
| 316 | |
| 317 | if (priority <= LOG_ERR) |
| 318 | alog_lvl = ANDROID_LOG_ERROR; |
| 319 | else if (priority == LOG_WARNING) |
| 320 | alog_lvl = ANDROID_LOG_WARN; |
| 321 | else if (priority <= LOG_INFO) |
| 322 | alog_lvl = ANDROID_LOG_INFO; |
| 323 | else |
| 324 | alog_lvl = ANDROID_LOG_DEBUG; |
| 325 | |
| 326 | va_start(ap, format); |
| 327 | __android_log_vprint(alog_lvl, "dnsmasq", format, ap); |
| 328 | va_end(ap); |
| 329 | #else |
| 330 | /* fall-back to syslog if we die during startup or |
| 331 | fail during running (always on Solaris). */ |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 332 | static int isopen = 0; |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 333 | |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 334 | if (!isopen) |
| 335 | { |
| 336 | openlog("dnsmasq", LOG_PID, log_fac); |
| 337 | isopen = 1; |
| 338 | } |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 339 | va_start(ap, format); |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 340 | vsyslog(priority, format, ap); |
| 341 | va_end(ap); |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 342 | #endif |
| 343 | |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 344 | return; |
| 345 | } |
| 346 | |
| 347 | if ((entry = free_entries)) |
| 348 | free_entries = entry->next; |
| 349 | else if (entries_alloced < max_logs && (entry = malloc(sizeof(struct log_entry)))) |
| 350 | entries_alloced++; |
| 351 | |
| 352 | if (!entry) |
| 353 | entries_lost++; |
| 354 | else |
| 355 | { |
| 356 | /* add to end of list, consumed from the start */ |
| 357 | entry->next = NULL; |
| 358 | if (!entries) |
| 359 | entries = entry; |
| 360 | else |
| 361 | { |
| 362 | struct log_entry *tmp; |
| 363 | for (tmp = entries; tmp->next; tmp = tmp->next); |
| 364 | tmp->next = entry; |
| 365 | } |
| 366 | |
| 367 | time(&time_now); |
| 368 | p = entry->payload; |
| 369 | if (!log_to_file) |
| 370 | p += sprintf(p, "<%d>", priority | log_fac); |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 371 | |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 372 | /* Omit timestamp for default daemontools situation */ |
| 373 | if (!log_stderr || !option_bool(OPT_NO_FORK)) |
| 374 | p += sprintf(p, "%.15s ", ctime(&time_now) + 4); |
| 375 | |
| 376 | p += sprintf(p, "dnsmasq%s[%d]: ", func, (int)pid); |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 377 | |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 378 | len = p - entry->payload; |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 379 | va_start(ap, format); |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 380 | len += vsnprintf(p, MAX_MESSAGE - len, format, ap) + 1; /* include zero-terminator */ |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 381 | va_end(ap); |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 382 | entry->length = len > MAX_MESSAGE ? MAX_MESSAGE : len; |
| 383 | entry->offset = 0; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 384 | entry->pid = pid; |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | /* almost always, logging won't block, so try and write this now, |
| 388 | to save collecting too many log messages during a select loop. */ |
| 389 | log_write(); |
| 390 | |
| 391 | /* Since we're doing things asynchronously, a cache-dump, for instance, |
| 392 | can now generate log lines very fast. With a small buffer (desirable), |
| 393 | that means it can overflow the log-buffer very quickly, |
| 394 | so that the cache dump becomes mainly a count of how many lines |
| 395 | overflowed. To avoid this, we delay here, the delay is controlled |
| 396 | by queue-occupancy, and grows exponentially. The delay is limited to (2^8)ms. |
| 397 | The scaling stuff ensures that when the queue is bigger than 8, the delay |
| 398 | only occurs for the last 8 entries. Once the queue is full, we stop delaying |
| 399 | to preserve performance. |
| 400 | */ |
| 401 | |
| 402 | if (entries && max_logs != 0) |
| 403 | { |
| 404 | int d; |
| 405 | |
| 406 | for (d = 0,entry = entries; entry; entry = entry->next, d++); |
| 407 | |
| 408 | if (d == max_logs) |
| 409 | d = 0; |
| 410 | else if (max_logs > 8) |
| 411 | d -= max_logs - 8; |
| 412 | |
| 413 | if (d > 0) |
| 414 | { |
| 415 | struct timespec waiter; |
| 416 | waiter.tv_sec = 0; |
| 417 | waiter.tv_nsec = 1000000 << (d - 1); /* 1 ms */ |
| 418 | nanosleep(&waiter, NULL); |
| 419 | |
| 420 | /* Have another go now */ |
| 421 | log_write(); |
| 422 | } |
| 423 | } |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 424 | } |
| 425 | |
Simon Kelley | b842bc9 | 2015-07-12 21:09:11 +0100 | [diff] [blame] | 426 | void set_log_writer(void) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 427 | { |
| 428 | if (entries && log_fd != -1 && connection_good) |
Simon Kelley | b842bc9 | 2015-07-12 21:09:11 +0100 | [diff] [blame] | 429 | poll_listen(log_fd, POLLOUT); |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 430 | } |
| 431 | |
Simon Kelley | b842bc9 | 2015-07-12 21:09:11 +0100 | [diff] [blame] | 432 | void check_log_writer(int force) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 433 | { |
Simon Kelley | b842bc9 | 2015-07-12 21:09:11 +0100 | [diff] [blame] | 434 | if (log_fd != -1 && (force || poll_check(log_fd, POLLOUT))) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 435 | log_write(); |
| 436 | } |
| 437 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 438 | void flush_log(void) |
| 439 | { |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 440 | /* write until queue empty, but don't loop forever if there's |
Josh Soref | 730c674 | 2017-02-06 16:14:04 +0000 | [diff] [blame] | 441 | no connection to the syslog in existence */ |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 442 | while (log_fd != -1) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 443 | { |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 444 | struct timespec waiter; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 445 | log_write(); |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 446 | if (!entries || !connection_good) |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 447 | { |
| 448 | close(log_fd); |
| 449 | break; |
| 450 | } |
| 451 | waiter.tv_sec = 0; |
| 452 | waiter.tv_nsec = 1000000; /* 1 ms */ |
| 453 | nanosleep(&waiter, NULL); |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 454 | } |
| 455 | } |
| 456 | |
| 457 | void die(char *message, char *arg1, int exit_code) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 458 | { |
| 459 | char *errmess = strerror(errno); |
| 460 | |
| 461 | if (!arg1) |
| 462 | arg1 = errmess; |
| 463 | |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 464 | if (!log_stderr) |
| 465 | { |
| 466 | echo_stderr = 1; /* print as well as log when we die.... */ |
| 467 | fputc('\n', stderr); /* prettyfy startup-script message */ |
| 468 | } |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 469 | my_syslog(LOG_CRIT, message, arg1, errmess); |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 470 | echo_stderr = 0; |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 471 | my_syslog(LOG_CRIT, _("FAILED to start up")); |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 472 | flush_log(); |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 473 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 474 | exit(exit_code); |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 475 | } |