530f73309327db8f0222acf2479e78799dfb8fcb
[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, value_t *ret_value, int ds_type)
853 {
854   char *endptr = NULL;
855
856   switch (ds_type)
857   {
858     case DS_TYPE_COUNTER:
859       ret_value->counter = (counter_t) strtoull (value, &endptr, 0);
860       break;
861
862     case DS_TYPE_GAUGE:
863       ret_value->gauge = (gauge_t) strtod (value, &endptr);
864       break;
865
866     case DS_TYPE_DERIVE:
867       ret_value->derive = (derive_t) strtoll (value, &endptr, 0);
868       break;
869
870     case DS_TYPE_ABSOLUTE:
871       ret_value->absolute = (absolute_t) strtoull (value, &endptr, 0);
872       break;
873
874     default:
875       ERROR ("parse_value: Invalid data source type: %i.", ds_type);
876       return -1;
877   }
878
879   if (value == endptr) {
880     ERROR ("parse_value: Failed to parse string as %s: %s.",
881         DS_TYPE_TO_STRING (ds_type), value);
882     return -1;
883   }
884   else if ((NULL != endptr) && ('\0' != *endptr))
885     INFO ("parse_value: Ignoring trailing garbage \"%s\" after %s value. "
886         "Input string was \"%s\".",
887         endptr, DS_TYPE_TO_STRING (ds_type), value);
888
889   return 0;
890 } /* int parse_value */
891
892 int parse_values (char *buffer, value_list_t *vl, const data_set_t *ds)
893 {
894         int i;
895         char *dummy;
896         char *ptr;
897         char *saveptr;
898
899         i = -1;
900         dummy = buffer;
901         saveptr = NULL;
902         while ((ptr = strtok_r (dummy, ":", &saveptr)) != NULL)
903         {
904                 dummy = NULL;
905
906                 if (i >= vl->values_len)
907                 {
908                         /* Make sure i is invalid. */
909                         i = vl->values_len + 1;
910                         break;
911                 }
912
913                 if (i == -1)
914                 {
915                         if (strcmp ("N", ptr) == 0)
916                                 vl->time = time (NULL);
917                         else
918                                 vl->time = (time_t) atoi (ptr);
919                 }
920                 else
921                 {
922                         if ((strcmp ("U", ptr) == 0) && (ds->ds[i].type == DS_TYPE_GAUGE))
923                                 vl->values[i].gauge = NAN;
924                         else if (0 != parse_value (ptr, &vl->values[i], ds->ds[i].type))
925                                 return -1;
926                 }
927
928                 i++;
929         } /* while (strtok_r) */
930
931         if ((ptr != NULL) || (i != vl->values_len))
932                 return (-1);
933         return (0);
934 } /* int parse_values */
935
936 #if !HAVE_GETPWNAM_R
937 int getpwnam_r (const char *name, struct passwd *pwbuf, char *buf,
938                 size_t buflen, struct passwd **pwbufp)
939 {
940         int status = 0;
941         struct passwd *pw;
942
943         memset (pwbuf, '\0', sizeof (struct passwd));
944
945         pthread_mutex_lock (&getpwnam_r_lock);
946
947         do
948         {
949                 pw = getpwnam (name);
950                 if (pw == NULL)
951                 {
952                         status = (errno != 0) ? errno : ENOENT;
953                         break;
954                 }
955
956 #define GETPWNAM_COPY_MEMBER(member) \
957                 if (pw->member != NULL) \
958                 { \
959                         int len = strlen (pw->member); \
960                         if (len >= buflen) \
961                         { \
962                                 status = ENOMEM; \
963                                 break; \
964                         } \
965                         sstrncpy (buf, pw->member, buflen); \
966                         pwbuf->member = buf; \
967                         buf    += (len + 1); \
968                         buflen -= (len + 1); \
969                 }
970                 GETPWNAM_COPY_MEMBER(pw_name);
971                 GETPWNAM_COPY_MEMBER(pw_passwd);
972                 GETPWNAM_COPY_MEMBER(pw_gecos);
973                 GETPWNAM_COPY_MEMBER(pw_dir);
974                 GETPWNAM_COPY_MEMBER(pw_shell);
975
976                 pwbuf->pw_uid = pw->pw_uid;
977                 pwbuf->pw_gid = pw->pw_gid;
978
979                 if (pwbufp != NULL)
980                         *pwbufp = pwbuf;
981         } while (0);
982
983         pthread_mutex_unlock (&getpwnam_r_lock);
984
985         return (status);
986 } /* int getpwnam_r */
987 #endif /* !HAVE_GETPWNAM_R */
988
989 int notification_init (notification_t *n, int severity, const char *message,
990                 const char *host,
991                 const char *plugin, const char *plugin_instance,
992                 const char *type, const char *type_instance)
993 {
994         memset (n, '\0', sizeof (notification_t));
995
996         n->severity = severity;
997
998         if (message != NULL)
999                 sstrncpy (n->message, message, sizeof (n->message));
1000         if (host != NULL)
1001                 sstrncpy (n->host, host, sizeof (n->host));
1002         if (plugin != NULL)
1003                 sstrncpy (n->plugin, plugin, sizeof (n->plugin));
1004         if (plugin_instance != NULL)
1005                 sstrncpy (n->plugin_instance, plugin_instance,
1006                                 sizeof (n->plugin_instance));
1007         if (type != NULL)
1008                 sstrncpy (n->type, type, sizeof (n->type));
1009         if (type_instance != NULL)
1010                 sstrncpy (n->type_instance, type_instance,
1011                                 sizeof (n->type_instance));
1012
1013         return (0);
1014 } /* int notification_init */
1015
1016 int walk_directory (const char *dir, dirwalk_callback_f callback,
1017                 void *user_data, int include_hidden)
1018 {
1019         struct dirent *ent;
1020         DIR *dh;
1021         int success;
1022         int failure;
1023
1024         success = 0;
1025         failure = 0;
1026
1027         if ((dh = opendir (dir)) == NULL)
1028         {
1029                 char errbuf[1024];
1030                 ERROR ("walk_directory: Cannot open '%s': %s", dir,
1031                                 sstrerror (errno, errbuf, sizeof (errbuf)));
1032                 return -1;
1033         }
1034
1035         while ((ent = readdir (dh)) != NULL)
1036         {
1037                 int status;
1038                 
1039                 if (include_hidden)
1040                 {
1041                         if ((strcmp (".", ent->d_name) == 0)
1042                                         || (strcmp ("..", ent->d_name) == 0))
1043                                 continue;
1044                 }
1045                 else /* if (!include_hidden) */
1046                 {
1047                         if (ent->d_name[0]=='.')
1048                                 continue;
1049                 }
1050
1051                 status = (*callback) (dir, ent->d_name, user_data);
1052                 if (status != 0)
1053                         failure++;
1054                 else
1055                         success++;
1056         }
1057
1058         closedir (dh);
1059
1060         if ((success == 0) && (failure > 0))
1061                 return (-1);
1062         return (0);
1063 }
1064
1065 int read_file_contents (const char *filename, char *buf, int bufsize)
1066 {
1067         FILE *fh;
1068         int n;
1069
1070         if ((fh = fopen (filename, "r")) == NULL)
1071                 return -1;
1072
1073         n = fread(buf, 1, bufsize, fh);
1074         fclose(fh);
1075
1076         return n;
1077 }
1078
1079 counter_t counter_diff (counter_t old_value, counter_t new_value)
1080 {
1081         counter_t diff;
1082
1083         if (old_value > new_value)
1084         {
1085                 if (old_value <= 4294967295U)
1086                         diff = (4294967295U - old_value) + new_value;
1087                 else
1088                         diff = (18446744073709551615ULL - old_value)
1089                                 + new_value;
1090         }
1091         else
1092         {
1093                 diff = new_value - old_value;
1094         }
1095
1096         return (diff);
1097 } /* counter_t counter_to_gauge */
1098
1099 int service_name_to_port_number (const char *service_name)
1100 {
1101         struct addrinfo *ai_list;
1102         struct addrinfo *ai_ptr;
1103         struct addrinfo ai_hints;
1104         int status;
1105         int service_number;
1106
1107         if (service_name == NULL)
1108                 return (-1);
1109
1110         ai_list = NULL;
1111         memset (&ai_hints, 0, sizeof (ai_hints));
1112         ai_hints.ai_family = AF_UNSPEC;
1113
1114         status = getaddrinfo (/* node = */ NULL, service_name,
1115                         &ai_hints, &ai_list);
1116         if (status != 0)
1117         {
1118                 ERROR ("service_name_to_port_number: getaddrinfo failed: %s",
1119                                 gai_strerror (status));
1120                 return (-1);
1121         }
1122
1123         service_number = -1;
1124         for (ai_ptr = ai_list; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next)
1125         {
1126                 if (ai_ptr->ai_family == AF_INET)
1127                 {
1128                         struct sockaddr_in *sa;
1129
1130                         sa = (void *) ai_ptr->ai_addr;
1131                         service_number = (int) ntohs (sa->sin_port);
1132                 }
1133                 else if (ai_ptr->ai_family == AF_INET6)
1134                 {
1135                         struct sockaddr_in6 *sa;
1136
1137                         sa = (void *) ai_ptr->ai_addr;
1138                         service_number = (int) ntohs (sa->sin6_port);
1139                 }
1140
1141                 if ((service_number > 0) && (service_number <= 65535))
1142                         break;
1143         }
1144
1145         freeaddrinfo (ai_list);
1146
1147         if ((service_number > 0) && (service_number <= 65535))
1148                 return (service_number);
1149         return (-1);
1150 } /* int service_name_to_port_number */
1151
1152 int strtoderive (const char *string, derive_t *ret_value) /* {{{ */
1153 {
1154         derive_t tmp;
1155         char *endptr;
1156
1157         if ((string == NULL) || (ret_value == NULL))
1158                 return (EINVAL);
1159
1160         errno = 0;
1161         endptr = NULL;
1162         tmp = (derive_t) strtoll (string, &endptr, /* base = */ 0);
1163         if ((endptr == string) || (errno != 0))
1164                 return (-1);
1165
1166         *ret_value = tmp;
1167         return (0);
1168 } /* }}} int strtoderive */