thread_db.c revision 146818
1/*
2 * Copyright (c) 2004 David Xu <davidxu@freebsd.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 */
26
27#include <sys/cdefs.h>
28__FBSDID("$FreeBSD: head/lib/libthread_db/thread_db.c 146818 2005-05-31 09:43:04Z dfr $");
29
30#include <proc_service.h>
31#include <stddef.h>
32#include <thread_db.h>
33#include <unistd.h>
34
35#include "thread_db_int.h"
36
37struct td_thragent
38{
39	TD_THRAGENT_FIELDS;
40};
41
42static TAILQ_HEAD(, td_thragent) proclist = TAILQ_HEAD_INITIALIZER(proclist);
43
44extern struct ta_ops libc_r_db_ops;
45extern struct ta_ops libpthread_db_ops;
46extern struct ta_ops libthr_db_ops;
47
48static struct ta_ops *ops[] = {
49	&libpthread_db_ops,
50	&libthr_db_ops,
51	&libc_r_db_ops
52};
53
54td_err_e
55td_init(void)
56{
57	td_err_e ret, tmp;
58	size_t i;
59
60	ret = 0;
61	for (i = 0; i < sizeof(ops)/sizeof(ops[0]); i++) {
62		if (ops[i]->to_init != NULL) {
63			tmp = ops[i]->to_init();
64			if (tmp != TD_OK)
65				ret = tmp;
66		}
67	}
68	return (ret);
69}
70
71td_err_e
72td_ta_clear_event(const td_thragent_t *ta, td_thr_events_t *events)
73{
74	return (ta->ta_ops->to_ta_clear_event(ta, events));
75}
76
77td_err_e
78td_ta_delete(td_thragent_t *ta)
79{
80	TAILQ_REMOVE(&proclist, ta, ta_next);
81	return (ta->ta_ops->to_ta_delete(ta));
82}
83
84td_err_e
85td_ta_event_addr(const td_thragent_t *ta, td_event_e event, td_notify_t *ptr)
86{
87	return (ta->ta_ops->to_ta_event_addr(ta, event, ptr));
88}
89
90td_err_e
91td_ta_event_getmsg(const td_thragent_t *ta, td_event_msg_t *msg)
92{
93	return (ta->ta_ops->to_ta_event_getmsg(ta, msg));
94}
95
96td_err_e
97td_ta_map_id2thr(const td_thragent_t *ta, thread_t id, td_thrhandle_t *th)
98{
99	return (ta->ta_ops->to_ta_map_id2thr(ta, id, th));
100}
101
102td_err_e
103td_ta_map_lwp2thr(const td_thragent_t *ta, lwpid_t lwpid, td_thrhandle_t *th)
104{
105	return (ta->ta_ops->to_ta_map_lwp2thr(ta, lwpid, th));
106}
107
108td_err_e
109td_ta_new(struct ps_prochandle *ph, td_thragent_t **pta)
110{
111	size_t i;
112
113	for (i = 0; i < sizeof(ops)/sizeof(ops[0]); ++i) {
114		if (ops[i]->to_ta_new(ph, pta) == TD_OK) {
115			TAILQ_INSERT_HEAD(&proclist, *pta, ta_next);
116			(*pta)->ta_ops = ops[i];
117			return (TD_OK);
118		}
119	}
120	return (TD_NOLIBTHREAD);
121}
122
123td_err_e
124td_ta_set_event(const td_thragent_t *ta, td_thr_events_t *events)
125{
126	return (ta->ta_ops->to_ta_set_event(ta, events));
127}
128
129td_err_e
130td_ta_thr_iter(const td_thragent_t *ta, td_thr_iter_f *callback,
131    void *cbdata_p, td_thr_state_e state, int ti_pri, sigset_t *ti_sigmask_p,
132    unsigned int ti_user_flags)
133{
134	return (ta->ta_ops->to_ta_thr_iter(ta, callback, cbdata_p, state,
135		    ti_pri, ti_sigmask_p, ti_user_flags));
136}
137
138td_err_e
139td_ta_tsd_iter(const td_thragent_t *ta, td_key_iter_f *callback,
140    void *cbdata_p)
141{
142	return (ta->ta_ops->to_ta_tsd_iter(ta, callback, cbdata_p));
143}
144
145td_err_e
146td_thr_clear_event(const td_thrhandle_t *th, td_thr_events_t *events)
147{
148	const td_thragent_t *ta = th->th_ta;
149	return (ta->ta_ops->to_thr_clear_event(th, events));
150}
151
152td_err_e
153td_thr_dbresume(const td_thrhandle_t *th)
154{
155	const td_thragent_t *ta = th->th_ta;
156	return (ta->ta_ops->to_thr_dbresume(th));
157}
158
159td_err_e
160td_thr_dbsuspend(const td_thrhandle_t *th)
161{
162	const td_thragent_t *ta = th->th_ta;
163	return (ta->ta_ops->to_thr_dbsuspend(th));
164}
165
166td_err_e
167td_thr_event_enable(const td_thrhandle_t *th, int en)
168{
169	const td_thragent_t *ta = th->th_ta;
170	return (ta->ta_ops->to_thr_event_enable(th, en));
171}
172
173td_err_e
174td_thr_event_getmsg(const td_thrhandle_t *th, td_event_msg_t *msg)
175{
176	const td_thragent_t *ta = th->th_ta;
177	return (ta->ta_ops->to_thr_event_getmsg(th, msg));
178}
179
180td_err_e
181td_thr_get_info(const td_thrhandle_t *th, td_thrinfo_t *info)
182{
183	const td_thragent_t *ta = th->th_ta;
184	return (ta->ta_ops->to_thr_get_info(th, info));
185}
186
187#ifdef __i386__
188td_err_e
189td_thr_getxmmregs(const td_thrhandle_t *th, char *fxsave)
190{
191	const td_thragent_t *ta = th->th_ta;
192	return (ta->ta_ops->to_thr_getxmmregs(th, fxsave));
193}
194#endif
195
196
197td_err_e
198td_thr_getfpregs(const td_thrhandle_t *th, prfpregset_t *fpregset)
199{
200	const td_thragent_t *ta = th->th_ta;
201	return (ta->ta_ops->to_thr_getfpregs(th, fpregset));
202}
203
204td_err_e
205td_thr_getgregs(const td_thrhandle_t *th, prgregset_t gregs)
206{
207	const td_thragent_t *ta = th->th_ta;
208	return (ta->ta_ops->to_thr_getgregs(th, gregs));
209}
210
211td_err_e
212td_thr_set_event(const td_thrhandle_t *th, td_thr_events_t *events)
213{
214	const td_thragent_t *ta = th->th_ta;
215	return (ta->ta_ops->to_thr_set_event(th, events));
216}
217
218#ifdef __i386__
219td_err_e
220td_thr_setxmmregs(const td_thrhandle_t *th, const char *fxsave)
221{
222	const td_thragent_t *ta = th->th_ta;
223	return (ta->ta_ops->to_thr_setxmmregs(th, fxsave));
224}
225#endif
226
227td_err_e
228td_thr_setfpregs(const td_thrhandle_t *th, const prfpregset_t *fpregs)
229{
230	const td_thragent_t *ta = th->th_ta;
231	return (ta->ta_ops->to_thr_setfpregs(th, fpregs));
232}
233
234td_err_e
235td_thr_setgregs(const td_thrhandle_t *th, const prgregset_t gregs)
236{
237	const td_thragent_t *ta = th->th_ta;
238	return (ta->ta_ops->to_thr_setgregs(th, gregs));
239}
240
241td_err_e
242td_thr_validate(const td_thrhandle_t *th)
243{
244	const td_thragent_t *ta = th->th_ta;
245	return (ta->ta_ops->to_thr_validate(th));
246}
247
248td_err_e
249td_thr_tls_get_addr(const td_thrhandle_t *th, void *linkmap, size_t offset,
250		    void **address)
251{
252	const td_thragent_t *ta = th->th_ta;
253	return (ta->ta_ops->to_thr_tls_get_addr(th, linkmap, offset, address));
254}
255
256/* FreeBSD specific extensions. */
257
258td_err_e
259td_thr_sstep(const td_thrhandle_t *th, int step)
260{
261	const td_thragent_t *ta = th->th_ta;
262	return (ta->ta_ops->to_thr_sstep(th, step));
263}
264