Fix build failure in inf-ptrace.c.
[binutils-gdb.git] / gdb / gdbserver / inferiors.c
1 /* Inferior process information for the remote server for GDB.
2 Copyright (C) 2002, 2005, 2007, 2008, 2009 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
25 struct thread_info
26 {
27 struct inferior_list_entry entry;
28 void *target_data;
29 void *regcache_data;
30 unsigned int gdb_id;
31 };
32
33 struct inferior_list all_processes;
34 struct inferior_list all_threads;
35 struct inferior_list all_dlls;
36 int dlls_changed;
37
38 struct thread_info *current_inferior;
39
40
41 /* Oft used ptids */
42 ptid_t null_ptid;
43 ptid_t minus_one_ptid;
44
45 /* Create a ptid given the necessary PID, LWP, and TID components. */
46
47 ptid_t
48 ptid_build (int pid, long lwp, long tid)
49 {
50 ptid_t ptid;
51
52 ptid.pid = pid;
53 ptid.lwp = lwp;
54 ptid.tid = tid;
55 return ptid;
56 }
57
58 /* Create a ptid from just a pid. */
59
60 ptid_t
61 pid_to_ptid (int pid)
62 {
63 return ptid_build (pid, 0, 0);
64 }
65
66 /* Fetch the pid (process id) component from a ptid. */
67
68 int
69 ptid_get_pid (ptid_t ptid)
70 {
71 return ptid.pid;
72 }
73
74 /* Fetch the lwp (lightweight process) component from a ptid. */
75
76 long
77 ptid_get_lwp (ptid_t ptid)
78 {
79 return ptid.lwp;
80 }
81
82 /* Fetch the tid (thread id) component from a ptid. */
83
84 long
85 ptid_get_tid (ptid_t ptid)
86 {
87 return ptid.tid;
88 }
89
90 /* ptid_equal() is used to test equality of two ptids. */
91
92 int
93 ptid_equal (ptid_t ptid1, ptid_t ptid2)
94 {
95 return (ptid1.pid == ptid2.pid
96 && ptid1.lwp == ptid2.lwp
97 && ptid1.tid == ptid2.tid);
98 }
99
100 /* Return true if this ptid represents a process. */
101
102 int
103 ptid_is_pid (ptid_t ptid)
104 {
105 if (ptid_equal (minus_one_ptid, ptid))
106 return 0;
107 if (ptid_equal (null_ptid, ptid))
108 return 0;
109
110 return (ptid_get_pid (ptid) != 0
111 && ptid_get_lwp (ptid) == 0
112 && ptid_get_tid (ptid) == 0);
113 }
114
115 #define get_thread(inf) ((struct thread_info *)(inf))
116 #define get_dll(inf) ((struct dll_info *)(inf))
117
118 void
119 add_inferior_to_list (struct inferior_list *list,
120 struct inferior_list_entry *new_inferior)
121 {
122 new_inferior->next = NULL;
123 if (list->tail != NULL)
124 list->tail->next = new_inferior;
125 else
126 list->head = new_inferior;
127 list->tail = new_inferior;
128 }
129
130 /* Invoke ACTION for each inferior in LIST. */
131
132 void
133 for_each_inferior (struct inferior_list *list,
134 void (*action) (struct inferior_list_entry *))
135 {
136 struct inferior_list_entry *cur = list->head, *next;
137
138 while (cur != NULL)
139 {
140 next = cur->next;
141 (*action) (cur);
142 cur = next;
143 }
144 }
145
146 void
147 remove_inferior (struct inferior_list *list,
148 struct inferior_list_entry *entry)
149 {
150 struct inferior_list_entry **cur;
151
152 if (list->head == entry)
153 {
154 list->head = entry->next;
155 if (list->tail == entry)
156 list->tail = list->head;
157 return;
158 }
159
160 cur = &list->head;
161 while (*cur && (*cur)->next != entry)
162 cur = &(*cur)->next;
163
164 if (*cur == NULL)
165 return;
166
167 (*cur)->next = entry->next;
168
169 if (list->tail == entry)
170 list->tail = *cur;
171 }
172
173 void
174 add_thread (ptid_t thread_id, void *target_data)
175 {
176 struct thread_info *new_thread = xmalloc (sizeof (*new_thread));
177
178 memset (new_thread, 0, sizeof (*new_thread));
179
180 new_thread->entry.id = thread_id;
181
182 add_inferior_to_list (&all_threads, & new_thread->entry);
183
184 if (current_inferior == NULL)
185 current_inferior = new_thread;
186
187 new_thread->target_data = target_data;
188 set_inferior_regcache_data (new_thread, new_register_cache ());
189 }
190
191 ptid_t
192 thread_id_to_gdb_id (ptid_t thread_id)
193 {
194 struct inferior_list_entry *inf = all_threads.head;
195
196 while (inf != NULL)
197 {
198 if (ptid_equal (inf->id, thread_id))
199 return thread_id;
200 inf = inf->next;
201 }
202
203 return null_ptid;
204 }
205
206 ptid_t
207 thread_to_gdb_id (struct thread_info *thread)
208 {
209 return thread->entry.id;
210 }
211
212 struct thread_info *
213 find_thread_ptid (ptid_t ptid)
214 {
215 struct inferior_list_entry *inf = all_threads.head;
216
217 while (inf != NULL)
218 {
219 struct thread_info *thread = get_thread (inf);
220 if (ptid_equal (thread->entry.id, ptid))
221 return thread;
222 inf = inf->next;
223 }
224
225 return NULL;
226 }
227
228 ptid_t
229 gdb_id_to_thread_id (ptid_t gdb_id)
230 {
231 struct thread_info *thread = find_thread_ptid (gdb_id);
232
233 return thread ? thread->entry.id : null_ptid;
234 }
235
236 static void
237 free_one_thread (struct inferior_list_entry *inf)
238 {
239 struct thread_info *thread = get_thread (inf);
240 free_register_cache (inferior_regcache_data (thread));
241 free (thread);
242 }
243
244 void
245 remove_thread (struct thread_info *thread)
246 {
247 remove_inferior (&all_threads, (struct inferior_list_entry *) thread);
248 free_one_thread (&thread->entry);
249 }
250
251 struct inferior_list_entry *
252 find_inferior (struct inferior_list *list,
253 int (*func) (struct inferior_list_entry *, void *), void *arg)
254 {
255 struct inferior_list_entry *inf = list->head;
256
257 while (inf != NULL)
258 {
259 struct inferior_list_entry *next;
260
261 next = inf->next;
262 if ((*func) (inf, arg))
263 return inf;
264 inf = next;
265 }
266
267 return NULL;
268 }
269
270 struct inferior_list_entry *
271 find_inferior_id (struct inferior_list *list, ptid_t id)
272 {
273 struct inferior_list_entry *inf = list->head;
274
275 while (inf != NULL)
276 {
277 if (ptid_equal (inf->id, id))
278 return inf;
279 inf = inf->next;
280 }
281
282 return NULL;
283 }
284
285 void *
286 inferior_target_data (struct thread_info *inferior)
287 {
288 return inferior->target_data;
289 }
290
291 void
292 set_inferior_target_data (struct thread_info *inferior, void *data)
293 {
294 inferior->target_data = data;
295 }
296
297 void *
298 inferior_regcache_data (struct thread_info *inferior)
299 {
300 return inferior->regcache_data;
301 }
302
303 void
304 set_inferior_regcache_data (struct thread_info *inferior, void *data)
305 {
306 inferior->regcache_data = data;
307 }
308
309 static void
310 free_one_dll (struct inferior_list_entry *inf)
311 {
312 struct dll_info *dll = get_dll (inf);
313 if (dll->name != NULL)
314 free (dll->name);
315 free (dll);
316 }
317
318 /* Find a DLL with the same name and/or base address. A NULL name in
319 the key is ignored; so is an all-ones base address. */
320
321 static int
322 match_dll (struct inferior_list_entry *inf, void *arg)
323 {
324 struct dll_info *iter = (void *) inf;
325 struct dll_info *key = arg;
326
327 if (key->base_addr != ~(CORE_ADDR) 0
328 && iter->base_addr == key->base_addr)
329 return 1;
330 else if (key->name != NULL
331 && iter->name != NULL
332 && strcmp (key->name, iter->name) == 0)
333 return 1;
334
335 return 0;
336 }
337
338 /* Record a newly loaded DLL at BASE_ADDR. */
339
340 void
341 loaded_dll (const char *name, CORE_ADDR base_addr)
342 {
343 struct dll_info *new_dll = xmalloc (sizeof (*new_dll));
344 memset (new_dll, 0, sizeof (*new_dll));
345
346 new_dll->entry.id = minus_one_ptid;
347
348 new_dll->name = xstrdup (name);
349 new_dll->base_addr = base_addr;
350
351 add_inferior_to_list (&all_dlls, &new_dll->entry);
352 dlls_changed = 1;
353 }
354
355 /* Record that the DLL with NAME and BASE_ADDR has been unloaded. */
356
357 void
358 unloaded_dll (const char *name, CORE_ADDR base_addr)
359 {
360 struct dll_info *dll;
361 struct dll_info key_dll;
362
363 /* Be careful not to put the key DLL in any list. */
364 key_dll.name = (char *) name;
365 key_dll.base_addr = base_addr;
366
367 dll = (void *) find_inferior (&all_dlls, match_dll, &key_dll);
368 remove_inferior (&all_dlls, &dll->entry);
369 free_one_dll (&dll->entry);
370 dlls_changed = 1;
371 }
372
373 #define clear_list(LIST) \
374 do { (LIST)->head = (LIST)->tail = NULL; } while (0)
375
376 void
377 clear_inferiors (void)
378 {
379 for_each_inferior (&all_threads, free_one_thread);
380 for_each_inferior (&all_dlls, free_one_dll);
381
382 clear_list (&all_threads);
383 clear_list (&all_dlls);
384
385 current_inferior = NULL;
386 }
387
388 /* Two utility functions for a truly degenerate inferior_list: a simple
389 PID listing. */
390
391 void
392 add_pid_to_list (struct inferior_list *list, unsigned long pid)
393 {
394 struct inferior_list_entry *new_entry;
395
396 new_entry = xmalloc (sizeof (struct inferior_list_entry));
397 new_entry->id = pid_to_ptid (pid);
398 add_inferior_to_list (list, new_entry);
399 }
400
401 int
402 pull_pid_from_list (struct inferior_list *list, unsigned long pid)
403 {
404 struct inferior_list_entry *new_entry;
405
406 new_entry = find_inferior_id (list, pid_to_ptid (pid));
407 if (new_entry == NULL)
408 return 0;
409 else
410 {
411 remove_inferior (list, new_entry);
412 free (new_entry);
413 return 1;
414 }
415 }
416
417 struct process_info *
418 add_process (int pid, int attached)
419 {
420 struct process_info *process;
421
422 process = xcalloc (1, sizeof (*process));
423
424 process->head.id = pid_to_ptid (pid);
425 process->attached = attached;
426
427 add_inferior_to_list (&all_processes, &process->head);
428
429 return process;
430 }
431
432 /* Remove a process from the common process list and free the memory
433 allocated for it.
434 The caller is responsible for freeing private data first. */
435
436 void
437 remove_process (struct process_info *process)
438 {
439 clear_symbol_cache (&process->symbol_cache);
440 free_all_breakpoints (process);
441 remove_inferior (&all_processes, &process->head);
442 free (process);
443 }
444
445 struct process_info *
446 find_process_pid (int pid)
447 {
448 return (struct process_info *)
449 find_inferior_id (&all_processes, pid_to_ptid (pid));
450 }
451
452 /* Return non-zero if INF, a struct process_info, was started by us,
453 i.e. not attached to. */
454
455 static int
456 started_inferior_callback (struct inferior_list_entry *entry, void *args)
457 {
458 struct process_info *process = (struct process_info *) entry;
459
460 return ! process->attached;
461 }
462
463 /* Return non-zero if there are any inferiors that we have created
464 (as opposed to attached-to). */
465
466 int
467 have_started_inferiors_p (void)
468 {
469 return (find_inferior (&all_processes, started_inferior_callback, NULL)
470 != NULL);
471 }
472
473 /* Return non-zero if INF, a struct process_info, was attached to. */
474
475 static int
476 attached_inferior_callback (struct inferior_list_entry *entry, void *args)
477 {
478 struct process_info *process = (struct process_info *) entry;
479
480 return process->attached;
481 }
482
483 /* Return non-zero if there are any inferiors that we have attached to. */
484
485 int
486 have_attached_inferiors_p (void)
487 {
488 return (find_inferior (&all_processes, attached_inferior_callback, NULL)
489 != NULL);
490 }
491
492 struct process_info *
493 get_thread_process (struct thread_info *thread)
494 {
495 int pid = ptid_get_pid (thread->entry.id);
496 return find_process_pid (pid);
497 }
498
499 struct process_info *
500 current_process (void)
501 {
502 if (current_inferior == NULL)
503 fatal ("Current inferior requested, but current_inferior is NULL\n");
504
505 return get_thread_process (current_inferior);
506 }
507
508 void
509 initialize_inferiors (void)
510 {
511 null_ptid = ptid_build (0, 0, 0);
512 minus_one_ptid = ptid_build (-1, 0, 0);
513 }