ws: do not export a stale buffer on a commit without attach - #206
Open
mirko wants to merge 1 commit into
Open
Conversation
Surface::shmBuffer (and, in the EGL implementation, also dmabufBuffer) is set at wl_surface.attach and was never cleared: a commit without a fresh attach - e.g. one issued only for frame-callback pacing - re-exported the previous buffer pointer. Once the client had destroyed that buffer after its release, the embedder received a dangling wl_shm_buffer whose metadata reads as garbage (observed as negative width/stride crashing cog's drm renderer copy loop). Consume the attached buffer state at commit and export nothing when no buffer was attached. Apply to both ImplSHM and ImplEGL - the code is duplicated between ws-shm.cpp and ws-egl.cpp. Signed-off-by: Mirko Vogt <foss@mirko.in>
Author
|
Partially related to: Igalia/cog#794 |
mirko
added a commit
to mirko/video
that referenced
this pull request
Jul 18, 2026
Surface::shmBuffer/dmabufBuffer were set at attach and never cleared; a commit without a fresh attach (frame-callback pacing) re-exported the previous - potentially dangling - buffer pointer, handing the embedder garbage buffer metadata. Consume the attached state at commit and export nothing without a buffer, in both ImplSHM and ImplEGL (upstream-ready patch with the full story). PKG_RELEASE 5. Patchset already proposed upstream: Igalia/WPEBackend-fdo#206 Assisted-By: Claude Opus + Fable Signed-off-by: Mirko Vogt <mirko-openwrt@nanl.de>
mirko
added a commit
to mirko/video
that referenced
this pull request
Jul 18, 2026
Surface::shmBuffer/dmabufBuffer were set at attach and never cleared; a commit without a fresh attach (frame-callback pacing) re-exported the previous - potentially dangling - buffer pointer, handing the embedder garbage buffer metadata. Consume the attached state at commit and export nothing without a buffer, in both ImplSHM and ImplEGL (upstream-ready patch with the full story). PKG_RELEASE 5. Patchset already proposed upstream: Igalia/WPEBackend-fdo#206 Assisted-By: Claude Opus + Fable Signed-off-by: Mirko Vogt <mirko-openwrt@nanl.de>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Surface::shmBuffer (and, in the EGL implementation, also dmabufBuffer) is set at wl_surface.attach and was never cleared: a commit without a fresh attach - e.g. one issued only for frame-callback pacing - re-exported the previous buffer pointer. Once the client had destroyed that buffer after its release, the embedder received a dangling wl_shm_buffer whose metadata reads as garbage (observed as negative width/stride crashing cog's drm renderer copy loop).
Consume the attached buffer state at commit and export nothing when no buffer was attached. Apply to both ImplSHM and ImplEGL - the code is duplicated between ws-shm.cpp and ws-egl.cpp.
Disclaimer: I used Claude by Anthropic to help with debugging and fixing this issue.