[Intel-gfx] [PATCH 0/2] Fuse submount_lookup needs to be initialized

2023-11-13 Thread Krister Johansen
Hi Miklos,
I got a couple of bug reports[1][2] this morning from teams that are
tracking regresssions in linux-next.  My patch 513dfacefd71 ("fuse:
share lookup state between submount and its parent") is causing panics
in the fuse unmount path.  The reports came from users with SLUB_DEBUG
enabled, and the additional debug sanitization catches the fact that the
submount_lookup field isn't getting initialized which could lead to a
subsequently bogus attempt to access the submount_lookup structure and
adjust its refcount.

I've added SLUB_DEBUG to my testing kconfig, and have reproduced the
problem using the memfd self-test that was triggering the problem for
both reporters.  With the fix that follows this e-mail, I see no more
erroneous accesses of poisoned slub memory.

I'm a bit unsure of the desired approach for fixing these kinds of
problems.  I'm also away from the office on Nov 10th and Nov 13th, but
expect to be back on the console on the Nov 14th.  Given the gap, I've
prepared a pair of patches, but we only need one.

The first is simply a followup fix that addresses the problem in a
subsequent one-line commit.

If you'd rather revert the entire bad patch and go again, the second
patch in the series is a v5 of the original with the submount_lookup
initialization added.

Either should do, but I wasn't sure which approach was preferable.

Thanks, and my apologies for the inconvenience.

-K

[1] 
https://lore.kernel.org/linux-fsdevel/ca+g9fyue-dv7t-nrohwwgshvyboxjb2b6hpcdvde3bgg7fb...@mail.gmail.com/T/#u
[2] 
https://lore.kernel.org/intel-gfx/sj1pr11mb6129508509896ad7d0e03114b9...@sj1pr11mb6129.namprd11.prod.outlook.com/T/#u


Re: [Intel-gfx] [PATCH 0/2] Fuse submount_lookup needs to be initialized

2023-11-13 Thread Miklos Szeredi
On Thu, 9 Nov 2023 at 23:37, Krister Johansen  wrote:

> Either should do, but I wasn't sure which approach was preferable.

An incremental is better in this situation.   Applied and pushed.

> Thanks, and my apologies for the inconvenience.

Really no need to apologize, this happens and the best possible
outcome is that it get fixed before being released.

Thanks,
Miklos