blob: 7112d491da9e018beaa7cd26c06970f61ef8d571 [file] [log] [blame]
Juan Cespedesd44c6b81998-09-25 14:48:42 +02001#if HAVE_CONFIG_H
2#include "config.h"
3#endif
4
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +02005#include <stdlib.h>
Juan Cespedes7186e2a2003-01-31 19:56:34 +01006#include <string.h>
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +02007#include <assert.h>
8
Juan Cespedesf1bfe202002-03-27 00:22:23 +01009#ifdef __powerpc__
10#include <sys/ptrace.h>
11#endif
12
Juan Cespedescac15c32003-01-31 18:58:58 +010013#include "ltrace.h"
14#include "options.h"
15#include "debug.h"
16#include "dict.h"
Juan Cespedes7186e2a2003-01-31 19:56:34 +010017#include "elf.h"
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +020018
19/*****************************************************************************/
20
Juan Cespedes1dec2172009-05-07 10:12:10 +020021Breakpoint *
Juan Cespedesa8909f72009-04-28 20:02:41 +020022address2bpstruct(Process *proc, void *addr) {
Juan Cespedescd8976d2009-05-14 13:47:58 +020023 debug(DEBUG_FUNCTION, "address2bpstruct(pid=%d, addr=%p)", proc->pid, addr);
Juan Cespedescac15c32003-01-31 18:58:58 +010024 return dict_find_entry(proc->breakpoints, addr);
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +020025}
26
Ian Wienand9a2ad352006-02-20 22:44:45 +010027void
Juan Cespedesa8909f72009-04-28 20:02:41 +020028insert_breakpoint(Process *proc, void *addr,
Juan Cespedesf1350522008-12-16 18:19:58 +010029 struct library_symbol *libsym) {
Juan Cespedes1dec2172009-05-07 10:12:10 +020030 Breakpoint *sbp;
Juan Cespedescd8976d2009-05-14 13:47:58 +020031
32 debug(DEBUG_FUNCTION, "insert_breakpoint(pid=%d, addr=%p, symbol=%s)", proc->pid, addr, libsym ? libsym->name : "NULL");
Petr Machatab3f8fef2006-11-30 14:45:07 +010033 debug(1, "symbol=%s, addr=%p", libsym?libsym->name:"(nil)", addr);
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +020034
Ian Wienand2d45b1a2006-02-20 22:48:07 +010035 if (!addr)
36 return;
Ian Wienand9a2ad352006-02-20 22:44:45 +010037
Ian Wienand2d45b1a2006-02-20 22:48:07 +010038 if (libsym)
Ian Wienand9a2ad352006-02-20 22:44:45 +010039 libsym->needs_init = 0;
40
Juan Cespedescac15c32003-01-31 18:58:58 +010041 sbp = dict_find_entry(proc->breakpoints, addr);
42 if (!sbp) {
Juan Cespedes1dec2172009-05-07 10:12:10 +020043 sbp = calloc(1, sizeof(Breakpoint));
Juan Cespedescac15c32003-01-31 18:58:58 +010044 if (!sbp) {
Ian Wienand2d45b1a2006-02-20 22:48:07 +010045 return; /* TODO FIXME XXX: error_mem */
Juan Cespedescac15c32003-01-31 18:58:58 +010046 }
47 dict_enter(proc->breakpoints, addr, sbp);
48 sbp->addr = addr;
Ian Wienand2d45b1a2006-02-20 22:48:07 +010049 sbp->libsym = libsym;
Juan Cespedescac15c32003-01-31 18:58:58 +010050 }
Juan Cespedes63184be2008-12-10 13:30:12 +010051#ifdef __arm__
52 sbp->thumb_mode = proc->thumb_mode;
53 proc->thumb_mode = 0;
54#endif
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +020055 sbp->enabled++;
Ian Wienand2d45b1a2006-02-20 22:48:07 +010056 if (sbp->enabled == 1 && proc->pid)
57 enable_breakpoint(proc->pid, sbp);
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +020058}
59
Juan Cespedesf1350522008-12-16 18:19:58 +010060void
Juan Cespedesa8909f72009-04-28 20:02:41 +020061delete_breakpoint(Process *proc, void *addr) {
Juan Cespedescd8976d2009-05-14 13:47:58 +020062 Breakpoint *sbp;
63
64 debug(DEBUG_FUNCTION, "delete_breakpoint(pid=%d, addr=%p)", proc->pid, addr);
65
66 sbp = dict_find_entry(proc->breakpoints, addr);
Ian Wienand2d45b1a2006-02-20 22:48:07 +010067 assert(sbp); /* FIXME: remove after debugging has been done. */
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +020068 /* This should only happen on out-of-memory conditions. */
Ian Wienand2d45b1a2006-02-20 22:48:07 +010069 if (sbp == NULL)
70 return;
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +020071
72 sbp->enabled--;
Ian Wienand2d45b1a2006-02-20 22:48:07 +010073 if (sbp->enabled == 0)
74 disable_breakpoint(proc->pid, sbp);
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +020075 assert(sbp->enabled >= 0);
76}
77
Juan Cespedesf1350522008-12-16 18:19:58 +010078static void
79enable_bp_cb(void *addr, void *sbp, void *proc) {
Juan Cespedescd8976d2009-05-14 13:47:58 +020080 debug(DEBUG_FUNCTION, "enable_bp_cb(pid=%d)", ((Process *)proc)->pid);
Juan Cespedes1dec2172009-05-07 10:12:10 +020081 if (((Breakpoint *)sbp)->enabled) {
Juan Cespedesa8909f72009-04-28 20:02:41 +020082 enable_breakpoint(((Process *)proc)->pid, sbp);
Juan Cespedescac15c32003-01-31 18:58:58 +010083 }
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +020084}
85
Juan Cespedesf1350522008-12-16 18:19:58 +010086void
Juan Cespedesa8909f72009-04-28 20:02:41 +020087enable_all_breakpoints(Process *proc) {
Juan Cespedescd8976d2009-05-14 13:47:58 +020088 debug(DEBUG_FUNCTION, "enable_all_breakpoints(pid=%d)", proc->pid);
Juan Cespedes5e01f651998-03-08 22:31:44 +010089 if (proc->breakpoints_enabled <= 0) {
Juan Cespedesf1bfe202002-03-27 00:22:23 +010090#ifdef __powerpc__
91 unsigned long a;
92
93 /*
94 * PPC HACK! (XXX FIXME TODO)
95 * If the dynamic linker hasn't populated the PLT then
96 * dont enable the breakpoints
97 */
Juan Cespedesce377d52008-12-16 19:38:10 +010098 if (options.libcalls) {
Ian Wienand2d45b1a2006-02-20 22:48:07 +010099 a = ptrace(PTRACE_PEEKTEXT, proc->pid,
Paul Gilliam76c61f12006-06-14 06:55:21 +0200100 sym2addr(proc, proc->list_of_symbols),
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100101 0);
Juan Cespedesde5a7eb2002-03-31 20:53:52 +0200102 if (a == 0x0)
103 return;
104 }
Juan Cespedesf1bfe202002-03-27 00:22:23 +0100105#endif
106
Juan Cespedescac15c32003-01-31 18:58:58 +0100107 debug(1, "Enabling breakpoints for pid %u...", proc->pid);
Juan Cespedesa0ccf392003-02-01 19:02:37 +0100108 if (proc->breakpoints) {
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100109 dict_apply_to_all(proc->breakpoints, enable_bp_cb,
110 proc);
Juan Cespedesa0ccf392003-02-01 19:02:37 +0100111 }
Eric Vaitl1228a912006-12-28 16:16:56 +0100112#ifdef __mips__
Juan Cespedesa413e5b2007-09-04 17:34:53 +0200113 {
114 // I'm sure there is a nicer way to do this. We need to
115 // insert breakpoints _after_ the child has been started.
116 struct library_symbol *sym;
117 struct library_symbol *new_sym;
118 sym=proc->list_of_symbols;
119 while(sym){
120 void *addr= sym2addr(proc,sym);
121 if(!addr){
122 sym=sym->next;
123 continue;
124 }
125 if(dict_find_entry(proc->breakpoints,addr)){
126 sym=sym->next;
127 continue;
128 }
129 debug(2,"inserting bp %p %s",addr,sym->name);
130 new_sym=malloc(sizeof(*new_sym));
131 memcpy(new_sym,sym,sizeof(*new_sym));
132 new_sym->next=proc->list_of_symbols;
133 proc->list_of_symbols=new_sym;
Juan Cespedesa413e5b2007-09-04 17:34:53 +0200134 insert_breakpoint(proc, addr, new_sym);
135 sym=sym->next;
136 }
137 }
Eric Vaitl1228a912006-12-28 16:16:56 +0100138#endif
Juan Cespedes5e01f651998-03-08 22:31:44 +0100139 }
140 proc->breakpoints_enabled = 1;
141}
142
Juan Cespedesf1350522008-12-16 18:19:58 +0100143static void
144disable_bp_cb(void *addr, void *sbp, void *proc) {
Juan Cespedescd8976d2009-05-14 13:47:58 +0200145 debug(DEBUG_FUNCTION, "disable_bp_cb(pid=%d)", ((Process *)proc)->pid);
Juan Cespedes1dec2172009-05-07 10:12:10 +0200146 if (((Breakpoint *)sbp)->enabled) {
Juan Cespedesa8909f72009-04-28 20:02:41 +0200147 disable_breakpoint(((Process *)proc)->pid, sbp);
Juan Cespedescac15c32003-01-31 18:58:58 +0100148 }
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200149}
150
Juan Cespedesf1350522008-12-16 18:19:58 +0100151void
Juan Cespedesa8909f72009-04-28 20:02:41 +0200152disable_all_breakpoints(Process *proc) {
Juan Cespedescd8976d2009-05-14 13:47:58 +0200153 debug(DEBUG_FUNCTION, "disable_all_breakpoints(pid=%d)", proc->pid);
Juan Cespedes5e01f651998-03-08 22:31:44 +0100154 if (proc->breakpoints_enabled) {
Juan Cespedescac15c32003-01-31 18:58:58 +0100155 debug(1, "Disabling breakpoints for pid %u...", proc->pid);
156 dict_apply_to_all(proc->breakpoints, disable_bp_cb, proc);
Juan Cespedes5e01f651998-03-08 22:31:44 +0100157 }
158 proc->breakpoints_enabled = 0;
159}
Juan Cespedes7186e2a2003-01-31 19:56:34 +0100160
Juan Cespedesf1350522008-12-16 18:19:58 +0100161static void
162free_bp_cb(void *addr, void *sbp, void *data) {
Juan Cespedescd8976d2009-05-14 13:47:58 +0200163 debug(DEBUG_FUNCTION, "free_bp_cb(sbp=%p)", sbp);
Juan Cespedes7186e2a2003-01-31 19:56:34 +0100164 assert(sbp);
165 free(sbp);
166}
167
Juan Cespedesf1350522008-12-16 18:19:58 +0100168void
Juan Cespedesa8909f72009-04-28 20:02:41 +0200169breakpoints_init(Process *proc) {
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100170 struct library_symbol *sym;
Juan Cespedes7186e2a2003-01-31 19:56:34 +0100171
Juan Cespedescd8976d2009-05-14 13:47:58 +0200172 debug(DEBUG_FUNCTION, "breakpoints_init(pid=%d)", proc->pid);
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100173 if (proc->breakpoints) { /* let's remove that struct */
Juan Cespedes7186e2a2003-01-31 19:56:34 +0100174 dict_apply_to_all(proc->breakpoints, free_bp_cb, NULL);
175 dict_clear(proc->breakpoints);
176 proc->breakpoints = NULL;
177 }
Petr Machata89a53602007-01-25 18:05:44 +0100178 proc->breakpoints = dict_init(dict_key2hash_int, dict_key_cmp_int);
Juan Cespedes7186e2a2003-01-31 19:56:34 +0100179
Juan Cespedesce377d52008-12-16 19:38:10 +0100180 if (options.libcalls && proc->filename) {
Ian Wienand9a2ad352006-02-20 22:44:45 +0100181 proc->list_of_symbols = read_elf(proc);
Juan Cespedes7186e2a2003-01-31 19:56:34 +0100182 if (opt_e) {
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100183 struct library_symbol **tmp1 = &(proc->list_of_symbols);
184 while (*tmp1) {
185 struct opt_e_t *tmp2 = opt_e;
Juan Cespedes7186e2a2003-01-31 19:56:34 +0100186 int keep = !opt_e_enable;
187
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100188 while (tmp2) {
Juan Cespedes7186e2a2003-01-31 19:56:34 +0100189 if (!strcmp((*tmp1)->name, tmp2->name)) {
190 keep = opt_e_enable;
191 }
192 tmp2 = tmp2->next;
193 }
194 if (!keep) {
195 *tmp1 = (*tmp1)->next;
196 } else {
197 tmp1 = &((*tmp1)->next);
198 }
199 }
200 }
201 } else {
202 proc->list_of_symbols = NULL;
203 }
Petr Machatab3f8fef2006-11-30 14:45:07 +0100204 for (sym = proc->list_of_symbols; sym; sym = sym->next) {
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100205 /* proc->pid==0 delays enabling. */
Paul Gilliam76c61f12006-06-14 06:55:21 +0200206 insert_breakpoint(proc, sym2addr(proc, sym), sym);
Juan Cespedes7186e2a2003-01-31 19:56:34 +0100207 }
208 proc->callstack_depth = 0;
209 proc->breakpoints_enabled = -1;
210}
Ian Wienand9a2ad352006-02-20 22:44:45 +0100211
Juan Cespedesf1350522008-12-16 18:19:58 +0100212void
Juan Cespedesa8909f72009-04-28 20:02:41 +0200213reinitialize_breakpoints(Process *proc) {
Juan Cespedescd8976d2009-05-14 13:47:58 +0200214 struct library_symbol *sym;
215
216 debug(DEBUG_FUNCTION, "reinitialize_breakpoints(pid=%d)", proc->pid);
217
218 sym = proc->list_of_symbols;
Ian Wienand9a2ad352006-02-20 22:44:45 +0100219
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100220 while (sym) {
221 if (sym->needs_init) {
Paul Gilliam76c61f12006-06-14 06:55:21 +0200222 insert_breakpoint(proc, sym2addr(proc, sym),
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100223 sym);
224 if (sym->needs_init && !sym->is_weak) {
225 fprintf(stderr,
226 "could not re-initialize breakpoint for \"%s\" in file \"%s\"\n",
227 sym->name, proc->filename);
228 exit(1);
229 }
230 }
231 sym = sym->next;
232 }
233}