Merge branch 'collectd-4.5'
[collectd.git] / src / rrdtool.c
1 /**
2  * collectd - src/rrdtool.c
3  * Copyright (C) 2006-2008  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Authors:
19  *   Florian octo Forster <octo at verplant.org>
20  **/
21
22 #include "collectd.h"
23 #include "plugin.h"
24 #include "common.h"
25 #include "utils_avltree.h"
26 #include "utils_rrdcreate.h"
27
28 #include <rrd.h>
29
30 #if HAVE_PTHREAD_H
31 # include <pthread.h>
32 #endif
33
34 /*
35  * Private types
36  */
37 struct rrd_cache_s
38 {
39         int    values_num;
40         char **values;
41         time_t first_value;
42         time_t last_value;
43         enum
44         {
45                 FLAG_NONE   = 0x00,
46                 FLAG_QUEUED = 0x01,
47                 FLAG_FLUSHQ = 0x02
48         } flags;
49 };
50 typedef struct rrd_cache_s rrd_cache_t;
51
52 enum rrd_queue_dir_e
53 {
54   QUEUE_INSERT_FRONT,
55   QUEUE_INSERT_BACK
56 };
57 typedef enum rrd_queue_dir_e rrd_queue_dir_t;
58
59 struct rrd_queue_s
60 {
61         char *filename;
62         struct rrd_queue_s *next;
63 };
64 typedef struct rrd_queue_s rrd_queue_t;
65
66 /*
67  * Private variables
68  */
69 static const char *config_keys[] =
70 {
71         "CacheTimeout",
72         "CacheFlush",
73         "DataDir",
74         "StepSize",
75         "HeartBeat",
76         "RRARows",
77         "RRATimespan",
78         "XFF",
79         "WritesPerSecond"
80 };
81 static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
82
83 /* If datadir is zero, the daemon's basedir is used. If stepsize or heartbeat
84  * is zero a default, depending on the `interval' member of the value list is
85  * being used. */
86 static char *datadir   = NULL;
87 static double write_rate = 0.0;
88 static rrdcreate_config_t rrdcreate_config =
89 {
90         /* stepsize = */ 0,
91         /* heartbeat = */ 0,
92         /* rrarows = */ 1200,
93         /* xff = */ 0.1,
94
95         /* timespans = */ NULL,
96         /* timespans_num = */ 0,
97
98         /* consolidation_functions = */ NULL,
99         /* consolidation_functions_num = */ 0
100 };
101
102 /* XXX: If you need to lock both, cache_lock and queue_lock, at the same time,
103  * ALWAYS lock `cache_lock' first! */
104 static int         cache_timeout = 0;
105 static int         cache_flush_timeout = 0;
106 static time_t      cache_flush_last;
107 static c_avl_tree_t *cache = NULL;
108 static pthread_mutex_t cache_lock = PTHREAD_MUTEX_INITIALIZER;
109
110 static rrd_queue_t    *queue_head = NULL;
111 static rrd_queue_t    *queue_tail = NULL;
112 static rrd_queue_t    *flushq_head = NULL;
113 static rrd_queue_t    *flushq_tail = NULL;
114 static pthread_t       queue_thread = 0;
115 static pthread_mutex_t queue_lock = PTHREAD_MUTEX_INITIALIZER;
116 static pthread_cond_t  queue_cond = PTHREAD_COND_INITIALIZER;
117
118 #if !HAVE_THREADSAFE_LIBRRD
119 static pthread_mutex_t librrd_lock = PTHREAD_MUTEX_INITIALIZER;
120 #endif
121
122 static int do_shutdown = 0;
123
124 #if HAVE_THREADSAFE_LIBRRD
125 static int srrd_update (char *filename, char *template,
126                 int argc, const char **argv)
127 {
128         int status;
129
130         optind = 0; /* bug in librrd? */
131         rrd_clear_error ();
132
133         status = rrd_update_r (filename, template, argc, (void *) argv);
134
135         if (status != 0)
136         {
137                 WARNING ("rrdtool plugin: rrd_update_r (%s) failed: %s",
138                                 filename, rrd_get_error ());
139         }
140
141         return (status);
142 } /* int srrd_update */
143 /* #endif HAVE_THREADSAFE_LIBRRD */
144
145 #else /* !HAVE_THREADSAFE_LIBRRD */
146 static int srrd_update (char *filename, char *template,
147                 int argc, const char **argv)
148 {
149         int status;
150
151         int new_argc;
152         char **new_argv;
153
154         assert (template == NULL);
155
156         new_argc = 2 + argc;
157         new_argv = (char **) malloc ((new_argc + 1) * sizeof (char *));
158         if (new_argv == NULL)
159         {
160                 ERROR ("rrdtool plugin: malloc failed.");
161                 return (-1);
162         }
163
164         new_argv[0] = "update";
165         new_argv[1] = filename;
166
167         memcpy (new_argv + 2, argv, argc * sizeof (char *));
168         new_argv[new_argc] = NULL;
169
170         pthread_mutex_lock (&librrd_lock);
171         optind = 0; /* bug in librrd? */
172         rrd_clear_error ();
173
174         status = rrd_update (new_argc, new_argv);
175         pthread_mutex_unlock (&librrd_lock);
176
177         if (status != 0)
178         {
179                 WARNING ("rrdtool plugin: rrd_update_r failed: %s: %s",
180                                 argv[1], rrd_get_error ());
181         }
182
183         sfree (new_argv);
184
185         return (status);
186 } /* int srrd_update */
187 #endif /* !HAVE_THREADSAFE_LIBRRD */
188
189 static int value_list_to_string (char *buffer, int buffer_len,
190                 const data_set_t *ds, const value_list_t *vl)
191 {
192         int offset;
193         int status;
194         int i;
195
196         memset (buffer, '\0', buffer_len);
197
198         status = ssnprintf (buffer, buffer_len, "%u", (unsigned int) vl->time);
199         if ((status < 1) || (status >= buffer_len))
200                 return (-1);
201         offset = status;
202
203         for (i = 0; i < ds->ds_num; i++)
204         {
205                 if ((ds->ds[i].type != DS_TYPE_COUNTER)
206                                 && (ds->ds[i].type != DS_TYPE_GAUGE))
207                         return (-1);
208
209                 if (ds->ds[i].type == DS_TYPE_COUNTER)
210                         status = ssnprintf (buffer + offset, buffer_len - offset,
211                                         ":%llu", vl->values[i].counter);
212                 else
213                         status = ssnprintf (buffer + offset, buffer_len - offset,
214                                         ":%lf", vl->values[i].gauge);
215
216                 if ((status < 1) || (status >= (buffer_len - offset)))
217                         return (-1);
218
219                 offset += status;
220         } /* for ds->ds_num */
221
222         return (0);
223 } /* int value_list_to_string */
224
225 static int value_list_to_filename (char *buffer, int buffer_len,
226                 const data_set_t *ds, const value_list_t *vl)
227 {
228         int offset = 0;
229         int status;
230
231         if (datadir != NULL)
232         {
233                 status = ssnprintf (buffer + offset, buffer_len - offset,
234                                 "%s/", datadir);
235                 if ((status < 1) || (status >= buffer_len - offset))
236                         return (-1);
237                 offset += status;
238         }
239
240         status = ssnprintf (buffer + offset, buffer_len - offset,
241                         "%s/", vl->host);
242         if ((status < 1) || (status >= buffer_len - offset))
243                 return (-1);
244         offset += status;
245
246         if (strlen (vl->plugin_instance) > 0)
247                 status = ssnprintf (buffer + offset, buffer_len - offset,
248                                 "%s-%s/", vl->plugin, vl->plugin_instance);
249         else
250                 status = ssnprintf (buffer + offset, buffer_len - offset,
251                                 "%s/", vl->plugin);
252         if ((status < 1) || (status >= buffer_len - offset))
253                 return (-1);
254         offset += status;
255
256         if (strlen (vl->type_instance) > 0)
257                 status = ssnprintf (buffer + offset, buffer_len - offset,
258                                 "%s-%s.rrd", vl->type, vl->type_instance);
259         else
260                 status = ssnprintf (buffer + offset, buffer_len - offset,
261                                 "%s.rrd", vl->type);
262         if ((status < 1) || (status >= buffer_len - offset))
263                 return (-1);
264         offset += status;
265
266         return (0);
267 } /* int value_list_to_filename */
268
269 static void *rrd_queue_thread (void *data)
270 {
271         struct timeval tv_next_update;
272         struct timeval tv_now;
273
274         gettimeofday (&tv_next_update, /* timezone = */ NULL);
275
276         while (42)
277         {
278                 rrd_queue_t *queue_entry;
279                 rrd_cache_t *cache_entry;
280                 char **values;
281                 int    values_num;
282                 int    i;
283
284                 pthread_mutex_lock (&queue_lock);
285                 /* Wait for values to arrive */
286                 while (true)
287                 {
288                   struct timespec ts_wait;
289                   int status;
290
291                   while ((flushq_head == NULL) && (queue_head == NULL)
292                       && (do_shutdown == 0))
293                     pthread_cond_wait (&queue_cond, &queue_lock);
294
295                   if ((flushq_head == NULL) && (queue_head == NULL))
296                     break;
297
298                   /* Don't delay if there's something to flush */
299                   if (flushq_head != NULL)
300                     break;
301
302                   /* Don't delay if we're shutting down */
303                   if (do_shutdown != 0)
304                     break;
305
306                   /* Don't delay if no delay was configured. */
307                   if (write_rate <= 0.0)
308                     break;
309
310                   gettimeofday (&tv_now, /* timezone = */ NULL);
311                   status = timeval_sub_timespec (&tv_next_update, &tv_now,
312                       &ts_wait);
313                   /* We're good to go */
314                   if (status != 0)
315                     break;
316
317                   /* We're supposed to wait a bit with this update, so we'll
318                    * wait for the next addition to the queue or to the end of
319                    * the wait period - whichever comes first. */
320                   ts_wait.tv_sec = tv_next_update.tv_sec;
321                   ts_wait.tv_nsec = 1000 * tv_next_update.tv_usec;
322
323                   status = pthread_cond_timedwait (&queue_cond, &queue_lock,
324                       &ts_wait);
325                   if (status == ETIMEDOUT)
326                     break;
327                 } /* while (true) */
328
329                 /* XXX: If you need to lock both, cache_lock and queue_lock, at
330                  * the same time, ALWAYS lock `cache_lock' first! */
331
332                 /* We're in the shutdown phase */
333                 if ((flushq_head == NULL) && (queue_head == NULL))
334                 {
335                   pthread_mutex_unlock (&queue_lock);
336                   break;
337                 }
338
339                 if (flushq_head != NULL)
340                 {
341                   /* Dequeue the first flush entry */
342                   queue_entry = flushq_head;
343                   if (flushq_head == flushq_tail)
344                     flushq_head = flushq_tail = NULL;
345                   else
346                     flushq_head = flushq_head->next;
347                 }
348                 else /* if (queue_head != NULL) */
349                 {
350                   /* Dequeue the first regular entry */
351                   queue_entry = queue_head;
352                   if (queue_head == queue_tail)
353                     queue_head = queue_tail = NULL;
354                   else
355                     queue_head = queue_head->next;
356                 }
357
358                 /* Unlock the queue again */
359                 pthread_mutex_unlock (&queue_lock);
360
361                 /* We now need the cache lock so the entry isn't updated while
362                  * we make a copy of it's values */
363                 pthread_mutex_lock (&cache_lock);
364
365                 c_avl_get (cache, queue_entry->filename, (void *) &cache_entry);
366
367                 values = cache_entry->values;
368                 values_num = cache_entry->values_num;
369
370                 cache_entry->values = NULL;
371                 cache_entry->values_num = 0;
372                 cache_entry->flags = FLAG_NONE;
373
374                 pthread_mutex_unlock (&cache_lock);
375
376                 /* Update `tv_next_update' */
377                 if (write_rate > 0.0) 
378                 {
379                   gettimeofday (&tv_now, /* timezone = */ NULL);
380                   tv_next_update.tv_sec = tv_now.tv_sec;
381                   tv_next_update.tv_usec = tv_now.tv_usec
382                     + ((suseconds_t) (1000000 * write_rate));
383                   while (tv_next_update.tv_usec > 1000000)
384                   {
385                     tv_next_update.tv_sec++;
386                     tv_next_update.tv_usec -= 1000000;
387                   }
388                 }
389
390                 /* Write the values to the RRD-file */
391                 srrd_update (queue_entry->filename, NULL,
392                                 values_num, (const char **)values);
393                 DEBUG ("rrdtool plugin: queue thread: Wrote %i values to %s",
394                                 values_num, queue_entry->filename);
395
396                 for (i = 0; i < values_num; i++)
397                 {
398                         sfree (values[i]);
399                 }
400                 sfree (values);
401                 sfree (queue_entry->filename);
402                 sfree (queue_entry);
403         } /* while (42) */
404
405         pthread_mutex_lock (&cache_lock);
406         c_avl_destroy (cache);
407         cache = NULL;
408         pthread_mutex_unlock (&cache_lock);
409
410         pthread_exit ((void *) 0);
411         return ((void *) 0);
412 } /* void *rrd_queue_thread */
413
414 static int rrd_queue_enqueue (const char *filename,
415     rrd_queue_t **head, rrd_queue_t **tail)
416 {
417   rrd_queue_t *queue_entry;
418
419   queue_entry = (rrd_queue_t *) malloc (sizeof (rrd_queue_t));
420   if (queue_entry == NULL)
421     return (-1);
422
423   queue_entry->filename = strdup (filename);
424   if (queue_entry->filename == NULL)
425   {
426     free (queue_entry);
427     return (-1);
428   }
429
430   queue_entry->next = NULL;
431
432   pthread_mutex_lock (&queue_lock);
433
434   if (*tail == NULL)
435     *head = queue_entry;
436   else
437     (*tail)->next = queue_entry;
438   *tail = queue_entry;
439
440   pthread_cond_signal (&queue_cond);
441   pthread_mutex_unlock (&queue_lock);
442
443   return (0);
444 } /* int rrd_queue_enqueue */
445
446 static int rrd_queue_dequeue (const char *filename,
447     rrd_queue_t **head, rrd_queue_t **tail)
448 {
449   rrd_queue_t *this;
450   rrd_queue_t *prev;
451
452   pthread_mutex_lock (&queue_lock);
453
454   prev = NULL;
455   this = *head;
456
457   while (this != NULL)
458   {
459     if (strcmp (this->filename, filename) == 0)
460       break;
461     
462     prev = this;
463     this = this->next;
464   }
465
466   if (this == NULL)
467   {
468     pthread_mutex_unlock (&queue_lock);
469     return (-1);
470   }
471
472   if (prev == NULL)
473     *head = this->next;
474   else
475     prev->next = this->next;
476
477   if (this->next == NULL)
478     *tail = prev;
479
480   pthread_mutex_unlock (&queue_lock);
481
482   sfree (this->filename);
483   sfree (this);
484
485   return (0);
486 } /* int rrd_queue_dequeue */
487
488 static void rrd_cache_flush (int timeout)
489 {
490         rrd_cache_t *rc;
491         time_t       now;
492
493         char **keys = NULL;
494         int    keys_num = 0;
495
496         char *key;
497         c_avl_iterator_t *iter;
498         int i;
499
500         DEBUG ("rrdtool plugin: Flushing cache, timeout = %i", timeout);
501
502         now = time (NULL);
503
504         /* Build a list of entries to be flushed */
505         iter = c_avl_get_iterator (cache);
506         while (c_avl_iterator_next (iter, (void *) &key, (void *) &rc) == 0)
507         {
508                 if (rc->flags != FLAG_NONE)
509                         continue;
510                 else if ((now - rc->first_value) < timeout)
511                         continue;
512                 else if (rc->values_num > 0)
513                 {
514                         int status;
515
516                         status = rrd_queue_enqueue (key, &queue_head,  &queue_tail);
517                         if (status == 0)
518                                 rc->flags = FLAG_QUEUED;
519                 }
520                 else /* ancient and no values -> waste of memory */
521                 {
522                         char **tmp = (char **) realloc ((void *) keys,
523                                         (keys_num + 1) * sizeof (char *));
524                         if (tmp == NULL)
525                         {
526                                 char errbuf[1024];
527                                 ERROR ("rrdtool plugin: "
528                                                 "realloc failed: %s",
529                                                 sstrerror (errno, errbuf,
530                                                         sizeof (errbuf)));
531                                 c_avl_iterator_destroy (iter);
532                                 sfree (keys);
533                                 return;
534                         }
535                         keys = tmp;
536                         keys[keys_num] = key;
537                         keys_num++;
538                 }
539         } /* while (c_avl_iterator_next) */
540         c_avl_iterator_destroy (iter);
541         
542         for (i = 0; i < keys_num; i++)
543         {
544                 if (c_avl_remove (cache, keys[i], (void *) &key, (void *) &rc) != 0)
545                 {
546                         DEBUG ("rrdtool plugin: c_avl_remove (%s) failed.", keys[i]);
547                         continue;
548                 }
549
550                 assert (rc->values == NULL);
551                 assert (rc->values_num == 0);
552
553                 sfree (rc);
554                 sfree (key);
555                 keys[i] = NULL;
556         } /* for (i = 0..keys_num) */
557
558         sfree (keys);
559
560         cache_flush_last = now;
561 } /* void rrd_cache_flush */
562
563 static int rrd_cache_flush_identifier (int timeout, const char *identifier)
564 {
565   rrd_cache_t *rc;
566   time_t now;
567   int status;
568   char key[2048];
569
570   if (identifier == NULL)
571   {
572     rrd_cache_flush (timeout);
573     return (0);
574   }
575
576   now = time (NULL);
577
578   if (datadir == NULL)
579     snprintf (key, sizeof (key), "%s.rrd",
580         identifier);
581   else
582     snprintf (key, sizeof (key), "%s/%s.rrd",
583         datadir, identifier);
584   key[sizeof (key) - 1] = 0;
585
586   status = c_avl_get (cache, key, (void *) &rc);
587   if (status != 0)
588   {
589     WARNING ("rrdtool plugin: rrd_cache_flush_identifier: "
590         "c_avl_get (%s) failed. Does that file really exist?",
591         key);
592     return (status);
593   }
594
595   if (rc->flags == FLAG_FLUSHQ)
596   {
597     status = 0;
598   }
599   else if (rc->flags == FLAG_QUEUED)
600   {
601     rrd_queue_dequeue (key, &queue_head, &queue_tail);
602     status = rrd_queue_enqueue (key, &flushq_head, &flushq_tail);
603     if (status == 0)
604       rc->flags = FLAG_FLUSHQ;
605   }
606   else if ((now - rc->first_value) < timeout)
607   {
608     status = 0;
609   }
610   else if (rc->values_num > 0)
611   {
612     status = rrd_queue_enqueue (key, &flushq_head, &flushq_tail);
613     if (status == 0)
614       rc->flags = FLAG_FLUSHQ;
615   }
616
617   return (status);
618 } /* int rrd_cache_flush_identifier */
619
620 static int rrd_cache_insert (const char *filename,
621                 const char *value, time_t value_time)
622 {
623         rrd_cache_t *rc = NULL;
624         int new_rc = 0;
625         char **values_new;
626
627         pthread_mutex_lock (&cache_lock);
628
629         c_avl_get (cache, filename, (void *) &rc);
630
631         if (rc == NULL)
632         {
633                 rc = (rrd_cache_t *) malloc (sizeof (rrd_cache_t));
634                 if (rc == NULL)
635                         return (-1);
636                 rc->values_num = 0;
637                 rc->values = NULL;
638                 rc->first_value = 0;
639                 rc->last_value = 0;
640                 rc->flags = FLAG_NONE;
641                 new_rc = 1;
642         }
643
644         if (rc->last_value >= value_time)
645         {
646                 pthread_mutex_unlock (&cache_lock);
647                 WARNING ("rrdtool plugin: (rc->last_value = %u) >= (value_time = %u)",
648                                 (unsigned int) rc->last_value,
649                                 (unsigned int) value_time);
650                 return (-1);
651         }
652
653         values_new = (char **) realloc ((void *) rc->values,
654                         (rc->values_num + 1) * sizeof (char *));
655         if (values_new == NULL)
656         {
657                 char errbuf[1024];
658                 void *cache_key = NULL;
659
660                 sstrerror (errno, errbuf, sizeof (errbuf));
661
662                 c_avl_remove (cache, filename, &cache_key, NULL);
663                 pthread_mutex_unlock (&cache_lock);
664
665                 ERROR ("rrdtool plugin: realloc failed: %s", errbuf);
666
667                 sfree (cache_key);
668                 sfree (rc->values);
669                 sfree (rc);
670                 return (-1);
671         }
672         rc->values = values_new;
673
674         rc->values[rc->values_num] = strdup (value);
675         if (rc->values[rc->values_num] != NULL)
676                 rc->values_num++;
677
678         if (rc->values_num == 1)
679                 rc->first_value = value_time;
680         rc->last_value = value_time;
681
682         /* Insert if this is the first value */
683         if (new_rc == 1)
684         {
685                 void *cache_key = strdup (filename);
686
687                 if (cache_key == NULL)
688                 {
689                         char errbuf[1024];
690                         sstrerror (errno, errbuf, sizeof (errbuf));
691
692                         pthread_mutex_unlock (&cache_lock);
693
694                         ERROR ("rrdtool plugin: strdup failed: %s", errbuf);
695
696                         sfree (rc->values[0]);
697                         sfree (rc->values);
698                         sfree (rc);
699                         return (-1);
700                 }
701
702                 c_avl_insert (cache, cache_key, rc);
703         }
704
705         DEBUG ("rrdtool plugin: rrd_cache_insert: file = %s; "
706                         "values_num = %i; age = %lu;",
707                         filename, rc->values_num,
708                         (unsigned long)(rc->last_value - rc->first_value));
709
710         if ((rc->last_value - rc->first_value) >= cache_timeout)
711         {
712                 /* XXX: If you need to lock both, cache_lock and queue_lock, at
713                  * the same time, ALWAYS lock `cache_lock' first! */
714                 if (rc->flags == FLAG_NONE)
715                 {
716                         int status;
717
718                         status = rrd_queue_enqueue (filename, &queue_head, &queue_tail);
719                         if (status == 0)
720                                 rc->flags = FLAG_QUEUED;
721                 }
722                 else
723                 {
724                         DEBUG ("rrdtool plugin: `%s' is already queued.", filename);
725                 }
726         }
727
728         if ((cache_timeout > 0) &&
729                         ((time (NULL) - cache_flush_last) > cache_flush_timeout))
730                 rrd_cache_flush (cache_flush_timeout);
731
732         pthread_mutex_unlock (&cache_lock);
733
734         return (0);
735 } /* int rrd_cache_insert */
736
737 static int rrd_compare_numeric (const void *a_ptr, const void *b_ptr)
738 {
739         int a = *((int *) a_ptr);
740         int b = *((int *) b_ptr);
741
742         if (a < b)
743                 return (-1);
744         else if (a > b)
745                 return (1);
746         else
747                 return (0);
748 } /* int rrd_compare_numeric */
749
750 static int rrd_write (const data_set_t *ds, const value_list_t *vl)
751 {
752         struct stat  statbuf;
753         char         filename[512];
754         char         values[512];
755         int          status;
756
757         if (0 != strcmp (ds->type, vl->type)) {
758                 ERROR ("rrdtool plugin: DS type does not match value list type");
759                 return -1;
760         }
761
762         if (value_list_to_filename (filename, sizeof (filename), ds, vl) != 0)
763                 return (-1);
764
765         if (value_list_to_string (values, sizeof (values), ds, vl) != 0)
766                 return (-1);
767
768         if (stat (filename, &statbuf) == -1)
769         {
770                 if (errno == ENOENT)
771                 {
772                         status = cu_rrd_create_file (filename,
773                                         ds, vl, &rrdcreate_config);
774                         if (status != 0)
775                                 return (-1);
776                 }
777                 else
778                 {
779                         char errbuf[1024];
780                         ERROR ("stat(%s) failed: %s", filename,
781                                         sstrerror (errno, errbuf,
782                                                 sizeof (errbuf)));
783                         return (-1);
784                 }
785         }
786         else if (!S_ISREG (statbuf.st_mode))
787         {
788                 ERROR ("stat(%s): Not a regular file!",
789                                 filename);
790                 return (-1);
791         }
792
793         status = rrd_cache_insert (filename, values, vl->time);
794
795         return (status);
796 } /* int rrd_write */
797
798 static int rrd_flush (int timeout, const char *identifier)
799 {
800         pthread_mutex_lock (&cache_lock);
801
802         if (cache == NULL) {
803                 pthread_mutex_unlock (&cache_lock);
804                 return (0);
805         }
806
807         rrd_cache_flush_identifier (timeout, identifier);
808
809         pthread_mutex_unlock (&cache_lock);
810         return (0);
811 } /* int rrd_flush */
812
813 static int rrd_config (const char *key, const char *value)
814 {
815         if (strcasecmp ("CacheTimeout", key) == 0)
816         {
817                 int tmp = atoi (value);
818                 if (tmp < 0)
819                 {
820                         fprintf (stderr, "rrdtool: `CacheTimeout' must "
821                                         "be greater than 0.\n");
822                         ERROR ("rrdtool: `CacheTimeout' must "
823                                         "be greater than 0.\n");
824                         return (1);
825                 }
826                 cache_timeout = tmp;
827         }
828         else if (strcasecmp ("CacheFlush", key) == 0)
829         {
830                 int tmp = atoi (value);
831                 if (tmp < 0)
832                 {
833                         fprintf (stderr, "rrdtool: `CacheFlush' must "
834                                         "be greater than 0.\n");
835                         ERROR ("rrdtool: `CacheFlush' must "
836                                         "be greater than 0.\n");
837                         return (1);
838                 }
839                 cache_flush_timeout = tmp;
840         }
841         else if (strcasecmp ("DataDir", key) == 0)
842         {
843                 if (datadir != NULL)
844                         free (datadir);
845                 datadir = strdup (value);
846                 if (datadir != NULL)
847                 {
848                         int len = strlen (datadir);
849                         while ((len > 0) && (datadir[len - 1] == '/'))
850                         {
851                                 len--;
852                                 datadir[len] = '\0';
853                         }
854                         if (len <= 0)
855                         {
856                                 free (datadir);
857                                 datadir = NULL;
858                         }
859                 }
860         }
861         else if (strcasecmp ("StepSize", key) == 0)
862         {
863                 int temp = atoi (value);
864                 if (temp > 0)
865                         rrdcreate_config.stepsize = temp;
866         }
867         else if (strcasecmp ("HeartBeat", key) == 0)
868         {
869                 int temp = atoi (value);
870                 if (temp > 0)
871                         rrdcreate_config.heartbeat = temp;
872         }
873         else if (strcasecmp ("RRARows", key) == 0)
874         {
875                 int tmp = atoi (value);
876                 if (tmp <= 0)
877                 {
878                         fprintf (stderr, "rrdtool: `RRARows' must "
879                                         "be greater than 0.\n");
880                         ERROR ("rrdtool: `RRARows' must "
881                                         "be greater than 0.\n");
882                         return (1);
883                 }
884                 rrdcreate_config.rrarows = tmp;
885         }
886         else if (strcasecmp ("RRATimespan", key) == 0)
887         {
888                 char *saveptr = NULL;
889                 char *dummy;
890                 char *ptr;
891                 char *value_copy;
892                 int *tmp_alloc;
893
894                 value_copy = strdup (value);
895                 if (value_copy == NULL)
896                         return (1);
897
898                 dummy = value_copy;
899                 while ((ptr = strtok_r (dummy, ", \t", &saveptr)) != NULL)
900                 {
901                         dummy = NULL;
902                         
903                         tmp_alloc = realloc (rrdcreate_config.timespans,
904                                         sizeof (int) * (rrdcreate_config.timespans_num + 1));
905                         if (tmp_alloc == NULL)
906                         {
907                                 fprintf (stderr, "rrdtool: realloc failed.\n");
908                                 ERROR ("rrdtool: realloc failed.\n");
909                                 free (value_copy);
910                                 return (1);
911                         }
912                         rrdcreate_config.timespans = tmp_alloc;
913                         rrdcreate_config.timespans[rrdcreate_config.timespans_num] = atoi (ptr);
914                         if (rrdcreate_config.timespans[rrdcreate_config.timespans_num] != 0)
915                                 rrdcreate_config.timespans_num++;
916                 } /* while (strtok_r) */
917
918                 qsort (/* base = */ rrdcreate_config.timespans,
919                                 /* nmemb  = */ rrdcreate_config.timespans_num,
920                                 /* size   = */ sizeof (rrdcreate_config.timespans[0]),
921                                 /* compar = */ rrd_compare_numeric);
922
923                 free (value_copy);
924         }
925         else if (strcasecmp ("XFF", key) == 0)
926         {
927                 double tmp = atof (value);
928                 if ((tmp < 0.0) || (tmp >= 1.0))
929                 {
930                         fprintf (stderr, "rrdtool: `XFF' must "
931                                         "be in the range 0 to 1 (exclusive).");
932                         ERROR ("rrdtool: `XFF' must "
933                                         "be in the range 0 to 1 (exclusive).");
934                         return (1);
935                 }
936                 rrdcreate_config.xff = tmp;
937         }
938         else if (strcasecmp ("WritesPerSecond", key) == 0)
939         {
940                 double wps = atof (value);
941
942                 if (wps < 0.0)
943                 {
944                         fprintf (stderr, "rrdtool: `WritesPerSecond' must be "
945                                         "greater than or equal to zero.");
946                         return (1);
947                 }
948                 else if (wps == 0.0)
949                 {
950                         write_rate = 0.0;
951                 }
952                 else
953                 {
954                         write_rate = 1.0 / wps;
955                 }
956         }
957         else
958         {
959                 return (-1);
960         }
961         return (0);
962 } /* int rrd_config */
963
964 static int rrd_shutdown (void)
965 {
966         pthread_mutex_lock (&cache_lock);
967         rrd_cache_flush (-1);
968         pthread_mutex_unlock (&cache_lock);
969
970         pthread_mutex_lock (&queue_lock);
971         do_shutdown = 1;
972         pthread_cond_signal (&queue_cond);
973         pthread_mutex_unlock (&queue_lock);
974
975         /* Wait for all the values to be written to disk before returning. */
976         if (queue_thread != 0)
977         {
978                 pthread_join (queue_thread, NULL);
979                 queue_thread = 0;
980                 DEBUG ("rrdtool plugin: queue_thread exited.");
981         }
982
983         return (0);
984 } /* int rrd_shutdown */
985
986 static int rrd_init (void)
987 {
988         int status;
989
990         if (rrdcreate_config.stepsize < 0)
991                 rrdcreate_config.stepsize = 0;
992         if (rrdcreate_config.heartbeat <= 0)
993                 rrdcreate_config.heartbeat = 2 * rrdcreate_config.stepsize;
994
995         if ((rrdcreate_config.heartbeat > 0)
996                         && (rrdcreate_config.heartbeat < interval_g))
997                 WARNING ("rrdtool plugin: Your `heartbeat' is "
998                                 "smaller than your `interval'. This will "
999                                 "likely cause problems.");
1000         else if ((rrdcreate_config.stepsize > 0)
1001                         && (rrdcreate_config.stepsize < interval_g))
1002                 WARNING ("rrdtool plugin: Your `stepsize' is "
1003                                 "smaller than your `interval'. This will "
1004                                 "create needlessly big RRD-files.");
1005
1006         /* Set the cache up */
1007         pthread_mutex_lock (&cache_lock);
1008
1009         cache = c_avl_create ((int (*) (const void *, const void *)) strcmp);
1010         if (cache == NULL)
1011         {
1012                 ERROR ("rrdtool plugin: c_avl_create failed.");
1013                 return (-1);
1014         }
1015
1016         cache_flush_last = time (NULL);
1017         if (cache_timeout < 2)
1018         {
1019                 cache_timeout = 0;
1020                 cache_flush_timeout = 0;
1021         }
1022         else if (cache_flush_timeout < cache_timeout)
1023                 cache_flush_timeout = 10 * cache_timeout;
1024
1025         pthread_mutex_unlock (&cache_lock);
1026
1027         status = pthread_create (&queue_thread, NULL, rrd_queue_thread, NULL);
1028         if (status != 0)
1029         {
1030                 ERROR ("rrdtool plugin: Cannot create queue-thread.");
1031                 return (-1);
1032         }
1033
1034         DEBUG ("rrdtool plugin: rrd_init: datadir = %s; stepsize = %i;"
1035                         " heartbeat = %i; rrarows = %i; xff = %lf;",
1036                         (datadir == NULL) ? "(null)" : datadir,
1037                         rrdcreate_config.stepsize,
1038                         rrdcreate_config.heartbeat,
1039                         rrdcreate_config.rrarows,
1040                         rrdcreate_config.xff);
1041
1042         return (0);
1043 } /* int rrd_init */
1044
1045 void module_register (void)
1046 {
1047         plugin_register_config ("rrdtool", rrd_config,
1048                         config_keys, config_keys_num);
1049         plugin_register_init ("rrdtool", rrd_init);
1050         plugin_register_write ("rrdtool", rrd_write);
1051         plugin_register_flush ("rrdtool", rrd_flush);
1052         plugin_register_shutdown ("rrdtool", rrd_shutdown);
1053 }