Speed up readelf and objdump by not looking for DWO links unless the user has request...
[deliverable/binutils-gdb.git] / gdb / gdbserver / mem-break.c
CommitLineData
611cb4a5 1/* Memory breakpoint operations for the remote server for GDB.
e2882c85 2 Copyright (C) 2002-2018 Free Software Foundation, Inc.
611cb4a5
DJ
3
4 Contributed by MontaVista Software.
5
6 This file is part of GDB.
7
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
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
611cb4a5
DJ
11 (at your option) any later version.
12
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.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
611cb4a5
DJ
20
21#include "server.h"
9f3a5c85
LM
22#include "regcache.h"
23#include "ax.h"
611cb4a5
DJ
24
25#define MAX_BREAKPOINT_LEN 8
26
ddcbc397
DB
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
32 NULL. */
33
34#define APPEND_TO_LIST(listpp, itemp, tailp) \
35 do \
36 { \
37 if ((tailp) == NULL) \
38 *(listpp) = (itemp); \
39 else \
40 (tailp)->next = (itemp); \
41 (tailp) = (itemp); \
42 } \
43 while (0)
44
8b07ae33 45/* GDB will never try to install multiple breakpoints at the same
802e8e6d
PA
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
48 situations.
49
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.
53
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.
58
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.
62
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
65 transparently.
66
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
8b07ae33
PA
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
82 counted. */
83
84/* The low level, physical, raw breakpoint. */
85struct raw_breakpoint
86{
87 struct raw_breakpoint *next;
88
802e8e6d
PA
89 /* The low level type of the breakpoint (software breakpoint,
90 watchpoint, etc.) */
91 enum raw_bkpt_type raw_type;
92
8b07ae33
PA
93 /* A reference count. Each high level breakpoint referencing this
94 raw breakpoint accounts for one reference. */
95 int refcount;
96
97 /* The breakpoint's insertion address. There can only be one raw
98 breakpoint for a given PC. */
99 CORE_ADDR pc;
100
27165294
AT
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. */
107 int kind;
802e8e6d 108
8b07ae33
PA
109 /* The breakpoint's shadow memory. */
110 unsigned char old_data[MAX_BREAKPOINT_LEN];
111
802e8e6d
PA
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. */
8b07ae33
PA
115 int inserted;
116};
117
414a389f
PA
118/* The type of a breakpoint. */
119enum bkpt_type
120 {
8b07ae33 121 /* A GDB breakpoint, requested with a Z0 packet. */
802e8e6d
PA
122 gdb_breakpoint_Z0,
123
124 /* A GDB hardware breakpoint, requested with a Z1 packet. */
125 gdb_breakpoint_Z1,
126
127 /* A GDB write watchpoint, requested with a Z2 packet. */
128 gdb_breakpoint_Z2,
129
130 /* A GDB read watchpoint, requested with a Z3 packet. */
131 gdb_breakpoint_Z3,
132
133 /* A GDB access watchpoint, requested with a Z4 packet. */
134 gdb_breakpoint_Z4,
8b07ae33 135
3b9a79ef
YQ
136 /* A software single-step breakpoint. */
137 single_step_breakpoint,
414a389f
PA
138
139 /* Any other breakpoint type that doesn't require specific
140 treatment goes here. E.g., an event breakpoint. */
141 other_breakpoint,
142 };
143
9f3a5c85
LM
144struct point_cond_list
145{
146 /* Pointer to the agent expression that is the breakpoint's
147 conditional. */
148 struct agent_expr *cond;
149
150 /* Pointer to the next condition. */
151 struct point_cond_list *next;
152};
153
d3ce09f5
SS
154struct point_command_list
155{
156 /* Pointer to the agent expression that is the breakpoint's
157 commands. */
158 struct agent_expr *cmd;
159
160 /* Flag that is true if this command should run even while GDB is
161 disconnected. */
162 int persistence;
163
164 /* Pointer to the next command. */
165 struct point_command_list *next;
166};
167
8b07ae33 168/* A high level (in gdbserver's perspective) breakpoint. */
611cb4a5
DJ
169struct breakpoint
170{
171 struct breakpoint *next;
611cb4a5 172
414a389f
PA
173 /* The breakpoint's type. */
174 enum bkpt_type type;
175
9aa76cd0
YQ
176 /* Link to this breakpoint's raw breakpoint. This is always
177 non-NULL. */
178 struct raw_breakpoint *raw;
179};
180
181/* Breakpoint requested by GDB. */
182
183struct gdb_breakpoint
184{
185 struct breakpoint base;
186
9f3a5c85
LM
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
190 target's side. */
191 struct point_cond_list *cond_list;
192
d3ce09f5
SS
193 /* Point to the list of commands to run when this is hit. */
194 struct point_command_list *command_list;
9aa76cd0 195};
d3ce09f5 196
9aa76cd0
YQ
197/* Breakpoint used by GDBserver. */
198
199struct other_breakpoint
200{
201 struct breakpoint base;
8b07ae33 202
b65d95c5 203 /* Function to call when we hit this breakpoint. If it returns 1,
8b07ae33
PA
204 the breakpoint shall be deleted; 0 or if this callback is NULL,
205 it will be left inserted. */
b65d95c5 206 int (*handler) (CORE_ADDR);
611cb4a5
DJ
207};
208
3b9a79ef 209/* Breakpoint for single step. */
9aa76cd0 210
3b9a79ef 211struct single_step_breakpoint
9aa76cd0
YQ
212{
213 struct breakpoint base;
bec903c9
YQ
214
215 /* Thread the reinsert breakpoint belongs to. */
216 ptid_t ptid;
9aa76cd0
YQ
217};
218
27165294
AT
219/* Return the breakpoint size from its kind. */
220
221static int
222bp_size (struct raw_breakpoint *bp)
223{
224 int size = 0;
225
226 the_target->sw_breakpoint_from_kind (bp->kind, &size);
227 return size;
228}
229
230/* Return the breakpoint opcode from its kind. */
231
232static const gdb_byte *
233bp_opcode (struct raw_breakpoint *bp)
234{
235 int size = 0;
236
237 return the_target->sw_breakpoint_from_kind (bp->kind, &size);
238}
239
802e8e6d
PA
240/* See mem-break.h. */
241
932539e3 242enum target_hw_bp_type
802e8e6d 243raw_bkpt_type_to_target_hw_bp_type (enum raw_bkpt_type raw_type)
932539e3 244{
802e8e6d 245 switch (raw_type)
932539e3 246 {
802e8e6d 247 case raw_bkpt_type_hw:
932539e3 248 return hw_execute;
802e8e6d 249 case raw_bkpt_type_write_wp:
932539e3 250 return hw_write;
802e8e6d 251 case raw_bkpt_type_read_wp:
932539e3 252 return hw_read;
802e8e6d 253 case raw_bkpt_type_access_wp:
932539e3
PA
254 return hw_access;
255 default:
38e08fca
GB
256 internal_error (__FILE__, __LINE__,
257 "bad raw breakpoint type %d", (int) raw_type);
802e8e6d
PA
258 }
259}
260
261/* See mem-break.h. */
262
263static enum bkpt_type
264Z_packet_to_bkpt_type (char z_type)
265{
266 gdb_assert ('0' <= z_type && z_type <= '4');
267
d2412fa5 268 return (enum bkpt_type) (gdb_breakpoint_Z0 + (z_type - '0'));
802e8e6d
PA
269}
270
271/* See mem-break.h. */
272
273enum raw_bkpt_type
274Z_packet_to_raw_bkpt_type (char z_type)
275{
276 switch (z_type)
277 {
278 case Z_PACKET_SW_BP:
279 return raw_bkpt_type_sw;
280 case Z_PACKET_HW_BP:
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;
288 default:
289 gdb_assert_not_reached ("unhandled Z packet type.");
932539e3
PA
290 }
291}
292
9aa76cd0
YQ
293/* Return true if breakpoint TYPE is a GDB breakpoint. */
294
295static int
296is_gdb_breakpoint (enum bkpt_type type)
297{
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);
303}
304
d3ce09f5 305int
5b3da067 306any_persistent_commands (void)
d3ce09f5
SS
307{
308 struct process_info *proc = current_process ();
309 struct breakpoint *bp;
310 struct point_command_list *cl;
311
312 for (bp = proc->breakpoints; bp != NULL; bp = bp->next)
313 {
9aa76cd0
YQ
314 if (is_gdb_breakpoint (bp->type))
315 {
316 struct gdb_breakpoint *gdb_bp = (struct gdb_breakpoint *) bp;
317
318 for (cl = gdb_bp->command_list; cl != NULL; cl = cl->next)
319 if (cl->persistence)
320 return 1;
321 }
d3ce09f5
SS
322 }
323
324 return 0;
325}
326
802e8e6d
PA
327/* Find low-level breakpoint of type TYPE at address ADDR that is not
328 insert-disabled. Returns NULL if not found. */
329
8b07ae33 330static struct raw_breakpoint *
802e8e6d 331find_enabled_raw_code_breakpoint_at (CORE_ADDR addr, enum raw_bkpt_type type)
8b07ae33
PA
332{
333 struct process_info *proc = current_process ();
334 struct raw_breakpoint *bp;
414a389f 335
8b07ae33 336 for (bp = proc->raw_breakpoints; bp != NULL; bp = bp->next)
802e8e6d
PA
337 if (bp->pc == addr
338 && bp->raw_type == type
339 && bp->inserted >= 0)
8b07ae33
PA
340 return bp;
341
342 return NULL;
343}
344
802e8e6d
PA
345/* Find low-level breakpoint of type TYPE at address ADDR. Returns
346 NULL if not found. */
347
8b07ae33 348static struct raw_breakpoint *
27165294 349find_raw_breakpoint_at (CORE_ADDR addr, enum raw_bkpt_type type, int kind)
611cb4a5 350{
95954743 351 struct process_info *proc = current_process ();
8b07ae33 352 struct raw_breakpoint *bp;
802e8e6d
PA
353
354 for (bp = proc->raw_breakpoints; bp != NULL; bp = bp->next)
27165294 355 if (bp->pc == addr && bp->raw_type == type && bp->kind == kind)
802e8e6d
PA
356 return bp;
357
358 return NULL;
359}
360
361/* See mem-break.h. */
362
363int
364insert_memory_breakpoint (struct raw_breakpoint *bp)
365{
6bf36717 366 unsigned char buf[MAX_BREAKPOINT_LEN];
802e8e6d 367 int err;
611cb4a5 368
fa593d66
PA
369 /* Note that there can be fast tracepoint jumps installed in the
370 same memory range, so to get at the original memory, we need to
371 use read_inferior_memory, which masks those out. */
27165294 372 err = read_inferior_memory (bp->pc, buf, bp_size (bp));
d50171e4
PA
373 if (err != 0)
374 {
375 if (debug_threads)
87ce2a04
DE
376 debug_printf ("Failed to read shadow memory of"
377 " breakpoint at 0x%s (%s).\n",
802e8e6d 378 paddress (bp->pc), strerror (err));
d50171e4 379 }
802e8e6d
PA
380 else
381 {
27165294 382 memcpy (bp->old_data, buf, bp_size (bp));
611cb4a5 383
27165294
AT
384 err = (*the_target->write_memory) (bp->pc, bp_opcode (bp),
385 bp_size (bp));
802e8e6d
PA
386 if (err != 0)
387 {
388 if (debug_threads)
389 debug_printf ("Failed to insert breakpoint at 0x%s (%s).\n",
390 paddress (bp->pc), strerror (err));
391 }
392 }
393 return err != 0 ? -1 : 0;
394}
395
396/* See mem-break.h */
397
398int
399remove_memory_breakpoint (struct raw_breakpoint *bp)
400{
401 unsigned char buf[MAX_BREAKPOINT_LEN];
402 int err;
403
404 /* Since there can be trap breakpoints inserted in the same address
405 range, we use `write_inferior_memory', which takes care of
406 layering breakpoints on top of fast tracepoints, and on top of
407 the buffer we pass it. This works because the caller has already
408 either unlinked the breakpoint or marked it uninserted. Also
409 note that we need to pass the current shadow contents, because
410 write_inferior_memory updates any shadow memory with what we pass
411 here, and we want that to be a nop. */
27165294
AT
412 memcpy (buf, bp->old_data, bp_size (bp));
413 err = write_inferior_memory (bp->pc, buf, bp_size (bp));
d50171e4
PA
414 if (err != 0)
415 {
416 if (debug_threads)
802e8e6d
PA
417 debug_printf ("Failed to uninsert raw breakpoint "
418 "at 0x%s (%s) while deleting it.\n",
419 paddress (bp->pc), strerror (err));
420 }
421 return err != 0 ? -1 : 0;
422}
423
27165294 424/* Set a RAW breakpoint of type TYPE and kind KIND at WHERE. On
802e8e6d
PA
425 success, a pointer to the new breakpoint is returned. On failure,
426 returns NULL and writes the error code to *ERR. */
427
428static struct raw_breakpoint *
27165294 429set_raw_breakpoint_at (enum raw_bkpt_type type, CORE_ADDR where, int kind,
802e8e6d
PA
430 int *err)
431{
432 struct process_info *proc = current_process ();
433 struct raw_breakpoint *bp;
20249ae4 434 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
802e8e6d
PA
435
436 if (type == raw_bkpt_type_sw || type == raw_bkpt_type_hw)
437 {
438 bp = find_enabled_raw_code_breakpoint_at (where, type);
27165294 439 if (bp != NULL && bp->kind != kind)
802e8e6d 440 {
27165294 441 /* A different kind than previously seen. The previous
802e8e6d
PA
442 breakpoint must be gone then. */
443 if (debug_threads)
27165294
AT
444 debug_printf ("Inconsistent breakpoint kind? Was %d, now %d.\n",
445 bp->kind, kind);
802e8e6d
PA
446 bp->inserted = -1;
447 bp = NULL;
448 }
449 }
450 else
27165294 451 bp = find_raw_breakpoint_at (where, type, kind);
802e8e6d 452
20249ae4 453 if (bp == NULL)
802e8e6d 454 {
20249ae4
YQ
455 bp = XCNEW (struct raw_breakpoint);
456 bp->pc = where;
457 bp->kind = kind;
458 bp->raw_type = type;
459 make_cleanup (xfree, bp);
802e8e6d
PA
460 }
461
20249ae4 462 if (!bp->inserted)
802e8e6d 463 {
20249ae4
YQ
464 *err = the_target->insert_point (bp->raw_type, bp->pc, bp->kind, bp);
465 if (*err != 0)
466 {
467 if (debug_threads)
468 debug_printf ("Failed to insert breakpoint at 0x%s (%d).\n",
469 paddress (where), *err);
470
471 do_cleanups (old_chain);
472 return NULL;
473 }
474
475 bp->inserted = 1;
d50171e4
PA
476 }
477
20249ae4
YQ
478 discard_cleanups (old_chain);
479
480 /* Link the breakpoint in, if this is the first reference. */
481 if (++bp->refcount == 1)
482 {
483 bp->next = proc->raw_breakpoints;
484 proc->raw_breakpoints = bp;
485 }
d50171e4
PA
486 return bp;
487}
488
fa593d66
PA
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. */
495
496
497/* A fast tracepoint jump. */
498
499struct fast_tracepoint_jump
500{
501 struct fast_tracepoint_jump *next;
502
503 /* A reference count. GDB can install more than one fast tracepoint
504 at the same address (each with its own action list, for
505 example). */
506 int refcount;
507
508 /* The fast tracepoint's insertion address. There can only be one
509 of these for a given PC. */
510 CORE_ADDR pc;
511
512 /* Non-zero if this fast tracepoint jump is currently inserted in
513 the inferior. */
514 int inserted;
515
516 /* The length of the jump instruction. */
517 int length;
518
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
522 tracepoint jump). */
523 unsigned char insn_and_shadow[0];
524};
525
526/* Fast tracepoint FP's jump instruction to insert. */
527#define fast_tracepoint_jump_insn(fp) \
528 ((fp)->insn_and_shadow + 0)
529
530/* The shadow memory of fast tracepoint jump FP. */
531#define fast_tracepoint_jump_shadow(fp) \
532 ((fp)->insn_and_shadow + (fp)->length)
533
534
535/* Return the fast tracepoint jump set at WHERE. */
536
537static struct fast_tracepoint_jump *
538find_fast_tracepoint_jump_at (CORE_ADDR where)
539{
540 struct process_info *proc = current_process ();
541 struct fast_tracepoint_jump *jp;
542
543 for (jp = proc->fast_tracepoint_jumps; jp != NULL; jp = jp->next)
544 if (jp->pc == where)
545 return jp;
546
547 return NULL;
548}
549
550int
551fast_tracepoint_jump_here (CORE_ADDR where)
552{
553 struct fast_tracepoint_jump *jp = find_fast_tracepoint_jump_at (where);
554
555 return (jp != NULL);
556}
557
558int
559delete_fast_tracepoint_jump (struct fast_tracepoint_jump *todel)
560{
561 struct fast_tracepoint_jump *bp, **bp_link;
562 int ret;
563 struct process_info *proc = current_process ();
564
565 bp = proc->fast_tracepoint_jumps;
566 bp_link = &proc->fast_tracepoint_jumps;
567
568 while (bp)
569 {
570 if (bp == todel)
571 {
572 if (--bp->refcount == 0)
573 {
574 struct fast_tracepoint_jump *prev_bp_link = *bp_link;
6bf36717 575 unsigned char *buf;
fa593d66
PA
576
577 /* Unlink it. */
578 *bp_link = bp->next;
579
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. */
224c3ddb 589 buf = (unsigned char *) alloca (bp->length);
6bf36717
JK
590 memcpy (buf, fast_tracepoint_jump_shadow (bp), bp->length);
591 ret = write_inferior_memory (bp->pc, buf, bp->length);
fa593d66
PA
592 if (ret != 0)
593 {
594 /* Something went wrong, relink the jump. */
595 *bp_link = prev_bp_link;
596
597 if (debug_threads)
87ce2a04
DE
598 debug_printf ("Failed to uninsert fast tracepoint jump "
599 "at 0x%s (%s) while deleting it.\n",
600 paddress (bp->pc), strerror (ret));
fa593d66
PA
601 return ret;
602 }
603
604 free (bp);
605 }
606
607 return 0;
608 }
609 else
610 {
611 bp_link = &bp->next;
612 bp = *bp_link;
613 }
614 }
615
616 warning ("Could not find fast tracepoint jump in list.");
617 return ENOENT;
618}
619
5c73ff4e
YQ
620void
621inc_ref_fast_tracepoint_jump (struct fast_tracepoint_jump *jp)
622{
623 jp->refcount++;
624}
625
fa593d66
PA
626struct fast_tracepoint_jump *
627set_fast_tracepoint_jump (CORE_ADDR where,
628 unsigned char *insn, ULONGEST length)
629{
630 struct process_info *proc = current_process ();
631 struct fast_tracepoint_jump *jp;
632 int err;
6bf36717 633 unsigned char *buf;
fa593d66
PA
634
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);
638 if (jp != NULL)
639 {
640 jp->refcount++;
641 return jp;
642 }
643
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
646 shadow. */
224c3ddb 647 jp = (struct fast_tracepoint_jump *) xcalloc (1, sizeof (*jp) + (length * 2));
fa593d66
PA
648 jp->pc = where;
649 jp->length = length;
650 memcpy (fast_tracepoint_jump_insn (jp), insn, length);
651 jp->refcount = 1;
224c3ddb 652 buf = (unsigned char *) alloca (length);
fa593d66
PA
653
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. */
6bf36717 657 err = read_inferior_memory (where, buf, length);
fa593d66
PA
658 if (err != 0)
659 {
660 if (debug_threads)
87ce2a04
DE
661 debug_printf ("Failed to read shadow memory of"
662 " fast tracepoint at 0x%s (%s).\n",
663 paddress (where), strerror (err));
fa593d66
PA
664 free (jp);
665 return NULL;
666 }
6bf36717 667 memcpy (fast_tracepoint_jump_shadow (jp), buf, length);
fa593d66
PA
668
669 /* Link the jump in. */
670 jp->inserted = 1;
671 jp->next = proc->fast_tracepoint_jumps;
672 proc->fast_tracepoint_jumps = jp;
673
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
681 that to be a nop. */
6bf36717 682 err = write_inferior_memory (where, buf, length);
fa593d66
PA
683 if (err != 0)
684 {
685 if (debug_threads)
87ce2a04
DE
686 debug_printf ("Failed to insert fast tracepoint jump at 0x%s (%s).\n",
687 paddress (where), strerror (err));
fa593d66
PA
688
689 /* Unlink it. */
690 proc->fast_tracepoint_jumps = jp->next;
691 free (jp);
692
693 return NULL;
694 }
695
696 return jp;
697}
698
699void
700uninsert_fast_tracepoint_jumps_at (CORE_ADDR pc)
701{
702 struct fast_tracepoint_jump *jp;
703 int err;
704
705 jp = find_fast_tracepoint_jump_at (pc);
706 if (jp == NULL)
707 {
708 /* This can happen when we remove all breakpoints while handling
709 a step-over. */
710 if (debug_threads)
87ce2a04
DE
711 debug_printf ("Could not find fast tracepoint jump at 0x%s "
712 "in list (uninserting).\n",
713 paddress (pc));
fa593d66
PA
714 return;
715 }
716
717 if (jp->inserted)
718 {
6bf36717
JK
719 unsigned char *buf;
720
fa593d66
PA
721 jp->inserted = 0;
722
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. */
224c3ddb 732 buf = (unsigned char *) alloca (jp->length);
6bf36717
JK
733 memcpy (buf, fast_tracepoint_jump_shadow (jp), jp->length);
734 err = write_inferior_memory (jp->pc, buf, jp->length);
fa593d66
PA
735 if (err != 0)
736 {
737 jp->inserted = 1;
738
739 if (debug_threads)
87ce2a04
DE
740 debug_printf ("Failed to uninsert fast tracepoint jump at"
741 " 0x%s (%s).\n",
742 paddress (pc), strerror (err));
fa593d66
PA
743 }
744 }
745}
746
747void
748reinsert_fast_tracepoint_jumps_at (CORE_ADDR where)
749{
750 struct fast_tracepoint_jump *jp;
751 int err;
6bf36717 752 unsigned char *buf;
fa593d66
PA
753
754 jp = find_fast_tracepoint_jump_at (where);
755 if (jp == NULL)
756 {
757 /* This can happen when we remove breakpoints when a tracepoint
758 hit causes a tracing stop, while handling a step-over. */
759 if (debug_threads)
87ce2a04
DE
760 debug_printf ("Could not find fast tracepoint jump at 0x%s "
761 "in list (reinserting).\n",
762 paddress (where));
fa593d66
PA
763 return;
764 }
765
766 if (jp->inserted)
767 error ("Jump already inserted at reinsert time.");
768
769 jp->inserted = 1;
770
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. */
224c3ddb 779 buf = (unsigned char *) alloca (jp->length);
6bf36717
JK
780 memcpy (buf, fast_tracepoint_jump_shadow (jp), jp->length);
781 err = write_inferior_memory (where, buf, jp->length);
fa593d66
PA
782 if (err != 0)
783 {
784 jp->inserted = 0;
785
786 if (debug_threads)
87ce2a04
DE
787 debug_printf ("Failed to reinsert fast tracepoint jump at"
788 " 0x%s (%s).\n",
789 paddress (where), strerror (err));
fa593d66
PA
790 }
791}
792
802e8e6d 793/* Set a high-level breakpoint of type TYPE, with low level type
27165294 794 RAW_TYPE and kind KIND, at WHERE. On success, a pointer to the new
802e8e6d
PA
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
798 otherwise. */
799
800static struct breakpoint *
801set_breakpoint (enum bkpt_type type, enum raw_bkpt_type raw_type,
27165294 802 CORE_ADDR where, int kind,
802e8e6d 803 int (*handler) (CORE_ADDR), int *err)
d50171e4
PA
804{
805 struct process_info *proc = current_process ();
806 struct breakpoint *bp;
8b07ae33 807 struct raw_breakpoint *raw;
d50171e4 808
27165294 809 raw = set_raw_breakpoint_at (raw_type, where, kind, err);
d50171e4 810
8b07ae33 811 if (raw == NULL)
d50171e4
PA
812 {
813 /* warn? */
414a389f 814 return NULL;
d50171e4
PA
815 }
816
9aa76cd0
YQ
817 if (is_gdb_breakpoint (type))
818 {
819 struct gdb_breakpoint *gdb_bp = XCNEW (struct gdb_breakpoint);
820
821 bp = (struct breakpoint *) gdb_bp;
822 gdb_assert (handler == NULL);
823 }
824 else if (type == other_breakpoint)
825 {
826 struct other_breakpoint *other_bp = XCNEW (struct other_breakpoint);
827
828 other_bp->handler = handler;
829 bp = (struct breakpoint *) other_bp;
830 }
3b9a79ef 831 else if (type == single_step_breakpoint)
9aa76cd0 832 {
3b9a79ef
YQ
833 struct single_step_breakpoint *ss_bp
834 = XCNEW (struct single_step_breakpoint);
8b07ae33 835
3b9a79ef 836 bp = (struct breakpoint *) ss_bp;
9aa76cd0
YQ
837 }
838 else
839 gdb_assert_not_reached ("unhandled breakpoint type");
840
841 bp->type = type;
8b07ae33 842 bp->raw = raw;
611cb4a5 843
95954743
PA
844 bp->next = proc->breakpoints;
845 proc->breakpoints = bp;
414a389f
PA
846
847 return bp;
611cb4a5
DJ
848}
849
811f8301 850/* Set breakpoint of TYPE on address WHERE with handler HANDLER. */
802e8e6d 851
811f8301
YQ
852static struct breakpoint *
853set_breakpoint_type_at (enum bkpt_type type, CORE_ADDR where,
854 int (*handler) (CORE_ADDR))
802e8e6d
PA
855{
856 int err_ignored;
27165294 857 CORE_ADDR placed_address = where;
2e6ee069 858 int breakpoint_kind = target_breakpoint_kind_from_pc (&placed_address);
802e8e6d 859
811f8301 860 return set_breakpoint (type, raw_bkpt_type_sw,
27165294 861 placed_address, breakpoint_kind, handler,
802e8e6d
PA
862 &err_ignored);
863}
864
811f8301
YQ
865/* See mem-break.h */
866
867struct breakpoint *
868set_breakpoint_at (CORE_ADDR where, int (*handler) (CORE_ADDR))
869{
870 return set_breakpoint_type_at (other_breakpoint, where, handler);
871}
872
802e8e6d 873
8b07ae33
PA
874static int
875delete_raw_breakpoint (struct process_info *proc, struct raw_breakpoint *todel)
876{
877 struct raw_breakpoint *bp, **bp_link;
878 int ret;
879
880 bp = proc->raw_breakpoints;
881 bp_link = &proc->raw_breakpoints;
882
883 while (bp)
884 {
885 if (bp == todel)
886 {
802e8e6d 887 if (bp->inserted > 0)
8b07ae33
PA
888 {
889 struct raw_breakpoint *prev_bp_link = *bp_link;
890
891 *bp_link = bp->next;
892
27165294 893 ret = the_target->remove_point (bp->raw_type, bp->pc, bp->kind,
802e8e6d 894 bp);
8b07ae33
PA
895 if (ret != 0)
896 {
897 /* Something went wrong, relink the breakpoint. */
898 *bp_link = prev_bp_link;
899
900 if (debug_threads)
87ce2a04 901 debug_printf ("Failed to uninsert raw breakpoint "
802e8e6d
PA
902 "at 0x%s while deleting it.\n",
903 paddress (bp->pc));
8b07ae33
PA
904 return ret;
905 }
8b07ae33
PA
906 }
907 else
908 *bp_link = bp->next;
909
910 free (bp);
911 return 0;
912 }
913 else
914 {
915 bp_link = &bp->next;
916 bp = *bp_link;
917 }
918 }
919
920 warning ("Could not find raw breakpoint in list.");
921 return ENOENT;
922}
923
924static int
925release_breakpoint (struct process_info *proc, struct breakpoint *bp)
926{
927 int newrefcount;
928 int ret;
929
930 newrefcount = bp->raw->refcount - 1;
931 if (newrefcount == 0)
932 {
933 ret = delete_raw_breakpoint (proc, bp->raw);
934 if (ret != 0)
935 return ret;
936 }
937 else
938 bp->raw->refcount = newrefcount;
939
940 free (bp);
941
942 return 0;
943}
944
945static int
946delete_breakpoint_1 (struct process_info *proc, struct breakpoint *todel)
611cb4a5 947{
414a389f 948 struct breakpoint *bp, **bp_link;
8b07ae33 949 int err;
611cb4a5 950
414a389f
PA
951 bp = proc->breakpoints;
952 bp_link = &proc->breakpoints;
953
954 while (bp)
611cb4a5 955 {
414a389f 956 if (bp == todel)
611cb4a5 957 {
414a389f
PA
958 *bp_link = bp->next;
959
8b07ae33
PA
960 err = release_breakpoint (proc, bp);
961 if (err != 0)
962 return err;
963
964 bp = *bp_link;
965 return 0;
611cb4a5 966 }
414a389f
PA
967 else
968 {
969 bp_link = &bp->next;
970 bp = *bp_link;
971 }
611cb4a5 972 }
414a389f 973
611cb4a5 974 warning ("Could not find breakpoint in list.");
8b07ae33
PA
975 return ENOENT;
976}
977
219f2f23 978int
8b07ae33
PA
979delete_breakpoint (struct breakpoint *todel)
980{
981 struct process_info *proc = current_process ();
982 return delete_breakpoint_1 (proc, todel);
611cb4a5
DJ
983}
984
27165294
AT
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. */
51aa91f9 988
9aa76cd0 989static struct gdb_breakpoint *
27165294 990find_gdb_breakpoint (char z_type, CORE_ADDR addr, int kind)
611cb4a5 991{
95954743 992 struct process_info *proc = current_process ();
8b07ae33 993 struct breakpoint *bp;
802e8e6d 994 enum bkpt_type type = Z_packet_to_bkpt_type (z_type);
611cb4a5 995
8b07ae33 996 for (bp = proc->breakpoints; bp != NULL; bp = bp->next)
802e8e6d 997 if (bp->type == type && bp->raw->pc == addr
27165294 998 && (kind == -1 || bp->raw->kind == kind))
2583da7c 999 return (struct gdb_breakpoint *) bp;
611cb4a5
DJ
1000
1001 return NULL;
1002}
1003
802e8e6d
PA
1004static int
1005z_type_supported (char z_type)
1006{
1007 return (z_type >= '0' && z_type <= '4'
ef7cab6b 1008 && the_target->supports_z_point_type != NULL
802e8e6d
PA
1009 && the_target->supports_z_point_type (z_type));
1010}
1011
27165294 1012/* Create a new GDB breakpoint of type Z_TYPE at ADDR with kind KIND.
802e8e6d
PA
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. */
1016
9aa76cd0 1017static struct gdb_breakpoint *
27165294 1018set_gdb_breakpoint_1 (char z_type, CORE_ADDR addr, int kind, int *err)
68070c10 1019{
9aa76cd0 1020 struct gdb_breakpoint *bp;
802e8e6d
PA
1021 enum bkpt_type type;
1022 enum raw_bkpt_type raw_type;
1023
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)
1041 {
1042 bp = find_gdb_breakpoint (z_type, addr, -1);
8b07ae33 1043
802e8e6d
PA
1044 if (bp != NULL)
1045 {
9aa76cd0 1046 if (bp->base.raw->kind != kind)
802e8e6d 1047 {
27165294 1048 /* A different kind than previously seen. The previous
802e8e6d 1049 breakpoint must be gone then. */
9aa76cd0
YQ
1050 bp->base.raw->inserted = -1;
1051 delete_breakpoint ((struct breakpoint *) bp);
802e8e6d
PA
1052 bp = NULL;
1053 }
1054 else if (z_type == Z_PACKET_SW_BP)
1055 {
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 ();
1060
1061 /* Breakpoints that don't pass validation are
1062 deleted. */
1063 bp = find_gdb_breakpoint (z_type, addr, -1);
1064 }
1065 }
1066 }
1067 else
1068 {
27165294 1069 /* Data breakpoints for the same address but different kind are
802e8e6d
PA
1070 expected. GDB doesn't merge these. The backend gets to do
1071 that if it wants/can. */
27165294 1072 bp = find_gdb_breakpoint (z_type, addr, kind);
802e8e6d 1073 }
8b07ae33 1074
d3bbe7a0
PA
1075 if (bp != NULL)
1076 {
802e8e6d
PA
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. */
1082 return bp;
1083 }
1084
1085 raw_type = Z_packet_to_raw_bkpt_type (z_type);
1086 type = Z_packet_to_bkpt_type (z_type);
9aa76cd0
YQ
1087 return (struct gdb_breakpoint *) set_breakpoint (type, raw_type, addr,
1088 kind, NULL, err);
802e8e6d
PA
1089}
1090
1091static int
1092check_gdb_bp_preconditions (char z_type, int *err)
1093{
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))
1102 {
1103 *err = 1;
1104 return 0;
1105 }
a67a9fae
PA
1106
1107 return 1;
802e8e6d
PA
1108}
1109
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. */
d3bbe7a0 1112
9aa76cd0 1113struct gdb_breakpoint *
27165294 1114set_gdb_breakpoint (char z_type, CORE_ADDR addr, int kind, int *err)
802e8e6d 1115{
9aa76cd0 1116 struct gdb_breakpoint *bp;
802e8e6d
PA
1117
1118 if (!check_gdb_bp_preconditions (z_type, err))
1119 return NULL;
1120
1121 /* If inserting a software/memory breakpoint, need to prepare to
1122 access memory. */
1123 if (z_type == Z_PACKET_SW_BP)
1124 {
a67a9fae
PA
1125 if (prepare_to_access_memory () != 0)
1126 {
1127 *err = -1;
1128 return NULL;
1129 }
d3bbe7a0
PA
1130 }
1131
27165294 1132 bp = set_gdb_breakpoint_1 (z_type, addr, kind, err);
8b07ae33 1133
802e8e6d
PA
1134 if (z_type == Z_PACKET_SW_BP)
1135 done_accessing_memory ();
1136
1137 return bp;
8b07ae33
PA
1138}
1139
27165294 1140/* Delete a GDB breakpoint of type Z_TYPE and kind KIND previously
802e8e6d
PA
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
1143 target. */
1144
1145static int
27165294 1146delete_gdb_breakpoint_1 (char z_type, CORE_ADDR addr, int kind)
8b07ae33 1147{
9aa76cd0 1148 struct gdb_breakpoint *bp;
8b07ae33
PA
1149 int err;
1150
27165294 1151 bp = find_gdb_breakpoint (z_type, addr, kind);
8b07ae33
PA
1152 if (bp == NULL)
1153 return -1;
1154
0a261ed8
PA
1155 /* Before deleting the breakpoint, make sure to free its condition
1156 and command lists. */
1157 clear_breakpoint_conditions_and_commands (bp);
9aa76cd0 1158 err = delete_breakpoint ((struct breakpoint *) bp);
802e8e6d 1159 if (err != 0)
8b07ae33
PA
1160 return -1;
1161
1162 return 0;
1163}
1164
802e8e6d
PA
1165/* See mem-break.h. This is a wrapper for delete_gdb_breakpoint that
1166 knows to prepare to access memory for Z0 breakpoints. */
1167
1168int
27165294 1169delete_gdb_breakpoint (char z_type, CORE_ADDR addr, int kind)
802e8e6d
PA
1170{
1171 int ret;
1172
1173 if (!check_gdb_bp_preconditions (z_type, &ret))
1174 return ret;
1175
1176 /* If inserting a software/memory breakpoint, need to prepare to
1177 access memory. */
1178 if (z_type == Z_PACKET_SW_BP)
1179 {
1180 int err;
1181
1182 err = prepare_to_access_memory ();
1183 if (err != 0)
1184 return -1;
1185 }
1186
27165294 1187 ret = delete_gdb_breakpoint_1 (z_type, addr, kind);
802e8e6d
PA
1188
1189 if (z_type == Z_PACKET_SW_BP)
1190 done_accessing_memory ();
1191
1192 return ret;
1193}
1194
1195/* Clear all conditions associated with a breakpoint. */
9f3a5c85 1196
0a261ed8 1197static void
9aa76cd0 1198clear_breakpoint_conditions (struct gdb_breakpoint *bp)
9f3a5c85 1199{
412c89dd 1200 struct point_cond_list *cond;
9f3a5c85 1201
802e8e6d 1202 if (bp->cond_list == NULL)
9f3a5c85
LM
1203 return;
1204
1205 cond = bp->cond_list;
9f3a5c85
LM
1206
1207 while (cond != NULL)
1208 {
412c89dd
LM
1209 struct point_cond_list *cond_next;
1210
1211 cond_next = cond->next;
0a261ed8 1212 gdb_free_agent_expr (cond->cond);
9f3a5c85 1213 free (cond);
412c89dd 1214 cond = cond_next;
9f3a5c85
LM
1215 }
1216
1217 bp->cond_list = NULL;
1218}
1219
0a261ed8
PA
1220/* Clear all commands associated with a breakpoint. */
1221
1222static void
9aa76cd0 1223clear_breakpoint_commands (struct gdb_breakpoint *bp)
0a261ed8
PA
1224{
1225 struct point_command_list *cmd;
1226
1227 if (bp->command_list == NULL)
1228 return;
1229
1230 cmd = bp->command_list;
1231
1232 while (cmd != NULL)
1233 {
1234 struct point_command_list *cmd_next;
1235
1236 cmd_next = cmd->next;
1237 gdb_free_agent_expr (cmd->cmd);
1238 free (cmd);
1239 cmd = cmd_next;
1240 }
1241
1242 bp->command_list = NULL;
1243}
1244
1245void
9aa76cd0 1246clear_breakpoint_conditions_and_commands (struct gdb_breakpoint *bp)
0a261ed8
PA
1247{
1248 clear_breakpoint_conditions (bp);
1249 clear_breakpoint_commands (bp);
1250}
1251
9f3a5c85
LM
1252/* Add condition CONDITION to GDBserver's breakpoint BP. */
1253
802e8e6d 1254static void
9aa76cd0 1255add_condition_to_breakpoint (struct gdb_breakpoint *bp,
9f3a5c85
LM
1256 struct agent_expr *condition)
1257{
1258 struct point_cond_list *new_cond;
1259
1260 /* Create new condition. */
8d749320 1261 new_cond = XCNEW (struct point_cond_list);
9f3a5c85
LM
1262 new_cond->cond = condition;
1263
1264 /* Add condition to the list. */
1265 new_cond->next = bp->cond_list;
1266 bp->cond_list = new_cond;
1267}
1268
802e8e6d 1269/* Add a target-side condition CONDITION to a breakpoint. */
9f3a5c85 1270
8b07ae33 1271int
256642e8 1272add_breakpoint_condition (struct gdb_breakpoint *bp, const char **condition)
9f3a5c85 1273{
256642e8 1274 const char *actparm = *condition;
9f3a5c85
LM
1275 struct agent_expr *cond;
1276
9f3a5c85
LM
1277 if (condition == NULL)
1278 return 1;
1279
d708bcd1
PA
1280 if (bp == NULL)
1281 return 0;
1282
9f3a5c85
LM
1283 cond = gdb_parse_agent_expr (&actparm);
1284
1285 if (cond == NULL)
1286 {
9986ba08 1287 warning ("Condition evaluation failed. Assuming unconditional.");
9f3a5c85
LM
1288 return 0;
1289 }
1290
1291 add_condition_to_breakpoint (bp, cond);
1292
1293 *condition = actparm;
1294
d708bcd1 1295 return 1;
9f3a5c85
LM
1296}
1297
1298/* Evaluate condition (if any) at breakpoint BP. Return 1 if
1299 true and 0 otherwise. */
1300
802e8e6d
PA
1301static int
1302gdb_condition_true_at_breakpoint_z_type (char z_type, CORE_ADDR addr)
8b07ae33 1303{
9f3a5c85 1304 /* Fetch registers for the current inferior. */
9aa76cd0 1305 struct gdb_breakpoint *bp = find_gdb_breakpoint (z_type, addr, -1);
9f3a5c85
LM
1306 ULONGEST value = 0;
1307 struct point_cond_list *cl;
1308 int err = 0;
5ae4861a 1309 struct eval_agent_expr_context ctx;
9f3a5c85
LM
1310
1311 if (bp == NULL)
1312 return 0;
8b07ae33 1313
9f3a5c85
LM
1314 /* Check if the breakpoint is unconditional. If it is,
1315 the condition always evaluates to TRUE. */
1316 if (bp->cond_list == NULL)
1317 return 1;
1318
0bfdf32f 1319 ctx.regcache = get_thread_regcache (current_thread, 1);
5ae4861a
YQ
1320 ctx.tframe = NULL;
1321 ctx.tpoint = NULL;
1322
9f3a5c85
LM
1323 /* Evaluate each condition in the breakpoint's list of conditions.
1324 Return true if any of the conditions evaluates to TRUE.
1325
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)
1330 {
1331 /* Evaluate the condition. */
5ae4861a 1332 err = gdb_eval_agent_expr (&ctx, cl->cond, &value);
9f3a5c85
LM
1333 }
1334
1335 if (err)
1336 return 1;
1337
1338 return (value != 0);
1339}
1340
802e8e6d
PA
1341int
1342gdb_condition_true_at_breakpoint (CORE_ADDR where)
1343{
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));
1347}
1348
d3ce09f5
SS
1349/* Add commands COMMANDS to GDBserver's breakpoint BP. */
1350
5b3da067 1351static void
9aa76cd0 1352add_commands_to_breakpoint (struct gdb_breakpoint *bp,
d3ce09f5
SS
1353 struct agent_expr *commands, int persist)
1354{
1355 struct point_command_list *new_cmd;
1356
1357 /* Create new command. */
8d749320 1358 new_cmd = XCNEW (struct point_command_list);
d3ce09f5
SS
1359 new_cmd->cmd = commands;
1360 new_cmd->persistence = persist;
1361
1362 /* Add commands to the list. */
1363 new_cmd->next = bp->command_list;
1364 bp->command_list = new_cmd;
1365}
1366
1367/* Add a target-side command COMMAND to the breakpoint at ADDR. */
1368
1369int
256642e8 1370add_breakpoint_commands (struct gdb_breakpoint *bp, const char **command,
802e8e6d 1371 int persist)
d3ce09f5 1372{
256642e8 1373 const char *actparm = *command;
d3ce09f5
SS
1374 struct agent_expr *cmd;
1375
d3ce09f5
SS
1376 if (command == NULL)
1377 return 1;
1378
d708bcd1
PA
1379 if (bp == NULL)
1380 return 0;
1381
d3ce09f5
SS
1382 cmd = gdb_parse_agent_expr (&actparm);
1383
1384 if (cmd == NULL)
1385 {
9986ba08 1386 warning ("Command evaluation failed. Disabling.");
d3ce09f5
SS
1387 return 0;
1388 }
1389
1390 add_commands_to_breakpoint (bp, cmd, persist);
1391
1392 *command = actparm;
1393
d708bcd1 1394 return 1;
d3ce09f5
SS
1395}
1396
1397/* Return true if there are no commands to run at this location,
1398 which likely means we want to report back to GDB. */
802e8e6d
PA
1399
1400static int
1401gdb_no_commands_at_breakpoint_z_type (char z_type, CORE_ADDR addr)
d3ce09f5 1402{
9aa76cd0 1403 struct gdb_breakpoint *bp = find_gdb_breakpoint (z_type, addr, -1);
d3ce09f5
SS
1404
1405 if (bp == NULL)
802e8e6d 1406 return 1;
d3ce09f5
SS
1407
1408 if (debug_threads)
802e8e6d
PA
1409 debug_printf ("at 0x%s, type Z%c, bp command_list is 0x%s\n",
1410 paddress (addr), z_type,
87ce2a04 1411 phex_nz ((uintptr_t) bp->command_list, 0));
d3ce09f5
SS
1412 return (bp->command_list == NULL);
1413}
1414
802e8e6d
PA
1415/* Return true if there are no commands to run at this location,
1416 which likely means we want to report back to GDB. */
1417
1418int
1419gdb_no_commands_at_breakpoint (CORE_ADDR where)
1420{
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));
1424}
1425
1426/* Run a breakpoint's commands. Returns 0 if there was a problem
1427 running any command, 1 otherwise. */
1428
1429static int
1430run_breakpoint_commands_z_type (char z_type, CORE_ADDR addr)
d3ce09f5
SS
1431{
1432 /* Fetch registers for the current inferior. */
9aa76cd0 1433 struct gdb_breakpoint *bp = find_gdb_breakpoint (z_type, addr, -1);
d3ce09f5
SS
1434 ULONGEST value = 0;
1435 struct point_command_list *cl;
1436 int err = 0;
5ae4861a 1437 struct eval_agent_expr_context ctx;
d3ce09f5
SS
1438
1439 if (bp == NULL)
802e8e6d 1440 return 1;
d3ce09f5 1441
0bfdf32f 1442 ctx.regcache = get_thread_regcache (current_thread, 1);
5ae4861a
YQ
1443 ctx.tframe = NULL;
1444 ctx.tpoint = NULL;
1445
d3ce09f5
SS
1446 for (cl = bp->command_list;
1447 cl && !value && !err; cl = cl->next)
1448 {
1449 /* Run the command. */
5ae4861a 1450 err = gdb_eval_agent_expr (&ctx, cl->cmd, &value);
d3ce09f5
SS
1451
1452 /* If one command has a problem, stop digging the hole deeper. */
1453 if (err)
802e8e6d 1454 return 0;
d3ce09f5 1455 }
802e8e6d
PA
1456
1457 return 1;
d3ce09f5
SS
1458}
1459
802e8e6d
PA
1460void
1461run_breakpoint_commands (CORE_ADDR where)
1462{
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);
1467}
1468
1469/* See mem-break.h. */
9f3a5c85
LM
1470
1471int
1472gdb_breakpoint_here (CORE_ADDR where)
1473{
802e8e6d
PA
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);
68070c10
PA
1477}
1478
d50171e4 1479void
3b9a79ef 1480set_single_step_breakpoint (CORE_ADDR stop_at, ptid_t ptid)
611cb4a5 1481{
3b9a79ef 1482 struct single_step_breakpoint *bp;
bec903c9
YQ
1483
1484 gdb_assert (ptid_get_pid (current_ptid) == ptid_get_pid (ptid));
414a389f 1485
3b9a79ef
YQ
1486 bp = (struct single_step_breakpoint *) set_breakpoint_type_at (single_step_breakpoint,
1487 stop_at, NULL);
bec903c9 1488 bp->ptid = ptid;
611cb4a5
DJ
1489}
1490
1491void
3b9a79ef 1492delete_single_step_breakpoints (struct thread_info *thread)
611cb4a5 1493{
bec903c9 1494 struct process_info *proc = get_thread_process (thread);
d50171e4 1495 struct breakpoint *bp, **bp_link;
611cb4a5 1496
d50171e4
PA
1497 bp = proc->breakpoints;
1498 bp_link = &proc->breakpoints;
611cb4a5 1499
d50171e4
PA
1500 while (bp)
1501 {
3b9a79ef
YQ
1502 if (bp->type == single_step_breakpoint
1503 && ptid_equal (((struct single_step_breakpoint *) bp)->ptid,
bec903c9 1504 ptid_of (thread)))
414a389f 1505 {
bec903c9
YQ
1506 struct thread_info *saved_thread = current_thread;
1507
1508 current_thread = thread;
414a389f 1509 *bp_link = bp->next;
8b07ae33 1510 release_breakpoint (proc, bp);
414a389f 1511 bp = *bp_link;
bec903c9 1512 current_thread = saved_thread;
414a389f
PA
1513 }
1514 else
1515 {
1516 bp_link = &bp->next;
1517 bp = *bp_link;
1518 }
d50171e4
PA
1519 }
1520}
b65d95c5 1521
d50171e4 1522static void
8b07ae33 1523uninsert_raw_breakpoint (struct raw_breakpoint *bp)
d50171e4 1524{
802e8e6d
PA
1525 if (bp->inserted < 0)
1526 {
1527 if (debug_threads)
1528 debug_printf ("Breakpoint at %s is marked insert-disabled.\n",
1529 paddress (bp->pc));
1530 }
1531 else if (bp->inserted > 0)
d50171e4
PA
1532 {
1533 int err;
1534
1535 bp->inserted = 0;
802e8e6d 1536
27165294 1537 err = the_target->remove_point (bp->raw_type, bp->pc, bp->kind, bp);
d50171e4
PA
1538 if (err != 0)
1539 {
1540 bp->inserted = 1;
611cb4a5 1541
d50171e4 1542 if (debug_threads)
802e8e6d
PA
1543 debug_printf ("Failed to uninsert raw breakpoint at 0x%s.\n",
1544 paddress (bp->pc));
d50171e4
PA
1545 }
1546 }
611cb4a5
DJ
1547}
1548
1549void
d50171e4 1550uninsert_breakpoints_at (CORE_ADDR pc)
611cb4a5 1551{
802e8e6d 1552 struct process_info *proc = current_process ();
8b07ae33 1553 struct raw_breakpoint *bp;
802e8e6d 1554 int found = 0;
611cb4a5 1555
802e8e6d
PA
1556 for (bp = proc->raw_breakpoints; bp != NULL; bp = bp->next)
1557 if ((bp->raw_type == raw_bkpt_type_sw
1558 || bp->raw_type == raw_bkpt_type_hw)
1559 && bp->pc == pc)
1560 {
1561 found = 1;
1562
1563 if (bp->inserted)
1564 uninsert_raw_breakpoint (bp);
1565 }
1566
1567 if (!found)
d50171e4
PA
1568 {
1569 /* This can happen when we remove all breakpoints while handling
1570 a step-over. */
1571 if (debug_threads)
87ce2a04
DE
1572 debug_printf ("Could not find breakpoint at 0x%s "
1573 "in list (uninserting).\n",
1574 paddress (pc));
d50171e4 1575 }
611cb4a5
DJ
1576}
1577
0fb4aa4b
PA
1578void
1579uninsert_all_breakpoints (void)
1580{
1581 struct process_info *proc = current_process ();
1582 struct raw_breakpoint *bp;
1583
1584 for (bp = proc->raw_breakpoints; bp != NULL; bp = bp->next)
802e8e6d
PA
1585 if ((bp->raw_type == raw_bkpt_type_sw
1586 || bp->raw_type == raw_bkpt_type_hw)
1587 && bp->inserted)
0fb4aa4b
PA
1588 uninsert_raw_breakpoint (bp);
1589}
1590
2e7b624b 1591void
3b9a79ef 1592uninsert_single_step_breakpoints (struct thread_info *thread)
2e7b624b 1593{
bec903c9 1594 struct process_info *proc = get_thread_process (thread);
2e7b624b
YQ
1595 struct breakpoint *bp;
1596
1597 for (bp = proc->breakpoints; bp != NULL; bp = bp->next)
1598 {
3b9a79ef
YQ
1599 if (bp->type == single_step_breakpoint
1600 && ptid_equal (((struct single_step_breakpoint *) bp)->ptid,
bec903c9 1601 ptid_of (thread)))
2e7b624b
YQ
1602 {
1603 gdb_assert (bp->raw->inserted > 0);
1604
1605 /* Only uninsert the raw breakpoint if it only belongs to a
1606 reinsert breakpoint. */
1607 if (bp->raw->refcount == 1)
bec903c9
YQ
1608 {
1609 struct thread_info *saved_thread = current_thread;
1610
1611 current_thread = thread;
1612 uninsert_raw_breakpoint (bp->raw);
1613 current_thread = saved_thread;
1614 }
2e7b624b
YQ
1615 }
1616 }
1617}
1618
d50171e4 1619static void
8b07ae33 1620reinsert_raw_breakpoint (struct raw_breakpoint *bp)
611cb4a5 1621{
d50171e4 1622 int err;
611cb4a5 1623
d50171e4 1624 if (bp->inserted)
85ba7d86 1625 return;
611cb4a5 1626
27165294 1627 err = the_target->insert_point (bp->raw_type, bp->pc, bp->kind, bp);
d50171e4
PA
1628 if (err == 0)
1629 bp->inserted = 1;
1630 else if (debug_threads)
802e8e6d
PA
1631 debug_printf ("Failed to reinsert breakpoint at 0x%s (%d).\n",
1632 paddress (bp->pc), err);
611cb4a5
DJ
1633}
1634
d50171e4
PA
1635void
1636reinsert_breakpoints_at (CORE_ADDR pc)
611cb4a5 1637{
802e8e6d 1638 struct process_info *proc = current_process ();
8b07ae33 1639 struct raw_breakpoint *bp;
802e8e6d 1640 int found = 0;
611cb4a5 1641
802e8e6d
PA
1642 for (bp = proc->raw_breakpoints; bp != NULL; bp = bp->next)
1643 if ((bp->raw_type == raw_bkpt_type_sw
1644 || bp->raw_type == raw_bkpt_type_hw)
1645 && bp->pc == pc)
1646 {
1647 found = 1;
1648
1649 reinsert_raw_breakpoint (bp);
1650 }
1651
1652 if (!found)
611cb4a5 1653 {
d50171e4
PA
1654 /* This can happen when we remove all breakpoints while handling
1655 a step-over. */
1656 if (debug_threads)
87ce2a04
DE
1657 debug_printf ("Could not find raw breakpoint at 0x%s "
1658 "in list (reinserting).\n",
1659 paddress (pc));
611cb4a5 1660 }
d50171e4
PA
1661}
1662
f79b145d 1663int
3b9a79ef 1664has_single_step_breakpoints (struct thread_info *thread)
f79b145d 1665{
bec903c9 1666 struct process_info *proc = get_thread_process (thread);
f79b145d
YQ
1667 struct breakpoint *bp, **bp_link;
1668
1669 bp = proc->breakpoints;
1670 bp_link = &proc->breakpoints;
1671
1672 while (bp)
1673 {
3b9a79ef
YQ
1674 if (bp->type == single_step_breakpoint
1675 && ptid_equal (((struct single_step_breakpoint *) bp)->ptid,
bec903c9 1676 ptid_of (thread)))
f79b145d
YQ
1677 return 1;
1678 else
1679 {
1680 bp_link = &bp->next;
1681 bp = *bp_link;
1682 }
1683 }
1684
1685 return 0;
1686}
1687
0fb4aa4b
PA
1688void
1689reinsert_all_breakpoints (void)
1690{
1691 struct process_info *proc = current_process ();
1692 struct raw_breakpoint *bp;
1693
1694 for (bp = proc->raw_breakpoints; bp != NULL; bp = bp->next)
802e8e6d
PA
1695 if ((bp->raw_type == raw_bkpt_type_sw
1696 || bp->raw_type == raw_bkpt_type_hw)
1697 && !bp->inserted)
0fb4aa4b
PA
1698 reinsert_raw_breakpoint (bp);
1699}
1700
2e7b624b 1701void
3b9a79ef 1702reinsert_single_step_breakpoints (struct thread_info *thread)
2e7b624b 1703{
bec903c9 1704 struct process_info *proc = get_thread_process (thread);
2e7b624b
YQ
1705 struct breakpoint *bp;
1706
1707 for (bp = proc->breakpoints; bp != NULL; bp = bp->next)
1708 {
3b9a79ef
YQ
1709 if (bp->type == single_step_breakpoint
1710 && ptid_equal (((struct single_step_breakpoint *) bp)->ptid,
bec903c9 1711 ptid_of (thread)))
2e7b624b
YQ
1712 {
1713 gdb_assert (bp->raw->inserted > 0);
1714
1715 if (bp->raw->refcount == 1)
bec903c9
YQ
1716 {
1717 struct thread_info *saved_thread = current_thread;
1718
1719 current_thread = thread;
1720 reinsert_raw_breakpoint (bp->raw);
1721 current_thread = saved_thread;
1722 }
2e7b624b
YQ
1723 }
1724 }
1725}
1726
d50171e4
PA
1727void
1728check_breakpoints (CORE_ADDR stop_pc)
1729{
1730 struct process_info *proc = current_process ();
1731 struct breakpoint *bp, **bp_link;
1732
1733 bp = proc->breakpoints;
1734 bp_link = &proc->breakpoints;
1735
1736 while (bp)
b65d95c5 1737 {
802e8e6d
PA
1738 struct raw_breakpoint *raw = bp->raw;
1739
1740 if ((raw->raw_type == raw_bkpt_type_sw
1741 || raw->raw_type == raw_bkpt_type_hw)
1742 && raw->pc == stop_pc)
d50171e4 1743 {
802e8e6d 1744 if (!raw->inserted)
d50171e4
PA
1745 {
1746 warning ("Hit a removed breakpoint?");
1747 return;
1748 }
1749
9aa76cd0 1750 if (bp->type == other_breakpoint)
d50171e4 1751 {
9aa76cd0
YQ
1752 struct other_breakpoint *other_bp
1753 = (struct other_breakpoint *) bp;
1754
1755 if (other_bp->handler != NULL && (*other_bp->handler) (stop_pc))
1756 {
1757 *bp_link = bp->next;
d50171e4 1758
9aa76cd0 1759 release_breakpoint (proc, bp);
d50171e4 1760
9aa76cd0
YQ
1761 bp = *bp_link;
1762 continue;
1763 }
d50171e4
PA
1764 }
1765 }
1766
1767 bp_link = &bp->next;
1768 bp = *bp_link;
b65d95c5 1769 }
611cb4a5
DJ
1770}
1771
d50171e4
PA
1772int
1773breakpoint_here (CORE_ADDR addr)
1774{
802e8e6d
PA
1775 struct process_info *proc = current_process ();
1776 struct raw_breakpoint *bp;
1777
1778 for (bp = proc->raw_breakpoints; bp != NULL; bp = bp->next)
1779 if ((bp->raw_type == raw_bkpt_type_sw
1780 || bp->raw_type == raw_bkpt_type_hw)
1781 && bp->pc == addr)
1782 return 1;
1783
1784 return 0;
d50171e4
PA
1785}
1786
1787int
1788breakpoint_inserted_here (CORE_ADDR addr)
1789{
802e8e6d 1790 struct process_info *proc = current_process ();
8b07ae33 1791 struct raw_breakpoint *bp;
d50171e4 1792
802e8e6d
PA
1793 for (bp = proc->raw_breakpoints; bp != NULL; bp = bp->next)
1794 if ((bp->raw_type == raw_bkpt_type_sw
1795 || bp->raw_type == raw_bkpt_type_hw)
1796 && bp->pc == addr
1797 && bp->inserted)
1798 return 1;
d50171e4 1799
802e8e6d 1800 return 0;
d50171e4
PA
1801}
1802
582511be
PA
1803/* See mem-break.h. */
1804
1805int
1806software_breakpoint_inserted_here (CORE_ADDR addr)
1807{
1808 struct process_info *proc = current_process ();
1809 struct raw_breakpoint *bp;
1810
1811 for (bp = proc->raw_breakpoints; bp != NULL; bp = bp->next)
1812 if (bp->raw_type == raw_bkpt_type_sw
1813 && bp->pc == addr
1814 && bp->inserted)
1815 return 1;
1816
1817 return 0;
1818}
1819
1820/* See mem-break.h. */
1821
1822int
1823hardware_breakpoint_inserted_here (CORE_ADDR addr)
1824{
1825 struct process_info *proc = current_process ();
1826 struct raw_breakpoint *bp;
1827
1828 for (bp = proc->raw_breakpoints; bp != NULL; bp = bp->next)
1829 if (bp->raw_type == raw_bkpt_type_hw
1830 && bp->pc == addr
1831 && bp->inserted)
1832 return 1;
1833
1834 return 0;
1835}
1836
2d97cd35
AT
1837/* See mem-break.h. */
1838
1839int
3b9a79ef 1840single_step_breakpoint_inserted_here (CORE_ADDR addr)
2d97cd35
AT
1841{
1842 struct process_info *proc = current_process ();
1843 struct breakpoint *bp;
1844
1845 for (bp = proc->breakpoints; bp != NULL; bp = bp->next)
3b9a79ef 1846 if (bp->type == single_step_breakpoint
2d97cd35
AT
1847 && bp->raw->pc == addr
1848 && bp->raw->inserted)
1849 return 1;
1850
1851 return 0;
1852}
1853
d3bbe7a0
PA
1854static int
1855validate_inserted_breakpoint (struct raw_breakpoint *bp)
1856{
1857 unsigned char *buf;
1858 int err;
1859
1860 gdb_assert (bp->inserted);
802e8e6d 1861 gdb_assert (bp->raw_type == raw_bkpt_type_sw);
d3bbe7a0 1862
27165294
AT
1863 buf = (unsigned char *) alloca (bp_size (bp));
1864 err = (*the_target->read_memory) (bp->pc, buf, bp_size (bp));
1865 if (err || memcmp (buf, bp_opcode (bp), bp_size (bp)) != 0)
d3bbe7a0
PA
1866 {
1867 /* Tag it as gone. */
802e8e6d 1868 bp->inserted = -1;
d3bbe7a0
PA
1869 return 0;
1870 }
1871
1872 return 1;
1873}
1874
1875static void
1876delete_disabled_breakpoints (void)
1877{
1878 struct process_info *proc = current_process ();
1879 struct breakpoint *bp, *next;
1880
1881 for (bp = proc->breakpoints; bp != NULL; bp = next)
1882 {
1883 next = bp->next;
802e8e6d 1884 if (bp->raw->inserted < 0)
8376a3cb 1885 {
3b9a79ef 1886 /* If single_step_breakpoints become disabled, that means the
8376a3cb 1887 manipulations (insertion and removal) of them are wrong. */
3b9a79ef 1888 gdb_assert (bp->type != single_step_breakpoint);
8376a3cb
YQ
1889 delete_breakpoint_1 (proc, bp);
1890 }
d3bbe7a0
PA
1891 }
1892}
1893
1894/* Check if breakpoints we inserted still appear to be inserted. They
1895 may disappear due to a shared library unload, and worse, a new
1896 shared library may be reloaded at the same address as the
1897 previously unloaded one. If that happens, we should make sure that
1898 the shadow memory of the old breakpoints isn't used when reading or
1899 writing memory. */
1900
1901void
1902validate_breakpoints (void)
1903{
1904 struct process_info *proc = current_process ();
1905 struct breakpoint *bp;
1906
1907 for (bp = proc->breakpoints; bp != NULL; bp = bp->next)
1908 {
802e8e6d
PA
1909 struct raw_breakpoint *raw = bp->raw;
1910
1911 if (raw->raw_type == raw_bkpt_type_sw && raw->inserted > 0)
1912 validate_inserted_breakpoint (raw);
d3bbe7a0
PA
1913 }
1914
1915 delete_disabled_breakpoints ();
1916}
1917
611cb4a5 1918void
f450004a 1919check_mem_read (CORE_ADDR mem_addr, unsigned char *buf, int mem_len)
611cb4a5 1920{
95954743 1921 struct process_info *proc = current_process ();
8b07ae33 1922 struct raw_breakpoint *bp = proc->raw_breakpoints;
fa593d66 1923 struct fast_tracepoint_jump *jp = proc->fast_tracepoint_jumps;
611cb4a5 1924 CORE_ADDR mem_end = mem_addr + mem_len;
d3bbe7a0 1925 int disabled_one = 0;
611cb4a5 1926
fa593d66
PA
1927 for (; jp != NULL; jp = jp->next)
1928 {
1929 CORE_ADDR bp_end = jp->pc + jp->length;
1930 CORE_ADDR start, end;
1931 int copy_offset, copy_len, buf_offset;
1932
6bf36717
JK
1933 gdb_assert (fast_tracepoint_jump_shadow (jp) >= buf + mem_len
1934 || buf >= fast_tracepoint_jump_shadow (jp) + (jp)->length);
1935
fa593d66
PA
1936 if (mem_addr >= bp_end)
1937 continue;
1938 if (jp->pc >= mem_end)
1939 continue;
1940
1941 start = jp->pc;
1942 if (mem_addr > start)
1943 start = mem_addr;
1944
1945 end = bp_end;
1946 if (end > mem_end)
1947 end = mem_end;
1948
1949 copy_len = end - start;
1950 copy_offset = start - jp->pc;
1951 buf_offset = start - mem_addr;
1952
1953 if (jp->inserted)
1954 memcpy (buf + buf_offset,
1955 fast_tracepoint_jump_shadow (jp) + copy_offset,
1956 copy_len);
1957 }
1958
611cb4a5
DJ
1959 for (; bp != NULL; bp = bp->next)
1960 {
27165294 1961 CORE_ADDR bp_end = bp->pc + bp_size (bp);
611cb4a5
DJ
1962 CORE_ADDR start, end;
1963 int copy_offset, copy_len, buf_offset;
1964
802e8e6d
PA
1965 if (bp->raw_type != raw_bkpt_type_sw)
1966 continue;
1967
6bf36717
JK
1968 gdb_assert (bp->old_data >= buf + mem_len
1969 || buf >= &bp->old_data[sizeof (bp->old_data)]);
1970
611cb4a5
DJ
1971 if (mem_addr >= bp_end)
1972 continue;
1973 if (bp->pc >= mem_end)
1974 continue;
1975
1976 start = bp->pc;
1977 if (mem_addr > start)
1978 start = mem_addr;
1979
1980 end = bp_end;
1981 if (end > mem_end)
1982 end = mem_end;
1983
1984 copy_len = end - start;
1985 copy_offset = start - bp->pc;
1986 buf_offset = start - mem_addr;
1987
802e8e6d 1988 if (bp->inserted > 0)
d3bbe7a0
PA
1989 {
1990 if (validate_inserted_breakpoint (bp))
1991 memcpy (buf + buf_offset, bp->old_data + copy_offset, copy_len);
1992 else
1993 disabled_one = 1;
1994 }
611cb4a5 1995 }
d3bbe7a0
PA
1996
1997 if (disabled_one)
1998 delete_disabled_breakpoints ();
611cb4a5
DJ
1999}
2000
2001void
b9fd1791
PA
2002check_mem_write (CORE_ADDR mem_addr, unsigned char *buf,
2003 const unsigned char *myaddr, int mem_len)
611cb4a5 2004{
95954743 2005 struct process_info *proc = current_process ();
8b07ae33 2006 struct raw_breakpoint *bp = proc->raw_breakpoints;
fa593d66 2007 struct fast_tracepoint_jump *jp = proc->fast_tracepoint_jumps;
611cb4a5 2008 CORE_ADDR mem_end = mem_addr + mem_len;
d3bbe7a0 2009 int disabled_one = 0;
611cb4a5 2010
fa593d66
PA
2011 /* First fast tracepoint jumps, then breakpoint traps on top. */
2012
2013 for (; jp != NULL; jp = jp->next)
2014 {
2015 CORE_ADDR jp_end = jp->pc + jp->length;
2016 CORE_ADDR start, end;
2017 int copy_offset, copy_len, buf_offset;
2018
6bf36717
JK
2019 gdb_assert (fast_tracepoint_jump_shadow (jp) >= myaddr + mem_len
2020 || myaddr >= fast_tracepoint_jump_shadow (jp) + (jp)->length);
2021 gdb_assert (fast_tracepoint_jump_insn (jp) >= buf + mem_len
2022 || buf >= fast_tracepoint_jump_insn (jp) + (jp)->length);
2023
fa593d66
PA
2024 if (mem_addr >= jp_end)
2025 continue;
2026 if (jp->pc >= mem_end)
2027 continue;
2028
2029 start = jp->pc;
2030 if (mem_addr > start)
2031 start = mem_addr;
2032
2033 end = jp_end;
2034 if (end > mem_end)
2035 end = mem_end;
2036
2037 copy_len = end - start;
2038 copy_offset = start - jp->pc;
2039 buf_offset = start - mem_addr;
2040
2041 memcpy (fast_tracepoint_jump_shadow (jp) + copy_offset,
b9fd1791 2042 myaddr + buf_offset, copy_len);
fa593d66
PA
2043 if (jp->inserted)
2044 memcpy (buf + buf_offset,
2045 fast_tracepoint_jump_insn (jp) + copy_offset, copy_len);
2046 }
2047
611cb4a5
DJ
2048 for (; bp != NULL; bp = bp->next)
2049 {
27165294 2050 CORE_ADDR bp_end = bp->pc + bp_size (bp);
611cb4a5
DJ
2051 CORE_ADDR start, end;
2052 int copy_offset, copy_len, buf_offset;
2053
802e8e6d
PA
2054 if (bp->raw_type != raw_bkpt_type_sw)
2055 continue;
2056
6bf36717
JK
2057 gdb_assert (bp->old_data >= myaddr + mem_len
2058 || myaddr >= &bp->old_data[sizeof (bp->old_data)]);
2059
611cb4a5
DJ
2060 if (mem_addr >= bp_end)
2061 continue;
2062 if (bp->pc >= mem_end)
2063 continue;
2064
2065 start = bp->pc;
2066 if (mem_addr > start)
2067 start = mem_addr;
2068
2069 end = bp_end;
2070 if (end > mem_end)
2071 end = mem_end;
2072
2073 copy_len = end - start;
2074 copy_offset = start - bp->pc;
2075 buf_offset = start - mem_addr;
2076
b9fd1791 2077 memcpy (bp->old_data + copy_offset, myaddr + buf_offset, copy_len);
802e8e6d 2078 if (bp->inserted > 0)
d3bbe7a0
PA
2079 {
2080 if (validate_inserted_breakpoint (bp))
27165294 2081 memcpy (buf + buf_offset, bp_opcode (bp) + copy_offset, copy_len);
d3bbe7a0
PA
2082 else
2083 disabled_one = 1;
2084 }
611cb4a5 2085 }
d3bbe7a0
PA
2086
2087 if (disabled_one)
2088 delete_disabled_breakpoints ();
611cb4a5 2089}
ae13219e 2090
95954743 2091/* Delete all breakpoints, and un-insert them from the inferior. */
ae13219e
DJ
2092
2093void
2094delete_all_breakpoints (void)
2095{
95954743
PA
2096 struct process_info *proc = current_process ();
2097
2098 while (proc->breakpoints)
8b07ae33 2099 delete_breakpoint_1 (proc, proc->breakpoints);
95954743
PA
2100}
2101
f9e39928 2102/* Clear the "inserted" flag in all breakpoints. */
95954743
PA
2103
2104void
f9e39928 2105mark_breakpoints_out (struct process_info *proc)
95954743 2106{
8b07ae33 2107 struct raw_breakpoint *raw_bp;
95954743 2108
8b07ae33
PA
2109 for (raw_bp = proc->raw_breakpoints; raw_bp != NULL; raw_bp = raw_bp->next)
2110 raw_bp->inserted = 0;
f9e39928
PA
2111}
2112
2113/* Release all breakpoints, but do not try to un-insert them from the
2114 inferior. */
2115
2116void
2117free_all_breakpoints (struct process_info *proc)
2118{
2119 mark_breakpoints_out (proc);
8b07ae33
PA
2120
2121 /* Note: use PROC explicitly instead of deferring to
2122 delete_all_breakpoints --- CURRENT_INFERIOR may already have been
2123 released when we get here. There should be no call to
2124 current_process from here on. */
95954743 2125 while (proc->breakpoints)
8b07ae33 2126 delete_breakpoint_1 (proc, proc->breakpoints);
ae13219e 2127}
ddcbc397
DB
2128
2129/* Clone an agent expression. */
2130
2131static struct agent_expr *
2132clone_agent_expr (const struct agent_expr *src_ax)
2133{
2134 struct agent_expr *ax;
2135
8d749320 2136 ax = XCNEW (struct agent_expr);
ddcbc397 2137 ax->length = src_ax->length;
224c3ddb 2138 ax->bytes = (unsigned char *) xcalloc (ax->length, 1);
ddcbc397
DB
2139 memcpy (ax->bytes, src_ax->bytes, ax->length);
2140 return ax;
2141}
2142
2143/* Deep-copy the contents of one breakpoint to another. */
2144
2145static struct breakpoint *
bec903c9 2146clone_one_breakpoint (const struct breakpoint *src, ptid_t ptid)
ddcbc397
DB
2147{
2148 struct breakpoint *dest;
2149 struct raw_breakpoint *dest_raw;
ddcbc397
DB
2150
2151 /* Clone the raw breakpoint. */
8d749320 2152 dest_raw = XCNEW (struct raw_breakpoint);
ddcbc397
DB
2153 dest_raw->raw_type = src->raw->raw_type;
2154 dest_raw->refcount = src->raw->refcount;
2155 dest_raw->pc = src->raw->pc;
27165294 2156 dest_raw->kind = src->raw->kind;
ddcbc397
DB
2157 memcpy (dest_raw->old_data, src->raw->old_data, MAX_BREAKPOINT_LEN);
2158 dest_raw->inserted = src->raw->inserted;
2159
2160 /* Clone the high-level breakpoint. */
9aa76cd0 2161 if (is_gdb_breakpoint (src->type))
ddcbc397 2162 {
9aa76cd0
YQ
2163 struct gdb_breakpoint *gdb_dest = XCNEW (struct gdb_breakpoint);
2164 struct point_cond_list *current_cond;
2165 struct point_cond_list *new_cond;
2166 struct point_cond_list *cond_tail = NULL;
2167 struct point_command_list *current_cmd;
2168 struct point_command_list *new_cmd;
2169 struct point_command_list *cmd_tail = NULL;
2170
2171 /* Clone the condition list. */
2172 for (current_cond = ((struct gdb_breakpoint *) src)->cond_list;
2173 current_cond != NULL;
2174 current_cond = current_cond->next)
2175 {
2176 new_cond = XCNEW (struct point_cond_list);
2177 new_cond->cond = clone_agent_expr (current_cond->cond);
2178 APPEND_TO_LIST (&gdb_dest->cond_list, new_cond, cond_tail);
2179 }
2180
2181 /* Clone the command list. */
2182 for (current_cmd = ((struct gdb_breakpoint *) src)->command_list;
2183 current_cmd != NULL;
2184 current_cmd = current_cmd->next)
2185 {
2186 new_cmd = XCNEW (struct point_command_list);
2187 new_cmd->cmd = clone_agent_expr (current_cmd->cmd);
2188 new_cmd->persistence = current_cmd->persistence;
2189 APPEND_TO_LIST (&gdb_dest->command_list, new_cmd, cmd_tail);
2190 }
2191
2192 dest = (struct breakpoint *) gdb_dest;
ddcbc397 2193 }
9aa76cd0
YQ
2194 else if (src->type == other_breakpoint)
2195 {
2196 struct other_breakpoint *other_dest = XCNEW (struct other_breakpoint);
ddcbc397 2197
9aa76cd0
YQ
2198 other_dest->handler = ((struct other_breakpoint *) src)->handler;
2199 dest = (struct breakpoint *) other_dest;
2200 }
3b9a79ef 2201 else if (src->type == single_step_breakpoint)
ddcbc397 2202 {
3b9a79ef
YQ
2203 struct single_step_breakpoint *ss_dest
2204 = XCNEW (struct single_step_breakpoint);
9aa76cd0 2205
3b9a79ef
YQ
2206 dest = (struct breakpoint *) ss_dest;
2207 /* Since single-step breakpoint is thread specific, don't copy
bec903c9 2208 thread id from SRC, use ID instead. */
3b9a79ef 2209 ss_dest->ptid = ptid;
ddcbc397 2210 }
9aa76cd0
YQ
2211 else
2212 gdb_assert_not_reached ("unhandled breakpoint type");
2213
2214 dest->type = src->type;
2215 dest->raw = dest_raw;
ddcbc397
DB
2216
2217 return dest;
2218}
2219
63c40ec7 2220/* See mem-break.h. */
ddcbc397
DB
2221
2222void
63c40ec7
YQ
2223clone_all_breakpoints (struct thread_info *child_thread,
2224 const struct thread_info *parent_thread)
ddcbc397
DB
2225{
2226 const struct breakpoint *bp;
2227 struct breakpoint *new_bkpt;
2228 struct breakpoint *bkpt_tail = NULL;
2229 struct raw_breakpoint *raw_bkpt_tail = NULL;
63c40ec7
YQ
2230 struct process_info *child_proc = get_thread_process (child_thread);
2231 struct process_info *parent_proc = get_thread_process (parent_thread);
2232 struct breakpoint **new_list = &child_proc->breakpoints;
2233 struct raw_breakpoint **new_raw_list = &child_proc->raw_breakpoints;
ddcbc397 2234
63c40ec7 2235 for (bp = parent_proc->breakpoints; bp != NULL; bp = bp->next)
ddcbc397 2236 {
bec903c9 2237 new_bkpt = clone_one_breakpoint (bp, ptid_of (child_thread));
ddcbc397
DB
2238 APPEND_TO_LIST (new_list, new_bkpt, bkpt_tail);
2239 APPEND_TO_LIST (new_raw_list, new_bkpt->raw, raw_bkpt_tail);
2240 }
2241}
This page took 1.392174 seconds and 4 git commands to generate.