diff mbox series

[v1,net] net: macb: Use rcu_dereference() for idev->ifa_list in macb_suspend().

Message ID 20240808040021.6971-1-kuniyu@amazon.com (mailing list archive)
State Accepted
Commit 6e1918ff680527ce4be77426aa537012b5aa997c
Delegated to: Netdev Maintainers
Headers show
Series [v1,net] net: macb: Use rcu_dereference() for idev->ifa_list in macb_suspend(). | expand

Checks

Context Check Description
netdev/series_format success Single patches do not need cover letters
netdev/tree_selection success Clearly marked for net
netdev/ynl success Generated files up to date; no warnings/errors; no diff in generated;
netdev/fixes_present success Fixes tag present in non-next series
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 29 this patch: 29
netdev/build_tools success No tools touched, skip
netdev/cc_maintainers fail 2 blamed authors not CCed: harini.katakam@amd.com andrew@lunn.ch; 2 maintainers not CCed: harini.katakam@amd.com andrew@lunn.ch
netdev/build_clang success Errors and warnings before: 29 this patch: 29
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/deprecated_api success None detected
netdev/check_selftest success No net selftest shell script
netdev/verify_fixes success Fixes tag looks correct
netdev/build_allmodconfig_warn success Errors and warnings before: 51 this patch: 51
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 10 lines checked
netdev/build_clang_rust success No Rust files in patch. Skipping build
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0
netdev/contest success net-next-2024-08-10--18-00 (tests: 707)

Commit Message

Kuniyuki Iwashima Aug. 8, 2024, 4 a.m. UTC
In macb_suspend(), idev->ifa_list is fetched with rcu_access_pointer()
and later the pointer is dereferenced as ifa->ifa_local.

So, idev->ifa_list must be fetched with rcu_dereference().

Fixes: 0cb8de39a776 ("net: macb: Add ARP support to WOL")
Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.com>
---
 drivers/net/ethernet/cadence/macb_main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Vineeth Karumanchi Aug. 8, 2024, 4:23 a.m. UTC | #1
Hi Kuniyuki,

On 08/08/24 9:30 am, Kuniyuki Iwashima wrote:
> In macb_suspend(), idev->ifa_list is fetched with rcu_access_pointer()
> and later the pointer is dereferenced as ifa->ifa_local.
> 
> So, idev->ifa_list must be fetched with rcu_dereference().
> 

Is there any functional breakage ?

I sent initial patch with rcu_dereference, but there is a review comment:

https://lore.kernel.org/netdev/a02fac3b21a97dc766d65c4ed2d080f1ed87e87e.camel@redhat.com/ 




Kuniyuki Iwashima Aug. 8, 2024, 4:45 a.m. UTC | #2
From: Vineeth Karumanchi <vineeth.karumanchi@amd.com>
Date: Thu, 8 Aug 2024 09:53:42 +0530
> Hi Kuniyuki,
> 
> On 08/08/24 9:30 am, Kuniyuki Iwashima wrote:
> > In macb_suspend(), idev->ifa_list is fetched with rcu_access_pointer()
> > and later the pointer is dereferenced as ifa->ifa_local.
> > 
> > So, idev->ifa_list must be fetched with rcu_dereference().
> > 
> 
> Is there any functional breakage ?

rcu_dereference() triggers lockdep splat if not called under
rcu_read_lock().

Also in include/linux/rcupdate.h:

