ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid-7.2/src/ircd_lexer.l
Revision: 967
Committed: Sun Aug 2 18:05:28 2009 UTC (14 years, 8 months ago) by michael
File size: 16821 byte(s)
Log Message:
- added ssl_server_protocol configuration option to servinfo{}.
  valid flags are 'sslv3' and 'tlsv1'

File Contents

# User Rev Content
1 adx 30 /*
2     * ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
3     * ircd_lexer.l: Scans the ircd configuration file for tokens.
4     *
5     * Copyright (C) 2002 by the past and present ircd coders, and others.
6     *
7     * This program is free software; you can redistribute it and/or modify
8     * it under the terms of the GNU General Public License as published by
9     * the Free Software Foundation; either version 2 of the License, or
10     * (at your option) any later version.
11     *
12     * This program is distributed in the hope that it will be useful,
13     * but WITHOUT ANY WARRANTY; without even the implied warranty of
14     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15     * GNU General Public License for more details.
16     *
17     * You should have received a copy of the GNU General Public License
18     * along with this program; if not, write to the Free Software
19     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20     * USA
21     *
22 knight 31 * $Id$
23 adx 30 */
24    
25     %option case-insensitive
26     %option noyywrap
27     %option nounput
28     %option never-interactive
29    
30     %{
31     #include "stdinc.h"
32     #include "tools.h"
33     #include "irc_string.h"
34     #include "common.h"
35     #include "s_conf.h"
36     #include "memory.h"
37     #include "hostmask.h"
38     #include "s_log.h"
39    
40 stu 908 #include "ircd_parser.h"
41 adx 30
42     #undef YY_INPUT
43     #define YY_FATAL_ERROR(msg) conf_yy_fatal_error(msg)
44     #define YY_INPUT(buf,result,max_size) \
45 michael 967 if (!(result = conf_fbgets(buf, max_size, conf_parser_ctx.conf_file))) \
46 adx 30 YY_FATAL_ERROR("input in flex scanner failed");
47     #define MAX_INCLUDE_DEPTH 10
48    
49    
50     unsigned int lineno = 1;
51     char linebuf[IRCD_BUFSIZE];
52     char conffilebuf[IRCD_BUFSIZE];
53    
54     static int include_stack_ptr = 0;
55     static YY_BUFFER_STATE include_stack[MAX_INCLUDE_DEPTH];
56     static unsigned int lineno_stack[MAX_INCLUDE_DEPTH];
57     static FBFILE *inc_fbfile_in[MAX_INCLUDE_DEPTH];
58     static char conffile_stack[MAX_INCLUDE_DEPTH][IRCD_BUFSIZE];
59     static void ccomment(void);
60     static void cinclude(void);
61     static int ieof(void);
62     %}
63    
64     WS [[:blank:]]*
65     DIGIT [[:digit:]]+
66     COMMENT ("//"|"#").*
67     qstring \"[^\"\n]*[\"\n]
68     include \.include{WS}(\<.*\>|\".*\")
69    
70     %%
71     {include} { cinclude(); }
72     "/*" { ccomment(); }
73    
74     \n.* { strcpy(linebuf, yytext+1); ++lineno; yyless(1); }
75    
76     {WS} ;
77     {COMMENT} ;
78    
79     {DIGIT} { yylval.number = atoi(yytext); return NUMBER; }
80    
81     {qstring} { if (yytext[yyleng-2] == '\\')
82     {
83     yyless(yyleng-1); /* return last quote */
84     yymore(); /* append next string */
85     }
86     else
87     {
88     yylval.string = yytext+1;
89     if(yylval.string[yyleng-2] != '"')
90     ilog(L_ERROR, "Unterminated character string");
91     else
92     {
93     int i,j;
94    
95     yylval.string[yyleng-2] = '\0'; /* remove close
96     * quote
97     */
98    
99     for (j=i=0 ;yylval.string[i] != '\0'; i++,j++)
100     {
101     if (yylval.string[i] != '\\')
102     {
103     yylval.string[j] = yylval.string[i];
104     }
105     else
106     {
107     i++;
108     if (yylval.string[i] == '\0') /* XXX
109     * should not
110     * happen
111     */
112     {
113     ilog(L_ERROR,
114     "Unterminated character string");
115     break;
116     }
117     yylval.string[j] = yylval.string[i];
118     }
119     }
120     yylval.string[j] = '\0';
121     return QSTRING;
122     }
123     }
124     }
125    
126     ~ { return NOT; }
127     accept_password { return ACCEPT_PASSWORD; }
128     action { return ACTION; }
129     admin { return ADMIN; }
130     administrator { return ADMIN; }
131     aftype { return AFTYPE; }
132     all { return T_ALL; }
133     allow { return T_ALLOW; }
134     auth { return IRCD_AUTH; }
135     autoconn { return AUTOCONN; }
136     block { return T_BLOCK; }
137     burst_away { return BURST_AWAY; }
138     burst_topicwho { return BURST_TOPICWHO; }
139     can_flood { return CAN_FLOOD; }
140     can_idle { return CAN_IDLE; }
141     caller_id_wait { return CALLER_ID_WAIT; }
142     opers_bypass_callerid { return OPERS_BYPASS_CALLERID; }
143     channel { return CHANNEL; }
144     cidr_bitlen_ipv4 { return CIDR_BITLEN_IPV4; }
145     cidr_bitlen_ipv6 { return CIDR_BITLEN_IPV6; }
146     cipher_preference { return CIPHER_PREFERENCE; }
147     class { return CLASS; }
148     client_flood { return T_CLIENT_FLOOD; }
149     cluster { return T_CLUSTER; }
150     compressed { return COMPRESSED; }
151     compression_level { return COMPRESSION_LEVEL; }
152     connect { return CONNECT; }
153     connectfreq { return CONNECTFREQ; }
154     cryptlink { return CRYPTLINK; }
155     default_cipher_preference { return DEFAULT_CIPHER_PREFERENCE; }
156     default_floodcount { return DEFAULT_FLOODCOUNT; }
157     default_split_server_count { return DEFAULT_SPLIT_SERVER_COUNT; }
158     default_split_user_count { return DEFAULT_SPLIT_USER_COUNT; }
159     deny { return DENY; }
160     description { return DESCRIPTION; }
161     die { return DIE; }
162     disable_auth { return DISABLE_AUTH; }
163 michael 632 disable_fake_channels { return DISABLE_FAKE_CHANNELS; }
164 adx 30 disable_hidden { return DISABLE_HIDDEN; }
165     disable_local_channels { return DISABLE_LOCAL_CHANNELS; }
166     disable_remote_commands { return DISABLE_REMOTE_COMMANDS; }
167     dot_in_ip6_addr { return DOT_IN_IP6_ADDR; }
168     dots_in_ident { return DOTS_IN_IDENT; }
169     duration { return DURATION; }
170     egdpool_path { return EGDPOOL_PATH; }
171     email { return EMAIL; }
172     enable { return ENABLE; }
173     encrypted { return ENCRYPTED; }
174     exceed_limit { return EXCEED_LIMIT; }
175     exempt { return EXEMPT; }
176     fakename { return FAKENAME; }
177     flags { return IRCD_FLAGS; }
178     flatten_links { return FLATTEN_LINKS; }
179     fglinelog { return FGLINELOG; }
180     fname_glinelog { return FGLINELOG; }
181     fkilllog { return FKILLLOG; }
182     fioerrlog { return FIOERRLOG; }
183     fname_ioerrlog { return FIOERRLOG; }
184     fname_killlog { return FKILLLOG; }
185     fklinelog { return FKLINELOG; }
186     fname_klinelog { return FKLINELOG; }
187     ffailed_operlog { return FFAILED_OPERLOG; }
188     fname_operlog { return FOPERLOG; }
189     foperlog { return FOPERLOG; }
190     fname_userlog { return FUSERLOG; }
191     fuserlog { return FUSERLOG; }
192     gecos { return GECOS; }
193     general { return GENERAL; }
194     gline { return GLINE; }
195     glines { return GLINES; }
196     gline_exempt { return GLINE_EXEMPT; }
197     gline_min_cidr { return GLINE_MIN_CIDR; }
198     gline_min_cidr6 { return GLINE_MIN_CIDR6; }
199     global_kill { return GLOBAL_KILL; }
200     have_ident { return NEED_IDENT; }
201     need_ident { return NEED_IDENT; }
202     havent_read_conf { return HAVENT_READ_CONF; }
203     hidden { return HIDDEN; }
204     hidden_admin { return HIDDEN_ADMIN; }
205     hidden_name { return HIDDEN_NAME; }
206     hidden_oper { return HIDDEN_OPER; }
207     hide_server_ips { return HIDE_SERVER_IPS; }
208     hide_servers { return HIDE_SERVERS; }
209     hide_spoof_ips { return HIDE_SPOOF_IPS; }
210     host { return HOST; }
211     hub { return HUB; }
212     hub_mask { return HUB_MASK; }
213     idletime { return IDLETIME; }
214     ignore_bogus_ts { return IGNORE_BOGUS_TS; }
215     invisible_on_connect { return INVISIBLE_ON_CONNECT; }
216     ip { return IP; }
217     ipv4 { return T_IPV4; }
218     ipv6 { return T_IPV6; }
219     join_flood_count { return JOIN_FLOOD_COUNT; }
220     join_flood_time { return JOIN_FLOOD_TIME; }
221     kill { return KILL; }
222     kill_chase_time_limit { return KILL_CHASE_TIME_LIMIT; }
223     kline { return KLINE; }
224     kline_exempt { return KLINE_EXEMPT; }
225     l_crit { return T_L_CRIT; }
226     l_debug { return T_L_DEBUG; }
227     l_error { return T_L_ERROR; }
228     l_info { return T_L_INFO; }
229     l_notice { return T_L_NOTICE; }
230     l_trace { return T_L_TRACE; }
231     l_warn { return T_L_WARN; }
232     leaf_mask { return LEAF_MASK; }
233     listen { return LISTEN; }
234     log_level { return LOG_LEVEL; }
235     log { return LOGGING; }
236     logging { return LOGGING; }
237     logpath { return T_LOGPATH; }
238     masked { return TMASKED; }
239     max_clients { return T_MAX_CLIENTS; }
240     max_ident { return MAX_IDENT; }
241     max_local { return MAX_LOCAL; }
242     max_global { return MAX_GLOBAL; }
243     max_number { return MAX_NUMBER; }
244 michael 876 max_watch { return MAX_WATCH; }
245 adx 30 message_locale { return MESSAGE_LOCALE; }
246     min_nonwildcard { return MIN_NONWILDCARD; }
247     min_nonwildcard_simple { return MIN_NONWILDCARD_SIMPLE; }
248     name { return NAME; }
249     need_password { return NEED_PASSWORD; }
250     network_desc { return NETWORK_DESC; }
251     network_name { return NETWORK_NAME; }
252     nick { return NICK; }
253     nick_changes { return NICK_CHANGES; }
254     no { yylval.number = NO; return TBOOL; }
255     no_create_on_split { return NO_CREATE_ON_SPLIT; }
256     no_join_on_split { return NO_JOIN_ON_SPLIT; }
257     no_oper_flood { return NO_OPER_FLOOD; }
258     no_tilde { return NO_TILDE; }
259     number_per_cidr { return NUMBER_PER_CIDR; }
260     number_per_ip { return NUMBER_PER_IP; }
261     oper { return OPERATOR; }
262     oper_log { return OPER_LOG; }
263     oper_pass_resv { return OPER_PASS_RESV; }
264     operator { return OPERATOR; }
265     passwd { return PASSWORD; }
266     password { return PASSWORD; }
267     ping_cookie { return PING_COOKIE; }
268     ping_time { return PING_TIME; }
269     ping_warning { return PING_WARNING; }
270     port { return PORT; }
271     quarantine { return RESV; }
272     quiet_on_ban { return QUIET_ON_BAN; }
273     reason { return REASON; }
274     redirport { return REDIRPORT; }
275     redirserv { return REDIRSERV; }
276     regex { return REGEX_T; }
277     rehash { return REHASH; }
278     reject { return T_REJECT; }
279     reject_hold_time { return TREJECT_HOLD_TIME; }
280     remote { return REMOTE; }
281     remoteban { return REMOTEBAN; }
282     restrict_channels { return RESTRICT_CHANNELS; }
283     resv { return RESV; }
284     resv_exempt { return RESV_EXEMPT; }
285     rsa_private_key_file { return RSA_PRIVATE_KEY_FILE; }
286     rsa_public_key_file { return RSA_PUBLIC_KEY_FILE; }
287     ssl { return T_SSL; }
288     ssl_certificate_file { return SSL_CERTIFICATE_FILE; }
289 michael 967 ssl_server_protocol { return T_SSL_CONNECTION_METHOD; }
290     sslv3 { return T_SSLV3; }
291     tlsv1 { return T_TLSV1; }
292 adx 30 send_password { return SEND_PASSWORD; }
293     sendq { return SENDQ; }
294 michael 900 server { return T_SERVER; }
295 adx 30 serverhide { return SERVERHIDE; }
296     serverinfo { return SERVERINFO; }
297     servlink_path { return SERVLINK_PATH; }
298     shared { return T_SHARED; }
299     short_motd { return SHORT_MOTD; }
300     sid { return IRCD_SID; }
301     silent { return SILENT; }
302     spoof { return SPOOF; }
303     spoof_notice { return SPOOF_NOTICE; }
304     tkline_expire_notices { return TKLINE_EXPIRE_NOTICES; }
305     type { return TYPE; }
306     true_no_oper_flood { return TRUE_NO_OPER_FLOOD; }
307 michael 56 umodes { return T_UMODES; }
308 adx 30 unkline { return UNKLINE; }
309     use_egd { return USE_EGD; }
310     use_except { return USE_EXCEPT; }
311     use_invex { return USE_INVEX; }
312     use_knock { return USE_KNOCK; }
313     use_logging { return USE_LOGGING; }
314     use_whois_actually { return USE_WHOIS_ACTUALLY; }
315     throttle_time { return THROTTLE_TIME; }
316     user { return USER; }
317     tkline { return TKLINE; }
318     txline { return TXLINE; }
319     tresv { return TRESV; }
320     vhost { return VHOST; }
321     vhost6 { return VHOST6; }
322     warn { return WARN; }
323     xline { return XLINE; }
324     yes { yylval.number = YES; return TBOOL; }
325    
326     failed_oper_notice { return FAILED_OPER_NOTICE; }
327     max_accept { return MAX_ACCEPT; }
328     max_nick_changes { return MAX_NICK_CHANGES; }
329     max_chans_per_user { return MAX_CHANS_PER_USER; }
330     max_nick_time { return MAX_NICK_TIME; }
331     anti_nick_flood { return ANTI_NICK_FLOOD; }
332     anti_spam_exit_message_time { return ANTI_SPAM_EXIT_MESSAGE_TIME; }
333     ts_max_delta { return TS_MAX_DELTA; }
334     ts_warn_delta { return TS_WARN_DELTA; }
335     links_delay { return LINKS_DELAY; }
336     kline_reason { return KLINE_REASON; }
337     kline_with_reason { return KLINE_WITH_REASON; }
338     warn_no_nline { return WARN_NO_NLINE; }
339    
340 michael 584 stats_e_disabled { return STATS_E_DISABLED; }
341 adx 30 stats_o_oper_only { return STATS_O_OPER_ONLY; }
342     stats_k_oper_only { return STATS_K_OPER_ONLY; }
343     stats_i_oper_only { return STATS_I_OPER_ONLY; }
344     stats_P_oper_only { return STATS_P_OPER_ONLY; }
345     pace_wait { return PACE_WAIT; }
346     pace_wait_simple { return PACE_WAIT_SIMPLE; }
347     knock_delay { return KNOCK_DELAY; }
348     knock_delay_channel { return KNOCK_DELAY_CHANNEL; }
349     max_bans { return MAX_BANS; }
350     modules { return MODULES; }
351     module { return MODULE; }
352     path { return PATH; }
353     max_targets { return MAX_TARGETS; }
354    
355     unxline { return T_UNXLINE; }
356     unresv { return T_UNRESV; }
357    
358     oper_only_umodes { return OPER_ONLY_UMODES; }
359     oper_umodes { return OPER_UMODES; }
360     bots { return T_BOTS; }
361     cconn { return T_CCONN; }
362 db 849 cconn_full { return T_CCONN_FULL; }
363 adx 30 deaf { return T_DEAF; }
364     debug { return T_DEBUG; }
365     full { return T_FULL; }
366     skill { return T_SKILL; }
367     nchange { return T_NCHANGE; }
368     rej { return T_REJ; }
369     unauth { return T_UNAUTH; }
370     spy { return T_SPY; }
371     external { return T_EXTERNAL; }
372     operwall { return T_OPERWALL; }
373     servnotice { return T_SERVNOTICE; }
374     invisible { return T_INVISIBLE; }
375     wallop { return T_WALLOP; }
376     callerid { return T_CALLERID; }
377     softcallerid { return T_SOFTCALLERID; }
378     drone { return T_DRONE; }
379     locops { return T_LOCOPS; }
380     topicburst { return TOPICBURST; }
381    
382     weeks { return WEEKS; }
383     week { return WEEKS; }
384     days { return DAYS; }
385     day { return DAYS; }
386     hours { return HOURS; }
387     hour { return HOURS; }
388     minutes { return MINUTES; }
389     minute { return MINUTES; }
390     seconds { return SECONDS; }
391     second { return SECONDS; }
392    
393     bytes { return BYTES; }
394     byte { return BYTES; }
395     kilobytes { return KBYTES; }
396     kilobyte { return KBYTES; }
397     kbytes { return KBYTES; }
398     kbyte { return KBYTES; }
399     kb { return KBYTES; }
400     megabytes { return MBYTES; }
401     megabyte { return MBYTES; }
402     mbytes { return MBYTES; }
403     mbyte { return MBYTES; }
404     mb { return MBYTES; }
405     gigabytes { return GBYTES; }
406     gigabyte { return GBYTES; }
407     gbytes { return GBYTES; }
408     gbyte { return GBYTES; }
409     gb { return GBYTES; }
410     terabytes { return TBYTES; }
411     terabyte { return TBYTES; }
412     tbytes { return TBYTES; }
413     tbyte { return TBYTES; }
414     tb { return TBYTES; }
415     \.\. { return TWODOTS; }
416    
417     . { return yytext[0]; }
418     <<EOF>> { if (ieof()) yyterminate(); }
419    
420     %%
421    
422     /* C-comment ignoring routine -kre*/
423     static void
424     ccomment(void)
425     {
426     int c = 0;
427    
428     /* log(L_NOTICE, "got comment"); */
429     while (1)
430     {
431     while ((c = input()) != '*' && c != EOF)
432     if (c == '\n')
433     ++lineno;
434    
435     if (c == '*')
436     {
437     while ((c = input()) == '*')
438     /* Nothing */ ;
439     if (c == '/')
440     break;
441     else if (c == '\n')
442     ++lineno;
443     }
444    
445     if (c == EOF)
446     {
447     YY_FATAL_ERROR("EOF in comment");
448     /* XXX hack alert this disables
449     * the stupid unused function warning
450     * gcc generates
451     */
452     if (1 == 0)
453     yy_fatal_error("EOF in comment");
454     break;
455     }
456     }
457     }
458    
459     /* C-style .includes. This function will properly swap input conf buffers,
460     * and lineno -kre */
461     static void
462     cinclude(void)
463     {
464     char *p = NULL;
465    
466     if ((p = strchr(yytext, '<')) == NULL)
467     *strchr(p = strchr(yytext, '"') + 1, '"') = '\0';
468     else
469     *strchr(++p, '>') = '\0';
470    
471     /* log(L_NOTICE, "got include %s!", c); */
472    
473     /* do stacking and co. */
474     if (include_stack_ptr >= MAX_INCLUDE_DEPTH)
475     ilog(L_ERROR, "Includes nested too deep in %s", p);
476     else
477     {
478     FBFILE *tmp_fbfile_in = NULL;
479     char filenamebuf[IRCD_BUFSIZE];
480    
481     if (*p == '/') /* if it is an absolute path */
482     snprintf(filenamebuf, sizeof(filenamebuf), "%s", p);
483     else
484     snprintf(filenamebuf, sizeof(filenamebuf), "%s/%s", ETCPATH, p);
485    
486     tmp_fbfile_in = fbopen(filenamebuf, "r");
487    
488     if (tmp_fbfile_in == NULL)
489     {
490     ilog(L_ERROR, "Unable to read configuration file '%s': %s",
491     filenamebuf, strerror(errno));
492     return;
493     }
494    
495     lineno_stack[include_stack_ptr] = lineno;
496     lineno = 1;
497 michael 967 inc_fbfile_in[include_stack_ptr] = conf_parser_ctx.conf_file;
498 adx 30 strlcpy(conffile_stack[include_stack_ptr], conffilebuf, IRCD_BUFSIZE);
499     include_stack[include_stack_ptr++] = YY_CURRENT_BUFFER;
500 michael 967 conf_parser_ctx.conf_file = tmp_fbfile_in;
501 michael 711 snprintf(conffilebuf, sizeof(conffilebuf), "%s", filenamebuf);
502 adx 30 yy_switch_to_buffer(yy_create_buffer(yyin, YY_BUF_SIZE));
503     }
504     }
505    
506     /* This is function that will be called on EOF in conf file. It will
507     * apropriately close conf if it not main conf and swap input buffers -kre
508     * */
509     static int
510     ieof(void)
511     {
512     /* log(L_NOTICE, "return from include stack!"); */
513     if (include_stack_ptr)
514 michael 967 fbclose(conf_parser_ctx.conf_file);
515 adx 30 if (--include_stack_ptr < 0)
516     {
517     /* log(L_NOTICE, "terminating lexer"); */
518     /* We will now exit the lexer - restore init values if we get /rehash
519     * later and reenter lexer -kre */
520     include_stack_ptr = 0;
521     lineno = 1;
522     return 1;
523     }
524    
525     /* switch buffer */
526     /* log(L_NOTICE, "deleting include_stack_ptr=%d", include_stack_ptr); */
527     yy_delete_buffer(YY_CURRENT_BUFFER);
528     lineno = lineno_stack[include_stack_ptr];
529 michael 967 conf_parser_ctx.conf_file = inc_fbfile_in[include_stack_ptr];
530 adx 30 strlcpy(conffilebuf, conffile_stack[include_stack_ptr], sizeof(conffilebuf));
531     yy_switch_to_buffer(include_stack[include_stack_ptr]);
532    
533     return 0;
534     }

Properties

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