Re: [PATCH net 1/1] openvswitch: Fix CT limit teardown use-after-free
From: Aaron Conole <aconole@redhat.com>
Date: 2026-07-20 19:30:09
Andrew Lunn [off-list ref] writes:
On Sun, Jul 19, 2026 at 11:54:31PM -0700, Yuan Tan wrote:quoted
On 7/19/26 19:52, Andrew Lunn wrote:quoted
On Mon, Jul 20, 2026 at 10:14:16AM +0800, Ren Wei wrote:quoted
From: Yuqi Xu <redacted> Packet processing uses CT limit state under RCU, while netns teardown frees that state under ovs_mutex. The CT limit pointer was neither removed from readers nor protected by a grace period, allowing packet processing to dereference the freed state. Replace the pointer before freeing the CT limit state. Wait for in-flight RCU readers before freeing its contents. Serialize CT limit netlink operations with teardown for the full lifetime of their state accesses. Fixes: 11efd5cb04a1 ("openvswitch: Support conntrack zone limit") Cc: stable@vger.kernel.org Reported-by: Vega <redacted>Is Vega a person?Hi Andrew, Thank you very much for your review! For context, we had previously understood that using the tool name in the Reported-by tag was acceptable, based on examples such as Reported-by: AutonomousCodeSecurity@microsoft.com and Reported-by: Anthropic. https://lore.kernel.org/all/20260630171016.11c02dec@kernel.org/ (local)https://docs.kernel.org/process/submitting-patches.html The Reported-by tag gives credit to people who find bugs and report them and it hopefully inspires them to help us again in the future. The tag is intended for bugs; please do not use it to credit feature requests. The tag should be followed by a Closes: tag pointing to the report, unless the report is not available on the web. If you believe this is out of date, please submit a patch with new text to this document.
It is common practice to accept syzbot reports as well, which look like:
Reported-by: syzbot+36256deb69a588e9290e@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=36256deb69a588e9290e
(see commit 539dfcf69105d8d3d4d677b71de6e5ede2e6dfa0 for example).
I find it valuable being a person. It indicate somebody is bothered by the problem you are fixing. We see a lot theoretical bug fixes, which in practice nobody ever hit. I would prefer to spend my time reviewing real issues, not theoretical issues, and the Reported-by: is a quick indicator of this.
+1 In the case of syzbot reports, they are real actionable reports that we can look at and address (and I agree with your sentiment of wanting to focus on real issues). They include the 'Closes:' tag as well, and a reviewer can just visit the link and see the splat. If there is a report link that this Vega tool pushes, maybe that would be acceptable since it's the way syzbot works as well. It also makes sense to update the documentation to reflect how it is used currently. As for the v2, it would help my review to include some kind of reproducer description - I usually try to experience OVS splats for myself.