All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH nft v2] src: Allow to list ruleset without stateful information
@ 2017-01-16 20:40 Elise Lennion
  2017-01-16 21:05 ` Pablo Neira Ayuso
  0 siblings, 1 reply; 3+ messages in thread
From: Elise Lennion @ 2017-01-16 20:40 UTC (permalink / raw)
  To: pablo; +Cc: netfilter-devel

Currently only counter and quota have stateful information.

For named counters, packets and bytes are displayed as 0.

Standard list ruleset:

table ip filter {
	counter https {
		packets 161942 bytes 10253353
	}

	chain output {
		type filter hook output priority 0; policy accept;
		counter name tcp dport map { https : "https"}
		tcp dport https counter packets 171211 bytes 10869045
		tcp dport https quota 25 mbytes used 10 mbytes
	}
}

With stateless option, -s:

table ip filter {
	counter https {
		packets 0 bytes 0
	}

	chain output {
		type filter hook output priority 0; policy accept;
		counter name tcp dport map { https : "https"}
		tcp dport https counter
		tcp dport https quota 25 mbytes
	}
}

Signed-off-by: Elise Lennion <elise.lennion@gmail.com>
---
 include/nftables.h |  1 +
 src/main.c         | 12 +++++++++++-
 src/rule.c         |  6 +++++-
 src/statement.c    |  9 +++++++--
 4 files changed, 24 insertions(+), 4 deletions(-)

diff --git a/include/nftables.h b/include/nftables.h
index d3f471b..760bbff 100644
--- a/include/nftables.h
+++ b/include/nftables.h
@@ -29,6 +29,7 @@ extern unsigned int numeric_output;
 extern unsigned int ip2name_output;
 extern unsigned int handle_output;
 extern unsigned int debug_level;
+extern bool stateless_output;
 extern const char *include_paths[INCLUDE_PATHS_MAX];
 
 enum nftables_exit_codes {
diff --git a/src/main.c b/src/main.c
index 5c72fc0..6d073d5 100644
--- a/src/main.c
+++ b/src/main.c
@@ -35,6 +35,7 @@ unsigned int handle_output;
 #ifdef DEBUG
 unsigned int debug_level;
 #endif
+bool stateless_output;
 
 const char *include_paths[INCLUDE_PATHS_MAX] = { DEFAULT_INCLUDE_PATH };
 static unsigned int num_include_paths = 1;
@@ -46,13 +47,14 @@ enum opt_vals {
 	OPT_INTERACTIVE		= 'i',
 	OPT_INCLUDEPATH		= 'I',
 	OPT_NUMERIC		= 'n',
+	OPT_STATELESS		= 's',
 	OPT_IP2NAME		= 'N',
 	OPT_DEBUG		= 'd',
 	OPT_HANDLE_OUTPUT	= 'a',
 	OPT_INVALID		= '?',
 };
 
-#define OPTSTRING	"hvf:iI:vnNa"
+#define OPTSTRING	"hvf:iI:vnsNa"
 
 static const struct option options[] = {
 	{
@@ -77,6 +79,10 @@ static const struct option options[] = {
 		.val		= OPT_NUMERIC,
 	},
 	{
+		.name		= "stateless",
+		.val		= OPT_STATELESS,
+	},
+	{
 		.name		= "reversedns",
 		.val		= OPT_IP2NAME,
 	},
@@ -116,6 +122,7 @@ static void show_help(const char *name)
 "  -n, --numeric			When specified once, show network addresses numerically (default behaviour).\n"
 "  				Specify twice to also show Internet services (port numbers) numerically.\n"
 "				Specify three times to also show protocols, user IDs, and group IDs numerically.\n"
+"  -s, --stateless		Omit stateful information of ruleset.\n"
 "  -N				Translate IP addresses to names.\n"
 "  -a, --handle			Output rule handle.\n"
 "  -I, --includepath <directory>	Add <directory> to the paths searched for include files.\n"
@@ -283,6 +290,9 @@ int main(int argc, char * const *argv)
 		case OPT_NUMERIC:
 			numeric_output++;
 			break;
+		case OPT_STATELESS:
+			stateless_output = true;
+			break;
 		case OPT_IP2NAME:
 			ip2name_output++;
 			break;
diff --git a/src/rule.c b/src/rule.c
index b6dc755..f2ffd4b 100644
--- a/src/rule.c
+++ b/src/rule.c
@@ -1178,6 +1178,10 @@ static void obj_print_data(const struct obj *obj,
 	case NFT_OBJECT_COUNTER:
 		printf(" %s {%s%s%s", obj->handle.obj,
 				      opts->nl, opts->tab, opts->tab);
+		if (stateless_output) {
+			printf("packets 0 bytes 0");
+			break;
+		}
 		printf("packets %"PRIu64" bytes %"PRIu64"",
 		       obj->counter.packets, obj->counter.bytes);
 		break;
@@ -1191,7 +1195,7 @@ static void obj_print_data(const struct obj *obj,
 		printf("%s%"PRIu64" %s",
 		       obj->quota.flags & NFT_QUOTA_F_INV ? "over " : "",
 		       bytes, data_unit);
-		if (obj->quota.used) {
+		if (!stateless_output && obj->quota.used) {
 			data_unit = get_rate(obj->quota.used, &bytes);
 			printf(" used %"PRIu64" %s", bytes, data_unit);
 		}
diff --git a/src/statement.c b/src/statement.c
index 24a53ee..25bed65 100644
--- a/src/statement.c
+++ b/src/statement.c
@@ -142,7 +142,12 @@ struct stmt *flow_stmt_alloc(const struct location *loc)
 
 static void counter_stmt_print(const struct stmt *stmt)
 {
-	printf("counter packets %" PRIu64 " bytes %" PRIu64,
+	printf("counter");
+
+	if (stateless_output)
+		return;
+
+	printf(" packets %" PRIu64 " bytes %" PRIu64,
 	       stmt->counter.packets, stmt->counter.bytes);
 }
 
@@ -391,7 +396,7 @@ static void quota_stmt_print(const struct stmt *stmt)
 	printf("quota %s%"PRIu64" %s",
 	       inv ? "over " : "", bytes, data_unit);
 
-	if (stmt->quota.used) {
+	if (!stateless_output && stmt->quota.used) {
 		data_unit = get_rate(stmt->quota.used, &used);
 		printf(" used %"PRIu64" %s", used, data_unit);
 	}
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH nft v2] src: Allow to list ruleset without stateful information
  2017-01-16 20:40 [PATCH nft v2] src: Allow to list ruleset without stateful information Elise Lennion
@ 2017-01-16 21:05 ` Pablo Neira Ayuso
  2017-01-16 21:07   ` Pablo Neira Ayuso
  0 siblings, 1 reply; 3+ messages in thread
From: Pablo Neira Ayuso @ 2017-01-16 21:05 UTC (permalink / raw)
  To: Elise Lennion; +Cc: netfilter-devel

On Mon, Jan 16, 2017 at 06:40:40PM -0200, Elise Lennion wrote:
> Currently only counter and quota have stateful information.
> 
> For named counters, packets and bytes are displayed as 0.
> 
> Standard list ruleset:
> 
> table ip filter {
> 	counter https {
> 		packets 161942 bytes 10253353
> 	}
> 
> 	chain output {
> 		type filter hook output priority 0; policy accept;
> 		counter name tcp dport map { https : "https"}
> 		tcp dport https counter packets 171211 bytes 10869045
> 		tcp dport https quota 25 mbytes used 10 mbytes
> 	}
> }
> 
> With stateless option, -s:
> 
> table ip filter {
> 	counter https {
> 		packets 0 bytes 0
> 	}
> 
> 	chain output {
> 		type filter hook output priority 0; policy accept;
> 		counter name tcp dport map { https : "https"}
> 		tcp dport https counter
> 		tcp dport https quota 25 mbytes
> 	}
> }

Applied, thanks Elise.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH nft v2] src: Allow to list ruleset without stateful information
  2017-01-16 21:05 ` Pablo Neira Ayuso
