2 * onak-conf.c - Routines related to runtime config.
4 * Copyright 2002 Jonathan McDowell <noodles@earth.li>
6 * This program is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; version 2 of the License.
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
29 #include "onak-conf.h"
31 extern struct dbfuncs DBFUNCS;
34 * config - Runtime configuration for onak.
36 * This is the default config; normally overridden with values from the
39 struct onak_config config = {
42 NULL, /* adminemail */
50 * Options for directory backends.
55 * Options for the Postgres backend.
63 * Options for dynamic backends.
65 NULL, /* db_backend */
66 NULL, /* backends_dir */
68 &DBFUNCS, /* Default dbfuncs struct */
71 bool parsebool(char *str, bool fallback)
73 if (!strcasecmp(str, "false") || !strcasecmp(str, "no") ||
74 !strcasecmp(str, "0")) {
76 } else if (!strcasecmp(str, "true") || !strcasecmp(str, "yes") ||
77 !strcasecmp(str, "1")) {
80 logthing(LOGTHING_CRITICAL,
81 "Couldn't parse %s as a boolean config variable, "
82 "returning fallback of '%s'.",
84 fallback ? "true" : "false");
89 void readconfig(const char *configfile) {
95 if (configfile == NULL) {
96 conffile = fopen(CONFIGFILE, "r");
98 conffile = fopen(configfile, "r");
100 if (conffile != NULL) {
101 fgets(curline, 1023, conffile);
103 while (!feof(conffile)) {
104 for (i = strlen(curline) - 1;
105 i >= 0 && isspace(curline[i]);
110 if (curline[0] == '#' || curline[0] == 0) {
112 * Comment line, ignore.
114 } else if (!strncmp("db_dir ", curline, 7)) {
115 config.db_dir = strdup(&curline[7]);
116 } else if (!strncmp("debug ", curline, 6)) {
118 * Not supported yet; ignore for compatibility with
121 } else if (!strncmp("default_language ", curline, 17)) {
123 * Not supported yet; ignore for compatibility with
126 } else if (!strncmp("mail_delivery_client ", curline, 21)) {
127 config.mta = strdup(&curline[21]);
128 } else if (!strncmp("maintainer_email ", curline, 17)) {
129 config.adminemail = strdup(&curline[17]);
130 } else if (!strncmp("mail_intro_file ", curline, 16)) {
132 * Not supported yet; ignore for compatibility with
135 } else if (!strncmp("help_dir ", curline, 9)) {
137 * Not supported yet; ignore for compatibility with
140 } else if (!strncmp("max_last ", curline, 9)) {
142 * Not supported yet; ignore for compatibility with
145 } else if (!strncmp("max_reply_keys ", curline, 15)) {
146 config.maxkeys = atoi(&curline[15]);
147 } else if (!strncmp("pg_dbhost ", curline, 10)) {
148 config.pg_dbhost = strdup(&curline[10]);
149 } else if (!strncmp("pg_dbname ", curline, 10)) {
150 config.pg_dbname = strdup(&curline[10]);
151 } else if (!strncmp("pg_dbuser ", curline, 10)) {
152 config.pg_dbuser = strdup(&curline[10]);
153 } else if (!strncmp("pg_dbpass ", curline, 10)) {
154 config.pg_dbpass = strdup(&curline[10]);
155 } else if (!strncmp("syncsite ", curline, 9)) {
157 lladd(config.syncsites, strdup(&curline[9]));
158 } else if (!strncmp("logfile ", curline, 8)) {
159 config.logfile = strdup(&curline[8]);
160 } else if (!strncmp("loglevel ", curline, 9)) {
161 setlogthreshold(atoi(&curline[9]));
162 } else if (!strncmp("this_site ", curline, 10)) {
163 config.thissite = strdup(&curline[10]);
164 } else if (!strncmp("socket_name ", curline, 12) ||
165 !strncmp("pks_bin_dir ", curline, 12) ||
166 !strncmp("mail_dir ", curline, 9) ||
167 !strncmp("www_port ", curline, 9)) {
169 * Not applicable; ignored for compatibility with pksd.
171 } else if (!strncmp("db_backend ", curline, 11)) {
172 config.db_backend = strdup(&curline[11]);
173 } else if (!strncmp("backends_dir ", curline, 13)) {
174 config.backends_dir = strdup(&curline[13]);
175 } else if (!strncmp("use_keyd ", curline, 9)) {
176 config.use_keyd = parsebool(&curline[9],
179 logthing(LOGTHING_ERROR,
180 "Unknown config line: %s", curline);
183 fgets(curline, 1023, conffile);
187 logthing(LOGTHING_NOTICE,
188 "Couldn't open config file; using defaults.");
192 void cleanupconfig(void) {
193 if (config.thissite != NULL) {
194 free(config.thissite);
195 config.thissite = NULL;
197 if (config.adminemail != NULL) {
198 free(config.adminemail);
199 config.adminemail = NULL;
201 if (config.mta != NULL) {
205 if (config.db_dir != NULL) {
207 config.db_dir = NULL;
209 if (config.pg_dbhost != NULL) {
210 free(config.pg_dbhost);
211 config.pg_dbhost = NULL;
213 if (config.pg_dbname != NULL) {
214 free(config.pg_dbname);
215 config.pg_dbname = NULL;
217 if (config.pg_dbuser != NULL) {
218 free(config.pg_dbuser);
219 config.pg_dbuser = NULL;
221 if (config.pg_dbpass != NULL) {
222 free(config.pg_dbpass);
223 config.pg_dbpass = NULL;
225 if (config.syncsites != NULL) {
226 llfree(config.syncsites, free);
227 config.syncsites = NULL;
229 if (config.logfile != NULL) {
230 free(config.logfile);
231 config.logfile = NULL;
233 if (config.db_backend != NULL) {
234 free(config.db_backend);
235 config.db_backend = NULL;
237 if (config.backends_dir != NULL) {
238 free(config.backends_dir);
239 config.backends_dir = NULL;