c948d1f803b282d0707b8daafa7d8571d61eee59
[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 = TIME_T_TO_CDTIME_T (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 (42)
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 (42) */
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 /* XXX: You must hold "cache_lock" when calling this function! */
516 static void rrd_cache_flush (cdtime_t timeout)
517 {
518         rrd_cache_t *rc;
519         cdtime_t     now;
520
521         char **keys = NULL;
522         int    keys_num = 0;
523
524         char *key;
525         c_avl_iterator_t *iter;
526         int i;
527
528         DEBUG ("rrdtool plugin: Flushing cache, timeout = %.3f",
529                         CDTIME_T_TO_DOUBLE (timeout));
530
531         now = cdtime ();
532         timeout = TIME_T_TO_CDTIME_T (timeout);
533
534         /* Build a list of entries to be flushed */
535         iter = c_avl_get_iterator (cache);
536         while (c_avl_iterator_next (iter, (void *) &key, (void *) &rc) == 0)
537         {
538                 if (rc->flags != FLAG_NONE)
539                         continue;
540                 /* timeout == 0  =>  flush everything */
541                 else if ((timeout != 0)
542                                 && ((now - rc->first_value) < timeout))
543                         continue;
544                 else if (rc->values_num > 0)
545                 {
546                         int status;
547
548                         status = rrd_queue_enqueue (key, &queue_head,  &queue_tail);
549                         if (status == 0)
550                                 rc->flags = FLAG_QUEUED;
551                 }
552                 else /* ancient and no values -> waste of memory */
553                 {
554                         char **tmp = (char **) realloc ((void *) keys,
555                                         (keys_num + 1) * sizeof (char *));
556                         if (tmp == NULL)
557                         {
558                                 char errbuf[1024];
559                                 ERROR ("rrdtool plugin: "
560                                                 "realloc failed: %s",
561                                                 sstrerror (errno, errbuf,
562                                                         sizeof (errbuf)));
563                                 c_avl_iterator_destroy (iter);
564                                 sfree (keys);
565                                 return;
566                         }
567                         keys = tmp;
568                         keys[keys_num] = key;
569                         keys_num++;
570                 }
571         } /* while (c_avl_iterator_next) */
572         c_avl_iterator_destroy (iter);
573         
574         for (i = 0; i < keys_num; i++)
575         {
576                 if (c_avl_remove (cache, keys[i], (void *) &key, (void *) &rc) != 0)
577                 {
578                         DEBUG ("rrdtool plugin: c_avl_remove (%s) failed.", keys[i]);
579                         continue;
580                 }
581
582                 assert (rc->values == NULL);
583                 assert (rc->values_num == 0);
584
585                 sfree (rc);
586                 sfree (key);
587                 keys[i] = NULL;
588         } /* for (i = 0..keys_num) */
589
590         sfree (keys);
591
592         cache_flush_last = now;
593 } /* void rrd_cache_flush */
594
595 static int rrd_cache_flush_identifier (cdtime_t timeout,
596     const char *identifier)
597 {
598   rrd_cache_t *rc;
599   cdtime_t now;
600   int status;
601   char key[2048];
602
603   if (identifier == NULL)
604   {
605     rrd_cache_flush (timeout);
606     return (0);
607   }
608
609   now = cdtime ();
610
611   if (datadir == NULL)
612     snprintf (key, sizeof (key), "%s.rrd",
613         identifier);
614   else
615     snprintf (key, sizeof (key), "%s/%s.rrd",
616         datadir, identifier);
617   key[sizeof (key) - 1] = 0;
618
619   status = c_avl_get (cache, key, (void *) &rc);
620   if (status != 0)
621   {
622     INFO ("rrdtool plugin: rrd_cache_flush_identifier: "
623         "c_avl_get (%s) failed. Does that file really exist?",
624         key);
625     return (status);
626   }
627
628   if (rc->flags == FLAG_FLUSHQ)
629   {
630     status = 0;
631   }
632   else if (rc->flags == FLAG_QUEUED)
633   {
634     rrd_queue_dequeue (key, &queue_head, &queue_tail);
635     status = rrd_queue_enqueue (key, &flushq_head, &flushq_tail);
636     if (status == 0)
637       rc->flags = FLAG_FLUSHQ;
638   }
639   else if ((now - rc->first_value) < timeout)
640   {
641     status = 0;
642   }
643   else if (rc->values_num > 0)
644   {
645     status = rrd_queue_enqueue (key, &flushq_head, &flushq_tail);
646     if (status == 0)
647       rc->flags = FLAG_FLUSHQ;
648   }
649
650   return (status);
651 } /* int rrd_cache_flush_identifier */
652
653 static int64_t rrd_get_random_variation (void)
654 {
655   double dbl_timeout;
656   cdtime_t ctm_timeout;
657   double rand_fact;
658   _Bool negative;
659   int64_t ret;
660
661   if (random_timeout <= 0)
662     return (0);
663
664   /* This seems a bit complicated, but "random_timeout" is likely larger than
665    * RAND_MAX, so we can't simply use modulo here. */
666   dbl_timeout = CDTIME_T_TO_DOUBLE (random_timeout);
667   rand_fact = ((double) random ())
668     / ((double) RAND_MAX);
669   negative = (_Bool) (random () % 2);
670
671   ctm_timeout = DOUBLE_TO_CDTIME_T (dbl_timeout * rand_fact);
672
673   ret = (int64_t) ctm_timeout;
674   if (negative)
675     ret *= -1;
676
677   return (ret);
678 } /* int64_t rrd_get_random_variation */
679
680 static int rrd_cache_insert (const char *filename,
681                 const char *value, cdtime_t value_time)
682 {
683         rrd_cache_t *rc = NULL;
684         int new_rc = 0;
685         char **values_new;
686
687         pthread_mutex_lock (&cache_lock);
688
689         /* This shouldn't happen, but it did happen at least once, so we'll be
690          * careful. */
691         if (cache == NULL)
692         {
693                 pthread_mutex_unlock (&cache_lock);
694                 WARNING ("rrdtool plugin: cache == NULL.");
695                 return (-1);
696         }
697
698         c_avl_get (cache, filename, (void *) &rc);
699
700         if (rc == NULL)
701         {
702                 rc = malloc (sizeof (*rc));
703                 if (rc == NULL)
704                         return (-1);
705                 rc->values_num = 0;
706                 rc->values = NULL;
707                 rc->first_value = 0;
708                 rc->last_value = 0;
709                 rc->random_variation = rrd_get_random_variation ();
710                 rc->flags = FLAG_NONE;
711                 new_rc = 1;
712         }
713
714         if (rc->last_value >= value_time)
715         {
716                 pthread_mutex_unlock (&cache_lock);
717                 DEBUG ("rrdtool plugin: (rc->last_value = %"PRIu64") "
718                                 ">= (value_time = %"PRIu64")",
719                                 rc->last_value, value_time);
720                 return (-1);
721         }
722
723         values_new = (char **) realloc ((void *) rc->values,
724                         (rc->values_num + 1) * sizeof (char *));
725         if (values_new == NULL)
726         {
727                 char errbuf[1024];
728                 void *cache_key = NULL;
729
730                 sstrerror (errno, errbuf, sizeof (errbuf));
731
732                 c_avl_remove (cache, filename, &cache_key, NULL);
733                 pthread_mutex_unlock (&cache_lock);
734
735                 ERROR ("rrdtool plugin: realloc failed: %s", errbuf);
736
737                 sfree (cache_key);
738                 sfree (rc->values);
739                 sfree (rc);
740                 return (-1);
741         }
742         rc->values = values_new;
743
744         rc->values[rc->values_num] = strdup (value);
745         if (rc->values[rc->values_num] != NULL)
746                 rc->values_num++;
747
748         if (rc->values_num == 1)
749                 rc->first_value = value_time;
750         rc->last_value = value_time;
751
752         /* Insert if this is the first value */
753         if (new_rc == 1)
754         {
755                 void *cache_key = strdup (filename);
756
757                 if (cache_key == NULL)
758                 {
759                         char errbuf[1024];
760                         sstrerror (errno, errbuf, sizeof (errbuf));
761
762                         pthread_mutex_unlock (&cache_lock);
763
764                         ERROR ("rrdtool plugin: strdup failed: %s", errbuf);
765
766                         sfree (rc->values[0]);
767                         sfree (rc->values);
768                         sfree (rc);
769                         return (-1);
770                 }
771
772                 c_avl_insert (cache, cache_key, rc);
773         }
774
775         DEBUG ("rrdtool plugin: rrd_cache_insert: file = %s; "
776                         "values_num = %i; age = %.3f;",
777                         filename, rc->values_num,
778                         CDTIME_T_TO_DOUBLE (rc->last_value - rc->first_value));
779
780         if ((rc->last_value - rc->first_value) >= (cache_timeout + rc->random_variation))
781         {
782                 /* XXX: If you need to lock both, cache_lock and queue_lock, at
783                  * the same time, ALWAYS lock `cache_lock' first! */
784                 if (rc->flags == FLAG_NONE)
785                 {
786                         int status;
787
788                         status = rrd_queue_enqueue (filename, &queue_head, &queue_tail);
789                         if (status == 0)
790                                 rc->flags = FLAG_QUEUED;
791
792                         rc->random_variation = rrd_get_random_variation ();
793                 }
794                 else
795                 {
796                         DEBUG ("rrdtool plugin: `%s' is already queued.", filename);
797                 }
798         }
799
800         if ((cache_timeout > 0) &&
801                         ((cdtime () - cache_flush_last) > cache_flush_timeout))
802                 rrd_cache_flush (cache_flush_timeout);
803
804         pthread_mutex_unlock (&cache_lock);
805
806         return (0);
807 } /* int rrd_cache_insert */
808
809 static int rrd_cache_destroy (void) /* {{{ */
810 {
811   void *key = NULL;
812   void *value = NULL;
813
814   int non_empty = 0;
815
816   pthread_mutex_lock (&cache_lock);
817
818   if (cache == NULL)
819   {
820     pthread_mutex_unlock (&cache_lock);
821     return (0);
822   }
823
824   while (c_avl_pick (cache, &key, &value) == 0)
825   {
826     rrd_cache_t *rc;
827     int i;
828
829     sfree (key);
830     key = NULL;
831
832     rc = value;
833     value = NULL;
834
835     if (rc->values_num > 0)
836       non_empty++;
837
838     for (i = 0; i < rc->values_num; i++)
839       sfree (rc->values[i]);
840     sfree (rc->values);
841     sfree (rc);
842   }
843
844   c_avl_destroy (cache);
845   cache = NULL;
846
847   if (non_empty > 0)
848   {
849     INFO ("rrdtool plugin: %i cache %s had values when destroying the cache.",
850         non_empty, (non_empty == 1) ? "entry" : "entries");
851   }
852   else
853   {
854     DEBUG ("rrdtool plugin: No values have been lost "
855         "when destroying the cache.");
856   }
857
858   pthread_mutex_unlock (&cache_lock);
859   return (0);
860 } /* }}} int rrd_cache_destroy */
861
862 static int rrd_compare_numeric (const void *a_ptr, const void *b_ptr)
863 {
864         int a = *((int *) a_ptr);
865         int b = *((int *) b_ptr);
866
867         if (a < b)
868                 return (-1);
869         else if (a > b)
870                 return (1);
871         else
872                 return (0);
873 } /* int rrd_compare_numeric */
874
875 static int rrd_write (const data_set_t *ds, const value_list_t *vl,
876                 user_data_t __attribute__((unused)) *user_data)
877 {
878         struct stat  statbuf;
879         char         filename[512];
880         char         values[512];
881         int          status;
882
883         if (do_shutdown)
884                 return (0);
885
886         if (0 != strcmp (ds->type, vl->type)) {
887                 ERROR ("rrdtool plugin: DS type does not match value list type");
888                 return -1;
889         }
890
891         if (value_list_to_filename (filename, sizeof (filename), ds, vl) != 0)
892                 return (-1);
893
894         if (value_list_to_string (values, sizeof (values), ds, vl) != 0)
895                 return (-1);
896
897         if (stat (filename, &statbuf) == -1)
898         {
899                 if (errno == ENOENT)
900                 {
901                         status = cu_rrd_create_file (filename,
902                                         ds, vl, &rrdcreate_config);
903                         if (status != 0)
904                                 return (-1);
905                 }
906                 else
907                 {
908                         char errbuf[1024];
909                         ERROR ("stat(%s) failed: %s", filename,
910                                         sstrerror (errno, errbuf,
911                                                 sizeof (errbuf)));
912                         return (-1);
913                 }
914         }
915         else if (!S_ISREG (statbuf.st_mode))
916         {
917                 ERROR ("stat(%s): Not a regular file!",
918                                 filename);
919                 return (-1);
920         }
921
922         status = rrd_cache_insert (filename, values, vl->time);
923
924         return (status);
925 } /* int rrd_write */
926
927 static int rrd_flush (cdtime_t timeout, const char *identifier,
928                 __attribute__((unused)) user_data_t *user_data)
929 {
930         pthread_mutex_lock (&cache_lock);
931
932         if (cache == NULL) {
933                 pthread_mutex_unlock (&cache_lock);
934                 return (0);
935         }
936
937         rrd_cache_flush_identifier (timeout, identifier);
938
939         pthread_mutex_unlock (&cache_lock);
940         return (0);
941 } /* int rrd_flush */
942
943 static int rrd_config (const char *key, const char *value)
944 {
945         if (strcasecmp ("CacheTimeout", key) == 0)
946         {
947                 double tmp = atof (value);
948                 if (tmp < 0)
949                 {
950                         fprintf (stderr, "rrdtool: `CacheTimeout' must "
951                                         "be greater than 0.\n");
952                         ERROR ("rrdtool: `CacheTimeout' must "
953                                         "be greater than 0.\n");
954                         return (1);
955                 }
956                 cache_timeout = DOUBLE_TO_CDTIME_T (tmp);
957         }
958         else if (strcasecmp ("CacheFlush", key) == 0)
959         {
960                 int tmp = atoi (value);
961                 if (tmp < 0)
962                 {
963                         fprintf (stderr, "rrdtool: `CacheFlush' must "
964                                         "be greater than 0.\n");
965                         ERROR ("rrdtool: `CacheFlush' must "
966                                         "be greater than 0.\n");
967                         return (1);
968                 }
969                 cache_flush_timeout = tmp;
970         }
971         else if (strcasecmp ("DataDir", key) == 0)
972         {
973                 if (datadir != NULL)
974                         free (datadir);
975                 datadir = strdup (value);
976                 if (datadir != NULL)
977                 {
978                         int len = strlen (datadir);
979                         while ((len > 0) && (datadir[len - 1] == '/'))
980                         {
981                                 len--;
982                                 datadir[len] = '\0';
983                         }
984                         if (len <= 0)
985                         {
986                                 free (datadir);
987                                 datadir = NULL;
988                         }
989                 }
990         }
991         else if (strcasecmp ("StepSize", key) == 0)
992         {
993                 int temp = atoi (value);
994                 if (temp > 0)
995                         rrdcreate_config.stepsize = temp;
996         }
997         else if (strcasecmp ("HeartBeat", key) == 0)
998         {
999                 int temp = atoi (value);
1000                 if (temp > 0)
1001                         rrdcreate_config.heartbeat = temp;
1002         }
1003         else if (strcasecmp ("RRARows", key) == 0)
1004         {
1005                 int tmp = atoi (value);
1006                 if (tmp <= 0)
1007                 {
1008                         fprintf (stderr, "rrdtool: `RRARows' must "
1009                                         "be greater than 0.\n");
1010                         ERROR ("rrdtool: `RRARows' must "
1011                                         "be greater than 0.\n");
1012                         return (1);
1013                 }
1014                 rrdcreate_config.rrarows = tmp;
1015         }
1016         else if (strcasecmp ("RRATimespan", key) == 0)
1017         {
1018                 char *saveptr = NULL;
1019                 char *dummy;
1020                 char *ptr;
1021                 char *value_copy;
1022                 int *tmp_alloc;
1023
1024                 value_copy = strdup (value);
1025                 if (value_copy == NULL)
1026                         return (1);
1027
1028                 dummy = value_copy;
1029                 while ((ptr = strtok_r (dummy, ", \t", &saveptr)) != NULL)
1030                 {
1031                         dummy = NULL;
1032                         
1033                         tmp_alloc = realloc (rrdcreate_config.timespans,
1034                                         sizeof (int) * (rrdcreate_config.timespans_num + 1));
1035                         if (tmp_alloc == NULL)
1036                         {
1037                                 fprintf (stderr, "rrdtool: realloc failed.\n");
1038                                 ERROR ("rrdtool: realloc failed.\n");
1039                                 free (value_copy);
1040                                 return (1);
1041                         }
1042                         rrdcreate_config.timespans = tmp_alloc;
1043                         rrdcreate_config.timespans[rrdcreate_config.timespans_num] = atoi (ptr);
1044                         if (rrdcreate_config.timespans[rrdcreate_config.timespans_num] != 0)
1045                                 rrdcreate_config.timespans_num++;
1046                 } /* while (strtok_r) */
1047
1048                 qsort (/* base = */ rrdcreate_config.timespans,
1049                                 /* nmemb  = */ rrdcreate_config.timespans_num,
1050                                 /* size   = */ sizeof (rrdcreate_config.timespans[0]),
1051                                 /* compar = */ rrd_compare_numeric);
1052
1053                 free (value_copy);
1054         }
1055         else if (strcasecmp ("XFF", key) == 0)
1056         {
1057                 double tmp = atof (value);
1058                 if ((tmp < 0.0) || (tmp >= 1.0))
1059                 {
1060                         fprintf (stderr, "rrdtool: `XFF' must "
1061                                         "be in the range 0 to 1 (exclusive).");
1062                         ERROR ("rrdtool: `XFF' must "
1063                                         "be in the range 0 to 1 (exclusive).");
1064                         return (1);
1065                 }
1066                 rrdcreate_config.xff = tmp;
1067         }
1068         else if (strcasecmp ("WritesPerSecond", key) == 0)
1069         {
1070                 double wps = atof (value);
1071
1072                 if (wps < 0.0)
1073                 {
1074                         fprintf (stderr, "rrdtool: `WritesPerSecond' must be "
1075                                         "greater than or equal to zero.");
1076                         return (1);
1077                 }
1078                 else if (wps == 0.0)
1079                 {
1080                         write_rate = 0.0;
1081                 }
1082                 else
1083                 {
1084                         write_rate = 1.0 / wps;
1085                 }
1086         }
1087         else if (strcasecmp ("RandomTimeout", key) == 0)
1088         {
1089                 double tmp;
1090
1091                 tmp = atof (value);
1092                 if (tmp < 0.0)
1093                 {
1094                         fprintf (stderr, "rrdtool: `RandomTimeout' must "
1095                                         "be greater than or equal to zero.\n");
1096                         ERROR ("rrdtool: `RandomTimeout' must "
1097                                         "be greater then or equal to zero.");
1098                 }
1099                 else
1100                 {
1101                         random_timeout = DOUBLE_TO_CDTIME_T (tmp);
1102                 }
1103         }
1104         else
1105         {
1106                 return (-1);
1107         }
1108         return (0);
1109 } /* int rrd_config */
1110
1111 static int rrd_shutdown (void)
1112 {
1113         pthread_mutex_lock (&cache_lock);
1114         rrd_cache_flush (0);
1115         pthread_mutex_unlock (&cache_lock);
1116
1117         pthread_mutex_lock (&queue_lock);
1118         do_shutdown = 1;
1119         pthread_cond_signal (&queue_cond);
1120         pthread_mutex_unlock (&queue_lock);
1121
1122         if ((queue_thread_running != 0)
1123                         && ((queue_head != NULL) || (flushq_head != NULL)))
1124         {
1125                 INFO ("rrdtool plugin: Shutting down the queue thread. "
1126                                 "This may take a while.");
1127         }
1128         else if (queue_thread_running != 0)
1129         {
1130                 INFO ("rrdtool plugin: Shutting down the queue thread.");
1131         }
1132
1133         /* Wait for all the values to be written to disk before returning. */
1134         if (queue_thread_running != 0)
1135         {
1136                 pthread_join (queue_thread, NULL);
1137                 memset (&queue_thread, 0, sizeof (queue_thread));
1138                 queue_thread_running = 0;
1139                 DEBUG ("rrdtool plugin: queue_thread exited.");
1140         }
1141
1142         rrd_cache_destroy ();
1143
1144         return (0);
1145 } /* int rrd_shutdown */
1146
1147 static int rrd_init (void)
1148 {
1149         static int init_once = 0;
1150         int status;
1151
1152         if (init_once != 0)
1153                 return (0);
1154         init_once = 1;
1155
1156         if (rrdcreate_config.stepsize < 0)
1157                 rrdcreate_config.stepsize = 0;
1158         if (rrdcreate_config.heartbeat <= 0)
1159                 rrdcreate_config.heartbeat = 2 * rrdcreate_config.stepsize;
1160
1161         if ((rrdcreate_config.heartbeat > 0)
1162                         && (rrdcreate_config.heartbeat < CDTIME_T_TO_TIME_T (interval_g)))
1163                 WARNING ("rrdtool plugin: Your `heartbeat' is "
1164                                 "smaller than your `interval'. This will "
1165                                 "likely cause problems.");
1166         else if ((rrdcreate_config.stepsize > 0)
1167                         && (rrdcreate_config.stepsize < CDTIME_T_TO_TIME_T (interval_g)))
1168                 WARNING ("rrdtool plugin: Your `stepsize' is "
1169                                 "smaller than your `interval'. This will "
1170                                 "create needlessly big RRD-files.");
1171
1172         /* Set the cache up */
1173         pthread_mutex_lock (&cache_lock);
1174
1175         cache = c_avl_create ((int (*) (const void *, const void *)) strcmp);
1176         if (cache == NULL)
1177         {
1178                 ERROR ("rrdtool plugin: c_avl_create failed.");
1179                 return (-1);
1180         }
1181
1182         cache_flush_last = cdtime ();
1183         if (cache_timeout == 0)
1184         {
1185                 cache_flush_timeout = 0;
1186         }
1187         else if (cache_flush_timeout < cache_timeout)
1188                 cache_flush_timeout = 10 * cache_timeout;
1189
1190         pthread_mutex_unlock (&cache_lock);
1191
1192         status = pthread_create (&queue_thread, /* attr = */ NULL,
1193                         rrd_queue_thread, /* args = */ NULL);
1194         if (status != 0)
1195         {
1196                 ERROR ("rrdtool plugin: Cannot create queue-thread.");
1197                 return (-1);
1198         }
1199         queue_thread_running = 1;
1200
1201         DEBUG ("rrdtool plugin: rrd_init: datadir = %s; stepsize = %i;"
1202                         " heartbeat = %i; rrarows = %i; xff = %lf;",
1203                         (datadir == NULL) ? "(null)" : datadir,
1204                         rrdcreate_config.stepsize,
1205                         rrdcreate_config.heartbeat,
1206                         rrdcreate_config.rrarows,
1207                         rrdcreate_config.xff);
1208
1209         return (0);
1210 } /* int rrd_init */
1211
1212 void module_register (void)
1213 {
1214         plugin_register_config ("rrdtool", rrd_config,
1215                         config_keys, config_keys_num);
1216         plugin_register_init ("rrdtool", rrd_init);
1217         plugin_register_write ("rrdtool", rrd_write, /* user_data = */ NULL);
1218         plugin_register_flush ("rrdtool", rrd_flush, /* user_data = */ NULL);
1219         plugin_register_shutdown ("rrdtool", rrd_shutdown);
1220 }