import nftables-0.9.0-14.el8_1.1
This commit is contained in:
commit
ac5538bc72
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
SOURCES/nftables-0.9.0.tar.bz2
|
1
.nftables.metadata
Normal file
1
.nftables.metadata
Normal file
@ -0,0 +1 @@
|
||||
a3463fc6589c08631ec3f306f6db7f0905249542 SOURCES/nftables-0.9.0.tar.bz2
|
@ -0,0 +1,227 @@
|
||||
From f47941faed177fd3943c7eaf9408e9e6481595f6 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Mon, 13 Aug 2018 18:58:57 +0200
|
||||
Subject: [PATCH] evaluate: reject: Allow icmpx in inet/bridge families
|
||||
|
||||
Commit 3e6ab2b335142 added restraints on reject types for bridge and
|
||||
inet families but aparently those were too strict: If a rule in e.g.
|
||||
inet family contained a match which introduced a protocol dependency,
|
||||
icmpx type rejects were disallowed for no obvious reason.
|
||||
|
||||
Allow icmpx type rejects in inet family regardless of protocol
|
||||
dependency since we either have IPv4 or IPv6 traffic in there and for
|
||||
both icmpx is fine.
|
||||
|
||||
Merge restraints in bridge family with those for TCP reset since it
|
||||
already does what is needed, namely checking that ether proto is either
|
||||
IPv4 or IPv6.
|
||||
|
||||
Fixes: 3e6ab2b335142 ("evaluate: reject: check in bridge and inet the network context in reject")
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 8d2c3c72935443228b5e0492c8d3e2e2048c0c5a)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/evaluate.c | 7 +----
|
||||
tests/py/bridge/reject.t | 5 ++++
|
||||
tests/py/bridge/reject.t.json | 44 +++++++++++++++++++++++++++++
|
||||
tests/py/bridge/reject.t.payload | 12 ++++++++
|
||||
tests/py/inet/reject.t | 3 ++
|
||||
tests/py/inet/reject.t.json | 42 +++++++++++++++++++++++++++
|
||||
tests/py/inet/reject.t.payload.inet | 12 ++++++++
|
||||
7 files changed, 119 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/src/evaluate.c b/src/evaluate.c
|
||||
index c4ee3cc94a3db..d18af34341b0d 100644
|
||||
--- a/src/evaluate.c
|
||||
+++ b/src/evaluate.c
|
||||
@@ -2130,9 +2130,7 @@ static int stmt_evaluate_reject_inet_family(struct eval_ctx *ctx,
|
||||
case NFT_REJECT_TCP_RST:
|
||||
break;
|
||||
case NFT_REJECT_ICMPX_UNREACH:
|
||||
- return stmt_binary_error(ctx, stmt->reject.expr,
|
||||
- &ctx->pctx.protocol[PROTO_BASE_NETWORK_HDR],
|
||||
- "conflicting network protocol specified");
|
||||
+ break;
|
||||
case NFT_REJECT_ICMP_UNREACH:
|
||||
base = ctx->pctx.protocol[PROTO_BASE_LL_HDR].desc;
|
||||
protocol = proto_find_num(base, desc);
|
||||
@@ -2183,9 +2181,6 @@ static int stmt_evaluate_reject_bridge_family(struct eval_ctx *ctx,
|
||||
|
||||
switch (stmt->reject.type) {
|
||||
case NFT_REJECT_ICMPX_UNREACH:
|
||||
- return stmt_binary_error(ctx, stmt->reject.expr,
|
||||
- &ctx->pctx.protocol[PROTO_BASE_NETWORK_HDR],
|
||||
- "conflicting network protocol specified");
|
||||
case NFT_REJECT_TCP_RST:
|
||||
base = ctx->pctx.protocol[PROTO_BASE_LL_HDR].desc;
|
||||
protocol = proto_find_num(base, desc);
|
||||
diff --git a/tests/py/bridge/reject.t b/tests/py/bridge/reject.t
|
||||
index 67deac8d3b5e4..13d65b115c3cb 100644
|
||||
--- a/tests/py/bridge/reject.t
|
||||
+++ b/tests/py/bridge/reject.t
|
||||
@@ -37,3 +37,8 @@ ether type arp reject;fail
|
||||
ether type vlan reject with tcp reset;fail
|
||||
ether type arp reject with tcp reset;fail
|
||||
ip protocol udp reject with tcp reset;fail
|
||||
+
|
||||
+ether type ip reject with icmpx type admin-prohibited;ok
|
||||
+ether type ip6 reject with icmpx type admin-prohibited;ok
|
||||
+ether type vlan reject with icmpx type admin-prohibited;fail
|
||||
+ether type arp reject with icmpx type admin-prohibited;fail
|
||||
diff --git a/tests/py/bridge/reject.t.json b/tests/py/bridge/reject.t.json
|
||||
index aa716f8070666..c0bed56e6ce41 100644
|
||||
--- a/tests/py/bridge/reject.t.json
|
||||
+++ b/tests/py/bridge/reject.t.json
|
||||
@@ -219,3 +219,47 @@
|
||||
}
|
||||
]
|
||||
|
||||
+# ether type ip reject with icmpx type admin-prohibited
|
||||
+[
|
||||
+ {
|
||||
+ "match": {
|
||||
+ "left": {
|
||||
+ "payload": {
|
||||
+ "field": "type",
|
||||
+ "protocol": "ether"
|
||||
+ }
|
||||
+ },
|
||||
+ "op": "==",
|
||||
+ "right": "ip"
|
||||
+ }
|
||||
+ },
|
||||
+ {
|
||||
+ "reject": {
|
||||
+ "expr": "admin-prohibited",
|
||||
+ "type": "icmpx"
|
||||
+ }
|
||||
+ }
|
||||
+]
|
||||
+
|
||||
+# ether type ip6 reject with icmpx type admin-prohibited
|
||||
+[
|
||||
+ {
|
||||
+ "match": {
|
||||
+ "left": {
|
||||
+ "payload": {
|
||||
+ "field": "type",
|
||||
+ "protocol": "ether"
|
||||
+ }
|
||||
+ },
|
||||
+ "op": "==",
|
||||
+ "right": "ip6"
|
||||
+ }
|
||||
+ },
|
||||
+ {
|
||||
+ "reject": {
|
||||
+ "expr": "admin-prohibited",
|
||||
+ "type": "icmpx"
|
||||
+ }
|
||||
+ }
|
||||
+]
|
||||
+
|
||||
diff --git a/tests/py/bridge/reject.t.payload b/tests/py/bridge/reject.t.payload
|
||||
index b984f6f8de4d6..888179df9c977 100644
|
||||
--- a/tests/py/bridge/reject.t.payload
|
||||
+++ b/tests/py/bridge/reject.t.payload
|
||||
@@ -106,3 +106,15 @@ bridge test-bridge input
|
||||
bridge test-bridge input
|
||||
[ reject type 2 code 1 ]
|
||||
|
||||
+# ether type ip reject with icmpx type admin-prohibited
|
||||
+bridge test-bridge input
|
||||
+ [ payload load 2b @ link header + 12 => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x00000008 ]
|
||||
+ [ reject type 2 code 3 ]
|
||||
+
|
||||
+# ether type ip6 reject with icmpx type admin-prohibited
|
||||
+bridge test-bridge input
|
||||
+ [ payload load 2b @ link header + 12 => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x0000dd86 ]
|
||||
+ [ reject type 2 code 3 ]
|
||||
+
|
||||
diff --git a/tests/py/inet/reject.t b/tests/py/inet/reject.t
|
||||
index 7679407e6f8d4..a88c5a4afae51 100644
|
||||
--- a/tests/py/inet/reject.t
|
||||
+++ b/tests/py/inet/reject.t
|
||||
@@ -34,3 +34,6 @@ meta nfproto ipv6 reject with icmp type host-unreachable;fail
|
||||
meta nfproto ipv4 ip protocol icmp reject with icmpv6 type no-route;fail
|
||||
meta nfproto ipv6 ip protocol icmp reject with icmp type host-unreachable;fail
|
||||
meta l4proto udp reject with tcp reset;fail
|
||||
+
|
||||
+meta nfproto ipv4 reject with icmpx type admin-prohibited;ok
|
||||
+meta nfproto ipv6 reject with icmpx type admin-prohibited;ok
|
||||
diff --git a/tests/py/inet/reject.t.json b/tests/py/inet/reject.t.json
|
||||
index 0939f4450509b..46d4857a57c99 100644
|
||||
--- a/tests/py/inet/reject.t.json
|
||||
+++ b/tests/py/inet/reject.t.json
|
||||
@@ -238,3 +238,45 @@
|
||||
}
|
||||
]
|
||||
|
||||
+# meta nfproto ipv4 reject with icmpx type admin-prohibited
|
||||
+[
|
||||
+ {
|
||||
+ "match": {
|
||||
+ "left": {
|
||||
+ "meta": {
|
||||
+ "key": "nfproto"
|
||||
+ }
|
||||
+ },
|
||||
+ "op": "==",
|
||||
+ "right": "ipv4"
|
||||
+ }
|
||||
+ },
|
||||
+ {
|
||||
+ "reject": {
|
||||
+ "expr": "admin-prohibited",
|
||||
+ "type": "icmpx"
|
||||
+ }
|
||||
+ }
|
||||
+]
|
||||
+
|
||||
+# meta nfproto ipv6 reject with icmpx type admin-prohibited
|
||||
+[
|
||||
+ {
|
||||
+ "match": {
|
||||
+ "left": {
|
||||
+ "meta": {
|
||||
+ "key": "nfproto"
|
||||
+ }
|
||||
+ },
|
||||
+ "op": "==",
|
||||
+ "right": "ipv6"
|
||||
+ }
|
||||
+ },
|
||||
+ {
|
||||
+ "reject": {
|
||||
+ "expr": "admin-prohibited",
|
||||
+ "type": "icmpx"
|
||||
+ }
|
||||
+ }
|
||||
+]
|
||||
+
|
||||
diff --git a/tests/py/inet/reject.t.payload.inet b/tests/py/inet/reject.t.payload.inet
|
||||
index 7a6468e81f9e7..ee1aae02f1e1d 100644
|
||||
--- a/tests/py/inet/reject.t.payload.inet
|
||||
+++ b/tests/py/inet/reject.t.payload.inet
|
||||
@@ -220,3 +220,15 @@ inet test-inet input
|
||||
[ cmp eq reg 1 0x0000000a ]
|
||||
[ reject type 0 code 0 ]
|
||||
|
||||
+# meta nfproto ipv4 reject with icmpx type admin-prohibited
|
||||
+inet test-inet input
|
||||
+ [ meta load nfproto => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x00000002 ]
|
||||
+ [ reject type 2 code 3 ]
|
||||
+
|
||||
+# meta nfproto ipv6 reject with icmpx type admin-prohibited
|
||||
+inet test-inet input
|
||||
+ [ meta load nfproto => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x0000000a ]
|
||||
+ [ reject type 2 code 3 ]
|
||||
+
|
||||
--
|
||||
2.21.0
|
||||
|
71
SOURCES/0002-monitor-Drop-fake-XML-support.patch
Normal file
71
SOURCES/0002-monitor-Drop-fake-XML-support.patch
Normal file
@ -0,0 +1,71 @@
|
||||
From 7a2546c151233aceb7cb8628b234e2a7d2d7620f Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Thu, 11 Oct 2018 17:48:57 +0200
|
||||
Subject: [PATCH] monitor: Drop fake XML support
|
||||
|
||||
Since libnftnl doesn't support XML formatting, pretending to do so in
|
||||
nft monitor is pointless.
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 2194a76ed46a2f097c5ca5955e44544418866cc2)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/monitor.c | 6 ------
|
||||
1 file changed, 6 deletions(-)
|
||||
|
||||
diff --git a/src/monitor.c b/src/monitor.c
|
||||
index 4310c3b8dc434..d75410888e3d0 100644
|
||||
--- a/src/monitor.c
|
||||
+++ b/src/monitor.c
|
||||
@@ -203,7 +203,6 @@ static int netlink_events_table_cb(const struct nlmsghdr *nlh, int type,
|
||||
nftnl_table_get_u64(nlt, NFTNL_TABLE_HANDLE));
|
||||
nft_mon_print(monh, "\n");
|
||||
break;
|
||||
- case NFTNL_OUTPUT_XML:
|
||||
case NFTNL_OUTPUT_JSON:
|
||||
nftnl_table_fprintf(monh->ctx->octx->output_fp, nlt,
|
||||
monh->format, netlink_msg2nftnl_of(type));
|
||||
@@ -245,7 +244,6 @@ static int netlink_events_chain_cb(const struct nlmsghdr *nlh, int type,
|
||||
break;
|
||||
}
|
||||
break;
|
||||
- case NFTNL_OUTPUT_XML:
|
||||
case NFTNL_OUTPUT_JSON:
|
||||
nftnl_chain_fprintf(monh->ctx->octx->output_fp, nlc,
|
||||
monh->format, netlink_msg2nftnl_of(type));
|
||||
@@ -292,7 +290,6 @@ static int netlink_events_set_cb(const struct nlmsghdr *nlh, int type,
|
||||
break;
|
||||
}
|
||||
break;
|
||||
- case NFTNL_OUTPUT_XML:
|
||||
case NFTNL_OUTPUT_JSON:
|
||||
nftnl_set_fprintf(monh->ctx->octx->output_fp, nls,
|
||||
monh->format, netlink_msg2nftnl_of(type));
|
||||
@@ -441,7 +438,6 @@ static int netlink_events_setelem_cb(const struct nlmsghdr *nlh, int type,
|
||||
|
||||
set_free(dummyset);
|
||||
break;
|
||||
- case NFTNL_OUTPUT_XML:
|
||||
case NFTNL_OUTPUT_JSON:
|
||||
nftnl_set_fprintf(monh->ctx->octx->output_fp, nls,
|
||||
monh->format, netlink_msg2nftnl_of(type));
|
||||
@@ -486,7 +482,6 @@ static int netlink_events_obj_cb(const struct nlmsghdr *nlh, int type,
|
||||
break;
|
||||
}
|
||||
break;
|
||||
- case NFTNL_OUTPUT_XML:
|
||||
case NFTNL_OUTPUT_JSON:
|
||||
nftnl_obj_fprintf(monh->ctx->octx->output_fp, nlo,
|
||||
monh->format, netlink_msg2nftnl_of(type));
|
||||
@@ -542,7 +537,6 @@ static int netlink_events_rule_cb(const struct nlmsghdr *nlh, int type,
|
||||
break;
|
||||
}
|
||||
break;
|
||||
- case NFTNL_OUTPUT_XML:
|
||||
case NFTNL_OUTPUT_JSON:
|
||||
nftnl_rule_fprintf(monh->ctx->octx->output_fp, nlr,
|
||||
monh->format, netlink_msg2nftnl_of(type));
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,48 @@
|
||||
From 12169cc4179429a88fcc4ffab3e52adb0daf95fc Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Thu, 11 Oct 2018 17:48:58 +0200
|
||||
Subject: [PATCH] monitor: Drop 'update table' and 'update chain' cases
|
||||
|
||||
There seems to be no situation where this comes to play. Also, since
|
||||
there is no 'nft update table/chain' command, this is inconsistent with
|
||||
input.
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 62cea2e4ca9d6bc781ced6518810144a8d697275)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/monitor.c | 10 ++--------
|
||||
1 file changed, 2 insertions(+), 8 deletions(-)
|
||||
|
||||
diff --git a/src/monitor.c b/src/monitor.c
|
||||
index d75410888e3d0..3e70b89f0b2ab 100644
|
||||
--- a/src/monitor.c
|
||||
+++ b/src/monitor.c
|
||||
@@ -186,10 +186,7 @@ static int netlink_events_table_cb(const struct nlmsghdr *nlh, int type,
|
||||
switch (monh->format) {
|
||||
case NFTNL_OUTPUT_DEFAULT:
|
||||
if (type == NFT_MSG_NEWTABLE) {
|
||||
- if (nlh->nlmsg_flags & NLM_F_EXCL)
|
||||
- nft_mon_print(monh, "update table ");
|
||||
- else
|
||||
- nft_mon_print(monh, "add table ");
|
||||
+ nft_mon_print(monh, "add table ");
|
||||
} else {
|
||||
nft_mon_print(monh, "delete table ");
|
||||
}
|
||||
@@ -227,10 +224,7 @@ static int netlink_events_chain_cb(const struct nlmsghdr *nlh, int type,
|
||||
case NFTNL_OUTPUT_DEFAULT:
|
||||
switch (type) {
|
||||
case NFT_MSG_NEWCHAIN:
|
||||
- if (nlh->nlmsg_flags & NLM_F_EXCL)
|
||||
- nft_mon_print(monh, "update ");
|
||||
- else
|
||||
- nft_mon_print(monh, "add ");
|
||||
+ nft_mon_print(monh, "add ");
|
||||
|
||||
c = netlink_delinearize_chain(monh->ctx, nlc);
|
||||
chain_print_plain(c, monh->ctx->octx);
|
||||
--
|
||||
2.21.0
|
||||
|
164
SOURCES/0004-monitor-Fix-printing-of-ct-objects.patch
Normal file
164
SOURCES/0004-monitor-Fix-printing-of-ct-objects.patch
Normal file
@ -0,0 +1,164 @@
|
||||
From 892ec2ca97263ccfffb52f2943c2ab2ac34f476d Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Thu, 11 Oct 2018 17:48:59 +0200
|
||||
Subject: [PATCH] monitor: Fix printing of ct objects
|
||||
|
||||
Monitor output is supposed to be single lined without tabs, but ct
|
||||
object were printed with newlines and tabs hard-coded. Fixing this
|
||||
wasn't too hard given that there is 'stmt_separator' to also include
|
||||
semi-colons where required if newline was removed.
|
||||
|
||||
A more obvious mistake was position of object type in monitor output:
|
||||
Like with other object types, it has to occur between command and table
|
||||
spec. As a positive side-effect, this aligns ct objects better with
|
||||
others (see obj_type_name_array for instance).
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 90ed4fb3855f0d9d881b812c75e338e5e93081ba)
|
||||
|
||||
Conflicts:
|
||||
src/rule.c
|
||||
tests/shell/testcases/listing/0013objects_0
|
||||
tests/shell/testcases/nft-f/0017ct_timeout_obj_0
|
||||
tests/shell/testcases/nft-f/dumps/0017ct_timeout_obj_0.nft
|
||||
-> missing ct timeout support
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/json.c | 1 -
|
||||
src/rule.c | 26 ++++++++++++++++----------
|
||||
tests/monitor/testcases/object.t | 27 +++++++++++++++++++++++++++
|
||||
3 files changed, 43 insertions(+), 11 deletions(-)
|
||||
create mode 100644 tests/monitor/testcases/object.t
|
||||
|
||||
diff --git a/src/json.c b/src/json.c
|
||||
index b6e6ca9c6c383..af157212c081e 100644
|
||||
--- a/src/json.c
|
||||
+++ b/src/json.c
|
||||
@@ -264,7 +264,6 @@ static json_t *obj_print_json(struct output_ctx *octx, const struct obj *obj)
|
||||
json_decref(tmp);
|
||||
break;
|
||||
case NFT_OBJECT_CT_HELPER:
|
||||
- type = "ct helper";
|
||||
tmp = json_pack("{s:s, s:o, s:s}",
|
||||
"type", obj->ct_helper.name, "protocol",
|
||||
proto_name_json(obj->ct_helper.l4proto),
|
||||
diff --git a/src/rule.c b/src/rule.c
|
||||
index 56b956a4f8fec..eb06302d4f223 100644
|
||||
--- a/src/rule.c
|
||||
+++ b/src/rule.c
|
||||
@@ -1432,8 +1432,8 @@ static void obj_print_data(const struct obj *obj,
|
||||
nft_print(octx, "packets 0 bytes 0");
|
||||
break;
|
||||
}
|
||||
- nft_print(octx, "packets %" PRIu64 " bytes %" PRIu64 "",
|
||||
- obj->counter.packets, obj->counter.bytes);
|
||||
+ nft_print(octx, "packets %" PRIu64 " bytes %" PRIu64 "%s",
|
||||
+ obj->counter.packets, obj->counter.bytes, opts->nl);
|
||||
break;
|
||||
case NFT_OBJECT_QUOTA: {
|
||||
const char *data_unit;
|
||||
@@ -1452,18 +1452,22 @@ static void obj_print_data(const struct obj *obj,
|
||||
nft_print(octx, " used %" PRIu64 " %s",
|
||||
bytes, data_unit);
|
||||
}
|
||||
+ nft_print(octx, "%s", opts->nl);
|
||||
}
|
||||
break;
|
||||
case NFT_OBJECT_CT_HELPER:
|
||||
- nft_print(octx, "ct helper %s {", obj->handle.obj.name);
|
||||
+ nft_print(octx, " %s {", obj->handle.obj.name);
|
||||
if (octx->handle > 0)
|
||||
nft_print(octx, " # handle %" PRIu64, obj->handle.handle.id);
|
||||
nft_print(octx, "%s", opts->nl);
|
||||
- nft_print(octx, "\t\ttype \"%s\" protocol ",
|
||||
- obj->ct_helper.name);
|
||||
+ nft_print(octx, "%s%stype \"%s\" protocol ",
|
||||
+ opts->tab, opts->tab, obj->ct_helper.name);
|
||||
print_proto_name_proto(obj->ct_helper.l4proto, octx);
|
||||
- nft_print(octx, "\t\tl3proto %s",
|
||||
- family2str(obj->ct_helper.l3proto));
|
||||
+ nft_print(octx, "%s", opts->stmt_separator);
|
||||
+ nft_print(octx, "%s%sl3proto %s%s",
|
||||
+ opts->tab, opts->tab,
|
||||
+ family2str(obj->ct_helper.l3proto),
|
||||
+ opts->stmt_separator);
|
||||
break;
|
||||
case NFT_OBJECT_LIMIT: {
|
||||
bool inv = obj->limit.flags & NFT_LIMIT_F_INV;
|
||||
@@ -1498,10 +1502,11 @@ static void obj_print_data(const struct obj *obj,
|
||||
}
|
||||
break;
|
||||
}
|
||||
+ nft_print(octx, "%s", opts->nl);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
- nft_print(octx, "unknown {%s", opts->nl);
|
||||
+ nft_print(octx, " unknown {%s", opts->nl);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -1509,7 +1514,7 @@ static void obj_print_data(const struct obj *obj,
|
||||
static const char * const obj_type_name_array[] = {
|
||||
[NFT_OBJECT_COUNTER] = "counter",
|
||||
[NFT_OBJECT_QUOTA] = "quota",
|
||||
- [NFT_OBJECT_CT_HELPER] = "",
|
||||
+ [NFT_OBJECT_CT_HELPER] = "ct helper",
|
||||
[NFT_OBJECT_LIMIT] = "limit",
|
||||
};
|
||||
|
||||
@@ -1548,7 +1553,7 @@ static void obj_print_declaration(const struct obj *obj,
|
||||
|
||||
obj_print_data(obj, opts, octx);
|
||||
|
||||
- nft_print(octx, "%s%s}%s", opts->nl, opts->tab, opts->nl);
|
||||
+ nft_print(octx, "%s}%s", opts->tab, opts->nl);
|
||||
}
|
||||
|
||||
void obj_print(const struct obj *obj, struct output_ctx *octx)
|
||||
@@ -1569,6 +1574,7 @@ void obj_print_plain(const struct obj *obj, struct output_ctx *octx)
|
||||
.nl = " ",
|
||||
.table = obj->handle.table.name,
|
||||
.family = family2str(obj->handle.family),
|
||||
+ .stmt_separator = "; ",
|
||||
};
|
||||
|
||||
obj_print_declaration(obj, &opts, octx);
|
||||
diff --git a/tests/monitor/testcases/object.t b/tests/monitor/testcases/object.t
|
||||
new file mode 100644
|
||||
index 0000000000000..7b88409775796
|
||||
--- /dev/null
|
||||
+++ b/tests/monitor/testcases/object.t
|
||||
@@ -0,0 +1,27 @@
|
||||
+# first the setup
|
||||
+I add table ip t
|
||||
+O -
|
||||
+
|
||||
+I add counter ip t c
|
||||
+O add counter ip t c { packets 0 bytes 0 }
|
||||
+
|
||||
+I delete counter ip t c
|
||||
+O -
|
||||
+
|
||||
+I add quota ip t q 25 mbytes
|
||||
+O add quota ip t q { 25 mbytes }
|
||||
+
|
||||
+I delete quota ip t q
|
||||
+O -
|
||||
+
|
||||
+I add limit ip t l rate 1/second
|
||||
+O add limit ip t l { rate 1/second }
|
||||
+
|
||||
+I delete limit ip t l
|
||||
+O -
|
||||
+
|
||||
+I add ct helper ip t cth { type "sip" protocol tcp; l3proto ip; }
|
||||
+O -
|
||||
+
|
||||
+I delete ct helper ip t cth
|
||||
+O -
|
||||
--
|
||||
2.21.0
|
||||
|
652
SOURCES/0005-monitor-Use-libnftables-JSON-output.patch
Normal file
652
SOURCES/0005-monitor-Use-libnftables-JSON-output.patch
Normal file
@ -0,0 +1,652 @@
|
||||
From 53693c43d94dddf1ae1a0e69bfa953fba2c098e0 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Thu, 11 Oct 2018 17:49:00 +0200
|
||||
Subject: [PATCH] monitor: Use libnftables JSON output
|
||||
|
||||
This switches 'nft monitor' JSON output from using libnftnl's to
|
||||
libnftables' implementation.
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 9e88aae28e9f44d010f3ecf7577357f4c0e7d622)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
include/json.h | 51 +++++++++
|
||||
src/json.c | 57 ++++++++++
|
||||
src/monitor.c | 281 +++++++++++++++++++++++++------------------------
|
||||
src/rule.c | 2 -
|
||||
4 files changed, 251 insertions(+), 140 deletions(-)
|
||||
|
||||
diff --git a/include/json.h b/include/json.h
|
||||
index ae3938142aeac..af0f72f13dd60 100644
|
||||
--- a/include/json.h
|
||||
+++ b/include/json.h
|
||||
@@ -9,9 +9,11 @@ struct expr;
|
||||
struct netlink_ctx;
|
||||
struct rule;
|
||||
struct set;
|
||||
+struct obj;
|
||||
struct stmt;
|
||||
struct symbol_table;
|
||||
struct table;
|
||||
+struct netlink_mon_handler;
|
||||
|
||||
#ifdef HAVE_LIBJANSSON
|
||||
|
||||
@@ -81,6 +83,19 @@ int nft_parse_json_buffer(struct nft_ctx *nft, char *buf, size_t buflen,
|
||||
int nft_parse_json_filename(struct nft_ctx *nft, const char *filename,
|
||||
struct list_head *msgs, struct list_head *cmds);
|
||||
|
||||
+void monitor_print_table_json(struct netlink_mon_handler *monh,
|
||||
+ const char *cmd, struct table *t);
|
||||
+void monitor_print_chain_json(struct netlink_mon_handler *monh,
|
||||
+ const char *cmd, struct chain *c);
|
||||
+void monitor_print_set_json(struct netlink_mon_handler *monh,
|
||||
+ const char *cmd, struct set *s);
|
||||
+void monitor_print_element_json(struct netlink_mon_handler *monh,
|
||||
+ const char *cmd, struct set *s);
|
||||
+void monitor_print_obj_json(struct netlink_mon_handler *monh,
|
||||
+ const char *cmd, struct obj *o);
|
||||
+void monitor_print_rule_json(struct netlink_mon_handler *monh,
|
||||
+ const char *cmd, struct rule *r);
|
||||
+
|
||||
#else /* ! HAVE_LIBJANSSON */
|
||||
|
||||
typedef void json_t;
|
||||
@@ -176,6 +191,42 @@ nft_parse_json_filename(struct nft_ctx *nft, const char *filename,
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
+static inline void monitor_print_table_json(struct netlink_mon_handler *monh,
|
||||
+ const char *cmd, struct table *t)
|
||||
+{
|
||||
+ /* empty */
|
||||
+}
|
||||
+
|
||||
+static inline void monitor_print_chain_json(struct netlink_mon_handler *monh,
|
||||
+ const char *cmd, struct chain *c)
|
||||
+{
|
||||
+ /* empty */
|
||||
+}
|
||||
+
|
||||
+static inline void monitor_print_set_json(struct netlink_mon_handler *monh,
|
||||
+ const char *cmd, struct set *s)
|
||||
+{
|
||||
+ /* empty */
|
||||
+}
|
||||
+
|
||||
+static inline void monitor_print_element_json(struct netlink_mon_handler *monh,
|
||||
+ const char *cmd, struct set *s)
|
||||
+{
|
||||
+ /* empty */
|
||||
+}
|
||||
+
|
||||
+static inline void monitor_print_obj_json(struct netlink_mon_handler *monh,
|
||||
+ const char *cmd, struct obj *o)
|
||||
+{
|
||||
+ /* empty */
|
||||
+}
|
||||
+
|
||||
+static inline void monitor_print_rule_json(struct netlink_mon_handler *monh,
|
||||
+ const char *cmd, struct rule *r)
|
||||
+{
|
||||
+ /* empty */
|
||||
+}
|
||||
+
|
||||
#endif /* HAVE_LIBJANSSON */
|
||||
|
||||
#endif /* NFTABLES_JSON_H */
|
||||
diff --git a/src/json.c b/src/json.c
|
||||
index af157212c081e..7d89754bd666d 100644
|
||||
--- a/src/json.c
|
||||
+++ b/src/json.c
|
||||
@@ -147,6 +147,19 @@ static json_t *set_print_json(struct output_ctx *octx, const struct set *set)
|
||||
return json_pack("{s:o}", type, root);
|
||||
}
|
||||
|
||||
+/* XXX: Merge with set_print_json()? */
|
||||
+static json_t *element_print_json(struct output_ctx *octx,
|
||||
+ const struct set *set)
|
||||
+{
|
||||
+ json_t *root = expr_print_json(set->init, octx);
|
||||
+
|
||||
+ return json_pack("{s: {s:s, s:s, s:s, s:o}}", "element",
|
||||
+ "family", family2str(set->handle.family),
|
||||
+ "table", set->handle.table.name,
|
||||
+ "name", set->handle.set.name,
|
||||
+ "elem", root);
|
||||
+}
|
||||
+
|
||||
static json_t *stmt_print_json(const struct stmt *stmt, struct output_ctx *octx)
|
||||
{
|
||||
char buf[1024];
|
||||
@@ -1554,3 +1567,47 @@ int do_command_list_json(struct netlink_ctx *ctx, struct cmd *cmd)
|
||||
json_decref(root);
|
||||
return 0;
|
||||
}
|
||||
+
|
||||
+static void monitor_print_json(struct netlink_mon_handler *monh,
|
||||
+ const char *cmd, json_t *obj)
|
||||
+{
|
||||
+ obj = json_pack("{s:o}", cmd, obj);
|
||||
+ json_dumpf(obj, monh->ctx->octx->output_fp, 0);
|
||||
+ json_decref(obj);
|
||||
+}
|
||||
+
|
||||
+void monitor_print_table_json(struct netlink_mon_handler *monh,
|
||||
+ const char *cmd, struct table *t)
|
||||
+{
|
||||
+ monitor_print_json(monh, cmd, table_print_json(monh->ctx->octx, t));
|
||||
+}
|
||||
+
|
||||
+void monitor_print_chain_json(struct netlink_mon_handler *monh,
|
||||
+ const char *cmd, struct chain *c)
|
||||
+{
|
||||
+ monitor_print_json(monh, cmd, chain_print_json(monh->ctx->octx, c));
|
||||
+}
|
||||
+
|
||||
+void monitor_print_set_json(struct netlink_mon_handler *monh,
|
||||
+ const char *cmd, struct set *s)
|
||||
+{
|
||||
+ monitor_print_json(monh, cmd, set_print_json(monh->ctx->octx, s));
|
||||
+}
|
||||
+
|
||||
+void monitor_print_element_json(struct netlink_mon_handler *monh,
|
||||
+ const char *cmd, struct set *s)
|
||||
+{
|
||||
+ monitor_print_json(monh, cmd, element_print_json(monh->ctx->octx, s));
|
||||
+}
|
||||
+
|
||||
+void monitor_print_obj_json(struct netlink_mon_handler *monh,
|
||||
+ const char *cmd, struct obj *o)
|
||||
+{
|
||||
+ monitor_print_json(monh, cmd, obj_print_json(monh->ctx->octx, o));
|
||||
+}
|
||||
+
|
||||
+void monitor_print_rule_json(struct netlink_mon_handler *monh,
|
||||
+ const char *cmd, struct rule *r)
|
||||
+{
|
||||
+ monitor_print_json(monh, cmd, rule_print_json(monh->ctx->octx, r));
|
||||
+}
|
||||
diff --git a/src/monitor.c b/src/monitor.c
|
||||
index 3e70b89f0b2ab..213c40d119b4c 100644
|
||||
--- a/src/monitor.c
|
||||
+++ b/src/monitor.c
|
||||
@@ -38,6 +38,7 @@
|
||||
#include <utils.h>
|
||||
#include <erec.h>
|
||||
#include <iface.h>
|
||||
+#include <json.h>
|
||||
|
||||
#define nft_mon_print(monh, ...) nft_print(monh->ctx->octx, __VA_ARGS__)
|
||||
|
||||
@@ -127,18 +128,39 @@ static uint32_t netlink_msg2nftnl_of(uint32_t msg)
|
||||
case NFT_MSG_NEWSET:
|
||||
case NFT_MSG_NEWSETELEM:
|
||||
case NFT_MSG_NEWRULE:
|
||||
+ case NFT_MSG_NEWOBJ:
|
||||
+ case NFT_MSG_NEWFLOWTABLE:
|
||||
return NFTNL_OF_EVENT_NEW;
|
||||
case NFT_MSG_DELTABLE:
|
||||
case NFT_MSG_DELCHAIN:
|
||||
case NFT_MSG_DELSET:
|
||||
case NFT_MSG_DELSETELEM:
|
||||
case NFT_MSG_DELRULE:
|
||||
+ case NFT_MSG_DELOBJ:
|
||||
+ case NFT_MSG_DELFLOWTABLE:
|
||||
return NFTNL_OF_EVENT_DEL;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
+static const char *nftnl_of2cmd(uint32_t of)
|
||||
+{
|
||||
+ switch (of) {
|
||||
+ case NFTNL_OF_EVENT_NEW:
|
||||
+ return "add";
|
||||
+ case NFTNL_OF_EVENT_DEL:
|
||||
+ return "delete";
|
||||
+ default:
|
||||
+ return "???";
|
||||
+ }
|
||||
+}
|
||||
+
|
||||
+static const char *netlink_msg2cmd(uint32_t msg)
|
||||
+{
|
||||
+ return nftnl_of2cmd(netlink_msg2nftnl_of(msg));
|
||||
+}
|
||||
+
|
||||
static void nlr_for_each_set(struct nftnl_rule *nlr,
|
||||
void (*cb)(struct set *s, void *data),
|
||||
void *data, struct nft_cache *cache)
|
||||
@@ -179,34 +201,29 @@ static int netlink_events_table_cb(const struct nlmsghdr *nlh, int type,
|
||||
struct netlink_mon_handler *monh)
|
||||
{
|
||||
struct nftnl_table *nlt;
|
||||
- uint32_t family;
|
||||
+ struct table *t;
|
||||
+ const char *cmd;
|
||||
|
||||
nlt = netlink_table_alloc(nlh);
|
||||
+ t = netlink_delinearize_table(monh->ctx, nlt);
|
||||
+ cmd = netlink_msg2cmd(type);
|
||||
|
||||
switch (monh->format) {
|
||||
case NFTNL_OUTPUT_DEFAULT:
|
||||
- if (type == NFT_MSG_NEWTABLE) {
|
||||
- nft_mon_print(monh, "add table ");
|
||||
- } else {
|
||||
- nft_mon_print(monh, "delete table ");
|
||||
- }
|
||||
+ nft_mon_print(monh, "%s table ", cmd);
|
||||
|
||||
- family = nftnl_table_get_u32(nlt, NFTNL_TABLE_FAMILY);
|
||||
-
|
||||
- nft_mon_print(monh, "%s %s", family2str(family),
|
||||
- nftnl_table_get_str(nlt, NFTNL_TABLE_NAME));
|
||||
+ nft_mon_print(monh, "%s %s", family2str(t->handle.family),
|
||||
+ t->handle.table.name);
|
||||
if (monh->ctx->octx->handle > 0)
|
||||
nft_mon_print(monh, " # handle %" PRIu64 "",
|
||||
- nftnl_table_get_u64(nlt, NFTNL_TABLE_HANDLE));
|
||||
- nft_mon_print(monh, "\n");
|
||||
+ t->handle.handle.id);
|
||||
break;
|
||||
case NFTNL_OUTPUT_JSON:
|
||||
- nftnl_table_fprintf(monh->ctx->octx->output_fp, nlt,
|
||||
- monh->format, netlink_msg2nftnl_of(type));
|
||||
- nft_mon_print(monh, "\n");
|
||||
+ monitor_print_table_json(monh, cmd, t);
|
||||
break;
|
||||
}
|
||||
-
|
||||
+ nft_mon_print(monh, "\n");
|
||||
+ table_free(t);
|
||||
nftnl_table_free(nlt);
|
||||
return MNL_CB_OK;
|
||||
}
|
||||
@@ -216,35 +233,34 @@ static int netlink_events_chain_cb(const struct nlmsghdr *nlh, int type,
|
||||
{
|
||||
struct nftnl_chain *nlc;
|
||||
struct chain *c;
|
||||
- uint32_t family;
|
||||
+ const char *cmd;
|
||||
|
||||
nlc = netlink_chain_alloc(nlh);
|
||||
+ c = netlink_delinearize_chain(monh->ctx, nlc);
|
||||
+ cmd = netlink_msg2cmd(type);
|
||||
|
||||
switch (monh->format) {
|
||||
case NFTNL_OUTPUT_DEFAULT:
|
||||
+ nft_mon_print(monh, "%s ", cmd);
|
||||
+
|
||||
switch (type) {
|
||||
case NFT_MSG_NEWCHAIN:
|
||||
- nft_mon_print(monh, "add ");
|
||||
-
|
||||
- c = netlink_delinearize_chain(monh->ctx, nlc);
|
||||
chain_print_plain(c, monh->ctx->octx);
|
||||
- chain_free(c);
|
||||
break;
|
||||
case NFT_MSG_DELCHAIN:
|
||||
- family = nftnl_chain_get_u32(nlc, NFTNL_CHAIN_FAMILY);
|
||||
- nft_mon_print(monh, "delete chain %s %s %s\n", family2str(family),
|
||||
- nftnl_chain_get_str(nlc, NFTNL_CHAIN_TABLE),
|
||||
- nftnl_chain_get_str(nlc, NFTNL_CHAIN_NAME));
|
||||
+ nft_mon_print(monh, "chain %s %s %s",
|
||||
+ family2str(c->handle.family),
|
||||
+ c->handle.table.name,
|
||||
+ c->handle.chain.name);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case NFTNL_OUTPUT_JSON:
|
||||
- nftnl_chain_fprintf(monh->ctx->octx->output_fp, nlc,
|
||||
- monh->format, netlink_msg2nftnl_of(type));
|
||||
- nft_mon_print(monh, "\n");
|
||||
+ monitor_print_chain_json(monh, cmd, c);
|
||||
break;
|
||||
}
|
||||
-
|
||||
+ nft_mon_print(monh, "\n");
|
||||
+ chain_free(c);
|
||||
nftnl_chain_free(nlc);
|
||||
return MNL_CB_OK;
|
||||
}
|
||||
@@ -253,43 +269,44 @@ static int netlink_events_set_cb(const struct nlmsghdr *nlh, int type,
|
||||
struct netlink_mon_handler *monh)
|
||||
{
|
||||
struct nftnl_set *nls;
|
||||
+ const char *family, *cmd;
|
||||
struct set *set;
|
||||
- uint32_t family, flags;
|
||||
+ uint32_t flags;
|
||||
|
||||
nls = netlink_set_alloc(nlh);
|
||||
flags = nftnl_set_get_u32(nls, NFTNL_SET_FLAGS);
|
||||
if (flags & NFT_SET_ANONYMOUS)
|
||||
goto out;
|
||||
|
||||
+ set = netlink_delinearize_set(monh->ctx, nls);
|
||||
+ if (set == NULL) {
|
||||
+ nftnl_set_free(nls);
|
||||
+ return MNL_CB_ERROR;
|
||||
+ }
|
||||
+ family = family2str(set->handle.family);
|
||||
+ cmd = netlink_msg2cmd(type);
|
||||
+
|
||||
switch (monh->format) {
|
||||
case NFTNL_OUTPUT_DEFAULT:
|
||||
+ nft_mon_print(monh, "%s ", cmd);
|
||||
+
|
||||
switch (type) {
|
||||
case NFT_MSG_NEWSET:
|
||||
- nft_mon_print(monh, "add ");
|
||||
- set = netlink_delinearize_set(monh->ctx, nls);
|
||||
- if (set == NULL) {
|
||||
- nftnl_set_free(nls);
|
||||
- return MNL_CB_ERROR;
|
||||
- }
|
||||
set_print_plain(set, monh->ctx->octx);
|
||||
- set_free(set);
|
||||
- nft_mon_print(monh, "\n");
|
||||
break;
|
||||
case NFT_MSG_DELSET:
|
||||
- family = nftnl_set_get_u32(nls, NFTNL_SET_FAMILY);
|
||||
- nft_mon_print(monh, "delete set %s %s %s\n",
|
||||
- family2str(family),
|
||||
- nftnl_set_get_str(nls, NFTNL_SET_TABLE),
|
||||
- nftnl_set_get_str(nls, NFTNL_SET_NAME));
|
||||
+ nft_mon_print(monh, "set %s %s %s", family,
|
||||
+ set->handle.table.name,
|
||||
+ set->handle.set.name);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case NFTNL_OUTPUT_JSON:
|
||||
- nftnl_set_fprintf(monh->ctx->octx->output_fp, nls,
|
||||
- monh->format, netlink_msg2nftnl_of(type));
|
||||
- nft_mon_print(monh, "\n");
|
||||
+ monitor_print_set_json(monh, cmd, set);
|
||||
break;
|
||||
}
|
||||
+ nft_mon_print(monh, "\n");
|
||||
+ set_free(set);
|
||||
out:
|
||||
nftnl_set_free(nls);
|
||||
return MNL_CB_OK;
|
||||
@@ -360,13 +377,14 @@ static int netlink_events_setelem_cb(const struct nlmsghdr *nlh, int type,
|
||||
struct nftnl_set *nls;
|
||||
struct set *dummyset;
|
||||
struct set *set;
|
||||
- const char *setname, *table;
|
||||
+ const char *setname, *table, *cmd;
|
||||
uint32_t family;
|
||||
|
||||
nls = netlink_setelem_alloc(nlh);
|
||||
table = nftnl_set_get_str(nls, NFTNL_SET_TABLE);
|
||||
setname = nftnl_set_get_str(nls, NFTNL_SET_NAME);
|
||||
family = nftnl_set_get_u32(nls, NFTNL_SET_FAMILY);
|
||||
+ cmd = netlink_msg2cmd(type);
|
||||
|
||||
set = set_lookup_global(family, table, setname, monh->cache);
|
||||
if (set == NULL) {
|
||||
@@ -374,70 +392,63 @@ static int netlink_events_setelem_cb(const struct nlmsghdr *nlh, int type,
|
||||
goto out;
|
||||
}
|
||||
|
||||
- switch (monh->format) {
|
||||
- case NFTNL_OUTPUT_DEFAULT:
|
||||
- if (set->flags & NFT_SET_ANONYMOUS)
|
||||
- goto out;
|
||||
-
|
||||
- /* we want to 'delinearize' the set_elem, but don't
|
||||
- * modify the original cached set. This path is only
|
||||
- * used by named sets, so use a dummy set.
|
||||
- */
|
||||
- dummyset = set_alloc(monh->loc);
|
||||
- dummyset->key = expr_clone(set->key);
|
||||
- dummyset->datatype = set->datatype;
|
||||
- dummyset->flags = set->flags;
|
||||
- dummyset->init = set_expr_alloc(monh->loc, set);
|
||||
+ if (set->flags & NFT_SET_ANONYMOUS)
|
||||
+ goto out;
|
||||
|
||||
- nlsei = nftnl_set_elems_iter_create(nls);
|
||||
- if (nlsei == NULL)
|
||||
- memory_allocation_error();
|
||||
+ /* we want to 'delinearize' the set_elem, but don't
|
||||
+ * modify the original cached set. This path is only
|
||||
+ * used by named sets, so use a dummy set.
|
||||
+ */
|
||||
+ dummyset = set_alloc(monh->loc);
|
||||
+ dummyset->key = expr_clone(set->key);
|
||||
+ dummyset->datatype = set->datatype;
|
||||
+ dummyset->flags = set->flags;
|
||||
+ dummyset->init = set_expr_alloc(monh->loc, set);
|
||||
|
||||
- nlse = nftnl_set_elems_iter_next(nlsei);
|
||||
- while (nlse != NULL) {
|
||||
- if (netlink_event_ignore_range_event(nlse)) {
|
||||
- set_free(dummyset);
|
||||
- nftnl_set_elems_iter_destroy(nlsei);
|
||||
- goto out;
|
||||
- }
|
||||
- if (netlink_delinearize_setelem(nlse, dummyset,
|
||||
- monh->cache) < 0) {
|
||||
- set_free(dummyset);
|
||||
- nftnl_set_elems_iter_destroy(nlsei);
|
||||
- goto out;
|
||||
- }
|
||||
- nlse = nftnl_set_elems_iter_next(nlsei);
|
||||
- }
|
||||
- nftnl_set_elems_iter_destroy(nlsei);
|
||||
+ nlsei = nftnl_set_elems_iter_create(nls);
|
||||
+ if (nlsei == NULL)
|
||||
+ memory_allocation_error();
|
||||
|
||||
- if (netlink_event_range_cache(set, dummyset)) {
|
||||
+ nlse = nftnl_set_elems_iter_next(nlsei);
|
||||
+ while (nlse != NULL) {
|
||||
+ if (netlink_event_ignore_range_event(nlse)) {
|
||||
set_free(dummyset);
|
||||
+ nftnl_set_elems_iter_destroy(nlsei);
|
||||
goto out;
|
||||
}
|
||||
-
|
||||
- switch (type) {
|
||||
- case NFT_MSG_NEWSETELEM:
|
||||
- nft_mon_print(monh, "add ");
|
||||
- break;
|
||||
- case NFT_MSG_DELSETELEM:
|
||||
- nft_mon_print(monh, "delete ");
|
||||
- break;
|
||||
- default:
|
||||
+ if (netlink_delinearize_setelem(nlse, dummyset,
|
||||
+ monh->cache) < 0) {
|
||||
set_free(dummyset);
|
||||
+ nftnl_set_elems_iter_destroy(nlsei);
|
||||
goto out;
|
||||
}
|
||||
- nft_mon_print(monh, "element %s %s %s ", family2str(family), table, setname);
|
||||
- expr_print(dummyset->init, monh->ctx->octx);
|
||||
- nft_mon_print(monh, "\n");
|
||||
+ nlse = nftnl_set_elems_iter_next(nlsei);
|
||||
+ }
|
||||
+ nftnl_set_elems_iter_destroy(nlsei);
|
||||
|
||||
+ if (netlink_event_range_cache(set, dummyset)) {
|
||||
set_free(dummyset);
|
||||
+ goto out;
|
||||
+ }
|
||||
+
|
||||
+ switch (monh->format) {
|
||||
+ case NFTNL_OUTPUT_DEFAULT:
|
||||
+ nft_mon_print(monh, "%s element %s %s %s ",
|
||||
+ cmd, family2str(family), table, setname);
|
||||
+ expr_print(dummyset->init, monh->ctx->octx);
|
||||
break;
|
||||
case NFTNL_OUTPUT_JSON:
|
||||
- nftnl_set_fprintf(monh->ctx->octx->output_fp, nls,
|
||||
- monh->format, netlink_msg2nftnl_of(type));
|
||||
- nft_mon_print(monh, "\n");
|
||||
+ dummyset->handle.family = family;
|
||||
+ dummyset->handle.set.name = setname;
|
||||
+ dummyset->handle.table.name = table;
|
||||
+ monitor_print_element_json(monh, cmd, dummyset);
|
||||
+ /* prevent set_free() from trying to free those */
|
||||
+ dummyset->handle.set.name = NULL;
|
||||
+ dummyset->handle.table.name = NULL;
|
||||
break;
|
||||
}
|
||||
+ nft_mon_print(monh, "\n");
|
||||
+ set_free(dummyset);
|
||||
out:
|
||||
nftnl_set_free(nls);
|
||||
return MNL_CB_OK;
|
||||
@@ -446,43 +457,43 @@ out:
|
||||
static int netlink_events_obj_cb(const struct nlmsghdr *nlh, int type,
|
||||
struct netlink_mon_handler *monh)
|
||||
{
|
||||
+ const char *family, *cmd;
|
||||
struct nftnl_obj *nlo;
|
||||
- uint32_t family;
|
||||
struct obj *obj;
|
||||
|
||||
nlo = netlink_obj_alloc(nlh);
|
||||
|
||||
+ obj = netlink_delinearize_obj(monh->ctx, nlo);
|
||||
+ if (obj == NULL) {
|
||||
+ nftnl_obj_free(nlo);
|
||||
+ return MNL_CB_ERROR;
|
||||
+ }
|
||||
+ family = family2str(obj->handle.family);
|
||||
+ cmd = netlink_msg2cmd(type);
|
||||
+
|
||||
switch (monh->format) {
|
||||
case NFTNL_OUTPUT_DEFAULT:
|
||||
+ nft_mon_print(monh, "%s ", cmd);
|
||||
+
|
||||
switch (type) {
|
||||
case NFT_MSG_NEWOBJ:
|
||||
- nft_mon_print(monh, "add ");
|
||||
- obj = netlink_delinearize_obj(monh->ctx, nlo);
|
||||
- if (obj == NULL) {
|
||||
- nftnl_obj_free(nlo);
|
||||
- return MNL_CB_ERROR;
|
||||
- }
|
||||
obj_print_plain(obj, monh->ctx->octx);
|
||||
- obj_free(obj);
|
||||
- nft_mon_print(monh, "\n");
|
||||
break;
|
||||
case NFT_MSG_DELOBJ:
|
||||
- family = nftnl_obj_get_u32(nlo, NFTNL_OBJ_FAMILY);
|
||||
- nft_mon_print(monh, "delete %s %s %s %s\n",
|
||||
- obj_type_name(nftnl_obj_get_u32(nlo, NFTNL_OBJ_TYPE)),
|
||||
- family2str(family),
|
||||
- nftnl_obj_get_str(nlo, NFTNL_OBJ_TABLE),
|
||||
- nftnl_obj_get_str(nlo, NFTNL_OBJ_NAME));
|
||||
+ nft_mon_print(monh, "%s %s %s %s",
|
||||
+ obj_type_name(obj->type),
|
||||
+ family,
|
||||
+ obj->handle.table.name,
|
||||
+ obj->handle.obj.name);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case NFTNL_OUTPUT_JSON:
|
||||
- nftnl_obj_fprintf(monh->ctx->octx->output_fp, nlo,
|
||||
- monh->format, netlink_msg2nftnl_of(type));
|
||||
- nft_mon_print(monh, "\n");
|
||||
+ monitor_print_obj_json(monh, cmd, obj);
|
||||
break;
|
||||
}
|
||||
-
|
||||
+ nft_mon_print(monh, "\n");
|
||||
+ obj_free(obj);
|
||||
nftnl_obj_free(nlo);
|
||||
return MNL_CB_OK;
|
||||
}
|
||||
@@ -496,48 +507,42 @@ static void rule_map_decompose_cb(struct set *s, void *data)
|
||||
static int netlink_events_rule_cb(const struct nlmsghdr *nlh, int type,
|
||||
struct netlink_mon_handler *monh)
|
||||
{
|
||||
+ const char *family, *cmd;
|
||||
struct nftnl_rule *nlr;
|
||||
- const char *family;
|
||||
- const char *table;
|
||||
- const char *chain;
|
||||
struct rule *r;
|
||||
- uint64_t handle;
|
||||
- uint32_t fam;
|
||||
|
||||
nlr = netlink_rule_alloc(nlh);
|
||||
+ r = netlink_delinearize_rule(monh->ctx, nlr);
|
||||
+ nlr_for_each_set(nlr, rule_map_decompose_cb, NULL, monh->cache);
|
||||
+ cmd = netlink_msg2cmd(type);
|
||||
+
|
||||
switch (monh->format) {
|
||||
case NFTNL_OUTPUT_DEFAULT:
|
||||
- fam = nftnl_rule_get_u32(nlr, NFTNL_RULE_FAMILY);
|
||||
- family = family2str(fam);
|
||||
- table = nftnl_rule_get_str(nlr, NFTNL_RULE_TABLE);
|
||||
- chain = nftnl_rule_get_str(nlr, NFTNL_RULE_CHAIN);
|
||||
- handle = nftnl_rule_get_u64(nlr, NFTNL_RULE_HANDLE);
|
||||
+ family = family2str(r->handle.family);
|
||||
+
|
||||
+ nft_mon_print(monh, "%s rule %s %s %s ",
|
||||
+ cmd,
|
||||
+ family,
|
||||
+ r->handle.table.name,
|
||||
+ r->handle.chain.name);
|
||||
|
||||
switch (type) {
|
||||
case NFT_MSG_NEWRULE:
|
||||
- r = netlink_delinearize_rule(monh->ctx, nlr);
|
||||
- nlr_for_each_set(nlr, rule_map_decompose_cb, NULL,
|
||||
- monh->cache);
|
||||
-
|
||||
- nft_mon_print(monh, "add rule %s %s %s ", family, table, chain);
|
||||
rule_print(r, monh->ctx->octx);
|
||||
- nft_mon_print(monh, "\n");
|
||||
|
||||
- rule_free(r);
|
||||
break;
|
||||
case NFT_MSG_DELRULE:
|
||||
- nft_mon_print(monh, "delete rule %s %s %s handle %u\n",
|
||||
- family, table, chain, (unsigned int)handle);
|
||||
+ nft_mon_print(monh, "handle %" PRIu64,
|
||||
+ r->handle.handle.id);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case NFTNL_OUTPUT_JSON:
|
||||
- nftnl_rule_fprintf(monh->ctx->octx->output_fp, nlr,
|
||||
- monh->format, netlink_msg2nftnl_of(type));
|
||||
- nft_mon_print(monh, "\n");
|
||||
+ monitor_print_rule_json(monh, cmd, r);
|
||||
break;
|
||||
}
|
||||
-
|
||||
+ nft_mon_print(monh, "\n");
|
||||
+ rule_free(r);
|
||||
nftnl_rule_free(nlr);
|
||||
return MNL_CB_OK;
|
||||
}
|
||||
diff --git a/src/rule.c b/src/rule.c
|
||||
index eb06302d4f223..3065cc5474bbf 100644
|
||||
--- a/src/rule.c
|
||||
+++ b/src/rule.c
|
||||
@@ -812,8 +812,6 @@ void chain_print_plain(const struct chain *chain, struct output_ctx *octx)
|
||||
}
|
||||
if (octx->handle > 0)
|
||||
nft_print(octx, " # handle %" PRIu64, chain->handle.handle.id);
|
||||
-
|
||||
- nft_print(octx, "\n");
|
||||
}
|
||||
|
||||
struct table *table_alloc(void)
|
||||
--
|
||||
2.21.0
|
||||
|
368
SOURCES/0006-tests-monitor-Test-JSON-output-as-well.patch
Normal file
368
SOURCES/0006-tests-monitor-Test-JSON-output-as-well.patch
Normal file
@ -0,0 +1,368 @@
|
||||
From 24b0395e8d26ed9f7eb1716249a8e07f9f84571d Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Thu, 11 Oct 2018 17:49:01 +0200
|
||||
Subject: [PATCH] tests: monitor: Test JSON output as well
|
||||
|
||||
Enhance monitor test suite to test check JSON output as well. Note that
|
||||
for now there is no support for --echo output testing with JSON.
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 16694bdd4c01ae001b60fbc18d45200fffc84de5)
|
||||
|
||||
Conflicts:
|
||||
tests/monitor/testcases/object.t
|
||||
-> Missing ct timeout support
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
tests/monitor/README | 27 +++++++++++-----
|
||||
tests/monitor/run-tests.sh | 45 ++++++++++++++++++++++++--
|
||||
tests/monitor/testcases/object.t | 11 +++++++
|
||||
tests/monitor/testcases/set-maps.t | 4 +++
|
||||
tests/monitor/testcases/set-mixed.t | 7 ++++
|
||||
tests/monitor/testcases/set-multiple.t | 5 +++
|
||||
tests/monitor/testcases/set-simple.t | 19 +++++++++++
|
||||
tests/monitor/testcases/simple.t | 8 +++++
|
||||
8 files changed, 115 insertions(+), 11 deletions(-)
|
||||
|
||||
diff --git a/tests/monitor/README b/tests/monitor/README
|
||||
index 9c5e37f5c75c9..39096a7fae078 100644
|
||||
--- a/tests/monitor/README
|
||||
+++ b/tests/monitor/README
|
||||
@@ -15,13 +15,14 @@ to be established manually, i.e. in order to test monitor output when adding a
|
||||
chain, the table containing it has to be created first. In between each
|
||||
testcase, rule set is flushed completely.
|
||||
|
||||
-Input and output lines are prefixed by 'I' and 'O', respectively. The prefix has
|
||||
-to be separated from the rest of the line by whitespace. Consecutive input lines
|
||||
-are passed to 'nft' together, hence lead to a single transaction.
|
||||
+Input lines are prefixed by 'I'. Multiple consecutive input lines are passed to
|
||||
+'nft' together, hence lead to a single transaction.
|
||||
|
||||
-Since in most cases output should be equal to input, there is a shortcut: If a
|
||||
-line consists of 'O -' only, the test script uses all previous input lines as
|
||||
-expected output directly.
|
||||
+There are two types of output lines: Those for standard syntax, prefixed by 'O'
|
||||
+and those for JSON output, prefixed by 'J'. For standard syntax output lines,
|
||||
+there is a shortcut: If a line consists of 'O -' only, the test script uses all
|
||||
+previous input lines as expected output directly. Of course this is not
|
||||
+available for JSON output lines.
|
||||
|
||||
Empty lines and those starting with '#' are ignored.
|
||||
|
||||
@@ -29,8 +30,8 @@ Test Script Semantics
|
||||
---------------------
|
||||
|
||||
The script iterates over all test case files, reading them line by line. It
|
||||
-assumes that sections of 'I' lines alternate with sections of 'O' lines. After
|
||||
-stripping the prefix, each line is appended to a temporary file. There are
|
||||
+assumes that sections of 'I' lines alternate with sections of 'O'/'J' lines.
|
||||
+After stripping the prefix, each line is appended to a temporary file. There are
|
||||
separate files for input and output lines.
|
||||
|
||||
If a set of input and output lines is complete (i.e. upon encountering either a
|
||||
@@ -46,3 +47,13 @@ Note: Running 'nft monitor' in background is prone to race conditions. Hence
|
||||
an artificial delay is introduced before calling 'nft -f' to allow for 'nft
|
||||
monitor' to complete initialization and another one before comparing the output
|
||||
to allow for 'nft monitor' to process the netlink events.
|
||||
+
|
||||
+By default, only standard syntax is being tested for, i.e. 'J'-prefixed lines
|
||||
+are simply ignored. If JSON testing was requested (by passing '-j' flag to the
|
||||
+test script), 'O'-prefixed lines in turn are ignored.
|
||||
+
|
||||
+There is one caveat with regards to JSON output: Since it always contains handle
|
||||
+properties (if the given object possesses such) which is supposed to be
|
||||
+arbitrary, there is a filter script which normalizes all handle values in
|
||||
+monitor output to zero before comparison. Therefore expected output must have
|
||||
+all handle properties present but with a value of zero.
|
||||
diff --git a/tests/monitor/run-tests.sh b/tests/monitor/run-tests.sh
|
||||
index 1adabda193949..f4089887b69aa 100755
|
||||
--- a/tests/monitor/run-tests.sh
|
||||
+++ b/tests/monitor/run-tests.sh
|
||||
@@ -3,6 +3,7 @@
|
||||
cd $(dirname $0)
|
||||
nft=../../src/nft
|
||||
debug=false
|
||||
+test_json=false
|
||||
|
||||
mydiff() {
|
||||
diff -w -I '^# ' "$@"
|
||||
@@ -47,9 +48,16 @@ echo_output_append() {
|
||||
}
|
||||
[[ "$*" =~ ^add|replace|insert ]] && echo "$*" >>$output_file
|
||||
}
|
||||
+json_output_filter() { # (filename)
|
||||
+ # unify handle values
|
||||
+ sed -i -e 's/\("handle":\) [0-9][0-9]*/\1 0/g' "$1"
|
||||
+}
|
||||
monitor_run_test() {
|
||||
monitor_output=$(mktemp -p $testdir)
|
||||
- $nft -nn monitor >$monitor_output &
|
||||
+ monitor_args=""
|
||||
+ $test_json && monitor_args="vm json"
|
||||
+
|
||||
+ $nft -nn monitor $monitor_args >$monitor_output &
|
||||
monitor_pid=$!
|
||||
|
||||
sleep 0.5
|
||||
@@ -67,6 +75,7 @@ monitor_run_test() {
|
||||
sleep 0.5
|
||||
kill $monitor_pid
|
||||
wait >/dev/null 2>&1
|
||||
+ $test_json && json_output_filter $monitor_output
|
||||
if ! mydiff -q $monitor_output $output_file >/dev/null 2>&1; then
|
||||
echo "monitor output differs!"
|
||||
mydiff -u $output_file $monitor_output
|
||||
@@ -99,7 +108,33 @@ echo_run_test() {
|
||||
touch $output_file
|
||||
}
|
||||
|
||||
-for variant in monitor echo; do
|
||||
+while [ -n "$1" ]; do
|
||||
+ case "$1" in
|
||||
+ -d|--debug)
|
||||
+ debug=true
|
||||
+ shift
|
||||
+ ;;
|
||||
+ -j|--json)
|
||||
+ test_json=true
|
||||
+ shift
|
||||
+ ;;
|
||||
+ *)
|
||||
+ echo "unknown option '$1'"
|
||||
+ ;&
|
||||
+ -h|--help)
|
||||
+ echo "Usage: $(basename $0) [-j|--json] [-d|--debug]"
|
||||
+ exit 1
|
||||
+ ;;
|
||||
+ esac
|
||||
+done
|
||||
+
|
||||
+if $test_json; then
|
||||
+ variants="monitor"
|
||||
+else
|
||||
+ variants="monitor echo"
|
||||
+fi
|
||||
+
|
||||
+for variant in $variants; do
|
||||
run_test=${variant}_run_test
|
||||
output_append=${variant}_output_append
|
||||
|
||||
@@ -124,7 +159,11 @@ for variant in monitor echo; do
|
||||
;;
|
||||
O)
|
||||
input_complete=true
|
||||
- $output_append "$line"
|
||||
+ $test_json || $output_append "$line"
|
||||
+ ;;
|
||||
+ J)
|
||||
+ input_complete=true
|
||||
+ $test_json && $output_append "$line"
|
||||
;;
|
||||
'#'|'')
|
||||
# ignore comments and empty lines
|
||||
diff --git a/tests/monitor/testcases/object.t b/tests/monitor/testcases/object.t
|
||||
index 7b88409775796..e9a6d56ac546c 100644
|
||||
--- a/tests/monitor/testcases/object.t
|
||||
+++ b/tests/monitor/testcases/object.t
|
||||
@@ -1,27 +1,38 @@
|
||||
# first the setup
|
||||
I add table ip t
|
||||
O -
|
||||
+J {"add": {"table": {"family": "ip", "name": "t", "handle": 0}}}
|
||||
|
||||
I add counter ip t c
|
||||
O add counter ip t c { packets 0 bytes 0 }
|
||||
+J {"add": {"counter": {"family": "ip", "name": "c", "table": "t", "handle": 0, "packets": 0, "bytes": 0}}}
|
||||
|
||||
I delete counter ip t c
|
||||
O -
|
||||
+J {"delete": {"counter": {"family": "ip", "name": "c", "table": "t", "handle": 0, "packets": 0, "bytes": 0}}}
|
||||
|
||||
+# FIXME: input/output shouldn't be asynchronous here
|
||||
I add quota ip t q 25 mbytes
|
||||
O add quota ip t q { 25 mbytes }
|
||||
+J {"add": {"quota": {"family": "ip", "name": "q", "table": "t", "handle": 0, "bytes": 26214400, "used": 0, "inv": false}}}
|
||||
|
||||
I delete quota ip t q
|
||||
O -
|
||||
+J {"delete": {"quota": {"family": "ip", "name": "q", "table": "t", "handle": 0, "bytes": 26214400, "used": 0, "inv": false}}}
|
||||
|
||||
+# FIXME: input/output shouldn't be asynchronous here
|
||||
I add limit ip t l rate 1/second
|
||||
O add limit ip t l { rate 1/second }
|
||||
+J {"add": {"limit": {"family": "ip", "name": "l", "table": "t", "handle": 0, "rate": 1, "per": "second", "burst": 5}}}
|
||||
|
||||
I delete limit ip t l
|
||||
O -
|
||||
+J {"delete": {"limit": {"family": "ip", "name": "l", "table": "t", "handle": 0, "rate": 1, "per": "second", "burst": 5}}}
|
||||
|
||||
I add ct helper ip t cth { type "sip" protocol tcp; l3proto ip; }
|
||||
O -
|
||||
+J {"add": {"ct helper": {"family": "ip", "name": "cth", "table": "t", "handle": 0, "type": "sip", "protocol": "tcp", "l3proto": "ip"}}}
|
||||
|
||||
I delete ct helper ip t cth
|
||||
O -
|
||||
+J {"delete": {"ct helper": {"family": "ip", "name": "cth", "table": "t", "handle": 0, "type": "sip", "protocol": "tcp", "l3proto": "ip"}}}
|
||||
diff --git a/tests/monitor/testcases/set-maps.t b/tests/monitor/testcases/set-maps.t
|
||||
index 3d86720ec8136..acda480d86dbb 100644
|
||||
--- a/tests/monitor/testcases/set-maps.t
|
||||
+++ b/tests/monitor/testcases/set-maps.t
|
||||
@@ -2,9 +2,13 @@
|
||||
I add table ip t
|
||||
I add map ip t portip { type inet_service: ipv4_addr; flags interval; }
|
||||
O -
|
||||
+J {"add": {"table": {"family": "ip", "name": "t", "handle": 0}}}
|
||||
+J {"add": {"map": {"family": "ip", "name": "portip", "table": "t", "type": "inet_service", "handle": 0, "map": "ipv4_addr", "flags": ["interval"]}}}
|
||||
|
||||
I add element ip t portip { 80-100: 10.0.0.1 }
|
||||
O -
|
||||
+J {"add": {"element": {"family": "ip", "table": "t", "name": "portip", "elem": {"set": [[{"range": [80, 100]}, "10.0.0.1"]]}}}}
|
||||
|
||||
I add element ip t portip { 1024-65535: 10.0.0.1 }
|
||||
O -
|
||||
+J {"add": {"element": {"family": "ip", "table": "t", "name": "portip", "elem": {"set": [[{"range": [1024, 65535]}, "10.0.0.1"]]}}}}
|
||||
diff --git a/tests/monitor/testcases/set-mixed.t b/tests/monitor/testcases/set-mixed.t
|
||||
index 9c1c5323f2e4e..08c20116de92f 100644
|
||||
--- a/tests/monitor/testcases/set-mixed.t
|
||||
+++ b/tests/monitor/testcases/set-mixed.t
|
||||
@@ -3,13 +3,20 @@ I add table ip t
|
||||
I add set ip t portrange { type inet_service; flags interval; }
|
||||
I add set ip t ports { type inet_service; }
|
||||
O -
|
||||
+J {"add": {"table": {"family": "ip", "name": "t", "handle": 0}}}
|
||||
+J {"add": {"set": {"family": "ip", "name": "portrange", "table": "t", "type": "inet_service", "handle": 0, "flags": ["interval"]}}}
|
||||
+J {"add": {"set": {"family": "ip", "name": "ports", "table": "t", "type": "inet_service", "handle": 0}}}
|
||||
|
||||
# make sure concurrent adds work
|
||||
I add element ip t portrange { 1024-65535 }
|
||||
I add element ip t ports { 10 }
|
||||
O -
|
||||
+J {"add": {"element": {"family": "ip", "table": "t", "name": "portrange", "elem": {"set": [{"range": [1024, 65535]}]}}}}
|
||||
+J {"add": {"element": {"family": "ip", "table": "t", "name": "ports", "elem": {"set": [10]}}}}
|
||||
|
||||
# delete items again
|
||||
I delete element ip t portrange { 1024-65535 }
|
||||
I delete element ip t ports { 10 }
|
||||
O -
|
||||
+J {"delete": {"element": {"family": "ip", "table": "t", "name": "portrange", "elem": {"set": [{"range": [1024, 65535]}]}}}}
|
||||
+J {"delete": {"element": {"family": "ip", "table": "t", "name": "ports", "elem": {"set": [10]}}}}
|
||||
diff --git a/tests/monitor/testcases/set-multiple.t b/tests/monitor/testcases/set-multiple.t
|
||||
index ad91fac047fe8..bd7a6246a46b4 100644
|
||||
--- a/tests/monitor/testcases/set-multiple.t
|
||||
+++ b/tests/monitor/testcases/set-multiple.t
|
||||
@@ -3,8 +3,13 @@ I add table ip t
|
||||
I add set ip t portrange { type inet_service; flags interval; }
|
||||
I add set ip t portrange2 { type inet_service; flags interval; }
|
||||
O -
|
||||
+J {"add": {"table": {"family": "ip", "name": "t", "handle": 0}}}
|
||||
+J {"add": {"set": {"family": "ip", "name": "portrange", "table": "t", "type": "inet_service", "handle": 0, "flags": ["interval"]}}}
|
||||
+J {"add": {"set": {"family": "ip", "name": "portrange2", "table": "t", "type": "inet_service", "handle": 0, "flags": ["interval"]}}}
|
||||
|
||||
# make sure concurrent adds work
|
||||
I add element ip t portrange { 1024-65535 }
|
||||
I add element ip t portrange2 { 10-20 }
|
||||
O -
|
||||
+J {"add": {"element": {"family": "ip", "table": "t", "name": "portrange", "elem": {"set": [{"range": [1024, 65535]}]}}}}
|
||||
+J {"add": {"element": {"family": "ip", "table": "t", "name": "portrange2", "elem": {"set": [{"range": [10, 20]}]}}}}
|
||||
diff --git a/tests/monitor/testcases/set-simple.t b/tests/monitor/testcases/set-simple.t
|
||||
index ebff7cbda0c8b..8ca4f32463fd7 100644
|
||||
--- a/tests/monitor/testcases/set-simple.t
|
||||
+++ b/tests/monitor/testcases/set-simple.t
|
||||
@@ -2,15 +2,21 @@
|
||||
I add table ip t
|
||||
I add set ip t portrange { type inet_service; flags interval; }
|
||||
O -
|
||||
+J {"add": {"table": {"family": "ip", "name": "t", "handle": 0}}}
|
||||
+J {"add": {"set": {"family": "ip", "name": "portrange", "table": "t", "type": "inet_service", "handle": 0, "flags": ["interval"]}}}
|
||||
|
||||
# adding some ranges
|
||||
I add element ip t portrange { 1-10 }
|
||||
O -
|
||||
+J {"add": {"element": {"family": "ip", "table": "t", "name": "portrange", "elem": {"set": [{"range": [1, 10]}]}}}}
|
||||
I add element ip t portrange { 1024-65535 }
|
||||
O -
|
||||
+J {"add": {"element": {"family": "ip", "table": "t", "name": "portrange", "elem": {"set": [{"range": [1024, 65535]}]}}}}
|
||||
I add element ip t portrange { 20-30, 40-50 }
|
||||
O add element ip t portrange { 20-30 }
|
||||
O add element ip t portrange { 40-50 }
|
||||
+J {"add": {"element": {"family": "ip", "table": "t", "name": "portrange", "elem": {"set": [{"range": [20, 30]}]}}}}
|
||||
+J {"add": {"element": {"family": "ip", "table": "t", "name": "portrange", "elem": {"set": [{"range": [40, 50]}]}}}}
|
||||
|
||||
# test flushing -> elements are removed in reverse
|
||||
I flush set ip t portrange
|
||||
@@ -18,25 +24,38 @@ O delete element ip t portrange { 1024-65535 }
|
||||
O delete element ip t portrange { 40-50 }
|
||||
O delete element ip t portrange { 20-30 }
|
||||
O delete element ip t portrange { 1-10 }
|
||||
+J {"delete": {"element": {"family": "ip", "table": "t", "name": "portrange", "elem": {"set": [{"range": [1024, 65535]}]}}}}
|
||||
+J {"delete": {"element": {"family": "ip", "table": "t", "name": "portrange", "elem": {"set": [{"range": [40, 50]}]}}}}
|
||||
+J {"delete": {"element": {"family": "ip", "table": "t", "name": "portrange", "elem": {"set": [{"range": [20, 30]}]}}}}
|
||||
+J {"delete": {"element": {"family": "ip", "table": "t", "name": "portrange", "elem": {"set": [{"range": [1, 10]}]}}}}
|
||||
|
||||
# make sure lower scope boundary works
|
||||
I add element ip t portrange { 0-10 }
|
||||
O -
|
||||
+J {"add": {"element": {"family": "ip", "table": "t", "name": "portrange", "elem": {"set": [{"range": [0, 10]}]}}}}
|
||||
|
||||
# make sure half open before other element works
|
||||
I add element ip t portrange { 1024-65535 }
|
||||
I add element ip t portrange { 100-200 }
|
||||
O -
|
||||
+J {"add": {"element": {"family": "ip", "table": "t", "name": "portrange", "elem": {"set": [{"range": [1024, 65535]}]}}}}
|
||||
+J {"add": {"element": {"family": "ip", "table": "t", "name": "portrange", "elem": {"set": [{"range": [100, 200]}]}}}}
|
||||
|
||||
# make sure deletion of elements works
|
||||
I delete element ip t portrange { 0-10 }
|
||||
O -
|
||||
+J {"delete": {"element": {"family": "ip", "table": "t", "name": "portrange", "elem": {"set": [{"range": [0, 10]}]}}}}
|
||||
I delete element ip t portrange { 100-200 }
|
||||
I delete element ip t portrange { 1024-65535 }
|
||||
O -
|
||||
+J {"delete": {"element": {"family": "ip", "table": "t", "name": "portrange", "elem": {"set": [{"range": [100, 200]}]}}}}
|
||||
+J {"delete": {"element": {"family": "ip", "table": "t", "name": "portrange", "elem": {"set": [{"range": [1024, 65535]}]}}}}
|
||||
|
||||
# make sure mixed add/delete works
|
||||
I add element ip t portrange { 10-20 }
|
||||
I add element ip t portrange { 1024-65535 }
|
||||
I delete element ip t portrange { 10-20 }
|
||||
O -
|
||||
+J {"add": {"element": {"family": "ip", "table": "t", "name": "portrange", "elem": {"set": [{"range": [10, 20]}]}}}}
|
||||
+J {"add": {"element": {"family": "ip", "table": "t", "name": "portrange", "elem": {"set": [{"range": [1024, 65535]}]}}}}
|
||||
+J {"delete": {"element": {"family": "ip", "table": "t", "name": "portrange", "elem": {"set": [{"range": [10, 20]}]}}}}
|
||||
diff --git a/tests/monitor/testcases/simple.t b/tests/monitor/testcases/simple.t
|
||||
index e4dc073e14b65..78d8f8b04bd36 100644
|
||||
--- a/tests/monitor/testcases/simple.t
|
||||
+++ b/tests/monitor/testcases/simple.t
|
||||
@@ -2,19 +2,27 @@
|
||||
I add table ip t
|
||||
I add chain ip t c
|
||||
O -
|
||||
+J {"add": {"table": {"family": "ip", "name": "t", "handle": 0}}}
|
||||
+J {"add": {"chain": {"family": "ip", "table": "t", "name": "c", "handle": 0}}}
|
||||
|
||||
I add rule ip t c accept
|
||||
O -
|
||||
+J {"add": {"rule": {"family": "ip", "table": "t", "chain": "c", "handle": 0, "expr": [{"accept": null}]}}}
|
||||
|
||||
I add rule ip t c tcp dport { 22, 80, 443 } accept
|
||||
O -
|
||||
+J {"add": {"rule": {"family": "ip", "table": "t", "chain": "c", "handle": 0, "expr": [{"match": {"op": "==", "left": {"payload": {"protocol": "tcp", "field": "dport"}}, "right": {"set": [22, 80, 443]}}}, {"accept": null}]}}}
|
||||
|
||||
I insert rule ip t c counter accept
|
||||
O add rule ip t c counter packets 0 bytes 0 accept
|
||||
+J {"add": {"rule": {"family": "ip", "table": "t", "chain": "c", "handle": 0, "expr": [{"counter": {"packets": 0, "bytes": 0}}, {"accept": null}]}}}
|
||||
|
||||
I replace rule ip t c handle 2 accept comment "foo bar"
|
||||
O delete rule ip t c handle 2
|
||||
O add rule ip t c accept comment "foo bar"
|
||||
+J {"delete": {"rule": {"family": "ip", "table": "t", "chain": "c", "handle": 0, "expr": [{"accept": null}]}}}
|
||||
+J {"add": {"rule": {"family": "ip", "table": "t", "chain": "c", "handle": 0, "comment": "foo bar", "expr": [{"accept": null}]}}}
|
||||
|
||||
I add counter ip t cnt
|
||||
O add counter ip t cnt { packets 0 bytes 0 }
|
||||
+J {"add": {"counter": {"family": "ip", "name": "cnt", "table": "t", "handle": 0, "packets": 0, "bytes": 0}}}
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,148 @@
|
||||
From 0a9ad3152c4e4678c94502441f5b002fef4fbff2 Mon Sep 17 00:00:00 2001
|
||||
From: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Date: Mon, 1 Oct 2018 14:51:24 +0200
|
||||
Subject: [PATCH] segtree: bogus range via get set element on existing elements
|
||||
|
||||
table ip x {
|
||||
set y {
|
||||
type inet_service
|
||||
flags interval
|
||||
elements = { 10, 20-30, 40, 50-60 }
|
||||
}
|
||||
}
|
||||
|
||||
# nft get element x y { 20-40 }
|
||||
table ip x {
|
||||
set y {
|
||||
type inet_service
|
||||
flags interval
|
||||
elements = { 20-40 }
|
||||
}
|
||||
}
|
||||
|
||||
20 and 40 exist in the tree, but they are part of different ranges.
|
||||
This patch adds a new get_set_decompose() function to validate that the
|
||||
left and the right side of the range.
|
||||
|
||||
Reported-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 95629758a5ec36313d839f8545fef0dc220408d8)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
include/expression.h | 2 +-
|
||||
src/netlink.c | 5 +++--
|
||||
src/segtree.c | 48 ++++++++++++++++++++++++++++++++++++++++++--
|
||||
3 files changed, 50 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/include/expression.h b/include/expression.h
|
||||
index 2bb51e531ecbe..885e9c43bb77f 100644
|
||||
--- a/include/expression.h
|
||||
+++ b/include/expression.h
|
||||
@@ -442,7 +442,7 @@ extern void interval_map_decompose(struct expr *set);
|
||||
extern struct expr *get_set_intervals(const struct set *set,
|
||||
const struct expr *init);
|
||||
struct table;
|
||||
-extern void get_set_decompose(struct table *table, struct set *set);
|
||||
+extern int get_set_decompose(struct table *table, struct set *set);
|
||||
|
||||
extern struct expr *mapping_expr_alloc(const struct location *loc,
|
||||
struct expr *from, struct expr *to);
|
||||
diff --git a/src/netlink.c b/src/netlink.c
|
||||
index 864947b4d2f07..ca5e9b4a0f8a6 100644
|
||||
--- a/src/netlink.c
|
||||
+++ b/src/netlink.c
|
||||
@@ -1353,8 +1353,9 @@ int netlink_get_setelem(struct netlink_ctx *ctx, const struct handle *h,
|
||||
nftnl_set_free(nls_out);
|
||||
ctx->set = NULL;
|
||||
|
||||
- if (set->flags & NFT_SET_INTERVAL)
|
||||
- get_set_decompose(table, set);
|
||||
+ if (set->flags & NFT_SET_INTERVAL &&
|
||||
+ get_set_decompose(table, set) < 0)
|
||||
+ return -1;
|
||||
|
||||
return 0;
|
||||
}
|
||||
diff --git a/src/segtree.c b/src/segtree.c
|
||||
index 8a8aa71e8a6e2..288b01f420a48 100644
|
||||
--- a/src/segtree.c
|
||||
+++ b/src/segtree.c
|
||||
@@ -641,6 +641,42 @@ struct expr *get_set_intervals(const struct set *set, const struct expr *init)
|
||||
return new_init;
|
||||
}
|
||||
|
||||
+static struct expr *get_set_interval_find(const struct table *table,
|
||||
+ const char *set_name,
|
||||
+ struct expr *left,
|
||||
+ struct expr *right)
|
||||
+{
|
||||
+ struct expr *range = NULL;
|
||||
+ struct set *set;
|
||||
+ mpz_t low, high;
|
||||
+ struct expr *i;
|
||||
+
|
||||
+ set = set_lookup(table, set_name);
|
||||
+ mpz_init2(low, set->key->len);
|
||||
+ mpz_init2(high, set->key->len);
|
||||
+
|
||||
+ list_for_each_entry(i, &set->init->expressions, list) {
|
||||
+ switch (i->key->ops->type) {
|
||||
+ case EXPR_RANGE:
|
||||
+ range_expr_value_low(low, i);
|
||||
+ range_expr_value_high(high, i);
|
||||
+ if (mpz_cmp(left->key->value, low) >= 0 &&
|
||||
+ mpz_cmp(right->key->value, high) <= 0)
|
||||
+ range = range_expr_alloc(&internal_location,
|
||||
+ expr_clone(left->key),
|
||||
+ expr_clone(right->key));
|
||||
+ break;
|
||||
+ default:
|
||||
+ break;
|
||||
+ }
|
||||
+ }
|
||||
+
|
||||
+ mpz_clear(low);
|
||||
+ mpz_clear(high);
|
||||
+
|
||||
+ return range;
|
||||
+}
|
||||
+
|
||||
static struct expr *get_set_interval_end(const struct table *table,
|
||||
const char *set_name,
|
||||
struct expr *left)
|
||||
@@ -675,7 +711,7 @@ static struct expr *get_set_interval_end(const struct table *table,
|
||||
return left;
|
||||
}
|
||||
|
||||
-void get_set_decompose(struct table *table, struct set *set)
|
||||
+int get_set_decompose(struct table *table, struct set *set)
|
||||
{
|
||||
struct expr *i, *next, *new;
|
||||
struct expr *left = NULL;
|
||||
@@ -688,7 +724,13 @@ void get_set_decompose(struct table *table, struct set *set)
|
||||
list_del(&left->list);
|
||||
list_del(&i->list);
|
||||
mpz_sub_ui(i->key->value, i->key->value, 1);
|
||||
- new = range_expr_alloc(&internal_location, left, i);
|
||||
+ new = get_set_interval_find(table, set->handle.set.name,
|
||||
+ left, i);
|
||||
+ if (!new) {
|
||||
+ errno = ENOENT;
|
||||
+ return -1;
|
||||
+ }
|
||||
+
|
||||
compound_expr_add(new_init, new);
|
||||
left = NULL;
|
||||
} else {
|
||||
@@ -707,6 +749,8 @@ void get_set_decompose(struct table *table, struct set *set)
|
||||
}
|
||||
|
||||
set->init = new_init;
|
||||
+
|
||||
+ return 0;
|
||||
}
|
||||
|
||||
static bool range_is_prefix(const mpz_t range)
|
||||
--
|
||||
2.21.0
|
||||
|
109
SOURCES/0008-segtree-disantangle-get_set_interval_end.patch
Normal file
109
SOURCES/0008-segtree-disantangle-get_set_interval_end.patch
Normal file
@ -0,0 +1,109 @@
|
||||
From 40edcc35cbfca22d4cb471464eacc12cf7c5c28a Mon Sep 17 00:00:00 2001
|
||||
From: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Date: Wed, 3 Oct 2018 12:09:09 +0200
|
||||
Subject: [PATCH] segtree: disantangle get_set_interval_end()
|
||||
|
||||
This function overrides the left pointer. Instead update this function
|
||||
to return the range that we found to enclose the left element. Note that
|
||||
we may not find a closing right element - therefore, it is a standalone
|
||||
element - in that case this function returns NULL.
|
||||
|
||||
Reported-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 33eb4594a1c764776a46b48bc1a7d726b561359d)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/segtree.c | 37 ++++++++++++++++++++++---------------
|
||||
1 file changed, 22 insertions(+), 15 deletions(-)
|
||||
|
||||
diff --git a/src/segtree.c b/src/segtree.c
|
||||
index 288b01f420a48..0d53c83fd837e 100644
|
||||
--- a/src/segtree.c
|
||||
+++ b/src/segtree.c
|
||||
@@ -681,9 +681,9 @@ static struct expr *get_set_interval_end(const struct table *table,
|
||||
const char *set_name,
|
||||
struct expr *left)
|
||||
{
|
||||
+ struct expr *i, *range = NULL;
|
||||
struct set *set;
|
||||
mpz_t low, high;
|
||||
- struct expr *i;
|
||||
|
||||
set = set_lookup(table, set_name);
|
||||
mpz_init2(low, set->key->len);
|
||||
@@ -694,9 +694,9 @@ static struct expr *get_set_interval_end(const struct table *table,
|
||||
case EXPR_RANGE:
|
||||
range_expr_value_low(low, i);
|
||||
if (mpz_cmp(low, left->key->value) == 0) {
|
||||
- left = range_expr_alloc(&internal_location,
|
||||
- expr_clone(left->key),
|
||||
- expr_clone(i->key->right));
|
||||
+ range = range_expr_alloc(&internal_location,
|
||||
+ expr_clone(left->key),
|
||||
+ expr_clone(i->key->right));
|
||||
break;
|
||||
}
|
||||
break;
|
||||
@@ -708,12 +708,12 @@ static struct expr *get_set_interval_end(const struct table *table,
|
||||
mpz_clear(low);
|
||||
mpz_clear(high);
|
||||
|
||||
- return left;
|
||||
+ return range;
|
||||
}
|
||||
|
||||
int get_set_decompose(struct table *table, struct set *set)
|
||||
{
|
||||
- struct expr *i, *next, *new;
|
||||
+ struct expr *i, *next, *range;
|
||||
struct expr *left = NULL;
|
||||
struct expr *new_init;
|
||||
|
||||
@@ -724,28 +724,35 @@ int get_set_decompose(struct table *table, struct set *set)
|
||||
list_del(&left->list);
|
||||
list_del(&i->list);
|
||||
mpz_sub_ui(i->key->value, i->key->value, 1);
|
||||
- new = get_set_interval_find(table, set->handle.set.name,
|
||||
+ range = get_set_interval_find(table, set->handle.set.name,
|
||||
left, i);
|
||||
- if (!new) {
|
||||
+ if (!range) {
|
||||
errno = ENOENT;
|
||||
return -1;
|
||||
}
|
||||
|
||||
- compound_expr_add(new_init, new);
|
||||
+ compound_expr_add(new_init, range);
|
||||
left = NULL;
|
||||
} else {
|
||||
if (left) {
|
||||
- left = get_set_interval_end(table,
|
||||
- set->handle.set.name,
|
||||
- left);
|
||||
- compound_expr_add(new_init, left);
|
||||
+ range = get_set_interval_end(table,
|
||||
+ set->handle.set.name,
|
||||
+ left);
|
||||
+ if (range)
|
||||
+ compound_expr_add(new_init, range);
|
||||
+ else
|
||||
+ compound_expr_add(new_init,
|
||||
+ expr_clone(left));
|
||||
}
|
||||
left = i;
|
||||
}
|
||||
}
|
||||
if (left) {
|
||||
- left = get_set_interval_end(table, set->handle.set.name, left);
|
||||
- compound_expr_add(new_init, left);
|
||||
+ range = get_set_interval_end(table, set->handle.set.name, left);
|
||||
+ if (range)
|
||||
+ compound_expr_add(new_init, left);
|
||||
+ else
|
||||
+ compound_expr_add(new_init, expr_clone(left));
|
||||
}
|
||||
|
||||
set->init = new_init;
|
||||
--
|
||||
2.21.0
|
||||
|
38
SOURCES/0009-segtree-memleak-in-get_set_decompose.patch
Normal file
38
SOURCES/0009-segtree-memleak-in-get_set_decompose.patch
Normal file
@ -0,0 +1,38 @@
|
||||
From b18f069971e8e5c161e87ad1742b677ee4185bad Mon Sep 17 00:00:00 2001
|
||||
From: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Date: Wed, 3 Oct 2018 12:16:40 +0200
|
||||
Subject: [PATCH] segtree: memleak in get_set_decompose()
|
||||
|
||||
Release set content on error. Moreover, release input set content in
|
||||
case we finally manage to decompose it.
|
||||
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit e08c8bbfeda80f3807ce3784558ce1fb6f0d2bc8)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/segtree.c | 2 ++
|
||||
1 file changed, 2 insertions(+)
|
||||
|
||||
diff --git a/src/segtree.c b/src/segtree.c
|
||||
index 0d53c83fd837e..dc2554b72acf3 100644
|
||||
--- a/src/segtree.c
|
||||
+++ b/src/segtree.c
|
||||
@@ -727,6 +727,7 @@ int get_set_decompose(struct table *table, struct set *set)
|
||||
range = get_set_interval_find(table, set->handle.set.name,
|
||||
left, i);
|
||||
if (!range) {
|
||||
+ expr_free(new_init);
|
||||
errno = ENOENT;
|
||||
return -1;
|
||||
}
|
||||
@@ -755,6 +756,7 @@ int get_set_decompose(struct table *table, struct set *set)
|
||||
compound_expr_add(new_init, expr_clone(left));
|
||||
}
|
||||
|
||||
+ expr_free(set->init);
|
||||
set->init = new_init;
|
||||
|
||||
return 0;
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,60 @@
|
||||
From d1145542184ec34ce19f383ea3d361d3287651ee Mon Sep 17 00:00:00 2001
|
||||
From: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Date: Wed, 3 Oct 2018 16:19:47 +0200
|
||||
Subject: [PATCH] segtree: stop iteration on existing elements in case range is
|
||||
found
|
||||
|
||||
No need to keep iterating once the range object has been allocated.
|
||||
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit a493147e60d350aca4197975281bf2ffe4cd1009)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/segtree.c | 10 ++++++----
|
||||
1 file changed, 6 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/src/segtree.c b/src/segtree.c
|
||||
index dc2554b72acf3..dc457d6bc1b7d 100644
|
||||
--- a/src/segtree.c
|
||||
+++ b/src/segtree.c
|
||||
@@ -661,16 +661,18 @@ static struct expr *get_set_interval_find(const struct table *table,
|
||||
range_expr_value_low(low, i);
|
||||
range_expr_value_high(high, i);
|
||||
if (mpz_cmp(left->key->value, low) >= 0 &&
|
||||
- mpz_cmp(right->key->value, high) <= 0)
|
||||
+ mpz_cmp(right->key->value, high) <= 0) {
|
||||
range = range_expr_alloc(&internal_location,
|
||||
expr_clone(left->key),
|
||||
expr_clone(right->key));
|
||||
+ goto out;
|
||||
+ }
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
-
|
||||
+out:
|
||||
mpz_clear(low);
|
||||
mpz_clear(high);
|
||||
|
||||
@@ -697,14 +699,14 @@ static struct expr *get_set_interval_end(const struct table *table,
|
||||
range = range_expr_alloc(&internal_location,
|
||||
expr_clone(left->key),
|
||||
expr_clone(i->key->right));
|
||||
- break;
|
||||
+ goto out;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
-
|
||||
+out:
|
||||
mpz_clear(low);
|
||||
mpz_clear(high);
|
||||
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,32 @@
|
||||
From 0a80f39e125ba9bb41386607e0db04b271c0bcea Mon Sep 17 00:00:00 2001
|
||||
From: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Date: Wed, 10 Oct 2018 15:41:04 +0200
|
||||
Subject: [PATCH] segtree: incorrect handling of last element in
|
||||
get_set_decompose()
|
||||
|
||||
Add range to the list of matching elements.
|
||||
|
||||
Fixes: 95629758a5ec ("segtree: bogus range via get set element on existing elements")
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 98b047f231215817d87a49dfffbe7b4c0dc29b57)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/segtree.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/segtree.c b/src/segtree.c
|
||||
index dc457d6bc1b7d..4ee09884cbde6 100644
|
||||
--- a/src/segtree.c
|
||||
+++ b/src/segtree.c
|
||||
@@ -753,7 +753,7 @@ int get_set_decompose(struct table *table, struct set *set)
|
||||
if (left) {
|
||||
range = get_set_interval_end(table, set->handle.set.name, left);
|
||||
if (range)
|
||||
- compound_expr_add(new_init, left);
|
||||
+ compound_expr_add(new_init, range);
|
||||
else
|
||||
compound_expr_add(new_init, expr_clone(left));
|
||||
}
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,49 @@
|
||||
From 4c211953b1e6290653fa3bb151b85be29d02288f Mon Sep 17 00:00:00 2001
|
||||
From: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Date: Wed, 10 Oct 2018 19:19:18 +0200
|
||||
Subject: [PATCH] segtree: set proper error cause on existing elements
|
||||
|
||||
Adding new elements result in a confusing "Success" error message.
|
||||
|
||||
# nft add element x y { 0-3 }
|
||||
[...]
|
||||
Error: Could not process rule: Success
|
||||
add element x y { 0-3 }
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
after this patch, this reports:
|
||||
|
||||
Error: Could not process rule: File exists
|
||||
add element x y { 0-3 }
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 8ef0efb97006081e7f6054a950cb3614dd57729f)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/segtree.c | 2 ++
|
||||
1 file changed, 2 insertions(+)
|
||||
|
||||
diff --git a/src/segtree.c b/src/segtree.c
|
||||
index 4ee09884cbde6..5685618b3724a 100644
|
||||
--- a/src/segtree.c
|
||||
+++ b/src/segtree.c
|
||||
@@ -270,6 +270,7 @@ static int ei_insert(struct list_head *msgs, struct seg_tree *tree,
|
||||
|
||||
return 0;
|
||||
err:
|
||||
+ errno = EEXIST;
|
||||
return expr_binary_error(msgs, lei->expr, new->expr,
|
||||
"conflicting intervals specified");
|
||||
}
|
||||
@@ -371,6 +372,7 @@ static int set_overlap(struct list_head *msgs, const struct set *set,
|
||||
|
||||
expr_error(msgs, new_intervals[i]->expr,
|
||||
"interval overlaps with an existing one");
|
||||
+ errno = EEXIST;
|
||||
ret = -1;
|
||||
goto out;
|
||||
}
|
||||
--
|
||||
2.21.0
|
||||
|
42
SOURCES/0013-rule-fix-memleak-in-do_get_setelems.patch
Normal file
42
SOURCES/0013-rule-fix-memleak-in-do_get_setelems.patch
Normal file
@ -0,0 +1,42 @@
|
||||
From 1c305050b37bef63a255570c27f0eead0cb4b582 Mon Sep 17 00:00:00 2001
|
||||
From: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Date: Wed, 3 Oct 2018 16:05:32 +0200
|
||||
Subject: [PATCH] rule: fix memleak in do_get_setelems()
|
||||
|
||||
Release set and elements in case of error.
|
||||
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 406d17db7e02f78d258edb38ac8571112ef8c767)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/rule.c | 8 +++-----
|
||||
1 file changed, 3 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/src/rule.c b/src/rule.c
|
||||
index 3065cc5474bbf..a157ac91683cc 100644
|
||||
--- a/src/rule.c
|
||||
+++ b/src/rule.c
|
||||
@@ -1911,17 +1911,15 @@ static int do_get_setelems(struct netlink_ctx *ctx, struct cmd *cmd,
|
||||
/* Fetch from kernel the elements that have been requested .*/
|
||||
err = netlink_get_setelem(ctx, &cmd->handle, &cmd->location,
|
||||
table, new_set, init);
|
||||
- if (err < 0)
|
||||
- return err;
|
||||
-
|
||||
- __do_list_set(ctx, cmd, table, new_set);
|
||||
+ if (err >= 0)
|
||||
+ __do_list_set(ctx, cmd, table, new_set);
|
||||
|
||||
if (set->flags & NFT_SET_INTERVAL)
|
||||
expr_free(init);
|
||||
|
||||
set_free(new_set);
|
||||
|
||||
- return 0;
|
||||
+ return err;
|
||||
}
|
||||
|
||||
static int do_command_get(struct netlink_ctx *ctx, struct cmd *cmd)
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,50 @@
|
||||
From 3578231d0a44c4a7617c046d3ef8b3cb1299c05e Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Fri, 12 Oct 2018 12:54:09 +0200
|
||||
Subject: [PATCH] Fix memleak in netlink_parse_fwd() error path
|
||||
|
||||
Make sure allocated 'stmt' is freed before returning to caller.
|
||||
|
||||
Fixes: 30d45266bf38b ("expr: extend fwd statement to support address and family")
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 30541cb66e2de38eea04ab28cb14f298cce9d99f)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/netlink_delinearize.c | 13 ++++++++-----
|
||||
1 file changed, 8 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/src/netlink_delinearize.c b/src/netlink_delinearize.c
|
||||
index 31d62420d41c8..ae84512c56f3a 100644
|
||||
--- a/src/netlink_delinearize.c
|
||||
+++ b/src/netlink_delinearize.c
|
||||
@@ -1152,9 +1152,11 @@ static void netlink_parse_fwd(struct netlink_parse_ctx *ctx,
|
||||
reg2 = netlink_parse_register(nle, NFTNL_EXPR_FWD_SREG_ADDR);
|
||||
if (reg2) {
|
||||
addr = netlink_get_register(ctx, loc, reg2);
|
||||
- if (addr == NULL)
|
||||
- return netlink_error(ctx, loc,
|
||||
- "fwd statement has no output expression");
|
||||
+ if (addr == NULL) {
|
||||
+ netlink_error(ctx, loc,
|
||||
+ "fwd statement has no output expression");
|
||||
+ goto out_err;
|
||||
+ }
|
||||
|
||||
switch (stmt->fwd.family) {
|
||||
case AF_INET:
|
||||
@@ -1166,8 +1168,9 @@ static void netlink_parse_fwd(struct netlink_parse_ctx *ctx,
|
||||
BYTEORDER_BIG_ENDIAN);
|
||||
break;
|
||||
default:
|
||||
- return netlink_error(ctx, loc,
|
||||
- "fwd statement has no family");
|
||||
+ netlink_error(ctx, loc,
|
||||
+ "fwd statement has no family");
|
||||
+ goto out_err;
|
||||
}
|
||||
stmt->fwd.addr = addr;
|
||||
}
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,43 @@
|
||||
From eb770d79146941ce975c7b7caa9372b380978f98 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Fri, 12 Oct 2018 13:22:55 +0200
|
||||
Subject: [PATCH] libnftables: Fix memleak in nft_parse_bison_filename()
|
||||
|
||||
Allocated scanner object leaks when returning to caller. For some odd
|
||||
reason, this was missed by the commit referenced below.
|
||||
|
||||
Fixes: bd82e03e15df8 ("libnftables: Move scanner object into struct nft_ctx")
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit a56fe55dbd3232e70514610a1c2df1d6b15b931f)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/libnftables.c | 7 +++----
|
||||
1 file changed, 3 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/src/libnftables.c b/src/libnftables.c
|
||||
index 5bc7ba0d210ab..91af169ca7190 100644
|
||||
--- a/src/libnftables.c
|
||||
+++ b/src/libnftables.c
|
||||
@@ -418,15 +418,14 @@ static int nft_parse_bison_filename(struct nft_ctx *nft, const char *filename,
|
||||
struct list_head *msgs, struct list_head *cmds)
|
||||
{
|
||||
struct cmd *cmd;
|
||||
- void *scanner;
|
||||
int ret;
|
||||
|
||||
parser_init(nft, nft->state, msgs, cmds);
|
||||
- scanner = scanner_init(nft->state);
|
||||
- if (scanner_read_file(scanner, filename, &internal_location) < 0)
|
||||
+ nft->scanner = scanner_init(nft->state);
|
||||
+ if (scanner_read_file(nft->scanner, filename, &internal_location) < 0)
|
||||
return -1;
|
||||
|
||||
- ret = nft_parse(nft, scanner, nft->state);
|
||||
+ ret = nft_parse(nft, nft->scanner, nft->state);
|
||||
if (ret != 0 || nft->state->nerrs > 0)
|
||||
return -1;
|
||||
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,441 @@
|
||||
From 09a890d3653a87e3752a3ebfc3f5de597a679cc5 Mon Sep 17 00:00:00 2001
|
||||
From: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Date: Mon, 22 Oct 2018 12:38:35 +0200
|
||||
Subject: [PATCH] src: pass struct nft_ctx through struct eval_ctx
|
||||
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 00f777bfc414af1e1384a213adc91ae4ecf6cbdf)
|
||||
|
||||
Conflicts:
|
||||
src/evaluate.c
|
||||
-> Missing osf support
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
include/rule.h | 5 +-
|
||||
src/evaluate.c | 128 ++++++++++++++++++++++-----------------------
|
||||
src/parser_bison.y | 5 +-
|
||||
3 files changed, 66 insertions(+), 72 deletions(-)
|
||||
|
||||
diff --git a/include/rule.h b/include/rule.h
|
||||
index 909ff36db80c1..b1d15c8725813 100644
|
||||
--- a/include/rule.h
|
||||
+++ b/include/rule.h
|
||||
@@ -556,16 +556,13 @@ extern void cmd_free(struct cmd *cmd);
|
||||
* @pctx: payload context
|
||||
*/
|
||||
struct eval_ctx {
|
||||
- struct mnl_socket *nf_sock;
|
||||
+ struct nft_ctx *nft;
|
||||
struct list_head *msgs;
|
||||
struct cmd *cmd;
|
||||
struct table *table;
|
||||
struct rule *rule;
|
||||
struct set *set;
|
||||
struct stmt *stmt;
|
||||
- struct nft_cache *cache;
|
||||
- struct output_ctx *octx;
|
||||
- unsigned int debug_mask;
|
||||
struct expr_ctx ectx;
|
||||
struct proto_ctx pctx;
|
||||
};
|
||||
diff --git a/src/evaluate.c b/src/evaluate.c
|
||||
index d18af34341b0d..5e9c6328fc692 100644
|
||||
--- a/src/evaluate.c
|
||||
+++ b/src/evaluate.c
|
||||
@@ -156,7 +156,7 @@ static struct table *table_lookup_global(struct eval_ctx *ctx)
|
||||
if (ctx->table != NULL)
|
||||
return ctx->table;
|
||||
|
||||
- table = table_lookup(&ctx->cmd->handle, ctx->cache);
|
||||
+ table = table_lookup(&ctx->cmd->handle, &ctx->nft->cache);
|
||||
if (table == NULL)
|
||||
return NULL;
|
||||
|
||||
@@ -184,8 +184,8 @@ static int expr_evaluate_symbol(struct eval_ctx *ctx, struct expr **expr)
|
||||
}
|
||||
break;
|
||||
case SYMBOL_SET:
|
||||
- ret = cache_update(ctx->nf_sock, ctx->cache, ctx->cmd->op,
|
||||
- ctx->msgs, ctx->debug_mask, ctx->octx);
|
||||
+ ret = cache_update(ctx->nft->nf_sock, &ctx->nft->cache, ctx->cmd->op,
|
||||
+ ctx->msgs, ctx->nft->debug_mask, &ctx->nft->output);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
@@ -1731,13 +1731,13 @@ static int expr_evaluate_variable(struct eval_ctx *ctx, struct expr **exprp)
|
||||
|
||||
static int expr_evaluate(struct eval_ctx *ctx, struct expr **expr)
|
||||
{
|
||||
- if (ctx->debug_mask & NFT_DEBUG_EVALUATION) {
|
||||
+ if (ctx->nft->debug_mask & NFT_DEBUG_EVALUATION) {
|
||||
struct error_record *erec;
|
||||
erec = erec_create(EREC_INFORMATIONAL, &(*expr)->location,
|
||||
"Evaluate %s", (*expr)->ops->name);
|
||||
- erec_print(ctx->octx, erec, ctx->debug_mask);
|
||||
- expr_print(*expr, ctx->octx);
|
||||
- nft_print(ctx->octx, "\n\n");
|
||||
+ erec_print(&ctx->nft->output, erec, ctx->nft->debug_mask);
|
||||
+ expr_print(*expr, &ctx->nft->output);
|
||||
+ nft_print(&ctx->nft->output, "\n\n");
|
||||
erec_destroy(erec);
|
||||
}
|
||||
|
||||
@@ -2717,13 +2717,13 @@ static int stmt_evaluate_objref(struct eval_ctx *ctx, struct stmt *stmt)
|
||||
|
||||
int stmt_evaluate(struct eval_ctx *ctx, struct stmt *stmt)
|
||||
{
|
||||
- if (ctx->debug_mask & NFT_DEBUG_EVALUATION) {
|
||||
+ if (ctx->nft->debug_mask & NFT_DEBUG_EVALUATION) {
|
||||
struct error_record *erec;
|
||||
erec = erec_create(EREC_INFORMATIONAL, &stmt->location,
|
||||
"Evaluate %s", stmt->ops->name);
|
||||
- erec_print(ctx->octx, erec, ctx->debug_mask);
|
||||
- stmt_print(stmt, ctx->octx);
|
||||
- nft_print(ctx->octx, "\n\n");
|
||||
+ erec_print(&ctx->nft->output, erec, ctx->nft->debug_mask);
|
||||
+ stmt_print(stmt, &ctx->nft->output);
|
||||
+ nft_print(&ctx->nft->output, "\n\n");
|
||||
erec_destroy(erec);
|
||||
}
|
||||
|
||||
@@ -2895,12 +2895,12 @@ static int rule_translate_index(struct eval_ctx *ctx, struct rule *rule)
|
||||
int ret;
|
||||
|
||||
/* update cache with CMD_LIST so that rules are fetched, too */
|
||||
- ret = cache_update(ctx->nf_sock, ctx->cache, CMD_LIST,
|
||||
- ctx->msgs, ctx->debug_mask, ctx->octx);
|
||||
+ ret = cache_update(ctx->nft->nf_sock, &ctx->nft->cache, CMD_LIST,
|
||||
+ ctx->msgs, ctx->nft->debug_mask, &ctx->nft->output);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
- table = table_lookup(&rule->handle, ctx->cache);
|
||||
+ table = table_lookup(&rule->handle, &ctx->nft->cache);
|
||||
if (!table)
|
||||
return cmd_error(ctx, &rule->handle.table.location,
|
||||
"Could not process rule: %s",
|
||||
@@ -2931,7 +2931,7 @@ static int rule_evaluate(struct eval_ctx *ctx, struct rule *rule)
|
||||
struct stmt *stmt, *tstmt = NULL;
|
||||
struct error_record *erec;
|
||||
|
||||
- proto_ctx_init(&ctx->pctx, rule->handle.family, ctx->debug_mask);
|
||||
+ proto_ctx_init(&ctx->pctx, rule->handle.family, ctx->nft->debug_mask);
|
||||
memset(&ctx->ectx, 0, sizeof(ctx->ectx));
|
||||
|
||||
ctx->rule = rule;
|
||||
@@ -3047,13 +3047,13 @@ static int table_evaluate(struct eval_ctx *ctx, struct table *table)
|
||||
struct chain *chain;
|
||||
struct set *set;
|
||||
|
||||
- if (table_lookup(&ctx->cmd->handle, ctx->cache) == NULL) {
|
||||
+ if (table_lookup(&ctx->cmd->handle, &ctx->nft->cache) == NULL) {
|
||||
if (table == NULL) {
|
||||
table = table_alloc();
|
||||
handle_merge(&table->handle, &ctx->cmd->handle);
|
||||
- table_add_hash(table, ctx->cache);
|
||||
+ table_add_hash(table, &ctx->nft->cache);
|
||||
} else {
|
||||
- table_add_hash(table_get(table), ctx->cache);
|
||||
+ table_add_hash(table_get(table), &ctx->nft->cache);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3088,15 +3088,15 @@ static int cmd_evaluate_add(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
|
||||
switch (cmd->obj) {
|
||||
case CMD_OBJ_SETELEM:
|
||||
- ret = cache_update(ctx->nf_sock, ctx->cache, cmd->op,
|
||||
- ctx->msgs, ctx->debug_mask, ctx->octx);
|
||||
+ ret = cache_update(ctx->nft->nf_sock, &ctx->nft->cache, cmd->op,
|
||||
+ ctx->msgs, ctx->nft->debug_mask, &ctx->nft->output);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
return setelem_evaluate(ctx, &cmd->expr);
|
||||
case CMD_OBJ_SET:
|
||||
- ret = cache_update(ctx->nf_sock, ctx->cache, cmd->op,
|
||||
- ctx->msgs, ctx->debug_mask, ctx->octx);
|
||||
+ ret = cache_update(ctx->nft->nf_sock, &ctx->nft->cache, cmd->op,
|
||||
+ ctx->msgs, ctx->nft->debug_mask, &ctx->nft->output);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
@@ -3106,8 +3106,8 @@ static int cmd_evaluate_add(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
handle_merge(&cmd->rule->handle, &cmd->handle);
|
||||
return rule_evaluate(ctx, cmd->rule);
|
||||
case CMD_OBJ_CHAIN:
|
||||
- ret = cache_update(ctx->nf_sock, ctx->cache, cmd->op,
|
||||
- ctx->msgs, ctx->debug_mask, ctx->octx);
|
||||
+ ret = cache_update(ctx->nft->nf_sock, &ctx->nft->cache, cmd->op,
|
||||
+ ctx->msgs, ctx->nft->debug_mask, &ctx->nft->output);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
@@ -3115,8 +3115,8 @@ static int cmd_evaluate_add(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
case CMD_OBJ_TABLE:
|
||||
return table_evaluate(ctx, cmd->table);
|
||||
case CMD_OBJ_FLOWTABLE:
|
||||
- ret = cache_update(ctx->nf_sock, ctx->cache, cmd->op,
|
||||
- ctx->msgs, ctx->debug_mask, ctx->octx);
|
||||
+ ret = cache_update(ctx->nft->nf_sock, &ctx->nft->cache, cmd->op,
|
||||
+ ctx->msgs, ctx->nft->debug_mask, &ctx->nft->output);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
@@ -3138,8 +3138,8 @@ static int cmd_evaluate_delete(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
|
||||
switch (cmd->obj) {
|
||||
case CMD_OBJ_SETELEM:
|
||||
- ret = cache_update(ctx->nf_sock, ctx->cache, cmd->op,
|
||||
- ctx->msgs, ctx->debug_mask, ctx->octx);
|
||||
+ ret = cache_update(ctx->nft->nf_sock, &ctx->nft->cache, cmd->op,
|
||||
+ ctx->msgs, ctx->nft->debug_mask, &ctx->nft->output);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
@@ -3165,14 +3165,14 @@ static int cmd_evaluate_get(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
struct set *set;
|
||||
int ret;
|
||||
|
||||
- ret = cache_update(ctx->nf_sock, ctx->cache, cmd->op, ctx->msgs,
|
||||
- ctx->debug_mask, ctx->octx);
|
||||
+ ret = cache_update(ctx->nft->nf_sock, &ctx->nft->cache, cmd->op, ctx->msgs,
|
||||
+ ctx->nft->debug_mask, &ctx->nft->output);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
switch (cmd->obj) {
|
||||
case CMD_OBJ_SETELEM:
|
||||
- table = table_lookup(&cmd->handle, ctx->cache);
|
||||
+ table = table_lookup(&cmd->handle, &ctx->nft->cache);
|
||||
if (table == NULL)
|
||||
return cmd_error(ctx, &ctx->cmd->handle.table.location,
|
||||
"Could not process rule: %s",
|
||||
@@ -3197,7 +3197,7 @@ static int cmd_evaluate_list_obj(struct eval_ctx *ctx, const struct cmd *cmd,
|
||||
if (obj_type == NFT_OBJECT_UNSPEC)
|
||||
obj_type = NFT_OBJECT_COUNTER;
|
||||
|
||||
- table = table_lookup(&cmd->handle, ctx->cache);
|
||||
+ table = table_lookup(&cmd->handle, &ctx->nft->cache);
|
||||
if (table == NULL)
|
||||
return cmd_error(ctx, &cmd->handle.table.location,
|
||||
"Could not process rule: %s",
|
||||
@@ -3215,8 +3215,8 @@ static int cmd_evaluate_list(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
struct set *set;
|
||||
int ret;
|
||||
|
||||
- ret = cache_update(ctx->nf_sock, ctx->cache, cmd->op, ctx->msgs,
|
||||
- ctx->debug_mask, ctx->octx);
|
||||
+ ret = cache_update(ctx->nft->nf_sock, &ctx->nft->cache, cmd->op, ctx->msgs,
|
||||
+ ctx->nft->debug_mask, &ctx->nft->output);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
@@ -3225,14 +3225,14 @@ static int cmd_evaluate_list(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
if (cmd->handle.table.name == NULL)
|
||||
return 0;
|
||||
|
||||
- table = table_lookup(&cmd->handle, ctx->cache);
|
||||
+ table = table_lookup(&cmd->handle, &ctx->nft->cache);
|
||||
if (table == NULL)
|
||||
return cmd_error(ctx, &cmd->handle.table.location,
|
||||
"Could not process rule: %s",
|
||||
strerror(ENOENT));
|
||||
return 0;
|
||||
case CMD_OBJ_SET:
|
||||
- table = table_lookup(&cmd->handle, ctx->cache);
|
||||
+ table = table_lookup(&cmd->handle, &ctx->nft->cache);
|
||||
if (table == NULL)
|
||||
return cmd_error(ctx, &cmd->handle.table.location,
|
||||
"Could not process rule: %s",
|
||||
@@ -3244,7 +3244,7 @@ static int cmd_evaluate_list(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
strerror(ENOENT));
|
||||
return 0;
|
||||
case CMD_OBJ_METER:
|
||||
- table = table_lookup(&cmd->handle, ctx->cache);
|
||||
+ table = table_lookup(&cmd->handle, &ctx->nft->cache);
|
||||
if (table == NULL)
|
||||
return cmd_error(ctx, &cmd->handle.table.location,
|
||||
"Could not process rule: %s",
|
||||
@@ -3256,7 +3256,7 @@ static int cmd_evaluate_list(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
strerror(ENOENT));
|
||||
return 0;
|
||||
case CMD_OBJ_MAP:
|
||||
- table = table_lookup(&cmd->handle, ctx->cache);
|
||||
+ table = table_lookup(&cmd->handle, &ctx->nft->cache);
|
||||
if (table == NULL)
|
||||
return cmd_error(ctx, &cmd->handle.table.location,
|
||||
"Could not process rule: %s",
|
||||
@@ -3268,7 +3268,7 @@ static int cmd_evaluate_list(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
strerror(ENOENT));
|
||||
return 0;
|
||||
case CMD_OBJ_CHAIN:
|
||||
- table = table_lookup(&cmd->handle, ctx->cache);
|
||||
+ table = table_lookup(&cmd->handle, &ctx->nft->cache);
|
||||
if (table == NULL)
|
||||
return cmd_error(ctx, &cmd->handle.table.location,
|
||||
"Could not process rule: %s",
|
||||
@@ -3294,7 +3294,7 @@ static int cmd_evaluate_list(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
case CMD_OBJ_FLOWTABLES:
|
||||
if (cmd->handle.table.name == NULL)
|
||||
return 0;
|
||||
- if (table_lookup(&cmd->handle, ctx->cache) == NULL)
|
||||
+ if (table_lookup(&cmd->handle, &ctx->nft->cache) == NULL)
|
||||
return cmd_error(ctx, &cmd->handle.table.location,
|
||||
"Could not process rule: %s",
|
||||
strerror(ENOENT));
|
||||
@@ -3313,8 +3313,8 @@ static int cmd_evaluate_reset(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
{
|
||||
int ret;
|
||||
|
||||
- ret = cache_update(ctx->nf_sock, ctx->cache, cmd->op, ctx->msgs,
|
||||
- ctx->debug_mask, ctx->octx);
|
||||
+ ret = cache_update(ctx->nft->nf_sock, &ctx->nft->cache, cmd->op, ctx->msgs,
|
||||
+ ctx->nft->debug_mask, &ctx->nft->output);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
@@ -3325,7 +3325,7 @@ static int cmd_evaluate_reset(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
case CMD_OBJ_QUOTAS:
|
||||
if (cmd->handle.table.name == NULL)
|
||||
return 0;
|
||||
- if (table_lookup(&cmd->handle, ctx->cache) == NULL)
|
||||
+ if (table_lookup(&cmd->handle, &ctx->nft->cache) == NULL)
|
||||
return cmd_error(ctx, &cmd->handle.table.location,
|
||||
"Could not process rule: %s",
|
||||
strerror(ENOENT));
|
||||
@@ -3343,8 +3343,8 @@ static int cmd_evaluate_flush(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
|
||||
switch (cmd->obj) {
|
||||
case CMD_OBJ_RULESET:
|
||||
- cache_flush(ctx->nf_sock, ctx->cache, cmd->op, ctx->msgs,
|
||||
- ctx->debug_mask, ctx->octx);
|
||||
+ cache_flush(ctx->nft->nf_sock, &ctx->nft->cache, cmd->op, ctx->msgs,
|
||||
+ ctx->nft->debug_mask, &ctx->nft->output);
|
||||
break;
|
||||
case CMD_OBJ_TABLE:
|
||||
/* Flushing a table does not empty the sets in the table nor remove
|
||||
@@ -3354,12 +3354,12 @@ static int cmd_evaluate_flush(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
/* Chains don't hold sets */
|
||||
break;
|
||||
case CMD_OBJ_SET:
|
||||
- ret = cache_update(ctx->nf_sock, ctx->cache, cmd->op, ctx->msgs,
|
||||
- ctx->debug_mask, ctx->octx);
|
||||
+ ret = cache_update(ctx->nft->nf_sock, &ctx->nft->cache, cmd->op, ctx->msgs,
|
||||
+ ctx->nft->debug_mask, &ctx->nft->output);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
- table = table_lookup(&cmd->handle, ctx->cache);
|
||||
+ table = table_lookup(&cmd->handle, &ctx->nft->cache);
|
||||
if (table == NULL)
|
||||
return cmd_error(ctx, &cmd->handle.table.location,
|
||||
"Could not process rule: %s",
|
||||
@@ -3371,12 +3371,12 @@ static int cmd_evaluate_flush(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
strerror(ENOENT));
|
||||
return 0;
|
||||
case CMD_OBJ_MAP:
|
||||
- ret = cache_update(ctx->nf_sock, ctx->cache, cmd->op, ctx->msgs,
|
||||
- ctx->debug_mask, ctx->octx);
|
||||
+ ret = cache_update(ctx->nft->nf_sock, &ctx->nft->cache, cmd->op, ctx->msgs,
|
||||
+ ctx->nft->debug_mask, &ctx->nft->output);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
- table = table_lookup(&cmd->handle, ctx->cache);
|
||||
+ table = table_lookup(&cmd->handle, &ctx->nft->cache);
|
||||
if (table == NULL)
|
||||
return cmd_error(ctx, &ctx->cmd->handle.table.location,
|
||||
"Could not process rule: %s",
|
||||
@@ -3388,12 +3388,12 @@ static int cmd_evaluate_flush(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
strerror(ENOENT));
|
||||
return 0;
|
||||
case CMD_OBJ_METER:
|
||||
- ret = cache_update(ctx->nf_sock, ctx->cache, cmd->op, ctx->msgs,
|
||||
- ctx->debug_mask, ctx->octx);
|
||||
+ ret = cache_update(ctx->nft->nf_sock, &ctx->nft->cache, cmd->op, ctx->msgs,
|
||||
+ ctx->nft->debug_mask, &ctx->nft->output);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
- table = table_lookup(&cmd->handle, ctx->cache);
|
||||
+ table = table_lookup(&cmd->handle, &ctx->nft->cache);
|
||||
if (table == NULL)
|
||||
return cmd_error(ctx, &ctx->cmd->handle.table.location,
|
||||
"Could not process rule: %s",
|
||||
@@ -3417,12 +3417,12 @@ static int cmd_evaluate_rename(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
|
||||
switch (cmd->obj) {
|
||||
case CMD_OBJ_CHAIN:
|
||||
- ret = cache_update(ctx->nf_sock, ctx->cache, cmd->op,
|
||||
- ctx->msgs, ctx->debug_mask, ctx->octx);
|
||||
+ ret = cache_update(ctx->nft->nf_sock, &ctx->nft->cache, cmd->op,
|
||||
+ ctx->msgs, ctx->nft->debug_mask, &ctx->nft->output);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
- table = table_lookup(&ctx->cmd->handle, ctx->cache);
|
||||
+ table = table_lookup(&ctx->cmd->handle, &ctx->nft->cache);
|
||||
if (table == NULL)
|
||||
return cmd_error(ctx, &ctx->cmd->handle.table.location,
|
||||
"Could not process rule: %s",
|
||||
@@ -3517,8 +3517,8 @@ static int cmd_evaluate_monitor(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
uint32_t event;
|
||||
int ret;
|
||||
|
||||
- ret = cache_update(ctx->nf_sock, ctx->cache, cmd->op, ctx->msgs,
|
||||
- ctx->debug_mask, ctx->octx);
|
||||
+ ret = cache_update(ctx->nft->nf_sock, &ctx->nft->cache, cmd->op, ctx->msgs,
|
||||
+ ctx->nft->debug_mask, &ctx->nft->output);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
@@ -3543,8 +3543,8 @@ static int cmd_evaluate_export(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
return cmd_error(ctx, &cmd->location,
|
||||
"this output type is not supported");
|
||||
|
||||
- return cache_update(ctx->nf_sock, ctx->cache, cmd->op, ctx->msgs,
|
||||
- ctx->debug_mask, ctx->octx);
|
||||
+ return cache_update(ctx->nft->nf_sock, &ctx->nft->cache, cmd->op, ctx->msgs,
|
||||
+ ctx->nft->debug_mask, &ctx->nft->output);
|
||||
}
|
||||
|
||||
static int cmd_evaluate_import(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
@@ -3582,13 +3582,13 @@ static const char *cmd_op_to_name(enum cmd_ops op)
|
||||
|
||||
int cmd_evaluate(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
{
|
||||
- if (ctx->debug_mask & NFT_DEBUG_EVALUATION) {
|
||||
+ if (ctx->nft->debug_mask & NFT_DEBUG_EVALUATION) {
|
||||
struct error_record *erec;
|
||||
|
||||
erec = erec_create(EREC_INFORMATIONAL, &cmd->location,
|
||||
"Evaluate %s", cmd_op_to_name(cmd->op));
|
||||
- erec_print(ctx->octx, erec, ctx->debug_mask);
|
||||
- nft_print(ctx->octx, "\n\n");
|
||||
+ erec_print(&ctx->nft->output, erec, ctx->nft->debug_mask);
|
||||
+ nft_print(&ctx->nft->output, "\n\n");
|
||||
erec_destroy(erec);
|
||||
}
|
||||
|
||||
diff --git a/src/parser_bison.y b/src/parser_bison.y
|
||||
index 33915ed8702a6..d75cd50fa29b9 100644
|
||||
--- a/src/parser_bison.y
|
||||
+++ b/src/parser_bison.y
|
||||
@@ -44,11 +44,8 @@ void parser_init(struct nft_ctx *nft, struct parser_state *state,
|
||||
state->msgs = msgs;
|
||||
state->cmds = cmds;
|
||||
state->scopes[0] = scope_init(&state->top_scope, NULL);
|
||||
- state->ectx.cache = &nft->cache;
|
||||
+ state->ectx.nft = nft;
|
||||
state->ectx.msgs = msgs;
|
||||
- state->ectx.nf_sock = nft->nf_sock;
|
||||
- state->ectx.debug_mask = nft->debug_mask;
|
||||
- state->ectx.octx = &nft->output;
|
||||
}
|
||||
|
||||
static void yyerror(struct location *loc, struct nft_ctx *nft, void *scanner,
|
||||
--
|
||||
2.21.0
|
||||
|
80
SOURCES/0017-src-trace-fix-policy-printing.patch
Normal file
80
SOURCES/0017-src-trace-fix-policy-printing.patch
Normal file
@ -0,0 +1,80 @@
|
||||
From 244a83f9e0809177f07fb7b7474f84a126cf827f Mon Sep 17 00:00:00 2001
|
||||
From: Florian Westphal <fw@strlen.de>
|
||||
Date: Wed, 20 Jun 2018 23:06:04 +0200
|
||||
Subject: [PATCH] src: trace: fix policy printing
|
||||
|
||||
policy type is erronously handled via verdict, this is wrong.
|
||||
It is a different event type and needs to be handled as such.
|
||||
|
||||
before:
|
||||
trace id 42b54e71 inet filter input packet: iif "lo" ip saddr 127.0.0.1 ..
|
||||
trace id 42b54e71 inet filter input rule ip protocol icmp nftrace set 1 (verdict continue)
|
||||
trace id 42b54e71 inet filter input verdict continue
|
||||
trace id 42b54e71 inet filter input
|
||||
|
||||
after:
|
||||
trace id 9f40c5c7 inet filter input packet: iif "lo" ip saddr 127.0.0.1 ..
|
||||
trace id 9f40c5c7 inet filter input rule ip protocol icmp nftrace set 1 (verdict continue)
|
||||
trace id 9f40c5c7 inet filter input verdict continue
|
||||
trace id 9f40c5c7 inet filter input policy drop
|
||||
|
||||
Reported-by: vtol@gmx.net
|
||||
Signed-off-by: Florian Westphal <fw@strlen.de>
|
||||
(cherry picked from commit 78ba4ffdeacc9b31f7396d72c98907e861024653)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/netlink.c | 31 ++++++++++++++++++++++++++++++-
|
||||
1 file changed, 30 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/netlink.c b/src/netlink.c
|
||||
index ca5e9b4a0f8a6..4fd3f2dfefced 100644
|
||||
--- a/src/netlink.c
|
||||
+++ b/src/netlink.c
|
||||
@@ -1705,7 +1705,22 @@ static void trace_print_verdict(const struct nftnl_trace *nlt,
|
||||
chain = xstrdup(nftnl_trace_get_str(nlt, NFTNL_TRACE_JUMP_TARGET));
|
||||
expr = verdict_expr_alloc(&netlink_location, verdict, chain);
|
||||
|
||||
- printf("verdict ");
|
||||
+ nft_print(octx, "verdict ");
|
||||
+ expr_print(expr, octx);
|
||||
+ expr_free(expr);
|
||||
+}
|
||||
+
|
||||
+static void trace_print_policy(const struct nftnl_trace *nlt,
|
||||
+ struct output_ctx *octx)
|
||||
+{
|
||||
+ unsigned int policy;
|
||||
+ struct expr *expr;
|
||||
+
|
||||
+ policy = nftnl_trace_get_u32(nlt, NFTNL_TRACE_POLICY);
|
||||
+
|
||||
+ expr = verdict_expr_alloc(&netlink_location, policy, NULL);
|
||||
+
|
||||
+ nft_print(octx, "policy ");
|
||||
expr_print(expr, octx);
|
||||
expr_free(expr);
|
||||
}
|
||||
@@ -1921,6 +1936,20 @@ int netlink_events_trace_cb(const struct nlmsghdr *nlh, int type,
|
||||
trace_print_rule(nlt, monh->ctx->octx, monh->cache);
|
||||
break;
|
||||
case NFT_TRACETYPE_POLICY:
|
||||
+ trace_print_hdr(nlt, monh->ctx->octx);
|
||||
+
|
||||
+ if (nftnl_trace_is_set(nlt, NFTNL_TRACE_POLICY)) {
|
||||
+ trace_print_policy(nlt, monh->ctx->octx);
|
||||
+ nft_mon_print(monh, " ");
|
||||
+ }
|
||||
+
|
||||
+ if (nftnl_trace_is_set(nlt, NFTNL_TRACE_MARK))
|
||||
+ trace_print_expr(nlt, NFTNL_TRACE_MARK,
|
||||
+ meta_expr_alloc(&netlink_location,
|
||||
+ NFT_META_MARK),
|
||||
+ monh->ctx->octx);
|
||||
+ nft_mon_print(monh, "\n");
|
||||
+ break;
|
||||
case NFT_TRACETYPE_RETURN:
|
||||
trace_print_hdr(nlt, monh->ctx->octx);
|
||||
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,55 @@
|
||||
From 48169840569b45e7695b125935bf30967f30b10c Mon Sep 17 00:00:00 2001
|
||||
From: Harsha Sharma <harshasharmaiitr@gmail.com>
|
||||
Date: Sun, 8 Jul 2018 12:41:03 +0200
|
||||
Subject: [PATCH] rule: list only the table containing object
|
||||
|
||||
For e.g.
|
||||
|
||||
% nft list ct helper ip raw cthelp1
|
||||
table ip filter {
|
||||
}
|
||||
table ip raw {
|
||||
ct helper cthelp1 {
|
||||
type "ftp" protocol tcp
|
||||
l3proto ip
|
||||
}
|
||||
}
|
||||
|
||||
With this patch, print only table raw.
|
||||
|
||||
Signed-off-by: Harsha Sharma <harshasharmaiitr@gmail.com>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 88456a7ef011728a98c950447630f0a128dcad13)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/rule.c | 12 +++++-------
|
||||
1 file changed, 5 insertions(+), 7 deletions(-)
|
||||
|
||||
diff --git a/src/rule.c b/src/rule.c
|
||||
index a157ac91683cc..3b5468d00e79c 100644
|
||||
--- a/src/rule.c
|
||||
+++ b/src/rule.c
|
||||
@@ -1593,15 +1593,13 @@ static int do_list_obj(struct netlink_ctx *ctx, struct cmd *cmd, uint32_t type)
|
||||
cmd->handle.family != table->handle.family)
|
||||
continue;
|
||||
|
||||
- nft_print(ctx->octx, "table %s %s {\n",
|
||||
- family2str(table->handle.family),
|
||||
- table->handle.table.name);
|
||||
-
|
||||
if (cmd->handle.table.name != NULL &&
|
||||
- strcmp(cmd->handle.table.name, table->handle.table.name)) {
|
||||
- nft_print(ctx->octx, "}\n");
|
||||
+ !strcmp(cmd->handle.table.name, table->handle.table.name)) {
|
||||
+ nft_print(ctx->octx, "table %s %s {\n",
|
||||
+ family2str(table->handle.family),
|
||||
+ cmd->handle.table.name);
|
||||
+ } else
|
||||
continue;
|
||||
- }
|
||||
|
||||
list_for_each_entry(obj, &table->objs, list) {
|
||||
if (obj->type != type ||
|
||||
--
|
||||
2.21.0
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,75 @@
|
||||
From c8b6092b4fec23b823695c0c9b10325f9c33150c Mon Sep 17 00:00:00 2001
|
||||
From: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Date: Mon, 22 Oct 2018 21:20:44 +0200
|
||||
Subject: [PATCH] netlink: reset mnl_socket field in struct nft_ctx on EINTR
|
||||
|
||||
Otherwise we keep using the old netlink socket if we hit EINTR.
|
||||
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit d7ef1e206bd9b36607dddcf337fada11d743b61f)
|
||||
|
||||
Conflicts:
|
||||
include/netlink.h
|
||||
-> Missing upstream commit 0562beb6544d3 ("src: get rid of netlink_genid_get()")
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
include/netlink.h | 2 +-
|
||||
src/netlink.c | 4 ++--
|
||||
src/rule.c | 3 +--
|
||||
3 files changed, 4 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/include/netlink.h b/include/netlink.h
|
||||
index 31465ff16822e..894bf6fc98487 100644
|
||||
--- a/include/netlink.h
|
||||
+++ b/include/netlink.h
|
||||
@@ -191,7 +191,7 @@ extern void netlink_dump_obj(struct nftnl_obj *nlo, struct netlink_ctx *ctx);
|
||||
extern int netlink_batch_send(struct netlink_ctx *ctx, struct list_head *err_list);
|
||||
|
||||
extern uint16_t netlink_genid_get(struct netlink_ctx *ctx);
|
||||
-extern void netlink_restart(struct mnl_socket *nf_sock);
|
||||
+extern struct mnl_socket *netlink_restart(struct mnl_socket *nf_sock);
|
||||
#define netlink_abi_error() \
|
||||
__netlink_abi_error(__FILE__, __LINE__, strerror(errno));
|
||||
extern void __noreturn __netlink_abi_error(const char *file, int line, const char *reason);
|
||||
diff --git a/src/netlink.c b/src/netlink.c
|
||||
index e16eb504fdef8..c178be3c9ee26 100644
|
||||
--- a/src/netlink.c
|
||||
+++ b/src/netlink.c
|
||||
@@ -73,10 +73,10 @@ void netlink_close_sock(struct mnl_socket *nf_sock)
|
||||
mnl_socket_close(nf_sock);
|
||||
}
|
||||
|
||||
-void netlink_restart(struct mnl_socket *nf_sock)
|
||||
+struct mnl_socket *netlink_restart(struct mnl_socket *nf_sock)
|
||||
{
|
||||
netlink_close_sock(nf_sock);
|
||||
- nf_sock = netlink_open_sock();
|
||||
+ return netlink_open_sock();
|
||||
}
|
||||
|
||||
uint16_t netlink_genid_get(struct netlink_ctx *ctx)
|
||||
diff --git a/src/rule.c b/src/rule.c
|
||||
index 6acfa3ac1695c..47b0d30cbed18 100644
|
||||
--- a/src/rule.c
|
||||
+++ b/src/rule.c
|
||||
@@ -161,7 +161,6 @@ int cache_update(struct nft_ctx *nft, enum cmd_ops cmd, struct list_head *msgs)
|
||||
.msgs = msgs,
|
||||
.nft = nft,
|
||||
};
|
||||
- struct mnl_socket *nf_sock = nft->nf_sock;
|
||||
struct nft_cache *cache = &nft->cache;
|
||||
|
||||
replay:
|
||||
@@ -176,7 +175,7 @@ replay:
|
||||
if (ret < 0) {
|
||||
cache_release(cache);
|
||||
if (errno == EINTR) {
|
||||
- netlink_restart(nf_sock);
|
||||
+ nft->nf_sock = netlink_restart(nft->nf_sock);
|
||||
goto replay;
|
||||
}
|
||||
return -1;
|
||||
--
|
||||
2.21.0
|
||||
|
71
SOURCES/0021-src-remove-opts-field-from-struct-xt_stmt.patch
Normal file
71
SOURCES/0021-src-remove-opts-field-from-struct-xt_stmt.patch
Normal file
@ -0,0 +1,71 @@
|
||||
From ed4ceb7da31534de89df66d241d449c644fd3ec2 Mon Sep 17 00:00:00 2001
|
||||
From: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Date: Tue, 16 Oct 2018 20:56:57 +0200
|
||||
Subject: [PATCH] src: remove opts field from struct xt_stmt
|
||||
|
||||
This is never used, ie. always NULL.
|
||||
|
||||
Reported-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Acked-by: Phil Sutter <phil@nwl.cc>
|
||||
(cherry picked from commit b274c169014e71715f9333ee028c5a9304881919)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
include/statement.h | 1 -
|
||||
src/statement.c | 1 -
|
||||
src/xt.c | 8 ++------
|
||||
3 files changed, 2 insertions(+), 8 deletions(-)
|
||||
|
||||
diff --git a/include/statement.h b/include/statement.h
|
||||
index 5a907aa4dee48..0ddbffd24772b 100644
|
||||
--- a/include/statement.h
|
||||
+++ b/include/statement.h
|
||||
@@ -225,7 +225,6 @@ struct xt_stmt {
|
||||
struct xtables_match *match;
|
||||
struct xtables_target *target;
|
||||
};
|
||||
- const char *opts;
|
||||
void *entry;
|
||||
};
|
||||
|
||||
diff --git a/src/statement.c b/src/statement.c
|
||||
index 58e86f215d5ac..e9c9d648b0092 100644
|
||||
--- a/src/statement.c
|
||||
+++ b/src/statement.c
|
||||
@@ -767,7 +767,6 @@ static void xt_stmt_print(const struct stmt *stmt, struct output_ctx *octx)
|
||||
static void xt_stmt_destroy(struct stmt *stmt)
|
||||
{
|
||||
xfree(stmt->xt.name);
|
||||
- xfree(stmt->xt.opts);
|
||||
xt_stmt_release(stmt);
|
||||
}
|
||||
|
||||
diff --git a/src/xt.c b/src/xt.c
|
||||
index 95d0c5f24c07e..74763d58cafd7 100644
|
||||
--- a/src/xt.c
|
||||
+++ b/src/xt.c
|
||||
@@ -32,9 +32,7 @@ void xt_stmt_xlate(const struct stmt *stmt)
|
||||
|
||||
switch (stmt->xt.type) {
|
||||
case NFT_XT_MATCH:
|
||||
- if (stmt->xt.match == NULL && stmt->xt.opts) {
|
||||
- printf("%s", stmt->xt.opts);
|
||||
- } else if (stmt->xt.match->xlate) {
|
||||
+ if (stmt->xt.match->xlate) {
|
||||
struct xt_xlate_mt_params params = {
|
||||
.ip = stmt->xt.entry,
|
||||
.match = stmt->xt.match->m,
|
||||
@@ -51,9 +49,7 @@ void xt_stmt_xlate(const struct stmt *stmt)
|
||||
break;
|
||||
case NFT_XT_WATCHER:
|
||||
case NFT_XT_TARGET:
|
||||
- if (stmt->xt.target == NULL && stmt->xt.opts) {
|
||||
- printf("%s", stmt->xt.opts);
|
||||
- } else if (stmt->xt.target->xlate) {
|
||||
+ if (stmt->xt.target->xlate) {
|
||||
struct xt_xlate_tg_params params = {
|
||||
.ip = stmt->xt.entry,
|
||||
.target = stmt->xt.target->t,
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,240 @@
|
||||
From 48d688ddb20d4594ee946014a661d30c82c9247d Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Fri, 8 Jun 2018 17:27:18 +0200
|
||||
Subject: [PATCH] JSON: Support latest enhancements of fwd statement
|
||||
|
||||
JSON equivalent of fwd statement was too primitive to support the added
|
||||
address and family parameters, so make its value an object and accept
|
||||
the device expression as value of a "dev" property in there. Then add
|
||||
optional "addr" and "family" properties to it.
|
||||
|
||||
While being at it, add a testcase to make sure the extended syntax works
|
||||
right.
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit f63b54623fcd1ab7d2f51928571c164409f00175)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/json.c | 13 ++++++++--
|
||||
src/parser_json.c | 40 ++++++++++++++++++++++++++++--
|
||||
tests/py/any/fwd.t | 1 +
|
||||
tests/py/any/fwd.t.json | 45 ++++++++++++++++++++++------------
|
||||
tests/py/any/fwd.t.json.output | 30 ++++++++++++-----------
|
||||
tests/py/any/fwd.t.payload | 6 +++++
|
||||
6 files changed, 102 insertions(+), 33 deletions(-)
|
||||
|
||||
diff --git a/src/json.c b/src/json.c
|
||||
index 7d89754bd666d..eeba90e266f75 100644
|
||||
--- a/src/json.c
|
||||
+++ b/src/json.c
|
||||
@@ -1008,9 +1008,18 @@ json_t *limit_stmt_json(const struct stmt *stmt, struct output_ctx *octx)
|
||||
|
||||
json_t *fwd_stmt_json(const struct stmt *stmt, struct output_ctx *octx)
|
||||
{
|
||||
- json_t *root;
|
||||
+ json_t *root, *tmp;
|
||||
+
|
||||
+ root = json_pack("{s:o}", "dev", expr_print_json(stmt->fwd.dev, octx));
|
||||
+
|
||||
+ if (stmt->fwd.addr) {
|
||||
+ tmp = json_string(family2str(stmt->fwd.family));
|
||||
+ json_object_set_new(root, "family", tmp);
|
||||
+
|
||||
+ tmp = expr_print_json(stmt->fwd.addr, octx);
|
||||
+ json_object_set_new(root, "addr", tmp);
|
||||
+ }
|
||||
|
||||
- root = expr_print_json(stmt->fwd.dev, octx);
|
||||
return json_pack("{s:o}", "fwd", root);
|
||||
}
|
||||
|
||||
diff --git a/src/parser_json.c b/src/parser_json.c
|
||||
index 6e14fb7278fb0..af57b3025a104 100644
|
||||
--- a/src/parser_json.c
|
||||
+++ b/src/parser_json.c
|
||||
@@ -1561,11 +1561,47 @@ static struct stmt *json_parse_limit_stmt(struct json_ctx *ctx,
|
||||
static struct stmt *json_parse_fwd_stmt(struct json_ctx *ctx,
|
||||
const char *key, json_t *value)
|
||||
{
|
||||
- struct stmt *stmt = fwd_stmt_alloc(int_loc);
|
||||
+ json_t *jaddr, *jdev;
|
||||
+ const char *family;
|
||||
+ struct stmt *stmt;
|
||||
+ int familyval;
|
||||
+
|
||||
+ if (json_unpack_err(ctx, value, "{s:o}", "dev", &jdev))
|
||||
+ return NULL;
|
||||
|
||||
- stmt->fwd.dev = json_parse_expr(ctx, value);
|
||||
+ stmt = fwd_stmt_alloc(int_loc);
|
||||
+
|
||||
+ stmt->fwd.dev = json_parse_stmt_expr(ctx, jdev);
|
||||
+ if (!stmt->fwd.dev) {
|
||||
+ json_error(ctx, "Invalid fwd dev value.");
|
||||
+ goto out_err;
|
||||
+ }
|
||||
+
|
||||
+ if (json_unpack(value, "{s:s, s:o}",
|
||||
+ "family", &family, "addr", &jaddr))
|
||||
+ return stmt;
|
||||
+
|
||||
+ familyval = parse_family(family);
|
||||
+ switch (familyval) {
|
||||
+ case NFPROTO_IPV4:
|
||||
+ case NFPROTO_IPV6:
|
||||
+ stmt->fwd.family = familyval;
|
||||
+ break;
|
||||
+ default:
|
||||
+ json_error(ctx, "Invalid fwd family value '%s'.", family);
|
||||
+ goto out_err;
|
||||
+ }
|
||||
+
|
||||
+ stmt->fwd.addr = json_parse_stmt_expr(ctx, jaddr);
|
||||
+ if (!stmt->fwd.addr) {
|
||||
+ json_error(ctx, "Invalid fwd addr value.");
|
||||
+ goto out_err;
|
||||
+ }
|
||||
|
||||
return stmt;
|
||||
+out_err:
|
||||
+ stmt_free(stmt);
|
||||
+ return NULL;
|
||||
}
|
||||
|
||||
static struct stmt *json_parse_notrack_stmt(struct json_ctx *ctx,
|
||||
diff --git a/tests/py/any/fwd.t b/tests/py/any/fwd.t
|
||||
index d9b4514ee29a1..986a16d9e2c8c 100644
|
||||
--- a/tests/py/any/fwd.t
|
||||
+++ b/tests/py/any/fwd.t
|
||||
@@ -5,3 +5,4 @@
|
||||
fwd to "lo";ok
|
||||
fwd to mark map { 0x00000001 : "lo", 0x00000002 : "lo"};ok
|
||||
|
||||
+fwd ip to 192.168.2.200 device "lo";ok
|
||||
diff --git a/tests/py/any/fwd.t.json b/tests/py/any/fwd.t.json
|
||||
index 644d6d48c2a19..e58a8ad25829b 100644
|
||||
--- a/tests/py/any/fwd.t.json
|
||||
+++ b/tests/py/any/fwd.t.json
|
||||
@@ -1,7 +1,9 @@
|
||||
# fwd to "lo"
|
||||
[
|
||||
{
|
||||
- "fwd": "lo"
|
||||
+ "fwd": {
|
||||
+ "dev": "lo"
|
||||
+ }
|
||||
}
|
||||
]
|
||||
|
||||
@@ -9,24 +11,37 @@
|
||||
[
|
||||
{
|
||||
"fwd": {
|
||||
- "map": {
|
||||
- "left": {
|
||||
- "meta": "mark"
|
||||
- },
|
||||
- "right": {
|
||||
- "set": [
|
||||
- [
|
||||
- "0x00000001",
|
||||
- "lo"
|
||||
- ],
|
||||
- [
|
||||
- "0x00000002",
|
||||
- "lo"
|
||||
+ "dev": {
|
||||
+ "map": {
|
||||
+ "left": {
|
||||
+ "meta": "mark"
|
||||
+ },
|
||||
+ "right": {
|
||||
+ "set": [
|
||||
+ [
|
||||
+ "0x00000001",
|
||||
+ "lo"
|
||||
+ ],
|
||||
+ [
|
||||
+ "0x00000002",
|
||||
+ "lo"
|
||||
+ ]
|
||||
]
|
||||
- ]
|
||||
+ }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
+# fwd ip to 192.168.2.200 device "lo"
|
||||
+[
|
||||
+ {
|
||||
+ "fwd": {
|
||||
+ "addr": "192.168.2.200",
|
||||
+ "dev": "lo",
|
||||
+ "family": "ip"
|
||||
+ }
|
||||
+ }
|
||||
+]
|
||||
+
|
||||
diff --git a/tests/py/any/fwd.t.json.output b/tests/py/any/fwd.t.json.output
|
||||
index 5a943567adb0c..e4bad620b22d4 100644
|
||||
--- a/tests/py/any/fwd.t.json.output
|
||||
+++ b/tests/py/any/fwd.t.json.output
|
||||
@@ -2,21 +2,23 @@
|
||||
[
|
||||
{
|
||||
"fwd": {
|
||||
- "map": {
|
||||
- "left": {
|
||||
- "meta": "mark"
|
||||
- },
|
||||
- "right": {
|
||||
- "set": [
|
||||
- [
|
||||
- 1,
|
||||
- "lo"
|
||||
- ],
|
||||
- [
|
||||
- 2,
|
||||
- "lo"
|
||||
+ "dev": {
|
||||
+ "map": {
|
||||
+ "left": {
|
||||
+ "meta": "mark"
|
||||
+ },
|
||||
+ "right": {
|
||||
+ "set": [
|
||||
+ [
|
||||
+ 1,
|
||||
+ "lo"
|
||||
+ ],
|
||||
+ [
|
||||
+ 2,
|
||||
+ "lo"
|
||||
+ ]
|
||||
]
|
||||
- ]
|
||||
+ }
|
||||
}
|
||||
}
|
||||
}
|
||||
diff --git a/tests/py/any/fwd.t.payload b/tests/py/any/fwd.t.payload
|
||||
index 696b55efe8207..966c08b0959c3 100644
|
||||
--- a/tests/py/any/fwd.t.payload
|
||||
+++ b/tests/py/any/fwd.t.payload
|
||||
@@ -12,3 +12,9 @@ netdev test-netdev ingress
|
||||
[ lookup reg 1 set __map%d dreg 1 ]
|
||||
[ fwd sreg_dev 1 ]
|
||||
|
||||
+# fwd ip to 192.168.2.200 device "lo"
|
||||
+netdev test-netdev ingress
|
||||
+ [ immediate reg 1 0x00000001 ]
|
||||
+ [ immediate reg 2 0xc802a8c0 ]
|
||||
+ [ fwd sreg_dev 1 sreg_addr 2 nfproto 2 ]
|
||||
+
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,310 @@
|
||||
From c40b8c22beef6011d79c60742bc4043d681198c1 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Fri, 12 Oct 2018 17:23:24 +0200
|
||||
Subject: [PATCH] parser_json: Fix for ineffective family value checks
|
||||
|
||||
Since handle->family is unsigned, checking for value < 0 never yields
|
||||
true. Overcome this by changing parse_family() to return an error code
|
||||
and write the parsed family value into a pointer passed as parameter.
|
||||
|
||||
The above change required a bit more cleanup to avoid passing pointers
|
||||
to signed variables to the function. Also leverage json_parse_family() a
|
||||
bit more to reduce code side.
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit c7a5401943df8b6b96f6b5eedd9a1e0013e01d86)
|
||||
|
||||
Conflicts:
|
||||
src/parser_json.c
|
||||
-> Missing ct timeout support
|
||||
-> missing tproxy support in JSON
|
||||
-> Missing ipsec expression
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/parser_json.c | 130 ++++++++++++++++++++++------------------------
|
||||
1 file changed, 62 insertions(+), 68 deletions(-)
|
||||
|
||||
diff --git a/src/parser_json.c b/src/parser_json.c
|
||||
index af57b3025a104..30de17f8a1e26 100644
|
||||
--- a/src/parser_json.c
|
||||
+++ b/src/parser_json.c
|
||||
@@ -173,7 +173,7 @@ static int json_unpack_stmt(struct json_ctx *ctx, json_t *root,
|
||||
return 1;
|
||||
}
|
||||
|
||||
-static int parse_family(const char *name)
|
||||
+static int parse_family(const char *name, uint32_t *family)
|
||||
{
|
||||
unsigned int i;
|
||||
struct {
|
||||
@@ -188,13 +188,37 @@ static int parse_family(const char *name)
|
||||
{ "netdev", NFPROTO_NETDEV }
|
||||
};
|
||||
|
||||
+ assert(family);
|
||||
+
|
||||
for (i = 0; i < array_size(family_tbl); i++) {
|
||||
- if (!strcmp(name, family_tbl[i].name))
|
||||
- return family_tbl[i].val;
|
||||
+ if (strcmp(name, family_tbl[i].name))
|
||||
+ continue;
|
||||
+
|
||||
+ *family = family_tbl[i].val;
|
||||
+ return 0;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
+static int json_parse_family(struct json_ctx *ctx, json_t *root)
|
||||
+{
|
||||
+ const char *family;
|
||||
+
|
||||
+ if (!json_unpack(root, "{s:s}", "family", &family)) {
|
||||
+ uint32_t familyval;
|
||||
+
|
||||
+ if (parse_family(family, &familyval) ||
|
||||
+ (familyval != NFPROTO_IPV6 &&
|
||||
+ familyval != NFPROTO_IPV4)) {
|
||||
+ json_error(ctx, "Invalid family '%s'.", family);
|
||||
+ return -1;
|
||||
+ }
|
||||
+ return familyval;
|
||||
+ }
|
||||
+
|
||||
+ return NFPROTO_UNSPEC;
|
||||
+}
|
||||
+
|
||||
static bool is_keyword(const char *keyword)
|
||||
{
|
||||
const char *keywords[] = {
|
||||
@@ -594,19 +618,15 @@ static struct expr *json_parse_rt_expr(struct json_ctx *ctx,
|
||||
{ "nexthop", NFT_RT_NEXTHOP4 },
|
||||
{ "mtu", NFT_RT_TCPMSS },
|
||||
};
|
||||
- unsigned int i, familyval = NFPROTO_UNSPEC;
|
||||
- const char *key, *family = NULL;
|
||||
+ const char *key;
|
||||
+ unsigned int i;
|
||||
+ int familyval;
|
||||
|
||||
if (json_unpack_err(ctx, root, "{s:s}", "key", &key))
|
||||
return NULL;
|
||||
- if (!json_unpack(root, "{s:s}", "family", &family)) {
|
||||
- familyval = parse_family(family);
|
||||
- if (familyval != NFPROTO_IPV4 &&
|
||||
- familyval != NFPROTO_IPV6) {
|
||||
- json_error(ctx, "Invalid RT family '%s'.", family);
|
||||
- return NULL;
|
||||
- }
|
||||
- }
|
||||
+ familyval = json_parse_family(ctx, root);
|
||||
+ if (familyval < 0)
|
||||
+ return NULL;
|
||||
|
||||
for (i = 0; i < array_size(rt_key_tbl); i++) {
|
||||
int val = rt_key_tbl[i].val;
|
||||
@@ -653,9 +673,9 @@ static bool ct_key_is_dir(enum nft_ct_keys key)
|
||||
static struct expr *json_parse_ct_expr(struct json_ctx *ctx,
|
||||
const char *type, json_t *root)
|
||||
{
|
||||
- const char *key, *dir, *family;
|
||||
+ const char *key, *dir;
|
||||
unsigned int i;
|
||||
- int dirval = -1, familyval = NFPROTO_UNSPEC, keyval = -1;
|
||||
+ int dirval = -1, familyval, keyval = -1;
|
||||
|
||||
if (json_unpack_err(ctx, root, "{s:s}", "key", &key))
|
||||
return NULL;
|
||||
@@ -672,14 +692,9 @@ static struct expr *json_parse_ct_expr(struct json_ctx *ctx,
|
||||
return NULL;
|
||||
}
|
||||
|
||||
- if (!json_unpack(root, "{s:s}", "family", &family)) {
|
||||
- familyval = parse_family(family);
|
||||
- if (familyval != NFPROTO_IPV4 &&
|
||||
- familyval != NFPROTO_IPV6) {
|
||||
- json_error(ctx, "Invalid CT family '%s'.", family);
|
||||
- return NULL;
|
||||
- }
|
||||
- }
|
||||
+ familyval = json_parse_family(ctx, root);
|
||||
+ if (familyval < 0)
|
||||
+ return NULL;
|
||||
|
||||
if (!json_unpack(root, "{s:s}", "dir", &dir)) {
|
||||
if (!strcmp(dir, "original")) {
|
||||
@@ -1562,7 +1577,6 @@ static struct stmt *json_parse_fwd_stmt(struct json_ctx *ctx,
|
||||
const char *key, json_t *value)
|
||||
{
|
||||
json_t *jaddr, *jdev;
|
||||
- const char *family;
|
||||
struct stmt *stmt;
|
||||
int familyval;
|
||||
|
||||
@@ -1577,21 +1591,15 @@ static struct stmt *json_parse_fwd_stmt(struct json_ctx *ctx,
|
||||
goto out_err;
|
||||
}
|
||||
|
||||
- if (json_unpack(value, "{s:s, s:o}",
|
||||
- "family", &family, "addr", &jaddr))
|
||||
- return stmt;
|
||||
-
|
||||
- familyval = parse_family(family);
|
||||
- switch (familyval) {
|
||||
- case NFPROTO_IPV4:
|
||||
- case NFPROTO_IPV6:
|
||||
- stmt->fwd.family = familyval;
|
||||
- break;
|
||||
- default:
|
||||
- json_error(ctx, "Invalid fwd family value '%s'.", family);
|
||||
+ familyval = json_parse_family(ctx, value);
|
||||
+ if (familyval < 0)
|
||||
goto out_err;
|
||||
- }
|
||||
|
||||
+ if (familyval == NFPROTO_UNSPEC ||
|
||||
+ json_unpack(value, "{s:o}", "addr", &jaddr))
|
||||
+ return stmt;
|
||||
+
|
||||
+ stmt->fwd.family = familyval;
|
||||
stmt->fwd.addr = json_parse_stmt_expr(ctx, jaddr);
|
||||
if (!stmt->fwd.addr) {
|
||||
json_error(ctx, "Invalid fwd addr value.");
|
||||
@@ -2137,8 +2145,7 @@ static struct cmd *json_parse_cmd_add_table(struct json_ctx *ctx, json_t *root,
|
||||
json_error(ctx, "Either name or handle required to delete a table.");
|
||||
return NULL;
|
||||
}
|
||||
- h.family = parse_family(family);
|
||||
- if (h.family < 0) {
|
||||
+ if (parse_family(family, &h.family)) {
|
||||
json_error(ctx, "Unknown family '%s'.", family);
|
||||
return NULL;
|
||||
}
|
||||
@@ -2178,8 +2185,7 @@ static struct cmd *json_parse_cmd_add_chain(struct json_ctx *ctx, json_t *root,
|
||||
json_error(ctx, "Either name or handle required to delete a chain.");
|
||||
return NULL;
|
||||
}
|
||||
- h.family = parse_family(family);
|
||||
- if (h.family < 0) {
|
||||
+ if (parse_family(family, &h.family)) {
|
||||
json_error(ctx, "Unknown family '%s'.", family);
|
||||
return NULL;
|
||||
}
|
||||
@@ -2240,8 +2246,7 @@ static struct cmd *json_parse_cmd_add_rule(struct json_ctx *ctx, json_t *root,
|
||||
json_unpack_err(ctx, root, "{s:I}", "handle", &h.handle.id))
|
||||
return NULL;
|
||||
|
||||
- h.family = parse_family(family);
|
||||
- if (h.family < 0) {
|
||||
+ if (parse_family(family, &h.family)) {
|
||||
json_error(ctx, "Unknown family '%s'.", family);
|
||||
return NULL;
|
||||
}
|
||||
@@ -2347,8 +2352,7 @@ static struct cmd *json_parse_cmd_add_set(struct json_ctx *ctx, json_t *root,
|
||||
return NULL;
|
||||
}
|
||||
|
||||
- h.family = parse_family(family);
|
||||
- if (h.family < 0) {
|
||||
+ if (parse_family(family, &h.family)) {
|
||||
json_error(ctx, "Unknown family '%s'.", family);
|
||||
return NULL;
|
||||
}
|
||||
@@ -2459,8 +2463,7 @@ static struct cmd *json_parse_cmd_add_element(struct json_ctx *ctx,
|
||||
"elem", &tmp))
|
||||
return NULL;
|
||||
|
||||
- h.family = parse_family(family);
|
||||
- if (h.family < 0) {
|
||||
+ if (parse_family(family, &h.family)) {
|
||||
json_error(ctx, "Unknown family '%s'.", family);
|
||||
return NULL;
|
||||
}
|
||||
@@ -2523,8 +2526,7 @@ static struct cmd *json_parse_cmd_add_flowtable(struct json_ctx *ctx,
|
||||
"name", &h.flowtable))
|
||||
return NULL;
|
||||
|
||||
- h.family = parse_family(family);
|
||||
- if (h.family < 0) {
|
||||
+ if (parse_family(family, &h.family)) {
|
||||
json_error(ctx, "Unknown family '%s'.", family);
|
||||
return NULL;
|
||||
}
|
||||
@@ -2568,6 +2570,7 @@ static struct cmd *json_parse_cmd_add_object(struct json_ctx *ctx,
|
||||
enum cmd_obj cmd_obj)
|
||||
{
|
||||
const char *family, *tmp, *rate_unit = "packets", *burst_unit = "bytes";
|
||||
+ uint32_t l3proto = NFPROTO_IPV4;
|
||||
struct handle h = { 0 };
|
||||
struct obj *obj;
|
||||
int inv = 0;
|
||||
@@ -2588,8 +2591,7 @@ static struct cmd *json_parse_cmd_add_object(struct json_ctx *ctx,
|
||||
return NULL;
|
||||
}
|
||||
|
||||
- h.family = parse_family(family);
|
||||
- if (h.family < 0) {
|
||||
+ if (parse_family(family, &h.family)) {
|
||||
json_error(ctx, "Unknown family '%s'.", family);
|
||||
return NULL;
|
||||
}
|
||||
@@ -2647,18 +2649,13 @@ static struct cmd *json_parse_cmd_add_object(struct json_ctx *ctx,
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
- if (!json_unpack(root, "{s:s}", "l3proto", &tmp)) {
|
||||
- int family = parse_family(tmp);
|
||||
-
|
||||
- if (family < 0) {
|
||||
- json_error(ctx, "Invalid ct helper l3proto '%s'.", tmp);
|
||||
- obj_free(obj);
|
||||
- return NULL;
|
||||
- }
|
||||
- obj->ct_helper.l3proto = family;
|
||||
- } else {
|
||||
- obj->ct_helper.l3proto = NFPROTO_IPV4;
|
||||
+ if (!json_unpack(root, "{s:s}", "l3proto", &tmp) &&
|
||||
+ parse_family(tmp, &l3proto)) {
|
||||
+ json_error(ctx, "Invalid ct helper l3proto '%s'.", tmp);
|
||||
+ obj_free(obj);
|
||||
+ return NULL;
|
||||
}
|
||||
+ obj->ct_helper.l3proto = l3proto;
|
||||
break;
|
||||
case CMD_OBJ_LIMIT:
|
||||
obj->type = NFT_OBJECT_LIMIT;
|
||||
@@ -2770,8 +2767,7 @@ static struct cmd *json_parse_cmd_replace(struct json_ctx *ctx,
|
||||
h.handle.id = 0;
|
||||
}
|
||||
|
||||
- h.family = parse_family(family);
|
||||
- if (h.family < 0) {
|
||||
+ if (parse_family(family, &h.family)) {
|
||||
json_error(ctx, "Unknown family '%s'.", family);
|
||||
return NULL;
|
||||
}
|
||||
@@ -2825,8 +2821,7 @@ static struct cmd *json_parse_cmd_list_multiple(struct json_ctx *ctx,
|
||||
const char *tmp;
|
||||
|
||||
if (!json_unpack(root, "{s:s}", "family", &tmp)) {
|
||||
- h.family = parse_family(tmp);
|
||||
- if (h.family < 0) {
|
||||
+ if (parse_family(tmp, &h.family)) {
|
||||
json_error(ctx, "Unknown family '%s'.", tmp);
|
||||
return NULL;
|
||||
}
|
||||
@@ -2981,8 +2976,7 @@ static struct cmd *json_parse_cmd_rename(struct json_ctx *ctx,
|
||||
"name", &h.chain.name,
|
||||
"newname", &newname))
|
||||
return NULL;
|
||||
- h.family = parse_family(family);
|
||||
- if (h.family < 0) {
|
||||
+ if (parse_family(family, &h.family)) {
|
||||
json_error(ctx, "Unknown family '%s'.", family);
|
||||
return NULL;
|
||||
}
|
||||
--
|
||||
2.21.0
|
||||
|
33
SOURCES/0024-json-Fix-memleak-in-dup_stmt_json.patch
Normal file
33
SOURCES/0024-json-Fix-memleak-in-dup_stmt_json.patch
Normal file
@ -0,0 +1,33 @@
|
||||
From 5b386b65d61c0f2831ef31a3674225dc21f9e1ff Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Fri, 12 Oct 2018 17:50:15 +0200
|
||||
Subject: [PATCH] json: Fix memleak in dup_stmt_json()
|
||||
|
||||
The variable 'root' is always assigned to after initialization, so there
|
||||
is no point in initializing it upon declaration.
|
||||
|
||||
Fixes: e70354f53e9f6 ("libnftables: Implement JSON output support")
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 27d8946db90b79762a36e66647bb8d8fc4c17ce9)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/json.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/json.c b/src/json.c
|
||||
index eeba90e266f75..66b02a934a24b 100644
|
||||
--- a/src/json.c
|
||||
+++ b/src/json.c
|
||||
@@ -1030,7 +1030,7 @@ json_t *notrack_stmt_json(const struct stmt *stmt, struct output_ctx *octx)
|
||||
|
||||
json_t *dup_stmt_json(const struct stmt *stmt, struct output_ctx *octx)
|
||||
{
|
||||
- json_t *root = json_object();
|
||||
+ json_t *root;
|
||||
|
||||
if (stmt->dup.to) {
|
||||
root = json_pack("{s:o}", "addr", expr_print_json(stmt->dup.to, octx));
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,287 @@
|
||||
From 5eff789ea5d32ad000805c727584ec0d4ee7a392 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Wed, 24 Oct 2018 12:35:04 +0200
|
||||
Subject: [PATCH] json: Fix for recent changes to context structs
|
||||
|
||||
Commits introducing nft_ctx pointer to netlink and eval contexts did not
|
||||
update JSON code accordingly.
|
||||
|
||||
Fixes: 00f777bfc414a ("src: pass struct nft_ctx through struct eval_ctx")
|
||||
Fixes: 2dc07bcd7eaa5 ("src: pass struct nft_ctx through struct netlink_ctx")
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 841d5f5a3deacfe7b4245df0890849d8e4ad5817)
|
||||
|
||||
Conflicts:
|
||||
-> Missing ct timeout support
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/json.c | 69 ++++++++++++++++++++++++-----------------------
|
||||
src/parser_json.c | 5 +---
|
||||
2 files changed, 37 insertions(+), 37 deletions(-)
|
||||
|
||||
diff --git a/src/json.c b/src/json.c
|
||||
index 66b02a934a24b..98581a3c2a3e4 100644
|
||||
--- a/src/json.c
|
||||
+++ b/src/json.c
|
||||
@@ -211,8 +211,7 @@ static json_t *rule_print_json(struct output_ctx *octx,
|
||||
return json_pack("{s:o}", "rule", root);
|
||||
}
|
||||
|
||||
-static json_t *chain_print_json(const struct output_ctx *octx,
|
||||
- const struct chain *chain)
|
||||
+static json_t *chain_print_json(const struct chain *chain)
|
||||
{
|
||||
json_t *root, *tmp;
|
||||
|
||||
@@ -247,7 +246,7 @@ static json_t *proto_name_json(uint8_t proto)
|
||||
return json_integer(proto);
|
||||
}
|
||||
|
||||
-static json_t *obj_print_json(struct output_ctx *octx, const struct obj *obj)
|
||||
+static json_t *obj_print_json(const struct obj *obj)
|
||||
{
|
||||
const char *rate_unit = NULL, *burst_unit = NULL;
|
||||
const char *type = obj_type_name(obj->type);
|
||||
@@ -371,8 +370,7 @@ static json_t *table_flags_json(const struct table *table)
|
||||
return root;
|
||||
}
|
||||
|
||||
-static json_t *table_print_json(const struct output_ctx *octx,
|
||||
- const struct table *table)
|
||||
+static json_t *table_print_json(const struct table *table)
|
||||
{
|
||||
json_t *root, *tmp;
|
||||
|
||||
@@ -1295,17 +1293,17 @@ static json_t *table_print_json_full(struct netlink_ctx *ctx,
|
||||
struct obj *obj;
|
||||
struct set *set;
|
||||
|
||||
- tmp = table_print_json(ctx->octx, table);
|
||||
+ tmp = table_print_json(table);
|
||||
json_array_append_new(root, tmp);
|
||||
|
||||
list_for_each_entry(obj, &table->objs, list) {
|
||||
- tmp = obj_print_json(ctx->octx, obj);
|
||||
+ tmp = obj_print_json(obj);
|
||||
json_array_append_new(root, tmp);
|
||||
}
|
||||
list_for_each_entry(set, &table->sets, list) {
|
||||
if (set->flags & NFT_SET_ANONYMOUS)
|
||||
continue;
|
||||
- tmp = set_print_json(ctx->octx, set);
|
||||
+ tmp = set_print_json(&ctx->nft->output, set);
|
||||
json_array_append_new(root, tmp);
|
||||
}
|
||||
list_for_each_entry(flowtable, &table->flowtables, list) {
|
||||
@@ -1313,11 +1311,11 @@ static json_t *table_print_json_full(struct netlink_ctx *ctx,
|
||||
json_array_append_new(root, tmp);
|
||||
}
|
||||
list_for_each_entry(chain, &table->chains, list) {
|
||||
- tmp = chain_print_json(ctx->octx, chain);
|
||||
+ tmp = chain_print_json(chain);
|
||||
json_array_append_new(root, tmp);
|
||||
|
||||
list_for_each_entry(rule, &chain->rules, list) {
|
||||
- tmp = rule_print_json(ctx->octx, rule);
|
||||
+ tmp = rule_print_json(&ctx->nft->output, rule);
|
||||
json_array_append_new(root, tmp);
|
||||
}
|
||||
}
|
||||
@@ -1331,7 +1329,7 @@ static json_t *do_list_ruleset_json(struct netlink_ctx *ctx, struct cmd *cmd)
|
||||
json_t *root = json_array();
|
||||
struct table *table;
|
||||
|
||||
- list_for_each_entry(table, &ctx->cache->list, list) {
|
||||
+ list_for_each_entry(table, &ctx->nft->cache.list, list) {
|
||||
if (family != NFPROTO_UNSPEC &&
|
||||
table->handle.family != family)
|
||||
continue;
|
||||
@@ -1348,12 +1346,12 @@ static json_t *do_list_tables_json(struct netlink_ctx *ctx, struct cmd *cmd)
|
||||
json_t *root = json_array();
|
||||
struct table *table;
|
||||
|
||||
- list_for_each_entry(table, &ctx->cache->list, list) {
|
||||
+ list_for_each_entry(table, &ctx->nft->cache.list, list) {
|
||||
if (family != NFPROTO_UNSPEC &&
|
||||
table->handle.family != family)
|
||||
continue;
|
||||
|
||||
- json_array_append_new(root, table_print_json(ctx->octx, table));
|
||||
+ json_array_append_new(root, table_print_json(table));
|
||||
}
|
||||
|
||||
return root;
|
||||
@@ -1377,10 +1375,10 @@ static json_t *do_list_chain_json(struct netlink_ctx *ctx,
|
||||
strcmp(cmd->handle.chain.name, chain->handle.chain.name))
|
||||
continue;
|
||||
|
||||
- json_array_append_new(root, chain_print_json(ctx->octx, chain));
|
||||
+ json_array_append_new(root, chain_print_json(chain));
|
||||
|
||||
list_for_each_entry(rule, &chain->rules, list) {
|
||||
- json_t *tmp = rule_print_json(ctx->octx, rule);
|
||||
+ json_t *tmp = rule_print_json(&ctx->nft->output, rule);
|
||||
|
||||
json_array_append_new(root, tmp);
|
||||
}
|
||||
@@ -1395,13 +1393,13 @@ static json_t *do_list_chains_json(struct netlink_ctx *ctx, struct cmd *cmd)
|
||||
struct table *table;
|
||||
struct chain *chain;
|
||||
|
||||
- list_for_each_entry(table, &ctx->cache->list, list) {
|
||||
+ list_for_each_entry(table, &ctx->nft->cache.list, list) {
|
||||
if (cmd->handle.family != NFPROTO_UNSPEC &&
|
||||
cmd->handle.family != table->handle.family)
|
||||
continue;
|
||||
|
||||
list_for_each_entry(chain, &table->chains, list) {
|
||||
- json_t *tmp = chain_print_json(ctx->octx, chain);
|
||||
+ json_t *tmp = chain_print_json(chain);
|
||||
|
||||
json_array_append_new(root, tmp);
|
||||
}
|
||||
@@ -1418,17 +1416,17 @@ static json_t *do_list_set_json(struct netlink_ctx *ctx,
|
||||
if (set == NULL)
|
||||
return json_null();
|
||||
|
||||
- return json_pack("[o]", set_print_json(ctx->octx, set));
|
||||
+ return json_pack("[o]", set_print_json(&ctx->nft->output, set));
|
||||
}
|
||||
|
||||
static json_t *do_list_sets_json(struct netlink_ctx *ctx, struct cmd *cmd)
|
||||
{
|
||||
- struct output_ctx *octx = ctx->octx;
|
||||
+ struct output_ctx *octx = &ctx->nft->output;
|
||||
json_t *root = json_array();
|
||||
struct table *table;
|
||||
struct set *set;
|
||||
|
||||
- list_for_each_entry(table, &ctx->cache->list, list) {
|
||||
+ list_for_each_entry(table, &ctx->nft->cache.list, list) {
|
||||
if (cmd->handle.family != NFPROTO_UNSPEC &&
|
||||
cmd->handle.family != table->handle.family)
|
||||
continue;
|
||||
@@ -1458,7 +1456,7 @@ static json_t *do_list_obj_json(struct netlink_ctx *ctx,
|
||||
struct table *table;
|
||||
struct obj *obj;
|
||||
|
||||
- list_for_each_entry(table, &ctx->cache->list, list) {
|
||||
+ list_for_each_entry(table, &ctx->nft->cache.list, list) {
|
||||
if (cmd->handle.family != NFPROTO_UNSPEC &&
|
||||
cmd->handle.family != table->handle.family)
|
||||
continue;
|
||||
@@ -1473,8 +1471,7 @@ static json_t *do_list_obj_json(struct netlink_ctx *ctx,
|
||||
strcmp(cmd->handle.obj.name, obj->handle.obj.name)))
|
||||
continue;
|
||||
|
||||
- json_array_append_new(root,
|
||||
- obj_print_json(ctx->octx, obj));
|
||||
+ json_array_append_new(root, obj_print_json(obj));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1487,7 +1484,7 @@ static json_t *do_list_flowtables_json(struct netlink_ctx *ctx, struct cmd *cmd)
|
||||
struct flowtable *flowtable;
|
||||
struct table *table;
|
||||
|
||||
- list_for_each_entry(table, &ctx->cache->list, list) {
|
||||
+ list_for_each_entry(table, &ctx->nft->cache.list, list) {
|
||||
if (cmd->handle.family != NFPROTO_UNSPEC &&
|
||||
cmd->handle.family != table->handle.family)
|
||||
continue;
|
||||
@@ -1507,7 +1504,7 @@ int do_command_list_json(struct netlink_ctx *ctx, struct cmd *cmd)
|
||||
json_t *root;
|
||||
|
||||
if (cmd->handle.table.name)
|
||||
- table = table_lookup(&cmd->handle, ctx->cache);
|
||||
+ table = table_lookup(&cmd->handle, &ctx->nft->cache);
|
||||
|
||||
switch (cmd->obj) {
|
||||
case CMD_OBJ_TABLE:
|
||||
@@ -1572,7 +1569,7 @@ int do_command_list_json(struct netlink_ctx *ctx, struct cmd *cmd)
|
||||
root = json_null();
|
||||
}
|
||||
root = json_pack("{s:o}", "nftables", root);
|
||||
- json_dumpf(root, ctx->octx->output_fp, 0);
|
||||
+ json_dumpf(root, ctx->nft->output.output_fp, 0);
|
||||
json_decref(root);
|
||||
return 0;
|
||||
}
|
||||
@@ -1581,42 +1578,48 @@ static void monitor_print_json(struct netlink_mon_handler *monh,
|
||||
const char *cmd, json_t *obj)
|
||||
{
|
||||
obj = json_pack("{s:o}", cmd, obj);
|
||||
- json_dumpf(obj, monh->ctx->octx->output_fp, 0);
|
||||
+ json_dumpf(obj, monh->ctx->nft->output.output_fp, 0);
|
||||
json_decref(obj);
|
||||
}
|
||||
|
||||
void monitor_print_table_json(struct netlink_mon_handler *monh,
|
||||
const char *cmd, struct table *t)
|
||||
{
|
||||
- monitor_print_json(monh, cmd, table_print_json(monh->ctx->octx, t));
|
||||
+ monitor_print_json(monh, cmd, table_print_json(t));
|
||||
}
|
||||
|
||||
void monitor_print_chain_json(struct netlink_mon_handler *monh,
|
||||
const char *cmd, struct chain *c)
|
||||
{
|
||||
- monitor_print_json(monh, cmd, chain_print_json(monh->ctx->octx, c));
|
||||
+ monitor_print_json(monh, cmd, chain_print_json(c));
|
||||
}
|
||||
|
||||
void monitor_print_set_json(struct netlink_mon_handler *monh,
|
||||
const char *cmd, struct set *s)
|
||||
{
|
||||
- monitor_print_json(monh, cmd, set_print_json(monh->ctx->octx, s));
|
||||
+ struct output_ctx *octx = &monh->ctx->nft->output;
|
||||
+
|
||||
+ monitor_print_json(monh, cmd, set_print_json(octx, s));
|
||||
}
|
||||
|
||||
void monitor_print_element_json(struct netlink_mon_handler *monh,
|
||||
const char *cmd, struct set *s)
|
||||
{
|
||||
- monitor_print_json(monh, cmd, element_print_json(monh->ctx->octx, s));
|
||||
+ struct output_ctx *octx = &monh->ctx->nft->output;
|
||||
+
|
||||
+ monitor_print_json(monh, cmd, element_print_json(octx, s));
|
||||
}
|
||||
|
||||
void monitor_print_obj_json(struct netlink_mon_handler *monh,
|
||||
const char *cmd, struct obj *o)
|
||||
{
|
||||
- monitor_print_json(monh, cmd, obj_print_json(monh->ctx->octx, o));
|
||||
+ monitor_print_json(monh, cmd, obj_print_json(o));
|
||||
}
|
||||
|
||||
void monitor_print_rule_json(struct netlink_mon_handler *monh,
|
||||
const char *cmd, struct rule *r)
|
||||
{
|
||||
- monitor_print_json(monh, cmd, rule_print_json(monh->ctx->octx, r));
|
||||
+ struct output_ctx *octx = &monh->ctx->nft->output;
|
||||
+
|
||||
+ monitor_print_json(monh, cmd, rule_print_json(octx, r));
|
||||
}
|
||||
diff --git a/src/parser_json.c b/src/parser_json.c
|
||||
index 30de17f8a1e26..817415c15fb89 100644
|
||||
--- a/src/parser_json.c
|
||||
+++ b/src/parser_json.c
|
||||
@@ -3025,11 +3025,8 @@ static struct cmd *json_parse_cmd(struct json_ctx *ctx, json_t *root)
|
||||
static int __json_parse(struct json_ctx *ctx, json_t *root)
|
||||
{
|
||||
struct eval_ctx ectx = {
|
||||
- .nf_sock = ctx->nft->nf_sock,
|
||||
+ .nft = ctx->nft,
|
||||
.msgs = ctx->msgs,
|
||||
- .cache = &ctx->nft->cache,
|
||||
- .octx = &ctx->nft->output,
|
||||
- .debug_mask = ctx->nft->debug_mask,
|
||||
};
|
||||
json_t *tmp, *value;
|
||||
size_t index;
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,185 @@
|
||||
From 64b101f4a124f39b494dc5906159a8890568d1f9 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Fri, 24 Aug 2018 13:26:57 +0200
|
||||
Subject: [PATCH] parser_bison: Fix for ECN keyword in LHS of relational
|
||||
|
||||
Of all possible TCP flags, 'ecn' is special since it is recognized by
|
||||
lex as a keyword (there is a a field in IPv4 and IPv6 headers with the
|
||||
same name). Therefore it is listed in keyword_expr, but that was
|
||||
sufficient for RHS only. The following statement reproduces the issue:
|
||||
|
||||
| tcp flags & (syn | ecn) == (syn | ecn)
|
||||
|
||||
The solution is to limit binop expressions to accept an RHS expression
|
||||
on RHS ("real" LHS expressions don't make much sense there anyway),
|
||||
which then allows keyword_expr to occur there. In order to maintain the
|
||||
recursive behaviour if braces are present, allow primary_rhs_expr to
|
||||
consist of a basic_rhs_expr enclosed in braces. This in turn requires
|
||||
for braced RHS part in relational_expr to be dropped, otherwise bison
|
||||
complains about shift/reduce conflict.
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 14a9968a56f8b35138bab172aa7ce796f5d98e03)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/parser_bison.y | 15 ++++++---------
|
||||
tests/py/inet/tcp.t | 1 +
|
||||
tests/py/inet/tcp.t.json | 23 +++++++++++++++++++++++
|
||||
tests/py/inet/tcp.t.json.output | 16 ++++++++++++++++
|
||||
tests/py/inet/tcp.t.payload | 8 ++++++++
|
||||
5 files changed, 54 insertions(+), 9 deletions(-)
|
||||
|
||||
diff --git a/src/parser_bison.y b/src/parser_bison.y
|
||||
index d75cd50fa29b9..a6b6fc1745a72 100644
|
||||
--- a/src/parser_bison.y
|
||||
+++ b/src/parser_bison.y
|
||||
@@ -2948,32 +2948,32 @@ fib_tuple : fib_flag DOT fib_tuple
|
||||
;
|
||||
|
||||
shift_expr : primary_expr
|
||||
- | shift_expr LSHIFT primary_expr
|
||||
+ | shift_expr LSHIFT primary_rhs_expr
|
||||
{
|
||||
$$ = binop_expr_alloc(&@$, OP_LSHIFT, $1, $3);
|
||||
}
|
||||
- | shift_expr RSHIFT primary_expr
|
||||
+ | shift_expr RSHIFT primary_rhs_expr
|
||||
{
|
||||
$$ = binop_expr_alloc(&@$, OP_RSHIFT, $1, $3);
|
||||
}
|
||||
;
|
||||
|
||||
and_expr : shift_expr
|
||||
- | and_expr AMPERSAND shift_expr
|
||||
+ | and_expr AMPERSAND shift_rhs_expr
|
||||
{
|
||||
$$ = binop_expr_alloc(&@$, OP_AND, $1, $3);
|
||||
}
|
||||
;
|
||||
|
||||
exclusive_or_expr : and_expr
|
||||
- | exclusive_or_expr CARET and_expr
|
||||
+ | exclusive_or_expr CARET and_rhs_expr
|
||||
{
|
||||
$$ = binop_expr_alloc(&@$, OP_XOR, $1, $3);
|
||||
}
|
||||
;
|
||||
|
||||
inclusive_or_expr : exclusive_or_expr
|
||||
- | inclusive_or_expr '|' exclusive_or_expr
|
||||
+ | inclusive_or_expr '|' exclusive_or_rhs_expr
|
||||
{
|
||||
$$ = binop_expr_alloc(&@$, OP_OR, $1, $3);
|
||||
}
|
||||
@@ -3252,10 +3252,6 @@ relational_expr : expr /* implicit */ rhs_expr
|
||||
{
|
||||
$$ = relational_expr_alloc(&@2, $2, $1, $3);
|
||||
}
|
||||
- | expr relational_op '(' rhs_expr ')'
|
||||
- {
|
||||
- $$ = relational_expr_alloc(&@2, $2, $1, $4);
|
||||
- }
|
||||
;
|
||||
|
||||
list_rhs_expr : basic_rhs_expr COMMA basic_rhs_expr
|
||||
@@ -3439,6 +3435,7 @@ primary_rhs_expr : symbol_expr { $$ = $1; }
|
||||
BYTEORDER_HOST_ENDIAN,
|
||||
sizeof(data) * BITS_PER_BYTE, &data);
|
||||
}
|
||||
+ | '(' basic_rhs_expr ')' { $$ = $2; }
|
||||
;
|
||||
|
||||
relational_op : EQ { $$ = OP_EQ; }
|
||||
diff --git a/tests/py/inet/tcp.t b/tests/py/inet/tcp.t
|
||||
index d66ba8438a32f..f96e3634f41ed 100644
|
||||
--- a/tests/py/inet/tcp.t
|
||||
+++ b/tests/py/inet/tcp.t
|
||||
@@ -78,6 +78,7 @@ tcp flags cwr;ok
|
||||
tcp flags != cwr;ok
|
||||
tcp flags == syn;ok
|
||||
tcp flags & (syn|fin) == (syn|fin);ok;tcp flags & (fin | syn) == fin | syn
|
||||
+tcp flags & (fin | syn | rst | psh | ack | urg | ecn | cwr) == fin | syn | rst | psh | ack | urg | ecn | cwr;ok;tcp flags == 0xff
|
||||
|
||||
tcp window 22222;ok
|
||||
tcp window 22;ok
|
||||
diff --git a/tests/py/inet/tcp.t.json b/tests/py/inet/tcp.t.json
|
||||
index f5df72aa252a6..9ae51018e93ee 100644
|
||||
--- a/tests/py/inet/tcp.t.json
|
||||
+++ b/tests/py/inet/tcp.t.json
|
||||
@@ -1068,6 +1068,29 @@
|
||||
}
|
||||
]
|
||||
|
||||
+# tcp flags & (fin | syn | rst | psh | ack | urg | ecn | cwr) == fin | syn | rst | psh | ack | urg | ecn | cwr
|
||||
+[
|
||||
+ {
|
||||
+ "match": {
|
||||
+ "left": {
|
||||
+ "&": [
|
||||
+ {
|
||||
+ "payload": {
|
||||
+ "field": "flags",
|
||||
+ "protocol": "tcp"
|
||||
+ }
|
||||
+ },
|
||||
+ {
|
||||
+ "|": [ "fin", { "|": [ "syn", { "|": [ "rst", { "|": [ "psh", { "|": [ "ack", { "|": [ "urg", { "|": [ "ecn", "cwr" ] } ] } ] } ] } ] } ] } ]
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
+ "op": "==",
|
||||
+ "right": { "|": [ "fin", { "|": [ "syn", { "|": [ "rst", { "|": [ "psh", { "|": [ "ack", { "|": [ "urg", { "|": [ "ecn", "cwr" ] } ] } ] } ] } ] } ] } ] }
|
||||
+ }
|
||||
+ }
|
||||
+]
|
||||
+
|
||||
# tcp window 22222
|
||||
[
|
||||
{
|
||||
diff --git a/tests/py/inet/tcp.t.json.output b/tests/py/inet/tcp.t.json.output
|
||||
index d099d6febb122..ff58756cf596d 100644
|
||||
--- a/tests/py/inet/tcp.t.json.output
|
||||
+++ b/tests/py/inet/tcp.t.json.output
|
||||
@@ -132,3 +132,19 @@
|
||||
}
|
||||
]
|
||||
|
||||
+# tcp flags & (fin | syn | rst | psh | ack | urg | ecn | cwr) == fin | syn | rst | psh | ack | urg | ecn | cwr
|
||||
+[
|
||||
+ {
|
||||
+ "match": {
|
||||
+ "left": {
|
||||
+ "payload": {
|
||||
+ "field": "flags",
|
||||
+ "protocol": "tcp"
|
||||
+ }
|
||||
+ },
|
||||
+ "op": "==",
|
||||
+ "right": 255
|
||||
+ }
|
||||
+ }
|
||||
+]
|
||||
+
|
||||
diff --git a/tests/py/inet/tcp.t.payload b/tests/py/inet/tcp.t.payload
|
||||
index 09538aed746c9..2390a24ead15c 100644
|
||||
--- a/tests/py/inet/tcp.t.payload
|
||||
+++ b/tests/py/inet/tcp.t.payload
|
||||
@@ -436,6 +436,14 @@ inet test-inet input
|
||||
[ bitwise reg 1 = (reg=1 & 0x00000003 ) ^ 0x00000000 ]
|
||||
[ cmp eq reg 1 0x00000003 ]
|
||||
|
||||
+# tcp flags & (fin | syn | rst | psh | ack | urg | ecn | cwr) == fin | syn | rst | psh | ack | urg | ecn | cwr
|
||||
+inet test-inet input
|
||||
+ [ meta load l4proto => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x00000006 ]
|
||||
+ [ payload load 1b @ transport header + 13 => reg 1 ]
|
||||
+ [ bitwise reg 1 = (reg=1 & 0x000000ff ) ^ 0x00000000 ]
|
||||
+ [ cmp eq reg 1 0x000000ff ]
|
||||
+
|
||||
# tcp window 22222
|
||||
inet test-inet input
|
||||
[ meta load l4proto => reg 1 ]
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,47 @@
|
||||
From c2d82484a75c99e079754e75ccc510e91290bb72 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Fri, 14 Sep 2018 11:00:14 +0200
|
||||
Subject: [PATCH] nft.8: Update meta pkt_type value description
|
||||
|
||||
Commit 8a7f6de536408 ("meta: fix pkttype name and add 'other' symbol")
|
||||
deprecated pkt_type value 'unicast' (for it being misleading) and
|
||||
introduced 'host' and 'other' but it did not update documentation
|
||||
accordingly. Fix this by replacing 'unicast' with 'host' in
|
||||
documentation and adding 'other'.
|
||||
|
||||
While being at it, make sure these literal values are recognized as
|
||||
such: Put them in all lower-case (as required by the parser) and in bold
|
||||
font (to stand out a bit more).
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit d75e9184bb51a1311ac950b13384f329836d597e)
|
||||
|
||||
Conflicts:
|
||||
doc/primary-expression.txt
|
||||
-> Patch manually applied to doc/nft.xml, patches converting man page
|
||||
source to asciidoc are missing entirely.
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
doc/nft.xml | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/doc/nft.xml b/doc/nft.xml
|
||||
index 3a5571b0da57a..0df42810c5e68 100644
|
||||
--- a/doc/nft.xml
|
||||
+++ b/doc/nft.xml
|
||||
@@ -2991,8 +2991,8 @@ filter output icmpv6 type { echo-request, echo-reply }
|
||||
<row>
|
||||
<entry>pkt_type</entry>
|
||||
<entry>
|
||||
- Packet type: Unicast (addressed to local host),
|
||||
- Broadcast (to all), Multicast (to group).
|
||||
+ Packet type: <literal>host</literal> (addressed to local host),
|
||||
+ <literal>broadcast</literal> (to all), <literal>multicast</literal> (to group), <literal>other</literal> (addressed to another host).
|
||||
</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,49 @@
|
||||
From 48c743edbd41470149a5ac58c350b47cb80fb9eb Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Wed, 24 Oct 2018 21:14:37 +0200
|
||||
Subject: [PATCH] json: Work around segfault when encountering xt stmt
|
||||
|
||||
When trying to convert an xt stmt into JSON, print() callback was
|
||||
called. Though the code in src/xt.c does not respect output_fp,
|
||||
therefore buffer wasn't filled as expected making libjansson to puke:
|
||||
|
||||
| # nft -j list ruleset
|
||||
| warning: stmt ops xt have no json callback
|
||||
| nft: json.c:169: stmt_print_json: Assertion `__out' failed.
|
||||
| Aborted (core dumped)
|
||||
|
||||
Avoid this by detecting xt stmt ops and returning a stub.
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit b849b0dfd9f3aecff5617bc60d5852ef36c3d494)
|
||||
|
||||
Conflicts:
|
||||
doc/libnftables-json.adoc
|
||||
-> Patches adding this man page are missing entirely.
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/json.c | 6 ++++++
|
||||
1 file changed, 6 insertions(+)
|
||||
|
||||
diff --git a/src/json.c b/src/json.c
|
||||
index 98581a3c2a3e4..f74afd5a7292e 100644
|
||||
--- a/src/json.c
|
||||
+++ b/src/json.c
|
||||
@@ -165,6 +165,12 @@ static json_t *stmt_print_json(const struct stmt *stmt, struct output_ctx *octx)
|
||||
char buf[1024];
|
||||
FILE *fp;
|
||||
|
||||
+ /* XXX: Can't be supported at this point:
|
||||
+ * xt_stmt_xlate() ignores output_fp.
|
||||
+ */
|
||||
+ if (stmt->ops->type == STMT_XT)
|
||||
+ return json_pack("{s:n}", "xt");
|
||||
+
|
||||
if (stmt->ops->json)
|
||||
return stmt->ops->json(stmt, octx);
|
||||
|
||||
--
|
||||
2.21.0
|
||||
|
51
SOURCES/0029-nft.8-Document-log-level-audit.patch
Normal file
51
SOURCES/0029-nft.8-Document-log-level-audit.patch
Normal file
@ -0,0 +1,51 @@
|
||||
From 109aab644873fcc732c08aea25288b7be1525ed0 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Sat, 27 Oct 2018 12:15:50 +0200
|
||||
Subject: [PATCH] nft.8: Document log level audit
|
||||
|
||||
Since this pseudo log level fundamentally changes behaviour of log
|
||||
statement, dedicate this mode a separate paragraph.
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
|
||||
Conflicts:
|
||||
doc/statements.txt
|
||||
-> Patch manually applied to doc/nft.xml from asciidoc source.
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
doc/nft.xml | 15 ++++++++++++++-
|
||||
1 file changed, 14 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/doc/nft.xml b/doc/nft.xml
|
||||
index 0df42810c5e68..22d57ac630037 100644
|
||||
--- a/doc/nft.xml
|
||||
+++ b/doc/nft.xml
|
||||
@@ -4700,9 +4700,22 @@ tcp flags syn tcp option maxseg size set rt mtu
|
||||
<arg choice="opt">snaplen
|
||||
<replaceable>size</replaceable></arg>
|
||||
</cmdsynopsis>
|
||||
+ <cmdsynopsis>
|
||||
+ <command>log</command>
|
||||
+ <arg choice="none">level audit</arg>
|
||||
+ </cmdsynopsis>
|
||||
+ </para>
|
||||
+ <para>
|
||||
+ The log statement enables logging of matching packets. When this statement is used from a rule, the Linux kernel will print some information on all matching packets, such as header fields, via the kernel log (where it can be read with dmesg(1) or read in the syslog).
|
||||
+ </para>
|
||||
+ <para>
|
||||
+ In the second form of invocation (if 'nflog_group' is specified), the Linux kernel will pass the packet to nfnetlink_log which will multicast the packet through a netlink socket to the specified multicast group. One or more userspace processes may subscribe to the group to receive the packets, see libnetfilter_queue documentation for details.
|
||||
+ </para>
|
||||
+ <para>
|
||||
+ In the third form of invocation (if level audit is specified), the Linux kernel writes a message into the audit buffer suitably formatted for reading with auditd. Therefore no further formatting options (such as prefix or flags) are allowed in this mode.
|
||||
</para>
|
||||
<para>
|
||||
- The log statement enables logging of matching packets. When this statement is used from a rule, the Linux kernel will print some information on all matching packets, such as header fields, via the kernel log (where it can be read with dmesg(1) or read in the syslog). If the group number is specified, the Linux kernel will pass the packet to nfnetlink_log which will multicast the packet through a netlink socket to the specified multicast group. One or more userspace processes may subscribe to the group to receive the packets, see libnetfilter_queue documentation for details. This is a non-terminating statement, so the rule evaluation continues after the packet is logged.
|
||||
+ This is a non-terminating statement, so the rule evaluation continues after the packet is logged.
|
||||
</para>
|
||||
<para>
|
||||
<table frame="all">
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,68 @@
|
||||
From 8d5b7e557b65cd547b55567ac3dfbb2ea3f65418 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Mon, 12 Nov 2018 15:02:52 +0100
|
||||
Subject: [PATCH] nft.8: Clarify 'index' option of add rule command
|
||||
|
||||
Documentation for add rule command might trick readers into believing
|
||||
the optional 'index' argument does not need to be that of an existing
|
||||
rule. This false assumption is fueled by the fact that iptables allows
|
||||
to insert with last rule number + 1 to actually append to a chain.
|
||||
Change the relevant sentence to clarify that.
|
||||
|
||||
While being at it, drop the deprecated 'position' option from
|
||||
documentation - since this will likely go away at some point, don't
|
||||
encourage users to use it although they should notice that they
|
||||
shoudn't.
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit f4e40e395af2b73cd72c5454e41fb879da8c5f61)
|
||||
|
||||
Conflicts:
|
||||
doc/nft.txt
|
||||
-> Patch applied manually to doc/nft.xml from asciidoc source.
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
doc/nft.xml | 11 +++--------
|
||||
1 file changed, 3 insertions(+), 8 deletions(-)
|
||||
|
||||
diff --git a/doc/nft.xml b/doc/nft.xml
|
||||
index 22d57ac630037..512724ed8f9a7 100644
|
||||
--- a/doc/nft.xml
|
||||
+++ b/doc/nft.xml
|
||||
@@ -877,10 +877,7 @@ add table inet mytable
|
||||
<replaceable>chain</replaceable>
|
||||
<group choice="opt">
|
||||
<arg>
|
||||
- <group choice="req">
|
||||
- <arg>handle</arg>
|
||||
- <arg>position</arg>
|
||||
- </group>
|
||||
+ <literal>handle</literal>
|
||||
<replaceable>handle</replaceable>
|
||||
</arg>
|
||||
<arg>
|
||||
@@ -917,8 +914,8 @@ add table inet mytable
|
||||
</para>
|
||||
<para>
|
||||
The <literal>add</literal> and <literal>insert</literal> commands support an optional
|
||||
- location specifier, which is either a <replaceable>handle</replaceable> of an existing
|
||||
- rule or an <replaceable>index</replaceable> (starting at zero). Internally,
|
||||
+ location specifier, which is either a <replaceable>handle</replaceable> or the
|
||||
+ <replaceable>index</replaceable> (starting at zero) of an existing rule. Internally,
|
||||
rule locations are always identified by <replaceable>handle</replaceable> and the
|
||||
translation from <replaceable>index</replaceable> happens in userspace. This has two
|
||||
potential implications in case a concurrent ruleset change happens after the translation
|
||||
@@ -935,8 +932,6 @@ add table inet mytable
|
||||
Add a new rule described by the list of statements. The rule is appended to the
|
||||
given chain unless a <literal>handle</literal> is specified, in which case the
|
||||
rule is appended to the rule given by the <replaceable>handle</replaceable>.
|
||||
- The alternative name <literal>position</literal> is deprecated and should not be
|
||||
- used anymore.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
--
|
||||
2.21.0
|
||||
|
152
SOURCES/0031-src-Reject-export-vm-json-command.patch
Normal file
152
SOURCES/0031-src-Reject-export-vm-json-command.patch
Normal file
@ -0,0 +1,152 @@
|
||||
From b5fd560fa6b1aa1e112273d9f04281b58eb06dae Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Mon, 17 Dec 2018 16:29:56 +0100
|
||||
Subject: [PATCH] src: Reject 'export vm json' command
|
||||
|
||||
Since libnftnl recently dropped JSON output support, this form of JSON
|
||||
export is not available anymore. Point at 'nft -j list ruleset' command
|
||||
for a replacement in error message.
|
||||
|
||||
Since 'export' command is not useable anymore, remove it from
|
||||
documentation. Instead point out that 'list ruleset' command serves well
|
||||
for dumping and later restoring.
|
||||
|
||||
To not cause pointless inconvenience for users wishing to store their
|
||||
ruleset in JSON format, make JSON parser fallback to CMD_ADD if no
|
||||
recognized command property was found. This allows to feed the output of
|
||||
'nft -j list ruleset' into 'nft -f' without any modification.
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 8d51f169e0e832a41d2ed278be903c08bd4fa473)
|
||||
|
||||
Conflicts:
|
||||
-> Documentation changes applied manually due to missing conversion to
|
||||
asciidoc.
|
||||
-> Dropped references to libnftables-json man page from documentation.
|
||||
(This file has not been backported and doing so is non-trivial due to
|
||||
asciidoc conversion.)
|
||||
-> Include libnftnl/common.h in src/evaluate.c to make symbol
|
||||
NFTNL_OUTPUT_JSON known.
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
doc/nft.xml | 34 +++++++++++++---------------------
|
||||
src/evaluate.c | 5 +++++
|
||||
src/parser_json.c | 4 ++--
|
||||
3 files changed, 20 insertions(+), 23 deletions(-)
|
||||
|
||||
diff --git a/doc/nft.xml b/doc/nft.xml
|
||||
index 512724ed8f9a7..1a97d7a169776 100644
|
||||
--- a/doc/nft.xml
|
||||
+++ b/doc/nft.xml
|
||||
@@ -46,7 +46,7 @@ vi:ts=4 sw=4
|
||||
<cmdsynopsis>
|
||||
<command>nft</command>
|
||||
<group>
|
||||
- <arg><option> -nNscae </option></arg>
|
||||
+ <arg><option> -nNscaej </option></arg>
|
||||
</group>
|
||||
<arg> -I
|
||||
<replaceable>directory</replaceable>
|
||||
@@ -155,6 +155,14 @@ vi:ts=4 sw=4
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
+ <varlistentry>
|
||||
+ <term><option>-j, --json</option></term>
|
||||
+ <listitem>
|
||||
+ <para>
|
||||
+ Format output in JSON.
|
||||
+ </para>
|
||||
+ </listitem>
|
||||
+ </varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>-I, --includepath <replaceable>directory</replaceable></option></term>
|
||||
<listitem>
|
||||
@@ -480,11 +488,6 @@ filter input iif $int_ifs accept
|
||||
<command>ruleset</command>
|
||||
<arg choice="opt"><replaceable>family</replaceable></arg>
|
||||
</cmdsynopsis>
|
||||
- <cmdsynopsis>
|
||||
- <arg choice="plain">export</arg>
|
||||
- <arg choice="opt"><command>ruleset</command></arg>
|
||||
- <arg choice="plain"><replaceable>format</replaceable></arg>
|
||||
- </cmdsynopsis>
|
||||
</para>
|
||||
|
||||
<para>
|
||||
@@ -514,17 +517,6 @@ filter input iif $int_ifs accept
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
- <varlistentry>
|
||||
- <term><option>export</option></term>
|
||||
- <listitem>
|
||||
- <para>
|
||||
- Print the ruleset in machine readable format. The
|
||||
- mandatory <replaceable>format</replaceable> parameter
|
||||
- may be either <literal>xml</literal> or
|
||||
- <literal>json</literal>.
|
||||
- </para>
|
||||
- </listitem>
|
||||
- </varlistentry>
|
||||
</variablelist>
|
||||
|
||||
<para>
|
||||
@@ -534,10 +526,10 @@ filter input iif $int_ifs accept
|
||||
</para>
|
||||
|
||||
<para>
|
||||
- Note that contrary to what one might assume, the output generated
|
||||
- by <command>export</command> is not parseable by
|
||||
- <command>nft -f</command>. Instead, the output of
|
||||
- <command>list</command> command serves well for that purpose.
|
||||
+ By design, <command>list ruleset</command> command output may be
|
||||
+ used as input to <command>nft -f</command>.
|
||||
+ Effectively, this is the nft-equivalent of <command>iptables-save</command> and
|
||||
+ <command>iptables-restore</command>.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
diff --git a/src/evaluate.c b/src/evaluate.c
|
||||
index 809920748c0a9..4656c7566db39 100644
|
||||
--- a/src/evaluate.c
|
||||
+++ b/src/evaluate.c
|
||||
@@ -31,6 +31,8 @@
|
||||
#include <utils.h>
|
||||
#include <xt.h>
|
||||
|
||||
+#include <libnftnl/common.h>
|
||||
+
|
||||
static int expr_evaluate(struct eval_ctx *ctx, struct expr **expr);
|
||||
|
||||
static const char * const byteorder_names[] = {
|
||||
@@ -3526,6 +3528,9 @@ static int cmd_evaluate_export(struct eval_ctx *ctx, struct cmd *cmd)
|
||||
if (cmd->markup->format == __NFT_OUTPUT_NOTSUPP)
|
||||
return cmd_error(ctx, &cmd->location,
|
||||
"this output type is not supported");
|
||||
+ else if (cmd->markup->format == NFTNL_OUTPUT_JSON)
|
||||
+ return cmd_error(ctx, &cmd->location,
|
||||
+ "JSON export is no longer supported, use 'nft -j list ruleset' instead");
|
||||
|
||||
return cache_update(ctx->nft, cmd->op, ctx->msgs);
|
||||
}
|
||||
diff --git a/src/parser_json.c b/src/parser_json.c
|
||||
index 817415c15fb89..1e3688b2dc1cd 100644
|
||||
--- a/src/parser_json.c
|
||||
+++ b/src/parser_json.c
|
||||
@@ -3018,8 +3018,8 @@ static struct cmd *json_parse_cmd(struct json_ctx *ctx, json_t *root)
|
||||
|
||||
return parse_cb_table[i].cb(ctx, tmp, parse_cb_table[i].op);
|
||||
}
|
||||
- json_error(ctx, "Unknown command object.");
|
||||
- return NULL;
|
||||
+ /* to accept 'list ruleset' output 1:1, try add command */
|
||||
+ return json_parse_cmd_add(ctx, root, CMD_ADD);
|
||||
}
|
||||
|
||||
static int __json_parse(struct json_ctx *ctx, json_t *root)
|
||||
--
|
||||
2.21.0
|
||||
|
44
SOURCES/0032-datatype-add-stolen-verdict.patch
Normal file
44
SOURCES/0032-datatype-add-stolen-verdict.patch
Normal file
@ -0,0 +1,44 @@
|
||||
From 14c526641e1fdec01f345c8d9f22fff809e59790 Mon Sep 17 00:00:00 2001
|
||||
From: Florian Westphal <fw@strlen.de>
|
||||
Date: Tue, 12 Jun 2018 18:39:13 +0200
|
||||
Subject: [PATCH] datatype: add stolen verdict
|
||||
|
||||
using fwd statement causes crash when using nft trace:
|
||||
|
||||
trace id ddbbaae2 netdev vpn ingress_out packet: iif "enp2s0" ether saddr 78:54:00:29:bb:aa ether daddr 52:54:00:01:53:9f ip saddr 85.14.236.41 ip daddr 17.25.63.98 ip dscp cs0 ip ecn not-ect ip ttl 64 ip id 49036 ip length 84 icmp type echo-reply icmp code 0 icmp id 16947 icmp sequence 4
|
||||
trace id ddbbaae2 netdev vpn ingress_out rule ip saddr 85.14.236.41 nftrace set 1 (verdict continue)
|
||||
trace id ddbbaae2 netdev vpn ingress_out rule ip saddr 85.14.236.41 ether saddr set aa:bb:00:18:cc:dd ether daddr set 00:00:5e:00:00:11 fwd to "enp1s0"
|
||||
BUG: invalid verdict value 2
|
||||
nft: datatype.c:282: verdict_type_print: Assertion `0' failed.
|
||||
|
||||
ADd stolen verdict (2) and remove the BUG statement.
|
||||
|
||||
Closes: https://bugzilla.netfilter.org/show_bug.cgi?id=1261
|
||||
Signed-off-by: Florian Westphal <fw@strlen.de>
|
||||
(cherry picked from commit bbbed9f3175c5260332ae7e6800b3a6791418fd2)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/datatype.c | 6 +++++-
|
||||
1 file changed, 5 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/datatype.c b/src/datatype.c
|
||||
index c77d228e95a1e..209044539bb84 100644
|
||||
--- a/src/datatype.c
|
||||
+++ b/src/datatype.c
|
||||
@@ -280,8 +280,12 @@ static void verdict_type_print(const struct expr *expr, struct output_ctx *octx)
|
||||
case NF_QUEUE:
|
||||
nft_print(octx, "queue");
|
||||
break;
|
||||
+ case NF_STOLEN:
|
||||
+ nft_print(octx, "stolen");
|
||||
+ break;
|
||||
default:
|
||||
- BUG("invalid verdict value %u\n", expr->verdict);
|
||||
+ nft_print(octx, "unknown verdict value %u", expr->verdict);
|
||||
+ break;
|
||||
}
|
||||
}
|
||||
}
|
||||
--
|
||||
2.21.0
|
||||
|
49
SOURCES/0033-libnftables-Fix-exit_cookie.patch
Normal file
49
SOURCES/0033-libnftables-Fix-exit_cookie.patch
Normal file
@ -0,0 +1,49 @@
|
||||
From 742f52eeb2bf587abb89dbd81ea0f6f58a9d7309 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Wed, 13 Jun 2018 19:18:24 +0200
|
||||
Subject: [PATCH] libnftables: Fix exit_cookie()
|
||||
|
||||
The output and error buffer feature depends on cookie->orig_fp to
|
||||
indicate the current status of buffering: If it is set, a prior call to
|
||||
init_cookie() is assumed. Though exit_cookie() missed to reset that
|
||||
pointer to NULL. causing weird behaviour in applications if they do:
|
||||
|
||||
| nft = nft_ctx_new(0);
|
||||
| nft_ctx_buffer_output(nft);
|
||||
| nft_ctx_unbuffer_output(nft);
|
||||
| nft_ctx_buffer_output(nft);
|
||||
|
||||
While being at it, apply the same fix to error path in init_cookie() as
|
||||
well.
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 5ca7ad252366865225d5c59d297e71215b68f027)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/libnftables.c | 2 ++
|
||||
1 file changed, 2 insertions(+)
|
||||
|
||||
diff --git a/src/libnftables.c b/src/libnftables.c
|
||||
index 848c9cba65657..640693df93755 100644
|
||||
--- a/src/libnftables.c
|
||||
+++ b/src/libnftables.c
|
||||
@@ -195,6 +195,7 @@ static int init_cookie(struct cookie *cookie)
|
||||
cookie->fp = fopencookie(cookie, "w", cookie_fops);
|
||||
if (!cookie->fp) {
|
||||
cookie->fp = cookie->orig_fp;
|
||||
+ cookie->orig_fp = NULL;
|
||||
return 1;
|
||||
}
|
||||
|
||||
@@ -208,6 +209,7 @@ static int exit_cookie(struct cookie *cookie)
|
||||
|
||||
fclose(cookie->fp);
|
||||
cookie->fp = cookie->orig_fp;
|
||||
+ cookie->orig_fp = NULL;
|
||||
free(cookie->buf);
|
||||
cookie->buf = NULL;
|
||||
cookie->buflen = 0;
|
||||
--
|
||||
2.21.0
|
||||
|
59
SOURCES/0034-scanner-Do-not-convert-tabs-into-spaces.patch
Normal file
59
SOURCES/0034-scanner-Do-not-convert-tabs-into-spaces.patch
Normal file
@ -0,0 +1,59 @@
|
||||
From b652c8a14c3cda433cd8d3ebe8290ee7907e4815 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Mon, 18 Jun 2018 10:23:22 +0200
|
||||
Subject: [PATCH] scanner: Do not convert tabs into spaces
|
||||
|
||||
Commit 2f86dd5a43baf ("erec: Review erec_print()") changed erec_print()
|
||||
function to expect tabs in input by replacing the whitespace character
|
||||
in the marker line at the same offset with a tab character so that the
|
||||
marker aligns with the offending part of input.
|
||||
|
||||
The need for that came from JSON input not having its tabs converted to
|
||||
spaces, which erec_print() didn't expect.
|
||||
|
||||
Above change though has a shortcoming: When reading standard syntax
|
||||
input from a file, Flex code converts tabs into spaces. Location
|
||||
information is taken from this converted input, but when printing an
|
||||
error message, the offending input line is read from the input file
|
||||
directly (which still contains tabs).
|
||||
|
||||
The solution is to simply drop said tab conversion from scanner.l.
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 7f8d28105c8caeae7af5bccbe4a6d79f1f73e205)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/scanner.l | 16 +---------------
|
||||
1 file changed, 1 insertion(+), 15 deletions(-)
|
||||
|
||||
diff --git a/src/scanner.l b/src/scanner.l
|
||||
index 416bd27af1427..3551fbf80df6e 100644
|
||||
--- a/src/scanner.l
|
||||
+++ b/src/scanner.l
|
||||
@@ -613,21 +613,7 @@ addrstring ({macaddr}|{ip4addr}|{ip6addr})
|
||||
return NEWLINE;
|
||||
}
|
||||
|
||||
-{tab} {
|
||||
- /*
|
||||
- * Compensate difference between visible length
|
||||
- * and real length.
|
||||
- */
|
||||
- struct parser_state *state = yyget_extra(yyscanner);
|
||||
- unsigned int diff;
|
||||
-
|
||||
- diff = TABSIZE - strlen("\t");
|
||||
- diff -= (state->indesc->column -
|
||||
- strlen("\t") - 1) % TABSIZE;
|
||||
-
|
||||
- update_pos(state, yylloc, diff);
|
||||
- }
|
||||
-
|
||||
+{tab}+
|
||||
{space}+
|
||||
{comment}
|
||||
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,384 @@
|
||||
From 0709a45a89405ad4c564b3a8071fffb79da58612 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Thu, 21 Jun 2018 14:01:13 +0200
|
||||
Subject: [PATCH] netlink_delinearize: Refactor meta_may_dependency_kill()
|
||||
|
||||
The original intent was to fix a bug: The following rule in inet table:
|
||||
|
||||
| meta nfproto ipv4 icmpv6 type echo-reply
|
||||
|
||||
Was added correctly but when printing the meta match was falsely
|
||||
removed. The fix is to deny dependency killing if RHS family of nfproto
|
||||
match doesn't match RHS family of l4proto match. Adding this to the
|
||||
already large conditional led to even more unreadable code, therefore
|
||||
this patch tries to clean that up (and also removes the partial code
|
||||
duplication.
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Florian Westphal <fw@strlen.de>
|
||||
(cherry picked from commit 056aaa3e6dc65aced5e552233ac3e7f89fb81f86)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/netlink_delinearize.c | 83 +++++++++++-----------
|
||||
tests/py/inet/icmp.t | 18 +++++
|
||||
tests/py/inet/icmp.t.json | 114 +++++++++++++++++++++++++++++++
|
||||
tests/py/inet/icmp.t.json.output | 30 ++++++++
|
||||
tests/py/inet/icmp.t.payload | 54 +++++++++++++++
|
||||
5 files changed, 259 insertions(+), 40 deletions(-)
|
||||
create mode 100644 tests/py/inet/icmp.t
|
||||
create mode 100644 tests/py/inet/icmp.t.json
|
||||
create mode 100644 tests/py/inet/icmp.t.json.output
|
||||
create mode 100644 tests/py/inet/icmp.t.payload
|
||||
|
||||
diff --git a/src/netlink_delinearize.c b/src/netlink_delinearize.c
|
||||
index bf990e9e979d5..0f4f62f34256c 100644
|
||||
--- a/src/netlink_delinearize.c
|
||||
+++ b/src/netlink_delinearize.c
|
||||
@@ -1525,61 +1525,64 @@ static bool meta_may_dependency_kill(struct payload_dep_ctx *ctx,
|
||||
const struct expr *expr)
|
||||
{
|
||||
struct expr *dep = ctx->pdep->expr;
|
||||
+ uint16_t l3proto;
|
||||
+ uint8_t l4proto;
|
||||
|
||||
if (ctx->pbase != PROTO_BASE_NETWORK_HDR)
|
||||
return true;
|
||||
|
||||
switch (family) {
|
||||
case NFPROTO_INET:
|
||||
- switch (dep->left->ops->type) {
|
||||
- case EXPR_META:
|
||||
- if (dep->left->meta.key == NFT_META_NFPROTO &&
|
||||
- (mpz_get_uint16(dep->right->value) == NFPROTO_IPV4 ||
|
||||
- mpz_get_uint16(dep->right->value) == NFPROTO_IPV6) &&
|
||||
- expr->left->meta.key == NFT_META_L4PROTO &&
|
||||
- mpz_get_uint8(expr->right->value) != IPPROTO_ICMP &&
|
||||
- mpz_get_uint8(expr->right->value) != IPPROTO_ICMPV6)
|
||||
- return false;
|
||||
- break;
|
||||
- case EXPR_PAYLOAD:
|
||||
- if (dep->left->payload.base == PROTO_BASE_LL_HDR &&
|
||||
- (mpz_get_uint16(dep->right->value) == ETH_P_IP ||
|
||||
- mpz_get_uint16(dep->right->value) == ETH_P_IPV6) &&
|
||||
- expr->left->meta.key == NFT_META_L4PROTO &&
|
||||
- mpz_get_uint8(expr->right->value) != IPPROTO_ICMP &&
|
||||
- mpz_get_uint8(expr->right->value) != IPPROTO_ICMPV6)
|
||||
- return false;
|
||||
- break;
|
||||
- default:
|
||||
- break;
|
||||
- }
|
||||
- break;
|
||||
case NFPROTO_NETDEV:
|
||||
case NFPROTO_BRIDGE:
|
||||
- switch (dep->left->ops->type) {
|
||||
- case EXPR_META:
|
||||
- if (dep->left->meta.key == NFT_META_PROTOCOL &&
|
||||
- (mpz_get_uint16(dep->right->value) == ETH_P_IP ||
|
||||
- mpz_get_uint16(dep->right->value) == ETH_P_IPV6) &&
|
||||
- expr->left->meta.key == NFT_META_L4PROTO &&
|
||||
- mpz_get_uint8(expr->right->value) != IPPROTO_ICMP &&
|
||||
- mpz_get_uint8(expr->right->value) != IPPROTO_ICMPV6)
|
||||
- return false;
|
||||
+ break;
|
||||
+ default:
|
||||
+ return true;
|
||||
+ }
|
||||
+
|
||||
+ if (expr->left->meta.key != NFT_META_L4PROTO)
|
||||
+ return true;
|
||||
+
|
||||
+ l3proto = mpz_get_uint16(dep->right->value);
|
||||
+
|
||||
+ switch (dep->left->ops->type) {
|
||||
+ case EXPR_META:
|
||||
+ if (dep->left->meta.key != NFT_META_NFPROTO)
|
||||
+ return true;
|
||||
+ break;
|
||||
+ case EXPR_PAYLOAD:
|
||||
+ if (dep->left->payload.base != PROTO_BASE_LL_HDR)
|
||||
+ return true;
|
||||
+
|
||||
+ switch(l3proto) {
|
||||
+ case ETH_P_IP:
|
||||
+ l3proto = NFPROTO_IPV4;
|
||||
break;
|
||||
- case EXPR_PAYLOAD:
|
||||
- if (dep->left->payload.base == PROTO_BASE_LL_HDR &&
|
||||
- (mpz_get_uint16(dep->right->value) == ETH_P_IP ||
|
||||
- mpz_get_uint16(dep->right->value) == ETH_P_IPV6) &&
|
||||
- expr->left->meta.key == NFT_META_L4PROTO &&
|
||||
- mpz_get_uint8(expr->right->value) != IPPROTO_ICMP &&
|
||||
- mpz_get_uint8(expr->right->value) != IPPROTO_ICMPV6)
|
||||
- return false;
|
||||
+ case ETH_P_IPV6:
|
||||
+ l3proto = NFPROTO_IPV6;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
break;
|
||||
+ default:
|
||||
+ break;
|
||||
+ }
|
||||
+
|
||||
+ l4proto = mpz_get_uint8(expr->right->value);
|
||||
+
|
||||
+ switch (l4proto) {
|
||||
+ case IPPROTO_ICMP:
|
||||
+ case IPPROTO_ICMPV6:
|
||||
+ break;
|
||||
+ default:
|
||||
+ return false;
|
||||
}
|
||||
+
|
||||
+ if ((l3proto == NFPROTO_IPV4 && l4proto == IPPROTO_ICMPV6) ||
|
||||
+ (l3proto == NFPROTO_IPV6 && l4proto == IPPROTO_ICMP))
|
||||
+ return false;
|
||||
+
|
||||
return true;
|
||||
}
|
||||
|
||||
diff --git a/tests/py/inet/icmp.t b/tests/py/inet/icmp.t
|
||||
new file mode 100644
|
||||
index 0000000000000..9014f846729c7
|
||||
--- /dev/null
|
||||
+++ b/tests/py/inet/icmp.t
|
||||
@@ -0,0 +1,18 @@
|
||||
+:output;type filter hook output priority 0
|
||||
+
|
||||
+*inet;test-inet;output
|
||||
+
|
||||
+# without nfproto specified, these should add an implicit dependency on
|
||||
+# the likely l3 proto (i.e., IPv6 for icmpv6 and IPv4 for icmp)
|
||||
+
|
||||
+icmp type echo-request;ok
|
||||
+icmpv6 type echo-request;ok
|
||||
+
|
||||
+# make sure only those nfproto matches are dropped if
|
||||
+# the next statement would add it as a dependency anyway
|
||||
+
|
||||
+meta nfproto ipv4 icmp type echo-request;ok;icmp type echo-request
|
||||
+meta nfproto ipv4 icmpv6 type echo-request;ok
|
||||
+
|
||||
+meta nfproto ipv6 icmp type echo-request;ok
|
||||
+meta nfproto ipv6 icmpv6 type echo-request;ok;icmpv6 type echo-request
|
||||
diff --git a/tests/py/inet/icmp.t.json b/tests/py/inet/icmp.t.json
|
||||
new file mode 100644
|
||||
index 0000000000000..c4517605a7186
|
||||
--- /dev/null
|
||||
+++ b/tests/py/inet/icmp.t.json
|
||||
@@ -0,0 +1,114 @@
|
||||
+# icmp type echo-request
|
||||
+[
|
||||
+ {
|
||||
+ "match": {
|
||||
+ "left": {
|
||||
+ "payload": {
|
||||
+ "field": "type",
|
||||
+ "name": "icmp"
|
||||
+ }
|
||||
+ },
|
||||
+ "right": "echo-request"
|
||||
+ }
|
||||
+ }
|
||||
+]
|
||||
+
|
||||
+# icmpv6 type echo-request
|
||||
+[
|
||||
+ {
|
||||
+ "match": {
|
||||
+ "left": {
|
||||
+ "payload": {
|
||||
+ "field": "type",
|
||||
+ "name": "icmpv6"
|
||||
+ }
|
||||
+ },
|
||||
+ "right": "echo-request"
|
||||
+ }
|
||||
+ }
|
||||
+]
|
||||
+
|
||||
+# meta nfproto ipv4 icmp type echo-request
|
||||
+[
|
||||
+ {
|
||||
+ "match": {
|
||||
+ "left": { "meta": "nfproto" },
|
||||
+ "right": "ipv4"
|
||||
+ }
|
||||
+ },
|
||||
+ {
|
||||
+ "match": {
|
||||
+ "left": {
|
||||
+ "payload": {
|
||||
+ "field": "type",
|
||||
+ "name": "icmp"
|
||||
+ }
|
||||
+ },
|
||||
+ "right": "echo-request"
|
||||
+ }
|
||||
+ }
|
||||
+]
|
||||
+
|
||||
+# meta nfproto ipv4 icmpv6 type echo-request
|
||||
+[
|
||||
+ {
|
||||
+ "match": {
|
||||
+ "left": { "meta": "nfproto" },
|
||||
+ "right": "ipv4"
|
||||
+ }
|
||||
+ },
|
||||
+ {
|
||||
+ "match": {
|
||||
+ "left": {
|
||||
+ "payload": {
|
||||
+ "field": "type",
|
||||
+ "name": "icmpv6"
|
||||
+ }
|
||||
+ },
|
||||
+ "right": "echo-request"
|
||||
+ }
|
||||
+ }
|
||||
+]
|
||||
+
|
||||
+# meta nfproto ipv6 icmp type echo-request
|
||||
+[
|
||||
+ {
|
||||
+ "match": {
|
||||
+ "left": { "meta": "nfproto" },
|
||||
+ "right": "ipv6"
|
||||
+ }
|
||||
+ },
|
||||
+ {
|
||||
+ "match": {
|
||||
+ "left": {
|
||||
+ "payload": {
|
||||
+ "field": "type",
|
||||
+ "name": "icmp"
|
||||
+ }
|
||||
+ },
|
||||
+ "right": "echo-request"
|
||||
+ }
|
||||
+ }
|
||||
+]
|
||||
+
|
||||
+# meta nfproto ipv6 icmpv6 type echo-request
|
||||
+[
|
||||
+ {
|
||||
+ "match": {
|
||||
+ "left": { "meta": "nfproto" },
|
||||
+ "right": "ipv6"
|
||||
+ }
|
||||
+ },
|
||||
+ {
|
||||
+ "match": {
|
||||
+ "left": {
|
||||
+ "payload": {
|
||||
+ "field": "type",
|
||||
+ "name": "icmpv6"
|
||||
+ }
|
||||
+ },
|
||||
+ "right": "echo-request"
|
||||
+ }
|
||||
+ }
|
||||
+]
|
||||
+
|
||||
diff --git a/tests/py/inet/icmp.t.json.output b/tests/py/inet/icmp.t.json.output
|
||||
new file mode 100644
|
||||
index 0000000000000..2282900d58e98
|
||||
--- /dev/null
|
||||
+++ b/tests/py/inet/icmp.t.json.output
|
||||
@@ -0,0 +1,30 @@
|
||||
+# meta nfproto ipv4 icmp type echo-request
|
||||
+[
|
||||
+ {
|
||||
+ "match": {
|
||||
+ "left": {
|
||||
+ "payload": {
|
||||
+ "field": "type",
|
||||
+ "name": "icmp"
|
||||
+ }
|
||||
+ },
|
||||
+ "right": "echo-request"
|
||||
+ }
|
||||
+ }
|
||||
+]
|
||||
+
|
||||
+# meta nfproto ipv6 icmpv6 type echo-request
|
||||
+[
|
||||
+ {
|
||||
+ "match": {
|
||||
+ "left": {
|
||||
+ "payload": {
|
||||
+ "field": "type",
|
||||
+ "name": "icmpv6"
|
||||
+ }
|
||||
+ },
|
||||
+ "right": "echo-request"
|
||||
+ }
|
||||
+ }
|
||||
+]
|
||||
+
|
||||
diff --git a/tests/py/inet/icmp.t.payload b/tests/py/inet/icmp.t.payload
|
||||
new file mode 100644
|
||||
index 0000000000000..f98cfc39abed4
|
||||
--- /dev/null
|
||||
+++ b/tests/py/inet/icmp.t.payload
|
||||
@@ -0,0 +1,54 @@
|
||||
+# icmp type echo-request
|
||||
+inet test-inet output
|
||||
+ [ meta load nfproto => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x00000002 ]
|
||||
+ [ meta load l4proto => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x00000001 ]
|
||||
+ [ payload load 1b @ transport header + 0 => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x00000008 ]
|
||||
+
|
||||
+# icmpv6 type echo-request
|
||||
+inet test-inet output
|
||||
+ [ meta load nfproto => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x0000000a ]
|
||||
+ [ meta load l4proto => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x0000003a ]
|
||||
+ [ payload load 1b @ transport header + 0 => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x00000080 ]
|
||||
+
|
||||
+# meta nfproto ipv4 icmp type echo-request
|
||||
+inet test-inet output
|
||||
+ [ meta load nfproto => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x00000002 ]
|
||||
+ [ meta load l4proto => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x00000001 ]
|
||||
+ [ payload load 1b @ transport header + 0 => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x00000008 ]
|
||||
+
|
||||
+# meta nfproto ipv4 icmpv6 type echo-request
|
||||
+inet test-inet output
|
||||
+ [ meta load nfproto => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x00000002 ]
|
||||
+ [ meta load l4proto => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x0000003a ]
|
||||
+ [ payload load 1b @ transport header + 0 => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x00000080 ]
|
||||
+
|
||||
+# meta nfproto ipv6 icmp type echo-request
|
||||
+inet test-inet output
|
||||
+ [ meta load nfproto => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x0000000a ]
|
||||
+ [ meta load l4proto => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x00000001 ]
|
||||
+ [ payload load 1b @ transport header + 0 => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x00000008 ]
|
||||
+
|
||||
+# meta nfproto ipv6 icmpv6 type echo-request
|
||||
+inet test-inet output
|
||||
+ [ meta load nfproto => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x0000000a ]
|
||||
+ [ meta load l4proto => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x0000003a ]
|
||||
+ [ payload load 1b @ transport header + 0 => reg 1 ]
|
||||
+ [ cmp eq reg 1 0x00000080 ]
|
||||
+
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,61 @@
|
||||
From 1c690d0992d3ef1dbb872b1cd65c10161628e9fd Mon Sep 17 00:00:00 2001
|
||||
From: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Date: Fri, 6 Jul 2018 20:07:54 +0200
|
||||
Subject: [PATCH] evaluate: skip evaluation of datatype concatenations
|
||||
|
||||
These are not really expressions, so there is not value in place. The
|
||||
expr_evaluate_concat() is called from set_evaluate() to calculate the
|
||||
total length of the tuple.
|
||||
|
||||
Closes: https://bugzilla.netfilter.org/show_bug.cgi?id=1265
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 6b00b9537e181eaf630ecaf0d4e56905eb29d87c)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/evaluate.c | 9 +++++----
|
||||
1 file changed, 5 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/src/evaluate.c b/src/evaluate.c
|
||||
index 4656c7566db39..6ab4a3309ad77 100644
|
||||
--- a/src/evaluate.c
|
||||
+++ b/src/evaluate.c
|
||||
@@ -1090,7 +1090,8 @@ static int list_member_evaluate(struct eval_ctx *ctx, struct expr **expr)
|
||||
return err;
|
||||
}
|
||||
|
||||
-static int expr_evaluate_concat(struct eval_ctx *ctx, struct expr **expr)
|
||||
+static int expr_evaluate_concat(struct eval_ctx *ctx, struct expr **expr,
|
||||
+ bool eval)
|
||||
{
|
||||
const struct datatype *dtype = ctx->ectx.dtype, *tmp;
|
||||
uint32_t type = dtype ? dtype->type : 0, ntype = 0;
|
||||
@@ -1111,7 +1112,7 @@ static int expr_evaluate_concat(struct eval_ctx *ctx, struct expr **expr)
|
||||
tmp = concat_subtype_lookup(type, --off);
|
||||
expr_set_context(&ctx->ectx, tmp, tmp->size);
|
||||
|
||||
- if (list_member_evaluate(ctx, &i) < 0)
|
||||
+ if (eval && list_member_evaluate(ctx, &i) < 0)
|
||||
return -1;
|
||||
flags &= i->flags;
|
||||
|
||||
@@ -1776,7 +1777,7 @@ static int expr_evaluate(struct eval_ctx *ctx, struct expr **expr)
|
||||
case EXPR_BINOP:
|
||||
return expr_evaluate_binop(ctx, expr);
|
||||
case EXPR_CONCAT:
|
||||
- return expr_evaluate_concat(ctx, expr);
|
||||
+ return expr_evaluate_concat(ctx, expr, true);
|
||||
case EXPR_LIST:
|
||||
return expr_evaluate_list(ctx, expr);
|
||||
case EXPR_SET:
|
||||
@@ -2820,7 +2821,7 @@ static int set_evaluate(struct eval_ctx *ctx, struct set *set)
|
||||
|
||||
if (set->key->len == 0) {
|
||||
if (set->key->ops->type == EXPR_CONCAT &&
|
||||
- expr_evaluate_concat(ctx, &set->key) < 0)
|
||||
+ expr_evaluate_concat(ctx, &set->key, false) < 0)
|
||||
return -1;
|
||||
|
||||
if (set->key->len == 0)
|
||||
--
|
||||
2.21.0
|
||||
|
96
SOURCES/0037-tests-shell-add-tests-for-listing-objects.patch
Normal file
96
SOURCES/0037-tests-shell-add-tests-for-listing-objects.patch
Normal file
@ -0,0 +1,96 @@
|
||||
From c4bc472abe9f92ca2fcb9696e8e84083dcc29269 Mon Sep 17 00:00:00 2001
|
||||
From: Harsha Sharma <harshasharmaiitr@gmail.com>
|
||||
Date: Tue, 10 Jul 2018 22:00:21 +0200
|
||||
Subject: [PATCH] tests: shell: add tests for listing objects
|
||||
|
||||
Add tests for listing specific object for a given table name and all
|
||||
objects of a table.
|
||||
|
||||
Signed-off-by: Harsha Sharma <harshasharmaiitr@gmail.com>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit bf91cfd9a619484fa3fde325ac092d69738ecf47)
|
||||
|
||||
Conflicts:
|
||||
-> adjust expected output in 0013objects_0 to old code base.
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
tests/shell/testcases/listing/0013objects_0 | 34 +++++++++++++++++++++
|
||||
tests/shell/testcases/listing/0014objects_0 | 24 +++++++++++++++
|
||||
2 files changed, 58 insertions(+)
|
||||
create mode 100755 tests/shell/testcases/listing/0013objects_0
|
||||
create mode 100755 tests/shell/testcases/listing/0014objects_0
|
||||
|
||||
diff --git a/tests/shell/testcases/listing/0013objects_0 b/tests/shell/testcases/listing/0013objects_0
|
||||
new file mode 100755
|
||||
index 0000000000000..c237e932a4483
|
||||
--- /dev/null
|
||||
+++ b/tests/shell/testcases/listing/0013objects_0
|
||||
@@ -0,0 +1,34 @@
|
||||
+#!/bin/bash
|
||||
+
|
||||
+# list table with all objects and chains
|
||||
+
|
||||
+EXPECTED="table ip test {
|
||||
+ quota https-quota {
|
||||
+ 25 mbytes
|
||||
+ }
|
||||
+
|
||||
+ ct helper cthelp {
|
||||
+ type \"sip\" protocol tcp
|
||||
+
|
||||
+ l3proto ip
|
||||
+ }
|
||||
+
|
||||
+ chain input {
|
||||
+ }
|
||||
+}"
|
||||
+
|
||||
+set -e
|
||||
+
|
||||
+$NFT add table test
|
||||
+$NFT add chain test input
|
||||
+$NFT add quota test https-quota 25 mbytes
|
||||
+$NFT add ct helper test cthelp { type \"sip\" protocol tcp \; }
|
||||
+$NFT add table test-ip
|
||||
+
|
||||
+GET="$($NFT list table test)"
|
||||
+if [ "$EXPECTED" != "$GET" ] ; then
|
||||
+ DIFF="$(which diff)"
|
||||
+ [ -x $DIFF ] && $DIFF -u <(echo "$EXPECTED") <(echo "$GET")
|
||||
+ exit 1
|
||||
+fi
|
||||
+
|
||||
diff --git a/tests/shell/testcases/listing/0014objects_0 b/tests/shell/testcases/listing/0014objects_0
|
||||
new file mode 100755
|
||||
index 0000000000000..dcfe2e6f80947
|
||||
--- /dev/null
|
||||
+++ b/tests/shell/testcases/listing/0014objects_0
|
||||
@@ -0,0 +1,24 @@
|
||||
+#!/bin/bash
|
||||
+
|
||||
+# list only the object asked for with table
|
||||
+
|
||||
+EXPECTED="table ip test {
|
||||
+ quota https-quota {
|
||||
+ 25 mbytes
|
||||
+ }
|
||||
+}"
|
||||
+
|
||||
+set -e
|
||||
+
|
||||
+$NFT add table test
|
||||
+$NFT add quota test https-quota 25 mbytes
|
||||
+$NFT add ct helper test cthelp { type \"sip\" protocol tcp \; }
|
||||
+$NFT add table test-ip
|
||||
+
|
||||
+GET="$($NFT list quota test https-quota)"
|
||||
+if [ "$EXPECTED" != "$GET" ] ; then
|
||||
+ DIFF="$(which diff)"
|
||||
+ [ -x $DIFF ] && $DIFF -u <(echo "$EXPECTED") <(echo "$GET")
|
||||
+ exit 1
|
||||
+fi
|
||||
+
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,63 @@
|
||||
From 3e28756a6f0730abac937d9fb10b7ee9c3569a15 Mon Sep 17 00:00:00 2001
|
||||
From: Florian Westphal <fw@strlen.de>
|
||||
Date: Wed, 2 Jan 2019 17:10:36 +0100
|
||||
Subject: [PATCH] rule: fix object listing when no table is given
|
||||
|
||||
'nft list quotas' would not print anything at all anymore.
|
||||
|
||||
Fixes: 88456a7ef01172 ("rule: list only the table containing object")
|
||||
Signed-off-by: Florian Westphal <fw@strlen.de>
|
||||
(cherry picked from commit dafac7d528de0890b82f943fc818ccb7a82fca7d)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/rule.c | 13 ++++++++-----
|
||||
tests/shell/testcases/listing/0014objects_0 | 7 +++++++
|
||||
2 files changed, 15 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/src/rule.c b/src/rule.c
|
||||
index 47b0d30cbed18..c3a2e7cc464bb 100644
|
||||
--- a/src/rule.c
|
||||
+++ b/src/rule.c
|
||||
@@ -1585,13 +1585,16 @@ static int do_list_obj(struct netlink_ctx *ctx, struct cmd *cmd, uint32_t type)
|
||||
continue;
|
||||
|
||||
if (cmd->handle.table.name != NULL &&
|
||||
- !strcmp(cmd->handle.table.name, table->handle.table.name)) {
|
||||
- nft_print(&ctx->nft->output, "table %s %s {\n",
|
||||
- family2str(table->handle.family),
|
||||
- cmd->handle.table.name);
|
||||
- } else
|
||||
+ strcmp(cmd->handle.table.name, table->handle.table.name))
|
||||
continue;
|
||||
|
||||
+ if (list_empty(&table->objs))
|
||||
+ continue;
|
||||
+
|
||||
+ nft_print(&ctx->nft->output, "table %s %s {\n",
|
||||
+ family2str(table->handle.family),
|
||||
+ table->handle.table.name);
|
||||
+
|
||||
list_for_each_entry(obj, &table->objs, list) {
|
||||
if (obj->type != type ||
|
||||
(cmd->handle.obj.name != NULL &&
|
||||
diff --git a/tests/shell/testcases/listing/0014objects_0 b/tests/shell/testcases/listing/0014objects_0
|
||||
index dcfe2e6f80947..20f68406e58fa 100755
|
||||
--- a/tests/shell/testcases/listing/0014objects_0
|
||||
+++ b/tests/shell/testcases/listing/0014objects_0
|
||||
@@ -15,6 +15,13 @@ $NFT add quota test https-quota 25 mbytes
|
||||
$NFT add ct helper test cthelp { type \"sip\" protocol tcp \; }
|
||||
$NFT add table test-ip
|
||||
|
||||
+GET="$($NFT list quotas)"
|
||||
+if [ "$EXPECTED" != "$GET" ] ; then
|
||||
+ DIFF="$(which diff)"
|
||||
+ [ -x $DIFF ] && $DIFF -u <(echo "$EXPECTED") <(echo "$GET")
|
||||
+ exit 1
|
||||
+fi
|
||||
+
|
||||
GET="$($NFT list quota test https-quota)"
|
||||
if [ "$EXPECTED" != "$GET" ] ; then
|
||||
DIFF="$(which diff)"
|
||||
--
|
||||
2.21.0
|
||||
|
122
SOURCES/0039-proto-fix-icmp-icmpv6-code-datatype.patch
Normal file
122
SOURCES/0039-proto-fix-icmp-icmpv6-code-datatype.patch
Normal file
@ -0,0 +1,122 @@
|
||||
From f314ae8d3cc29d473ff5ce67ad4aa3776283e3d6 Mon Sep 17 00:00:00 2001
|
||||
From: Florian Westphal <fw@strlen.de>
|
||||
Date: Tue, 4 Sep 2018 13:53:59 +0200
|
||||
Subject: [PATCH] proto: fix icmp/icmpv6 code datatype
|
||||
|
||||
Andrew A. Sabitov says:
|
||||
I'd like to use a set (concatenation) of icmpv6 type and icmpv6 code
|
||||
and check incoming icmpv6 traffic against it:
|
||||
|
||||
add set inet fw in_icmpv6_types { type icmpv6_type . icmpv6_code; }
|
||||
add element inet fw in_icmpv6_types { 1 . 0 } # no route to destination
|
||||
add element inet fw in_icmpv6_types { 1 . 1 } # communication with destination administratively prohibited
|
||||
# ...
|
||||
|
||||
add rule inet fw in_icmpv6 icmpv6 type . icmpv6 code @in_icmpv6_types \
|
||||
limit rate 15/minute accept
|
||||
|
||||
yields:
|
||||
Error: can not use variable sized data types (integer) in concat expressions
|
||||
icmpv6 type . icmpv6 code @in_icmpv6_types
|
||||
~~~~~~~~~~~~~~^^^^^^^^^^^
|
||||
|
||||
Change 'code' type to the icmp/icmpv6 code type.
|
||||
Needs minor change to test suite as nft will now display
|
||||
human-readable names instead of numeric codes.
|
||||
|
||||
Closes: https://bugzilla.netfilter.org/show_bug.cgi?id=1276
|
||||
Signed-off-by: Florian Westphal <fw@strlen.de>
|
||||
(cherry picked from commit 0f44d4f62753535d39d95d83778348bee4e88053)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/proto.c | 4 ++--
|
||||
tests/py/ip/icmp.t | 4 ++--
|
||||
tests/py/ip/icmp.t.payload.ip | 2 +-
|
||||
tests/py/ip6/icmpv6.t | 6 +++---
|
||||
tests/py/ip6/icmpv6.t.payload.ip6 | 2 +-
|
||||
5 files changed, 9 insertions(+), 9 deletions(-)
|
||||
|
||||
diff --git a/src/proto.c b/src/proto.c
|
||||
index ed011efab2229..d178bf39ea907 100644
|
||||
--- a/src/proto.c
|
||||
+++ b/src/proto.c
|
||||
@@ -347,7 +347,7 @@ const struct proto_desc proto_icmp = {
|
||||
.checksum_key = ICMPHDR_CHECKSUM,
|
||||
.templates = {
|
||||
[ICMPHDR_TYPE] = ICMPHDR_TYPE("type", &icmp_type_type, type),
|
||||
- [ICMPHDR_CODE] = ICMPHDR_FIELD("code", code),
|
||||
+ [ICMPHDR_CODE] = ICMPHDR_TYPE("code", &icmp_code_type, code),
|
||||
[ICMPHDR_CHECKSUM] = ICMPHDR_FIELD("checksum", checksum),
|
||||
[ICMPHDR_ID] = ICMPHDR_FIELD("id", un.echo.id),
|
||||
[ICMPHDR_SEQ] = ICMPHDR_FIELD("sequence", un.echo.sequence),
|
||||
@@ -686,7 +686,7 @@ const struct proto_desc proto_icmp6 = {
|
||||
.checksum_key = ICMP6HDR_CHECKSUM,
|
||||
.templates = {
|
||||
[ICMP6HDR_TYPE] = ICMP6HDR_TYPE("type", &icmp6_type_type, icmp6_type),
|
||||
- [ICMP6HDR_CODE] = ICMP6HDR_FIELD("code", icmp6_code),
|
||||
+ [ICMP6HDR_CODE] = ICMP6HDR_TYPE("code", &icmpv6_code_type, icmp6_code),
|
||||
[ICMP6HDR_CHECKSUM] = ICMP6HDR_FIELD("checksum", icmp6_cksum),
|
||||
[ICMP6HDR_PPTR] = ICMP6HDR_FIELD("parameter-problem", icmp6_pptr),
|
||||
[ICMP6HDR_MTU] = ICMP6HDR_FIELD("mtu", icmp6_mtu),
|
||||
diff --git a/tests/py/ip/icmp.t b/tests/py/ip/icmp.t
|
||||
index 5a7ce7e08bac0..6c05fb9d0fbca 100644
|
||||
--- a/tests/py/ip/icmp.t
|
||||
+++ b/tests/py/ip/icmp.t
|
||||
@@ -28,8 +28,8 @@ icmp code 33-55;ok
|
||||
icmp code != 33-55;ok
|
||||
icmp code { 33-55};ok
|
||||
icmp code != { 33-55};ok
|
||||
-icmp code { 2, 4, 54, 33, 56};ok
|
||||
-icmp code != { 2, 4, 54, 33, 56};ok
|
||||
+icmp code { 2, 4, 54, 33, 56};ok;icmp code { prot-unreachable, 4, 33, 54, 56}
|
||||
+icmp code != { prot-unreachable, 4, 33, 54, 56};ok
|
||||
|
||||
icmp checksum 12343 accept;ok
|
||||
icmp checksum != 12343 accept;ok
|
||||
diff --git a/tests/py/ip/icmp.t.payload.ip b/tests/py/ip/icmp.t.payload.ip
|
||||
index f959cf338295c..27f222072d5dc 100644
|
||||
--- a/tests/py/ip/icmp.t.payload.ip
|
||||
+++ b/tests/py/ip/icmp.t.payload.ip
|
||||
@@ -184,7 +184,7 @@ ip test-ip4 input
|
||||
[ payload load 1b @ transport header + 1 => reg 1 ]
|
||||
[ lookup reg 1 set __set%d ]
|
||||
|
||||
-# icmp code != { 2, 4, 54, 33, 56}
|
||||
+# icmp code != { prot-unreachable, 4, 33, 54, 56}
|
||||
__set%d test-ip4 3
|
||||
__set%d test-ip4 0
|
||||
element 00000002 : 0 [end] element 00000004 : 0 [end] element 00000036 : 0 [end] element 00000021 : 0 [end] element 00000038 : 0 [end]
|
||||
diff --git a/tests/py/ip6/icmpv6.t b/tests/py/ip6/icmpv6.t
|
||||
index a898fe30c24c7..8d794115d51e9 100644
|
||||
--- a/tests/py/ip6/icmpv6.t
|
||||
+++ b/tests/py/ip6/icmpv6.t
|
||||
@@ -28,10 +28,10 @@ icmpv6 type {router-renumbering, mld-listener-done, time-exceeded, nd-router-sol
|
||||
icmpv6 type {mld-listener-query, time-exceeded, nd-router-advert} accept;ok
|
||||
icmpv6 type != {mld-listener-query, time-exceeded, nd-router-advert} accept;ok
|
||||
|
||||
-icmpv6 code 4;ok
|
||||
+icmpv6 code 4;ok;icmpv6 code port-unreachable
|
||||
icmpv6 code 3-66;ok
|
||||
-icmpv6 code {5, 6, 7} accept;ok
|
||||
-icmpv6 code != {5, 6, 7} accept;ok
|
||||
+icmpv6 code {5, 6, 7} accept;ok;icmpv6 code {policy-fail, reject-route, 7} accept
|
||||
+icmpv6 code != {policy-fail, reject-route, 7} accept;ok
|
||||
icmpv6 code { 3-66};ok
|
||||
icmpv6 code != { 3-66};ok
|
||||
|
||||
diff --git a/tests/py/ip6/icmpv6.t.payload.ip6 b/tests/py/ip6/icmpv6.t.payload.ip6
|
||||
index 7a630f9f8b097..51d71f4149b56 100644
|
||||
--- a/tests/py/ip6/icmpv6.t.payload.ip6
|
||||
+++ b/tests/py/ip6/icmpv6.t.payload.ip6
|
||||
@@ -220,7 +220,7 @@ ip6 test-ip6 input
|
||||
[ lookup reg 1 set __set%d ]
|
||||
[ immediate reg 0 accept ]
|
||||
|
||||
-# icmpv6 code != {5, 6, 7} accept
|
||||
+# icmpv6 code != {policy-fail, reject-route, 7} accept
|
||||
__set%d test-ip6 3
|
||||
__set%d test-ip6 0
|
||||
element 00000005 : 0 [end] element 00000006 : 0 [end] element 00000007 : 0 [end]
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,55 @@
|
||||
From f50e0290b648f00fb76655b23d48d0729500c76a Mon Sep 17 00:00:00 2001
|
||||
From: Florian Westphal <fw@strlen.de>
|
||||
Date: Thu, 20 Sep 2018 17:21:45 +0200
|
||||
Subject: [PATCH] evaluate: throw distinct error if map exists but contains no
|
||||
objects
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
nft would throw misleading error in case map exists but doesn't contain
|
||||
expected objects.
|
||||
|
||||
nft add rule filter in ct helper set tcp dport map @foo
|
||||
Error: Expression is not a map
|
||||
add rule filter in ct helper set tcp dport map @foo
|
||||
^^^^
|
||||
nft list table filter
|
||||
table ip filter {
|
||||
map foo {
|
||||
type inet_service : ifname
|
||||
}
|
||||
...
|
||||
|
||||
clarify this.
|
||||
|
||||
Reported-by: Christian Göttsche <cgzones@googlemail.com>
|
||||
Signed-off-by: Florian Westphal <fw@strlen.de>
|
||||
(cherry picked from commit 5b35fb3132b1fa4348266139661ffa21a5a5ae0d)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/evaluate.c | 6 ++++--
|
||||
1 file changed, 4 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/src/evaluate.c b/src/evaluate.c
|
||||
index 6ab4a3309ad77..88fa44dd34ef5 100644
|
||||
--- a/src/evaluate.c
|
||||
+++ b/src/evaluate.c
|
||||
@@ -2671,10 +2671,12 @@ static int stmt_evaluate_objref_map(struct eval_ctx *ctx, struct stmt *stmt)
|
||||
case EXPR_SYMBOL:
|
||||
if (expr_evaluate(ctx, &map->mappings) < 0)
|
||||
return -1;
|
||||
- if (map->mappings->ops->type != EXPR_SET_REF ||
|
||||
- !(map->mappings->set->flags & NFT_SET_OBJECT))
|
||||
+ if (map->mappings->ops->type != EXPR_SET_REF)
|
||||
return expr_error(ctx->msgs, map->mappings,
|
||||
"Expression is not a map");
|
||||
+ if (!(map->mappings->set->flags & NFT_SET_OBJECT))
|
||||
+ return expr_error(ctx->msgs, map->mappings,
|
||||
+ "Expression is not a map with objects");
|
||||
break;
|
||||
default:
|
||||
BUG("invalid mapping expression %s\n",
|
||||
--
|
||||
2.21.0
|
||||
|
106
SOURCES/0041-parser-bail-out-on-incorrect-burst-unit.patch
Normal file
106
SOURCES/0041-parser-bail-out-on-incorrect-burst-unit.patch
Normal file
@ -0,0 +1,106 @@
|
||||
From bd7a8291c1e00c3625dd348dbb7246b4a7aa357d Mon Sep 17 00:00:00 2001
|
||||
From: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Date: Mon, 3 Dec 2018 17:06:21 +0100
|
||||
Subject: [PATCH] parser: bail out on incorrect burst unit
|
||||
|
||||
Burst can be either bytes or packets, depending on the rate limit unit.
|
||||
|
||||
# nft add rule x y iif eth0 limit rate 512 kbytes/second burst 5 packets
|
||||
Error: syntax error, unexpected packets, expecting string or bytes
|
||||
add rule x y iif eth0 limit rate 512 kbytes/second burst 5 packets
|
||||
^^^^^^^
|
||||
|
||||
Closes: https://bugzilla.netfilter.org/show_bug.cgi?id=1306
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 1018eae77176cffd39bad0e499010923642c2cba)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/parser_bison.y | 15 +++++++++------
|
||||
tests/py/any/limit.t | 2 ++
|
||||
2 files changed, 11 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/src/parser_bison.y b/src/parser_bison.y
|
||||
index a6b6fc1745a72..aabf16316ff8b 100644
|
||||
--- a/src/parser_bison.y
|
||||
+++ b/src/parser_bison.y
|
||||
@@ -562,7 +562,7 @@ int nft_lex(void *, void *, void *);
|
||||
%type <val> level_type log_flags log_flags_tcp log_flag_tcp
|
||||
%type <stmt> limit_stmt quota_stmt connlimit_stmt
|
||||
%destructor { stmt_free($$); } limit_stmt quota_stmt connlimit_stmt
|
||||
-%type <val> limit_burst limit_mode time_unit quota_mode
|
||||
+%type <val> limit_burst_pkts limit_burst_bytes limit_mode time_unit quota_mode
|
||||
%type <stmt> reject_stmt reject_stmt_alloc
|
||||
%destructor { stmt_free($$); } reject_stmt reject_stmt_alloc
|
||||
%type <stmt> nat_stmt nat_stmt_alloc masq_stmt masq_stmt_alloc redir_stmt redir_stmt_alloc
|
||||
@@ -2298,7 +2298,7 @@ log_flag_tcp : SEQUENCE
|
||||
}
|
||||
;
|
||||
|
||||
-limit_stmt : LIMIT RATE limit_mode NUM SLASH time_unit limit_burst
|
||||
+limit_stmt : LIMIT RATE limit_mode NUM SLASH time_unit limit_burst_pkts
|
||||
{
|
||||
$$ = limit_stmt_alloc(&@$);
|
||||
$$->limit.rate = $4;
|
||||
@@ -2307,7 +2307,7 @@ limit_stmt : LIMIT RATE limit_mode NUM SLASH time_unit limit_burst
|
||||
$$->limit.type = NFT_LIMIT_PKTS;
|
||||
$$->limit.flags = $3;
|
||||
}
|
||||
- | LIMIT RATE limit_mode NUM STRING limit_burst
|
||||
+ | LIMIT RATE limit_mode NUM STRING limit_burst_bytes
|
||||
{
|
||||
struct error_record *erec;
|
||||
uint64_t rate, unit;
|
||||
@@ -2388,8 +2388,11 @@ limit_mode : OVER { $$ = NFT_LIMIT_F_INV; }
|
||||
| /* empty */ { $$ = 0; }
|
||||
;
|
||||
|
||||
-limit_burst : /* empty */ { $$ = 0; }
|
||||
+limit_burst_pkts : /* empty */ { $$ = 0; }
|
||||
| BURST NUM PACKETS { $$ = $2; }
|
||||
+ ;
|
||||
+
|
||||
+limit_burst_bytes : /* empty */ { $$ = 0; }
|
||||
| BURST NUM BYTES { $$ = $2; }
|
||||
| BURST NUM STRING
|
||||
{
|
||||
@@ -3199,7 +3202,7 @@ ct_obj_alloc :
|
||||
}
|
||||
;
|
||||
|
||||
-limit_config : RATE limit_mode NUM SLASH time_unit limit_burst
|
||||
+limit_config : RATE limit_mode NUM SLASH time_unit limit_burst_pkts
|
||||
{
|
||||
struct limit *limit;
|
||||
limit = xzalloc(sizeof(*limit));
|
||||
@@ -3210,7 +3213,7 @@ limit_config : RATE limit_mode NUM SLASH time_unit limit_burst
|
||||
limit->flags = $2;
|
||||
$$ = limit;
|
||||
}
|
||||
- | RATE limit_mode NUM STRING limit_burst
|
||||
+ | RATE limit_mode NUM STRING limit_burst_bytes
|
||||
{
|
||||
struct limit *limit;
|
||||
struct error_record *erec;
|
||||
diff --git a/tests/py/any/limit.t b/tests/py/any/limit.t
|
||||
index 8180bea3ddae6..ef7f93133297f 100644
|
||||
--- a/tests/py/any/limit.t
|
||||
+++ b/tests/py/any/limit.t
|
||||
@@ -14,6 +14,7 @@ limit rate 400/hour;ok
|
||||
limit rate 40/day;ok
|
||||
limit rate 400/week;ok
|
||||
limit rate 1023/second burst 10 packets;ok
|
||||
+limit rate 1023/second burst 10 bytes;fail
|
||||
|
||||
limit rate 1 kbytes/second;ok
|
||||
limit rate 2 kbytes/second;ok
|
||||
@@ -21,6 +22,7 @@ limit rate 1025 kbytes/second;ok
|
||||
limit rate 1023 mbytes/second;ok
|
||||
limit rate 10230 mbytes/second;ok
|
||||
limit rate 1023000 mbytes/second;ok
|
||||
+limit rate 512 kbytes/second burst 5 packets;fail
|
||||
|
||||
limit rate 1025 bytes/second burst 512 bytes;ok
|
||||
limit rate 1025 kbytes/second burst 1023 kbytes;ok
|
||||
--
|
||||
2.21.0
|
||||
|
53
SOURCES/0042-src-fix-netdev-family-device-name-parsing.patch
Normal file
53
SOURCES/0042-src-fix-netdev-family-device-name-parsing.patch
Normal file
@ -0,0 +1,53 @@
|
||||
From b4a5b3b3b0a46d9155d0e07e5ab226cf5697cd13 Mon Sep 17 00:00:00 2001
|
||||
From: Florian Westphal <fw@strlen.de>
|
||||
Date: Wed, 9 Jan 2019 23:26:05 +0100
|
||||
Subject: [PATCH] src: fix netdev family device name parsing
|
||||
|
||||
Should use accept/use quotes, else you can't use this with a device name
|
||||
that is shared with a key word, e.g. 'device vm'.
|
||||
|
||||
Signed-off-by: Florian Westphal <fw@strlen.de>
|
||||
Acked-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit b338244abc7f018d79a95657fff88eadee7e9f6b)
|
||||
|
||||
Conflicts:
|
||||
src/rule.c
|
||||
tests/shell/testcases/chains/dumps/0021prio_0.nft
|
||||
-> Context change due to missing commit c8a0e8c90e2d1
|
||||
("src: Set/print standard chain prios with textual names")
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/parser_bison.y | 2 +-
|
||||
src/rule.c | 2 +-
|
||||
2 files changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/src/parser_bison.y b/src/parser_bison.y
|
||||
index aabf16316ff8b..f86a754deea8e 100644
|
||||
--- a/src/parser_bison.y
|
||||
+++ b/src/parser_bison.y
|
||||
@@ -1793,7 +1793,7 @@ prio_spec : NUM { $$ = $1; }
|
||||
| DASH NUM { $$ = -$2; }
|
||||
;
|
||||
|
||||
-dev_spec : DEVICE STRING { $$ = $2; }
|
||||
+dev_spec : DEVICE string { $$ = $2; }
|
||||
| /* empty */ { $$ = NULL; }
|
||||
;
|
||||
|
||||
diff --git a/src/rule.c b/src/rule.c
|
||||
index c3a2e7cc464bb..0b494e4326be6 100644
|
||||
--- a/src/rule.c
|
||||
+++ b/src/rule.c
|
||||
@@ -773,7 +773,7 @@ static void chain_print_declaration(const struct chain *chain,
|
||||
nft_print(octx, "\t\ttype %s hook %s", chain->type,
|
||||
hooknum2str(chain->handle.family, chain->hooknum));
|
||||
if (chain->dev != NULL)
|
||||
- nft_print(octx, " device %s", chain->dev);
|
||||
+ nft_print(octx, " device \"%s\"", chain->dev);
|
||||
nft_print(octx, " priority %d; policy %s;\n",
|
||||
chain->priority, chain_policy2str(chain->policy));
|
||||
}
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,50 @@
|
||||
From 25d8f60537cd6a700b15941032a2b93066938af3 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Tue, 26 Feb 2019 22:13:38 +0100
|
||||
Subject: [PATCH] libnftables: Print errors before freeing commands
|
||||
|
||||
Commands may contain data printed by an error record, so make sure
|
||||
cmd_free() is not called before erec_print_list() has returned.
|
||||
|
||||
Fixes: 778de37d82e7b ("libnftables: Keep cmds list outside of parser_state")
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit a0da4c5bbf0d741fb815a977c945afe1b9a0739f)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/libnftables.c | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/src/libnftables.c b/src/libnftables.c
|
||||
index 640693df93755..5ca8236d8ba03 100644
|
||||
--- a/src/libnftables.c
|
||||
+++ b/src/libnftables.c
|
||||
@@ -457,11 +457,11 @@ int nft_run_cmd_from_buffer(struct nft_ctx *nft, char *buf, size_t buflen)
|
||||
if (nft_netlink(nft, &cmds, &msgs, nft->nf_sock) != 0)
|
||||
rc = -1;
|
||||
err:
|
||||
+ erec_print_list(&nft->output, &msgs, nft->debug_mask);
|
||||
list_for_each_entry_safe(cmd, next, &cmds, list) {
|
||||
list_del(&cmd->list);
|
||||
cmd_free(cmd);
|
||||
}
|
||||
- erec_print_list(&nft->output, &msgs, nft->debug_mask);
|
||||
iface_cache_release();
|
||||
if (nft->scanner) {
|
||||
scanner_destroy(nft->scanner);
|
||||
@@ -497,11 +497,11 @@ int nft_run_cmd_from_filename(struct nft_ctx *nft, const char *filename)
|
||||
if (nft_netlink(nft, &cmds, &msgs, nft->nf_sock) != 0)
|
||||
rc = -1;
|
||||
err:
|
||||
+ erec_print_list(&nft->output, &msgs, nft->debug_mask);
|
||||
list_for_each_entry_safe(cmd, next, &cmds, list) {
|
||||
list_del(&cmd->list);
|
||||
cmd_free(cmd);
|
||||
}
|
||||
- erec_print_list(&nft->output, &msgs, nft->debug_mask);
|
||||
iface_cache_release();
|
||||
if (nft->scanner) {
|
||||
scanner_destroy(nft->scanner);
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,60 @@
|
||||
From 9c9034a8cb88de406c64553d27f6471f99b9e06a Mon Sep 17 00:00:00 2001
|
||||
From: Florian Westphal <fw@strlen.de>
|
||||
Date: Mon, 4 Mar 2019 01:06:05 +0100
|
||||
Subject: [PATCH] segtree: fix crash when debug mode is active
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
We must set output_fp to sensible filep, else crash.
|
||||
|
||||
Reported-by: Václav Zindulka <vaclav.zindulka@tlapnet.cz>
|
||||
Signed-off-by: Florian Westphal <fw@strlen.de>
|
||||
(cherry picked from commit afd1ad6f68680c0f0a4afad7c67ddc8652948732)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/segtree.c | 7 +++++--
|
||||
1 file changed, 5 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/src/segtree.c b/src/segtree.c
|
||||
index 5685618b3724a..5a5a728912db7 100644
|
||||
--- a/src/segtree.c
|
||||
+++ b/src/segtree.c
|
||||
@@ -9,6 +9,7 @@
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
+#include <string.h>
|
||||
#include <inttypes.h>
|
||||
#include <arpa/inet.h>
|
||||
|
||||
@@ -67,8 +68,6 @@ struct elementary_interval {
|
||||
struct expr *expr;
|
||||
};
|
||||
|
||||
-static struct output_ctx debug_octx = {};
|
||||
-
|
||||
static void seg_tree_init(struct seg_tree *tree, const struct set *set,
|
||||
struct expr *init, unsigned int debug_mask)
|
||||
{
|
||||
@@ -570,6 +569,7 @@ int set_to_intervals(struct list_head *errs, struct set *set,
|
||||
bool merge)
|
||||
{
|
||||
struct elementary_interval *ei, *next;
|
||||
+ struct output_ctx debug_octx;
|
||||
struct seg_tree tree;
|
||||
LIST_HEAD(list);
|
||||
|
||||
@@ -590,6 +590,9 @@ int set_to_intervals(struct list_head *errs, struct set *set,
|
||||
}
|
||||
|
||||
if (segtree_debug(tree.debug_mask)) {
|
||||
+ memset(&debug_octx, 0, sizeof(debug_octx));
|
||||
+ debug_octx.output_fp = stderr;
|
||||
+ debug_octx.error_fp = stderr;
|
||||
expr_print(init, &debug_octx);
|
||||
pr_gmp_debug("\n");
|
||||
}
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,53 @@
|
||||
From 156f738087525eeb35e1225d8fb1e23da71dc58b Mon Sep 17 00:00:00 2001
|
||||
From: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Date: Thu, 14 Mar 2019 11:04:37 +0100
|
||||
Subject: [PATCH] parser_bison: no need for statement separator for ct object
|
||||
commands
|
||||
|
||||
Otherwise, this forces user to place a double semi-colon to skip a
|
||||
parser error in a multi-line commands:
|
||||
|
||||
# nft add "ct helper ip filter test { type \"ftp\" protocol tcp; };add rule filter test ct helper set \"ftp\""
|
||||
Error: syntax error, unexpected add, expecting end of file or newline or semicolon
|
||||
add ct helper ip filter test { type "ftp" protocol tcp; };add rule filter test ct helper set "ftp"
|
||||
^^^
|
||||
|
||||
Reported-by: Laura Garcia <nevola@gmail.com>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit d3cace26609253a8e3f20aeb8693f37d63897a7e)
|
||||
|
||||
Conflicts:
|
||||
src/parser_bison.y
|
||||
-> Some chunks dropped for missing commit c7c94802679cd
|
||||
("src: add ct timeout support")
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/parser_bison.y | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/src/parser_bison.y b/src/parser_bison.y
|
||||
index f86a754deea8e..99d60822790dc 100644
|
||||
--- a/src/parser_bison.y
|
||||
+++ b/src/parser_bison.y
|
||||
@@ -941,7 +941,7 @@ add_cmd : TABLE table_spec
|
||||
{
|
||||
$$ = cmd_alloc(CMD_ADD, CMD_OBJ_QUOTA, &$2, &@$, $3);
|
||||
}
|
||||
- | CT HELPER obj_spec ct_obj_alloc '{' ct_helper_block '}' stmt_separator
|
||||
+ | CT HELPER obj_spec ct_obj_alloc '{' ct_helper_block '}'
|
||||
{
|
||||
|
||||
$$ = cmd_alloc_obj_ct(CMD_ADD, NFT_OBJECT_CT_HELPER, &$3, &@$, $4);
|
||||
@@ -1023,7 +1023,7 @@ create_cmd : TABLE table_spec
|
||||
{
|
||||
$$ = cmd_alloc(CMD_CREATE, CMD_OBJ_QUOTA, &$2, &@$, $3);
|
||||
}
|
||||
- | CT HELPER obj_spec ct_obj_alloc '{' ct_helper_block '}' stmt_separator
|
||||
+ | CT HELPER obj_spec ct_obj_alloc '{' ct_helper_block '}'
|
||||
{
|
||||
$$ = cmd_alloc_obj_ct(CMD_CREATE, NFT_OBJECT_CT_HELPER, &$3, &@$, $4);
|
||||
}
|
||||
--
|
||||
2.21.0
|
||||
|
33
SOURCES/0046-ct-use-nft_print-instead-of-printf.patch
Normal file
33
SOURCES/0046-ct-use-nft_print-instead-of-printf.patch
Normal file
@ -0,0 +1,33 @@
|
||||
From 5d255c91b90a3480d084c50c6c61bb3dcd380ab7 Mon Sep 17 00:00:00 2001
|
||||
From: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Date: Fri, 5 Apr 2019 15:36:48 +0200
|
||||
Subject: [PATCH] ct: use nft_print() instead of printf()
|
||||
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit e07be57df3f5191d23b05c4fb06a94f3961beb13)
|
||||
|
||||
Conflicts:
|
||||
-> Change applied manually due to missing commit 4795a994e2810
|
||||
("src: use 'flow add' syntax")
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/ct.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/ct.c b/src/ct.c
|
||||
index 1d50382bab8b1..f019f5af3e182 100644
|
||||
--- a/src/ct.c
|
||||
+++ b/src/ct.c
|
||||
@@ -481,7 +481,7 @@ struct stmt *notrack_stmt_alloc(const struct location *loc)
|
||||
static void flow_offload_stmt_print(const struct stmt *stmt,
|
||||
struct output_ctx *octx)
|
||||
{
|
||||
- printf("flow offload @%s", stmt->flow.table_name);
|
||||
+ nft_print(octx, "flow offload @%s", stmt->flow.table_name);
|
||||
}
|
||||
|
||||
static const struct stmt_ops flow_offload_stmt_ops = {
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,41 @@
|
||||
From 539029b8aee913dd391da66ecd0ac9ff2adb12ff Mon Sep 17 00:00:00 2001
|
||||
From: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Date: Fri, 5 Apr 2019 14:09:56 +0200
|
||||
Subject: [PATCH] parser_bison: type_identifier string memleak
|
||||
|
||||
==6297== 24 bytes in 3 blocks are definitely lost in loss record 2 of 13
|
||||
==6297== at 0x4C2BBAF: malloc (vg_replace_malloc.c:299)
|
||||
==6297== by 0x56193B9: strdup (strdup.c:42)
|
||||
==6297== by 0x4E758BD: xstrdup (utils.c:75)
|
||||
==6297== by 0x4E7F9D3: nft_parse (parser_bison.y:1895)
|
||||
==6297== by 0x4E7AAE1: nft_parse_bison_filename (libnftables.c:370)
|
||||
==6297== by 0x4E7AAE1: nft_run_cmd_from_filename (libnftables.c:438)
|
||||
==6297== by 0x109A33: main (main.c:310)
|
||||
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 4d97f0a4eebd25d1639cd7c7ac2452445205a819)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/parser_bison.y | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/parser_bison.y b/src/parser_bison.y
|
||||
index 99d60822790dc..1dc83953ea858 100644
|
||||
--- a/src/parser_bison.y
|
||||
+++ b/src/parser_bison.y
|
||||
@@ -1681,11 +1681,11 @@ data_type_atom_expr : type_identifier
|
||||
if (dtype == NULL) {
|
||||
erec_queue(error(&@1, "unknown datatype %s", $1),
|
||||
state->msgs);
|
||||
- xfree($1);
|
||||
YYERROR;
|
||||
}
|
||||
$$ = constant_expr_alloc(&@1, dtype, dtype->byteorder,
|
||||
dtype->size, NULL);
|
||||
+ xfree($1);
|
||||
}
|
||||
;
|
||||
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,211 @@
|
||||
From 61e3dab3169af7add5fa131bb7414adf586d2997 Mon Sep 17 00:00:00 2001
|
||||
From: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Date: Fri, 5 Apr 2019 15:35:36 +0200
|
||||
Subject: [PATCH] src: missing destroy function in statement definitions
|
||||
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 4ac11b890fe870d1c066783bccc235e1922dd431)
|
||||
|
||||
Conflicts:
|
||||
-> Dropped changes to set_stmt_destroy() and map_stmt_destroy() due to
|
||||
missing commit a55ca1a24b7b2 ("src: integrate stateful expressions
|
||||
into sets and maps")
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/ct.c | 12 ++++++++++++
|
||||
src/exthdr.c | 7 +++++++
|
||||
src/meta.c | 6 ++++++
|
||||
src/payload.c | 7 +++++++
|
||||
src/statement.c | 19 +++++++++++++++++++
|
||||
src/xt.c | 1 +
|
||||
6 files changed, 52 insertions(+)
|
||||
|
||||
diff --git a/src/ct.c b/src/ct.c
|
||||
index f019f5af3e182..c2ca51494af60 100644
|
||||
--- a/src/ct.c
|
||||
+++ b/src/ct.c
|
||||
@@ -440,11 +440,17 @@ static void ct_stmt_print(const struct stmt *stmt, struct output_ctx *octx)
|
||||
expr_print(stmt->ct.expr, octx);
|
||||
}
|
||||
|
||||
+static void ct_stmt_destroy(struct stmt *stmt)
|
||||
+{
|
||||
+ expr_free(stmt->ct.expr);
|
||||
+}
|
||||
+
|
||||
static const struct stmt_ops ct_stmt_ops = {
|
||||
.type = STMT_CT,
|
||||
.name = "ct",
|
||||
.print = ct_stmt_print,
|
||||
.json = ct_stmt_json,
|
||||
+ .destroy = ct_stmt_destroy,
|
||||
};
|
||||
|
||||
struct stmt *ct_stmt_alloc(const struct location *loc, enum nft_ct_keys key,
|
||||
@@ -484,10 +490,16 @@ static void flow_offload_stmt_print(const struct stmt *stmt,
|
||||
nft_print(octx, "flow offload @%s", stmt->flow.table_name);
|
||||
}
|
||||
|
||||
+static void flow_offload_stmt_destroy(struct stmt *stmt)
|
||||
+{
|
||||
+ xfree(stmt->flow.table_name);
|
||||
+}
|
||||
+
|
||||
static const struct stmt_ops flow_offload_stmt_ops = {
|
||||
.type = STMT_FLOW_OFFLOAD,
|
||||
.name = "flow_offload",
|
||||
.print = flow_offload_stmt_print,
|
||||
+ .destroy = flow_offload_stmt_destroy,
|
||||
};
|
||||
|
||||
struct stmt *flow_offload_stmt_alloc(const struct location *loc,
|
||||
diff --git a/src/exthdr.c b/src/exthdr.c
|
||||
index cb0a58e8526a5..8602016f66477 100644
|
||||
--- a/src/exthdr.c
|
||||
+++ b/src/exthdr.c
|
||||
@@ -104,11 +104,18 @@ static void exthdr_stmt_print(const struct stmt *stmt, struct output_ctx *octx)
|
||||
expr_print(stmt->exthdr.val, octx);
|
||||
}
|
||||
|
||||
+static void exthdr_stmt_destroy(struct stmt *stmt)
|
||||
+{
|
||||
+ expr_free(stmt->exthdr.expr);
|
||||
+ expr_free(stmt->exthdr.val);
|
||||
+}
|
||||
+
|
||||
static const struct stmt_ops exthdr_stmt_ops = {
|
||||
.type = STMT_EXTHDR,
|
||||
.name = "exthdr",
|
||||
.print = exthdr_stmt_print,
|
||||
.json = exthdr_stmt_json,
|
||||
+ .destroy = exthdr_stmt_destroy,
|
||||
};
|
||||
|
||||
struct stmt *exthdr_stmt_alloc(const struct location *loc,
|
||||
diff --git a/src/meta.c b/src/meta.c
|
||||
index ff0cb122d7dfa..c1021febdefd4 100644
|
||||
--- a/src/meta.c
|
||||
+++ b/src/meta.c
|
||||
@@ -604,11 +604,17 @@ static void meta_stmt_print(const struct stmt *stmt, struct output_ctx *octx)
|
||||
expr_print(stmt->meta.expr, octx);
|
||||
}
|
||||
|
||||
+static void meta_stmt_destroy(struct stmt *stmt)
|
||||
+{
|
||||
+ expr_free(stmt->meta.expr);
|
||||
+}
|
||||
+
|
||||
static const struct stmt_ops meta_stmt_ops = {
|
||||
.type = STMT_META,
|
||||
.name = "meta",
|
||||
.print = meta_stmt_print,
|
||||
.json = meta_stmt_json,
|
||||
+ .destroy = meta_stmt_destroy,
|
||||
};
|
||||
|
||||
struct stmt *meta_stmt_alloc(const struct location *loc, enum nft_meta_keys key,
|
||||
diff --git a/src/payload.c b/src/payload.c
|
||||
index 6517686cbfba5..42b055360848d 100644
|
||||
--- a/src/payload.c
|
||||
+++ b/src/payload.c
|
||||
@@ -189,11 +189,18 @@ static void payload_stmt_print(const struct stmt *stmt, struct output_ctx *octx)
|
||||
expr_print(stmt->payload.val, octx);
|
||||
}
|
||||
|
||||
+static void payload_stmt_destroy(struct stmt *stmt)
|
||||
+{
|
||||
+ expr_free(stmt->payload.expr);
|
||||
+ expr_free(stmt->payload.val);
|
||||
+}
|
||||
+
|
||||
static const struct stmt_ops payload_stmt_ops = {
|
||||
.type = STMT_PAYLOAD,
|
||||
.name = "payload",
|
||||
.print = payload_stmt_print,
|
||||
.json = payload_stmt_json,
|
||||
+ .destroy = payload_stmt_destroy,
|
||||
};
|
||||
|
||||
struct stmt *payload_stmt_alloc(const struct location *loc,
|
||||
diff --git a/src/statement.c b/src/statement.c
|
||||
index e9c9d648b0092..1b889e77cca20 100644
|
||||
--- a/src/statement.c
|
||||
+++ b/src/statement.c
|
||||
@@ -134,6 +134,7 @@ static void meter_stmt_destroy(struct stmt *stmt)
|
||||
expr_free(stmt->meter.key);
|
||||
expr_free(stmt->meter.set);
|
||||
stmt_free(stmt->meter.stmt);
|
||||
+ xfree(stmt->meter.name);
|
||||
}
|
||||
|
||||
static const struct stmt_ops meter_stmt_ops = {
|
||||
@@ -226,11 +227,17 @@ static void objref_stmt_print(const struct stmt *stmt, struct output_ctx *octx)
|
||||
expr_print(stmt->objref.expr, octx);
|
||||
}
|
||||
|
||||
+static void objref_stmt_destroy(struct stmt *stmt)
|
||||
+{
|
||||
+ expr_free(stmt->objref.expr);
|
||||
+}
|
||||
+
|
||||
static const struct stmt_ops objref_stmt_ops = {
|
||||
.type = STMT_OBJREF,
|
||||
.name = "objref",
|
||||
.print = objref_stmt_print,
|
||||
.json = objref_stmt_json,
|
||||
+ .destroy = objref_stmt_destroy,
|
||||
};
|
||||
|
||||
struct stmt *objref_stmt_alloc(const struct location *loc)
|
||||
@@ -435,11 +442,17 @@ static void queue_stmt_print(const struct stmt *stmt, struct output_ctx *octx)
|
||||
|
||||
}
|
||||
|
||||
+static void queue_stmt_destroy(struct stmt *stmt)
|
||||
+{
|
||||
+ expr_free(stmt->queue.queue);
|
||||
+}
|
||||
+
|
||||
static const struct stmt_ops queue_stmt_ops = {
|
||||
.type = STMT_QUEUE,
|
||||
.name = "queue",
|
||||
.print = queue_stmt_print,
|
||||
.json = queue_stmt_json,
|
||||
+ .destroy = queue_stmt_destroy,
|
||||
};
|
||||
|
||||
struct stmt *queue_stmt_alloc(const struct location *loc)
|
||||
@@ -511,11 +524,17 @@ static void reject_stmt_print(const struct stmt *stmt, struct output_ctx *octx)
|
||||
}
|
||||
}
|
||||
|
||||
+static void reject_stmt_destroy(struct stmt *stmt)
|
||||
+{
|
||||
+ expr_free(stmt->reject.expr);
|
||||
+}
|
||||
+
|
||||
static const struct stmt_ops reject_stmt_ops = {
|
||||
.type = STMT_REJECT,
|
||||
.name = "reject",
|
||||
.print = reject_stmt_print,
|
||||
.json = reject_stmt_json,
|
||||
+ .destroy = reject_stmt_destroy,
|
||||
};
|
||||
|
||||
struct stmt *reject_stmt_alloc(const struct location *loc)
|
||||
diff --git a/src/xt.c b/src/xt.c
|
||||
index 74763d58cafd7..298a94d51e8a0 100644
|
||||
--- a/src/xt.c
|
||||
+++ b/src/xt.c
|
||||
@@ -92,6 +92,7 @@ void xt_stmt_release(const struct stmt *stmt)
|
||||
break;
|
||||
}
|
||||
xfree(stmt->xt.entry);
|
||||
+ xfree(stmt->xt.name);
|
||||
}
|
||||
|
||||
static void *xt_entry_alloc(struct xt_stmt *xt, uint32_t af)
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,37 @@
|
||||
From 62e3a8f9d4246bc491d0b4aa11b250ed8ad06ecc Mon Sep 17 00:00:00 2001
|
||||
From: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Date: Wed, 8 Aug 2018 21:52:50 +0200
|
||||
Subject: [PATCH] tests: shell: validate too deep jumpstack from basechain
|
||||
|
||||
If there is no basechain, the validation is never exercised.
|
||||
|
||||
Too deep nested chains are fine as long as they are not connected to a
|
||||
basechain.
|
||||
|
||||
Update test to add a basechain so we exercise validation.
|
||||
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 760a8bab07ade570e589bc8da36935776d225d95)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
tests/shell/testcases/chains/0002jumps_1 | 4 +++-
|
||||
1 file changed, 3 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/tests/shell/testcases/chains/0002jumps_1 b/tests/shell/testcases/chains/0002jumps_1
|
||||
index 0cc89288670ed..4d163b05fe1b9 100755
|
||||
--- a/tests/shell/testcases/chains/0002jumps_1
|
||||
+++ b/tests/shell/testcases/chains/0002jumps_1
|
||||
@@ -6,7 +6,9 @@ MAX_JUMPS=16
|
||||
|
||||
$NFT add table t
|
||||
|
||||
-for i in $(seq 1 $MAX_JUMPS)
|
||||
+$NFT add chain t c1 { type filter hook input priority 0\; }
|
||||
+
|
||||
+for i in $(seq 2 $MAX_JUMPS)
|
||||
do
|
||||
$NFT add chain t c${i}
|
||||
done
|
||||
--
|
||||
2.21.0
|
||||
|
367
SOURCES/0050-netlink-remove-markup-json-parsing-code.patch
Normal file
367
SOURCES/0050-netlink-remove-markup-json-parsing-code.patch
Normal file
@ -0,0 +1,367 @@
|
||||
From fbccf77429c4f1fccd48a201369402e33bea91c6 Mon Sep 17 00:00:00 2001
|
||||
From: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Date: Wed, 26 Sep 2018 16:23:19 +0200
|
||||
Subject: [PATCH] netlink: remove markup json parsing code
|
||||
|
||||
We have better json support these days, remove libnftnl json support.
|
||||
|
||||
While at it, remove test file for this too.
|
||||
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 276c452e47c5e22b3af06a051aa2908521aeba66)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/netlink.c | 276 +-----------------
|
||||
tests/shell/testcases/import/vm_json_import_0 | 53 ----
|
||||
2 files changed, 2 insertions(+), 327 deletions(-)
|
||||
delete mode 100755 tests/shell/testcases/import/vm_json_import_0
|
||||
|
||||
diff --git a/src/netlink.c b/src/netlink.c
|
||||
index c178be3c9ee26..0509a06b3d2b3 100644
|
||||
--- a/src/netlink.c
|
||||
+++ b/src/netlink.c
|
||||
@@ -1970,280 +1970,8 @@ int netlink_events_trace_cb(const struct nlmsghdr *nlh, int type,
|
||||
return MNL_CB_OK;
|
||||
}
|
||||
|
||||
-static int netlink_markup_setelems(const struct nftnl_parse_ctx *ctx)
|
||||
-{
|
||||
- const struct ruleset_parse *rp;
|
||||
- struct nftnl_set *set;
|
||||
- uint32_t cmd;
|
||||
- int ret = -1;
|
||||
-
|
||||
- set = nftnl_ruleset_ctx_get(ctx, NFTNL_RULESET_CTX_SET);
|
||||
- rp = nftnl_ruleset_ctx_get(ctx, NFTNL_RULESET_CTX_DATA);
|
||||
-
|
||||
- cmd = nftnl_ruleset_ctx_get_u32(ctx, NFTNL_RULESET_CTX_CMD);
|
||||
- switch (cmd) {
|
||||
- case NFTNL_CMD_ADD:
|
||||
- ret = mnl_nft_setelem_batch_add(set, rp->nl_ctx->batch,
|
||||
- 0, rp->nl_ctx->seqnum);
|
||||
- break;
|
||||
- case NFTNL_CMD_DELETE:
|
||||
- ret = mnl_nft_setelem_batch_del(set, rp->nl_ctx->batch,
|
||||
- 0, rp->nl_ctx->seqnum);
|
||||
- break;
|
||||
- default:
|
||||
- errno = EOPNOTSUPP;
|
||||
- break;
|
||||
- }
|
||||
-
|
||||
- return ret;
|
||||
-}
|
||||
-
|
||||
-static int netlink_markup_set(const struct nftnl_parse_ctx *ctx)
|
||||
-{
|
||||
- const struct ruleset_parse *rp;
|
||||
- struct nftnl_set *set;
|
||||
- uint32_t cmd;
|
||||
- int ret = -1;
|
||||
-
|
||||
- set = nftnl_ruleset_ctx_get(ctx, NFTNL_RULESET_CTX_SET);
|
||||
- rp = nftnl_ruleset_ctx_get(ctx, NFTNL_RULESET_CTX_DATA);
|
||||
-
|
||||
- cmd = nftnl_ruleset_ctx_get_u32(ctx, NFTNL_RULESET_CTX_CMD);
|
||||
- switch (cmd) {
|
||||
- case NFTNL_CMD_ADD:
|
||||
- ret = mnl_nft_set_batch_add(set, rp->nl_ctx->batch, NLM_F_EXCL,
|
||||
- rp->nl_ctx->seqnum);
|
||||
- break;
|
||||
- case NFTNL_CMD_DELETE:
|
||||
- ret = mnl_nft_set_batch_del(set, rp->nl_ctx->batch,
|
||||
- 0, rp->nl_ctx->seqnum);
|
||||
- break;
|
||||
- default:
|
||||
- errno = EOPNOTSUPP;
|
||||
- break;
|
||||
- }
|
||||
-
|
||||
- if (ret < 0)
|
||||
- return ret;
|
||||
-
|
||||
- return netlink_markup_setelems(ctx);
|
||||
-}
|
||||
-
|
||||
-static int netlink_markup_build_rule(const struct nftnl_parse_ctx *ctx,
|
||||
- uint32_t cmd, struct nftnl_rule *rule)
|
||||
-{
|
||||
- const struct ruleset_parse *rp;
|
||||
- uint32_t nl_flags;
|
||||
- int ret = -1;
|
||||
-
|
||||
- rp = nftnl_ruleset_ctx_get(ctx, NFTNL_RULESET_CTX_DATA);
|
||||
-
|
||||
- switch (cmd) {
|
||||
- case NFTNL_CMD_ADD:
|
||||
- nl_flags = NLM_F_APPEND | NLM_F_CREATE;
|
||||
- nftnl_rule_unset(rule, NFTNL_RULE_HANDLE);
|
||||
- ret = mnl_nft_rule_batch_add(rule, rp->nl_ctx->batch, nl_flags,
|
||||
- rp->nl_ctx->seqnum);
|
||||
- break;
|
||||
- case NFTNL_CMD_DELETE:
|
||||
- ret = mnl_nft_rule_batch_del(rule, rp->nl_ctx->batch,
|
||||
- 0, rp->nl_ctx->seqnum);
|
||||
- break;
|
||||
- case NFTNL_CMD_REPLACE:
|
||||
- nl_flags = NLM_F_REPLACE;
|
||||
- ret = mnl_nft_rule_batch_add(rule, rp->nl_ctx->batch, nl_flags,
|
||||
- rp->nl_ctx->seqnum);
|
||||
- break;
|
||||
- case NFTNL_CMD_INSERT:
|
||||
- nl_flags = NLM_F_CREATE;
|
||||
- nftnl_rule_unset(rule, NFTNL_RULE_HANDLE);
|
||||
- ret = mnl_nft_rule_batch_add(rule, rp->nl_ctx->batch, nl_flags,
|
||||
- rp->nl_ctx->seqnum);
|
||||
- break;
|
||||
- default:
|
||||
- errno = EOPNOTSUPP;
|
||||
- break;
|
||||
- }
|
||||
-
|
||||
- return ret;
|
||||
-
|
||||
-}
|
||||
-
|
||||
-static int netlink_markup_rule(const struct nftnl_parse_ctx *ctx)
|
||||
-{
|
||||
- struct nftnl_rule *rule;
|
||||
- uint32_t cmd;
|
||||
-
|
||||
- cmd = nftnl_ruleset_ctx_get_u32(ctx, NFTNL_RULESET_CTX_CMD);
|
||||
- rule = nftnl_ruleset_ctx_get(ctx, NFTNL_RULESET_CTX_RULE);
|
||||
-
|
||||
- return netlink_markup_build_rule(ctx, cmd, rule);
|
||||
-}
|
||||
-
|
||||
-static int netlink_markup_build_flush(const struct nftnl_parse_ctx *ctx)
|
||||
-{
|
||||
- struct nftnl_rule *rule;
|
||||
- struct nftnl_table *table;
|
||||
- struct nftnl_chain *chain;
|
||||
- const char *table_get_name, *table_get_family;
|
||||
- const char *chain_get_table, *chain_get_name, *chain_get_family;
|
||||
- uint32_t type;
|
||||
- int ret = -1;
|
||||
-
|
||||
- rule = nftnl_rule_alloc();
|
||||
- if (rule == NULL)
|
||||
- return -1;
|
||||
-
|
||||
- type = nftnl_ruleset_ctx_get_u32(ctx, NFTNL_RULESET_CTX_TYPE);
|
||||
- switch (type) {
|
||||
- case NFTNL_RULESET_TABLE:
|
||||
- table = nftnl_ruleset_ctx_get(ctx, NFTNL_RULESET_CTX_TABLE);
|
||||
- table_get_name = nftnl_table_get(table, NFTNL_TABLE_NAME);
|
||||
- table_get_family = nftnl_table_get(table, NFTNL_TABLE_FAMILY);
|
||||
-
|
||||
- nftnl_rule_set(rule, NFTNL_RULE_TABLE, table_get_name);
|
||||
- nftnl_rule_set(rule, NFTNL_RULE_FAMILY, table_get_family);
|
||||
- break;
|
||||
- case NFTNL_RULESET_CHAIN:
|
||||
- chain = nftnl_ruleset_ctx_get(ctx, NFTNL_RULESET_CTX_CHAIN);
|
||||
- chain_get_table = nftnl_chain_get(chain, NFTNL_CHAIN_TABLE);
|
||||
- chain_get_name = nftnl_chain_get(chain, NFTNL_CHAIN_NAME);
|
||||
- chain_get_family = nftnl_chain_get(chain, NFTNL_TABLE_FAMILY);
|
||||
-
|
||||
- nftnl_rule_set(rule, NFTNL_RULE_TABLE, chain_get_table);
|
||||
- nftnl_rule_set(rule, NFTNL_RULE_CHAIN, chain_get_name);
|
||||
- nftnl_rule_set(rule, NFTNL_RULE_FAMILY, chain_get_family);
|
||||
- break;
|
||||
- default:
|
||||
- errno = EOPNOTSUPP;
|
||||
- goto err;
|
||||
- }
|
||||
-
|
||||
- ret = netlink_markup_build_rule(ctx, NFTNL_CMD_DELETE, rule);
|
||||
-err:
|
||||
- nftnl_rule_free(rule);
|
||||
- return ret;
|
||||
-}
|
||||
-
|
||||
-static int netlink_markup_chain(const struct nftnl_parse_ctx *ctx)
|
||||
-{
|
||||
- const struct ruleset_parse *rp;
|
||||
- struct nftnl_chain *chain;
|
||||
- uint32_t cmd;
|
||||
- int ret = -1;
|
||||
-
|
||||
- chain = nftnl_ruleset_ctx_get(ctx, NFTNL_RULESET_CTX_CHAIN);
|
||||
- rp = nftnl_ruleset_ctx_get(ctx, NFTNL_RULESET_CTX_DATA);
|
||||
-
|
||||
- nftnl_chain_unset(chain, NFTNL_CHAIN_HANDLE);
|
||||
-
|
||||
- cmd = nftnl_ruleset_ctx_get_u32(ctx, NFTNL_RULESET_CTX_CMD);
|
||||
- switch (cmd) {
|
||||
- case NFTNL_CMD_ADD:
|
||||
- ret = mnl_nft_chain_batch_add(chain, rp->nl_ctx->batch,
|
||||
- 0, rp->nl_ctx->seqnum);
|
||||
- break;
|
||||
- case NFTNL_CMD_DELETE:
|
||||
- ret = mnl_nft_chain_batch_del(chain, rp->nl_ctx->batch,
|
||||
- 0, rp->nl_ctx->seqnum);
|
||||
- break;
|
||||
- case NFTNL_CMD_FLUSH:
|
||||
- ret = netlink_markup_build_flush(ctx);
|
||||
- break;
|
||||
- default:
|
||||
- errno = EOPNOTSUPP;
|
||||
- break;
|
||||
- }
|
||||
-
|
||||
- return ret;
|
||||
-}
|
||||
-
|
||||
-
|
||||
-static int netlink_markup_build_table(const struct nftnl_parse_ctx *ctx,
|
||||
- uint32_t cmd, struct nftnl_table *table)
|
||||
-{
|
||||
- struct ruleset_parse *rp;
|
||||
- int ret = -1;
|
||||
-
|
||||
- rp = nftnl_ruleset_ctx_get(ctx, NFTNL_RULESET_CTX_DATA);
|
||||
-
|
||||
- switch (cmd) {
|
||||
- case NFTNL_CMD_ADD:
|
||||
- ret = mnl_nft_table_batch_add(table, rp->nl_ctx->batch,
|
||||
- 0, rp->nl_ctx->seqnum);
|
||||
- break;
|
||||
- case NFTNL_CMD_DELETE:
|
||||
- ret = mnl_nft_table_batch_del(table, rp->nl_ctx->batch,
|
||||
- 0, rp->nl_ctx->seqnum);
|
||||
- break;
|
||||
- case NFTNL_CMD_FLUSH:
|
||||
- ret = netlink_markup_build_flush(ctx);
|
||||
- break;
|
||||
- default:
|
||||
- errno = EOPNOTSUPP;
|
||||
- break;
|
||||
- }
|
||||
-
|
||||
- return ret;
|
||||
-}
|
||||
-
|
||||
-static int netlink_markup_table(const struct nftnl_parse_ctx *ctx)
|
||||
-{
|
||||
- struct nftnl_table *table;
|
||||
- uint32_t cmd;
|
||||
-
|
||||
- cmd = nftnl_ruleset_ctx_get_u32(ctx, NFTNL_RULESET_CTX_CMD);
|
||||
- table = nftnl_ruleset_ctx_get(ctx, NFTNL_RULESET_CTX_TABLE);
|
||||
-
|
||||
- return netlink_markup_build_table(ctx, cmd, table);
|
||||
-}
|
||||
-
|
||||
-static int netlink_markup_flush(const struct nftnl_parse_ctx *ctx)
|
||||
-{
|
||||
- struct nftnl_table *table;
|
||||
- int ret;
|
||||
-
|
||||
- table = nftnl_table_alloc();
|
||||
- if (table == NULL)
|
||||
- return -1;
|
||||
-
|
||||
- ret = netlink_markup_build_table(ctx, NFTNL_CMD_DELETE, table);
|
||||
- nftnl_table_free(table);
|
||||
-
|
||||
- return ret;
|
||||
-}
|
||||
-
|
||||
int netlink_markup_parse_cb(const struct nftnl_parse_ctx *ctx)
|
||||
{
|
||||
- uint32_t type;
|
||||
- int ret = -1;
|
||||
-
|
||||
- type = nftnl_ruleset_ctx_get_u32(ctx, NFTNL_RULESET_CTX_TYPE);
|
||||
- switch (type) {
|
||||
- case NFTNL_RULESET_TABLE:
|
||||
- ret = netlink_markup_table(ctx);
|
||||
- break;
|
||||
- case NFTNL_RULESET_CHAIN:
|
||||
- ret = netlink_markup_chain(ctx);
|
||||
- break;
|
||||
- case NFTNL_RULESET_RULE:
|
||||
- ret = netlink_markup_rule(ctx);
|
||||
- break;
|
||||
- case NFTNL_RULESET_SET:
|
||||
- ret = netlink_markup_set(ctx);
|
||||
- break;
|
||||
- case NFTNL_RULESET_SET_ELEMS:
|
||||
- ret = netlink_markup_setelems(ctx);
|
||||
- break;
|
||||
- case NFTNL_RULESET_RULESET:
|
||||
- ret = netlink_markup_flush(ctx);
|
||||
- break;
|
||||
- default:
|
||||
- errno = EOPNOTSUPP;
|
||||
- break;
|
||||
- }
|
||||
-
|
||||
- nftnl_ruleset_ctx_free(ctx);
|
||||
-
|
||||
- return ret;
|
||||
+ errno = EOPNOTSUPP;
|
||||
+ return -1;
|
||||
}
|
||||
diff --git a/tests/shell/testcases/import/vm_json_import_0 b/tests/shell/testcases/import/vm_json_import_0
|
||||
deleted file mode 100755
|
||||
index 546ccf7ab490f..0000000000000
|
||||
--- a/tests/shell/testcases/import/vm_json_import_0
|
||||
+++ /dev/null
|
||||
@@ -1,53 +0,0 @@
|
||||
-#!/bin/bash
|
||||
-
|
||||
-RULESET="table ip mangle {
|
||||
- set blackhole {
|
||||
- type ipv4_addr
|
||||
- elements = { 192.168.1.4, 192.168.1.5 }
|
||||
- }
|
||||
-
|
||||
- chain prerouting {
|
||||
- type filter hook prerouting priority 0; policy accept;
|
||||
- tcp dport { ssh, http } accept
|
||||
- ip saddr @blackhole drop
|
||||
- icmp type echo-request accept
|
||||
- iifname \"lo\" accept
|
||||
- icmp type echo-request counter packets 0 bytes 0
|
||||
- ct state established,related accept
|
||||
- tcp flags != syn counter packets 7 bytes 841
|
||||
- ip saddr 192.168.1.100 ip daddr 192.168.1.1 counter packets 0 bytes 0
|
||||
- }
|
||||
-}
|
||||
-table arp x {
|
||||
- chain y {
|
||||
- arp htype 22
|
||||
- arp ptype ip
|
||||
- arp operation != rrequest
|
||||
- arp operation { request, reply, rrequest, rreply, inrequest, inreply, nak }
|
||||
- arp hlen 33-45
|
||||
- }
|
||||
-}
|
||||
-table bridge x {
|
||||
- chain y {
|
||||
- type filter hook input priority 0; policy accept;
|
||||
- vlan id 4094
|
||||
- vlan id 4094 vlan cfi 0
|
||||
- vlan id 1 ip saddr 10.0.0.0/23 udp dport domain
|
||||
- }
|
||||
-}
|
||||
-table ip6 x {
|
||||
- chain y {
|
||||
- type nat hook postrouting priority 0; policy accept;
|
||||
- icmpv6 id 33-45
|
||||
- ip6 daddr fe00::1-fe00::200 udp dport domain counter packets 0 bytes 0
|
||||
- meta l4proto tcp masquerade to :1024
|
||||
- iifname \"wlan0\" ct state established,new tcp dport vmap { ssh : drop, 222 : drop } masquerade
|
||||
- tcp dport ssh ip6 daddr 1::2 ether saddr 00:0f:54:0c:11:04 accept
|
||||
- ip6 daddr fe00::1-fe00::200 udp dport domain counter packets 0 bytes 0 masquerade
|
||||
- }
|
||||
-}"
|
||||
-
|
||||
-$NFT -f - <<< "$RULESET"
|
||||
-RULESET_JSON=$($NFT export vm json)
|
||||
-$NFT flush ruleset
|
||||
-$NFT import vm json <<< "$RULESET_JSON"
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,36 @@
|
||||
From a06d879ceba6b1ae7b541c223701435a4d1394e1 Mon Sep 17 00:00:00 2001
|
||||
From: Florian Westphal <fw@strlen.de>
|
||||
Date: Wed, 4 Jul 2018 15:10:12 +0200
|
||||
Subject: [PATCH] rule: limit: don't print default burst value
|
||||
|
||||
limit http-traffic { rate 1/second } gets printed as
|
||||
limit http-traffic { rate 1/second burst 5 packets }
|
||||
|
||||
caused tests/shell/run-tests.sh tests/shell/testcases/sets/0026named_limit_0
|
||||
|
||||
to return 'DUMP FAIL'.
|
||||
|
||||
Signed-off-by: Florian Westphal <fw@strlen.de>
|
||||
Acked-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 1dc9be8445265498a2db534ae254260b6e7dd75b)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/rule.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/rule.c b/src/rule.c
|
||||
index 0b494e4326be6..850b00cfc9874 100644
|
||||
--- a/src/rule.c
|
||||
+++ b/src/rule.c
|
||||
@@ -1472,7 +1472,7 @@ static void obj_print_data(const struct obj *obj,
|
||||
nft_print(octx, "rate %s%" PRIu64 "/%s",
|
||||
inv ? "over " : "", obj->limit.rate,
|
||||
get_unit(obj->limit.unit));
|
||||
- if (obj->limit.burst > 0)
|
||||
+ if (obj->limit.burst > 0 && obj->limit.burst != 5)
|
||||
nft_print(octx, " burst %u packets",
|
||||
obj->limit.burst);
|
||||
break;
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,97 @@
|
||||
From 9eb22ba5e195c97ca7a1e2baac7fec68b3f3b310 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Wed, 29 Aug 2018 16:23:23 +0200
|
||||
Subject: [PATCH] JSON: Review verdict statement and expression
|
||||
|
||||
Change jump and goto verdicts to become extensible by dedicating an
|
||||
object for the target parameter.
|
||||
|
||||
While being at it, drop break and queue verdict expressions since they
|
||||
don't seem to exist, no idea where I got those from in the first place.
|
||||
For queue, there is a dedicated expression at least.
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 8125785d5c5d35ec275e508166091d5472748bc1)
|
||||
|
||||
Conflicts:
|
||||
doc/libnftables-json.adoc
|
||||
-> Dropped changes to non-existent libnftables JSON API documentation.
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/json.c | 5 ++++-
|
||||
src/parser_json.c | 10 ++++------
|
||||
tests/py/nft-test.py | 4 +++-
|
||||
3 files changed, 11 insertions(+), 8 deletions(-)
|
||||
|
||||
diff --git a/src/json.c b/src/json.c
|
||||
index f74afd5a7292e..fad2a83624062 100644
|
||||
--- a/src/json.c
|
||||
+++ b/src/json.c
|
||||
@@ -651,7 +651,10 @@ json_t *verdict_expr_json(const struct expr *expr, struct output_ctx *octx)
|
||||
BUG("Unknown verdict %d.", expr->verdict);
|
||||
return NULL;
|
||||
}
|
||||
- return json_pack("{s:o}", name, chain ? json_string(chain) : json_null());
|
||||
+ if (chain)
|
||||
+ return json_pack("{s:{s:s}}", name, "target", chain);
|
||||
+ else
|
||||
+ return json_pack("{s:n}", name);
|
||||
}
|
||||
|
||||
json_t *rt_expr_json(const struct expr *expr, struct output_ctx *octx)
|
||||
diff --git a/src/parser_json.c b/src/parser_json.c
|
||||
index 1e3688b2dc1cd..e3f20ae51c764 100644
|
||||
--- a/src/parser_json.c
|
||||
+++ b/src/parser_json.c
|
||||
@@ -1008,27 +1008,25 @@ static struct expr *json_parse_verdict_expr(struct json_ctx *ctx,
|
||||
bool chain;
|
||||
} verdict_tbl[] = {
|
||||
{ NFT_CONTINUE, "continue", false },
|
||||
- { NFT_BREAK, "break", false },
|
||||
{ NFT_JUMP, "jump", true },
|
||||
{ NFT_GOTO, "goto", true },
|
||||
{ NFT_RETURN, "return", false },
|
||||
{ NF_ACCEPT, "accept", false },
|
||||
{ NF_DROP, "drop", false },
|
||||
- { NF_QUEUE, "queue", false },
|
||||
};
|
||||
const char *chain = NULL;
|
||||
unsigned int i;
|
||||
|
||||
- json_unpack(root, "s", &chain);
|
||||
+ json_unpack(root, "{s:s}", "target", &chain);
|
||||
|
||||
for (i = 0; i < array_size(verdict_tbl); i++) {
|
||||
if (strcmp(type, verdict_tbl[i].name))
|
||||
continue;
|
||||
|
||||
- if (verdict_tbl[i].chain && !chain) {
|
||||
- json_error(ctx, "Verdict %s needs chain argument.", type);
|
||||
+ if (verdict_tbl[i].chain &&
|
||||
+ json_unpack_err(ctx, root, "{s:s}", "target", &chain))
|
||||
return NULL;
|
||||
- }
|
||||
+
|
||||
return verdict_expr_alloc(int_loc,
|
||||
verdict_tbl[i].verdict, chain);
|
||||
}
|
||||
diff --git a/tests/py/nft-test.py b/tests/py/nft-test.py
|
||||
index c02294ac54562..08569fbe0de44 100755
|
||||
--- a/tests/py/nft-test.py
|
||||
+++ b/tests/py/nft-test.py
|
||||
@@ -277,7 +277,9 @@ def chain_create(chain, table, filename):
|
||||
print_error(reason, filename, chain.lineno)
|
||||
return -1
|
||||
|
||||
- cmd = "add chain %s %s { %s; }" % (table, chain, chain.config)
|
||||
+ cmd = "add chain %s %s" % (table, chain)
|
||||
+ if chain.config:
|
||||
+ cmd += " { %s; }" % chain.config
|
||||
|
||||
ret = execute_cmd(cmd, filename, chain.lineno)
|
||||
if ret != 0:
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,35 @@
|
||||
From 5a6bcfe9e3d323e9503383601234fde3f3cf4a0b Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Tue, 26 Feb 2019 22:13:39 +0100
|
||||
Subject: [PATCH] parser_json: Duplicate chain name when parsing jump verdict
|
||||
|
||||
Since verdict expression frees the chain name, pass a newly allocated
|
||||
string to it. Otherwise double free happens because json_decref() frees
|
||||
the string property value as well.
|
||||
|
||||
Fixes: d1057a5feb5fd ("JSON: Simplify verdict statement parsing")
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit dc6a6e83b47fc7078a061350cd2b111cb2adec14)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/parser_json.c | 3 ++-
|
||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/parser_json.c b/src/parser_json.c
|
||||
index e3f20ae51c764..688fac1bddde2 100644
|
||||
--- a/src/parser_json.c
|
||||
+++ b/src/parser_json.c
|
||||
@@ -1028,7 +1028,8 @@ static struct expr *json_parse_verdict_expr(struct json_ctx *ctx,
|
||||
return NULL;
|
||||
|
||||
return verdict_expr_alloc(int_loc,
|
||||
- verdict_tbl[i].verdict, chain);
|
||||
+ verdict_tbl[i].verdict,
|
||||
+ chain ? xstrdup(chain) : NULL);
|
||||
}
|
||||
json_error(ctx, "Unknown verdict '%s'.", type);
|
||||
return NULL;
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,324 @@
|
||||
From b5852ee30b4ee854c81bf93c1c7b4ec5b0dd7e3f Mon Sep 17 00:00:00 2001
|
||||
From: Fernando Fernandez Mancera <ffmancera@riseup.net>
|
||||
Date: Fri, 24 May 2019 15:06:47 +0200
|
||||
Subject: [PATCH] src: Introduce chain_expr in jump and goto statements
|
||||
|
||||
Introduce expressions as a chain in jump and goto statements.
|
||||
This is going to be used to support variables as a chain in the
|
||||
following patches.
|
||||
|
||||
Signed-off-by: Fernando Fernandez Mancera <ffmancera@riseup.net>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit f1e8a129ee428419a0d5a45a2f410e8e4008d109)
|
||||
|
||||
Conflicts:
|
||||
-> Adjust for missing commit 72931553828af
|
||||
("src: expr: add expression etype")
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
include/expression.h | 4 ++--
|
||||
src/datatype.c | 22 ++++++++++++++++++++--
|
||||
src/evaluate.c | 4 ++++
|
||||
src/expression.c | 12 ++++++------
|
||||
src/json.c | 6 +++---
|
||||
src/netlink.c | 26 +++++++++++++++++++++-----
|
||||
src/parser_bison.y | 17 +++++++++++++----
|
||||
src/parser_json.c | 9 +++++++--
|
||||
8 files changed, 76 insertions(+), 24 deletions(-)
|
||||
|
||||
diff --git a/include/expression.h b/include/expression.h
|
||||
index 885e9c43bb77f..5f814fdb065fe 100644
|
||||
--- a/include/expression.h
|
||||
+++ b/include/expression.h
|
||||
@@ -233,7 +233,7 @@ struct expr {
|
||||
struct {
|
||||
/* EXPR_VERDICT */
|
||||
int verdict;
|
||||
- const char *chain;
|
||||
+ struct expr *chain;
|
||||
};
|
||||
struct {
|
||||
/* EXPR_VALUE */
|
||||
@@ -385,7 +385,7 @@ extern void relational_expr_pctx_update(struct proto_ctx *ctx,
|
||||
const struct expr *expr);
|
||||
|
||||
extern struct expr *verdict_expr_alloc(const struct location *loc,
|
||||
- int verdict, const char *chain);
|
||||
+ int verdict, struct expr *chain);
|
||||
|
||||
extern struct expr *symbol_expr_alloc(const struct location *loc,
|
||||
enum symbol_types type, struct scope *scope,
|
||||
diff --git a/src/datatype.c b/src/datatype.c
|
||||
index 209044539bb84..f7defa37ff196 100644
|
||||
--- a/src/datatype.c
|
||||
+++ b/src/datatype.c
|
||||
@@ -253,6 +253,8 @@ const struct datatype invalid_type = {
|
||||
|
||||
static void verdict_type_print(const struct expr *expr, struct output_ctx *octx)
|
||||
{
|
||||
+ char chain[NFT_CHAIN_MAXNAMELEN];
|
||||
+
|
||||
switch (expr->verdict) {
|
||||
case NFT_CONTINUE:
|
||||
nft_print(octx, "continue");
|
||||
@@ -261,10 +263,26 @@ static void verdict_type_print(const struct expr *expr, struct output_ctx *octx)
|
||||
nft_print(octx, "break");
|
||||
break;
|
||||
case NFT_JUMP:
|
||||
- nft_print(octx, "jump %s", expr->chain);
|
||||
+ if (expr->chain->ops->type == EXPR_VALUE) {
|
||||
+ mpz_export_data(chain, expr->chain->value,
|
||||
+ BYTEORDER_HOST_ENDIAN,
|
||||
+ NFT_CHAIN_MAXNAMELEN);
|
||||
+ nft_print(octx, "jump %s", chain);
|
||||
+ } else {
|
||||
+ nft_print(octx, "jump ");
|
||||
+ expr_print(expr->chain, octx);
|
||||
+ }
|
||||
break;
|
||||
case NFT_GOTO:
|
||||
- nft_print(octx, "goto %s", expr->chain);
|
||||
+ if (expr->chain->ops->type == EXPR_VALUE) {
|
||||
+ mpz_export_data(chain, expr->chain->value,
|
||||
+ BYTEORDER_HOST_ENDIAN,
|
||||
+ NFT_CHAIN_MAXNAMELEN);
|
||||
+ nft_print(octx, "goto %s", chain);
|
||||
+ } else {
|
||||
+ nft_print(octx, "goto ");
|
||||
+ expr_print(expr->chain, octx);
|
||||
+ }
|
||||
break;
|
||||
case NFT_RETURN:
|
||||
nft_print(octx, "return");
|
||||
diff --git a/src/evaluate.c b/src/evaluate.c
|
||||
index 88fa44dd34ef5..5f0f3b36fd99f 100644
|
||||
--- a/src/evaluate.c
|
||||
+++ b/src/evaluate.c
|
||||
@@ -1847,6 +1847,10 @@ static int stmt_evaluate_verdict(struct eval_ctx *ctx, struct stmt *stmt)
|
||||
case EXPR_VERDICT:
|
||||
if (stmt->expr->verdict != NFT_CONTINUE)
|
||||
stmt->flags |= STMT_F_TERMINAL;
|
||||
+ if (stmt->expr->chain != NULL) {
|
||||
+ if (expr_evaluate(ctx, &stmt->expr->chain) < 0)
|
||||
+ return -1;
|
||||
+ }
|
||||
break;
|
||||
case EXPR_MAP:
|
||||
break;
|
||||
diff --git a/src/expression.c b/src/expression.c
|
||||
index bea0f4c8d9bc1..411047cb9341d 100644
|
||||
--- a/src/expression.c
|
||||
+++ b/src/expression.c
|
||||
@@ -174,22 +174,22 @@ static bool verdict_expr_cmp(const struct expr *e1, const struct expr *e2)
|
||||
|
||||
if ((e1->verdict == NFT_JUMP ||
|
||||
e1->verdict == NFT_GOTO) &&
|
||||
- strcmp(e1->chain, e2->chain))
|
||||
- return false;
|
||||
+ expr_cmp(e1->chain, e2->chain))
|
||||
+ return true;
|
||||
|
||||
- return true;
|
||||
+ return false;
|
||||
}
|
||||
|
||||
static void verdict_expr_clone(struct expr *new, const struct expr *expr)
|
||||
{
|
||||
new->verdict = expr->verdict;
|
||||
if (expr->chain != NULL)
|
||||
- new->chain = xstrdup(expr->chain);
|
||||
+ mpz_init_set(new->chain->value, expr->chain->value);
|
||||
}
|
||||
|
||||
static void verdict_expr_destroy(struct expr *expr)
|
||||
{
|
||||
- xfree(expr->chain);
|
||||
+ expr_free(expr->chain);
|
||||
}
|
||||
|
||||
static const struct expr_ops verdict_expr_ops = {
|
||||
@@ -203,7 +203,7 @@ static const struct expr_ops verdict_expr_ops = {
|
||||
};
|
||||
|
||||
struct expr *verdict_expr_alloc(const struct location *loc,
|
||||
- int verdict, const char *chain)
|
||||
+ int verdict, struct expr *chain)
|
||||
{
|
||||
struct expr *expr;
|
||||
|
||||
diff --git a/src/json.c b/src/json.c
|
||||
index fad2a83624062..6ecebc477146f 100644
|
||||
--- a/src/json.c
|
||||
+++ b/src/json.c
|
||||
@@ -636,14 +636,14 @@ json_t *verdict_expr_json(const struct expr *expr, struct output_ctx *octx)
|
||||
{ NF_QUEUE, "queue", false },
|
||||
};
|
||||
const char *name = NULL;
|
||||
- const char *chain = NULL;
|
||||
+ json_t *chain = NULL;
|
||||
unsigned int i;
|
||||
|
||||
for (i = 0; i < array_size(verdict_tbl); i++) {
|
||||
if (expr->verdict == verdict_tbl[i].verdict) {
|
||||
name = verdict_tbl[i].name;
|
||||
if (verdict_tbl[i].chain && expr->chain)
|
||||
- chain = expr->chain;
|
||||
+ chain = expr_print_json(expr->chain, octx);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -652,7 +652,7 @@ json_t *verdict_expr_json(const struct expr *expr, struct output_ctx *octx)
|
||||
return NULL;
|
||||
}
|
||||
if (chain)
|
||||
- return json_pack("{s:{s:s}}", name, "target", chain);
|
||||
+ return json_pack("{s:{s:o}}", name, "target", chain);
|
||||
else
|
||||
return json_pack("{s:n}", name);
|
||||
}
|
||||
diff --git a/src/netlink.c b/src/netlink.c
|
||||
index 0509a06b3d2b3..fcd05b73f4c0e 100644
|
||||
--- a/src/netlink.c
|
||||
+++ b/src/netlink.c
|
||||
@@ -391,12 +391,17 @@ static void netlink_gen_constant_data(const struct expr *expr,
|
||||
static void netlink_gen_verdict(const struct expr *expr,
|
||||
struct nft_data_linearize *data)
|
||||
{
|
||||
+ char chain[NFT_CHAIN_MAXNAMELEN];
|
||||
+
|
||||
data->verdict = expr->verdict;
|
||||
|
||||
switch (expr->verdict) {
|
||||
case NFT_JUMP:
|
||||
case NFT_GOTO:
|
||||
- snprintf(data->chain, NFT_CHAIN_MAXNAMELEN, "%s", expr->chain);
|
||||
+ mpz_export_data(chain, expr->chain->value,
|
||||
+ BYTEORDER_HOST_ENDIAN,
|
||||
+ NFT_CHAIN_MAXNAMELEN);
|
||||
+ snprintf(data->chain, NFT_CHAIN_MAXNAMELEN, "%s", chain);
|
||||
data->chain[NFT_CHAIN_MAXNAMELEN-1] = '\0';
|
||||
break;
|
||||
}
|
||||
@@ -426,12 +431,15 @@ struct expr *netlink_alloc_value(const struct location *loc,
|
||||
static struct expr *netlink_alloc_verdict(const struct location *loc,
|
||||
const struct nft_data_delinearize *nld)
|
||||
{
|
||||
- char *chain;
|
||||
+ struct expr *chain;
|
||||
|
||||
switch (nld->verdict) {
|
||||
case NFT_JUMP:
|
||||
case NFT_GOTO:
|
||||
- chain = xstrdup(nld->chain);
|
||||
+ chain = constant_expr_alloc(loc, &string_type,
|
||||
+ BYTEORDER_HOST_ENDIAN,
|
||||
+ NFT_CHAIN_MAXNAMELEN *
|
||||
+ BITS_PER_BYTE, nld->chain);
|
||||
break;
|
||||
default:
|
||||
chain = NULL;
|
||||
@@ -1694,14 +1702,22 @@ static void trace_print_expr(const struct nftnl_trace *nlt, unsigned int attr,
|
||||
static void trace_print_verdict(const struct nftnl_trace *nlt,
|
||||
struct output_ctx *octx)
|
||||
{
|
||||
+ struct expr *chain_expr = NULL;
|
||||
const char *chain = NULL;
|
||||
unsigned int verdict;
|
||||
struct expr *expr;
|
||||
|
||||
verdict = nftnl_trace_get_u32(nlt, NFTNL_TRACE_VERDICT);
|
||||
- if (nftnl_trace_is_set(nlt, NFTNL_TRACE_JUMP_TARGET))
|
||||
+ if (nftnl_trace_is_set(nlt, NFTNL_TRACE_JUMP_TARGET)) {
|
||||
chain = xstrdup(nftnl_trace_get_str(nlt, NFTNL_TRACE_JUMP_TARGET));
|
||||
- expr = verdict_expr_alloc(&netlink_location, verdict, chain);
|
||||
+ chain_expr = constant_expr_alloc(&netlink_location,
|
||||
+ &string_type,
|
||||
+ BYTEORDER_HOST_ENDIAN,
|
||||
+ NFT_CHAIN_MAXNAMELEN
|
||||
+ * BITS_PER_BYTE,
|
||||
+ chain);
|
||||
+ }
|
||||
+ expr = verdict_expr_alloc(&netlink_location, verdict, chain_expr);
|
||||
|
||||
nft_print(octx, "verdict ");
|
||||
expr_print(expr, octx);
|
||||
diff --git a/src/parser_bison.y b/src/parser_bison.y
|
||||
index 1dc83953ea858..08dce52cebd1e 100644
|
||||
--- a/src/parser_bison.y
|
||||
+++ b/src/parser_bison.y
|
||||
@@ -583,8 +583,8 @@ int nft_lex(void *, void *, void *);
|
||||
%type <stmt> meter_stmt meter_stmt_alloc flow_stmt_legacy_alloc
|
||||
%destructor { stmt_free($$); } meter_stmt meter_stmt_alloc flow_stmt_legacy_alloc
|
||||
|
||||
-%type <expr> symbol_expr verdict_expr integer_expr variable_expr
|
||||
-%destructor { expr_free($$); } symbol_expr verdict_expr integer_expr variable_expr
|
||||
+%type <expr> symbol_expr verdict_expr integer_expr variable_expr chain_expr
|
||||
+%destructor { expr_free($$); } symbol_expr verdict_expr integer_expr variable_expr chain_expr
|
||||
%type <expr> primary_expr shift_expr and_expr
|
||||
%destructor { expr_free($$); } primary_expr shift_expr and_expr
|
||||
%type <expr> exclusive_or_expr inclusive_or_expr
|
||||
@@ -3461,11 +3461,11 @@ verdict_expr : ACCEPT
|
||||
{
|
||||
$$ = verdict_expr_alloc(&@$, NFT_CONTINUE, NULL);
|
||||
}
|
||||
- | JUMP identifier
|
||||
+ | JUMP chain_expr
|
||||
{
|
||||
$$ = verdict_expr_alloc(&@$, NFT_JUMP, $2);
|
||||
}
|
||||
- | GOTO identifier
|
||||
+ | GOTO chain_expr
|
||||
{
|
||||
$$ = verdict_expr_alloc(&@$, NFT_GOTO, $2);
|
||||
}
|
||||
@@ -3475,6 +3475,15 @@ verdict_expr : ACCEPT
|
||||
}
|
||||
;
|
||||
|
||||
+chain_expr : identifier
|
||||
+ {
|
||||
+ $$ = constant_expr_alloc(&@$, &string_type,
|
||||
+ BYTEORDER_HOST_ENDIAN,
|
||||
+ NFT_CHAIN_MAXNAMELEN *
|
||||
+ BITS_PER_BYTE, $1);
|
||||
+ }
|
||||
+ ;
|
||||
+
|
||||
meta_expr : META meta_key
|
||||
{
|
||||
$$ = meta_expr_alloc(&@$, $2);
|
||||
diff --git a/src/parser_json.c b/src/parser_json.c
|
||||
index 688fac1bddde2..b62c4125a0144 100644
|
||||
--- a/src/parser_json.c
|
||||
+++ b/src/parser_json.c
|
||||
@@ -1014,10 +1014,16 @@ static struct expr *json_parse_verdict_expr(struct json_ctx *ctx,
|
||||
{ NF_ACCEPT, "accept", false },
|
||||
{ NF_DROP, "drop", false },
|
||||
};
|
||||
+ struct expr *chain_expr = NULL;
|
||||
const char *chain = NULL;
|
||||
unsigned int i;
|
||||
|
||||
json_unpack(root, "{s:s}", "target", &chain);
|
||||
+ if (!chain)
|
||||
+ chain_expr = constant_expr_alloc(int_loc, &string_type,
|
||||
+ BYTEORDER_HOST_ENDIAN,
|
||||
+ NFT_CHAIN_MAXNAMELEN *
|
||||
+ BITS_PER_BYTE, chain);
|
||||
|
||||
for (i = 0; i < array_size(verdict_tbl); i++) {
|
||||
if (strcmp(type, verdict_tbl[i].name))
|
||||
@@ -1028,8 +1034,7 @@ static struct expr *json_parse_verdict_expr(struct json_ctx *ctx,
|
||||
return NULL;
|
||||
|
||||
return verdict_expr_alloc(int_loc,
|
||||
- verdict_tbl[i].verdict,
|
||||
- chain ? xstrdup(chain) : NULL);
|
||||
+ verdict_tbl[i].verdict, chain_expr);
|
||||
}
|
||||
json_error(ctx, "Unknown verdict '%s'.", type);
|
||||
return NULL;
|
||||
--
|
||||
2.21.0
|
||||
|
204
SOURCES/0055-src-Allow-goto-and-jump-to-a-variable.patch
Normal file
204
SOURCES/0055-src-Allow-goto-and-jump-to-a-variable.patch
Normal file
@ -0,0 +1,204 @@
|
||||
From 0100e69baee2e3a7e4bf5f0fb5c824d5c3e81286 Mon Sep 17 00:00:00 2001
|
||||
From: Fernando Fernandez Mancera <ffmancera@riseup.net>
|
||||
Date: Fri, 24 May 2019 15:06:50 +0200
|
||||
Subject: [PATCH] src: Allow goto and jump to a variable
|
||||
|
||||
This patch introduces the use of nft input files variables in 'jump' and 'goto'
|
||||
statements, e.g.
|
||||
|
||||
define dest = ber
|
||||
|
||||
add table ip foo
|
||||
add chain ip foo bar {type filter hook input priority 0;}
|
||||
add chain ip foo ber
|
||||
add rule ip foo ber counter
|
||||
add rule ip foo bar jump $dest
|
||||
|
||||
table ip foo {
|
||||
chain bar {
|
||||
type filter hook input priority filter; policy accept;
|
||||
jump ber
|
||||
}
|
||||
|
||||
chain ber {
|
||||
counter packets 71 bytes 6664
|
||||
}
|
||||
}
|
||||
|
||||
Signed-off-by: Fernando Fernandez Mancera <ffmancera@riseup.net>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit c64457cff9673fbb41f613a67e158b4d62235c09)
|
||||
|
||||
Conflicts:
|
||||
-> Adjust for missing commits 72931553828af
|
||||
("src: expr: add expression etype") and 68e76238749fb
|
||||
("src: expr: add and use expr_name helper").
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/datatype.c | 11 ++++++++++
|
||||
src/evaluate.c | 7 +++++++
|
||||
src/parser_bison.y | 3 ++-
|
||||
.../shell/testcases/nft-f/0018jump_variable_0 | 19 ++++++++++++++++++
|
||||
.../shell/testcases/nft-f/0019jump_variable_1 | 20 +++++++++++++++++++
|
||||
.../shell/testcases/nft-f/0020jump_variable_1 | 20 +++++++++++++++++++
|
||||
.../nft-f/dumps/0018jump_variable_0.nft | 8 ++++++++
|
||||
7 files changed, 87 insertions(+), 1 deletion(-)
|
||||
create mode 100755 tests/shell/testcases/nft-f/0018jump_variable_0
|
||||
create mode 100755 tests/shell/testcases/nft-f/0019jump_variable_1
|
||||
create mode 100755 tests/shell/testcases/nft-f/0020jump_variable_1
|
||||
create mode 100644 tests/shell/testcases/nft-f/dumps/0018jump_variable_0.nft
|
||||
|
||||
diff --git a/src/datatype.c b/src/datatype.c
|
||||
index f7defa37ff196..5791a6a41599e 100644
|
||||
--- a/src/datatype.c
|
||||
+++ b/src/datatype.c
|
||||
@@ -308,11 +308,22 @@ static void verdict_type_print(const struct expr *expr, struct output_ctx *octx)
|
||||
}
|
||||
}
|
||||
|
||||
+static struct error_record *verdict_type_parse(const struct expr *sym,
|
||||
+ struct expr **res)
|
||||
+{
|
||||
+ *res = constant_expr_alloc(&sym->location, &string_type,
|
||||
+ BYTEORDER_HOST_ENDIAN,
|
||||
+ (strlen(sym->identifier) + 1) * BITS_PER_BYTE,
|
||||
+ sym->identifier);
|
||||
+ return NULL;
|
||||
+}
|
||||
+
|
||||
const struct datatype verdict_type = {
|
||||
.type = TYPE_VERDICT,
|
||||
.name = "verdict",
|
||||
.desc = "netfilter verdict",
|
||||
.print = verdict_type_print,
|
||||
+ .parse = verdict_type_parse,
|
||||
};
|
||||
|
||||
static const struct symbol_table nfproto_tbl = {
|
||||
diff --git a/src/evaluate.c b/src/evaluate.c
|
||||
index 5f0f3b36fd99f..8e15e71d8a33b 100644
|
||||
--- a/src/evaluate.c
|
||||
+++ b/src/evaluate.c
|
||||
@@ -1850,6 +1850,13 @@ static int stmt_evaluate_verdict(struct eval_ctx *ctx, struct stmt *stmt)
|
||||
if (stmt->expr->chain != NULL) {
|
||||
if (expr_evaluate(ctx, &stmt->expr->chain) < 0)
|
||||
return -1;
|
||||
+ if ((stmt->expr->chain->ops->type != EXPR_SYMBOL &&
|
||||
+ stmt->expr->chain->ops->type != EXPR_VALUE) ||
|
||||
+ stmt->expr->chain->symtype != SYMBOL_VALUE) {
|
||||
+ return stmt_error(ctx, stmt,
|
||||
+ "invalid verdict chain expression %s\n",
|
||||
+ stmt->expr->chain->ops->name);
|
||||
+ }
|
||||
}
|
||||
break;
|
||||
case EXPR_MAP:
|
||||
diff --git a/src/parser_bison.y b/src/parser_bison.y
|
||||
index 08dce52cebd1e..2e8ebde34eee6 100644
|
||||
--- a/src/parser_bison.y
|
||||
+++ b/src/parser_bison.y
|
||||
@@ -3475,7 +3475,8 @@ verdict_expr : ACCEPT
|
||||
}
|
||||
;
|
||||
|
||||
-chain_expr : identifier
|
||||
+chain_expr : variable_expr
|
||||
+ | identifier
|
||||
{
|
||||
$$ = constant_expr_alloc(&@$, &string_type,
|
||||
BYTEORDER_HOST_ENDIAN,
|
||||
diff --git a/tests/shell/testcases/nft-f/0018jump_variable_0 b/tests/shell/testcases/nft-f/0018jump_variable_0
|
||||
new file mode 100755
|
||||
index 0000000000000..003a1bdf701f1
|
||||
--- /dev/null
|
||||
+++ b/tests/shell/testcases/nft-f/0018jump_variable_0
|
||||
@@ -0,0 +1,19 @@
|
||||
+#!/bin/bash
|
||||
+
|
||||
+# Tests use of variables in jump statements
|
||||
+
|
||||
+set -e
|
||||
+
|
||||
+RULESET="
|
||||
+define dest = ber
|
||||
+
|
||||
+table ip foo {
|
||||
+ chain bar {
|
||||
+ jump \$dest
|
||||
+ }
|
||||
+
|
||||
+ chain ber {
|
||||
+ }
|
||||
+}"
|
||||
+
|
||||
+$NFT -f - <<< "$RULESET"
|
||||
diff --git a/tests/shell/testcases/nft-f/0019jump_variable_1 b/tests/shell/testcases/nft-f/0019jump_variable_1
|
||||
new file mode 100755
|
||||
index 0000000000000..bda861c91df31
|
||||
--- /dev/null
|
||||
+++ b/tests/shell/testcases/nft-f/0019jump_variable_1
|
||||
@@ -0,0 +1,20 @@
|
||||
+#!/bin/bash
|
||||
+
|
||||
+# Tests use of variables in jump statements
|
||||
+
|
||||
+set -e
|
||||
+
|
||||
+RULESET="
|
||||
+define dest = { 1024 }
|
||||
+
|
||||
+table ip foo {
|
||||
+ chain bar {
|
||||
+ jump \$dest
|
||||
+ }
|
||||
+
|
||||
+ chain ber {
|
||||
+ }
|
||||
+}"
|
||||
+
|
||||
+$NFT -f - <<< "$RULESET" && exit 1
|
||||
+exit 0
|
||||
diff --git a/tests/shell/testcases/nft-f/0020jump_variable_1 b/tests/shell/testcases/nft-f/0020jump_variable_1
|
||||
new file mode 100755
|
||||
index 0000000000000..f753058f24f64
|
||||
--- /dev/null
|
||||
+++ b/tests/shell/testcases/nft-f/0020jump_variable_1
|
||||
@@ -0,0 +1,20 @@
|
||||
+#!/bin/bash
|
||||
+
|
||||
+# Tests use of variables in jump statements
|
||||
+
|
||||
+set -e
|
||||
+
|
||||
+RULESET="
|
||||
+define dest = *
|
||||
+
|
||||
+table ip foo {
|
||||
+ chain bar {
|
||||
+ jump \$dest
|
||||
+ }
|
||||
+
|
||||
+ chain ber {
|
||||
+ }
|
||||
+}"
|
||||
+
|
||||
+$NFT -f - <<< "$RULESET" && exit 1
|
||||
+exit 0
|
||||
diff --git a/tests/shell/testcases/nft-f/dumps/0018jump_variable_0.nft b/tests/shell/testcases/nft-f/dumps/0018jump_variable_0.nft
|
||||
new file mode 100644
|
||||
index 0000000000000..0ddaf07f0ea3b
|
||||
--- /dev/null
|
||||
+++ b/tests/shell/testcases/nft-f/dumps/0018jump_variable_0.nft
|
||||
@@ -0,0 +1,8 @@
|
||||
+table ip foo {
|
||||
+ chain bar {
|
||||
+ jump ber
|
||||
+ }
|
||||
+
|
||||
+ chain ber {
|
||||
+ }
|
||||
+}
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,82 @@
|
||||
From cc4fa3ebfd8bbb18e17711f8ec122043340a1680 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Mon, 27 May 2019 13:37:00 +0200
|
||||
Subject: [PATCH] parser_json: Fix and simplify verdict expression parsing
|
||||
|
||||
Parsing of the "target" property was flawed in two ways:
|
||||
|
||||
* The value was extracted twice. Drop the first unconditional one.
|
||||
* Expression allocation required since commit f1e8a129ee428 was broken,
|
||||
The expression was allocated only if the property was not present.
|
||||
|
||||
Fixes: f1e8a129ee428 ("src: Introduce chain_expr in jump and goto statements")
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit c34ad1653ff98db5d1ddceab663401055ac7ae4c)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/parser_json.c | 25 +++++++++++++------------
|
||||
1 file changed, 13 insertions(+), 12 deletions(-)
|
||||
|
||||
diff --git a/src/parser_json.c b/src/parser_json.c
|
||||
index b62c4125a0144..7e4da4838e40b 100644
|
||||
--- a/src/parser_json.c
|
||||
+++ b/src/parser_json.c
|
||||
@@ -999,13 +999,22 @@ static struct expr *json_parse_range_expr(struct json_ctx *ctx,
|
||||
return range_expr_alloc(int_loc, expr_low, expr_high);
|
||||
}
|
||||
|
||||
+static struct expr *json_alloc_chain_expr(const char *chain)
|
||||
+{
|
||||
+ if (!chain)
|
||||
+ return NULL;
|
||||
+
|
||||
+ return constant_expr_alloc(int_loc, &string_type, BYTEORDER_HOST_ENDIAN,
|
||||
+ NFT_CHAIN_MAXNAMELEN * BITS_PER_BYTE, chain);
|
||||
+}
|
||||
+
|
||||
static struct expr *json_parse_verdict_expr(struct json_ctx *ctx,
|
||||
const char *type, json_t *root)
|
||||
{
|
||||
const struct {
|
||||
int verdict;
|
||||
const char *name;
|
||||
- bool chain;
|
||||
+ bool need_chain;
|
||||
} verdict_tbl[] = {
|
||||
{ NFT_CONTINUE, "continue", false },
|
||||
{ NFT_JUMP, "jump", true },
|
||||
@@ -1014,27 +1023,19 @@ static struct expr *json_parse_verdict_expr(struct json_ctx *ctx,
|
||||
{ NF_ACCEPT, "accept", false },
|
||||
{ NF_DROP, "drop", false },
|
||||
};
|
||||
- struct expr *chain_expr = NULL;
|
||||
const char *chain = NULL;
|
||||
unsigned int i;
|
||||
|
||||
- json_unpack(root, "{s:s}", "target", &chain);
|
||||
- if (!chain)
|
||||
- chain_expr = constant_expr_alloc(int_loc, &string_type,
|
||||
- BYTEORDER_HOST_ENDIAN,
|
||||
- NFT_CHAIN_MAXNAMELEN *
|
||||
- BITS_PER_BYTE, chain);
|
||||
-
|
||||
for (i = 0; i < array_size(verdict_tbl); i++) {
|
||||
if (strcmp(type, verdict_tbl[i].name))
|
||||
continue;
|
||||
|
||||
- if (verdict_tbl[i].chain &&
|
||||
+ if (verdict_tbl[i].need_chain &&
|
||||
json_unpack_err(ctx, root, "{s:s}", "target", &chain))
|
||||
return NULL;
|
||||
|
||||
- return verdict_expr_alloc(int_loc,
|
||||
- verdict_tbl[i].verdict, chain_expr);
|
||||
+ return verdict_expr_alloc(int_loc, verdict_tbl[i].verdict,
|
||||
+ json_alloc_chain_expr(chain));
|
||||
}
|
||||
json_error(ctx, "Unknown verdict '%s'.", type);
|
||||
return NULL;
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,67 @@
|
||||
From 2b491f62a6a2d34f747ccf083eb016a8d0dcdba9 Mon Sep 17 00:00:00 2001
|
||||
From: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Date: Mon, 10 Jun 2019 13:12:20 +0200
|
||||
Subject: [PATCH] src: invalid read when importing chain name
|
||||
|
||||
Use strlen(), otherwise mpz_import_data() reads too much beyond the real
|
||||
chain string. Valgrind reports the following error:
|
||||
|
||||
==2759== Invalid read of size 1
|
||||
==2759== at 0x67D68D6: __gmpz_import (in /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2)
|
||||
==2759== by 0x4E79467: mpz_import_data (gmputil.c:133)
|
||||
==2759== by 0x4E60A12: constant_expr_alloc (expression.c:375)
|
||||
==2759== by 0x4E8ED65: nft_parse (parser_bison.y:3825)
|
||||
==2759== by 0x4E7E850: nft_parse_bison_buffer (libnftables.c:357)
|
||||
==2759== by 0x4E7E850: nft_run_cmd_from_buffer (libnftables.c:424)
|
||||
==2759== by 0x1095D4: main (in /tmp/a.out)
|
||||
==2759== Address 0x6ee1b4a is 0 bytes after a block of size 10 alloc'd
|
||||
==2759== at 0x4C2BBAF: malloc (vg_replace_malloc.c:299)
|
||||
==2759== by 0x59FD3B9: strdup (strdup.c:42)
|
||||
==2759== by 0x4E7963D: xstrdup (utils.c:75)
|
||||
==2759== by 0x4E9C233: nft_lex (scanner.l:626)
|
||||
==2759== by 0x4E8E382: nft_parse (parser_bison.c:5297)
|
||||
==2759== by 0x4E7E850: nft_parse_bison_buffer (libnftables.c:357)
|
||||
==2759== by 0x4E7E850: nft_run_cmd_from_buffer (libnftables.c:424)
|
||||
|
||||
Fixes: f1e8a129ee42 ("src: Introduce chain_expr in jump and goto statements")
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 142350f154c78a1aeccebc6115440162986dc906)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/netlink.c | 4 ++--
|
||||
src/parser_bison.y | 4 ++--
|
||||
2 files changed, 4 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/src/netlink.c b/src/netlink.c
|
||||
index fcd05b73f4c0e..fc310fd293d64 100644
|
||||
--- a/src/netlink.c
|
||||
+++ b/src/netlink.c
|
||||
@@ -438,8 +438,8 @@ static struct expr *netlink_alloc_verdict(const struct location *loc,
|
||||
case NFT_GOTO:
|
||||
chain = constant_expr_alloc(loc, &string_type,
|
||||
BYTEORDER_HOST_ENDIAN,
|
||||
- NFT_CHAIN_MAXNAMELEN *
|
||||
- BITS_PER_BYTE, nld->chain);
|
||||
+ strlen(nld->chain) * BITS_PER_BYTE,
|
||||
+ nld->chain);
|
||||
break;
|
||||
default:
|
||||
chain = NULL;
|
||||
diff --git a/src/parser_bison.y b/src/parser_bison.y
|
||||
index 2e8ebde34eee6..4bd1ae1e39855 100644
|
||||
--- a/src/parser_bison.y
|
||||
+++ b/src/parser_bison.y
|
||||
@@ -3480,8 +3480,8 @@ chain_expr : variable_expr
|
||||
{
|
||||
$$ = constant_expr_alloc(&@$, &string_type,
|
||||
BYTEORDER_HOST_ENDIAN,
|
||||
- NFT_CHAIN_MAXNAMELEN *
|
||||
- BITS_PER_BYTE, $1);
|
||||
+ strlen($1) * BITS_PER_BYTE,
|
||||
+ $1);
|
||||
}
|
||||
;
|
||||
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,43 @@
|
||||
From b9422bf04c66ac4c6fd5fec1f539e8ff270f83f1 Mon Sep 17 00:00:00 2001
|
||||
From: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Date: Mon, 10 Jun 2019 13:51:20 +0200
|
||||
Subject: [PATCH] expression: use expr_clone() from verdict_expr_clone()
|
||||
|
||||
Chains are now expressions, do not assume a constant value is used.
|
||||
|
||||
==26302== Process terminating with default action of signal 11 (SIGSEGV)
|
||||
==26302== Access not within mapped region at address 0x50
|
||||
==26302== at 0x67D7EE7: __gmpz_init_set (in /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2)
|
||||
==26302== by 0x4E61224: expr_clone (expression.c:65)
|
||||
==26302== by 0x4E7898B: interval_map_decompose (segtree.c:943)
|
||||
==26302== by 0x4E6DDA0: netlink_list_setelems (netlink.c:882)
|
||||
==26302== by 0x4E5A806: cache_init_objects (rule.c:166)
|
||||
==26302== by 0x4E5A806: cache_init (rule.c:216)
|
||||
==26302== by 0x4E5A806: cache_update (rule.c:266)
|
||||
==26302== by 0x4E7E0EE: nft_evaluate (libnftables.c:388)
|
||||
==26302== by 0x4E7E8AB: nft_run_cmd_from_buffer (libnftables.c:428)
|
||||
|
||||
Fixes: f1e8a129ee42 ("src: Introduce chain_expr in jump and goto statements")
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit aaf0167f2615372c1baaff327d1fb89d4297a52a)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/expression.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/expression.c b/src/expression.c
|
||||
index 411047cb9341d..a339c6f30bce5 100644
|
||||
--- a/src/expression.c
|
||||
+++ b/src/expression.c
|
||||
@@ -184,7 +184,7 @@ static void verdict_expr_clone(struct expr *new, const struct expr *expr)
|
||||
{
|
||||
new->verdict = expr->verdict;
|
||||
if (expr->chain != NULL)
|
||||
- mpz_init_set(new->chain->value, expr->chain->value);
|
||||
+ new->chain = expr_clone(expr->chain);
|
||||
}
|
||||
|
||||
static void verdict_expr_destroy(struct expr *expr)
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,39 @@
|
||||
From 8bd95db6d02b8ed268f2bfb7ec62b4d0cfbf82ad Mon Sep 17 00:00:00 2001
|
||||
From: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
Date: Mon, 10 Jun 2019 19:23:40 +0200
|
||||
Subject: [PATCH] parser_bison: free chain name after creating constant
|
||||
expression
|
||||
|
||||
==2330== 2 bytes in 1 blocks are definitely lost in loss record 1 of 1
|
||||
==2330== at 0x4C2BBAF: malloc (vg_replace_malloc.c:299)
|
||||
==2330== by 0x583D3B9: strdup (strdup.c:42)
|
||||
==2330== by 0x4E7966D: xstrdup (utils.c:75)
|
||||
==2330== by 0x4E9C283: nft_lex (scanner.l:626)
|
||||
==2330== by 0x4E8E3C2: nft_parse (parser_bison.c:5297)
|
||||
==2330== by 0x4E7EAB2: nft_parse_bison_filename (libnftables.c:374)
|
||||
==2330== by 0x4E7EAB2: nft_run_cmd_from_filename (libnftables.c:475)
|
||||
==2330== by 0x109A53: main (main.c:310)
|
||||
|
||||
Fixes: f1e8a129ee42 ("src: Introduce chain_expr in jump and goto statements")
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 29d0b6b0526ed9b661db9f1c8dbd2abbff11483a)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/parser_bison.y | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/src/parser_bison.y b/src/parser_bison.y
|
||||
index 4bd1ae1e39855..cea5d7660ba4c 100644
|
||||
--- a/src/parser_bison.y
|
||||
+++ b/src/parser_bison.y
|
||||
@@ -3482,6 +3482,7 @@ chain_expr : variable_expr
|
||||
BYTEORDER_HOST_ENDIAN,
|
||||
strlen($1) * BITS_PER_BYTE,
|
||||
$1);
|
||||
+ xfree($1);
|
||||
}
|
||||
;
|
||||
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,84 @@
|
||||
From dafcd4c03c7d05ba8613c9fffb78aefaf87b31b7 Mon Sep 17 00:00:00 2001
|
||||
From: Fernando Fernandez Mancera <ffmancera@riseup.net>
|
||||
Date: Fri, 5 Apr 2019 17:36:55 +0200
|
||||
Subject: [PATCH] doc: update nft list plural form parameters
|
||||
|
||||
Signed-off-by: Fernando Fernandez Mancera <ffmancera@riseup.net>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 067ac215e93f6cb912c3f99ca9e6689397bfba2f)
|
||||
|
||||
Conflicts:
|
||||
doc/nft.txt
|
||||
-> Changes applied manually to doc/nft.xml
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
doc/nft.xml | 24 ++++++++++++++++++++++++
|
||||
1 file changed, 24 insertions(+)
|
||||
|
||||
diff --git a/doc/nft.xml b/doc/nft.xml
|
||||
index 1a97d7a169776..ea3973e1b8f1a 100644
|
||||
--- a/doc/nft.xml
|
||||
+++ b/doc/nft.xml
|
||||
@@ -560,6 +560,10 @@ filter input iif $int_ifs accept
|
||||
<arg choice="opt"><replaceable>family</replaceable></arg>
|
||||
<replaceable>table</replaceable>
|
||||
</cmdsynopsis>
|
||||
+ <cmdsynopsis>
|
||||
+ <literal>list</literal>
|
||||
+ <command>tables</command>
|
||||
+ </cmdsynopsis>
|
||||
<cmdsynopsis>
|
||||
<literal>delete</literal>
|
||||
<command>table</command>
|
||||
@@ -705,6 +709,10 @@ add table inet mytable
|
||||
<replaceable>table</replaceable>
|
||||
<replaceable>chain</replaceable>
|
||||
</cmdsynopsis>
|
||||
+ <cmdsynopsis>
|
||||
+ <literal>list</literal>
|
||||
+ <command>chains</command>
|
||||
+ </cmdsynopsis>
|
||||
<cmdsynopsis>
|
||||
<literal>delete</literal>
|
||||
<command>chain</command>
|
||||
@@ -1036,6 +1044,10 @@ table inet filter {
|
||||
<replaceable>table</replaceable>
|
||||
<replaceable>set</replaceable>
|
||||
</cmdsynopsis>
|
||||
+ <cmdsynopsis>
|
||||
+ <literal>list</literal>
|
||||
+ <command>sets</command>
|
||||
+ </cmdsynopsis>
|
||||
<cmdsynopsis>
|
||||
<literal>delete</literal>
|
||||
<command> set</command>
|
||||
@@ -1187,6 +1199,10 @@ table inet filter {
|
||||
<arg choice="opt">policy <replaceable>policy</replaceable> ;</arg>
|
||||
}
|
||||
</cmdsynopsis>
|
||||
+ <cmdsynopsis>
|
||||
+ <literal>list</literal>
|
||||
+ <command>maps</command>
|
||||
+ </cmdsynopsis>
|
||||
<cmdsynopsis>
|
||||
<group choice="req">
|
||||
<arg>delete</arg>
|
||||
@@ -1418,6 +1434,14 @@ table inet filter {
|
||||
<replaceable>table</replaceable>
|
||||
<literal> handle </literal><replaceable>handle</replaceable>
|
||||
</cmdsynopsis>
|
||||
+ <cmdsynopsis>
|
||||
+ <literal>list</literal>
|
||||
+ <command>counters</command>
|
||||
+ </cmdsynopsis>
|
||||
+ <cmdsynopsis>
|
||||
+ <literal>list</literal>
|
||||
+ <command>quotas</command>
|
||||
+ </cmdsynopsis>
|
||||
</para>
|
||||
<para>
|
||||
Stateful objects are attached to tables and are identified by an unique name. They group stateful information from rules, to reference them in rules the keywords "type name" are used e.g. "counter name".
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,100 @@
|
||||
From 1ac8084be4f5a66f078fb346c7dee618ce2d217e Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <psutter@redhat.com>
|
||||
Date: Thu, 4 Apr 2019 13:02:55 +0200
|
||||
Subject: [PATCH] doc: Add minimal description of (v)map statements
|
||||
|
||||
Although quite useful, these were missing in man page. Content loosely
|
||||
based on wiki documentation.
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 3b29acc8f29944c5cf34259f2e2b5b40b4d0ccdd)
|
||||
|
||||
Conflicts:
|
||||
-> Changes applied manually, upstream merged to asciidoc.
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
doc/nft.xml | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
1 file changed, 66 insertions(+)
|
||||
|
||||
diff --git a/doc/nft.xml b/doc/nft.xml
|
||||
index ea3973e1b8f1a..9acff09e30619 100644
|
||||
--- a/doc/nft.xml
|
||||
+++ b/doc/nft.xml
|
||||
@@ -5535,6 +5535,72 @@ dup to ip daddr map { 192.168.7.1 : "eth0", 192.168.7.2 : "eth1" }
|
||||
</example>
|
||||
</para>
|
||||
</refsect2>
|
||||
+
|
||||
+ <refsect2>
|
||||
+ <title>Map statement</title>
|
||||
+ <para>
|
||||
+ The map statement is used to lookup data based on some specific input key.
|
||||
+ </para>
|
||||
+ <para>
|
||||
+ <cmdsynopsis>
|
||||
+ <replaceable>expression</replaceable>
|
||||
+ <command>map {</command>
|
||||
+ <replaceable>key</replaceable>
|
||||
+ <command>:</command>
|
||||
+ <replaceable>value</replaceable>
|
||||
+ <arg choice="opt" rep="repeat">
|
||||
+ <command>,</command>
|
||||
+ <replaceable>key</replaceable>
|
||||
+ <command>:</command>
|
||||
+ <replaceable>value</replaceable>
|
||||
+ </arg>
|
||||
+ <command>}</command>
|
||||
+ </cmdsynopsis>
|
||||
+ </para>
|
||||
+ <example>
|
||||
+ <title>using the map statement</title>
|
||||
+ <programlisting>
|
||||
+# select DNAT target based on TCP dport:
|
||||
+# connections to port 80 are redirected to 192.168.1.100,
|
||||
+# connections to port 8888 are redirected to 192.168.1.101
|
||||
+nft add rule ip nat prerouting dnat tcp dport map { 80 : 192.168.1.100, 8888 : 192.168.1.101 }
|
||||
+
|
||||
+# source address based SNAT:
|
||||
+# packets from net 192.168.1.0/24 will appear as originating from 10.0.0.1,
|
||||
+# packets from net 192.168.2.0/24 will appear as originating from 10.0.0.2
|
||||
+nft add rule ip nat postrouting snat to ip saddr map { 192.168.1.0/24 : 10.0.0.1, 192.168.2.0/24 : 10.0.0.2 }
|
||||
+ </programlisting>
|
||||
+ </example>
|
||||
+ </refsect2>
|
||||
+ <refsect2>
|
||||
+ <title>Vmap statement</title>
|
||||
+ <para>
|
||||
+ The verdict map (vmap) statement works analogous to the map statement, but contains verdicts as values.
|
||||
+ </para>
|
||||
+ <para>
|
||||
+ <cmdsynopsis>
|
||||
+ <replaceable>expression</replaceable>
|
||||
+ <command>vmap {</command>
|
||||
+ <replaceable>key</replaceable>
|
||||
+ <command>:</command>
|
||||
+ <replaceable>value</replaceable>
|
||||
+ <arg choice="opt" rep="repeat">
|
||||
+ <command>,</command>
|
||||
+ <replaceable>key</replaceable>
|
||||
+ <command>:</command>
|
||||
+ <replaceable>value</replaceable>
|
||||
+ </arg>
|
||||
+ <command>}</command>
|
||||
+ </cmdsynopsis>
|
||||
+ </para>
|
||||
+ <example>
|
||||
+ <title>using the vmap statement</title>
|
||||
+ <programlisting>
|
||||
+# jump to different chains depending on layer 4 protocol type:
|
||||
+nft add rule ip filter input ip protocol vmap { tcp : jump tcp-chain, udp : jump udp-chain , icmp : jump icmp-chain }
|
||||
+ </programlisting>
|
||||
+ </example>
|
||||
+ </refsect2>
|
||||
</refsect1>
|
||||
|
||||
<refsect1>
|
||||
--
|
||||
2.21.0
|
||||
|
89
SOURCES/0062-xt-pass-octx-to-translate-function.patch
Normal file
89
SOURCES/0062-xt-pass-octx-to-translate-function.patch
Normal file
@ -0,0 +1,89 @@
|
||||
From 68c1ca177513a94f41ea974de9a48259e8ca5866 Mon Sep 17 00:00:00 2001
|
||||
From: Florian Westphal <fw@strlen.de>
|
||||
Date: Tue, 6 Nov 2018 16:06:26 +0100
|
||||
Subject: [PATCH] xt: pass octx to translate function
|
||||
|
||||
We can't use it when no translation is available as libxtables will
|
||||
use plain printf(), but when translation is available we can.
|
||||
|
||||
Signed-off-by: Florian Westphal <fw@strlen.de>
|
||||
(cherry picked from commit c15c2869168d71d07aca0221e1b37f0c5da54547)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
include/xt.h | 5 +++--
|
||||
src/statement.c | 2 +-
|
||||
src/xt.c | 6 +++---
|
||||
3 files changed, 7 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/include/xt.h b/include/xt.h
|
||||
index 753511e635080..549eb9fe41531 100644
|
||||
--- a/include/xt.h
|
||||
+++ b/include/xt.h
|
||||
@@ -6,9 +6,10 @@ struct netlink_parse_ctx;
|
||||
struct nftnl_expr;
|
||||
struct rule_pp_ctx;
|
||||
struct rule;
|
||||
+struct output_ctx;
|
||||
|
||||
#ifdef HAVE_LIBXTABLES
|
||||
-void xt_stmt_xlate(const struct stmt *stmt);
|
||||
+void xt_stmt_xlate(const struct stmt *stmt, struct output_ctx *octx);
|
||||
void xt_stmt_release(const struct stmt *stmt);
|
||||
|
||||
void netlink_parse_target(struct netlink_parse_ctx *ctx,
|
||||
@@ -20,7 +21,7 @@ void netlink_parse_match(struct netlink_parse_ctx *ctx,
|
||||
void stmt_xt_postprocess(struct rule_pp_ctx *rctx, struct stmt *stmt,
|
||||
struct rule *rule);
|
||||
#else
|
||||
-static inline void xt_stmt_xlate(const struct stmt *stmt) {}
|
||||
+static inline void xt_stmt_xlate(const struct stmt *stmt, struct output_ctx *octx) {}
|
||||
static inline void xt_stmt_release(const struct stmt *stmt) {}
|
||||
|
||||
#include <erec.h>
|
||||
diff --git a/src/statement.c b/src/statement.c
|
||||
index 1b889e77cca20..29b73f9fba4ae 100644
|
||||
--- a/src/statement.c
|
||||
+++ b/src/statement.c
|
||||
@@ -780,7 +780,7 @@ struct stmt *fwd_stmt_alloc(const struct location *loc)
|
||||
|
||||
static void xt_stmt_print(const struct stmt *stmt, struct output_ctx *octx)
|
||||
{
|
||||
- xt_stmt_xlate(stmt);
|
||||
+ xt_stmt_xlate(stmt, octx);
|
||||
}
|
||||
|
||||
static void xt_stmt_destroy(struct stmt *stmt)
|
||||
diff --git a/src/xt.c b/src/xt.c
|
||||
index 298a94d51e8a0..9b7d4c29194aa 100644
|
||||
--- a/src/xt.c
|
||||
+++ b/src/xt.c
|
||||
@@ -26,7 +26,7 @@
|
||||
#include <linux/netfilter_arp/arp_tables.h>
|
||||
#include <linux/netfilter_bridge/ebtables.h>
|
||||
|
||||
-void xt_stmt_xlate(const struct stmt *stmt)
|
||||
+void xt_stmt_xlate(const struct stmt *stmt, struct output_ctx *octx)
|
||||
{
|
||||
struct xt_xlate *xl = xt_xlate_alloc(10240);
|
||||
|
||||
@@ -40,7 +40,7 @@ void xt_stmt_xlate(const struct stmt *stmt)
|
||||
};
|
||||
|
||||
stmt->xt.match->xlate(xl, ¶ms);
|
||||
- printf("%s", xt_xlate_get(xl));
|
||||
+ nft_print(octx, "%s", xt_xlate_get(xl));
|
||||
} else if (stmt->xt.match->print) {
|
||||
printf("#");
|
||||
stmt->xt.match->print(&stmt->xt.entry,
|
||||
@@ -57,7 +57,7 @@ void xt_stmt_xlate(const struct stmt *stmt)
|
||||
};
|
||||
|
||||
stmt->xt.target->xlate(xl, ¶ms);
|
||||
- printf("%s", xt_xlate_get(xl));
|
||||
+ nft_print(octx, "%s", xt_xlate_get(xl));
|
||||
} else if (stmt->xt.target->print) {
|
||||
printf("#");
|
||||
stmt->xt.target->print(NULL, stmt->xt.target->t, 0);
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,163 @@
|
||||
From 4a4acdac14e0ec770589534aa4a5ea469a76e2a5 Mon Sep 17 00:00:00 2001
|
||||
From: Florian Westphal <fw@strlen.de>
|
||||
Date: Tue, 6 Nov 2018 16:06:27 +0100
|
||||
Subject: [PATCH] xt: always build with a minimal support for xt match/target
|
||||
decode
|
||||
|
||||
When building without libxtables, nft would just silently omit any presence
|
||||
of nft_compat in the output.
|
||||
|
||||
This adds ifdef-ry to at least print name of target/match involved when
|
||||
libxtables isn't available for decoding.
|
||||
|
||||
Signed-off-by: Florian Westphal <fw@strlen.de>
|
||||
(cherry picked from commit b3c8de9c5aecde38eec964f31120df82b9704c8c)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
include/xt.h | 13 +------------
|
||||
src/Makefile.am | 2 +-
|
||||
src/xt.c | 22 ++++++++++++++++++++++
|
||||
3 files changed, 24 insertions(+), 13 deletions(-)
|
||||
|
||||
diff --git a/include/xt.h b/include/xt.h
|
||||
index 549eb9fe41531..ab59bb3d45a41 100644
|
||||
--- a/include/xt.h
|
||||
+++ b/include/xt.h
|
||||
@@ -8,7 +8,6 @@ struct rule_pp_ctx;
|
||||
struct rule;
|
||||
struct output_ctx;
|
||||
|
||||
-#ifdef HAVE_LIBXTABLES
|
||||
void xt_stmt_xlate(const struct stmt *stmt, struct output_ctx *octx);
|
||||
void xt_stmt_release(const struct stmt *stmt);
|
||||
|
||||
@@ -18,20 +17,10 @@ void netlink_parse_target(struct netlink_parse_ctx *ctx,
|
||||
void netlink_parse_match(struct netlink_parse_ctx *ctx,
|
||||
const struct location *loc,
|
||||
const struct nftnl_expr *nle);
|
||||
+#ifdef HAVE_LIBXTABLES
|
||||
void stmt_xt_postprocess(struct rule_pp_ctx *rctx, struct stmt *stmt,
|
||||
struct rule *rule);
|
||||
#else
|
||||
-static inline void xt_stmt_xlate(const struct stmt *stmt, struct output_ctx *octx) {}
|
||||
-static inline void xt_stmt_release(const struct stmt *stmt) {}
|
||||
-
|
||||
-#include <erec.h>
|
||||
-
|
||||
-static inline void netlink_parse_target(struct netlink_parse_ctx *ctx,
|
||||
- const struct location *loc,
|
||||
- const struct nftnl_expr *nle) {}
|
||||
-static inline void netlink_parse_match(struct netlink_parse_ctx *ctx,
|
||||
- const struct location *loc,
|
||||
- const struct nftnl_expr *nle) {}
|
||||
static inline void stmt_xt_postprocess(struct rule_pp_ctx *rctx,
|
||||
struct stmt *stmt, struct rule *rule) {}
|
||||
|
||||
diff --git a/src/Makefile.am b/src/Makefile.am
|
||||
index a4ad8cb31236b..495511803b686 100644
|
||||
--- a/src/Makefile.am
|
||||
+++ b/src/Makefile.am
|
||||
@@ -78,8 +78,8 @@ libminigmp_la_CFLAGS = ${AM_CFLAGS} -Wno-sign-compare
|
||||
libnftables_la_LIBADD += libminigmp.la
|
||||
endif
|
||||
|
||||
-if BUILD_XTABLES
|
||||
libnftables_la_SOURCES += xt.c
|
||||
+if BUILD_XTABLES
|
||||
libnftables_la_LIBADD += ${XTABLES_LIBS}
|
||||
endif
|
||||
|
||||
diff --git a/src/xt.c b/src/xt.c
|
||||
index 9b7d4c29194aa..c35c84edca0e6 100644
|
||||
--- a/src/xt.c
|
||||
+++ b/src/xt.c
|
||||
@@ -28,6 +28,7 @@
|
||||
|
||||
void xt_stmt_xlate(const struct stmt *stmt, struct output_ctx *octx)
|
||||
{
|
||||
+#ifdef HAVE_LIBXTABLES
|
||||
struct xt_xlate *xl = xt_xlate_alloc(10240);
|
||||
|
||||
switch (stmt->xt.type) {
|
||||
@@ -68,6 +69,9 @@ void xt_stmt_xlate(const struct stmt *stmt, struct output_ctx *octx)
|
||||
}
|
||||
|
||||
xt_xlate_free(xl);
|
||||
+#else
|
||||
+ nft_print(octx, "# xt_%s", stmt->xt.name);
|
||||
+#endif
|
||||
}
|
||||
|
||||
void xt_stmt_release(const struct stmt *stmt)
|
||||
@@ -95,6 +99,7 @@ void xt_stmt_release(const struct stmt *stmt)
|
||||
xfree(stmt->xt.name);
|
||||
}
|
||||
|
||||
+#ifdef HAVE_LIBXTABLES
|
||||
static void *xt_entry_alloc(struct xt_stmt *xt, uint32_t af)
|
||||
{
|
||||
union nft_entry {
|
||||
@@ -180,6 +185,7 @@ static struct xtables_match *xt_match_clone(struct xtables_match *m)
|
||||
memcpy(clone, m, sizeof(struct xtables_match));
|
||||
return clone;
|
||||
}
|
||||
+#endif
|
||||
|
||||
/*
|
||||
* Delinearization
|
||||
@@ -191,6 +197,7 @@ void netlink_parse_match(struct netlink_parse_ctx *ctx,
|
||||
{
|
||||
struct stmt *stmt;
|
||||
const char *name;
|
||||
+#ifdef HAVE_LIBXTABLES
|
||||
struct xtables_match *mt;
|
||||
const char *mtinfo;
|
||||
struct xt_entry_match *m;
|
||||
@@ -218,7 +225,13 @@ void netlink_parse_match(struct netlink_parse_ctx *ctx,
|
||||
stmt->xt.type = NFT_XT_MATCH;
|
||||
stmt->xt.match = xt_match_clone(mt);
|
||||
stmt->xt.match->m = m;
|
||||
+#else
|
||||
+ name = nftnl_expr_get_str(nle, NFTNL_EXPR_MT_NAME);
|
||||
|
||||
+ stmt = xt_stmt_alloc(loc);
|
||||
+ stmt->xt.name = strdup(name);
|
||||
+ stmt->xt.type = NFT_XT_MATCH;
|
||||
+#endif
|
||||
list_add_tail(&stmt->list, &ctx->rule->stmts);
|
||||
}
|
||||
|
||||
@@ -228,6 +241,7 @@ void netlink_parse_target(struct netlink_parse_ctx *ctx,
|
||||
{
|
||||
struct stmt *stmt;
|
||||
const char *name;
|
||||
+#ifdef HAVE_LIBXTABLES
|
||||
struct xtables_target *tg;
|
||||
const void *tginfo;
|
||||
struct xt_entry_target *t;
|
||||
@@ -256,10 +270,17 @@ void netlink_parse_target(struct netlink_parse_ctx *ctx,
|
||||
stmt->xt.type = NFT_XT_TARGET;
|
||||
stmt->xt.target = xt_target_clone(tg);
|
||||
stmt->xt.target->t = t;
|
||||
+#else
|
||||
+ name = nftnl_expr_get_str(nle, NFTNL_EXPR_TG_NAME);
|
||||
|
||||
+ stmt = xt_stmt_alloc(loc);
|
||||
+ stmt->xt.name = strdup(name);
|
||||
+ stmt->xt.type = NFT_XT_TARGET;
|
||||
+#endif
|
||||
list_add_tail(&stmt->list, &ctx->rule->stmts);
|
||||
}
|
||||
|
||||
+#ifdef HAVE_LIBXTABLES
|
||||
static bool is_watcher(uint32_t family, struct stmt *stmt)
|
||||
{
|
||||
if (family != NFPROTO_BRIDGE ||
|
||||
@@ -371,3 +392,4 @@ void xt_init(void)
|
||||
/* Default to IPv4, but this changes in runtime */
|
||||
xtables_init_all(&xt_nft_globals, NFPROTO_IPV4);
|
||||
}
|
||||
+#endif
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,68 @@
|
||||
From b8d39d718360e1b46be846dbedd94a6b099a9e31 Mon Sep 17 00:00:00 2001
|
||||
From: Florian Westphal <fw@strlen.de>
|
||||
Date: Tue, 23 Apr 2019 13:18:05 +0200
|
||||
Subject: [PATCH] src: fix double free on xt stmt destruction
|
||||
|
||||
'nft monitor' dies with:
|
||||
*** Error in `/sbin/nft': double free or corruption (fasttop): 0x000055f8ba57b750 ***
|
||||
|
||||
... when the iptables-nft test suite is running in parallel, because
|
||||
xfree(stmt->xt.name) gets called twice.
|
||||
|
||||
Fixes: 4ac11b890fe870 ("src: missing destroy function in statement definitions")
|
||||
Signed-off-by: Florian Westphal <fw@strlen.de>
|
||||
Acked-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 99afd62d48f4c510bdb4076eb9d811c001ad1cac)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
include/xt.h | 2 +-
|
||||
src/statement.c | 6 ------
|
||||
src/xt.c | 2 +-
|
||||
3 files changed, 2 insertions(+), 8 deletions(-)
|
||||
|
||||
diff --git a/include/xt.h b/include/xt.h
|
||||
index ab59bb3d45a41..9fc515084d597 100644
|
||||
--- a/include/xt.h
|
||||
+++ b/include/xt.h
|
||||
@@ -9,7 +9,7 @@ struct rule;
|
||||
struct output_ctx;
|
||||
|
||||
void xt_stmt_xlate(const struct stmt *stmt, struct output_ctx *octx);
|
||||
-void xt_stmt_release(const struct stmt *stmt);
|
||||
+void xt_stmt_destroy(struct stmt *stmt);
|
||||
|
||||
void netlink_parse_target(struct netlink_parse_ctx *ctx,
|
||||
const struct location *loc,
|
||||
diff --git a/src/statement.c b/src/statement.c
|
||||
index 29b73f9fba4ae..c261540b92ebd 100644
|
||||
--- a/src/statement.c
|
||||
+++ b/src/statement.c
|
||||
@@ -783,12 +783,6 @@ static void xt_stmt_print(const struct stmt *stmt, struct output_ctx *octx)
|
||||
xt_stmt_xlate(stmt, octx);
|
||||
}
|
||||
|
||||
-static void xt_stmt_destroy(struct stmt *stmt)
|
||||
-{
|
||||
- xfree(stmt->xt.name);
|
||||
- xt_stmt_release(stmt);
|
||||
-}
|
||||
-
|
||||
static const struct stmt_ops xt_stmt_ops = {
|
||||
.type = STMT_XT,
|
||||
.name = "xt",
|
||||
diff --git a/src/xt.c b/src/xt.c
|
||||
index c35c84edca0e6..ef371720fbcfa 100644
|
||||
--- a/src/xt.c
|
||||
+++ b/src/xt.c
|
||||
@@ -74,7 +74,7 @@ void xt_stmt_xlate(const struct stmt *stmt, struct output_ctx *octx)
|
||||
#endif
|
||||
}
|
||||
|
||||
-void xt_stmt_release(const struct stmt *stmt)
|
||||
+void xt_stmt_destroy(struct stmt *stmt)
|
||||
{
|
||||
switch (stmt->xt.type) {
|
||||
case NFT_XT_MATCH:
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,56 @@
|
||||
From 802c96c0b2061dbab20694184bebbeba5eda4a03 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Fri, 26 Oct 2018 11:42:05 +0200
|
||||
Subject: [PATCH] tests/shell: Add testcase for cache update problems
|
||||
|
||||
The first test in there shows how the current cache update strategy
|
||||
causes trouble. The second test shows that proposed "locking" of cache
|
||||
when local entries are added is flawed, too.
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 21d678639b28b99c301262c163128fdf67397ca6)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
.../shell/testcases/cache/0003_cache_update_0 | 29 +++++++++++++++++++
|
||||
1 file changed, 29 insertions(+)
|
||||
create mode 100755 tests/shell/testcases/cache/0003_cache_update_0
|
||||
|
||||
diff --git a/tests/shell/testcases/cache/0003_cache_update_0 b/tests/shell/testcases/cache/0003_cache_update_0
|
||||
new file mode 100755
|
||||
index 0000000000000..deb45db2c43be
|
||||
--- /dev/null
|
||||
+++ b/tests/shell/testcases/cache/0003_cache_update_0
|
||||
@@ -0,0 +1,29 @@
|
||||
+#!/bin/bash
|
||||
+
|
||||
+set -e
|
||||
+
|
||||
+# Expose how naive cache update logic (i.e., drop cache and repopulate from
|
||||
+# kernel ruleset) may mess things up. The following input does:
|
||||
+#
|
||||
+# list ruleset -> populate the cache, cache->genid is non-zero
|
||||
+# add table ip t -> make kernel's genid increment (cache->genid remains
|
||||
+# unchanged)
|
||||
+# add table ip t2; -> first command of batch, new table t2 is added to the cache
|
||||
+# add chain ip t2 c -> second command of batch, triggers cache_update() which
|
||||
+# removes table t2 from it
|
||||
+
|
||||
+$NFT -i >/dev/null <<EOF
|
||||
+list ruleset
|
||||
+add table ip t
|
||||
+add table ip t2; add chain ip t2 c
|
||||
+EOF
|
||||
+
|
||||
+# The following test exposes a problem with simple locking of cache when local
|
||||
+# entries are added:
|
||||
+#
|
||||
+# add table ip t3 -> cache would be locked without previous update
|
||||
+# add chain ip t c -> table t is not found due to no cache update happening
|
||||
+
|
||||
+$NFT -i >/dev/null <<EOF
|
||||
+add table ip t3; add chain ip t c
|
||||
+EOF
|
||||
--
|
||||
2.22.0
|
||||
|
115
SOURCES/0066-src-update-cache-if-cmd-is-more-specific.patch
Normal file
115
SOURCES/0066-src-update-cache-if-cmd-is-more-specific.patch
Normal file
@ -0,0 +1,115 @@
|
||||
From 97ce308f4fe922009df5ca2ea84d7c32cdab2532 Mon Sep 17 00:00:00 2001
|
||||
From: Eric Garver <eric@garver.life>
|
||||
Date: Wed, 22 May 2019 21:44:04 +0200
|
||||
Subject: [PATCH] src: update cache if cmd is more specific
|
||||
|
||||
If we've done a partial fetch of the cache and the genid is the same the
|
||||
cache update will be skipped without fetching the needed items. This
|
||||
change flushes the cache if the new request is more specific than the
|
||||
current cache - forcing a cache update which includes the needed items.
|
||||
|
||||
Introduces a simple scoring system which reflects how
|
||||
cache_init_objects() looks at the current command to decide if it is
|
||||
finished already or not. Then use that in cache_needs_more(): If current
|
||||
command's score is higher than old command's, cache needs an update.
|
||||
|
||||
Fixes: 816d8c7659c1 ("Support 'add/insert rule index <IDX>'")
|
||||
Signed-off-by: Eric Garver <eric@garver.life>
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit eeda228c2d1719f5b6276b40ad14a5b3c3e88536)
|
||||
|
||||
Conflicts:
|
||||
src/rule.c
|
||||
-> Context change due to missing commit 0562beb6544d3
|
||||
("src: get rid of netlink_genid_get()").
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
include/nftables.h | 1 +
|
||||
src/rule.c | 20 +++++++++++++++++++
|
||||
.../shell/testcases/cache/0003_cache_update_0 | 14 +++++++++++++
|
||||
3 files changed, 35 insertions(+)
|
||||
|
||||
diff --git a/include/nftables.h b/include/nftables.h
|
||||
index 5e209b417d5a5..e9425d1fc8fb3 100644
|
||||
--- a/include/nftables.h
|
||||
+++ b/include/nftables.h
|
||||
@@ -36,6 +36,7 @@ struct nft_cache {
|
||||
uint16_t genid;
|
||||
struct list_head list;
|
||||
uint32_t seqnum;
|
||||
+ uint32_t cmd;
|
||||
};
|
||||
|
||||
struct mnl_socket;
|
||||
diff --git a/src/rule.c b/src/rule.c
|
||||
index 850b00cfc9874..a03abe1bf0c47 100644
|
||||
--- a/src/rule.c
|
||||
+++ b/src/rule.c
|
||||
@@ -151,6 +151,23 @@ static int cache_init(struct netlink_ctx *ctx, enum cmd_ops cmd)
|
||||
return 0;
|
||||
}
|
||||
|
||||
+/* Return a "score" of how complete local cache will be if
|
||||
+ * cache_init_objects() ran for given cmd. Higher value
|
||||
+ * means more complete. */
|
||||
+static int cache_completeness(enum cmd_ops cmd)
|
||||
+{
|
||||
+ if (cmd == CMD_LIST)
|
||||
+ return 3;
|
||||
+ if (cmd != CMD_RESET)
|
||||
+ return 2;
|
||||
+ return 1;
|
||||
+}
|
||||
+
|
||||
+static bool cache_needs_more(enum cmd_ops old_cmd, enum cmd_ops cmd)
|
||||
+{
|
||||
+ return cache_completeness(old_cmd) < cache_completeness(cmd);
|
||||
+}
|
||||
+
|
||||
int cache_update(struct nft_ctx *nft, enum cmd_ops cmd, struct list_head *msgs)
|
||||
{
|
||||
uint16_t genid;
|
||||
@@ -166,6 +183,8 @@ int cache_update(struct nft_ctx *nft, enum cmd_ops cmd, struct list_head *msgs)
|
||||
replay:
|
||||
ctx.seqnum = cache->seqnum++;
|
||||
genid = netlink_genid_get(&ctx);
|
||||
+ if (cache->genid && cache_needs_more(cache->cmd, cmd))
|
||||
+ cache_release(cache);
|
||||
if (genid && genid == cache->genid)
|
||||
return 0;
|
||||
if (cache->genid)
|
||||
@@ -181,6 +200,7 @@ replay:
|
||||
return -1;
|
||||
}
|
||||
cache->genid = genid;
|
||||
+ cache->cmd = cmd;
|
||||
return 0;
|
||||
}
|
||||
|
||||
diff --git a/tests/shell/testcases/cache/0003_cache_update_0 b/tests/shell/testcases/cache/0003_cache_update_0
|
||||
index deb45db2c43be..fa9b5df380a41 100755
|
||||
--- a/tests/shell/testcases/cache/0003_cache_update_0
|
||||
+++ b/tests/shell/testcases/cache/0003_cache_update_0
|
||||
@@ -27,3 +27,17 @@ EOF
|
||||
$NFT -i >/dev/null <<EOF
|
||||
add table ip t3; add chain ip t c
|
||||
EOF
|
||||
+
|
||||
+# The following test exposes a problem with incremental cache update when
|
||||
+# reading commands from a file that add a rule using the "index" keyword.
|
||||
+#
|
||||
+# add rule ip t4 c meta l4proto icmp accept -> rule to reference in next step
|
||||
+# add rule ip t4 c index 0 drop -> index 0 is not found due to rule cache not
|
||||
+# being updated
|
||||
+$NFT -i >/dev/null <<EOF
|
||||
+add table ip t4; add chain ip t4 c
|
||||
+add rule ip t4 c meta l4proto icmp accept
|
||||
+EOF
|
||||
+$NFT -f - >/dev/null <<EOF
|
||||
+add rule ip t4 c index 0 drop
|
||||
+EOF
|
||||
--
|
||||
2.22.0
|
||||
|
140
SOURCES/0067-src-fix-jumps-on-bigendian-arches.patch
Normal file
140
SOURCES/0067-src-fix-jumps-on-bigendian-arches.patch
Normal file
@ -0,0 +1,140 @@
|
||||
From dddf806059088efd00b90e79456c66774b1976f1 Mon Sep 17 00:00:00 2001
|
||||
From: Florian Westphal <fw@strlen.de>
|
||||
Date: Tue, 13 Aug 2019 22:12:44 +0200
|
||||
Subject: [PATCH] src: fix jumps on bigendian arches
|
||||
|
||||
table bla {
|
||||
chain foo { }
|
||||
chain bar { jump foo }
|
||||
}
|
||||
}
|
||||
|
||||
Fails to restore on big-endian platforms:
|
||||
jump.nft:5:2-9: Error: Could not process rule: No such file or directory
|
||||
jump foo
|
||||
|
||||
nft passes a 0-length name to the kernel.
|
||||
|
||||
This is because when we export the value (the string), we provide
|
||||
the size of the destination buffer.
|
||||
|
||||
In earlier versions, the parser allocated the name with the same
|
||||
fixed size and all was fine.
|
||||
|
||||
After the fix, the export places the name in the wrong location
|
||||
in the destination buffer.
|
||||
|
||||
This makes tests/shell/testcases/chains/0001jumps_0 work on s390x.
|
||||
|
||||
v2: convert one error check to a BUG(), it should not happen unless
|
||||
kernel abi is broken.
|
||||
|
||||
Fixes: 142350f154c78 ("src: invalid read when importing chain name")
|
||||
Signed-off-by: Florian Westphal <fw@strlen.de>
|
||||
Acked-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit fb6d826afb1fa346bdf61c43cd6f7551caee27ba)
|
||||
|
||||
Conflicts:
|
||||
src/datatype.c
|
||||
-> Context change due to missing commit 72931553828af
|
||||
("src: expr: add expression etype")
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/datatype.c | 27 ++++++++++++++++++---------
|
||||
src/netlink.c | 16 +++++++++++++---
|
||||
2 files changed, 31 insertions(+), 12 deletions(-)
|
||||
|
||||
diff --git a/src/datatype.c b/src/datatype.c
|
||||
index 5791a6a41599e..7bea6062de9c4 100644
|
||||
--- a/src/datatype.c
|
||||
+++ b/src/datatype.c
|
||||
@@ -251,10 +251,25 @@ const struct datatype invalid_type = {
|
||||
.print = invalid_type_print,
|
||||
};
|
||||
|
||||
-static void verdict_type_print(const struct expr *expr, struct output_ctx *octx)
|
||||
+static void verdict_jump_chain_print(const char *what, const struct expr *e,
|
||||
+ struct output_ctx *octx)
|
||||
{
|
||||
char chain[NFT_CHAIN_MAXNAMELEN];
|
||||
+ unsigned int len;
|
||||
+
|
||||
+ memset(chain, 0, sizeof(chain));
|
||||
+
|
||||
+ len = e->len / BITS_PER_BYTE;
|
||||
+ if (len >= sizeof(chain))
|
||||
+ BUG("verdict expression length %u is too large (%lu bits max)",
|
||||
+ e->len, (unsigned long)sizeof(chain) * BITS_PER_BYTE);
|
||||
|
||||
+ mpz_export_data(chain, e->value, BYTEORDER_HOST_ENDIAN, len);
|
||||
+ nft_print(octx, "%s %s", what, chain);
|
||||
+}
|
||||
+
|
||||
+static void verdict_type_print(const struct expr *expr, struct output_ctx *octx)
|
||||
+{
|
||||
switch (expr->verdict) {
|
||||
case NFT_CONTINUE:
|
||||
nft_print(octx, "continue");
|
||||
@@ -264,10 +279,7 @@ static void verdict_type_print(const struct expr *expr, struct output_ctx *octx)
|
||||
break;
|
||||
case NFT_JUMP:
|
||||
if (expr->chain->ops->type == EXPR_VALUE) {
|
||||
- mpz_export_data(chain, expr->chain->value,
|
||||
- BYTEORDER_HOST_ENDIAN,
|
||||
- NFT_CHAIN_MAXNAMELEN);
|
||||
- nft_print(octx, "jump %s", chain);
|
||||
+ verdict_jump_chain_print("jump", expr->chain, octx);
|
||||
} else {
|
||||
nft_print(octx, "jump ");
|
||||
expr_print(expr->chain, octx);
|
||||
@@ -275,10 +287,7 @@ static void verdict_type_print(const struct expr *expr, struct output_ctx *octx)
|
||||
break;
|
||||
case NFT_GOTO:
|
||||
if (expr->chain->ops->type == EXPR_VALUE) {
|
||||
- mpz_export_data(chain, expr->chain->value,
|
||||
- BYTEORDER_HOST_ENDIAN,
|
||||
- NFT_CHAIN_MAXNAMELEN);
|
||||
- nft_print(octx, "goto %s", chain);
|
||||
+ verdict_jump_chain_print("goto", expr->chain, octx);
|
||||
} else {
|
||||
nft_print(octx, "goto ");
|
||||
expr_print(expr->chain, octx);
|
||||
diff --git a/src/netlink.c b/src/netlink.c
|
||||
index fc310fd293d64..4ad527a02e871 100644
|
||||
--- a/src/netlink.c
|
||||
+++ b/src/netlink.c
|
||||
@@ -392,17 +392,27 @@ static void netlink_gen_verdict(const struct expr *expr,
|
||||
struct nft_data_linearize *data)
|
||||
{
|
||||
char chain[NFT_CHAIN_MAXNAMELEN];
|
||||
+ unsigned int len;
|
||||
|
||||
data->verdict = expr->verdict;
|
||||
|
||||
switch (expr->verdict) {
|
||||
case NFT_JUMP:
|
||||
case NFT_GOTO:
|
||||
+ len = expr->chain->len / BITS_PER_BYTE;
|
||||
+
|
||||
+ if (!len)
|
||||
+ BUG("chain length is 0");
|
||||
+
|
||||
+ if (len > sizeof(chain))
|
||||
+ BUG("chain is too large (%u, %u max)",
|
||||
+ len, (unsigned int)sizeof(chain));
|
||||
+
|
||||
+ memset(chain, 0, sizeof(chain));
|
||||
+
|
||||
mpz_export_data(chain, expr->chain->value,
|
||||
- BYTEORDER_HOST_ENDIAN,
|
||||
- NFT_CHAIN_MAXNAMELEN);
|
||||
+ BYTEORDER_HOST_ENDIAN, len);
|
||||
snprintf(data->chain, NFT_CHAIN_MAXNAMELEN, "%s", chain);
|
||||
- data->chain[NFT_CHAIN_MAXNAMELEN-1] = '\0';
|
||||
break;
|
||||
}
|
||||
}
|
||||
--
|
||||
2.22.0
|
||||
|
@ -0,0 +1,36 @@
|
||||
From 582df543fab12f6c9032ddf6c789a4e0a7242358 Mon Sep 17 00:00:00 2001
|
||||
From: Florian Westphal <fw@strlen.de>
|
||||
Date: Wed, 14 Aug 2019 13:45:19 +0200
|
||||
Subject: [PATCH] src: json: fix constant parsing on bigendian
|
||||
|
||||
json restore is broken on big-endian because we errounously
|
||||
passed uint8_t with 64 bit size indicator.
|
||||
|
||||
On bigendian, this causes all values to get shifted by 56 bit,
|
||||
this will then cause the eval step to bail because all values
|
||||
are outside of the 8bit 0-255 protocol range.
|
||||
|
||||
Signed-off-by: Florian Westphal <fw@strlen.de>
|
||||
Acked-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 452e7653334bd2808441fe40235307f1f3dd23c4)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/parser_json.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/parser_json.c b/src/parser_json.c
|
||||
index 7e4da4838e40b..231f377c4f2da 100644
|
||||
--- a/src/parser_json.c
|
||||
+++ b/src/parser_json.c
|
||||
@@ -295,7 +295,7 @@ static struct expr *json_parse_constant(struct json_ctx *ctx, const char *name)
|
||||
return constant_expr_alloc(int_loc,
|
||||
constant_tbl[i].dtype,
|
||||
BYTEORDER_HOST_ENDIAN,
|
||||
- 8 * BITS_PER_BYTE,
|
||||
+ BITS_PER_BYTE,
|
||||
&constant_tbl[i].data);
|
||||
}
|
||||
json_error(ctx, "Unknown constant '%s'.", name);
|
||||
--
|
||||
2.22.0
|
||||
|
@ -0,0 +1,61 @@
|
||||
From 7859b19a1e8307b5bee6ca71261dd0bc06fda6f2 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Thu, 9 Jan 2020 13:34:20 +0100
|
||||
Subject: [PATCH] monitor: Do not decompose non-anonymous sets
|
||||
|
||||
They have been decomposed already, trying to do that again causes a
|
||||
segfault. This is a similar fix as in commit 8ecb885589591 ("src:
|
||||
restore --echo with anonymous sets").
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Acked-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit 5d57fa3e99bb9f2044e236d4ddb7d874cfefe1dd)
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/monitor.c | 2 +-
|
||||
tests/monitor/testcases/set-interval.t | 20 ++++++++++++++++++++
|
||||
2 files changed, 21 insertions(+), 1 deletion(-)
|
||||
create mode 100644 tests/monitor/testcases/set-interval.t
|
||||
|
||||
diff --git a/src/monitor.c b/src/monitor.c
|
||||
index 14ccbc5fe04ca..ba8e11888a215 100644
|
||||
--- a/src/monitor.c
|
||||
+++ b/src/monitor.c
|
||||
@@ -500,7 +500,7 @@ static int netlink_events_obj_cb(const struct nlmsghdr *nlh, int type,
|
||||
|
||||
static void rule_map_decompose_cb(struct set *s, void *data)
|
||||
{
|
||||
- if (s->flags & NFT_SET_INTERVAL)
|
||||
+ if (s->flags & (NFT_SET_INTERVAL & NFT_SET_ANONYMOUS))
|
||||
interval_map_decompose(s->init);
|
||||
}
|
||||
|
||||
diff --git a/tests/monitor/testcases/set-interval.t b/tests/monitor/testcases/set-interval.t
|
||||
new file mode 100644
|
||||
index 0000000000000..59930c58243d8
|
||||
--- /dev/null
|
||||
+++ b/tests/monitor/testcases/set-interval.t
|
||||
@@ -0,0 +1,20 @@
|
||||
+# setup first
|
||||
+I add table ip t
|
||||
+I add chain ip t c
|
||||
+O -
|
||||
+J {"add": {"table": {"family": "ip", "name": "t", "handle": 0}}}
|
||||
+J {"add": {"chain": {"family": "ip", "table": "t", "name": "c", "handle": 0}}}
|
||||
+
|
||||
+# add set with elements, monitor output expectedly differs
|
||||
+I add set ip t s { type inet_service; flags interval; elements = { 20, 30-40 }; }
|
||||
+O add set ip t s { type inet_service; flags interval; }
|
||||
+O add element ip t s { 20 }
|
||||
+O add element ip t s { 30-40 }
|
||||
+J {"add": {"set": {"family": "ip", "name": "s", "table": "t", "type": "inet_service", "handle": 0, "flags": ["interval"]}}}
|
||||
+J {"add": {"element": {"family": "ip", "table": "t", "name": "s", "elem": {"set": [20]}}}}
|
||||
+J {"add": {"element": {"family": "ip", "table": "t", "name": "s", "elem": {"set": [{"range": [30, 40]}]}}}}
|
||||
+
|
||||
+# this would crash nft
|
||||
+I add rule ip t c tcp dport @s
|
||||
+O -
|
||||
+J {"add": {"rule": {"family": "ip", "table": "t", "chain": "c", "handle": 0, "expr": [{"match": {"op": "==", "left": {"payload": {"protocol": "tcp", "field": "dport"}}, "right": "@s"}}]}}}
|
||||
--
|
||||
2.24.1
|
||||
|
@ -0,0 +1,94 @@
|
||||
From 299aeba9aa84ae0556a0bba18b7adace89069a91 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Mon, 13 Jan 2020 14:53:24 +0100
|
||||
Subject: [PATCH] monitor: Fix output for ranges in anonymous sets
|
||||
|
||||
Previous fix for named interval sets was simply wrong: Instead of
|
||||
limiting decomposing to anonymous interval sets, it effectively disabled
|
||||
it entirely.
|
||||
|
||||
Since code needs to check for both interval and anonymous bits
|
||||
separately, introduce set_is_interval() helper to keep the code
|
||||
readable.
|
||||
|
||||
Also extend test case to assert ranges in anonymous sets are correctly
|
||||
printed by echo or monitor modes. Without this fix, range boundaries are
|
||||
printed as individual set elements.
|
||||
|
||||
Fixes: 5d57fa3e99bb9 ("monitor: Do not decompose non-anonymous sets")
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Reviewed-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
(cherry picked from commit ddbacd70d061eb1b6808f501969809bfb5d03001)
|
||||
|
||||
Conflicts:
|
||||
include/rule.h
|
||||
- Context change due to missing other set_is_*() helpers.
|
||||
- Manually added set_is_anonymous() helper since code fix uses it.
|
||||
- Manually added missing include statement to make NFT_SET_* flags
|
||||
known.
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
include/rule.h | 11 +++++++++++
|
||||
src/monitor.c | 2 +-
|
||||
tests/monitor/testcases/set-interval.t | 5 +++++
|
||||
3 files changed, 17 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/include/rule.h b/include/rule.h
|
||||
index 12c2984a14362..c2d1d5212649f 100644
|
||||
--- a/include/rule.h
|
||||
+++ b/include/rule.h
|
||||
@@ -4,6 +4,7 @@
|
||||
#include <stdint.h>
|
||||
#include <nftables.h>
|
||||
#include <list.h>
|
||||
+#include <linux/netfilter/nf_tables.h>
|
||||
|
||||
/**
|
||||
* struct handle_spec - handle ID
|
||||
@@ -289,6 +290,16 @@ extern const char *set_policy2str(uint32_t policy);
|
||||
extern void set_print(const struct set *set, struct output_ctx *octx);
|
||||
extern void set_print_plain(const struct set *s, struct output_ctx *octx);
|
||||
|
||||
+static inline bool set_is_anonymous(uint32_t set_flags)
|
||||
+{
|
||||
+ return set_flags & NFT_SET_ANONYMOUS;
|
||||
+}
|
||||
+
|
||||
+static inline bool set_is_interval(uint32_t set_flags)
|
||||
+{
|
||||
+ return set_flags & NFT_SET_INTERVAL;
|
||||
+}
|
||||
+
|
||||
#include <statement.h>
|
||||
|
||||
struct counter {
|
||||
diff --git a/src/monitor.c b/src/monitor.c
|
||||
index ba8e11888a215..9bb3424d76be2 100644
|
||||
--- a/src/monitor.c
|
||||
+++ b/src/monitor.c
|
||||
@@ -500,7 +500,7 @@ static int netlink_events_obj_cb(const struct nlmsghdr *nlh, int type,
|
||||
|
||||
static void rule_map_decompose_cb(struct set *s, void *data)
|
||||
{
|
||||
- if (s->flags & (NFT_SET_INTERVAL & NFT_SET_ANONYMOUS))
|
||||
+ if (set_is_interval(s->flags) && set_is_anonymous(s->flags))
|
||||
interval_map_decompose(s->init);
|
||||
}
|
||||
|
||||
diff --git a/tests/monitor/testcases/set-interval.t b/tests/monitor/testcases/set-interval.t
|
||||
index 59930c58243d8..1fbcfe222a2b0 100644
|
||||
--- a/tests/monitor/testcases/set-interval.t
|
||||
+++ b/tests/monitor/testcases/set-interval.t
|
||||
@@ -18,3 +18,8 @@ J {"add": {"element": {"family": "ip", "table": "t", "name": "s", "elem": {"set"
|
||||
I add rule ip t c tcp dport @s
|
||||
O -
|
||||
J {"add": {"rule": {"family": "ip", "table": "t", "chain": "c", "handle": 0, "expr": [{"match": {"op": "==", "left": {"payload": {"protocol": "tcp", "field": "dport"}}, "right": "@s"}}]}}}
|
||||
+
|
||||
+# test anonymous interval sets as well
|
||||
+I add rule ip t c tcp dport { 20, 30-40 }
|
||||
+O -
|
||||
+J {"add": {"rule": {"family": "ip", "table": "t", "chain": "c", "handle": 0, "expr": [{"match": {"op": "==", "left": {"payload": {"protocol": "tcp", "field": "dport"}}, "right": {"set": [20, {"range": [30, 40]}]}}}]}}}
|
||||
--
|
||||
2.24.1
|
||||
|
14
SOURCES/nftables.conf
Normal file
14
SOURCES/nftables.conf
Normal file
@ -0,0 +1,14 @@
|
||||
#
|
||||
# This this will contain your nftables rules and
|
||||
# is read by the systemd service when restarting
|
||||
#
|
||||
# These provide an iptables like set of filters
|
||||
# (uncomment to include)
|
||||
# include "/etc/nftables/bridge-filter.nft"
|
||||
# include "/etc/nftables/inet-filter.nft"
|
||||
# include "/etc/nftables/ipv4-filter.nft"
|
||||
# include "/etc/nftables/ipv4-mangle.nft"
|
||||
# include "/etc/nftables/ipv4-nat.nft"
|
||||
# include "/etc/nftables/ipv6-filter.nft"
|
||||
# include "/etc/nftables/ipv6-mangle.nft"
|
||||
# include "/etc/nftables/ipv6-nat.nft"
|
17
SOURCES/nftables.service
Normal file
17
SOURCES/nftables.service
Normal file
@ -0,0 +1,17 @@
|
||||
[Unit]
|
||||
Description=Netfilter Tables
|
||||
Documentation=man:nft(8)
|
||||
Wants=network-pre.target
|
||||
Before=network-pre.target
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ProtectSystem=full
|
||||
ProtectHome=true
|
||||
ExecStart=/sbin/nft -f /etc/sysconfig/nftables.conf
|
||||
ExecReload=/sbin/nft 'flush ruleset; include "/etc/sysconfig/nftables.conf";'
|
||||
ExecStop=/sbin/nft flush ruleset
|
||||
RemainAfterExit=yes
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
338
SPECS/nftables.spec
Normal file
338
SPECS/nftables.spec
Normal file
@ -0,0 +1,338 @@
|
||||
Name: nftables
|
||||
Version: 0.9.0
|
||||
Release: 14%{?dist}.1
|
||||
# Upstream released a 0.100 version, then 0.4. Need Epoch to get back on track.
|
||||
Epoch: 1
|
||||
Summary: Netfilter Tables userspace utillites
|
||||
|
||||
License: GPLv2
|
||||
URL: http://netfilter.org/projects/nftables/
|
||||
Source0: http://ftp.netfilter.org/pub/nftables/nftables-%{version}.tar.bz2
|
||||
Source1: nftables.service
|
||||
Source2: nftables.conf
|
||||
|
||||
Patch1: 0001-evaluate-reject-Allow-icmpx-in-inet-bridge-families.patch
|
||||
Patch2: 0002-monitor-Drop-fake-XML-support.patch
|
||||
Patch3: 0003-monitor-Drop-update-table-and-update-chain-cases.patch
|
||||
Patch4: 0004-monitor-Fix-printing-of-ct-objects.patch
|
||||
Patch5: 0005-monitor-Use-libnftables-JSON-output.patch
|
||||
Patch6: 0006-tests-monitor-Test-JSON-output-as-well.patch
|
||||
Patch7: 0007-segtree-bogus-range-via-get-set-element-on-existing-.patch
|
||||
Patch8: 0008-segtree-disantangle-get_set_interval_end.patch
|
||||
Patch9: 0009-segtree-memleak-in-get_set_decompose.patch
|
||||
Patch10: 0010-segtree-stop-iteration-on-existing-elements-in-case-.patch
|
||||
Patch11: 0011-segtree-incorrect-handling-of-last-element-in-get_se.patch
|
||||
Patch12: 0012-segtree-set-proper-error-cause-on-existing-elements.patch
|
||||
Patch13: 0013-rule-fix-memleak-in-do_get_setelems.patch
|
||||
Patch14: 0014-Fix-memleak-in-netlink_parse_fwd-error-path.patch
|
||||
Patch15: 0015-libnftables-Fix-memleak-in-nft_parse_bison_filename.patch
|
||||
Patch16: 0016-src-pass-struct-nft_ctx-through-struct-eval_ctx.patch
|
||||
Patch17: 0017-src-trace-fix-policy-printing.patch
|
||||
Patch18: 0018-rule-list-only-the-table-containing-object.patch
|
||||
Patch19: 0019-src-pass-struct-nft_ctx-through-struct-netlink_ctx.patch
|
||||
Patch20: 0020-netlink-reset-mnl_socket-field-in-struct-nft_ctx-on-.patch
|
||||
Patch21: 0021-src-remove-opts-field-from-struct-xt_stmt.patch
|
||||
Patch22: 0022-JSON-Support-latest-enhancements-of-fwd-statement.patch
|
||||
Patch23: 0023-parser_json-Fix-for-ineffective-family-value-checks.patch
|
||||
Patch24: 0024-json-Fix-memleak-in-dup_stmt_json.patch
|
||||
Patch25: 0025-json-Fix-for-recent-changes-to-context-structs.patch
|
||||
Patch26: 0026-parser_bison-Fix-for-ECN-keyword-in-LHS-of-relationa.patch
|
||||
Patch27: 0027-nft.8-Update-meta-pkt_type-value-description.patch
|
||||
Patch28: 0028-json-Work-around-segfault-when-encountering-xt-stmt.patch
|
||||
Patch29: 0029-nft.8-Document-log-level-audit.patch
|
||||
Patch30: 0030-nft.8-Clarify-index-option-of-add-rule-command.patch
|
||||
Patch31: 0031-src-Reject-export-vm-json-command.patch
|
||||
Patch32: 0032-datatype-add-stolen-verdict.patch
|
||||
Patch33: 0033-libnftables-Fix-exit_cookie.patch
|
||||
Patch34: 0034-scanner-Do-not-convert-tabs-into-spaces.patch
|
||||
Patch35: 0035-netlink_delinearize-Refactor-meta_may_dependency_kil.patch
|
||||
Patch36: 0036-evaluate-skip-evaluation-of-datatype-concatenations.patch
|
||||
Patch37: 0037-tests-shell-add-tests-for-listing-objects.patch
|
||||
Patch38: 0038-rule-fix-object-listing-when-no-table-is-given.patch
|
||||
Patch39: 0039-proto-fix-icmp-icmpv6-code-datatype.patch
|
||||
Patch40: 0040-evaluate-throw-distinct-error-if-map-exists-but-cont.patch
|
||||
Patch41: 0041-parser-bail-out-on-incorrect-burst-unit.patch
|
||||
Patch42: 0042-src-fix-netdev-family-device-name-parsing.patch
|
||||
Patch43: 0043-libnftables-Print-errors-before-freeing-commands.patch
|
||||
Patch44: 0044-segtree-fix-crash-when-debug-mode-is-active.patch
|
||||
Patch45: 0045-parser_bison-no-need-for-statement-separator-for-ct-.patch
|
||||
Patch46: 0046-ct-use-nft_print-instead-of-printf.patch
|
||||
Patch47: 0047-parser_bison-type_identifier-string-memleak.patch
|
||||
Patch48: 0048-src-missing-destroy-function-in-statement-definition.patch
|
||||
Patch49: 0049-tests-shell-validate-too-deep-jumpstack-from-basecha.patch
|
||||
Patch50: 0050-netlink-remove-markup-json-parsing-code.patch
|
||||
Patch51: 0051-rule-limit-don-t-print-default-burst-value.patch
|
||||
Patch52: 0052-JSON-Review-verdict-statement-and-expression.patch
|
||||
Patch53: 0053-parser_json-Duplicate-chain-name-when-parsing-jump-v.patch
|
||||
Patch54: 0054-src-Introduce-chain_expr-in-jump-and-goto-statements.patch
|
||||
Patch55: 0055-src-Allow-goto-and-jump-to-a-variable.patch
|
||||
Patch56: 0056-parser_json-Fix-and-simplify-verdict-expression-pars.patch
|
||||
Patch57: 0057-src-invalid-read-when-importing-chain-name.patch
|
||||
Patch58: 0058-expression-use-expr_clone-from-verdict_expr_clone.patch
|
||||
Patch59: 0059-parser_bison-free-chain-name-after-creating-constant.patch
|
||||
Patch60: 0060-doc-update-nft-list-plural-form-parameters.patch
|
||||
Patch61: 0061-doc-Add-minimal-description-of-v-map-statements.patch
|
||||
Patch62: 0062-xt-pass-octx-to-translate-function.patch
|
||||
Patch63: 0063-xt-always-build-with-a-minimal-support-for-xt-match-.patch
|
||||
Patch64: 0064-src-fix-double-free-on-xt-stmt-destruction.patch
|
||||
Patch65: 0065-tests-shell-Add-testcase-for-cache-update-problems.patch
|
||||
Patch66: 0066-src-update-cache-if-cmd-is-more-specific.patch
|
||||
Patch67: 0067-src-fix-jumps-on-bigendian-arches.patch
|
||||
Patch68: 0068-src-json-fix-constant-parsing-on-bigendian.patch
|
||||
Patch69: 0069-monitor-Do-not-decompose-non-anonymous-sets.patch
|
||||
Patch70: 0070-monitor-Fix-output-for-ranges-in-anonymous-sets.patch
|
||||
|
||||
BuildRequires: autogen
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
BuildRequires: libtool
|
||||
BuildRequires: gcc
|
||||
BuildRequires: flex
|
||||
BuildRequires: bison
|
||||
BuildRequires: libmnl-devel
|
||||
BuildRequires: gmp-devel
|
||||
BuildRequires: readline-devel
|
||||
BuildRequires: libnftnl-devel
|
||||
BuildRequires: docbook2X
|
||||
BuildRequires: systemd
|
||||
BuildRequires: jansson-devel
|
||||
BuildRequires: iptables-devel
|
||||
|
||||
%description
|
||||
Netfilter Tables userspace utilities.
|
||||
|
||||
%package devel
|
||||
Summary: Development library for nftables / libnftables
|
||||
Group: Development/Libraries
|
||||
Requires: %{name} = %{epoch}:%{version}-%{release}
|
||||
Requires: pkgconfig
|
||||
|
||||
%description devel
|
||||
Development tools and static libraries and header files for the libnftables library.
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
autoreconf -fi
|
||||
rm -Rf autom4te*.cache config.h.in~
|
||||
%configure --disable-silent-rules --with-json --with-xtables
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
%make_install
|
||||
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
||||
|
||||
# Don't ship static lib (for now at least)
|
||||
rm -f $RPM_BUILD_ROOT/%{_libdir}/libnftables.a
|
||||
|
||||
chmod 644 $RPM_BUILD_ROOT/%{_mandir}/man8/nft*
|
||||
|
||||
mkdir -p $RPM_BUILD_ROOT/%{_unitdir}
|
||||
cp -a %{SOURCE1} $RPM_BUILD_ROOT/%{_unitdir}/
|
||||
|
||||
mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig
|
||||
cp -a %{SOURCE2} $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig/
|
||||
chmod 600 $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig/nftables.conf
|
||||
|
||||
cp files/examples/netdev-ingress.nft $RPM_BUILD_ROOT/%{_sysconfdir}/nftables
|
||||
chmod 750 $RPM_BUILD_ROOT/%{_sysconfdir}/nftables
|
||||
chmod 600 $RPM_BUILD_ROOT/%{_sysconfdir}/nftables/*.nft
|
||||
|
||||
%post
|
||||
%systemd_post nftables.service
|
||||
|
||||
%preun
|
||||
%systemd_preun nftables.service
|
||||
|
||||
%postun
|
||||
%systemd_postun_with_restart nftables.service
|
||||
|
||||
%post devel
|
||||
%ldconfig_post
|
||||
|
||||
%postun devel
|
||||
%ldconfig_postun
|
||||
|
||||
%files
|
||||
%license COPYING
|
||||
%config(noreplace) %{_sysconfdir}/nftables/
|
||||
%config(noreplace) %{_sysconfdir}/sysconfig/nftables.conf
|
||||
%{_sbindir}/nft
|
||||
%{_libdir}/libnftables.so.*
|
||||
%{_mandir}/man8/nft*
|
||||
%{_unitdir}/nftables.service
|
||||
|
||||
%files devel
|
||||
%{_libdir}/libnftables.so
|
||||
%{_libdir}/pkgconfig/libnftables.pc
|
||||
%{_includedir}/nftables/libnftables.h
|
||||
|
||||
%changelog
|
||||
* Wed Feb 12 2020 Phil Sutter <psutter@redhat.com> - 1:0.9.0-14.1
|
||||
- monitor: Fix output for ranges in anonymous sets
|
||||
- monitor: Do not decompose non-anonymous sets
|
||||
|
||||
* Mon Aug 12 2019 Phil Sutter <psutter@redhat.com> - 1:0.9.0-14
|
||||
- src: fix jumps on bigendian arches
|
||||
- src: json: fix constant parsing on bigendian
|
||||
|
||||
* Thu Aug 08 2019 Phil Sutter <psutter@redhat.com> - 1:0.9.0-13
|
||||
- Fix for adding a rule with index and set reference
|
||||
|
||||
* Wed Jul 31 2019 Phil Sutter <psutter@redhat.com> - 1:0.9.0-12
|
||||
- Fix permissions of /etc/nftables directory
|
||||
|
||||
* Wed Jun 26 2019 Phil Sutter <psutter@redhat.com> - 1:0.9.0-11
|
||||
- Fix segfault with xtables support
|
||||
|
||||
* Wed Jun 26 2019 Phil Sutter <psutter@redhat.com> - 1:0.9.0-10
|
||||
- Fix typo in spec file
|
||||
|
||||
* Wed Jun 26 2019 Phil Sutter <psutter@redhat.com> - 1:0.9.0-9
|
||||
- Allow variables in jump statement
|
||||
- Make example configs readable only by root
|
||||
- Document nft list parameters
|
||||
- Document vmap statement
|
||||
- Install netdev-ingress.nft sample config in the right spot
|
||||
- Backport upstream fixes since last release
|
||||
|
||||
* Fri Mar 01 2019 Phil Sutter - 1:0.9.0-8
|
||||
- Add missing patch to spec file
|
||||
|
||||
* Fri Dec 21 2018 Phil Sutter - 1:0.9.0-7
|
||||
- src: Reject 'export vm json' command
|
||||
|
||||
* Tue Dec 18 2018 Phil Sutter - 1:0.9.0-6
|
||||
- Rebuild for updated libnftnl
|
||||
|
||||
* Thu Dec 13 2018 Phil Sutter - 1:0.9.0-5
|
||||
- nft.8: Document log level audit
|
||||
- nft.8: Clarify 'index' option of add rule command
|
||||
|
||||
* Thu Oct 25 2018 Phil Sutter - 1:0.9.0-4
|
||||
- Add fixes for covscan report
|
||||
- Fix for ECN keyword in LHS of relational
|
||||
- Update meta pkt_type value description
|
||||
- Fix for segfault with JSON output if xt expression is present
|
||||
- Add missing nft suffix to files included from /etc/sysconfig/nftables.conf
|
||||
- Use native JSON API in nft monitor
|
||||
|
||||
* Thu Oct 11 2018 Phil Sutter - 1:0.9.0-3
|
||||
- Enable xtables support
|
||||
- Enable JSON support
|
||||
|
||||
* Mon Sep 10 2018 Phil Sutter - 1:0.9.0-2
|
||||
- Allow icmpx in inet/bridge families
|
||||
|
||||
* Tue Aug 14 2018 Phil Sutter - 1:0.9.0-1
|
||||
- New version 0.9.0
|
||||
- Install libnftables
|
||||
- Add devel sub-package
|
||||
- Add gcc BuildRequires
|
||||
|
||||
* Sat Mar 03 2018 Kevin Fenzi <kevin@scrye.com> - 0.8.3-1
|
||||
- Update to 0.8.3. Fixes bug #1551207
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.8.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Mon Feb 05 2018 Kevin Fenzi <kevin@scrye.com> - 0.8.2-1
|
||||
- Update to 0.8.2. Fixes bug #1541582
|
||||
|
||||
* Tue Jan 16 2018 Kevin Fenzi <kevin@scrye.com> - 0.8.1-1
|
||||
- Update to 0.8.1. Fixes bug #1534982
|
||||
|
||||
* Sun Oct 22 2017 Kevin Fenzi <kevin@scrye.com> - 0.8-1
|
||||
- Update to 0.8.
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.7-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.7-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.7-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Thu Jan 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 1:0.7-2
|
||||
- Rebuild for readline 7.x
|
||||
|
||||
* Thu Dec 22 2016 Kevin Fenzi <kevin@scrye.com> - 0.7-1
|
||||
- Update to 0.7
|
||||
|
||||
* Fri Jul 15 2016 Kevin Fenzi <kevin@scrye.com> - 0.6-2
|
||||
- Rebuild for new glibc symbols
|
||||
|
||||
* Thu Jun 02 2016 Kevin Fenzi <kevin@scrye.com> - 0.6-1
|
||||
- Update to 0.6.
|
||||
|
||||
* Sun Apr 10 2016 Kevin Fenzi <kevin@scrye.com> - 0.5-4
|
||||
- Add example config files and move config to /etc/sysconfig. Fixes bug #1313936
|
||||
|
||||
* Fri Mar 25 2016 Kevin Fenzi <kevin@scrye.com> - 0.5-3
|
||||
- Add systemd unit file. Fixes bug #1313936
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Thu Sep 17 2015 Kevin Fenzi <kevin@scrye.com> 0.5-1
|
||||
- Update to 0.5
|
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.4-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Sat Jan 10 2015 Kevin Fenzi <kevin@scrye.com> 0.4-2
|
||||
- Add patch to fix nft -f dep gen.
|
||||
|
||||
* Fri Dec 26 2014 Kevin Fenzi <kevin@scrye.com> 0.4-1
|
||||
- Update to 0.4
|
||||
- Add Epoch to fix versioning.
|
||||
|
||||
* Wed Sep 03 2014 Kevin Fenzi <kevin@scrye.com> 0.100-4.20140903git
|
||||
- Update to 20140903 snapshot
|
||||
|
||||
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.100-4.20140704git
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Fri Jul 04 2014 Kevin Fenzi <kevin@scrye.com> 0.100-3.20140704git
|
||||
- Update to new snapshot
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.100-2.20140426git
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Sat Apr 26 2014 Kevin Fenzi <kevin@scrye.com> 0.100-1.20140426git
|
||||
- Update t0 20140426
|
||||
|
||||
* Sun Mar 30 2014 Kevin Fenzi <kevin@scrye.com> 0.100-1.20140330git
|
||||
- Update to 20140330 snapshot
|
||||
- Sync versions to be post 0.100 release.
|
||||
|
||||
* Wed Mar 26 2014 Kevin Fenzi <kevin@scrye.com> 0-0.7.20140326git
|
||||
- Update to 20140326 snapshot
|
||||
- Fix permissions on man pages.
|
||||
|
||||
* Mon Mar 24 2014 Kevin Fenzi <kevin@scrye.com> 0-0.6.20140324git
|
||||
- Update to 20140324 snapshot
|
||||
|
||||
* Fri Mar 07 2014 Kevin Fenzi <kevin@scrye.com> 0-0.5.20140307git
|
||||
- Update to 20140307
|
||||
|
||||
* Sat Jan 25 2014 Kevin Fenzi <kevin@scrye.com> 0-0.4.20140125git
|
||||
- Update to 20140125 snapshot
|
||||
|
||||
* Sat Jan 18 2014 Kevin Fenzi <kevin@scrye.com> 0-0.3.20140118git
|
||||
- Update to 20140118 snapshot
|
||||
- Fixed License tag to be correct
|
||||
- Fixed changelog
|
||||
- nft scripts now use full path for nft
|
||||
- Fixed man page building
|
||||
- Dropped unneeded rm in install
|
||||
- Patched build to not be silent.
|
||||
|
||||
* Tue Dec 03 2013 Kevin Fenzi <kevin@scrye.com> 0-0.2.20131202git
|
||||
- Use upstream snapshots for source.
|
||||
- Use 0 for version.
|
||||
|
||||
* Sat Nov 30 2013 Kevin Fenzi <kevin@scrye.com> 0-0.1
|
||||
- initial version for Fedora review
|
Loading…
Reference in New Issue
Block a user