diff mbox series

[net-next] net: ethtool: Fix suspicious rcu_dereference usage

Message ID 20241217140323.782346-1-kory.maincent@bootlin.com (mailing list archive)
State Changes Requested
Delegated to: Netdev Maintainers
Headers show
Series [net-next] net: ethtool: Fix suspicious rcu_dereference usage | expand

Checks

Context Check Description
netdev/series_format success Single patches do not need cover letters
netdev/tree_selection success Clearly marked for net-next
netdev/ynl success Generated files up to date; no warnings/errors; no diff in generated;
netdev/fixes_present success Fixes tag not required for -next series
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 0 this patch: 0
netdev/build_tools success No tools touched, skip
netdev/cc_maintainers success CCed 6 of 6 maintainers
netdev/build_clang success Errors and warnings before: 5 this patch: 5
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: 0 this patch: 0
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 8 lines checked
netdev/build_clang_rust success No Rust files in patch. Skipping build
netdev/kdoc success Errors and warnings before: 2 this patch: 2
netdev/source_inline success Was 0 now: 0
netdev/contest fail net-next-2024-12-17--21-00 (tests: 883)

Commit Message

Kory Maincent Dec. 17, 2024, 2:03 p.m. UTC
The __ethtool_get_ts_info function can be called with or without the
rtnl lock held. When the rtnl lock is not held, using rtnl_dereference()
triggers a warning due to improper lock context.

Replace rtnl_dereference() with rcu_dereference_rtnl() to safely
dereference the RCU pointer in both scenarios, ensuring proper handling
regardless of the rtnl lock state.

Reported-by: syzbot+a344326c05c98ba19682@syzkaller.appspotmail.com
Closes: https://lore.kernel.org/netdev/676147f8.050a0220.37aaf.0154.GAE@google.com/
Fixes: b9e3f7dc9ed9 ("net: ethtool: tsinfo: Enhance tsinfo to support several hwtstamp by net topology")
Signed-off-by: Kory Maincent <kory.maincent@bootlin.com>
---
 net/ethtool/common.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Eric Dumazet Dec. 17, 2024, 3:47 p.m. UTC | #1
