ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/src/ircd_lexer.l
Revision: 200
Committed: Tue Nov 1 11:38:41 2005 UTC (20 years, 9 months ago) by adx
File size: 16349 byte(s)
Log Message:
+ removed invite_ops_only, controlled by +p now
+ sorted ircd.conf:channel{} a bit
+ added newconf framework for channel{}
+ added missing 7.2 RELNOTES


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

Properties

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