X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=ircd%2Fircd_lexer.l;h=c149a63241ecca1cecfb77957db1664a25e7aed0;hb=7fbfc390d32f9acc3192d011b813f66f35370faa;hp=590e3bcfa8153c5b71dc0ab150a59252df0393e0;hpb=64c8275caf8ad61e475e877b34288e07585d694b;p=ircu2.10.12-pk.git diff --git a/ircd/ircd_lexer.l b/ircd/ircd_lexer.l index 590e3bc..c149a63 100644 --- a/ircd/ircd_lexer.l +++ b/ircd/ircd_lexer.l @@ -24,7 +24,9 @@ #include #include #include +#include #include "config.h" +#include "fileio.h" #include "ircd.h" #include "ircd_alloc.h" #include "ircd_string.h" @@ -100,9 +102,17 @@ static struct lexer_token { TOKEN(PREPEND), TOKEN(USERMODE), TOKEN(FAST), + TOKEN(AUTOCONNECT), + TOKEN(PROGRAM), + TOKEN(DNS), + TOKEN(SSL), + TOKEN(CERTFILE), + TOKEN(KEYFILE), + TOKEN(CAFILE), #undef TOKEN { "administrator", ADMIN }, { "apass_opmode", TPRIV_APASS_OPMODE }, + { "auto", AUTOCONNECT }, { "b", BYTES }, { "badchan", TPRIV_BADCHAN }, { "chan_limit", TPRIV_CHAN_LIMIT }, @@ -112,9 +122,14 @@ static struct lexer_token { { "file", TFILE }, { "force_local_opmode", TPRIV_FORCE_LOCAL_OPMODE }, { "force_opmode", TPRIV_FORCE_OPMODE }, + { "gb", GBYTES }, + { "gigabytes", GBYTES }, { "gline", TPRIV_GLINE }, + { "ipv4", TOK_IPV4 }, + { "ipv6", TOK_IPV6 }, { "kb", KBYTES }, { "kilobytes", KBYTES }, + { "list_chan", TPRIV_LIST_CHAN }, { "local_badchan", TPRIV_LOCAL_BADCHAN }, { "local_gline", TPRIV_LOCAL_GLINE }, { "local_jupe", TPRIV_LOCAL_JUPE }, @@ -123,8 +138,6 @@ static struct lexer_token { { "mb", MBYTES }, { "megabytes", MBYTES }, { "mode_lchan", TPRIV_MODE_LCHAN }, - { "gb", GBYTES }, - { "gigabytes", GBYTES }, { "operator", OPER }, { "opmode", TPRIV_OPMODE }, { "password", PASS }, @@ -177,22 +190,44 @@ find_token(char *token) return tok ? tok->value : 0; } -void +static FBFILE *lexer_input; + +#undef YY_INPUT +#define YY_INPUT(buf, res, size) res = (fbgets(buf, size, lexer_input) ? strlen(buf) : 0) + +int init_lexer(void) { - yyin = fopen(configfile, "r"); - if (yyin == NULL) + lexer_input = fbopen(configfile, "r"); + if (lexer_input == NULL) { #ifdef YY_FATAL_ERROR YY_FATAL_ERROR("Could not open the configuration file."); #else fprintf(stderr, "Could not open the configuration file."); #endif + return 0; } #ifdef YY_NEW_FILE YY_NEW_FILE; #endif lineno = 1; + return 1; +} + +void deinit_lexer(void) +{ + if (lexer_input != NULL) + { + fbclose(lexer_input); + lexer_input = NULL; + } +} + +int +yywrap(void) +{ + return 1; } %} @@ -208,6 +243,6 @@ QSTRING \"[^"\n]+[\"\n] {WHITE} ; {SHCOMMENT} ; -[a-zA-Z_]+ { int res = find_token(yytext); if (res) return res; else REJECT; } +[a-zA-Z_][a-zA-Z_0-9]* { int res = find_token(yytext); if (res) return res; else REJECT; } \n lineno++; . return yytext[0];