Petr Machata | 9294d82 | 2012-02-07 12:35:58 +0100 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of ltrace. |
| 3 | * Copyright (C) 2012 Petr Machata, Red Hat Inc. |
| 4 | * Copyright (C) 2009 Juan Cespedes |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License as |
| 8 | * published by the Free Software Foundation; either version 2 of the |
| 9 | * License, or (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, but |
| 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA |
| 19 | * 02110-1301 USA |
| 20 | */ |
| 21 | |
| 22 | #ifndef BREAKPOINT_H |
| 23 | #define BREAKPOINT_H |
| 24 | |
| 25 | /* XXX This is currently a very weak abstraction. We would like to |
| 26 | * much expand this to allow things like breakpoints on SDT probes and |
| 27 | * such. |
| 28 | * |
| 29 | * In particular, we would like to add a tracepoint abstraction. |
| 30 | * Tracepoint is a traceable feature--e.g. an exact address, a DWARF |
| 31 | * symbol, an ELF symbol, a PLT entry, or an SDT probe. Tracepoints |
| 32 | * are named and the user can configure which of them he wants to |
| 33 | * enable. Realized tracepoints enable breakpoints, which are a |
| 34 | * low-level realization of high-level tracepoint. |
| 35 | * |
Petr Machata | 0c3377e | 2012-04-16 18:43:00 +0200 | [diff] [blame] | 36 | * Service breakpoints like the handling of dlopen would be a |
| 37 | * low-level breakpoint, likely without tracepoint attached. |
Petr Machata | 9294d82 | 2012-02-07 12:35:58 +0100 | [diff] [blame] | 38 | * |
| 39 | * So that's for sometimes. |
| 40 | */ |
| 41 | |
Petr Machata | d3dc17b | 2012-03-21 03:23:25 +0100 | [diff] [blame] | 42 | #include "sysdep.h" |
Petr Machata | 2b46cfc | 2012-02-18 11:17:29 +0100 | [diff] [blame] | 43 | #include "library.h" |
Petr Machata | 929bd57 | 2012-12-17 03:20:34 +0100 | [diff] [blame] | 44 | #include "forward.h" |
Petr Machata | a9fd8f4 | 2012-02-07 13:25:56 +0100 | [diff] [blame] | 45 | |
| 46 | struct bp_callbacks { |
Petr Machata | 929bd57 | 2012-12-17 03:20:34 +0100 | [diff] [blame] | 47 | void (*on_hit)(struct breakpoint *bp, struct process *proc); |
| 48 | void (*on_continue)(struct breakpoint *bp, struct process *proc); |
| 49 | void (*on_retract)(struct breakpoint *bp, struct process *proc); |
Petr Machata | a9fd8f4 | 2012-02-07 13:25:56 +0100 | [diff] [blame] | 50 | }; |
Petr Machata | 9294d82 | 2012-02-07 12:35:58 +0100 | [diff] [blame] | 51 | |
Petr Machata | 9294d82 | 2012-02-07 12:35:58 +0100 | [diff] [blame] | 52 | struct breakpoint { |
Petr Machata | a9fd8f4 | 2012-02-07 13:25:56 +0100 | [diff] [blame] | 53 | struct bp_callbacks *cbs; |
Petr Machata | 29add4f | 2012-02-18 16:38:05 +0100 | [diff] [blame] | 54 | struct library_symbol *libsym; |
Petr Machata | 9294d82 | 2012-02-07 12:35:58 +0100 | [diff] [blame] | 55 | void *addr; |
| 56 | unsigned char orig_value[BREAKPOINT_LENGTH]; |
| 57 | int enabled; |
Petr Machata | 2b46cfc | 2012-02-18 11:17:29 +0100 | [diff] [blame] | 58 | struct arch_breakpoint_data arch; |
Petr Machata | 9294d82 | 2012-02-07 12:35:58 +0100 | [diff] [blame] | 59 | }; |
| 60 | |
Petr Machata | a9fd8f4 | 2012-02-07 13:25:56 +0100 | [diff] [blame] | 61 | /* Call on-hit handler of BP, if any is set. */ |
Petr Machata | 929bd57 | 2012-12-17 03:20:34 +0100 | [diff] [blame] | 62 | void breakpoint_on_hit(struct breakpoint *bp, struct process *proc); |
Petr Machata | a9fd8f4 | 2012-02-07 13:25:56 +0100 | [diff] [blame] | 63 | |
Petr Machata | d09d240 | 2012-04-13 21:34:08 +0200 | [diff] [blame] | 64 | /* Call on-continue handler of BP. If none is set, call |
Petr Machata | 56a9ea6 | 2012-03-27 03:09:29 +0200 | [diff] [blame] | 65 | * continue_after_breakpoint. */ |
Petr Machata | 929bd57 | 2012-12-17 03:20:34 +0100 | [diff] [blame] | 66 | void breakpoint_on_continue(struct breakpoint *bp, struct process *proc); |
Petr Machata | 56a9ea6 | 2012-03-27 03:09:29 +0200 | [diff] [blame] | 67 | |
Petr Machata | 86d3828 | 2012-04-24 18:09:01 +0200 | [diff] [blame] | 68 | /* Call on-retract handler of BP, if any is set. This should be |
| 69 | * called before the breakpoints are destroyed. The reason for a |
| 70 | * separate interface is that breakpoint_destroy has to be callable |
| 71 | * without PROC. ON_DISABLE might be useful as well, but that would |
| 72 | * be called every time we disable the breakpoint, which is too often |
| 73 | * (a breakpoint has to be disabled every time that we need to execute |
| 74 | * the instruction underneath it). */ |
Petr Machata | 929bd57 | 2012-12-17 03:20:34 +0100 | [diff] [blame] | 75 | void breakpoint_on_retract(struct breakpoint *bp, struct process *proc); |
Petr Machata | 86d3828 | 2012-04-24 18:09:01 +0200 | [diff] [blame] | 76 | |
Petr Machata | 2b46cfc | 2012-02-18 11:17:29 +0100 | [diff] [blame] | 77 | /* Initialize a breakpoint structure. That doesn't actually realize |
| 78 | * the breakpoint. The breakpoint is initially assumed to be |
| 79 | * disabled. orig_value has to be set separately. CBS may be |
| 80 | * NULL. */ |
Petr Machata | 929bd57 | 2012-12-17 03:20:34 +0100 | [diff] [blame] | 81 | int breakpoint_init(struct breakpoint *bp, struct process *proc, |
Petr Machata | bac2da5 | 2012-05-29 00:42:59 +0200 | [diff] [blame] | 82 | arch_addr_t addr, struct library_symbol *libsym); |
Petr Machata | 55ac932 | 2012-03-27 03:07:35 +0200 | [diff] [blame] | 83 | |
Petr Machata | d3cc988 | 2012-04-13 21:40:23 +0200 | [diff] [blame] | 84 | /* Make a clone of breakpoint BP into the area of memory pointed to by |
| 85 | * RETP. The original breakpoint was assigned to process OLD_PROC, |
| 86 | * the cloned breakpoint will be attached to process NEW_PROC. |
| 87 | * Returns 0 on success or a negative value on failure. */ |
Petr Machata | 929bd57 | 2012-12-17 03:20:34 +0100 | [diff] [blame] | 88 | int breakpoint_clone(struct breakpoint *retp, struct process *new_proc, |
| 89 | struct breakpoint *bp, struct process *old_proc); |
Petr Machata | d3cc988 | 2012-04-13 21:40:23 +0200 | [diff] [blame] | 90 | |
Petr Machata | 55ac932 | 2012-03-27 03:07:35 +0200 | [diff] [blame] | 91 | /* Set callbacks. If CBS is non-NULL, then BP->cbs shall be NULL. */ |
| 92 | void breakpoint_set_callbacks(struct breakpoint *bp, struct bp_callbacks *cbs); |
Petr Machata | 2b46cfc | 2012-02-18 11:17:29 +0100 | [diff] [blame] | 93 | |
Petr Machata | 0fe76c6 | 2012-04-14 02:29:30 +0200 | [diff] [blame] | 94 | /* Destroy a breakpoint structure. */ |
Petr Machata | 8cce119 | 2012-03-25 01:37:19 +0100 | [diff] [blame] | 95 | void breakpoint_destroy(struct breakpoint *bp); |
| 96 | |
Petr Machata | 52dbfb1 | 2012-03-29 16:38:26 +0200 | [diff] [blame] | 97 | /* Call enable_breakpoint the first time it's called. Returns 0 on |
| 98 | * success and a negative value on failure. */ |
Petr Machata | 929bd57 | 2012-12-17 03:20:34 +0100 | [diff] [blame] | 99 | int breakpoint_turn_on(struct breakpoint *bp, struct process *proc); |
Petr Machata | 52dbfb1 | 2012-03-29 16:38:26 +0200 | [diff] [blame] | 100 | |
| 101 | /* Call disable_breakpoint when turned off the same number of times |
| 102 | * that it was turned on. Returns 0 on success and a negative value |
| 103 | * on failure. */ |
Petr Machata | 929bd57 | 2012-12-17 03:20:34 +0100 | [diff] [blame] | 104 | int breakpoint_turn_off(struct breakpoint *bp, struct process *proc); |
Petr Machata | 52dbfb1 | 2012-03-29 16:38:26 +0200 | [diff] [blame] | 105 | |
Petr Machata | 051dffa | 2012-04-15 04:19:17 +0200 | [diff] [blame] | 106 | /* Utility function that does what typically needs to be done when a |
| 107 | * breakpoint is to be inserted. It checks whether there is another |
Petr Machata | 622581f | 2012-04-23 19:40:40 +0200 | [diff] [blame] | 108 | * breakpoint in PROC->LEADER for given ADDR. If not, it allocates |
| 109 | * memory for a new breakpoint on the heap, initializes it, and calls |
Petr Machata | 051dffa | 2012-04-15 04:19:17 +0200 | [diff] [blame] | 110 | * PROC_ADD_BREAKPOINT to add the newly-created breakpoint. For newly |
| 111 | * added as well as preexisting breakpoints, it then calls |
| 112 | * BREAKPOINT_TURN_ON. If anything fails, it cleans up and returns |
| 113 | * NULL. Otherwise it returns the breakpoint for ADDR. */ |
Petr Machata | 929bd57 | 2012-12-17 03:20:34 +0100 | [diff] [blame] | 114 | struct breakpoint *insert_breakpoint(struct process *proc, void *addr, |
Petr Machata | 9df1501 | 2012-02-20 12:49:46 +0100 | [diff] [blame] | 115 | struct library_symbol *libsym); |
Petr Machata | 9294d82 | 2012-02-07 12:35:58 +0100 | [diff] [blame] | 116 | |
Petr Machata | e9aebd6 | 2012-03-25 01:38:53 +0100 | [diff] [blame] | 117 | /* Name of a symbol associated with BP. May be NULL. */ |
| 118 | const char *breakpoint_name(const struct breakpoint *bp); |
| 119 | |
Petr Machata | 52dbfb1 | 2012-03-29 16:38:26 +0200 | [diff] [blame] | 120 | /* A library that this breakpoint comes from. May be NULL. */ |
| 121 | struct library *breakpoint_library(const struct breakpoint *bp); |
| 122 | |
Petr Machata | 8cce119 | 2012-03-25 01:37:19 +0100 | [diff] [blame] | 123 | /* Again, this seems to be several interfaces rolled into one: |
| 124 | * - breakpoint_disable |
Petr Machata | 52dbfb1 | 2012-03-29 16:38:26 +0200 | [diff] [blame] | 125 | * - proc_remove_breakpoint |
Petr Machata | 8cce119 | 2012-03-25 01:37:19 +0100 | [diff] [blame] | 126 | * - breakpoint_destroy |
| 127 | * XXX */ |
Petr Machata | 929bd57 | 2012-12-17 03:20:34 +0100 | [diff] [blame] | 128 | void delete_breakpoint(struct process *proc, void *addr); |
Petr Machata | 9294d82 | 2012-02-07 12:35:58 +0100 | [diff] [blame] | 129 | |
| 130 | /* XXX some of the following belongs to proc.h/proc.c. */ |
Petr Machata | 929bd57 | 2012-12-17 03:20:34 +0100 | [diff] [blame] | 131 | struct breakpoint *address2bpstruct(struct process *proc, void *addr); |
| 132 | void enable_all_breakpoints(struct process *proc); |
| 133 | void disable_all_breakpoints(struct process *proc); |
| 134 | int breakpoints_init(struct process *proc); |
Petr Machata | 9294d82 | 2012-02-07 12:35:58 +0100 | [diff] [blame] | 135 | |
Petr Machata | 9294d82 | 2012-02-07 12:35:58 +0100 | [diff] [blame] | 136 | #endif /* BREAKPOINT_H */ |