bab3ab69f29bc960da866d43e7c5cfd5a1417825
[citadel.git] / citadel / server_main.c
1 /*
2  * citserver's main() function lives here.
3  * 
4  * Copyright (c) 1987-2012 by the citadel.org team
5  *
6  * This program is open source software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 3.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
14
15 #include "sysdep.h"
16 #include <stdlib.h>
17 #include <unistd.h>
18 #include <stdio.h>
19 #include <fcntl.h>
20 #include <ctype.h>
21 #include <signal.h>
22 #include <sys/types.h>
23 #include <sys/stat.h>
24 #include <sys/wait.h>
25 #include <sys/socket.h>
26 #include <syslog.h>
27
28 #if TIME_WITH_SYS_TIME
29 # include <sys/time.h>
30 # include <time.h>
31 #else
32 # if HAVE_SYS_TIME_H
33 #  include <sys/time.h>
34 # else
35 #  include <time.h>
36 # endif
37 #endif
38
39 #include <limits.h>
40 #include <netinet/in.h>
41 #include <netdb.h>
42 #include <sys/un.h>
43 #include <string.h>
44 #include <pwd.h>
45 #include <errno.h>
46 #include <stdarg.h>
47 #include <grp.h>
48 #include <pwd.h>
49 #ifdef HAVE_SYS_PRCTL_H
50 #include <sys/prctl.h>
51 #endif
52 #include <libcitadel.h>
53 #include "citadel.h"
54 #include "server.h"
55 #include "serv_extensions.h"
56 #include "sysdep_decls.h"
57 #include "threads.h"
58 #include "citserver.h"
59 #include "support.h"
60 #include "config.h"
61 #include "control.h"
62 #include "database.h"
63 #include "user_ops.h"
64 #include "housekeeping.h"
65 #include "svn_revision.h"
66 #include "citadel_dirs.h"
67
68 #include "context.h"
69
70 #include "modules_init.h"
71 #include "ecrash.h"
72
73 #ifdef HAVE_SYS_SELECT_H
74 #include <sys/select.h>
75 #endif
76
77 #ifndef HAVE_SNPRINTF
78 #include "snprintf.h"
79 #endif
80 const char *CitadelServiceUDS="citadel-UDS";
81 const char *CitadelServiceTCP="citadel-TCP";
82
83
84
85 void go_threading(void);
86
87 /*
88  * Here's where it all begins.
89  */
90 int main(int argc, char **argv)
91 {
92         char facility[32];
93         int a;                  /* General-purpose variables */
94         struct passwd pw, *pwp = NULL;
95         char pwbuf[SIZ];
96         int drop_root_perms = 1;
97         int relh=0;
98         int home=0;
99         int dbg=0;
100         char relhome[PATH_MAX]="";
101         char ctdldir[PATH_MAX]=CTDLDIR;
102         int syslog_facility = LOG_DAEMON;
103 #ifdef HAVE_RUN_DIR
104         struct stat filestats;
105 #endif
106 #ifdef HAVE_BACKTRACE
107         eCrashParameters params;
108 //      eCrashSymbolTable symbol_table;
109 #endif
110
111         /* initialize the master context */
112         InitializeMasterCC();
113         InitializeMasterTSD();
114
115         /* parse command-line arguments */
116         while ((a=getopt(argc, argv, "l:dh:x:t:Dr")) != EOF) switch(a) {
117
118                 case 'l':
119                         safestrncpy(facility, optarg, sizeof(facility));
120                         syslog_facility = SyslogFacility(facility);
121                         break;
122
123                 /* run in the background if -d was specified */
124                 case 'd':
125                         running_as_daemon = 1;
126                         break;
127
128                 case 'h':
129                         relh = optarg[0] != '/';
130                         if (!relh) {
131                                 safestrncpy(ctdl_home_directory, optarg, sizeof ctdl_home_directory);
132                         }
133                         else {
134                                 safestrncpy(relhome, optarg, sizeof relhome);
135                         }
136                         home=1;
137                         break;
138
139                 case 'x':       /* deprecated */
140                         break;
141
142                 case 't':       /* deprecated */
143                         break;
144
145                 case 'D':
146                         dbg = 1;
147                         break;
148
149                 /* -r tells the server not to drop root permissions.
150                  * Don't use this unless you know what you're doing.
151                  */
152                 case 'r':
153                         drop_root_perms = 0;
154                         break;
155
156                 default:
157                 /* any other parameter makes it crash and burn */
158                         fprintf(stderr, "citserver: usage: "
159                                         "citserver "
160                                         "[-l LogFacility] "
161                                         "[-d] [-D] [-r] "
162                                         "[-h HomeDir]\n"
163                         );
164                         exit(1);
165         }
166
167         openlog("citserver",
168                 ( running_as_daemon ? (LOG_PID) : (LOG_PID | LOG_PERROR) ),
169                 syslog_facility
170         );
171
172         calc_dirs_n_files(relh, home, relhome, ctdldir, dbg);
173         /* daemonize, if we were asked to */
174         if (running_as_daemon) {
175                 start_daemon(0);
176                 drop_root_perms = 1;
177         }
178
179 #ifdef HAVE_BACKTRACE
180         bzero(&params, sizeof(params));
181         params.filename = file_pid_paniclog;
182         panic_fd=open(file_pid_paniclog, O_APPEND|O_CREAT|O_DIRECT);
183         params.filep = fopen(file_pid_paniclog, "a+");
184         params.debugLevel = ECRASH_DEBUG_VERBOSE;
185         params.dumpAllThreads = TRUE;
186         params.useBacktraceSymbols = 1;
187         params.signals[0]=SIGSEGV;
188         params.signals[1]=SIGILL;
189         params.signals[2]=SIGBUS;
190         params.signals[3]=SIGABRT;
191         eCrash_Init(&params);
192         eCrash_RegisterThread("MasterThread", 0);
193 #endif
194
195         /* Tell 'em who's in da house */
196         syslog(LOG_NOTICE, " ");
197         syslog(LOG_NOTICE, " ");
198         syslog(LOG_NOTICE,
199                 "*** Citadel server engine v%d.%02d (build %s) ***",
200                 (REV_LEVEL/100), (REV_LEVEL%100), svn_revision());
201         syslog(LOG_NOTICE, "Copyright (C) 1987-2012 by the Citadel development team.");
202         syslog(LOG_NOTICE, "This program is distributed under the terms of the GNU "
203                                         "General Public License.");
204         syslog(LOG_NOTICE, " ");
205         syslog(LOG_DEBUG, "Called as: %s", argv[0]);
206         syslog(LOG_INFO, "%s", libcitadel_version_string());
207
208         /* Load site-specific configuration */
209         syslog(LOG_INFO, "Loading citadel.config");
210         get_config();
211
212         /* get_control() MUST MUST MUST be called BEFORE the databases are opened!! */
213         syslog(LOG_INFO, "Acquiring control record");
214         get_control();
215
216         put_config();
217
218 #ifdef HAVE_RUN_DIR
219         /* on some dists rundir gets purged on startup. so we need to recreate it. */
220
221         if (stat(ctdl_run_dir, &filestats)==-1){
222 #ifdef HAVE_GETPWUID_R
223 #ifdef SOLARIS_GETPWUID
224                 pwp = getpwuid_r(config.c_ctdluid, &pw, pwbuf, sizeof(pwbuf));
225 #else // SOLARIS_GETPWUID
226                 getpwuid_r(config.c_ctdluid, &pw, pwbuf, sizeof(pwbuf), &pwp);
227 #endif // SOLARIS_GETPWUID
228 #else // HAVE_GETPWUID_R
229                 pwp = NULL;
230 #endif // HAVE_GETPWUID_R
231
232                 if ((mkdir(ctdl_run_dir, 0755) != 0) && (errno != EEXIST))
233                         syslog(LOG_EMERG, 
234                                       "unable to create run directory [%s]: %s", 
235                                       ctdl_run_dir, strerror(errno));
236
237                 if (chown(ctdl_run_dir, config.c_ctdluid, (pwp==NULL)?-1:pw.pw_gid) != 0)
238                         syslog(LOG_EMERG, 
239                                       "unable to set the access rights for [%s]: %s", 
240                                       ctdl_run_dir, strerror(errno));
241         }
242                         
243
244 #endif
245
246         /* Initialize... */
247         init_sysdep();
248
249         /*
250          * Do non system dependent startup functions.
251          */
252         master_startup();
253
254         /*
255          * Check that the control record is correct and place sensible values if it isn't
256          */
257         check_control();
258         
259         /*
260          * Run any upgrade entry points
261          */
262         syslog(LOG_INFO, "Upgrading modules.");
263         upgrade_modules();
264         
265 /*
266  * Load the user for the masterCC or create them if they don't exist
267  */
268         if (CtdlGetUser(&masterCC.user, "SYS_Citadel"))
269         {
270                 /* User doesn't exist. We can't use create user here as the user number needs to be 0 */
271                 strcpy (masterCC.user.fullname, "SYS_Citadel") ;
272                 CtdlPutUser(&masterCC.user);
273                 CtdlGetUser(&masterCC.user, "SYS_Citadel"); /* Just to be safe */
274         }
275         
276         /*
277          * Bind the server to a Unix-domain socket (user client access)
278          */
279         CtdlRegisterServiceHook(0,
280                                 file_citadel_socket,
281                                 citproto_begin_session,
282                                 do_command_loop,
283                                 do_async_loop,
284                                 CitadelServiceUDS);
285
286         /*
287          * Bind the server to a Unix-domain socket (admin client access)
288          */
289         CtdlRegisterServiceHook(0,
290                                 file_citadel_admin_socket,
291                                 citproto_begin_admin_session,
292                                 do_command_loop,
293                                 do_async_loop,
294                                 CitadelServiceUDS);
295         chmod(file_citadel_admin_socket, S_IRWXU);      /* for your eyes only */
296
297         /*
298          * Bind the server to our favorite TCP port (usually 504).
299          */
300         CtdlRegisterServiceHook(config.c_port_number,
301                                 NULL,
302                                 citproto_begin_session,
303                                 do_command_loop,
304                                 do_async_loop,
305                                 CitadelServiceTCP);
306
307                                 
308         
309         
310         /*
311          * Load any server-side extensions available here.
312          */
313         syslog(LOG_INFO, "Initializing server extensions");
314         
315         initialise_modules(0);
316
317         /*
318          * If we need host auth, start our chkpwd daemon.
319          */
320         if (config.c_auth_mode == AUTHMODE_HOST) {
321                 start_chkpwd_daemon();
322         }
323
324
325         /*
326          * check, whether we're fired up another time after a crash.
327          * if, post an aide message, so the admin has a chance to react.
328          */
329         checkcrash ();
330
331
332         /*
333          * Now that we've bound the sockets, change to the Citadel user id and its
334          * corresponding group ids
335          */
336         if (drop_root_perms) {
337                 cdb_chmod_data();       /* make sure we own our data files */
338
339 #ifdef HAVE_GETPWUID_R
340 #ifdef SOLARIS_GETPWUID
341                 pwp = getpwuid_r(config.c_ctdluid, &pw, pwbuf, sizeof(pwbuf));
342 #else // SOLARIS_GETPWUID
343                 getpwuid_r(config.c_ctdluid, &pw, pwbuf, sizeof(pwbuf), &pwp);
344 #endif // SOLARIS_GETPWUID
345 #else // HAVE_GETPWUID_R
346                 pwp = NULL;
347 #endif // HAVE_GETPWUID_R
348
349                 if (pwp == NULL)
350                         syslog(LOG_CRIT, "WARNING: getpwuid(%ld): %s"
351                                    "Group IDs will be incorrect.\n", (long)CTDLUID,
352                                 strerror(errno));
353                 else {
354                         initgroups(pw.pw_name, pw.pw_gid);
355                         if (setgid(pw.pw_gid))
356                                 syslog(LOG_CRIT, "setgid(%ld): %s", (long)pw.pw_gid,
357                                         strerror(errno));
358                 }
359                 syslog(LOG_INFO, "Changing uid to %ld", (long)CTDLUID);
360                 if (setuid(CTDLUID) != 0) {
361                         syslog(LOG_CRIT, "setuid() failed: %s", strerror(errno));
362                 }
363 #if defined (HAVE_SYS_PRCTL_H) && defined (PR_SET_DUMPABLE)
364                 prctl(PR_SET_DUMPABLE, 1);
365 #endif
366         }
367
368         /* We want to check for idle sessions once per minute */
369         CtdlRegisterSessionHook(terminate_idle_sessions, EVT_TIMER);
370
371         go_threading();
372         
373         master_cleanup(exit_signal);
374         return(0);
375 }