amqp plugin: Fix compabitility with current librabbitmq.
[collectd.git] / src / common.c
1 /**
2  * collectd - src/common.c
3  * Copyright (C) 2005-2010  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 collectd.org>
20  *   Niki W. Waibel <niki.waibel@gmx.net>
21  *   Sebastian Harl <sh at tokkee.org>
22  *   Michał Mirosław <mirq-linux at rere.qmqm.pl>
23 **/
24
25 #if HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #include "collectd.h"
30 #include "common.h"
31 #include "plugin.h"
32 #include "utils_cache.h"
33
34 #if HAVE_PTHREAD_H
35 # include <pthread.h>
36 #endif
37
38 #ifdef HAVE_MATH_H
39 # include <math.h>
40 #endif
41
42 /* for getaddrinfo */
43 #include <sys/types.h>
44 #include <sys/socket.h>
45 #include <netdb.h>
46
47 #if HAVE_NETINET_IN_H
48 # include <netinet/in.h>
49 #endif
50
51 /* for ntohl and htonl */
52 #if HAVE_ARPA_INET_H
53 # include <arpa/inet.h>
54 #endif
55
56 #ifdef HAVE_LIBKSTAT
57 extern kstat_ctl_t *kc;
58 #endif
59
60 #if !HAVE_GETPWNAM_R
61 static pthread_mutex_t getpwnam_r_lock = PTHREAD_MUTEX_INITIALIZER;
62 #endif
63
64 #if !HAVE_STRERROR_R
65 static pthread_mutex_t strerror_r_lock = PTHREAD_MUTEX_INITIALIZER;
66 #endif
67
68 char *sstrncpy (char *dest, const char *src, size_t n)
69 {
70         strncpy (dest, src, n);
71         dest[n - 1] = '\0';
72
73         return (dest);
74 } /* char *sstrncpy */
75
76 int ssnprintf (char *dest, size_t n, const char *format, ...)
77 {
78         int ret = 0;
79         va_list ap;
80
81         va_start (ap, format);
82         ret = vsnprintf (dest, n, format, ap);
83         dest[n - 1] = '\0';
84         va_end (ap);
85
86         return (ret);
87 } /* int ssnprintf */
88
89 char *sstrdup (const char *s)
90 {
91         char *r;
92         size_t sz;
93
94         if (s == NULL)
95                 return (NULL);
96
97         /* Do not use `strdup' here, because it's not specified in POSIX. It's
98          * ``only'' an XSI extension. */
99         sz = strlen (s) + 1;
100         r = (char *) malloc (sizeof (char) * sz);
101         if (r == NULL)
102         {
103                 ERROR ("sstrdup: Out of memory.");
104                 exit (3);
105         }
106         memcpy (r, s, sizeof (char) * sz);
107
108         return (r);
109 } /* char *sstrdup */
110
111 /* Even though Posix requires "strerror_r" to return an "int",
112  * some systems (e.g. the GNU libc) return a "char *" _and_
113  * ignore the second argument ... -tokkee */
114 char *sstrerror (int errnum, char *buf, size_t buflen)
115 {
116         buf[0] = '\0';
117
118 #if !HAVE_STRERROR_R
119         {
120                 char *temp;
121
122                 pthread_mutex_lock (&strerror_r_lock);
123
124                 temp = strerror (errnum);
125                 sstrncpy (buf, temp, buflen);
126
127                 pthread_mutex_unlock (&strerror_r_lock);
128         }
129 /* #endif !HAVE_STRERROR_R */
130
131 #elif STRERROR_R_CHAR_P
132         {
133                 char *temp;
134                 temp = strerror_r (errnum, buf, buflen);
135                 if (buf[0] == '\0')
136                 {
137                         if ((temp != NULL) && (temp != buf) && (temp[0] != '\0'))
138                                 sstrncpy (buf, temp, buflen);
139                         else
140                                 sstrncpy (buf, "strerror_r did not return "
141                                                 "an error message", buflen);
142                 }
143         }
144 /* #endif STRERROR_R_CHAR_P */
145
146 #else
147         if (strerror_r (errnum, buf, buflen) != 0)
148         {
149                 ssnprintf (buf, buflen, "Error #%i; "
150                                 "Additionally, strerror_r failed.",
151                                 errnum);
152         }
153 #endif /* STRERROR_R_CHAR_P */
154
155         return (buf);
156 } /* char *sstrerror */
157
158 void *smalloc (size_t size)
159 {
160         void *r;
161
162         if ((r = malloc (size)) == NULL)
163         {
164                 ERROR ("Not enough memory.");
165                 exit (3);
166         }
167
168         return (r);
169 } /* void *smalloc */
170
171 #if 0
172 void sfree (void **ptr)
173 {
174         if (ptr == NULL)
175                 return;
176
177         if (*ptr != NULL)
178                 free (*ptr);
179
180         *ptr = NULL;
181 }
182 #endif
183
184 ssize_t sread (int fd, void *buf, size_t count)
185 {
186         char    *ptr;
187         size_t   nleft;
188         ssize_t  status;
189
190         ptr   = (char *) buf;
191         nleft = count;
192
193         while (nleft > 0)
194         {
195                 status = read (fd, (void *) ptr, nleft);
196
197                 if ((status < 0) && ((errno == EAGAIN) || (errno == EINTR)))
198                         continue;
199
200                 if (status < 0)
201                         return (status);
202
203                 if (status == 0)
204                 {
205                         DEBUG ("Received EOF from fd %i. "
206                                         "Closing fd and returning error.",
207                                         fd);
208                         close (fd);
209                         return (-1);
210                 }
211
212                 assert ((0 > status) || (nleft >= (size_t)status));
213
214                 nleft = nleft - status;
215                 ptr   = ptr   + status;
216         }
217
218         return (0);
219 }
220
221
222 ssize_t swrite (int fd, const void *buf, size_t count)
223 {
224         const char *ptr;
225         size_t      nleft;
226         ssize_t     status;
227
228         ptr   = (const char *) buf;
229         nleft = count;
230
231         while (nleft > 0)
232         {
233                 status = write (fd, (const void *) ptr, nleft);
234
235                 if ((status < 0) && ((errno == EAGAIN) || (errno == EINTR)))
236                         continue;
237
238                 if (status < 0)
239                         return (status);
240
241                 nleft = nleft - status;
242                 ptr   = ptr   + status;
243         }
244
245         return (0);
246 }
247
248 int strsplit (char *string, char **fields, size_t size)
249 {
250         size_t i;
251         char *ptr;
252         char *saveptr;
253
254         i = 0;
255         ptr = string;
256         saveptr = NULL;
257         while ((fields[i] = strtok_r (ptr, " \t\r\n", &saveptr)) != NULL)
258         {
259                 ptr = NULL;
260                 i++;
261
262                 if (i >= size)
263                         break;
264         }
265
266         return ((int) i);
267 }
268
269 int strjoin (char *dst, size_t dst_len,
270                 char **fields, size_t fields_num,
271                 const char *sep)
272 {
273         size_t field_len;
274         size_t sep_len;
275         int i;
276
277         memset (dst, '\0', dst_len);
278
279         if (fields_num <= 0)
280                 return (-1);
281
282         sep_len = 0;
283         if (sep != NULL)
284                 sep_len = strlen (sep);
285
286         for (i = 0; i < (int)fields_num; i++)
287         {
288                 if ((i > 0) && (sep_len > 0))
289                 {
290                         if (dst_len <= sep_len)
291                                 return (-1);
292
293                         strncat (dst, sep, dst_len);
294                         dst_len -= sep_len;
295                 }
296
297                 field_len = strlen (fields[i]);
298
299                 if (dst_len <= field_len)
300                         return (-1);
301
302                 strncat (dst, fields[i], dst_len);
303                 dst_len -= field_len;
304         }
305
306         return (strlen (dst));
307 }
308
309 int strsubstitute (char *str, char c_from, char c_to)
310 {
311         int ret;
312
313         if (str == NULL)
314                 return (-1);
315
316         ret = 0;
317         while (*str != '\0')
318         {
319                 if (*str == c_from)
320                 {
321                         *str = c_to;
322                         ret++;
323                 }
324                 str++;
325         }
326
327         return (ret);
328 } /* int strsubstitute */
329
330 int strunescape (char *buf, size_t buf_len)
331 {
332         size_t i;
333
334         for (i = 0; (i < buf_len) && (buf[i] != '\0'); ++i)
335         {
336                 if (buf[i] != '\\')
337                         continue;
338
339                 if ((i >= buf_len) || (buf[i + 1] == '\0')) {
340                         ERROR ("string unescape: backslash found at end of string.");
341                         return (-1);
342                 }
343
344                 switch (buf[i + 1]) {
345                         case 't':
346                                 buf[i] = '\t';
347                                 break;
348                         case 'n':
349                                 buf[i] = '\n';
350                                 break;
351                         case 'r':
352                                 buf[i] = '\r';
353                                 break;
354                         default:
355                                 buf[i] = buf[i + 1];
356                                 break;
357                 }
358
359                 memmove (buf + i + 1, buf + i + 2, buf_len - i - 2);
360         }
361         return (0);
362 } /* int strunescape */
363
364 int escape_slashes (char *buf, int buf_len)
365 {
366         int i;
367
368         if (strcmp (buf, "/") == 0)
369         {
370                 if (buf_len < 5)
371                         return (-1);
372
373                 strncpy (buf, "root", buf_len);
374                 return (0);
375         }
376
377         if (buf_len <= 1)
378                 return (0);
379
380         /* Move one to the left */
381         if (buf[0] == '/')
382                 memmove (buf, buf + 1, buf_len - 1);
383
384         for (i = 0; i < buf_len - 1; i++)
385         {
386                 if (buf[i] == '\0')
387                         break;
388                 else if (buf[i] == '/')
389                         buf[i] = '_';
390         }
391         buf[i] = '\0';
392
393         return (0);
394 } /* int escape_slashes */
395
396 void replace_special (char *buffer, size_t buffer_size)
397 {
398         size_t i;
399
400         for (i = 0; i < buffer_size; i++)
401         {
402                 if (buffer[i] == 0)
403                         return;
404                 if ((!isalnum ((int) buffer[i])) && (buffer[i] != '-'))
405                         buffer[i] = '_';
406         }
407 } /* void replace_special */
408
409 int timeval_cmp (struct timeval tv0, struct timeval tv1, struct timeval *delta)
410 {
411         struct timeval *larger;
412         struct timeval *smaller;
413
414         int status;
415
416         NORMALIZE_TIMEVAL (tv0);
417         NORMALIZE_TIMEVAL (tv1);
418
419         if ((tv0.tv_sec == tv1.tv_sec) && (tv0.tv_usec == tv1.tv_usec))
420         {
421                 if (delta != NULL) {
422                         delta->tv_sec  = 0;
423                         delta->tv_usec = 0;
424                 }
425                 return (0);
426         }
427
428         if ((tv0.tv_sec < tv1.tv_sec)
429                         || ((tv0.tv_sec == tv1.tv_sec) && (tv0.tv_usec < tv1.tv_usec)))
430         {
431                 larger  = &tv1;
432                 smaller = &tv0;
433                 status  = -1;
434         }
435         else
436         {
437                 larger  = &tv0;
438                 smaller = &tv1;
439                 status  = 1;
440         }
441
442         if (delta != NULL) {
443                 delta->tv_sec = larger->tv_sec - smaller->tv_sec;
444
445                 if (smaller->tv_usec <= larger->tv_usec)
446                         delta->tv_usec = larger->tv_usec - smaller->tv_usec;
447                 else
448                 {
449                         --delta->tv_sec;
450                         delta->tv_usec = 1000000 + larger->tv_usec - smaller->tv_usec;
451                 }
452         }
453
454         assert ((delta == NULL)
455                         || ((0 <= delta->tv_usec) && (delta->tv_usec < 1000000)));
456
457         return (status);
458 } /* int timeval_cmp */
459
460 int check_create_dir (const char *file_orig)
461 {
462         struct stat statbuf;
463
464         char  file_copy[512];
465         char  dir[512];
466         int   dir_len = 512;
467         char *fields[16];
468         int   fields_num;
469         char *ptr;
470         char *saveptr;
471         int   last_is_file = 1;
472         int   path_is_absolute = 0;
473         size_t len;
474         int   i;
475
476         /*
477          * Sanity checks first
478          */
479         if (file_orig == NULL)
480                 return (-1);
481
482         if ((len = strlen (file_orig)) < 1)
483                 return (-1);
484         else if (len >= sizeof (file_copy))
485                 return (-1);
486
487         /*
488          * If `file_orig' ends in a slash the last component is a directory,
489          * otherwise it's a file. Act accordingly..
490          */
491         if (file_orig[len - 1] == '/')
492                 last_is_file = 0;
493         if (file_orig[0] == '/')
494                 path_is_absolute = 1;
495
496         /*
497          * Create a copy for `strtok_r' to destroy
498          */
499         sstrncpy (file_copy, file_orig, sizeof (file_copy));
500
501         /*
502          * Break into components. This will eat up several slashes in a row and
503          * remove leading and trailing slashes..
504          */
505         ptr = file_copy;
506         saveptr = NULL;
507         fields_num = 0;
508         while ((fields[fields_num] = strtok_r (ptr, "/", &saveptr)) != NULL)
509         {
510                 ptr = NULL;
511                 fields_num++;
512
513                 if (fields_num >= 16)
514                         break;
515         }
516
517         /*
518          * For each component, do..
519          */
520         for (i = 0; i < (fields_num - last_is_file); i++)
521         {
522                 /*
523                  * Do not create directories that start with a dot. This
524                  * prevents `../../' attacks and other likely malicious
525                  * behavior.
526                  */
527                 if (fields[i][0] == '.')
528                 {
529                         ERROR ("Cowardly refusing to create a directory that "
530                                         "begins with a `.' (dot): `%s'", file_orig);
531                         return (-2);
532                 }
533
534                 /*
535                  * Join the components together again
536                  */
537                 dir[0] = '/';
538                 if (strjoin (dir + path_is_absolute, dir_len - path_is_absolute,
539                                         fields, i + 1, "/") < 0)
540                 {
541                         ERROR ("strjoin failed: `%s', component #%i", file_orig, i);
542                         return (-1);
543                 }
544
545                 while (42) {
546                         if ((stat (dir, &statbuf) == -1)
547                                         && (lstat (dir, &statbuf) == -1))
548                         {
549                                 if (errno == ENOENT)
550                                 {
551                                         if (mkdir (dir, 0755) == 0)
552                                                 break;
553
554                                         /* this might happen, if a different thread created
555                                          * the directory in the meantime
556                                          * => call stat() again to check for S_ISDIR() */
557                                         if (EEXIST == errno)
558                                                 continue;
559
560                                         char errbuf[1024];
561                                         ERROR ("check_create_dir: mkdir (%s): %s", dir,
562                                                         sstrerror (errno,
563                                                                 errbuf, sizeof (errbuf)));
564                                         return (-1);
565                                 }
566                                 else
567                                 {
568                                         char errbuf[1024];
569                                         ERROR ("check_create_dir: stat (%s): %s", dir,
570                                                         sstrerror (errno, errbuf,
571                                                                 sizeof (errbuf)));
572                                         return (-1);
573                                 }
574                         }
575                         else if (!S_ISDIR (statbuf.st_mode))
576                         {
577                                 ERROR ("check_create_dir: `%s' exists but is not "
578                                                 "a directory!", dir);
579                                 return (-1);
580                         }
581                         break;
582                 }
583         }
584
585         return (0);
586 } /* check_create_dir */
587
588 #ifdef HAVE_LIBKSTAT
589 int get_kstat (kstat_t **ksp_ptr, char *module, int instance, char *name)
590 {
591         char ident[128];
592
593         *ksp_ptr = NULL;
594         
595         if (kc == NULL)
596                 return (-1);
597
598         ssnprintf (ident, sizeof (ident), "%s,%i,%s", module, instance, name);
599
600         *ksp_ptr = kstat_lookup (kc, module, instance, name);
601         if (*ksp_ptr == NULL)
602         {
603                 ERROR ("get_kstat: Cound not find kstat %s", ident);
604                 return (-1);
605         }
606
607         if ((*ksp_ptr)->ks_type != KSTAT_TYPE_NAMED)
608         {
609                 ERROR ("get_kstat: kstat %s has wrong type", ident);
610                 *ksp_ptr = NULL;
611                 return (-1);
612         }
613
614 #ifdef assert
615         assert (*ksp_ptr != NULL);
616         assert ((*ksp_ptr)->ks_type == KSTAT_TYPE_NAMED);
617 #endif
618
619         if (kstat_read (kc, *ksp_ptr, NULL) == -1)
620         {
621                 ERROR ("get_kstat: kstat %s could not be read", ident);
622                 return (-1);
623         }
624
625         if ((*ksp_ptr)->ks_type != KSTAT_TYPE_NAMED)
626         {
627                 ERROR ("get_kstat: kstat %s has wrong type", ident);
628                 return (-1);
629         }
630
631         return (0);
632 }
633
634 long long get_kstat_value (kstat_t *ksp, char *name)
635 {
636         kstat_named_t *kn;
637         long long retval = -1LL;
638
639 #ifdef assert
640         assert (ksp != NULL);
641         assert (ksp->ks_type == KSTAT_TYPE_NAMED);
642 #else
643         if (ksp == NULL)
644         {
645                 ERROR ("ERROR: %s:%i: ksp == NULL\n", __FILE__, __LINE__);
646                 return (-1LL);
647         }
648         else if (ksp->ks_type != KSTAT_TYPE_NAMED)
649         {
650                 ERROR ("ERROR: %s:%i: ksp->ks_type != KSTAT_TYPE_NAMED\n", __FILE__, __LINE__);
651                 return (-1LL);
652         }
653 #endif
654
655         if ((kn = (kstat_named_t *) kstat_data_lookup (ksp, name)) == NULL)
656                 return (retval);
657
658         if (kn->data_type == KSTAT_DATA_INT32)
659                 retval = (long long) kn->value.i32;
660         else if (kn->data_type == KSTAT_DATA_UINT32)
661                 retval = (long long) kn->value.ui32;
662         else if (kn->data_type == KSTAT_DATA_INT64)
663                 retval = (long long) kn->value.i64; /* According to ANSI C99 `long long' must hold at least 64 bits */
664         else if (kn->data_type == KSTAT_DATA_UINT64)
665                 retval = (long long) kn->value.ui64; /* XXX: Might overflow! */
666         else
667                 WARNING ("get_kstat_value: Not a numeric value: %s", name);
668                  
669         return (retval);
670 }
671 #endif /* HAVE_LIBKSTAT */
672
673 #ifndef HAVE_HTONLL
674 unsigned long long ntohll (unsigned long long n)
675 {
676 #if BYTE_ORDER == BIG_ENDIAN
677         return (n);
678 #else
679         return (((unsigned long long) ntohl (n)) << 32) + ntohl (n >> 32);
680 #endif
681 } /* unsigned long long ntohll */
682
683 unsigned long long htonll (unsigned long long n)
684 {
685 #if BYTE_ORDER == BIG_ENDIAN
686         return (n);
687 #else
688         return (((unsigned long long) htonl (n)) << 32) + htonl (n >> 32);
689 #endif
690 } /* unsigned long long htonll */
691 #endif /* HAVE_HTONLL */
692
693 #if FP_LAYOUT_NEED_NOTHING
694 /* Well, we need nothing.. */
695 /* #endif FP_LAYOUT_NEED_NOTHING */
696
697 #elif FP_LAYOUT_NEED_ENDIANFLIP || FP_LAYOUT_NEED_INTSWAP
698 # if FP_LAYOUT_NEED_ENDIANFLIP
699 #  define FP_CONVERT(A) ((((uint64_t)(A) & 0xff00000000000000LL) >> 56) | \
700                          (((uint64_t)(A) & 0x00ff000000000000LL) >> 40) | \
701                          (((uint64_t)(A) & 0x0000ff0000000000LL) >> 24) | \
702                          (((uint64_t)(A) & 0x000000ff00000000LL) >> 8)  | \
703                          (((uint64_t)(A) & 0x00000000ff000000LL) << 8)  | \
704                          (((uint64_t)(A) & 0x0000000000ff0000LL) << 24) | \
705                          (((uint64_t)(A) & 0x000000000000ff00LL) << 40) | \
706                          (((uint64_t)(A) & 0x00000000000000ffLL) << 56))
707 # else
708 #  define FP_CONVERT(A) ((((uint64_t)(A) & 0xffffffff00000000LL) >> 32) | \
709                          (((uint64_t)(A) & 0x00000000ffffffffLL) << 32))
710 # endif
711
712 double ntohd (double d)
713 {
714         union
715         {
716                 uint8_t  byte[8];
717                 uint64_t integer;
718                 double   floating;
719         } ret;
720
721         ret.floating = d;
722
723         /* NAN in x86 byte order */
724         if ((ret.byte[0] == 0x00) && (ret.byte[1] == 0x00)
725                         && (ret.byte[2] == 0x00) && (ret.byte[3] == 0x00)
726                         && (ret.byte[4] == 0x00) && (ret.byte[5] == 0x00)
727                         && (ret.byte[6] == 0xf8) && (ret.byte[7] == 0x7f))
728         {
729                 return (NAN);
730         }
731         else
732         {
733                 uint64_t tmp;
734
735                 tmp = ret.integer;
736                 ret.integer = FP_CONVERT (tmp);
737                 return (ret.floating);
738         }
739 } /* double ntohd */
740
741 double htond (double d)
742 {
743         union
744         {
745                 uint8_t  byte[8];
746                 uint64_t integer;
747                 double   floating;
748         } ret;
749
750         if (isnan (d))
751         {
752                 ret.byte[0] = ret.byte[1] = ret.byte[2] = ret.byte[3] = 0x00;
753                 ret.byte[4] = ret.byte[5] = 0x00;
754                 ret.byte[6] = 0xf8;
755                 ret.byte[7] = 0x7f;
756                 return (ret.floating);
757         }
758         else
759         {
760                 uint64_t tmp;
761
762                 ret.floating = d;
763                 tmp = FP_CONVERT (ret.integer);
764                 ret.integer = tmp;
765                 return (ret.floating);
766         }
767 } /* double htond */
768 #endif /* FP_LAYOUT_NEED_ENDIANFLIP || FP_LAYOUT_NEED_INTSWAP */
769
770 int format_name (char *ret, int ret_len,
771                 const char *hostname,
772                 const char *plugin, const char *plugin_instance,
773                 const char *type, const char *type_instance)
774 {
775         int  status;
776
777         assert (plugin != NULL);
778         assert (type != NULL);
779
780         if ((plugin_instance == NULL) || (strlen (plugin_instance) == 0))
781         {
782                 if ((type_instance == NULL) || (strlen (type_instance) == 0))
783                         status = ssnprintf (ret, ret_len, "%s/%s/%s",
784                                         hostname, plugin, type);
785                 else
786                         status = ssnprintf (ret, ret_len, "%s/%s/%s-%s",
787                                         hostname, plugin, type,
788                                         type_instance);
789         }
790         else
791         {
792                 if ((type_instance == NULL) || (strlen (type_instance) == 0))
793                         status = ssnprintf (ret, ret_len, "%s/%s-%s/%s",
794                                         hostname, plugin, plugin_instance,
795                                         type);
796                 else
797                         status = ssnprintf (ret, ret_len, "%s/%s-%s/%s-%s",
798                                         hostname, plugin, plugin_instance,
799                                         type, type_instance);
800         }
801
802         if ((status < 1) || (status >= ret_len))
803                 return (-1);
804         return (0);
805 } /* int format_name */
806
807 int format_values (char *ret, size_t ret_len, /* {{{ */
808                 const data_set_t *ds, const value_list_t *vl,
809                 _Bool store_rates)
810 {
811         size_t offset = 0;
812         int status;
813         int i;
814         gauge_t *rates = NULL;
815
816         assert (0 == strcmp (ds->type, vl->type));
817
818         memset (ret, 0, ret_len);
819
820 #define BUFFER_ADD(...) do { \
821         status = ssnprintf (ret + offset, ret_len - offset, \
822                         __VA_ARGS__); \
823         if (status < 1) \
824         { \
825                 sfree (rates); \
826                 return (-1); \
827         } \
828         else if (((size_t) status) >= (ret_len - offset)) \
829         { \
830                 sfree (rates); \
831                 return (-1); \
832         } \
833         else \
834                 offset += ((size_t) status); \
835 } while (0)
836
837         BUFFER_ADD ("%.3f", CDTIME_T_TO_DOUBLE (vl->time));
838
839         for (i = 0; i < ds->ds_num; i++)
840         {
841                 if (ds->ds[i].type == DS_TYPE_GAUGE)
842                         BUFFER_ADD (":%f", vl->values[i].gauge);
843                 else if (store_rates)
844                 {
845                         if (rates == NULL)
846                                 rates = uc_get_rate (ds, vl);
847                         if (rates == NULL)
848                         {
849                                 WARNING ("format_values: "
850                                                 "uc_get_rate failed.");
851                                 return (-1);
852                         }
853                         BUFFER_ADD (":%g", rates[i]);
854                 }
855                 else if (ds->ds[i].type == DS_TYPE_COUNTER)
856                         BUFFER_ADD (":%llu", vl->values[i].counter);
857                 else if (ds->ds[i].type == DS_TYPE_DERIVE)
858                         BUFFER_ADD (":%"PRIi64, vl->values[i].derive);
859                 else if (ds->ds[i].type == DS_TYPE_ABSOLUTE)
860                         BUFFER_ADD (":%"PRIu64, vl->values[i].absolute);
861                 else
862                 {
863                         ERROR ("format_values plugin: Unknown data source type: %i",
864                                         ds->ds[i].type);
865                         sfree (rates);
866                         return (-1);
867                 }
868         } /* for ds->ds_num */
869
870 #undef BUFFER_ADD
871
872         sfree (rates);
873         return (0);
874 } /* }}} int format_values */
875
876 int parse_identifier (char *str, char **ret_host,
877                 char **ret_plugin, char **ret_plugin_instance,
878                 char **ret_type, char **ret_type_instance)
879 {
880         char *hostname = NULL;
881         char *plugin = NULL;
882         char *plugin_instance = NULL;
883         char *type = NULL;
884         char *type_instance = NULL;
885
886         hostname = str;
887         if (hostname == NULL)
888                 return (-1);
889
890         plugin = strchr (hostname, '/');
891         if (plugin == NULL)
892                 return (-1);
893         *plugin = '\0'; plugin++;
894
895         type = strchr (plugin, '/');
896         if (type == NULL)
897                 return (-1);
898         *type = '\0'; type++;
899
900         plugin_instance = strchr (plugin, '-');
901         if (plugin_instance != NULL)
902         {
903                 *plugin_instance = '\0';
904                 plugin_instance++;
905         }
906
907         type_instance = strchr (type, '-');
908         if (type_instance != NULL)
909         {
910                 *type_instance = '\0';
911                 type_instance++;
912         }
913
914         *ret_host = hostname;
915         *ret_plugin = plugin;
916         *ret_plugin_instance = plugin_instance;
917         *ret_type = type;
918         *ret_type_instance = type_instance;
919         return (0);
920 } /* int parse_identifier */
921
922 int parse_identifier_vl (const char *str, value_list_t *vl) /* {{{ */
923 {
924         char str_copy[6 * DATA_MAX_NAME_LEN];
925         char *host = NULL;
926         char *plugin = NULL;
927         char *plugin_instance = NULL;
928         char *type = NULL;
929         char *type_instance = NULL;
930         int status;
931
932         if ((str == NULL) || (vl == NULL))
933                 return (EINVAL);
934
935         sstrncpy (str_copy, str, sizeof (str_copy));
936
937         status = parse_identifier (str_copy, &host,
938                         &plugin, &plugin_instance,
939                         &type, &type_instance);
940         if (status != 0)
941                 return (status);
942
943         sstrncpy (vl->host, host, sizeof (vl->host));
944         sstrncpy (vl->plugin, plugin, sizeof (vl->plugin));
945         sstrncpy (vl->plugin_instance,
946                         (plugin_instance != NULL) ? plugin_instance : "",
947                         sizeof (vl->plugin_instance));
948         sstrncpy (vl->type, type, sizeof (vl->type));
949         sstrncpy (vl->type_instance,
950                         (type_instance != NULL) ? type_instance : "",
951                         sizeof (vl->type_instance));
952
953         return (0);
954 } /* }}} int parse_identifier_vl */
955
956 int parse_value (const char *value, value_t *ret_value, int ds_type)
957 {
958   char *endptr = NULL;
959
960   switch (ds_type)
961   {
962     case DS_TYPE_COUNTER:
963       ret_value->counter = (counter_t) strtoull (value, &endptr, 0);
964       break;
965
966     case DS_TYPE_GAUGE:
967       ret_value->gauge = (gauge_t) strtod (value, &endptr);
968       break;
969
970     case DS_TYPE_DERIVE:
971       ret_value->derive = (derive_t) strtoll (value, &endptr, 0);
972       break;
973
974     case DS_TYPE_ABSOLUTE:
975       ret_value->absolute = (absolute_t) strtoull (value, &endptr, 0);
976       break;
977
978     default:
979       ERROR ("parse_value: Invalid data source type: %i.", ds_type);
980       return -1;
981   }
982
983   if (value == endptr) {
984     ERROR ("parse_value: Failed to parse string as %s: %s.",
985         DS_TYPE_TO_STRING (ds_type), value);
986     return -1;
987   }
988   else if ((NULL != endptr) && ('\0' != *endptr))
989     INFO ("parse_value: Ignoring trailing garbage \"%s\" after %s value. "
990         "Input string was \"%s\".",
991         endptr, DS_TYPE_TO_STRING (ds_type), value);
992
993   return 0;
994 } /* int parse_value */
995
996 int parse_values (char *buffer, value_list_t *vl, const data_set_t *ds)
997 {
998         int i;
999         char *dummy;
1000         char *ptr;
1001         char *saveptr;
1002
1003         i = -1;
1004         dummy = buffer;
1005         saveptr = NULL;
1006         while ((ptr = strtok_r (dummy, ":", &saveptr)) != NULL)
1007         {
1008                 dummy = NULL;
1009
1010                 if (i >= vl->values_len)
1011                 {
1012                         /* Make sure i is invalid. */
1013                         i = vl->values_len + 1;
1014                         break;
1015                 }
1016
1017                 if (i == -1)
1018                 {
1019                         if (strcmp ("N", ptr) == 0)
1020                                 vl->time = cdtime ();
1021                         else
1022                         {
1023                                 char *endptr = NULL;
1024                                 double tmp;
1025
1026                                 errno = 0;
1027                                 tmp = strtod (ptr, &endptr);
1028                                 if ((errno != 0)                    /* Overflow */
1029                                                 || (endptr == ptr)  /* Invalid string */
1030                                                 || (endptr == NULL) /* This should not happen */
1031                                                 || (*endptr != 0))  /* Trailing chars */
1032                                         return (-1);
1033
1034                                 vl->time = DOUBLE_TO_CDTIME_T (tmp);
1035                         }
1036                 }
1037                 else
1038                 {
1039                         if ((strcmp ("U", ptr) == 0) && (ds->ds[i].type == DS_TYPE_GAUGE))
1040                                 vl->values[i].gauge = NAN;
1041                         else if (0 != parse_value (ptr, &vl->values[i], ds->ds[i].type))
1042                                 return -1;
1043                 }
1044
1045                 i++;
1046         } /* while (strtok_r) */
1047
1048         if ((ptr != NULL) || (i != vl->values_len))
1049                 return (-1);
1050         return (0);
1051 } /* int parse_values */
1052
1053 #if !HAVE_GETPWNAM_R
1054 int getpwnam_r (const char *name, struct passwd *pwbuf, char *buf,
1055                 size_t buflen, struct passwd **pwbufp)
1056 {
1057         int status = 0;
1058         struct passwd *pw;
1059
1060         memset (pwbuf, '\0', sizeof (struct passwd));
1061
1062         pthread_mutex_lock (&getpwnam_r_lock);
1063
1064         do
1065         {
1066                 pw = getpwnam (name);
1067                 if (pw == NULL)
1068                 {
1069                         status = (errno != 0) ? errno : ENOENT;
1070                         break;
1071                 }
1072
1073 #define GETPWNAM_COPY_MEMBER(member) \
1074                 if (pw->member != NULL) \
1075                 { \
1076                         int len = strlen (pw->member); \
1077                         if (len >= buflen) \
1078                         { \
1079                                 status = ENOMEM; \
1080                                 break; \
1081                         } \
1082                         sstrncpy (buf, pw->member, buflen); \
1083                         pwbuf->member = buf; \
1084                         buf    += (len + 1); \
1085                         buflen -= (len + 1); \
1086                 }
1087                 GETPWNAM_COPY_MEMBER(pw_name);
1088                 GETPWNAM_COPY_MEMBER(pw_passwd);
1089                 GETPWNAM_COPY_MEMBER(pw_gecos);
1090                 GETPWNAM_COPY_MEMBER(pw_dir);
1091                 GETPWNAM_COPY_MEMBER(pw_shell);
1092
1093                 pwbuf->pw_uid = pw->pw_uid;
1094                 pwbuf->pw_gid = pw->pw_gid;
1095
1096                 if (pwbufp != NULL)
1097                         *pwbufp = pwbuf;
1098         } while (0);
1099
1100         pthread_mutex_unlock (&getpwnam_r_lock);
1101
1102         return (status);
1103 } /* int getpwnam_r */
1104 #endif /* !HAVE_GETPWNAM_R */
1105
1106 int notification_init (notification_t *n, int severity, const char *message,
1107                 const char *host,
1108                 const char *plugin, const char *plugin_instance,
1109                 const char *type, const char *type_instance)
1110 {
1111         memset (n, '\0', sizeof (notification_t));
1112
1113         n->severity = severity;
1114
1115         if (message != NULL)
1116                 sstrncpy (n->message, message, sizeof (n->message));
1117         if (host != NULL)
1118                 sstrncpy (n->host, host, sizeof (n->host));
1119         if (plugin != NULL)
1120                 sstrncpy (n->plugin, plugin, sizeof (n->plugin));
1121         if (plugin_instance != NULL)
1122                 sstrncpy (n->plugin_instance, plugin_instance,
1123                                 sizeof (n->plugin_instance));
1124         if (type != NULL)
1125                 sstrncpy (n->type, type, sizeof (n->type));
1126         if (type_instance != NULL)
1127                 sstrncpy (n->type_instance, type_instance,
1128                                 sizeof (n->type_instance));
1129
1130         return (0);
1131 } /* int notification_init */
1132
1133 int walk_directory (const char *dir, dirwalk_callback_f callback,
1134                 void *user_data, int include_hidden)
1135 {
1136         struct dirent *ent;
1137         DIR *dh;
1138         int success;
1139         int failure;
1140
1141         success = 0;
1142         failure = 0;
1143
1144         if ((dh = opendir (dir)) == NULL)
1145         {
1146                 char errbuf[1024];
1147                 ERROR ("walk_directory: Cannot open '%s': %s", dir,
1148                                 sstrerror (errno, errbuf, sizeof (errbuf)));
1149                 return -1;
1150         }
1151
1152         while ((ent = readdir (dh)) != NULL)
1153         {
1154                 int status;
1155                 
1156                 if (include_hidden)
1157                 {
1158                         if ((strcmp (".", ent->d_name) == 0)
1159                                         || (strcmp ("..", ent->d_name) == 0))
1160                                 continue;
1161                 }
1162                 else /* if (!include_hidden) */
1163                 {
1164                         if (ent->d_name[0]=='.')
1165                                 continue;
1166                 }
1167
1168                 status = (*callback) (dir, ent->d_name, user_data);
1169                 if (status != 0)
1170                         failure++;
1171                 else
1172                         success++;
1173         }
1174
1175         closedir (dh);
1176
1177         if ((success == 0) && (failure > 0))
1178                 return (-1);
1179         return (0);
1180 }
1181
1182 int read_file_contents (const char *filename, char *buf, int bufsize)
1183 {
1184         FILE *fh;
1185         int n;
1186
1187         if ((fh = fopen (filename, "r")) == NULL)
1188                 return -1;
1189
1190         n = fread(buf, 1, bufsize, fh);
1191         fclose(fh);
1192
1193         return n;
1194 }
1195
1196 counter_t counter_diff (counter_t old_value, counter_t new_value)
1197 {
1198         counter_t diff;
1199
1200         if (old_value > new_value)
1201         {
1202                 if (old_value <= 4294967295U)
1203                         diff = (4294967295U - old_value) + new_value;
1204                 else
1205                         diff = (18446744073709551615ULL - old_value)
1206                                 + new_value;
1207         }
1208         else
1209         {
1210                 diff = new_value - old_value;
1211         }
1212
1213         return (diff);
1214 } /* counter_t counter_to_gauge */
1215
1216 int service_name_to_port_number (const char *service_name)
1217 {
1218         struct addrinfo *ai_list;
1219         struct addrinfo *ai_ptr;
1220         struct addrinfo ai_hints;
1221         int status;
1222         int service_number;
1223
1224         if (service_name == NULL)
1225                 return (-1);
1226
1227         ai_list = NULL;
1228         memset (&ai_hints, 0, sizeof (ai_hints));
1229         ai_hints.ai_family = AF_UNSPEC;
1230
1231         status = getaddrinfo (/* node = */ NULL, service_name,
1232                         &ai_hints, &ai_list);
1233         if (status != 0)
1234         {
1235                 ERROR ("service_name_to_port_number: getaddrinfo failed: %s",
1236                                 gai_strerror (status));
1237                 return (-1);
1238         }
1239
1240         service_number = -1;
1241         for (ai_ptr = ai_list; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next)
1242         {
1243                 if (ai_ptr->ai_family == AF_INET)
1244                 {
1245                         struct sockaddr_in *sa;
1246
1247                         sa = (void *) ai_ptr->ai_addr;
1248                         service_number = (int) ntohs (sa->sin_port);
1249                 }
1250                 else if (ai_ptr->ai_family == AF_INET6)
1251                 {
1252                         struct sockaddr_in6 *sa;
1253
1254                         sa = (void *) ai_ptr->ai_addr;
1255                         service_number = (int) ntohs (sa->sin6_port);
1256                 }
1257
1258                 if ((service_number > 0) && (service_number <= 65535))
1259                         break;
1260         }
1261
1262         freeaddrinfo (ai_list);
1263
1264         if ((service_number > 0) && (service_number <= 65535))
1265                 return (service_number);
1266         return (-1);
1267 } /* int service_name_to_port_number */
1268
1269 int strtoderive (const char *string, derive_t *ret_value) /* {{{ */
1270 {
1271         derive_t tmp;
1272         char *endptr;
1273
1274         if ((string == NULL) || (ret_value == NULL))
1275                 return (EINVAL);
1276
1277         errno = 0;
1278         endptr = NULL;
1279         tmp = (derive_t) strtoll (string, &endptr, /* base = */ 0);
1280         if ((endptr == string) || (errno != 0))
1281                 return (-1);
1282
1283         *ret_value = tmp;
1284         return (0);
1285 } /* }}} int strtoderive */