]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
netfilter: nat: remove l3 manip_pkt hook
authorFlorian Westphal <fw@strlen.de>
Tue, 19 Feb 2019 16:38:23 +0000 (17:38 +0100)
committerPablo Neira Ayuso <pablo@netfilter.org>
Wed, 27 Feb 2019 09:53:05 +0000 (10:53 +0100)
We can now use direct calls.

Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
include/net/netfilter/nf_nat_l3proto.h
net/netfilter/nf_nat_core.c
net/netfilter/nf_nat_proto.c

index 100972bbd9adfd924399fcc06cdbfafa2cbd49d8..62ef15eb75949d4ec870d0512371012ee790b43f 100644 (file)
@@ -5,11 +5,6 @@
 struct nf_nat_l3proto {
        u8      l3proto;
 
-       bool    (*manip_pkt)(struct sk_buff *skb,
-                            unsigned int iphdroff,
-                            const struct nf_conntrack_tuple *target,
-                            enum nf_nat_manip_type maniptype);
-
        void    (*csum_update)(struct sk_buff *skb, unsigned int iphdroff,
                               __sum16 *check,
                               const struct nf_conntrack_tuple *t,
@@ -20,6 +15,10 @@ struct nf_nat_l3proto {
                               int datalen, int oldlen);
 };
 
+unsigned int nf_nat_manip_pkt(struct sk_buff *skb, struct nf_conn *ct,
+                             enum nf_nat_manip_type mtype,
+                             enum ip_conntrack_dir dir);
+
 int nf_nat_l3proto_register(const struct nf_nat_l3proto *);
 void nf_nat_l3proto_unregister(const struct nf_nat_l3proto *);
 const struct nf_nat_l3proto *__nf_nat_l3proto_find(u8 l3proto);
index 0c548ff215b2b34dbaba6b2543e301be0ddea1ba..8c5c2918938366a6f3681278525deab6006e6076 100644 (file)
@@ -699,23 +699,6 @@ nf_nat_alloc_null_binding(struct nf_conn *ct, unsigned int hooknum)
 }
 EXPORT_SYMBOL_GPL(nf_nat_alloc_null_binding);
 
-static unsigned int nf_nat_manip_pkt(struct sk_buff *skb, struct nf_conn *ct,
-                                    enum nf_nat_manip_type mtype,
-                                    enum ip_conntrack_dir dir)
-{
-       const struct nf_nat_l3proto *l3proto;
-       struct nf_conntrack_tuple target;
-
-       /* We are aiming to look like inverse of other direction. */
-       nf_ct_invert_tuple(&target, &ct->tuplehash[!dir].tuple);
-
-       l3proto = __nf_nat_l3proto_find(target.src.l3num);
-       if (!l3proto->manip_pkt(skb, 0, &target, mtype))
-               return NF_DROP;
-
-       return NF_ACCEPT;
-}
-
 /* Do packet manipulations according to nf_nat_setup_info. */
 unsigned int nf_nat_packet(struct nf_conn *ct,
                           enum ip_conntrack_info ctinfo,
index ecb988ed4d699025bfa24f5a4aaab54c58622b7b..5a6496dbf1bf75e8eec9ad561ca7c91fc7cbef82 100644 (file)
@@ -425,6 +425,32 @@ manip_addr:
        return true;
 }
 
+unsigned int nf_nat_manip_pkt(struct sk_buff *skb, struct nf_conn *ct,
+                             enum nf_nat_manip_type mtype,
+                             enum ip_conntrack_dir dir)
+{
+       struct nf_conntrack_tuple target;
+
+       /* We are aiming to look like inverse of other direction. */
+       nf_ct_invert_tuple(&target, &ct->tuplehash[!dir].tuple);
+
+       switch (target.src.l3num) {
+       case NFPROTO_IPV6:
+               if (nf_nat_ipv6_manip_pkt(skb, 0, &target, mtype))
+                       return NF_ACCEPT;
+               break;
+       case NFPROTO_IPV4:
+               if (nf_nat_ipv4_manip_pkt(skb, 0, &target, mtype))
+                       return NF_ACCEPT;
+               break;
+       default:
+               WARN_ON_ONCE(1);
+               break;
+       }
+
+       return NF_DROP;
+}
+
 static void nf_nat_ipv4_csum_update(struct sk_buff *skb,
                                    unsigned int iphdroff, __sum16 *check,
                                    const struct nf_conntrack_tuple *t,
@@ -506,7 +532,6 @@ static void nf_nat_ipv6_csum_recalc(struct sk_buff *skb,
 
 static const struct nf_nat_l3proto nf_nat_l3proto_ipv4 = {
        .l3proto                = NFPROTO_IPV4,
-       .manip_pkt              = nf_nat_ipv4_manip_pkt,
        .csum_update            = nf_nat_ipv4_csum_update,
        .csum_recalc            = nf_nat_ipv4_csum_recalc,
 };
@@ -759,7 +784,6 @@ void nf_nat_l3proto_exit(void)
 #if IS_ENABLED(CONFIG_IPV6)
 static const struct nf_nat_l3proto nf_nat_l3proto_ipv6 = {
        .l3proto                = NFPROTO_IPV6,
-       .manip_pkt              = nf_nat_ipv6_manip_pkt,
        .csum_update            = nf_nat_ipv6_csum_update,
        .csum_recalc            = nf_nat_ipv6_csum_recalc,
 };