<table><tr><td style="">graesslin created this revision.<br />graesslin added a reviewer: Plasma on Wayland.<br />Restricted Application added a subscriber: plasma-devel.<br />Restricted Application added a project: Plasma on Wayland.</td><a style="text-decoration: none; padding: 4px 8px; margin: 0 8px 8px; float: right; color: #464C5C; font-weight: bold; border-radius: 3px; background-color: #F7F7F9; background-image: linear-gradient(to bottom,#fff,#f1f0f1); display: inline-block; border: 1px solid rgba(71,87,120,.2);" href="https://phabricator.kde.org/D1937" rel="noreferrer">View Revision</a></tr></table><br /><div><strong>REVISION SUMMARY</strong><div><p>This is a gotcha moment:</p>

<ol class="remarkup-list">
<li class="remarkup-list-item">Create Surface with id 1</li>
<li class="remarkup-list-item">destroy that Surface</li>
<li class="remarkup-list-item">Create another Surface</li>
</ol>

<p>Now if in step 3 the id is by pure chance getting reused and also 1, the<br />
wl_resource pointer of the SurfaceInterface of step 1 and step 3 are<br />
the same. This is rather unexpected and causes problems.</p>

<p>When creating a ShellSurface in step 1 and step 3 it would fail. KWayland<br />
finds a ShellSurface which was already created for the Surface. The same<br />
can happen with QtSurfaceExtensionInterface and PlasmaShellInterface which<br />
also go into error state.</p>

<p>On client side this would trigger a protocol error and terminate the<br />
application. An easy way to reproduce is opening the file open dialog<br />
from within Kate multiple times.</p>

<p>This change addresses this problem by setting the surface pointer in<br />
those classes to null when the parent Surface gets destroyed. Thus<br />
creating a new ShellSurface won't find the old referenced Surface any<br />
more.</p>

<p>For ShellSurface a test case is added which hit the condition without<br />
this change. For the other two cases it's difficult to hit with a test<br />
case. For QtSurfaceExtension we don't have the client side, for<br />
PlasmaShellSurface we have proper cleanup, so it's much more unlikely<br />
to hit the condition.</p></div></div><br /><div><strong>REPOSITORY</strong><div><div>rKWAYLAND KWayland</div></div></div><br /><div><strong>BRANCH</strong><div><div>unset-surface</div></div></div><br /><div><strong>REVISION DETAIL</strong><div><a href="https://phabricator.kde.org/D1937" rel="noreferrer">https://phabricator.kde.org/D1937</a></div></div><br /><div><strong>AFFECTED FILES</strong><div><div>autotests/client/test_wayland_shell.cpp<br />
src/server/plasmashell_interface.cpp<br />
src/server/qtsurfaceextension_interface.cpp<br />
src/server/shell_interface.cpp</div></div></div><br /><div><strong>EMAIL PREFERENCES</strong><div><a href="https://phabricator.kde.org/settings/panel/emailpreferences/" rel="noreferrer">https://phabricator.kde.org/settings/panel/emailpreferences/</a></div></div><br /><div><strong>To: </strong>graesslin, Plasma on Wayland<br /><strong>Cc: </strong>plasma-devel, jensreuterberg, sebas<br /></div>