collectd, plugin: Added support for "flush" callbacks.
[collectd.git] / src / collectd.c
1 /**
2  * collectd - src/collectd.c
3  * Copyright (C) 2005-2007  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  *   Alvaro Barcellos <alvaro.barcellos at gmail.com>
21  **/
22
23 #include "collectd.h"
24 #include "common.h"
25
26 #include <sys/types.h>
27 #include <sys/socket.h>
28 #include <netdb.h>
29
30 #include <pthread.h>
31
32 #include "plugin.h"
33 #include "configfile.h"
34
35 /*
36  * Global variables
37  */
38 char hostname_g[DATA_MAX_NAME_LEN];
39 int  interval_g;
40 #if HAVE_LIBKSTAT
41 kstat_ctl_t *kc;
42 #endif /* HAVE_LIBKSTAT */
43
44 static int loop = 0;
45
46 static void *do_flush (void *arg)
47 {
48         INFO ("Flushing all data.");
49         plugin_flush_all (-1);
50         INFO ("Finished flushing all data.");
51         pthread_exit (NULL);
52         return NULL;
53 }
54
55 static void sigIntHandler (int signal)
56 {
57         loop++;
58 }
59
60 static void sigTermHandler (int signal)
61 {
62         loop++;
63 }
64
65 static void sigUsr1Handler (int signal)
66 {
67         pthread_t      thread;
68         pthread_attr_t attr;
69
70         /* flushing the data might take a while,
71          * so it should be done asynchronously */
72         pthread_attr_init (&attr);
73         pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);
74         pthread_create (&thread, &attr, do_flush, NULL);
75 }
76
77 static int init_hostname (void)
78 {
79         const char *str;
80
81         struct addrinfo  ai_hints;
82         struct addrinfo *ai_list;
83         struct addrinfo *ai_ptr;
84         int status;
85
86         str = global_option_get ("Hostname");
87         if (str != NULL)
88         {
89                 strncpy (hostname_g, str, sizeof (hostname_g));
90                 hostname_g[sizeof (hostname_g) - 1] = '\0';
91                 return (0);
92         }
93
94         if (gethostname (hostname_g, sizeof (hostname_g)) != 0)
95         {
96                 fprintf (stderr, "`gethostname' failed and no "
97                                 "hostname was configured.\n");
98                 return (-1);
99         }
100
101         str = global_option_get ("FQDNLookup");
102         if ((strcasecmp ("false", str) == 0)
103                         || (strcasecmp ("no", str) == 0)
104                         || (strcasecmp ("off", str) == 0))
105                 return (0);
106
107         memset (&ai_hints, '\0', sizeof (ai_hints));
108         ai_hints.ai_flags = AI_CANONNAME;
109
110         status = getaddrinfo (hostname_g, NULL, &ai_hints, &ai_list);
111         if (status != 0)
112         {
113                 ERROR ("Looking up \"%s\" failed. You have set the "
114                                 "\"FQDNLookup\" option, but I cannot resolve "
115                                 "my hostname to a fully qualified domain "
116                                 "name. Please fix you network "
117                                 "configuration.", hostname_g);
118                 return (-1);
119         }
120
121         for (ai_ptr = ai_list; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next)
122         {
123                 if (ai_ptr->ai_canonname == NULL)
124                         continue;
125
126                 strncpy (hostname_g, ai_ptr->ai_canonname, sizeof (hostname_g));
127                 hostname_g[sizeof (hostname_g) - 1] = '\0';
128                 break;
129         }
130
131         freeaddrinfo (ai_list);
132         return (0);
133 } /* int init_hostname */
134
135 static int init_global_variables (void)
136 {
137         const char *str;
138
139         str = global_option_get ("Interval");
140         if (str == NULL)
141                 str = "10";
142         interval_g = atoi (str);
143         if (interval_g <= 0)
144         {
145                 fprintf (stderr, "Cannot set the interval to a correct value.\n"
146                                 "Please check your settings.\n");
147                 return (-1);
148         }
149         DEBUG ("interval_g = %i;", interval_g);
150
151         if (init_hostname () != 0)
152                 return (-1);
153         DEBUG ("hostname_g = %s;", hostname_g);
154
155         return (0);
156 } /* int init_global_variables */
157
158 static int change_basedir (const char *orig_dir)
159 {
160         char *dir = strdup (orig_dir);
161         int dirlen;
162         int status;
163
164         if (dir == NULL)
165         {
166                 char errbuf[1024];
167                 ERROR ("strdup failed: %s",
168                                 sstrerror (errno, errbuf, sizeof (errbuf)));
169                 return (-1);
170         }
171         
172         dirlen = strlen (dir);
173         while ((dirlen > 0) && (dir[dirlen - 1] == '/'))
174                 dir[--dirlen] = '\0';
175
176         if (dirlen <= 0)
177                 return (-1);
178
179         status = chdir (dir);
180         free (dir);
181
182         if (status != 0)
183         {
184                 if (errno == ENOENT)
185                 {
186                         if (mkdir (orig_dir, 0755) == -1)
187                         {
188                                 char errbuf[1024];
189                                 ERROR ("change_basedir: mkdir (%s): %s", orig_dir,
190                                                 sstrerror (errno, errbuf,
191                                                         sizeof (errbuf)));
192                                 return (-1);
193                         }
194                         else if (chdir (orig_dir) == -1)
195                         {
196                                 char errbuf[1024];
197                                 ERROR ("chdir (%s): %s", orig_dir,
198                                                 sstrerror (errno, errbuf,
199                                                         sizeof (errbuf)));
200                                 return (-1);
201                         }
202                 }
203                 else
204                 {
205                         char errbuf[1024];
206                         ERROR ("chdir (%s): %s", orig_dir,
207                                         sstrerror (errno, errbuf,
208                                                 sizeof (errbuf)));
209                         return (-1);
210                 }
211         }
212
213         return (0);
214 } /* static int change_basedir (char *dir) */
215
216 #if HAVE_LIBKSTAT
217 static void update_kstat (void)
218 {
219         if (kc == NULL)
220         {
221                 if ((kc = kstat_open ()) == NULL)
222                         ERROR ("Unable to open kstat control structure");
223         }
224         else
225         {
226                 kid_t kid;
227                 kid = kstat_chain_update (kc);
228                 if (kid > 0)
229                 {
230                         INFO ("kstat chain has been updated");
231                         plugin_init_all ();
232                 }
233                 else if (kid < 0)
234                         ERROR ("kstat chain update failed");
235                 /* else: everything works as expected */
236         }
237
238         return;
239 } /* static void update_kstat (void) */
240 #endif /* HAVE_LIBKSTAT */
241
242 /* TODO
243  * Remove all settings but `-f' and `-C'
244  */
245 static void exit_usage (void)
246 {
247         printf ("Usage: "PACKAGE" [OPTIONS]\n\n"
248                         
249                         "Available options:\n"
250                         "  General:\n"
251                         "    -C <file>       Configuration file.\n"
252                         "                    Default: "CONFIGFILE"\n"
253                         "    -P <file>       PID-file.\n"
254                         "                    Default: "PIDFILE"\n"
255 #if COLLECT_DAEMON
256                         "    -f              Don't fork to the background.\n"
257 #endif
258                         "\nBuiltin defaults:\n"
259                         "  Config-File       "CONFIGFILE"\n"
260                         "  PID-File          "PIDFILE"\n"
261                         "  Data-Directory    "PKGLOCALSTATEDIR"\n"
262                         "\n"PACKAGE" "VERSION", http://collectd.org/\n"
263                         "by Florian octo Forster <octo@verplant.org>\n"
264                         "for contributions see `AUTHORS'\n");
265         exit (0);
266 } /* static void exit_usage (char *name) */
267
268 static int do_init (void)
269 {
270 #if HAVE_LIBKSTAT
271         kc = NULL;
272         update_kstat ();
273 #endif
274
275 #if HAVE_LIBSTATGRAB
276         if (sg_init ())
277         {
278                 ERROR ("sg_init: %s", sg_str_error (sg_get_error ()));
279                 return (-1);
280         }
281
282         if (sg_drop_privileges ())
283         {
284                 ERROR ("sg_drop_privileges: %s", sg_str_error (sg_get_error ()));
285                 return (-1);
286         }
287 #endif
288
289         plugin_init_all ();
290
291         return (0);
292 } /* int do_init () */
293
294
295 static int do_loop (void)
296 {
297         struct timeval tv_now;
298         struct timeval tv_next;
299         struct timespec ts_wait;
300
301         while (loop == 0)
302         {
303                 if (gettimeofday (&tv_next, NULL) < 0)
304                 {
305                         char errbuf[1024];
306                         ERROR ("gettimeofday failed: %s",
307                                         sstrerror (errno, errbuf,
308                                                 sizeof (errbuf)));
309                         return (-1);
310                 }
311                 tv_next.tv_sec += interval_g;
312
313 #if HAVE_LIBKSTAT
314                 update_kstat ();
315 #endif
316
317                 /* Issue all plugins */
318                 plugin_read_all ();
319
320                 if (gettimeofday (&tv_now, NULL) < 0)
321                 {
322                         char errbuf[1024];
323                         ERROR ("gettimeofday failed: %s",
324                                         sstrerror (errno, errbuf,
325                                                 sizeof (errbuf)));
326                         return (-1);
327                 }
328
329                 if (timeval_sub_timespec (&tv_next, &tv_now, &ts_wait) != 0)
330                 {
331                         WARNING ("Not sleeping because "
332                                         "`timeval_sub_timespec' returned "
333                                         "non-zero!");
334                         continue;
335                 }
336
337                 while ((loop == 0) && (nanosleep (&ts_wait, &ts_wait) == -1))
338                 {
339                         if (errno != EINTR)
340                         {
341                                 char errbuf[1024];
342                                 ERROR ("nanosleep failed: %s",
343                                                 sstrerror (errno, errbuf,
344                                                         sizeof (errbuf)));
345                                 return (-1);
346                         }
347                 }
348         } /* while (loop == 0) */
349
350         DEBUG ("return (0);");
351         return (0);
352 } /* int do_loop */
353
354 static int do_shutdown (void)
355 {
356         plugin_shutdown_all ();
357         return (0);
358 } /* int do_shutdown */
359
360 #if COLLECT_DAEMON
361 static int pidfile_create (void)
362 {
363         FILE *fh;
364         const char *file = global_option_get ("PIDFile");
365
366         if ((fh = fopen (file, "w")) == NULL)
367         {
368                 char errbuf[1024];
369                 ERROR ("fopen (%s): %s", file,
370                                 sstrerror (errno, errbuf, sizeof (errbuf)));
371                 return (1);
372         }
373
374         fprintf (fh, "%i\n", (int) getpid ());
375         fclose(fh);
376
377         return (0);
378 } /* static int pidfile_create (const char *file) */
379
380 static int pidfile_remove (void)
381 {
382         const char *file = global_option_get ("PIDFile");
383
384         DEBUG ("unlink (%s)", (file != NULL) ? file : "<null>");
385         return (unlink (file));
386 } /* static int pidfile_remove (const char *file) */
387 #endif /* COLLECT_DAEMON */
388
389 int main (int argc, char **argv)
390 {
391         struct sigaction sigIntAction;
392         struct sigaction sigTermAction;
393         struct sigaction sigUsr1Action;
394         char *configfile = CONFIGFILE;
395         int test_config  = 0;
396         const char *basedir;
397 #if COLLECT_DAEMON
398         struct sigaction sigChldAction;
399         pid_t pid;
400         int daemonize    = 1;
401 #endif
402
403         /* read options */
404         while (1)
405         {
406                 int c;
407
408                 c = getopt (argc, argv, "htC:"
409 #if COLLECT_DAEMON
410                                 "fP:"
411 #endif
412                 );
413
414                 if (c == -1)
415                         break;
416
417                 switch (c)
418                 {
419                         case 'C':
420                                 configfile = optarg;
421                                 break;
422                         case 't':
423                                 test_config = 1;
424                                 break;
425 #if COLLECT_DAEMON
426                         case 'P':
427                                 global_option_set ("PIDFile", optarg);
428                                 break;
429                         case 'f':
430                                 daemonize = 0;
431                                 break;
432 #endif /* COLLECT_DAEMON */
433                         case 'h':
434                         default:
435                                 exit_usage ();
436                 } /* switch (c) */
437         } /* while (1) */
438
439         /*
440          * Read options from the config file, the environment and the command
441          * line (in that order, with later options overwriting previous ones in
442          * general).
443          * Also, this will automatically load modules.
444          */
445         if (cf_read (configfile))
446         {
447                 fprintf (stderr, "Error: Reading the config file failed!\n"
448                                 "Read the syslog for details.\n");
449                 return (1);
450         }
451
452         /*
453          * Change directory. We do this _after_ reading the config and loading
454          * modules to relative paths work as expected.
455          */
456         if ((basedir = global_option_get ("BaseDir")) == NULL)
457         {
458                 fprintf (stderr, "Don't have a basedir to use. This should not happen. Ever.");
459                 return (1);
460         }
461         else if (change_basedir (basedir))
462         {
463                 fprintf (stderr, "Error: Unable to change to directory `%s'.\n", basedir);
464                 return (1);
465         }
466
467         /*
468          * Set global variables or, if that failes, exit. We cannot run with
469          * them being uninitialized. If nothing is configured, then defaults
470          * are being used. So this means that the user has actually done
471          * something wrong.
472          */
473         if (init_global_variables () != 0)
474                 return (1);
475
476         if (test_config)
477                 return (0);
478
479 #if COLLECT_DAEMON
480         /*
481          * fork off child
482          */
483         memset (&sigChldAction, '\0', sizeof (sigChldAction));
484         sigChldAction.sa_handler = SIG_IGN;
485         sigaction (SIGCHLD, &sigChldAction, NULL);
486
487         if (daemonize)
488         {
489                 if ((pid = fork ()) == -1)
490                 {
491                         /* error */
492                         char errbuf[1024];
493                         fprintf (stderr, "fork: %s",
494                                         sstrerror (errno, errbuf,
495                                                 sizeof (errbuf)));
496                         return (1);
497                 }
498                 else if (pid != 0)
499                 {
500                         /* parent */
501                         /* printf ("Running (PID %i)\n", pid); */
502                         return (0);
503                 }
504
505                 /* Detach from session */
506                 setsid ();
507
508                 /* Write pidfile */
509                 if (pidfile_create ())
510                         exit (2);
511
512                 /* close standard descriptors */
513                 close (2);
514                 close (1);
515                 close (0);
516
517                 if (open ("/dev/null", O_RDWR) != 0)
518                 {
519                         ERROR ("Error: Could not connect `STDIN' to `/dev/null'");
520                         return (1);
521                 }
522                 if (dup (0) != 1)
523                 {
524                         ERROR ("Error: Could not connect `STDOUT' to `/dev/null'");
525                         return (1);
526                 }
527                 if (dup (0) != 2)
528                 {
529                         ERROR ("Error: Could not connect `STDERR' to `/dev/null'");
530                         return (1);
531                 }
532         } /* if (daemonize) */
533 #endif /* COLLECT_DAEMON */
534
535         /*
536          * install signal handlers
537          */
538         memset (&sigIntAction, '\0', sizeof (sigIntAction));
539         sigIntAction.sa_handler = sigIntHandler;
540         sigaction (SIGINT, &sigIntAction, NULL);
541
542         memset (&sigTermAction, '\0', sizeof (sigTermAction));
543         sigTermAction.sa_handler = sigTermHandler;
544         sigaction (SIGTERM, &sigTermAction, NULL);
545
546         memset (&sigUsr1Action, '\0', sizeof (sigUsr1Action));
547         sigUsr1Action.sa_handler = sigUsr1Handler;
548         sigaction (SIGUSR1, &sigUsr1Action, NULL);
549
550         /*
551          * run the actual loops
552          */
553         do_init ();
554         do_loop ();
555
556         /* close syslog */
557         INFO ("Exiting normally");
558
559         do_shutdown ();
560
561 #if COLLECT_DAEMON
562         if (daemonize)
563                 pidfile_remove ();
564 #endif /* COLLECT_DAEMON */
565
566         return (0);
567 } /* int main */