Improve support for IPv4 vs IPv6 virtual hosts (fixes SF bugs #1087699, #1087668).
[ircu2.10.12-pk.git] / ircd / ircd_lexer.l
1 /*
2  * ircd_lexer.l: A lexical scanner for ircd config files.
3  * This is part of ircu, an Internet Relay Chat server.
4  * The contents of this file are Copyright(C) 2001 by Andrew Miller, the
5  * ircd-hybrid team and the ircu team.
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19  *  USA.
20  * $Id$
21  */
22
23 %{
24 #include <unistd.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include "config.h"
28 #include "ircd.h"
29 #include "ircd_string.h"
30 #include "s_debug.h"
31 #include "y.tab.h"
32
33 extern int lineno;
34
35 static struct lexer_token {
36   const char *string;
37   int value;
38 } tokens[] = {
39 #define TOKEN(NAME) { #NAME, NAME }
40   TOKEN(ADMIN),
41   TOKEN(GENERAL),
42   TOKEN(LOCATION),
43   TOKEN(CONTACT),
44   TOKEN(CLASS),
45   TOKEN(PINGFREQ),
46   TOKEN(CONNECT),
47   TOKEN(CONNECTFREQ),
48   TOKEN(MAXLINKS),
49   TOKEN(MAXHOPS),
50   TOKEN(SENDQ),
51   TOKEN(NAME),
52   TOKEN(HOST),
53   TOKEN(IP),
54   TOKEN(USERNAME),
55   TOKEN(PASS),
56   TOKEN(SECONDS),
57   TOKEN(MINUTES),
58   TOKEN(HOURS),
59   TOKEN(DAYS),
60   TOKEN(WEEKS),
61   TOKEN(MONTHS),
62   TOKEN(YEARS),
63   TOKEN(DECADES),
64   TOKEN(BYTES),
65   TOKEN(KBYTES),
66   TOKEN(MBYTES),
67   TOKEN(GBYTES),
68   TOKEN(TBYTES),
69   TOKEN(PORT),
70   TOKEN(SERVER),
71   TOKEN(YES),
72   TOKEN(NO),
73   TOKEN(HUB),
74   TOKEN(LEAF),
75   TOKEN(UWORLD),
76   TOKEN(OPER),
77   TOKEN(LOCAL),
78   TOKEN(VHOST),
79   TOKEN(MASK),
80   TOKEN(HIDDEN),
81   TOKEN(MOTD),
82   TOKEN(NUMERIC),
83   TOKEN(NICK),
84   TOKEN(JUPE),
85   TOKEN(DESCRIPTION),
86   TOKEN(CLIENT),
87   TOKEN(REAL),
88   TOKEN(REASON),
89   TOKEN(RULE),
90   TOKEN(ALL),
91   TOKEN(CRULE),
92   TOKEN(KILL),
93   TOKEN(QUARANTINE),
94   TOKEN(IAUTH),
95   TOKEN(TIMEOUT),
96   TOKEN(FEATURES),
97   TOKEN(CHANNEL),
98   TOKEN(PSEUDO),
99   TOKEN(PREPEND),
100   TOKEN(USERMODE),
101 #undef TOKEN
102   { "administrator", ADMIN },
103   { "b", BYTES },
104   { "badchan", TPRIV_BADCHAN },
105   { "chan_limit", TPRIV_CHAN_LIMIT },
106   { "deop_lchan", TPRIV_DEOP_LCHAN },
107   { "die", TPRIV_DIE },
108   { "display", TPRIV_DISPLAY },
109   { "file", TFILE },
110   { "force_local_opmode", TPRIV_FORCE_LOCAL_OPMODE },
111   { "force_opmode", TPRIV_FORCE_OPMODE },
112   { "gline", TPRIV_GLINE },
113   { "kb", KBYTES },
114   { "kilobytes", KBYTES },
115   { "local_badchan", TPRIV_LOCAL_BADCHAN },
116   { "local_gline", TPRIV_LOCAL_GLINE },
117   { "local_jupe", TPRIV_LOCAL_JUPE },
118   { "local_kill", TPRIV_LOCAL_KILL },
119   { "mb", MBYTES },
120   { "megabytes", MBYTES },
121   { "mode_lchan", TPRIV_MODE_LCHAN },
122   { "gb", GBYTES },
123   { "gigabytes", GBYTES },
124   { "operator", OPER },
125   { "opmode", TPRIV_OPMODE },
126   { "password", PASS },
127   { "propagate", TPRIV_PROPAGATE },
128   { "realname", REAL },
129   { "rehash", TPRIV_REHASH },
130   { "restart", TPRIV_RESTART },
131   { "see_chan", TPRIV_SEE_CHAN },
132   { "see_opers", TPRIV_SEE_OPERS },
133   { "set", TPRIV_SET },
134   { "show_all_invis", TPRIV_SHOW_ALL_INVIS },
135   { "show_invis", TPRIV_SHOW_INVIS },
136   { "tb", TBYTES },
137   { "terabytes", TBYTES },
138   { "unlimit_query", TPRIV_UNLIMIT_QUERY },
139   { "walk_lchan", TPRIV_WALK_LCHAN },
140   { "wide_gline", TPRIV_WIDE_GLINE },
141   { "whox", TPRIV_WHOX },
142   { NULL, 0 }
143 };
144 static int ntokens;
145
146 static int
147 token_compare(const void *pa, const void *pb)
148 {
149   const struct lexer_token *ta = pa;
150   const struct lexer_token *tb = pb;
151   unsigned int ii = 0;
152   int res;
153   while (ta->string[ii] && (ToLower(ta->string[ii]) == ToLower(tb->string[ii])))
154     ii++;
155   res = ToLower(tb->string[ii]) - ToLower(ta->string[ii]);
156   return res;
157 }
158
159 static void
160 init_ntokens(void)
161 {
162   for (ntokens = 0; tokens[ntokens].string; ++ntokens) ;
163   qsort(tokens, ntokens, sizeof(tokens[0]), token_compare);
164 }
165
166 static int
167 find_token(char *token)
168 {
169   struct lexer_token *tok;
170   if (!ntokens)
171     init_ntokens();
172   tok = bsearch(&token, tokens, ntokens, sizeof(tokens[0]), token_compare);
173   return tok ? tok->value : 0;
174 }
175
176 void
177 init_lexer(void)
178 {
179   yyin = fopen(configfile, "r");
180   if (yyin == NULL)
181   {
182 #ifdef YY_FATAL_ERROR
183     YY_FATAL_ERROR("Could not open the configuration file.");
184 #else
185     fprintf(stderr, "Could not open the configuration file.");
186 #endif
187   }
188 #ifdef YY_NEW_FILE
189   YY_NEW_FILE;
190 #endif
191   lineno = 1;
192 }
193
194 %}
195
196 WHITE [ \t\r]+
197 SHCOMMENT #[^\n]*
198 NUMBER [0-9]+
199 QSTRING \"[^"\n]+[\"\n]
200 %%
201
202 {QSTRING} {yytext[yyleng-1] = 0; yylval.text = yytext+1; return QSTRING;}
203 {NUMBER} {yylval.num = strtoul(yytext, NULL, 10); return NUMBER;}
204 {WHITE} ;
205 {SHCOMMENT} ;
206
207 [a-zA-Z_]+ { int res = find_token(yytext); if (res) return res; else REJECT; }
208 \n lineno++;
209 . return yytext[0];