2 * RRDTool - src/rrd_daemon.c
3 * Copyright (C) 2008-2010 Florian octo Forster
4 * Copyright (C) 2008,2009 Kevin Brintnall
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; only version 2 of the License is applicable.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * Florian octo Forster <octo at verplant.org>
21 * kevin brintnall <kbrint@rufus.net>
26 * First tell the compiler to stick to the C99 and POSIX standards as close as
29 #ifndef __STRICT_ANSI__ /* {{{ */
30 # define __STRICT_ANSI__
33 #ifndef _ISOC99_SOURCE
34 # define _ISOC99_SOURCE
37 #ifdef _POSIX_C_SOURCE
38 # undef _POSIX_C_SOURCE
40 #define _POSIX_C_SOURCE 200112L
42 /* Single UNIX needed for strdup. */
46 #define _XOPEN_SOURCE 500
63 * Now for some includes..
66 #if defined(_WIN32) && !defined(__CYGWIN__) && !defined(__CYGWIN32__) && !defined(HAVE_CONFIG_H)
67 #include "../win32/config.h"
70 #include "../rrd_config.h"
75 #include "rrd_client.h"
87 #include <sys/socket.h>
95 #include <sys/types.h>
107 #include <sys/time.h>
112 #include <glib-2.0/glib.h>
115 #define RRDD_LOG(severity, ...) \
117 if (stay_foreground) \
118 fprintf(stderr, __VA_ARGS__); \
119 syslog ((severity), __VA_ARGS__); \
125 typedef enum { RESP_ERR = -1, RESP_OK = 0 } response_code;
127 struct listen_socket_s
130 char addr[PATH_MAX + 1];
133 /* state for BATCH processing */
145 uint32_t permissions;
148 mode_t socket_permissions;
150 typedef struct listen_socket_s listen_socket_t;
153 typedef struct command_s command_t;
154 /* note: guard against "unused" warnings in the handlers */
155 #define DISPATCH_PROTO listen_socket_t UNUSED(*sock),\
157 char UNUSED(*buffer),\
158 size_t UNUSED(buffer_size)
160 #define HANDLER_PROTO command_t UNUSED(*cmd),\
165 int (*handler)(HANDLER_PROTO);
167 char context; /* where we expect to see it */
168 #define CMD_CONTEXT_CLIENT (1<<0)
169 #define CMD_CONTEXT_BATCH (1<<1)
170 #define CMD_CONTEXT_JOURNAL (1<<2)
171 #define CMD_CONTEXT_ANY (0x7f)
178 typedef struct cache_item_s cache_item_t;
183 size_t values_num; /* number of valid pointers */
184 size_t values_alloc; /* number of allocated pointers */
185 time_t last_flush_time;
186 time_t last_update_stamp;
187 #define CI_FLAGS_IN_TREE (1<<0)
188 #define CI_FLAGS_IN_QUEUE (1<<1)
190 pthread_cond_t flushed;
195 struct callback_flush_data_s
202 typedef struct callback_flush_data_s callback_flush_data_t;
209 typedef enum queue_side_e queue_side_t;
211 /* describe a set of journal files */
217 /* max length of socket command or response */
219 #define RBUF_SIZE (CMD_MAX*2)
224 static int stay_foreground = 0;
225 static uid_t daemon_uid;
227 static listen_socket_t *listen_fds = NULL;
228 static size_t listen_fds_num = 0;
231 RUNNING, /* normal operation */
232 FLUSHING, /* flushing remaining values */
233 SHUTDOWN /* shutting down */
236 static pthread_t *queue_threads;
237 static pthread_cond_t queue_cond = PTHREAD_COND_INITIALIZER;
238 static int config_queue_threads = 4;
240 static pthread_t flush_thread;
241 static pthread_cond_t flush_cond = PTHREAD_COND_INITIALIZER;
243 static pthread_mutex_t connection_threads_lock = PTHREAD_MUTEX_INITIALIZER;
244 static pthread_cond_t connection_threads_done = PTHREAD_COND_INITIALIZER;
245 static int connection_threads_num = 0;
248 static GTree *cache_tree = NULL;
249 static cache_item_t *cache_queue_head = NULL;
250 static cache_item_t *cache_queue_tail = NULL;
251 static pthread_mutex_t cache_lock = PTHREAD_MUTEX_INITIALIZER;
253 static int config_write_interval = 300;
254 static int config_write_jitter = 0;
255 static int config_flush_interval = 3600;
256 static int config_flush_at_shutdown = 0;
257 static char *config_pid_file = NULL;
258 static char *config_base_dir = NULL;
259 static size_t _config_base_dir_len = 0;
260 static int config_write_base_only = 0;
261 static size_t config_alloc_chunk = 1;
263 static listen_socket_t **config_listen_address_list = NULL;
264 static size_t config_listen_address_list_len = 0;
266 static uint64_t stats_queue_length = 0;
267 static uint64_t stats_updates_received = 0;
268 static uint64_t stats_flush_received = 0;
269 static uint64_t stats_updates_written = 0;
270 static uint64_t stats_data_sets_written = 0;
271 static uint64_t stats_journal_bytes = 0;
272 static uint64_t stats_journal_rotate = 0;
273 static pthread_mutex_t stats_lock = PTHREAD_MUTEX_INITIALIZER;
275 /* Journaled updates */
276 #define JOURNAL_REPLAY(s) ((s) == NULL)
277 #define JOURNAL_BASE "rrd.journal"
278 static journal_set *journal_cur = NULL;
279 static journal_set *journal_old = NULL;
280 static char *journal_dir = NULL;
281 static FILE *journal_fh = NULL; /* current journal file handle */
282 static long journal_size = 0; /* current journal size */
283 #define JOURNAL_MAX (1 * 1024 * 1024 * 1024)
284 static pthread_mutex_t journal_lock = PTHREAD_MUTEX_INITIALIZER;
285 static int journal_write(char *cmd, char *args);
286 static void journal_done(void);
287 static void journal_rotate(void);
289 /* prototypes for forward refernces */
290 static int handle_request_help (HANDLER_PROTO);
295 static void sig_common (const char *sig) /* {{{ */
297 RRDD_LOG(LOG_NOTICE, "caught SIG%s", sig);
299 pthread_cond_broadcast(&flush_cond);
300 pthread_cond_broadcast(&queue_cond);
301 } /* }}} void sig_common */
303 static void sig_int_handler (int UNUSED(s)) /* {{{ */
306 } /* }}} void sig_int_handler */
308 static void sig_term_handler (int UNUSED(s)) /* {{{ */
311 } /* }}} void sig_term_handler */
313 static void sig_usr1_handler (int UNUSED(s)) /* {{{ */
315 config_flush_at_shutdown = 1;
317 } /* }}} void sig_usr1_handler */
319 static void sig_usr2_handler (int UNUSED(s)) /* {{{ */
321 config_flush_at_shutdown = 0;
323 } /* }}} void sig_usr2_handler */
325 static void install_signal_handlers(void) /* {{{ */
327 /* These structures are static, because `sigaction' behaves weird if the are
329 static struct sigaction sa_int;
330 static struct sigaction sa_term;
331 static struct sigaction sa_pipe;
332 static struct sigaction sa_usr1;
333 static struct sigaction sa_usr2;
335 /* Install signal handlers */
336 memset (&sa_int, 0, sizeof (sa_int));
337 sa_int.sa_handler = sig_int_handler;
338 sigaction (SIGINT, &sa_int, NULL);
340 memset (&sa_term, 0, sizeof (sa_term));
341 sa_term.sa_handler = sig_term_handler;
342 sigaction (SIGTERM, &sa_term, NULL);
344 memset (&sa_pipe, 0, sizeof (sa_pipe));
345 sa_pipe.sa_handler = SIG_IGN;
346 sigaction (SIGPIPE, &sa_pipe, NULL);
348 memset (&sa_pipe, 0, sizeof (sa_usr1));
349 sa_usr1.sa_handler = sig_usr1_handler;
350 sigaction (SIGUSR1, &sa_usr1, NULL);
352 memset (&sa_usr2, 0, sizeof (sa_usr2));
353 sa_usr2.sa_handler = sig_usr2_handler;
354 sigaction (SIGUSR2, &sa_usr2, NULL);
356 } /* }}} void install_signal_handlers */
358 static int open_pidfile(char *action, int oflag) /* {{{ */
362 char *file_copy, *dir;
364 file = (config_pid_file != NULL)
366 : LOCALSTATEDIR "/run/rrdcached.pid";
368 /* dirname may modify its argument */
369 file_copy = strdup(file);
370 if (file_copy == NULL)
372 fprintf(stderr, "rrdcached: strdup(): %s\n",
373 rrd_strerror(errno));
377 dir = dirname(file_copy);
378 if (rrd_mkdir_p(dir, 0777) != 0)
380 fprintf(stderr, "Failed to create pidfile directory '%s': %s\n",
381 dir, rrd_strerror(errno));
387 fd = open(file, oflag, S_IWUSR|S_IRUSR|S_IRGRP|S_IROTH);
389 fprintf(stderr, "rrdcached: can't %s pid file '%s' (%s)\n",
390 action, file, rrd_strerror(errno));
393 } /* }}} static int open_pidfile */
395 /* check existing pid file to see whether a daemon is running */
396 static int check_pidfile(void)
402 pid_fd = open_pidfile("open", O_RDWR);
406 if (read(pid_fd, pid_str, sizeof(pid_str)) <= 0)
413 /* another running process that we can signal COULD be
414 * a competing rrdcached */
415 if (pid != getpid() && kill(pid, 0) == 0)
418 "FATAL: Another rrdcached daemon is running?? (pid %d)\n", pid);
423 lseek(pid_fd, 0, SEEK_SET);
424 if (ftruncate(pid_fd, 0) == -1)
427 "FATAL: Faild to truncate stale PID file. (pid %d)\n", pid);
433 "rrdcached: removed stale PID file (no rrdcached on pid %d)\n"
434 "rrdcached: starting normally.\n", pid);
437 } /* }}} static int check_pidfile */
439 static int write_pidfile (int fd) /* {{{ */
446 fh = fdopen (fd, "w");
449 RRDD_LOG (LOG_ERR, "write_pidfile: fdopen() failed.");
454 fprintf (fh, "%i\n", (int) pid);
458 } /* }}} int write_pidfile */
460 static int remove_pidfile (void) /* {{{ */
465 file = (config_pid_file != NULL)
467 : LOCALSTATEDIR "/run/rrdcached.pid";
469 status = unlink (file);
473 } /* }}} int remove_pidfile */
475 static char *next_cmd (listen_socket_t *sock, ssize_t *len) /* {{{ */
479 eol = memchr(sock->rbuf + sock->next_cmd, '\n',
480 sock->next_read - sock->next_cmd);
484 /* no commands left, move remainder back to front of rbuf */
485 memmove(sock->rbuf, sock->rbuf + sock->next_cmd,
486 sock->next_read - sock->next_cmd);
487 sock->next_read -= sock->next_cmd;
494 char *cmd = sock->rbuf + sock->next_cmd;
497 sock->next_cmd = eol - sock->rbuf + 1;
499 if (eol > sock->rbuf && *(eol-1) == '\r')
500 *(--eol) = '\0'; /* handle "\r\n" EOL */
509 } /* }}} char *next_cmd */
511 /* add the characters directly to the write buffer */
512 static int add_to_wbuf(listen_socket_t *sock, char *str, size_t len) /* {{{ */
516 assert(sock != NULL);
518 new_buf = rrd_realloc(sock->wbuf, sock->wbuf_len + len + 1);
521 RRDD_LOG(LOG_ERR, "add_to_wbuf: realloc failed");
525 strncpy(new_buf + sock->wbuf_len, str, len + 1);
527 sock->wbuf = new_buf;
528 sock->wbuf_len += len;
531 } /* }}} static int add_to_wbuf */
533 /* add the text to the "extra" info that's sent after the status line */
534 static int add_response_info(listen_socket_t *sock, char *fmt, ...) /* {{{ */
537 char buffer[CMD_MAX];
540 if (JOURNAL_REPLAY(sock)) return 0;
541 if (sock->batch_start) return 0; /* no extra info returned when in BATCH */
544 #ifdef HAVE_VSNPRINTF
545 len = vsnprintf(buffer, sizeof(buffer), fmt, argp);
547 len = vsprintf(buffer, fmt, argp);
552 RRDD_LOG(LOG_ERR, "add_response_info: vnsprintf failed");
556 return add_to_wbuf(sock, buffer, len);
557 } /* }}} static int add_response_info */
559 static int count_lines(char *str) /* {{{ */
565 while ((str = strchr(str, '\n')) != NULL)
573 } /* }}} static int count_lines */
575 /* send the response back to the user.
576 * returns 0 on success, -1 on error
577 * write buffer is always zeroed after this call */
578 static int send_response (listen_socket_t *sock, response_code rc,
579 char *fmt, ...) /* {{{ */
582 char buffer[CMD_MAX];
587 if (JOURNAL_REPLAY(sock)) return rc;
589 if (sock->batch_start)
592 return rc; /* no response on success during BATCH */
593 lines = sock->batch_cmd;
595 else if (rc == RESP_OK)
596 lines = count_lines(sock->wbuf);
600 rclen = sprintf(buffer, "%d ", lines);
602 #ifdef HAVE_VSNPRINTF
603 len = vsnprintf(buffer+rclen, sizeof(buffer)-rclen, fmt, argp);
605 len = vsprintf(buffer+rclen, fmt, argp);
613 /* append the result to the wbuf, don't write to the user */
614 if (sock->batch_start)
615 return add_to_wbuf(sock, buffer, len);
617 /* first write must be complete */
618 if (len != write(sock->fd, buffer, len))
620 RRDD_LOG(LOG_INFO, "send_response: could not write status message");
624 if (sock->wbuf != NULL && rc == RESP_OK)
627 while (wrote < sock->wbuf_len)
629 ssize_t wb = write(sock->fd, sock->wbuf + wrote, sock->wbuf_len - wrote);
632 RRDD_LOG(LOG_INFO, "send_response: could not write results");
639 free(sock->wbuf); sock->wbuf = NULL;
645 static void wipe_ci_values(cache_item_t *ci, time_t when)
649 ci->values_alloc = 0;
651 ci->last_flush_time = when;
652 if (config_write_jitter > 0)
653 ci->last_flush_time += (rrd_random() % config_write_jitter);
657 * remove a "cache_item_t" item from the queue.
658 * must hold 'cache_lock' when calling this
660 static void remove_from_queue(cache_item_t *ci) /* {{{ */
662 if (ci == NULL) return;
663 if ((ci->flags & CI_FLAGS_IN_QUEUE) == 0) return; /* not queued */
665 if (ci->prev == NULL)
666 cache_queue_head = ci->next; /* reset head */
668 ci->prev->next = ci->next;
670 if (ci->next == NULL)
671 cache_queue_tail = ci->prev; /* reset the tail */
673 ci->next->prev = ci->prev;
675 ci->next = ci->prev = NULL;
676 ci->flags &= ~CI_FLAGS_IN_QUEUE;
678 pthread_mutex_lock (&stats_lock);
679 assert (stats_queue_length > 0);
680 stats_queue_length--;
681 pthread_mutex_unlock (&stats_lock);
683 } /* }}} static void remove_from_queue */
685 /* free the resources associated with the cache_item_t
686 * must hold cache_lock when calling this function
688 static void *free_cache_item(cache_item_t *ci) /* {{{ */
690 if (ci == NULL) return NULL;
692 remove_from_queue(ci);
694 for (size_t i=0; i < ci->values_num; i++)
700 /* in case anyone is waiting */
701 pthread_cond_broadcast(&ci->flushed);
702 pthread_cond_destroy(&ci->flushed);
707 } /* }}} static void *free_cache_item */
710 * enqueue_cache_item:
711 * `cache_lock' must be acquired before calling this function!
713 static int enqueue_cache_item (cache_item_t *ci, /* {{{ */
719 if (ci->values_num == 0)
724 if (cache_queue_head == ci)
727 /* remove if further down in queue */
728 remove_from_queue(ci);
731 ci->next = cache_queue_head;
732 if (ci->next != NULL)
734 cache_queue_head = ci;
736 if (cache_queue_tail == NULL)
737 cache_queue_tail = cache_queue_head;
739 else /* (side == TAIL) */
741 /* We don't move values back in the list.. */
742 if (ci->flags & CI_FLAGS_IN_QUEUE)
745 assert (ci->next == NULL);
746 assert (ci->prev == NULL);
748 ci->prev = cache_queue_tail;
750 if (cache_queue_tail == NULL)
751 cache_queue_head = ci;
753 cache_queue_tail->next = ci;
755 cache_queue_tail = ci;
758 ci->flags |= CI_FLAGS_IN_QUEUE;
760 pthread_cond_signal(&queue_cond);
761 pthread_mutex_lock (&stats_lock);
762 stats_queue_length++;
763 pthread_mutex_unlock (&stats_lock);
766 } /* }}} int enqueue_cache_item */
769 * tree_callback_flush:
770 * Called via `g_tree_foreach' in `flush_thread_main'. `cache_lock' is held
771 * while this is in progress.
773 static gboolean tree_callback_flush (gpointer key, gpointer value, /* {{{ */
777 callback_flush_data_t *cfd;
779 ci = (cache_item_t *) value;
780 cfd = (callback_flush_data_t *) data;
782 if (ci->flags & CI_FLAGS_IN_QUEUE)
785 if (ci->values_num > 0
786 && (ci->last_flush_time <= cfd->abs_timeout || state != RUNNING))
788 enqueue_cache_item (ci, TAIL);
790 else if (((cfd->now - ci->last_flush_time) >= config_flush_interval)
791 && (ci->values_num <= 0))
793 assert ((char *) key == ci->file);
794 if (!rrd_add_ptr((void ***)&cfd->keys, &cfd->keys_num, (void *)key))
796 RRDD_LOG (LOG_ERR, "tree_callback_flush: rrd_add_ptrs failed.");
802 } /* }}} gboolean tree_callback_flush */
804 static int flush_old_values (int max_age)
806 callback_flush_data_t cfd;
809 memset (&cfd, 0, sizeof (cfd));
810 /* Pass the current time as user data so that we don't need to call
811 * `time' for each node. */
812 cfd.now = time (NULL);
817 cfd.abs_timeout = cfd.now - max_age;
819 cfd.abs_timeout = cfd.now + 2*config_write_jitter + 1;
821 /* `tree_callback_flush' will return the keys of all values that haven't
822 * been touched in the last `config_flush_interval' seconds in `cfd'.
823 * The char*'s in this array point to the same memory as ci->file, so we
824 * don't need to free them separately. */
825 g_tree_foreach (cache_tree, tree_callback_flush, (gpointer) &cfd);
827 for (k = 0; k < cfd.keys_num; k++)
829 gboolean status = g_tree_remove(cache_tree, cfd.keys[k]);
830 /* should never fail, since we have held the cache_lock
832 assert(status == TRUE);
835 if (cfd.keys != NULL)
842 } /* int flush_old_values */
844 static void *flush_thread_main (void UNUSED(*args)) /* {{{ */
847 struct timespec next_flush;
850 gettimeofday (&now, NULL);
851 next_flush.tv_sec = now.tv_sec + config_flush_interval;
852 next_flush.tv_nsec = 1000 * now.tv_usec;
854 pthread_mutex_lock(&cache_lock);
856 while (state == RUNNING)
858 gettimeofday (&now, NULL);
859 if ((now.tv_sec > next_flush.tv_sec)
860 || ((now.tv_sec == next_flush.tv_sec)
861 && ((1000 * now.tv_usec) > next_flush.tv_nsec)))
863 RRDD_LOG(LOG_DEBUG, "flushing old values");
865 /* Determine the time of the next cache flush. */
866 next_flush.tv_sec = now.tv_sec + config_flush_interval;
868 /* Flush all values that haven't been written in the last
869 * `config_write_interval' seconds. */
870 flush_old_values (config_write_interval);
872 /* unlock the cache while we rotate so we don't block incoming
873 * updates if the fsync() blocks on disk I/O */
874 pthread_mutex_unlock(&cache_lock);
876 pthread_mutex_lock(&cache_lock);
879 status = pthread_cond_timedwait(&flush_cond, &cache_lock, &next_flush);
880 if (status != 0 && status != ETIMEDOUT)
882 RRDD_LOG (LOG_ERR, "flush_thread_main: "
883 "pthread_cond_timedwait returned %i.", status);
887 if (config_flush_at_shutdown)
888 flush_old_values (-1); /* flush everything */
892 pthread_mutex_unlock(&cache_lock);
895 } /* void *flush_thread_main */
897 static void *queue_thread_main (void UNUSED(*args)) /* {{{ */
899 pthread_mutex_lock (&cache_lock);
901 while (state != SHUTDOWN
902 || (cache_queue_head != NULL && config_flush_at_shutdown))
910 /* Now, check if there's something to store away. If not, wait until
911 * something comes in. */
912 if (cache_queue_head == NULL)
914 status = pthread_cond_wait (&queue_cond, &cache_lock);
915 if ((status != 0) && (status != ETIMEDOUT))
917 RRDD_LOG (LOG_ERR, "queue_thread_main: "
918 "pthread_cond_wait returned %i.", status);
922 /* Check if a value has arrived. This may be NULL if we timed out or there
923 * was an interrupt such as a signal. */
924 if (cache_queue_head == NULL)
927 ci = cache_queue_head;
929 /* copy the relevant parts */
930 file = strdup (ci->file);
933 RRDD_LOG (LOG_ERR, "queue_thread_main: strdup failed.");
937 assert(ci->values != NULL);
938 assert(ci->values_num > 0);
941 values_num = ci->values_num;
943 wipe_ci_values(ci, time(NULL));
944 remove_from_queue(ci);
946 pthread_mutex_unlock (&cache_lock);
949 status = rrd_update_r (file, NULL, (int) values_num, (void *) values);
952 RRDD_LOG (LOG_NOTICE, "queue_thread_main: "
953 "rrd_update_r (%s) failed with status %i. (%s)",
954 file, status, rrd_get_error());
957 journal_write("wrote", file);
959 /* Search again in the tree. It's possible someone issued a "FORGET"
960 * while we were writing the update values. */
961 pthread_mutex_lock(&cache_lock);
962 ci = (cache_item_t *) g_tree_lookup(cache_tree, file);
964 pthread_cond_broadcast(&ci->flushed);
965 pthread_mutex_unlock(&cache_lock);
969 pthread_mutex_lock (&stats_lock);
970 stats_updates_written++;
971 stats_data_sets_written += values_num;
972 pthread_mutex_unlock (&stats_lock);
975 rrd_free_ptrs((void ***) &values, &values_num);
978 pthread_mutex_lock (&cache_lock);
980 pthread_mutex_unlock (&cache_lock);
983 } /* }}} void *queue_thread_main */
985 static int buffer_get_field (char **buffer_ret, /* {{{ */
986 size_t *buffer_size_ret, char **field_ret)
995 buffer = *buffer_ret;
997 buffer_size = *buffer_size_ret;
1001 if (buffer_size <= 0)
1004 /* This is ensured by `handle_request'. */
1005 assert (buffer[buffer_size - 1] == '\0');
1008 while (buffer_pos < buffer_size)
1010 /* Check for end-of-field or end-of-buffer */
1011 if (buffer[buffer_pos] == ' ' || buffer[buffer_pos] == '\0')
1013 field[field_size] = 0;
1019 /* Handle escaped characters. */
1020 else if (buffer[buffer_pos] == '\\')
1022 if (buffer_pos >= (buffer_size - 1))
1025 field[field_size] = buffer[buffer_pos];
1029 /* Normal operation */
1032 field[field_size] = buffer[buffer_pos];
1036 } /* while (buffer_pos < buffer_size) */
1041 *buffer_ret = buffer + buffer_pos;
1042 *buffer_size_ret = buffer_size - buffer_pos;
1046 } /* }}} int buffer_get_field */
1048 /* if we're restricting writes to the base directory,
1049 * check whether the file falls within the dir
1050 * returns 1 if OK, otherwise 0
1052 static int check_file_access (const char *file, listen_socket_t *sock) /* {{{ */
1054 assert(file != NULL);
1056 if (!config_write_base_only
1057 || JOURNAL_REPLAY(sock)
1058 || config_base_dir == NULL)
1061 if (strstr(file, "../") != NULL) goto err;
1063 /* relative paths without "../" are ok */
1064 if (*file != '/') return 1;
1066 /* file must be of the format base + "/" + <1+ char filename> */
1067 if (strlen(file) < _config_base_dir_len + 2) goto err;
1068 if (strncmp(file, config_base_dir, _config_base_dir_len) != 0) goto err;
1069 if (*(file + _config_base_dir_len) != '/') goto err;
1074 if (sock != NULL && sock->fd >= 0)
1075 send_response(sock, RESP_ERR, "%s\n", rrd_strerror(EACCES));
1078 } /* }}} static int check_file_access */
1080 /* when using a base dir, convert relative paths to absolute paths.
1081 * if necessary, modifies the "filename" pointer to point
1082 * to the new path created in "tmp". "tmp" is provided
1083 * by the caller and sizeof(tmp) must be >= PATH_MAX.
1085 * this allows us to optimize for the expected case (absolute path)
1088 static void get_abs_path(char **filename, char *tmp)
1090 assert(tmp != NULL);
1091 assert(filename != NULL && *filename != NULL);
1093 if (config_base_dir == NULL || **filename == '/')
1096 snprintf(tmp, PATH_MAX, "%s/%s", config_base_dir, *filename);
1098 } /* }}} static int get_abs_path */
1100 static int flush_file (const char *filename) /* {{{ */
1104 pthread_mutex_lock (&cache_lock);
1106 ci = (cache_item_t *) g_tree_lookup (cache_tree, filename);
1109 pthread_mutex_unlock (&cache_lock);
1113 if (ci->values_num > 0)
1115 /* Enqueue at head */
1116 enqueue_cache_item (ci, HEAD);
1117 pthread_cond_wait(&ci->flushed, &cache_lock);
1120 /* DO NOT DO ANYTHING WITH ci HERE!! The entry
1121 * may have been purged during our cond_wait() */
1123 pthread_mutex_unlock(&cache_lock);
1126 } /* }}} int flush_file */
1128 static int syntax_error(listen_socket_t *sock, command_t *cmd) /* {{{ */
1130 char *err = "Syntax error.\n";
1132 if (cmd && cmd->syntax)
1135 return send_response(sock, RESP_ERR, "Usage: %s", err);
1136 } /* }}} static int syntax_error() */
1138 static int handle_request_stats (HANDLER_PROTO) /* {{{ */
1140 uint64_t copy_queue_length;
1141 uint64_t copy_updates_received;
1142 uint64_t copy_flush_received;
1143 uint64_t copy_updates_written;
1144 uint64_t copy_data_sets_written;
1145 uint64_t copy_journal_bytes;
1146 uint64_t copy_journal_rotate;
1148 uint64_t tree_nodes_number;
1149 uint64_t tree_depth;
1151 pthread_mutex_lock (&stats_lock);
1152 copy_queue_length = stats_queue_length;
1153 copy_updates_received = stats_updates_received;
1154 copy_flush_received = stats_flush_received;
1155 copy_updates_written = stats_updates_written;
1156 copy_data_sets_written = stats_data_sets_written;
1157 copy_journal_bytes = stats_journal_bytes;
1158 copy_journal_rotate = stats_journal_rotate;
1159 pthread_mutex_unlock (&stats_lock);
1161 pthread_mutex_lock (&cache_lock);
1162 tree_nodes_number = (uint64_t) g_tree_nnodes (cache_tree);
1163 tree_depth = (uint64_t) g_tree_height (cache_tree);
1164 pthread_mutex_unlock (&cache_lock);
1166 add_response_info(sock,
1167 "QueueLength: %"PRIu64"\n", copy_queue_length);
1168 add_response_info(sock,
1169 "UpdatesReceived: %"PRIu64"\n", copy_updates_received);
1170 add_response_info(sock,
1171 "FlushesReceived: %"PRIu64"\n", copy_flush_received);
1172 add_response_info(sock,
1173 "UpdatesWritten: %"PRIu64"\n", copy_updates_written);
1174 add_response_info(sock,
1175 "DataSetsWritten: %"PRIu64"\n", copy_data_sets_written);
1176 add_response_info(sock, "TreeNodesNumber: %"PRIu64"\n", tree_nodes_number);
1177 add_response_info(sock, "TreeDepth: %"PRIu64"\n", tree_depth);
1178 add_response_info(sock, "JournalBytes: %"PRIu64"\n", copy_journal_bytes);
1179 add_response_info(sock, "JournalRotate: %"PRIu64"\n", copy_journal_rotate);
1181 send_response(sock, RESP_OK, "Statistics follow\n");
1184 } /* }}} int handle_request_stats */
1186 static int handle_request_flush (HANDLER_PROTO) /* {{{ */
1188 char *file, file_tmp[PATH_MAX];
1191 status = buffer_get_field (&buffer, &buffer_size, &file);
1194 return syntax_error(sock,cmd);
1198 pthread_mutex_lock(&stats_lock);
1199 stats_flush_received++;
1200 pthread_mutex_unlock(&stats_lock);
1202 get_abs_path(&file, file_tmp);
1203 if (!check_file_access(file, sock)) return 0;
1205 status = flush_file (file);
1207 return send_response(sock, RESP_OK, "Successfully flushed %s.\n", file);
1208 else if (status == ENOENT)
1210 /* no file in our tree; see whether it exists at all */
1211 struct stat statbuf;
1213 memset(&statbuf, 0, sizeof(statbuf));
1214 if (stat(file, &statbuf) == 0 && S_ISREG(statbuf.st_mode))
1215 return send_response(sock, RESP_OK, "Nothing to flush: %s.\n", file);
1217 return send_response(sock, RESP_ERR, "No such file: %s.\n", file);
1219 else if (status < 0)
1220 return send_response(sock, RESP_ERR, "Internal error.\n");
1222 return send_response(sock, RESP_ERR, "Failed with status %i.\n", status);
1227 } /* }}} int handle_request_flush */
1229 static int handle_request_flushall(HANDLER_PROTO) /* {{{ */
1231 RRDD_LOG(LOG_DEBUG, "Received FLUSHALL");
1233 pthread_mutex_lock(&cache_lock);
1234 flush_old_values(-1);
1235 pthread_mutex_unlock(&cache_lock);
1237 return send_response(sock, RESP_OK, "Started flush.\n");
1238 } /* }}} static int handle_request_flushall */
1240 static int handle_request_pending(HANDLER_PROTO) /* {{{ */
1243 char *file, file_tmp[PATH_MAX];
1246 status = buffer_get_field(&buffer, &buffer_size, &file);
1248 return syntax_error(sock,cmd);
1250 get_abs_path(&file, file_tmp);
1252 pthread_mutex_lock(&cache_lock);
1253 ci = g_tree_lookup(cache_tree, file);
1256 pthread_mutex_unlock(&cache_lock);
1257 return send_response(sock, RESP_ERR, "%s\n", rrd_strerror(ENOENT));
1260 for (size_t i=0; i < ci->values_num; i++)
1261 add_response_info(sock, "%s\n", ci->values[i]);
1263 pthread_mutex_unlock(&cache_lock);
1264 return send_response(sock, RESP_OK, "updates pending\n");
1265 } /* }}} static int handle_request_pending */
1267 static int handle_request_forget(HANDLER_PROTO) /* {{{ */
1271 char *file, file_tmp[PATH_MAX];
1273 status = buffer_get_field(&buffer, &buffer_size, &file);
1275 return syntax_error(sock,cmd);
1277 get_abs_path(&file, file_tmp);
1278 if (!check_file_access(file, sock)) return 0;
1280 pthread_mutex_lock(&cache_lock);
1281 found = g_tree_remove(cache_tree, file);
1282 pthread_mutex_unlock(&cache_lock);
1286 if (!JOURNAL_REPLAY(sock))
1287 journal_write("forget", file);
1289 return send_response(sock, RESP_OK, "Gone!\n");
1292 return send_response(sock, RESP_ERR, "%s\n", rrd_strerror(ENOENT));
1296 } /* }}} static int handle_request_forget */
1298 static int handle_request_queue (HANDLER_PROTO) /* {{{ */
1302 pthread_mutex_lock(&cache_lock);
1304 ci = cache_queue_head;
1307 add_response_info(sock, "%d %s\n", ci->values_num, ci->file);
1311 pthread_mutex_unlock(&cache_lock);
1313 return send_response(sock, RESP_OK, "in queue.\n");
1314 } /* }}} int handle_request_queue */
1316 static int handle_request_update (HANDLER_PROTO) /* {{{ */
1318 char *file, file_tmp[PATH_MAX];
1321 char orig_buf[CMD_MAX];
1325 /* save it for the journal later */
1326 if (!JOURNAL_REPLAY(sock))
1327 strncpy(orig_buf, buffer, buffer_size);
1329 status = buffer_get_field (&buffer, &buffer_size, &file);
1331 return syntax_error(sock,cmd);
1333 pthread_mutex_lock(&stats_lock);
1334 stats_updates_received++;
1335 pthread_mutex_unlock(&stats_lock);
1337 get_abs_path(&file, file_tmp);
1338 if (!check_file_access(file, sock)) return 0;
1340 pthread_mutex_lock (&cache_lock);
1341 ci = g_tree_lookup (cache_tree, file);
1343 if (ci == NULL) /* {{{ */
1345 struct stat statbuf;
1348 /* don't hold the lock while we setup; stat(2) might block */
1349 pthread_mutex_unlock(&cache_lock);
1351 memset (&statbuf, 0, sizeof (statbuf));
1352 status = stat (file, &statbuf);
1355 RRDD_LOG (LOG_NOTICE, "handle_request_update: stat (%s) failed.", file);
1358 if (status == ENOENT)
1359 return send_response(sock, RESP_ERR, "No such file: %s\n", file);
1361 return send_response(sock, RESP_ERR,
1362 "stat failed with error %i.\n", status);
1364 if (!S_ISREG (statbuf.st_mode))
1365 return send_response(sock, RESP_ERR, "Not a regular file: %s\n", file);
1367 if (access(file, R_OK|W_OK) != 0)
1368 return send_response(sock, RESP_ERR, "Cannot read/write %s: %s\n",
1369 file, rrd_strerror(errno));
1371 ci = (cache_item_t *) malloc (sizeof (cache_item_t));
1374 RRDD_LOG (LOG_ERR, "handle_request_update: malloc failed.");
1376 return send_response(sock, RESP_ERR, "malloc failed.\n");
1378 memset (ci, 0, sizeof (cache_item_t));
1380 ci->file = strdup (file);
1381 if (ci->file == NULL)
1384 RRDD_LOG (LOG_ERR, "handle_request_update: strdup failed.");
1386 return send_response(sock, RESP_ERR, "strdup failed.\n");
1389 wipe_ci_values(ci, now);
1390 ci->flags = CI_FLAGS_IN_TREE;
1391 pthread_cond_init(&ci->flushed, NULL);
1393 pthread_mutex_lock(&cache_lock);
1395 /* another UPDATE might have added this entry in the meantime */
1396 tmp = g_tree_lookup (cache_tree, file);
1398 g_tree_replace (cache_tree, (void *) ci->file, (void *) ci);
1401 free_cache_item (ci);
1405 /* state may have changed while we were unlocked */
1406 if (state == SHUTDOWN)
1409 assert (ci != NULL);
1411 /* don't re-write updates in replay mode */
1412 if (!JOURNAL_REPLAY(sock))
1413 journal_write("update", orig_buf);
1415 while (buffer_size > 0)
1421 status = buffer_get_field (&buffer, &buffer_size, &value);
1424 RRDD_LOG (LOG_INFO, "handle_request_update: Error reading field.");
1428 /* make sure update time is always moving forward */
1429 stamp = strtol(value, &eostamp, 10);
1430 if (eostamp == value || eostamp == NULL || *eostamp != ':')
1432 pthread_mutex_unlock(&cache_lock);
1433 return send_response(sock, RESP_ERR,
1434 "Cannot find timestamp in '%s'!\n", value);
1436 else if (stamp <= ci->last_update_stamp)
1438 pthread_mutex_unlock(&cache_lock);
1439 return send_response(sock, RESP_ERR,
1440 "illegal attempt to update using time %ld when last"
1441 " update time is %ld (minimum one second step)\n",
1442 stamp, ci->last_update_stamp);
1445 ci->last_update_stamp = stamp;
1447 if (!rrd_add_strdup_chunk(&ci->values, &ci->values_num, value,
1448 &ci->values_alloc, config_alloc_chunk))
1450 RRDD_LOG (LOG_ERR, "handle_request_update: rrd_add_strdup failed.");
1457 if (((now - ci->last_flush_time) >= config_write_interval)
1458 && ((ci->flags & CI_FLAGS_IN_QUEUE) == 0)
1459 && (ci->values_num > 0))
1461 enqueue_cache_item (ci, TAIL);
1464 pthread_mutex_unlock (&cache_lock);
1467 return send_response(sock, RESP_ERR, "No values updated.\n");
1469 return send_response(sock, RESP_OK,
1470 "errors, enqueued %i value(s).\n", values_num);
1475 } /* }}} int handle_request_update */
1477 static int handle_request_fetch (HANDLER_PROTO) /* {{{ */
1488 unsigned long ds_cnt;
1495 rrd_value_t *data_ptr;
1502 /* Read the arguments */
1505 status = buffer_get_field (&buffer, &buffer_size, &file);
1509 status = buffer_get_field (&buffer, &buffer_size, &cf);
1513 status = buffer_get_field (&buffer, &buffer_size, &start_str);
1521 status = buffer_get_field (&buffer, &buffer_size, &end_str);
1531 return (syntax_error(sock,cmd));
1533 status = flush_file (file);
1534 if ((status != 0) && (status != ENOENT))
1535 return (send_response (sock, RESP_ERR,
1536 "flush_file (%s) failed with status %i.\n", file, status));
1538 t = time (NULL); /* "now" */
1540 /* Parse start time */
1541 if (start_str != NULL)
1548 value = strtol (start_str, &endptr, /* base = */ 0);
1549 if ((endptr == start_str) || (errno != 0))
1550 return (send_response(sock, RESP_ERR,
1551 "Cannot parse start time `%s': Only simple integers are allowed.\n",
1555 start_tm = (time_t) value;
1557 start_tm = (time_t) (t + value);
1561 start_tm = t - 86400;
1564 /* Parse end time */
1565 if (end_str != NULL)
1572 value = strtol (end_str, &endptr, /* base = */ 0);
1573 if ((endptr == end_str) || (errno != 0))
1574 return (send_response(sock, RESP_ERR,
1575 "Cannot parse end time `%s': Only simple integers are allowed.\n",
1579 end_tm = (time_t) value;
1581 end_tm = (time_t) (t + value);
1593 status = rrd_fetch_r (file, cf, &start_tm, &end_tm, &step,
1594 &ds_cnt, &ds_namv, &data);
1596 return (send_response(sock, RESP_ERR,
1597 "rrd_fetch_r failed: %s\n", rrd_get_error ()));
1599 add_response_info (sock, "FlushVersion: %lu\n", 1);
1600 add_response_info (sock, "Start: %lu\n", (unsigned long) start_tm);
1601 add_response_info (sock, "End: %lu\n", (unsigned long) end_tm);
1602 add_response_info (sock, "Step: %lu\n", step);
1603 add_response_info (sock, "DSCount: %lu\n", ds_cnt);
1605 #define SSTRCAT(buffer,str,buffer_fill) do { \
1606 size_t str_len = strlen (str); \
1607 if ((buffer_fill + str_len) > sizeof (buffer)) \
1608 str_len = sizeof (buffer) - buffer_fill; \
1609 if (str_len > 0) { \
1610 strncpy (buffer + buffer_fill, str, str_len); \
1611 buffer_fill += str_len; \
1612 assert (buffer_fill <= sizeof (buffer)); \
1613 if (buffer_fill == sizeof (buffer)) \
1614 buffer[buffer_fill - 1] = 0; \
1616 buffer[buffer_fill] = 0; \
1620 { /* Add list of DS names */
1622 size_t linebuf_fill;
1624 memset (linebuf, 0, sizeof (linebuf));
1626 for (i = 0; i < ds_cnt; i++)
1629 SSTRCAT (linebuf, " ", linebuf_fill);
1630 SSTRCAT (linebuf, ds_namv[i], linebuf_fill);
1631 rrd_freemem(ds_namv[i]);
1633 rrd_freemem(ds_namv);
1634 add_response_info (sock, "DSName: %s\n", linebuf);
1637 /* Add the actual data */
1640 for (t = start_tm + step; t <= end_tm; t += step)
1643 size_t linebuf_fill;
1646 memset (linebuf, 0, sizeof (linebuf));
1648 for (i = 0; i < ds_cnt; i++)
1650 snprintf (tmp, sizeof (tmp), " %0.10e", *data_ptr);
1651 tmp[sizeof (tmp) - 1] = 0;
1652 SSTRCAT (linebuf, tmp, linebuf_fill);
1657 add_response_info (sock, "%10lu:%s\n", (unsigned long) t, linebuf);
1661 return (send_response (sock, RESP_OK, "Success\n"));
1663 } /* }}} int handle_request_fetch */
1665 /* we came across a "WROTE" entry during journal replay.
1666 * throw away any values that we have accumulated for this file
1668 static int handle_request_wrote (HANDLER_PROTO) /* {{{ */
1671 const char *file = buffer;
1673 pthread_mutex_lock(&cache_lock);
1675 ci = g_tree_lookup(cache_tree, file);
1678 pthread_mutex_unlock(&cache_lock);
1683 rrd_free_ptrs((void ***) &ci->values, &ci->values_num);
1685 wipe_ci_values(ci, now);
1686 remove_from_queue(ci);
1688 pthread_mutex_unlock(&cache_lock);
1690 } /* }}} int handle_request_wrote */
1692 /* start "BATCH" processing */
1693 static int batch_start (HANDLER_PROTO) /* {{{ */
1696 if (sock->batch_start)
1697 return send_response(sock, RESP_ERR, "Already in BATCH\n");
1699 status = send_response(sock, RESP_OK,
1700 "Go ahead. End with dot '.' on its own line.\n");
1701 sock->batch_start = time(NULL);
1702 sock->batch_cmd = 0;
1705 } /* }}} static int batch_start */
1707 /* finish "BATCH" processing and return results to the client */
1708 static int batch_done (HANDLER_PROTO) /* {{{ */
1710 assert(sock->batch_start);
1711 sock->batch_start = 0;
1712 sock->batch_cmd = 0;
1713 return send_response(sock, RESP_OK, "errors\n");
1714 } /* }}} static int batch_done */
1716 static int handle_request_quit (HANDLER_PROTO) /* {{{ */
1719 } /* }}} static int handle_request_quit */
1721 static command_t list_of_commands[] = { /* {{{ */
1724 handle_request_update,
1726 "UPDATE <filename> <values> [<values> ...]\n"
1728 "Adds the given file to the internal cache if it is not yet known and\n"
1729 "appends the given value(s) to the entry. See the rrdcached(1) manpage\n"
1732 "Each <values> has the following form:\n"
1733 " <values> = <time>:<value>[:<value>[...]]\n"
1734 "See the rrdupdate(1) manpage for details.\n"
1738 handle_request_wrote,
1739 CMD_CONTEXT_JOURNAL,
1745 handle_request_flush,
1746 CMD_CONTEXT_CLIENT | CMD_CONTEXT_BATCH,
1747 "FLUSH <filename>\n"
1749 "Adds the given filename to the head of the update queue and returns\n"
1750 "after it has been dequeued.\n"
1754 handle_request_flushall,
1758 "Triggers writing of all pending updates. Returns immediately.\n"
1762 handle_request_pending,
1764 "PENDING <filename>\n"
1766 "Shows any 'pending' updates for a file, in order.\n"
1767 "The updates shown have not yet been written to the underlying RRD file.\n"
1771 handle_request_forget,
1773 "FORGET <filename>\n"
1775 "Removes the file completely from the cache.\n"
1776 "Any pending updates for the file will be lost.\n"
1780 handle_request_queue,
1784 "Shows all files in the output queue.\n"
1785 "The output is zero or more lines in the following format:\n"
1786 "(where <num_vals> is the number of values to be written)\n"
1788 "<num_vals> <filename>\n"
1792 handle_request_stats,
1796 "Returns some performance counters, see the rrdcached(1) manpage for\n"
1797 "a description of the values.\n"
1801 handle_request_help,
1803 "HELP [<command>]\n",
1804 NULL, /* special! */
1812 "The 'BATCH' command permits the client to initiate a bulk load\n"
1813 " of commands to rrdcached.\n"
1818 " server: 0 Go ahead. End with dot '.' on its own line.\n"
1819 " client: command #1\n"
1820 " client: command #2\n"
1821 " client: ... and so on\n"
1823 " server: 2 errors\n"
1824 " server: 7 message for command #7\n"
1825 " server: 9 message for command #9\n"
1827 "For more information, consult the rrdcached(1) documentation.\n"
1830 ".", /* BATCH terminator */
1838 handle_request_fetch,
1840 "FETCH <file> <CF> [<start> [<end>]]\n"
1842 "The 'FETCH' can be used by the client to retrieve values from an RRD file.\n"
1846 handle_request_quit,
1847 CMD_CONTEXT_CLIENT | CMD_CONTEXT_BATCH,
1850 "Disconnect from rrdcached.\n"
1852 }; /* }}} command_t list_of_commands[] */
1853 static size_t list_of_commands_len = sizeof (list_of_commands)
1854 / sizeof (list_of_commands[0]);
1856 static command_t *find_command(char *cmd)
1860 for (i = 0; i < list_of_commands_len; i++)
1861 if (strcasecmp(cmd, list_of_commands[i].cmd) == 0)
1862 return (&list_of_commands[i]);
1866 /* We currently use the index in the `list_of_commands' array as a bit position
1867 * in `listen_socket_t.permissions'. This member schould NEVER be accessed from
1868 * outside these functions so that switching to a more elegant storage method
1869 * is easily possible. */
1870 static ssize_t find_command_index (const char *cmd) /* {{{ */
1874 for (i = 0; i < list_of_commands_len; i++)
1875 if (strcasecmp(cmd, list_of_commands[i].cmd) == 0)
1876 return ((ssize_t) i);
1878 } /* }}} ssize_t find_command_index */
1880 static int socket_permission_check (listen_socket_t *sock, /* {{{ */
1885 if (JOURNAL_REPLAY(sock))
1891 if ((strcasecmp ("QUIT", cmd) == 0)
1892 || (strcasecmp ("HELP", cmd) == 0))
1894 else if (strcmp (".", cmd) == 0)
1897 i = find_command_index (cmd);
1902 if ((sock->permissions & (1 << i)) != 0)
1905 } /* }}} int socket_permission_check */
1907 static int socket_permission_add (listen_socket_t *sock, /* {{{ */
1912 i = find_command_index (cmd);
1917 sock->permissions |= (1 << i);
1919 } /* }}} int socket_permission_add */
1921 /* check whether commands are received in the expected context */
1922 static int command_check_context(listen_socket_t *sock, command_t *cmd)
1924 if (JOURNAL_REPLAY(sock))
1925 return (cmd->context & CMD_CONTEXT_JOURNAL);
1926 else if (sock->batch_start)
1927 return (cmd->context & CMD_CONTEXT_BATCH);
1929 return (cmd->context & CMD_CONTEXT_CLIENT);
1935 static int handle_request_help (HANDLER_PROTO) /* {{{ */
1940 command_t *help = NULL;
1942 status = buffer_get_field (&buffer, &buffer_size, &cmd_str);
1944 help = find_command(cmd_str);
1946 if (help && (help->syntax || help->help))
1950 snprintf(tmp, sizeof(tmp)-1, "Help for %s\n", help->cmd);
1954 add_response_info(sock, "Usage: %s\n", help->syntax);
1957 add_response_info(sock, "%s\n", help->help);
1963 resp_txt = "Command overview\n";
1965 for (i = 0; i < list_of_commands_len; i++)
1967 if (list_of_commands[i].syntax == NULL)
1969 add_response_info (sock, "%s", list_of_commands[i].syntax);
1973 return send_response(sock, RESP_OK, resp_txt);
1974 } /* }}} int handle_request_help */
1976 static int handle_request (DISPATCH_PROTO) /* {{{ */
1978 char *buffer_ptr = buffer;
1979 char *cmd_str = NULL;
1980 command_t *cmd = NULL;
1983 assert (buffer[buffer_size - 1] == '\0');
1985 status = buffer_get_field (&buffer_ptr, &buffer_size, &cmd_str);
1988 RRDD_LOG (LOG_INFO, "handle_request: Unable parse command.");
1992 if (sock != NULL && sock->batch_start)
1995 cmd = find_command(cmd_str);
1997 return send_response(sock, RESP_ERR, "Unknown command: %s\n", cmd_str);
1999 if (!socket_permission_check (sock, cmd->cmd))
2000 return send_response(sock, RESP_ERR, "Permission denied.\n");
2002 if (!command_check_context(sock, cmd))
2003 return send_response(sock, RESP_ERR, "Can't use '%s' here.\n", cmd_str);
2005 return cmd->handler(cmd, sock, now, buffer_ptr, buffer_size);
2006 } /* }}} int handle_request */
2008 static void journal_set_free (journal_set *js) /* {{{ */
2013 rrd_free_ptrs((void ***) &js->files, &js->files_num);
2016 } /* }}} journal_set_free */
2018 static void journal_set_remove (journal_set *js) /* {{{ */
2023 for (uint i=0; i < js->files_num; i++)
2025 RRDD_LOG(LOG_DEBUG, "removing old journal %s", js->files[i]);
2026 unlink(js->files[i]);
2028 } /* }}} journal_set_remove */
2030 /* close current journal file handle.
2031 * MUST hold journal_lock before calling */
2032 static void journal_close(void) /* {{{ */
2034 if (journal_fh != NULL)
2036 if (fclose(journal_fh) != 0)
2037 RRDD_LOG(LOG_ERR, "cannot close journal: %s", rrd_strerror(errno));
2042 } /* }}} journal_close */
2044 /* MUST hold journal_lock before calling */
2045 static void journal_new_file(void) /* {{{ */
2049 char new_file[PATH_MAX + 1];
2051 assert(journal_dir != NULL);
2052 assert(journal_cur != NULL);
2056 gettimeofday(&now, NULL);
2057 /* this format assures that the files sort in strcmp() order */
2058 snprintf(new_file, PATH_MAX, "%s/%s.%010d.%06d",
2059 journal_dir, JOURNAL_BASE, (int)now.tv_sec, (int)now.tv_usec);
2061 new_fd = open(new_file, O_WRONLY|O_CREAT|O_APPEND,
2062 S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH);
2066 journal_fh = fdopen(new_fd, "a");
2067 if (journal_fh == NULL)
2070 journal_size = ftell(journal_fh);
2071 RRDD_LOG(LOG_DEBUG, "started new journal %s", new_file);
2073 /* record the file in the journal set */
2074 rrd_add_strdup(&journal_cur->files, &journal_cur->files_num, new_file);
2080 "JOURNALING DISABLED: Error while trying to create %s : %s",
2081 new_file, rrd_strerror(errno));
2083 "JOURNALING DISABLED: All values will be flushed at shutdown");
2086 config_flush_at_shutdown = 1;
2088 } /* }}} journal_new_file */
2090 /* MUST NOT hold journal_lock before calling this */
2091 static void journal_rotate(void) /* {{{ */
2093 journal_set *old_js = NULL;
2095 if (journal_dir == NULL)
2098 RRDD_LOG(LOG_DEBUG, "rotating journals");
2100 pthread_mutex_lock(&stats_lock);
2101 ++stats_journal_rotate;
2102 pthread_mutex_unlock(&stats_lock);
2104 pthread_mutex_lock(&journal_lock);
2108 /* rotate the journal sets */
2109 old_js = journal_old;
2110 journal_old = journal_cur;
2111 journal_cur = calloc(1, sizeof(journal_set));
2113 if (journal_cur != NULL)
2116 RRDD_LOG(LOG_CRIT, "journal_rotate: malloc(journal_set) failed\n");
2118 pthread_mutex_unlock(&journal_lock);
2120 journal_set_remove(old_js);
2121 journal_set_free (old_js);
2123 } /* }}} static void journal_rotate */
2125 /* MUST hold journal_lock when calling */
2126 static void journal_done(void) /* {{{ */
2128 if (journal_cur == NULL)
2133 if (config_flush_at_shutdown)
2135 RRDD_LOG(LOG_INFO, "removing journals");
2136 journal_set_remove(journal_old);
2137 journal_set_remove(journal_cur);
2141 RRDD_LOG(LOG_INFO, "expedited shutdown; "
2142 "journals will be used at next startup");
2145 journal_set_free(journal_cur);
2146 journal_set_free(journal_old);
2149 } /* }}} static void journal_done */
2151 static int journal_write(char *cmd, char *args) /* {{{ */
2155 if (journal_fh == NULL)
2158 pthread_mutex_lock(&journal_lock);
2159 chars = fprintf(journal_fh, "%s %s\n", cmd, args);
2160 journal_size += chars;
2162 if (journal_size > JOURNAL_MAX)
2165 pthread_mutex_unlock(&journal_lock);
2169 pthread_mutex_lock(&stats_lock);
2170 stats_journal_bytes += chars;
2171 pthread_mutex_unlock(&stats_lock);
2175 } /* }}} static int journal_write */
2177 static int journal_replay (const char *file) /* {{{ */
2183 char entry[CMD_MAX];
2186 if (file == NULL) return 0;
2189 char *reason = "unknown error";
2191 struct stat statbuf;
2193 memset(&statbuf, 0, sizeof(statbuf));
2194 if (stat(file, &statbuf) != 0)
2196 reason = "stat error";
2199 else if (!S_ISREG(statbuf.st_mode))
2201 reason = "not a regular file";
2204 if (statbuf.st_uid != daemon_uid)
2206 reason = "not owned by daemon user";
2209 if (statbuf.st_mode & (S_IWGRP|S_IWOTH))
2211 reason = "must not be user/group writable";
2217 RRDD_LOG(LOG_ERR, "journal_replay: %s : %s (%s)",
2218 file, rrd_strerror(status), reason);
2223 fh = fopen(file, "r");
2226 if (errno != ENOENT)
2227 RRDD_LOG(LOG_ERR, "journal_replay: cannot open journal file: '%s' (%s)",
2228 file, rrd_strerror(errno));
2232 RRDD_LOG(LOG_NOTICE, "replaying from journal: %s", file);
2241 if (fgets(entry, sizeof(entry), fh) == NULL)
2243 entry_len = strlen(entry);
2245 /* check \n termination in case journal writing crashed mid-line */
2248 else if (entry[entry_len - 1] != '\n')
2250 RRDD_LOG(LOG_NOTICE, "Malformed journal entry at line %"PRIu64, line);
2255 entry[entry_len - 1] = '\0';
2257 if (handle_request(NULL, now, entry, entry_len) == 0)
2265 RRDD_LOG(LOG_INFO, "Replayed %d entries (%d failures)",
2266 entry_cnt, fail_cnt);
2268 return entry_cnt > 0 ? 1 : 0;
2269 } /* }}} static int journal_replay */
2271 static int journal_sort(const void *v1, const void *v2)
2273 char **jn1 = (char **) v1;
2274 char **jn2 = (char **) v2;
2276 return strcmp(*jn1,*jn2);
2279 static void journal_init(void) /* {{{ */
2281 int had_journal = 0;
2283 struct dirent *dent;
2284 char path[PATH_MAX+1];
2286 if (journal_dir == NULL) return;
2288 pthread_mutex_lock(&journal_lock);
2290 journal_cur = calloc(1, sizeof(journal_set));
2291 if (journal_cur == NULL)
2293 RRDD_LOG(LOG_CRIT, "journal_rotate: malloc(journal_set) failed\n");
2297 RRDD_LOG(LOG_INFO, "checking for journal files");
2299 /* Handle old journal files during transition. This gives them the
2300 * correct sort order. TODO: remove after first release
2303 char old_path[PATH_MAX+1];
2304 snprintf(old_path, PATH_MAX, "%s/%s", journal_dir, JOURNAL_BASE ".old" );
2305 snprintf(path, PATH_MAX, "%s/%s", journal_dir, JOURNAL_BASE ".0000");
2306 rename(old_path, path);
2308 snprintf(old_path, PATH_MAX, "%s/%s", journal_dir, JOURNAL_BASE );
2309 snprintf(path, PATH_MAX, "%s/%s", journal_dir, JOURNAL_BASE ".0001");
2310 rename(old_path, path);
2313 dir = opendir(journal_dir);
2315 RRDD_LOG(LOG_CRIT, "journal_init: opendir(%s) failed\n", journal_dir);
2318 while ((dent = readdir(dir)) != NULL)
2320 /* looks like a journal file? */
2321 if (strncmp(dent->d_name, JOURNAL_BASE, strlen(JOURNAL_BASE)))
2324 snprintf(path, PATH_MAX, "%s/%s", journal_dir, dent->d_name);
2326 if (!rrd_add_strdup(&journal_cur->files, &journal_cur->files_num, path))
2328 RRDD_LOG(LOG_CRIT, "journal_init: cannot add journal file %s!",
2335 qsort(journal_cur->files, journal_cur->files_num,
2336 sizeof(journal_cur->files[0]), journal_sort);
2338 for (uint i=0; i < journal_cur->files_num; i++)
2339 had_journal += journal_replay(journal_cur->files[i]);
2343 /* it must have been a crash. start a flush */
2344 if (had_journal && config_flush_at_shutdown)
2345 flush_old_values(-1);
2347 pthread_mutex_unlock(&journal_lock);
2349 RRDD_LOG(LOG_INFO, "journal processing complete");
2351 } /* }}} static void journal_init */
2353 static void free_listen_socket(listen_socket_t *sock) /* {{{ */
2355 assert(sock != NULL);
2357 free(sock->rbuf); sock->rbuf = NULL;
2358 free(sock->wbuf); sock->wbuf = NULL;
2360 } /* }}} void free_listen_socket */
2362 static void close_connection(listen_socket_t *sock) /* {{{ */
2370 free_listen_socket(sock);
2372 } /* }}} void close_connection */
2374 static void *connection_thread_main (void *args) /* {{{ */
2376 listen_socket_t *sock;
2379 sock = (listen_socket_t *) args;
2382 /* init read buffers */
2383 sock->next_read = sock->next_cmd = 0;
2384 sock->rbuf = malloc(RBUF_SIZE);
2385 if (sock->rbuf == NULL)
2387 RRDD_LOG(LOG_ERR, "connection_thread_main: cannot malloc read buffer");
2388 close_connection(sock);
2392 pthread_mutex_lock (&connection_threads_lock);
2393 connection_threads_num++;
2394 pthread_mutex_unlock (&connection_threads_lock);
2396 while (state == RUNNING)
2403 struct pollfd pollfd;
2407 pollfd.events = POLLIN | POLLPRI;
2410 status = poll (&pollfd, 1, /* timeout = */ 500);
2411 if (state != RUNNING)
2413 else if (status == 0) /* timeout */
2415 else if (status < 0) /* error */
2418 if (status != EINTR)
2419 RRDD_LOG (LOG_ERR, "connection_thread_main: poll(2) failed.");
2423 if ((pollfd.revents & POLLHUP) != 0) /* normal shutdown */
2425 else if ((pollfd.revents & (POLLIN | POLLPRI)) == 0)
2427 RRDD_LOG (LOG_WARNING, "connection_thread_main: "
2428 "poll(2) returned something unexpected: %#04hx",
2433 rbytes = read(fd, sock->rbuf + sock->next_read,
2434 RBUF_SIZE - sock->next_read);
2437 RRDD_LOG(LOG_ERR, "connection_thread_main: read() failed.");
2440 else if (rbytes == 0)
2443 sock->next_read += rbytes;
2445 if (sock->batch_start)
2446 now = sock->batch_start;
2450 while ((cmd = next_cmd(sock, &cmd_len)) != NULL)
2452 status = handle_request (sock, now, cmd, cmd_len+1);
2459 close_connection(sock);
2461 /* Remove this thread from the connection threads list */
2462 pthread_mutex_lock (&connection_threads_lock);
2463 connection_threads_num--;
2464 if (connection_threads_num <= 0)
2465 pthread_cond_broadcast(&connection_threads_done);
2466 pthread_mutex_unlock (&connection_threads_lock);
2469 } /* }}} void *connection_thread_main */
2471 static int open_listen_socket_unix (const listen_socket_t *sock) /* {{{ */
2474 struct sockaddr_un sa;
2475 listen_socket_t *temp;
2478 char *path_copy, *dir;
2481 if (strncmp(path, "unix:", strlen("unix:")) == 0)
2482 path += strlen("unix:");
2484 /* dirname may modify its argument */
2485 path_copy = strdup(path);
2486 if (path_copy == NULL)
2488 fprintf(stderr, "rrdcached: strdup(): %s\n",
2489 rrd_strerror(errno));
2493 dir = dirname(path_copy);
2494 if (rrd_mkdir_p(dir, 0777) != 0)
2496 fprintf(stderr, "Failed to create socket directory '%s': %s\n",
2497 dir, rrd_strerror(errno));
2503 temp = (listen_socket_t *) rrd_realloc (listen_fds,
2504 sizeof (listen_fds[0]) * (listen_fds_num + 1));
2507 fprintf (stderr, "rrdcached: open_listen_socket_unix: realloc failed.\n");
2511 memcpy (listen_fds + listen_fds_num, sock, sizeof (listen_fds[0]));
2513 fd = socket (PF_UNIX, SOCK_STREAM, /* protocol = */ 0);
2516 fprintf (stderr, "rrdcached: unix socket(2) failed: %s\n",
2517 rrd_strerror(errno));
2521 memset (&sa, 0, sizeof (sa));
2522 sa.sun_family = AF_UNIX;
2523 strncpy (sa.sun_path, path, sizeof (sa.sun_path) - 1);
2525 /* if we've gotten this far, we own the pid file. any daemon started
2526 * with the same args must not be alive. therefore, ensure that we can
2527 * create the socket...
2531 status = bind (fd, (struct sockaddr *) &sa, sizeof (sa));
2534 fprintf (stderr, "rrdcached: bind(%s) failed: %s.\n",
2535 path, rrd_strerror(errno));
2540 /* tweak the sockets group ownership */
2541 if (sock->socket_group != (gid_t)-1)
2543 if ( (chown(path, getuid(), sock->socket_group) != 0) ||
2544 (chmod(path, (S_IRUSR|S_IWUSR|S_IXUSR | S_IRGRP|S_IWGRP)) != 0) )
2546 fprintf(stderr, "rrdcached: failed to set socket group permissions (%s)\n", strerror(errno));
2550 if (sock->socket_permissions != (mode_t)-1)
2552 if (chmod(path, sock->socket_permissions) != 0)
2553 fprintf(stderr, "rrdcached: failed to set socket file permissions (%o): %s\n",
2554 (unsigned int)sock->socket_permissions, strerror(errno));
2557 status = listen (fd, /* backlog = */ 10);
2560 fprintf (stderr, "rrdcached: listen(%s) failed: %s.\n",
2561 path, rrd_strerror(errno));
2567 listen_fds[listen_fds_num].fd = fd;
2568 listen_fds[listen_fds_num].family = PF_UNIX;
2569 strncpy(listen_fds[listen_fds_num].addr, path,
2570 sizeof (listen_fds[listen_fds_num].addr) - 1);
2574 } /* }}} int open_listen_socket_unix */
2576 static int open_listen_socket_network(const listen_socket_t *sock) /* {{{ */
2578 struct addrinfo ai_hints;
2579 struct addrinfo *ai_res;
2580 struct addrinfo *ai_ptr;
2581 char addr_copy[NI_MAXHOST];
2586 strncpy (addr_copy, sock->addr, sizeof(addr_copy)-1);
2587 addr_copy[sizeof (addr_copy) - 1] = 0;
2590 memset (&ai_hints, 0, sizeof (ai_hints));
2591 ai_hints.ai_flags = 0;
2592 #ifdef AI_ADDRCONFIG
2593 ai_hints.ai_flags |= AI_ADDRCONFIG;
2595 ai_hints.ai_family = AF_UNSPEC;
2596 ai_hints.ai_socktype = SOCK_STREAM;
2599 if (*addr == '[') /* IPv6+port format */
2601 /* `addr' is something like "[2001:780:104:2:211:24ff:feab:26f8]:12345" */
2604 port = strchr (addr, ']');
2607 fprintf (stderr, "rrdcached: Malformed address: %s\n", sock->addr);
2615 else if (*port == 0)
2619 fprintf (stderr, "rrdcached: Garbage after address: %s\n", port);
2622 } /* if (*addr == '[') */
2625 port = rindex(addr, ':');
2633 status = getaddrinfo (addr,
2634 port == NULL ? RRDCACHED_DEFAULT_PORT : port,
2635 &ai_hints, &ai_res);
2638 fprintf (stderr, "rrdcached: getaddrinfo(%s) failed: %s\n",
2639 addr, gai_strerror (status));
2643 for (ai_ptr = ai_res; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next)
2646 listen_socket_t *temp;
2649 temp = (listen_socket_t *) rrd_realloc (listen_fds,
2650 sizeof (listen_fds[0]) * (listen_fds_num + 1));
2654 "rrdcached: open_listen_socket_network: realloc failed.\n");
2658 memcpy (listen_fds + listen_fds_num, sock, sizeof (listen_fds[0]));
2660 fd = socket (ai_ptr->ai_family, ai_ptr->ai_socktype, ai_ptr->ai_protocol);
2663 fprintf (stderr, "rrdcached: network socket(2) failed: %s.\n",
2664 rrd_strerror(errno));
2668 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one));
2670 status = bind (fd, ai_ptr->ai_addr, ai_ptr->ai_addrlen);
2673 fprintf (stderr, "rrdcached: bind(%s) failed: %s.\n",
2674 sock->addr, rrd_strerror(errno));
2679 status = listen (fd, /* backlog = */ 10);
2682 fprintf (stderr, "rrdcached: listen(%s) failed: %s\n.",
2683 sock->addr, rrd_strerror(errno));
2685 freeaddrinfo(ai_res);
2689 listen_fds[listen_fds_num].fd = fd;
2690 listen_fds[listen_fds_num].family = ai_ptr->ai_family;
2692 } /* for (ai_ptr) */
2694 freeaddrinfo(ai_res);
2696 } /* }}} static int open_listen_socket_network */
2698 static int open_listen_socket (const listen_socket_t *sock) /* {{{ */
2700 assert(sock != NULL);
2701 assert(sock->addr != NULL);
2703 if (strncmp ("unix:", sock->addr, strlen ("unix:")) == 0
2704 || sock->addr[0] == '/')
2705 return (open_listen_socket_unix(sock));
2707 return (open_listen_socket_network(sock));
2708 } /* }}} int open_listen_socket */
2710 static int close_listen_sockets (void) /* {{{ */
2714 for (i = 0; i < listen_fds_num; i++)
2716 close (listen_fds[i].fd);
2718 if (listen_fds[i].family == PF_UNIX)
2719 unlink(listen_fds[i].addr);
2727 } /* }}} int close_listen_sockets */
2729 static void *listen_thread_main (void UNUSED(*args)) /* {{{ */
2731 struct pollfd *pollfds;
2736 if (listen_fds_num < 1)
2738 RRDD_LOG(LOG_ERR, "listen_thread_main: no listen_fds !");
2742 pollfds_num = listen_fds_num;
2743 pollfds = (struct pollfd *) malloc (sizeof (*pollfds) * pollfds_num);
2744 if (pollfds == NULL)
2746 RRDD_LOG (LOG_ERR, "listen_thread_main: malloc failed.");
2749 memset (pollfds, 0, sizeof (*pollfds) * pollfds_num);
2751 RRDD_LOG(LOG_INFO, "listening for connections");
2753 while (state == RUNNING)
2755 for (i = 0; i < pollfds_num; i++)
2757 pollfds[i].fd = listen_fds[i].fd;
2758 pollfds[i].events = POLLIN | POLLPRI;
2759 pollfds[i].revents = 0;
2762 status = poll (pollfds, pollfds_num, /* timeout = */ 1000);
2763 if (state != RUNNING)
2765 else if (status == 0) /* timeout */
2767 else if (status < 0) /* error */
2770 if (status != EINTR)
2772 RRDD_LOG (LOG_ERR, "listen_thread_main: poll(2) failed.");
2777 for (i = 0; i < pollfds_num; i++)
2779 listen_socket_t *client_sock;
2780 struct sockaddr_storage client_sa;
2781 socklen_t client_sa_size;
2783 pthread_attr_t attr;
2785 if (pollfds[i].revents == 0)
2788 if ((pollfds[i].revents & (POLLIN | POLLPRI)) == 0)
2790 RRDD_LOG (LOG_ERR, "listen_thread_main: "
2791 "poll(2) returned something unexpected for listen FD #%i.",
2796 client_sock = (listen_socket_t *) malloc (sizeof (listen_socket_t));
2797 if (client_sock == NULL)
2799 RRDD_LOG (LOG_ERR, "listen_thread_main: malloc failed.");
2802 memcpy(client_sock, &listen_fds[i], sizeof(listen_fds[0]));
2804 client_sa_size = sizeof (client_sa);
2805 client_sock->fd = accept (pollfds[i].fd,
2806 (struct sockaddr *) &client_sa, &client_sa_size);
2807 if (client_sock->fd < 0)
2809 RRDD_LOG (LOG_ERR, "listen_thread_main: accept(2) failed.");
2814 pthread_attr_init (&attr);
2815 pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);
2817 status = pthread_create (&tid, &attr, connection_thread_main,
2821 RRDD_LOG (LOG_ERR, "listen_thread_main: pthread_create failed.");
2822 close_connection(client_sock);
2825 } /* for (pollfds_num) */
2826 } /* while (state == RUNNING) */
2828 RRDD_LOG(LOG_INFO, "starting shutdown");
2830 close_listen_sockets ();
2832 pthread_mutex_lock (&connection_threads_lock);
2833 while (connection_threads_num > 0)
2834 pthread_cond_wait(&connection_threads_done, &connection_threads_lock);
2835 pthread_mutex_unlock (&connection_threads_lock);
2840 } /* }}} void *listen_thread_main */
2842 static int daemonize (void) /* {{{ */
2847 daemon_uid = geteuid();
2849 pid_fd = open_pidfile("create", O_CREAT|O_EXCL|O_WRONLY);
2851 pid_fd = check_pidfile();
2855 /* open all the listen sockets */
2856 if (config_listen_address_list_len > 0)
2858 for (size_t i = 0; i < config_listen_address_list_len; i++)
2859 open_listen_socket (config_listen_address_list[i]);
2861 rrd_free_ptrs((void ***) &config_listen_address_list,
2862 &config_listen_address_list_len);
2866 listen_socket_t sock;
2867 memset(&sock, 0, sizeof(sock));
2868 strncpy(sock.addr, RRDCACHED_DEFAULT_ADDRESS, sizeof(sock.addr)-1);
2869 open_listen_socket (&sock);
2872 if (listen_fds_num < 1)
2874 fprintf (stderr, "rrdcached: FATAL: cannot open any listen sockets\n");
2878 if (!stay_foreground)
2885 fprintf (stderr, "daemonize: fork(2) failed.\n");
2891 /* Become session leader */
2894 /* Open the first three file descriptors to /dev/null */
2899 open ("/dev/null", O_RDWR);
2900 if (dup(0) == -1 || dup(0) == -1){
2901 RRDD_LOG (LOG_ERR, "faild to run dup.\n");
2903 } /* if (!stay_foreground) */
2905 /* Change into the /tmp directory. */
2906 base_dir = (config_base_dir != NULL)
2910 if (chdir (base_dir) != 0)
2912 fprintf (stderr, "daemonize: chdir (%s) failed.\n", base_dir);
2916 install_signal_handlers();
2918 openlog ("rrdcached", LOG_PID, LOG_DAEMON);
2919 RRDD_LOG(LOG_INFO, "starting up");
2921 cache_tree = g_tree_new_full ((GCompareDataFunc) strcmp, NULL, NULL,
2922 (GDestroyNotify) free_cache_item);
2923 if (cache_tree == NULL)
2925 RRDD_LOG (LOG_ERR, "daemonize: g_tree_new failed.");
2929 return write_pidfile (pid_fd);
2934 } /* }}} int daemonize */
2936 static int cleanup (void) /* {{{ */
2938 pthread_cond_broadcast (&flush_cond);
2939 pthread_join (flush_thread, NULL);
2941 pthread_cond_broadcast (&queue_cond);
2942 for (int i = 0; i < config_queue_threads; i++)
2943 pthread_join (queue_threads[i], NULL);
2945 if (config_flush_at_shutdown)
2947 assert(cache_queue_head == NULL);
2948 RRDD_LOG(LOG_INFO, "clean shutdown; all RRDs flushed");
2951 free(queue_threads);
2952 free(config_base_dir);
2954 pthread_mutex_lock(&cache_lock);
2955 g_tree_destroy(cache_tree);
2957 pthread_mutex_lock(&journal_lock);
2960 RRDD_LOG(LOG_INFO, "goodbye");
2964 free(config_pid_file);
2967 } /* }}} int cleanup */
2969 static int read_options (int argc, char **argv) /* {{{ */
2974 char **permissions = NULL;
2975 size_t permissions_len = 0;
2977 gid_t socket_group = (gid_t)-1;
2978 mode_t socket_permissions = (mode_t)-1;
2980 while ((option = getopt(argc, argv, "gl:s:m:P:f:w:z:t:Bb:p:Fj:a:h?")) != -1)
2990 listen_socket_t *new;
2992 new = malloc(sizeof(listen_socket_t));
2995 fprintf(stderr, "read_options: malloc failed.\n");
2998 memset(new, 0, sizeof(listen_socket_t));
3000 strncpy(new->addr, optarg, sizeof(new->addr)-1);
3002 /* Add permissions to the socket {{{ */
3003 if (permissions_len != 0)
3006 for (i = 0; i < permissions_len; i++)
3008 status = socket_permission_add (new, permissions[i]);
3011 fprintf (stderr, "read_options: Adding permission \"%s\" to "
3012 "socket failed. Most likely, this permission doesn't "
3013 "exist. Check your command line.\n", permissions[i]);
3018 else /* if (permissions_len == 0) */
3020 /* Add permission for ALL commands to the socket. */
3022 for (i = 0; i < list_of_commands_len; i++)
3024 status = socket_permission_add (new, list_of_commands[i].cmd);
3027 fprintf (stderr, "read_options: Adding permission \"%s\" to "
3028 "socket failed. This should never happen, ever! Sorry.\n",
3034 /* }}} Done adding permissions. */
3036 new->socket_group = socket_group;
3037 new->socket_permissions = socket_permissions;
3039 if (!rrd_add_ptr((void ***)&config_listen_address_list,
3040 &config_listen_address_list_len, new))
3042 fprintf(stderr, "read_options: rrd_add_ptr failed.\n");
3048 /* set socket group permissions */
3054 group_gid = strtoul(optarg, NULL, 10);
3055 if (errno != EINVAL && group_gid>0)
3057 /* we were passed a number */
3058 grp = getgrgid(group_gid);
3062 grp = getgrnam(optarg);
3067 socket_group = grp->gr_gid;
3071 /* no idea what the user wanted... */
3072 fprintf (stderr, "read_options: couldn't map \"%s\" to a group, Sorry\n", optarg);
3078 /* set socket file permissions */
3082 char *endptr = NULL;
3084 tmp = strtol (optarg, &endptr, 8);
3085 if ((endptr == optarg) || (! endptr) || (*endptr != '\0')
3086 || (tmp > 07777) || (tmp < 0)) {
3087 fprintf (stderr, "read_options: Invalid file mode \"%s\".\n",
3092 socket_permissions = (mode_t)tmp;
3103 rrd_free_ptrs ((void *) &permissions, &permissions_len);
3105 optcopy = strdup (optarg);
3108 while ((ptr = strtok_r (dummy, ", ", &saveptr)) != NULL)
3111 rrd_add_strdup ((void *) &permissions, &permissions_len, ptr);
3122 temp = atoi (optarg);
3124 config_flush_interval = temp;
3127 fprintf (stderr, "Invalid flush interval: %s\n", optarg);
3137 temp = atoi (optarg);
3139 config_write_interval = temp;
3142 fprintf (stderr, "Invalid write interval: %s\n", optarg);
3152 temp = atoi(optarg);
3154 config_write_jitter = temp;
3157 fprintf (stderr, "Invalid write jitter: -z %s\n", optarg);
3167 threads = atoi(optarg);
3169 config_queue_threads = threads;
3172 fprintf (stderr, "Invalid thread count: -t %s\n", optarg);
3179 config_write_base_only = 1;
3185 char base_realpath[PATH_MAX];
3187 if (config_base_dir != NULL)
3188 free (config_base_dir);
3189 config_base_dir = strdup (optarg);
3190 if (config_base_dir == NULL)
3192 fprintf (stderr, "read_options: strdup failed.\n");
3196 if (rrd_mkdir_p (config_base_dir, 0777) != 0)
3198 fprintf (stderr, "Failed to create base directory '%s': %s\n",
3199 config_base_dir, rrd_strerror (errno));
3203 /* make sure that the base directory is not resolved via
3204 * symbolic links. this makes some performance-enhancing
3205 * assumptions possible (we don't have to resolve paths
3206 * that start with a "/")
3208 if (realpath(config_base_dir, base_realpath) == NULL)
3210 fprintf (stderr, "Failed to canonicalize the base directory '%s': "
3211 "%s\n", config_base_dir, rrd_strerror(errno));
3215 len = strlen (config_base_dir);
3216 while ((len > 0) && (config_base_dir[len - 1] == '/'))
3218 config_base_dir[len - 1] = 0;
3224 fprintf (stderr, "Invalid base directory: %s\n", optarg);
3228 _config_base_dir_len = len;
3230 len = strlen (base_realpath);
3231 while ((len > 0) && (base_realpath[len - 1] == '/'))
3233 base_realpath[len - 1] = '\0';
3237 if (strncmp(config_base_dir,
3238 base_realpath, sizeof(base_realpath)) != 0)
3241 "Base directory (-b) resolved via file system links!\n"
3242 "Please consult rrdcached '-b' documentation!\n"
3243 "Consider specifying the real directory (%s)\n",
3252 if (config_pid_file != NULL)
3253 free (config_pid_file);
3254 config_pid_file = strdup (optarg);
3255 if (config_pid_file == NULL)
3257 fprintf (stderr, "read_options: strdup failed.\n");
3264 config_flush_at_shutdown = 1;
3269 char journal_dir_actual[PATH_MAX];
3271 dir = journal_dir = strdup(realpath((const char *)optarg, journal_dir_actual));
3273 status = rrd_mkdir_p(dir, 0777);
3276 fprintf(stderr, "Failed to create journal directory '%s': %s\n",
3277 dir, rrd_strerror(errno));
3281 if (access(dir, R_OK|W_OK|X_OK) != 0)
3283 fprintf(stderr, "Must specify a writable directory with -j! (%s)\n",
3284 errno ? rrd_strerror(errno) : "");
3292 int temp = atoi(optarg);
3294 config_alloc_chunk = temp;
3297 fprintf(stderr, "Invalid allocation size: %s\n", optarg);
3305 printf ("RRDCacheD %s\n"
3306 "Copyright (C) 2008,2009 Florian octo Forster and Kevin Brintnall\n"
3308 "Usage: rrdcached [options]\n"
3310 "Valid options are:\n"
3311 " -l <address> Socket address to listen to.\n"
3312 " -P <perms> Sets the permissions to assign to all following "
3314 " -w <seconds> Interval in which to write data.\n"
3315 " -z <delay> Delay writes up to <delay> seconds to spread load\n"
3316 " -t <threads> Number of write threads.\n"
3317 " -f <seconds> Interval in which to flush dead data.\n"
3318 " -p <file> Location of the PID-file.\n"
3319 " -b <dir> Base directory to change to.\n"
3320 " -B Restrict file access to paths within -b <dir>\n"
3321 " -g Do not fork and run in the foreground.\n"
3322 " -j <dir> Directory in which to create the journal files.\n"
3323 " -F Always flush all updates at shutdown\n"
3324 " -s <id|name> Group owner of all following UNIX sockets\n"
3325 " (the socket will also have read/write permissions "
3327 " -m <mode> File permissions (octal) of all following UNIX "
3329 " -a <size> Memory allocation chunk size. Default is 1."
3331 "For more information and a detailed description of all options "
3333 "to the rrdcached(1) manual page.\n",
3340 } /* switch (option) */
3341 } /* while (getopt) */
3343 /* advise the user when values are not sane */
3344 if (config_flush_interval < 2 * config_write_interval)
3345 fprintf(stderr, "WARNING: flush interval (-f) should be at least"
3346 " 2x write interval (-w) !\n");
3347 if (config_write_jitter > config_write_interval)
3348 fprintf(stderr, "WARNING: write delay (-z) should NOT be larger than"
3349 " write interval (-w) !\n");
3351 if (config_write_base_only && config_base_dir == NULL)
3352 fprintf(stderr, "WARNING: -B does not make sense without -b!\n"
3353 " Consult the rrdcached documentation\n");
3355 if (journal_dir == NULL)
3356 config_flush_at_shutdown = 1;
3358 rrd_free_ptrs ((void *) &permissions, &permissions_len);
3361 } /* }}} int read_options */
3363 int main (int argc, char **argv)
3367 status = read_options (argc, argv);
3375 status = daemonize ();
3378 fprintf (stderr, "rrdcached: daemonize failed, exiting.\n");
3384 /* start the queue threads */
3385 queue_threads = calloc(config_queue_threads, sizeof(*queue_threads));
3386 if (queue_threads == NULL)
3388 RRDD_LOG (LOG_ERR, "FATAL: cannot calloc queue threads");
3392 for (int i = 0; i < config_queue_threads; i++)
3394 memset (&queue_threads[i], 0, sizeof (*queue_threads));
3395 status = pthread_create (&queue_threads[i], NULL, queue_thread_main, NULL);
3398 RRDD_LOG (LOG_ERR, "FATAL: cannot create queue thread");
3404 /* start the flush thread */
3405 memset(&flush_thread, 0, sizeof(flush_thread));
3406 status = pthread_create (&flush_thread, NULL, flush_thread_main, NULL);
3409 RRDD_LOG (LOG_ERR, "FATAL: cannot create flush thread");
3414 listen_thread_main (NULL);
3421 * vim: set sw=2 sts=2 ts=8 et fdm=marker :