unwind-forcedunwind.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /* Copyright (C) 2003-2019 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 <gnu/lib-names.h>
  21. #include <unwind-resume.h>
  22. static void *libgcc_s_handle;
  23. void (*__libgcc_s_resume) (struct _Unwind_Exception *exc)
  24. attribute_hidden __attribute__ ((noreturn));
  25. static _Unwind_Reason_Code (*libgcc_s_personality) PERSONALITY_PROTO;
  26. static _Unwind_Reason_Code (*libgcc_s_forcedunwind)
  27. (struct _Unwind_Exception *, _Unwind_Stop_Fn, void *);
  28. static _Unwind_Word (*libgcc_s_getcfa) (struct _Unwind_Context *);
  29. void
  30. __attribute_noinline__
  31. pthread_cancel_init (void)
  32. {
  33. void *resume;
  34. void *personality;
  35. void *forcedunwind;
  36. void *getcfa;
  37. void *handle;
  38. if (__glibc_likely (libgcc_s_handle != NULL))
  39. {
  40. /* Force gcc to reload all values. */
  41. asm volatile ("" ::: "memory");
  42. return;
  43. }
  44. /* See include/dlfcn.h. Use of __libc_dlopen requires RTLD_NOW. */
  45. handle = __libc_dlopen (LIBGCC_S_SO);
  46. if (handle == NULL
  47. || (resume = __libc_dlsym (handle, "_Unwind_Resume")) == NULL
  48. || (personality = __libc_dlsym (handle, "__gcc_personality_v0")) == NULL
  49. || (forcedunwind = __libc_dlsym (handle, "_Unwind_ForcedUnwind"))
  50. == NULL
  51. || (getcfa = __libc_dlsym (handle, "_Unwind_GetCFA")) == NULL
  52. #ifdef ARCH_CANCEL_INIT
  53. || ARCH_CANCEL_INIT (handle)
  54. #endif
  55. )
  56. __libc_fatal (LIBGCC_S_SO " must be installed for pthread_cancel to work\n");
  57. PTR_MANGLE (resume);
  58. __libgcc_s_resume = resume;
  59. PTR_MANGLE (personality);
  60. libgcc_s_personality = personality;
  61. PTR_MANGLE (forcedunwind);
  62. libgcc_s_forcedunwind = forcedunwind;
  63. PTR_MANGLE (getcfa);
  64. libgcc_s_getcfa = getcfa;
  65. /* Make sure libgcc_s_handle is written last. Otherwise,
  66. pthread_cancel_init might return early even when the pointer the
  67. caller is interested in is not initialized yet. */
  68. atomic_write_barrier ();
  69. libgcc_s_handle = handle;
  70. }
  71. /* Register for cleanup in libpthread.so. */
  72. void
  73. __nptl_unwind_freeres (void)
  74. {
  75. void *handle = libgcc_s_handle;
  76. if (handle != NULL)
  77. {
  78. libgcc_s_handle = NULL;
  79. __libc_dlclose (handle);
  80. }
  81. }
  82. #if !HAVE_ARCH_UNWIND_RESUME
  83. void
  84. _Unwind_Resume (struct _Unwind_Exception *exc)
  85. {
  86. if (__glibc_unlikely (libgcc_s_handle == NULL))
  87. pthread_cancel_init ();
  88. else
  89. atomic_read_barrier ();
  90. void (*resume) (struct _Unwind_Exception *exc) = __libgcc_s_resume;
  91. PTR_DEMANGLE (resume);
  92. resume (exc);
  93. }
  94. #endif
  95. _Unwind_Reason_Code
  96. __gcc_personality_v0 PERSONALITY_PROTO
  97. {
  98. if (__glibc_unlikely (libgcc_s_handle == NULL))
  99. pthread_cancel_init ();
  100. else
  101. atomic_read_barrier ();
  102. __typeof (libgcc_s_personality) personality = libgcc_s_personality;
  103. PTR_DEMANGLE (personality);
  104. return (*personality) PERSONALITY_ARGS;
  105. }
  106. _Unwind_Reason_Code
  107. _Unwind_ForcedUnwind (struct _Unwind_Exception *exc, _Unwind_Stop_Fn stop,
  108. void *stop_argument)
  109. {
  110. if (__glibc_unlikely (libgcc_s_handle == NULL))
  111. pthread_cancel_init ();
  112. else
  113. atomic_read_barrier ();
  114. _Unwind_Reason_Code (*forcedunwind)
  115. (struct _Unwind_Exception *, _Unwind_Stop_Fn, void *)
  116. = libgcc_s_forcedunwind;
  117. PTR_DEMANGLE (forcedunwind);
  118. return forcedunwind (exc, stop, stop_argument);
  119. }
  120. _Unwind_Word
  121. _Unwind_GetCFA (struct _Unwind_Context *context)
  122. {
  123. if (__glibc_unlikely (libgcc_s_handle == NULL))
  124. pthread_cancel_init ();
  125. else
  126. atomic_read_barrier ();
  127. _Unwind_Word (*getcfa) (struct _Unwind_Context *) = libgcc_s_getcfa;
  128. PTR_DEMANGLE (getcfa);
  129. return getcfa (context);
  130. }