diff options
author | Phil Oester <kernel@linuxace.com> | 2013-08-07 16:44:49 -0700 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2013-08-08 18:05:04 +0200 |
commit | b28d4dcc9f5559e9c03f35458ac103cfb89d8f87 (patch) | |
tree | bacd947292540fe3ae57775506ebf73c46c0fe99 | |
parent | 71a2b0c78a58387ec476673f1abc75e635ca62f6 (diff) |
iptables: state match incompatibilty across versions
As reported in Debian bug #718810 [1], state match rules added in < 1.4.16
iptables versions are incorrectly displayed by >= 1.4.16 iptables versions.
Issue bisected to commit 0d701631 (libxt_state: replace as an alias to
xt_conntrack).
Fix this by adding the missing .print and .save functions for state match
aliases in the conntrack match.
[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=718810
Signed-off-by: Phil Oester <kernel@linuxace.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
-rw-r--r-- | extensions/libxt_conntrack.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/extensions/libxt_conntrack.c b/extensions/libxt_conntrack.c index 9f7b5db2..128bbd20 100644 --- a/extensions/libxt_conntrack.c +++ b/extensions/libxt_conntrack.c @@ -1272,6 +1272,8 @@ static struct xtables_match conntrack_mt_reg[] = { .size = XT_ALIGN(sizeof(struct xt_conntrack_mtinfo1)), .userspacesize = XT_ALIGN(sizeof(struct xt_conntrack_mtinfo1)), .help = state_help, + .print = state_print, + .save = state_save, .x6_parse = state_ct1_parse, .x6_options = state_opts, }, @@ -1285,6 +1287,8 @@ static struct xtables_match conntrack_mt_reg[] = { .size = XT_ALIGN(sizeof(struct xt_conntrack_mtinfo2)), .userspacesize = XT_ALIGN(sizeof(struct xt_conntrack_mtinfo2)), .help = state_help, + .print = state_print, + .save = state_save, .x6_parse = state_ct23_parse, .x6_options = state_opts, }, @@ -1298,6 +1302,8 @@ static struct xtables_match conntrack_mt_reg[] = { .size = XT_ALIGN(sizeof(struct xt_conntrack_mtinfo3)), .userspacesize = XT_ALIGN(sizeof(struct xt_conntrack_mtinfo3)), .help = state_help, + .print = state_print, + .save = state_save, .x6_parse = state_ct23_parse, .x6_options = state_opts, }, |