From: Javier Carrasco <javier.carrasco.cruz@gmail.com>
To: Peter Korsgaard <peter@korsgaard.com>
Cc: "David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
syzbot+1f53a30781af65d2c955@syzkaller.appspotmail.com,
netdev@vger.kernel.org, linux-usb@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] net: usb: dm9601: fix uninitialized variable use in dm9601_mdio_read
Date: Mon, 9 Oct 2023 23:48:16 +0200 [thread overview]
Message-ID: <e3ad2ed3-8859-4740-9126-9757f8d13a0e@gmail.com> (raw)
In-Reply-To: <87zg0rcyjl.fsf@48ers.dk>
Hi Peter,
On 09.10.23 22:48, Peter Korsgaard wrote:
>
> > syzbot has found an uninit-value bug triggered by the dm9601 driver [1].
> > This error happens because the variable res is not updated if the call
> > to dm_read_shared_word returns an error or if no data is read (see
> > __usbnet_read_cmd()). In this particular case -EPROTO was returned and
> > res stayed uninitialized.
>
> > This can be avoided by checking the return value of dm_read_shared_word
> > and returning an error if the read operation failed or no data was read.
>
> > [1] https://syzkaller.appspot.com/bug?extid=1f53a30781af65d2c955
>
> > Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com>
> > Reported-and-tested-by: syzbot+1f53a30781af65d2c955@syzkaller.appspotmail.com
> > ---
> > drivers/net/usb/dm9601.c | 9 ++++++++-
> > 1 file changed, 8 insertions(+), 1 deletion(-)
>
> > diff --git a/drivers/net/usb/dm9601.c b/drivers/net/usb/dm9601.c
> > index 48d7d278631e..e223daa93229 100644
> > --- a/drivers/net/usb/dm9601.c
> > +++ b/drivers/net/usb/dm9601.c
> > @@ -222,13 +222,20 @@ static int dm9601_mdio_read(struct net_device *netdev, int phy_id, int loc) !
> > struct usbnet *dev = netdev_priv(netdev);
>
> > __le16 res;
> > + int err;
>
> > if (phy_id) {
> > netdev_dbg(dev->net, "Only internal phy supported\n");
> > return 0;
> > }
>
> > - dm_read_shared_word(dev, 1, loc, &res);
> > + err = dm_read_shared_word(dev, 1, loc, &res);
> > + if (err <= 0) {
> > + if (err == 0)
> > + err = -ENODATA;
>
> Looking at dm_read(), it doesn't look like we can end up here with err
> == 0, but OK.You are right, I just simulated the err = 0 value from
__usbnet_read_cmd() and in this case it is harmless because dm_read is
called with length != 0 (in dm_read_shared_word either 1 or 2) and
therefore it returns -EINVAL. A silly case where this would fail would
be if length == 0, which would be wrong anyways.
So I will remove the err == 0 case for v2.
Thanks a lot for your feedback.
> Acked-by: Peter Korsgaard <peter@korsgaard.com>
>
Best regards,
Javier Carrasco
prev parent reply other threads:[~2023-10-09 21:48 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-09 18:52 [PATCH] net: usb: dm9601: fix uninitialized variable use in dm9601_mdio_read Javier Carrasco
2023-10-09 20:48 ` Peter Korsgaard
2023-10-09 21:48 ` Javier Carrasco [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=e3ad2ed3-8859-4740-9126-9757f8d13a0e@gmail.com \
--to=javier.carrasco.cruz@gmail.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=peter@korsgaard.com \
--cc=syzbot+1f53a30781af65d2c955@syzkaller.appspotmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).