d5a6a8eba5f27f503931b4be8c4071921d0449a1
[citadel.git] / citadel / server_main.c
1 /*
2  * citserver's main() function lives here.
3  *
4  * $Id$
5  */
6
7 #include "sysdep.h"
8 #include <stdlib.h>
9 #include <unistd.h>
10 #include <stdio.h>
11 #include <fcntl.h>
12 #include <ctype.h>
13 #include <signal.h>
14 #include <sys/types.h>
15 #include <sys/stat.h>
16 #include <sys/wait.h>
17 #include <sys/socket.h>
18
19 #if TIME_WITH_SYS_TIME
20 # include <sys/time.h>
21 # include <time.h>
22 #else
23 # if HAVE_SYS_TIME_H
24 #  include <sys/time.h>
25 # else
26 #  include <time.h>
27 # endif
28 #endif
29
30 #include <limits.h>
31 #include <netinet/in.h>
32 #include <netdb.h>
33 #include <sys/un.h>
34 #include <string.h>
35 #include <pwd.h>
36 #include <errno.h>
37 #include <stdarg.h>
38 #include <syslog.h>
39 #include <grp.h>
40 #ifdef HAVE_PTHREAD_H
41 #include <pthread.h>
42 #endif
43 #include "citadel.h"
44 #include "server.h"
45 #include "dynloader.h"
46 #include "sysdep_decls.h"
47 #include "citserver.h"
48 #include "support.h"
49 #include "config.h"
50 #include "database.h"
51 #include "housekeeping.h"
52 #include "tools.h"
53
54 #ifdef HAVE_SYS_SELECT_H
55 #include <sys/select.h>
56 #endif
57
58 #ifndef HAVE_SNPRINTF
59 #include "snprintf.h"
60 #endif
61
62 /*
63  * Here's where it all begins.
64  */
65 int main(int argc, char **argv)
66 {
67         char tracefile[128];            /* Name of file to log traces to */
68         int a, i;                       /* General-purpose variables */
69         struct passwd *pw;
70         int drop_root_perms = 1;
71         char *moddir;
72         struct worker_node *wnp;
73         
74         /* specify default port name and trace file */
75         strcpy(tracefile, "");
76
77         /* initialize the master context */
78         InitializeMasterCC();
79
80         /* parse command-line arguments */
81         for (a=1; a<argc; ++a) {
82
83                 /* -t specifies where to log trace messages to */
84                 if (!strncmp(argv[a], "-t", 2)) {
85                         strcpy(tracefile, argv[a]);
86                         strcpy(tracefile, &tracefile[2]);
87                         freopen(tracefile, "r", stdin);
88                         freopen(tracefile, "w", stdout);
89                         freopen(tracefile, "w", stderr);
90                         chmod(tracefile, 0600);
91                 }
92
93                 /* run in the background if -d was specified */
94                 else if (!strcmp(argv[a], "-d")) {
95                         start_daemon( (strlen(tracefile) > 0) ? 0 : 1 ) ;
96                 }
97
98                 /* -x specifies the desired logging level */
99                 else if (!strncmp(argv[a], "-x", 2)) {
100                         verbosity = atoi(&argv[a][2]);
101                 }
102
103                 else if (!strncmp(argv[a], "-h", 2)) {
104                         safestrncpy(bbs_home_directory, &argv[a][2],
105                                     sizeof bbs_home_directory);
106                         home_specified = 1;
107                 }
108
109                 else if (!strncmp(argv[a], "-f", 2)) {
110                         do_defrag = 1;
111                 }
112
113                 /* -r tells the server not to drop root permissions. don't use
114                  * this unless you know what you're doing. this should be
115                  * removed in the next release if it proves unnecessary. */
116                 else if (!strcmp(argv[a], "-r"))
117                         drop_root_perms = 0;
118
119                 /* any other parameter makes it crash and burn */
120                 else {
121                         lprintf(1,      "citserver: usage: "
122                                         "citserver [-tTraceFile] [-d] [-f]"
123                                         " [-xLogLevel] [-hHomeDir]\n");
124                         exit(1);
125                 }
126
127         }
128
129         /* Tell 'em who's in da house */
130         lprintf(1,
131 "\n"
132 "Citadel/UX messaging server engine v%d.%02d\n"
133 "Copyright (C) 1987-2001 by the Citadel/UX development team.\n"
134 "Citadel/UX is released under the terms of the GNU General Public License.\n"
135 "If you paid for this software, someone is ripping you off.\n\n",
136         (REV_LEVEL/100),
137         (REV_LEVEL%100));
138
139         /* Initialize... */
140         init_sysdep();
141         openlog("citserver", LOG_PID, LOG_USER);
142
143         /* Load site-specific parameters */
144         lprintf(7, "Loading citadel.config\n");
145         get_config();
146
147
148         /*
149          * Do non system dependent startup functions.
150          */
151         master_startup();
152
153         /*
154          * Bind the server to a Unix-domain socket.
155          */
156         CtdlRegisterServiceHook(0,
157                                 "citadel.socket",
158                                 citproto_begin_session,
159                                 do_command_loop);
160
161         /*
162          * Bind the server to our favorite TCP port (usually 504).
163          */
164         CtdlRegisterServiceHook(config.c_port_number,
165                                 NULL,
166                                 citproto_begin_session,
167                                 do_command_loop);
168
169         /*
170          * Load any server-side modules (plugins) available here.
171          */
172         lprintf(7, "Initializing loadable modules\n");
173         if ((moddir = malloc(strlen(bbs_home_directory) + 9)) != NULL) {
174                 sprintf(moddir, "%s/modules", bbs_home_directory);
175                 DLoader_Init(moddir);
176                 free(moddir);
177         }
178
179         /*
180          * The rescan pipe exists so that worker threads can be woken up and
181          * told to re-scan the context list for fd's to listen on.  This is
182          * necessary, for example, when a context is about to go idle and needs
183          * to get back on that list.
184          */
185         if (pipe(rescan)) {
186                 lprintf(1, "Can't create rescan pipe!\n");
187                 exit(errno);
188         }
189
190         init_master_fdset();
191
192         /*
193          * Now that we've bound the sockets, change to the BBS user id and its
194          * corresponding group ids
195          */
196         if (drop_root_perms) {
197                 if ((pw = getpwuid(BBSUID)) == NULL)
198                         lprintf(1, "WARNING: getpwuid(%d): %s\n"
199                                    "Group IDs will be incorrect.\n", BBSUID,
200                                 strerror(errno));
201                 else {
202                         initgroups(pw->pw_name, pw->pw_gid);
203                         if (setgid(pw->pw_gid))
204                                 lprintf(3, "setgid(%d): %s\n", pw->pw_gid,
205                                         strerror(errno));
206                 }
207                 lprintf(7, "Changing uid to %d\n", BBSUID);
208                 if (setuid(BBSUID) != 0) {
209                         lprintf(3, "setuid() failed: %s\n", strerror(errno));
210                 }
211         }
212
213         /* We want to check for idle sessions once per minute */
214         CtdlRegisterSessionHook(terminate_idle_sessions, EVT_TIMER);
215
216         /*
217          * Now create a bunch of worker threads.
218          */
219         lprintf(9, "Starting %d worker threads\n", config.c_min_workers-1);
220         begin_critical_section(S_WORKER_LIST);
221         for (i=0; i<(config.c_min_workers-1); ++i) {
222                 create_worker();
223         }
224         end_critical_section(S_WORKER_LIST);
225
226         /* Now this thread can become a worker as well. */
227         initial_thread = pthread_self();
228         worker_thread(NULL);
229
230         /* Server is exiting. Wait for workers to shutdown. */
231         lprintf(7, "Waiting for worker threads to shut down\n");
232
233         begin_critical_section(S_WORKER_LIST);
234         while (worker_list != NULL) {
235                 wnp = worker_list;
236                 worker_list = wnp->next;
237
238                 /* avoid deadlock with an exiting thread */
239                 end_critical_section(S_WORKER_LIST);
240                 if ((i = pthread_join(wnp->tid, NULL)))
241                         lprintf(1, "pthread_join: %s\n", strerror(i));
242                 phree(wnp);
243                 begin_critical_section(S_WORKER_LIST);
244         }
245         end_critical_section(S_WORKER_LIST);
246
247         master_cleanup();
248
249         return(0);
250 }