This repository has been archived by the owner on May 9, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconfiguration.c
356 lines (316 loc) · 10.5 KB
/
configuration.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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
/*
Weborf
Copyright (C) 2010-2019 Salvo "LtWorf" Tomaselli
Weborf 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/>.
@author Salvo "LtWorf" Tomaselli <tiposchi@tiscali.it>
*/
#include "options.h"
#include <unistd.h>
#include <getopt.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <syslog.h>
#ifdef HAVE_LIBSSL
#include <openssl/err.h>
#include <openssl/ssl.h>
#endif
#include "configuration.h"
#include "types.h"
#include "utils.h"
#include "cachedir.h"
#include "auth.h"
weborf_configuration_t weborf_conf = {
.tar_directory=false,
.is_inetd=false,
.virtual_host = false,
.exec_script = false,
.ip = NULL,
.port = PORT,
.basedir=BASEDIR,
.uid = ROOTUID,
.gid = ROOTGID,
.daemonize = false,
#ifdef HAVE_LIBSSL
.sslctx = NULL,
#endif
#ifdef SEND_MIMETYPES
.send_content_type = false,
#endif
};
/**
* Enables sending mime types in response to GET requests
* or prints an error and exits if the support was not
* compiled
* */
static void configuration_enable_sending_mime() {
#ifdef SEND_MIMETYPES
weborf_conf.send_content_type=true;
#else
fprintf(stderr, "Support for MIME is not available\n");
syslog(LOG_ERR, "Support for MIME is not available\n");
exit(19);
#endif
}
/**
Sets the base dir, making sure that it is really a directory.
*/
static void configuration_set_basedir(char * bd) {
struct stat stat_buf;
stat(bd, &stat_buf);
if (!S_ISDIR(stat_buf.st_mode)) {
//Not a directory
fprintf(stderr, "%s must be a directory\n", bd);
syslog(LOG_ERR, "%s must be a directory\n", bd);
exit(1);
}
weborf_conf.basedir = bd;
}
/**
* Sets default CGI configuration,
* run .php and .py as CGI
* */
static void configuration_set_default_CGI() {
weborf_conf.cgi_paths.len = 4;
weborf_conf.cgi_paths.data[0] = ".php";
weborf_conf.cgi_paths.data[1] = CGI_PHP;
weborf_conf.cgi_paths.data[2] = ".py";
weborf_conf.cgi_paths.data[3] = CGI_PY;
weborf_conf.cgi_paths.data_l[0] = strlen(".php");
weborf_conf.cgi_paths.data_l[1] = strlen(CGI_PHP);
weborf_conf.cgi_paths.data_l[2] = strlen(".py");
weborf_conf.cgi_paths.data_l[3] = strlen(CGI_PY);
}
/**
* Sets the default index file
* */
static void configuration_set_default_index() {
weborf_conf.indexes[0] = INDEX;
weborf_conf.indexes_l = 1;
}
static void configuration_set_cgi(char *optarg) {
if (!optarg || strlen(optarg) == 0) {
weborf_conf.cgi_paths.len = 0; //count of indexes
return;
}
int i = 0;
weborf_conf.cgi_paths.len = 1; //count of indexes
weborf_conf.cgi_paths.data[0] = optarg; //1st one points to begin of param
while (optarg[++i] != 0) { //Reads the string
if (optarg[i] == ',') {
optarg[i] = 0; //Nulling the comma
//Increasing counter and making next item point to char after the comma
weborf_conf.cgi_paths.data[weborf_conf.cgi_paths.len++] = &optarg[i + 1];
if (weborf_conf.cgi_paths.len == MAXINDEXCOUNT) {
fprintf(stderr, "Too many cgis, change MAXINDEXCOUNT in options.h to allow more\n");
syslog(LOG_ERR, "Too many cgis, change MAXINDEXCOUNT in options.h to allow more\n");
exit(6);
}
}
}
if (weborf_conf.cgi_paths.len % 2 == 1) {
fprintf(stderr, "--cgi components must be an even number\n");
syslog(LOG_ERR, "--cgi components must be an even number\n");
exit(6);
}
for (i=0; i<weborf_conf.cgi_paths.len; i++) {
weborf_conf.cgi_paths.data_l[i]=strlen(weborf_conf.cgi_paths.data[i]);
if (i % 2 == 0 && weborf_conf.cgi_paths.data_l[i] == 0) {
fprintf(stderr, "file extension can't have length 0\n");
syslog(LOG_ERR, "file extension can't have length 0\n");
exit(6);
}
}
}
static void configuration_set_index_list(char *optarg) { //Setting list of indexes
int i = 0;
weborf_conf.indexes_l = 1; //count of indexes
weborf_conf.indexes[0] = optarg; //1st one points to begin of param
while (optarg[i++] != 0) { //Reads the string
if (optarg[i] == ',') {
optarg[i++] = 0; //Nulling the comma
//Increasing counter and making next item point to char after the comma
weborf_conf.indexes[weborf_conf.indexes_l++] = &optarg[i];
if (weborf_conf.indexes_l == MAXINDEXCOUNT) {
fprintf(stderr, "Too many indexes, change MAXINDEXCOUNT in options.h to allow more\n");
syslog(LOG_ERR, "Too many indexes, change MAXINDEXCOUNT in options.h to allow more\n");
exit(6);
}
}
}
}
static void configuration_set_virtualhost(char *optarg) {
weborf_conf.virtual_host = true;
int i = 0;
char *virtual = optarg; //1st one points to begin of param
while (optarg[i++] != 0) { //Reads the string
if (optarg[i] == ',') {
optarg[i++] = 0; //Nulling the comma
putenv(virtual);
virtual = &optarg[i];
}
}
putenv(virtual);
}
#ifdef HAVE_LIBSSL
static void init_ssl(char *certificate, char* key) {
SSL_load_error_strings();
SSL_library_init();
OpenSSL_add_all_algorithms();
weborf_conf.sslctx = SSL_CTX_new( TLS_server_method());
if (!weborf_conf.sslctx) {
fprintf(stderr, "SSL Error: %s\n", ERR_error_string(ERR_get_error(), NULL));
syslog(LOG_ERR, "SSL Error: %s\n", ERR_error_string(ERR_get_error(), NULL));
abort();
}
SSL_CTX_set_options(weborf_conf.sslctx, SSL_OP_SINGLE_DH_USE);
if (SSL_CTX_use_certificate_file(weborf_conf.sslctx, certificate, SSL_FILETYPE_PEM) != 1) {
fprintf(stderr, "SSL Error: %s\n", ERR_error_string(ERR_get_error(), NULL));
syslog(LOG_ERR, "SSL Error: %s\n", ERR_error_string(ERR_get_error(), NULL));
exit(19);
}
if (SSL_CTX_use_PrivateKey_file(weborf_conf.sslctx, key, SSL_FILETYPE_PEM) != 1) {
fprintf(stderr, "SSL Error: %s\n", ERR_error_string(ERR_get_error(), NULL));
syslog(LOG_ERR, "SSL Error: %s\n", ERR_error_string(ERR_get_error(), NULL));
exit(19);
}
}
#endif
void configuration_load(int argc, char *argv[]) {
configuration_set_default_CGI();
configuration_set_default_index();
int c; //Identify the readed option
int option_index = 0;
char *certificate = NULL;
char *key = NULL;
//Declares options
struct option long_options[] = {
{"version", no_argument, 0, 'v'},
{"caps", no_argument, 0, 'k'},
{"help", no_argument, 0, 'h'},
{"port", required_argument, 0, 'p'},
{"ip", required_argument, 0, 'i'},
{"uid", required_argument, 0, 'u'},
{"gid", required_argument, 0, 'g'},
{"daemonize", no_argument, 0, 'd'},
{"basedir", required_argument, 0, 'b'},
{"index", required_argument, 0, 'I'},
{"auth", required_argument, 0, 'a'},
{"virtual", required_argument, 0, 'V'},
{"moo", no_argument, 0, 'M'},
{"yesexec", no_argument, 0, 'Y'},
{"cgi", required_argument, 0, 'c'},
{"cache", required_argument, 0, 'C'},
{"mime", no_argument,0,'m'},
{"inetd", no_argument,0,'T'},
{"tar", no_argument,0,'t'},
{"cert", required_argument, 0, 'S'},
{"key", required_argument, 0, 'K'},
{0, 0, 0, 0}
};
while (1) { //Block to read command line
option_index = 0;
//Reading one option and telling what options are allowed and what needs an argument
c = getopt_long(
argc,
argv,
"ktTMmvhp:i:I:u:g:dYb:a:V:c:C:S:",
long_options,
&option_index
);
//If there are no options it continues
if (c == -1)
break;
switch (c) {
case 'k':
print_capabilities();
break;
case 't':
weborf_conf.tar_directory=true;
break;
case 'T':
weborf_conf.is_inetd=true;
break;
case 'C':
cache_init(optarg);
break;
case 'm':
configuration_enable_sending_mime();
break;
case 'c':
configuration_set_cgi(optarg);
break;
case 'V':
configuration_set_virtualhost(optarg);
break;
case 'I':
configuration_set_index_list(optarg);
break;
case 'b':
configuration_set_basedir(optarg);
break;
case 'Y':
weborf_conf.exec_script = true;
break;
case 'v': //Show version and exit
version();
break;
case 'h': //Show help and exit
help();
break;
case 'p':
weborf_conf.port = optarg;
break;
case 'i':
weborf_conf.ip = optarg;
break;
case 'u':
weborf_conf.uid = strtol(optarg, NULL, 0);
break;
case 'g':
weborf_conf.gid = strtol(optarg, NULL, 0);
break;
case 'd':
weborf_conf.daemonize = true;
break;
case 'a':
auth_set_socket(optarg);
break;
case 'M':
moo();
break;
case 'S':
certificate = optarg;
break;
case 'K':
key = optarg;
break;
default:
exit(19);
}
}
if (certificate || key) {
if (weborf_conf.tar_directory) {
fprintf(stderr, "Sending directories as tar is not supported while SSL is in use.\n");
syslog(LOG_ERR, "Sending directories as tar is not supported while SSL is in use.\n");
exit(19);
}
#ifdef HAVE_LIBSSL
init_ssl(certificate, key);
#else
fprintf(stderr, "This binary does not support https.\n");
syslog(LOG_ERR, "This binary does not support https.\n");
exit(19);
#endif
}
}