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