Fix return value or loglevel for several plugins
[collectd.git] / src / syslog.c
1 /**
2  * collectd - src/syslog.c
3  * Copyright (C) 2007       Florian Forster
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21  * DEALINGS IN THE SOFTWARE.
22  *
23  * Authors:
24  *   Florian Forster <octo at collectd.org>
25  **/
26
27 #include "collectd.h"
28
29 #include "plugin.h"
30 #include "utils/common/common.h"
31
32 #if HAVE_SYSLOG_H
33 #include <syslog.h>
34 #endif
35
36 #if COLLECT_DEBUG
37 static int log_level = LOG_DEBUG;
38 #else
39 static int log_level = LOG_INFO;
40 #endif /* COLLECT_DEBUG */
41 static int notif_severity;
42
43 static const char *config_keys[] = {
44     "LogLevel", "NotifyLevel",
45 };
46 static int config_keys_num = STATIC_ARRAY_SIZE(config_keys);
47
48 static int sl_config(const char *key, const char *value) {
49   if (strcasecmp(key, "LogLevel") == 0) {
50     log_level = parse_log_severity(value);
51     if (log_level < 0) {
52       log_level = LOG_INFO;
53       ERROR("syslog: invalid loglevel [%s] defaulting to 'info'", value);
54       return 1;
55     }
56   } else if (strcasecmp(key, "NotifyLevel") == 0) {
57     notif_severity = parse_notif_severity(value);
58     if (notif_severity < 0)
59       ERROR("syslog: invalid notification severity [%s]", value);
60       return 1;
61   }
62
63   return 0;
64 } /* int sl_config */
65
66 static void sl_log(int severity, const char *msg,
67                    user_data_t __attribute__((unused)) * user_data) {
68   if (severity > log_level)
69     return;
70
71   syslog(severity, "%s", msg);
72 } /* void sl_log */
73
74 static int sl_shutdown(void) {
75   closelog();
76
77   return 0;
78 }
79
80 static int sl_notification(const notification_t *n,
81                            user_data_t __attribute__((unused)) * user_data) {
82   char buf[1024] = "";
83   size_t offset = 0;
84   int log_severity;
85   const char *severity_string;
86   int status;
87
88   if (n->severity > notif_severity)
89     return 0;
90
91   switch (n->severity) {
92   case NOTIF_FAILURE:
93     severity_string = "FAILURE";
94     log_severity = LOG_ERR;
95     break;
96   case NOTIF_WARNING:
97     severity_string = "WARNING";
98     log_severity = LOG_WARNING;
99     break;
100   case NOTIF_OKAY:
101     severity_string = "OKAY";
102     log_severity = LOG_NOTICE;
103     break;
104   default:
105     severity_string = "UNKNOWN";
106     log_severity = LOG_ERR;
107   }
108
109 #define BUFFER_ADD(...)                                                        \
110   do {                                                                         \
111     status = snprintf(&buf[offset], sizeof(buf) - offset, __VA_ARGS__);        \
112     if (status < 1)                                                            \
113       return -1;                                                               \
114     else if (((size_t)status) >= (sizeof(buf) - offset))                       \
115       return -ENOMEM;                                                          \
116     else                                                                       \
117       offset += ((size_t)status);                                              \
118   } while (0)
119
120 #define BUFFER_ADD_FIELD(field)                                                \
121   do {                                                                         \
122     if (n->field[0])                                                           \
123       BUFFER_ADD(", " #field " = %s", n->field);                               \
124   } while (0)
125
126   BUFFER_ADD("Notification: severity = %s", severity_string);
127   BUFFER_ADD_FIELD(host);
128   BUFFER_ADD_FIELD(plugin);
129   BUFFER_ADD_FIELD(plugin_instance);
130   BUFFER_ADD_FIELD(type);
131   BUFFER_ADD_FIELD(type_instance);
132   BUFFER_ADD_FIELD(message);
133
134 #undef BUFFER_ADD_FIELD
135 #undef BUFFER_ADD
136
137   buf[sizeof(buf) - 1] = '\0';
138
139   sl_log(log_severity, buf, NULL);
140
141   return 0;
142 } /* int sl_notification */
143
144 void module_register(void) {
145   openlog("collectd", LOG_CONS | LOG_PID, LOG_DAEMON);
146
147   plugin_register_config("syslog", sl_config, config_keys, config_keys_num);
148   plugin_register_log("syslog", sl_log, /* user_data = */ NULL);
149   plugin_register_notification("syslog", sl_notification, NULL);
150   plugin_register_shutdown("syslog", sl_shutdown);
151 } /* void module_register(void) */