diff options
author | Arthur Huillet <ahuillet@nvidia.com> | 2017-02-01 15:02:41 +0100 |
---|---|---|
committer | Ulrich Sibiller <uli42@gmx.de> | 2017-03-26 16:54:20 +0200 |
commit | 00405b278471b4b5aa65003eb7ae97ac17d56445 (patch) | |
tree | bbaf11c9165845bce597f8feea55a0501ffd873a /nx-X11/programs/Xserver | |
parent | 8ad49a03ebebffbdbf21c4ef9775b7e5847496d9 (diff) | |
download | nx-libs-00405b278471b4b5aa65003eb7ae97ac17d56445.tar.gz nx-libs-00405b278471b4b5aa65003eb7ae97ac17d56445.tar.bz2 nx-libs-00405b278471b4b5aa65003eb7ae97ac17d56445.zip |
_XDefaultError: set XlibDisplayIOError flag before calling exit
_XReply isn't reentrant, and it can lead to deadlocks when the default error
handler is called: _XDefaultError calls exit(1). It is called indirectly by
_XReply when a X protocol error comes in that isn't filtered/handled by an
extension or the application. This means that if the application (or one of its
loaded shared libraries such as the NVIDIA OpenGL driver) has registered any
_fini destructor, _fini will get called while still on the call stack of
_XReply. If the destructor interacts with the X server and calls _XReply, it
will hit a deadlock, looping on the following in _XReply:
ConditionWait(dpy, dpy->xcb->reply_notify);
It is legal for an application to make Xlib calls during _fini, and that is
useful for an OpenGL driver to avoid resource leaks on the X server side, for
example in the dlopen/dlclose case. However, the driver can not readily tell
whether its _fini is being called because Xlib called exit, or for another
reason (dlclose), so it is hard to cleanly work around this issue in the driver.
This change makes it so _XReply effectively becomes a no-op when called after
_XDefaultError was called, as though an XIOError had happened. The dpy
connection isn't broken at that point, but any call to _XReply is going to hang.
This is a bit of a kludge, because the more correct solution would be to make
_XReply reentrant, maybe by broadcasting the reply_notify condition before
calling the default error handler. However, such a change would carry a grater
risk of introducing regressions in Xlib.
This change will drop some valid requests on the floor, but this should not
matter, as it will only do so in the case where the application is dying: X will
clean up after it once exit() is done running. There is the case of
XSetCloseDownMode(RETAIN_PERMANENT), but an application using that and wishing
to clean up resources in _fini would currently be hitting a deadlock, which is
hardly a better situation.
Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Jamey Sharp <jamey@minilop.net>
Diffstat (limited to 'nx-X11/programs/Xserver')
0 files changed, 0 insertions, 0 deletions