pthread_cancel.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /* Copyright (C) 2002, 2003, 2004, 2009 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
  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
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the 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; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #include <errno.h>
  16. #include <signal.h>
  17. #include "pthreadP.h"
  18. #include "atomic.h"
  19. #include <sysdep.h>
  20. #include <unistd.h>
  21. #include <bits/kernel-features.h>
  22. int
  23. pthread_cancel (
  24. pthread_t th)
  25. {
  26. volatile struct pthread *pd = (volatile struct pthread *) th;
  27. /* Make sure the descriptor is valid. */
  28. if (INVALID_TD_P (pd))
  29. /* Not a valid thread handle. */
  30. return ESRCH;
  31. #ifdef SHARED
  32. pthread_cancel_init ();
  33. #endif
  34. int result = 0;
  35. int oldval;
  36. int newval;
  37. do
  38. {
  39. again:
  40. oldval = pd->cancelhandling;
  41. newval = oldval | CANCELING_BITMASK | CANCELED_BITMASK;
  42. /* Avoid doing unnecessary work. The atomic operation can
  43. potentially be expensive if the bug has to be locked and
  44. remote cache lines have to be invalidated. */
  45. if (oldval == newval)
  46. break;
  47. /* If the cancellation is handled asynchronously just send a
  48. signal. We avoid this if possible since it's more
  49. expensive. */
  50. if (CANCEL_ENABLED_AND_CANCELED_AND_ASYNCHRONOUS (newval))
  51. {
  52. /* Mark the cancellation as "in progress". */
  53. if (atomic_compare_and_exchange_bool_acq (&pd->cancelhandling,
  54. oldval | CANCELING_BITMASK,
  55. oldval))
  56. goto again;
  57. /* The cancellation handler will take care of marking the
  58. thread as canceled. */
  59. INTERNAL_SYSCALL_DECL (err);
  60. /* One comment: The PID field in the TCB can temporarily be
  61. changed (in fork). But this must not affect this code
  62. here. Since this function would have to be called while
  63. the thread is executing fork, it would have to happen in
  64. a signal handler. But this is no allowed, pthread_cancel
  65. is not guaranteed to be async-safe. */
  66. pid_t pid = getpid ();
  67. int val;
  68. val = INTERNAL_SYSCALL (tgkill, err, 3, pid, pd->tid, SIGCANCEL);
  69. if (INTERNAL_SYSCALL_ERROR_P (val, err))
  70. result = INTERNAL_SYSCALL_ERRNO (val, err);
  71. break;
  72. }
  73. }
  74. /* Mark the thread as canceled. This has to be done
  75. atomically since other bits could be modified as well. */
  76. while (atomic_compare_and_exchange_bool_acq (&pd->cancelhandling, newval,
  77. oldval));
  78. return result;
  79. }
  80. PTHREAD_STATIC_FN_REQUIRE (pthread_create)