@ 2017-01-16 21:07   ` Pablo Neira Ayuso
  0 siblings, 0 replies; 3+ messages in thread
From: Pablo Neira Ayuso @ 2017-01-16 21:07 UTC (permalink / raw)
  To: Elise Lennion; +Cc: netfilter-devel

On Mon, Jan 16, 2017 at 10:05:33PM +0100, Pablo Neira Ayuso wrote:
> On Mon, Jan 16, 2017 at 06:40:40PM -0200, Elise Lennion wrote:
> > Currently only counter and quota have stateful information.
> > 
> > For named counters, packets and bytes are displayed as 0.
> > 
> > Standard list ruleset:
> > 
> > table ip filter {
> > 	counter https {
> > 		packets 161942 bytes 10253353
> > 	}
> > 
> > 	chain output {
> > 		type filter hook output priority 0; policy accept;
> > 		counter name tcp dport map { https : "https"}
> > 		tcp dport https counter packets 171211 bytes 10869045
> > 		tcp dport https quota 25 mbytes used 10 mbytes
> > 	}
> > }
> > 
> > With stateless option, -s:
> > 
> > table ip filter {
> > 	counter https {
> > 		packets 0 bytes 0
> > 	}
> > 
> > 	chain output {
> > 		type filter hook output priority 0; policy accept;
> > 		counter name tcp dport map { https : "https"}
> > 		tcp dport https counter
> > 		tcp dport https quota 25 mbytes
> > 	}
> > }
> 
> Applied, thanks Elise.

BTW, could you send me a patch to update nft-tests.py to use '-s'
option? So we don't get spurious errors when checking for rules with
stateful expressions and objects while there's traffic going on on the
testbed machine. I would forecast a oneliner patch for this.

Thanks.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-01-16 21:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-16 20:40 [PATCH nft v2] src: Allow to list ruleset without stateful information Elise Lennion
2017-01-16 21:05 ` Pablo Neira Ayuso
2017-01-16 21:07   ` Pablo Neira Ayuso

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.