]>
Commit | Line | Data |
---|---|---|
6c95b8df PA |
1 | /* Program and address space management, for GDB, the GNU debugger. |
2 | ||
3666a048 | 3 | Copyright (C) 2009-2021 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. */ | |
6bd434d6 | 32 | static int last_program_space_num = 0; |
6c95b8df PA |
33 | |
34 | /* The head of the program spaces list. */ | |
94c93c35 | 35 | std::vector<struct program_space *> program_spaces; |
6c95b8df PA |
36 | |
37 | /* Pointer to the current program space. */ | |
38 | struct program_space *current_program_space; | |
39 | ||
40 | /* The last address space number assigned. */ | |
41 | static 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 | 48 | DEFINE_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 | ||
53 | DEFINE_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 | ||
59 | struct address_space * | |
60 | new_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 | ||
75 | struct address_space * | |
76 | maybe_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 | ||
89 | static void | |
90 | free_address_space (struct address_space *aspace) | |
91 | { | |
3a8356ff | 92 | address_space_free_data (aspace); |
6c95b8df PA |
93 | xfree (aspace); |
94 | } | |
95 | ||
c0694254 PA |
96 | int |
97 | address_space_num (struct address_space *aspace) | |
98 | { | |
99 | return aspace->num; | |
100 | } | |
101 | ||
6c95b8df PA |
102 | /* Start counting over from scratch. */ |
103 | ||
104 | static void | |
105 | init_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 | ||
114 | static void | |
115 | remove_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 | ||
127 | program_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 | 138 | program_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 | 149 | no_shared_libraries (NULL, 0); |
6c95b8df | 150 | free_all_objfiles (); |
f3c469b9 PA |
151 | /* Defer breakpoint re-set because we don't want to create new |
152 | locations for this pspace which we're tearing down. */ | |
153 | clear_symtab_users (SYMFILE_DEFER_BP_RESET); | |
f5656ead | 154 | if (!gdbarch_has_shared_address_space (target_gdbarch ())) |
564b1e3f | 155 | free_address_space (this->aspace); |
6c95b8df | 156 | /* Discard any data modules have associated with the PSPACE. */ |
564b1e3f | 157 | program_space_free_data (this); |
6c95b8df PA |
158 | } |
159 | ||
7cac64af TT |
160 | /* See progspace.h. */ |
161 | ||
343cc952 TT |
162 | void |
163 | program_space::free_all_objfiles () | |
164 | { | |
343cc952 | 165 | /* Any objfile reference would become stale. */ |
a1fd1ac9 | 166 | for (struct so_list *so : current_program_space->solibs ()) |
343cc952 TT |
167 | gdb_assert (so->objfile == NULL); |
168 | ||
169 | while (!objfiles_list.empty ()) | |
170 | objfiles_list.front ()->unlink (); | |
343cc952 TT |
171 | } |
172 | ||
173 | /* See progspace.h. */ | |
174 | ||
7cac64af | 175 | void |
7d7167ce TT |
176 | program_space::add_objfile (std::shared_ptr<objfile> &&objfile, |
177 | struct objfile *before) | |
7cac64af | 178 | { |
d0801dd8 | 179 | if (before == nullptr) |
7d7167ce | 180 | objfiles_list.push_back (std::move (objfile)); |
d0801dd8 | 181 | else |
7cac64af | 182 | { |
7d7167ce TT |
183 | auto iter = std::find_if (objfiles_list.begin (), objfiles_list.end (), |
184 | [=] (const std::shared_ptr<::objfile> &objf) | |
185 | { | |
186 | return objf.get () == before; | |
187 | }); | |
d0801dd8 | 188 | gdb_assert (iter != objfiles_list.end ()); |
7d7167ce | 189 | objfiles_list.insert (iter, std::move (objfile)); |
7cac64af | 190 | } |
7cac64af TT |
191 | } |
192 | ||
23452926 TT |
193 | /* See progspace.h. */ |
194 | ||
195 | void | |
196 | program_space::remove_objfile (struct objfile *objfile) | |
197 | { | |
27c7b875 PA |
198 | /* Removing an objfile from the objfile list invalidates any frame |
199 | that was built using frame info found in the objfile. Reinit the | |
200 | frame cache to get rid of any frame that might otherwise | |
201 | reference stale info. */ | |
202 | reinit_frame_cache (); | |
203 | ||
7d7167ce TT |
204 | auto iter = std::find_if (objfiles_list.begin (), objfiles_list.end (), |
205 | [=] (const std::shared_ptr<::objfile> &objf) | |
206 | { | |
207 | return objf.get () == objfile; | |
208 | }); | |
d0801dd8 TT |
209 | gdb_assert (iter != objfiles_list.end ()); |
210 | objfiles_list.erase (iter); | |
23452926 | 211 | |
d0801dd8 TT |
212 | if (objfile == symfile_object_file) |
213 | symfile_object_file = NULL; | |
deeafabb TT |
214 | } |
215 | ||
a1fd1ac9 TT |
216 | /* See progspace.h. */ |
217 | ||
218 | next_adapter<struct so_list> | |
219 | program_space::solibs () const | |
220 | { | |
221 | return next_adapter<struct so_list> (this->so_list); | |
222 | } | |
223 | ||
8a4f1402 TT |
224 | /* See progspace.h. */ |
225 | ||
226 | void | |
227 | program_space::exec_close () | |
228 | { | |
19f6550e | 229 | if (ebfd != nullptr) |
8a4f1402 | 230 | { |
8a4f1402 | 231 | /* Removing target sections may close the exec_ops target. |
7e10abd1 | 232 | Clear ebfd before doing so to prevent recursion. */ |
19f6550e | 233 | ebfd.reset (nullptr); |
8a4f1402 TT |
234 | ebfd_mtime = 0; |
235 | ||
236 | remove_target_sections (&ebfd); | |
237 | ||
238 | exec_filename.reset (nullptr); | |
239 | } | |
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 | ||
245 | struct program_space * | |
246 | clone_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 | ||
c20cb686 TT |
252 | if (src->exec_filename != NULL) |
253 | exec_file_attach (src->exec_filename.get (), 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 | ||
266 | void | |
267 | set_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 | ||
004eecfd TT |
282 | bool |
283 | program_space::empty () | |
6c95b8df | 284 | { |
004eecfd | 285 | return find_inferior_for_program_space (this) == nullptr; |
6c95b8df PA |
286 | } |
287 | ||
6c95b8df PA |
288 | /* Prints the list of program spaces and their details on UIOUT. If |
289 | REQUESTED is not -1, it's the ID of the pspace that should be | |
290 | printed. Otherwise, all spaces are printed. */ | |
291 | ||
292 | static void | |
293 | print_program_space (struct ui_out *uiout, int requested) | |
294 | { | |
6c95b8df | 295 | int count = 0; |
6c95b8df | 296 | |
6c95b8df | 297 | /* Compute number of pspaces we will print. */ |
94c93c35 | 298 | for (struct program_space *pspace : program_spaces) |
6c95b8df PA |
299 | { |
300 | if (requested != -1 && pspace->num != requested) | |
301 | continue; | |
302 | ||
303 | ++count; | |
304 | } | |
305 | ||
306 | /* There should always be at least one. */ | |
307 | gdb_assert (count > 0); | |
308 | ||
4a2b031d | 309 | ui_out_emit_table table_emitter (uiout, 3, count, "pspaces"); |
112e8700 SM |
310 | uiout->table_header (1, ui_left, "current", ""); |
311 | uiout->table_header (4, ui_left, "id", "Id"); | |
312 | uiout->table_header (17, ui_left, "exec", "Executable"); | |
313 | uiout->table_body (); | |
6c95b8df | 314 | |
94c93c35 | 315 | for (struct program_space *pspace : program_spaces) |
6c95b8df | 316 | { |
6c95b8df PA |
317 | int printed_header; |
318 | ||
319 | if (requested != -1 && requested != pspace->num) | |
320 | continue; | |
321 | ||
2e783024 | 322 | ui_out_emit_tuple tuple_emitter (uiout, NULL); |
6c95b8df PA |
323 | |
324 | if (pspace == current_program_space) | |
112e8700 | 325 | uiout->field_string ("current", "*"); |
6c95b8df | 326 | else |
112e8700 | 327 | uiout->field_skip ("current"); |
6c95b8df | 328 | |
381befee | 329 | uiout->field_signed ("id", pspace->num); |
6c95b8df | 330 | |
c20cb686 TT |
331 | if (pspace->exec_filename != nullptr) |
332 | uiout->field_string ("exec", pspace->exec_filename.get ()); | |
6c95b8df | 333 | else |
112e8700 | 334 | uiout->field_skip ("exec"); |
6c95b8df PA |
335 | |
336 | /* Print extra info that doesn't really fit in tabular form. | |
337 | Currently, we print the list of inferiors bound to a pspace. | |
338 | There can be more than one inferior bound to the same pspace, | |
339 | e.g., both parent/child inferiors in a vfork, or, on targets | |
340 | that share pspaces between inferiors. */ | |
341 | printed_header = 0; | |
f7c7700d PA |
342 | |
343 | /* We're going to switch inferiors. */ | |
344 | scoped_restore_current_thread restore_thread; | |
345 | ||
346 | for (inferior *inf : all_inferiors ()) | |
6c95b8df PA |
347 | if (inf->pspace == pspace) |
348 | { | |
f7c7700d PA |
349 | /* Switch to inferior in order to call target methods. */ |
350 | switch_to_inferior_no_thread (inf); | |
351 | ||
6c95b8df PA |
352 | if (!printed_header) |
353 | { | |
354 | printed_header = 1; | |
355 | printf_filtered ("\n\tBound inferiors: ID %d (%s)", | |
356 | inf->num, | |
a068643d | 357 | target_pid_to_str (ptid_t (inf->pid)).c_str ()); |
6c95b8df PA |
358 | } |
359 | else | |
360 | printf_filtered (", ID %d (%s)", | |
361 | inf->num, | |
a068643d | 362 | target_pid_to_str (ptid_t (inf->pid)).c_str ()); |
6c95b8df PA |
363 | } |
364 | ||
112e8700 | 365 | uiout->text ("\n"); |
6c95b8df | 366 | } |
6c95b8df PA |
367 | } |
368 | ||
369 | /* Boolean test for an already-known program space id. */ | |
370 | ||
371 | static int | |
372 | valid_program_space_id (int num) | |
373 | { | |
94c93c35 | 374 | for (struct program_space *pspace : program_spaces) |
6c95b8df PA |
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 | ||
385 | static void | |
9c504b5d | 386 | maintenance_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 | ||
6c95b8df PA |
400 | /* Update all program spaces matching to address spaces. The user may |
401 | have created several program spaces, and loaded executables into | |
402 | them before connecting to the target interface that will create the | |
403 | inferiors. All that happens before GDB has a chance to know if the | |
404 | inferiors will share an address space or not. Call this after | |
405 | having connected to the target interface and having fetched the | |
406 | target description, to fixup the program/address spaces mappings. | |
407 | ||
408 | It is assumed that there are no bound inferiors yet, otherwise, | |
409 | they'd be left with stale referenced to released aspaces. */ | |
410 | ||
411 | void | |
412 | update_address_spaces (void) | |
413 | { | |
f5656ead | 414 | int shared_aspace = gdbarch_has_shared_address_space (target_gdbarch ()); |
7e9af34a | 415 | struct inferior *inf; |
6c95b8df PA |
416 | |
417 | init_address_spaces (); | |
418 | ||
7e9af34a | 419 | if (shared_aspace) |
6c95b8df | 420 | { |
7e9af34a | 421 | struct address_space *aspace = new_address_space (); |
ad3bbd48 | 422 | |
7e9af34a | 423 | free_address_space (current_program_space->aspace); |
94c93c35 | 424 | for (struct program_space *pspace : program_spaces) |
7e9af34a | 425 | pspace->aspace = aspace; |
6c95b8df | 426 | } |
7e9af34a | 427 | else |
94c93c35 | 428 | for (struct program_space *pspace : program_spaces) |
7e9af34a DJ |
429 | { |
430 | free_address_space (pspace->aspace); | |
431 | pspace->aspace = new_address_space (); | |
432 | } | |
433 | ||
434 | for (inf = inferior_list; inf; inf = inf->next) | |
f5656ead | 435 | if (gdbarch_has_global_solist (target_gdbarch ())) |
7e9af34a DJ |
436 | inf->aspace = maybe_new_address_space (); |
437 | else | |
438 | inf->aspace = inf->pspace->aspace; | |
6c95b8df PA |
439 | } |
440 | ||
6c95b8df PA |
441 | \f |
442 | ||
edcc5120 TT |
443 | /* See progspace.h. */ |
444 | ||
445 | void | |
e39fb971 | 446 | program_space::clear_solib_cache () |
edcc5120 | 447 | { |
e39fb971 TT |
448 | added_solibs.clear (); |
449 | deleted_solibs.clear (); | |
edcc5120 TT |
450 | } |
451 | ||
452 | \f | |
453 | ||
6c95b8df PA |
454 | void |
455 | initialize_progspace (void) | |
456 | { | |
457 | add_cmd ("program-spaces", class_maintenance, | |
3e43a32a MS |
458 | maintenance_info_program_spaces_command, |
459 | _("Info about currently known program spaces."), | |
6c95b8df PA |
460 | &maintenanceinfolist); |
461 | ||
462 | /* There's always one program space. Note that this function isn't | |
463 | an automatic _initialize_foo function, since other | |
464 | _initialize_foo routines may need to install their per-pspace | |
465 | data keys. We can only allocate a progspace when all those | |
466 | modules have done that. Do this before | |
7e10abd1 TT |
467 | initialize_current_architecture, because that accesses the ebfd |
468 | of current_program_space. */ | |
564b1e3f | 469 | current_program_space = new program_space (new_address_space ()); |
6c95b8df | 470 | } |