gdb/gdbserver:
[deliverable/binutils-gdb.git] / gdb / gdbserver / inferiors.c
1 /* Inferior process information for the remote server for GDB.
2 Copyright (C) 2002, 2005, 2007-2012 Free Software Foundation, Inc.
3
4 Contributed by MontaVista Software.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20
21 #include <stdlib.h>
22
23 #include "server.h"
24 #include "gdbthread.h"
25
26 struct inferior_list all_processes;
27 struct inferior_list all_threads;
28
29 struct thread_info *current_inferior;
30
31 #define get_thread(inf) ((struct thread_info *)(inf))
32
33 void
34 add_inferior_to_list (struct inferior_list *list,
35 struct inferior_list_entry *new_inferior)
36 {
37 new_inferior->next = NULL;
38 if (list->tail != NULL)
39 list->tail->next = new_inferior;
40 else
41 list->head = new_inferior;
42 list->tail = new_inferior;
43 }
44
45 /* Invoke ACTION for each inferior in LIST. */
46
47 void
48 for_each_inferior (struct inferior_list *list,
49 void (*action) (struct inferior_list_entry *))
50 {
51 struct inferior_list_entry *cur = list->head, *next;
52
53 while (cur != NULL)
54 {
55 next = cur->next;
56 (*action) (cur);
57 cur = next;
58 }
59 }
60
61 void
62 remove_inferior (struct inferior_list *list,
63 struct inferior_list_entry *entry)
64 {
65 struct inferior_list_entry **cur;
66
67 if (list->head == entry)
68 {
69 list->head = entry->next;
70 if (list->tail == entry)
71 list->tail = list->head;
72 return;
73 }
74
75 cur = &list->head;
76 while (*cur && (*cur)->next != entry)
77 cur = &(*cur)->next;
78
79 if (*cur == NULL)
80 return;
81
82 (*cur)->next = entry->next;
83
84 if (list->tail == entry)
85 list->tail = *cur;
86 }
87
88 void
89 add_thread (ptid_t thread_id, void *target_data)
90 {
91 struct thread_info *new_thread = xmalloc (sizeof (*new_thread));
92
93 memset (new_thread, 0, sizeof (*new_thread));
94
95 new_thread->entry.id = thread_id;
96 new_thread->last_resume_kind = resume_continue;
97 new_thread->last_status.kind = TARGET_WAITKIND_IGNORE;
98
99 add_inferior_to_list (&all_threads, & new_thread->entry);
100
101 if (current_inferior == NULL)
102 current_inferior = new_thread;
103
104 new_thread->target_data = target_data;
105 set_inferior_regcache_data (new_thread, new_register_cache ());
106 }
107
108 ptid_t
109 thread_id_to_gdb_id (ptid_t thread_id)
110 {
111 struct inferior_list_entry *inf = all_threads.head;
112
113 while (inf != NULL)
114 {
115 if (ptid_equal (inf->id, thread_id))
116 return thread_id;
117 inf = inf->next;
118 }
119
120 return null_ptid;
121 }
122
123 ptid_t
124 thread_to_gdb_id (struct thread_info *thread)
125 {
126 return thread->entry.id;
127 }
128
129 struct thread_info *
130 find_thread_ptid (ptid_t ptid)
131 {
132 struct inferior_list_entry *inf = all_threads.head;
133
134 while (inf != NULL)
135 {
136 struct thread_info *thread = get_thread (inf);
137 if (ptid_equal (thread->entry.id, ptid))
138 return thread;
139 inf = inf->next;
140 }
141
142 return NULL;
143 }
144
145 ptid_t
146 gdb_id_to_thread_id (ptid_t gdb_id)
147 {
148 struct thread_info *thread = find_thread_ptid (gdb_id);
149
150 return thread ? thread->entry.id : null_ptid;
151 }
152
153 static void
154 free_one_thread (struct inferior_list_entry *inf)
155 {
156 struct thread_info *thread = get_thread (inf);
157 free_register_cache (inferior_regcache_data (thread));
158 free (thread);
159 }
160
161 void
162 remove_thread (struct thread_info *thread)
163 {
164 remove_inferior (&all_threads, (struct inferior_list_entry *) thread);
165 free_one_thread (&thread->entry);
166 }
167
168 /* Find the first inferior_list_entry E in LIST for which FUNC (E, ARG)
169 returns non-zero. If no entry is found then return NULL. */
170
171 struct inferior_list_entry *
172 find_inferior (struct inferior_list *list,
173 int (*func) (struct inferior_list_entry *, void *), void *arg)
174 {
175 struct inferior_list_entry *inf = list->head;
176
177 while (inf != NULL)
178 {
179 struct inferior_list_entry *next;
180
181 next = inf->next;
182 if ((*func) (inf, arg))
183 return inf;
184 inf = next;
185 }
186
187 return NULL;
188 }
189
190 struct inferior_list_entry *
191 find_inferior_id (struct inferior_list *list, ptid_t id)
192 {
193 struct inferior_list_entry *inf = list->head;
194
195 while (inf != NULL)
196 {
197 if (ptid_equal (inf->id, id))
198 return inf;
199 inf = inf->next;
200 }
201
202 return NULL;
203 }
204
205 void *
206 inferior_target_data (struct thread_info *inferior)
207 {
208 return inferior->target_data;
209 }
210
211 void
212 set_inferior_target_data (struct thread_info *inferior, void *data)
213 {
214 inferior->target_data = data;
215 }
216
217 void *
218 inferior_regcache_data (struct thread_info *inferior)
219 {
220 return inferior->regcache_data;
221 }
222
223 void
224 set_inferior_regcache_data (struct thread_info *inferior, void *data)
225 {
226 inferior->regcache_data = data;
227 }
228
229 #define clear_list(LIST) \
230 do { (LIST)->head = (LIST)->tail = NULL; } while (0)
231
232 void
233 clear_inferiors (void)
234 {
235 for_each_inferior (&all_threads, free_one_thread);
236 clear_list (&all_threads);
237
238 clear_dlls ();
239
240 current_inferior = NULL;
241 }
242
243 struct process_info *
244 add_process (int pid, int attached)
245 {
246 struct process_info *process;
247
248 process = xcalloc (1, sizeof (*process));
249
250 process->head.id = pid_to_ptid (pid);
251 process->attached = attached;
252
253 add_inferior_to_list (&all_processes, &process->head);
254
255 return process;
256 }
257
258 /* Remove a process from the common process list and free the memory
259 allocated for it.
260 The caller is responsible for freeing private data first. */
261
262 void
263 remove_process (struct process_info *process)
264 {
265 clear_symbol_cache (&process->symbol_cache);
266 free_all_breakpoints (process);
267 remove_inferior (&all_processes, &process->head);
268 free (process);
269 }
270
271 struct process_info *
272 find_process_pid (int pid)
273 {
274 return (struct process_info *)
275 find_inferior_id (&all_processes, pid_to_ptid (pid));
276 }
277
278 /* Return non-zero if INF, a struct process_info, was started by us,
279 i.e. not attached to. */
280
281 static int
282 started_inferior_callback (struct inferior_list_entry *entry, void *args)
283 {
284 struct process_info *process = (struct process_info *) entry;
285
286 return ! process->attached;
287 }
288
289 /* Return non-zero if there are any inferiors that we have created
290 (as opposed to attached-to). */
291
292 int
293 have_started_inferiors_p (void)
294 {
295 return (find_inferior (&all_processes, started_inferior_callback, NULL)
296 != NULL);
297 }
298
299 /* Return non-zero if INF, a struct process_info, was attached to. */
300
301 static int
302 attached_inferior_callback (struct inferior_list_entry *entry, void *args)
303 {
304 struct process_info *process = (struct process_info *) entry;
305
306 return process->attached;
307 }
308
309 /* Return non-zero if there are any inferiors that we have attached to. */
310
311 int
312 have_attached_inferiors_p (void)
313 {
314 return (find_inferior (&all_processes, attached_inferior_callback, NULL)
315 != NULL);
316 }
317
318 struct process_info *
319 get_thread_process (struct thread_info *thread)
320 {
321 int pid = ptid_get_pid (thread->entry.id);
322 return find_process_pid (pid);
323 }
324
325 struct process_info *
326 current_process (void)
327 {
328 if (current_inferior == NULL)
329 fatal ("Current inferior requested, but current_inferior is NULL\n");
330
331 return get_thread_process (current_inferior);
332 }
This page took 0.036453 seconds and 4 git commands to generate.