Bug 486948 - Repeated segmentation fault crashes in various KWin::EffectWindow related functions
Summary: Repeated segmentation fault crashes in various KWin::EffectWindow related fun...
Status: RESOLVED FIXED
Alias: None
Product: kwin
Classification: Plasma
Component: effects-various (show other bugs)
Version: 6.0.4
Platform: Fedora RPMs Linux
: NOR normal
Target Milestone: ---
Assignee: KWin default assignee
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2024-05-13 10:26 UTC by Adam L
Modified: 2024-12-04 18:10 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments
Support info (6.39 KB, text/plain)
2024-05-13 10:26 UTC, Adam L
Details
Backtrace 1 (5.48 KB, text/plain)
2024-05-13 10:26 UTC, Adam L
Details
Backtrace 2 (8.26 KB, text/plain)
2024-05-13 10:27 UTC, Adam L
Details
Backtrace 3 (12.32 KB, text/plain)
2024-05-13 10:27 UTC, Adam L
Details
Backtrace 4 (12.48 KB, text/plain)
2024-05-13 10:27 UTC, Adam L
Details
Backtrace 5 (5.39 KB, text/plain)
2024-05-13 10:27 UTC, Adam L
Details
Backtrace 6 (9.06 KB, text/plain)
2024-05-13 10:27 UTC, Adam L
Details
Backtrace 7 (6.14 KB, text/plain)
2024-06-03 13:45 UTC, Adam L
Details
Backtrace 8 (6.14 KB, text/plain)
2024-06-12 14:36 UTC, Adam L
Details
Backtrace 9 (11.95 KB, text/plain)
2024-06-15 12:36 UTC, Adam L
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Adam L 2024-05-13 10:26:31 UTC
Created attachment 169422 [details]
Support info

SUMMARY
For a couple of years now I have been having continual intermittent crashes of KWin, with all stack traces revolving around KWin::EffectWindow or similar. I generally see this a few times a week, but sometimes more or less frequently. This has occurred in both X11 and Wayland, with the crash generally being more disruptive now under Wayland, since all apps are lost. Whenever I try to report this via DrKonqi it tells me the crash info isn't useful, even after installing debug info, so this could be getting underreported. I don't think I have anything particularly unusual in terms of config.

Lots of backtraces attached along with sysinfo. Anything else you need let me know.

STEPS TO REPRODUCE
Not deterministcally reproducible every time, but most often recently the crash occurs as the mouse is moved over an application tab on the Task Manager.

OBSERVED RESULT
KWin segmentation fault, all applications closed, black screen then return to empty desktop

EXPECTED RESULT
No crash

SOFTWARE/OS VERSIONS
This has been ongoing for a long time with no resolution, for example see https://bugs.kde.org/show_bug.cgi?id=437925. Still occured in Fedora 38 and 39, with their relevant versions of KDE.

Linux/KDE Plasma: Fedora 40
KDE Plasma Version: 6.0.4
KDE Frameworks Version: 6.1.0
Qt Version: 6.7.0

ADDITIONAL INFORMATION
Using Wayland, but same crash happened on X11
AMD graphics
Comment 1 Adam L 2024-05-13 10:26:51 UTC
Created attachment 169423 [details]
Backtrace 1
Comment 2 Adam L 2024-05-13 10:27:05 UTC
Created attachment 169424 [details]
Backtrace 2
Comment 3 Adam L 2024-05-13 10:27:16 UTC
Created attachment 169425 [details]
Backtrace 3
Comment 4 Adam L 2024-05-13 10:27:26 UTC
Created attachment 169426 [details]
Backtrace 4
Comment 5 Adam L 2024-05-13 10:27:38 UTC
Created attachment 169427 [details]
Backtrace 5
Comment 6 Adam L 2024-05-13 10:27:48 UTC
Created attachment 169428 [details]
Backtrace 6
Comment 7 Adam L 2024-06-03 13:45:59 UTC
Created attachment 170089 [details]
Backtrace 7
Comment 8 Adam L 2024-06-12 14:36:47 UTC
Created attachment 170420 [details]
Backtrace 8
Comment 9 Vlad Zahorodnii 2024-06-12 15:36:00 UTC
I looked into this crash for a bit but I don't understand how kwin could crash (iiuc the EffectWindow is likely deleted). If you disable window animation effects and just keep blur and background contrast effects enabled, is there still this crash?
Comment 10 Adam L 2024-06-13 19:32:46 UTC
(In reply to Vlad Zahorodnii from comment #9)
> I looked into this crash for a bit but I don't understand how kwin could
> crash (iiuc the EffectWindow is likely deleted). If you disable window
> animation effects and just keep blur and background contrast effects
> enabled, is there still this crash?

I've tried toggling various window effects, but perhaps not tried turning off just the animation related ones. Given the crash occurs only very intermittently, it's been hard to know what might work and what's just luck.

In general, the 'this' pointer of EffectWindow when shown in the backtraces looks like a reasonable value for an address, so it seems more likely that this might be a use of the pointer beyond its lifetime, rather than a use of an invalid pointer before the EffectWindow is created (we'd see nullptr anyway I believe, as it comes from a unique_ptr.get() in window->effectWindow()).

I had a bit of a dig through the kwin code though and it seems like the plugins should drop all internal uses of an effect window ptr when they receive the EffectsHandler::windowDeleted signal. This signal comes only from a connection to Workspace::deletedRemoved, which itself is only emitted in one place: the final unref of a window that takes it to 0, which then immediately deletes the window (and the effect window with it). There doesn't seem to be any clear mechanism for this to get out of sync (i.e window deleted but EffectsHandler::windowDeleted not called), so my vague guess is perhaps there is an unbalanced ref/unref on a window somewhere, such the window gets deleted even whilst other classes think they've sufficiently ref'd it to prevent deletion. In particular, the animation related effects appear to rely more heavily on the ref/unref system, which I guess is why you're asking?

I've tried creating/destroying windows in a tight loop and triggering various effects whilst doing so, but cannot recreate the crash, so whatever is causing this seems to be extremely niche. I'll try disabling animation related effects, but determining the lack of a crash is going to be a slow process
Comment 11 Adam L 2024-06-15 12:36:35 UTC
Created attachment 170523 [details]
Backtrace 9
Comment 12 Adam L 2024-12-04 18:10:40 UTC
This abruptly stopped happening at some point in perhaps July and I haven't seen it again since