Merge remote-tracking branch 'github/pr/2258'
[collectd.git] / src / memcached.c
1 /**
2  * collectd - src/memcached.c, based on src/hddtemp.c
3  * Copyright (C) 2007       Antony Dovgal
4  * Copyright (C) 2007-2012  Florian Forster
5  * Copyright (C) 2009       Doug MacEachern
6  * Copyright (C) 2009       Franck Lombardi
7  * Copyright (C) 2012       Nicolas Szalay
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU General Public License as published by the
11  * Free Software Foundation; either version 2 of the License, or (at your
12  * option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with this program; if not, write to the Free Software Foundation, Inc.,
21  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
22  *
23  * Authors:
24  *   Antony Dovgal <tony at daylessday dot org>
25  *   Florian octo Forster <octo at collectd.org>
26  *   Doug MacEachern <dougm at hyperic.com>
27  *   Franck Lombardi
28  *   Nicolas Szalay
29  **/
30
31 #include "collectd.h"
32
33 #include "common.h"
34 #include "plugin.h"
35
36 #include <netdb.h>
37 #include <netinet/in.h>
38 #include <netinet/tcp.h>
39 #include <sys/un.h>
40
41 #define MEMCACHED_DEF_HOST "127.0.0.1"
42 #define MEMCACHED_DEF_PORT "11211"
43
44 struct memcached_s {
45   char *name;
46   char *host;
47   char *socket;
48   char *connhost;
49   char *connport;
50 };
51 typedef struct memcached_s memcached_t;
52
53 static _Bool memcached_have_instances = 0;
54
55 static void memcached_free(void *arg) {
56   memcached_t *st = arg;
57   if (st == NULL)
58     return;
59
60   sfree(st->name);
61   sfree(st->host);
62   sfree(st->socket);
63   sfree(st->connhost);
64   sfree(st->connport);
65   sfree(st);
66 }
67
68 static int memcached_connect_unix(memcached_t *st) {
69   struct sockaddr_un serv_addr = {0};
70   int fd;
71
72   serv_addr.sun_family = AF_UNIX;
73   sstrncpy(serv_addr.sun_path, st->socket, sizeof(serv_addr.sun_path));
74
75   /* create our socket descriptor */
76   fd = socket(AF_UNIX, SOCK_STREAM, 0);
77   if (fd < 0) {
78     char errbuf[1024];
79     ERROR("memcached plugin: memcached_connect_unix: socket(2) failed: %s",
80           sstrerror(errno, errbuf, sizeof(errbuf)));
81     return -1;
82   }
83
84   /* connect to the memcached daemon */
85   int status = connect(fd, (struct sockaddr *)&serv_addr, sizeof(serv_addr));
86   if (status != 0) {
87     shutdown(fd, SHUT_RDWR);
88     close(fd);
89     fd = -1;
90   }
91
92   return fd;
93 } /* int memcached_connect_unix */
94
95 static int memcached_connect_inet(memcached_t *st) {
96   struct addrinfo *ai_list;
97   int status;
98   int fd = -1;
99
100   struct addrinfo ai_hints = {.ai_family = AF_UNSPEC,
101                               .ai_flags = AI_ADDRCONFIG,
102                               .ai_socktype = SOCK_STREAM};
103
104   status = getaddrinfo(st->connhost, st->connport, &ai_hints, &ai_list);
105   if (status != 0) {
106     char errbuf[1024];
107     ERROR("memcached plugin: memcached_connect_inet: "
108           "getaddrinfo(%s,%s) failed: %s",
109           st->connhost, st->connport,
110           (status == EAI_SYSTEM) ? sstrerror(errno, errbuf, sizeof(errbuf))
111                                  : gai_strerror(status));
112     return -1;
113   }
114
115   for (struct addrinfo *ai_ptr = ai_list; ai_ptr != NULL;
116        ai_ptr = ai_ptr->ai_next) {
117     /* create our socket descriptor */
118     fd = socket(ai_ptr->ai_family, ai_ptr->ai_socktype, ai_ptr->ai_protocol);
119     if (fd < 0) {
120       char errbuf[1024];
121       WARNING("memcached plugin: memcached_connect_inet: "
122               "socket(2) failed: %s",
123               sstrerror(errno, errbuf, sizeof(errbuf)));
124       continue;
125     }
126
127     /* connect to the memcached daemon */
128     status = (int)connect(fd, ai_ptr->ai_addr, ai_ptr->ai_addrlen);
129     if (status != 0) {
130       shutdown(fd, SHUT_RDWR);
131       close(fd);
132       fd = -1;
133       continue;
134     }
135
136     /* A socket could be opened and connecting succeeded. We're done. */
137     break;
138   }
139
140   freeaddrinfo(ai_list);
141   return fd;
142 } /* int memcached_connect_inet */
143
144 static int memcached_connect(memcached_t *st) {
145   if (st->socket != NULL)
146     return memcached_connect_unix(st);
147   else
148     return memcached_connect_inet(st);
149 }
150
151 static int memcached_query_daemon(char *buffer, size_t buffer_size,
152                                   memcached_t *st) {
153   int fd, status;
154   size_t buffer_fill;
155
156   fd = memcached_connect(st);
157   if (fd < 0) {
158     ERROR("memcached plugin: Instance \"%s\" could not connect to daemon.",
159           st->name);
160     return -1;
161   }
162
163   status = (int)swrite(fd, "stats\r\n", strlen("stats\r\n"));
164   if (status != 0) {
165     char errbuf[1024];
166     ERROR("memcached plugin: write(2) failed: %s",
167           sstrerror(errno, errbuf, sizeof(errbuf)));
168     shutdown(fd, SHUT_RDWR);
169     close(fd);
170     return -1;
171   }
172
173   /* receive data from the memcached daemon */
174   memset(buffer, 0, buffer_size);
175
176   buffer_fill = 0;
177   while ((status = (int)recv(fd, buffer + buffer_fill,
178                              buffer_size - buffer_fill, /* flags = */ 0)) !=
179          0) {
180     char const end_token[5] = {'E', 'N', 'D', '\r', '\n'};
181     if (status < 0) {
182       char errbuf[1024];
183
184       if ((errno == EAGAIN) || (errno == EINTR))
185         continue;
186
187       ERROR("memcached: Error reading from socket: %s",
188             sstrerror(errno, errbuf, sizeof(errbuf)));
189       shutdown(fd, SHUT_RDWR);
190       close(fd);
191       return -1;
192     }
193
194     buffer_fill += (size_t)status;
195     if (buffer_fill > buffer_size) {
196       buffer_fill = buffer_size;
197       WARNING("memcached plugin: Message was truncated.");
198       break;
199     }
200
201     /* If buffer ends in end_token, we have all the data. */
202     if (memcmp(buffer + buffer_fill - sizeof(end_token), end_token,
203                sizeof(end_token)) == 0)
204       break;
205   } /* while (recv) */
206
207   status = 0;
208   if (buffer_fill == 0) {
209     WARNING("memcached plugin: No data returned by memcached.");
210     status = -1;
211   }
212
213   shutdown(fd, SHUT_RDWR);
214   close(fd);
215   return status;
216 } /* int memcached_query_daemon */
217
218 static void memcached_init_vl(value_list_t *vl, memcached_t const *st) {
219   sstrncpy(vl->plugin, "memcached", sizeof(vl->plugin));
220   if (st->host != NULL)
221     sstrncpy(vl->host, st->host, sizeof(vl->host));
222   if (st->name != NULL)
223     sstrncpy(vl->plugin_instance, st->name, sizeof(vl->plugin_instance));
224 }
225
226 static void submit_derive(const char *type, const char *type_inst,
227                           derive_t value, memcached_t *st) {
228   value_list_t vl = VALUE_LIST_INIT;
229
230   memcached_init_vl(&vl, st);
231   vl.values = &(value_t){.derive = value};
232   vl.values_len = 1;
233   sstrncpy(vl.type, type, sizeof(vl.type));
234   if (type_inst != NULL)
235     sstrncpy(vl.type_instance, type_inst, sizeof(vl.type_instance));
236
237   plugin_dispatch_values(&vl);
238 }
239
240 static void submit_derive2(const char *type, const char *type_inst,
241                            derive_t value0, derive_t value1, memcached_t *st) {
242   value_list_t vl = VALUE_LIST_INIT;
243   value_t values[] = {
244       {.derive = value0}, {.derive = value1},
245   };
246
247   memcached_init_vl(&vl, st);
248   vl.values = values;
249   vl.values_len = STATIC_ARRAY_SIZE(values);
250   sstrncpy(vl.type, type, sizeof(vl.type));
251   if (type_inst != NULL)
252     sstrncpy(vl.type_instance, type_inst, sizeof(vl.type_instance));
253
254   plugin_dispatch_values(&vl);
255 }
256
257 static void submit_gauge(const char *type, const char *type_inst, gauge_t value,
258                          memcached_t *st) {
259   value_list_t vl = VALUE_LIST_INIT;
260
261   memcached_init_vl(&vl, st);
262   vl.values = &(value_t){.gauge = value};
263   vl.values_len = 1;
264   sstrncpy(vl.type, type, sizeof(vl.type));
265   if (type_inst != NULL)
266     sstrncpy(vl.type_instance, type_inst, sizeof(vl.type_instance));
267
268   plugin_dispatch_values(&vl);
269 }
270
271 static void submit_gauge2(const char *type, const char *type_inst,
272                           gauge_t value0, gauge_t value1, memcached_t *st) {
273   value_list_t vl = VALUE_LIST_INIT;
274   value_t values[] = {
275       {.gauge = value0}, {.gauge = value1},
276   };
277
278   memcached_init_vl(&vl, st);
279   vl.values = values;
280   vl.values_len = STATIC_ARRAY_SIZE(values);
281   sstrncpy(vl.type, type, sizeof(vl.type));
282   if (type_inst != NULL)
283     sstrncpy(vl.type_instance, type_inst, sizeof(vl.type_instance));
284
285   plugin_dispatch_values(&vl);
286 }
287
288 static int memcached_read(user_data_t *user_data) {
289   char buf[4096];
290   char *fields[3];
291   char *ptr;
292   char *line;
293   char *saveptr;
294   int fields_num;
295
296   gauge_t bytes_used = NAN;
297   gauge_t bytes_total = NAN;
298   gauge_t hits = NAN;
299   gauge_t gets = NAN;
300   gauge_t incr_hits = NAN;
301   derive_t incr = 0;
302   gauge_t decr_hits = NAN;
303   derive_t decr = 0;
304   derive_t rusage_user = 0;
305   derive_t rusage_syst = 0;
306   derive_t octets_rx = 0;
307   derive_t octets_tx = 0;
308
309   memcached_t *st;
310   st = user_data->data;
311
312   /* get data from daemon */
313   if (memcached_query_daemon(buf, sizeof(buf), st) < 0) {
314     return -1;
315   }
316
317 #define FIELD_IS(cnst)                                                         \
318   (((sizeof(cnst) - 1) == name_len) && (strcmp(cnst, fields[1]) == 0))
319
320   ptr = buf;
321   saveptr = NULL;
322   while ((line = strtok_r(ptr, "\n\r", &saveptr)) != NULL) {
323     int name_len;
324
325     ptr = NULL;
326
327     fields_num = strsplit(line, fields, 3);
328     if (fields_num != 3)
329       continue;
330
331     name_len = strlen(fields[1]);
332     if (name_len == 0)
333       continue;
334
335     /*
336      * For an explanation on these fields please refer to
337      * <https://github.com/memcached/memcached/blob/master/doc/protocol.txt>
338      */
339
340     /*
341      * CPU time consumed by the memcached process
342      */
343     if (FIELD_IS("rusage_user")) {
344       rusage_user = atoll(fields[2]);
345     } else if (FIELD_IS("rusage_system")) {
346       rusage_syst = atoll(fields[2]);
347     }
348
349     /*
350      * Number of threads of this instance
351      */
352     else if (FIELD_IS("threads")) {
353       submit_gauge2("ps_count", NULL, NAN, atof(fields[2]), st);
354     }
355
356     /*
357      * Number of items stored
358      */
359     else if (FIELD_IS("curr_items")) {
360       submit_gauge("memcached_items", "current", atof(fields[2]), st);
361     }
362
363     /*
364      * Number of bytes used and available (total - used)
365      */
366     else if (FIELD_IS("bytes")) {
367       bytes_used = atof(fields[2]);
368     } else if (FIELD_IS("limit_maxbytes")) {
369       bytes_total = atof(fields[2]);
370     }
371
372     /*
373      * Connections
374      */
375     else if (FIELD_IS("curr_connections")) {
376       submit_gauge("memcached_connections", "current", atof(fields[2]), st);
377     } else if (FIELD_IS("listen_disabled_num")) {
378       submit_derive("connections", "listen_disabled", atof(fields[2]), st);
379     }
380
381     /*
382      * Commands
383      */
384     else if ((name_len > 4) && (strncmp(fields[1], "cmd_", 4) == 0)) {
385       const char *name = fields[1] + 4;
386       submit_derive("memcached_command", name, atoll(fields[2]), st);
387       if (strcmp(name, "get") == 0)
388         gets = atof(fields[2]);
389     }
390
391     /*
392      * Increment/Decrement
393      */
394     else if (FIELD_IS("incr_misses")) {
395       derive_t incr_count = atoll(fields[2]);
396       submit_derive("memcached_ops", "incr_misses", incr_count, st);
397       incr += incr_count;
398     } else if (FIELD_IS("incr_hits")) {
399       derive_t incr_count = atoll(fields[2]);
400       submit_derive("memcached_ops", "incr_hits", incr_count, st);
401       incr_hits = atof(fields[2]);
402       incr += incr_count;
403     } else if (FIELD_IS("decr_misses")) {
404       derive_t decr_count = atoll(fields[2]);
405       submit_derive("memcached_ops", "decr_misses", decr_count, st);
406       decr += decr_count;
407     } else if (FIELD_IS("decr_hits")) {
408       derive_t decr_count = atoll(fields[2]);
409       submit_derive("memcached_ops", "decr_hits", decr_count, st);
410       decr_hits = atof(fields[2]);
411       decr += decr_count;
412     }
413
414     /*
415      * Operations on the cache:
416      * - get hits/misses
417      * - delete hits/misses
418      * - evictions
419      */
420     else if (FIELD_IS("get_hits")) {
421       submit_derive("memcached_ops", "hits", atoll(fields[2]), st);
422       hits = atof(fields[2]);
423     } else if (FIELD_IS("get_misses")) {
424       submit_derive("memcached_ops", "misses", atoll(fields[2]), st);
425     } else if (FIELD_IS("evictions")) {
426       submit_derive("memcached_ops", "evictions", atoll(fields[2]), st);
427     } else if (FIELD_IS("delete_hits")) {
428       submit_derive("memcached_ops", "delete_hits", atoll(fields[2]), st);
429     } else if (FIELD_IS("delete_misses")) {
430       submit_derive("memcached_ops", "delete_misses", atoll(fields[2]), st);
431     }
432
433     /*
434      * Network traffic
435      */
436     else if (FIELD_IS("bytes_read")) {
437       octets_rx = atoll(fields[2]);
438     } else if (FIELD_IS("bytes_written")) {
439       octets_tx = atoll(fields[2]);
440     }
441   } /* while ((line = strtok_r (ptr, "\n\r", &saveptr)) != NULL) */
442
443   if (!isnan(bytes_used) && !isnan(bytes_total) && (bytes_used <= bytes_total))
444     submit_gauge2("df", "cache", bytes_used, bytes_total - bytes_used, st);
445
446   if ((rusage_user != 0) || (rusage_syst != 0))
447     submit_derive2("ps_cputime", NULL, rusage_user, rusage_syst, st);
448
449   if ((octets_rx != 0) || (octets_tx != 0))
450     submit_derive2("memcached_octets", NULL, octets_rx, octets_tx, st);
451
452   if (!isnan(gets) && !isnan(hits)) {
453     gauge_t rate = NAN;
454
455     if (gets != 0.0)
456       rate = 100.0 * hits / gets;
457
458     submit_gauge("percent", "hitratio", rate, st);
459   }
460
461   if (!isnan(incr_hits) && incr != 0) {
462     gauge_t incr_rate = 100.0 * incr_hits / incr;
463     submit_gauge("percent", "incr_hitratio", incr_rate, st);
464     submit_derive("memcached_ops", "incr", incr, st);
465   }
466
467   if (!isnan(decr_hits) && decr != 0) {
468     gauge_t decr_rate = 100.0 * decr_hits / decr;
469     submit_gauge("percent", "decr_hitratio", decr_rate, st);
470     submit_derive("memcached_ops", "decr", decr, st);
471   }
472
473   return 0;
474 } /* int memcached_read */
475
476 static int memcached_set_defaults(memcached_t *st) {
477   /* If no <Address> used then:
478    * - Connect to the destination specified by <Host>, if present.
479    *   If not, use the default address.
480    * - Use the default hostname (set st->host to NULL), if
481    *    - Legacy mode is used (no configuration options at all), or
482    *    - "Host" option is not provided, or
483    *    - "Host" option is set to "localhost" or "127.0.0.1".
484    *
485    * If <Address> used then host may be set to "localhost" or "127.0.0.1"
486    * explicitly.
487    */
488   if (st->connhost == NULL) {
489     if (st->host) {
490       st->connhost = strdup(st->host);
491       if (st->connhost == NULL)
492         return ENOMEM;
493
494       if ((strcmp("127.0.0.1", st->host) == 0) ||
495           (strcmp("localhost", st->host) == 0))
496         sfree(st->host);
497     } else {
498       st->connhost = strdup(MEMCACHED_DEF_HOST);
499       if (st->connhost == NULL)
500         return ENOMEM;
501     }
502   }
503
504   if (st->connport == NULL) {
505     st->connport = strdup(MEMCACHED_DEF_PORT);
506     if (st->connport == NULL)
507       return ENOMEM;
508   }
509
510   assert(st->connhost != NULL);
511   assert(st->connport != NULL);
512
513   return 0;
514 } /* int memcached_set_defaults */
515
516 static int memcached_add_read_callback(memcached_t *st) {
517   char callback_name[3 * DATA_MAX_NAME_LEN];
518
519   if (memcached_set_defaults(st) != 0) {
520     memcached_free(st);
521     return -1;
522   }
523
524   snprintf(callback_name, sizeof(callback_name), "memcached/%s",
525            (st->name != NULL) ? st->name : "__legacy__");
526
527   return plugin_register_complex_read(
528       /* group = */ "memcached",
529       /* name      = */ callback_name,
530       /* callback  = */ memcached_read,
531       /* interval  = */ 0,
532       &(user_data_t){
533           .data = st, .free_func = memcached_free,
534       });
535 } /* int memcached_add_read_callback */
536
537 /* Configuration handling functiions
538  * <Plugin memcached>
539  *   <Instance "instance_name">
540  *     Host foo.zomg.com
541  *     Address 1.2.3.4
542  *     Port "1234"
543  *   </Instance>
544  * </Plugin>
545  */
546 static int config_add_instance(oconfig_item_t *ci) {
547   memcached_t *st;
548   int status = 0;
549
550   /* Disable automatic generation of default instance in the init callback. */
551   memcached_have_instances = 1;
552
553   st = calloc(1, sizeof(*st));
554   if (st == NULL) {
555     ERROR("memcached plugin: calloc failed.");
556     return ENOMEM;
557   }
558
559   st->name = NULL;
560   st->host = NULL;
561   st->socket = NULL;
562   st->connhost = NULL;
563   st->connport = NULL;
564
565   if (strcasecmp(ci->key, "Instance") == 0)
566     status = cf_util_get_string(ci, &st->name);
567
568   if (status != 0) {
569     sfree(st);
570     return status;
571   }
572
573   for (int i = 0; i < ci->children_num; i++) {
574     oconfig_item_t *child = ci->children + i;
575
576     if (strcasecmp("Socket", child->key) == 0)
577       status = cf_util_get_string(child, &st->socket);
578     else if (strcasecmp("Host", child->key) == 0)
579       status = cf_util_get_string(child, &st->host);
580     else if (strcasecmp("Address", child->key) == 0)
581       status = cf_util_get_string(child, &st->connhost);
582     else if (strcasecmp("Port", child->key) == 0)
583       status = cf_util_get_service(child, &st->connport);
584     else {
585       WARNING("memcached plugin: Option `%s' not allowed here.", child->key);
586       status = -1;
587     }
588
589     if (status != 0)
590       break;
591   }
592
593   if (status != 0) {
594     memcached_free(st);
595     return -1;
596   }
597
598   return memcached_add_read_callback(st);
599 } /* int config_add_instance */
600
601 static int memcached_config(oconfig_item_t *ci) {
602   _Bool have_instance_block = 0;
603
604   for (int i = 0; i < ci->children_num; i++) {
605     oconfig_item_t *child = ci->children + i;
606
607     if (strcasecmp("Instance", child->key) == 0) {
608       config_add_instance(child);
609       have_instance_block = 1;
610     } else if (!have_instance_block) {
611       /* Non-instance option: Assume legacy configuration (without <Instance />
612        * blocks) and call config_add_instance() with the <Plugin /> block. */
613       return config_add_instance(ci);
614     } else
615       WARNING("memcached plugin: The configuration option "
616               "\"%s\" is not allowed here. Did you "
617               "forget to add an <Instance /> block "
618               "around the configuration?",
619               child->key);
620   } /* for (ci->children) */
621
622   return 0;
623 } /* int memcached_config */
624
625 static int memcached_init(void) {
626   memcached_t *st;
627   int status;
628
629   if (memcached_have_instances)
630     return 0;
631
632   /* No instances were configured, lets start a default instance. */
633   st = calloc(1, sizeof(*st));
634   if (st == NULL)
635     return ENOMEM;
636   st->name = NULL;
637   st->host = NULL;
638   st->socket = NULL;
639   st->connhost = NULL;
640   st->connport = NULL;
641
642   status = memcached_add_read_callback(st);
643   if (status == 0)
644     memcached_have_instances = 1;
645
646   return status;
647 } /* int memcached_init */
648
649 void module_register(void) {
650   plugin_register_complex_config("memcached", memcached_config);
651   plugin_register_init("memcached", memcached_init);
652 }