Move SIGCHLD definition to compat.h so that other files can use it.
[srvx.git] / src / main.c
1 /* main.c - srvx
2  * Copyright 2000-2006 srvx Development Team
3  *
4  * This file is part of srvx.
5  *
6  * srvx is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with srvx; if not, write to the Free Software Foundation,
18  * Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
19  */
20
21 #define PID_FILE "srvx.pid"
22
23 #include "conf.h"
24 #include "gline.h"
25 #include "ioset.h"
26 #include "modcmd.h"
27 #include "saxdb.h"
28 #include "mail.h"
29 #include "timeq.h"
30 #include "sar.h"
31
32 #include "chanserv.h"
33 #include "global.h"
34 #include "modules.h"
35 #include "opserv.h"
36
37 #ifdef HAVE_GETOPT_H
38 #include <getopt.h>
39 #else
40 #include "getopt.h"
41 #endif
42 #ifdef HAVE_SYS_RESOURCE_H
43 #include <sys/resource.h>
44 #endif
45 #ifdef HAVE_NETINET_IN_H
46 #include <netinet/in.h>
47 #endif
48 #ifdef HAVE_SYS_SOCKET_H
49 #include <sys/socket.h>
50 #endif
51 #ifdef HAVE_SYS_WAIT_H
52 #include <sys/wait.h>
53 #endif
54
55 #include "main-common.c"
56
57 void sigaction_writedb(int x)
58 {
59 #ifndef HAVE_STRSIGNAL
60     log_module(MAIN_LOG, LOG_INFO, "Signal %d -- writing databases.", x);
61 #else
62     log_module(MAIN_LOG, LOG_INFO, "%s -- writing databases.", strsignal(x));
63 #endif
64     do_write_dbs = 1;
65 }
66
67 void sigaction_exit(int x)
68 {
69 #ifndef HAVE_STRSIGNAL
70     log_module(MAIN_LOG, LOG_INFO, "Signal %d -- exiting.", x);
71 #else
72     log_module(MAIN_LOG, LOG_INFO, "%s -- exiting.", strsignal(x));
73 #endif
74     irc_squit(self, "Exiting on signal from console.", NULL);
75     quit_services = 1;
76 }
77
78 void sigaction_wait(UNUSED_ARG(int x))
79 {
80     int code;
81     wait4(-1, &code, WNOHANG, NULL);
82 }
83
84 void sigaction_rehash(int x)
85 {
86 #ifndef HAVE_STRSIGNAL
87     log_module(MAIN_LOG, LOG_INFO, "Signal %d -- rehashing.", x);
88 #else
89     log_module(MAIN_LOG, LOG_INFO, "%s -- rehashing.", strsignal(x));
90 #endif
91     do_reopen = 1;
92 }
93
94 #if WITH_MALLOC_BOEHM_GC
95 void
96 gc_warn_proc(char *msg, GC_word arg)
97 {
98     log_module(MAIN_LOG, LOG_ERROR, "GC(%p): %s", (void*)arg, msg);
99 }
100 #endif
101
102 int main(int argc, char *argv[])
103 {
104     int daemon, debug;
105     pid_t pid = 0;
106     FILE *file_out;
107     struct sigaction sv;
108
109 #if WITH_MALLOC_BOEHM_GC
110     GC_find_leak = 1;
111     GC_set_warn_proc(gc_warn_proc);
112     GC_enable_incremental();
113 #endif
114
115     daemon = 1;
116     debug = 0;
117     tools_init();
118
119     /* set up some signal handlers */
120     memset(&sv, 0, sizeof(sv));
121     sigemptyset(&sv.sa_mask);
122     sv.sa_handler = SIG_IGN;
123     sigaction(SIGPIPE, &sv, NULL);
124     sv.sa_handler = sigaction_rehash;
125     sigaction(SIGHUP, &sv, NULL);
126     sv.sa_handler = sigaction_writedb;
127     sigaction(SIGINT, &sv, NULL);
128     sv.sa_handler = sigaction_exit;
129     sigaction(SIGQUIT, &sv, NULL);
130     sv.sa_handler = sigaction_wait;
131     sigaction(SIGCHLD, &sv, NULL);
132
133     if (argc > 1) { /* parse command line, if any */
134         int c;
135         struct option options[] =
136         {
137             {"config", 1, 0, 'c'},
138             {"debug", 0, 0, 'd'},
139             {"foreground", 0, 0, 'f'},
140             {"help", 0, 0, 'h'},
141             {"check", 0, 0, 'k'},
142             {"replay", 1, 0, 'r'},
143             {"version", 0, 0, 'v'},
144             {0, 0, 0, 0}
145         };
146
147         while ((c = getopt_long(argc, argv, "c:dfhkr:v", options, NULL)) != -1) {
148             switch (c) {
149             case 'c':
150                 services_config = optarg;
151                 break;
152             case 'k':
153                 if (conf_read(services_config)) {
154                     printf("%s appears to be a valid configuration file.\n", services_config);
155                 } else {
156                     printf("%s is an invalid configuration file.\n", services_config);
157                 }
158                 exit(0);
159             case 'r':
160                 replay_file = fopen(optarg, "r");
161                 if (!replay_file) {
162                     fprintf(stderr, "Could not open %s for reading: %s (%d)\n",
163                             optarg, strerror(errno), errno);
164                     exit(0);
165                 }
166                 break;
167             case 'd':
168                 debug = 1;
169                 break;
170             case 'f':
171                 daemon = 0;
172                 break;
173             case 'v':
174                 version();
175                 license();
176                 exit(0);
177             case 'h':
178             default:
179                 usage(argv[0]);
180                 exit(0);
181             }
182         }
183     }
184
185     version();
186
187     if (replay_file) {
188         /* We read a line here to "prime" the replay file parser, but
189          * mostly to get the right value of "now" for when we do the
190          * irc_introduce. */
191         replay_read_line();
192     } else {
193         now = time(NULL);
194     }
195     boot_time = now;
196
197     fprintf(stdout, "Initializing daemon...\n");
198     if (!conf_read(services_config)) {
199         fprintf(stderr, "Unable to read %s.\n", services_config);
200         exit(1);
201     }
202
203     conf_register_reload(uplink_compile);
204
205     if (daemon) {
206         /* Attempt to fork into the background if daemon mode is on. */
207         pid = fork();
208         if (pid < 0) {
209             fprintf(stderr, "Unable to fork: %s\n", strerror(errno));
210         } else if (pid > 0) {
211             fprintf(stdout, "Forking into the background (pid: %d)...\n", pid);
212             exit(0);
213         }
214         setsid();
215     }
216
217     file_out = fopen(PID_FILE, "w");
218     if (file_out == NULL) {
219         /* Create the main process' pid file */
220         fprintf(stderr, "Unable to create PID file: %s", strerror(errno));
221     } else {
222         fprintf(file_out, "%i\n", (int)getpid());
223         fclose(file_out);
224     }
225
226     if (daemon) {
227         /* Close these since we should not use them from now on. */
228         fclose(stdin);
229         fclose(stdout);
230         fclose(stderr);
231     }
232
233     services_argc = argc;
234     services_argv = argv;
235
236     atexit(call_exit_funcs);
237     reg_exit_func(main_shutdown);
238
239     log_init();
240     MAIN_LOG = log_register_type("srvx", "file:main.log");
241     if (debug)
242         log_debug();
243     ioset_init();
244     init_structs();
245     init_parse();
246     modcmd_init();
247     saxdb_init();
248     sar_init();
249     gline_init();
250     mail_init();
251     helpfile_init();
252     conf_globals(); /* initializes the core services */
253     conf_rlimits();
254     modules_init();
255     message_register_table(msgtab);
256     modcmd_finalize();
257     saxdb_finalize();
258     helpfile_finalize();
259     modules_finalize();
260
261     /* The first exit func to be called *should* be saxdb_write_all(). */
262     reg_exit_func(saxdb_write_all);
263     if (replay_file) {
264         char *msg;
265         log_module(MAIN_LOG, LOG_INFO, "Beginning replay...");
266         srand(now);
267         replay_event_loop();
268         if ((msg = dict_sanity_check(clients))) {
269             log_module(MAIN_LOG, LOG_ERROR, "Clients insanity: %s", msg);
270             free(msg);
271         }
272         if ((msg = dict_sanity_check(channels))) {
273             log_module(MAIN_LOG, LOG_ERROR, "Channels insanity: %s", msg);
274             free(msg);
275         }
276         if ((msg = dict_sanity_check(servers))) {
277             log_module(MAIN_LOG, LOG_ERROR, "Servers insanity: %s", msg);
278             free(msg);
279         }
280     } else {
281         now = time(NULL);
282         srand(now);
283         ioset_run();
284     }
285     return 0;
286 }