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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
|
#include <sys/types.h>
#include <sys/socket.h>
#include <ctype.h>
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/un.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <syslog.h>
#include <netdb.h>
#include <math.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include "config.h"
#include "cfg_file.h"
#include "main.h"
#ifndef HAVE_OWN_QUEUE_H
#include <sys/queue.h>
#else
#include "queue.h"
#endif
extern int yylineno;
extern char *yytext;
int
add_memcached_server (struct config_file *cf, char *str)
{
char *cur_tok, *err_str;
struct memcached_server *mc;
struct hostent *hent;
uint16_t port;
if (str == NULL) return 0;
cur_tok = strsep (&str, ":");
if (cur_tok == NULL || *cur_tok == '\0') return 0;
if(cf->memcached_servers_num == MAX_MEMCACHED_SERVERS) {
yywarn ("yyparse: maximum number of memcached servers is reached %d", MAX_MEMCACHED_SERVERS);
}
mc = &cf->memcached_servers[cf->memcached_servers_num];
if (mc == NULL) return 0;
/* cur_tok - server name, str - server port */
if (str == NULL) {
port = DEFAULT_MEMCACHED_PORT;
}
else {
port = (uint16_t)strtoul (str, &err_str, 10);
if (*err_str != '\0') {
return 0;
}
}
if (!inet_aton (cur_tok, &mc->addr)) {
/* Try to call gethostbyname */
hent = gethostbyname (cur_tok);
if (hent == NULL) {
return 0;
}
else {
memcpy((char *)&mc->addr, hent->h_addr, sizeof(struct in_addr));
}
}
mc->port = port;
cf->memcached_servers_num++;
return 1;
}
int
parse_bind_line (struct config_file *cf, char *str)
{
char *cur_tok, *err_str;
struct hostent *hent;
size_t s;
if (str == NULL) return 0;
cur_tok = strsep (&str, ":");
if (cur_tok[0] == '/' || cur_tok[0] == '.') {
cf->bind_host = strdup (cur_tok);
cf->bind_family = AF_UNIX;
return 1;
} else {
if (str == '\0') {
cf->bind_port = DEFAULT_BIND_PORT;
}
else {
cf->bind_port = (uint16_t)strtoul (str, &err_str, 10);
if (*err_str != '\0') {
return 0;
}
}
if (!inet_aton (cur_tok, &cf->bind_addr)) {
/* Try to call gethostbyname */
hent = gethostbyname (cur_tok);
if (hent == NULL) {
return 0;
}
else {
cf->bind_host = strdup (cur_tok);
memcpy((char *)&cf->bind_addr, hent->h_addr, sizeof(struct in_addr));
s = strlen (cur_tok) + 1;
}
}
cf->bind_family = AF_INET;
return 1;
}
return 0;
}
void
init_defaults (struct config_file *cfg)
{
cfg->memcached_error_time = DEFAULT_UPSTREAM_ERROR_TIME;
cfg->memcached_dead_time = DEFAULT_UPSTREAM_DEAD_TIME;
cfg->memcached_maxerrors = DEFAULT_UPSTREAM_MAXERRORS;
cfg->memcached_protocol = TCP_TEXT;
cfg->workers_number = DEFAULT_WORKERS_NUM;
cfg->modules_opts = g_hash_table_new (g_str_hash, g_str_equal);
cfg->variables = g_hash_table_new (g_str_hash, g_str_equal);
cfg->metrics = g_hash_table_new (g_str_hash, g_str_equal);
cfg->factors = g_hash_table_new (g_str_hash, g_str_equal);
cfg->c_modules = g_hash_table_new (g_str_hash, g_str_equal);
LIST_INIT (&cfg->perl_modules);
}
void
free_config (struct config_file *cfg)
{
g_hash_table_remove_all (cfg->modules_opts);
g_hash_table_unref (cfg->modules_opts);
g_hash_table_remove_all (cfg->variables);
g_hash_table_unref (cfg->variables);
g_hash_table_remove_all (cfg->metrics);
g_hash_table_unref (cfg->metrics);
g_hash_table_remove_all (cfg->factors);
g_hash_table_unref (cfg->factors);
g_hash_table_remove_all (cfg->c_modules);
g_hash_table_unref (cfg->c_modules);
memory_pool_delete (cfg->cfg_pool);
}
char*
get_module_opt (struct config_file *cfg, char *module_name, char *opt_name)
{
LIST_HEAD (moduleoptq, module_opt) *cur_module_opt = NULL;
struct module_opt *cur;
cur_module_opt = g_hash_table_lookup (cfg->modules_opts, module_name);
if (cur_module_opt == NULL) {
return NULL;
}
LIST_FOREACH (cur, cur_module_opt, next) {
if (strcmp (cur->param, opt_name) == 0) {
return cur->value;
}
}
return NULL;
}
size_t
parse_limit (const char *limit)
{
size_t result = 0;
char *err_str;
if (!limit || *limit == '\0') return 0;
result = strtoul (limit, &err_str, 10);
if (*err_str != '\0') {
/* Megabytes */
if (*err_str == 'm' || *err_str == 'M') {
result *= 1048576L;
}
/* Kilobytes */
else if (*err_str == 'k' || *err_str == 'K') {
result *= 1024;
}
/* Gigabytes */
else if (*err_str == 'g' || *err_str == 'G') {
result *= 1073741824L;
}
}
return result;
}
unsigned int
parse_seconds (const char *t)
{
unsigned int result = 0;
char *err_str;
if (!t || *t == '\0') return 0;
result = strtoul (t, &err_str, 10);
if (*err_str != '\0') {
/* Seconds */
if (*err_str == 's' || *err_str == 'S') {
result *= 1000;
}
}
return result;
}
char
parse_flag (const char *str)
{
if (!str || !*str) return -1;
if ((*str == 'Y' || *str == 'y') && *(str + 1) == '\0') {
return 1;
}
if ((*str == 'Y' || *str == 'y') &&
(*(str + 1) == 'E' || *(str + 1) == 'e') &&
(*(str + 2) == 'S' || *(str + 2) == 's') &&
*(str + 3) == '\0') {
return 1;
}
if ((*str == 'N' || *str == 'n') && *(str + 1) == '\0') {
return 0;
}
if ((*str == 'N' || *str == 'n') &&
(*(str + 1) == 'O' || *(str + 1) == 'o') &&
*(str + 2) == '\0') {
return 0;
}
return -1;
}
/*
* Try to substitute all variables in given string
* Return: newly allocated string with substituted variables (original string may be freed if variables are found)
*/
char *
substitute_variable (struct config_file *cfg, char *str, u_char recursive)
{
char *var, *new, *v_begin, *v_end;
size_t len;
while ((v_begin = strstr (str, "${")) != NULL) {
len = strlen (str);
*v_begin = '\0';
v_begin += 2;
if ((v_end = strstr (v_begin, "}")) == NULL) {
/* Not a variable, skip */
continue;
}
*v_end = '\0';
var = g_hash_table_lookup (cfg->variables, v_begin);
if (var == NULL) {
yywarn ("substitute_variable: variable %s is not defined", v_begin);
/* Substitute unknown variables with empty string */
var = "";
}
else if (recursive) {
var = substitute_variable (cfg, var, recursive);
}
/* Allocate new string */
new = memory_pool_alloc (cfg->cfg_pool, len - strlen (v_begin) + strlen (var) + 1);
snprintf (new, len - strlen (v_begin) + strlen (var) + 1, "%s%s%s",
str, var, v_end + 1);
str = new;
}
return str;
}
static void
substitute_module_variables (gpointer key, gpointer value, gpointer data)
{
struct config_file *cfg = (struct config_file *)data;
LIST_HEAD (moduleoptq, module_opt) *cur_module_opt = (struct moduleoptq *)value;
struct module_opt *cur, *tmp;
LIST_FOREACH_SAFE (cur, cur_module_opt, next, tmp) {
if (cur->value) {
cur->value = substitute_variable (cfg, cur->value, 0);
}
}
}
static void
substitute_all_variables (gpointer key, gpointer value, gpointer data)
{
struct config_file *cfg = (struct config_file *)data;
char *var;
var = value;
/* Do recursive substitution */
var = substitute_variable (cfg, var, 1);
}
static void
parse_filters_str (struct config_file *cfg, const char *str, enum script_type type)
{
gchar **strvec, **p;
struct filter *cur;
int i;
strvec = g_strsplit (str, ",", 0);
if (strvec == NULL) {
return;
}
p = strvec;
while (*p++) {
cur = NULL;
/* Search modules from known C modules */
for (i = 0; i < MODULES_NUM; i++) {
if (strcasecmp (modules[i].name, *p) == 0) {
cur = memory_pool_alloc (cfg->cfg_pool, sizeof (struct filter));
cur->type = C_FILTER;
switch (type) {
case SCRIPT_HEADER:
cur->func_name = memory_pool_strdup (cfg->cfg_pool, *p);
LIST_INSERT_HEAD (&cfg->header_filters, cur, next);
break;
case SCRIPT_MIME:
cur->func_name = memory_pool_strdup (cfg->cfg_pool, *p);
LIST_INSERT_HEAD (&cfg->mime_filters, cur, next);
break;
case SCRIPT_MESSAGE:
cur->func_name = memory_pool_strdup (cfg->cfg_pool, *p);
LIST_INSERT_HEAD (&cfg->message_filters, cur, next);
break;
case SCRIPT_URL:
cur->func_name = memory_pool_strdup (cfg->cfg_pool, *p);
LIST_INSERT_HEAD (&cfg->url_filters, cur, next);
break;
}
break;
}
}
if (cur != NULL) {
/* Go to next iteration */
continue;
}
cur = memory_pool_alloc (cfg->cfg_pool, sizeof (struct filter));
cur->type = PERL_FILTER;
switch (type) {
case SCRIPT_HEADER:
cur->func_name = memory_pool_strdup (cfg->cfg_pool, *p);
LIST_INSERT_HEAD (&cfg->header_filters, cur, next);
break;
case SCRIPT_MIME:
cur->func_name = memory_pool_strdup (cfg->cfg_pool, *p);
LIST_INSERT_HEAD (&cfg->mime_filters, cur, next);
break;
case SCRIPT_MESSAGE:
cur->func_name = memory_pool_strdup (cfg->cfg_pool, *p);
LIST_INSERT_HEAD (&cfg->message_filters, cur, next);
break;
case SCRIPT_URL:
cur->func_name = memory_pool_strdup (cfg->cfg_pool, *p);
LIST_INSERT_HEAD (&cfg->url_filters, cur, next);
break;
}
}
g_strfreev (strvec);
}
/*
* Substitute all variables in strings
*/
void
post_load_config (struct config_file *cfg)
{
g_hash_table_foreach (cfg->variables, substitute_all_variables, cfg);
g_hash_table_foreach (cfg->modules_opts, substitute_module_variables, cfg);
parse_filters_str (cfg, cfg->header_filters_str, SCRIPT_HEADER);
parse_filters_str (cfg, cfg->mime_filters_str, SCRIPT_MIME);
parse_filters_str (cfg, cfg->message_filters_str, SCRIPT_MESSAGE);
parse_filters_str (cfg, cfg->url_filters_str, SCRIPT_URL);
}
/*
* vi:ts=4
*/
|