* [PATCH net] Revert "vlan: Fix VLAN 0 memory leak"
@ 2023-08-11 15:45 Vlad Buslov
2023-08-13 7:39 ` Ido Schimmel
2023-08-14 7:20 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Vlad Buslov @ 2023-08-11 15:45 UTC (permalink / raw)
To: davem, kuba, edumazet, pabeni
Cc: netdev, amir.hanania, jeffrey.t.kirsher, john.fastabend, idosch,
horms, Vlad Buslov, syzbot+662f783a5cdf3add2719,
syzbot+4b4f06495414e92701d5, syzbot+d810d3cd45ed1848c3f7
This reverts commit 718cb09aaa6fa78cc8124e9517efbc6c92665384.
The commit triggers multiple syzbot issues, probably due to possibility of
manually creating VLAN 0 on netdevice which will cause the code to delete
it since it can't distinguish such VLAN from implicit VLAN 0 automatically
created for devices with NETIF_F_HW_VLAN_CTAG_FILTER feature.
Reported-by: syzbot+662f783a5cdf3add2719@syzkaller.appspotmail.com
Closes: https://lore.kernel.org/all/00000000000090196d0602a6167d@google.com/
Reported-by: syzbot+4b4f06495414e92701d5@syzkaller.appspotmail.com
Closes: https://lore.kernel.org/all/00000000000096ae870602a61602@google.com/
Reported-by: syzbot+d810d3cd45ed1848c3f7@syzkaller.appspotmail.com
Closes: https://lore.kernel.org/all/0000000000009f0f9c0602a616ce@google.com/
Fixes: 718cb09aaa6f ("vlan: Fix VLAN 0 memory leak")
Signed-off-by: Vlad Buslov <vladbu@nvidia.com>
---
net/8021q/vlan.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/net/8021q/vlan.c b/net/8021q/vlan.c
index b3662119ddbc..e40aa3e3641c 100644
--- a/net/8021q/vlan.c
+++ b/net/8021q/vlan.c
@@ -384,7 +384,8 @@ static int vlan_device_event(struct notifier_block *unused, unsigned long event,
dev->name);
vlan_vid_add(dev, htons(ETH_P_8021Q), 0);
}
- if (event == NETDEV_DOWN)
+ if (event == NETDEV_DOWN &&
+ (dev->features & NETIF_F_HW_VLAN_CTAG_FILTER))
vlan_vid_del(dev, htons(ETH_P_8021Q), 0);
vlan_info = rtnl_dereference(dev->vlan_info);
--
2.39.2
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH net] Revert "vlan: Fix VLAN 0 memory leak"
2023-08-11 15:45 [PATCH net] Revert "vlan: Fix VLAN 0 memory leak" Vlad Buslov
@ 2023-08-13 7:39 ` Ido Schimmel
2023-08-14 7:20 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Ido Schimmel @ 2023-08-13 7:39 UTC (permalink / raw)
To: Vlad Buslov
Cc: davem, kuba, edumazet, pabeni, netdev, amir.hanania,
jeffrey.t.kirsher, john.fastabend, horms,
syzbot+662f783a5cdf3add2719, syzbot+4b4f06495414e92701d5,
syzbot+d810d3cd45ed1848c3f7
On Fri, Aug 11, 2023 at 05:45:23PM +0200, Vlad Buslov wrote:
> This reverts commit 718cb09aaa6fa78cc8124e9517efbc6c92665384.
>
> The commit triggers multiple syzbot issues, probably due to possibility of
> manually creating VLAN 0 on netdevice which will cause the code to delete
> it since it can't distinguish such VLAN from implicit VLAN 0 automatically
> created for devices with NETIF_F_HW_VLAN_CTAG_FILTER feature.
>
> Reported-by: syzbot+662f783a5cdf3add2719@syzkaller.appspotmail.com
> Closes: https://lore.kernel.org/all/00000000000090196d0602a6167d@google.com/
> Reported-by: syzbot+4b4f06495414e92701d5@syzkaller.appspotmail.com
> Closes: https://lore.kernel.org/all/00000000000096ae870602a61602@google.com/
> Reported-by: syzbot+d810d3cd45ed1848c3f7@syzkaller.appspotmail.com
> Closes: https://lore.kernel.org/all/0000000000009f0f9c0602a616ce@google.com/
> Fixes: 718cb09aaa6f ("vlan: Fix VLAN 0 memory leak")
> Signed-off-by: Vlad Buslov <vladbu@nvidia.com>
Reviewed-by: Ido Schimmel <idosch@nvidia.com>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH net] Revert "vlan: Fix VLAN 0 memory leak"
2023-08-11 15:45 [PATCH net] Revert "vlan: Fix VLAN 0 memory leak" Vlad Buslov
2023-08-13 7:39 ` Ido Schimmel
@ 2023-08-14 7:20 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-08-14 7:20 UTC (permalink / raw)
To: Vlad Buslov
Cc: davem, kuba, edumazet, pabeni, netdev, amir.hanania,
jeffrey.t.kirsher, john.fastabend, idosch, horms,
syzbot+662f783a5cdf3add2719, syzbot+4b4f06495414e92701d5,
syzbot+d810d3cd45ed1848c3f7
Hello:
This patch was applied to netdev/net.git (main)
by David S. Miller <davem@davemloft.net>:
On Fri, 11 Aug 2023 17:45:23 +0200 you wrote:
> This reverts commit 718cb09aaa6fa78cc8124e9517efbc6c92665384.
>
> The commit triggers multiple syzbot issues, probably due to possibility of
> manually creating VLAN 0 on netdevice which will cause the code to delete
> it since it can't distinguish such VLAN from implicit VLAN 0 automatically
> created for devices with NETIF_F_HW_VLAN_CTAG_FILTER feature.
>
> [...]
Here is the summary with links:
- [net] Revert "vlan: Fix VLAN 0 memory leak"
https://git.kernel.org/netdev/net/c/ace0ab3a4b54
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-08-14 7:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-11 15:45 [PATCH net] Revert "vlan: Fix VLAN 0 memory leak" Vlad Buslov
2023-08-13 7:39 ` Ido Schimmel
2023-08-14 7:20 ` patchwork-bot+netdevbpf
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).