More RELEASE.NOTES updates and operator privilege documentation.
[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   { "local_opmode", TPRIV_LOCAL_OPMODE },
120   { "mb", MBYTES },
121   { "megabytes", MBYTES },
122   { "mode_lchan", TPRIV_MODE_LCHAN },
123   { "gb", GBYTES },
124   { "gigabytes", GBYTES },
125   { "operator", OPER },
126   { "opmode", TPRIV_OPMODE },
127   { "password", PASS },
128   { "propagate", TPRIV_PROPAGATE },
129   { "realname", REAL },
130   { "rehash", TPRIV_REHASH },
131   { "restart", TPRIV_RESTART },
132   { "see_chan", TPRIV_SEE_CHAN },
133   { "see_opers", TPRIV_SEE_OPERS },
134   { "set", TPRIV_SET },
135   { "show_all_invis", TPRIV_SHOW_ALL_INVIS },
136   { "show_invis", TPRIV_SHOW_INVIS },
137   { "tb", TBYTES },
138   { "terabytes", TBYTES },
139   { "unlimit_query", TPRIV_UNLIMIT_QUERY },
140   { "walk_lchan", TPRIV_WALK_LCHAN },
141   { "wide_gline", TPRIV_WIDE_GLINE },
142   { "whox", TPRIV_WHOX },
143   { NULL, 0 }
144 };
145 static int ntokens;
146
147 static int
148 token_compare(const void *pa, const void *pb)
149 {
150   const struct lexer_token *ta = pa;
151   const struct lexer_token *tb = pb;
152   unsigned int ii = 0;
153   int res;
154   while (ta->string[ii] && (ToLower(ta->string[ii]) == ToLower(tb->string[ii])))
155     ii++;
156   res = ToLower(tb->string[ii]) - ToLower(ta->string[ii]);
157   return res;
158 }
159
160 static void
161 init_ntokens(void)
162 {
163   for (ntokens = 0; tokens[ntokens].string; ++ntokens) ;
164   qsort(tokens, ntokens, sizeof(tokens[0]), token_compare);
165 }
166
167 static int
168 find_token(char *token)
169 {
170   struct lexer_token *tok;
171   if (!ntokens)
172     init_ntokens();
173   tok = bsearch(&token, tokens, ntokens, sizeof(tokens[0]), token_compare);
174   return tok ? tok->value : 0;
175 }
176
177 void
178 init_lexer(void)
179 {
180   yyin = fopen(configfile, "r");
181   if (yyin == NULL)
182   {
183 #ifdef YY_FATAL_ERROR
184     YY_FATAL_ERROR("Could not open the configuration file.");
185 #else
186     fprintf(stderr, "Could not open the configuration file.");
187 #endif
188   }
189 #ifdef YY_NEW_FILE
190   YY_NEW_FILE;
191 #endif
192   lineno = 1;
193 }
194
195 %}
196
197 WHITE [ \t\r]+
198 SHCOMMENT #[^\n]*
199 NUMBER [0-9]+
200 QSTRING \"[^"\n]+[\"\n]
201 %%
202
203 {QSTRING} {yytext[yyleng-1] = 0; yylval.text = yytext+1; return QSTRING;}
204 {NUMBER} {yylval.num = strtoul(yytext, NULL, 10); return NUMBER;}
205 {WHITE} ;
206 {SHCOMMENT} ;
207
208 [a-zA-Z_]+ { int res = find_token(yytext); if (res) return res; else REJECT; }
209 \n lineno++;
210 . return yytext[0];