Skip to content
Snippets Groups Projects
Commit b25af260 authored by Jan Kadlec's avatar Jan Kadlec
Browse files

Fixed all warning in conf parser. Removed read hooks and replaced them with flex functions.

Refs #614 @1h30m
parent 092247f3
No related branches found
No related tags found
No related merge requests found
......@@ -22,25 +22,14 @@
#define cf_lval (*yylval)
extern void cf_error(const char *msg);
extern int (*cf_read_hook)(char *buf, size_t nbytes);
#define YY_INPUT(buf,result,max) result = cf_read_hook(buf, max);
#define YY_NO_UNPUT
/*! \warning Free yy buffers until reentrant parser is made. */
void __attribute__ ((destructor)) yy_deinit()
void switch_input(const char *str, void *scanner)
{
/* Pop the buffer stack, destroying each element. */
// while (YY_CURRENT_BUFFER) {
// yy_delete_buffer(YY_CURRENT_BUFFER);
// YY_CURRENT_BUFFER_LVALUE = NULL;
// yypop_buffer_state();
// }
/* Destroy the stack itself. */
// yyfree(yy_buffer_stack);
// yy_buffer_stack = NULL;
yy_scan_string(str, scanner);
}
//#define YY_INPUT(buf,result,max) result = cf_read_hook(buf, max);
#define YY_NO_UNPUT
%}
%option reentrant
......
......@@ -31,7 +31,6 @@ static conf_log_map_t *this_logmap = 0;
%parse-param{void *scanner}
%lex-param{void *scanner}
%union {
char *t;
int i;
......@@ -192,11 +191,11 @@ zone_acl_item:
if (!found) {
char buf[256];
snprintf(buf, sizeof(buf), "remote '%s' is not defined", $1);
// cf_error(buf);
cf_error(buf, scanner);
} else {
conf_remote_t *remote = malloc(sizeof(conf_remote_t));
if (!remote) {
// cf_error("out of memory");
cf_error("out of memory", scanner);
} else {
remote->remote = found;
add_tail(this_list, &remote->n);
......@@ -230,11 +229,11 @@ zone_acl:
if (!found) {
char buf[256];
snprintf(buf, sizeof(buf), "remote '%s' is not defined", $2);
// cf_error(buf);
cf_error(buf, scanner);
} else {
conf_remote_t *remote = malloc(sizeof(conf_remote_t));
if (!remote) {
// cf_error("out of memory");
cf_error("out of memory", scanner);
} else {
remote->remote = found;
add_tail(this_list, &remote->n);
......@@ -266,7 +265,7 @@ zone_start: TEXT {
if (dn == 0) {
free(this_zone->name);
free(this_zone);
// cf_error("invalid zone origin");
cf_error("invalid zone origin", scanner);
} else {
dnslib_dname_free(&dn);
add_tail(&new_config->zones, &this_zone->n);
......
......@@ -50,76 +50,26 @@ static int rmkdir(char *path, int mode)
}
/* Prototypes for cf-parse.y */
//extern char* yytext;
//extern int yylineno;
extern int cf_parse();
extern int cf_parse(void *scanner);
extern int cf_get_lineno(void *scanner);
extern char *cf_get_text(void *scanner);
extern int cf_lex_init(void *scanner);
extern void cf_set_in(FILE *f, void *scanner);
extern void cf_lex_destroy(void *scanner);
extern void switch_input(const char *str, void *scanner);
/*
* Parser instance globals.
* \todo: Use pure reentrant parser to get rid of the globals.
*/
conf_t *new_config = 0; /*!< \brief Currently parsed config. */
static volatile int _parser_res = 0; /*!< \brief Parser result. */
static void *_parser_src = 0; /*!< \brief Parser data source. */
static ssize_t _parser_remaining = -1; /*!< \brief Parser remaining bytes. */
static pthread_mutex_t _parser_lock = PTHREAD_MUTEX_INITIALIZER;
int (*cf_read_hook)(char *buf, size_t nbytes) = 0;
/*!
* \brief Config file read hook.
*
* Wrapper for fread().
*
* \retval number of read bytes on success.
* \retval <0 on error.
*/
int cf_read_file(char *buf, size_t nbytes) {
if (_parser_src == 0) {
return -1;
}
// Read a maximum of nbytes
return fread(buf, 1, nbytes, (FILE*)_parser_src);
}
/*!
* \brief Config file read hook (from memory).
* \retval number of read bytes on success.
* \retval <0 on error.
*/
int cf_read_mem(char *buf, size_t nbytes) {
if (_parser_src == 0 || _parser_remaining < 0) {
return -1;
}
// Assert remaining bytes
if ((size_t)_parser_remaining < nbytes) {
nbytes = (size_t)_parser_remaining;
}
// Check remaining
if (nbytes == 0) {
return 0;
}
// Read a maximum of nbytes
void* dst = memcpy(buf, (const char*)_parser_src, nbytes);
if (dst != 0) {
_parser_remaining -= nbytes;
_parser_src = (char*)_parser_src + nbytes;
return nbytes;
}
return -1;
}
/*! \brief Config error report. */
void cf_error(const char *msg)
void cf_error(const char *msg, void *scanner)
{
// log_server_error("Config '%s' - %s on line %d (current token '%s').\n",
// new_config->filename, msg, yylineno, yytext);
log_server_error("Config '%s' - %s on line %d (current token '%s').\n",
new_config->filename, msg, cf_get_lineno(scanner),
(char *)cf_get_text(scanner));
// _parser_res = KNOT_EPARSEFAIL;
_parser_res = KNOT_EPARSEFAIL;
}
/*
......@@ -326,9 +276,8 @@ static int conf_fparser(conf_t *conf)
// {
// Hook new configuration
new_config = conf;
_parser_src = fopen(conf->filename, "r");
_parser_remaining = -1;
if (_parser_src == 0) {
FILE *f = fopen(conf->filename, "r");
if (f == 0) {
pthread_mutex_unlock(&_parser_lock);
return KNOT_ENOENT;
}
......@@ -336,15 +285,13 @@ static int conf_fparser(conf_t *conf)
// Parse config
_parser_res = KNOT_EOK;
new_config->filename = conf->filename;
cf_read_hook = cf_read_file;
void *scanner = NULL;
cf_lex_init(&scanner);
// yyset_in(_parser_src, scanner);
cf_set_in(f, scanner);
cf_parse(scanner);
cf_lex_destroy(scanner);
ret = _parser_res;
fclose((FILE*)_parser_src);
_parser_src = 0;
fclose(f);
// }
pthread_mutex_unlock(&_parser_lock);
return ret;
......@@ -364,28 +311,22 @@ static int conf_strparser(conf_t *conf, const char *src)
// {
// Hook new configuration
new_config = conf;
_parser_src = (char*)src;
_parser_remaining = strlen(src);
if (_parser_src == 0) {
_parser_src = 0;
_parser_remaining = -1;
if (src == 0) {
pthread_mutex_unlock(&_parser_lock);
return KNOT_ENOENT;
}
// Parse config
_parser_res = KNOT_EOK;
cf_read_hook = cf_read_mem;
char *oldfn = new_config->filename;
new_config->filename = "(stdin)";
void *scanner = NULL;
cf_lex_init(&scanner);
switch_input(src, scanner);
cf_parse(scanner);
cf_lex_destroy(scanner);
new_config->filename = oldfn;
ret = _parser_res;
_parser_src = 0;
_parser_remaining = -1;
// }
pthread_mutex_unlock(&_parser_lock);
return ret;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment