ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/src/conf_lexer.l
Revision: 7436
Committed: Thu Mar 10 19:57:51 2016 UTC (8 years, 1 month ago) by michael
File size: 20022 byte(s)
Log Message:
- Change whowas system to use a linked list instead of othe this monolithic WHOWAS table
- Size of the whowas nick name history length is now configurable

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 *
4 * Copyright (c) 2000-2016 ircd-hybrid development team
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
19 * USA
20 */
21
22 /*! \file ircd_lexer.l
23 * \brief Scans the ircd configuration file for tokens.
24 * \version $Id$
25 */
26
27 %option case-insensitive
28 %option noyywrap
29 %option nounput
30 %option never-interactive
31
32 %{
33 #include "stdinc.h"
34 #include "irc_string.h"
35 #include "conf.h"
36 #include "conf_parser.h" /* autogenerated header file */
37 #include "log.h"
38
39 #undef YY_INPUT
40 #define YY_FATAL_ERROR(msg) conf_yy_fatal_error(msg)
41 #define YY_INPUT(buf,result,max_size) \
42 if (!(result = conf_yy_input(buf, max_size))) \
43 YY_FATAL_ERROR("input in flex scanner failed");
44 #define MAX_INCLUDE_DEPTH 10
45
46
47 unsigned int lineno = 1;
48 char linebuf[IRCD_BUFSIZE];
49 char conffilebuf[IRCD_BUFSIZE];
50
51 static int include_stack_ptr = 0;
52 static YY_BUFFER_STATE include_stack[MAX_INCLUDE_DEPTH];
53 static unsigned int lineno_stack[MAX_INCLUDE_DEPTH];
54 static FILE *inc_fbfile_in[MAX_INCLUDE_DEPTH];
55 static char conffile_stack[MAX_INCLUDE_DEPTH][IRCD_BUFSIZE];
56 static void ccomment(void);
57 static void cinclude(void);
58 static int ieof(void);
59
60 static int
61 conf_yy_input(char *lbuf, unsigned int max_size)
62 {
63 return !fgets(lbuf, max_size, conf_parser_ctx.conf_file) ? 0 : strlen(lbuf);
64 }
65
66 static int
67 conf_yy_fatal_error(const char *msg)
68 {
69 return 0;
70 }
71
72 %}
73
74 WS [[:blank:]]*
75 DIGIT [[:digit:]]+
76 COMMENT ("//"|"#").*
77 qstring \"[^\"\n]*[\"\n]
78 include \.include{WS}(\<.*\>|\".*\")
79
80 %%
81 {include} { cinclude(); }
82 "/*" { ccomment(); }
83 \n.* { strlcpy(linebuf, yytext + 1, sizeof(linebuf)); ++lineno; yyless(1); }
84 {WS} ;
85 {COMMENT} ;
86 {DIGIT} { yylval.number = atoi(yytext); return NUMBER; }
87 {qstring} { if (yytext[yyleng - 2] == '\\')
88 {
89 yyless(yyleng - 1); /* Return last quote */
90 yymore(); /* Append next string */
91 }
92 else
93 {
94 yylval.string = yytext + 1;
95
96 if (yylval.string[yyleng - 2] != '"')
97 ilog(LOG_TYPE_IRCD, "Unterminated character string");
98 else
99 {
100 unsigned int i = 0, j = 0;
101
102 yylval.string[yyleng - 2] = '\0'; /* Remove close quote */
103
104 for (; yylval.string[i] != '\0'; ++i, ++j)
105 {
106 if (yylval.string[i] != '\\')
107 yylval.string[j] = yylval.string[i];
108 else
109 {
110 ++i;
111
112 if (yylval.string[i] == '\0') /* XXX: should not happen */
113 {
114 ilog(LOG_TYPE_IRCD, "Unterminated character string");
115 break;
116 }
117
118 yylval.string[j] = yylval.string[i];
119 }
120 }
121
122 yylval.string[j] = '\0';
123 return QSTRING;
124 }
125 }
126 }
127
128 accept_password { return ACCEPT_PASSWORD; }
129 admin { return ADMIN; }
130 administrator { return ADMIN; }
131 aftype { return AFTYPE; }
132 all { return T_ALL; }
133 anti_nick_flood { return ANTI_NICK_FLOOD; }
134 anti_spam_exit_message_time { return ANTI_SPAM_EXIT_MESSAGE_TIME; }
135 auth { return IRCD_AUTH; }
136 autoconn { return AUTOCONN; }
137 away_count { return AWAY_COUNT; }
138 away_time { return AWAY_TIME; }
139 bots { return T_BOTS; }
140 caller_id_wait { return CALLER_ID_WAIT; }
141 callerid { return T_CALLERID; }
142 can_flood { return CAN_FLOOD; }
143 cconn { return T_CCONN; }
144 channel { return CHANNEL; }
145 check_cache { return CHECK_CACHE; }
146 cidr_bitlen_ipv4 { return CIDR_BITLEN_IPV4; }
147 cidr_bitlen_ipv6 { return CIDR_BITLEN_IPV6; }
148 class { return CLASS; }
149 close { return CLOSE; }
150 cluster { return T_CLUSTER; }
151 command { return T_COMMAND; }
152 connect { return CONNECT; }
153 connectfreq { return CONNECTFREQ; }
154 cycle_on_host_change { return CYCLE_ON_HOST_CHANGE; }
155 deaf { return T_DEAF; }
156 debug { return T_DEBUG; }
157 default_floodcount { return DEFAULT_FLOODCOUNT; }
158 default_join_flood_count { return DEFAULT_JOIN_FLOOD_COUNT; }
159 default_join_flood_time { return DEFAULT_JOIN_FLOOD_TIME; }
160 default_max_clients { return DEFAULT_MAX_CLIENTS; }
161 deny { return DENY; }
162 description { return DESCRIPTION; }
163 die { return DIE; }
164 disable_auth { return DISABLE_AUTH; }
165 disable_fake_channels { return DISABLE_FAKE_CHANNELS; }
166 disable_remote_commands { return DISABLE_REMOTE_COMMANDS; }
167 dline { return T_DLINE; }
168 dline_min_cidr { return DLINE_MIN_CIDR; }
169 dline_min_cidr6 { return DLINE_MIN_CIDR6; }
170 dots_in_ident { return DOTS_IN_IDENT; }
171 email { return EMAIL; }
172 encrypted { return ENCRYPTED; }
173 exceed_limit { return EXCEED_LIMIT; }
174 exempt { return EXEMPT; }
175 external { return T_EXTERNAL; }
176 failed_oper_notice { return FAILED_OPER_NOTICE; }
177 farconnect { return T_FARCONNECT; }
178 file { return T_FILE; }
179 flags { return IRCD_FLAGS; }
180 flatten_links { return FLATTEN_LINKS; }
181 flatten_links_delay { return FLATTEN_LINKS_DELAY; }
182 flatten_links_file { return FLATTEN_LINKS_FILE; }
183 full { return T_FULL; }
184 gecos { return GECOS; }
185 general { return GENERAL; }
186 kline_min_cidr { return KLINE_MIN_CIDR; }
187 kline_min_cidr6 { return KLINE_MIN_CIDR6; }
188 globops { return T_GLOBOPS; }
189 have_ident { return NEED_IDENT; }
190 hidden { return HIDDEN; }
191 hidden_name { return HIDDEN_NAME; }
192 hidechans { return HIDE_CHANS; }
193 hideidle { return HIDE_IDLE; }
194 hide_idle_from_opers { return HIDE_IDLE_FROM_OPERS; }
195 hide_server_ips { return HIDE_SERVER_IPS; }
196 hide_servers { return HIDE_SERVERS; }
197 hide_services { return HIDE_SERVICES; }
198 host { return HOST; }
199 hub { return HUB; }
200 hub_mask { return HUB_MASK; }
201 ignore_bogus_ts { return IGNORE_BOGUS_TS; }
202 invisible { return T_INVISIBLE; }
203 invisible_on_connect { return INVISIBLE_ON_CONNECT; }
204 invite_client_count { return INVITE_CLIENT_COUNT; }
205 invite_client_time { return INVITE_CLIENT_TIME; }
206 invite_delay_channel { return INVITE_DELAY_CHANNEL; }
207 ip { return IP; }
208 ipv4 { return T_IPV4; }
209 ipv6 { return T_IPV6; }
210 join { return JOIN; }
211 kill { return KILL; }
212 kill_chase_time_limit { return KILL_CHASE_TIME_LIMIT; }
213 kline { return KLINE; }
214 kline_exempt { return KLINE_EXEMPT; }
215 knock_client_count { return KNOCK_CLIENT_COUNT; }
216 knock_client_time { return KNOCK_CLIENT_TIME; }
217 knock_delay_channel { return KNOCK_DELAY_CHANNEL; }
218 leaf_mask { return LEAF_MASK; }
219 libgeoip_database_options { return LIBGEOIP_DATABASE_OPTIONS; }
220 libgeoip_ipv4_database_file { return LIBGEOIP_IPV4_DATABASE_FILE; }
221 libgeoip_ipv6_database_file { return LIBGEOIP_IPV6_DATABASE_FILE; }
222 listen { return LISTEN; }
223 locops { return T_LOCOPS; }
224 log { return T_LOG; }
225 mask { return MASK; }
226 masked { return TMASKED; }
227 max_accept { return MAX_ACCEPT; }
228 max_bans { return MAX_BANS; }
229 max_channels { return MAX_CHANNELS; }
230 max_global { return MAX_GLOBAL; }
231 max_ident { return MAX_IDENT; }
232 max_idle { return MAX_IDLE; }
233 max_local { return MAX_LOCAL; }
234 max_nick_changes { return MAX_NICK_CHANGES; }
235 max_nick_length { return MAX_NICK_LENGTH; }
236 max_nick_time { return MAX_NICK_TIME; }
237 max_number { return MAX_NUMBER; }
238 max_targets { return MAX_TARGETS; }
239 max_topic_length { return MAX_TOPIC_LENGTH; }
240 max_watch { return MAX_WATCH; }
241 memory_cache { return MEMORY_CACHE; }
242 min_idle { return MIN_IDLE; }
243 min_nonwildcard { return MIN_NONWILDCARD; }
244 min_nonwildcard_simple { return MIN_NONWILDCARD_SIMPLE; }
245 mmap_cache { return MMAP_CACHE; }
246 module { return MODULE; }
247 modules { return MODULES; }
248 motd { return MOTD; }
249 name { return NAME; }
250 nchange { return T_NCHANGE; }
251 need_ident { return NEED_IDENT; }
252 need_password { return NEED_PASSWORD; }
253 network_desc { return NETWORK_DESC; }
254 network_name { return NETWORK_NAME; }
255 nick { return NICK; }
256 no_oper_flood { return NO_OPER_FLOOD; }
257 no_tilde { return NO_TILDE; }
258 nononreg { return T_NONONREG; }
259 number_per_cidr { return NUMBER_PER_CIDR; }
260 number_per_ip { return NUMBER_PER_IP; }
261 oper { return OPERATOR; }
262 oper_only_umodes { return OPER_ONLY_UMODES; }
263 oper_umodes { return OPER_UMODES; }
264 operator { return OPERATOR; }
265 opers_bypass_callerid { return OPERS_BYPASS_CALLERID; }
266 opme { return T_OPME; }
267 pace_wait { return PACE_WAIT; }
268 pace_wait_simple { return PACE_WAIT_SIMPLE; }
269 passwd { return PASSWORD; }
270 password { return PASSWORD; }
271 path { return PATH; }
272 ping_cookie { return PING_COOKIE; }
273 ping_time { return PING_TIME; }
274 port { return PORT; }
275 prepend { return T_PREPEND; }
276 pseudo { return T_PSEUDO; }
277 quarantine { return RESV; }
278 random_idle { return RANDOM_IDLE; }
279 reason { return REASON; }
280 recvq { return T_RECVQ; }
281 redirport { return REDIRPORT; }
282 redirserv { return REDIRSERV; }
283 rehash { return REHASH; }
284 rej { return T_REJ; }
285 remote { return REMOTE; }
286 remoteban { return REMOTEBAN; }
287 restart { return T_RESTART; }
288 resv { return RESV; }
289 resv_exempt { return RESV_EXEMPT; }
290 rsa_private_key_file { return RSA_PRIVATE_KEY_FILE; }
291 send_password { return SEND_PASSWORD; }
292 sendq { return SENDQ; }
293 server { return T_SERVER; }
294 serverhide { return SERVERHIDE; }
295 serverinfo { return SERVERINFO; }
296 service { return T_SERVICE; }
297 servnotice { return T_SERVNOTICE; }
298 set { return T_SET; }
299 shared { return T_SHARED; }
300 short_motd { return SHORT_MOTD; }
301 sid { return IRCD_SID; }
302 size { return T_SIZE; }
303 skill { return T_SKILL; }
304 softcallerid { return T_SOFTCALLERID; }
305 spoof { return SPOOF; }
306 spoof_notice { return SPOOF_NOTICE; }
307 spy { return T_SPY; }
308 squit { return SQUIT; }
309 ssl { return T_SSL; }
310 ssl_certificate_file { return SSL_CERTIFICATE_FILE; }
311 ssl_certificate_fingerprint { return SSL_CERTIFICATE_FINGERPRINT; }
312 ssl_cipher_list { return T_SSL_CIPHER_LIST; }
313 ssl_connection_required { return SSL_CONNECTION_REQUIRED; }
314 ssl_dh_elliptic_curve { return SSL_DH_ELLIPTIC_CURVE; }
315 ssl_dh_param_file { return SSL_DH_PARAM_FILE; }
316 ssl_message_digest_algorithm { return SSL_MESSAGE_DIGEST_ALGORITHM; }
317 standard { return STANDARD; }
318 stats_e_disabled { return STATS_E_DISABLED; }
319 stats_i_oper_only { return STATS_I_OPER_ONLY; }
320 stats_k_oper_only { return STATS_K_OPER_ONLY; }
321 stats_m_oper_only { return STATS_M_OPER_ONLY; }
322 stats_o_oper_only { return STATS_O_OPER_ONLY; }
323 stats_P_oper_only { return STATS_P_OPER_ONLY; }
324 stats_u_oper_only { return STATS_U_OPER_ONLY; }
325 target { return T_TARGET; }
326 throttle_count { return THROTTLE_COUNT; }
327 throttle_time { return THROTTLE_TIME; }
328 tkline_expire_notices { return TKLINE_EXPIRE_NOTICES; }
329 ts_max_delta { return TS_MAX_DELTA; }
330 ts_warn_delta { return TS_WARN_DELTA; }
331 type { return TYPE; }
332 umodes { return T_UMODES; }
333 unauth { return T_UNAUTH; }
334 undline { return T_UNDLINE; }
335 unkline { return UNKLINE; }
336 unlimited { return T_UNLIMITED; }
337 unresv { return T_UNRESV; }
338 unxline { return T_UNXLINE; }
339 use_logging { return USE_LOGGING; }
340 user { return USER; }
341 vhost { return VHOST; }
342 vhost6 { return VHOST6; }
343 wallop { return T_WALLOP; }
344 wallops { return T_WALLOPS; }
345 warn_no_connect_block { return WARN_NO_CONNECT_BLOCK; }
346 webirc { return T_WEBIRC; }
347 whois { return WHOIS; }
348 whowas_history_length { return WHOWAS_HISTORY_LENGTH; }
349 xline { return XLINE; }
350 xline_exempt { return XLINE_EXEMPT; }
351
352 yes { yylval.number = 1; return TBOOL; }
353 no { yylval.number = 0; return TBOOL; }
354
355 years { return YEARS; }
356 year { return YEARS; }
357 months { return MONTHS; }
358 month { return MONTHS; }
359 weeks { return WEEKS; }
360 week { return WEEKS; }
361 days { return DAYS; }
362 day { return DAYS; }
363 hours { return HOURS; }
364 hour { return HOURS; }
365 minutes { return MINUTES; }
366 minute { return MINUTES; }
367 seconds { return SECONDS; }
368 second { return SECONDS; }
369
370 bytes { return BYTES; }
371 byte { return BYTES; }
372 kilobytes { return KBYTES; }
373 kilobyte { return KBYTES; }
374 kbytes { return KBYTES; }
375 kbyte { return KBYTES; }
376 kb { return KBYTES; }
377 megabytes { return MBYTES; }
378 megabyte { return MBYTES; }
379 mbytes { return MBYTES; }
380 mbyte { return MBYTES; }
381 mb { return MBYTES; }
382 \.\. { return TWODOTS; }
383
384 . { return yytext[0]; }
385 <<EOF>> { if (ieof()) yyterminate(); }
386
387 %%
388
389 /* C-comment ignoring routine -kre*/
390 static void
391 ccomment(void)
392 {
393 int c = 0;
394
395 /* log(L_NOTICE, "got comment"); */
396 while (1)
397 {
398 while ((c = input()) != '*' && c != EOF)
399 if (c == '\n')
400 ++lineno;
401
402 if (c == '*')
403 {
404 while ((c = input()) == '*')
405 /* Nothing */ ;
406 if (c == '/')
407 break;
408 else if (c == '\n')
409 ++lineno;
410 }
411
412 if (c == EOF)
413 {
414 YY_FATAL_ERROR("EOF in comment");
415 /* XXX hack alert this disables
416 * the stupid unused function warning
417 * gcc generates
418 */
419 if (1 == 0)
420 yy_fatal_error("EOF in comment");
421 break;
422 }
423 }
424 }
425
426 /* C-style .includes. This function will properly swap input conf buffers,
427 * and lineno -kre */
428 static void
429 cinclude(void)
430 {
431 char *p = NULL;
432
433 if ((p = strchr(yytext, '<')) == NULL)
434 *strchr(p = strchr(yytext, '"') + 1, '"') = '\0';
435 else
436 *strchr(++p, '>') = '\0';
437
438 /* log(L_NOTICE, "got include %s!", c); */
439
440 /* do stacking and co. */
441 if (include_stack_ptr >= MAX_INCLUDE_DEPTH)
442 ilog(LOG_TYPE_IRCD, "Includes nested too deep in %s", p);
443 else
444 {
445 FILE *tmp_fbfile_in = NULL;
446 char filenamebuf[IRCD_BUFSIZE];
447
448 if (*p == '/') /* if it is an absolute path */
449 snprintf(filenamebuf, sizeof(filenamebuf), "%s", p);
450 else
451 snprintf(filenamebuf, sizeof(filenamebuf), "%s/%s", ETCPATH, p);
452
453 tmp_fbfile_in = fopen(filenamebuf, "r");
454
455 if (tmp_fbfile_in == NULL)
456 {
457 ilog(LOG_TYPE_IRCD, "Unable to read configuration file '%s': %s",
458 filenamebuf, strerror(errno));
459 return;
460 }
461
462 lineno_stack[include_stack_ptr] = lineno;
463 lineno = 1;
464 inc_fbfile_in[include_stack_ptr] = conf_parser_ctx.conf_file;
465 strlcpy(conffile_stack[include_stack_ptr], conffilebuf, IRCD_BUFSIZE);
466 include_stack[include_stack_ptr++] = YY_CURRENT_BUFFER;
467 conf_parser_ctx.conf_file = tmp_fbfile_in;
468 snprintf(conffilebuf, sizeof(conffilebuf), "%s", filenamebuf);
469 yy_switch_to_buffer(yy_create_buffer(yyin, YY_BUF_SIZE));
470 }
471 }
472
473 /* This is function that will be called on EOF in conf file. It will
474 * apropriately close conf if it not main conf and swap input buffers -kre
475 * */
476 static int
477 ieof(void)
478 {
479 /* log(L_NOTICE, "return from include stack!"); */
480 if (include_stack_ptr)
481 fclose(conf_parser_ctx.conf_file);
482 if (--include_stack_ptr < 0)
483 {
484 /* log(L_NOTICE, "terminating lexer"); */
485 /* We will now exit the lexer - restore init values if we get /rehash
486 * later and reenter lexer -kre */
487 include_stack_ptr = 0;
488 lineno = 1;
489 return 1;
490 }
491
492 /* switch buffer */
493 /* log(L_NOTICE, "deleting include_stack_ptr=%d", include_stack_ptr); */
494 yy_delete_buffer(YY_CURRENT_BUFFER);
495 lineno = lineno_stack[include_stack_ptr];
496 conf_parser_ctx.conf_file = inc_fbfile_in[include_stack_ptr];
497 strlcpy(conffilebuf, conffile_stack[include_stack_ptr], sizeof(conffilebuf));
498 yy_switch_to_buffer(include_stack[include_stack_ptr]);
499
500 return 0;
501 }

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision