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