src/rrd_daemon.c: Tell the connected party about invalid commands.
[rrdtool.git] / src / rrd_daemon.c
1 /**
2  * RRDTool - src/rrd_daemon.c
3  * Copyright (C) 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 /*
23  * First tell the compiler to stick to the C99 and POSIX standards as close as
24  * possible.
25  */
26 #ifndef __STRICT_ANSI__ /* {{{ */
27 # define __STRICT_ANSI__
28 #endif
29
30 #ifndef _ISOC99_SOURCE
31 # define _ISOC99_SOURCE
32 #endif
33
34 #ifdef _POSIX_C_SOURCE
35 # undef _POSIX_C_SOURCE
36 #endif
37 #define _POSIX_C_SOURCE 200112L
38
39 /* Single UNIX needed for strdup. */
40 #ifdef _XOPEN_SOURCE
41 # undef _XOPEN_SOURCE
42 #endif
43 #define _XOPEN_SOURCE 500
44
45 #ifndef _REENTRANT
46 # define _REENTRANT
47 #endif
48
49 #ifndef _THREAD_SAFE
50 # define _THREAD_SAFE
51 #endif
52
53 #ifdef _GNU_SOURCE
54 # undef _GNU_SOURCE
55 #endif
56 /* }}} */
57
58 /*
59  * Now for some includes..
60  */
61 #include "rrd.h" /* {{{ */
62 #include "rrd_client.h"
63
64 #include <stdlib.h>
65 #include <stdint.h>
66 #include <stdio.h>
67 #include <unistd.h>
68 #include <string.h>
69 #include <strings.h>
70 #include <stdint.h>
71 #include <inttypes.h>
72
73 #include <sys/types.h>
74 #include <sys/stat.h>
75 #include <fcntl.h>
76 #include <signal.h>
77 #include <sys/socket.h>
78 #include <sys/un.h>
79 #include <netdb.h>
80 #include <poll.h>
81 #include <syslog.h>
82 #include <pthread.h>
83 #include <errno.h>
84 #include <assert.h>
85 #include <sys/time.h>
86 #include <time.h>
87
88 #include <glib-2.0/glib.h>
89 /* }}} */
90
91 #define RRDD_LOG(severity, ...) syslog ((severity), __VA_ARGS__)
92
93 #ifndef __GNUC__
94 # define __attribute__(x) /**/
95 #endif
96
97 /*
98  * Types
99  */
100 struct listen_socket_s
101 {
102   int fd;
103   char path[PATH_MAX + 1];
104 };
105 typedef struct listen_socket_s listen_socket_t;
106
107 struct cache_item_s;
108 typedef struct cache_item_s cache_item_t;
109 struct cache_item_s
110 {
111   char *file;
112   char **values;
113   int values_num;
114   time_t last_flush_time;
115 #define CI_FLAGS_IN_TREE  0x01
116 #define CI_FLAGS_IN_QUEUE 0x02
117   int flags;
118
119   cache_item_t *next;
120 };
121
122 struct callback_flush_data_s
123 {
124   time_t now;
125   char **keys;
126   size_t keys_num;
127 };
128 typedef struct callback_flush_data_s callback_flush_data_t;
129
130 enum queue_side_e
131 {
132   HEAD,
133   TAIL
134 };
135 typedef enum queue_side_e queue_side_t;
136
137 /*
138  * Variables
139  */
140 static listen_socket_t *listen_fds = NULL;
141 static size_t listen_fds_num = 0;
142
143 static int do_shutdown = 0;
144
145 static pthread_t queue_thread;
146
147 static pthread_t *connetion_threads = NULL;
148 static pthread_mutex_t connetion_threads_lock = PTHREAD_MUTEX_INITIALIZER;
149 static int connetion_threads_num = 0;
150
151 /* Cache stuff */
152 static GTree          *cache_tree = NULL;
153 static cache_item_t   *cache_queue_head = NULL;
154 static cache_item_t   *cache_queue_tail = NULL;
155 static pthread_mutex_t cache_lock = PTHREAD_MUTEX_INITIALIZER;
156 static pthread_cond_t  cache_cond = PTHREAD_COND_INITIALIZER;
157
158 static pthread_cond_t  flush_cond = PTHREAD_COND_INITIALIZER;
159
160 static int config_write_interval = 300;
161 static int config_flush_interval = 3600;
162 static char *config_pid_file = NULL;
163 static char *config_base_dir = NULL;
164
165 static char **config_listen_address_list = NULL;
166 static int config_listen_address_list_len = 0;
167
168 static uint64_t stats_queue_length = 0;
169 static uint64_t stats_updates_total = 0;
170 static uint64_t stats_values_total = 0;
171 static pthread_mutex_t stats_lock = PTHREAD_MUTEX_INITIALIZER;
172
173 /* 
174  * Functions
175  */
176 static void sig_int_handler (int s __attribute__((unused))) /* {{{ */
177 {
178   do_shutdown++;
179 } /* }}} void sig_int_handler */
180
181 static void sig_term_handler (int s __attribute__((unused))) /* {{{ */
182 {
183   do_shutdown++;
184 } /* }}} void sig_term_handler */
185
186 static int write_pidfile (void) /* {{{ */
187 {
188   pid_t pid;
189   char *file;
190   FILE *fh;
191
192   pid = getpid ();
193   
194   file = (config_pid_file != NULL)
195     ? config_pid_file
196     : LOCALSTATEDIR "/run/rrdcached.pid";
197
198   fh = fopen (file, "w");
199   if (fh == NULL)
200   {
201     RRDD_LOG (LOG_ERR, "write_pidfile: Opening `%s' failed.", file);
202     return (-1);
203   }
204
205   fprintf (fh, "%i\n", (int) pid);
206   fclose (fh);
207
208   return (0);
209 } /* }}} int write_pidfile */
210
211 static int remove_pidfile (void) /* {{{ */
212 {
213   char *file;
214   int status;
215
216   file = (config_pid_file != NULL)
217     ? config_pid_file
218     : LOCALSTATEDIR "/run/rrdcached.pid";
219
220   status = unlink (file);
221   if (status == 0)
222     return (0);
223   return (errno);
224 } /* }}} int remove_pidfile */
225
226 /*
227  * enqueue_cache_item:
228  * `cache_lock' must be acquired before calling this function!
229  */
230 static int enqueue_cache_item (cache_item_t *ci, /* {{{ */
231     queue_side_t side)
232 {
233   int did_insert = 0;
234
235   RRDD_LOG (LOG_DEBUG, "enqueue_cache_item: Adding %s to the update queue.",
236       ci->file);
237
238   if (ci == NULL)
239     return (-1);
240
241   if (ci->values_num == 0)
242     return (0);
243
244   if (side == HEAD)
245   {
246     if ((ci->flags & CI_FLAGS_IN_QUEUE) == 0)
247     {
248       assert (ci->next == NULL);
249       ci->next = cache_queue_head;
250       cache_queue_head = ci;
251
252       if (cache_queue_tail == NULL)
253         cache_queue_tail = cache_queue_head;
254
255       did_insert = 1;
256     }
257     else if (cache_queue_head == ci)
258     {
259       /* do nothing */
260     }
261     else /* enqueued, but not first entry */
262     {
263       cache_item_t *prev;
264
265       /* find previous entry */
266       for (prev = cache_queue_head; prev != NULL; prev = prev->next)
267         if (prev->next == ci)
268           break;
269       assert (prev != NULL);
270
271       /* move to the front */
272       prev->next = ci->next;
273       ci->next = cache_queue_head;
274       cache_queue_head = ci;
275
276       /* check if we need to adapt the tail */
277       if (cache_queue_tail == ci)
278         cache_queue_tail = prev;
279     }
280   }
281   else /* (side == TAIL) */
282   {
283     /* We don't move values back in the list.. */
284     if ((ci->flags & CI_FLAGS_IN_QUEUE) != 0)
285       return (0);
286
287     assert (ci->next == NULL);
288
289     if (cache_queue_tail == NULL)
290       cache_queue_head = ci;
291     else
292       cache_queue_tail->next = ci;
293     cache_queue_tail = ci;
294
295     did_insert = 1;
296   }
297
298   ci->flags |= CI_FLAGS_IN_QUEUE;
299
300   if (did_insert)
301   {
302     pthread_mutex_lock (&stats_lock);
303     stats_queue_length++;
304     pthread_mutex_unlock (&stats_lock);
305   }
306
307   return (0);
308 } /* }}} int enqueue_cache_item */
309
310 /*
311  * tree_callback_flush:
312  * Called via `g_tree_foreach' in `queue_thread_main'. `cache_lock' is held
313  * while this is in progress.
314  */
315 static gboolean tree_callback_flush (gpointer key, gpointer value, /* {{{ */
316     gpointer data)
317 {
318   cache_item_t *ci;
319   callback_flush_data_t *cfd;
320
321   ci = (cache_item_t *) value;
322   cfd = (callback_flush_data_t *) data;
323
324   if (((cfd->now - ci->last_flush_time) >= config_write_interval)
325       && ((ci->flags & CI_FLAGS_IN_QUEUE) == 0)
326       && (ci->values_num > 0))
327   {
328     enqueue_cache_item (ci, TAIL);
329   }
330   else if (((cfd->now - ci->last_flush_time) >= config_flush_interval)
331       && ((ci->flags & CI_FLAGS_IN_QUEUE) == 0)
332       && (ci->values_num <= 0))
333   {
334     char **temp;
335
336     temp = (char **) realloc (cfd->keys,
337         sizeof (char *) * (cfd->keys_num + 1));
338     if (temp == NULL)
339     {
340       RRDD_LOG (LOG_ERR, "tree_callback_flush: realloc failed.");
341       return (FALSE);
342     }
343     cfd->keys = temp;
344     /* Make really sure this points to the _same_ place */
345     assert ((char *) key == ci->file);
346     cfd->keys[cfd->keys_num] = (char *) key;
347     cfd->keys_num++;
348   }
349
350   return (FALSE);
351 } /* }}} gboolean tree_callback_flush */
352
353 static void *queue_thread_main (void *args __attribute__((unused))) /* {{{ */
354 {
355   struct timeval now;
356   struct timespec next_flush;
357
358   gettimeofday (&now, NULL);
359   next_flush.tv_sec = now.tv_sec + config_flush_interval;
360   next_flush.tv_nsec = 1000 * now.tv_usec;
361
362   pthread_mutex_lock (&cache_lock);
363   while ((do_shutdown == 0) || (cache_queue_head != NULL))
364   {
365     cache_item_t *ci;
366     char *file;
367     char **values;
368     int values_num;
369     int status;
370     int i;
371
372     /* First, check if it's time to do the cache flush. */
373     gettimeofday (&now, NULL);
374     if ((now.tv_sec > next_flush.tv_sec)
375         || ((now.tv_sec == next_flush.tv_sec)
376           && ((1000 * now.tv_usec) > next_flush.tv_nsec)))
377     {
378       callback_flush_data_t cfd;
379       size_t k;
380
381       memset (&cfd, 0, sizeof (cfd));
382       /* Pass the current time as user data so that we don't need to call
383        * `time' for each node. */
384       cfd.now = time (NULL);
385       cfd.keys = NULL;
386       cfd.keys_num = 0;
387
388       /* `tree_callback_flush' will return the keys of all values that haven't
389        * been touched in the last `config_flush_interval' seconds in `cfd'.
390        * The char*'s in this array point to the same memory as ci->file, so we
391        * don't need to free them separately. */
392       g_tree_foreach (cache_tree, tree_callback_flush, (gpointer) &cfd);
393
394       for (k = 0; k < cfd.keys_num; k++)
395       {
396         /* This must not fail. */
397         ci = (cache_item_t *) g_tree_lookup (cache_tree, cfd.keys[k]);
398         assert (ci != NULL);
399
400         /* If we end up here with values available, something's seriously
401          * messed up. */
402         assert (ci->values_num == 0);
403
404         /* Remove the node from the tree */
405         g_tree_remove (cache_tree, cfd.keys[k]);
406         cfd.keys[k] = NULL;
407
408         /* Now free and clean up `ci'. */
409         free (ci->file);
410         ci->file = NULL;
411         free (ci);
412         ci = NULL;
413       } /* for (k = 0; k < cfd.keys_num; k++) */
414
415       if (cfd.keys != NULL)
416       {
417         free (cfd.keys);
418         cfd.keys = NULL;
419       }
420
421       /* Determine the time of the next cache flush. */
422       while (next_flush.tv_sec < now.tv_sec)
423         next_flush.tv_sec += config_flush_interval;
424     }
425
426     /* Now, check if there's something to store away. If not, wait until
427      * something comes in or it's time to do the cache flush. */
428     if (cache_queue_head == NULL)
429     {
430       status = pthread_cond_timedwait (&cache_cond, &cache_lock, &next_flush);
431       if ((status != 0) && (status != ETIMEDOUT))
432       {
433         RRDD_LOG (LOG_ERR, "queue_thread_main: "
434             "pthread_cond_timedwait returned %i.", status);
435       }
436     }
437
438     /* Check if a value has arrived. This may be NULL if we timed out or there
439      * was an interrupt such as a signal. */
440     if (cache_queue_head == NULL)
441       continue;
442
443     ci = cache_queue_head;
444
445     /* copy the relevant parts */
446     file = strdup (ci->file);
447     if (file == NULL)
448     {
449       RRDD_LOG (LOG_ERR, "queue_thread_main: strdup failed.");
450       continue;
451     }
452
453     values = ci->values;
454     values_num = ci->values_num;
455
456     ci->values = NULL;
457     ci->values_num = 0;
458
459     ci->last_flush_time = time (NULL);
460     ci->flags &= ~(CI_FLAGS_IN_QUEUE);
461
462     cache_queue_head = ci->next;
463     if (cache_queue_head == NULL)
464       cache_queue_tail = NULL;
465     ci->next = NULL;
466
467     pthread_mutex_lock (&stats_lock);
468     assert (stats_queue_length > 0);
469     stats_queue_length--;
470     pthread_mutex_unlock (&stats_lock);
471
472     pthread_mutex_unlock (&cache_lock);
473
474     RRDD_LOG (LOG_DEBUG, "queue_thread_main: rrd_update (%s, %i, %p)",
475         file, values_num, (void *) values);
476
477     status = rrd_update_r (file, NULL, values_num, (void *) values);
478     if (status != 0)
479     {
480       RRDD_LOG (LOG_ERR, "queue_thread_main: "
481           "rrd_update_r failed with status %i.",
482           status);
483     }
484
485     free (file);
486     for (i = 0; i < values_num; i++)
487       free (values[i]);
488
489     pthread_mutex_lock (&stats_lock);
490     stats_updates_total++;
491     stats_values_total += values_num;
492     pthread_mutex_unlock (&stats_lock);
493
494     pthread_mutex_lock (&cache_lock);
495     pthread_cond_broadcast (&flush_cond);
496   } /* while (do_shutdown == 0) */
497   pthread_mutex_unlock (&cache_lock);
498
499   RRDD_LOG (LOG_DEBUG, "queue_thread_main: Exiting.");
500
501   return (NULL);
502 } /* }}} void *queue_thread_main */
503
504 static int buffer_get_field (char **buffer_ret, /* {{{ */
505     size_t *buffer_size_ret, char **field_ret)
506 {
507   char *buffer;
508   size_t buffer_pos;
509   size_t buffer_size;
510   char *field;
511   size_t field_size;
512   int status;
513
514   buffer = *buffer_ret;
515   buffer_pos = 0;
516   buffer_size = *buffer_size_ret;
517   field = *buffer_ret;
518   field_size = 0;
519
520   if (buffer_size <= 0)
521     return (-1);
522
523   /* This is ensured by `handle_request'. */
524   assert (buffer[buffer_size - 1] == ' ');
525
526   status = -1;
527   while (buffer_pos < buffer_size)
528   {
529     /* Check for end-of-field or end-of-buffer */
530     if (buffer[buffer_pos] == ' ')
531     {
532       field[field_size] = 0;
533       field_size++;
534       buffer_pos++;
535       status = 0;
536       break;
537     }
538     /* Handle escaped characters. */
539     else if (buffer[buffer_pos] == '\\')
540     {
541       if (buffer_pos >= (buffer_size - 1))
542         break;
543       buffer_pos++;
544       field[field_size] = buffer[buffer_pos];
545       field_size++;
546       buffer_pos++;
547     }
548     /* Normal operation */ 
549     else
550     {
551       field[field_size] = buffer[buffer_pos];
552       field_size++;
553       buffer_pos++;
554     }
555   } /* while (buffer_pos < buffer_size) */
556
557   if (status != 0)
558     return (status);
559
560   *buffer_ret = buffer + buffer_pos;
561   *buffer_size_ret = buffer_size - buffer_pos;
562   *field_ret = field;
563
564   return (0);
565 } /* }}} int buffer_get_field */
566
567 static int flush_file (const char *filename) /* {{{ */
568 {
569   cache_item_t *ci;
570
571   pthread_mutex_lock (&cache_lock);
572
573   ci = (cache_item_t *) g_tree_lookup (cache_tree, filename);
574   if (ci == NULL)
575   {
576     pthread_mutex_unlock (&cache_lock);
577     return (ENOENT);
578   }
579
580   /* Enqueue at head */
581   enqueue_cache_item (ci, HEAD);
582   pthread_cond_signal (&cache_cond);
583
584   while ((ci->flags & CI_FLAGS_IN_QUEUE) != 0)
585   {
586     ci = NULL;
587
588     pthread_cond_wait (&flush_cond, &cache_lock);
589
590     ci = g_tree_lookup (cache_tree, filename);
591     if (ci == NULL)
592     {
593       RRDD_LOG (LOG_ERR, "flush_file: Tree node went away "
594           "while waiting for flush.");
595       pthread_mutex_unlock (&cache_lock);
596       return (-1);
597     }
598   }
599
600   pthread_mutex_unlock (&cache_lock);
601   return (0);
602 } /* }}} int flush_file */
603
604 static int handle_request_stats (int fd, /* {{{ */
605     char *buffer __attribute__((unused)),
606     size_t buffer_size __attribute__((unused)))
607 {
608   int status;
609   char outbuf[4096];
610
611   uint64_t copy_queue_length;
612   uint64_t copy_updates_total;
613   uint64_t copy_values_total;
614
615   uint64_t tree_nodes;
616   uint64_t tree_depth;
617
618   pthread_mutex_lock (&stats_lock);
619   copy_queue_length  = stats_queue_length;
620   copy_updates_total = stats_updates_total;
621   copy_values_total  = stats_values_total;
622   pthread_mutex_unlock (&stats_lock);
623
624   pthread_mutex_lock (&cache_lock);
625   tree_nodes = (uint64_t) g_tree_nnodes (cache_tree);
626   tree_depth = (uint64_t) g_tree_height (cache_tree);
627   pthread_mutex_unlock (&cache_lock);
628
629 #define RRDD_STATS_SEND \
630   outbuf[sizeof (outbuf) - 1] = 0; \
631   status = write (fd, outbuf, strlen (outbuf)); \
632   if (status < 0) \
633   { \
634     status = errno; \
635     RRDD_LOG (LOG_INFO, "handle_request_stats: write(2) returned an error."); \
636     return (status); \
637   }
638
639   strncpy (outbuf, "5 Statistics follow\n", sizeof (outbuf));
640   RRDD_STATS_SEND;
641
642   snprintf (outbuf, sizeof (outbuf),
643       "QueueLength: %"PRIu64"\n", copy_queue_length);
644   RRDD_STATS_SEND;
645
646   snprintf (outbuf, sizeof (outbuf),
647       "UpdatesWritten: %"PRIu64"\n", copy_updates_total);
648   RRDD_STATS_SEND;
649
650   snprintf (outbuf, sizeof (outbuf),
651       "ValuesWritten: %"PRIu64"\n", copy_values_total);
652   RRDD_STATS_SEND;
653
654   snprintf (outbuf, sizeof (outbuf),
655       "TreeNodesNumber: %"PRIu64"\n", tree_nodes);
656   RRDD_STATS_SEND;
657
658   snprintf (outbuf, sizeof (outbuf),
659       "TreeDepth: %"PRIu64"\n", tree_depth);
660   RRDD_STATS_SEND;
661
662   return (0);
663 } /* }}} int handle_request_stats */
664
665 static int handle_request_flush (int fd, /* {{{ */
666     char *buffer, size_t buffer_size)
667 {
668   char *file;
669   int status;
670   char result[4096];
671
672   status = buffer_get_field (&buffer, &buffer_size, &file);
673   if (status != 0)
674   {
675     strncpy (result, "-1 Usage: flush <filename>\n", sizeof (result));
676   }
677   else
678   {
679     status = flush_file (file);
680     if (status == 0)
681       snprintf (result, sizeof (result), "0 Successfully flushed %s.\n", file);
682     else if (status == ENOENT)
683       snprintf (result, sizeof (result), "-1 No such file: %s.\n", file);
684     else if (status < 0)
685       strncpy (result, "-1 Internal error.\n", sizeof (result));
686     else
687       snprintf (result, sizeof (result), "-1 Failed with status %i.\n", status);
688   }
689   result[sizeof (result) - 1] = 0;
690
691   status = write (fd, result, strlen (result));
692   if (status < 0)
693   {
694     status = errno;
695     RRDD_LOG (LOG_INFO, "handle_request_flush: write(2) returned an error.");
696     return (status);
697   }
698
699   return (0);
700 } /* }}} int handle_request_flush */
701
702 static int handle_request_update (int fd, /* {{{ */
703     char *buffer, size_t buffer_size)
704 {
705   char *file;
706   int values_num = 0;
707   int status;
708
709   time_t now;
710
711   cache_item_t *ci;
712   char answer[4096];
713
714   now = time (NULL);
715
716   status = buffer_get_field (&buffer, &buffer_size, &file);
717   if (status != 0)
718   {
719     RRDD_LOG (LOG_INFO, "handle_request_update: Cannot get file name.");
720     return (-1);
721   }
722
723   pthread_mutex_lock (&cache_lock);
724
725   ci = g_tree_lookup (cache_tree, file);
726   if (ci == NULL) /* {{{ */
727   {
728     ci = (cache_item_t *) malloc (sizeof (cache_item_t));
729     if (ci == NULL)
730     {
731       pthread_mutex_unlock (&cache_lock);
732       RRDD_LOG (LOG_ERR, "handle_request_update: malloc failed.");
733       return (-1);
734     }
735     memset (ci, 0, sizeof (cache_item_t));
736
737     ci->file = strdup (file);
738     if (ci->file == NULL)
739     {
740       pthread_mutex_unlock (&cache_lock);
741       RRDD_LOG (LOG_ERR, "handle_request_update: malloc failed.");
742       free (ci);
743       return (-1);
744     }
745
746     ci->values = NULL;
747     ci->values_num = 0;
748     ci->last_flush_time = now;
749     ci->flags = CI_FLAGS_IN_TREE;
750
751     g_tree_insert (cache_tree, (void *) ci->file, (void *) ci);
752
753     RRDD_LOG (LOG_DEBUG, "handle_request_update: Created new tree node %s.",
754         ci->file);
755   } /* }}} */
756   assert (ci != NULL);
757
758   while (buffer_size > 0)
759   {
760     char **temp;
761     char *value;
762
763     status = buffer_get_field (&buffer, &buffer_size, &value);
764     if (status != 0)
765     {
766       RRDD_LOG (LOG_INFO, "handle_request_update: Error reading field.");
767       break;
768     }
769
770     temp = (char **) realloc (ci->values,
771         sizeof (char *) * (ci->values_num + 1));
772     if (temp == NULL)
773     {
774       RRDD_LOG (LOG_ERR, "handle_request_update: realloc failed.");
775       continue;
776     }
777     ci->values = temp;
778
779     ci->values[ci->values_num] = strdup (value);
780     if (ci->values[ci->values_num] == NULL)
781     {
782       RRDD_LOG (LOG_ERR, "handle_request_update: strdup failed.");
783       continue;
784     }
785     ci->values_num++;
786
787     values_num++;
788   }
789
790   if (((now - ci->last_flush_time) >= config_write_interval)
791       && ((ci->flags & CI_FLAGS_IN_QUEUE) == 0)
792       && (ci->values_num > 0))
793   {
794     enqueue_cache_item (ci, TAIL);
795     pthread_cond_signal (&cache_cond);
796   }
797
798   pthread_mutex_unlock (&cache_lock);
799
800   snprintf (answer, sizeof (answer), "0 Enqueued %i value(s)\n", values_num);
801   answer[sizeof (answer) - 1] = 0;
802
803   status = write (fd, answer, strlen (answer));
804   if (status < 0)
805   {
806     status = errno;
807     RRDD_LOG (LOG_INFO, "handle_request_update: write(2) returned an error.");
808     return (status);
809   }
810
811   return (0);
812 } /* }}} int handle_request_update */
813
814 static int handle_request (int fd) /* {{{ */
815 {
816   char buffer[4096];
817   size_t buffer_size;
818   char *buffer_ptr;
819   char *command;
820   int status;
821
822   status = read (fd, buffer, sizeof (buffer));
823   if (status == 0)
824   {
825     return (1);
826   }
827   else if (status < 0)
828   {
829     RRDD_LOG (LOG_ERR, "handle_request: read(2) failed.");
830     return (-1);
831   }
832   buffer_size = status;
833   assert (((size_t) buffer_size) <= sizeof (buffer));
834
835   if (buffer[buffer_size - 1] != '\n')
836   {
837     RRDD_LOG (LOG_INFO, "handle_request: malformed request.");
838     return (-1);
839   }
840
841   /* Accept Windows style line endings, too */
842   if ((buffer_size > 2) && (buffer[buffer_size - 2] == '\r'))
843   {
844     buffer_size--;
845     buffer[buffer_size - 1] = '\n';
846   }
847
848   /* Place the normal field separator at the end to simplify
849    * `buffer_get_field's work. */
850   buffer[buffer_size - 1] = ' ';
851
852   buffer_ptr = buffer;
853   command = NULL;
854   status = buffer_get_field (&buffer_ptr, &buffer_size, &command);
855   if (status != 0)
856   {
857     RRDD_LOG (LOG_INFO, "handle_request: Unable parse command.");
858     return (-1);
859   }
860
861   if (strcasecmp (command, "update") == 0)
862   {
863     return (handle_request_update (fd, buffer_ptr, buffer_size));
864   }
865   else if (strcasecmp (command, "flush") == 0)
866   {
867     return (handle_request_flush (fd, buffer_ptr, buffer_size));
868   }
869   else if (strcasecmp (command, "stats") == 0)
870   {
871     return (handle_request_stats (fd, buffer_ptr, buffer_size));
872   }
873   else
874   {
875     char result[4096];
876
877     snprintf (result, sizeof (result), "-1 Unknown command: %s\n", command);
878     result[sizeof (result) - 1] = 0;
879
880     status = write (fd, result, strlen (result));
881     if (status < 0)
882     {
883       RRDD_LOG (LOG_ERR, "handle_request: write(2) failed.");
884       return (-1);
885     }
886   }
887
888   return (0);
889 } /* }}} int handle_request */
890
891 static void *connection_thread_main (void *args /* {{{ */
892     __attribute__((unused)))
893 {
894   pthread_t self;
895   int i;
896   int fd;
897   
898   fd = *((int *) args);
899
900   pthread_mutex_lock (&connetion_threads_lock);
901   {
902     pthread_t *temp;
903
904     temp = (pthread_t *) realloc (connetion_threads,
905         sizeof (pthread_t) * (connetion_threads_num + 1));
906     if (temp == NULL)
907     {
908       RRDD_LOG (LOG_ERR, "connection_thread_main: realloc failed.");
909     }
910     else
911     {
912       connetion_threads = temp;
913       connetion_threads[connetion_threads_num] = pthread_self ();
914       connetion_threads_num++;
915     }
916   }
917   pthread_mutex_unlock (&connetion_threads_lock);
918
919   while (do_shutdown == 0)
920   {
921     struct pollfd pollfd;
922     int status;
923
924     pollfd.fd = fd;
925     pollfd.events = POLLIN | POLLPRI;
926     pollfd.revents = 0;
927
928     status = poll (&pollfd, 1, /* timeout = */ 500);
929     if (status == 0) /* timeout */
930       continue;
931     else if (status < 0) /* error */
932     {
933       status = errno;
934       if (status == EINTR)
935         continue;
936       RRDD_LOG (LOG_ERR, "connection_thread_main: poll(2) failed.");
937       continue;
938     }
939
940     if ((pollfd.revents & POLLHUP) != 0) /* normal shutdown */
941     {
942       close (fd);
943       break;
944     }
945     else if ((pollfd.revents & (POLLIN | POLLPRI)) == 0)
946     {
947       RRDD_LOG (LOG_WARNING, "connection_thread_main: "
948           "poll(2) returned something unexpected: %#04hx",
949           pollfd.revents);
950       close (fd);
951       break;
952     }
953
954     status = handle_request (fd);
955     if (status != 0)
956     {
957       close (fd);
958       break;
959     }
960   }
961
962   self = pthread_self ();
963   /* Remove this thread from the connection threads list */
964   pthread_mutex_lock (&connetion_threads_lock);
965   /* Find out own index in the array */
966   for (i = 0; i < connetion_threads_num; i++)
967     if (pthread_equal (connetion_threads[i], self) != 0)
968       break;
969   assert (i < connetion_threads_num);
970
971   /* Move the trailing threads forward. */
972   if (i < (connetion_threads_num - 1))
973   {
974     memmove (connetion_threads + i,
975         connetion_threads + i + 1,
976         sizeof (pthread_t) * (connetion_threads_num - i - 1));
977   }
978
979   connetion_threads_num--;
980   pthread_mutex_unlock (&connetion_threads_lock);
981
982   free (args);
983   return (NULL);
984 } /* }}} void *connection_thread_main */
985
986 static int open_listen_socket_unix (const char *path) /* {{{ */
987 {
988   int fd;
989   struct sockaddr_un sa;
990   listen_socket_t *temp;
991   int status;
992
993   temp = (listen_socket_t *) realloc (listen_fds,
994       sizeof (listen_fds[0]) * (listen_fds_num + 1));
995   if (temp == NULL)
996   {
997     RRDD_LOG (LOG_ERR, "open_listen_socket_unix: realloc failed.");
998     return (-1);
999   }
1000   listen_fds = temp;
1001   memset (listen_fds + listen_fds_num, 0, sizeof (listen_fds[0]));
1002
1003   fd = socket (PF_UNIX, SOCK_STREAM, /* protocol = */ 0);
1004   if (fd < 0)
1005   {
1006     RRDD_LOG (LOG_ERR, "open_listen_socket_unix: socket(2) failed.");
1007     return (-1);
1008   }
1009
1010   memset (&sa, 0, sizeof (sa));
1011   sa.sun_family = AF_UNIX;
1012   strncpy (sa.sun_path, path, sizeof (sa.sun_path) - 1);
1013
1014   status = bind (fd, (struct sockaddr *) &sa, sizeof (sa));
1015   if (status != 0)
1016   {
1017     RRDD_LOG (LOG_ERR, "open_listen_socket_unix: bind(2) failed.");
1018     close (fd);
1019     unlink (path);
1020     return (-1);
1021   }
1022
1023   status = listen (fd, /* backlog = */ 10);
1024   if (status != 0)
1025   {
1026     RRDD_LOG (LOG_ERR, "open_listen_socket_unix: listen(2) failed.");
1027     close (fd);
1028     unlink (path);
1029     return (-1);
1030   }
1031   
1032   listen_fds[listen_fds_num].fd = fd;
1033   snprintf (listen_fds[listen_fds_num].path,
1034       sizeof (listen_fds[listen_fds_num].path) - 1,
1035       "unix:%s", path);
1036   listen_fds_num++;
1037
1038   return (0);
1039 } /* }}} int open_listen_socket_unix */
1040
1041 static int open_listen_socket (const char *addr) /* {{{ */
1042 {
1043   struct addrinfo ai_hints;
1044   struct addrinfo *ai_res;
1045   struct addrinfo *ai_ptr;
1046   int status;
1047
1048   assert (addr != NULL);
1049
1050   if (strncmp ("unix:", addr, strlen ("unix:")) == 0)
1051     return (open_listen_socket_unix (addr + strlen ("unix:")));
1052   else if (addr[0] == '/')
1053     return (open_listen_socket_unix (addr));
1054
1055   memset (&ai_hints, 0, sizeof (ai_hints));
1056   ai_hints.ai_flags = 0;
1057 #ifdef AI_ADDRCONFIG
1058   ai_hints.ai_flags |= AI_ADDRCONFIG;
1059 #endif
1060   ai_hints.ai_family = AF_UNSPEC;
1061   ai_hints.ai_socktype = SOCK_STREAM;
1062
1063   ai_res = NULL;
1064   status = getaddrinfo (addr, RRDCACHED_DEFAULT_PORT, &ai_hints, &ai_res);
1065   if (status != 0)
1066   {
1067     RRDD_LOG (LOG_ERR, "open_listen_socket: getaddrinfo(%s) failed: "
1068         "%s", addr, gai_strerror (status));
1069     return (-1);
1070   }
1071
1072   for (ai_ptr = ai_res; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next)
1073   {
1074     int fd;
1075     listen_socket_t *temp;
1076
1077     temp = (listen_socket_t *) realloc (listen_fds,
1078         sizeof (listen_fds[0]) * (listen_fds_num + 1));
1079     if (temp == NULL)
1080     {
1081       RRDD_LOG (LOG_ERR, "open_listen_socket: realloc failed.");
1082       continue;
1083     }
1084     listen_fds = temp;
1085     memset (listen_fds + listen_fds_num, 0, sizeof (listen_fds[0]));
1086
1087     fd = socket (ai_ptr->ai_family, ai_ptr->ai_socktype, ai_ptr->ai_protocol);
1088     if (fd < 0)
1089     {
1090       RRDD_LOG (LOG_ERR, "open_listen_socket: socket(2) failed.");
1091       continue;
1092     }
1093
1094     status = bind (fd, ai_ptr->ai_addr, ai_ptr->ai_addrlen);
1095     if (status != 0)
1096     {
1097       RRDD_LOG (LOG_ERR, "open_listen_socket: bind(2) failed.");
1098       close (fd);
1099       continue;
1100     }
1101
1102     status = listen (fd, /* backlog = */ 10);
1103     if (status != 0)
1104     {
1105       RRDD_LOG (LOG_ERR, "open_listen_socket: listen(2) failed.");
1106       close (fd);
1107       return (-1);
1108     }
1109
1110     listen_fds[listen_fds_num].fd = fd;
1111     strncpy (listen_fds[listen_fds_num].path, addr,
1112         sizeof (listen_fds[listen_fds_num].path) - 1);
1113     listen_fds_num++;
1114   } /* for (ai_ptr) */
1115
1116   return (0);
1117 } /* }}} int open_listen_socket */
1118
1119 static int close_listen_sockets (void) /* {{{ */
1120 {
1121   size_t i;
1122
1123   for (i = 0; i < listen_fds_num; i++)
1124   {
1125     close (listen_fds[i].fd);
1126     if (strncmp ("unix:", listen_fds[i].path, strlen ("unix:")) == 0)
1127       unlink (listen_fds[i].path + strlen ("unix:"));
1128   }
1129
1130   free (listen_fds);
1131   listen_fds = NULL;
1132   listen_fds_num = 0;
1133
1134   return (0);
1135 } /* }}} int close_listen_sockets */
1136
1137 static void *listen_thread_main (void *args __attribute__((unused))) /* {{{ */
1138 {
1139   struct pollfd *pollfds;
1140   int pollfds_num;
1141   int status;
1142   int i;
1143
1144   for (i = 0; i < config_listen_address_list_len; i++)
1145   {
1146     RRDD_LOG (LOG_DEBUG, "listen_thread_main: config_listen_address_list[%i] "
1147         "= %s", i, config_listen_address_list[i]);
1148     open_listen_socket (config_listen_address_list[i]);
1149   }
1150
1151   if (config_listen_address_list_len < 1)
1152     open_listen_socket (RRDCACHED_DEFAULT_ADDRESS);
1153
1154   if (listen_fds_num < 1)
1155   {
1156     RRDD_LOG (LOG_ERR, "listen_thread_main: No listen sockets "
1157         "could be opened. Sorry.");
1158     return (NULL);
1159   }
1160
1161   pollfds_num = listen_fds_num;
1162   pollfds = (struct pollfd *) malloc (sizeof (*pollfds) * pollfds_num);
1163   if (pollfds == NULL)
1164   {
1165     RRDD_LOG (LOG_ERR, "listen_thread_main: malloc failed.");
1166     return (NULL);
1167   }
1168   memset (pollfds, 0, sizeof (*pollfds) * pollfds_num);
1169
1170   while (do_shutdown == 0)
1171   {
1172     assert (pollfds_num == ((int) listen_fds_num));
1173     for (i = 0; i < pollfds_num; i++)
1174     {
1175       pollfds[i].fd = listen_fds[i].fd;
1176       pollfds[i].events = POLLIN | POLLPRI;
1177       pollfds[i].revents = 0;
1178     }
1179
1180     status = poll (pollfds, pollfds_num, /* timeout = */ -1);
1181     if (status < 1)
1182     {
1183       status = errno;
1184       if (status != EINTR)
1185       {
1186         RRDD_LOG (LOG_ERR, "listen_thread_main: poll(2) failed.");
1187       }
1188       continue;
1189     }
1190
1191     for (i = 0; i < pollfds_num; i++)
1192     {
1193       int *client_sd;
1194       struct sockaddr_storage client_sa;
1195       socklen_t client_sa_size;
1196       pthread_t tid;
1197
1198       if (pollfds[i].revents == 0)
1199         continue;
1200
1201       if ((pollfds[i].revents & (POLLIN | POLLPRI)) == 0)
1202       {
1203         RRDD_LOG (LOG_ERR, "listen_thread_main: "
1204             "poll(2) returned something unexpected for listen FD #%i.",
1205             pollfds[i].fd);
1206         continue;
1207       }
1208
1209       client_sd = (int *) malloc (sizeof (int));
1210       if (client_sd == NULL)
1211       {
1212         RRDD_LOG (LOG_ERR, "listen_thread_main: malloc failed.");
1213         continue;
1214       }
1215
1216       client_sa_size = sizeof (client_sa);
1217       *client_sd = accept (pollfds[i].fd,
1218           (struct sockaddr *) &client_sa, &client_sa_size);
1219       if (*client_sd < 0)
1220       {
1221         RRDD_LOG (LOG_ERR, "listen_thread_main: accept(2) failed.");
1222         continue;
1223       }
1224
1225       status = pthread_create (&tid, /* attr = */ NULL, connection_thread_main,
1226           /* args = */ (void *) client_sd);
1227       if (status != 0)
1228       {
1229         RRDD_LOG (LOG_ERR, "listen_thread_main: pthread_create failed.");
1230         close (*client_sd);
1231         free (client_sd);
1232         continue;
1233       }
1234     } /* for (pollfds_num) */
1235   } /* while (do_shutdown == 0) */
1236
1237   close_listen_sockets ();
1238
1239   pthread_mutex_lock (&connetion_threads_lock);
1240   while (connetion_threads_num > 0)
1241   {
1242     pthread_t wait_for;
1243
1244     wait_for = connetion_threads[0];
1245
1246     pthread_mutex_unlock (&connetion_threads_lock);
1247     pthread_join (wait_for, /* retval = */ NULL);
1248     pthread_mutex_lock (&connetion_threads_lock);
1249   }
1250   pthread_mutex_unlock (&connetion_threads_lock);
1251
1252   RRDD_LOG (LOG_DEBUG, "listen_thread_main: Exiting.");
1253
1254   return (NULL);
1255 } /* }}} void *listen_thread_main */
1256
1257 static int daemonize (void) /* {{{ */
1258 {
1259   pid_t child;
1260   int status;
1261   char *base_dir;
1262
1263   /* These structures are static, because `sigaction' behaves weird if the are
1264    * overwritten.. */
1265   static struct sigaction sa_int;
1266   static struct sigaction sa_term;
1267   static struct sigaction sa_pipe;
1268
1269   child = fork ();
1270   if (child < 0)
1271   {
1272     fprintf (stderr, "daemonize: fork(2) failed.\n");
1273     return (-1);
1274   }
1275   else if (child > 0)
1276   {
1277     return (1);
1278   }
1279
1280   /* Change into the /tmp directory. */
1281   base_dir = (config_base_dir != NULL)
1282     ? config_base_dir
1283     : "/tmp";
1284   status = chdir (base_dir);
1285   if (status != 0)
1286   {
1287     fprintf (stderr, "daemonize: chdir (%s) failed.\n", base_dir);
1288     return (-1);
1289   }
1290
1291   /* Become session leader */
1292   setsid ();
1293
1294   /* Open the first three file descriptors to /dev/null */
1295   close (2);
1296   close (1);
1297   close (0);
1298
1299   open ("/dev/null", O_RDWR);
1300   dup (0);
1301   dup (0);
1302
1303   /* Install signal handlers */
1304   memset (&sa_int, 0, sizeof (sa_int));
1305   sa_int.sa_handler = sig_int_handler;
1306   sigaction (SIGINT, &sa_int, NULL);
1307
1308   memset (&sa_term, 0, sizeof (sa_term));
1309   sa_term.sa_handler = sig_term_handler;
1310   sigaction (SIGINT, &sa_term, NULL);
1311
1312   memset (&sa_pipe, 0, sizeof (sa_pipe));
1313   sa_pipe.sa_handler = SIG_IGN;
1314   sigaction (SIGPIPE, &sa_pipe, NULL);
1315
1316   openlog ("rrdcached", LOG_PID, LOG_DAEMON);
1317
1318   cache_tree = g_tree_new ((GCompareFunc) strcmp);
1319   if (cache_tree == NULL)
1320   {
1321     RRDD_LOG (LOG_ERR, "daemonize: g_tree_new failed.");
1322     return (-1);
1323   }
1324
1325   memset (&queue_thread, 0, sizeof (queue_thread));
1326   status = pthread_create (&queue_thread, /* attr = */ NULL,
1327       queue_thread_main, /* args = */ NULL);
1328   if (status != 0)
1329   {
1330     RRDD_LOG (LOG_ERR, "daemonize: pthread_create failed.");
1331     return (-1);
1332   }
1333
1334   write_pidfile ();
1335
1336   return (0);
1337 } /* }}} int daemonize */
1338
1339 static int cleanup (void) /* {{{ */
1340 {
1341   RRDD_LOG (LOG_DEBUG, "cleanup ()");
1342
1343   do_shutdown++;
1344
1345   RRDD_LOG (LOG_DEBUG, "cleanup: Joining queue_thread..");
1346   pthread_cond_signal (&cache_cond);
1347   pthread_join (queue_thread, /* return = */ NULL);
1348   RRDD_LOG (LOG_DEBUG, "cleanup: done");
1349
1350   remove_pidfile ();
1351
1352   closelog ();
1353
1354   return (0);
1355 } /* }}} int cleanup */
1356
1357 static int read_options (int argc, char **argv) /* {{{ */
1358 {
1359   int option;
1360   int status = 0;
1361
1362   while ((option = getopt(argc, argv, "l:f:w:b:p:h?")) != -1)
1363   {
1364     switch (option)
1365     {
1366       case 'l':
1367       {
1368         char **temp;
1369
1370         temp = (char **) realloc (config_listen_address_list,
1371             sizeof (char *) * (config_listen_address_list_len + 1));
1372         if (temp == NULL)
1373         {
1374           fprintf (stderr, "read_options: realloc failed.\n");
1375           return (2);
1376         }
1377         config_listen_address_list = temp;
1378
1379         temp[config_listen_address_list_len] = strdup (optarg);
1380         if (temp[config_listen_address_list_len] == NULL)
1381         {
1382           fprintf (stderr, "read_options: strdup failed.\n");
1383           return (2);
1384         }
1385         config_listen_address_list_len++;
1386       }
1387       break;
1388
1389       case 'f':
1390       {
1391         int temp;
1392
1393         temp = atoi (optarg);
1394         if (temp > 0)
1395           config_flush_interval = temp;
1396         else
1397         {
1398           fprintf (stderr, "Invalid flush interval: %s\n", optarg);
1399           status = 3;
1400         }
1401       }
1402       break;
1403
1404       case 'w':
1405       {
1406         int temp;
1407
1408         temp = atoi (optarg);
1409         if (temp > 0)
1410           config_write_interval = temp;
1411         else
1412         {
1413           fprintf (stderr, "Invalid write interval: %s\n", optarg);
1414           status = 2;
1415         }
1416       }
1417       break;
1418
1419       case 'b':
1420       {
1421         size_t len;
1422
1423         if (config_base_dir != NULL)
1424           free (config_base_dir);
1425         config_base_dir = strdup (optarg);
1426         if (config_base_dir == NULL)
1427         {
1428           fprintf (stderr, "read_options: strdup failed.\n");
1429           return (3);
1430         }
1431
1432         len = strlen (config_base_dir);
1433         while ((len > 0) && (config_base_dir[len - 1] == '/'))
1434         {
1435           config_base_dir[len - 1] = 0;
1436           len--;
1437         }
1438
1439         if (len < 1)
1440         {
1441           fprintf (stderr, "Invalid base directory: %s\n", optarg);
1442           return (4);
1443         }
1444       }
1445       break;
1446
1447       case 'p':
1448       {
1449         if (config_pid_file != NULL)
1450           free (config_pid_file);
1451         config_pid_file = strdup (optarg);
1452         if (config_pid_file == NULL)
1453         {
1454           fprintf (stderr, "read_options: strdup failed.\n");
1455           return (3);
1456         }
1457       }
1458       break;
1459
1460       case 'h':
1461       case '?':
1462         printf ("RRDd %s  Copyright (C) 2008 Florian octo Forster\n"
1463             "\n"
1464             "Usage: rrdcached [options]\n"
1465             "\n"
1466             "Valid options are:\n"
1467             "  -l <address>  Socket address to listen to.\n"
1468             "  -w <seconds>  Interval in which to write data.\n"
1469             "  -f <seconds>  Interval in which to flush dead data.\n"
1470             "  -p <file>     Location of the PID-file.\n"
1471             "  -b <dir>      Base directory to change to.\n"
1472             "\n"
1473             "For more information and a detailed description of all options "
1474             "please refer\n"
1475             "to the rrdcached(1) manual page.\n",
1476             VERSION);
1477         status = -1;
1478         break;
1479     } /* switch (option) */
1480   } /* while (getopt) */
1481
1482   return (status);
1483 } /* }}} int read_options */
1484
1485 int main (int argc, char **argv)
1486 {
1487   int status;
1488
1489   status = read_options (argc, argv);
1490   if (status != 0)
1491   {
1492     if (status < 0)
1493       status = 0;
1494     return (status);
1495   }
1496
1497   status = daemonize ();
1498   if (status == 1)
1499   {
1500     struct sigaction sigchld;
1501
1502     memset (&sigchld, 0, sizeof (sigchld));
1503     sigchld.sa_handler = SIG_IGN;
1504     sigaction (SIGCHLD, &sigchld, NULL);
1505
1506     return (0);
1507   }
1508   else if (status != 0)
1509   {
1510     fprintf (stderr, "daemonize failed, exiting.\n");
1511     return (1);
1512   }
1513
1514   listen_thread_main (NULL);
1515
1516   cleanup ();
1517
1518   return (0);
1519 } /* int main */
1520
1521 /*
1522  * vim: set sw=2 sts=2 ts=8 et fdm=marker :
1523  */