| Juan Cespedes | d44c6b8 | 1998-09-25 14:48:42 +0200 | [diff] [blame] | 1 | #include "config.h" |
| Juan Cespedes | d44c6b8 | 1998-09-25 14:48:42 +0200 | [diff] [blame] | 2 | |
| Juan Cespedes | 5b3ffdf | 2001-07-02 00:52:45 +0200 | [diff] [blame] | 3 | #include <stdlib.h> |
| Juan Cespedes | 7186e2a | 2003-01-31 19:56:34 +0100 | [diff] [blame] | 4 | #include <string.h> |
| Juan Cespedes | 5b3ffdf | 2001-07-02 00:52:45 +0200 | [diff] [blame] | 5 | #include <assert.h> |
| 6 | |
| Juan Cespedes | f1bfe20 | 2002-03-27 00:22:23 +0100 | [diff] [blame] | 7 | #ifdef __powerpc__ |
| 8 | #include <sys/ptrace.h> |
| 9 | #endif |
| 10 | |
| Juan Cespedes | f728123 | 2009-06-25 16:11:21 +0200 | [diff] [blame] | 11 | #include "common.h" |
| Juan Cespedes | 5b3ffdf | 2001-07-02 00:52:45 +0200 | [diff] [blame] | 12 | |
| 13 | /*****************************************************************************/ |
| 14 | |
| Juan Cespedes | 1dec217 | 2009-05-07 10:12:10 +0200 | [diff] [blame] | 15 | Breakpoint * |
| Juan Cespedes | a8909f7 | 2009-04-28 20:02:41 +0200 | [diff] [blame] | 16 | address2bpstruct(Process *proc, void *addr) { |
| Petr Machata | 2662768 | 2011-07-08 18:15:32 +0200 | [diff] [blame] | 17 | assert(proc != NULL); |
| 18 | assert(proc->breakpoints != NULL); |
| Juan Cespedes | cd8976d | 2009-05-14 13:47:58 +0200 | [diff] [blame] | 19 | debug(DEBUG_FUNCTION, "address2bpstruct(pid=%d, addr=%p)", proc->pid, addr); |
| Juan Cespedes | cac15c3 | 2003-01-31 18:58:58 +0100 | [diff] [blame] | 20 | return dict_find_entry(proc->breakpoints, addr); |
| Juan Cespedes | 5b3ffdf | 2001-07-02 00:52:45 +0200 | [diff] [blame] | 21 | } |
| 22 | |
| Ian Wienand | 9a2ad35 | 2006-02-20 22:44:45 +0100 | [diff] [blame] | 23 | void |
| Juan Cespedes | a8909f7 | 2009-04-28 20:02:41 +0200 | [diff] [blame] | 24 | insert_breakpoint(Process *proc, void *addr, |
| Juan Cespedes | f135052 | 2008-12-16 18:19:58 +0100 | [diff] [blame] | 25 | struct library_symbol *libsym) { |
| Juan Cespedes | 1dec217 | 2009-05-07 10:12:10 +0200 | [diff] [blame] | 26 | Breakpoint *sbp; |
| Juan Cespedes | cd8976d | 2009-05-14 13:47:58 +0200 | [diff] [blame] | 27 | |
| Zachary T Welch | a2ff9d6 | 2010-10-08 11:47:49 -0700 | [diff] [blame] | 28 | #ifdef __arm__ |
| 29 | int thumb_mode = (int)addr & 1; |
| 30 | if (thumb_mode) |
| 31 | addr = (void *)((int)addr & ~1); |
| 32 | #endif |
| 33 | |
| Juan Cespedes | cd8976d | 2009-05-14 13:47:58 +0200 | [diff] [blame] | 34 | debug(DEBUG_FUNCTION, "insert_breakpoint(pid=%d, addr=%p, symbol=%s)", proc->pid, addr, libsym ? libsym->name : "NULL"); |
| Petr Machata | b3f8fef | 2006-11-30 14:45:07 +0100 | [diff] [blame] | 35 | debug(1, "symbol=%s, addr=%p", libsym?libsym->name:"(nil)", addr); |
| Juan Cespedes | 5b3ffdf | 2001-07-02 00:52:45 +0200 | [diff] [blame] | 36 | |
| Ian Wienand | 2d45b1a | 2006-02-20 22:48:07 +0100 | [diff] [blame] | 37 | if (!addr) |
| 38 | return; |
| Ian Wienand | 9a2ad35 | 2006-02-20 22:44:45 +0100 | [diff] [blame] | 39 | |
| Ian Wienand | 2d45b1a | 2006-02-20 22:48:07 +0100 | [diff] [blame] | 40 | if (libsym) |
| Ian Wienand | 9a2ad35 | 2006-02-20 22:44:45 +0100 | [diff] [blame] | 41 | libsym->needs_init = 0; |
| 42 | |
| Juan Cespedes | cac15c3 | 2003-01-31 18:58:58 +0100 | [diff] [blame] | 43 | sbp = dict_find_entry(proc->breakpoints, addr); |
| 44 | if (!sbp) { |
| Juan Cespedes | 1dec217 | 2009-05-07 10:12:10 +0200 | [diff] [blame] | 45 | sbp = calloc(1, sizeof(Breakpoint)); |
| Juan Cespedes | cac15c3 | 2003-01-31 18:58:58 +0100 | [diff] [blame] | 46 | if (!sbp) { |
| Ian Wienand | 2d45b1a | 2006-02-20 22:48:07 +0100 | [diff] [blame] | 47 | return; /* TODO FIXME XXX: error_mem */ |
| Juan Cespedes | cac15c3 | 2003-01-31 18:58:58 +0100 | [diff] [blame] | 48 | } |
| 49 | dict_enter(proc->breakpoints, addr, sbp); |
| 50 | sbp->addr = addr; |
| Ian Wienand | 2d45b1a | 2006-02-20 22:48:07 +0100 | [diff] [blame] | 51 | sbp->libsym = libsym; |
| Juan Cespedes | cac15c3 | 2003-01-31 18:58:58 +0100 | [diff] [blame] | 52 | } |
| Juan Cespedes | 63184be | 2008-12-10 13:30:12 +0100 | [diff] [blame] | 53 | #ifdef __arm__ |
| Zachary T Welch | a2ff9d6 | 2010-10-08 11:47:49 -0700 | [diff] [blame] | 54 | sbp->thumb_mode = thumb_mode | proc->thumb_mode; |
| Juan Cespedes | 63184be | 2008-12-10 13:30:12 +0100 | [diff] [blame] | 55 | proc->thumb_mode = 0; |
| 56 | #endif |
| Juan Cespedes | 5b3ffdf | 2001-07-02 00:52:45 +0200 | [diff] [blame] | 57 | sbp->enabled++; |
| Ian Wienand | 2d45b1a | 2006-02-20 22:48:07 +0100 | [diff] [blame] | 58 | if (sbp->enabled == 1 && proc->pid) |
| Petr Machata | f789c9c | 2011-07-09 10:54:27 +0200 | [diff] [blame^] | 59 | enable_breakpoint(proc, sbp); |
| Juan Cespedes | 5b3ffdf | 2001-07-02 00:52:45 +0200 | [diff] [blame] | 60 | } |
| 61 | |
| Juan Cespedes | f135052 | 2008-12-16 18:19:58 +0100 | [diff] [blame] | 62 | void |
| Juan Cespedes | a8909f7 | 2009-04-28 20:02:41 +0200 | [diff] [blame] | 63 | delete_breakpoint(Process *proc, void *addr) { |
| Juan Cespedes | cd8976d | 2009-05-14 13:47:58 +0200 | [diff] [blame] | 64 | Breakpoint *sbp; |
| 65 | |
| 66 | debug(DEBUG_FUNCTION, "delete_breakpoint(pid=%d, addr=%p)", proc->pid, addr); |
| 67 | |
| 68 | sbp = dict_find_entry(proc->breakpoints, addr); |
| Ian Wienand | 2d45b1a | 2006-02-20 22:48:07 +0100 | [diff] [blame] | 69 | assert(sbp); /* FIXME: remove after debugging has been done. */ |
| Juan Cespedes | 5b3ffdf | 2001-07-02 00:52:45 +0200 | [diff] [blame] | 70 | /* This should only happen on out-of-memory conditions. */ |
| Ian Wienand | 2d45b1a | 2006-02-20 22:48:07 +0100 | [diff] [blame] | 71 | if (sbp == NULL) |
| 72 | return; |
| Juan Cespedes | 5b3ffdf | 2001-07-02 00:52:45 +0200 | [diff] [blame] | 73 | |
| 74 | sbp->enabled--; |
| Ian Wienand | 2d45b1a | 2006-02-20 22:48:07 +0100 | [diff] [blame] | 75 | if (sbp->enabled == 0) |
| Petr Machata | f789c9c | 2011-07-09 10:54:27 +0200 | [diff] [blame^] | 76 | disable_breakpoint(proc, sbp); |
| Juan Cespedes | 5b3ffdf | 2001-07-02 00:52:45 +0200 | [diff] [blame] | 77 | assert(sbp->enabled >= 0); |
| 78 | } |
| 79 | |
| Juan Cespedes | f135052 | 2008-12-16 18:19:58 +0100 | [diff] [blame] | 80 | static void |
| 81 | enable_bp_cb(void *addr, void *sbp, void *proc) { |
| Juan Cespedes | cd8976d | 2009-05-14 13:47:58 +0200 | [diff] [blame] | 82 | debug(DEBUG_FUNCTION, "enable_bp_cb(pid=%d)", ((Process *)proc)->pid); |
| Juan Cespedes | 1dec217 | 2009-05-07 10:12:10 +0200 | [diff] [blame] | 83 | if (((Breakpoint *)sbp)->enabled) { |
| Petr Machata | f789c9c | 2011-07-09 10:54:27 +0200 | [diff] [blame^] | 84 | enable_breakpoint(proc, sbp); |
| Juan Cespedes | cac15c3 | 2003-01-31 18:58:58 +0100 | [diff] [blame] | 85 | } |
| Juan Cespedes | 5b3ffdf | 2001-07-02 00:52:45 +0200 | [diff] [blame] | 86 | } |
| 87 | |
| Juan Cespedes | f135052 | 2008-12-16 18:19:58 +0100 | [diff] [blame] | 88 | void |
| Juan Cespedes | a8909f7 | 2009-04-28 20:02:41 +0200 | [diff] [blame] | 89 | enable_all_breakpoints(Process *proc) { |
| Juan Cespedes | cd8976d | 2009-05-14 13:47:58 +0200 | [diff] [blame] | 90 | debug(DEBUG_FUNCTION, "enable_all_breakpoints(pid=%d)", proc->pid); |
| Juan Cespedes | 5e01f65 | 1998-03-08 22:31:44 +0100 | [diff] [blame] | 91 | if (proc->breakpoints_enabled <= 0) { |
| Juan Cespedes | f1bfe20 | 2002-03-27 00:22:23 +0100 | [diff] [blame] | 92 | #ifdef __powerpc__ |
| 93 | unsigned long a; |
| 94 | |
| 95 | /* |
| 96 | * PPC HACK! (XXX FIXME TODO) |
| 97 | * If the dynamic linker hasn't populated the PLT then |
| 98 | * dont enable the breakpoints |
| 99 | */ |
| Juan Cespedes | ce377d5 | 2008-12-16 19:38:10 +0100 | [diff] [blame] | 100 | if (options.libcalls) { |
| Ian Wienand | 2d45b1a | 2006-02-20 22:48:07 +0100 | [diff] [blame] | 101 | a = ptrace(PTRACE_PEEKTEXT, proc->pid, |
| Paul Gilliam | 76c61f1 | 2006-06-14 06:55:21 +0200 | [diff] [blame] | 102 | sym2addr(proc, proc->list_of_symbols), |
| Ian Wienand | 2d45b1a | 2006-02-20 22:48:07 +0100 | [diff] [blame] | 103 | 0); |
| Juan Cespedes | de5a7eb | 2002-03-31 20:53:52 +0200 | [diff] [blame] | 104 | if (a == 0x0) |
| 105 | return; |
| 106 | } |
| Juan Cespedes | f1bfe20 | 2002-03-27 00:22:23 +0100 | [diff] [blame] | 107 | #endif |
| 108 | |
| Juan Cespedes | cac15c3 | 2003-01-31 18:58:58 +0100 | [diff] [blame] | 109 | debug(1, "Enabling breakpoints for pid %u...", proc->pid); |
| Juan Cespedes | a0ccf39 | 2003-02-01 19:02:37 +0100 | [diff] [blame] | 110 | if (proc->breakpoints) { |
| Ian Wienand | 2d45b1a | 2006-02-20 22:48:07 +0100 | [diff] [blame] | 111 | dict_apply_to_all(proc->breakpoints, enable_bp_cb, |
| 112 | proc); |
| Juan Cespedes | a0ccf39 | 2003-02-01 19:02:37 +0100 | [diff] [blame] | 113 | } |
| Eric Vaitl | 1228a91 | 2006-12-28 16:16:56 +0100 | [diff] [blame] | 114 | #ifdef __mips__ |
| Juan Cespedes | a413e5b | 2007-09-04 17:34:53 +0200 | [diff] [blame] | 115 | { |
| Juan Cespedes | 5c68204 | 2009-05-21 15:59:56 +0200 | [diff] [blame] | 116 | /* |
| 117 | * I'm sure there is a nicer way to do this. We need to |
| 118 | * insert breakpoints _after_ the child has been started. |
| 119 | */ |
| Juan Cespedes | a413e5b | 2007-09-04 17:34:53 +0200 | [diff] [blame] | 120 | struct library_symbol *sym; |
| 121 | struct library_symbol *new_sym; |
| 122 | sym=proc->list_of_symbols; |
| 123 | while(sym){ |
| 124 | void *addr= sym2addr(proc,sym); |
| 125 | if(!addr){ |
| 126 | sym=sym->next; |
| 127 | continue; |
| 128 | } |
| 129 | if(dict_find_entry(proc->breakpoints,addr)){ |
| 130 | sym=sym->next; |
| 131 | continue; |
| 132 | } |
| 133 | debug(2,"inserting bp %p %s",addr,sym->name); |
| Arnaud Patard | 4795087 | 2010-01-08 08:40:15 -0500 | [diff] [blame] | 134 | new_sym=malloc(sizeof(*new_sym) + strlen(sym->name) + 1); |
| 135 | memcpy(new_sym,sym,sizeof(*new_sym) + strlen(sym->name) + 1); |
| Juan Cespedes | a413e5b | 2007-09-04 17:34:53 +0200 | [diff] [blame] | 136 | new_sym->next=proc->list_of_symbols; |
| 137 | proc->list_of_symbols=new_sym; |
| Juan Cespedes | a413e5b | 2007-09-04 17:34:53 +0200 | [diff] [blame] | 138 | insert_breakpoint(proc, addr, new_sym); |
| 139 | sym=sym->next; |
| 140 | } |
| 141 | } |
| Eric Vaitl | 1228a91 | 2006-12-28 16:16:56 +0100 | [diff] [blame] | 142 | #endif |
| Juan Cespedes | 5e01f65 | 1998-03-08 22:31:44 +0100 | [diff] [blame] | 143 | } |
| 144 | proc->breakpoints_enabled = 1; |
| 145 | } |
| 146 | |
| Juan Cespedes | f135052 | 2008-12-16 18:19:58 +0100 | [diff] [blame] | 147 | static void |
| 148 | disable_bp_cb(void *addr, void *sbp, void *proc) { |
| Juan Cespedes | cd8976d | 2009-05-14 13:47:58 +0200 | [diff] [blame] | 149 | debug(DEBUG_FUNCTION, "disable_bp_cb(pid=%d)", ((Process *)proc)->pid); |
| Juan Cespedes | 1dec217 | 2009-05-07 10:12:10 +0200 | [diff] [blame] | 150 | if (((Breakpoint *)sbp)->enabled) { |
| Petr Machata | f789c9c | 2011-07-09 10:54:27 +0200 | [diff] [blame^] | 151 | disable_breakpoint(proc, sbp); |
| Juan Cespedes | cac15c3 | 2003-01-31 18:58:58 +0100 | [diff] [blame] | 152 | } |
| Juan Cespedes | 5b3ffdf | 2001-07-02 00:52:45 +0200 | [diff] [blame] | 153 | } |
| 154 | |
| Juan Cespedes | f135052 | 2008-12-16 18:19:58 +0100 | [diff] [blame] | 155 | void |
| Juan Cespedes | a8909f7 | 2009-04-28 20:02:41 +0200 | [diff] [blame] | 156 | disable_all_breakpoints(Process *proc) { |
| Juan Cespedes | cd8976d | 2009-05-14 13:47:58 +0200 | [diff] [blame] | 157 | debug(DEBUG_FUNCTION, "disable_all_breakpoints(pid=%d)", proc->pid); |
| Juan Cespedes | 5e01f65 | 1998-03-08 22:31:44 +0100 | [diff] [blame] | 158 | if (proc->breakpoints_enabled) { |
| Juan Cespedes | cac15c3 | 2003-01-31 18:58:58 +0100 | [diff] [blame] | 159 | debug(1, "Disabling breakpoints for pid %u...", proc->pid); |
| 160 | dict_apply_to_all(proc->breakpoints, disable_bp_cb, proc); |
| Juan Cespedes | 5e01f65 | 1998-03-08 22:31:44 +0100 | [diff] [blame] | 161 | } |
| 162 | proc->breakpoints_enabled = 0; |
| 163 | } |
| Juan Cespedes | 7186e2a | 2003-01-31 19:56:34 +0100 | [diff] [blame] | 164 | |
| Juan Cespedes | f135052 | 2008-12-16 18:19:58 +0100 | [diff] [blame] | 165 | static void |
| 166 | free_bp_cb(void *addr, void *sbp, void *data) { |
| Juan Cespedes | cd8976d | 2009-05-14 13:47:58 +0200 | [diff] [blame] | 167 | debug(DEBUG_FUNCTION, "free_bp_cb(sbp=%p)", sbp); |
| Juan Cespedes | 7186e2a | 2003-01-31 19:56:34 +0100 | [diff] [blame] | 168 | assert(sbp); |
| 169 | free(sbp); |
| 170 | } |
| 171 | |
| Juan Cespedes | f135052 | 2008-12-16 18:19:58 +0100 | [diff] [blame] | 172 | void |
| Juan Cespedes | a8909f7 | 2009-04-28 20:02:41 +0200 | [diff] [blame] | 173 | breakpoints_init(Process *proc) { |
| Ian Wienand | 2d45b1a | 2006-02-20 22:48:07 +0100 | [diff] [blame] | 174 | struct library_symbol *sym; |
| Juan Cespedes | 7186e2a | 2003-01-31 19:56:34 +0100 | [diff] [blame] | 175 | |
| Juan Cespedes | cd8976d | 2009-05-14 13:47:58 +0200 | [diff] [blame] | 176 | debug(DEBUG_FUNCTION, "breakpoints_init(pid=%d)", proc->pid); |
| Ian Wienand | 2d45b1a | 2006-02-20 22:48:07 +0100 | [diff] [blame] | 177 | if (proc->breakpoints) { /* let's remove that struct */ |
| Juan Cespedes | 7186e2a | 2003-01-31 19:56:34 +0100 | [diff] [blame] | 178 | dict_apply_to_all(proc->breakpoints, free_bp_cb, NULL); |
| 179 | dict_clear(proc->breakpoints); |
| 180 | proc->breakpoints = NULL; |
| 181 | } |
| Petr Machata | 2662768 | 2011-07-08 18:15:32 +0200 | [diff] [blame] | 182 | |
| 183 | proc->breakpoints = dict_init(dict_key2hash_int, |
| 184 | dict_key_cmp_int); |
| Juan Cespedes | 7186e2a | 2003-01-31 19:56:34 +0100 | [diff] [blame] | 185 | |
| Petr Machata | 3d7e4b8 | 2011-07-08 18:15:19 +0200 | [diff] [blame] | 186 | if (proc->list_of_symbols != NULL) { |
| 187 | struct library_symbol * sym = proc->list_of_symbols; |
| 188 | while (sym != NULL) { |
| 189 | struct library_symbol * next = sym->next; |
| 190 | free(sym); |
| 191 | sym = next; |
| 192 | } |
| 193 | } |
| 194 | proc->list_of_symbols = NULL; |
| 195 | |
| Juan Cespedes | ce377d5 | 2008-12-16 19:38:10 +0100 | [diff] [blame] | 196 | if (options.libcalls && proc->filename) { |
| Ian Wienand | 9a2ad35 | 2006-02-20 22:44:45 +0100 | [diff] [blame] | 197 | proc->list_of_symbols = read_elf(proc); |
| Juan Cespedes | 7186e2a | 2003-01-31 19:56:34 +0100 | [diff] [blame] | 198 | if (opt_e) { |
| Petr Machata | 2662768 | 2011-07-08 18:15:32 +0200 | [diff] [blame] | 199 | struct library_symbol **tmp1 = &proc->list_of_symbols; |
| Ian Wienand | 2d45b1a | 2006-02-20 22:48:07 +0100 | [diff] [blame] | 200 | while (*tmp1) { |
| 201 | struct opt_e_t *tmp2 = opt_e; |
| Juan Cespedes | 7186e2a | 2003-01-31 19:56:34 +0100 | [diff] [blame] | 202 | int keep = !opt_e_enable; |
| 203 | |
| Ian Wienand | 2d45b1a | 2006-02-20 22:48:07 +0100 | [diff] [blame] | 204 | while (tmp2) { |
| Petr Machata | 2662768 | 2011-07-08 18:15:32 +0200 | [diff] [blame] | 205 | if (!strcmp((*tmp1)->name, |
| 206 | tmp2->name)) { |
| Juan Cespedes | 7186e2a | 2003-01-31 19:56:34 +0100 | [diff] [blame] | 207 | keep = opt_e_enable; |
| 208 | } |
| 209 | tmp2 = tmp2->next; |
| 210 | } |
| 211 | if (!keep) { |
| 212 | *tmp1 = (*tmp1)->next; |
| 213 | } else { |
| 214 | tmp1 = &((*tmp1)->next); |
| 215 | } |
| 216 | } |
| 217 | } |
| Juan Cespedes | 7186e2a | 2003-01-31 19:56:34 +0100 | [diff] [blame] | 218 | } |
| Petr Machata | b3f8fef | 2006-11-30 14:45:07 +0100 | [diff] [blame] | 219 | for (sym = proc->list_of_symbols; sym; sym = sym->next) { |
| Ian Wienand | 2d45b1a | 2006-02-20 22:48:07 +0100 | [diff] [blame] | 220 | /* proc->pid==0 delays enabling. */ |
| Paul Gilliam | 76c61f1 | 2006-06-14 06:55:21 +0200 | [diff] [blame] | 221 | insert_breakpoint(proc, sym2addr(proc, sym), sym); |
| Juan Cespedes | 7186e2a | 2003-01-31 19:56:34 +0100 | [diff] [blame] | 222 | } |
| 223 | proc->callstack_depth = 0; |
| 224 | proc->breakpoints_enabled = -1; |
| 225 | } |
| Ian Wienand | 9a2ad35 | 2006-02-20 22:44:45 +0100 | [diff] [blame] | 226 | |
| Juan Cespedes | f135052 | 2008-12-16 18:19:58 +0100 | [diff] [blame] | 227 | void |
| Juan Cespedes | a8909f7 | 2009-04-28 20:02:41 +0200 | [diff] [blame] | 228 | reinitialize_breakpoints(Process *proc) { |
| Juan Cespedes | cd8976d | 2009-05-14 13:47:58 +0200 | [diff] [blame] | 229 | struct library_symbol *sym; |
| 230 | |
| 231 | debug(DEBUG_FUNCTION, "reinitialize_breakpoints(pid=%d)", proc->pid); |
| 232 | |
| 233 | sym = proc->list_of_symbols; |
| Ian Wienand | 9a2ad35 | 2006-02-20 22:44:45 +0100 | [diff] [blame] | 234 | |
| Ian Wienand | 2d45b1a | 2006-02-20 22:48:07 +0100 | [diff] [blame] | 235 | while (sym) { |
| 236 | if (sym->needs_init) { |
| Petr Machata | 2662768 | 2011-07-08 18:15:32 +0200 | [diff] [blame] | 237 | insert_breakpoint(proc, sym2addr(proc, sym), sym); |
| Ian Wienand | 2d45b1a | 2006-02-20 22:48:07 +0100 | [diff] [blame] | 238 | if (sym->needs_init && !sym->is_weak) { |
| 239 | fprintf(stderr, |
| 240 | "could not re-initialize breakpoint for \"%s\" in file \"%s\"\n", |
| 241 | sym->name, proc->filename); |
| 242 | exit(1); |
| 243 | } |
| 244 | } |
| 245 | sym = sym->next; |
| 246 | } |
| 247 | } |