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
|
%x incl
%x module_lex_state
%x lua_lex_state
%x worker_lex_state
%x classifier_lex_state
%{
#define NO_GMIME
#include "config.h"
#include "cfg_file.h"
#include "cfg_yacc.h"
#ifdef WITH_LUA
extern void add_luabuf (const char *line);
#else
#define add_luabuf(x) yyerror ("lua support diabled")
#endif
#define ECHO do {} while(0)
#define MAX_INCLUDE_DEPTH 10
YY_BUFFER_STATE include_stack[MAX_INCLUDE_DEPTH];
int line_stack[MAX_INCLUDE_DEPTH];
int include_stack_ptr = 0;
int nested_depth = 0;
extern struct config_file *cfg;
%}
%option noyywrap
%option yylineno
%%
[ \t]*#.* /* ignore comments */;
.include BEGIN(incl);
.module BEGIN(module_lex_state);
.lua BEGIN(lua_lex_state);
worker BEGIN(worker_lex_state); return WORKER;
composites BEGIN(module_lex_state);return COMPOSITES;
tempdir return TEMPDIR;
pidfile return PIDFILE;
view return VIEW;
ip return IP;
from return FROM;
symbols return SYMBOLS;
skip_check return SKIP_CHECK;
error_time return ERROR_TIME;
dead_time return DEAD_TIME;
maxerrors return MAXERRORS;
reconnect_timeout return RECONNECT_TIMEOUT;
connect_timeout return CONNECT_TIMEOUT;
protocol return PROTOCOL;
memcached return MEMCACHED;
servers return SERVERS;
modules return MODULES;
module_path return MODULE_PATH;
settings return SETTINGS;
user_settings return USER_SETTINGS;
domain_settings return DOMAIN_SETTINGS;
filters return FILTERS;
factors return FACTORS;
metric return METRIC;
name return NAME;
required_score return REQUIRED_SCORE;
reject_score return REJECT_SCORE;
function return FUNCTION;
cache_file return CACHE_FILE;
control return CONTROL;
password return PASSWORD;
lmtp return LMTP;
raw_mode return RAW_MODE;
enabled return ENABLED;
delivery return DELIVERY;
agent return AGENT;
classifier BEGIN(classifier_lex_state); return CLASSIFIER;
logging return LOGGING;
log_type return LOG_TYPE;
console return LOG_TYPE_CONSOLE;
syslog return LOG_TYPE_SYSLOG;
file return LOG_TYPE_FILE;
log_level return LOG_LEVEL;
DEBUG return LOG_LEVEL_DEBUG;
INFO return LOG_LEVEL_INFO;
WARNING return LOG_LEVEL_WARNING;
ERROR return LOG_LEVEL_ERROR;
log_facility return LOG_FACILITY;
log_file return LOG_FILENAME;
profile_file return PROFILE_FILE;
statfile_pool_size return STATFILE_POOL_SIZE;
\{ return OBRACE;
\} return EBRACE;
; return SEMICOLON;
, return COMMA;
= return EQSIGN;
yes|YES|no|NO|[yY]|[nN] yylval.flag=parse_flag(yytext); return FLAG;
\n /* ignore EOL */;
[ \t]+ /* ignore whitespace */;
\".+[^\\]\" yylval.string=strdup(yytext + 1); yylval.string[strlen(yylval.string) - 1] = '\0'; unescape_quotes(yylval.string); return QUOTEDSTRING;
\" return QUOTE;
\$[a-zA-Z_][a-zA-Z0-9_]+ yylval.string=strdup(yytext + 1); return VARIABLE;
[0-9]+ yylval.number=strtol(yytext, NULL, 10); return NUMBER;
-?[0-9]+\.?[0-9]* yylval.fract=strtod(yytext, NULL); return FRACT;
[0-9]+[kKmMgG]? yylval.limit=parse_limit(yytext); return SIZELIMIT;
[0-9]+[sS]|[0-9]+[mM][sS] yylval.seconds=parse_seconds(yytext); return SECONDS;
[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3} yylval.string=strdup(yytext); return IPADDR;
[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\/[0-9]{1,2} yylval.string=strdup(yytext); return IPNETWORK;
[*a-zA-Z0-9.-]+:[0-9]{1,5} yylval.string=strdup(yytext); return HOSTPORT;
[a-zA-Z<][a-zA-Z@+>_-]* yylval.string=strdup(yytext); return STRING;
\/[^/\n]+\/ yylval.string=strdup(yytext); return REGEXP;
[a-zA-Z0-9].[a-zA-Z0-9\/.-]+ yylval.string=strdup(yytext); return DOMAINNAME;
<incl>[ \t]* /* eat the whitespace */
<incl>[^ \t\n]+ { /* got the include file name */
/* got the include file name */
if ( include_stack_ptr >= MAX_INCLUDE_DEPTH ) {
yyerror ("yylex: includes nested too deeply" );
return -1;
}
line_stack[include_stack_ptr] = yylineno;
include_stack[include_stack_ptr++] = YY_CURRENT_BUFFER;
yylineno = 1;
yyin = fopen (yytext, "r");
if (!yyin) {
yyerror ("yylex: cannot open include file");
return -1;
}
yy_switch_to_buffer (yy_create_buffer (yyin, YY_BUF_SIZE));
BEGIN(INITIAL);
}
<<EOF>> {
if ( --include_stack_ptr < 0 ) {
include_stack_ptr = 0;
yylineno = 1;
post_load_config (cfg);
yyterminate ();
}
else {
yy_delete_buffer (YY_CURRENT_BUFFER);
yy_switch_to_buffer (include_stack[include_stack_ptr] );
yylineno = line_stack[include_stack_ptr];
}
}
<module_lex_state>\n /* ignore EOL */;
<module_lex_state>[ \t]+ /* ignore whitespace */;
<module_lex_state>[ \t]*#.* /* ignore comments */;
<module_lex_state>\'[a-zA-Z0-9_-]+\' yylval.string=strdup(yytext + 1); yylval.string[strlen(yylval.string) - 1] = '\0'; return MODULE_OPT;
<module_lex_state>\{ nested_depth ++; return OBRACE;
<module_lex_state>\} if (--nested_depth == 0) { BEGIN(INITIAL); } return EBRACE;
<module_lex_state>\; return SEMICOLON;
<module_lex_state>= return EQSIGN;
<module_lex_state>\$[a-zA-Z_][a-zA-Z0-9_]+ yylval.string=strdup(yytext + 1); return VARIABLE;
<module_lex_state>[a-zA-Z0-9_%-]+ yylval.string=strdup(yytext); return PARAM;
<module_lex_state>\".+[^\\]\" yylval.string=strdup(yytext + 1); yylval.string[strlen(yylval.string) - 1] = '\0'; unescape_quotes(yylval.string); return QUOTEDSTRING;
<worker_lex_state>\n /* ignore EOL */;
<worker_lex_state>[ \t]+ /* ignore whitespace */;
<worker_lex_state>[ \t]*#.* /* ignore comments */;
<worker_lex_state>\{ nested_depth ++; return OBRACE;
<worker_lex_state>\} if (--nested_depth == 0) { BEGIN(INITIAL); } return EBRACE;
<worker_lex_state>\; return SEMICOLON;
<worker_lex_state>= return EQSIGN;
<worker_lex_state>type return TYPE;
<worker_lex_state>bind_socket return BINDSOCK;
<worker_lex_state>count return COUNT;
<worker_lex_state>[0-9]+ yylval.number=strtol(yytext, NULL, 10); return NUMBER;
<worker_lex_state>[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3} yylval.string=strdup(yytext); return IPADDR;
<worker_lex_state>[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\/[0-9]{1,2} yylval.string=strdup(yytext); return IPNETWORK;
<worker_lex_state>[*a-zA-Z0-9.-]+:[0-9]{1,5} yylval.string=strdup(yytext); return HOSTPORT;
<worker_lex_state>[a-zA-Z<][a-zA-Z@+>_-]* yylval.string=strdup(yytext); return STRING;
<worker_lex_state>\$[a-zA-Z_][a-zA-Z0-9_]+ yylval.string=strdup(yytext + 1); return VARIABLE;
<worker_lex_state>\".+[^\\]\" yylval.string=strdup(yytext + 1); yylval.string[strlen(yylval.string) - 1] = '\0'; unescape_quotes(yylval.string); return QUOTEDSTRING;
<classifier_lex_state>\n /* ignore EOL */;
<classifier_lex_state>[ \t]+ /* ignore whitespace */;
<classifier_lex_state>[ \t]*#.* /* ignore comments */;
<classifier_lex_state>\{ nested_depth ++; return OBRACE;
<classifier_lex_state>\} if (--nested_depth == 0) { BEGIN(INITIAL); } return EBRACE;
<classifier_lex_state>\; return SEMICOLON;
<classifier_lex_state>= return EQSIGN;
<classifier_lex_state>type return TYPE;
<classifier_lex_state>bind_socket return BINDSOCK;
<classifier_lex_state>count return COUNT;
<classifier_lex_state>statfile return STATFILE;
<classifier_lex_state>symbol return SYMBOL;
<classifier_lex_state>path return PATH;
<classifier_lex_state>size return SIZE;
<classifier_lex_state>tokenizer return TOKENIZER;
<classifier_lex_state>section return SECTION;
<classifier_lex_state>autolearn return AUTOLEARN;
<classifier_lex_state>min_mark return MIN_MARK;
<classifier_lex_state>max_mark return MAX_MARK;
<classifier_lex_state>[0-9]+ yylval.number=strtol(yytext, NULL, 10); return NUMBER;
<classifier_lex_state>-?[0-9]+\.?[0-9]* yylval.fract=strtod(yytext, NULL); return FRACT;
<classifier_lex_state>[0-9]+[kKmMgG]? yylval.limit=parse_limit(yytext); return SIZELIMIT;
<classifier_lex_state>\$[a-zA-Z_][a-zA-Z0-9_]+ yylval.string=strdup(yytext + 1); return VARIABLE;
<classifier_lex_state>[a-zA-Z0-9_%-]+ yylval.string=strdup(yytext); return PARAM;
<classifier_lex_state>\".+[^\\]\" yylval.string=strdup(yytext + 1); yylval.string[strlen(yylval.string) - 1] = '\0'; unescape_quotes(yylval.string); return QUOTEDSTRING;
<lua_lex_state>\n /* ignore EOL */;
<lua_lex_state>[ \t]+ /* ignore whitespace */;
<lua_lex_state>[ \t]*#.* /* ignore comments */;
<lua_lex_state>^.endlua$ BEGIN(INITIAL);
<lua_lex_state>.* add_luabuf(yytext); return LUACODE;
%%
/*
* vi:ts=4
*/
|