1 /* Memory breakpoint operations for the remote server for GDB.
2 Copyright (C) 2002-2019 Free Software Foundation, Inc.
4 Contributed by MontaVista Software.
6 This file is part of GDB.
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.
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.
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/>. */
25 #define MAX_BREAKPOINT_LEN 8
27 /* Helper macro used in loops that append multiple items to a singly-linked
28 list instead of inserting items at the head of the list, as, say, in the
29 breakpoint lists. LISTPP is a pointer to the pointer that is the head of
30 the new list. ITEMP is a pointer to the item to be added to the list.
31 TAILP must be defined to be the same type as ITEMP, and initialized to
34 #define APPEND_TO_LIST(listpp, itemp, tailp) \
37 if ((tailp) == NULL) \
38 *(listpp) = (itemp); \
40 (tailp)->next = (itemp); \
45 /* GDB will never try to install multiple breakpoints at the same
46 address. However, we can see GDB requesting to insert a breakpoint
47 at an address is had already inserted one previously in a few
50 - The RSP documentation on Z packets says that to avoid potential
51 problems with duplicate packets, the operations should be
52 implemented in an idempotent way.
54 - A breakpoint is set at ADDR, an address in a shared library.
55 Then the shared library is unloaded. And then another, unrelated,
56 breakpoint at ADDR is set. There is not breakpoint removal request
57 between the first and the second breakpoint.
59 - When GDB wants to update the target-side breakpoint conditions or
60 commands, it re-inserts the breakpoint, with updated
61 conditions/commands associated.
63 Also, we need to keep track of internal breakpoints too, so we do
64 need to be able to install multiple breakpoints at the same address
67 We keep track of two different, and closely related structures. A
68 raw breakpoint, which manages the low level, close to the metal
69 aspect of a breakpoint. It holds the breakpoint address, and for
70 software breakpoints, a buffer holding a copy of the instructions
71 that would be in memory had not been a breakpoint there (we call
72 that the shadow memory of the breakpoint). We occasionally need to
73 temporarilly uninsert a breakpoint without the client knowing about
74 it (e.g., to step over an internal breakpoint), so we keep an
75 `inserted' state associated with this low level breakpoint
76 structure. There can only be one such object for a given address.
77 Then, we have (a bit higher level) breakpoints. This structure
78 holds a callback to be called whenever a breakpoint is hit, a
79 high-level type, and a link to a low level raw breakpoint. There
80 can be many high-level breakpoints at the same address, and all of
81 them will point to the same raw breakpoint, which is reference
84 /* The low level, physical, raw breakpoint. */
87 struct raw_breakpoint
*next
;
89 /* The low level type of the breakpoint (software breakpoint,
91 enum raw_bkpt_type raw_type
;
93 /* A reference count. Each high level breakpoint referencing this
94 raw breakpoint accounts for one reference. */
97 /* The breakpoint's insertion address. There can only be one raw
98 breakpoint for a given PC. */
101 /* The breakpoint's kind. This is target specific. Most
102 architectures only use one specific instruction for breakpoints, while
103 others may use more than one. E.g., on ARM, we need to use different
104 breakpoint instructions on Thumb, Thumb-2, and ARM code. Likewise for
105 hardware breakpoints -- some architectures (including ARM) need to
106 setup debug registers differently depending on mode. */
109 /* The breakpoint's shadow memory. */
110 unsigned char old_data
[MAX_BREAKPOINT_LEN
];
112 /* Positive if this breakpoint is currently inserted in the
113 inferior. Negative if it was, but we've detected that it's now
114 gone. Zero if not inserted. */
118 /* The type of a breakpoint. */
121 /* A GDB breakpoint, requested with a Z0 packet. */
124 /* A GDB hardware breakpoint, requested with a Z1 packet. */
127 /* A GDB write watchpoint, requested with a Z2 packet. */
130 /* A GDB read watchpoint, requested with a Z3 packet. */
133 /* A GDB access watchpoint, requested with a Z4 packet. */
136 /* A software single-step breakpoint. */
137 single_step_breakpoint
,
139 /* Any other breakpoint type that doesn't require specific
140 treatment goes here. E.g., an event breakpoint. */
144 struct point_cond_list
146 /* Pointer to the agent expression that is the breakpoint's
148 struct agent_expr
*cond
;
150 /* Pointer to the next condition. */
151 struct point_cond_list
*next
;
154 struct point_command_list
156 /* Pointer to the agent expression that is the breakpoint's
158 struct agent_expr
*cmd
;
160 /* Flag that is true if this command should run even while GDB is
164 /* Pointer to the next command. */
165 struct point_command_list
*next
;
168 /* A high level (in gdbserver's perspective) breakpoint. */
171 struct breakpoint
*next
;
173 /* The breakpoint's type. */
176 /* Link to this breakpoint's raw breakpoint. This is always
178 struct raw_breakpoint
*raw
;
181 /* Breakpoint requested by GDB. */
183 struct gdb_breakpoint
185 struct breakpoint base
;
187 /* Pointer to the condition list that should be evaluated on
188 the target or NULL if the breakpoint is unconditional or
189 if GDB doesn't want us to evaluate the conditionals on the
191 struct point_cond_list
*cond_list
;
193 /* Point to the list of commands to run when this is hit. */
194 struct point_command_list
*command_list
;
197 /* Breakpoint used by GDBserver. */
199 struct other_breakpoint
201 struct breakpoint base
;
203 /* Function to call when we hit this breakpoint. If it returns 1,
204 the breakpoint shall be deleted; 0 or if this callback is NULL,
205 it will be left inserted. */
206 int (*handler
) (CORE_ADDR
);
209 /* Breakpoint for single step. */
211 struct single_step_breakpoint
213 struct breakpoint base
;
215 /* Thread the reinsert breakpoint belongs to. */
219 /* Return the breakpoint size from its kind. */
222 bp_size (struct raw_breakpoint
*bp
)
226 the_target
->sw_breakpoint_from_kind (bp
->kind
, &size
);
230 /* Return the breakpoint opcode from its kind. */
232 static const gdb_byte
*
233 bp_opcode (struct raw_breakpoint
*bp
)
237 return the_target
->sw_breakpoint_from_kind (bp
->kind
, &size
);
240 /* See mem-break.h. */
242 enum target_hw_bp_type
243 raw_bkpt_type_to_target_hw_bp_type (enum raw_bkpt_type raw_type
)
247 case raw_bkpt_type_hw
:
249 case raw_bkpt_type_write_wp
:
251 case raw_bkpt_type_read_wp
:
253 case raw_bkpt_type_access_wp
:
256 internal_error (__FILE__
, __LINE__
,
257 "bad raw breakpoint type %d", (int) raw_type
);
261 /* See mem-break.h. */
263 static enum bkpt_type
264 Z_packet_to_bkpt_type (char z_type
)
266 gdb_assert ('0' <= z_type
&& z_type
<= '4');
268 return (enum bkpt_type
) (gdb_breakpoint_Z0
+ (z_type
- '0'));
271 /* See mem-break.h. */
274 Z_packet_to_raw_bkpt_type (char z_type
)
279 return raw_bkpt_type_sw
;
281 return raw_bkpt_type_hw
;
282 case Z_PACKET_WRITE_WP
:
283 return raw_bkpt_type_write_wp
;
284 case Z_PACKET_READ_WP
:
285 return raw_bkpt_type_read_wp
;
286 case Z_PACKET_ACCESS_WP
:
287 return raw_bkpt_type_access_wp
;
289 gdb_assert_not_reached ("unhandled Z packet type.");
293 /* Return true if breakpoint TYPE is a GDB breakpoint. */
296 is_gdb_breakpoint (enum bkpt_type type
)
298 return (type
== gdb_breakpoint_Z0
299 || type
== gdb_breakpoint_Z1
300 || type
== gdb_breakpoint_Z2
301 || type
== gdb_breakpoint_Z3
302 || type
== gdb_breakpoint_Z4
);
306 any_persistent_commands (process_info
*proc
)
308 struct breakpoint
*bp
;
309 struct point_command_list
*cl
;
311 for (bp
= proc
->breakpoints
; bp
!= NULL
; bp
= bp
->next
)
313 if (is_gdb_breakpoint (bp
->type
))
315 struct gdb_breakpoint
*gdb_bp
= (struct gdb_breakpoint
*) bp
;
317 for (cl
= gdb_bp
->command_list
; cl
!= NULL
; cl
= cl
->next
)
326 /* Find low-level breakpoint of type TYPE at address ADDR that is not
327 insert-disabled. Returns NULL if not found. */
329 static struct raw_breakpoint
*
330 find_enabled_raw_code_breakpoint_at (CORE_ADDR addr
, enum raw_bkpt_type type
)
332 struct process_info
*proc
= current_process ();
333 struct raw_breakpoint
*bp
;
335 for (bp
= proc
->raw_breakpoints
; bp
!= NULL
; bp
= bp
->next
)
337 && bp
->raw_type
== type
338 && bp
->inserted
>= 0)
344 /* Find low-level breakpoint of type TYPE at address ADDR. Returns
345 NULL if not found. */
347 static struct raw_breakpoint
*
348 find_raw_breakpoint_at (CORE_ADDR addr
, enum raw_bkpt_type type
, int kind
)
350 struct process_info
*proc
= current_process ();
351 struct raw_breakpoint
*bp
;
353 for (bp
= proc
->raw_breakpoints
; bp
!= NULL
; bp
= bp
->next
)
354 if (bp
->pc
== addr
&& bp
->raw_type
== type
&& bp
->kind
== kind
)
360 /* See mem-break.h. */
363 insert_memory_breakpoint (struct raw_breakpoint
*bp
)
365 unsigned char buf
[MAX_BREAKPOINT_LEN
];
368 /* Note that there can be fast tracepoint jumps installed in the
369 same memory range, so to get at the original memory, we need to
370 use read_inferior_memory, which masks those out. */
371 err
= read_inferior_memory (bp
->pc
, buf
, bp_size (bp
));
375 debug_printf ("Failed to read shadow memory of"
376 " breakpoint at 0x%s (%s).\n",
377 paddress (bp
->pc
), strerror (err
));
381 memcpy (bp
->old_data
, buf
, bp_size (bp
));
383 err
= (*the_target
->write_memory
) (bp
->pc
, bp_opcode (bp
),
388 debug_printf ("Failed to insert breakpoint at 0x%s (%s).\n",
389 paddress (bp
->pc
), strerror (err
));
392 return err
!= 0 ? -1 : 0;
395 /* See mem-break.h */
398 remove_memory_breakpoint (struct raw_breakpoint
*bp
)
400 unsigned char buf
[MAX_BREAKPOINT_LEN
];
403 /* Since there can be trap breakpoints inserted in the same address
404 range, we use `write_inferior_memory', which takes care of
405 layering breakpoints on top of fast tracepoints, and on top of
406 the buffer we pass it. This works because the caller has already
407 either unlinked the breakpoint or marked it uninserted. Also
408 note that we need to pass the current shadow contents, because
409 write_inferior_memory updates any shadow memory with what we pass
410 here, and we want that to be a nop. */
411 memcpy (buf
, bp
->old_data
, bp_size (bp
));
412 err
= write_inferior_memory (bp
->pc
, buf
, bp_size (bp
));
416 debug_printf ("Failed to uninsert raw breakpoint "
417 "at 0x%s (%s) while deleting it.\n",
418 paddress (bp
->pc
), strerror (err
));
420 return err
!= 0 ? -1 : 0;
423 /* Set a RAW breakpoint of type TYPE and kind KIND at WHERE. On
424 success, a pointer to the new breakpoint is returned. On failure,
425 returns NULL and writes the error code to *ERR. */
427 static struct raw_breakpoint
*
428 set_raw_breakpoint_at (enum raw_bkpt_type type
, CORE_ADDR where
, int kind
,
431 struct process_info
*proc
= current_process ();
432 struct raw_breakpoint
*bp
;
434 if (type
== raw_bkpt_type_sw
|| type
== raw_bkpt_type_hw
)
436 bp
= find_enabled_raw_code_breakpoint_at (where
, type
);
437 if (bp
!= NULL
&& bp
->kind
!= kind
)
439 /* A different kind than previously seen. The previous
440 breakpoint must be gone then. */
442 debug_printf ("Inconsistent breakpoint kind? Was %d, now %d.\n",
449 bp
= find_raw_breakpoint_at (where
, type
, kind
);
451 gdb::unique_xmalloc_ptr
<struct raw_breakpoint
> bp_holder
;
454 bp_holder
.reset (XCNEW (struct raw_breakpoint
));
455 bp
= bp_holder
.get ();
463 *err
= the_target
->insert_point (bp
->raw_type
, bp
->pc
, bp
->kind
, bp
);
467 debug_printf ("Failed to insert breakpoint at 0x%s (%d).\n",
468 paddress (where
), *err
);
476 /* If the breakpoint was allocated above, we know we want to keep it
478 bp_holder
.release ();
480 /* Link the breakpoint in, if this is the first reference. */
481 if (++bp
->refcount
== 1)
483 bp
->next
= proc
->raw_breakpoints
;
484 proc
->raw_breakpoints
= bp
;
489 /* Notice that breakpoint traps are always installed on top of fast
490 tracepoint jumps. This is even if the fast tracepoint is installed
491 at a later time compared to when the breakpoint was installed.
492 This means that a stopping breakpoint or tracepoint has higher
493 "priority". In turn, this allows having fast and slow tracepoints
494 (and breakpoints) at the same address behave correctly. */
497 /* A fast tracepoint jump. */
499 struct fast_tracepoint_jump
501 struct fast_tracepoint_jump
*next
;
503 /* A reference count. GDB can install more than one fast tracepoint
504 at the same address (each with its own action list, for
508 /* The fast tracepoint's insertion address. There can only be one
509 of these for a given PC. */
512 /* Non-zero if this fast tracepoint jump is currently inserted in
516 /* The length of the jump instruction. */
519 /* A poor-man's flexible array member, holding both the jump
520 instruction to insert, and a copy of the instruction that would
521 be in memory had not been a jump there (the shadow memory of the
523 unsigned char insn_and_shadow
[0];
526 /* Fast tracepoint FP's jump instruction to insert. */
527 #define fast_tracepoint_jump_insn(fp) \
528 ((fp)->insn_and_shadow + 0)
530 /* The shadow memory of fast tracepoint jump FP. */
531 #define fast_tracepoint_jump_shadow(fp) \
532 ((fp)->insn_and_shadow + (fp)->length)
535 /* Return the fast tracepoint jump set at WHERE. */
537 static struct fast_tracepoint_jump
*
538 find_fast_tracepoint_jump_at (CORE_ADDR where
)
540 struct process_info
*proc
= current_process ();
541 struct fast_tracepoint_jump
*jp
;
543 for (jp
= proc
->fast_tracepoint_jumps
; jp
!= NULL
; jp
= jp
->next
)
551 fast_tracepoint_jump_here (CORE_ADDR where
)
553 struct fast_tracepoint_jump
*jp
= find_fast_tracepoint_jump_at (where
);
559 delete_fast_tracepoint_jump (struct fast_tracepoint_jump
*todel
)
561 struct fast_tracepoint_jump
*bp
, **bp_link
;
563 struct process_info
*proc
= current_process ();
565 bp
= proc
->fast_tracepoint_jumps
;
566 bp_link
= &proc
->fast_tracepoint_jumps
;
572 if (--bp
->refcount
== 0)
574 struct fast_tracepoint_jump
*prev_bp_link
= *bp_link
;
580 /* Since there can be breakpoints inserted in the same
581 address range, we use `write_inferior_memory', which
582 takes care of layering breakpoints on top of fast
583 tracepoints, and on top of the buffer we pass it.
584 This works because we've already unlinked the fast
585 tracepoint jump above. Also note that we need to
586 pass the current shadow contents, because
587 write_inferior_memory updates any shadow memory with
588 what we pass here, and we want that to be a nop. */
589 buf
= (unsigned char *) alloca (bp
->length
);
590 memcpy (buf
, fast_tracepoint_jump_shadow (bp
), bp
->length
);
591 ret
= write_inferior_memory (bp
->pc
, buf
, bp
->length
);
594 /* Something went wrong, relink the jump. */
595 *bp_link
= prev_bp_link
;
598 debug_printf ("Failed to uninsert fast tracepoint jump "
599 "at 0x%s (%s) while deleting it.\n",
600 paddress (bp
->pc
), strerror (ret
));
616 warning ("Could not find fast tracepoint jump in list.");
621 inc_ref_fast_tracepoint_jump (struct fast_tracepoint_jump
*jp
)
626 struct fast_tracepoint_jump
*
627 set_fast_tracepoint_jump (CORE_ADDR where
,
628 unsigned char *insn
, ULONGEST length
)
630 struct process_info
*proc
= current_process ();
631 struct fast_tracepoint_jump
*jp
;
635 /* We refcount fast tracepoint jumps. Check if we already know
636 about a jump at this address. */
637 jp
= find_fast_tracepoint_jump_at (where
);
644 /* We don't, so create a new object. Double the length, because the
645 flexible array member holds both the jump insn, and the
647 jp
= (struct fast_tracepoint_jump
*) xcalloc (1, sizeof (*jp
) + (length
* 2));
650 memcpy (fast_tracepoint_jump_insn (jp
), insn
, length
);
652 buf
= (unsigned char *) alloca (length
);
654 /* Note that there can be trap breakpoints inserted in the same
655 address range. To access the original memory contents, we use
656 `read_inferior_memory', which masks out breakpoints. */
657 err
= read_inferior_memory (where
, buf
, length
);
661 debug_printf ("Failed to read shadow memory of"
662 " fast tracepoint at 0x%s (%s).\n",
663 paddress (where
), strerror (err
));
667 memcpy (fast_tracepoint_jump_shadow (jp
), buf
, length
);
669 /* Link the jump in. */
671 jp
->next
= proc
->fast_tracepoint_jumps
;
672 proc
->fast_tracepoint_jumps
= jp
;
674 /* Since there can be trap breakpoints inserted in the same address
675 range, we use use `write_inferior_memory', which takes care of
676 layering breakpoints on top of fast tracepoints, on top of the
677 buffer we pass it. This works because we've already linked in
678 the fast tracepoint jump above. Also note that we need to pass
679 the current shadow contents, because write_inferior_memory
680 updates any shadow memory with what we pass here, and we want
682 err
= write_inferior_memory (where
, buf
, length
);
686 debug_printf ("Failed to insert fast tracepoint jump at 0x%s (%s).\n",
687 paddress (where
), strerror (err
));
690 proc
->fast_tracepoint_jumps
= jp
->next
;
700 uninsert_fast_tracepoint_jumps_at (CORE_ADDR pc
)
702 struct fast_tracepoint_jump
*jp
;
705 jp
= find_fast_tracepoint_jump_at (pc
);
708 /* This can happen when we remove all breakpoints while handling
711 debug_printf ("Could not find fast tracepoint jump at 0x%s "
712 "in list (uninserting).\n",
723 /* Since there can be trap breakpoints inserted in the same
724 address range, we use use `write_inferior_memory', which
725 takes care of layering breakpoints on top of fast
726 tracepoints, and on top of the buffer we pass it. This works
727 because we've already marked the fast tracepoint fast
728 tracepoint jump uninserted above. Also note that we need to
729 pass the current shadow contents, because
730 write_inferior_memory updates any shadow memory with what we
731 pass here, and we want that to be a nop. */
732 buf
= (unsigned char *) alloca (jp
->length
);
733 memcpy (buf
, fast_tracepoint_jump_shadow (jp
), jp
->length
);
734 err
= write_inferior_memory (jp
->pc
, buf
, jp
->length
);
740 debug_printf ("Failed to uninsert fast tracepoint jump at"
742 paddress (pc
), strerror (err
));
748 reinsert_fast_tracepoint_jumps_at (CORE_ADDR where
)
750 struct fast_tracepoint_jump
*jp
;
754 jp
= find_fast_tracepoint_jump_at (where
);
757 /* This can happen when we remove breakpoints when a tracepoint
758 hit causes a tracing stop, while handling a step-over. */
760 debug_printf ("Could not find fast tracepoint jump at 0x%s "
761 "in list (reinserting).\n",
767 error ("Jump already inserted at reinsert time.");
771 /* Since there can be trap breakpoints inserted in the same address
772 range, we use `write_inferior_memory', which takes care of
773 layering breakpoints on top of fast tracepoints, and on top of
774 the buffer we pass it. This works because we've already marked
775 the fast tracepoint jump inserted above. Also note that we need
776 to pass the current shadow contents, because
777 write_inferior_memory updates any shadow memory with what we pass
778 here, and we want that to be a nop. */
779 buf
= (unsigned char *) alloca (jp
->length
);
780 memcpy (buf
, fast_tracepoint_jump_shadow (jp
), jp
->length
);
781 err
= write_inferior_memory (where
, buf
, jp
->length
);
787 debug_printf ("Failed to reinsert fast tracepoint jump at"
789 paddress (where
), strerror (err
));
793 /* Set a high-level breakpoint of type TYPE, with low level type
794 RAW_TYPE and kind KIND, at WHERE. On success, a pointer to the new
795 breakpoint is returned. On failure, returns NULL and writes the
796 error code to *ERR. HANDLER is called when the breakpoint is hit.
797 HANDLER should return 1 if the breakpoint should be deleted, 0
800 static struct breakpoint
*
801 set_breakpoint (enum bkpt_type type
, enum raw_bkpt_type raw_type
,
802 CORE_ADDR where
, int kind
,
803 int (*handler
) (CORE_ADDR
), int *err
)
805 struct process_info
*proc
= current_process ();
806 struct breakpoint
*bp
;
807 struct raw_breakpoint
*raw
;
809 raw
= set_raw_breakpoint_at (raw_type
, where
, kind
, err
);
817 if (is_gdb_breakpoint (type
))
819 struct gdb_breakpoint
*gdb_bp
= XCNEW (struct gdb_breakpoint
);
821 bp
= (struct breakpoint
*) gdb_bp
;
822 gdb_assert (handler
== NULL
);
824 else if (type
== other_breakpoint
)
826 struct other_breakpoint
*other_bp
= XCNEW (struct other_breakpoint
);
828 other_bp
->handler
= handler
;
829 bp
= (struct breakpoint
*) other_bp
;
831 else if (type
== single_step_breakpoint
)
833 struct single_step_breakpoint
*ss_bp
834 = XCNEW (struct single_step_breakpoint
);
836 bp
= (struct breakpoint
*) ss_bp
;
839 gdb_assert_not_reached ("unhandled breakpoint type");
844 bp
->next
= proc
->breakpoints
;
845 proc
->breakpoints
= bp
;
850 /* Set breakpoint of TYPE on address WHERE with handler HANDLER. */
852 static struct breakpoint
*
853 set_breakpoint_type_at (enum bkpt_type type
, CORE_ADDR where
,
854 int (*handler
) (CORE_ADDR
))
857 CORE_ADDR placed_address
= where
;
858 int breakpoint_kind
= target_breakpoint_kind_from_pc (&placed_address
);
860 return set_breakpoint (type
, raw_bkpt_type_sw
,
861 placed_address
, breakpoint_kind
, handler
,
865 /* See mem-break.h */
868 set_breakpoint_at (CORE_ADDR where
, int (*handler
) (CORE_ADDR
))
870 return set_breakpoint_type_at (other_breakpoint
, where
, handler
);
875 delete_raw_breakpoint (struct process_info
*proc
, struct raw_breakpoint
*todel
)
877 struct raw_breakpoint
*bp
, **bp_link
;
880 bp
= proc
->raw_breakpoints
;
881 bp_link
= &proc
->raw_breakpoints
;
887 if (bp
->inserted
> 0)
889 struct raw_breakpoint
*prev_bp_link
= *bp_link
;
893 ret
= the_target
->remove_point (bp
->raw_type
, bp
->pc
, bp
->kind
,
897 /* Something went wrong, relink the breakpoint. */
898 *bp_link
= prev_bp_link
;
901 debug_printf ("Failed to uninsert raw breakpoint "
902 "at 0x%s while deleting it.\n",
920 warning ("Could not find raw breakpoint in list.");
925 release_breakpoint (struct process_info
*proc
, struct breakpoint
*bp
)
930 newrefcount
= bp
->raw
->refcount
- 1;
931 if (newrefcount
== 0)
933 ret
= delete_raw_breakpoint (proc
, bp
->raw
);
938 bp
->raw
->refcount
= newrefcount
;
946 delete_breakpoint_1 (struct process_info
*proc
, struct breakpoint
*todel
)
948 struct breakpoint
*bp
, **bp_link
;
951 bp
= proc
->breakpoints
;
952 bp_link
= &proc
->breakpoints
;
960 err
= release_breakpoint (proc
, bp
);
974 warning ("Could not find breakpoint in list.");
979 delete_breakpoint (struct breakpoint
*todel
)
981 struct process_info
*proc
= current_process ();
982 return delete_breakpoint_1 (proc
, todel
);
985 /* Locate a GDB breakpoint of type Z_TYPE and kind KIND placed at
986 address ADDR and return a pointer to its structure. If KIND is -1,
987 the breakpoint's kind is ignored. */
989 static struct gdb_breakpoint
*
990 find_gdb_breakpoint (char z_type
, CORE_ADDR addr
, int kind
)
992 struct process_info
*proc
= current_process ();
993 struct breakpoint
*bp
;
994 enum bkpt_type type
= Z_packet_to_bkpt_type (z_type
);
996 for (bp
= proc
->breakpoints
; bp
!= NULL
; bp
= bp
->next
)
997 if (bp
->type
== type
&& bp
->raw
->pc
== addr
998 && (kind
== -1 || bp
->raw
->kind
== kind
))
999 return (struct gdb_breakpoint
*) bp
;
1005 z_type_supported (char z_type
)
1007 return (z_type
>= '0' && z_type
<= '4'
1008 && the_target
->supports_z_point_type
!= NULL
1009 && the_target
->supports_z_point_type (z_type
));
1012 /* Create a new GDB breakpoint of type Z_TYPE at ADDR with kind KIND.
1013 Returns a pointer to the newly created breakpoint on success. On
1014 failure returns NULL and sets *ERR to either -1 for error, or 1 if
1015 Z_TYPE breakpoints are not supported on this target. */
1017 static struct gdb_breakpoint
*
1018 set_gdb_breakpoint_1 (char z_type
, CORE_ADDR addr
, int kind
, int *err
)
1020 struct gdb_breakpoint
*bp
;
1021 enum bkpt_type type
;
1022 enum raw_bkpt_type raw_type
;
1024 /* If we see GDB inserting a second code breakpoint at the same
1025 address, then either: GDB is updating the breakpoint's conditions
1026 or commands; or, the first breakpoint must have disappeared due
1027 to a shared library unload. On targets where the shared
1028 libraries are handled by userspace, like SVR4, for example,
1029 GDBserver can't tell if a library was loaded or unloaded. Since
1030 we refcount raw breakpoints, we must be careful to make sure GDB
1031 breakpoints never contribute more than one reference. if we
1032 didn't do this, in case the previous breakpoint is gone due to a
1033 shared library unload, we'd just increase the refcount of the
1034 previous breakpoint at this address, but the trap was not planted
1035 in the inferior anymore, thus the breakpoint would never be hit.
1036 Note this must be careful to not create a window where
1037 breakpoints are removed from the target, for non-stop, in case
1038 the target can poke at memory while the program is running. */
1039 if (z_type
== Z_PACKET_SW_BP
1040 || z_type
== Z_PACKET_HW_BP
)
1042 bp
= find_gdb_breakpoint (z_type
, addr
, -1);
1046 if (bp
->base
.raw
->kind
!= kind
)
1048 /* A different kind than previously seen. The previous
1049 breakpoint must be gone then. */
1050 bp
->base
.raw
->inserted
= -1;
1051 delete_breakpoint ((struct breakpoint
*) bp
);
1054 else if (z_type
== Z_PACKET_SW_BP
)
1056 /* Check if the breakpoint is actually gone from the
1057 target, due to an solib unload, for example. Might
1058 as well validate _all_ breakpoints. */
1059 validate_breakpoints ();
1061 /* Breakpoints that don't pass validation are
1063 bp
= find_gdb_breakpoint (z_type
, addr
, -1);
1069 /* Data breakpoints for the same address but different kind are
1070 expected. GDB doesn't merge these. The backend gets to do
1071 that if it wants/can. */
1072 bp
= find_gdb_breakpoint (z_type
, addr
, kind
);
1077 /* We already know about this breakpoint, there's nothing else
1078 to do - GDB's reference is already accounted for. Note that
1079 whether the breakpoint inserted is left as is - we may be
1080 stepping over it, for example, in which case we don't want to
1081 force-reinsert it. */
1085 raw_type
= Z_packet_to_raw_bkpt_type (z_type
);
1086 type
= Z_packet_to_bkpt_type (z_type
);
1087 return (struct gdb_breakpoint
*) set_breakpoint (type
, raw_type
, addr
,
1092 check_gdb_bp_preconditions (char z_type
, int *err
)
1094 /* As software/memory breakpoints work by poking at memory, we need
1095 to prepare to access memory. If that operation fails, we need to
1096 return error. Seeing an error, if this is the first breakpoint
1097 of that type that GDB tries to insert, GDB would then assume the
1098 breakpoint type is supported, but it may actually not be. So we
1099 need to check whether the type is supported at all before
1100 preparing to access memory. */
1101 if (!z_type_supported (z_type
))
1110 /* See mem-break.h. This is a wrapper for set_gdb_breakpoint_1 that
1111 knows to prepare to access memory for Z0 breakpoints. */
1113 struct gdb_breakpoint
*
1114 set_gdb_breakpoint (char z_type
, CORE_ADDR addr
, int kind
, int *err
)
1116 struct gdb_breakpoint
*bp
;
1118 if (!check_gdb_bp_preconditions (z_type
, err
))
1121 /* If inserting a software/memory breakpoint, need to prepare to
1123 if (z_type
== Z_PACKET_SW_BP
)
1125 if (prepare_to_access_memory () != 0)
1132 bp
= set_gdb_breakpoint_1 (z_type
, addr
, kind
, err
);
1134 if (z_type
== Z_PACKET_SW_BP
)
1135 done_accessing_memory ();
1140 /* Delete a GDB breakpoint of type Z_TYPE and kind KIND previously
1141 inserted at ADDR with set_gdb_breakpoint_at. Returns 0 on success,
1142 -1 on error, and 1 if Z_TYPE breakpoints are not supported on this
1146 delete_gdb_breakpoint_1 (char z_type
, CORE_ADDR addr
, int kind
)
1148 struct gdb_breakpoint
*bp
;
1151 bp
= find_gdb_breakpoint (z_type
, addr
, kind
);
1155 /* Before deleting the breakpoint, make sure to free its condition
1156 and command lists. */
1157 clear_breakpoint_conditions_and_commands (bp
);
1158 err
= delete_breakpoint ((struct breakpoint
*) bp
);
1165 /* See mem-break.h. This is a wrapper for delete_gdb_breakpoint that
1166 knows to prepare to access memory for Z0 breakpoints. */
1169 delete_gdb_breakpoint (char z_type
, CORE_ADDR addr
, int kind
)
1173 if (!check_gdb_bp_preconditions (z_type
, &ret
))
1176 /* If inserting a software/memory breakpoint, need to prepare to
1178 if (z_type
== Z_PACKET_SW_BP
)
1182 err
= prepare_to_access_memory ();
1187 ret
= delete_gdb_breakpoint_1 (z_type
, addr
, kind
);
1189 if (z_type
== Z_PACKET_SW_BP
)
1190 done_accessing_memory ();
1195 /* Clear all conditions associated with a breakpoint. */
1198 clear_breakpoint_conditions (struct gdb_breakpoint
*bp
)
1200 struct point_cond_list
*cond
;
1202 if (bp
->cond_list
== NULL
)
1205 cond
= bp
->cond_list
;
1207 while (cond
!= NULL
)
1209 struct point_cond_list
*cond_next
;
1211 cond_next
= cond
->next
;
1212 gdb_free_agent_expr (cond
->cond
);
1217 bp
->cond_list
= NULL
;
1220 /* Clear all commands associated with a breakpoint. */
1223 clear_breakpoint_commands (struct gdb_breakpoint
*bp
)
1225 struct point_command_list
*cmd
;
1227 if (bp
->command_list
== NULL
)
1230 cmd
= bp
->command_list
;
1234 struct point_command_list
*cmd_next
;
1236 cmd_next
= cmd
->next
;
1237 gdb_free_agent_expr (cmd
->cmd
);
1242 bp
->command_list
= NULL
;
1246 clear_breakpoint_conditions_and_commands (struct gdb_breakpoint
*bp
)
1248 clear_breakpoint_conditions (bp
);
1249 clear_breakpoint_commands (bp
);
1252 /* Add condition CONDITION to GDBserver's breakpoint BP. */
1255 add_condition_to_breakpoint (struct gdb_breakpoint
*bp
,
1256 struct agent_expr
*condition
)
1258 struct point_cond_list
*new_cond
;
1260 /* Create new condition. */
1261 new_cond
= XCNEW (struct point_cond_list
);
1262 new_cond
->cond
= condition
;
1264 /* Add condition to the list. */
1265 new_cond
->next
= bp
->cond_list
;
1266 bp
->cond_list
= new_cond
;
1269 /* Add a target-side condition CONDITION to a breakpoint. */
1272 add_breakpoint_condition (struct gdb_breakpoint
*bp
, const char **condition
)
1274 const char *actparm
= *condition
;
1275 struct agent_expr
*cond
;
1277 if (condition
== NULL
)
1283 cond
= gdb_parse_agent_expr (&actparm
);
1287 warning ("Condition evaluation failed. Assuming unconditional.");
1291 add_condition_to_breakpoint (bp
, cond
);
1293 *condition
= actparm
;
1298 /* Evaluate condition (if any) at breakpoint BP. Return 1 if
1299 true and 0 otherwise. */
1302 gdb_condition_true_at_breakpoint_z_type (char z_type
, CORE_ADDR addr
)
1304 /* Fetch registers for the current inferior. */
1305 struct gdb_breakpoint
*bp
= find_gdb_breakpoint (z_type
, addr
, -1);
1307 struct point_cond_list
*cl
;
1309 struct eval_agent_expr_context ctx
;
1314 /* Check if the breakpoint is unconditional. If it is,
1315 the condition always evaluates to TRUE. */
1316 if (bp
->cond_list
== NULL
)
1319 ctx
.regcache
= get_thread_regcache (current_thread
, 1);
1323 /* Evaluate each condition in the breakpoint's list of conditions.
1324 Return true if any of the conditions evaluates to TRUE.
1326 If we failed to evaluate the expression, TRUE is returned. This
1327 forces GDB to reevaluate the conditions. */
1328 for (cl
= bp
->cond_list
;
1329 cl
&& !value
&& !err
; cl
= cl
->next
)
1331 /* Evaluate the condition. */
1332 err
= gdb_eval_agent_expr (&ctx
, cl
->cond
, &value
);
1338 return (value
!= 0);
1342 gdb_condition_true_at_breakpoint (CORE_ADDR where
)
1344 /* Only check code (software or hardware) breakpoints. */
1345 return (gdb_condition_true_at_breakpoint_z_type (Z_PACKET_SW_BP
, where
)
1346 || gdb_condition_true_at_breakpoint_z_type (Z_PACKET_HW_BP
, where
));
1349 /* Add commands COMMANDS to GDBserver's breakpoint BP. */
1352 add_commands_to_breakpoint (struct gdb_breakpoint
*bp
,
1353 struct agent_expr
*commands
, int persist
)
1355 struct point_command_list
*new_cmd
;
1357 /* Create new command. */
1358 new_cmd
= XCNEW (struct point_command_list
);
1359 new_cmd
->cmd
= commands
;
1360 new_cmd
->persistence
= persist
;
1362 /* Add commands to the list. */
1363 new_cmd
->next
= bp
->command_list
;
1364 bp
->command_list
= new_cmd
;
1367 /* Add a target-side command COMMAND to the breakpoint at ADDR. */
1370 add_breakpoint_commands (struct gdb_breakpoint
*bp
, const char **command
,
1373 const char *actparm
= *command
;
1374 struct agent_expr
*cmd
;
1376 if (command
== NULL
)
1382 cmd
= gdb_parse_agent_expr (&actparm
);
1386 warning ("Command evaluation failed. Disabling.");
1390 add_commands_to_breakpoint (bp
, cmd
, persist
);
1397 /* Return true if there are no commands to run at this location,
1398 which likely means we want to report back to GDB. */
1401 gdb_no_commands_at_breakpoint_z_type (char z_type
, CORE_ADDR addr
)
1403 struct gdb_breakpoint
*bp
= find_gdb_breakpoint (z_type
, addr
, -1);
1409 debug_printf ("at 0x%s, type Z%c, bp command_list is 0x%s\n",
1410 paddress (addr
), z_type
,
1411 phex_nz ((uintptr_t) bp
->command_list
, 0));
1412 return (bp
->command_list
== NULL
);
1415 /* Return true if there are no commands to run at this location,
1416 which likely means we want to report back to GDB. */
1419 gdb_no_commands_at_breakpoint (CORE_ADDR where
)
1421 /* Only check code (software or hardware) breakpoints. */
1422 return (gdb_no_commands_at_breakpoint_z_type (Z_PACKET_SW_BP
, where
)
1423 && gdb_no_commands_at_breakpoint_z_type (Z_PACKET_HW_BP
, where
));
1426 /* Run a breakpoint's commands. Returns 0 if there was a problem
1427 running any command, 1 otherwise. */
1430 run_breakpoint_commands_z_type (char z_type
, CORE_ADDR addr
)
1432 /* Fetch registers for the current inferior. */
1433 struct gdb_breakpoint
*bp
= find_gdb_breakpoint (z_type
, addr
, -1);
1435 struct point_command_list
*cl
;
1437 struct eval_agent_expr_context ctx
;
1442 ctx
.regcache
= get_thread_regcache (current_thread
, 1);
1446 for (cl
= bp
->command_list
;
1447 cl
&& !value
&& !err
; cl
= cl
->next
)
1449 /* Run the command. */
1450 err
= gdb_eval_agent_expr (&ctx
, cl
->cmd
, &value
);
1452 /* If one command has a problem, stop digging the hole deeper. */
1461 run_breakpoint_commands (CORE_ADDR where
)
1463 /* Only check code (software or hardware) breakpoints. If one
1464 command has a problem, stop digging the hole deeper. */
1465 if (run_breakpoint_commands_z_type (Z_PACKET_SW_BP
, where
))
1466 run_breakpoint_commands_z_type (Z_PACKET_HW_BP
, where
);
1469 /* See mem-break.h. */
1472 gdb_breakpoint_here (CORE_ADDR where
)
1474 /* Only check code (software or hardware) breakpoints. */
1475 return (find_gdb_breakpoint (Z_PACKET_SW_BP
, where
, -1) != NULL
1476 || find_gdb_breakpoint (Z_PACKET_HW_BP
, where
, -1) != NULL
);
1480 set_single_step_breakpoint (CORE_ADDR stop_at
, ptid_t ptid
)
1482 struct single_step_breakpoint
*bp
;
1484 gdb_assert (current_ptid
.pid () == ptid
.pid ());
1486 bp
= (struct single_step_breakpoint
*) set_breakpoint_type_at (single_step_breakpoint
,
1492 delete_single_step_breakpoints (struct thread_info
*thread
)
1494 struct process_info
*proc
= get_thread_process (thread
);
1495 struct breakpoint
*bp
, **bp_link
;
1497 bp
= proc
->breakpoints
;
1498 bp_link
= &proc
->breakpoints
;
1502 if (bp
->type
== single_step_breakpoint
1503 && ((struct single_step_breakpoint
*) bp
)->ptid
== ptid_of (thread
))
1505 struct thread_info
*saved_thread
= current_thread
;
1507 current_thread
= thread
;
1508 *bp_link
= bp
->next
;
1509 release_breakpoint (proc
, bp
);
1511 current_thread
= saved_thread
;
1515 bp_link
= &bp
->next
;
1522 uninsert_raw_breakpoint (struct raw_breakpoint
*bp
)
1524 if (bp
->inserted
< 0)
1527 debug_printf ("Breakpoint at %s is marked insert-disabled.\n",
1530 else if (bp
->inserted
> 0)
1536 err
= the_target
->remove_point (bp
->raw_type
, bp
->pc
, bp
->kind
, bp
);
1542 debug_printf ("Failed to uninsert raw breakpoint at 0x%s.\n",
1549 uninsert_breakpoints_at (CORE_ADDR pc
)
1551 struct process_info
*proc
= current_process ();
1552 struct raw_breakpoint
*bp
;
1555 for (bp
= proc
->raw_breakpoints
; bp
!= NULL
; bp
= bp
->next
)
1556 if ((bp
->raw_type
== raw_bkpt_type_sw
1557 || bp
->raw_type
== raw_bkpt_type_hw
)
1563 uninsert_raw_breakpoint (bp
);
1568 /* This can happen when we remove all breakpoints while handling
1571 debug_printf ("Could not find breakpoint at 0x%s "
1572 "in list (uninserting).\n",
1578 uninsert_all_breakpoints (void)
1580 struct process_info
*proc
= current_process ();
1581 struct raw_breakpoint
*bp
;
1583 for (bp
= proc
->raw_breakpoints
; bp
!= NULL
; bp
= bp
->next
)
1584 if ((bp
->raw_type
== raw_bkpt_type_sw
1585 || bp
->raw_type
== raw_bkpt_type_hw
)
1587 uninsert_raw_breakpoint (bp
);
1591 uninsert_single_step_breakpoints (struct thread_info
*thread
)
1593 struct process_info
*proc
= get_thread_process (thread
);
1594 struct breakpoint
*bp
;
1596 for (bp
= proc
->breakpoints
; bp
!= NULL
; bp
= bp
->next
)
1598 if (bp
->type
== single_step_breakpoint
1599 && ((struct single_step_breakpoint
*) bp
)->ptid
== ptid_of (thread
))
1601 gdb_assert (bp
->raw
->inserted
> 0);
1603 /* Only uninsert the raw breakpoint if it only belongs to a
1604 reinsert breakpoint. */
1605 if (bp
->raw
->refcount
== 1)
1607 struct thread_info
*saved_thread
= current_thread
;
1609 current_thread
= thread
;
1610 uninsert_raw_breakpoint (bp
->raw
);
1611 current_thread
= saved_thread
;
1618 reinsert_raw_breakpoint (struct raw_breakpoint
*bp
)
1625 err
= the_target
->insert_point (bp
->raw_type
, bp
->pc
, bp
->kind
, bp
);
1628 else if (debug_threads
)
1629 debug_printf ("Failed to reinsert breakpoint at 0x%s (%d).\n",
1630 paddress (bp
->pc
), err
);
1634 reinsert_breakpoints_at (CORE_ADDR pc
)
1636 struct process_info
*proc
= current_process ();
1637 struct raw_breakpoint
*bp
;
1640 for (bp
= proc
->raw_breakpoints
; bp
!= NULL
; bp
= bp
->next
)
1641 if ((bp
->raw_type
== raw_bkpt_type_sw
1642 || bp
->raw_type
== raw_bkpt_type_hw
)
1647 reinsert_raw_breakpoint (bp
);
1652 /* This can happen when we remove all breakpoints while handling
1655 debug_printf ("Could not find raw breakpoint at 0x%s "
1656 "in list (reinserting).\n",
1662 has_single_step_breakpoints (struct thread_info
*thread
)
1664 struct process_info
*proc
= get_thread_process (thread
);
1665 struct breakpoint
*bp
, **bp_link
;
1667 bp
= proc
->breakpoints
;
1668 bp_link
= &proc
->breakpoints
;
1672 if (bp
->type
== single_step_breakpoint
1673 && ((struct single_step_breakpoint
*) bp
)->ptid
== ptid_of (thread
))
1677 bp_link
= &bp
->next
;
1686 reinsert_all_breakpoints (void)
1688 struct process_info
*proc
= current_process ();
1689 struct raw_breakpoint
*bp
;
1691 for (bp
= proc
->raw_breakpoints
; bp
!= NULL
; bp
= bp
->next
)
1692 if ((bp
->raw_type
== raw_bkpt_type_sw
1693 || bp
->raw_type
== raw_bkpt_type_hw
)
1695 reinsert_raw_breakpoint (bp
);
1699 reinsert_single_step_breakpoints (struct thread_info
*thread
)
1701 struct process_info
*proc
= get_thread_process (thread
);
1702 struct breakpoint
*bp
;
1704 for (bp
= proc
->breakpoints
; bp
!= NULL
; bp
= bp
->next
)
1706 if (bp
->type
== single_step_breakpoint
1707 && ((struct single_step_breakpoint
*) bp
)->ptid
== ptid_of (thread
))
1709 gdb_assert (bp
->raw
->inserted
> 0);
1711 if (bp
->raw
->refcount
== 1)
1713 struct thread_info
*saved_thread
= current_thread
;
1715 current_thread
= thread
;
1716 reinsert_raw_breakpoint (bp
->raw
);
1717 current_thread
= saved_thread
;
1724 check_breakpoints (CORE_ADDR stop_pc
)
1726 struct process_info
*proc
= current_process ();
1727 struct breakpoint
*bp
, **bp_link
;
1729 bp
= proc
->breakpoints
;
1730 bp_link
= &proc
->breakpoints
;
1734 struct raw_breakpoint
*raw
= bp
->raw
;
1736 if ((raw
->raw_type
== raw_bkpt_type_sw
1737 || raw
->raw_type
== raw_bkpt_type_hw
)
1738 && raw
->pc
== stop_pc
)
1742 warning ("Hit a removed breakpoint?");
1746 if (bp
->type
== other_breakpoint
)
1748 struct other_breakpoint
*other_bp
1749 = (struct other_breakpoint
*) bp
;
1751 if (other_bp
->handler
!= NULL
&& (*other_bp
->handler
) (stop_pc
))
1753 *bp_link
= bp
->next
;
1755 release_breakpoint (proc
, bp
);
1763 bp_link
= &bp
->next
;
1769 breakpoint_here (CORE_ADDR addr
)
1771 struct process_info
*proc
= current_process ();
1772 struct raw_breakpoint
*bp
;
1774 for (bp
= proc
->raw_breakpoints
; bp
!= NULL
; bp
= bp
->next
)
1775 if ((bp
->raw_type
== raw_bkpt_type_sw
1776 || bp
->raw_type
== raw_bkpt_type_hw
)
1784 breakpoint_inserted_here (CORE_ADDR addr
)
1786 struct process_info
*proc
= current_process ();
1787 struct raw_breakpoint
*bp
;
1789 for (bp
= proc
->raw_breakpoints
; bp
!= NULL
; bp
= bp
->next
)
1790 if ((bp
->raw_type
== raw_bkpt_type_sw
1791 || bp
->raw_type
== raw_bkpt_type_hw
)
1799 /* See mem-break.h. */
1802 software_breakpoint_inserted_here (CORE_ADDR addr
)
1804 struct process_info
*proc
= current_process ();
1805 struct raw_breakpoint
*bp
;
1807 for (bp
= proc
->raw_breakpoints
; bp
!= NULL
; bp
= bp
->next
)
1808 if (bp
->raw_type
== raw_bkpt_type_sw
1816 /* See mem-break.h. */
1819 hardware_breakpoint_inserted_here (CORE_ADDR addr
)
1821 struct process_info
*proc
= current_process ();
1822 struct raw_breakpoint
*bp
;
1824 for (bp
= proc
->raw_breakpoints
; bp
!= NULL
; bp
= bp
->next
)
1825 if (bp
->raw_type
== raw_bkpt_type_hw
1833 /* See mem-break.h. */
1836 single_step_breakpoint_inserted_here (CORE_ADDR addr
)
1838 struct process_info
*proc
= current_process ();
1839 struct breakpoint
*bp
;
1841 for (bp
= proc
->breakpoints
; bp
!= NULL
; bp
= bp
->next
)
1842 if (bp
->type
== single_step_breakpoint
1843 && bp
->raw
->pc
== addr
1844 && bp
->raw
->inserted
)
1851 validate_inserted_breakpoint (struct raw_breakpoint
*bp
)
1856 gdb_assert (bp
->inserted
);
1857 gdb_assert (bp
->raw_type
== raw_bkpt_type_sw
);
1859 buf
= (unsigned char *) alloca (bp_size (bp
));
1860 err
= (*the_target
->read_memory
) (bp
->pc
, buf
, bp_size (bp
));
1861 if (err
|| memcmp (buf
, bp_opcode (bp
), bp_size (bp
)) != 0)
1863 /* Tag it as gone. */
1872 delete_disabled_breakpoints (void)
1874 struct process_info
*proc
= current_process ();
1875 struct breakpoint
*bp
, *next
;
1877 for (bp
= proc
->breakpoints
; bp
!= NULL
; bp
= next
)
1880 if (bp
->raw
->inserted
< 0)
1882 /* If single_step_breakpoints become disabled, that means the
1883 manipulations (insertion and removal) of them are wrong. */
1884 gdb_assert (bp
->type
!= single_step_breakpoint
);
1885 delete_breakpoint_1 (proc
, bp
);
1890 /* Check if breakpoints we inserted still appear to be inserted. They
1891 may disappear due to a shared library unload, and worse, a new
1892 shared library may be reloaded at the same address as the
1893 previously unloaded one. If that happens, we should make sure that
1894 the shadow memory of the old breakpoints isn't used when reading or
1898 validate_breakpoints (void)
1900 struct process_info
*proc
= current_process ();
1901 struct breakpoint
*bp
;
1903 for (bp
= proc
->breakpoints
; bp
!= NULL
; bp
= bp
->next
)
1905 struct raw_breakpoint
*raw
= bp
->raw
;
1907 if (raw
->raw_type
== raw_bkpt_type_sw
&& raw
->inserted
> 0)
1908 validate_inserted_breakpoint (raw
);
1911 delete_disabled_breakpoints ();
1915 check_mem_read (CORE_ADDR mem_addr
, unsigned char *buf
, int mem_len
)
1917 struct process_info
*proc
= current_process ();
1918 struct raw_breakpoint
*bp
= proc
->raw_breakpoints
;
1919 struct fast_tracepoint_jump
*jp
= proc
->fast_tracepoint_jumps
;
1920 CORE_ADDR mem_end
= mem_addr
+ mem_len
;
1921 int disabled_one
= 0;
1923 for (; jp
!= NULL
; jp
= jp
->next
)
1925 CORE_ADDR bp_end
= jp
->pc
+ jp
->length
;
1926 CORE_ADDR start
, end
;
1927 int copy_offset
, copy_len
, buf_offset
;
1929 gdb_assert (fast_tracepoint_jump_shadow (jp
) >= buf
+ mem_len
1930 || buf
>= fast_tracepoint_jump_shadow (jp
) + (jp
)->length
);
1932 if (mem_addr
>= bp_end
)
1934 if (jp
->pc
>= mem_end
)
1938 if (mem_addr
> start
)
1945 copy_len
= end
- start
;
1946 copy_offset
= start
- jp
->pc
;
1947 buf_offset
= start
- mem_addr
;
1950 memcpy (buf
+ buf_offset
,
1951 fast_tracepoint_jump_shadow (jp
) + copy_offset
,
1955 for (; bp
!= NULL
; bp
= bp
->next
)
1957 CORE_ADDR bp_end
= bp
->pc
+ bp_size (bp
);
1958 CORE_ADDR start
, end
;
1959 int copy_offset
, copy_len
, buf_offset
;
1961 if (bp
->raw_type
!= raw_bkpt_type_sw
)
1964 gdb_assert (bp
->old_data
>= buf
+ mem_len
1965 || buf
>= &bp
->old_data
[sizeof (bp
->old_data
)]);
1967 if (mem_addr
>= bp_end
)
1969 if (bp
->pc
>= mem_end
)
1973 if (mem_addr
> start
)
1980 copy_len
= end
- start
;
1981 copy_offset
= start
- bp
->pc
;
1982 buf_offset
= start
- mem_addr
;
1984 if (bp
->inserted
> 0)
1986 if (validate_inserted_breakpoint (bp
))
1987 memcpy (buf
+ buf_offset
, bp
->old_data
+ copy_offset
, copy_len
);
1994 delete_disabled_breakpoints ();
1998 check_mem_write (CORE_ADDR mem_addr
, unsigned char *buf
,
1999 const unsigned char *myaddr
, int mem_len
)
2001 struct process_info
*proc
= current_process ();
2002 struct raw_breakpoint
*bp
= proc
->raw_breakpoints
;
2003 struct fast_tracepoint_jump
*jp
= proc
->fast_tracepoint_jumps
;
2004 CORE_ADDR mem_end
= mem_addr
+ mem_len
;
2005 int disabled_one
= 0;
2007 /* First fast tracepoint jumps, then breakpoint traps on top. */
2009 for (; jp
!= NULL
; jp
= jp
->next
)
2011 CORE_ADDR jp_end
= jp
->pc
+ jp
->length
;
2012 CORE_ADDR start
, end
;
2013 int copy_offset
, copy_len
, buf_offset
;
2015 gdb_assert (fast_tracepoint_jump_shadow (jp
) >= myaddr
+ mem_len
2016 || myaddr
>= fast_tracepoint_jump_shadow (jp
) + (jp
)->length
);
2017 gdb_assert (fast_tracepoint_jump_insn (jp
) >= buf
+ mem_len
2018 || buf
>= fast_tracepoint_jump_insn (jp
) + (jp
)->length
);
2020 if (mem_addr
>= jp_end
)
2022 if (jp
->pc
>= mem_end
)
2026 if (mem_addr
> start
)
2033 copy_len
= end
- start
;
2034 copy_offset
= start
- jp
->pc
;
2035 buf_offset
= start
- mem_addr
;
2037 memcpy (fast_tracepoint_jump_shadow (jp
) + copy_offset
,
2038 myaddr
+ buf_offset
, copy_len
);
2040 memcpy (buf
+ buf_offset
,
2041 fast_tracepoint_jump_insn (jp
) + copy_offset
, copy_len
);
2044 for (; bp
!= NULL
; bp
= bp
->next
)
2046 CORE_ADDR bp_end
= bp
->pc
+ bp_size (bp
);
2047 CORE_ADDR start
, end
;
2048 int copy_offset
, copy_len
, buf_offset
;
2050 if (bp
->raw_type
!= raw_bkpt_type_sw
)
2053 gdb_assert (bp
->old_data
>= myaddr
+ mem_len
2054 || myaddr
>= &bp
->old_data
[sizeof (bp
->old_data
)]);
2056 if (mem_addr
>= bp_end
)
2058 if (bp
->pc
>= mem_end
)
2062 if (mem_addr
> start
)
2069 copy_len
= end
- start
;
2070 copy_offset
= start
- bp
->pc
;
2071 buf_offset
= start
- mem_addr
;
2073 memcpy (bp
->old_data
+ copy_offset
, myaddr
+ buf_offset
, copy_len
);
2074 if (bp
->inserted
> 0)
2076 if (validate_inserted_breakpoint (bp
))
2077 memcpy (buf
+ buf_offset
, bp_opcode (bp
) + copy_offset
, copy_len
);
2084 delete_disabled_breakpoints ();
2087 /* Delete all breakpoints, and un-insert them from the inferior. */
2090 delete_all_breakpoints (void)
2092 struct process_info
*proc
= current_process ();
2094 while (proc
->breakpoints
)
2095 delete_breakpoint_1 (proc
, proc
->breakpoints
);
2098 /* Clear the "inserted" flag in all breakpoints. */
2101 mark_breakpoints_out (struct process_info
*proc
)
2103 struct raw_breakpoint
*raw_bp
;
2105 for (raw_bp
= proc
->raw_breakpoints
; raw_bp
!= NULL
; raw_bp
= raw_bp
->next
)
2106 raw_bp
->inserted
= 0;
2109 /* Release all breakpoints, but do not try to un-insert them from the
2113 free_all_breakpoints (struct process_info
*proc
)
2115 mark_breakpoints_out (proc
);
2117 /* Note: use PROC explicitly instead of deferring to
2118 delete_all_breakpoints --- CURRENT_INFERIOR may already have been
2119 released when we get here. There should be no call to
2120 current_process from here on. */
2121 while (proc
->breakpoints
)
2122 delete_breakpoint_1 (proc
, proc
->breakpoints
);
2125 /* Clone an agent expression. */
2127 static struct agent_expr
*
2128 clone_agent_expr (const struct agent_expr
*src_ax
)
2130 struct agent_expr
*ax
;
2132 ax
= XCNEW (struct agent_expr
);
2133 ax
->length
= src_ax
->length
;
2134 ax
->bytes
= (unsigned char *) xcalloc (ax
->length
, 1);
2135 memcpy (ax
->bytes
, src_ax
->bytes
, ax
->length
);
2139 /* Deep-copy the contents of one breakpoint to another. */
2141 static struct breakpoint
*
2142 clone_one_breakpoint (const struct breakpoint
*src
, ptid_t ptid
)
2144 struct breakpoint
*dest
;
2145 struct raw_breakpoint
*dest_raw
;
2147 /* Clone the raw breakpoint. */
2148 dest_raw
= XCNEW (struct raw_breakpoint
);
2149 dest_raw
->raw_type
= src
->raw
->raw_type
;
2150 dest_raw
->refcount
= src
->raw
->refcount
;
2151 dest_raw
->pc
= src
->raw
->pc
;
2152 dest_raw
->kind
= src
->raw
->kind
;
2153 memcpy (dest_raw
->old_data
, src
->raw
->old_data
, MAX_BREAKPOINT_LEN
);
2154 dest_raw
->inserted
= src
->raw
->inserted
;
2156 /* Clone the high-level breakpoint. */
2157 if (is_gdb_breakpoint (src
->type
))
2159 struct gdb_breakpoint
*gdb_dest
= XCNEW (struct gdb_breakpoint
);
2160 struct point_cond_list
*current_cond
;
2161 struct point_cond_list
*new_cond
;
2162 struct point_cond_list
*cond_tail
= NULL
;
2163 struct point_command_list
*current_cmd
;
2164 struct point_command_list
*new_cmd
;
2165 struct point_command_list
*cmd_tail
= NULL
;
2167 /* Clone the condition list. */
2168 for (current_cond
= ((struct gdb_breakpoint
*) src
)->cond_list
;
2169 current_cond
!= NULL
;
2170 current_cond
= current_cond
->next
)
2172 new_cond
= XCNEW (struct point_cond_list
);
2173 new_cond
->cond
= clone_agent_expr (current_cond
->cond
);
2174 APPEND_TO_LIST (&gdb_dest
->cond_list
, new_cond
, cond_tail
);
2177 /* Clone the command list. */
2178 for (current_cmd
= ((struct gdb_breakpoint
*) src
)->command_list
;
2179 current_cmd
!= NULL
;
2180 current_cmd
= current_cmd
->next
)
2182 new_cmd
= XCNEW (struct point_command_list
);
2183 new_cmd
->cmd
= clone_agent_expr (current_cmd
->cmd
);
2184 new_cmd
->persistence
= current_cmd
->persistence
;
2185 APPEND_TO_LIST (&gdb_dest
->command_list
, new_cmd
, cmd_tail
);
2188 dest
= (struct breakpoint
*) gdb_dest
;
2190 else if (src
->type
== other_breakpoint
)
2192 struct other_breakpoint
*other_dest
= XCNEW (struct other_breakpoint
);
2194 other_dest
->handler
= ((struct other_breakpoint
*) src
)->handler
;
2195 dest
= (struct breakpoint
*) other_dest
;
2197 else if (src
->type
== single_step_breakpoint
)
2199 struct single_step_breakpoint
*ss_dest
2200 = XCNEW (struct single_step_breakpoint
);
2202 dest
= (struct breakpoint
*) ss_dest
;
2203 /* Since single-step breakpoint is thread specific, don't copy
2204 thread id from SRC, use ID instead. */
2205 ss_dest
->ptid
= ptid
;
2208 gdb_assert_not_reached ("unhandled breakpoint type");
2210 dest
->type
= src
->type
;
2211 dest
->raw
= dest_raw
;
2216 /* See mem-break.h. */
2219 clone_all_breakpoints (struct thread_info
*child_thread
,
2220 const struct thread_info
*parent_thread
)
2222 const struct breakpoint
*bp
;
2223 struct breakpoint
*new_bkpt
;
2224 struct breakpoint
*bkpt_tail
= NULL
;
2225 struct raw_breakpoint
*raw_bkpt_tail
= NULL
;
2226 struct process_info
*child_proc
= get_thread_process (child_thread
);
2227 struct process_info
*parent_proc
= get_thread_process (parent_thread
);
2228 struct breakpoint
**new_list
= &child_proc
->breakpoints
;
2229 struct raw_breakpoint
**new_raw_list
= &child_proc
->raw_breakpoints
;
2231 for (bp
= parent_proc
->breakpoints
; bp
!= NULL
; bp
= bp
->next
)
2233 new_bkpt
= clone_one_breakpoint (bp
, ptid_of (child_thread
));
2234 APPEND_TO_LIST (new_list
, new_bkpt
, bkpt_tail
);
2235 APPEND_TO_LIST (new_raw_list
, new_bkpt
->raw
, raw_bkpt_tail
);