Implement unique insertion function to atomically attach tcf proto to chain
after verifying that no other tcf proto with specified priority exists.
Implement delete function that verifies that tp is actually empty before
deleting it. Use these functions to refactor cls API to account for
concurrent tp and rule update instead of relying on rtnl lock. Add new
'deleting' flag to tcf proto. Use it to restart search when iterating over
tp's on chain to prevent accessing potentially inval tp->next pointer.

Extend tcf proto with spinlock that is intended to be used to protects its
data from concurrent modification instead of relying on rtnl mutex. Use it
to protect 'deleting' flag. Add lockdep macros to validate that lock is
held when accessing protected fields.

Signed-off-by: Vlad Buslov <vla...@mellanox.com>
Acked-by: Jiri Pirko <j...@mellanox.com>
---
 include/net/sch_generic.h |  18 +++++
 net/sched/cls_api.c       | 183 +++++++++++++++++++++++++++++++++++++++-------
 2 files changed, 176 insertions(+), 25 deletions(-)

diff --git a/include/net/sch_generic.h b/include/net/sch_generic.h
index 1015e3491187..4809eca41f95 100644
--- a/include/net/sch_generic.h
+++ b/include/net/sch_generic.h
@@ -318,6 +318,11 @@ struct tcf_proto {
        void                    *data;
        const struct tcf_proto_ops      *ops;
        struct tcf_chain        *chain;
+       /* Lock protects tcf_proto shared state and can be used by unlocked
+        * classifiers to protect their private data.
+        */
+       spinlock_t              lock;
+       bool                    deleting;
        refcount_t              refcnt;
        struct rcu_head         rcu;
        struct work_struct      work;
@@ -379,16 +384,29 @@ static inline bool lockdep_tcf_chain_is_locked(struct 
tcf_chain *chain)
 {
        return lockdep_is_held(&chain->filter_chain_lock);
 }
+
+static inline bool lockdep_tcf_proto_is_locked(struct tcf_proto *tp)
+{
+       return lockdep_is_held(&tp->lock);
+}
 #else
 static inline bool lockdep_tcf_chain_is_locked(struct tcf_block *chain)
 {
        return true;
 }
+
+static inline bool lockdep_tcf_proto_is_locked(struct tcf_proto *tp)
+{
+       return true;
+}
 #endif /* #ifdef CONFIG_PROVE_LOCKING */
 
 #define tcf_chain_dereference(p, chain)                                        
\
        rcu_dereference_protected(p, lockdep_tcf_chain_is_locked(chain))
 
+#define tcf_proto_dereference(p, tp)                                   \
+       rcu_dereference_protected(p, lockdep_tcf_proto_is_locked(tp))
+
 static inline void tcf_block_offload_inc(struct tcf_block *block, u32 *flags)
 {
        if (*flags & TCA_CLS_FLAGS_IN_HW)
diff --git a/net/sched/cls_api.c b/net/sched/cls_api.c
index 02130f8d89e1..3ce244fbfb4d 100644
--- a/net/sched/cls_api.c
+++ b/net/sched/cls_api.c
@@ -197,6 +197,7 @@ static struct tcf_proto *tcf_proto_create(const char *kind, 
u32 protocol,
        tp->prio = prio;
        tp->chain = chain;
        INIT_WORK(&tp->work, tcf_proto_destroy_work);
+       spin_lock_init(&tp->lock);
        refcount_set(&tp->refcnt, 1);
 
        err = tp->ops->init(tp);
@@ -229,6 +230,49 @@ static void tcf_proto_put(struct tcf_proto *tp,
                tcf_proto_destroy(tp, extack);
 }
 
+static int walker_noop(struct tcf_proto *tp, void *d, struct tcf_walker *arg)
+{
+       return -1;
+}
+
+static bool tcf_proto_is_empty(struct tcf_proto *tp)
+{
+       struct tcf_walker walker = { .fn = walker_noop, };
+
+       if (tp->ops->walk) {
+               tp->ops->walk(tp, &walker);
+               return !walker.stop;
+       }
+       return true;
+}
+
+static bool tcf_proto_check_delete(struct tcf_proto *tp)
+{
+       spin_lock(&tp->lock);
+       if (tcf_proto_is_empty(tp))
+               tp->deleting = true;
+       spin_unlock(&tp->lock);
+       return tp->deleting;
+}
+
+static void tcf_proto_mark_delete(struct tcf_proto *tp)
+{
+       spin_lock(&tp->lock);
+       tp->deleting = true;
+       spin_unlock(&tp->lock);
+}
+
+static bool tcf_proto_is_deleting(struct tcf_proto *tp)
+{
+       bool deleting;
+
+       spin_lock(&tp->lock);
+       deleting = tp->deleting;
+       spin_unlock(&tp->lock);
+
+       return deleting;
+}
+
 #define ASSERT_BLOCK_LOCKED(block)                                     \
        WARN_ONCE(!spin_is_locked(&(block)->lock),              \
                  "BLOCK: assertion failed at %s (%d)\n", __FILE__,  __LINE__)
@@ -731,13 +775,27 @@ EXPORT_SYMBOL(tcf_get_next_chain);
 static struct tcf_proto *
 __tcf_get_next_proto(struct tcf_chain *chain, struct tcf_proto *tp)
 {
+       u32 prio = 0;
+
        ASSERT_RTNL();
        spin_lock(&chain->filter_chain_lock);
 
-       if (!tp)
+       if (!tp) {
                tp = tcf_chain_dereference(chain->filter_chain, chain);
-       else
+       } else if (tcf_proto_is_deleting(tp)) {
+               /* 'deleting' flag is set and chain->filter_chain_lock was
+                * unlocked, which means next pointer could be invalid. Restart
+                * search.
+                */
+               prio = tp->prio + 1;
+               tp = tcf_chain_dereference(chain->filter_chain, chain);
+
+               for (; tp; tp = tcf_chain_dereference(tp->next, chain))
+                       if (!tp->deleting && tp->prio >= prio)
+                               break;
+       } else {
                tp = tcf_chain_dereference(tp->next, chain);
+       }
 
        if (tp)
                tcf_proto_get(tp);
@@ -1341,6 +1399,7 @@ static void tcf_chain_tp_remove(struct tcf_chain *chain,
 {
        struct tcf_proto *next = tcf_chain_dereference(chain_info->next, chain);
 
+       tcf_proto_mark_delete(tp);
        if (tp == chain->filter_chain)
                tcf_chain0_head_change(chain, next);
        RCU_INIT_POINTER(*chain_info->pprev, next);
@@ -1349,6 +1408,79 @@ static void tcf_chain_tp_remove(struct tcf_chain *chain,
 static struct tcf_proto *tcf_chain_tp_find(struct tcf_chain *chain,
                                           struct tcf_chain_info *chain_info,
                                           u32 protocol, u32 prio,
+                                          bool prio_allocate);
+
+/* Try to insert new proto.
+ * If proto with specified priority already exists, free new proto
+ * and return existing one.
+ */
+
+static struct tcf_proto *tcf_chain_tp_insert_unique(struct tcf_chain *chain,
+                                                   struct tcf_proto *tp_new,
+                                                   u32 protocol, u32 prio)
+{
+       struct tcf_chain_info chain_info;
+       struct tcf_proto *tp;
+
+       spin_lock(&chain->filter_chain_lock);
+
+       tp = tcf_chain_tp_find(chain, &chain_info,
+                              protocol, prio, false);
+       if (!tp)
+               tcf_chain_tp_insert(chain, &chain_info, tp_new);
+       spin_unlock(&chain->filter_chain_lock);
+
+       if (tp) {
+               tcf_proto_destroy(tp_new, NULL);
+               tp_new = tp;
+       }
+
+       return tp_new;
+}
+
+static void tcf_chain_tp_delete_empty(struct tcf_chain *chain,
+                                     struct tcf_proto *tp,
+                                     struct netlink_ext_ack *extack)
+{
+       struct tcf_chain_info chain_info;
+       struct tcf_proto *tp_iter;
+       struct tcf_proto **pprev;
+       struct tcf_proto *next;
+
+       spin_lock(&chain->filter_chain_lock);
+
+       /* Atomically find and remove tp from chain. */
+       for (pprev = &chain->filter_chain;
+            (tp_iter = tcf_chain_dereference(*pprev, chain));
+            pprev = &tp_iter->next) {
+               if (tp_iter == tp) {
+                       chain_info.pprev = pprev;
+                       chain_info.next = tp_iter->next;
+                       WARN_ON(tp_iter->deleting);
+                       break;
+               }
+       }
+       /* Verify that tp still exists and no new filters were inserted
+        * concurrently.
+        * Mark tp for deletion if it is empty.
+        */
+       if (!tp_iter || !tcf_proto_check_delete(tp)) {
+               spin_unlock(&chain->filter_chain_lock);
+               return;
+       }
+
+       next = tcf_chain_dereference(chain_info.next, chain);
+       if (tp == chain->filter_chain)
+               tcf_chain0_head_change(chain, next);
+       RCU_INIT_POINTER(*chain_info.pprev, next);
+       spin_unlock(&chain->filter_chain_lock);
+
+       tcf_proto_put(tp, extack);
+}
+
+static struct tcf_proto *tcf_chain_tp_find(struct tcf_chain *chain,
+                                          struct tcf_chain_info *chain_info,
+                                          u32 protocol, u32 prio,
                                           bool prio_allocate)
 {
        struct tcf_proto **pprev;
@@ -1533,6 +1665,7 @@ static int tc_new_tfilter(struct sk_buff *skb, struct 
nlmsghdr *n,
        prio = TC_H_MAJ(t->tcm_info);
        prio_allocate = false;
        parent = t->tcm_parent;
+       tp = NULL;
        cl = 0;
 
        if (prio == 0) {
@@ -1580,6 +1713,8 @@ static int tc_new_tfilter(struct sk_buff *skb, struct 
nlmsghdr *n,
        }
 
        if (tp == NULL) {
+               struct tcf_proto *tp_new = NULL;
+
                /* Proto-tcf does not exist, create new one */
 
                if (tca[TCA_KIND] == NULL || !protocol) {
@@ -1599,23 +1734,28 @@ static int tc_new_tfilter(struct sk_buff *skb, struct 
nlmsghdr *n,
                                                               &chain_info));
 
                spin_unlock(&chain->filter_chain_lock);
-               tp = tcf_proto_create(nla_data(tca[TCA_KIND]),
-                                     protocol, prio, chain, extack);
-               if (IS_ERR(tp)) {
-                       err = PTR_ERR(tp);
+               tp_new = tcf_proto_create(nla_data(tca[TCA_KIND]),
+                                         protocol, prio, chain, extack);
+               if (IS_ERR(tp_new)) {
+                       err = PTR_ERR(tp_new);
                        goto errout;
                }
 
-               spin_lock(&chain->filter_chain_lock);
-               tcf_chain_tp_insert(chain, &chain_info, tp);
+               tp = tcf_chain_tp_insert_unique(chain, tp_new, protocol, prio);
+
+               /* tp insert function can return another tp instance, if it was
+                * created concurrently.
+                */
+               if (tp == tp_new)
+                       tp_created = 1;
+       } else {
                spin_unlock(&chain->filter_chain_lock);
-               tp_created = 1;
-       } else if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind)) {
+       }
+
+       if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind)) {
                NL_SET_ERR_MSG(extack, "Specified filter kind does not match 
existing one");
                err = -EINVAL;
-               goto errout_locked;
-       } else {
-               spin_unlock(&chain->filter_chain_lock);
+               goto errout;
        }
 
        fh = tp->ops->get(tp, t->tcm_handle);
@@ -1644,12 +1784,10 @@ static int tc_new_tfilter(struct sk_buff *skb, struct 
nlmsghdr *n,
        if (err == 0)
                tfilter_notify(net, skb, n, tp, block, q, parent, fh,
                               RTM_NEWTFILTER, false);
-       else if (tp_created)
-               tcf_proto_destroy(tp, NULL);
 
 errout:
-       if (chain)
-               tcf_chain_put(chain);
+       if (err && tp_created)
+               tcf_chain_tp_delete_empty(chain, tp, NULL);
        if (chain) {
                if (tp && !IS_ERR(tp))
                        tcf_proto_put(tp, NULL);
@@ -1755,9 +1893,9 @@ static int tc_del_tfilter(struct sk_buff *skb, struct 
nlmsghdr *n,
                tcf_chain_tp_remove(chain, &chain_info, tp);
                spin_unlock(&chain->filter_chain_lock);
 
+               tcf_proto_put(tp, NULL);
                tfilter_notify(net, skb, n, tp, block, q, parent, fh,
                               RTM_DELTFILTER, false);
-               tcf_proto_destroy(tp, extack);
                err = 0;
                goto errout;
        }
@@ -1776,13 +1914,8 @@ static int tc_del_tfilter(struct sk_buff *skb, struct 
nlmsghdr *n,
                                         extack);
                if (err)
                        goto errout;
-               if (last) {
-                       spin_lock(&chain->filter_chain_lock);
-                       tcf_chain_tp_remove(chain, &chain_info, tp);
-                       spin_unlock(&chain->filter_chain_lock);
-
-                       tcf_proto_destroy(tp, extack);
-               }
+               if (last)
+                       tcf_chain_tp_delete_empty(chain, tp, extack);
        }
 
 errout:
-- 
2.7.5

Reply via email to