2 logger.c -- logging code
3 Copyright (C) 2004-2015 Guus Sliepen <guus@tinc-vpn.org>
4 2004-2005 Ivo Timmermans
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 #include "connection.h"
28 #include "control_common.h"
32 debug_t debug_level = DEBUG_NOTHING;
33 static logmode_t logmode = LOGMODE_STDERR;
35 static FILE *logfile = NULL;
37 static HANDLE loghandle = NULL;
39 static const char *logident = NULL;
40 bool logcontrol = false;
43 static void real_logger(int level, int priority, const char *message) {
44 char timestr[32] = "";
45 static bool suppress = false;
47 // Bail out early if there is nothing to do.
51 if(!logcontrol && (level > debug_level || logmode == LOGMODE_NULL))
54 if(level <= debug_level) {
57 fprintf(stderr, "%s\n", message);
62 gettimeofday(&now, NULL);
63 time_t now_sec = now.tv_sec;
64 strftime(timestr, sizeof timestr, "%Y-%m-%d %H:%M:%S", localtime(&now_sec));
65 fprintf(logfile, "%s %s[%ld]: %s\n", timestr, logident, (long)logpid, message);
71 const char *messages[] = {message};
72 ReportEvent(loghandle, priority, 0, 0, NULL, 1, 0, messages, NULL);
76 syslog(priority, "%s", message);
84 if(umbilical && do_detach) {
85 write(umbilical, message, strlen(message));
86 write(umbilical, "\n", 1);
93 for list_each(connection_t, c, connection_list) {
97 if(level > (c->outcompression >= 0 ? c->outcompression : debug_level))
99 int len = strlen(message);
100 if(send_request(c, "%d %d %d", CONTROL, REQ_LOG, len))
101 send_meta(c, message, len);
107 void logger(int level, int priority, const char *format, ...) {
109 char message[1024] = "";
111 va_start(ap, format);
112 int len = vsnprintf(message, sizeof message, format, ap);
115 if(len > 0 && len < sizeof message && message[len - 1] == '\n')
116 message[len - 1] = 0;
118 real_logger(level, priority, message);
121 static void sptps_logger(sptps_t *s, int s_errno, const char *format, va_list ap) {
122 char message[1024] = "";
123 size_t msglen = sizeof message;
125 int len = vsnprintf(message, msglen, format, ap);
126 if(len > 0 && len < sizeof message) {
127 if(message[len - 1] == '\n')
130 // WARNING: s->handle can point to a connection_t or a node_t,
131 // but both types have the name and hostname fields at the same offsets.
132 connection_t *c = s->handle;
134 snprintf(message + len, sizeof message - len, " from %s (%s)", c->name, c->hostname);
137 real_logger(DEBUG_ALWAYS, LOG_ERR, message);
140 void openlogger(const char *ident, logmode_t mode) {
150 logfile = fopen(logfilename, "a");
152 fprintf(stderr, "Could not open log file %s: %s\n", logfilename, strerror(errno));
153 logmode = LOGMODE_NULL;
158 loghandle = RegisterEventSource(NULL, logident);
160 fprintf(stderr, "Could not open log handle!");
161 logmode = LOGMODE_NULL;
166 openlog(logident, LOG_CONS | LOG_PID, LOG_DAEMON);
174 if(logmode != LOGMODE_NULL)
175 sptps_log = sptps_logger;
177 sptps_log = sptps_log_quiet;
180 void reopenlogger() {
181 if(logmode != LOGMODE_FILE)
185 FILE *newfile = fopen(logfilename, "a");
187 logger(DEBUG_ALWAYS, LOG_ERR, "Unable to reopen log file %s: %s", logfilename, strerror(errno));
195 void closelogger(void) {
202 DeregisterEventSource(loghandle);