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 | * |
| 36 | * Tracepoints are provided by the main binary as well as by any |
| 37 | * opened libraries: every time an ELF file is mapped into the address |
| 38 | * space, a new set of tracepoints is extracted, and filtered |
| 39 | * according to user settings. Those tracepoints that are left are |
| 40 | * then realized, and the tracing starts. |
| 41 | * |
| 42 | * A scheme like this would take care of gradually introducing |
| 43 | * breakpoints when the library is mapped, and therefore ready, and |
| 44 | * would avoid certain hacks. For example on PPC64, we don't actually |
| 45 | * add breakpoints to PLT. Instead, we read the PLT (which contains |
| 46 | * addresses, not code), to figure out where to put the breakpoints. |
| 47 | * In prelinked code, that address is non-zero, and points to an |
| 48 | * address that's not yet mapped. ptrace then fails when we try to |
| 49 | * add the breakpoint. |
| 50 | * |
| 51 | * Ideally, return breakpoints would be just a special kind of |
| 52 | * tracepoint that has attached some magic. Or a feature of a |
| 53 | * tracepoint. Service breakpoints like the handling of dlopen would |
| 54 | * be a low-level breakpoint, likely without tracepoint attached. |
| 55 | * |
| 56 | * So that's for sometimes. |
| 57 | */ |
| 58 | |
Petr Machata | d3dc17b | 2012-03-21 03:23:25 +0100 | [diff] [blame] | 59 | #include "sysdep.h" |
Petr Machata | 2b46cfc | 2012-02-18 11:17:29 +0100 | [diff] [blame] | 60 | #include "library.h" |
Petr Machata | 9294d82 | 2012-02-07 12:35:58 +0100 | [diff] [blame] | 61 | |
| 62 | struct Process; |
Petr Machata | a9fd8f4 | 2012-02-07 13:25:56 +0100 | [diff] [blame] | 63 | struct breakpoint; |
| 64 | |
| 65 | struct bp_callbacks { |
Petr Machata | d09d240 | 2012-04-13 21:34:08 +0200 | [diff] [blame] | 66 | void (*on_hit)(struct breakpoint *bp, struct Process *proc); |
| 67 | void (*on_continue)(struct breakpoint *bp, struct Process *proc); |
Petr Machata | a9fd8f4 | 2012-02-07 13:25:56 +0100 | [diff] [blame] | 68 | }; |
Petr Machata | 9294d82 | 2012-02-07 12:35:58 +0100 | [diff] [blame] | 69 | |
Petr Machata | 9294d82 | 2012-02-07 12:35:58 +0100 | [diff] [blame] | 70 | struct breakpoint { |
Petr Machata | a9fd8f4 | 2012-02-07 13:25:56 +0100 | [diff] [blame] | 71 | struct bp_callbacks *cbs; |
Petr Machata | 29add4f | 2012-02-18 16:38:05 +0100 | [diff] [blame] | 72 | struct library_symbol *libsym; |
Petr Machata | 9294d82 | 2012-02-07 12:35:58 +0100 | [diff] [blame] | 73 | void *addr; |
| 74 | unsigned char orig_value[BREAKPOINT_LENGTH]; |
| 75 | int enabled; |
Petr Machata | 2b46cfc | 2012-02-18 11:17:29 +0100 | [diff] [blame] | 76 | struct arch_breakpoint_data arch; |
Petr Machata | 9294d82 | 2012-02-07 12:35:58 +0100 | [diff] [blame] | 77 | }; |
| 78 | |
Petr Machata | a9fd8f4 | 2012-02-07 13:25:56 +0100 | [diff] [blame] | 79 | /* Call on-hit handler of BP, if any is set. */ |
| 80 | void breakpoint_on_hit(struct breakpoint *bp, struct Process *proc); |
| 81 | |
Petr Machata | d09d240 | 2012-04-13 21:34:08 +0200 | [diff] [blame] | 82 | /* Call on-continue handler of BP. If none is set, call |
Petr Machata | 56a9ea6 | 2012-03-27 03:09:29 +0200 | [diff] [blame] | 83 | * continue_after_breakpoint. */ |
| 84 | void breakpoint_on_continue(struct breakpoint *bp, struct Process *proc); |
| 85 | |
Petr Machata | 2b46cfc | 2012-02-18 11:17:29 +0100 | [diff] [blame] | 86 | /* Initialize a breakpoint structure. That doesn't actually realize |
| 87 | * the breakpoint. The breakpoint is initially assumed to be |
| 88 | * disabled. orig_value has to be set separately. CBS may be |
| 89 | * NULL. */ |
| 90 | int breakpoint_init(struct breakpoint *bp, struct Process *proc, |
Petr Machata | 55ac932 | 2012-03-27 03:07:35 +0200 | [diff] [blame] | 91 | target_address_t addr, struct library_symbol *libsym); |
| 92 | |
Petr Machata | d3cc988 | 2012-04-13 21:40:23 +0200 | [diff] [blame] | 93 | /* Make a clone of breakpoint BP into the area of memory pointed to by |
| 94 | * RETP. The original breakpoint was assigned to process OLD_PROC, |
| 95 | * the cloned breakpoint will be attached to process NEW_PROC. |
| 96 | * Returns 0 on success or a negative value on failure. */ |
| 97 | int breakpoint_clone(struct breakpoint *retp, struct Process *new_proc, |
| 98 | struct breakpoint *bp, struct Process *old_proc); |
| 99 | |
Petr Machata | 55ac932 | 2012-03-27 03:07:35 +0200 | [diff] [blame] | 100 | /* Set callbacks. If CBS is non-NULL, then BP->cbs shall be NULL. */ |
| 101 | void breakpoint_set_callbacks(struct breakpoint *bp, struct bp_callbacks *cbs); |
Petr Machata | 2b46cfc | 2012-02-18 11:17:29 +0100 | [diff] [blame] | 102 | |
Petr Machata | 0fe76c6 | 2012-04-14 02:29:30 +0200 | [diff] [blame^] | 103 | /* Destroy a breakpoint structure. */ |
Petr Machata | 8cce119 | 2012-03-25 01:37:19 +0100 | [diff] [blame] | 104 | void breakpoint_destroy(struct breakpoint *bp); |
| 105 | |
Petr Machata | 52dbfb1 | 2012-03-29 16:38:26 +0200 | [diff] [blame] | 106 | /* Call enable_breakpoint the first time it's called. Returns 0 on |
| 107 | * success and a negative value on failure. */ |
Petr Machata | fa0c570 | 2012-04-13 18:43:40 +0200 | [diff] [blame] | 108 | int breakpoint_turn_on(struct breakpoint *bp, struct Process *proc); |
Petr Machata | 52dbfb1 | 2012-03-29 16:38:26 +0200 | [diff] [blame] | 109 | |
| 110 | /* Call disable_breakpoint when turned off the same number of times |
| 111 | * that it was turned on. Returns 0 on success and a negative value |
| 112 | * on failure. */ |
Petr Machata | fa0c570 | 2012-04-13 18:43:40 +0200 | [diff] [blame] | 113 | int breakpoint_turn_off(struct breakpoint *bp, struct Process *proc); |
Petr Machata | 52dbfb1 | 2012-03-29 16:38:26 +0200 | [diff] [blame] | 114 | |
| 115 | /* This is actually several functions rolled in one: |
| 116 | * - malloc |
Petr Machata | 9294d82 | 2012-02-07 12:35:58 +0100 | [diff] [blame] | 117 | * - breakpoint_init |
Petr Machata | 52dbfb1 | 2012-03-29 16:38:26 +0200 | [diff] [blame] | 118 | * - proc_add_breakpoint |
Petr Machata | 9294d82 | 2012-02-07 12:35:58 +0100 | [diff] [blame] | 119 | * - breakpoint_enable |
| 120 | * XXX I think it should be broken up somehow. */ |
| 121 | struct breakpoint *insert_breakpoint(struct Process *proc, void *addr, |
Petr Machata | 9df1501 | 2012-02-20 12:49:46 +0100 | [diff] [blame] | 122 | struct library_symbol *libsym); |
Petr Machata | 9294d82 | 2012-02-07 12:35:58 +0100 | [diff] [blame] | 123 | |
Petr Machata | e9aebd6 | 2012-03-25 01:38:53 +0100 | [diff] [blame] | 124 | /* Name of a symbol associated with BP. May be NULL. */ |
| 125 | const char *breakpoint_name(const struct breakpoint *bp); |
| 126 | |
Petr Machata | 52dbfb1 | 2012-03-29 16:38:26 +0200 | [diff] [blame] | 127 | /* A library that this breakpoint comes from. May be NULL. */ |
| 128 | struct library *breakpoint_library(const struct breakpoint *bp); |
| 129 | |
Petr Machata | 8cce119 | 2012-03-25 01:37:19 +0100 | [diff] [blame] | 130 | /* Again, this seems to be several interfaces rolled into one: |
| 131 | * - breakpoint_disable |
Petr Machata | 52dbfb1 | 2012-03-29 16:38:26 +0200 | [diff] [blame] | 132 | * - proc_remove_breakpoint |
Petr Machata | 8cce119 | 2012-03-25 01:37:19 +0100 | [diff] [blame] | 133 | * - breakpoint_destroy |
| 134 | * XXX */ |
Petr Machata | 9294d82 | 2012-02-07 12:35:58 +0100 | [diff] [blame] | 135 | void delete_breakpoint(struct Process *proc, void *addr); |
| 136 | |
| 137 | /* XXX some of the following belongs to proc.h/proc.c. */ |
| 138 | struct breakpoint *address2bpstruct(struct Process *proc, void *addr); |
| 139 | void enable_all_breakpoints(struct Process *proc); |
| 140 | void disable_all_breakpoints(struct Process *proc); |
Petr Machata | 75934ad | 2012-04-14 02:28:03 +0200 | [diff] [blame] | 141 | int breakpoints_init(struct Process *proc); |
Petr Machata | 9294d82 | 2012-02-07 12:35:58 +0100 | [diff] [blame] | 142 | |
Petr Machata | 9294d82 | 2012-02-07 12:35:58 +0100 | [diff] [blame] | 143 | #endif /* BREAKPOINT_H */ |