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