Mention the NetBSD support in "info proc" documentation
[deliverable/binutils-gdb.git] / gdb / progspace.c
CommitLineData
6c95b8df
PA
1/* Program and address space management, for GDB, the GNU debugger.
2
b811d2c2 3 Copyright (C) 2009-2020 Free Software Foundation, Inc.
6c95b8df
PA
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20#include "defs.h"
21#include "gdbcmd.h"
22#include "objfiles.h"
23#include "arch-utils.h"
24#include "gdbcore.h"
25#include "solib.h"
343cc952 26#include "solist.h"
6c95b8df 27#include "gdbthread.h"
00431a78 28#include "inferior.h"
d0801dd8 29#include <algorithm>
6c95b8df
PA
30
31/* The last program space number assigned. */
32int last_program_space_num = 0;
33
34/* The head of the program spaces list. */
35struct program_space *program_spaces;
36
37/* Pointer to the current program space. */
38struct program_space *current_program_space;
39
40/* The last address space number assigned. */
41static int highest_address_space_num;
42
8e260fc0
TT
43\f
44
45/* Keep a registry of per-program_space data-pointers required by other GDB
46 modules. */
47
6b81941e 48DEFINE_REGISTRY (program_space, REGISTRY_ACCESS_FIELD)
6c95b8df 49
3a8356ff
YQ
50/* Keep a registry of per-address_space data-pointers required by other GDB
51 modules. */
52
53DEFINE_REGISTRY (address_space, REGISTRY_ACCESS_FIELD)
54
55\f
56
6c95b8df
PA
57/* Create a new address space object, and add it to the list. */
58
59struct address_space *
60new_address_space (void)
61{
62 struct address_space *aspace;
63
41bf6aca 64 aspace = XCNEW (struct address_space);
6c95b8df 65 aspace->num = ++highest_address_space_num;
3a8356ff 66 address_space_alloc_data (aspace);
6c95b8df
PA
67
68 return aspace;
69}
70
71/* Maybe create a new address space object, and add it to the list, or
72 return a pointer to an existing address space, in case inferiors
73 share an address space on this target system. */
74
75struct address_space *
76maybe_new_address_space (void)
77{
f5656ead 78 int shared_aspace = gdbarch_has_shared_address_space (target_gdbarch ());
6c95b8df
PA
79
80 if (shared_aspace)
81 {
82 /* Just return the first in the list. */
83 return program_spaces->aspace;
84 }
85
86 return new_address_space ();
87}
88
89static void
90free_address_space (struct address_space *aspace)
91{
3a8356ff 92 address_space_free_data (aspace);
6c95b8df
PA
93 xfree (aspace);
94}
95
c0694254
PA
96int
97address_space_num (struct address_space *aspace)
98{
99 return aspace->num;
100}
101
6c95b8df
PA
102/* Start counting over from scratch. */
103
104static void
105init_address_spaces (void)
106{
107 highest_address_space_num = 0;
108}
109
110\f
111
381ce63f 112/* Add a program space from the program spaces list. */
6c95b8df 113
381ce63f
PA
114static void
115add_program_space (program_space *pspace)
6c95b8df 116{
b05b1202 117 if (program_spaces == NULL)
381ce63f 118 program_spaces = pspace;
b05b1202
PA
119 else
120 {
381ce63f 121 program_space *last;
b05b1202
PA
122
123 for (last = program_spaces; last->next != NULL; last = last->next)
124 ;
381ce63f 125 last->next = pspace;
b05b1202 126 }
6c95b8df
PA
127}
128
381ce63f
PA
129/* Remove a program space from the program spaces list. */
130
131static void
132remove_program_space (program_space *pspace)
133{
134 program_space *ss, **ss_link;
135 gdb_assert (pspace != NULL);
136
137 ss = program_spaces;
138 ss_link = &program_spaces;
139 while (ss != NULL)
140 {
141 if (ss == pspace)
142 {
143 *ss_link = ss->next;
144 return;
145 }
146
147 ss_link = &ss->next;
148 ss = *ss_link;
149 }
150}
151
152/* See progspace.h. */
153
154program_space::program_space (address_space *aspace_)
155 : num (++last_program_space_num),
156 aspace (aspace_)
157{
158 program_space_alloc_data (this);
159
160 add_program_space (this);
161}
162
163/* See progspace.h. */
6c95b8df 164
564b1e3f 165program_space::~program_space ()
6c95b8df 166{
564b1e3f 167 gdb_assert (this != current_program_space);
6c95b8df 168
381ce63f
PA
169 remove_program_space (this);
170
5ed8105e
PA
171 scoped_restore_current_program_space restore_pspace;
172
564b1e3f 173 set_current_program_space (this);
6c95b8df 174
564b1e3f 175 breakpoint_program_space_exit (this);
6c95b8df
PA
176 no_shared_libraries (NULL, 0);
177 exec_close ();
178 free_all_objfiles ();
f3c469b9
PA
179 /* Defer breakpoint re-set because we don't want to create new
180 locations for this pspace which we're tearing down. */
181 clear_symtab_users (SYMFILE_DEFER_BP_RESET);
f5656ead 182 if (!gdbarch_has_shared_address_space (target_gdbarch ()))
564b1e3f
SM
183 free_address_space (this->aspace);
184 clear_section_table (&this->target_sections);
185 clear_program_space_solib_cache (this);
6c95b8df 186 /* Discard any data modules have associated with the PSPACE. */
564b1e3f 187 program_space_free_data (this);
6c95b8df
PA
188}
189
7cac64af
TT
190/* See progspace.h. */
191
343cc952
TT
192void
193program_space::free_all_objfiles ()
194{
195 struct so_list *so;
196
197 /* Any objfile reference would become stale. */
198 for (so = master_so_list (); so; so = so->next)
199 gdb_assert (so->objfile == NULL);
200
201 while (!objfiles_list.empty ())
202 objfiles_list.front ()->unlink ();
343cc952
TT
203}
204
205/* See progspace.h. */
206
7cac64af 207void
7d7167ce
TT
208program_space::add_objfile (std::shared_ptr<objfile> &&objfile,
209 struct objfile *before)
7cac64af 210{
d0801dd8 211 if (before == nullptr)
7d7167ce 212 objfiles_list.push_back (std::move (objfile));
d0801dd8 213 else
7cac64af 214 {
7d7167ce
TT
215 auto iter = std::find_if (objfiles_list.begin (), objfiles_list.end (),
216 [=] (const std::shared_ptr<::objfile> &objf)
217 {
218 return objf.get () == before;
219 });
d0801dd8 220 gdb_assert (iter != objfiles_list.end ());
7d7167ce 221 objfiles_list.insert (iter, std::move (objfile));
7cac64af 222 }
7cac64af
TT
223}
224
23452926
TT
225/* See progspace.h. */
226
227void
228program_space::remove_objfile (struct objfile *objfile)
229{
7d7167ce
TT
230 auto iter = std::find_if (objfiles_list.begin (), objfiles_list.end (),
231 [=] (const std::shared_ptr<::objfile> &objf)
232 {
233 return objf.get () == objfile;
234 });
d0801dd8
TT
235 gdb_assert (iter != objfiles_list.end ());
236 objfiles_list.erase (iter);
23452926 237
d0801dd8
TT
238 if (objfile == symfile_object_file)
239 symfile_object_file = NULL;
deeafabb
TT
240}
241
6c95b8df
PA
242/* Copies program space SRC to DEST. Copies the main executable file,
243 and the main symbol file. Returns DEST. */
244
245struct program_space *
246clone_program_space (struct program_space *dest, struct program_space *src)
247{
5ed8105e 248 scoped_restore_current_program_space restore_pspace;
6c95b8df
PA
249
250 set_current_program_space (dest);
251
1f0c4988
JK
252 if (src->pspace_exec_filename != NULL)
253 exec_file_attach (src->pspace_exec_filename, 0);
6c95b8df
PA
254
255 if (src->symfile_object_file != NULL)
b2e586e8
SM
256 symbol_file_add_main (objfile_name (src->symfile_object_file),
257 SYMFILE_DEFER_BP_RESET);
6c95b8df 258
6c95b8df
PA
259 return dest;
260}
261
262/* Sets PSPACE as the current program space. It is the caller's
263 responsibility to make sure that the currently selected
264 inferior/thread matches the selected program space. */
265
266void
267set_current_program_space (struct program_space *pspace)
268{
269 if (current_program_space == pspace)
270 return;
271
272 gdb_assert (pspace != NULL);
273
274 current_program_space = pspace;
275
276 /* Different symbols change our view of the frame chain. */
277 reinit_frame_cache ();
278}
279
6c95b8df
PA
280/* Returns true iff there's no inferior bound to PSPACE. */
281
7a41607e
SM
282int
283program_space_empty_p (struct program_space *pspace)
6c95b8df 284{
6c95b8df
PA
285 if (find_inferior_for_program_space (pspace) != NULL)
286 return 0;
287
288 return 1;
289}
290
6c95b8df
PA
291/* Prints the list of program spaces and their details on UIOUT. If
292 REQUESTED is not -1, it's the ID of the pspace that should be
293 printed. Otherwise, all spaces are printed. */
294
295static void
296print_program_space (struct ui_out *uiout, int requested)
297{
298 struct program_space *pspace;
299 int count = 0;
6c95b8df 300
6c95b8df
PA
301 /* Compute number of pspaces we will print. */
302 ALL_PSPACES (pspace)
303 {
304 if (requested != -1 && pspace->num != requested)
305 continue;
306
307 ++count;
308 }
309
310 /* There should always be at least one. */
311 gdb_assert (count > 0);
312
4a2b031d 313 ui_out_emit_table table_emitter (uiout, 3, count, "pspaces");
112e8700
SM
314 uiout->table_header (1, ui_left, "current", "");
315 uiout->table_header (4, ui_left, "id", "Id");
316 uiout->table_header (17, ui_left, "exec", "Executable");
317 uiout->table_body ();
6c95b8df
PA
318
319 ALL_PSPACES (pspace)
320 {
6c95b8df
PA
321 struct inferior *inf;
322 int printed_header;
323
324 if (requested != -1 && requested != pspace->num)
325 continue;
326
2e783024 327 ui_out_emit_tuple tuple_emitter (uiout, NULL);
6c95b8df
PA
328
329 if (pspace == current_program_space)
112e8700 330 uiout->field_string ("current", "*");
6c95b8df 331 else
112e8700 332 uiout->field_skip ("current");
6c95b8df 333
381befee 334 uiout->field_signed ("id", pspace->num);
6c95b8df 335
1f0c4988 336 if (pspace->pspace_exec_filename)
112e8700 337 uiout->field_string ("exec", pspace->pspace_exec_filename);
6c95b8df 338 else
112e8700 339 uiout->field_skip ("exec");
6c95b8df
PA
340
341 /* Print extra info that doesn't really fit in tabular form.
342 Currently, we print the list of inferiors bound to a pspace.
343 There can be more than one inferior bound to the same pspace,
344 e.g., both parent/child inferiors in a vfork, or, on targets
345 that share pspaces between inferiors. */
346 printed_header = 0;
347 for (inf = inferior_list; inf; inf = inf->next)
348 if (inf->pspace == pspace)
349 {
350 if (!printed_header)
351 {
352 printed_header = 1;
353 printf_filtered ("\n\tBound inferiors: ID %d (%s)",
354 inf->num,
a068643d 355 target_pid_to_str (ptid_t (inf->pid)).c_str ());
6c95b8df
PA
356 }
357 else
358 printf_filtered (", ID %d (%s)",
359 inf->num,
a068643d 360 target_pid_to_str (ptid_t (inf->pid)).c_str ());
6c95b8df
PA
361 }
362
112e8700 363 uiout->text ("\n");
6c95b8df 364 }
6c95b8df
PA
365}
366
367/* Boolean test for an already-known program space id. */
368
369static int
370valid_program_space_id (int num)
371{
372 struct program_space *pspace;
373
374 ALL_PSPACES (pspace)
375 if (pspace->num == num)
376 return 1;
377
378 return 0;
379}
380
381/* If ARGS is NULL or empty, print information about all program
382 spaces. Otherwise, ARGS is a text representation of a LONG
383 indicating which the program space to print information about. */
384
385static void
9c504b5d 386maintenance_info_program_spaces_command (const char *args, int from_tty)
6c95b8df
PA
387{
388 int requested = -1;
389
390 if (args && *args)
391 {
392 requested = parse_and_eval_long (args);
393 if (!valid_program_space_id (requested))
394 error (_("program space ID %d not known."), requested);
395 }
396
79a45e25 397 print_program_space (current_uiout, requested);
6c95b8df
PA
398}
399
400/* Simply returns the count of program spaces. */
401
402int
403number_of_program_spaces (void)
404{
405 struct program_space *pspace;
406 int count = 0;
407
408 ALL_PSPACES (pspace)
409 count++;
410
411 return count;
412}
413
414/* Update all program spaces matching to address spaces. The user may
415 have created several program spaces, and loaded executables into
416 them before connecting to the target interface that will create the
417 inferiors. All that happens before GDB has a chance to know if the
418 inferiors will share an address space or not. Call this after
419 having connected to the target interface and having fetched the
420 target description, to fixup the program/address spaces mappings.
421
422 It is assumed that there are no bound inferiors yet, otherwise,
423 they'd be left with stale referenced to released aspaces. */
424
425void
426update_address_spaces (void)
427{
f5656ead 428 int shared_aspace = gdbarch_has_shared_address_space (target_gdbarch ());
6c95b8df 429 struct program_space *pspace;
7e9af34a 430 struct inferior *inf;
6c95b8df
PA
431
432 init_address_spaces ();
433
7e9af34a 434 if (shared_aspace)
6c95b8df 435 {
7e9af34a 436 struct address_space *aspace = new_address_space ();
ad3bbd48 437
7e9af34a
DJ
438 free_address_space (current_program_space->aspace);
439 ALL_PSPACES (pspace)
440 pspace->aspace = aspace;
6c95b8df 441 }
7e9af34a
DJ
442 else
443 ALL_PSPACES (pspace)
444 {
445 free_address_space (pspace->aspace);
446 pspace->aspace = new_address_space ();
447 }
448
449 for (inf = inferior_list; inf; inf = inf->next)
f5656ead 450 if (gdbarch_has_global_solist (target_gdbarch ()))
7e9af34a
DJ
451 inf->aspace = maybe_new_address_space ();
452 else
453 inf->aspace = inf->pspace->aspace;
6c95b8df
PA
454}
455
6c95b8df
PA
456\f
457
edcc5120
TT
458/* See progspace.h. */
459
460void
461clear_program_space_solib_cache (struct program_space *pspace)
462{
bcb430e4 463 pspace->added_solibs.clear ();
6fb16ce6 464 pspace->deleted_solibs.clear ();
edcc5120
TT
465}
466
467\f
468
6c95b8df
PA
469void
470initialize_progspace (void)
471{
472 add_cmd ("program-spaces", class_maintenance,
3e43a32a
MS
473 maintenance_info_program_spaces_command,
474 _("Info about currently known program spaces."),
6c95b8df
PA
475 &maintenanceinfolist);
476
477 /* There's always one program space. Note that this function isn't
478 an automatic _initialize_foo function, since other
479 _initialize_foo routines may need to install their per-pspace
480 data keys. We can only allocate a progspace when all those
481 modules have done that. Do this before
482 initialize_current_architecture, because that accesses exec_bfd,
483 which in turn dereferences current_program_space. */
564b1e3f 484 current_program_space = new program_space (new_address_space ());
6c95b8df 485}
This page took 1.225567 seconds and 4 git commands to generate.