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