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