]> arthur.barton.de Git - netdata.git/blob - src/main.c
Merge pull request #879 from ktsaou/master
[netdata.git] / src / main.c
1 #include "common.h"
2
3 extern void *cgroups_main(void *ptr);
4
5 void netdata_cleanup_and_exit(int ret) {
6     netdata_exit = 1;
7
8     error_log_limit_unlimited();
9
10     info("Called: netdata_cleanup_and_exit()");
11 #ifdef NETDATA_INTERNAL_CHECKS
12     rrdset_free_all();
13 #else
14     rrdset_save_all();
15 #endif
16     // kill_childs();
17
18     if(pidfile[0]) {
19         if(unlink(pidfile) != 0)
20             error("Cannot unlink pidfile '%s'.", pidfile);
21     }
22
23     info("NetData exiting. Bye bye...");
24     exit(ret);
25 }
26
27 struct netdata_static_thread {
28     char *name;
29
30     char *config_section;
31     char *config_name;
32
33     int enabled;
34
35     pthread_t *thread;
36
37     void (*init_routine) (void);
38     void *(*start_routine) (void *);
39 } static_threads[] = {
40 #ifdef INTERNAL_PLUGIN_NFACCT
41 // nfacct requires root access
42     // so, we build it as an external plugin with setuid to root
43     {"nfacct",              "plugins",  "nfacct",     1, NULL, NULL, nfacct_main},
44 #endif
45
46     {"tc",                 "plugins",   "tc",         1, NULL, NULL, tc_main},
47     {"idlejitter",         "plugins",   "idlejitter", 1, NULL, NULL, cpuidlejitter_main},
48     {"proc",               "plugins",   "proc",       1, NULL, NULL, proc_main},
49     {"cgroups",            "plugins",   "cgroups",    1, NULL, NULL, cgroups_main},
50     {"check",              "plugins",   "checks",     0, NULL, NULL, checks_main},
51     {"health",              NULL,       NULL,         1, NULL, NULL, health_main},
52     {"plugins.d",           NULL,       NULL,         1, NULL, NULL, pluginsd_main},
53     {"web",                 NULL,       NULL,         1, NULL, NULL, socket_listen_main_multi_threaded},
54     {"web-single-threaded", NULL,       NULL,         0, NULL, NULL, socket_listen_main_single_threaded},
55     {NULL,                  NULL,       NULL,         0, NULL, NULL, NULL}
56 };
57
58 void web_server_threading_selection(void) {
59     int threaded = config_get_boolean("global", "multi threaded web server", 1);
60
61     int i;
62     for(i = 0; static_threads[i].name ; i++) {
63         if(static_threads[i].start_routine == socket_listen_main_multi_threaded)
64             static_threads[i].enabled = threaded?1:0;
65
66         if(static_threads[i].start_routine == socket_listen_main_single_threaded)
67             static_threads[i].enabled = threaded?0:1;
68     }
69
70     web_client_timeout = (int) config_get_number("global", "disconnect idle web clients after seconds", DEFAULT_DISCONNECT_IDLE_WEB_CLIENTS_AFTER_SECONDS);
71
72     web_donotrack_comply = config_get_boolean("global", "respect web browser do not track policy", web_donotrack_comply);
73
74 #ifdef NETDATA_WITH_ZLIB
75     web_enable_gzip = config_get_boolean("global", "enable web responses gzip compression", web_enable_gzip);
76
77     char *s = config_get("global", "web compression strategy", "default");
78     if(!strcmp(s, "default"))
79         web_gzip_strategy = Z_DEFAULT_STRATEGY;
80     else if(!strcmp(s, "filtered"))
81         web_gzip_strategy = Z_FILTERED;
82     else if(!strcmp(s, "huffman only"))
83         web_gzip_strategy = Z_HUFFMAN_ONLY;
84     else if(!strcmp(s, "rle"))
85         web_gzip_strategy = Z_RLE;
86     else if(!strcmp(s, "fixed"))
87         web_gzip_strategy = Z_FIXED;
88     else {
89         error("Invalid compression strategy '%s'. Valid strategies are 'default', 'filtered', 'huffman only', 'rle' and 'fixed'. Proceeding with 'default'.", s);
90         web_gzip_strategy = Z_DEFAULT_STRATEGY;
91     }
92
93     web_gzip_level = (int)config_get_number("global", "web compression level", 3);
94     if(web_gzip_level < 1) {
95         error("Invalid compression level %d. Valid levels are 1 (fastest) to 9 (best ratio). Proceeding with level 1 (fastest compression).", web_gzip_level);
96         web_gzip_level = 1;
97     }
98     else if(web_gzip_level > 9) {
99         error("Invalid compression level %d. Valid levels are 1 (fastest) to 9 (best ratio). Proceeding with level 9 (best compression).", web_gzip_level);
100         web_gzip_level = 9;
101     }
102 #endif /* NETDATA_WITH_ZLIB */
103 }
104
105
106 int killpid(pid_t pid, int sig)
107 {
108     int ret = -1;
109     debug(D_EXIT, "Request to kill pid %d", pid);
110
111     errno = 0;
112     if(kill(pid, 0) == -1) {
113         switch(errno) {
114             case ESRCH:
115                 error("Request to kill pid %d, but it is not running.", pid);
116                 break;
117
118             case EPERM:
119                 error("Request to kill pid %d, but I do not have enough permissions.", pid);
120                 break;
121
122             default:
123                 error("Request to kill pid %d, but I received an error.", pid);
124                 break;
125         }
126     }
127     else {
128         errno = 0;
129         ret = kill(pid, sig);
130         if(ret == -1) {
131             switch(errno) {
132                 case ESRCH:
133                     error("Cannot kill pid %d, but it is not running.", pid);
134                     break;
135
136                 case EPERM:
137                     error("Cannot kill pid %d, but I do not have enough permissions.", pid);
138                     break;
139
140                 default:
141                     error("Cannot kill pid %d, but I received an error.", pid);
142                     break;
143             }
144         }
145     }
146
147     return ret;
148 }
149
150 void kill_childs()
151 {
152     siginfo_t info;
153
154     struct web_client *w;
155     for(w = web_clients; w ; w = w->next) {
156         debug(D_EXIT, "Stopping web client %s", w->client_ip);
157         pthread_cancel(w->thread);
158         pthread_join(w->thread, NULL);
159     }
160
161     int i;
162     for (i = 0; static_threads[i].name != NULL ; i++) {
163         if(static_threads[i].thread) {
164             debug(D_EXIT, "Stopping %s thread", static_threads[i].name);
165             pthread_cancel(*static_threads[i].thread);
166             pthread_join(*static_threads[i].thread, NULL);
167             static_threads[i].thread = NULL;
168         }
169     }
170
171     if(tc_child_pid) {
172         info("Killing tc-qos-helper procees");
173         if(killpid(tc_child_pid, SIGTERM) != -1)
174             waitid(P_PID, (id_t) tc_child_pid, &info, WEXITED);
175     }
176     tc_child_pid = 0;
177
178     struct plugind *cd;
179     for(cd = pluginsd_root ; cd ; cd = cd->next) {
180         debug(D_EXIT, "Stopping %s plugin thread", cd->id);
181         pthread_cancel(cd->thread);
182         pthread_join(cd->thread, NULL);
183
184         if(cd->pid && !cd->obsolete) {
185             debug(D_EXIT, "killing %s plugin process", cd->id);
186             if(killpid(cd->pid, SIGTERM) != -1)
187                 waitid(P_PID, (id_t) cd->pid, &info, WEXITED);
188         }
189     }
190
191     // if, for any reason there is any child exited
192     // catch it here
193     waitid(P_PID, 0, &info, WEXITED|WNOHANG);
194
195     debug(D_EXIT, "All threads/childs stopped.");
196 }
197
198 struct option_def options[] = {
199     // opt description                                                       arg name                     default value
200     {'c', "Load alternate configuration file",                               "config_file",                          CONFIG_DIR "/" CONFIG_FILENAME},
201     {'D', "Disable fork into background",                                    NULL,                                   NULL},
202     {'h', "Display help message",                                            NULL,                                   NULL},
203     {'P', "File to save a pid while running",                                "FILE",                                 NULL},
204     {'i', "The IP address to listen to.",                                    "address",                              "All addresses"},
205     {'k', "Check daemon configuration.",                                     NULL,                                   NULL},
206     {'p', "Port to listen. Can be from 1 to 65535.",                         "port_number",                          "19999"},
207     {'s', "Path to access host /proc and /sys when running in a container.", "PATH",                                 NULL},
208     {'t', "The frequency in seconds, for data collection. \
209 Same as 'update every' config file option.",                                 "seconds",                              "1"},
210     {'u', "System username to run as.",                                      "username",                             "netdata"},
211     {'v', "Version of the program",                                          NULL,                                   NULL},
212     {'W', "vendor options.",                                                 "stacksize=N|unittest|debug_flags=N",   NULL},
213 };
214
215 void help(int exitcode) {
216     FILE *stream;
217     if(exitcode == 0)
218         stream = stdout;
219     else
220         stream = stderr;
221
222     int num_opts = sizeof(options) / sizeof(struct option_def);
223     int i;
224     int max_len_arg = 0;
225
226     // Compute maximum argument length
227     for( i = 0; i < num_opts; i++ ) {
228         if(options[i].arg_name) {
229             int len_arg = (int)strlen(options[i].arg_name);
230             if(len_arg > max_len_arg) max_len_arg = len_arg;
231         }
232     }
233
234     fprintf(stream, "SYNOPSIS: netdata [options]\n");
235     fprintf(stream, "\n");
236     fprintf(stream, "Options:\n");
237
238     // Output options description.
239     for( i = 0; i < num_opts; i++ ) {
240         fprintf(stream, "  -%c %-*s  %s", options[i].val, max_len_arg, options[i].arg_name ? options[i].arg_name : "", options[i].description);
241         if(options[i].default_value) {
242             fprintf(stream, " Default: %s\n", options[i].default_value);
243         } else {
244             fprintf(stream, "\n");
245         }
246     }
247
248     fflush(stream);
249     exit(exitcode);
250 }
251
252 // TODO: Remove this function with the nix major release.
253 void remove_option(int opt_index, int *argc, char **argv) {
254     int i = opt_index;
255     // remove the options.
256     do {
257         *argc = *argc - 1;
258         for(i = opt_index; i < *argc; i++) {
259             argv[i] = argv[i+1];
260         }
261         i = opt_index;
262     } while(argv[i][0] != '-' && opt_index >= *argc);
263 }
264
265 static const char *verify_required_directory(const char *dir) {
266     if(chdir(dir) == -1)
267         fatal("Cannot cd to directory '%s'", dir);
268
269     DIR *d = opendir(dir);
270     if(!d)
271         fatal("Cannot examine the contents of directory '%s'", dir);
272     closedir(d);
273
274     return dir;
275 }
276
277 int main(int argc, char **argv)
278 {
279     char *hostname = "localhost";
280     int i, check_config = 0;
281     int config_loaded = 0;
282     int dont_fork = 0;
283     size_t wanted_stacksize = 0, stacksize = 0;
284     pthread_attr_t attr;
285
286     // global initialization
287     get_HZ();
288
289     // set the name for logging
290     program_name = "netdata";
291
292     // parse command line.
293
294     // parse depercated options
295     // TODO: Remove this block with the next major release.
296     {
297         i = 1;
298         while(i < argc) {
299             if(strcmp(argv[i], "-pidfile") == 0 && (i+1) < argc) {
300                 strncpyz(pidfile, argv[i+1], FILENAME_MAX);
301                 fprintf(stderr, "%s: deprecated option -- %s -- please use -P instead.\n", argv[0], argv[i]);
302                 remove_option(i, &argc, argv);
303             }
304             else if(strcmp(argv[i], "-nodaemon") == 0 || strcmp(argv[i], "-nd") == 0) {
305                 dont_fork = 1;
306                 fprintf(stderr, "%s: deprecated option -- %s -- please use -D instead.\n ", argv[0], argv[i]);
307                 remove_option(i, &argc, argv);
308             }
309             else if(strcmp(argv[i], "-ch") == 0 && (i+1) < argc) {
310                 config_set("global", "host access prefix", argv[i+1]);
311                 fprintf(stderr, "%s: deprecated option -- %s -- please use -s instead.\n", argv[0], argv[i]);
312                 remove_option(i, &argc, argv);
313             }
314             else if(strcmp(argv[i], "-l") == 0 && (i+1) < argc) {
315                 config_set("global", "history", argv[i+1]);
316                 fprintf(stderr, "%s: deprecated option -- %s -- This option will be removed with V2.*.\n", argv[0], argv[i]);
317                 remove_option(i, &argc, argv);
318             }
319             else i++;
320         }
321     }
322
323     // parse options
324     {
325         int num_opts = sizeof(options) / sizeof(struct option_def);
326         char optstring[(num_opts * 2) + 1];
327
328         int string_i = 0;
329         for( i = 0; i < num_opts; i++ ) {
330             optstring[string_i] = options[i].val;
331             string_i++;
332             if(options[i].arg_name) {
333                 optstring[string_i] = ':';
334                 string_i++;
335             }
336         }
337
338         int opt;
339         while( (opt = getopt(argc, argv, optstring)) != -1 ) {
340             switch(opt) {
341                 case 'c':
342                     if(load_config(optarg, 1) != 1) {
343                         error("Cannot load configuration file %s.", optarg);
344                         exit(1);
345                     }
346                     else {
347                         debug(D_OPTIONS, "Configuration loaded from %s.", optarg);
348                         config_loaded = 1;
349                     }
350                     break;
351                 case 'D':
352                     dont_fork = 1;
353                     break;
354                 case 'h':
355                     help(0);
356                     break;
357                 case 'i':
358                     config_set("global", "bind to", optarg);
359                     break;
360                 case 'k':
361                     dont_fork = 1;
362                     check_config = 1;
363                     break;
364                 case 'P':
365                     strncpy(pidfile, optarg, FILENAME_MAX);
366                     pidfile[FILENAME_MAX] = '\0';
367                     break;
368                 case 'p':
369                     config_set("global", "default port", optarg);
370                     break;
371                 case 's':
372                     config_set("global", "host access prefix", optarg);
373                     break;
374                 case 't':
375                     config_set("global", "update every", optarg);
376                     break;
377                 case 'u':
378                     config_set("global", "run as user", optarg);
379                     break;
380                 case 'v':
381                     // TODO: Outsource version to makefile which can compute version from git.
382                     printf("netdata 1.3.1_master\n");
383                     return 0;
384                 case 'W':
385                     {
386                         char* stacksize_string = "stacksize=";
387                         char* debug_flags_string = "debug_flags=";
388                         if(strcmp(optarg, "unittest") == 0) {
389                             rrd_update_every = 1;
390                             if(run_all_mockup_tests()) exit(1);
391                             if(unit_test_storage()) exit(1);
392                             fprintf(stderr, "\n\nALL TESTS PASSED\n\n");
393                             exit(0);
394                         } else if(strncmp(optarg, stacksize_string, strlen(stacksize_string)) == 0) {
395                             optarg += strlen(stacksize_string);
396                             config_set("global", "pthread stack size", optarg);
397                         } else if(strncmp(optarg, debug_flags_string, strlen(debug_flags_string)) == 0) {
398                             optarg += strlen(debug_flags_string);
399                             config_set("global", "debug flags",  optarg);
400                             debug_flags = strtoull(optarg, NULL, 0);
401                         }
402                     }
403                     break;
404                 default: /* ? */
405                     help(1);
406                     break;
407             }
408         }
409     }
410
411     if(!config_loaded)
412         load_config(NULL, 0);
413
414     {
415         char *config_dir = config_get("global", "config directory", CONFIG_DIR);
416
417         // prepare configuration environment variables for the plugins
418         setenv("NETDATA_CONFIG_DIR" , verify_required_directory(config_dir) , 1);
419         setenv("NETDATA_PLUGINS_DIR", verify_required_directory(config_get("global", "plugins directory"  , PLUGINS_DIR)), 1);
420         setenv("NETDATA_WEB_DIR"    , verify_required_directory(config_get("global", "web files directory", WEB_DIR))    , 1);
421         setenv("NETDATA_CACHE_DIR"  , verify_required_directory(config_get("global", "cache directory"    , CACHE_DIR))  , 1);
422         setenv("NETDATA_LIB_DIR"    , verify_required_directory(config_get("global", "lib directory"      , VARLIB_DIR)) , 1);
423         setenv("NETDATA_LOG_DIR"    , verify_required_directory(config_get("global", "log directory"      , LOG_DIR))    , 1);
424
425         setenv("NETDATA_HOST_PREFIX", config_get("global", "host access prefix" , "")         , 1);
426         setenv("HOME"               , config_get("global", "home directory"     , CACHE_DIR)  , 1);
427
428         // disable buffering for python plugins
429         setenv("PYTHONUNBUFFERED", "1", 1);
430
431         // avoid flood calls to stat(/etc/localtime)
432         // http://stackoverflow.com/questions/4554271/how-to-avoid-excessive-stat-etc-localtime-calls-in-strftime-on-linux
433         setenv("TZ", ":/etc/localtime", 0);
434
435         // work while we are cd into config_dir
436         // to allow the plugins refer to their config
437         // files using relative filenames
438         if(chdir(config_dir) == -1)
439             fatal("Cannot cd to '%s'", config_dir);
440
441         char path[1024 + 1], *p = getenv("PATH");
442         if(!p) p = "/bin:/usr/bin";
443         snprintfz(path, 1024, "%s:%s", p, "/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin");
444         setenv("PATH", config_get("plugins", "PATH environment variable", path), 1);
445     }
446
447     char *user = NULL;
448     {
449         char *flags = config_get("global", "debug flags",  "0x00000000");
450         setenv("NETDATA_DEBUG_FLAGS", flags, 1);
451
452         debug_flags = strtoull(flags, NULL, 0);
453         debug(D_OPTIONS, "Debug flags set to '0x%8llx'.", debug_flags);
454
455         if(debug_flags != 0) {
456             struct rlimit rl = { RLIM_INFINITY, RLIM_INFINITY };
457             if(setrlimit(RLIMIT_CORE, &rl) != 0)
458                 info("Cannot request unlimited core dumps for debugging... Proceeding anyway...");
459             prctl(PR_SET_DUMPABLE, 1, 0, 0, 0);
460         }
461
462         // --------------------------------------------------------------------
463
464 #ifdef MADV_MERGEABLE
465         enable_ksm = config_get_boolean("global", "memory deduplication (ksm)", enable_ksm);
466 #else
467 #warning "Kernel memory deduplication (KSM) is not available"
468 #endif
469
470         // --------------------------------------------------------------------
471
472         global_host_prefix = config_get("global", "host access prefix", "");
473         setenv("NETDATA_HOST_PREFIX", global_host_prefix, 1);
474
475         // --------------------------------------------------------------------
476
477         stdout_filename    = config_get("global", "debug log",  LOG_DIR "/debug.log");
478         stderr_filename    = config_get("global", "error log",  LOG_DIR "/error.log");
479         stdaccess_filename = config_get("global", "access log", LOG_DIR "/access.log");
480
481         error_log_throttle_period = config_get_number("global", "errors flood protection period", error_log_throttle_period);
482         setenv("NETDATA_ERRORS_THROTTLE_PERIOD", config_get("global", "errors flood protection period"    , ""), 1);
483
484         error_log_errors_per_period = (unsigned long)config_get_number("global", "errors to trigger flood protection", error_log_errors_per_period);
485         setenv("NETDATA_ERRORS_PER_PERIOD"     , config_get("global", "errors to trigger flood protection", ""), 1);
486
487         if(check_config) {
488             stdout_filename = stderr_filename = stdaccess_filename = "system";
489             error_log_throttle_period = 0;
490             error_log_errors_per_period = 0;
491         }
492
493         // --------------------------------------------------------------------
494
495         rrd_memory_mode = rrd_memory_mode_id(config_get("global", "memory mode", rrd_memory_mode_name(rrd_memory_mode)));
496
497         // --------------------------------------------------------------------
498
499         {
500             char hostnamebuf[HOSTNAME_MAX + 1];
501             if(gethostname(hostnamebuf, HOSTNAME_MAX) == -1)
502                 error("WARNING: Cannot get machine hostname.");
503             hostname = config_get("global", "hostname", hostnamebuf);
504             debug(D_OPTIONS, "hostname set to '%s'", hostname);
505             setenv("NETDATA_HOSTNAME", hostname, 1);
506         }
507
508         // --------------------------------------------------------------------
509
510         rrd_default_history_entries = (int) config_get_number("global", "history", RRD_DEFAULT_HISTORY_ENTRIES);
511         if(rrd_default_history_entries < 5 || rrd_default_history_entries > RRD_HISTORY_ENTRIES_MAX) {
512             info("Invalid save lines %d given. Defaulting to %d.", rrd_default_history_entries, RRD_DEFAULT_HISTORY_ENTRIES);
513             rrd_default_history_entries = RRD_DEFAULT_HISTORY_ENTRIES;
514         }
515         else {
516             debug(D_OPTIONS, "save lines set to %d.", rrd_default_history_entries);
517         }
518
519         // --------------------------------------------------------------------
520
521         rrd_update_every = (int) config_get_number("global", "update every", UPDATE_EVERY);
522         if(rrd_update_every < 1 || rrd_update_every > 600) {
523             info("Invalid update timer %d given. Defaulting to %d.", rrd_update_every, UPDATE_EVERY_MAX);
524             rrd_update_every = UPDATE_EVERY;
525         }
526         else debug(D_OPTIONS, "update timer set to %d.", rrd_update_every);
527
528         // let the plugins know the min update_every
529         {
530             char buf[16];
531             snprintfz(buf, 15, "%d", rrd_update_every);
532             setenv("NETDATA_UPDATE_EVERY", buf, 1);
533         }
534
535         // --------------------------------------------------------------------
536
537         // block signals while initializing threads.
538         // this causes the threads to block signals.
539         sigset_t sigset;
540         sigfillset(&sigset);
541         if(pthread_sigmask(SIG_BLOCK, &sigset, NULL) == -1)
542             error("Could not block signals for threads");
543
544         // Catch signals which we want to use
545         struct sigaction sa;
546         sa.sa_flags = 0;
547
548         // ingore all signals while we run in a signal handler
549         sigfillset(&sa.sa_mask);
550
551         // INFO: If we add signals here we have to unblock them
552         // at popen.c when running a external plugin.
553
554         // Ignore SIGPIPE completely.
555         sa.sa_handler = SIG_IGN;
556         if(sigaction(SIGPIPE, &sa, NULL) == -1)
557             error("Failed to change signal handler for SIGPIPE");
558
559         sa.sa_handler = sig_handler_exit;
560         if(sigaction(SIGINT, &sa, NULL) == -1)
561             error("Failed to change signal handler for SIGINT");
562
563         sa.sa_handler = sig_handler_exit;
564         if(sigaction(SIGTERM, &sa, NULL) == -1)
565             error("Failed to change signal handler for SIGTERM");
566
567         sa.sa_handler = sig_handler_logrotate;
568         if(sigaction(SIGHUP, &sa, NULL) == -1)
569             error("Failed to change signal handler for SIGHUP");
570
571         // save database on SIGUSR1
572         sa.sa_handler = sig_handler_save;
573         if(sigaction(SIGUSR1, &sa, NULL) == -1)
574             error("Failed to change signal handler for SIGUSR1");
575
576         // reload health configuration on SIGUSR2
577         sa.sa_handler = sig_handler_reload_health;
578         if(sigaction(SIGUSR2, &sa, NULL) == -1)
579             error("Failed to change signal handler for SIGUSR2");
580
581         // --------------------------------------------------------------------
582
583         i = pthread_attr_init(&attr);
584         if(i != 0)
585             fatal("pthread_attr_init() failed with code %d.", i);
586
587         i = pthread_attr_getstacksize(&attr, &stacksize);
588         if(i != 0)
589             fatal("pthread_attr_getstacksize() failed with code %d.", i);
590         else
591             debug(D_OPTIONS, "initial pthread stack size is %zu bytes", stacksize);
592
593         wanted_stacksize = (size_t)config_get_number("global", "pthread stack size", (long)stacksize);
594
595         // --------------------------------------------------------------------
596
597         for (i = 0; static_threads[i].name != NULL ; i++) {
598             struct netdata_static_thread *st = &static_threads[i];
599
600             if(st->config_name) st->enabled = config_get_boolean(st->config_section, st->config_name, st->enabled);
601             if(st->enabled && st->init_routine) st->init_routine();
602         }
603
604         // --------------------------------------------------------------------
605
606         // get the user we should run
607         // IMPORTANT: this is required before web_files_uid()
608         user = config_get("global", "run as user"    , (getuid() == 0)?NETDATA_USER:"");
609
610         // IMPORTANT: these have to run once, while single threaded
611         web_files_uid(); // IMPORTANT: web_files_uid() before web_files_gid()
612         web_files_gid();
613
614         // --------------------------------------------------------------------
615
616         if(!check_config)
617             create_listen_sockets();
618     }
619
620     // initialize the log files
621     open_all_log_files();
622
623 #ifdef NETDATA_INTERNAL_CHECKS
624     if(debug_flags != 0) {
625         struct rlimit rl = { RLIM_INFINITY, RLIM_INFINITY };
626         if(setrlimit(RLIMIT_CORE, &rl) != 0)
627             info("Cannot request unlimited core dumps for debugging... Proceeding anyway...");
628         prctl(PR_SET_DUMPABLE, 1, 0, 0, 0);
629     }
630 #endif /* NETDATA_INTERNAL_CHECKS */
631
632     // fork, switch user, create pid file, set process priority
633     if(become_daemon(dont_fork, user) == -1)
634         fatal("Cannot demonize myself.");
635
636     info("NetData started on pid %d", getpid());
637
638
639     // ------------------------------------------------------------------------
640     // get default pthread stack size
641
642     if(stacksize < wanted_stacksize) {
643         i = pthread_attr_setstacksize(&attr, wanted_stacksize);
644         if(i != 0)
645             fatal("pthread_attr_setstacksize() to %zu bytes, failed with code %d.", wanted_stacksize, i);
646         else
647             info("Successfully set pthread stacksize to %zu bytes", wanted_stacksize);
648     }
649
650     // ------------------------------------------------------------------------
651     // initialize rrd host
652
653     rrdhost_init(hostname);
654
655     // ------------------------------------------------------------------------
656     // initialize the registry
657
658     registry_init();
659
660     // ------------------------------------------------------------------------
661     // initialize health monitoring
662
663     health_init();
664
665     if(check_config)
666         exit(1);
667
668     // ------------------------------------------------------------------------
669     // spawn the threads
670
671     web_server_threading_selection();
672
673     for (i = 0; static_threads[i].name != NULL ; i++) {
674         struct netdata_static_thread *st = &static_threads[i];
675
676         if(st->enabled) {
677             st->thread = mallocz(sizeof(pthread_t));
678
679             info("Starting thread %s.", st->name);
680
681             if(pthread_create(st->thread, &attr, st->start_routine, NULL))
682                 error("failed to create new thread for %s.", st->name);
683
684             else if(pthread_detach(*st->thread))
685                 error("Cannot request detach of newly created %s thread.", st->name);
686         }
687         else info("Not starting thread %s.", st->name);
688     }
689
690     // ------------------------------------------------------------------------
691     // block signals while initializing threads.
692     sigset_t sigset;
693     sigfillset(&sigset);
694
695     if(pthread_sigmask(SIG_UNBLOCK, &sigset, NULL) == -1) {
696         error("Could not unblock signals for threads");
697     }
698
699     // Handle flags set in the signal handler.
700     while(1) {
701         pause();
702         if(netdata_exit) {
703             info("Exit main loop of netdata.");
704             netdata_cleanup_and_exit(0);
705             exit(0);
706         }
707     }
708 }