From: Laurent Fasnacht <fasnacht@protonmail.ch>
To: netfilter-devel@vger.kernel.org
Cc: Laurent Fasnacht <fasnacht@protonmail.ch>
Subject: [PATCH nft 3/3] scanner: remove indescs and indescs_idx attributes from the parser, and directly use indesc_list
Date: Wed, 05 Feb 2020 12:30:24 +0000 [thread overview]
Message-ID: <20200205122858.20575-4-fasnacht@protonmail.ch> (raw)
In-Reply-To: <20200205122858.20575-1-fasnacht@protonmail.ch>
parser_state.indescs (static array) and parser_state.indesc_list are in fact duplicating information.
This commit removes the static array and uses the list for everything.
Signed-off-by: Laurent Fasnacht <fasnacht@protonmail.ch>
---
include/parser.h | 2 --
src/scanner.l | 58 ++++++++++++++++++++----------------------------
2 files changed, 24 insertions(+), 36 deletions(-)
diff --git a/include/parser.h b/include/parser.h
index 949284d9..636d1c88 100644
--- a/include/parser.h
+++ b/include/parser.h
@@ -15,8 +15,6 @@
struct parser_state {
struct input_descriptor *indesc;
- struct input_descriptor *indescs[MAX_INCLUDE_DEPTH];
- unsigned int indesc_idx;
struct list_head indesc_list;
struct list_head *msgs;
diff --git a/src/scanner.l b/src/scanner.l
index 837bc476..4b06cb99 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -668,18 +668,23 @@ addrstring ({macaddr}|{ip4addr}|{ip6addr})
static void scanner_push_indesc(struct parser_state *state,
struct input_descriptor *indesc)
{
- state->indescs[state->indesc_idx] = indesc;
- state->indesc = state->indescs[state->indesc_idx++];
+ list_add_tail(&indesc->list, &state->indesc_list);
+ state->indesc = indesc;
}
static void scanner_pop_indesc(struct parser_state *state)
{
- state->indesc_idx--;
-
- if (state->indesc_idx > 0)
- state->indesc = state->indescs[state->indesc_idx - 1];
- else
+ struct input_descriptor *indesc;
+ indesc = state->indesc;
+ if (!list_empty(&state->indesc_list)) {
+ state->indesc = list_entry(state->indesc->list.prev, struct input_descriptor, list);
+ } else {
state->indesc = NULL;
+ }
+ if (indesc->f) {
+ fclose(indesc->f);
+ indesc->f = NULL;
+ }
}
static void scanner_pop_buffer(yyscan_t scanner)
@@ -716,7 +721,6 @@ static void scanner_push_file(struct nft_ctx *nft, void *scanner,
init_pos(indesc);
scanner_push_indesc(state, indesc);
- list_add_tail(&indesc->list, &state->indesc_list);
}
static int include_file(struct nft_ctx *nft, void *scanner,
@@ -915,15 +919,14 @@ void scanner_push_buffer(void *scanner, const struct input_descriptor *indesc,
{
struct parser_state *state = yyget_extra(scanner);
YY_BUFFER_STATE b;
+ struct input_descriptor *new_indesc;
- state->indesc = xzalloc(sizeof(struct input_descriptor));
- state->indescs[state->indesc_idx] = state->indesc;
- state->indesc_idx++;
+ new_indesc = xzalloc(sizeof(struct input_descriptor));
- memcpy(state->indesc, indesc, sizeof(*state->indesc));
- state->indesc->data = buffer;
- state->indesc->name = NULL;
- list_add_tail(&state->indesc->list, &state->indesc_list);
+ memcpy(new_indesc, indesc, sizeof(*new_indesc));
+ new_indesc->data = buffer;
+ new_indesc->name = NULL;
+ scanner_push_indesc(state, new_indesc);
b = yy_scan_string(buffer, scanner);
assert(b != NULL);
@@ -940,35 +943,22 @@ void *scanner_init(struct parser_state *state)
return scanner;
}
-static void input_descriptor_destroy(const struct input_descriptor *indesc)
-{
- if (indesc->name)
- xfree(indesc->name);
- xfree(indesc);
-}
-static void input_descriptor_list_destroy(struct parser_state *state)
+static void input_descriptor_list_destroy(yyscan_t *scanner)
{
+ struct parser_state *state = yyget_extra(scanner);
struct input_descriptor *indesc, *next;
list_for_each_entry_safe(indesc, next, &state->indesc_list, list) {
- if (indesc->f) {
- fclose(indesc->f);
- indesc->f = NULL;
- }
+ if (indesc->name)
+ xfree(indesc->name);
list_del(&indesc->list);
- input_descriptor_destroy(indesc);
+ xfree(indesc);
}
}
void scanner_destroy(struct nft_ctx *nft)
{
- struct parser_state *state = yyget_extra(nft->scanner);
-
- do {
- yypop_buffer_state(nft->scanner);
- } while (state->indesc_idx--);
-
- input_descriptor_list_destroy(state);
+ input_descriptor_list_destroy(nft->scanner);
yylex_destroy(nft->scanner);
}
--
2.20.1
next prev parent reply other threads:[~2020-02-05 12:30 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-05 12:29 [PATCH nft 0/3] scanner: improving include handling Laurent Fasnacht
2020-02-05 12:29 ` [PATCH nft 1/3] scanner: move the file descriptor to be in the input_descriptor structure Laurent Fasnacht
2020-02-07 16:50 ` Pablo Neira Ayuso
2020-02-05 12:30 ` [PATCH nft 2/3] scanner: correctly compute include depth Laurent Fasnacht
2020-02-07 17:00 ` Pablo Neira Ayuso
2020-02-05 12:30 ` Laurent Fasnacht [this message]
2020-02-07 17:03 ` [PATCH nft 3/3] scanner: remove indescs and indescs_idx attributes from the parser, and directly use indesc_list Pablo Neira Ayuso
2020-02-07 17:04 ` [PATCH nft 0/3] scanner: improving include handling Pablo Neira Ayuso
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200205122858.20575-4-fasnacht@protonmail.ch \
--to=fasnacht@protonmail.ch \
--cc=netfilter-devel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).