]> arthur.barton.de Git - netdata.git/blob - src/main.c
added -ch option to set container host prefix for /proc and /sys #10
[netdata.git] / src / main.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <unistd.h>
4 #include <signal.h>
5 #include <syslog.h>
6 #include <pthread.h>
7 #include <string.h>
8 #include <errno.h>
9 #include <sys/types.h>
10 #include <sys/wait.h>
11
12 #include "common.h"
13 #include "log.h"
14 #include "daemon.h"
15 #include "web_server.h"
16 #include "popen.h"
17 #include "config.h"
18 #include "web_client.h"
19 #include "rrd.h"
20 #include "rrd2json.h"
21
22 #include "unit_test.h"
23
24 #include "plugins_d.h"
25 #include "plugin_idlejitter.h"
26 #include "plugin_tc.h"
27 #include "plugin_checks.h"
28 #include "plugin_proc.h"
29 #include "plugin_nfacct.h"
30
31 #include "main.h"
32
33 struct netdata_static_thread {
34         char *name;
35
36         char *config_section;
37         char *config_name;
38
39         int enabled;
40
41         pthread_t *thread;
42
43         void (*init_routine) (void);
44         void *(*start_routine) (void *);
45 };
46
47 struct netdata_static_thread static_threads[] = {
48         {"tc",                  "plugins",      "tc",                   1, NULL, NULL,  tc_main},
49         {"idlejitter",  "plugins",      "idlejitter",   1, NULL, NULL,  cpuidlejitter_main},
50         {"proc",                "plugins",      "proc",                 1, NULL, NULL,  proc_main},
51
52 #ifdef INTERNAL_PLUGIN_NFACCT
53         // nfacct requires root access
54         // so, we build it as an external plugin with setuid to root
55         {"nfacct",              "plugins",      "nfacct",               1, NULL, NULL,  nfacct_main},
56 #endif
57
58         {"plugins.d",   NULL,           NULL,                   1, NULL, NULL,  pluginsd_main},
59         {"check",               "plugins",      "checks",               0, NULL, NULL,  checks_main},
60         {"web",                 NULL,           NULL,                   1, NULL, NULL,  socket_listen_main},
61         {NULL,                  NULL,           NULL,                   0, NULL, NULL,  NULL}
62 };
63
64 int killpid(pid_t pid, int sig)
65 {
66         int ret = -1;
67         debug(D_EXIT, "Request to kill pid %d", pid);
68
69         errno = 0;
70         if(kill(pid, 0) == -1) {
71                 switch(errno) {
72                         case ESRCH: 
73                                 error("Request to kill pid %d, but it is not running.", pid);
74                                 break;
75
76                         case EPERM:
77                                 error("Request to kill pid %d, but I do not have enough permissions.", pid);
78                                 break;
79
80                         default:
81                                 error("Request to kill pid %d, but I received an error.", pid);
82                                 break;
83                 }
84         }
85         else {
86                 errno = 0;
87                 
88                 void (*old)(int);               
89                 old = signal(sig, SIG_IGN);
90                 if(old == SIG_ERR) {
91                         error("Cannot overwrite signal handler for signal %d", sig);
92                         old = sig_handler;
93                 }
94
95                 ret = kill(pid, sig);
96
97                 if(signal(sig, old) == SIG_ERR)
98                         error("Cannot restore signal handler for signal %d", sig);
99
100                 if(ret == -1) {
101                         switch(errno) {
102                                 case ESRCH: 
103                                         error("Cannot kill pid %d, but it is not running.", pid);
104                                         break;
105
106                                 case EPERM:
107                                         error("Cannot kill pid %d, but I do not have enough permissions.", pid);
108                                         break;
109
110                                 default:
111                                         error("Cannot kill pid %d, but I received an error.", pid);
112                                         break;
113                         }
114                 }
115         }
116
117         return ret;
118 }
119
120 void kill_childs()
121 {
122         siginfo_t info;
123
124         struct web_client *w;
125         for(w = web_clients; w ; w = w->next) {
126                 debug(D_EXIT, "Stopping web client %s", w->client_ip);
127                 pthread_cancel(w->thread);
128                 pthread_join(w->thread, NULL);
129         }
130
131         int i;  
132         for (i = 0; static_threads[i].name != NULL ; i++) {
133                 if(static_threads[i].thread) {
134                         debug(D_EXIT, "Stopping %s thread", static_threads[i].name);
135                         pthread_cancel(*static_threads[i].thread);
136                         pthread_join(*static_threads[i].thread, NULL);
137                         static_threads[i].thread = NULL;
138                 }
139         }
140
141         if(tc_child_pid) {
142                 info("Killing tc-qos-helper procees");
143                 if(killpid(tc_child_pid, SIGTERM) != -1)
144                         waitid(tc_child_pid, 0, &info, WEXITED);
145         }
146         tc_child_pid = 0;
147
148         struct plugind *cd;
149         for(cd = pluginsd_root ; cd ; cd = cd->next) {
150                 debug(D_EXIT, "Stopping %s plugin thread", cd->id);
151                 pthread_cancel(cd->thread);
152                 pthread_join(cd->thread, NULL);
153
154                 if(cd->pid && !cd->obsolete) {
155                         debug(D_EXIT, "killing %s plugin process", cd->id);
156                         if(killpid(cd->pid, SIGTERM) != -1)
157                                 waitid(cd->pid, 0, &info, WEXITED);
158                 }
159         }
160
161         debug(D_EXIT, "All threads/childs stopped.");
162 }
163
164
165 int main(int argc, char **argv)
166 {
167         int i;
168         int config_loaded = 0;
169
170         // set the name for logging
171         program_name = "netdata";
172
173         // parse  the arguments
174         for(i = 1; i < argc ; i++) {
175                 if(strcmp(argv[i], "-c") == 0 && (i+1) < argc) {
176                         if(load_config(argv[i+1], 1) != 1) {
177                                 fprintf(stderr, "Cannot load configuration file %s. Reason: %s\n", argv[i+1], strerror(errno));
178                                 exit(1);
179                         }
180                         else {
181                                 debug(D_OPTIONS, "Configuration loaded from %s.", argv[i+1]);
182                                 config_loaded = 1;
183                         }
184                         i++;
185                 }
186                 else if(strcmp(argv[i], "-df") == 0 && (i+1) < argc) { config_set("global", "debug flags",  argv[i+1]); i++; }
187                 else if(strcmp(argv[i], "-p")  == 0 && (i+1) < argc) { config_set("global", "port",         argv[i+1]); i++; }
188                 else if(strcmp(argv[i], "-u")  == 0 && (i+1) < argc) { config_set("global", "run as user",  argv[i+1]); i++; }
189                 else if(strcmp(argv[i], "-l")  == 0 && (i+1) < argc) { config_set("global", "history",      argv[i+1]); i++; }
190                 else if(strcmp(argv[i], "-t")  == 0 && (i+1) < argc) { config_set("global", "update every", argv[i+1]); i++; }
191                 else if(strcmp(argv[i], "-ch") == 0 && (i+1) < argc) { config_set("global", "host access prefix", argv[i+1]); i++; }
192                 else if(strcmp(argv[i], "--unittest")  == 0) {
193                         if(unit_test_storage()) exit(1);
194                         exit(0);
195                         rrd_update_every = 1;
196                         if(unit_test(1000000, 0)) exit(1);
197                         if(unit_test(1000000, 500000)) exit(1);
198                         if(unit_test(1000000, 100000)) exit(1);
199                         if(unit_test(1000000, 900000)) exit(1);
200                         if(unit_test(2000000, 0)) exit(1);
201                         if(unit_test(2000000, 500000)) exit(1);
202                         if(unit_test(2000000, 100000)) exit(1);
203                         if(unit_test(2000000, 900000)) exit(1);
204                         if(unit_test(500000, 500000)) exit(1);
205                         //if(unit_test(500000, 100000)) exit(1); // FIXME: the expected numbers are wrong
206                         //if(unit_test(500000, 900000)) exit(1); // FIXME: the expected numbers are wrong
207                         if(unit_test(500000, 0)) exit(1);
208                         fprintf(stderr, "\n\nALL TESTS PASSED\n\n");
209                         exit(0);
210                 }
211                 else {
212                         fprintf(stderr, "Cannot understand option '%s'.\n", argv[i]);
213                         fprintf(stderr, "\nUSAGE: %s [-d] [-l LINES_TO_SAVE] [-u UPDATE_TIMER] [-p LISTEN_PORT] [-dl debug log file] [-df debug flags].\n\n", argv[0]);
214                         fprintf(stderr, "  -c CONFIG FILE the configuration file to load. Default: %s.\n", CONFIG_DIR "/" CONFIG_FILENAME);
215                         fprintf(stderr, "  -l LINES_TO_SAVE can be from 5 to %d lines in JSON data. Default: %d.\n", RRD_HISTORY_ENTRIES_MAX, RRD_DEFAULT_HISTORY_ENTRIES);
216                         fprintf(stderr, "  -t UPDATE_TIMER can be from 1 to %d seconds. Default: %d.\n", UPDATE_EVERY_MAX, UPDATE_EVERY);
217                         fprintf(stderr, "  -p LISTEN_PORT can be from 1 to %d. Default: %d.\n", 65535, LISTEN_PORT);
218                         fprintf(stderr, "  -u USERNAME can be any system username to run as. Default: none.\n");
219                         fprintf(stderr, "  -ch path to access host /proc and /sys when running in a container. Default: empty.\n");
220                         fprintf(stderr, "  -df FLAGS debug options. Default: 0x%8llx.\n", debug_flags);
221                         exit(1);
222                 }
223         }
224
225         if(!config_loaded) load_config(NULL, 0);
226
227         char *input_log_file = NULL;
228         char *output_log_file = NULL;
229         char *error_log_file = NULL;
230         char *access_log_file = NULL;
231         {
232                 char buffer[1024];
233
234                 // --------------------------------------------------------------------
235
236                 sprintf(buffer, "0x%08llx", 0ULL);
237                 char *flags = config_get("global", "debug flags", buffer);
238                 debug_flags = strtoull(flags, NULL, 0);
239                 debug(D_OPTIONS, "Debug flags set to '0x%8llx'.", debug_flags);
240
241                 // --------------------------------------------------------------------
242
243                 global_host_prefix = config_get("global", "host access prefix", "");
244
245                 // --------------------------------------------------------------------
246
247                 output_log_file = config_get("global", "debug log", LOG_DIR "/debug.log");
248                 if(strcmp(output_log_file, "syslog") == 0) {
249                         output_log_syslog = 1;
250                         output_log_file = NULL;
251                 }
252                 else if(strcmp(output_log_file, "none") == 0) {
253                         output_log_syslog = 0;
254                         output_log_file = NULL;
255                 }
256                 else output_log_syslog = 0;
257
258                 // --------------------------------------------------------------------
259
260                 silent = 0;
261                 error_log_file = config_get("global", "error log", LOG_DIR "/error.log");
262                 if(strcmp(error_log_file, "syslog") == 0) {
263                         error_log_syslog = 1;
264                         error_log_file = NULL;
265                 }
266                 else if(strcmp(error_log_file, "none") == 0) {
267                         error_log_syslog = 0;
268                         error_log_file = NULL;
269                         silent = 1; // optimization - do not even generate debug log entries
270                 }
271                 else error_log_syslog = 0;
272
273                 // --------------------------------------------------------------------
274
275                 access_log_file = config_get("global", "access log", LOG_DIR "/access.log");
276                 if(strcmp(access_log_file, "syslog") == 0) {
277                         access_log_syslog = 1;
278                         access_log_file = NULL;
279                 }
280                 else if(strcmp(access_log_file, "none") == 0) {
281                         access_log_syslog = 0;
282                         access_log_file = NULL;
283                 }
284                 else access_log_syslog = 0;
285
286                 // --------------------------------------------------------------------
287
288                 rrd_memory_mode = rrd_memory_mode_id(config_get("global", "memory mode", rrd_memory_mode_name(rrd_memory_mode)));
289
290                 // --------------------------------------------------------------------
291
292                 if(gethostname(buffer, HOSTNAME_MAX) == -1)
293                         error("WARNING: Cannot get machine hostname.");
294                 hostname = config_get("global", "hostname", buffer);
295                 debug(D_OPTIONS, "hostname set to '%s'", hostname);
296
297                 // --------------------------------------------------------------------
298
299                 rrd_default_history_entries = config_get_number("global", "history", RRD_DEFAULT_HISTORY_ENTRIES);
300                 if(rrd_default_history_entries < 5 || rrd_default_history_entries > RRD_HISTORY_ENTRIES_MAX) {
301                         fprintf(stderr, "Invalid save lines %d given. Defaulting to %d.\n", rrd_default_history_entries, RRD_DEFAULT_HISTORY_ENTRIES);
302                         rrd_default_history_entries = RRD_DEFAULT_HISTORY_ENTRIES;
303                 }
304                 else {
305                         debug(D_OPTIONS, "save lines set to %d.", rrd_default_history_entries);
306                 }
307
308                 // --------------------------------------------------------------------
309
310                 rrd_update_every = config_get_number("global", "update every", UPDATE_EVERY);
311                 if(rrd_update_every < 1 || rrd_update_every > 600) {
312                         fprintf(stderr, "Invalid update timer %d given. Defaulting to %d.\n", rrd_update_every, UPDATE_EVERY_MAX);
313                         rrd_update_every = UPDATE_EVERY;
314                 }
315                 else debug(D_OPTIONS, "update timer set to %d.", rrd_update_every);
316
317                 // --------------------------------------------------------------------
318                 
319                 for (i = 0; static_threads[i].name != NULL ; i++) {
320                         struct netdata_static_thread *st = &static_threads[i];
321
322                         if(st->config_name) st->enabled = config_get_boolean(st->config_section, st->config_name, st->enabled);
323                         if(st->enabled && st->init_routine) st->init_routine();
324                 }
325
326                 // --------------------------------------------------------------------
327
328                 prepare_rundir();
329                 char *user = config_get("global", "run as user", (getuid() == 0)?"nobody":"");
330                 if(*user) {
331                         if(become_user(user) != 0) {
332                                 fprintf(stderr, "Cannot become user %s.\n", user);
333                                 exit(1);
334                         }
335                         else debug(D_OPTIONS, "Successfully became user %s.", user);
336                 }
337
338                 // --------------------------------------------------------------------
339
340                 listen_backlog = config_get_number("global", "http port listen backlog", LISTEN_BACKLOG);
341
342                 listen_port = config_get_number("global", "port", LISTEN_PORT);
343                 if(listen_port < 1 || listen_port > 65535) {
344                         fprintf(stderr, "Invalid listen port %d given. Defaulting to %d.\n", listen_port, LISTEN_PORT);
345                         listen_port = LISTEN_PORT;
346                 }
347                 else debug(D_OPTIONS, "Listen port set to %d.", listen_port);
348
349                 int ip = 0;
350                 char *ipv = config_get("global", "ip version", "any");
351                 if(!strcmp(ipv, "any") || !strcmp(ipv, "both") || !strcmp(ipv, "all")) ip = 0;
352                 else if(!strcmp(ipv, "ipv4") || !strcmp(ipv, "IPV4") || !strcmp(ipv, "IPv4") || !strcmp(ipv, "4")) ip = 4;
353                 else if(!strcmp(ipv, "ipv6") || !strcmp(ipv, "IPV6") || !strcmp(ipv, "IPv6") || !strcmp(ipv, "6")) ip = 6;
354                 else fprintf(stderr, "Cannot understand ip version '%s'. Assumming 'any'.", ipv);
355
356                 if(ip == 0 || ip == 6) listen_fd = create_listen_socket6(listen_port, listen_backlog);
357                 if(listen_fd < 0) {
358                         listen_fd = create_listen_socket4(listen_port, listen_backlog);
359                         if(listen_fd >= 0 && ip != 4) fprintf(stderr, "Managed to open an IPv4 socket on port %d.", listen_port);
360                 }
361
362                 if(listen_fd < 0) fatal("Cannot listen socket.");
363         }
364
365         // never become a problem
366         if(nice(20) == -1) fprintf(stderr, "Cannot lower my CPU priority. Error: %s.\n", strerror(errno));
367
368 #ifndef NETDATA_NO_DAEMON
369         if(become_daemon(0, input_log_file, output_log_file, error_log_file, access_log_file, &access_fd, &stdaccess) == -1) {
370                 fprintf(stderr, "Cannot demonize myself (%s).", strerror(errno));
371                 exit(1);
372         }
373 #endif
374
375         if(output_log_syslog || error_log_syslog || access_log_syslog)
376                 openlog("netdata", LOG_PID, LOG_DAEMON);
377
378         info("NetData started on pid %d", getpid());
379
380
381         // catch all signals
382         for (i = 1 ; i < 65 ;i++) {
383                 switch(i) {
384                         case SIGSEGV:
385                         case SIGFPE:
386                         case SIGCHLD:
387                                 signal(i, SIG_DFL);
388                                 break;
389
390                         default:
391                                 signal(i,  sig_handler);
392                                 break;
393                 }
394         }
395
396         for (i = 0; static_threads[i].name != NULL ; i++) {
397                 struct netdata_static_thread *st = &static_threads[i];
398
399                 if(st->enabled) {
400                         st->thread = malloc(sizeof(pthread_t));
401
402                         info("Starting thread %s.", st->name);
403
404                         if(pthread_create(st->thread, NULL, st->start_routine, NULL))
405                                 error("failed to create new thread for %s.", st->name);
406
407                         else if(pthread_detach(*st->thread))
408                                 error("Cannot request detach of newly created %s thread.", st->name);
409                 }
410                 else info("Not starting thread %s.", st->name);
411         }
412
413         // for future use - the main thread
414         while(1) sleep(60);
415
416         exit(0);
417 }