From: Jeremy Sowden <jeremy@azazel.net>
To: Pablo Neira Ayuso <pablo@netfilter.org>
Cc: Netfilter Devel <netfilter-devel@vger.kernel.org>
Subject: [PATCH nft] src: extend --stateless to suppress output of non-dynamic set elements.
Date: Sun, 20 Oct 2019 20:44:03 +0100 [thread overview]
Message-ID: <20191020194403.19298-1-jeremy@azazel.net> (raw)
Currently, --stateless only suppresses the output of the contents of
dynamic sets. Extend it to support an optional parameter which may be
`dynamic` (the current behaviour) or `all`. If it is `all`, `nft list`
will also omit the elements of sets which are not marked `dynamic`.
Link: https://bugzilla.netfilter.org/show_bug.cgi?id=1374
Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
---
doc/libnftables.adoc | 7 +++++--
include/nftables.h | 5 +++++
include/nftables/libnftables.h | 1 +
src/main.c | 15 +++++++++++++--
src/rule.c | 3 ++-
5 files changed, 26 insertions(+), 5 deletions(-)
diff --git a/doc/libnftables.adoc b/doc/libnftables.adoc
index ea9626afa101..f32926ac8db1 100644
--- a/doc/libnftables.adoc
+++ b/doc/libnftables.adoc
@@ -99,8 +99,11 @@ NFT_CTX_OUTPUT_REVERSEDNS::
NFT_CTX_OUTPUT_SERVICE::
Print port numbers as services as described in the /etc/services file.
NFT_CTX_OUTPUT_STATELESS::
- If stateless output has been requested, then stateful data is not printed.
- Stateful data refers to those objects that carry run-time data, e.g. the *counter* statement holds packet and byte counter values, making it stateful.
+ If stateless output has been requested, then dynamic stateful data is not printed.
+ Dynamic stateful data refers to those objects that carry run-time data, e.g. the *counter* statement holds packet and byte counter values, making it stateful.
+NFT_CTX_OUTPUT_STATELESS_ALL::
+ If stateless output has been requested, then all stateful data is not printed.
+ Stateful data refers to dynamic stateful data described above and statically defined container objects like sets.
NFT_CTX_OUTPUT_HANDLE::
Upon insertion into the ruleset, some elements are assigned a unique handle for identification purposes.
For example, when deleting a table or chain, it may be identified either by name or handle.
diff --git a/include/nftables.h b/include/nftables.h
index 1ecf5ef5269c..d566989a01ec 100644
--- a/include/nftables.h
+++ b/include/nftables.h
@@ -50,6 +50,11 @@ static inline bool nft_output_stateless(const struct output_ctx *octx)
return octx->flags & NFT_CTX_OUTPUT_STATELESS;
}
+static inline bool nft_output_stateless_all(const struct output_ctx *octx)
+{
+ return octx->flags & NFT_CTX_OUTPUT_STATELESS_ALL;
+}
+
static inline bool nft_output_handle(const struct output_ctx *octx)
{
return octx->flags & NFT_CTX_OUTPUT_HANDLE;
diff --git a/include/nftables/libnftables.h b/include/nftables/libnftables.h
index 7a7a46f3358a..92e0b30ceb87 100644
--- a/include/nftables/libnftables.h
+++ b/include/nftables/libnftables.h
@@ -56,6 +56,7 @@ enum {
NFT_CTX_OUTPUT_NUMERIC_ALL = (NFT_CTX_OUTPUT_NUMERIC_PROTO |
NFT_CTX_OUTPUT_NUMERIC_PRIO |
NFT_CTX_OUTPUT_NUMERIC_SYMBOL),
+ NFT_CTX_OUTPUT_STATELESS_ALL = (1 << 11),
};
unsigned int nft_ctx_output_get_flags(struct nft_ctx *ctx);
diff --git a/src/main.c b/src/main.c
index f77d8a820a02..7b802f59b6ff 100644
--- a/src/main.c
+++ b/src/main.c
@@ -45,7 +45,7 @@ enum opt_vals {
OPT_NUMERIC_TIME = 't',
OPT_INVALID = '?',
};
-#define OPTSTRING "hvcf:iI:jvnsNaeSupypt"
+#define OPTSTRING "hvcf:iI:jvns::NaeSupypt"
static const struct option options[] = {
{
@@ -76,6 +76,7 @@ static const struct option options[] = {
{
.name = "stateless",
.val = OPT_STATELESS,
+ .has_arg = 2,
},
{
.name = "reversedns",
@@ -238,7 +239,17 @@ int main(int argc, char * const *argv)
output_flags |= NFT_CTX_OUTPUT_NUMERIC_TIME;
break;
case OPT_STATELESS:
- output_flags |= NFT_CTX_OUTPUT_STATELESS;
+ if (!optarg || strcmp(optarg, "dynamic") == 0)
+ output_flags |= NFT_CTX_OUTPUT_STATELESS;
+ else if (strcmp(optarg, "all") == 0) {
+ output_flags |= NFT_CTX_OUTPUT_STATELESS;
+ output_flags |= NFT_CTX_OUTPUT_STATELESS_ALL;
+ } else {
+ fprintf(stderr,
+ "invalid stateless parameter `%s'\n",
+ optarg);
+ exit(EXIT_FAILURE);
+ }
break;
case OPT_IP2NAME:
output_flags |= NFT_CTX_OUTPUT_REVERSEDNS;
diff --git a/src/rule.c b/src/rule.c
index 55894cbdb766..827ccb7e5c56 100644
--- a/src/rule.c
+++ b/src/rule.c
@@ -538,7 +538,8 @@ static void do_set_print(const struct set *set, struct print_fmt_options *opts,
{
set_print_declaration(set, opts, octx);
- if (set->flags & NFT_SET_EVAL && nft_output_stateless(octx)) {
+ if (nft_output_stateless_all(octx) ||
+ (set->flags & NFT_SET_EVAL && nft_output_stateless(octx))) {
nft_print(octx, "%s}%s", opts->tab, opts->nl);
return;
}
--
2.23.0
next reply other threads:[~2019-10-20 19:44 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-20 19:44 Jeremy Sowden [this message]
2019-10-21 7:50 ` [PATCH nft] src: extend --stateless to suppress output of non-dynamic set elements Jeremy Sowden
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=20191020194403.19298-1-jeremy@azazel.net \
--to=jeremy@azazel.net \
--cc=netfilter-devel@vger.kernel.org \
--cc=pablo@netfilter.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).