td_thr_get_info.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /* Get thread information.
  2. Copyright (C) 1999-2019 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. Contributed by Ulrich Drepper <drepper@redhat.com>, 1999.
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public
  7. License as published by the Free Software Foundation; either
  8. version 2.1 of the License, or (at your option) any later version.
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with the GNU C Library; if not, see
  15. <http://www.gnu.org/licenses/>. */
  16. #include <stddef.h>
  17. #include <string.h>
  18. #include <stdint.h>
  19. #include "thread_dbP.h"
  20. td_err_e
  21. td_thr_get_info (const td_thrhandle_t *th, td_thrinfo_t *infop)
  22. {
  23. td_err_e err;
  24. void *copy;
  25. psaddr_t tls, schedpolicy, schedprio, cancelhandling, tid, report_events;
  26. LOG ("td_thr_get_info");
  27. if (th->th_unique == 0)
  28. {
  29. /* Special case for the main thread before initialization. */
  30. copy = NULL;
  31. tls = 0;
  32. cancelhandling = 0;
  33. schedpolicy = SCHED_OTHER;
  34. schedprio = 0;
  35. tid = 0;
  36. err = DB_GET_VALUE (report_events, th->th_ta_p,
  37. __nptl_initial_report_events, 0);
  38. }
  39. else
  40. {
  41. /* Copy the whole descriptor in once so we can access the several
  42. fields locally. Excess copying in one go is much better than
  43. multiple ps_pdread calls. */
  44. err = DB_GET_STRUCT (copy, th->th_ta_p, th->th_unique, pthread);
  45. if (err != TD_OK)
  46. return err;
  47. err = DB_GET_FIELD_ADDRESS (tls, th->th_ta_p, th->th_unique,
  48. pthread, specific, 0);
  49. if (err != TD_OK)
  50. return err;
  51. err = DB_GET_FIELD_LOCAL (schedpolicy, th->th_ta_p, copy, pthread,
  52. schedpolicy, 0);
  53. if (err != TD_OK)
  54. return err;
  55. err = DB_GET_FIELD_LOCAL (schedprio, th->th_ta_p, copy, pthread,
  56. schedparam_sched_priority, 0);
  57. if (err != TD_OK)
  58. return err;
  59. err = DB_GET_FIELD_LOCAL (tid, th->th_ta_p, copy, pthread, tid, 0);
  60. if (err != TD_OK)
  61. return err;
  62. err = DB_GET_FIELD_LOCAL (cancelhandling, th->th_ta_p, copy, pthread,
  63. cancelhandling, 0);
  64. if (err != TD_OK)
  65. return err;
  66. err = DB_GET_FIELD_LOCAL (report_events, th->th_ta_p, copy, pthread,
  67. report_events, 0);
  68. }
  69. if (err != TD_OK)
  70. return err;
  71. /* Fill in information. Clear first to provide reproducable
  72. results for the fields we do not fill in. */
  73. memset (infop, '\0', sizeof (td_thrinfo_t));
  74. infop->ti_tid = (thread_t) th->th_unique;
  75. infop->ti_tls = (char *) tls;
  76. infop->ti_pri = ((uintptr_t) schedpolicy == SCHED_OTHER
  77. ? 0 : (uintptr_t) schedprio);
  78. infop->ti_type = TD_THR_USER;
  79. if ((((int) (uintptr_t) cancelhandling) & EXITING_BITMASK) == 0)
  80. /* XXX For now there is no way to get more information. */
  81. infop->ti_state = TD_THR_ACTIVE;
  82. else if ((((int) (uintptr_t) cancelhandling) & TERMINATED_BITMASK) == 0)
  83. infop->ti_state = TD_THR_ZOMBIE;
  84. else
  85. infop->ti_state = TD_THR_UNKNOWN;
  86. /* Initialization which are the same in both cases. */
  87. infop->ti_ta_p = th->th_ta_p;
  88. infop->ti_lid = tid == 0 ? ps_getpid (th->th_ta_p->ph) : (uintptr_t) tid;
  89. infop->ti_traceme = report_events != 0;
  90. if (copy != NULL)
  91. err = DB_GET_FIELD_LOCAL (infop->ti_startfunc, th->th_ta_p, copy, pthread,
  92. start_routine, 0);
  93. if (copy != NULL && err == TD_OK)
  94. {
  95. uint32_t idx;
  96. for (idx = 0; idx < TD_EVENTSIZE; ++idx)
  97. {
  98. psaddr_t word;
  99. err = DB_GET_FIELD_LOCAL (word, th->th_ta_p, copy, pthread,
  100. eventbuf_eventmask_event_bits, idx);
  101. if (err != TD_OK)
  102. break;
  103. infop->ti_events.event_bits[idx] = (uintptr_t) word;
  104. }
  105. if (err == TD_NOAPLIC)
  106. memset (&infop->ti_events.event_bits[idx], 0,
  107. (TD_EVENTSIZE - idx) * sizeof infop->ti_events.event_bits[0]);
  108. }
  109. return err;
  110. }