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
|
#include <sys/types.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 "config.h"
#ifndef HAVE_OWN_QUEUE_H
#include <sys/queue.h>
#else
#include "queue.h"
#endif
#include "cfg_file.h"
#include "memcached.h"
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;
LIST_INIT (&cfg->filters);
LIST_INIT (&cfg->perl_modules);
LIST_INIT (&cfg->c_modules);
}
void
free_config (struct config_file *cfg)
{
struct filter_chain *chain, *tmp_chain;
struct script_param *param, *tmp_param;
struct perl_module *module, *tmp_module;
struct c_module *cmodule, *tmp_cmodule;
if (cfg->pid_file) {
g_free (cfg->pid_file);
}
if (cfg->temp_dir) {
g_free (cfg->temp_dir);
}
if (cfg->bind_host) {
g_free (cfg->bind_host);
}
LIST_FOREACH_SAFE (chain, &cfg->filters, next, tmp_chain) {
LIST_FOREACH_SAFE (param, chain->scripts, next, tmp_param) {
if (param->symbol) {
free (param->symbol);
}
if (param->function) {
free (param->function);
}
LIST_REMOVE (param, next);
free (param);
}
LIST_REMOVE (chain, next);
free (chain);
}
LIST_FOREACH_SAFE (module, &cfg->perl_modules, next, tmp_module) {
if (module->path) {
free (module->path);
}
LIST_REMOVE (module, next);
free (module);
}
LIST_FOREACH_SAFE (cmodule, &cfg->c_modules, next, tmp_cmodule) {
if (cmodule->ctx) {
free (cmodule->ctx);
}
free (cmodule);
}
}
int
parse_script (char *str, struct script_param *param, enum script_type type)
{
char *cur_tok;
bzero (param, sizeof (struct script_param));
param->type = type;
/* symbol:path:function -> cur_tok - symbol, str -> function */
cur_tok = strsep (&str, ":");
if (str == NULL || cur_tok == NULL || *cur_tok == '\0') return -1;
param->symbol = strdup (cur_tok);
param->function = strdup (str);
return 0;
}
/*
* vi:ts=4
*/
|