powerpc64le: ifunc select *f128 routines in multiarch mode
[glibc.git] / nptl_db / td_thr_validate.c
blobd2f4107cf2771c961a2b4948343959a689593dc6
1 /* Validate a thread handle.
2 Copyright (C) 1999-2020 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@redhat.com>, 1999.
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.
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.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <https://www.gnu.org/licenses/>. */
20 #include "thread_dbP.h"
21 #include <stdbool.h>
23 td_err_e
24 __td_ta_stack_user (td_thragent_t *ta, psaddr_t *plist)
26 if (__td_ta_rtld_global (ta))
27 return DB_GET_FIELD_ADDRESS (*plist, ta, ta->ta_addr__rtld_global,
28 rtld_global, _dl_stack_user, 0);
29 else
31 if (ta->ta_addr__dl_stack_user == 0
32 && td_mod_lookup (ta->ph, NULL, SYM__dl_stack_user,
33 &ta->ta_addr__dl_stack_user) != PS_OK)
34 return TD_ERR;
35 *plist = ta->ta_addr__dl_stack_user;
36 return TD_OK;
40 td_err_e
41 __td_ta_stack_used (td_thragent_t *ta, psaddr_t *plist)
44 if (__td_ta_rtld_global (ta))
45 return DB_GET_FIELD_ADDRESS (*plist, ta, ta->ta_addr__rtld_global,
46 rtld_global, _dl_stack_used, 0);
47 else
49 if (ta->ta_addr__dl_stack_used == 0
50 && td_mod_lookup (ta->ph, NULL, SYM__dl_stack_used,
51 &ta->ta_addr__dl_stack_used) != PS_OK)
52 return TD_ERR;
53 *plist = ta->ta_addr__dl_stack_used;
54 return TD_OK;
58 static td_err_e
59 check_thread_list (const td_thrhandle_t *th, psaddr_t head, bool *uninit)
61 td_err_e err;
62 psaddr_t next, ofs;
64 err = DB_GET_FIELD (next, th->th_ta_p, head, list_t, next, 0);
65 if (err == TD_OK)
67 if (next == 0)
69 *uninit = true;
70 return TD_NOTHR;
72 err = DB_GET_FIELD_ADDRESS (ofs, th->th_ta_p, 0, pthread, list, 0);
75 while (err == TD_OK)
77 if (next == head)
78 return TD_NOTHR;
80 if (next - (ofs - (psaddr_t) 0) == th->th_unique)
81 return TD_OK;
83 err = DB_GET_FIELD (next, th->th_ta_p, next, list_t, next, 0);
86 return err;
90 td_err_e
91 td_thr_validate (const td_thrhandle_t *th)
93 td_err_e err;
94 psaddr_t list;
96 LOG ("td_thr_validate");
98 /* First check the list with threads using user allocated stacks. */
99 bool uninit = false;
100 err = __td_ta_stack_user (th->th_ta_p, &list);
101 if (err == TD_OK)
102 err = check_thread_list (th, list, &uninit);
104 /* If our thread is not on this list search the list with stack
105 using implementation allocated stacks. */
106 if (err == TD_NOTHR)
108 err = __td_ta_stack_used (th->th_ta_p, &list);
109 if (err == TD_OK)
110 err = check_thread_list (th, list, &uninit);
112 if (err == TD_NOTHR && uninit && th->th_unique == 0)
113 /* __pthread_initialize_minimal has not run yet.
114 There is only the special case thread handle. */
115 err = TD_OK;
118 return err;