Xu Kuohai wrote: > On 8/1/2023 9:19 AM, Martin KaFai Lau wrote: > > On 7/28/23 3:56 AM, Xu Kuohai wrote: > >> sock_map_del_link() operates on both SOCKMAP and SOCKHASH, although > >> both types have member named "progs", the offset of "progs" member in > >> these two types is different, so "progs" should be accessed with the > >> real map type. > > > > The patch makes sense to me. Can a test be written to trigger it? > > > > Thank you for the review. I have a messy prog that triggers memleak > caused by this issue. I'll try to simplify it to a test. > > > John, please review. > > > > > > . > > Thanks good catch. One thing I don't see any tests for is deleting a socket from a sockmap and then trying to use it? My guess is almost no one deletes sockets from a map except on sock close. Maybe to reproduce, 1. connect a bunch of sockets to sockhash with verdict prog 2. remove the sockets 3. remove the sockhash 4. that should leak the bpf ref cnt so we could check for the prog still existing? Reviewed-by: John Fastabend <john.fastabend@xxxxxxxxx>