Change program_space::ebfd to a gdb_bfd_ref_ptr
[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. */
94c93c35 35std::vector<struct program_space *> program_spaces;
6c95b8df
PA
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. */
94c93c35 83 return program_spaces[0]->aspace;
6c95b8df
PA
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
PA
112/* Remove a program space from the program spaces list. */
113
114static void
115remove_program_space (program_space *pspace)
116{
381ce63f
PA
117 gdb_assert (pspace != NULL);
118
94c93c35
TT
119 auto iter = std::find (program_spaces.begin (), program_spaces.end (),
120 pspace);
121 gdb_assert (iter != program_spaces.end ());
122 program_spaces.erase (iter);
381ce63f
PA
123}
124
125/* See progspace.h. */
126
127program_space::program_space (address_space *aspace_)
128 : num (++last_program_space_num),
129 aspace (aspace_)
130{
131 program_space_alloc_data (this);
132
94c93c35 133 program_spaces.push_back (this);
381ce63f
PA
134}
135
136/* See progspace.h. */
6c95b8df 137
564b1e3f 138program_space::~program_space ()
6c95b8df 139{
564b1e3f 140 gdb_assert (this != current_program_space);
6c95b8df 141
381ce63f
PA
142 remove_program_space (this);
143
5ed8105e
PA
144 scoped_restore_current_program_space restore_pspace;
145
564b1e3f 146 set_current_program_space (this);
6c95b8df 147
564b1e3f 148 breakpoint_program_space_exit (this);
6c95b8df
PA
149 no_shared_libraries (NULL, 0);
150 exec_close ();
151 free_all_objfiles ();
f3c469b9
PA
152 /* Defer breakpoint re-set because we don't want to create new
153 locations for this pspace which we're tearing down. */
154 clear_symtab_users (SYMFILE_DEFER_BP_RESET);
f5656ead 155 if (!gdbarch_has_shared_address_space (target_gdbarch ()))
564b1e3f 156 free_address_space (this->aspace);
564b1e3f 157 clear_program_space_solib_cache (this);
6c95b8df 158 /* Discard any data modules have associated with the PSPACE. */
564b1e3f 159 program_space_free_data (this);
6c95b8df
PA
160}
161
7cac64af
TT
162/* See progspace.h. */
163
343cc952
TT
164void
165program_space::free_all_objfiles ()
166{
343cc952 167 /* Any objfile reference would become stale. */
a1fd1ac9 168 for (struct so_list *so : current_program_space->solibs ())
343cc952
TT
169 gdb_assert (so->objfile == NULL);
170
171 while (!objfiles_list.empty ())
172 objfiles_list.front ()->unlink ();
343cc952
TT
173}
174
175/* See progspace.h. */
176
7cac64af 177void
7d7167ce
TT
178program_space::add_objfile (std::shared_ptr<objfile> &&objfile,
179 struct objfile *before)
7cac64af 180{
d0801dd8 181 if (before == nullptr)
7d7167ce 182 objfiles_list.push_back (std::move (objfile));
d0801dd8 183 else
7cac64af 184 {
7d7167ce
TT
185 auto iter = std::find_if (objfiles_list.begin (), objfiles_list.end (),
186 [=] (const std::shared_ptr<::objfile> &objf)
187 {
188 return objf.get () == before;
189 });
d0801dd8 190 gdb_assert (iter != objfiles_list.end ());
7d7167ce 191 objfiles_list.insert (iter, std::move (objfile));
7cac64af 192 }
7cac64af
TT
193}
194
23452926
TT
195/* See progspace.h. */
196
197void
198program_space::remove_objfile (struct objfile *objfile)
199{
27c7b875
PA
200 /* Removing an objfile from the objfile list invalidates any frame
201 that was built using frame info found in the objfile. Reinit the
202 frame cache to get rid of any frame that might otherwise
203 reference stale info. */
204 reinit_frame_cache ();
205
7d7167ce
TT
206 auto iter = std::find_if (objfiles_list.begin (), objfiles_list.end (),
207 [=] (const std::shared_ptr<::objfile> &objf)
208 {
209 return objf.get () == objfile;
210 });
d0801dd8
TT
211 gdb_assert (iter != objfiles_list.end ());
212 objfiles_list.erase (iter);
23452926 213
d0801dd8
TT
214 if (objfile == symfile_object_file)
215 symfile_object_file = NULL;
deeafabb
TT
216}
217
a1fd1ac9
TT
218/* See progspace.h. */
219
220next_adapter<struct so_list>
221program_space::solibs () const
222{
223 return next_adapter<struct so_list> (this->so_list);
224}
225
8a4f1402
TT
226/* See progspace.h. */
227
228void
229program_space::exec_close ()
230{
19f6550e 231 if (ebfd != nullptr)
8a4f1402 232 {
8a4f1402 233 /* Removing target sections may close the exec_ops target.
7e10abd1 234 Clear ebfd before doing so to prevent recursion. */
19f6550e 235 ebfd.reset (nullptr);
8a4f1402
TT
236 ebfd_mtime = 0;
237
238 remove_target_sections (&ebfd);
239
240 exec_filename.reset (nullptr);
241 }
242}
243
6c95b8df
PA
244/* Copies program space SRC to DEST. Copies the main executable file,
245 and the main symbol file. Returns DEST. */
246
247struct program_space *
248clone_program_space (struct program_space *dest, struct program_space *src)
249{
5ed8105e 250 scoped_restore_current_program_space restore_pspace;
6c95b8df
PA
251
252 set_current_program_space (dest);
253
c20cb686
TT
254 if (src->exec_filename != NULL)
255 exec_file_attach (src->exec_filename.get (), 0);
6c95b8df
PA
256
257 if (src->symfile_object_file != NULL)
b2e586e8
SM
258 symbol_file_add_main (objfile_name (src->symfile_object_file),
259 SYMFILE_DEFER_BP_RESET);
6c95b8df 260
6c95b8df
PA
261 return dest;
262}
263
264/* Sets PSPACE as the current program space. It is the caller's
265 responsibility to make sure that the currently selected
266 inferior/thread matches the selected program space. */
267
268void
269set_current_program_space (struct program_space *pspace)
270{
271 if (current_program_space == pspace)
272 return;
273
274 gdb_assert (pspace != NULL);
275
276 current_program_space = pspace;
277
278 /* Different symbols change our view of the frame chain. */
279 reinit_frame_cache ();
280}
281
6c95b8df
PA
282/* Returns true iff there's no inferior bound to PSPACE. */
283
7a41607e
SM
284int
285program_space_empty_p (struct program_space *pspace)
6c95b8df 286{
6c95b8df
PA
287 if (find_inferior_for_program_space (pspace) != NULL)
288 return 0;
289
290 return 1;
291}
292
6c95b8df
PA
293/* Prints the list of program spaces and their details on UIOUT. If
294 REQUESTED is not -1, it's the ID of the pspace that should be
295 printed. Otherwise, all spaces are printed. */
296
297static void
298print_program_space (struct ui_out *uiout, int requested)
299{
6c95b8df 300 int count = 0;
6c95b8df 301
6c95b8df 302 /* Compute number of pspaces we will print. */
94c93c35 303 for (struct program_space *pspace : program_spaces)
6c95b8df
PA
304 {
305 if (requested != -1 && pspace->num != requested)
306 continue;
307
308 ++count;
309 }
310
311 /* There should always be at least one. */
312 gdb_assert (count > 0);
313
4a2b031d 314 ui_out_emit_table table_emitter (uiout, 3, count, "pspaces");
112e8700
SM
315 uiout->table_header (1, ui_left, "current", "");
316 uiout->table_header (4, ui_left, "id", "Id");
317 uiout->table_header (17, ui_left, "exec", "Executable");
318 uiout->table_body ();
6c95b8df 319
94c93c35 320 for (struct program_space *pspace : program_spaces)
6c95b8df 321 {
6c95b8df
PA
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
c20cb686
TT
336 if (pspace->exec_filename != nullptr)
337 uiout->field_string ("exec", pspace->exec_filename.get ());
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;
f7c7700d
PA
347
348 /* We're going to switch inferiors. */
349 scoped_restore_current_thread restore_thread;
350
351 for (inferior *inf : all_inferiors ())
6c95b8df
PA
352 if (inf->pspace == pspace)
353 {
f7c7700d
PA
354 /* Switch to inferior in order to call target methods. */
355 switch_to_inferior_no_thread (inf);
356
6c95b8df
PA
357 if (!printed_header)
358 {
359 printed_header = 1;
360 printf_filtered ("\n\tBound inferiors: ID %d (%s)",
361 inf->num,
a068643d 362 target_pid_to_str (ptid_t (inf->pid)).c_str ());
6c95b8df
PA
363 }
364 else
365 printf_filtered (", ID %d (%s)",
366 inf->num,
a068643d 367 target_pid_to_str (ptid_t (inf->pid)).c_str ());
6c95b8df
PA
368 }
369
112e8700 370 uiout->text ("\n");
6c95b8df 371 }
6c95b8df
PA
372}
373
374/* Boolean test for an already-known program space id. */
375
376static int
377valid_program_space_id (int num)
378{
94c93c35 379 for (struct program_space *pspace : program_spaces)
6c95b8df
PA
380 if (pspace->num == num)
381 return 1;
382
383 return 0;
384}
385
386/* If ARGS is NULL or empty, print information about all program
387 spaces. Otherwise, ARGS is a text representation of a LONG
388 indicating which the program space to print information about. */
389
390static void
9c504b5d 391maintenance_info_program_spaces_command (const char *args, int from_tty)
6c95b8df
PA
392{
393 int requested = -1;
394
395 if (args && *args)
396 {
397 requested = parse_and_eval_long (args);
398 if (!valid_program_space_id (requested))
399 error (_("program space ID %d not known."), requested);
400 }
401
79a45e25 402 print_program_space (current_uiout, requested);
6c95b8df
PA
403}
404
6c95b8df
PA
405/* Update all program spaces matching to address spaces. The user may
406 have created several program spaces, and loaded executables into
407 them before connecting to the target interface that will create the
408 inferiors. All that happens before GDB has a chance to know if the
409 inferiors will share an address space or not. Call this after
410 having connected to the target interface and having fetched the
411 target description, to fixup the program/address spaces mappings.
412
413 It is assumed that there are no bound inferiors yet, otherwise,
414 they'd be left with stale referenced to released aspaces. */
415
416void
417update_address_spaces (void)
418{
f5656ead 419 int shared_aspace = gdbarch_has_shared_address_space (target_gdbarch ());
7e9af34a 420 struct inferior *inf;
6c95b8df
PA
421
422 init_address_spaces ();
423
7e9af34a 424 if (shared_aspace)
6c95b8df 425 {
7e9af34a 426 struct address_space *aspace = new_address_space ();
ad3bbd48 427
7e9af34a 428 free_address_space (current_program_space->aspace);
94c93c35 429 for (struct program_space *pspace : program_spaces)
7e9af34a 430 pspace->aspace = aspace;
6c95b8df 431 }
7e9af34a 432 else
94c93c35 433 for (struct program_space *pspace : program_spaces)
7e9af34a
DJ
434 {
435 free_address_space (pspace->aspace);
436 pspace->aspace = new_address_space ();
437 }
438
439 for (inf = inferior_list; inf; inf = inf->next)
f5656ead 440 if (gdbarch_has_global_solist (target_gdbarch ()))
7e9af34a
DJ
441 inf->aspace = maybe_new_address_space ();
442 else
443 inf->aspace = inf->pspace->aspace;
6c95b8df
PA
444}
445
6c95b8df
PA
446\f
447
edcc5120
TT
448/* See progspace.h. */
449
450void
451clear_program_space_solib_cache (struct program_space *pspace)
452{
bcb430e4 453 pspace->added_solibs.clear ();
6fb16ce6 454 pspace->deleted_solibs.clear ();
edcc5120
TT
455}
456
457\f
458
6c95b8df
PA
459void
460initialize_progspace (void)
461{
462 add_cmd ("program-spaces", class_maintenance,
3e43a32a
MS
463 maintenance_info_program_spaces_command,
464 _("Info about currently known program spaces."),
6c95b8df
PA
465 &maintenanceinfolist);
466
467 /* There's always one program space. Note that this function isn't
468 an automatic _initialize_foo function, since other
469 _initialize_foo routines may need to install their per-pspace
470 data keys. We can only allocate a progspace when all those
471 modules have done that. Do this before
7e10abd1
TT
472 initialize_current_architecture, because that accesses the ebfd
473 of current_program_space. */
564b1e3f 474 current_program_space = new program_space (new_address_space ());
6c95b8df 475}
This page took 1.384725 seconds and 4 git commands to generate.