]> git.ipfire.org Git - thirdparty/iptables.git/commitdiff
xtables: eliminate nft_ipv{4,6}_rule_find()
authorPhil Sutter <phil@nwl.cc>
Thu, 19 Jul 2018 16:32:02 +0000 (18:32 +0200)
committerFlorian Westphal <fw@strlen.de>
Thu, 19 Jul 2018 21:09:16 +0000 (23:09 +0200)
Both functions just pass their parameters 1:1 to nft_ipv46_rule_find, so
replace them by the latter after minor adjustment to match expected
callback signature.

Signed-off-by: Phil Sutter <phil@nwl.cc>
Signed-off-by: Florian Westphal <fw@strlen.de>
iptables/nft-ipv4.c
iptables/nft-ipv6.c
iptables/nft-shared.c
iptables/nft-shared.h

index 2afb1453bdc866e3f9160576f9103c0fb594e276..2ca3155eae69e92400d5c0163db6fa0b408f332d 100644 (file)
@@ -414,14 +414,6 @@ static void nft_ipv4_post_parse(int command,
                              " source or destination IP addresses");
 }
 
-static bool nft_ipv4_rule_find(struct nft_family_ops *ops,
-                              struct nftnl_rule *r, void *data)
-{
-       struct iptables_command_state *cs = data;
-
-       return nft_ipv46_rule_find(ops, r, cs);
-}
-
 static void nft_ipv4_save_counters(const void *data)
 {
        const struct iptables_command_state *cs = data;
@@ -506,6 +498,6 @@ struct nft_family_ops nft_family_ops_ipv4 = {
        .parse_target           = nft_ipv46_parse_target,
        .rule_to_cs             = nft_rule_to_iptables_command_state,
        .clear_cs               = nft_clear_iptables_command_state,
-       .rule_find              = nft_ipv4_rule_find,
+       .rule_find              = nft_ipv46_rule_find,
        .xlate                  = nft_ipv4_xlate,
 };
index ddaeb2b4264ed621b4a601560217b2a99679862b..29b50878bef4756cc3fc033e65b3ef6c62bd4294 100644 (file)
@@ -367,14 +367,6 @@ static void nft_ipv6_post_parse(int command, struct iptables_command_state *cs,
                              " source or destination IP addresses");
 }
 
-static bool nft_ipv6_rule_find(struct nft_family_ops *ops,
-                              struct nftnl_rule *r, void *data)
-{
-       struct iptables_command_state *cs = data;
-
-       return nft_ipv46_rule_find(ops, r, cs);
-}
-
 static void nft_ipv6_save_counters(const void *data)
 {
        const struct iptables_command_state *cs = data;
@@ -461,6 +453,6 @@ struct nft_family_ops nft_family_ops_ipv6 = {
        .parse_target           = nft_ipv46_parse_target,
        .rule_to_cs             = nft_rule_to_iptables_command_state,
        .clear_cs               = nft_clear_iptables_command_state,
-       .rule_find              = nft_ipv6_rule_find,
+       .rule_find              = nft_ipv46_rule_find,
        .xlate                  = nft_ipv6_xlate,
 };
index 7abe158bdc55fbe8974dec7417ffa1214b2d4f2d..45e308679925fcc84e4d26534a7fcfa33d4f5c46 100644 (file)
@@ -932,9 +932,9 @@ void nft_ipv46_parse_target(struct xtables_target *t, void *data)
 }
 
 bool nft_ipv46_rule_find(struct nft_family_ops *ops,
-                        struct nftnl_rule *r, struct iptables_command_state *cs)
+                        struct nftnl_rule *r, void *data)
 {
-       struct iptables_command_state this = {};
+       struct iptables_command_state *cs = data, this = {};
 
        nft_rule_to_iptables_command_state(r, &this);
 
index deded06b633ac61b9e3b71bf3e34017d8694000a..e4c021e1ac69e4d94fb4e6869cb7b510b08d85d7 100644 (file)
@@ -176,7 +176,7 @@ struct nft_family_ops *nft_family_ops_lookup(int family);
 struct nft_handle;
 void nft_ipv46_parse_target(struct xtables_target *t, void *data);
 bool nft_ipv46_rule_find(struct nft_family_ops *ops, struct nftnl_rule *r,
-                        struct iptables_command_state *cs);
+                        void *data);
 
 bool compare_matches(struct xtables_rule_match *mt1, struct xtables_rule_match *mt2);
 bool compare_targets(struct xtables_target *tg1, struct xtables_target *tg2);