unwind-forcedunwind.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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. #define __libc_dlopen(x) dlopen(x, (RTLD_LOCAL | RTLD_LAZY))
  22. #define __libc_dlsym dlsym
  23. #define __libc_dlclose dlclose
  24. static void *libgcc_s_handle;
  25. static void (*libgcc_s_resume) (struct _Unwind_Exception *exc);
  26. static _Unwind_Reason_Code (*libgcc_s_personality)
  27. (int, _Unwind_Action, _Unwind_Exception_Class, struct _Unwind_Exception *,
  28. struct _Unwind_Context *);
  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. void
  33. __attribute_noinline__
  34. pthread_cancel_init (void)
  35. {
  36. void *resume;
  37. void *personality;
  38. void *forcedunwind;
  39. void *getcfa;
  40. void *handle;
  41. if (__builtin_expect (libgcc_s_handle != NULL, 1))
  42. {
  43. /* Force gcc to reload all values. */
  44. __asm__ __volatile__ ("" ::: "memory");
  45. return;
  46. }
  47. handle = __libc_dlopen (LIBGCC_S_SO);
  48. if (handle == NULL
  49. || (resume = __libc_dlsym (handle, "_Unwind_Resume")) == NULL
  50. || (personality = __libc_dlsym (handle, "__gcc_personality_v0")) == NULL
  51. || (forcedunwind = __libc_dlsym (handle, "_Unwind_ForcedUnwind"))
  52. == NULL
  53. || (getcfa = __libc_dlsym (handle, "_Unwind_GetCFA")) == NULL
  54. #ifdef ARCH_CANCEL_INIT
  55. || ARCH_CANCEL_INIT (handle)
  56. #endif
  57. )
  58. {
  59. printf (LIBGCC_S_SO " must be installed for pthread_cancel to work\n");
  60. abort();
  61. }
  62. PTR_MANGLE (resume);
  63. libgcc_s_resume = resume;
  64. PTR_MANGLE (personality);
  65. libgcc_s_personality = personality;
  66. PTR_MANGLE (forcedunwind);
  67. libgcc_s_forcedunwind = forcedunwind;
  68. PTR_MANGLE (getcfa);
  69. libgcc_s_getcfa = getcfa;
  70. /* Make sure libgcc_s_handle is written last. Otherwise,
  71. pthread_cancel_init might return early even when the pointer the
  72. caller is interested in is not initialized yet. */
  73. atomic_write_barrier ();
  74. libgcc_s_handle = handle;
  75. }
  76. void
  77. __libc_freeres_fn_section
  78. __unwind_freeres (void)
  79. {
  80. void *handle = libgcc_s_handle;
  81. if (handle != NULL)
  82. {
  83. libgcc_s_handle = NULL;
  84. __libc_dlclose (handle);
  85. }
  86. }
  87. void
  88. _Unwind_Resume (struct _Unwind_Exception *exc)
  89. {
  90. if (__builtin_expect (libgcc_s_handle == NULL, 0))
  91. pthread_cancel_init ();
  92. void (*resume) (struct _Unwind_Exception *exc) = libgcc_s_resume;
  93. PTR_DEMANGLE (resume);
  94. resume (exc);
  95. }
  96. _Unwind_Reason_Code
  97. __gcc_personality_v0 (int version, _Unwind_Action actions,
  98. _Unwind_Exception_Class exception_class,
  99. struct _Unwind_Exception *ue_header,
  100. struct _Unwind_Context *context);
  101. _Unwind_Reason_Code
  102. __gcc_personality_v0 (int version, _Unwind_Action actions,
  103. _Unwind_Exception_Class exception_class,
  104. struct _Unwind_Exception *ue_header,
  105. struct _Unwind_Context *context)
  106. {
  107. if (__builtin_expect (libgcc_s_handle == NULL, 0))
  108. pthread_cancel_init ();
  109. _Unwind_Reason_Code (*personality)
  110. (int, _Unwind_Action, _Unwind_Exception_Class, struct _Unwind_Exception *,
  111. struct _Unwind_Context *) = libgcc_s_personality;
  112. PTR_DEMANGLE (personality);
  113. return personality (version, actions, exception_class, ue_header, context);
  114. }
  115. _Unwind_Reason_Code
  116. _Unwind_ForcedUnwind (struct _Unwind_Exception *exc, _Unwind_Stop_Fn stop,
  117. void *stop_argument)
  118. {
  119. if (__builtin_expect (libgcc_s_handle == NULL, 0))
  120. pthread_cancel_init ();
  121. _Unwind_Reason_Code (*forcedunwind)
  122. (struct _Unwind_Exception *, _Unwind_Stop_Fn, void *)
  123. = libgcc_s_forcedunwind;
  124. PTR_DEMANGLE (forcedunwind);
  125. return forcedunwind (exc, stop, stop_argument);
  126. }
  127. _Unwind_Word
  128. _Unwind_GetCFA (struct _Unwind_Context *context)
  129. {
  130. if (__builtin_expect (libgcc_s_handle == NULL, 0))
  131. pthread_cancel_init ();
  132. _Unwind_Word (*getcfa) (struct _Unwind_Context *) = libgcc_s_getcfa;
  133. PTR_DEMANGLE (getcfa);
  134. return getcfa (context);
  135. }