X-Git-Url: https://git.distorted.org.uk/~mdw/secnet/blobdiff_plain/2fe58dfd10216a37f1ece081f926971882de112e..refs/heads/master:/conffile.fl diff --git a/conffile.fl b/conffile.fl index d191ffc..2ceb01b 100644 --- a/conffile.fl +++ b/conffile.fl @@ -1,7 +1,31 @@ +/* + * This file is part of secnet. + * See README for full list of copyright holders. + * + * secnet is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * secnet is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * version 3 along with secnet; if not, see + * https://www.gnu.org/licenses/gpl.html. + */ /* the "incl" state is used for picking up the name of an include file */ %x incl +%option nounput +%option noinput +%option never-interactive + %{ +#include +#include #include #include #include @@ -10,18 +34,33 @@ #include "conffile.tab.h" #include "util.h" +#define YY_NO_UNPUT + +#define YY_INPUT(buf,result,max_size) \ +do{ \ + (result)= fread((buf),1,(max_size),yyin); \ + if (ferror(yyin)) \ + fatal_perror("Error reading configuration file (%s)", \ + config_file); \ +}while(0) + #define MAX_INCLUDE_DEPTH 10 -YY_BUFFER_STATE include_stack[MAX_INCLUDE_DEPTH]; +struct include_stack_item { + YY_BUFFER_STATE bst; + int lineno; + cstring_t file; +}; +struct include_stack_item include_stack[MAX_INCLUDE_DEPTH]; int include_stack_ptr=0; -uint32_t config_lineno=0; -string_t config_file="xxx"; +int config_lineno=0; +cstring_t config_file="xxx"; static struct p_node *leafnode(uint32_t type) { struct p_node *r; - r=safe_malloc(sizeof(*r),"leafnode"); + NEW(r); r->type=type; r->loc.file=config_file; r->loc.line=config_lineno; @@ -50,8 +89,25 @@ static struct p_node *stringnode(string_t string) static struct p_node *numnode(string_t number) { struct p_node *r; + unsigned long n; r=leafnode(T_NUMBER); - r->data.number=atoi(number); + errno = 0; + n = strtoul(number, NULL, 10); + /* The caller is expected to only give us [0-9]+, + * so we skip some of the usual syntax checking. */ + r->data.number=n; + /* Give a consistent error message for any kind of + * out-of-range condition */ + if(errno == ERANGE || n != r->data.number) { + Message(M_FATAL,"config file %s line %d: '%s' is too big\n", + config_file, config_lineno, number); + exit(1); + } + if(errno) { + Message(M_FATAL,"config file %s line %d: '%s': %s\n", + config_file, config_lineno, number, strerror(errno)); + exit(1); + } return r; } @@ -64,15 +120,28 @@ include BEGIN(incl); if (include_stack_ptr >= MAX_INCLUDE_DEPTH) { fatal("Configuration file includes nested too deeply"); } - include_stack[include_stack_ptr++]= - YY_CURRENT_BUFFER; + include_stack[include_stack_ptr].bst=YY_CURRENT_BUFFER; + include_stack[include_stack_ptr].lineno=config_lineno; + include_stack[include_stack_ptr].file=config_file; + include_stack_ptr++; yyin=fopen(yytext,"r"); if (!yyin) { fatal("Can't open included file %s",yytext); } + config_lineno=1; + config_file=safe_strdup(yytext,"conffile.fl/include"); yy_switch_to_buffer(yy_create_buffer(yyin, YY_BUF_SIZE)); BEGIN(INITIAL); } +\n { /* include with no filename */ + Message(M_FATAL,"config file %s line %d: %s\n",config_file, + config_lineno,"``include'' requires a filename"); + BEGIN(INITIAL); + assert(config_lineno < INT_MAX); + ++config_lineno; + ++yynerrs; +} + <> { if (--include_stack_ptr < 0) { yyterminate(); @@ -80,7 +149,9 @@ include BEGIN(incl); else { fclose(yyin); yy_delete_buffer(YY_CURRENT_BUFFER); - yy_switch_to_buffer(include_stack[include_stack_ptr]); + yy_switch_to_buffer(include_stack[include_stack_ptr].bst); + config_lineno=include_stack[include_stack_ptr].lineno; + config_file=include_stack[include_stack_ptr].file; } } \"[^\"]*\" yylval=stringnode(yytext); return TOK_STRING;