Random chmod() and chown() calls to help things out when we start up citserver in...
[citadel.git] / citadel / config.c
1 /*
2  * Read and write the citadel.config file
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 <sys/stat.h>
18 #include <unistd.h>
19 #include <stdio.h>
20 #include <errno.h>
21 #include <string.h>
22 #include <limits.h>
23 #include <sys/utsname.h>
24 #include <libcitadel.h>
25 #include "citadel.h"
26 #include "server.h"
27 #include "config.h"
28 #include "ctdl_module.h"
29
30 struct config config;
31
32 /*
33  * Put some sane default values into our configuration.  Some will be overridden when we run setup.
34  */
35 void brand_new_installation_set_defaults(void) {
36
37         struct passwd *pw;
38         struct utsname my_utsname;
39         struct hostent *he;
40
41         /* Determine our host name, in case we need to use it as a default */
42         uname(&my_utsname);
43
44         /* set some sample/default values in place of blanks... */
45         char c_nodename[256];
46         safestrncpy(c_nodename, my_utsname.nodename, sizeof c_nodename);
47         strtok(config.c_nodename, ".");
48         if (IsEmptyStr(config.c_fqdn) ) {
49                 if ((he = gethostbyname(my_utsname.nodename)) != NULL) {
50                         safestrncpy(config.c_fqdn, he->h_name, sizeof config.c_fqdn);
51                 }
52                 else {
53                         safestrncpy(config.c_fqdn, my_utsname.nodename, sizeof config.c_fqdn);
54                 }
55         }
56
57         safestrncpy(config.c_humannode, "Citadel Server", sizeof config.c_humannode);
58         safestrncpy(config.c_phonenum, "US 800 555 1212", sizeof config.c_phonenum);
59         config.c_initax = 4;
60         safestrncpy(config.c_moreprompt, "<more>", sizeof config.c_moreprompt);
61         safestrncpy(config.c_twitroom, "Trashcan", sizeof config.c_twitroom);
62         safestrncpy(config.c_baseroom, BASEROOM, sizeof config.c_baseroom);
63         safestrncpy(config.c_aideroom, "Aide", sizeof config.c_aideroom);
64         config.c_port_number = 504;
65         config.c_sleeping = 900;
66         config.c_instant_expunge = 1;
67
68         if (config.c_ctdluid == 0) {
69                 pw = getpwnam("citadel");
70                 if (pw != NULL) {
71                         config.c_ctdluid = pw->pw_uid;
72                 }
73         }
74         if (config.c_ctdluid == 0) {
75                 pw = getpwnam("bbs");
76                 if (pw != NULL) {
77                         config.c_ctdluid = pw->pw_uid;
78                 }
79         }
80         if (config.c_ctdluid == 0) {
81                 pw = getpwnam("guest");
82                 if (pw != NULL) {
83                         config.c_ctdluid = pw->pw_uid;
84                 }
85         }
86         if (config.c_createax == 0) {
87                 config.c_createax = 3;
88         }
89
90         /*
91          * Default port numbers for various services
92          */
93         config.c_smtp_port = 25;
94         config.c_pop3_port = 110;
95         config.c_imap_port = 143;
96         config.c_msa_port = 587;
97         config.c_smtps_port = 465;
98         config.c_pop3s_port = 995;
99         config.c_imaps_port = 993;
100         config.c_pftcpdict_port = -1 ;
101         config.c_managesieve_port = 2020;
102         config.c_xmpp_c2s_port = 5222;
103         config.c_xmpp_s2s_port = 5269;
104 }
105
106
107
108 /*
109  * get_config() is called during the initialization of Citadel server.
110  * It verifies the system's integrity and reads citadel.config into memory.
111  */
112 void get_config(void) {
113         FILE *cfp;
114         int rv;
115
116         if (chdir(ctdl_bbsbase_dir) != 0) {
117                 fprintf(stderr,
118                         "This program could not be started.\nUnable to change directory to %s\nError: %s\n",
119                         ctdl_bbsbase_dir,
120                         strerror(errno)
121                 );
122                 exit(CTDLEXIT_HOME);
123         }
124
125         memset(&config, 0, sizeof(struct config));
126         cfp = fopen(file_citadel_config, "rb");
127         if (cfp != NULL) {
128                 rv = fread((char *) &config, sizeof(struct config), 1, cfp);
129                 if (rv != 1)
130                 {
131                         fprintf(stderr, 
132                                 "Warning: The config file %s has unexpected size. \n",
133                                 file_citadel_config
134                         );
135                 }
136                 fclose(cfp);
137         }
138         else {
139                 brand_new_installation_set_defaults();
140         }
141
142         /* Ensure that we are linked to the correct version of libcitadel */
143         if (libcitadel_version_number() < LIBCITADEL_VERSION_NUMBER) {
144                 fprintf(stderr, "    You are running libcitadel version %d.%02d\n",
145                         (libcitadel_version_number() / 100), (libcitadel_version_number() % 100));
146                 fprintf(stderr, "citserver was compiled against version %d.%02d\n",
147                         (LIBCITADEL_VERSION_NUMBER / 100), (LIBCITADEL_VERSION_NUMBER % 100));
148                 exit(CTDLEXIT_LIBCITADEL);
149         }
150
151         /* Only allow LDAP auth mode if we actually have LDAP support */
152 #ifndef HAVE_LDAP
153         if ((config.c_auth_mode == AUTHMODE_LDAP) || (config.c_auth_mode == AUTHMODE_LDAP_AD)) {
154                 fprintf(stderr, "Your system is configured for LDAP authentication,\n"
155                                 "but you are running a server built without OpenLDAP support.\n");
156                 exit(CTDL_EXIT_UNSUP_AUTH);
157         }
158 #endif
159
160         /* Default maximum message length is 10 megabytes.  This is site
161          * configurable.  Also check to make sure the limit has not been
162          * set below 8192 bytes.
163          */
164         if (config.c_maxmsglen <= 0)
165                 config.c_maxmsglen = 10485760;
166         if (config.c_maxmsglen < 8192)
167                 config.c_maxmsglen = 8192;
168
169         /* Default lower and upper limits on number of worker threads */
170
171         if (config.c_min_workers < 3)           /* no less than 3 */
172                 config.c_min_workers = 5;
173
174         if (config.c_max_workers == 0)                  /* default maximum */
175                 config.c_max_workers = 256;
176
177         if (config.c_max_workers < config.c_min_workers)   /* max >= min */
178                 config.c_max_workers = config.c_min_workers;
179
180         /* Networking more than once every five minutes just isn't sane */
181         if (config.c_net_freq == 0L)
182                 config.c_net_freq = 3600L;      /* once per hour default */
183         if (config.c_net_freq < 300L) 
184                 config.c_net_freq = 300L;
185
186         /* Same goes for POP3 */
187         if (config.c_pop3_fetch == 0L)
188                 config.c_pop3_fetch = 3600L;    /* once per hour default */
189         if (config.c_pop3_fetch < 300L) 
190                 config.c_pop3_fetch = 300L;
191         if (config.c_pop3_fastest == 0L)
192                 config.c_pop3_fastest = 3600L;  /* once per hour default */
193         if (config.c_pop3_fastest < 300L) 
194                 config.c_pop3_fastest = 300L;
195
196         /* "create new user" only works with native authentication mode */
197         if (config.c_auth_mode != AUTHMODE_NATIVE) {
198                 config.c_disable_newu = 1;
199         }
200 }
201
202
203 /*
204  * Occasionally, we will need to write the config file, because some operations
205  * change site-wide parameters.
206  */
207 void put_config(void)
208 {
209         FILE *cfp;
210         int blocks_written = 0;
211
212         if ((cfp = fopen(file_citadel_config, "w")) != NULL) {
213                 blocks_written = fwrite((char *) &config, sizeof(struct config), 1, cfp);
214                 if (blocks_written == 1) {
215                         fclose(cfp);
216                         chown(file_citadel_config, CTDLUID, (-1));
217                         chmod(file_citadel_config, 0600);
218                         return;
219                 }
220         }
221         syslog(LOG_EMERG, "%s: %s", file_citadel_config, strerror(errno));
222 }