]> git.ipfire.org Git - thirdparty/glibc.git/blame - nptl_db/td_ta_thr_iter.c
nptl: Move pthread_attr_setinheritsched implementation into libc.
[thirdparty/glibc.git] / nptl_db / td_ta_thr_iter.c
CommitLineData
76a50749 1/* Iterate over a process's threads.
04277e02 2 Copyright (C) 1999-2019 Free Software Foundation, Inc.
76a50749
UD
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@redhat.com>, 1999.
5
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
10
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public
59ba27a6 17 License along with the GNU C Library; if not, see
5a82c748 18 <https://www.gnu.org/licenses/>. */
76a50749
UD
19
20#include "thread_dbP.h"
76a50749
UD
21
22
23static td_err_e
7f08f55a 24iterate_thread_list (td_thragent_t *ta, td_thr_iter_f *callback,
76a50749 25 void *cbdata_p, td_thr_state_e state, int ti_pri,
b717c14f 26 psaddr_t head, bool fake_empty)
76a50749 27{
7f08f55a
RM
28 td_err_e err;
29 psaddr_t next, ofs;
30 void *copy;
76a50749
UD
31
32 /* Test the state.
33 XXX This is incomplete. Normally this test should be in the loop. */
34 if (state != TD_THR_ANY_STATE)
35 return TD_OK;
36
7f08f55a
RM
37 err = DB_GET_FIELD (next, ta, head, list_t, next, 0);
38 if (err != TD_OK)
39 return err;
76a50749 40
7f08f55a 41 if (next == 0 && fake_empty)
f9958079 42 {
7d9d8bd1
RM
43 /* __pthread_initialize_minimal has not run. There is just the main
44 thread to return. We cannot rely on its thread register. They
45 sometimes contain garbage that would confuse us, left by the
46 kernel at exec. So if it looks like initialization is incomplete,
47 we only fake a special descriptor for the initial thread. */
48 td_thrhandle_t th = { ta, 0 };
49 return callback (&th, cbdata_p) != 0 ? TD_DBERR : TD_OK;
f9958079
RM
50 }
51
7f08f55a
RM
52 /* Cache the offset from struct pthread to its list_t member. */
53 err = DB_GET_FIELD_ADDRESS (ofs, ta, 0, pthread, list, 0);
54 if (err != TD_OK)
55 return err;
56
57 if (ta->ta_sizeof_pthread == 0)
76a50749 58 {
7f08f55a
RM
59 err = _td_check_sizeof (ta, &ta->ta_sizeof_pthread, SYM_SIZEOF_pthread);
60 if (err != TD_OK)
61 return err;
62 }
63 copy = __alloca (ta->ta_sizeof_pthread);
76a50749 64
7f08f55a
RM
65 while (next != head)
66 {
67 psaddr_t addr, schedpolicy, schedprio;
76a50749 68
7f08f55a
RM
69 addr = next - (ofs - (psaddr_t) 0);
70 if (next == 0 || addr == 0) /* Sanity check. */
71 return TD_DBERR;
72
73 /* Copy the whole descriptor in once so we can access the several
74 fields locally. Excess copying in one go is much better than
75 multiple ps_pdread calls. */
76 if (ps_pdread (ta->ph, addr, copy, ta->ta_sizeof_pthread) != PS_OK)
77 return TD_ERR;
78
c579f48e
AZ
79 err = DB_GET_FIELD_LOCAL (schedpolicy, ta, copy, pthread,
80 schedpolicy, 0);
7f08f55a
RM
81 if (err != TD_OK)
82 break;
c579f48e
AZ
83 err = DB_GET_FIELD_LOCAL (schedprio, ta, copy, pthread,
84 schedparam_sched_priority, 0);
85 if (err != TD_OK)
86 break;
87
88 /* Now test whether this thread matches the specified conditions. */
76a50749 89
c579f48e
AZ
90 /* Only if the priority level is as high or higher. */
91 int descr_pri = ((uintptr_t) schedpolicy == SCHED_OTHER
92 ? 0 : (uintptr_t) schedprio);
93 if (descr_pri >= ti_pri)
76a50749 94 {
c579f48e
AZ
95 /* Yep, it matches. Call the callback function. */
96 td_thrhandle_t th;
97 th.th_ta_p = (td_thragent_t *) ta;
98 th.th_unique = addr;
99 if (callback (&th, cbdata_p) != 0)
100 return TD_DBERR;
76a50749 101 }
abbd6175
UD
102
103 /* Get the pointer to the next element. */
7f08f55a
RM
104 err = DB_GET_FIELD_LOCAL (next, ta, copy + (ofs - (psaddr_t) 0), list_t,
105 next, 0);
106 if (err != TD_OK)
107 break;
76a50749
UD
108 }
109
7f08f55a 110 return err;
76a50749
UD
111}
112
113
114td_err_e
7f08f55a 115td_ta_thr_iter (const td_thragent_t *ta_arg, td_thr_iter_f *callback,
76a50749
UD
116 void *cbdata_p, td_thr_state_e state, int ti_pri,
117 sigset_t *ti_sigmask_p, unsigned int ti_user_flags)
118{
7f08f55a
RM
119 td_thragent_t *const ta = (td_thragent_t *) ta_arg;
120 td_err_e err;
abca9f7f 121 psaddr_t list = 0;
7f08f55a 122
76a50749
UD
123 LOG ("td_ta_thr_iter");
124
125 /* Test whether the TA parameter is ok. */
126 if (! ta_ok (ta))
127 return TD_BADTA;
128
129 /* The thread library keeps two lists for the running threads. One
130 list contains the thread which are using user-provided stacks
131 (this includes the main thread) and the other includes the
132 threads for which the thread library allocated the stacks. We
133 have to iterate over both lists separately. We start with the
134 list of threads with user-defined stacks. */
7f08f55a
RM
135
136 err = DB_GET_SYMBOL (list, ta, __stack_user);
137 if (err == TD_OK)
7d9d8bd1 138 err = iterate_thread_list (ta, callback, cbdata_p, state, ti_pri,
b717c14f 139 list, true);
76a50749
UD
140
141 /* And the threads with stacks allocated by the implementation. */
7f08f55a
RM
142 if (err == TD_OK)
143 err = DB_GET_SYMBOL (list, ta, stack_used);
144 if (err == TD_OK)
7d9d8bd1 145 err = iterate_thread_list (ta, callback, cbdata_p, state, ti_pri,
b717c14f 146 list, false);
76a50749 147
7f08f55a 148 return err;
76a50749 149}