x11conn.c 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. /*
  2. X11 support for the Midnight Commander.
  3. Copyright (C) 2005-2024
  4. Free Software Foundation, Inc.
  5. Written by:
  6. Roland Illig <roland.illig@gmx.de>, 2005.
  7. This file is part of the Midnight Commander.
  8. The Midnight Commander is free software: you can redistribute it
  9. and/or modify it under the terms of the GNU General Public License as
  10. published by the Free Software Foundation, either version 3 of the License,
  11. or (at your option) any later version.
  12. The Midnight Commander is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. GNU General Public License for more details.
  16. You should have received a copy of the GNU General Public License
  17. along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. /** \file x11conn.c
  20. * \brief Source: X11 support
  21. * \warning This code uses setjmp() and longjmp(). Before you modify _anything_ here,
  22. * please read the relevant sections of the C standard.
  23. */
  24. #include <config.h>
  25. #include <setjmp.h>
  26. #include <X11/Xlib.h>
  27. #ifdef HAVE_GMODULE
  28. #include <gmodule.h>
  29. #endif
  30. #include "lib/global.h"
  31. #include "x11conn.h"
  32. /*** global variables ****************************************************************************/
  33. /*** file scope macro definitions ****************************************************************/
  34. #ifndef HAVE_GMODULE
  35. #define func_XOpenDisplay XOpenDisplay
  36. #define func_XCloseDisplay XCloseDisplay
  37. #define func_XSetErrorHandler XSetErrorHandler
  38. #define func_XSetIOErrorHandler XSetIOErrorHandler
  39. #define func_XQueryPointer XQueryPointer
  40. #endif
  41. /*** file scope type declarations ****************************************************************/
  42. typedef int (*mc_XErrorHandler_callback) (Display *, XErrorEvent *);
  43. typedef int (*mc_XIOErrorHandler_callback) (Display *);
  44. /*** forward declarations (file scope functions) *************************************************/
  45. /*** file scope variables ************************************************************************/
  46. #ifdef HAVE_GMODULE
  47. static Display *(*func_XOpenDisplay) (_Xconst char *);
  48. static int (*func_XCloseDisplay) (Display *);
  49. static mc_XErrorHandler_callback (*func_XSetErrorHandler) (mc_XErrorHandler_callback);
  50. static mc_XIOErrorHandler_callback (*func_XSetIOErrorHandler) (mc_XIOErrorHandler_callback);
  51. static Bool (*func_XQueryPointer) (Display *, Window, Window *, Window *,
  52. int *, int *, int *, int *, unsigned int *);
  53. static GModule *x11_module;
  54. #endif
  55. static gboolean handlers_installed = FALSE;
  56. /* This flag is set as soon as an X11 error is reported. Usually that
  57. * means that the DISPLAY is not available anymore. We do not try to
  58. * reconnect, as that would violate the X11 protocol. */
  59. static gboolean lost_connection = FALSE;
  60. static jmp_buf x11_exception; /* FIXME: get a better name */
  61. static gboolean longjmp_allowed = FALSE;
  62. /* --------------------------------------------------------------------------------------------- */
  63. /*** file scope functions ************************************************************************/
  64. /* --------------------------------------------------------------------------------------------- */
  65. static int
  66. x_io_error_handler (Display *dpy)
  67. {
  68. (void) dpy;
  69. lost_connection = TRUE;
  70. if (longjmp_allowed)
  71. {
  72. longjmp_allowed = FALSE;
  73. longjmp (x11_exception, 1);
  74. }
  75. return 0;
  76. }
  77. /* --------------------------------------------------------------------------------------------- */
  78. static int
  79. x_error_handler (Display *dpy, XErrorEvent *ee)
  80. {
  81. (void) ee;
  82. (void) func_XCloseDisplay (dpy);
  83. return x_io_error_handler (dpy);
  84. }
  85. /* --------------------------------------------------------------------------------------------- */
  86. static void
  87. install_error_handlers (void)
  88. {
  89. if (handlers_installed)
  90. return;
  91. (void) func_XSetErrorHandler (x_error_handler);
  92. (void) func_XSetIOErrorHandler (x_io_error_handler);
  93. handlers_installed = TRUE;
  94. }
  95. /* --------------------------------------------------------------------------------------------- */
  96. static gboolean
  97. x11_available (void)
  98. {
  99. #ifdef HAVE_GMODULE
  100. gchar *x11_module_fname;
  101. if (lost_connection)
  102. return FALSE;
  103. if (x11_module != NULL)
  104. return TRUE;
  105. x11_module_fname = g_module_build_path (NULL, "X11");
  106. x11_module = g_module_open (x11_module_fname, G_MODULE_BIND_LAZY);
  107. if (x11_module == NULL)
  108. x11_module = g_module_open ("libX11.so.6", G_MODULE_BIND_LAZY);
  109. g_free (x11_module_fname);
  110. if (x11_module == NULL)
  111. return FALSE;
  112. if (!g_module_symbol (x11_module, "XOpenDisplay", (void *) &func_XOpenDisplay))
  113. goto cleanup;
  114. if (!g_module_symbol (x11_module, "XCloseDisplay", (void *) &func_XCloseDisplay))
  115. goto cleanup;
  116. if (!g_module_symbol (x11_module, "XQueryPointer", (void *) &func_XQueryPointer))
  117. goto cleanup;
  118. if (!g_module_symbol (x11_module, "XSetErrorHandler", (void *) &func_XSetErrorHandler))
  119. goto cleanup;
  120. if (!g_module_symbol (x11_module, "XSetIOErrorHandler", (void *) &func_XSetIOErrorHandler))
  121. goto cleanup;
  122. install_error_handlers ();
  123. return TRUE;
  124. cleanup:
  125. func_XOpenDisplay = 0;
  126. func_XCloseDisplay = 0;
  127. func_XQueryPointer = 0;
  128. func_XSetErrorHandler = 0;
  129. func_XSetIOErrorHandler = 0;
  130. g_module_close (x11_module);
  131. x11_module = NULL;
  132. return FALSE;
  133. #else
  134. install_error_handlers ();
  135. return !(lost_connection);
  136. #endif
  137. }
  138. /* --------------------------------------------------------------------------------------------- */
  139. /*** public functions ****************************************************************************/
  140. /* --------------------------------------------------------------------------------------------- */
  141. Display *
  142. mc_XOpenDisplay (const char *displayname)
  143. {
  144. if (x11_available ())
  145. {
  146. if (setjmp (x11_exception) == 0)
  147. {
  148. Display *retval;
  149. /* cppcheck-suppress redundantAssignment */
  150. longjmp_allowed = TRUE;
  151. retval = func_XOpenDisplay (displayname);
  152. /* cppcheck-suppress redundantAssignment */
  153. longjmp_allowed = FALSE;
  154. return retval;
  155. }
  156. }
  157. return NULL;
  158. }
  159. /* --------------------------------------------------------------------------------------------- */
  160. int
  161. mc_XCloseDisplay (Display *display)
  162. {
  163. if (x11_available ())
  164. {
  165. if (setjmp (x11_exception) == 0)
  166. {
  167. int retval;
  168. /* cppcheck-suppress redundantAssignment */
  169. longjmp_allowed = TRUE;
  170. retval = func_XCloseDisplay (display);
  171. /* cppcheck-suppress redundantAssignment */
  172. longjmp_allowed = FALSE;
  173. return retval;
  174. }
  175. }
  176. return 0;
  177. }
  178. /* --------------------------------------------------------------------------------------------- */
  179. Bool
  180. mc_XQueryPointer (Display *display, Window win, Window *root_return,
  181. Window *child_return, int *root_x_return, int *root_y_return,
  182. int *win_x_return, int *win_y_return, unsigned int *mask_return)
  183. {
  184. Bool retval;
  185. if (x11_available ())
  186. {
  187. if (setjmp (x11_exception) == 0)
  188. {
  189. /* cppcheck-suppress redundantAssignment */
  190. longjmp_allowed = TRUE;
  191. retval = func_XQueryPointer (display, win, root_return,
  192. child_return, root_x_return, root_y_return,
  193. win_x_return, win_y_return, mask_return);
  194. /* cppcheck-suppress redundantAssignment */
  195. longjmp_allowed = FALSE;
  196. return retval;
  197. }
  198. }
  199. *root_return = None;
  200. *child_return = None;
  201. *root_x_return = 0;
  202. *root_y_return = 0;
  203. *win_x_return = 0;
  204. *win_y_return = 0;
  205. *mask_return = 0;
  206. return False;
  207. }
  208. /* --------------------------------------------------------------------------------------------- */