]> sourceware.org Git - glibc.git/blame - nptl_db/td_thr_validate.c
Port shared code information from the wiki
[glibc.git] / nptl_db / td_thr_validate.c
CommitLineData
76a50749 1/* Validate a thread handle.
2b778ceb 2 Copyright (C) 1999-2021 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"
090addb4 21#include <stdbool.h>
76a50749 22
1daccf40
FW
23td_err_e
24__td_ta_stack_user (td_thragent_t *ta, psaddr_t *plist)
25{
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
30 {
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;
37 }
38}
39
40td_err_e
41__td_ta_stack_used (td_thragent_t *ta, psaddr_t *plist)
42{
43
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
48 {
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;
55 }
56}
57
76a50749 58static td_err_e
090addb4 59check_thread_list (const td_thrhandle_t *th, psaddr_t head, bool *uninit)
76a50749 60{
7f08f55a
RM
61 td_err_e err;
62 psaddr_t next, ofs;
63
64 err = DB_GET_FIELD (next, th->th_ta_p, head, list_t, next, 0);
65 if (err == TD_OK)
66 {
67 if (next == 0)
090addb4
RM
68 {
69 *uninit = true;
70 return TD_NOTHR;
71 }
7f08f55a
RM
72 err = DB_GET_FIELD_ADDRESS (ofs, th->th_ta_p, 0, pthread, list, 0);
73 }
74
75 while (err == TD_OK)
76 {
77 if (next == head)
78 return TD_NOTHR;
79
80 if (next - (ofs - (psaddr_t) 0) == th->th_unique)
81 return TD_OK;
82
83 err = DB_GET_FIELD (next, th->th_ta_p, next, list_t, next, 0);
84 }
85
86 return err;
76a50749
UD
87}
88
89
90td_err_e
91td_thr_validate (const td_thrhandle_t *th)
92{
7f08f55a
RM
93 td_err_e err;
94 psaddr_t list;
95
76a50749
UD
96 LOG ("td_thr_validate");
97
98 /* First check the list with threads using user allocated stacks. */
090addb4 99 bool uninit = false;
1daccf40 100 err = __td_ta_stack_user (th->th_ta_p, &list);
7f08f55a 101 if (err == TD_OK)
090addb4 102 err = check_thread_list (th, list, &uninit);
76a50749
UD
103
104 /* If our thread is not on this list search the list with stack
105 using implementation allocated stacks. */
7f08f55a
RM
106 if (err == TD_NOTHR)
107 {
1daccf40 108 err = __td_ta_stack_used (th->th_ta_p, &list);
7f08f55a 109 if (err == TD_OK)
090addb4
RM
110 err = check_thread_list (th, list, &uninit);
111
7d9d8bd1
RM
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;
7f08f55a 116 }
76a50749 117
7f08f55a 118 return err;
76a50749 119}
This page took 0.368385 seconds and 5 git commands to generate.