-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-files.c
320 lines (277 loc) · 10.6 KB
/
config-files.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
/*
* Copyright (c) 1995-2019 Peter Simons <simons@cryp.to>
* Copyright (c) 2000-2001 Cable & Wireless GmbH
* Copyright (c) 1999-2000 CyberSolutions GmbH
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <config.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/stat.h>
#include "libtext/text.h"
#include "liblists/lists.h"
#include "libconfigfile/configfile.h"
#include "petidomo.h"
static struct PD_Config * MasterConfig;
List ListConfigs;
/* These variables need to be static/global, so that the addresses as
used in MasterCF are known at compile time. */
static char* fqdn = NULL;
static char* master_password = NULL;
static char* mta = NULL;
static char* mta_options = "-i -f%s";
static char* help_file = DATADIR "/help";
static char* acl_file_pre = SYSCONFDIR "/petidomo.acl-pre";
static char* acl_file_post = SYSCONFDIR "/petidomo.acl-post";
static char* index_file = LOCALSTATEDIR "/index";
static char* list_dir = LOCALSTATEDIR "/lists";
static char* ack_queue_dir = LOCALSTATEDIR "/ack-queue";
int InitPetidomo(const char* masterconfig)
{
int rc;
/* Format description of our global config file. */
struct ConfigFile MasterCF[] =
{
{ "Hostname", CF_STRING, &fqdn },
{ "AdminPassword", CF_STRING, &master_password },
{ "MTA", CF_STRING, &mta },
{ "MTAOptions", CF_STRING, &mta_options },
{ "HelpFile", CF_STRING, &help_file },
{ "AclFilePre", CF_STRING, &acl_file_pre },
{ "AclFilePost", CF_STRING, &acl_file_post },
{ "IndexFile", CF_STRING, &index_file },
{ "ListDirectory", CF_STRING, &list_dir },
{ "AckQueueDirectory", CF_STRING, &ack_queue_dir },
{ NULL, 0, NULL}
};
/* Allocate memory for the global config structure. */
MasterConfig = calloc(sizeof(struct PD_Config), 1);
if (MasterConfig == NULL)
{
syslog(LOG_ERR, "Failed to allocate memory for the global PD_Config data structure.");
return -1;
}
/* Init the list of read list configs. */
ListConfigs = InitList(NULL);
/* Parse the config file. */
rc = ReadConfig(masterconfig, MasterCF);
if (rc != 0)
{
syslog(LOG_ERR, "Failed to parse the master config file.");
return -1;
}
/* Do consistency checks. */
if (fqdn == NULL)
{
syslog(LOG_ERR, "The master config file \"%s\" doesn't set the host name.", masterconfig);
return -1;
}
if (mta == NULL)
{
syslog(LOG_ERR, "The master config file \"%s\" doesn't set the MTA.", masterconfig);
return -1;
}
if (master_password == NULL)
{
syslog(LOG_ERR, "The master config file \"%s\" doesn't set the admin password.", masterconfig);
return -1;
}
if (strstr(mta_options, "%s") == NULL)
{
syslog(LOG_ERR, "The argument to MTA_Options in the master config file is invalid.");
return -1;
}
/* Copy the results to the structure. */
MasterConfig->fqdn = fqdn;
MasterConfig->master_password = master_password;
MasterConfig->mta = mta;
MasterConfig->mta_options = mta_options;
MasterConfig->help_file = help_file;
MasterConfig->acl_file_pre = acl_file_pre;
MasterConfig->acl_file_post = acl_file_post;
MasterConfig->index_file = index_file;
MasterConfig->list_dir = list_dir;
MasterConfig->ack_queue_dir = ack_queue_dir;
return 0;
}
const struct PD_Config* getMasterConfig(void)
{
return MasterConfig;
}
static char* list_fqdn;
static char* admin_password;
static char* posting_password;
static char* listtype;
static char* reply_to;
static char* postingfilter;
static char* archivepath;
static char* subtype;
static bool allowmembers;
static char* intro_file;
static char* sig_file;
static char* desc_file;
static char* header_file;
static char* list_acl_file_pre;
static char* list_acl_file_post;
static char* address_file;
static char* ack_file;
const struct List_Config* getListConfig(const char * listname)
{
struct List_Config * ListConfig;
Node node;
int rc;
char * buffer;
struct stat sb;
char* this_list_dir;
/* Format description of our global config file. */
struct ConfigFile ListCF[] =
{
{ "ListType", CF_STRING, &listtype },
{ "SubscriptionType", CF_STRING, &subtype },
{ "AllowMembersCommand", CF_YES_NO, &allowmembers },
{ "ReplyTo", CF_STRING, &reply_to },
{ "Hostname", CF_STRING, &list_fqdn },
{ "AdminPassword", CF_STRING, &admin_password },
{ "PostingPassword", CF_STRING, &posting_password },
{ "PostingFilter", CF_STRING, &postingfilter },
{ "Archive", CF_STRING, &archivepath },
{ "IntroductionFile", CF_STRING, &intro_file },
{ "SignatureFile", CF_STRING, &sig_file },
{ "DescriptionFile", CF_STRING, &desc_file },
{ "HeaderFile", CF_STRING, &header_file },
{ "ACLFilePre", CF_STRING, &list_acl_file_pre },
{ "ACLFilePost", CF_STRING, &list_acl_file_post },
{ "AddressFile", CF_STRING, &address_file },
{ "AcknowledgementFile", CF_STRING, &ack_file },
{ NULL, 0, NULL}
};
/* Set the defaults. */
list_fqdn = NULL;
admin_password = NULL;
posting_password = NULL;
listtype = "open";
reply_to = NULL;
postingfilter = NULL;
archivepath = NULL;
subtype = "public";
allowmembers = FALSE;
intro_file = "introduction";
sig_file = "signature";
desc_file = "description";
header_file = "header";
list_acl_file_pre = "acl-pre";
list_acl_file_post = "acl-post";
address_file = "list";
ack_file = "acks";
/* Did we read this config file already? */
node = FindNodeByKey(ListConfigs, listname);
if (node != NULL)
return getNodeData(node);
/* No? Then read the config file. */
buffer = text_easy_sprintf("%s/%s/config", MasterConfig->list_dir, listname);
this_list_dir = text_easy_sprintf("%s/%s", MasterConfig->list_dir, listname);
if (stat(buffer, &sb) != 0)
{
free(buffer);
buffer = text_easy_sprintf("%s/%s/conf", MasterConfig->list_dir, listname);
if (stat(buffer, &sb) != 0)
{
free(buffer);
buffer = text_easy_sprintf("%s/%s.config", MasterConfig->list_dir, listname);
this_list_dir = MasterConfig->list_dir;
if (stat(buffer, &sb) != 0)
{
free(buffer);
buffer = text_easy_sprintf("%s/%s.conf", MasterConfig->list_dir, listname);
if (stat(buffer, &sb) != 0)
{
syslog(LOG_ERR, "Can't find a config file for list \"%s\".", listname);
exit(EXIT_FAILURE);
}
}
}
}
rc = ReadConfig(buffer, ListCF);
if (rc != 0)
{
syslog(LOG_ERR, "Failed to parse the list \"%s\"'s config file.", listname);
exit(EXIT_FAILURE);
}
/* Do consistency checks. */
if (listtype == NULL)
{
syslog(LOG_ERR, "List \"%s\" doesn't have a valid type in config file.", listname);
exit(EXIT_FAILURE);
}
/* Set up the list config structure. */
ListConfig = calloc(sizeof(struct List_Config), 1);
if (ListConfig == NULL)
{
syslog(LOG_ERR, "Failed to allocate memory for List_Config data structure.");
exit(EXIT_FAILURE);
}
if (!strcasecmp(listtype, "open"))
ListConfig->listtype = LIST_OPEN;
else if (!strcasecmp(listtype, "closed"))
ListConfig->listtype = LIST_CLOSED;
else if (!strcasecmp(listtype, "moderated"))
ListConfig->listtype = LIST_MODERATED;
else if (!strcasecmp(listtype, "acknowledged") || !strcasecmp(listtype, "acked"))
ListConfig->listtype = LIST_ACKED;
else if (!strcasecmp(listtype, "acknowledged-once") || !strcasecmp(listtype, "acked-once"))
ListConfig->listtype = LIST_ACKED_ONCE;
else
{
syslog(LOG_ERR, "List \"%s\" doesn't have a valid type in config file.", listname);
exit(EXIT_FAILURE);
}
if (!strcasecmp(subtype, "public"))
ListConfig->subtype = SUBSCRIPTION_PUBLIC;
else if (!strcasecmp(subtype, "admin"))
ListConfig->subtype = SUBSCRIPTION_ADMIN;
else if (!strcasecmp(subtype, "acknowledged") || !strcasecmp(subtype, "acked"))
ListConfig->subtype = SUBSCRIPTION_ACKED;
else
{
syslog(LOG_ERR, "List \"%s\" doesn't have a valid subscription type in config file.", listname);
exit(EXIT_FAILURE);
}
ListConfig->allowmembers = allowmembers;
ListConfig->fqdn = (list_fqdn) ? list_fqdn : MasterConfig->fqdn;
ListConfig->reply_to = reply_to;
if (reply_to != NULL && strcasecmp(reply_to, "none"))
CanonizeAddress(&(ListConfig->reply_to), ListConfig->fqdn);
ListConfig->admin_password = admin_password;
ListConfig->posting_password = posting_password;
ListConfig->postingfilter = postingfilter;
ListConfig->list_dir = this_list_dir;
#define EXPAND(dst, src) \
if (src == NULL || src[0] == '/') \
ListConfig->dst = src; \
else \
ListConfig->dst = text_easy_sprintf("%s/%s", ListConfig->list_dir, src);
EXPAND(archivepath, archivepath);
EXPAND(intro_file, intro_file);
EXPAND(desc_file, desc_file);
EXPAND(sig_file, sig_file);
EXPAND(header_file, header_file);
EXPAND(acl_file_pre, list_acl_file_pre);
EXPAND(acl_file_post, list_acl_file_post);
EXPAND(address_file, address_file);
EXPAND(ack_file, ack_file);
AppendNode(ListConfigs, xstrdup(listname), ListConfig);
return ListConfig;
}