No more cleanup hooks. The OS can reclaim memory better than we can. We want to...
[citadel.git] / citadel / citserver.c
1 /* 
2  * Main source module for the Citadel server
3  *
4  * Copyright (c) 1987-2021 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 <stdlib.h>
16 #include <unistd.h>
17 #include <stdio.h>
18 #include <sys/stat.h>
19 #include "sysdep.h"
20 #include <time.h>
21 #include <libcitadel.h>
22
23 #include "ctdl_module.h"
24 #include "housekeeping.h"
25 #include "locate_host.h"
26 #include "citserver.h"
27 #include "user_ops.h"
28 #include "control.h"
29 #include "config.h"
30
31 char *unique_session_numbers;
32 int ScheduledShutdown = 0;
33 time_t server_startup_time;
34 int panic_fd;
35 int openid_level_supported = 0;
36
37
38 /*
39  * Various things that need to be initialized at startup
40  */
41 void master_startup(void)
42 {
43         struct timeval tv;
44         unsigned int seed;
45         FILE *urandom;
46         struct ctdlroom qrbuf;
47         int rv;
48         struct passwd *pw;
49         gid_t gid;
50
51         syslog(LOG_DEBUG, "master_startup() started");
52         time(&server_startup_time);
53
54         syslog(LOG_INFO, "Checking directory access");
55         if ((pw = getpwuid(ctdluid)) == NULL) {
56                 gid = getgid();
57         } else {
58                 gid = pw->pw_gid;
59         }
60
61         if (create_run_directories(CTDLUID, gid) != 0) {
62                 syslog(LOG_EMERG, "failed to access & create directories");
63                 exit(1);
64         }
65         syslog(LOG_INFO, "Opening databases");
66         open_databases();
67
68         /* Load site-specific configuration */
69         syslog(LOG_INFO, "Initializing configuration system");
70         initialize_config_system();
71         validate_config();
72         migrate_legacy_control_record();
73
74         // If we have an existing database that is older than version 928, reindex the user records.
75         // Unfortunately we cannot do this in serv_upgrade.c because it needs to happen VERY early during startup.
76         int existing_db = CtdlGetConfigInt("MM_hosted_upgrade_level");
77         if ( (existing_db > 0) && (existing_db < 928) ) {
78                 ForEachUser(reindex_user_928, NULL);
79         }
80
81         /* Check floor reference counts */
82         check_ref_counts();
83
84         syslog(LOG_INFO, "Creating base rooms (if necessary)");
85         CtdlCreateRoom(CtdlGetConfigStr("c_baseroom"), 0, "", 0, 1, 0, VIEW_BBS);
86         CtdlCreateRoom(AIDEROOM, 3, "", 0, 1, 0, VIEW_BBS);
87         CtdlCreateRoom(SYSCONFIGROOM, 3, "", 0, 1, 0, VIEW_BBS);
88         CtdlCreateRoom(CtdlGetConfigStr("c_twitroom"), 0, "", 0, 1, 0, VIEW_BBS);
89
90         /* The "Local System Configuration" room doesn't need to be visible */
91         if (CtdlGetRoomLock(&qrbuf, SYSCONFIGROOM) == 0) {
92                 qrbuf.QRflags2 |= QR2_SYSTEM;
93                 CtdlPutRoomLock(&qrbuf);
94         }
95
96         /* Aide needs to be public postable, else we're not RFC conformant. */
97         if (CtdlGetRoomLock(&qrbuf, AIDEROOM) == 0) {
98                 qrbuf.QRflags2 |= QR2_SMTP_PUBLIC;
99                 CtdlPutRoomLock(&qrbuf);
100         }
101
102         syslog(LOG_INFO, "Seeding the pseudo-random number generator...");
103         urandom = fopen("/dev/urandom", "r");
104         if (urandom != NULL) {
105                 rv = fread(&seed, sizeof seed, 1, urandom);
106                 if (rv == -1) {
107                         syslog(LOG_ERR, "citserver: failed to read random seed: %m");
108                 }
109                 fclose(urandom);
110         } else {
111                 gettimeofday(&tv, NULL);
112                 seed = tv.tv_usec;
113         }
114         srand(seed);
115         srandom(seed);
116
117         syslog(LOG_DEBUG, "master_startup() finished");
118 }
119
120
121 /*
122  * Cleanup routine to be called when the server is shutting down.  Returns the needed exit code.
123  */
124 int master_cleanup(int exitcode)
125 {
126         static int already_cleaning_up = 0;
127
128         if (already_cleaning_up) {
129                 while (1) {
130                         usleep(1000000);
131                 }
132         }
133         already_cleaning_up = 1;
134
135         /* Do system-dependent stuff */
136         sysdep_master_cleanup();
137
138         /* Close the configuration system */
139         shutdown_config_system();
140
141         /* Close databases */
142         syslog(LOG_INFO, "citserver: closing databases");
143         close_databases();
144
145         /* If the operator requested a halt but not an exit, halt here. */
146         if (shutdown_and_halt) {
147                 syslog(LOG_ERR, "citserver: Halting server without exiting.");
148                 fflush(stdout);
149                 fflush(stderr);
150                 while (1) {
151                         sleep(32767);
152                 }
153         }
154
155         /* Now go away. */
156         syslog(LOG_ERR, "citserver: Exiting with status %d", exitcode);
157         fflush(stdout);
158         fflush(stderr);
159
160         if (restart_server != 0) {
161                 exitcode = 1;
162         } else if ((running_as_daemon != 0) && ((exitcode == 0))) {
163                 exitcode = CTDLEXIT_SHUTDOWN;
164         }
165         return (exitcode);
166 }
167
168
169 /*
170  * returns an asterisk if there are any instant messages waiting,
171  * space otherwise.
172  */
173 char CtdlCheckExpress(void)
174 {
175         if (CC->FirstExpressMessage == NULL) {
176                 return (' ');
177         } else {
178                 return ('*');
179         }
180 }
181
182
183 void citproto_begin_session()
184 {
185         if (CC->nologin == 1) {
186                 cprintf("%d Too many users are already online (maximum is %d)\n",
187                         ERROR + MAX_SESSIONS_EXCEEDED, CtdlGetConfigInt("c_maxsessions")
188                     );
189                 CC->kill_me = KILLME_MAX_SESSIONS_EXCEEDED;
190         } else {
191                 cprintf("%d %s Citadel server ready.\n", CIT_OK, CtdlGetConfigStr("c_fqdn"));
192                 CC->can_receive_im = 1;
193         }
194 }
195
196
197 void citproto_begin_admin_session()
198 {
199         CC->internal_pgm = 1;
200         cprintf("%d %s Citadel server ADMIN CONNECTION ready.\n", CIT_OK, CtdlGetConfigStr("c_fqdn"));
201 }
202
203
204 /*
205  * This loop performs all asynchronous functions.
206  */
207 void do_async_loop(void)
208 {
209         PerformSessionHooks(EVT_ASYNC);
210 }