9712fcd17643df1dd5ddd8f67af81c5b5cfb6b5d
[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
70 #include <sys/types.h>
71 #include <sys/stat.h>
72 #include <fcntl.h>
73 #include <signal.h>
74 #include <sys/socket.h>
75 #include <sys/un.h>
76 #include <netdb.h>
77 #include <poll.h>
78 #include <syslog.h>
79 #include <pthread.h>
80 #include <errno.h>
81 #include <assert.h>
82 #include <sys/time.h>
83 #include <time.h>
84
85 #include <glib-2.0/glib.h>
86 /* }}} */
87
88 #define RRDD_LOG(severity, ...) syslog ((severity), __VA_ARGS__)
89
90 #ifndef __GNUC__
91 # define __attribute__(x) /**/
92 #endif
93
94 /*
95  * Types
96  */
97 struct listen_socket_s
98 {
99   int fd;
100   char path[PATH_MAX + 1];
101 };
102 typedef struct listen_socket_s listen_socket_t;
103
104 struct cache_item_s;
105 typedef struct cache_item_s cache_item_t;
106 struct cache_item_s
107 {
108   char *file;
109   char **values;
110   int values_num;
111   time_t last_flush_time;
112 #define CI_FLAGS_IN_TREE  0x01
113 #define CI_FLAGS_IN_QUEUE 0x02
114   int flags;
115
116   cache_item_t *next;
117 };
118
119 enum queue_side_e
120 {
121   HEAD,
122   TAIL
123 };
124 typedef enum queue_side_e queue_side_t;
125
126 /*
127  * Variables
128  */
129 static listen_socket_t *listen_fds = NULL;
130 static size_t listen_fds_num = 0;
131
132 static int do_shutdown = 0;
133
134 static pthread_t queue_thread;
135
136 static pthread_t *connetion_threads = NULL;
137 static pthread_mutex_t connetion_threads_lock = PTHREAD_MUTEX_INITIALIZER;
138 static int connetion_threads_num = 0;
139
140 /* Cache stuff */
141 static GTree          *cache_tree = NULL;
142 static cache_item_t   *cache_queue_head = NULL;
143 static cache_item_t   *cache_queue_tail = NULL;
144 static pthread_mutex_t cache_lock = PTHREAD_MUTEX_INITIALIZER;
145 static pthread_cond_t  cache_cond = PTHREAD_COND_INITIALIZER;
146
147 static pthread_cond_t  flush_cond = PTHREAD_COND_INITIALIZER;
148
149 static int config_write_interval = 300;
150 static int config_flush_interval = 3600;
151
152 static char **config_listen_address_list = NULL;
153 static int config_listen_address_list_len = 0;
154
155 /* 
156  * Functions
157  */
158 static void sig_int_handler (int s __attribute__((unused))) /* {{{ */
159 {
160   do_shutdown++;
161 } /* }}} void sig_int_handler */
162
163 static void sig_term_handler (int s __attribute__((unused))) /* {{{ */
164 {
165   do_shutdown++;
166 } /* }}} void sig_term_handler */
167
168 /*
169  * enqueue_cache_item:
170  * `cache_lock' must be acquired before calling this function!
171  */
172 static int enqueue_cache_item (cache_item_t *ci, /* {{{ */
173     queue_side_t side)
174 {
175   RRDD_LOG (LOG_DEBUG, "enqueue_cache_item: Adding %s to the update queue.",
176       ci->file);
177
178   if (ci == NULL)
179     return (-1);
180
181   if (ci->values_num == 0)
182     return (0);
183
184   if (side == HEAD)
185   {
186     if ((ci->flags & CI_FLAGS_IN_QUEUE) == 0)
187     {
188       assert (ci->next == NULL);
189       ci->next = cache_queue_head;
190       cache_queue_head = ci;
191
192       if (cache_queue_tail == NULL)
193         cache_queue_tail = cache_queue_head;
194     }
195     else if (cache_queue_head == ci)
196     {
197       /* do nothing */
198     }
199     else /* enqueued, but not first entry */
200     {
201       cache_item_t *prev;
202
203       /* find previous entry */
204       for (prev = cache_queue_head; prev != NULL; prev = prev->next)
205         if (prev->next == ci)
206           break;
207       assert (prev != NULL);
208
209       /* move to the front */
210       prev->next = ci->next;
211       ci->next = cache_queue_head;
212       cache_queue_head = ci;
213
214       /* check if we need to adapt the tail */
215       if (cache_queue_tail == ci)
216         cache_queue_tail = prev;
217     }
218   }
219   else /* (side == TAIL) */
220   {
221     /* We don't move values back in the list.. */
222     if ((ci->flags & CI_FLAGS_IN_QUEUE) != 0)
223       return (0);
224
225     assert (ci->next == NULL);
226
227     if (cache_queue_tail == NULL)
228       cache_queue_head = ci;
229     else
230       cache_queue_tail->next = ci;
231     cache_queue_tail = ci;
232   }
233
234   ci->flags |= CI_FLAGS_IN_QUEUE;
235
236   return (0);
237 } /* }}} int enqueue_cache_item */
238
239 /*
240  * tree_callback_flush:
241  * Called via `g_tree_foreach' in `queue_thread_main'. `cache_lock' is held
242  * while this is in progress.
243  */
244 static gboolean tree_callback_flush (gpointer key /* {{{ */
245     __attribute__((unused)), gpointer value, gpointer data)
246 {
247   cache_item_t *ci;
248   time_t now;
249
250   key = NULL; /* make compiler happy */
251
252   ci = (cache_item_t *) value;
253   now = *((time_t *) data);
254
255   if (((now - ci->last_flush_time) >= config_write_interval)
256       && ((ci->flags & CI_FLAGS_IN_QUEUE) == 0)
257       && (ci->values_num > 0))
258     enqueue_cache_item (ci, TAIL);
259
260   return (TRUE);
261 } /* }}} gboolean tree_callback_flush */
262
263 static void *queue_thread_main (void *args __attribute__((unused))) /* {{{ */
264 {
265   struct timeval now;
266   struct timespec next_flush;
267
268   gettimeofday (&now, NULL);
269   next_flush.tv_sec = now.tv_sec + config_flush_interval;
270   next_flush.tv_nsec = 1000 * now.tv_usec;
271
272   pthread_mutex_lock (&cache_lock);
273   while ((do_shutdown == 0) || (cache_queue_head != NULL))
274   {
275     cache_item_t *ci;
276     char *file;
277     char **values;
278     int values_num;
279     int status;
280     int i;
281
282     /* First, check if it's time to do the cache flush. */
283     gettimeofday (&now, NULL);
284     if ((now.tv_sec > next_flush.tv_sec)
285         || ((now.tv_sec == next_flush.tv_sec)
286           && ((1000 * now.tv_usec) > next_flush.tv_nsec)))
287     {
288       time_t time_now;
289
290       /* Pass the current time as user data so that we don't need to call
291        * `time' for each node. */
292       time_now = time (NULL);
293
294       g_tree_foreach (cache_tree, tree_callback_flush, (gpointer) &time_now);
295
296       /* Determine the time of the next cache flush. */
297       while (next_flush.tv_sec < now.tv_sec)
298         next_flush.tv_sec += config_flush_interval;
299     }
300
301     /* Now, check if there's something to store away. If not, wait until
302      * something comes in or it's time to do the cache flush. */
303     if (cache_queue_head == NULL)
304     {
305       status = pthread_cond_timedwait (&cache_cond, &cache_lock, &next_flush);
306       if ((status != 0) && (status != ETIMEDOUT))
307       {
308         RRDD_LOG (LOG_ERR, "queue_thread_main: "
309             "pthread_cond_timedwait returned %i.", status);
310       }
311     }
312
313     /* Check if a value has arrived. This may be NULL if we timed out or there
314      * was an interrupt such as a signal. */
315     if (cache_queue_head == NULL)
316       continue;
317
318     ci = cache_queue_head;
319
320     /* copy the relevant parts */
321     file = strdup (ci->file);
322     if (file == NULL)
323     {
324       RRDD_LOG (LOG_ERR, "queue_thread_main: strdup failed.");
325       continue;
326     }
327
328     values = ci->values;
329     values_num = ci->values_num;
330
331     ci->values = NULL;
332     ci->values_num = 0;
333
334     ci->last_flush_time = time (NULL);
335     ci->flags &= ~(CI_FLAGS_IN_QUEUE);
336
337     cache_queue_head = ci->next;
338     if (cache_queue_head == NULL)
339       cache_queue_tail = NULL;
340     ci->next = NULL;
341
342     pthread_mutex_unlock (&cache_lock);
343
344     RRDD_LOG (LOG_DEBUG, "queue_thread_main: rrd_update (%s, %i, %p)",
345         file, values_num, (void *) values);
346
347     status = rrd_update_r (file, NULL, values_num, (void *) values);
348     if (status != 0)
349     {
350       RRDD_LOG (LOG_ERR, "queue_thread_main: "
351           "rrd_update_r failed with status %i.",
352           status);
353     }
354
355     free (file);
356     for (i = 0; i < values_num; i++)
357       free (values[i]);
358
359     pthread_mutex_lock (&cache_lock);
360     pthread_cond_broadcast (&flush_cond);
361   } /* while (do_shutdown == 0) */
362   pthread_mutex_unlock (&cache_lock);
363
364   RRDD_LOG (LOG_DEBUG, "queue_thread_main: Exiting.");
365
366   return (NULL);
367 } /* }}} void *queue_thread_main */
368
369 static int buffer_get_field (char **buffer_ret, /* {{{ */
370     size_t *buffer_size_ret, char **field_ret)
371 {
372   char *buffer;
373   size_t buffer_pos;
374   size_t buffer_size;
375   char *field;
376   size_t field_size;
377   int status;
378
379   buffer = *buffer_ret;
380   buffer_pos = 0;
381   buffer_size = *buffer_size_ret;
382   field = *buffer_ret;
383   field_size = 0;
384
385   /* This is ensured by `handle_request'. */
386   assert (buffer[buffer_size - 1] == ' ');
387
388   status = -1;
389   while (buffer_pos < buffer_size)
390   {
391     /* Check for end-of-field or end-of-buffer */
392     if (buffer[buffer_pos] == ' ')
393     {
394       field[field_size] = 0;
395       field_size++;
396       buffer_pos++;
397       status = 0;
398       break;
399     }
400     /* Handle escaped characters. */
401     else if (buffer[buffer_pos] == '\\')
402     {
403       if (buffer_pos >= (buffer_size - 1))
404         break;
405       buffer_pos++;
406       field[field_size] = buffer[buffer_pos];
407       field_size++;
408       buffer_pos++;
409     }
410     /* Normal operation */ 
411     else
412     {
413       field[field_size] = buffer[buffer_pos];
414       field_size++;
415       buffer_pos++;
416     }
417   } /* while (buffer_pos < buffer_size) */
418
419   if (status != 0)
420     return (status);
421
422   *buffer_ret = buffer + buffer_pos;
423   *buffer_size_ret = buffer_size - buffer_pos;
424   *field_ret = field;
425
426   return (0);
427 } /* }}} int buffer_get_field */
428
429 static int flush_file (const char *filename) /* {{{ */
430 {
431   cache_item_t *ci;
432
433   pthread_mutex_lock (&cache_lock);
434
435   ci = g_tree_lookup (cache_tree, filename);
436   if (ci == NULL)
437   {
438     pthread_mutex_unlock (&cache_lock);
439     return (ENOENT);
440   }
441
442   /* Enqueue at head */
443   enqueue_cache_item (ci, HEAD);
444   pthread_cond_signal (&cache_cond);
445
446   while ((ci->flags & CI_FLAGS_IN_QUEUE) != 0)
447   {
448     ci = NULL;
449
450     pthread_cond_wait (&flush_cond, &cache_lock);
451
452     ci = g_tree_lookup (cache_tree, filename);
453     if (ci == NULL)
454     {
455       RRDD_LOG (LOG_ERR, "flush_file: Tree node went away "
456           "while waiting for flush.");
457       pthread_mutex_unlock (&cache_lock);
458       return (-1);
459     }
460   }
461
462   pthread_mutex_unlock (&cache_lock);
463   return (0);
464 } /* }}} int flush_file */
465
466 static int handle_request_flush (int fd, /* {{{ */
467     char *buffer, size_t buffer_size)
468 {
469   char *file;
470   int status;
471   char result[4096];
472
473   status = buffer_get_field (&buffer, &buffer_size, &file);
474   if (status != 0)
475   {
476     RRDD_LOG (LOG_INFO, "handle_request_flush: Cannot get file name.");
477     return (-1);
478   }
479
480   status = flush_file (file);
481   if (status == 0)
482     snprintf (result, sizeof (result), "0 Successfully flushed %s.\n", file);
483   else if (status == ENOENT)
484     snprintf (result, sizeof (result), "-1 No such file: %s.\n", file);
485   else if (status < 0)
486     strncpy (result, "-1 Internal error.\n", sizeof (result));
487   else
488     snprintf (result, sizeof (result), "-1 Failed with status %i.\n", status);
489   result[sizeof (result) - 1] = 0;
490
491   status = write (fd, result, strlen (result));
492   if (status < 0)
493   {
494     status = errno;
495     RRDD_LOG (LOG_INFO, "handle_request_flush: write(2) returned an error.");
496     return (status);
497   }
498
499   return (0);
500 } /* }}} int handle_request_flush */
501
502 static int handle_request_update (int fd, /* {{{ */
503     char *buffer, size_t buffer_size)
504 {
505   char *file;
506   int values_num = 0;
507   int status;
508
509   time_t now;
510
511   cache_item_t *ci;
512   char answer[4096];
513
514   now = time (NULL);
515
516   status = buffer_get_field (&buffer, &buffer_size, &file);
517   if (status != 0)
518   {
519     RRDD_LOG (LOG_INFO, "handle_request_update: Cannot get file name.");
520     return (-1);
521   }
522
523   pthread_mutex_lock (&cache_lock);
524
525   ci = g_tree_lookup (cache_tree, file);
526   if (ci == NULL) /* {{{ */
527   {
528     ci = (cache_item_t *) malloc (sizeof (cache_item_t));
529     if (ci == NULL)
530     {
531       pthread_mutex_unlock (&cache_lock);
532       RRDD_LOG (LOG_ERR, "handle_request_update: malloc failed.");
533       return (-1);
534     }
535     memset (ci, 0, sizeof (cache_item_t));
536
537     ci->file = strdup (file);
538     if (ci->file == NULL)
539     {
540       pthread_mutex_unlock (&cache_lock);
541       RRDD_LOG (LOG_ERR, "handle_request_update: malloc failed.");
542       free (ci);
543       return (-1);
544     }
545
546     ci->values = NULL;
547     ci->values_num = 0;
548     ci->last_flush_time = now;
549     ci->flags = CI_FLAGS_IN_TREE;
550
551     g_tree_insert (cache_tree, (void *) ci->file, (void *) ci);
552
553     RRDD_LOG (LOG_DEBUG, "handle_request_update: Created new tree node %s.",
554         ci->file);
555   } /* }}} */
556   assert (ci != NULL);
557
558   while (buffer_size > 0)
559   {
560     char **temp;
561     char *value;
562
563     status = buffer_get_field (&buffer, &buffer_size, &value);
564     if (status != 0)
565     {
566       RRDD_LOG (LOG_INFO, "handle_request_update: Error reading field.");
567       break;
568     }
569
570     temp = (char **) realloc (ci->values,
571         sizeof (char *) * (ci->values_num + 1));
572     if (temp == NULL)
573     {
574       RRDD_LOG (LOG_ERR, "handle_request_update: realloc failed.");
575       continue;
576     }
577     ci->values = temp;
578
579     ci->values[ci->values_num] = strdup (value);
580     if (ci->values[ci->values_num] == NULL)
581     {
582       RRDD_LOG (LOG_ERR, "handle_request_update: strdup failed.");
583       continue;
584     }
585     ci->values_num++;
586
587     values_num++;
588   }
589
590   if (((now - ci->last_flush_time) >= config_write_interval)
591       && ((ci->flags & CI_FLAGS_IN_QUEUE) == 0)
592       && (ci->values_num > 0))
593   {
594     enqueue_cache_item (ci, TAIL);
595     pthread_cond_signal (&cache_cond);
596   }
597
598   pthread_mutex_unlock (&cache_lock);
599
600   snprintf (answer, sizeof (answer), "0 Enqueued %i value(s)\n", values_num);
601   answer[sizeof (answer) - 1] = 0;
602
603   status = write (fd, answer, strlen (answer));
604   if (status < 0)
605   {
606     status = errno;
607     RRDD_LOG (LOG_INFO, "handle_request_update: write(2) returned an error.");
608     return (status);
609   }
610
611   return (0);
612 } /* }}} int handle_request_update */
613
614 static int handle_request (int fd) /* {{{ */
615 {
616   char buffer[4096];
617   size_t buffer_size;
618   char *buffer_ptr;
619   char *command;
620   int status;
621
622   status = read (fd, buffer, sizeof (buffer));
623   if (status == 0)
624   {
625     return (1);
626   }
627   else if (status < 0)
628   {
629     RRDD_LOG (LOG_ERR, "handle_request: read(2) failed.");
630     return (-1);
631   }
632   buffer_size = status;
633   assert (((size_t) buffer_size) <= sizeof (buffer));
634
635   if (buffer[buffer_size - 1] != '\n')
636   {
637     RRDD_LOG (LOG_INFO, "handle_request: malformed request.");
638     return (-1);
639   }
640
641   /* Accept Windows style line endings, too */
642   if ((buffer_size > 2) && (buffer[buffer_size - 2] == '\r'))
643   {
644     buffer_size--;
645     buffer[buffer_size - 1] = '\n';
646   }
647
648   /* Place the normal field separator at the end to simplify
649    * `buffer_get_field's work. */
650   buffer[buffer_size - 1] = ' ';
651
652   buffer_ptr = buffer;
653   command = NULL;
654   status = buffer_get_field (&buffer_ptr, &buffer_size, &command);
655   if (status != 0)
656   {
657     RRDD_LOG (LOG_INFO, "handle_request: Unable parse command.");
658     return (-1);
659   }
660
661   if (strcmp (command, "update") == 0)
662   {
663     return (handle_request_update (fd, buffer_ptr, buffer_size));
664   }
665   else if (strcmp (command, "flush") == 0)
666   {
667     return (handle_request_flush (fd, buffer_ptr, buffer_size));
668   }
669   else
670   {
671     RRDD_LOG (LOG_INFO, "handle_request: unknown command: %s.", buffer);
672     return (-1);
673   }
674 } /* }}} int handle_request */
675
676 static void *connection_thread_main (void *args /* {{{ */
677     __attribute__((unused)))
678 {
679   pthread_t self;
680   int i;
681   int fd;
682   
683   fd = *((int *) args);
684
685   pthread_mutex_lock (&connetion_threads_lock);
686   {
687     pthread_t *temp;
688
689     temp = (pthread_t *) realloc (connetion_threads,
690         sizeof (pthread_t) * (connetion_threads_num + 1));
691     if (temp == NULL)
692     {
693       RRDD_LOG (LOG_ERR, "connection_thread_main: realloc failed.");
694     }
695     else
696     {
697       connetion_threads = temp;
698       connetion_threads[connetion_threads_num] = pthread_self ();
699       connetion_threads_num++;
700     }
701   }
702   pthread_mutex_unlock (&connetion_threads_lock);
703
704   while (do_shutdown == 0)
705   {
706     struct pollfd pollfd;
707     int status;
708
709     pollfd.fd = fd;
710     pollfd.events = POLLIN | POLLPRI;
711     pollfd.revents = 0;
712
713     status = poll (&pollfd, 1, /* timeout = */ 500);
714     if (status == 0) /* timeout */
715       continue;
716     else if (status < 0) /* error */
717     {
718       status = errno;
719       if (status == EINTR)
720         continue;
721       RRDD_LOG (LOG_ERR, "connection_thread_main: poll(2) failed.");
722       continue;
723     }
724
725     if ((pollfd.revents & POLLHUP) != 0) /* normal shutdown */
726     {
727       close (fd);
728       break;
729     }
730     else if ((pollfd.revents & (POLLIN | POLLPRI)) == 0)
731     {
732       RRDD_LOG (LOG_WARNING, "connection_thread_main: "
733           "poll(2) returned something unexpected: %#04hx",
734           pollfd.revents);
735       close (fd);
736       break;
737     }
738
739     status = handle_request (fd);
740     if (status != 0)
741     {
742       close (fd);
743       break;
744     }
745   }
746
747   self = pthread_self ();
748   /* Remove this thread from the connection threads list */
749   pthread_mutex_lock (&connetion_threads_lock);
750   /* Find out own index in the array */
751   for (i = 0; i < connetion_threads_num; i++)
752     if (pthread_equal (connetion_threads[i], self) != 0)
753       break;
754   assert (i < connetion_threads_num);
755
756   /* Move the trailing threads forward. */
757   if (i < (connetion_threads_num - 1))
758   {
759     memmove (connetion_threads + i,
760         connetion_threads + i + 1,
761         sizeof (pthread_t) * (connetion_threads_num - i - 1));
762   }
763
764   connetion_threads_num--;
765   pthread_mutex_unlock (&connetion_threads_lock);
766
767   free (args);
768   return (NULL);
769 } /* }}} void *connection_thread_main */
770
771 static int open_listen_socket_unix (const char *path) /* {{{ */
772 {
773   int fd;
774   struct sockaddr_un sa;
775   listen_socket_t *temp;
776   int status;
777
778   temp = (listen_socket_t *) realloc (listen_fds,
779       sizeof (listen_fds[0]) * (listen_fds_num + 1));
780   if (temp == NULL)
781   {
782     RRDD_LOG (LOG_ERR, "open_listen_socket_unix: realloc failed.");
783     return (-1);
784   }
785   listen_fds = temp;
786   memset (listen_fds + listen_fds_num, 0, sizeof (listen_fds[0]));
787
788   fd = socket (PF_UNIX, SOCK_STREAM, /* protocol = */ 0);
789   if (fd < 0)
790   {
791     RRDD_LOG (LOG_ERR, "open_listen_socket_unix: socket(2) failed.");
792     return (-1);
793   }
794
795   memset (&sa, 0, sizeof (sa));
796   sa.sun_family = AF_UNIX;
797   strncpy (sa.sun_path, path, sizeof (sa.sun_path) - 1);
798
799   status = bind (fd, (struct sockaddr *) &sa, sizeof (sa));
800   if (status != 0)
801   {
802     RRDD_LOG (LOG_ERR, "open_listen_socket_unix: bind(2) failed.");
803     close (fd);
804     unlink (path);
805     return (-1);
806   }
807
808   status = listen (fd, /* backlog = */ 10);
809   if (status != 0)
810   {
811     RRDD_LOG (LOG_ERR, "open_listen_socket_unix: listen(2) failed.");
812     close (fd);
813     unlink (path);
814     return (-1);
815   }
816   
817   listen_fds[listen_fds_num].fd = fd;
818   snprintf (listen_fds[listen_fds_num].path,
819       sizeof (listen_fds[listen_fds_num].path) - 1,
820       "unix:%s", path);
821   listen_fds_num++;
822
823   return (0);
824 } /* }}} int open_listen_socket_unix */
825
826 static int open_listen_socket (const char *addr) /* {{{ */
827 {
828   struct addrinfo ai_hints;
829   struct addrinfo *ai_res;
830   struct addrinfo *ai_ptr;
831   int status;
832
833   assert (addr != NULL);
834
835   if (strncmp ("unix:", addr, strlen ("unix:")) == 0)
836     return (open_listen_socket_unix (addr + strlen ("unix:")));
837   else if (addr[0] == '/')
838     return (open_listen_socket_unix (addr));
839
840   memset (&ai_hints, 0, sizeof (ai_hints));
841   ai_hints.ai_flags = 0;
842 #ifdef AI_ADDRCONFIG
843   ai_hints.ai_flags |= AI_ADDRCONFIG;
844 #endif
845   ai_hints.ai_family = AF_UNSPEC;
846   ai_hints.ai_socktype = SOCK_STREAM;
847
848   ai_res = NULL;
849   status = getaddrinfo (addr, RRDCACHED_DEFAULT_PORT, &ai_hints, &ai_res);
850   if (status != 0)
851   {
852     RRDD_LOG (LOG_ERR, "open_listen_socket: getaddrinfo(%s) failed: "
853         "%s", addr, gai_strerror (status));
854     return (-1);
855   }
856
857   for (ai_ptr = ai_res; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next)
858   {
859     int fd;
860     listen_socket_t *temp;
861
862     temp = (listen_socket_t *) realloc (listen_fds,
863         sizeof (listen_fds[0]) * (listen_fds_num + 1));
864     if (temp == NULL)
865     {
866       RRDD_LOG (LOG_ERR, "open_listen_socket: realloc failed.");
867       continue;
868     }
869     listen_fds = temp;
870     memset (listen_fds + listen_fds_num, 0, sizeof (listen_fds[0]));
871
872     fd = socket (ai_ptr->ai_family, ai_ptr->ai_socktype, ai_ptr->ai_protocol);
873     if (fd < 0)
874     {
875       RRDD_LOG (LOG_ERR, "open_listen_socket: socket(2) failed.");
876       continue;
877     }
878
879     status = bind (fd, ai_ptr->ai_addr, ai_ptr->ai_addrlen);
880     if (status != 0)
881     {
882       RRDD_LOG (LOG_ERR, "open_listen_socket: bind(2) failed.");
883       close (fd);
884       continue;
885     }
886
887     status = listen (fd, /* backlog = */ 10);
888     if (status != 0)
889     {
890       RRDD_LOG (LOG_ERR, "open_listen_socket: listen(2) failed.");
891       close (fd);
892       return (-1);
893     }
894
895     listen_fds[listen_fds_num].fd = fd;
896     strncpy (listen_fds[listen_fds_num].path, addr,
897         sizeof (listen_fds[listen_fds_num].path) - 1);
898     listen_fds_num++;
899   } /* for (ai_ptr) */
900
901   return (0);
902 } /* }}} int open_listen_socket */
903
904 static int close_listen_sockets (void) /* {{{ */
905 {
906   size_t i;
907
908   for (i = 0; i < listen_fds_num; i++)
909   {
910     close (listen_fds[i].fd);
911     if (strncmp ("unix:", listen_fds[i].path, strlen ("unix:")) == 0)
912       unlink (listen_fds[i].path + strlen ("unix:"));
913   }
914
915   free (listen_fds);
916   listen_fds = NULL;
917   listen_fds_num = 0;
918
919   return (0);
920 } /* }}} int close_listen_sockets */
921
922 static void *listen_thread_main (void *args __attribute__((unused))) /* {{{ */
923 {
924   struct pollfd *pollfds;
925   int pollfds_num;
926   int status;
927   int i;
928
929   for (i = 0; i < config_listen_address_list_len; i++)
930   {
931     RRDD_LOG (LOG_DEBUG, "listen_thread_main: config_listen_address_list[%i] "
932         "= %s", i, config_listen_address_list[i]);
933     open_listen_socket (config_listen_address_list[i]);
934   }
935
936   if (config_listen_address_list_len < 1)
937     open_listen_socket (RRDCACHED_DEFAULT_ADDRESS);
938
939   if (listen_fds_num < 1)
940   {
941     RRDD_LOG (LOG_ERR, "listen_thread_main: No listen sockets "
942         "could be opened. Sorry.");
943     return (NULL);
944   }
945
946   pollfds_num = listen_fds_num;
947   pollfds = (struct pollfd *) malloc (sizeof (*pollfds) * pollfds_num);
948   if (pollfds == NULL)
949   {
950     RRDD_LOG (LOG_ERR, "listen_thread_main: malloc failed.");
951     return (NULL);
952   }
953   memset (pollfds, 0, sizeof (*pollfds) * pollfds_num);
954
955   while (do_shutdown == 0)
956   {
957     assert (pollfds_num == ((int) listen_fds_num));
958     for (i = 0; i < pollfds_num; i++)
959     {
960       pollfds[i].fd = listen_fds[i].fd;
961       pollfds[i].events = POLLIN | POLLPRI;
962       pollfds[i].revents = 0;
963     }
964
965     status = poll (pollfds, pollfds_num, /* timeout = */ -1);
966     if (status < 1)
967     {
968       status = errno;
969       if (status != EINTR)
970       {
971         RRDD_LOG (LOG_ERR, "listen_thread_main: poll(2) failed.");
972       }
973       continue;
974     }
975
976     for (i = 0; i < pollfds_num; i++)
977     {
978       int *client_sd;
979       struct sockaddr_storage client_sa;
980       socklen_t client_sa_size;
981       pthread_t tid;
982
983       if (pollfds[i].revents == 0)
984         continue;
985
986       if ((pollfds[i].revents & (POLLIN | POLLPRI)) == 0)
987       {
988         RRDD_LOG (LOG_ERR, "listen_thread_main: "
989             "poll(2) returned something unexpected for listen FD #%i.",
990             pollfds[i].fd);
991         continue;
992       }
993
994       client_sd = (int *) malloc (sizeof (int));
995       if (client_sd == NULL)
996       {
997         RRDD_LOG (LOG_ERR, "listen_thread_main: malloc failed.");
998         continue;
999       }
1000
1001       client_sa_size = sizeof (client_sa);
1002       *client_sd = accept (pollfds[i].fd,
1003           (struct sockaddr *) &client_sa, &client_sa_size);
1004       if (*client_sd < 0)
1005       {
1006         RRDD_LOG (LOG_ERR, "listen_thread_main: accept(2) failed.");
1007         continue;
1008       }
1009
1010       status = pthread_create (&tid, /* attr = */ NULL, connection_thread_main,
1011           /* args = */ (void *) client_sd);
1012       if (status != 0)
1013       {
1014         RRDD_LOG (LOG_ERR, "listen_thread_main: pthread_create failed.");
1015         close (*client_sd);
1016         free (client_sd);
1017         continue;
1018       }
1019     } /* for (pollfds_num) */
1020   } /* while (do_shutdown == 0) */
1021
1022   close_listen_sockets ();
1023
1024   pthread_mutex_lock (&connetion_threads_lock);
1025   while (connetion_threads_num > 0)
1026   {
1027     pthread_t wait_for;
1028
1029     wait_for = connetion_threads[0];
1030
1031     pthread_mutex_unlock (&connetion_threads_lock);
1032     pthread_join (wait_for, /* retval = */ NULL);
1033     pthread_mutex_lock (&connetion_threads_lock);
1034   }
1035   pthread_mutex_unlock (&connetion_threads_lock);
1036
1037   RRDD_LOG (LOG_DEBUG, "listen_thread_main: Exiting.");
1038
1039   return (NULL);
1040 } /* }}} void *listen_thread_main */
1041
1042 static int daemonize (void) /* {{{ */
1043 {
1044   pid_t child;
1045   int status;
1046
1047   child = fork ();
1048   if (child < 0)
1049   {
1050     fprintf (stderr, "daemonize: fork(2) failed.\n");
1051     return (-1);
1052   }
1053   else if (child > 0)
1054   {
1055     return (1);
1056   }
1057
1058   /* Change into the /tmp directory. */
1059   chdir ("/tmp");
1060
1061   /* Become session leader */
1062   setsid ();
1063
1064   /* Open the first three file descriptors to /dev/null */
1065   close (2);
1066   close (1);
1067   close (0);
1068
1069   open ("/dev/null", O_RDWR);
1070   dup (0);
1071   dup (0);
1072
1073   {
1074     struct sigaction sa;
1075
1076     memset (&sa, 0, sizeof (sa));
1077     sa.sa_handler = sig_int_handler;
1078     sigaction (SIGINT, &sa, NULL);
1079
1080     memset (&sa, 0, sizeof (sa));
1081     sa.sa_handler = sig_term_handler;
1082     sigaction (SIGINT, &sa, NULL);
1083
1084     memset (&sa, 0, sizeof (sa));
1085     sa.sa_handler = SIG_IGN;
1086     sigaction (SIGPIPE, &sa, NULL);
1087   }
1088
1089   openlog ("rrdcached", LOG_PID, LOG_DAEMON);
1090
1091   cache_tree = g_tree_new ((GCompareFunc) strcmp);
1092   if (cache_tree == NULL)
1093   {
1094     RRDD_LOG (LOG_ERR, "daemonize: g_tree_new failed.");
1095     return (-1);
1096   }
1097
1098   memset (&queue_thread, 0, sizeof (queue_thread));
1099   status = pthread_create (&queue_thread, /* attr = */ NULL,
1100       queue_thread_main, /* args = */ NULL);
1101   if (status != 0)
1102   {
1103     RRDD_LOG (LOG_ERR, "daemonize: pthread_create failed.");
1104     return (-1);
1105   }
1106
1107   return (0);
1108 } /* }}} int daemonize */
1109
1110 static int cleanup (void) /* {{{ */
1111 {
1112   RRDD_LOG (LOG_DEBUG, "cleanup ()");
1113
1114   do_shutdown++;
1115
1116   RRDD_LOG (LOG_DEBUG, "cleanup: Joining queue_thread..");
1117   pthread_cond_signal (&cache_cond);
1118   pthread_join (queue_thread, /* return = */ NULL);
1119   RRDD_LOG (LOG_DEBUG, "cleanup: done");
1120
1121   closelog ();
1122
1123   return (0);
1124 } /* }}} int cleanup */
1125
1126 static int read_options (int argc, char **argv) /* {{{ */
1127 {
1128   int option;
1129   int status = 0;
1130
1131   while ((option = getopt(argc, argv, "l:f:w:h?")) != -1)
1132   {
1133     switch (option)
1134     {
1135       case 'l':
1136       {
1137         char **temp;
1138
1139         temp = (char **) realloc (config_listen_address_list,
1140             sizeof (char *) * (config_listen_address_list_len + 1));
1141         if (temp == NULL)
1142         {
1143           fprintf (stderr, "read_options: realloc failed.\n");
1144           return (2);
1145         }
1146         config_listen_address_list = temp;
1147
1148         temp[config_listen_address_list_len] = strdup (optarg);
1149         if (temp[config_listen_address_list_len] == NULL)
1150         {
1151           fprintf (stderr, "read_options: strdup failed.\n");
1152           return (2);
1153         }
1154         config_listen_address_list_len++;
1155       }
1156       break;
1157
1158       case 'f':
1159       {
1160         int temp;
1161
1162         temp = atoi (optarg);
1163         if (temp > 0)
1164           config_flush_interval = temp;
1165         else
1166         {
1167           fprintf (stderr, "Invalid flush interval: %s\n", optarg);
1168           status = 3;
1169         }
1170       }
1171       break;
1172
1173       case 'w':
1174       {
1175         int temp;
1176
1177         temp = atoi (optarg);
1178         if (temp > 0)
1179           config_write_interval = temp;
1180         else
1181         {
1182           fprintf (stderr, "Invalid write interval: %s\n", optarg);
1183           status = 2;
1184         }
1185       }
1186       break;
1187
1188       case 'h':
1189       case '?':
1190         printf ("RRDd %s  Copyright (C) 2008 Florian octo Forster\n"
1191             "\n"
1192             "Usage: rrdcached [options]\n"
1193             "\n"
1194             "Valid options are:\n"
1195             "  -l <address>  Socket address to listen to.\n"
1196             "  -w <seconds>  Interval in which to write data.\n"
1197             "  -f <seconds>  Interval in which to flush dead data.\n"
1198             "\n"
1199             "For more information and a detailed description of all options "
1200             "please refer\n"
1201             "to the rrdcached(1) manual page.\n",
1202             VERSION);
1203         status = -1;
1204         break;
1205     } /* switch (option) */
1206   } /* while (getopt) */
1207
1208   return (status);
1209 } /* }}} int read_options */
1210
1211 int main (int argc, char **argv)
1212 {
1213   int status;
1214
1215   status = read_options (argc, argv);
1216   if (status != 0)
1217   {
1218     if (status < 0)
1219       status = 0;
1220     return (status);
1221   }
1222
1223   status = daemonize ();
1224   if (status == 1)
1225   {
1226     struct sigaction sigchld;
1227
1228     memset (&sigchld, 0, sizeof (sigchld));
1229     sigchld.sa_handler = SIG_IGN;
1230     sigaction (SIGCHLD, &sigchld, NULL);
1231
1232     return (0);
1233   }
1234   else if (status != 0)
1235   {
1236     fprintf (stderr, "daemonize failed, exiting.\n");
1237     return (1);
1238   }
1239
1240   listen_thread_main (NULL);
1241
1242   cleanup ();
1243
1244   return (0);
1245 } /* int main */
1246
1247 /*
1248  * vim: set sw=2 sts=2 ts=8 et fdm=marker :
1249  */