Merge pull request #44 from octo/ff/perl
[collectd.git] / src / libcollectdclient / client.c
1 /**
2  * libcollectdclient - src/libcollectdclient/client.c
3  * Copyright (C) 2008  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Authors:
19  *   Florian octo Forster <octo at verplant.org>
20  **/
21
22 #if HAVE_CONFIG_H
23 # include "config.h"
24 #endif
25
26 #if !defined(__GNUC__) || !__GNUC__
27 # define __attribute__(x) /**/
28 #endif
29
30 #include "lcc_features.h"
31
32 #include <stdlib.h>
33 #include <stdio.h>
34 #include <unistd.h>
35 #include <sys/types.h>
36 #include <sys/socket.h>
37 #include <sys/un.h>
38 #include <string.h>
39 #include <assert.h>
40 #include <errno.h>
41 #include <math.h>
42 #include <netdb.h>
43
44 #include "client.h"
45
46 /* NI_MAXHOST has been obsoleted by RFC 3493 which is a reason for SunOS 5.11
47  * to no longer define it. We'll use the old, RFC 2553 value here. */
48 #ifndef NI_MAXHOST
49 # define NI_MAXHOST 1025
50 #endif
51
52 /* OpenBSD doesn't have EPROTO, FreeBSD doesn't have EILSEQ. Oh what joy! */
53 #ifndef EILSEQ
54 # ifdef EPROTO
55 #  define EILSEQ EPROTO
56 # else
57 #  define EILSEQ EINVAL
58 # endif
59 #endif
60
61 /* Secure/static macros. They work like `strcpy' and `strcat', but assure null
62  * termination. They work for static buffers only, because they use `sizeof'.
63  * The `SSTRCATF' combines the functionality of `snprintf' and `strcat' which
64  * is very useful to add formatted stuff to the end of a buffer. */
65 #define SSTRCPY(d,s) do { \
66     strncpy ((d), (s), sizeof (d)); \
67     (d)[sizeof (d) - 1] = 0; \
68   } while (0)
69
70 #define SSTRCAT(d,s) do { \
71     size_t _l = strlen (d); \
72     strncpy ((d) + _l, (s), sizeof (d) - _l); \
73     (d)[sizeof (d) - 1] = 0; \
74   } while (0)
75
76 #define SSTRCATF(d, ...) do { \
77     char _b[sizeof (d)]; \
78     snprintf (_b, sizeof (_b), __VA_ARGS__); \
79     _b[sizeof (_b) - 1] = 0; \
80     SSTRCAT ((d), _b); \
81   } while (0)
82     
83
84 #define LCC_SET_ERRSTR(c, ...) do { \
85   snprintf ((c)->errbuf, sizeof ((c)->errbuf), __VA_ARGS__); \
86   (c)->errbuf[sizeof ((c)->errbuf) - 1] = 0; \
87 } while (0)
88
89 #if COLLECT_DEBUG
90 # define LCC_DEBUG(...) printf (__VA_ARGS__)
91 #else
92 # define LCC_DEBUG(...) /**/
93 #endif
94
95 /*
96  * Types
97  */
98 struct lcc_connection_s
99 {
100   FILE *fh;
101   char errbuf[1024];
102 };
103
104 struct lcc_response_s
105 {
106   int status;
107   char message[1024];
108   char **lines;
109   size_t lines_num;
110 };
111 typedef struct lcc_response_s lcc_response_t;
112
113 /*
114  * Private functions
115  */
116 /* Even though Posix requires "strerror_r" to return an "int",
117  * some systems (e.g. the GNU libc) return a "char *" _and_
118  * ignore the second argument ... -tokkee */
119 static char *sstrerror (int errnum, char *buf, size_t buflen)
120 {
121   buf[0] = 0;
122
123 #if !HAVE_STRERROR_R
124   snprintf (buf, buflen, "Error #%i; strerror_r is not available.", errnum);
125 /* #endif !HAVE_STRERROR_R */
126
127 #elif STRERROR_R_CHAR_P
128   {
129     char *temp;
130     temp = strerror_r (errnum, buf, buflen);
131     if (buf[0] == 0)
132     {
133       if ((temp != NULL) && (temp != buf) && (temp[0] != 0))
134         strncpy (buf, temp, buflen);
135       else
136         strncpy (buf, "strerror_r did not return "
137             "an error message", buflen);
138     }
139   }
140 /* #endif STRERROR_R_CHAR_P */
141
142 #else
143   if (strerror_r (errnum, buf, buflen) != 0)
144   {
145     snprintf (buf, buflen, "Error #%i; "
146         "Additionally, strerror_r failed.",
147         errnum);
148   }
149 #endif /* STRERROR_R_CHAR_P */
150
151   buf[buflen - 1] = 0;
152
153   return (buf);
154 } /* char *sstrerror */
155
156 static int lcc_set_errno (lcc_connection_t *c, int err) /* {{{ */
157 {
158   if (c == NULL)
159     return (-1);
160
161   sstrerror (err, c->errbuf, sizeof (c->errbuf));
162   c->errbuf[sizeof (c->errbuf) - 1] = 0;
163
164   return (0);
165 } /* }}} int lcc_set_errno */
166
167 /* lcc_strdup: Since `strdup' is an XSI extension, we provide our own version
168  * here. */
169 __attribute__((malloc, nonnull (1)))
170 static char *lcc_strdup (const char *str) /* {{{ */
171 {
172   size_t strsize;
173   char *ret;
174
175   strsize = strlen (str) + 1;
176   ret = (char *) malloc (strsize);
177   if (ret != NULL)
178     memcpy (ret, str, strsize);
179   return (ret);
180 } /* }}} char *lcc_strdup */
181
182 __attribute__((nonnull (1, 2)))
183 static char *lcc_strescape (char *dest, const char *src, size_t dest_size) /* {{{ */
184 {
185   size_t dest_pos;
186   size_t src_pos;
187
188   dest_pos = 0;
189   src_pos = 0;
190
191   assert (dest_size >= 3);
192
193   dest[dest_pos] = '"';
194   dest_pos++;
195
196   while (42)
197   {
198     if ((dest_pos == (dest_size - 2))
199         || (src[src_pos] == 0))
200       break;
201
202     if ((src[src_pos] == '"') || (src[src_pos] == '\\'))
203     {
204       /* Check if there is enough space for both characters.. */
205       if (dest_pos == (dest_size - 3))
206         break;
207
208       dest[dest_pos] = '\\';
209       dest_pos++;
210     }
211
212     dest[dest_pos] = src[src_pos];
213     dest_pos++;
214     src_pos++;
215   }
216
217   assert (dest_pos <= (dest_size - 2));
218
219   dest[dest_pos] = '"';
220   dest_pos++;
221
222   dest[dest_pos] = 0;
223   dest_pos++;
224   src_pos++;
225
226   return (dest);
227 } /* }}} char *lcc_strescape */
228
229 /* lcc_chomp: Removes all control-characters at the end of a string. */
230 static void lcc_chomp (char *str) /* {{{ */
231 {
232   size_t str_len;
233
234   str_len = strlen (str);
235   while (str_len > 0)
236   {
237     if (str[str_len - 1] >= 32)
238       break;
239     str[str_len - 1] = 0;
240     str_len--;
241   }
242 } /* }}} void lcc_chomp */
243
244 static void lcc_response_free (lcc_response_t *res) /* {{{ */
245 {
246   size_t i;
247
248   if (res == NULL)
249     return;
250
251   for (i = 0; i < res->lines_num; i++)
252     free (res->lines[i]);
253   free (res->lines);
254   res->lines = NULL;
255 } /* }}} void lcc_response_free */
256
257 static int lcc_send (lcc_connection_t *c, const char *command) /* {{{ */
258 {
259   int status;
260
261   LCC_DEBUG ("send:    --> %s\n", command);
262
263   status = fprintf (c->fh, "%s\r\n", command);
264   if (status < 0)
265   {
266     lcc_set_errno (c, errno);
267     return (-1);
268   }
269
270   return (0);
271 } /* }}} int lcc_send */
272
273 static int lcc_receive (lcc_connection_t *c, /* {{{ */
274     lcc_response_t *ret_res)
275 {
276   lcc_response_t res;
277   char *ptr;
278   char buffer[4096];
279   size_t i;
280
281   memset (&res, 0, sizeof (res));
282
283   /* Read the first line, containing the status and a message */
284   ptr = fgets (buffer, sizeof (buffer), c->fh);
285   if (ptr == NULL)
286   {
287     lcc_set_errno (c, errno);
288     return (-1);
289   }
290   lcc_chomp (buffer);
291   LCC_DEBUG ("receive: <-- %s\n", buffer);
292
293   /* Convert the leading status to an integer and make `ptr' to point to the
294    * beginning of the message. */
295   ptr = NULL;
296   errno = 0;
297   res.status = strtol (buffer, &ptr, 0);
298   if ((errno != 0) || (ptr == &buffer[0]))
299   {
300     lcc_set_errno (c, errno);
301     return (-1);
302   }
303
304   /* Skip white spaces after the status number */
305   while ((*ptr == ' ') || (*ptr == '\t'))
306     ptr++;
307
308   /* Now copy the message. */
309   strncpy (res.message, ptr, sizeof (res.message));
310   res.message[sizeof (res.message) - 1] = 0;
311
312   /* Error or no lines follow: We're done. */
313   if (res.status <= 0)
314   {
315     memcpy (ret_res, &res, sizeof (res));
316     return (0);
317   }
318
319   /* Allocate space for the char-pointers */
320   res.lines_num = (size_t) res.status;
321   res.status = 0;
322   res.lines = (char **) malloc (res.lines_num * sizeof (char *));
323   if (res.lines == NULL)
324   {
325     lcc_set_errno (c, ENOMEM);
326     return (-1);
327   }
328
329   /* Now receive all the lines */
330   for (i = 0; i < res.lines_num; i++)
331   {
332     ptr = fgets (buffer, sizeof (buffer), c->fh);
333     if (ptr == NULL)
334     {
335       lcc_set_errno (c, errno);
336       break;
337     }
338     lcc_chomp (buffer);
339     LCC_DEBUG ("receive: <-- %s\n", buffer);
340
341     res.lines[i] = lcc_strdup (buffer);
342     if (res.lines[i] == NULL)
343     {
344       lcc_set_errno (c, ENOMEM);
345       break;
346     }
347   }
348
349   /* Check if the for-loop exited with an error. */
350   if (i < res.lines_num)
351   {
352     while (i > 0)
353     {
354       i--;
355       free (res.lines[i]);
356     }
357     free (res.lines);
358     return (-1);
359   }
360
361   memcpy (ret_res, &res, sizeof (res));
362   return (0);
363 } /* }}} int lcc_receive */
364
365 static int lcc_sendreceive (lcc_connection_t *c, /* {{{ */
366     const char *command, lcc_response_t *ret_res)
367 {
368   lcc_response_t res;
369   int status;
370
371   if (c->fh == NULL)
372   {
373     lcc_set_errno (c, EBADF);
374     return (-1);
375   }
376
377   status = lcc_send (c, command);
378   if (status != 0)
379     return (status);
380
381   memset (&res, 0, sizeof (res));
382   status = lcc_receive (c, &res);
383   if (status == 0)
384     memcpy (ret_res, &res, sizeof (*ret_res));
385
386   return (status);
387 } /* }}} int lcc_sendreceive */
388
389 static int lcc_open_unixsocket (lcc_connection_t *c, const char *path) /* {{{ */
390 {
391   struct sockaddr_un sa;
392   int fd;
393   int status;
394
395   assert (c != NULL);
396   assert (c->fh == NULL);
397   assert (path != NULL);
398
399   /* Don't use PF_UNIX here, because it's broken on Mac OS X (10.4, possibly
400    * others). */
401   fd = socket (AF_UNIX, SOCK_STREAM, /* protocol = */ 0);
402   if (fd < 0)
403   {
404     lcc_set_errno (c, errno);
405     return (-1);
406   }
407
408   memset (&sa, 0, sizeof (sa));
409   sa.sun_family = AF_UNIX;
410   strncpy (sa.sun_path, path, sizeof (sa.sun_path) - 1);
411
412   status = connect (fd, (struct sockaddr *) &sa, sizeof (sa));
413   if (status != 0)
414   {
415     lcc_set_errno (c, errno);
416     close (fd);
417     return (-1);
418   }
419
420   c->fh = fdopen (fd, "r+");
421   if (c->fh == NULL)
422   {
423     lcc_set_errno (c, errno);
424     close (fd);
425     return (-1);
426   }
427
428   return (0);
429 } /* }}} int lcc_open_unixsocket */
430
431 static int lcc_open_netsocket (lcc_connection_t *c, /* {{{ */
432     const char *addr_orig)
433 {
434   struct addrinfo ai_hints;
435   struct addrinfo *ai_res;
436   struct addrinfo *ai_ptr;
437   char addr_copy[NI_MAXHOST];
438   char *addr;
439   char *port;
440   int fd;
441   int status;
442
443   assert (c != NULL);
444   assert (c->fh == NULL);
445   assert (addr_orig != NULL);
446
447   strncpy(addr_copy, addr_orig, sizeof(addr_copy));
448   addr_copy[sizeof(addr_copy) - 1] = '\0';
449   addr = addr_copy;
450
451   memset (&ai_hints, 0, sizeof (ai_hints));
452   ai_hints.ai_flags = 0;
453 #ifdef AI_ADDRCONFIG
454   ai_hints.ai_flags |= AI_ADDRCONFIG;
455 #endif
456   ai_hints.ai_family = AF_UNSPEC;
457   ai_hints.ai_socktype = SOCK_STREAM;
458
459   port = NULL;
460   if (*addr == '[') /* IPv6+port format */
461   {
462     /* `addr' is something like "[2001:780:104:2:211:24ff:feab:26f8]:12345" */
463     addr++;
464
465     port = strchr (addr, ']');
466     if (port == NULL)
467     {
468       LCC_SET_ERRSTR (c, "malformed address: %s", addr_orig);
469       return (-1);
470     }
471     *port = 0;
472     port++;
473
474     if (*port == ':')
475       port++;
476     else if (*port == 0)
477       port = NULL;
478     else
479     {
480       LCC_SET_ERRSTR (c, "garbage after address: %s", port);
481       return (-1);
482     }
483   } /* if (*addr = ']') */
484   else if (strchr (addr, '.') != NULL) /* Hostname or IPv4 */
485   {
486     port = strrchr (addr, ':');
487     if (port != NULL)
488     {
489       *port = 0;
490       port++;
491     }
492   }
493
494   ai_res = NULL;
495   status = getaddrinfo (addr,
496                         port == NULL ? LCC_DEFAULT_PORT : port,
497                         &ai_hints, &ai_res);
498   if (status != 0)
499   {
500     LCC_SET_ERRSTR (c, "getaddrinfo: %s", gai_strerror (status));
501     return (-1);
502   }
503
504   for (ai_ptr = ai_res; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next)
505   {
506     fd = socket (ai_ptr->ai_family, ai_ptr->ai_socktype, ai_ptr->ai_protocol);
507     if (fd < 0)
508     {
509       status = errno;
510       fd = -1;
511       continue;
512     }
513
514     status = connect (fd, ai_ptr->ai_addr, ai_ptr->ai_addrlen);
515     if (status != 0)
516     {
517       status = errno;
518       close (fd);
519       fd = -1;
520       continue;
521     }
522
523     c->fh = fdopen (fd, "r+");
524     if (c->fh == NULL)
525     {
526       status = errno;
527       close (fd);
528       fd = -1;
529       continue;
530     }
531
532     assert (status == 0);
533     break;
534   } /* for (ai_ptr) */
535
536   if (status != 0)
537   {
538     lcc_set_errno (c, status);
539     return (-1);
540   }
541
542   return (0);
543 } /* }}} int lcc_open_netsocket */
544
545 static int lcc_open_socket (lcc_connection_t *c, const char *addr) /* {{{ */
546 {
547   int status = 0;
548
549   if (addr == NULL)
550     return (-1);
551
552   assert (c != NULL);
553   assert (c->fh == NULL);
554   assert (addr != NULL);
555
556   if (strncmp ("unix:", addr, strlen ("unix:")) == 0)
557     status = lcc_open_unixsocket (c, addr + strlen ("unix:"));
558   else if (addr[0] == '/')
559     status = lcc_open_unixsocket (c, addr);
560   else
561     status = lcc_open_netsocket (c, addr);
562
563   return (status);
564 } /* }}} int lcc_open_socket */
565
566 /*
567  * Public functions
568  */
569 unsigned int lcc_version (void) /* {{{ */
570 {
571   return (LCC_VERSION);
572 } /* }}} unsigned int lcc_version */
573
574 const char *lcc_version_string (void) /* {{{ */
575 {
576   return (LCC_VERSION_STRING);
577 } /* }}} const char *lcc_version_string */
578
579 const char *lcc_version_extra (void) /* {{{ */
580 {
581   return (LCC_VERSION_EXTRA);
582 } /* }}} const char *lcc_version_extra */
583
584 int lcc_connect (const char *address, lcc_connection_t **ret_con) /* {{{ */
585 {
586   lcc_connection_t *c;
587   int status;
588
589   if (address == NULL)
590     return (-1);
591
592   if (ret_con == NULL)
593     return (-1);
594
595   c = (lcc_connection_t *) malloc (sizeof (*c));
596   if (c == NULL)
597     return (-1);
598   memset (c, 0, sizeof (*c));
599
600   status = lcc_open_socket (c, address);
601   if (status != 0)
602   {
603     lcc_disconnect (c);
604     return (status);
605   }
606
607   *ret_con = c;
608   return (0);
609 } /* }}} int lcc_connect */
610
611 int lcc_disconnect (lcc_connection_t *c) /* {{{ */
612 {
613   if (c == NULL)
614     return (-1);
615
616   if (c->fh != NULL)
617   {
618     fclose (c->fh);
619     c->fh = NULL;
620   }
621
622   free (c);
623   return (0);
624 } /* }}} int lcc_disconnect */
625
626 int lcc_getval (lcc_connection_t *c, lcc_identifier_t *ident, /* {{{ */
627     size_t *ret_values_num, gauge_t **ret_values, char ***ret_values_names)
628 {
629   char ident_str[6 * LCC_NAME_LEN];
630   char ident_esc[12 * LCC_NAME_LEN];
631   char command[14 * LCC_NAME_LEN];
632
633   lcc_response_t res;
634   size_t   values_num;
635   gauge_t *values = NULL;
636   char   **values_names = NULL;
637
638   size_t i;
639   int status;
640
641   if (c == NULL)
642     return (-1);
643
644   if (ident == NULL)
645   {
646     lcc_set_errno (c, EINVAL);
647     return (-1);
648   }
649
650   /* Build a commend with an escaped version of the identifier string. */
651   status = lcc_identifier_to_string (c, ident_str, sizeof (ident_str), ident);
652   if (status != 0)
653     return (status);
654
655   snprintf (command, sizeof (command), "GETVAL %s",
656       lcc_strescape (ident_esc, ident_str, sizeof (ident_esc)));
657   command[sizeof (command) - 1] = 0;
658
659   /* Send talk to the daemon.. */
660   status = lcc_sendreceive (c, command, &res);
661   if (status != 0)
662     return (status);
663
664   if (res.status != 0)
665   {
666     LCC_SET_ERRSTR (c, "Server error: %s", res.message);
667     lcc_response_free (&res);
668     return (-1);
669   }
670
671   values_num = res.lines_num;
672
673 #define BAIL_OUT(e) do { \
674   lcc_set_errno (c, (e)); \
675   free (values); \
676   if (values_names != NULL) { \
677     for (i = 0; i < values_num; i++) { \
678       free (values_names[i]); \
679     } \
680   } \
681   free (values_names); \
682   lcc_response_free (&res); \
683   return (-1); \
684 } while (0)
685
686   /* If neither the values nor the names are requested, return here.. */
687   if ((ret_values == NULL) && (ret_values_names == NULL))
688   {
689     if (ret_values_num != NULL)
690       *ret_values_num = values_num;
691     lcc_response_free (&res);
692     return (0);
693   }
694
695   /* Allocate space for the values */
696   if (ret_values != NULL)
697   {
698     values = (gauge_t *) malloc (values_num * sizeof (*values));
699     if (values == NULL)
700       BAIL_OUT (ENOMEM);
701   }
702
703   if (ret_values_names != NULL)
704   {
705     values_names = (char **) calloc (values_num, sizeof (*values_names));
706     if (values_names == NULL)
707       BAIL_OUT (ENOMEM);
708   }
709
710   for (i = 0; i < res.lines_num; i++)
711   {
712     char *key;
713     char *value;
714     char *endptr;
715
716     key = res.lines[i];
717     value = strchr (key, '=');
718     if (value == NULL)
719       BAIL_OUT (EILSEQ);
720
721     *value = 0;
722     value++;
723
724     if (values != NULL)
725     {
726       endptr = NULL;
727       errno = 0;
728       values[i] = strtod (value, &endptr);
729
730       if ((endptr == value) || (errno != 0))
731         BAIL_OUT (errno);
732     }
733
734     if (values_names != NULL)
735     {
736       values_names[i] = lcc_strdup (key);
737       if (values_names[i] == NULL)
738         BAIL_OUT (ENOMEM);
739     }
740   } /* for (i = 0; i < res.lines_num; i++) */
741
742   if (ret_values_num != NULL)
743     *ret_values_num = values_num;
744   if (ret_values != NULL)
745     *ret_values = values;
746   if (ret_values_names != NULL)
747     *ret_values_names = values_names;
748
749   lcc_response_free (&res);
750
751   return (0);
752 } /* }}} int lcc_getval */
753
754 int lcc_putval (lcc_connection_t *c, const lcc_value_list_t *vl) /* {{{ */
755 {
756   char ident_str[6 * LCC_NAME_LEN];
757   char ident_esc[12 * LCC_NAME_LEN];
758   char command[1024] = "";
759   lcc_response_t res;
760   int status;
761   size_t i;
762
763   if ((c == NULL) || (vl == NULL) || (vl->values_len < 1)
764       || (vl->values == NULL) || (vl->values_types == NULL))
765   {
766     lcc_set_errno (c, EINVAL);
767     return (-1);
768   }
769
770   status = lcc_identifier_to_string (c, ident_str, sizeof (ident_str),
771       &vl->identifier);
772   if (status != 0)
773     return (status);
774
775   SSTRCATF (command, "PUTVAL %s",
776       lcc_strescape (ident_esc, ident_str, sizeof (ident_esc)));
777
778   if (vl->interval > 0)
779     SSTRCATF (command, " interval=%i", vl->interval);
780
781   if (vl->time > 0)
782     SSTRCATF (command, " %u", (unsigned int) vl->time);
783   else
784     SSTRCAT (command, " N");
785
786   for (i = 0; i < vl->values_len; i++)
787   {
788     if (vl->values_types[i] == LCC_TYPE_COUNTER)
789       SSTRCATF (command, ":%"PRIu64, vl->values[i].counter);
790     else if (vl->values_types[i] == LCC_TYPE_GAUGE)
791     {
792       if (isnan (vl->values[i].gauge))
793         SSTRCPY (command, ":U");
794       else
795         SSTRCATF (command, ":%g", vl->values[i].gauge);
796     }
797     else if (vl->values_types[i] == LCC_TYPE_DERIVE)
798         SSTRCATF (command, ":%"PRIu64, vl->values[i].derive);
799     else if (vl->values_types[i] == LCC_TYPE_ABSOLUTE)
800         SSTRCATF (command, ":%"PRIu64, vl->values[i].absolute);
801
802   } /* for (i = 0; i < vl->values_len; i++) */
803
804   status = lcc_sendreceive (c, command, &res);
805   if (status != 0)
806     return (status);
807
808   if (res.status != 0)
809   {
810     LCC_SET_ERRSTR (c, "Server error: %s", res.message);
811     lcc_response_free (&res);
812     return (-1);
813   }
814
815   lcc_response_free (&res);
816   return (0);
817 } /* }}} int lcc_putval */
818
819 int lcc_flush (lcc_connection_t *c, const char *plugin, /* {{{ */
820     lcc_identifier_t *ident, int timeout)
821 {
822   char command[1024] = "";
823   lcc_response_t res;
824   int status;
825
826   if (c == NULL)
827   {
828     lcc_set_errno (c, EINVAL);
829     return (-1);
830   }
831
832   SSTRCPY (command, "FLUSH");
833
834   if (timeout > 0)
835     SSTRCATF (command, " timeout=%i", timeout);
836
837   if (plugin != NULL)
838   {
839     char buffer[2 * LCC_NAME_LEN];
840     SSTRCATF (command, " plugin=%s",
841         lcc_strescape (buffer, plugin, sizeof (buffer)));
842   }
843
844   if (ident != NULL)
845   {
846     char ident_str[6 * LCC_NAME_LEN];
847     char ident_esc[12 * LCC_NAME_LEN];
848
849     status = lcc_identifier_to_string (c, ident_str, sizeof (ident_str), ident);
850     if (status != 0)
851       return (status);
852
853     SSTRCATF (command, " identifier=%s",
854         lcc_strescape (ident_esc, ident_str, sizeof (ident_esc)));
855   }
856
857   status = lcc_sendreceive (c, command, &res);
858   if (status != 0)
859     return (status);
860
861   if (res.status != 0)
862   {
863     LCC_SET_ERRSTR (c, "Server error: %s", res.message);
864     lcc_response_free (&res);
865     return (-1);
866   }
867
868   lcc_response_free (&res);
869   return (0);
870 } /* }}} int lcc_flush */
871
872 /* TODO: Implement lcc_putnotif */
873
874 int lcc_listval (lcc_connection_t *c, /* {{{ */
875     lcc_identifier_t **ret_ident, size_t *ret_ident_num)
876 {
877   lcc_response_t res;
878   size_t i;
879   int status;
880
881   lcc_identifier_t *ident;
882   size_t ident_num;
883
884   if (c == NULL)
885     return (-1);
886
887   if ((ret_ident == NULL) || (ret_ident_num == NULL))
888   {
889     lcc_set_errno (c, EINVAL);
890     return (-1);
891   }
892
893   status = lcc_sendreceive (c, "LISTVAL", &res);
894   if (status != 0)
895     return (status);
896
897   if (res.status != 0)
898   {
899     LCC_SET_ERRSTR (c, "Server error: %s", res.message);
900     lcc_response_free (&res);
901     return (-1);
902   }
903
904   ident_num = res.lines_num;
905   ident = (lcc_identifier_t *) malloc (ident_num * sizeof (*ident));
906   if (ident == NULL)
907   {
908     lcc_response_free (&res);
909     lcc_set_errno (c, ENOMEM);
910     return (-1);
911   }
912
913   for (i = 0; i < res.lines_num; i++)
914   {
915     char *time_str;
916     char *ident_str;
917
918     /* First field is the time. */
919     time_str = res.lines[i];
920
921     /* Set `ident_str' to the beginning of the second field. */
922     ident_str = time_str;
923     while ((*ident_str != ' ') && (*ident_str != '\t') && (*ident_str != 0))
924       ident_str++;
925     while ((*ident_str == ' ') || (*ident_str == '\t'))
926     {
927       *ident_str = 0;
928       ident_str++;
929     }
930
931     if (*ident_str == 0)
932     {
933       lcc_set_errno (c, EILSEQ);
934       status = -1;
935       break;
936     }
937
938     status = lcc_string_to_identifier (c, ident + i, ident_str);
939     if (status != 0)
940       break;
941   }
942
943   lcc_response_free (&res);
944
945   if (status != 0)
946   {
947     free (ident);
948     return (-1);
949   }
950
951   *ret_ident = ident;
952   *ret_ident_num = ident_num;
953
954   return (0);
955 } /* }}} int lcc_listval */
956
957 const char *lcc_strerror (lcc_connection_t *c) /* {{{ */
958 {
959   if (c == NULL)
960     return ("Invalid object");
961   return (c->errbuf);
962 } /* }}} const char *lcc_strerror */
963
964 int lcc_identifier_to_string (lcc_connection_t *c, /* {{{ */
965     char *string, size_t string_size, const lcc_identifier_t *ident)
966 {
967   if ((string == NULL) || (string_size < 6) || (ident == NULL))
968   {
969     lcc_set_errno (c, EINVAL);
970     return (-1);
971   }
972
973   if (ident->plugin_instance[0] == 0)
974   {
975     if (ident->type_instance[0] == 0)
976       snprintf (string, string_size, "%s/%s/%s",
977           ident->host,
978           ident->plugin,
979           ident->type);
980     else
981       snprintf (string, string_size, "%s/%s/%s-%s",
982           ident->host,
983           ident->plugin,
984           ident->type,
985           ident->type_instance);
986   }
987   else
988   {
989     if (ident->type_instance[0] == 0)
990       snprintf (string, string_size, "%s/%s-%s/%s",
991           ident->host,
992           ident->plugin,
993           ident->plugin_instance,
994           ident->type);
995     else
996       snprintf (string, string_size, "%s/%s-%s/%s-%s",
997           ident->host,
998           ident->plugin,
999           ident->plugin_instance,
1000           ident->type,
1001           ident->type_instance);
1002   }
1003
1004   string[string_size - 1] = 0;
1005   return (0);
1006 } /* }}} int lcc_identifier_to_string */
1007
1008 int lcc_string_to_identifier (lcc_connection_t *c, /* {{{ */
1009     lcc_identifier_t *ident, const char *string)
1010 {
1011   char *string_copy;
1012   char *host;
1013   char *plugin;
1014   char *plugin_instance;
1015   char *type;
1016   char *type_instance;
1017
1018   string_copy = lcc_strdup (string);
1019   if (string_copy == NULL)
1020   {
1021     lcc_set_errno (c, ENOMEM);
1022     return (-1);
1023   }
1024
1025   host = string_copy;
1026   plugin = strchr (host, '/');
1027   if (plugin == NULL)
1028   {
1029     LCC_SET_ERRSTR (c, "Malformed identifier string: %s", string);
1030     free (string_copy);
1031     return (-1);
1032   }
1033   *plugin = 0;
1034   plugin++;
1035
1036   type = strchr (plugin, '/');
1037   if (type == NULL)
1038   {
1039     LCC_SET_ERRSTR (c, "Malformed identifier string: %s", string);
1040     free (string_copy);
1041     return (-1);
1042   }
1043   *type = 0;
1044   type++;
1045
1046   plugin_instance = strchr (plugin, '-');
1047   if (plugin_instance != NULL)
1048   {
1049     *plugin_instance = 0;
1050     plugin_instance++;
1051   }
1052
1053   type_instance = strchr (type, '-');
1054   if (type_instance != NULL)
1055   {
1056     *type_instance = 0;
1057     type_instance++;
1058   }
1059
1060   memset (ident, 0, sizeof (*ident));
1061
1062   SSTRCPY (ident->host, host);
1063   SSTRCPY (ident->plugin, plugin);
1064   if (plugin_instance != NULL)
1065     SSTRCPY (ident->plugin_instance, plugin_instance);
1066   SSTRCPY (ident->type, type);
1067   if (type_instance != NULL)
1068     SSTRCPY (ident->type_instance, type_instance);
1069
1070   free (string_copy);
1071   return (0);
1072 } /* }}} int lcc_string_to_identifier */
1073
1074 /* vim: set sw=2 sts=2 et fdm=marker : */