2 * citserver's main() function lives here.
14 #include <sys/types.h>
17 #include <sys/socket.h>
20 #if TIME_WITH_SYS_TIME
21 # include <sys/time.h>
25 # include <sys/time.h>
32 #include <netinet/in.h>
41 #ifdef HAVE_SYS_PRCTL_H
42 #include <sys/prctl.h>
44 #include <libcitadel.h>
47 #include "serv_extensions.h"
48 #include "sysdep_decls.h"
50 #include "citserver.h"
56 #include "housekeeping.h"
57 #include "svn_revision.h"
58 #include "citadel_dirs.c"
60 #include "modules_init.h"
63 #ifdef HAVE_SYS_SELECT_H
64 #include <sys/select.h>
70 const char *CitadelServiceUDS
="citadel-UDS";
71 const char *CitadelServiceTCP
="citadel-TCP";
74 extern struct CitContext masterCC
;
77 void go_threading(void);
80 * Here's where it all begins.
82 int main(int argc
, char **argv
)
85 int a
; /* General-purpose variables */
86 struct passwd pw
, *pwp
= NULL
;
88 int drop_root_perms
= 1;
93 char relhome
[PATH_MAX
]="";
94 char ctdldir
[PATH_MAX
]=CTDLDIR
;
96 struct stat filestats
;
99 eCrashParameters params
;
100 // eCrashSymbolTable symbol_table;
102 /* initialise semaphores here. Patch by Matt and davew
103 * its called here as they are needed by CtdlLogPrintf for thread safety
105 InitialiseSemaphores();
107 /* initialize the master context */
108 InitializeMasterCC();
110 /* parse command-line arguments */
111 for (a
=1; a
<argc
; ++a
) {
113 if (!strncmp(argv
[a
], "-l", 2)) {
114 safestrncpy(facility
, &argv
[a
][2], sizeof(facility
));
115 syslog_facility
= SyslogFacility(facility
);
119 /* run in the background if -d was specified */
120 else if (!strcmp(argv
[a
], "-d")) {
121 running_as_daemon
= 1;
124 /* -x specifies the desired logging level */
125 else if (!strncmp(argv
[a
], "-x", 2)) {
126 verbosity
= atoi(&argv
[a
][2]);
129 else if (!strncmp(argv
[a
], "-h", 2)) {
130 relh
=argv
[a
][2]!='/';
131 if (!relh
) safestrncpy(ctdl_home_directory
, &argv
[a
][2],
132 sizeof ctdl_home_directory
);
134 safestrncpy(relhome
, &argv
[a
][2],
139 else if (!strncmp(argv
[a
], "-t", 2)) {
140 freopen(&argv
[a
][2], "w", stderr
);
143 else if (!strncmp(argv
[a
], "-D", 2)) {
147 /* -r tells the server not to drop root permissions. don't use
148 * this unless you know what you're doing. this should be
149 * removed in the next release if it proves unnecessary. */
150 else if (!strcmp(argv
[a
], "-r"))
153 /* any other parameter makes it crash and burn */
155 CtdlLogPrintf(CTDL_EMERG
, "citserver: usage: "
160 " [-xLogLevel] [-hHomeDir]\n");
166 calc_dirs_n_files(relh
, home
, relhome
, ctdldir
, dbg
);
167 /* daemonize, if we were asked to */
168 if (running_as_daemon
) {
173 #ifdef HAVE_BACKTRACE
174 bzero(¶ms
, sizeof(params
));
175 params
.filename
= file_pid_paniclog
;
176 panic_fd
=open(file_pid_paniclog
, O_APPEND
|O_CREAT
|O_DIRECT
);
177 params
.filep
= fopen(file_pid_paniclog
, "a+");
178 params
.debugLevel
= ECRASH_DEBUG_VERBOSE
;
179 params
.dumpAllThreads
= TRUE
;
180 params
.useBacktraceSymbols
= 1;
181 params
.signals
[0]=SIGSEGV
;
182 params
.signals
[1]=SIGILL
;
183 params
.signals
[2]=SIGBUS
;
184 params
.signals
[3]=SIGABRT
;
185 eCrash_Init(¶ms
);
186 eCrash_RegisterThread("MasterThread", 0);
189 /* Initialize the syslogger. Yes, we are really using 0 as the
190 * facility, because we are going to bitwise-OR the facility to
191 * the severity of each message, allowing us to write to other
192 * facilities when we need to...
195 openlog("citadel", LOG_NDELAY
, 0);
196 setlogmask(LOG_UPTO(verbosity
));
199 /* Tell 'em who's in da house */
200 CtdlLogPrintf(CTDL_NOTICE
, "\n");
201 CtdlLogPrintf(CTDL_NOTICE
, "\n");
202 CtdlLogPrintf(CTDL_NOTICE
,
203 "*** Citadel server engine v%d.%02d (build %s) ***\n",
204 (REV_LEVEL
/100), (REV_LEVEL
%100), svn_revision());
205 CtdlLogPrintf(CTDL_NOTICE
, "Copyright (C) 1987-2008 by the Citadel development team.\n");
206 CtdlLogPrintf(CTDL_NOTICE
, "This program is distributed under the terms of the GNU "
207 "General Public License.\n");
208 CtdlLogPrintf(CTDL_NOTICE
, "\n");
209 CtdlLogPrintf(CTDL_DEBUG
, "Called as: %s\n", argv
[0]);
210 CtdlLogPrintf(CTDL_INFO
, "%s\n", libcitadel_version_string());
212 /* Load site-specific parameters, and set the ipgm secret */
213 CtdlLogPrintf(CTDL_INFO
, "Loading citadel.config\n");
215 config
.c_ipgm_secret
= rand();
217 /* get_control() MUST MUST MUST be called BEFORE the databases are opened!! */
218 CtdlLogPrintf(CTDL_INFO
, "Acquiring control record\n");
224 /* on some dists rundir gets purged on startup. so we need to recreate it. */
226 if (stat(ctdl_run_dir
, &filestats
)==-1){
227 #ifdef HAVE_GETPWUID_R
228 #ifdef SOLARIS_GETPWUID
229 pwp
= getpwuid_r(config
.c_ctdluid
, &pw
, pwbuf
, sizeof(pwbuf
));
230 #else // SOLARIS_GETPWUID
231 getpwuid_r(config
.c_ctdluid
, &pw
, pwbuf
, sizeof(pwbuf
), &pwp
);
232 #endif // SOLARIS_GETPWUID
233 #else // HAVE_GETPWUID_R
235 #endif // HAVE_GETPWUID_R
236 mkdir(ctdl_run_dir
, 0755);
237 chown(ctdl_run_dir
, config
.c_ctdluid
, (pwp
==NULL
)?-1:pw
.pw_gid
);
247 * Do non system dependent startup functions.
252 * Check that the control record is correct and place sensible values if it isn't
257 * Run any upgrade entry points
259 CtdlLogPrintf(CTDL_INFO
, "Upgrading modules.\n");
263 * Load the user for the masterCC or create them if they don't exist
265 if (getuser(&masterCC
.user
, "SYS_Citadel"))
267 /** User doesn't exist. We can't use create user here as the user number needs to be 0 */
268 strcpy (masterCC
.user
.fullname
, "SYS_Citadel") ;
269 putuser(&masterCC
.user
);
270 getuser(&masterCC
.user
, "SYS_Citadel"); /** Just to be safe */
274 * Bind the server to a Unix-domain socket.
276 CtdlRegisterServiceHook(0,
278 citproto_begin_session
,
284 * Bind the server to our favorite TCP port (usually 504).
286 CtdlRegisterServiceHook(config
.c_port_number
,
288 citproto_begin_session
,
297 * Load any server-side extensions available here.
299 CtdlLogPrintf(CTDL_INFO
, "Initializing server extensions\n");
300 size
= strlen(ctdl_home_directory
) + 9;
302 initialise_modules(0);
307 * If we need host auth, start our chkpwd daemon.
309 if (config
.c_auth_mode
== AUTHMODE_HOST
) {
310 start_chkpwd_daemon();
314 * Now that we've bound the sockets, change to the Citadel user id and its
315 * corresponding group ids
317 if (drop_root_perms
) {
318 cdb_chmod_data(); /* make sure we own our data files */
320 #ifdef HAVE_GETPWUID_R
321 #ifdef SOLARIS_GETPWUID
322 pwp
= getpwuid_r(config
.c_ctdluid
, &pw
, pwbuf
, sizeof(pwbuf
));
323 #else // SOLARIS_GETPWUID
324 getpwuid_r(config
.c_ctdluid
, &pw
, pwbuf
, sizeof(pwbuf
), &pwp
);
325 #endif // SOLARIS_GETPWUID
326 #else // HAVE_GETPWUID_R
328 #endif // HAVE_GETPWUID_R
331 CtdlLogPrintf(CTDL_CRIT
, "WARNING: getpwuid(%ld): %s\n"
332 "Group IDs will be incorrect.\n", (long)CTDLUID
,
335 initgroups(pw
.pw_name
, pw
.pw_gid
);
336 if (setgid(pw
.pw_gid
))
337 CtdlLogPrintf(CTDL_CRIT
, "setgid(%ld): %s\n", (long)pw
.pw_gid
,
340 CtdlLogPrintf(CTDL_INFO
, "Changing uid to %ld\n", (long)CTDLUID
);
341 if (setuid(CTDLUID
) != 0) {
342 CtdlLogPrintf(CTDL_CRIT
, "setuid() failed: %s\n", strerror(errno
));
344 #if defined (HAVE_SYS_PRCTL_H) && defined (PR_SET_DUMPABLE)
345 prctl(PR_SET_DUMPABLE
, 1);
349 /* We want to check for idle sessions once per minute */
350 CtdlRegisterSessionHook(terminate_idle_sessions
, EVT_TIMER
);
355 master_cleanup(exit_signal
);