/**
 * rcu_access_pointer() - fetch RCU pointer with no dereferencing
...
 * It is usually best to test the rcu_access_pointer() return value
 * directly in order to avoid accidental dereferences being introduced
 * by later inattentive changes.  In other words, assigning the
 * rcu_access_pointer() return value to a local variable results in an
 * accident waiting to happen.


> I sent initial patch with rcu_dereference, but there is a review comment:
> 
> https://lore.kernel.org/netdev/a02fac3b21a97dc766d65c4ed2d080f1ed87e87e.camel@redhat.com/ 

I guess the following ifa_local was missed then ?
Vineeth Karumanchi Aug. 12, 2024, 9:11 a.m. UTC | #3
On 08/08/24 10:15 am, Kuniyuki Iwashima wrote:
> From: Vineeth Karumanchi <vineeth.karumanchi@amd.com>
> Date: Thu, 8 Aug 2024 09:53:42 +0530
>> Hi Kuniyuki,
>>
>> On 08/08/24 9:30 am, Kuniyuki Iwashima wrote:
>>> In macb_suspend(), idev->ifa_list is fetched with rcu_access_pointer()
>>> and later the pointer is dereferenced as ifa->ifa_local.
>>>
>>> So, idev->ifa_list must be fetched with rcu_dereference().
>>>
>>
>> Is there any functional breakage ?
> 
> rcu_dereference() triggers lockdep splat if not called under
> rcu_read_lock().
> 
> Also in include/linux/rcupdate.h:
> 
> /**
>   * rcu_access_pointer() - fetch RCU pointer with no dereferencing
> ...
>   * It is usually best to test the rcu_access_pointer() return value
>   * directly in order to avoid accidental dereferences being introduced
>   * by later inattentive changes.  In other words, assigning the
>   * rcu_access_pointer() return value to a local variable results in an
>   * accident waiting to happen.
> 
> 
>> I sent initial patch with rcu_dereference, but there is a review comment:
>>
>> https://lore.kernel.org/netdev/a02fac3b21a97dc766d65c4ed2d080f1ed87e87e.camel@redhat.com/
> 
> I guess the following ifa_local was missed then ?

I am ok to use rcu_dereference(), just curios why the check 
idev->ifa_list was removed ?


vineeth
Kuniyuki Iwashima Aug. 12, 2024, 6:35 p.m. UTC | #4
From: Vineeth Karumanchi <vineeth.karumanchi@amd.com>
Date: Mon, 12 Aug 2024 14:41:40 +0530
> On 08/08/24 10:15 am, Kuniyuki Iwashima wrote:
> > From: Vineeth Karumanchi <vineeth.karumanchi@amd.com>
> > Date: Thu, 8 Aug 2024 09:53:42 +0530
> >> Hi Kuniyuki,
> >>
> >> On 08/08/24 9:30 am, Kuniyuki Iwashima wrote:
> >>> In macb_suspend(), idev->ifa_list is fetched with rcu_access_pointer()
> >>> and later the pointer is dereferenced as ifa->ifa_local.
> >>>
> >>> So, idev->ifa_list must be fetched with rcu_dereference().
> >>>
> >>
> >> Is there any functional breakage ?
> > 
> > rcu_dereference() triggers lockdep splat if not called under
> > rcu_read_lock().
> > 
> > Also in include/linux/rcupdate.h:
> > 
> > /**
> >   * rcu_access_pointer() - fetch RCU pointer with no dereferencing
> > ...
> >   * It is usually best to test the rcu_access_pointer() return value
> >   * directly in order to avoid accidental dereferences being introduced
> >   * by later inattentive changes.  In other words, assigning the
> >   * rcu_access_pointer() return value to a local variable results in an
> >   * accident waiting to happen.
> > 
> > 
> >> I sent initial patch with rcu_dereference, but there is a review comment:
> >>
> >> https://lore.kernel.org/netdev/a02fac3b21a97dc766d65c4ed2d080f1ed87e87e.camel@redhat.com/
> > 
> > I guess the following ifa_local was missed then ?
> 
> I am ok to use rcu_dereference(), just curios why the check 
> idev->ifa_list was removed ?

"if (idev->ifa_list)" could fetch an invalid pointer due to lack of
READ_ONCE(), it's not a big problem, but neither we should write it as

  if (rcu_assign_pointer(idev->ifa_list))
    ifa = rcu_dereference(idev->ifa_list)

because rcu_dereference()ed ifa is not guaranteed as the same value
(non-NULL) with rcu_assign_pointer(), so we need the following check
anyway:

  if (!ifa)

Basically, we can't use rcu_assign_pointer() with rcu_dereference().

list_first_or_null_rcu() is a nice example:

  include/linux/rculist.h
  /*
   * Where are list_empty_rcu() and list_first_entry_rcu()?
   *
   * They do not exist because they would lead to subtle race conditions:
   *
   * if (!list_empty_rcu(mylist)) {
   *	struct foo *bar = list_first_entry_rcu(mylist, struct foo, list_member);
   *	do_something(bar);
   * }
   *
   * The list might be non-empty when list_empty_rcu() checks it, but it
   * might have become empty by the time that list_first_entry_rcu() rereads
   * the ->next pointer, which would result in a SEGV.
Jakub Kicinski Aug. 13, 2024, 1:40 a.m. UTC | #5
On Wed, 7 Aug 2024 21:00:21 -0700 Kuniyuki Iwashima wrote:
> In macb_suspend(), idev->ifa_list is fetched with rcu_access_pointer()
> and later the pointer is dereferenced as ifa->ifa_local.
> 
> So, idev->ifa_list must be fetched with rcu_dereference().

I don't see where this driver takes rcu_read_lock, but
__in_dev_get_rcu() will already splat so we're not making 
it any worse.
patchwork-bot+netdevbpf@kernel.org Aug. 13, 2024, 1:50 a.m. UTC | #6
Hello:

This patch was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Wed, 7 Aug 2024 21:00:21 -0700 you wrote:
> In macb_suspend(), idev->ifa_list is fetched with rcu_access_pointer()
> and later the pointer is dereferenced as ifa->ifa_local.
> 
> So, idev->ifa_list must be fetched with rcu_dereference().
> 
> Fixes: 0cb8de39a776 ("net: macb: Add ARP support to WOL")
> Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.com>
> 
> [...]

Here is the summary with links:
  - [v1,net] net: macb: Use rcu_dereference() for idev->ifa_list in macb_suspend().
    https://git.kernel.org/netdev/net/c/6e1918ff6805

You are awesome, thank you!
diff mbox series

Patch

diff --git a/drivers/net/ethernet/cadence/macb_main.c b/drivers/net/ethernet/cadence/macb_main.c
index 11665be3a22c..dcd3f54ed0cf 100644
--- a/drivers/net/ethernet/cadence/macb_main.c
+++ b/drivers/net/ethernet/cadence/macb_main.c
@@ -5250,8 +5250,8 @@  static int __maybe_unused macb_suspend(struct device *dev)
 	if (bp->wol & MACB_WOL_ENABLED) {
 		/* Check for IP address in WOL ARP mode */
 		idev = __in_dev_get_rcu(bp->dev);
-		if (idev && idev->ifa_list)
-			ifa = rcu_access_pointer(idev->ifa_list);
+		if (idev)
+			ifa = rcu_dereference(idev->ifa_list);
 		if ((bp->wolopts & WAKE_ARP) && !ifa) {
 			netdev_err(netdev, "IP address not assigned as required by WoL walk ARP\n");
 			return -EOPNOTSUPP;