First version of `network.c' running..
[collectd.git] / src / collectd.c
1 /**
2  * collectd - src/collectd.c
3  * Copyright (C) 2005  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; either version 2 of the License, or (at your
8  * option) any later version.
9  *
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.
14  *
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
18  *
19  * Authors:
20  *   Florian octo Forster <octo at verplant.org>
21  *   Alvaro Barcellos <alvaro.barcellos at gmail.com>
22  **/
23
24 #include "collectd.h"
25 #include "common.h"
26 #include "utils_debug.h"
27
28 #include "network.h"
29 #include "plugin.h"
30 #include "configfile.h"
31
32 #include "ping.h"
33
34 static int loop = 0;
35
36 #if HAVE_LIBKSTAT
37 kstat_ctl_t *kc;
38 #endif /* HAVE_LIBKSTAT */
39
40 /*
41  * exported variables
42  */
43 time_t curtime;
44
45 #if HAVE_LIBRRD
46 int operating_mode;
47 #endif
48
49 static void sigIntHandler (int signal)
50 {
51         loop++;
52 }
53
54 static void sigTermHandler (int signal)
55 {
56         loop++;
57 }
58
59 static int change_basedir (char *dir)
60 {
61         int dirlen = strlen (dir);
62         
63         while ((dirlen > 0) && (dir[dirlen - 1] == '/'))
64                 dir[--dirlen] = '\0';
65
66         if (dirlen <= 0)
67                 return (-1);
68
69         if (chdir (dir) == -1)
70         {
71                 if (errno == ENOENT)
72                 {
73                         if (mkdir (dir, 0755) == -1)
74                         {
75                                 syslog (LOG_ERR, "mkdir (%s): %s", dir, strerror (errno));
76                                 return (-1);
77                         }
78                         else if (chdir (dir) == -1)
79                         {
80                                 syslog (LOG_ERR, "chdir (%s): %s", dir, strerror (errno));
81                                 return (-1);
82                         }
83                 }
84                 else
85                 {
86                         syslog (LOG_ERR, "chdir: %s", strerror (errno));
87                         return (-1);
88                 }
89         }
90
91         return (0);
92 } /* static int change_basedir (char *dir) */
93
94 #if HAVE_LIBKSTAT
95 static void update_kstat (void)
96 {
97         if (kc == NULL)
98         {
99                 if ((kc = kstat_open ()) == NULL)
100                         syslog (LOG_ERR, "Unable to open kstat control structure");
101         }
102         else
103         {
104                 kid_t kid;
105                 kid = kstat_chain_update (kc);
106                 if (kid > 0)
107                 {
108                         syslog (LOG_INFO, "kstat chain has been updated");
109                         plugin_init_all ();
110                 }
111                 else if (kid < 0)
112                         syslog (LOG_ERR, "kstat chain update failed");
113                 /* else: everything works as expected */
114         }
115
116         return;
117 } /* static void update_kstat (void) */
118 #endif /* HAVE_LIBKSTAT */
119
120 /* TODO
121  * Remove all settings but `-f' and `-C'
122  */
123 static void exit_usage (char *name)
124 {
125         printf ("Usage: "PACKAGE" [OPTIONS]\n\n"
126                         
127                         "Available options:\n"
128                         "  General:\n"
129                         "    -C <file>       Configuration file.\n"
130                         "                    Default: "CONFIGFILE"\n"
131 #if COLLECT_DAEMON
132                         "    -f              Don't fork to the background.\n"
133 #endif
134                         "\nBuiltin defaults:\n"
135                         "  Config-File       "CONFIGFILE"\n"
136                         "  PID-File          "PIDFILE"\n"
137                         "  Data-Directory    "PKGLOCALSTATEDIR"\n"
138 #if COLLECT_DEBUG
139                         "  Log-File          "LOGFILE"\n"
140 #endif
141                         "\n"PACKAGE" "VERSION", http://verplant.org/collectd/\n"
142                         "by Florian octo Forster <octo@verplant.org>\n"
143                         "for contributions see `AUTHORS'\n");
144         exit (0);
145 } /* static void exit_usage (char *name) */
146
147 static int start_client (void)
148 {
149         int sleepingtime;
150
151 #if HAVE_LIBKSTAT
152         kc = NULL;
153         update_kstat ();
154 #endif
155
156 #if HAVE_LIBSTATGRAB
157         if (sg_init ())
158         {
159                 syslog (LOG_ERR, "sg_init: %s", sg_str_error (sg_get_error ()));
160                 return (-1);
161         }
162
163         if (sg_drop_privileges ())
164         {
165                 syslog (LOG_ERR, "sg_drop_privileges: %s", sg_str_error (sg_get_error ()));
166                 return (-1);
167         }
168 #endif
169
170         plugin_init_all ();
171
172         while (loop == 0)
173         {
174                 curtime = time (NULL);
175 #if HAVE_LIBKSTAT
176                 update_kstat ();
177 #endif
178                 plugin_read_all ();
179
180                 sleepingtime = 10;
181                 while (sleepingtime != 0)
182                 {
183                         if (loop != 0)
184                                 break;
185                         sleepingtime = sleep (sleepingtime);
186                 }
187         }
188
189         return (0);
190 } /* static int start_client (void) */
191
192 #if HAVE_LIBRRD
193 static int start_server (void)
194 {
195         /* FIXME use stack here! */
196         char *host;
197         char *type;
198         char *instance;
199         char *values;
200
201         while (loop == 0)
202         {
203                 if (network_receive (&host, &type, &instance, &values) == 0)
204                         plugin_write (host, type, instance, values);
205
206                 if (host     != NULL) free (host);     host     = NULL;
207                 if (type     != NULL) free (type);     type     = NULL;
208                 if (instance != NULL) free (instance); instance = NULL;
209                 if (values   != NULL) free (values);   values   = NULL;
210         }
211         
212         return (0);
213 } /* static int start_server (void) */
214 #endif /* HAVE_LIBRRD */
215
216 #if COLLECT_DAEMON
217 static int pidfile_create (const char *file)
218 {
219         FILE *fh;
220
221         if (file == NULL)
222                 file = PIDFILE;
223
224         if ((fh = fopen (file, "w")) == NULL)
225         {
226                 syslog (LOG_ERR, "fopen (%s): %s", file, strerror (errno));
227                 return (1);
228         }
229
230         fprintf (fh, "%d\n", getpid());
231         fclose(fh);
232
233         return (0);
234 } /* static int pidfile_create (const char *file) */
235 #endif /* COLLECT_DAEMON */
236
237 #if COLLECT_DAEMON
238 static int pidfile_remove (const char *file)
239 {
240         if (file == NULL) {
241                 file = PIDFILE;
242         }
243         return (unlink (file));
244 } /* static int pidfile_remove (const char *file) */
245 #endif /* COLLECT_DAEMON */
246
247 int main (int argc, char **argv)
248 {
249         struct sigaction sigIntAction;
250         struct sigaction sigTermAction;
251         char *datadir    = PKGLOCALSTATEDIR;
252         char *configfile = CONFIGFILE;
253 #if COLLECT_DAEMON
254         struct sigaction sigChldAction;
255         char *pidfile    = PIDFILE;
256         pid_t pid;
257         int daemonize    = 1;
258 #endif
259 #if COLLECT_DEBUG
260         char *logfile    = LOGFILE;
261 #endif
262
263 #if HAVE_LIBRRD
264         operating_mode = MODE_LOCAL;
265 #endif
266
267         /* open syslog */
268         openlog (PACKAGE, LOG_CONS | LOG_PID, LOG_DAEMON);
269
270         /* read options */
271         while (1)
272         {
273                 int c;
274
275                 c = getopt (argc, argv, "hC:"
276 #if COLLECT_DAEMON
277                                 "f"
278 #endif
279                 );
280
281                 if (c == -1)
282                         break;
283
284                 switch (c)
285                 {
286                         case 'C':
287                                 configfile = optarg;
288                                 break;
289 #if COLLECT_DAEMON
290                         case 'f':
291                                 daemonize = 0;
292                                 break;
293 #endif /* COLLECT_DAEMON */
294                         case 'h':
295                         default:
296                                 exit_usage (argv[0]);
297                 } /* switch (c) */
298         } /* while (1) */
299
300 #if COLLECT_DEBUG
301         if ((logfile = cf_get_option ("LogFile", LOGFILE)) != NULL)
302                 DBG_STARTFILE (logfile, "Debug file opened.");
303 #endif
304
305         /*
306          * Read options from the config file, the environment and the command
307          * line (in that order, with later options overwriting previous ones in
308          * general).
309          * Also, this will automatically load modules.
310          */
311         if (cf_read (configfile))
312         {
313                 fprintf (stderr, "Error: Reading the config file failed!\n"
314                                 "Read the syslog for details.\n");
315                 return (1);
316         }
317
318         /*
319          * Change directory. We do this _after_ reading the config and loading
320          * modules to relative paths work as expected.
321          */
322         if ((datadir = cf_get_option ("DataDir", PKGLOCALSTATEDIR)) == NULL)
323         {
324                 fprintf (stderr, "Don't have a datadir to use. This should not happen. Ever.");
325                 return (1);
326         }
327         if (change_basedir (datadir))
328         {
329                 fprintf (stderr, "Error: Unable to change to directory `%s'.\n", datadir);
330                 return (1);
331         }
332
333 #if COLLECT_DAEMON
334         /*
335          * fork off child
336          */
337         sigChldAction.sa_handler = SIG_IGN;
338         sigaction (SIGCHLD, &sigChldAction, NULL);
339
340         if ((pidfile = cf_get_option ("PIDFile", PIDFILE)) == NULL)
341         {
342                 fprintf (stderr, "Cannot obtain pidfile. This shoud not happen. Ever.");
343                 return (1);
344         }
345
346         if (daemonize)
347         {
348                 if ((pid = fork ()) == -1)
349                 {
350                         /* error */
351                         fprintf (stderr, "fork: %s", strerror (errno));
352                         return (1);
353                 }
354                 else if (pid != 0)
355                 {
356                         /* parent */
357                         /* printf ("Running (PID %i)\n", pid); */
358                         return (0);
359                 }
360
361                 /* Detach from session */
362                 setsid ();
363
364                 /* Write pidfile */
365                 if (pidfile_create (pidfile))
366                         exit (2);
367
368                 /* close standard descriptors */
369                 close (2);
370                 close (1);
371                 close (0);
372
373                 if (open ("/dev/null", O_RDWR) != 0)
374                 {
375                         syslog (LOG_ERR, "Error: Could not connect `STDIN' to `/dev/null'");
376                         return (1);
377                 }
378                 if (dup (0) != 1)
379                 {
380                         syslog (LOG_ERR, "Error: Could not connect `STDOUT' to `/dev/null'");
381                         return (1);
382                 }
383                 if (dup (0) != 2)
384                 {
385                         syslog (LOG_ERR, "Error: Could not connect `STDERR' to `/dev/null'");
386                         return (1);
387                 }
388         } /* if (daemonize) */
389 #endif /* COLLECT_DAEMON */
390
391         /*
392          * install signal handlers
393          */
394         sigIntAction.sa_handler = sigIntHandler;
395         sigaction (SIGINT, &sigIntAction, NULL);
396
397         sigTermAction.sa_handler = sigTermHandler;
398         sigaction (SIGTERM, &sigTermAction, NULL);
399
400         /*
401          * run the actual loops
402          */
403 #if HAVE_LIBRRD
404         if (operating_mode == MODE_SERVER)
405                 start_server ();
406         else /* if (operating_mode == MODE_CLIENT || operating_mode == MODE_LOCAL) */
407 #endif
408                 start_client ();
409
410 #if COLLECT_DEBUG
411         if (logfile != NULL)
412                 DBG_STOPFILE("debug file closed.");
413 #endif
414
415         /* close syslog */
416         syslog (LOG_INFO, "Exiting normally");
417         closelog ();
418
419 #if COLLECT_DAEMON
420         if (daemonize)
421                 pidfile_remove (pidfile);
422 #endif /* COLLECT_DAEMON */
423
424         return (0);
425 } /* int main (int argc, char **argv) */