Merge pull request #2151 from mfournier/check_capability-rewrite-fix
[collectd.git] / src / logfile.c
1 /**
2  * collectd - src/logfile.c
3  * Copyright (C) 2007       Sebastian Harl
4  * Copyright (C) 2007,2008  Florian Forster
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  *
24  * Authors:
25  *   Sebastian Harl <sh at tokkee.org>
26  *   Florian Forster <octo at collectd.org>
27  **/
28
29 #include "collectd.h"
30
31 #include "common.h"
32 #include "plugin.h"
33
34 #if COLLECT_DEBUG
35 static int log_level = LOG_DEBUG;
36 #else
37 static int log_level = LOG_INFO;
38 #endif /* COLLECT_DEBUG */
39
40 static pthread_mutex_t file_lock = PTHREAD_MUTEX_INITIALIZER;
41
42 static char *log_file = NULL;
43 static int print_timestamp = 1;
44 static int print_severity = 0;
45
46 static const char *config_keys[] = {"LogLevel", "File", "Timestamp",
47                                     "PrintSeverity"};
48 static int config_keys_num = STATIC_ARRAY_SIZE(config_keys);
49
50 static int logfile_config(const char *key, const char *value) {
51   if (0 == strcasecmp(key, "LogLevel")) {
52     log_level = parse_log_severity(value);
53     if (log_level < 0) {
54       log_level = LOG_INFO;
55       ERROR("logfile: invalid loglevel [%s] defaulting to 'info'", value);
56       return (1);
57     }
58   } else if (0 == strcasecmp(key, "File")) {
59     sfree(log_file);
60     log_file = strdup(value);
61   } else if (0 == strcasecmp(key, "Timestamp")) {
62     if (IS_FALSE(value))
63       print_timestamp = 0;
64     else
65       print_timestamp = 1;
66   } else if (0 == strcasecmp(key, "PrintSeverity")) {
67     if (IS_FALSE(value))
68       print_severity = 0;
69     else
70       print_severity = 1;
71   } else {
72     return -1;
73   }
74   return 0;
75 } /* int logfile_config (const char *, const char *) */
76
77 static void logfile_print(const char *msg, int severity,
78                           cdtime_t timestamp_time) {
79   FILE *fh;
80   _Bool do_close = 0;
81   struct tm timestamp_tm;
82   char timestamp_str[64];
83   char level_str[16] = "";
84
85   if (print_severity) {
86     switch (severity) {
87     case LOG_ERR:
88       snprintf(level_str, sizeof(level_str), "[error] ");
89       break;
90     case LOG_WARNING:
91       snprintf(level_str, sizeof(level_str), "[warning] ");
92       break;
93     case LOG_NOTICE:
94       snprintf(level_str, sizeof(level_str), "[notice] ");
95       break;
96     case LOG_INFO:
97       snprintf(level_str, sizeof(level_str), "[info] ");
98       break;
99     case LOG_DEBUG:
100       snprintf(level_str, sizeof(level_str), "[debug] ");
101       break;
102     default:
103       break;
104     }
105   }
106
107   if (print_timestamp) {
108     time_t tt = CDTIME_T_TO_TIME_T(timestamp_time);
109     localtime_r(&tt, &timestamp_tm);
110
111     strftime(timestamp_str, sizeof(timestamp_str), "%Y-%m-%d %H:%M:%S",
112              &timestamp_tm);
113     timestamp_str[sizeof(timestamp_str) - 1] = '\0';
114   }
115
116   pthread_mutex_lock(&file_lock);
117
118   if (log_file == NULL) {
119     fh = stderr;
120   } else if (strcasecmp(log_file, "stderr") == 0)
121     fh = stderr;
122   else if (strcasecmp(log_file, "stdout") == 0)
123     fh = stdout;
124   else {
125     fh = fopen(log_file, "a");
126     do_close = 1;
127   }
128
129   if (fh == NULL) {
130     char errbuf[1024];
131     fprintf(stderr, "logfile plugin: fopen (%s) failed: %s\n", log_file,
132             sstrerror(errno, errbuf, sizeof(errbuf)));
133   } else {
134     if (print_timestamp)
135       fprintf(fh, "[%s] %s%s\n", timestamp_str, level_str, msg);
136     else
137       fprintf(fh, "%s%s\n", level_str, msg);
138
139     if (do_close) {
140       fclose(fh);
141     } else {
142       fflush(fh);
143     }
144   }
145
146   pthread_mutex_unlock(&file_lock);
147
148   return;
149 } /* void logfile_print */
150
151 static void logfile_log(int severity, const char *msg,
152                         user_data_t __attribute__((unused)) * user_data) {
153   if (severity > log_level)
154     return;
155
156   logfile_print(msg, severity, cdtime());
157 } /* void logfile_log (int, const char *) */
158
159 static int logfile_notification(const notification_t *n,
160                                 user_data_t __attribute__((unused)) *
161                                     user_data) {
162   char buf[1024] = "";
163   char *buf_ptr = buf;
164   int buf_len = sizeof(buf);
165   int status;
166
167   status = ssnprintf(
168       buf_ptr, buf_len, "Notification: severity = %s",
169       (n->severity == NOTIF_FAILURE)
170           ? "FAILURE"
171           : ((n->severity == NOTIF_WARNING)
172                  ? "WARNING"
173                  : ((n->severity == NOTIF_OKAY) ? "OKAY" : "UNKNOWN")));
174   if (status > 0) {
175     buf_ptr += status;
176     buf_len -= status;
177   }
178
179 #define APPEND(bufptr, buflen, key, value)                                     \
180   if ((buflen > 0) && (strlen(value) > 0)) {                                   \
181     status = ssnprintf(bufptr, buflen, ", %s = %s", key, value);               \
182     if (status > 0) {                                                          \
183       bufptr += status;                                                        \
184       buflen -= status;                                                        \
185     }                                                                          \
186   }
187   APPEND(buf_ptr, buf_len, "host", n->host);
188   APPEND(buf_ptr, buf_len, "plugin", n->plugin);
189   APPEND(buf_ptr, buf_len, "plugin_instance", n->plugin_instance);
190   APPEND(buf_ptr, buf_len, "type", n->type);
191   APPEND(buf_ptr, buf_len, "type_instance", n->type_instance);
192   APPEND(buf_ptr, buf_len, "message", n->message);
193
194   buf[sizeof(buf) - 1] = '\0';
195
196   logfile_print(buf, LOG_INFO, (n->time != 0) ? n->time : cdtime());
197
198   return (0);
199 } /* int logfile_notification */
200
201 void module_register(void) {
202   plugin_register_config("logfile", logfile_config, config_keys,
203                          config_keys_num);
204   plugin_register_log("logfile", logfile_log, /* user_data = */ NULL);
205   plugin_register_notification("logfile", logfile_notification,
206                                /* user_data = */ NULL);
207 } /* void module_register (void) */
208
209 /* vim: set sw=4 ts=4 tw=78 noexpandtab : */