Commented out `CONFIGFILE' in collectd.c
[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
26 #include "multicast.h"
27 #include "plugin.h"
28
29 #include "ping.h"
30
31 static int loop = 0;
32
33 #ifdef HAVE_LIBKSTAT
34 kstat_ctl_t *kc;
35 #endif /* HAVE_LIBKSTAT */
36
37 #if COLLECT_PING
38 char *pinghosts[MAX_PINGHOSTS];
39 int   num_pinghosts = 0;
40 #endif
41
42 /*
43  * exported variables
44  */
45 time_t curtime;
46
47 #ifdef HAVE_LIBRRD
48 int operating_mode;
49 #endif
50
51 void sigIntHandler (int signal)
52 {
53         loop++;
54 }
55
56 int change_basedir (char *dir)
57 {
58         int dirlen = strlen (dir);
59         
60         while ((dirlen > 0) && (dir[dirlen - 1] == '/'))
61                 dir[--dirlen] = '\0';
62
63         if (dirlen <= 0)
64                 return (-1);
65
66         if (chdir (dir) == -1)
67         {
68                 if (errno == ENOENT)
69                 {
70                         if (mkdir (dir, 0755) == -1)
71                         {
72                                 syslog (LOG_ERR, "mkdir: %s", strerror (errno));
73                                 return (-1);
74                         }
75                         else if (chdir (dir) == -1)
76                         {
77                                 syslog (LOG_ERR, "chdir: %s", strerror (errno));
78                                 return (-1);
79                         }
80                 }
81                 else
82                 {
83                         syslog (LOG_ERR, "chdir: %s", strerror (errno));
84                         return (-1);
85                 }
86         }
87
88         return (0);
89 }
90
91 #ifdef HAVE_LIBKSTAT
92 void update_kstat (void)
93 {
94         if (kc == NULL)
95         {
96                 if ((kc = kstat_open ()) == NULL)
97                         syslog (LOG_ERR, "Unable to open kstat control structure");
98         }
99         else
100         {
101                 kid_t kid;
102                 kid = kstat_chain_update (kc);
103                 if (kid > 0)
104                 {
105                         syslog (LOG_INFO, "kstat chain has been updated");
106                         plugin_init_all ();
107                 }
108                 else if (kid < 0)
109                         syslog (LOG_ERR, "kstat chain update failed");
110                 /* else: everything works as expected */
111         }
112
113         return;
114 }
115 #endif /* HAVE_LIBKSTAT */
116
117 void exit_usage (char *name)
118 {
119         printf ("Usage: %s [OPTIONS]\n\n"
120                         
121                         "Available options:\n"
122                         "  General:\n"
123                         /*
124                         "    -C <dir>        Configuration file.\n"
125                         "                    Default: %s\n"
126                         */
127                         "    -P <file>       PID File.\n"
128                         "                    Default: %s\n"
129                         "    -M <dir>        Module/Plugin directory.\n"
130                         "                    Default: %s\n"
131                         "    -D <dir>        Data storage directory.\n"
132                         "                    Default: %s\n"
133                         "    -f              Don't fork to the background.\n"
134 #ifdef HAVE_LIBRRD
135                         "    -l              Start in local mode (no network).\n"
136                         "    -c              Start in client (sender) mode.\n"
137                         "    -s              Start in server (listener) mode.\n"
138 #endif /* HAVE_LIBRRD */
139 #if COLLECT_PING
140                         "  Ping:\n"
141                         "    -p <host>       Host to ping periodically, may be repeated to ping\n"
142                         "                    more than one host.\n"
143 #endif /* COLLECT_PING */
144                         "\n%s %s, http://verplant.org/collectd/\n"
145                         "by Florian octo Forster <octo@verplant.org>\n"
146                         "for contributions see `AUTHORS'\n",
147                         PACKAGE, /* CONFIGFILE, */ PIDFILE, PLUGINDIR, PKGLOCALSTATEDIR, PACKAGE, VERSION);
148         exit (0);
149 }
150
151 int start_client (void)
152 {
153         int sleepingtime;
154
155 #ifdef HAVE_LIBKSTAT
156         kc = NULL;
157         update_kstat ();
158 #endif
159
160 #ifdef HAVE_LIBSTATGRAB
161         if (sg_init ())
162         {
163                 syslog (LOG_ERR, "sg_init: %s", sg_str_error (sg_get_error ()));
164                 return (-1);
165         }
166
167         if (sg_drop_privileges ())
168         {
169                 syslog (LOG_ERR, "sg_drop_privileges: %s", sg_str_error (sg_get_error ()));
170                 return (-1);
171         }
172 #endif
173
174         plugin_init_all ();
175
176         while (loop == 0)
177         {
178                 curtime = time (NULL);
179 #ifdef HAVE_LIBKSTAT
180                 update_kstat ();
181 #endif
182                 plugin_read_all ();
183
184                 sleepingtime = 10;
185                 while (sleepingtime != 0)
186                 {
187                         if (loop != 0)
188                                 break;
189                         sleepingtime = sleep (sleepingtime);
190                 }
191         }
192
193         return (0);
194 }
195
196 #ifdef HAVE_LIBRRD
197 int start_server (void)
198 {
199         char *host;
200         char *type;
201         char *instance;
202         char *values;
203
204         while (loop == 0)
205         {
206                 if (multicast_receive (&host, &type, &instance, &values) == 0)
207                         plugin_write (host, type, instance, values);
208
209                 if (host     != NULL) free (host);     host     = NULL;
210                 if (type     != NULL) free (type);     type     = NULL;
211                 if (instance != NULL) free (instance); instance = NULL;
212                 if (values   != NULL) free (values);   values   = NULL;
213         }
214         
215         return (0);
216 }
217 #endif /* HAVE_LIBRRD */
218
219 int pidfile_create (char *file)
220 {
221         FILE *fh;
222
223         if (file == NULL)
224                 file = PIDFILE;
225
226         if ((fh = fopen (file, "w")) == NULL)
227         {
228                 syslog (LOG_ERR, "fopen (%s): %s", file, strerror (errno));
229                 return (1);
230         }
231
232         fprintf (fh, "%d\n", getpid());
233         fclose(fh);
234
235         return (0);
236 }
237
238 int pidfile_remove (void)
239 {
240       return (unlink (PIDFILE));
241 }
242
243 int main (int argc, char **argv)
244 {
245         struct sigaction sigIntAction, sigChldAction;
246 #if COLLECT_DAEMON
247         pid_t pid;
248 #endif
249
250         char *configfile = CONFIGFILE;
251         char *pidfile    = PIDFILE;
252         char *plugindir  = PLUGINDIR;
253         char *datadir    = PKGLOCALSTATEDIR;
254
255         int daemonize = 1;
256
257 #ifdef HAVE_LIBRRD
258         operating_mode = MODE_LOCAL;
259 #endif
260         
261         /* open syslog */
262         openlog (PACKAGE, LOG_CONS | LOG_PID, LOG_DAEMON);
263
264         /* read options */
265         while (1)
266         {
267                 int c;
268
269                 c = getopt (argc, argv, "C:P:M:D:fh"
270 #if HAVE_LIBRRD
271                                 "csl"
272 #endif /* HAVE_LIBRRD */
273 #if COLLECT_PING
274                                 "p:"
275 #endif /* COLLECT_PING */
276                 );
277
278                 if (c == -1)
279                         break;
280
281                 switch (c)
282                 {
283 #ifdef HAVE_LIBRRD
284                         case 'c':
285                                 operating_mode = MODE_CLIENT;
286                                 break;
287
288                         case 's':
289                                 operating_mode = MODE_SERVER;
290                                 break;
291
292                         case 'l':
293                                 operating_mode = MODE_LOCAL;
294                                 break;
295 #endif /* HAVE_LIBRRD */
296                         case 'C':
297                                 configfile = optarg;
298                                 break;
299                         case 'P':
300                                 pidfile = optarg;
301                                 break;
302                         case 'M':
303                                 plugindir = optarg;
304                                 break;
305                         case 'D':
306                                 datadir = optarg;
307                                 break;
308                         case 'f':
309                                 daemonize = 0;
310                                 break;
311 #if COLLECT_PING
312                         case 'p':
313                                 if (num_pinghosts < MAX_PINGHOSTS)
314                                         pinghosts[num_pinghosts++] = optarg;
315                                 else
316                                         fprintf (stderr, "Maximum of %i ping hosts reached.\n", MAX_PINGHOSTS);
317                                 break;
318 #endif /* COLLECT_PING */
319                         case 'h':
320                         default:
321                                 exit_usage (argv[0]);
322                 }
323                                 
324         }
325
326         /*
327          * Load plugins and change to output directory
328          * Loading plugins is done first so relative paths work as expected..
329          */
330         if (plugin_load_all (plugindir) < 1)
331         {
332                 fprintf (stderr, "Error: No plugins found.\n");
333                 return (1);
334         }
335
336         if (change_basedir (datadir))
337         {
338                 fprintf (stderr, "Error: Unable to change to directory `%s'.\n", datadir);
339                 return (1);
340         }
341
342         /*
343          * install signal handlers
344          */
345         sigIntAction.sa_handler = sigIntHandler;
346         sigaction (SIGINT, &sigIntAction, NULL);
347
348         sigChldAction.sa_handler = SIG_IGN;
349         sigaction (SIGCHLD, &sigChldAction, NULL);
350
351         /*
352          * fork off child
353          */
354 #if COLLECT_DAEMON
355         if (daemonize)
356         {
357                 if ((pid = fork ()) == -1)
358                 {
359                         /* error */
360                         fprintf (stderr, "fork: %s", strerror (errno));
361                         return (1);
362                 }
363                 else if (pid != 0)
364                 {
365                         /* parent */
366                         /* printf ("Running (PID %i)\n", pid); */
367                         return (0);
368                 }
369
370                 /* Detach from session */
371                 setsid ();
372
373                 /* Write pidfile */
374                 if (pidfile_create (pidfile))
375                         exit (2);
376
377                 /* close standard descriptors */
378                 close (2);
379                 close (1);
380                 close (0);
381
382                 if (open ("/dev/null", O_RDWR) != 0)
383                 {
384                         syslog (LOG_ERR, "Error: Could not connect `STDIN' to `/dev/null'");
385                         return (1);
386                 }
387                 if (dup (0) != 1)
388                 {
389                         syslog (LOG_ERR, "Error: Could not connect `STDOUT' to `/dev/null'");
390                         return (1);
391                 }
392                 if (dup (0) != 2)
393                 {
394                         syslog (LOG_ERR, "Error: Could not connect `STDERR' to `/dev/null'");
395                         return (1);
396                 }
397         } /* if (daemonize) */
398 #endif /* COLLECT_DAEMON */
399
400         /*
401          * run the actual loops
402          */
403 #ifdef 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         /* close syslog */
411         syslog (LOG_INFO, "Exiting normally");
412         closelog ();
413
414         if (daemonize)
415                 pidfile_remove();
416
417         return (0);
418 }