netfilter: ctnetlink: always honor CTA_MARK_MASK
authorAndreas Jaggi <andreas.jaggi@waterwave.ch>
Thu, 1 Nov 2018 05:50:33 +0000 (06:50 +0100)
committerPablo Neira Ayuso <pablo@netfilter.org>
Mon, 12 Nov 2018 09:25:00 +0000 (10:25 +0100)
Useful to only set a particular range of the conntrack mark while
leaving existing parts of the value alone, e.g. when updating
conntrack marks via netlink from userspace.

For NFQUEUE it was already implemented in commit 534473c6080e
("netfilter: ctnetlink: honor CTA_MARK_MASK when setting ctmark").

This now adds the same functionality also for the other netlink
conntrack mark changes.

Signed-off-by: Andreas Jaggi <andreas.jaggi@waterwave.ch>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
net/netfilter/nf_conntrack_netlink.c

index 4ae8e528943aca9f1881c3b4f77e5ebc231ebe14..4f54c4355d334f96024d77bbb14c393098ebd57e 100644 (file)
@@ -1688,6 +1688,22 @@ static int ctnetlink_change_timeout(struct nf_conn *ct,
        return 0;
 }
 
+#if defined(CONFIG_NF_CONNTRACK_MARK)
+static void ctnetlink_change_mark(struct nf_conn *ct,
+                                   const struct nlattr * const cda[])
+{
+       u32 mark, newmark, mask = 0;
+
+       if (cda[CTA_MARK_MASK])
+               mask = ~ntohl(nla_get_be32(cda[CTA_MARK_MASK]));
+
+       mark = ntohl(nla_get_be32(cda[CTA_MARK]));
+       newmark = (ct->mark & mask) ^ mark;
+       if (newmark != ct->mark)
+               ct->mark = newmark;
+}
+#endif
+
 static const struct nla_policy protoinfo_policy[CTA_PROTOINFO_MAX+1] = {
        [CTA_PROTOINFO_TCP]     = { .type = NLA_NESTED },
        [CTA_PROTOINFO_DCCP]    = { .type = NLA_NESTED },
@@ -1883,7 +1899,7 @@ ctnetlink_change_conntrack(struct nf_conn *ct,
 
 #if defined(CONFIG_NF_CONNTRACK_MARK)
        if (cda[CTA_MARK])
-               ct->mark = ntohl(nla_get_be32(cda[CTA_MARK]));
+               ctnetlink_change_mark(ct, cda);
 #endif
 
        if (cda[CTA_SEQ_ADJ_ORIG] || cda[CTA_SEQ_ADJ_REPLY]) {
@@ -2027,7 +2043,7 @@ ctnetlink_create_conntrack(struct net *net,
 
 #if defined(CONFIG_NF_CONNTRACK_MARK)
        if (cda[CTA_MARK])
-               ct->mark = ntohl(nla_get_be32(cda[CTA_MARK]));
+               ctnetlink_change_mark(ct, cda);
 #endif
 
        /* setup master conntrack: this is a confirmed expectation */
@@ -2524,14 +2540,7 @@ ctnetlink_glue_parse_ct(const struct nlattr *cda[], struct nf_conn *ct)
        }
 #if defined(CONFIG_NF_CONNTRACK_MARK)
        if (cda[CTA_MARK]) {
-               u32 mask = 0, mark, newmark;
-               if (cda[CTA_MARK_MASK])
-                       mask = ~ntohl(nla_get_be32(cda[CTA_MARK_MASK]));
-
-               mark = ntohl(nla_get_be32(cda[CTA_MARK]));
-               newmark = (ct->mark & mask) ^ mark;
-               if (newmark != ct->mark)
-                       ct->mark = newmark;
+               ctnetlink_change_mark(ct, cda);
        }
 #endif
        return 0;