]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
netfilter: conntrack: don't cache nlattr_tuple_size result in nla_size
authorFlorian Westphal <fw@strlen.de>
Thu, 2 Nov 2017 18:41:09 +0000 (19:41 +0100)
committerPablo Neira Ayuso <pablo@netfilter.org>
Mon, 6 Nov 2017 15:48:38 +0000 (16:48 +0100)
We currently call ->nlattr_tuple_size() once at register time and
cache result in l4proto->nla_size.

nla_size is the only member that is written to, avoiding this would
allow to make l4proto trackers const.

We can use ->nlattr_tuple_size() at run time, and cache result in
the individual trackers instead.

This is an intermediate step, next patch removes nlattr_size()
callback and computes size at compile time, then removes nla_size.

Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
include/net/netfilter/nf_conntrack_l4proto.h
net/ipv4/netfilter/nf_conntrack_proto_icmp.c
net/ipv6/netfilter/nf_conntrack_proto_icmpv6.c
net/netfilter/nf_conntrack_core.c
net/netfilter/nf_conntrack_netlink.c
net/netfilter/nf_conntrack_proto.c
net/netfilter/nf_conntrack_proto_tcp.c

index e065188741444aa46e56c487d3f5e6504de839cc..46e786ffcf2fc28a7cab4f929c3d01e77306716d 100644 (file)
@@ -74,7 +74,7 @@ struct nf_conntrack_l4proto {
        int (*tuple_to_nlattr)(struct sk_buff *skb,
                               const struct nf_conntrack_tuple *t);
        /* Calculate tuple nlattr size */
-       int (*nlattr_tuple_size)(void);
+       unsigned int (*nlattr_tuple_size)(void);
        int (*nlattr_to_tuple)(struct nlattr *tb[],
                               struct nf_conntrack_tuple *t);
        const struct nla_policy *nla_policy;
@@ -144,7 +144,7 @@ int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb,
                               const struct nf_conntrack_tuple *tuple);
 int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
                               struct nf_conntrack_tuple *t);
-int nf_ct_port_nlattr_tuple_size(void);
+unsigned int nf_ct_port_nlattr_tuple_size(void);
 extern const struct nla_policy nf_ct_port_nla_policy[];
 
 #ifdef CONFIG_SYSCTL
index 8969420cecc3db061ec9e3599fa0dd81f96349d0..1849fedd9b818d2c55147a98f91bae97f89bfa85 100644 (file)
@@ -258,9 +258,14 @@ static int icmp_nlattr_to_tuple(struct nlattr *tb[],
        return 0;
 }
 
-static int icmp_nlattr_tuple_size(void)
+static unsigned int icmp_nlattr_tuple_size(void)
 {
-       return nla_policy_len(icmp_nla_policy, CTA_PROTO_MAX + 1);
+       static unsigned int size __read_mostly;
+
+       if (!size)
+               size = nla_policy_len(icmp_nla_policy, CTA_PROTO_MAX + 1);
+
+       return size;
 }
 #endif
 
index dca921df28e1f8cb3b555ad2274b435e3a8716c7..3ac0d826afc4b08ba3975a2cbe4a5e298654a6a9 100644 (file)
@@ -259,9 +259,14 @@ static int icmpv6_nlattr_to_tuple(struct nlattr *tb[],
        return 0;
 }
 
-static int icmpv6_nlattr_tuple_size(void)
+static unsigned int icmpv6_nlattr_tuple_size(void)
 {
-       return nla_policy_len(icmpv6_nla_policy, CTA_PROTO_MAX + 1);
+       static unsigned int size __read_mostly;
+
+       if (!size)
+               size = nla_policy_len(icmpv6_nla_policy, CTA_PROTO_MAX + 1);
+
+       return size;
 }
 #endif
 
index 28e6751508534d646c0badc8c50abc15819102e4..0e516947c16f0f2c9b0d27812866b50294f701c8 100644 (file)
@@ -1563,9 +1563,14 @@ int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
 }
 EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_to_tuple);
 
-int nf_ct_port_nlattr_tuple_size(void)
+unsigned int nf_ct_port_nlattr_tuple_size(void)
 {
-       return nla_policy_len(nf_ct_port_nla_policy, CTA_PROTO_MAX + 1);
+       static unsigned int size __read_mostly;
+
+       if (!size)
+               size = nla_policy_len(nf_ct_port_nla_policy, CTA_PROTO_MAX + 1);
+
+       return size;
 }
 EXPORT_SYMBOL_GPL(nf_ct_port_nlattr_tuple_size);
 #endif
index de4053d84364b245e1593f7fa7d1d3cbff2de4fe..6e0adfefb9ed4fa8256c1ece604c05ef117c1e68 100644 (file)
@@ -533,11 +533,11 @@ ctnetlink_fill_info(struct sk_buff *skb, u32 portid, u32 seq, u32 type,
        return -1;
 }
 
-static inline size_t ctnetlink_proto_size(const struct nf_conn *ct)
+static size_t ctnetlink_proto_size(const struct nf_conn *ct)
 {
        const struct nf_conntrack_l3proto *l3proto;
        const struct nf_conntrack_l4proto *l4proto;
-       size_t len;
+       size_t len, len4 = 0;
 
        l3proto = __nf_ct_l3proto_find(nf_ct_l3num(ct));
        len = l3proto->nla_size;
@@ -545,8 +545,12 @@ static inline size_t ctnetlink_proto_size(const struct nf_conn *ct)
 
        l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
        len += l4proto->nla_size;
+       if (l4proto->nlattr_tuple_size) {
+               len4 = l4proto->nlattr_tuple_size();
+               len4 *= 3u; /* ORIG, REPLY, MASTER */
+       }
 
-       return len;
+       return len + len4;
 }
 
 static inline size_t ctnetlink_acct_size(const struct nf_conn *ct)
index 83f739e9dc08811810e88e6e42ea7d1bdd70a3ef..3b06ff3f2dee014227de860a1f6aa9b824fe9992 100644 (file)
@@ -398,8 +398,6 @@ int nf_ct_l4proto_register_one(struct nf_conntrack_l4proto *l4proto)
        l4proto->nla_size = 0;
        if (l4proto->nlattr_size)
                l4proto->nla_size += l4proto->nlattr_size();
-       if (l4proto->nlattr_tuple_size)
-               l4proto->nla_size += 3 * l4proto->nlattr_tuple_size();
 
        rcu_assign_pointer(nf_ct_protos[l4proto->l3proto][l4proto->l4proto],
                           l4proto);
index 8f283294d70f63db497f00eb1ddbfea6cd037a53..b12fc07111d0847b014410291df947bddc32d46a 100644 (file)
@@ -1277,9 +1277,14 @@ static int tcp_nlattr_size(void)
                + nla_policy_len(tcp_nla_policy, CTA_PROTOINFO_TCP_MAX + 1);
 }
 
-static int tcp_nlattr_tuple_size(void)
+static unsigned int tcp_nlattr_tuple_size(void)
 {
-       return nla_policy_len(nf_ct_port_nla_policy, CTA_PROTO_MAX + 1);
+       static unsigned int size __read_mostly;
+
+       if (!size)
+               size = nla_policy_len(nf_ct_port_nla_policy, CTA_PROTO_MAX + 1);
+
+       return size;
 }
 #endif