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