On Tue, Dec 17, 2024 at 3:03 PM Kory Maincent <kory.maincent@bootlin.com> wrote:
>
> The __ethtool_get_ts_info function can be called with or without the
> rtnl lock held. When the rtnl lock is not held, using rtnl_dereference()
> triggers a warning due to improper lock context.
>
> Replace rtnl_dereference() with rcu_dereference_rtnl() to safely
> dereference the RCU pointer in both scenarios, ensuring proper handling
> regardless of the rtnl lock state.
>
> Reported-by: syzbot+a344326c05c98ba19682@syzkaller.appspotmail.com
> Closes: https://lore.kernel.org/netdev/676147f8.050a0220.37aaf.0154.GAE@google.com/
> Fixes: b9e3f7dc9ed9 ("net: ethtool: tsinfo: Enhance tsinfo to support several hwtstamp by net topology")
> Signed-off-by: Kory Maincent <kory.maincent@bootlin.com>
> ---
>  net/ethtool/common.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/net/ethtool/common.c b/net/ethtool/common.c
> index 02f941f667dd..ec6f2e2caaf9 100644
> --- a/net/ethtool/common.c
> +++ b/net/ethtool/common.c
> @@ -870,7 +870,7 @@ int __ethtool_get_ts_info(struct net_device *dev,
>  {
>         struct hwtstamp_provider *hwprov;
>
> -       hwprov = rtnl_dereference(dev->hwprov);
> +       hwprov = rcu_dereference_rtnl(dev->hwprov);
>         /* No provider specified, use default behavior */
>         if (!hwprov) {
>                 const struct ethtool_ops *ops = dev->ethtool_ops;

I have to ask : Can you tell how this patch has been tested ?

rcu is not held according to syzbot report.

If rtnl and rcu are not held, lockdep will still complain.
Kory Maincent Dec. 17, 2024, 5:17 p.m. UTC | #2
On Tue, 17 Dec 2024 16:47:07 +0100
Eric Dumazet <edumazet@google.com> wrote:

> On Tue, Dec 17, 2024 at 3:03 PM Kory Maincent <kory.maincent@bootlin.com>
> wrote:
> >
> > The __ethtool_get_ts_info function can be called with or without the
> > rtnl lock held. When the rtnl lock is not held, using rtnl_dereference()
> > triggers a warning due to improper lock context.
> >
> > Replace rtnl_dereference() with rcu_dereference_rtnl() to safely
> > dereference the RCU pointer in both scenarios, ensuring proper handling
> > regardless of the rtnl lock state.
> >
> > Reported-by: syzbot+a344326c05c98ba19682@syzkaller.appspotmail.com
> > Closes:
> > https://lore.kernel.org/netdev/676147f8.050a0220.37aaf.0154.GAE@google.com/
> > Fixes: b9e3f7dc9ed9 ("net: ethtool: tsinfo: Enhance tsinfo to support
> > several hwtstamp by net topology") Signed-off-by: Kory Maincent
> > <kory.maincent@bootlin.com> --- net/ethtool/common.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/net/ethtool/common.c b/net/ethtool/common.c
> > index 02f941f667dd..ec6f2e2caaf9 100644
> > --- a/net/ethtool/common.c
> > +++ b/net/ethtool/common.c
> > @@ -870,7 +870,7 @@ int __ethtool_get_ts_info(struct net_device *dev,
> >  {
> >         struct hwtstamp_provider *hwprov;
> >
> > -       hwprov = rtnl_dereference(dev->hwprov);
> > +       hwprov = rcu_dereference_rtnl(dev->hwprov);
> >         /* No provider specified, use default behavior */
> >         if (!hwprov) {
> >                 const struct ethtool_ops *ops = dev->ethtool_ops;  
> 
> I have to ask : Can you tell how this patch has been tested ?

Oh, it was not at all sufficiently tested. Sorry!
I thought I had spotted the issue but I hadn't.

> rcu is not held according to syzbot report.
> 
> If rtnl and rcu are not held, lockdep will still complain.

You are totally right.
I may be able to see it with the timestamping kselftest. I will try.

Regards,
Eric Dumazet Dec. 17, 2024, 5:28 p.m. UTC | #3
On Tue, Dec 17, 2024 at 6:17 PM Kory Maincent <kory.maincent@bootlin.com> wrote:
>
> On Tue, 17 Dec 2024 16:47:07 +0100
> Eric Dumazet <edumazet@google.com> wrote:
>
> > On Tue, Dec 17, 2024 at 3:03 PM Kory Maincent <kory.maincent@bootlin.com>
> > wrote:
> > >
> > > The __ethtool_get_ts_info function can be called with or without the
> > > rtnl lock held. When the rtnl lock is not held, using rtnl_dereference()
> > > triggers a warning due to improper lock context.
> > >
> > > Replace rtnl_dereference() with rcu_dereference_rtnl() to safely
> > > dereference the RCU pointer in both scenarios, ensuring proper handling
> > > regardless of the rtnl lock state.
> > >
> > > Reported-by: syzbot+a344326c05c98ba19682@syzkaller.appspotmail.com
> > > Closes:
> > > https://lore.kernel.org/netdev/676147f8.050a0220.37aaf.0154.GAE@google.com/
> > > Fixes: b9e3f7dc9ed9 ("net: ethtool: tsinfo: Enhance tsinfo to support
> > > several hwtstamp by net topology") Signed-off-by: Kory Maincent
> > > <kory.maincent@bootlin.com> --- net/ethtool/common.c | 2 +-
> > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/net/ethtool/common.c b/net/ethtool/common.c
> > > index 02f941f667dd..ec6f2e2caaf9 100644
> > > --- a/net/ethtool/common.c
> > > +++ b/net/ethtool/common.c
> > > @@ -870,7 +870,7 @@ int __ethtool_get_ts_info(struct net_device *dev,
> > >  {
> > >         struct hwtstamp_provider *hwprov;
> > >
> > > -       hwprov = rtnl_dereference(dev->hwprov);
> > > +       hwprov = rcu_dereference_rtnl(dev->hwprov);
> > >         /* No provider specified, use default behavior */
> > >         if (!hwprov) {
> > >                 const struct ethtool_ops *ops = dev->ethtool_ops;
> >
> > I have to ask : Can you tell how this patch has been tested ?
>
> Oh, it was not at all sufficiently tested. Sorry!
> I thought I had spotted the issue but I hadn't.
>
> > rcu is not held according to syzbot report.
> >
> > If rtnl and rcu are not held, lockdep will still complain.
>
> You are totally right.
> I may be able to see it with the timestamping kselftest. I will try.

syzbot has a repro that you can compile and run.

Make sure to build and use a kernel with

CONFIG_PROVE_LOCKING=y
diff mbox series

Patch

diff --git a/net/ethtool/common.c b/net/ethtool/common.c
index 02f941f667dd..ec6f2e2caaf9 100644
--- a/net/ethtool/common.c
+++ b/net/ethtool/common.c
@@ -870,7 +870,7 @@  int __ethtool_get_ts_info(struct net_device *dev,
 {
 	struct hwtstamp_provider *hwprov;
 
-	hwprov = rtnl_dereference(dev->hwprov);
+	hwprov = rcu_dereference_rtnl(dev->hwprov);
 	/* No provider specified, use default behavior */
 	if (!hwprov) {
 		const struct ethtool_ops *ops = dev->ethtool_ops;