d4d17f2d63754f2fed1117046603355d3bd805a1
[collectd.git] / src / http.c
1 /**
2  * collectd - src/http.c
3  * Copyright (C) 2007-2009  Florian octo Forster
4  * Copyright (C) 2009       Doug MacEachern
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by the
8  * Free Software Foundation; only version 2 of the License is applicable.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  *
19  * Authors:
20  *   Florian octo Forster <octo at verplant.org>
21  *   Doug MacEachern <dougm@hyperic.com>
22  **/
23
24 #include "collectd.h"
25 #include "plugin.h"
26 #include "common.h"
27 #include "utils_cache.h"
28 #include "utils_parse_option.h"
29
30 #if HAVE_PTHREAD_H
31 # include <pthread.h>
32 #endif
33
34 #include <curl/curl.h>
35
36 /*
37  * Private variables
38  */
39 static const char *config_keys[] =
40 {
41         "URL", "User", "Password"
42 };
43 static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
44
45 static char *location   = NULL;
46
47 char *user;
48 char *pass;
49 char *credentials;
50
51 CURL *curl;
52 char curl_errbuf[CURL_ERROR_SIZE];
53
54 #define SEND_BUFFER_SIZE 4096
55 static char   send_buffer[SEND_BUFFER_SIZE];
56 static int    send_buffer_fill;
57
58 static pthread_mutex_t  send_lock = PTHREAD_MUTEX_INITIALIZER;
59
60 static int http_init(void) /* {{{ */
61 {
62
63         curl = curl_easy_init ();
64
65         if (curl == NULL)
66         {
67                 ERROR ("curl plugin: curl_easy_init failed.");
68                 return (-1);
69         }
70
71         struct curl_slist *headers=NULL;
72
73         curl_easy_setopt (curl, CURLOPT_USERAGENT, PACKAGE_NAME"/"PACKAGE_VERSION);
74
75         headers = curl_slist_append(headers, "Accept:  */*");
76         headers = curl_slist_append(headers, "Content-Type: text/plain");
77         curl_easy_setopt (curl, CURLOPT_HTTPHEADER, headers);
78
79         curl_easy_setopt (curl, CURLOPT_ERRORBUFFER, curl_errbuf);
80         curl_easy_setopt (curl, CURLOPT_URL, location);
81
82         if (user != NULL)
83         {
84                 size_t credentials_size;
85
86                 credentials_size = strlen (user) + 2;
87                 if (pass != NULL)
88                         credentials_size += strlen (pass);
89
90                 credentials = (char *) malloc (credentials_size);
91                 if (credentials == NULL)
92                 {
93                         ERROR ("curl plugin: malloc failed.");
94                         return (-1);
95                 }
96
97                 ssnprintf (credentials, credentials_size, "%s:%s",
98                                 user, (pass == NULL) ? "" : pass);
99                 curl_easy_setopt (curl, CURLOPT_USERPWD, credentials);
100                 curl_easy_setopt (curl, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST);
101         }
102
103         return (0);
104 } /* }}} */
105
106 static int http_value_list_to_string (char *buffer, /* {{{ */
107                 size_t buffer_size,
108                 const data_set_t *ds, const value_list_t *vl)
109 {
110         size_t offset = 0;
111         int status;
112         int i;
113
114         assert (0 == strcmp (ds->type, vl->type));
115
116         memset (buffer, 0, buffer_size);
117
118 #define BUFFER_ADD(...) do { \
119         status = ssnprintf (buffer + offset, buffer_size - offset, \
120                         __VA_ARGS__); \
121         if (status < 1) \
122                 return (-1); \
123         else if (((size_t) status) >= (buffer_size - offset)) \
124                 return (-1); \
125         else \
126                 offset += ((size_t) status); \
127 } while (0)
128
129         BUFFER_ADD ("%lu", (unsigned long) vl->time);
130
131         for (i = 0; i < ds->ds_num; i++)
132 {
133         if (ds->ds[i].type == DS_TYPE_GAUGE)
134                 BUFFER_ADD (":%f", vl->values[i].gauge);
135         else if (ds->ds[i].type == DS_TYPE_COUNTER)
136                 BUFFER_ADD (":%llu", vl->values[i].counter);
137         else if (ds->ds[i].type == DS_TYPE_DERIVE)
138                 BUFFER_ADD (":%"PRIi64, vl->values[i].derive);
139         else if (ds->ds[i].type == DS_TYPE_ABSOLUTE)
140                 BUFFER_ADD (":%"PRIu64, vl->values[i].absolute);
141         else
142         {
143                 ERROR ("http plugin: Unknown data source type: %i",
144                                 ds->ds[i].type);
145                 return (-1);
146         }
147 } /* for ds->ds_num */
148
149 #undef BUFFER_ADD
150
151 return (0);
152 } /* }}} int http_value_list_to_string */
153
154 static int http_config (const char *key, const char *value) /* {{{ */
155 {
156         if (strcasecmp ("URL", key) == 0)
157         {
158                 if (location != NULL)
159                         free (location);
160                 location = strdup (value);
161                 if (location != NULL)
162                 {
163                         int len = strlen (location);
164                         while ((len > 0) && (location[len - 1] == '/'))
165                         {
166                                 len--;
167                                 location[len] = '\0';
168                         }
169                         if (len <= 0)
170                         {
171                                 free (location);
172                                 location = NULL;
173                         }
174                 }
175         }
176         else if (strcasecmp ("User", key) == 0)
177         {
178                 if (user != NULL)
179                         free (user);
180                 user = strdup (value);
181                 if (user != NULL)
182                 {
183                         int len = strlen (user);
184                         while ((len > 0) && (user[len - 1] == '/'))
185                         {
186                                 len--;
187                                 user[len] = '\0';
188                         }
189                         if (len <= 0)
190                         {
191                                 free (user);
192                                 user = NULL;
193                         }
194                 }
195         }
196         else if (strcasecmp ("Password", key) == 0)
197         {
198                 if (pass != NULL)
199                         free (pass);
200                 pass = strdup (value);
201                 if (pass != NULL)
202                 {
203                         int len = strlen (pass);
204                         while ((len > 0) && (pass[len - 1] == '/'))
205                         {
206                                 len--;
207                                 pass[len] = '\0';
208                         }
209                         if (len <= 0)
210                         {
211                                 free (pass);
212                                 pass = NULL;
213                         }
214                 }
215         }
216         else
217         {
218                 return (-1);
219         }
220         return (0);
221 } /* }}} int http_config */
222
223 static void http_init_buffer (void)  /* {{{ */
224 {
225         memset (send_buffer, 0, sizeof (send_buffer));
226         send_buffer_fill = 0;
227 } /* }}} http_init_buffer */
228
229 static int http_send_buffer (char *buffer) /* {{{ */
230 {
231         int status = 0;
232
233         curl_easy_setopt (curl, CURLOPT_POSTFIELDS, buffer);
234         status = curl_easy_perform (curl);
235         if (status != 0)
236         {
237                 ERROR ("http plugin: curl_easy_perform failed with staus %i: %s",
238                                 status, curl_errbuf);
239         }
240         return (status);
241 } /* }}} http_send_buffer */
242
243 static int http_flush_buffer (void) /* {{{ */
244 {
245         int status = 0;
246         DEBUG ("http plugin: flushing buffer:\n%s", send_buffer);
247
248         status = http_send_buffer (send_buffer);
249         http_init_buffer ();
250
251         return (status);
252 } /* }}} http_flush_buffer */
253
254 static int http_write (const data_set_t *ds, const value_list_t *vl, /* {{{ */
255                 user_data_t __attribute__((unused)) *user_data)
256 {
257         char key[1024];
258         char values[512];
259
260         int status;
261
262         if (0 != strcmp (ds->type, vl->type)) {
263                 ERROR ("http plugin: DS type does not match value list type");
264                 return -1;
265         }
266
267         status = FORMAT_VL (key, sizeof (key), vl);
268         if (status != 0) {
269                 ERROR ("http plugin: error with format_name");
270                 return (status);
271         }
272
273         status = http_value_list_to_string (values, sizeof (values), ds, vl);
274         if (status != 0) {
275                 ERROR ("http plugin: error with http_value_list_to_string");
276                 return (status);
277         }
278
279
280         pthread_mutex_lock (&send_lock);
281
282         /* `values' has a leading `:'. */
283         status = ssnprintf (send_buffer + send_buffer_fill,
284                         sizeof (send_buffer) - send_buffer_fill,
285                         "PUTVAL %s interval=%i %lu%s\n",
286                         key, interval_g, (unsigned long) vl->time, values);
287         send_buffer_fill += status;
288
289         if ((sizeof (send_buffer) - send_buffer_fill) < (sizeof(key) + sizeof(values)))
290         {
291                 status = http_flush_buffer();
292                 if (status != 0)
293                         return status;
294
295         }
296
297         pthread_mutex_unlock (&send_lock);
298
299
300         return (0);
301
302 } /* }}} int http_write */
303
304 static int http_shutdown (void) /* {{{ */
305 {
306         http_flush_buffer();
307         curl_easy_cleanup(curl);
308         return (0);
309 }
310
311 void module_register (void) /* {{{ */
312 {
313         plugin_register_init("http", http_init);
314         plugin_register_config ("http", http_config,
315                         config_keys, config_keys_num);
316         plugin_register_write ("http", http_write, /* user_data = */ NULL);
317         plugin_register_shutdown("http", http_shutdown);
318 } /* }}} void module_register */
319
320 /* vim: set fdm=marker sw=8 ts=8 tw=78 : */