unwind-forcedunwind.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /* Copyright (C) 2003, 2005, 2006, 2009 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Jakub Jelinek <jakub@redhat.com>.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public License as
  6. published by the Free Software Foundation; either version 2.1 of the
  7. License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; see the file COPYING.LIB. If
  14. not, see <http://www.gnu.org/licenses/>. */
  15. #include <dlfcn.h>
  16. #include <stdio.h>
  17. #include <unwind.h>
  18. #include <pthreadP.h>
  19. #include <sysdep.h>
  20. #include <libgcc_s.h>
  21. #include <unwind-resume.h>
  22. #define __libc_dlopen(x) dlopen(x, (RTLD_LOCAL | RTLD_LAZY))
  23. #define __libc_dlsym dlsym
  24. #define __libc_dlclose dlclose
  25. static void *libgcc_s_handle;
  26. void (*__libgcc_s_resume) (struct _Unwind_Exception *exc)
  27. attribute_hidden __attribute__ ((noreturn));
  28. static _Unwind_Reason_Code (*libgcc_s_personality) PERSONALITY_PROTO;
  29. static _Unwind_Reason_Code (*libgcc_s_forcedunwind)
  30. (struct _Unwind_Exception *, _Unwind_Stop_Fn, void *);
  31. static _Unwind_Word (*libgcc_s_getcfa) (struct _Unwind_Context *);
  32. static void (*libgcc_s_sjlj_register) (struct SjLj_Function_Context *);
  33. static void (*libgcc_s_sjlj_unregister) (struct SjLj_Function_Context *);
  34. void
  35. __attribute_noinline__
  36. pthread_cancel_init (void)
  37. {
  38. void *resume;
  39. void *personality;
  40. void *forcedunwind;
  41. void *getcfa;
  42. void *handle;
  43. void *sjlj_register, *sjlj_unregister;
  44. if (__builtin_expect (libgcc_s_handle != NULL, 1))
  45. {
  46. /* Force gcc to reload all values. */
  47. __asm__ __volatile__ ("" ::: "memory");
  48. return;
  49. }
  50. handle = __libc_dlopen (LIBGCC_S_SO);
  51. resume = __libc_dlsym (handle, "_Unwind_SjLj_Resume");
  52. personality = __libc_dlsym (handle, "__gcc_personality_sj0");
  53. forcedunwind = __libc_dlsym (handle, "_Unwind_SjLj_ForcedUnwind");
  54. getcfa = __libc_dlsym (handle, "_Unwind_GetCFA");
  55. sjlj_register = __libc_dlsym (handle, "_Unwind_SjLj_Register");
  56. sjlj_unregister = __libc_dlsym (handle, "_Unwind_SjLj_Unregister");
  57. if ((handle == NULL)
  58. || (resume == NULL)
  59. || (personality == NULL)
  60. || (forcedunwind == NULL)
  61. || (getcfa == NULL)
  62. || (sjlj_register == NULL)
  63. || (sjlj_unregister == NULL)
  64. #ifdef ARCH_CANCEL_INIT
  65. || ARCH_CANCEL_INIT (handle)
  66. #endif
  67. )
  68. {
  69. fprintf (stderr,
  70. LIBGCC_S_SO " must be installed for pthread_cancel to work\n");
  71. abort();
  72. }
  73. __libgcc_s_resume = resume;
  74. libgcc_s_personality = personality;
  75. libgcc_s_forcedunwind = forcedunwind;
  76. libgcc_s_sjlj_register = sjlj_register;
  77. libgcc_s_sjlj_unregister = sjlj_unregister;
  78. libgcc_s_getcfa = getcfa;
  79. /* Make sure libgcc_s_handle is written last. Otherwise,
  80. pthread_cancel_init might return early even when the pointer the
  81. caller is interested in is not initialized yet. */
  82. atomic_write_barrier ();
  83. libgcc_s_handle = handle;
  84. }
  85. void
  86. __libc_freeres_fn_section
  87. __unwind_freeres (void)
  88. {
  89. void *handle = libgcc_s_handle;
  90. if (handle != NULL)
  91. {
  92. libgcc_s_handle = NULL;
  93. __libc_dlclose (handle);
  94. }
  95. }
  96. #if !HAVE_ARCH_UNWIND_RESUME
  97. void attribute_hidden
  98. _Unwind_Resume (struct _Unwind_Exception *exc)
  99. {
  100. if (__builtin_expect (libgcc_s_handle == NULL, 0))
  101. pthread_cancel_init ();
  102. __libgcc_s_resume(exc);
  103. }
  104. #endif
  105. _Unwind_Reason_Code attribute_hidden
  106. __gcc_personality_v0 PERSONALITY_PROTO
  107. {
  108. if (__builtin_expect (libgcc_s_handle == NULL, 0))
  109. pthread_cancel_init ();
  110. return libgcc_s_personality PERSONALITY_ARGS;
  111. }
  112. _Unwind_Reason_Code attribute_hidden
  113. _Unwind_ForcedUnwind (struct _Unwind_Exception *exc, _Unwind_Stop_Fn stop,
  114. void *stop_argument)
  115. {
  116. if (__builtin_expect (libgcc_s_handle == NULL, 0))
  117. pthread_cancel_init ();
  118. return libgcc_s_forcedunwind (exc, stop, stop_argument);
  119. }
  120. _Unwind_Word attribute_hidden
  121. _Unwind_GetCFA (struct _Unwind_Context *context)
  122. {
  123. if (__builtin_expect (libgcc_s_handle == NULL, 0))
  124. pthread_cancel_init ();
  125. return libgcc_s_getcfa (context);
  126. }
  127. void
  128. _Unwind_SjLj_Register (struct SjLj_Function_Context *fc)
  129. {
  130. if (__builtin_expect (libgcc_s_sjlj_register == NULL, 0))
  131. pthread_cancel_init ();
  132. libgcc_s_sjlj_register (fc);
  133. }
  134. void
  135. _Unwind_SjLj_Unregister (struct SjLj_Function_Context *fc)
  136. {
  137. if (__builtin_expect (libgcc_s_sjlj_unregister == NULL, 0))
  138. pthread_cancel_init ();
  139. libgcc_s_sjlj_unregister (fc);
  140. }