]> arthur.barton.de Git - netdata.git/blob - src/main.c
Merge pull request #888 from rsanger/fix_hddtemp
[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     // set the name for logging
287     program_name = "netdata";
288
289     // parse command line.
290
291     // parse depercated options
292     // TODO: Remove this block with the next major release.
293     {
294         i = 1;
295         while(i < argc) {
296             if(strcmp(argv[i], "-pidfile") == 0 && (i+1) < argc) {
297                 strncpyz(pidfile, argv[i+1], FILENAME_MAX);
298                 fprintf(stderr, "%s: deprecated option -- %s -- please use -P instead.\n", argv[0], argv[i]);
299                 remove_option(i, &argc, argv);
300             }
301             else if(strcmp(argv[i], "-nodaemon") == 0 || strcmp(argv[i], "-nd") == 0) {
302                 dont_fork = 1;
303                 fprintf(stderr, "%s: deprecated option -- %s -- please use -D instead.\n ", argv[0], argv[i]);
304                 remove_option(i, &argc, argv);
305             }
306             else if(strcmp(argv[i], "-ch") == 0 && (i+1) < argc) {
307                 config_set("global", "host access prefix", argv[i+1]);
308                 fprintf(stderr, "%s: deprecated option -- %s -- please use -s instead.\n", argv[0], argv[i]);
309                 remove_option(i, &argc, argv);
310             }
311             else if(strcmp(argv[i], "-l") == 0 && (i+1) < argc) {
312                 config_set("global", "history", argv[i+1]);
313                 fprintf(stderr, "%s: deprecated option -- %s -- This option will be removed with V2.*.\n", argv[0], argv[i]);
314                 remove_option(i, &argc, argv);
315             }
316             else i++;
317         }
318     }
319
320     // parse options
321     {
322         int num_opts = sizeof(options) / sizeof(struct option_def);
323         char optstring[(num_opts * 2) + 1];
324
325         int string_i = 0;
326         for( i = 0; i < num_opts; i++ ) {
327             optstring[string_i] = options[i].val;
328             string_i++;
329             if(options[i].arg_name) {
330                 optstring[string_i] = ':';
331                 string_i++;
332             }
333         }
334
335         int opt;
336         while( (opt = getopt(argc, argv, optstring)) != -1 ) {
337             switch(opt) {
338                 case 'c':
339                     if(load_config(optarg, 1) != 1) {
340                         error("Cannot load configuration file %s.", optarg);
341                         exit(1);
342                     }
343                     else {
344                         debug(D_OPTIONS, "Configuration loaded from %s.", optarg);
345                         config_loaded = 1;
346                     }
347                     break;
348                 case 'D':
349                     dont_fork = 1;
350                     break;
351                 case 'h':
352                     help(0);
353                     break;
354                 case 'i':
355                     config_set("global", "bind to", optarg);
356                     break;
357                 case 'k':
358                     dont_fork = 1;
359                     check_config = 1;
360                     break;
361                 case 'P':
362                     strncpy(pidfile, optarg, FILENAME_MAX);
363                     pidfile[FILENAME_MAX] = '\0';
364                     break;
365                 case 'p':
366                     config_set("global", "default port", optarg);
367                     break;
368                 case 's':
369                     config_set("global", "host access prefix", optarg);
370                     break;
371                 case 't':
372                     config_set("global", "update every", optarg);
373                     break;
374                 case 'u':
375                     config_set("global", "run as user", optarg);
376                     break;
377                 case 'v':
378                     // TODO: Outsource version to makefile which can compute version from git.
379                     printf("netdata 1.3.1_master\n");
380                     return 0;
381                 case 'W':
382                     {
383                         char* stacksize_string = "stacksize=";
384                         char* debug_flags_string = "debug_flags=";
385                         if(strcmp(optarg, "unittest") == 0) {
386                             rrd_update_every = 1;
387                             if(run_all_mockup_tests()) exit(1);
388                             if(unit_test_storage()) exit(1);
389                             fprintf(stderr, "\n\nALL TESTS PASSED\n\n");
390                             exit(0);
391                         } else if(strncmp(optarg, stacksize_string, strlen(stacksize_string)) == 0) {
392                             optarg += strlen(stacksize_string);
393                             config_set("global", "pthread stack size", optarg);
394                         } else if(strncmp(optarg, debug_flags_string, strlen(debug_flags_string)) == 0) {
395                             optarg += strlen(debug_flags_string);
396                             config_set("global", "debug flags",  optarg);
397                             debug_flags = strtoull(optarg, NULL, 0);
398                         }
399                     }
400                     break;
401                 default: /* ? */
402                     help(1);
403                     break;
404             }
405         }
406     }
407
408     if(!config_loaded)
409         load_config(NULL, 0);
410
411     {
412         char *config_dir = config_get("global", "config directory", CONFIG_DIR);
413
414         // prepare configuration environment variables for the plugins
415         setenv("NETDATA_CONFIG_DIR" , verify_required_directory(config_dir) , 1);
416         setenv("NETDATA_PLUGINS_DIR", verify_required_directory(config_get("global", "plugins directory"  , PLUGINS_DIR)), 1);
417         setenv("NETDATA_WEB_DIR"    , verify_required_directory(config_get("global", "web files directory", WEB_DIR))    , 1);
418         setenv("NETDATA_CACHE_DIR"  , verify_required_directory(config_get("global", "cache directory"    , CACHE_DIR))  , 1);
419         setenv("NETDATA_LIB_DIR"    , verify_required_directory(config_get("global", "lib directory"      , VARLIB_DIR)) , 1);
420         setenv("NETDATA_LOG_DIR"    , verify_required_directory(config_get("global", "log directory"      , LOG_DIR))    , 1);
421
422         setenv("NETDATA_HOST_PREFIX", config_get("global", "host access prefix" , "")         , 1);
423         setenv("HOME"               , config_get("global", "home directory"     , CACHE_DIR)  , 1);
424
425         // disable buffering for python plugins
426         setenv("PYTHONUNBUFFERED", "1", 1);
427
428         // avoid flood calls to stat(/etc/localtime)
429         // http://stackoverflow.com/questions/4554271/how-to-avoid-excessive-stat-etc-localtime-calls-in-strftime-on-linux
430         setenv("TZ", ":/etc/localtime", 0);
431
432         // work while we are cd into config_dir
433         // to allow the plugins refer to their config
434         // files using relative filenames
435         if(chdir(config_dir) == -1)
436             fatal("Cannot cd to '%s'", config_dir);
437
438         char path[1024 + 1], *p = getenv("PATH");
439         if(!p) p = "/bin:/usr/bin";
440         snprintfz(path, 1024, "%s:%s", p, "/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin");
441         setenv("PATH", config_get("plugins", "PATH environment variable", path), 1);
442     }
443
444     char *user = NULL;
445     {
446         char *flags = config_get("global", "debug flags",  "0x00000000");
447         setenv("NETDATA_DEBUG_FLAGS", flags, 1);
448
449         debug_flags = strtoull(flags, NULL, 0);
450         debug(D_OPTIONS, "Debug flags set to '0x%8llx'.", debug_flags);
451
452         if(debug_flags != 0) {
453             struct rlimit rl = { RLIM_INFINITY, RLIM_INFINITY };
454             if(setrlimit(RLIMIT_CORE, &rl) != 0)
455                 info("Cannot request unlimited core dumps for debugging... Proceeding anyway...");
456             prctl(PR_SET_DUMPABLE, 1, 0, 0, 0);
457         }
458
459         // --------------------------------------------------------------------
460
461 #ifdef MADV_MERGEABLE
462         enable_ksm = config_get_boolean("global", "memory deduplication (ksm)", enable_ksm);
463 #else
464 #warning "Kernel memory deduplication (KSM) is not available"
465 #endif
466
467         // --------------------------------------------------------------------
468
469         global_host_prefix = config_get("global", "host access prefix", "");
470         setenv("NETDATA_HOST_PREFIX", global_host_prefix, 1);
471
472         get_system_HZ();
473         get_system_cpus();
474         get_system_pid_max();
475         
476         // --------------------------------------------------------------------
477
478         stdout_filename    = config_get("global", "debug log",  LOG_DIR "/debug.log");
479         stderr_filename    = config_get("global", "error log",  LOG_DIR "/error.log");
480         stdaccess_filename = config_get("global", "access log", LOG_DIR "/access.log");
481
482         error_log_throttle_period_backup =
483             error_log_throttle_period = config_get_number("global", "errors flood protection period", error_log_throttle_period);
484         setenv("NETDATA_ERRORS_THROTTLE_PERIOD", config_get("global", "errors flood protection period"    , ""), 1);
485
486         error_log_errors_per_period = (unsigned long)config_get_number("global", "errors to trigger flood protection", error_log_errors_per_period);
487         setenv("NETDATA_ERRORS_PER_PERIOD"     , config_get("global", "errors to trigger flood protection", ""), 1);
488
489         if(check_config) {
490             stdout_filename = stderr_filename = stdaccess_filename = "system";
491             error_log_throttle_period = 0;
492             error_log_errors_per_period = 0;
493         }
494         error_log_limit_unlimited();
495
496         // --------------------------------------------------------------------
497
498         rrd_memory_mode = rrd_memory_mode_id(config_get("global", "memory mode", rrd_memory_mode_name(rrd_memory_mode)));
499
500         // --------------------------------------------------------------------
501
502         {
503             char hostnamebuf[HOSTNAME_MAX + 1];
504             if(gethostname(hostnamebuf, HOSTNAME_MAX) == -1)
505                 error("WARNING: Cannot get machine hostname.");
506             hostname = config_get("global", "hostname", hostnamebuf);
507             debug(D_OPTIONS, "hostname set to '%s'", hostname);
508             setenv("NETDATA_HOSTNAME", hostname, 1);
509         }
510
511         // --------------------------------------------------------------------
512
513         rrd_default_history_entries = (int) config_get_number("global", "history", RRD_DEFAULT_HISTORY_ENTRIES);
514         if(rrd_default_history_entries < 5 || rrd_default_history_entries > RRD_HISTORY_ENTRIES_MAX) {
515             info("Invalid save lines %d given. Defaulting to %d.", rrd_default_history_entries, RRD_DEFAULT_HISTORY_ENTRIES);
516             rrd_default_history_entries = RRD_DEFAULT_HISTORY_ENTRIES;
517         }
518         else {
519             debug(D_OPTIONS, "save lines set to %d.", rrd_default_history_entries);
520         }
521
522         // --------------------------------------------------------------------
523
524         rrd_update_every = (int) config_get_number("global", "update every", UPDATE_EVERY);
525         if(rrd_update_every < 1 || rrd_update_every > 600) {
526             info("Invalid update timer %d given. Defaulting to %d.", rrd_update_every, UPDATE_EVERY_MAX);
527             rrd_update_every = UPDATE_EVERY;
528         }
529         else debug(D_OPTIONS, "update timer set to %d.", rrd_update_every);
530
531         // let the plugins know the min update_every
532         {
533             char buf[16];
534             snprintfz(buf, 15, "%d", rrd_update_every);
535             setenv("NETDATA_UPDATE_EVERY", buf, 1);
536         }
537
538         // --------------------------------------------------------------------
539
540         // block signals while initializing threads.
541         // this causes the threads to block signals.
542         sigset_t sigset;
543         sigfillset(&sigset);
544         if(pthread_sigmask(SIG_BLOCK, &sigset, NULL) == -1)
545             error("Could not block signals for threads");
546
547         // Catch signals which we want to use
548         struct sigaction sa;
549         sa.sa_flags = 0;
550
551         // ingore all signals while we run in a signal handler
552         sigfillset(&sa.sa_mask);
553
554         // INFO: If we add signals here we have to unblock them
555         // at popen.c when running a external plugin.
556
557         // Ignore SIGPIPE completely.
558         sa.sa_handler = SIG_IGN;
559         if(sigaction(SIGPIPE, &sa, NULL) == -1)
560             error("Failed to change signal handler for SIGPIPE");
561
562         sa.sa_handler = sig_handler_exit;
563         if(sigaction(SIGINT, &sa, NULL) == -1)
564             error("Failed to change signal handler for SIGINT");
565
566         sa.sa_handler = sig_handler_exit;
567         if(sigaction(SIGTERM, &sa, NULL) == -1)
568             error("Failed to change signal handler for SIGTERM");
569
570         sa.sa_handler = sig_handler_logrotate;
571         if(sigaction(SIGHUP, &sa, NULL) == -1)
572             error("Failed to change signal handler for SIGHUP");
573
574         // save database on SIGUSR1
575         sa.sa_handler = sig_handler_save;
576         if(sigaction(SIGUSR1, &sa, NULL) == -1)
577             error("Failed to change signal handler for SIGUSR1");
578
579         // reload health configuration on SIGUSR2
580         sa.sa_handler = sig_handler_reload_health;
581         if(sigaction(SIGUSR2, &sa, NULL) == -1)
582             error("Failed to change signal handler for SIGUSR2");
583
584         // --------------------------------------------------------------------
585
586         i = pthread_attr_init(&attr);
587         if(i != 0)
588             fatal("pthread_attr_init() failed with code %d.", i);
589
590         i = pthread_attr_getstacksize(&attr, &stacksize);
591         if(i != 0)
592             fatal("pthread_attr_getstacksize() failed with code %d.", i);
593         else
594             debug(D_OPTIONS, "initial pthread stack size is %zu bytes", stacksize);
595
596         wanted_stacksize = (size_t)config_get_number("global", "pthread stack size", (long)stacksize);
597
598         // --------------------------------------------------------------------
599
600         for (i = 0; static_threads[i].name != NULL ; i++) {
601             struct netdata_static_thread *st = &static_threads[i];
602
603             if(st->config_name) st->enabled = config_get_boolean(st->config_section, st->config_name, st->enabled);
604             if(st->enabled && st->init_routine) st->init_routine();
605         }
606
607         // --------------------------------------------------------------------
608
609         // get the user we should run
610         // IMPORTANT: this is required before web_files_uid()
611         user = config_get("global", "run as user"    , (getuid() == 0)?NETDATA_USER:"");
612
613         // IMPORTANT: these have to run once, while single threaded
614         web_files_uid(); // IMPORTANT: web_files_uid() before web_files_gid()
615         web_files_gid();
616
617         // --------------------------------------------------------------------
618
619         if(!check_config)
620             create_listen_sockets();
621     }
622
623     // initialize the log files
624     open_all_log_files();
625
626 #ifdef NETDATA_INTERNAL_CHECKS
627     if(debug_flags != 0) {
628         struct rlimit rl = { RLIM_INFINITY, RLIM_INFINITY };
629         if(setrlimit(RLIMIT_CORE, &rl) != 0)
630             info("Cannot request unlimited core dumps for debugging... Proceeding anyway...");
631         prctl(PR_SET_DUMPABLE, 1, 0, 0, 0);
632     }
633 #endif /* NETDATA_INTERNAL_CHECKS */
634
635     // fork, switch user, create pid file, set process priority
636     if(become_daemon(dont_fork, user) == -1)
637         fatal("Cannot demonize myself.");
638
639     info("NetData started on pid %d", getpid());
640
641
642     // ------------------------------------------------------------------------
643     // get default pthread stack size
644
645     if(stacksize < wanted_stacksize) {
646         i = pthread_attr_setstacksize(&attr, wanted_stacksize);
647         if(i != 0)
648             fatal("pthread_attr_setstacksize() to %zu bytes, failed with code %d.", wanted_stacksize, i);
649         else
650             info("Successfully set pthread stacksize to %zu bytes", wanted_stacksize);
651     }
652
653     // ------------------------------------------------------------------------
654     // initialize rrd host
655
656     rrdhost_init(hostname);
657
658     // ------------------------------------------------------------------------
659     // initialize the registry
660
661     registry_init();
662
663     // ------------------------------------------------------------------------
664     // initialize health monitoring
665
666     health_init();
667
668     if(check_config)
669         exit(1);
670
671     // ------------------------------------------------------------------------
672     // enable log flood protection
673
674     error_log_limit_reset();
675
676     // ------------------------------------------------------------------------
677     // spawn the threads
678
679     web_server_threading_selection();
680
681     for (i = 0; static_threads[i].name != NULL ; i++) {
682         struct netdata_static_thread *st = &static_threads[i];
683
684         if(st->enabled) {
685             st->thread = mallocz(sizeof(pthread_t));
686
687             info("Starting thread %s.", st->name);
688
689             if(pthread_create(st->thread, &attr, st->start_routine, NULL))
690                 error("failed to create new thread for %s.", st->name);
691
692             else if(pthread_detach(*st->thread))
693                 error("Cannot request detach of newly created %s thread.", st->name);
694         }
695         else info("Not starting thread %s.", st->name);
696     }
697
698     // ------------------------------------------------------------------------
699     // block signals while initializing threads.
700     sigset_t sigset;
701     sigfillset(&sigset);
702
703     if(pthread_sigmask(SIG_UNBLOCK, &sigset, NULL) == -1) {
704         error("Could not unblock signals for threads");
705     }
706
707     // Handle flags set in the signal handler.
708     while(1) {
709         pause();
710         if(netdata_exit) {
711             info("Exit main loop of netdata.");
712             netdata_cleanup_and_exit(0);
713             exit(0);
714         }
715     }
716 }