i965: Solve Android native fence fd double close
authorRandy Xu <randy.xu@intel.com>
Tue, 18 Apr 2017 06:27:10 +0000 (14:27 +0800)
committerChad Versace <chadversary@chromium.org>
Mon, 1 May 2017 21:46:50 +0000 (14:46 -0700)
commit6f21b5601cc1260eac53f65c8941b3aa66d0f5e9
treee1c615afd89b52cc930b99f3ac1945d36532c738
parentd884d1a6540ec0f60768c30df47f0228a37ea61c
i965: Solve Android native fence fd double close

The Android native fence in i965 has two fds: _EGLSync::SyncFd and
brw_fence::sync_fd.

The semantics of __DRI2fenceExtensionRec::create_fence_fd are unclear on
whether the DRI driver takes ownership of the incoming fd (which is the
same incoming fd from eglCreateSync).  i965 did take ownership, but all
other Mesa drivers do not; instead, they dup the incoming fd. As
a result, _EGLSync::SyncFd and brw_fence::sync_fd were the same fd, and
both egl_dri2 and i965 believed they owned it. On eglDestroySync, that
led to a double-close.

Fix the double-close by making brw_dri_create_fence_fd dup the incoming
fd, just like the other drivers do.

Signed-off-by: Randy Xu <randy.xu@intel.com>
Test: Run Vulkan and GLES stress test and no crash.
Fixes: 6403e376511 ("i965/sync: Implement fences based on Linux sync_file")
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Chad Versace <chadversary@chromium.org>
[chadv: Polish the commit message]
Cc: mesa-stable@lists.freedesktop.org
src/mesa/drivers/dri/i965/brw_sync.c