* [PATCH] usb: gadget: f_phonet: fix out-of-bounds read in ifname_show
@ 2026-08-22 7:52 Alexander Bendezu
2026-08-22 9:25 ` Greg Kroah-Hartman
0 siblings, 1 reply; 2+ messages in thread
From: Alexander Bendezu @ 2026-08-22 7:52 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Andrzej Pietrasiewicz, Felipe Balbi, linux-usb, linux-kernel,
syzkaller-bugs, Alexander Bendezu, syzbot+3a0d6aa450317f25e501
The f_phonet_ifname_show() function incorrectly used gether_get_ifname(),
which casts the net_device private data to 'struct eth_dev'. Since the
Phonet gadget only allocates a small 'struct phonet_port' for its private
data, this resulted in a KASAN slab-out-of-bounds read when accessing
dev->ifname_set.
Fix this by safely reading the network device name directly using
netdev_name() and dropping the u_ether.h include, completely avoiding
the invalid struct cast.
Fixes: 0736390bea65 ("usb-gadget/f_phonet: use per-attribute show and store methods")
Reported-by: syzbot+3a0d6aa450317f25e501@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=3a0d6aa450317f25e501
Signed-off-by: Alexander Bendezu <alexanderbendezu10@gmail.com>
---
drivers/usb/gadget/function/f_phonet.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/drivers/usb/gadget/function/f_phonet.c b/drivers/usb/gadget/function/f_phonet.c
index b1ee9a7c2e94..a17e74bcc07c 100644
--- a/drivers/usb/gadget/function/f_phonet.c
+++ b/drivers/usb/gadget/function/f_phonet.c
@@ -13,6 +13,7 @@
#include <linux/module.h>
#include <linux/device.h>
+#include <linux/rtnetlink.h>
#include <linux/netdevice.h>
#include <linux/if_ether.h>
#include <linux/if_phonet.h>
@@ -600,7 +601,13 @@ static const struct configfs_item_operations phonet_item_ops = {
static ssize_t f_phonet_ifname_show(struct config_item *item, char *page)
{
- return gether_get_ifname(to_f_phonet_opts(item)->net, page, PAGE_SIZE);
+ struct net_device *net = to_f_phonet_opts(item)->net;
+ int ret;
+
+ rtnl_lock();
+ ret = scnprintf(page, PAGE_SIZE, "%s\n", netdev_name(net));
+ rtnl_unlock();
+ return ret;
}
CONFIGFS_ATTR_RO(f_phonet_, ifname);
--
2.53.0
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] usb: gadget: f_phonet: fix out-of-bounds read in ifname_show
2026-08-22 7:52 [PATCH] usb: gadget: f_phonet: fix out-of-bounds read in ifname_show Alexander Bendezu
@ 2026-08-22 9:25 ` Greg Kroah-Hartman
0 siblings, 0 replies; 2+ messages in thread
From: Greg Kroah-Hartman @ 2026-08-22 9:25 UTC (permalink / raw)
To: Alexander Bendezu
Cc: Andrzej Pietrasiewicz, Felipe Balbi, linux-usb, linux-kernel,
syzkaller-bugs, syzbot+3a0d6aa450317f25e501
On Sat, Aug 22, 2026 at 07:52:30AM +0000, Alexander Bendezu wrote:
> The f_phonet_ifname_show() function incorrectly used gether_get_ifname(),
> which casts the net_device private data to 'struct eth_dev'. Since the
> Phonet gadget only allocates a small 'struct phonet_port' for its private
> data, this resulted in a KASAN slab-out-of-bounds read when accessing
> dev->ifname_set.
>
> Fix this by safely reading the network device name directly using
> netdev_name() and dropping the u_ether.h include, completely avoiding
> the invalid struct cast.
>
> Fixes: 0736390bea65 ("usb-gadget/f_phonet: use per-attribute show and store methods")
> Reported-by: syzbot+3a0d6aa450317f25e501@syzkaller.appspotmail.com
> Closes: https://syzkaller.appspot.com/bug?extid=3a0d6aa450317f25e501
> Signed-off-by: Alexander Bendezu <alexanderbendezu10@gmail.com>
> ---
> drivers/usb/gadget/function/f_phonet.c | 9 ++++++++-
> 1 file changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/usb/gadget/function/f_phonet.c b/drivers/usb/gadget/function/f_phonet.c
> index b1ee9a7c2e94..a17e74bcc07c 100644
> --- a/drivers/usb/gadget/function/f_phonet.c
> +++ b/drivers/usb/gadget/function/f_phonet.c
> @@ -13,6 +13,7 @@
> #include <linux/module.h>
> #include <linux/device.h>
>
> +#include <linux/rtnetlink.h>
> #include <linux/netdevice.h>
> #include <linux/if_ether.h>
> #include <linux/if_phonet.h>
> @@ -600,7 +601,13 @@ static const struct configfs_item_operations phonet_item_ops = {
>
> static ssize_t f_phonet_ifname_show(struct config_item *item, char *page)
> {
> - return gether_get_ifname(to_f_phonet_opts(item)->net, page, PAGE_SIZE);
So this has never worked at all? How has no one noticed this in the
past decade?
> + struct net_device *net = to_f_phonet_opts(item)->net;
> + int ret;
> +
> + rtnl_lock();
> + ret = scnprintf(page, PAGE_SIZE, "%s\n", netdev_name(net));
sysfs_emit() please.
And what is the lock really doing here? Why would this configfs file be
here if there was not a netdev present?
thanks,
greg k-h
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-08-22 9:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-22 7:52 [PATCH] usb: gadget: f_phonet: fix out-of-bounds read in ifname_show Alexander Bendezu
2026-08-22 9:25 ` Greg Kroah-Hartman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox