]>
Commit | Line | Data |
---|---|---|
1 | /* Memory attributes support, for GDB. | |
2 | ||
3 | Copyright (C) 2001-2025 Free Software Foundation, Inc. | |
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 "command.h" | |
21 | #include "cli/cli-cmds.h" | |
22 | #include "cli/cli-style.h" | |
23 | #include "memattr.h" | |
24 | #include "target.h" | |
25 | #include "target-dcache.h" | |
26 | #include "value.h" | |
27 | #include "language.h" | |
28 | #include "breakpoint.h" | |
29 | #include "cli/cli-utils.h" | |
30 | #include <algorithm> | |
31 | #include "gdbarch.h" | |
32 | #include "inferior.h" | |
33 | #include "progspace.h" | |
34 | ||
35 | static std::vector<mem_region> user_mem_region_list, target_mem_region_list; | |
36 | static std::vector<mem_region> *mem_region_list = &target_mem_region_list; | |
37 | static int mem_number = 0; | |
38 | ||
39 | /* If this flag is set, the memory region list should be automatically | |
40 | updated from the target. If it is clear, the list is user-controlled | |
41 | and should be left alone. */ | |
42 | ||
43 | static bool | |
44 | mem_use_target () | |
45 | { | |
46 | return mem_region_list == &target_mem_region_list; | |
47 | } | |
48 | ||
49 | /* If this flag is set, we have tried to fetch the target memory regions | |
50 | since the last time it was invalidated. If that list is still | |
51 | empty, then the target can't supply memory regions. */ | |
52 | static bool target_mem_regions_valid; | |
53 | ||
54 | /* If this flag is set, gdb will assume that memory ranges not | |
55 | specified by the memory map have type MEM_NONE, and will | |
56 | emit errors on all accesses to that memory. */ | |
57 | static bool inaccessible_by_default = true; | |
58 | ||
59 | static void | |
60 | show_inaccessible_by_default (struct ui_file *file, int from_tty, | |
61 | struct cmd_list_element *c, | |
62 | const char *value) | |
63 | { | |
64 | if (inaccessible_by_default) | |
65 | gdb_printf (file, _("Unknown memory addresses will " | |
66 | "be treated as inaccessible.\n")); | |
67 | else | |
68 | gdb_printf (file, _("Unknown memory addresses " | |
69 | "will be treated as RAM.\n")); | |
70 | } | |
71 | ||
72 | /* This function should be called before any command which would | |
73 | modify the memory region list. It will handle switching from | |
74 | a target-provided list to a local list, if necessary. */ | |
75 | ||
76 | static void | |
77 | require_user_regions (int from_tty) | |
78 | { | |
79 | /* If we're already using a user-provided list, nothing to do. */ | |
80 | if (!mem_use_target ()) | |
81 | return; | |
82 | ||
83 | /* Switch to a user-provided list (possibly a copy of the current | |
84 | one). */ | |
85 | mem_region_list = &user_mem_region_list; | |
86 | ||
87 | /* If we don't have a target-provided region list yet, then | |
88 | no need to warn. */ | |
89 | if (target_mem_region_list.empty ()) | |
90 | return; | |
91 | ||
92 | /* Otherwise, let the user know how to get back. */ | |
93 | if (from_tty) | |
94 | warning (_("Switching to manual control of memory regions; use " | |
95 | "\"%ps\" to fetch regions from the target again."), | |
96 | styled_string (command_style.style (), "mem auto")); | |
97 | ||
98 | /* And create a new list (copy of the target-supplied regions) for the user | |
99 | to modify. */ | |
100 | user_mem_region_list = target_mem_region_list; | |
101 | } | |
102 | ||
103 | /* This function should be called before any command which would | |
104 | read the memory region list, other than those which call | |
105 | require_user_regions. It will handle fetching the | |
106 | target-provided list, if necessary. */ | |
107 | ||
108 | static void | |
109 | require_target_regions (void) | |
110 | { | |
111 | if (mem_use_target () && !target_mem_regions_valid) | |
112 | { | |
113 | target_mem_regions_valid = true; | |
114 | target_mem_region_list = target_memory_map (); | |
115 | } | |
116 | } | |
117 | ||
118 | /* Create a new user-defined memory region. */ | |
119 | ||
120 | static void | |
121 | create_user_mem_region (CORE_ADDR lo, CORE_ADDR hi, | |
122 | const mem_attrib &attrib) | |
123 | { | |
124 | /* lo == hi is a useless empty region. */ | |
125 | if (lo >= hi && hi != 0) | |
126 | { | |
127 | gdb_printf (_("invalid memory region: low >= high\n")); | |
128 | return; | |
129 | } | |
130 | ||
131 | mem_region newobj (lo, hi, attrib); | |
132 | ||
133 | auto it = std::lower_bound (user_mem_region_list.begin (), | |
134 | user_mem_region_list.end (), | |
135 | newobj); | |
136 | int ix = std::distance (user_mem_region_list.begin (), it); | |
137 | ||
138 | /* Check for an overlapping memory region. We only need to check | |
139 | in the vicinity - at most one before and one after the | |
140 | insertion point. */ | |
141 | for (int i = ix - 1; i < ix + 1; i++) | |
142 | { | |
143 | if (i < 0) | |
144 | continue; | |
145 | if (i >= user_mem_region_list.size ()) | |
146 | continue; | |
147 | ||
148 | mem_region &n = user_mem_region_list[i]; | |
149 | ||
150 | if ((lo >= n.lo && (lo < n.hi || n.hi == 0)) | |
151 | || (hi > n.lo && (hi <= n.hi || n.hi == 0)) | |
152 | || (lo <= n.lo && ((hi >= n.hi && n.hi != 0) || hi == 0))) | |
153 | { | |
154 | gdb_printf (_("overlapping memory region\n")); | |
155 | return; | |
156 | } | |
157 | } | |
158 | ||
159 | newobj.number = ++mem_number; | |
160 | user_mem_region_list.insert (it, newobj); | |
161 | } | |
162 | ||
163 | /* Look up the memory region corresponding to ADDR. */ | |
164 | ||
165 | struct mem_region * | |
166 | lookup_mem_region (CORE_ADDR addr) | |
167 | { | |
168 | static struct mem_region region (0, 0); | |
169 | CORE_ADDR lo; | |
170 | CORE_ADDR hi; | |
171 | ||
172 | require_target_regions (); | |
173 | ||
174 | /* First we initialize LO and HI so that they describe the entire | |
175 | memory space. As we process the memory region chain, they are | |
176 | redefined to describe the minimal region containing ADDR. LO | |
177 | and HI are used in the case where no memory region is defined | |
178 | that contains ADDR. If a memory region is disabled, it is | |
179 | treated as if it does not exist. The initial values for LO | |
180 | and HI represent the bottom and top of memory. */ | |
181 | ||
182 | lo = 0; | |
183 | hi = 0; | |
184 | ||
185 | /* Either find memory range containing ADDR, or set LO and HI | |
186 | to the nearest boundaries of an existing memory range. | |
187 | ||
188 | If we ever want to support a huge list of memory regions, this | |
189 | check should be replaced with a binary search (probably using | |
190 | VEC_lower_bound). */ | |
191 | for (mem_region &m : *mem_region_list) | |
192 | { | |
193 | if (m.enabled_p == 1) | |
194 | { | |
195 | /* If the address is in the memory region, return that | |
196 | memory range. */ | |
197 | if (addr >= m.lo && (addr < m.hi || m.hi == 0)) | |
198 | return &m; | |
199 | ||
200 | /* This (correctly) won't match if m->hi == 0, representing | |
201 | the top of the address space, because CORE_ADDR is unsigned; | |
202 | no value of LO is less than zero. */ | |
203 | if (addr >= m.hi && lo < m.hi) | |
204 | lo = m.hi; | |
205 | ||
206 | /* This will never set HI to zero; if we're here and ADDR | |
207 | is at or below M, and the region starts at zero, then ADDR | |
208 | would have been in the region. */ | |
209 | if (addr <= m.lo && (hi == 0 || hi > m.lo)) | |
210 | hi = m.lo; | |
211 | } | |
212 | } | |
213 | ||
214 | /* Because no region was found, we must cons up one based on what | |
215 | was learned above. */ | |
216 | region.lo = lo; | |
217 | region.hi = hi; | |
218 | ||
219 | /* When no memory map is defined at all, we always return | |
220 | 'default_mem_attrib', so that we do not make all memory | |
221 | inaccessible for targets that don't provide a memory map. */ | |
222 | if (inaccessible_by_default && !mem_region_list->empty ()) | |
223 | region.attrib = mem_attrib::unknown (); | |
224 | else | |
225 | region.attrib = mem_attrib (); | |
226 | ||
227 | return ®ion; | |
228 | } | |
229 | ||
230 | /* Invalidate any memory regions fetched from the target. */ | |
231 | ||
232 | void | |
233 | invalidate_target_mem_regions (void) | |
234 | { | |
235 | if (!target_mem_regions_valid) | |
236 | return; | |
237 | ||
238 | target_mem_regions_valid = false; | |
239 | target_mem_region_list.clear (); | |
240 | } | |
241 | ||
242 | /* Clear user-defined memory region list. */ | |
243 | ||
244 | static void | |
245 | user_mem_clear (void) | |
246 | { | |
247 | user_mem_region_list.clear (); | |
248 | } | |
249 | \f | |
250 | ||
251 | static void | |
252 | mem_command (const char *args, int from_tty) | |
253 | { | |
254 | CORE_ADDR lo, hi; | |
255 | ||
256 | if (!args) | |
257 | error_no_arg (_("No mem")); | |
258 | ||
259 | /* For "mem auto", switch back to using a target provided list. */ | |
260 | if (strcmp (args, "auto") == 0) | |
261 | { | |
262 | if (mem_use_target ()) | |
263 | return; | |
264 | ||
265 | user_mem_clear (); | |
266 | mem_region_list = &target_mem_region_list; | |
267 | ||
268 | return; | |
269 | } | |
270 | ||
271 | require_user_regions (from_tty); | |
272 | ||
273 | std::string tok = extract_arg (&args); | |
274 | if (tok == "") | |
275 | error (_("no lo address")); | |
276 | lo = parse_and_eval_address (tok.c_str ()); | |
277 | ||
278 | tok = extract_arg (&args); | |
279 | if (tok == "") | |
280 | error (_("no hi address")); | |
281 | hi = parse_and_eval_address (tok.c_str ()); | |
282 | ||
283 | mem_attrib attrib; | |
284 | while ((tok = extract_arg (&args)) != "") | |
285 | { | |
286 | if (tok == "rw") | |
287 | attrib.mode = MEM_RW; | |
288 | else if (tok == "ro") | |
289 | attrib.mode = MEM_RO; | |
290 | else if (tok == "wo") | |
291 | attrib.mode = MEM_WO; | |
292 | ||
293 | else if (tok == "8") | |
294 | attrib.width = MEM_WIDTH_8; | |
295 | else if (tok == "16") | |
296 | { | |
297 | if ((lo % 2 != 0) || (hi % 2 != 0)) | |
298 | error (_("region bounds not 16 bit aligned")); | |
299 | attrib.width = MEM_WIDTH_16; | |
300 | } | |
301 | else if (tok == "32") | |
302 | { | |
303 | if ((lo % 4 != 0) || (hi % 4 != 0)) | |
304 | error (_("region bounds not 32 bit aligned")); | |
305 | attrib.width = MEM_WIDTH_32; | |
306 | } | |
307 | else if (tok == "64") | |
308 | { | |
309 | if ((lo % 8 != 0) || (hi % 8 != 0)) | |
310 | error (_("region bounds not 64 bit aligned")); | |
311 | attrib.width = MEM_WIDTH_64; | |
312 | } | |
313 | ||
314 | #if 0 | |
315 | else if (tok == "hwbreak") | |
316 | attrib.hwbreak = 1; | |
317 | else if (tok == "swbreak") | |
318 | attrib.hwbreak = 0; | |
319 | #endif | |
320 | ||
321 | else if (tok == "cache") | |
322 | attrib.cache = 1; | |
323 | else if (tok == "nocache") | |
324 | attrib.cache = 0; | |
325 | ||
326 | #if 0 | |
327 | else if (tok == "verify") | |
328 | attrib.verify = 1; | |
329 | else if (tok == "noverify") | |
330 | attrib.verify = 0; | |
331 | #endif | |
332 | ||
333 | else | |
334 | error (_("unknown attribute: %s"), tok.c_str ()); | |
335 | } | |
336 | ||
337 | create_user_mem_region (lo, hi, attrib); | |
338 | } | |
339 | \f | |
340 | ||
341 | static void | |
342 | info_mem_command (const char *args, int from_tty) | |
343 | { | |
344 | if (mem_use_target ()) | |
345 | gdb_printf (_("Using memory regions provided by the target.\n")); | |
346 | else | |
347 | gdb_printf (_("Using user-defined memory regions.\n")); | |
348 | ||
349 | require_target_regions (); | |
350 | ||
351 | if (mem_region_list->empty ()) | |
352 | { | |
353 | gdb_printf (_("There are no memory regions defined.\n")); | |
354 | return; | |
355 | } | |
356 | ||
357 | gdb_printf ("Num "); | |
358 | gdb_printf ("Enb "); | |
359 | gdb_printf ("Low Addr "); | |
360 | if (gdbarch_addr_bit (current_inferior ()->arch ()) > 32) | |
361 | gdb_printf (" "); | |
362 | gdb_printf ("High Addr "); | |
363 | if (gdbarch_addr_bit (current_inferior ()->arch ()) > 32) | |
364 | gdb_printf (" "); | |
365 | gdb_printf ("Attrs "); | |
366 | gdb_printf ("\n"); | |
367 | ||
368 | for (const mem_region &m : *mem_region_list) | |
369 | { | |
370 | const char *tmp; | |
371 | ||
372 | gdb_printf ("%-3d %-3c\t", | |
373 | m.number, | |
374 | m.enabled_p ? 'y' : 'n'); | |
375 | if (gdbarch_addr_bit (current_inferior ()->arch ()) <= 32) | |
376 | tmp = hex_string_custom (m.lo, 8); | |
377 | else | |
378 | tmp = hex_string_custom (m.lo, 16); | |
379 | ||
380 | gdb_printf ("%s ", tmp); | |
381 | ||
382 | if (gdbarch_addr_bit (current_inferior ()->arch ()) <= 32) | |
383 | { | |
384 | if (m.hi == 0) | |
385 | tmp = "0x100000000"; | |
386 | else | |
387 | tmp = hex_string_custom (m.hi, 8); | |
388 | } | |
389 | else | |
390 | { | |
391 | if (m.hi == 0) | |
392 | tmp = "0x10000000000000000"; | |
393 | else | |
394 | tmp = hex_string_custom (m.hi, 16); | |
395 | } | |
396 | ||
397 | gdb_printf ("%s ", tmp); | |
398 | ||
399 | /* Print a token for each attribute. | |
400 | ||
401 | * FIXME: Should we output a comma after each token? It may | |
402 | * make it easier for users to read, but we'd lose the ability | |
403 | * to cut-and-paste the list of attributes when defining a new | |
404 | * region. Perhaps that is not important. | |
405 | * | |
406 | * FIXME: If more attributes are added to GDB, the output may | |
407 | * become cluttered and difficult for users to read. At that | |
408 | * time, we may want to consider printing tokens only if they | |
409 | * are different from the default attribute. */ | |
410 | ||
411 | switch (m.attrib.mode) | |
412 | { | |
413 | case MEM_RW: | |
414 | gdb_printf ("rw "); | |
415 | break; | |
416 | case MEM_RO: | |
417 | gdb_printf ("ro "); | |
418 | break; | |
419 | case MEM_WO: | |
420 | gdb_printf ("wo "); | |
421 | break; | |
422 | case MEM_FLASH: | |
423 | gdb_printf ("flash blocksize 0x%x ", m.attrib.blocksize); | |
424 | break; | |
425 | } | |
426 | ||
427 | switch (m.attrib.width) | |
428 | { | |
429 | case MEM_WIDTH_8: | |
430 | gdb_printf ("8 "); | |
431 | break; | |
432 | case MEM_WIDTH_16: | |
433 | gdb_printf ("16 "); | |
434 | break; | |
435 | case MEM_WIDTH_32: | |
436 | gdb_printf ("32 "); | |
437 | break; | |
438 | case MEM_WIDTH_64: | |
439 | gdb_printf ("64 "); | |
440 | break; | |
441 | case MEM_WIDTH_UNSPECIFIED: | |
442 | break; | |
443 | } | |
444 | ||
445 | #if 0 | |
446 | if (attrib->hwbreak) | |
447 | gdb_printf ("hwbreak"); | |
448 | else | |
449 | gdb_printf ("swbreak"); | |
450 | #endif | |
451 | ||
452 | if (m.attrib.cache) | |
453 | gdb_printf ("cache "); | |
454 | else | |
455 | gdb_printf ("nocache "); | |
456 | ||
457 | #if 0 | |
458 | if (attrib->verify) | |
459 | gdb_printf ("verify "); | |
460 | else | |
461 | gdb_printf ("noverify "); | |
462 | #endif | |
463 | ||
464 | gdb_printf ("\n"); | |
465 | } | |
466 | } | |
467 | \f | |
468 | ||
469 | /* Enable the memory region number NUM. */ | |
470 | ||
471 | static void | |
472 | mem_enable (int num) | |
473 | { | |
474 | for (mem_region &m : *mem_region_list) | |
475 | if (m.number == num) | |
476 | { | |
477 | m.enabled_p = 1; | |
478 | return; | |
479 | } | |
480 | gdb_printf (_("No memory region number %d.\n"), num); | |
481 | } | |
482 | ||
483 | static void | |
484 | enable_mem_command (const char *args, int from_tty) | |
485 | { | |
486 | require_user_regions (from_tty); | |
487 | ||
488 | target_dcache_invalidate (current_program_space->aspace); | |
489 | ||
490 | if (args == NULL || *args == '\0') | |
491 | { /* Enable all mem regions. */ | |
492 | for (mem_region &m : *mem_region_list) | |
493 | m.enabled_p = 1; | |
494 | } | |
495 | else | |
496 | { | |
497 | number_or_range_parser parser (args); | |
498 | while (!parser.finished ()) | |
499 | { | |
500 | int num = parser.get_number (); | |
501 | mem_enable (num); | |
502 | } | |
503 | } | |
504 | } | |
505 | \f | |
506 | ||
507 | /* Disable the memory region number NUM. */ | |
508 | ||
509 | static void | |
510 | mem_disable (int num) | |
511 | { | |
512 | for (mem_region &m : *mem_region_list) | |
513 | if (m.number == num) | |
514 | { | |
515 | m.enabled_p = 0; | |
516 | return; | |
517 | } | |
518 | gdb_printf (_("No memory region number %d.\n"), num); | |
519 | } | |
520 | ||
521 | static void | |
522 | disable_mem_command (const char *args, int from_tty) | |
523 | { | |
524 | require_user_regions (from_tty); | |
525 | ||
526 | target_dcache_invalidate (current_program_space->aspace); | |
527 | ||
528 | if (args == NULL || *args == '\0') | |
529 | { | |
530 | for (mem_region &m : *mem_region_list) | |
531 | m.enabled_p = false; | |
532 | } | |
533 | else | |
534 | { | |
535 | number_or_range_parser parser (args); | |
536 | while (!parser.finished ()) | |
537 | { | |
538 | int num = parser.get_number (); | |
539 | mem_disable (num); | |
540 | } | |
541 | } | |
542 | } | |
543 | ||
544 | /* Delete the memory region number NUM. */ | |
545 | ||
546 | static void | |
547 | mem_delete (int num) | |
548 | { | |
549 | if (!mem_region_list) | |
550 | { | |
551 | gdb_printf (_("No memory region number %d.\n"), num); | |
552 | return; | |
553 | } | |
554 | ||
555 | auto it = std::remove_if (mem_region_list->begin (), mem_region_list->end (), | |
556 | [num] (const mem_region &m) | |
557 | { | |
558 | return m.number == num; | |
559 | }); | |
560 | ||
561 | if (it != mem_region_list->end ()) | |
562 | mem_region_list->erase (it); | |
563 | else | |
564 | gdb_printf (_("No memory region number %d.\n"), num); | |
565 | } | |
566 | ||
567 | static void | |
568 | delete_mem_command (const char *args, int from_tty) | |
569 | { | |
570 | require_user_regions (from_tty); | |
571 | ||
572 | target_dcache_invalidate (current_program_space->aspace); | |
573 | ||
574 | if (args == NULL || *args == '\0') | |
575 | { | |
576 | if (query (_("Delete all memory regions? "))) | |
577 | user_mem_clear (); | |
578 | dont_repeat (); | |
579 | return; | |
580 | } | |
581 | ||
582 | number_or_range_parser parser (args); | |
583 | while (!parser.finished ()) | |
584 | { | |
585 | int num = parser.get_number (); | |
586 | mem_delete (num); | |
587 | } | |
588 | ||
589 | dont_repeat (); | |
590 | } | |
591 | ||
592 | static struct cmd_list_element *mem_set_cmdlist; | |
593 | static struct cmd_list_element *mem_show_cmdlist; | |
594 | ||
595 | INIT_GDB_FILE (mem) | |
596 | { | |
597 | add_com ("mem", class_vars, mem_command, _("\ | |
598 | Define or reset attributes for memory regions.\n\ | |
599 | Usage: mem auto\n\ | |
600 | mem LOW HIGH [MODE WIDTH CACHE],\n\ | |
601 | where MODE may be rw (read/write), ro (read-only) or wo (write-only),\n\ | |
602 | WIDTH may be 8, 16, 32, or 64, and\n\ | |
603 | CACHE may be cache or nocache")); | |
604 | ||
605 | add_cmd ("mem", class_vars, enable_mem_command, _("\ | |
606 | Enable memory region.\n\ | |
607 | Arguments are the IDs of the memory regions to enable.\n\ | |
608 | Usage: enable mem [ID]...\n\ | |
609 | Do \"info mem\" to see current list of IDs."), &enablelist); | |
610 | ||
611 | add_cmd ("mem", class_vars, disable_mem_command, _("\ | |
612 | Disable memory region.\n\ | |
613 | Arguments are the IDs of the memory regions to disable.\n\ | |
614 | Usage: disable mem [ID]...\n\ | |
615 | Do \"info mem\" to see current list of IDs."), &disablelist); | |
616 | ||
617 | add_cmd ("mem", class_vars, delete_mem_command, _("\ | |
618 | Delete memory region.\n\ | |
619 | Arguments are the IDs of the memory regions to delete.\n\ | |
620 | Usage: delete mem [ID]...\n\ | |
621 | Do \"info mem\" to see current list of IDs."), &deletelist); | |
622 | ||
623 | add_info ("mem", info_mem_command, | |
624 | _("Memory region attributes.")); | |
625 | ||
626 | add_setshow_prefix_cmd ("mem", class_vars, | |
627 | _("Memory regions settings."), | |
628 | _("Memory regions settings."), | |
629 | &mem_set_cmdlist, &mem_show_cmdlist, | |
630 | &setlist, &showlist); | |
631 | ||
632 | add_setshow_boolean_cmd ("inaccessible-by-default", no_class, | |
633 | &inaccessible_by_default, _("\ | |
634 | Set handling of unknown memory regions."), _("\ | |
635 | Show handling of unknown memory regions."), _("\ | |
636 | If on, and some memory map is defined, debugger will emit errors on\n\ | |
637 | accesses to memory not defined in the memory map. If off, accesses to all\n\ | |
638 | memory addresses will be allowed."), | |
639 | NULL, | |
640 | show_inaccessible_by_default, | |
641 | &mem_set_cmdlist, | |
642 | &mem_show_cmdlist); | |
643 | } |