netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net: ensure net_todo_list is processed quickly
@ 2022-03-25 21:50 Johannes Berg
  2022-03-25 21:58 ` Jakub Kicinski
  0 siblings, 1 reply; 4+ messages in thread
From: Johannes Berg @ 2022-03-25 21:50 UTC (permalink / raw)
  To: netdev; +Cc: Johannes Berg

From: Johannes Berg <johannes.berg@intel.com>

In [1], Will raised a potential issue that the cfg80211 code,
which does (from a locking perspective)

  rtnl_lock()
  wiphy_lock()
  rtnl_unlock()

might be suspectible to ABBA deadlocks, because rtnl_unlock()
calls netdev_run_todo(), which might end up calling rtnl_lock()
again, which could then deadlock (see the comment in the code
added here for the scenario).

Some back and forth and thinking ensued, but clearly this can't
happen if the net_todo_list is empty at the rtnl_unlock() here.
Clearly, the code here cannot actually put an entry on it, and
all other users of rtnl_unlock() will empty it since that will
always go through netdev_run_todo(), emptying the list.

So the only other way to get there would be to add to the list
and then unlock the RTNL without going through rtnl_unlock(),
which is only possible through __rtnl_unlock(). However, this
isn't exported and not used in many places, and none of them
seem to be able to unregister before using it.

Therefore, add a WARN_ON() in the code to ensure this invariant
won't be broken, so that the cfg80211 (or any similar) code
stays safe.

[1] https://lore.kernel.org/r/Yjzpo3TfZxtKPMAG@google.com

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
---
 include/linux/netdevice.h |  3 ++-
 net/core/dev.c            |  2 +-
 net/core/rtnetlink.c      | 33 +++++++++++++++++++++++++++++++++
 3 files changed, 36 insertions(+), 2 deletions(-)

diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index 59e27a2b7bf0..b6a1e7f643da 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -3894,7 +3894,8 @@ void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev);
 extern int		netdev_budget;
 extern unsigned int	netdev_budget_usecs;
 
-/* Called by rtnetlink.c:rtnl_unlock() */
+/* Used by rtnetlink.c:__rtnl_unlock()/rtnl_unlock() */
+extern struct list_head net_todo_list;
 void netdev_run_todo(void);
 
 static inline void __dev_put(struct net_device *dev)
diff --git a/net/core/dev.c b/net/core/dev.c
index 8c6c08446556..2ec17358d7b4 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -9431,7 +9431,7 @@ static int dev_new_index(struct net *net)
 }
 
 /* Delayed registration/unregisteration */
-static LIST_HEAD(net_todo_list);
+LIST_HEAD(net_todo_list);
 DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
 
 static void net_set_todo(struct net_device *dev)
diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c
index 159c9c61e6af..0e4502d641eb 100644
--- a/net/core/rtnetlink.c
+++ b/net/core/rtnetlink.c
@@ -95,6 +95,39 @@ void __rtnl_unlock(void)
 
 	defer_kfree_skb_list = NULL;
 
+	/* Ensure that we didn't actually add any TODO item when __rtnl_unlock()
+	 * is used. In some places, e.g. in cfg80211, we have code that will do
+	 * something like
+	 *   rtnl_lock()
+	 *   wiphy_lock()
+	 *   ...
+	 *   rtnl_unlock()
+	 *
+	 * and because netdev_run_todo() acquires the RTNL for items on the list
+	 * we could cause a situation such as this:
+	 * Thread 1			Thread 2
+	 *				  rtnl_lock()
+	 *				  unregister_netdevice()
+	 *				  __rtnl_unlock()
+	 * rtnl_lock()
+	 * wiphy_lock()
+	 * rtnl_unlock()
+	 *   netdev_run_todo()
+	 *     __rtnl_unlock()
+	 *
+	 *     // list not empty now
+	 *     // because of thread 2
+	 *				  rtnl_lock()
+	 *     while (!list_empty(...))
+	 *       rtnl_lock()
+	 *				  wiphy_lock()
+	 * **** DEADLOCK ****
+	 *
+	 * However, usage of __rtnl_unlock() is rare, and so we can ensure that
+	 * it's not used in cases where something is added to do the list.
+	 */
+	WARN_ON(!list_empty(&net_todo_list));
+
 	mutex_unlock(&rtnl_mutex);
 
 	while (head) {
-- 
2.35.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] net: ensure net_todo_list is processed quickly
  2022-03-25 21:50 [PATCH] net: ensure net_todo_list is processed quickly Johannes Berg
@ 2022-03-25 21:58 ` Jakub Kicinski
  2022-03-25 21:59   ` Johannes Berg
  0 siblings, 1 reply; 4+ messages in thread
From: Jakub Kicinski @ 2022-03-25 21:58 UTC (permalink / raw)
  To: Johannes Berg; +Cc: netdev, Johannes Berg

On Fri, 25 Mar 2022 22:50:55 +0100 Johannes Berg wrote:
> From: Johannes Berg <johannes.berg@intel.com>
> 
> In [1], Will raised a potential issue that the cfg80211 code,
> which does (from a locking perspective)

LGTM, but I think we should defer this one a week and take it 
to net-next when it re-opens, after the merge window.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] net: ensure net_todo_list is processed quickly
  2022-03-25 21:58 ` Jakub Kicinski
@ 2022-03-25 21:59   ` Johannes Berg
  2022-03-25 22:01     ` Jakub Kicinski
  0 siblings, 1 reply; 4+ messages in thread
From: Johannes Berg @ 2022-03-25 21:59 UTC (permalink / raw)
  To: Jakub Kicinski; +Cc: netdev

On Fri, 2022-03-25 at 14:58 -0700, Jakub Kicinski wrote:
> On Fri, 25 Mar 2022 22:50:55 +0100 Johannes Berg wrote:
> > From: Johannes Berg <johannes.berg@intel.com>
> > 
> > In [1], Will raised a potential issue that the cfg80211 code,
> > which does (from a locking perspective)
> 
> LGTM, but I think we should defer this one a week and take it 
> to net-next when it re-opens, after the merge window.

Yeah that makes sense. Do you want me to resend it then?

johannes

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] net: ensure net_todo_list is processed quickly
  2022-03-25 21:59   ` Johannes Berg
@ 2022-03-25 22:01     ` Jakub Kicinski
  0 siblings, 0 replies; 4+ messages in thread
From: Jakub Kicinski @ 2022-03-25 22:01 UTC (permalink / raw)
  To: Johannes Berg; +Cc: netdev

On Fri, 25 Mar 2022 22:59:25 +0100 Johannes Berg wrote:
> On Fri, 2022-03-25 at 14:58 -0700, Jakub Kicinski wrote:
> > On Fri, 25 Mar 2022 22:50:55 +0100 Johannes Berg wrote:  
> > > From: Johannes Berg <johannes.berg@intel.com>
> > > 
> > > In [1], Will raised a potential issue that the cfg80211 code,
> > > which does (from a locking perspective)  
> > 
> > LGTM, but I think we should defer this one a week and take it 
> > to net-next when it re-opens, after the merge window.  
> 
> Yeah that makes sense. Do you want me to resend it then?

Yes, please!

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-03-25 22:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-25 21:50 [PATCH] net: ensure net_todo_list is processed quickly Johannes Berg
2022-03-25 21:58 ` Jakub Kicinski
2022-03-25 21:59   ` Johannes Berg
2022-03-25 22:01     ` Jakub Kicinski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).