blob: f2150756362d92e4550a4277290a8c422d2b595b [file] [log] [blame]
Juan Cespedesd44c6b81998-09-25 14:48:42 +02001#include "config.h"
Juan Cespedesd44c6b81998-09-25 14:48:42 +02002
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +02003#include <stdlib.h>
Juan Cespedes7186e2a2003-01-31 19:56:34 +01004#include <string.h>
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +02005#include <assert.h>
6
Juan Cespedesf1bfe202002-03-27 00:22:23 +01007#ifdef __powerpc__
8#include <sys/ptrace.h>
9#endif
10
Juan Cespedesf7281232009-06-25 16:11:21 +020011#include "common.h"
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +020012
13/*****************************************************************************/
14
Juan Cespedes1dec2172009-05-07 10:12:10 +020015Breakpoint *
Juan Cespedesa8909f72009-04-28 20:02:41 +020016address2bpstruct(Process *proc, void *addr) {
Petr Machata26627682011-07-08 18:15:32 +020017 assert(proc != NULL);
18 assert(proc->breakpoints != NULL);
Juan Cespedescd8976d2009-05-14 13:47:58 +020019 debug(DEBUG_FUNCTION, "address2bpstruct(pid=%d, addr=%p)", proc->pid, addr);
Juan Cespedescac15c32003-01-31 18:58:58 +010020 return dict_find_entry(proc->breakpoints, addr);
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +020021}
22
Ian Wienand9a2ad352006-02-20 22:44:45 +010023void
Juan Cespedesa8909f72009-04-28 20:02:41 +020024insert_breakpoint(Process *proc, void *addr,
Petr Machatac7585b62011-07-08 22:58:12 +020025 struct library_symbol *libsym, int enable) {
Juan Cespedes1dec2172009-05-07 10:12:10 +020026 Breakpoint *sbp;
Juan Cespedescd8976d2009-05-14 13:47:58 +020027
Zachary T Welcha2ff9d62010-10-08 11:47:49 -070028#ifdef __arm__
29 int thumb_mode = (int)addr & 1;
30 if (thumb_mode)
31 addr = (void *)((int)addr & ~1);
32#endif
33
Juan Cespedescd8976d2009-05-14 13:47:58 +020034 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 +010035 debug(1, "symbol=%s, addr=%p", libsym?libsym->name:"(nil)", addr);
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +020036
Ian Wienand2d45b1a2006-02-20 22:48:07 +010037 if (!addr)
38 return;
Ian Wienand9a2ad352006-02-20 22:44:45 +010039
Ian Wienand2d45b1a2006-02-20 22:48:07 +010040 if (libsym)
Ian Wienand9a2ad352006-02-20 22:44:45 +010041 libsym->needs_init = 0;
42
Juan Cespedescac15c32003-01-31 18:58:58 +010043 sbp = dict_find_entry(proc->breakpoints, addr);
44 if (!sbp) {
Juan Cespedes1dec2172009-05-07 10:12:10 +020045 sbp = calloc(1, sizeof(Breakpoint));
Juan Cespedescac15c32003-01-31 18:58:58 +010046 if (!sbp) {
Ian Wienand2d45b1a2006-02-20 22:48:07 +010047 return; /* TODO FIXME XXX: error_mem */
Juan Cespedescac15c32003-01-31 18:58:58 +010048 }
49 dict_enter(proc->breakpoints, addr, sbp);
50 sbp->addr = addr;
Ian Wienand2d45b1a2006-02-20 22:48:07 +010051 sbp->libsym = libsym;
Juan Cespedescac15c32003-01-31 18:58:58 +010052 }
Juan Cespedes63184be2008-12-10 13:30:12 +010053#ifdef __arm__
Zachary T Welcha2ff9d62010-10-08 11:47:49 -070054 sbp->thumb_mode = thumb_mode | proc->thumb_mode;
Juan Cespedes63184be2008-12-10 13:30:12 +010055 proc->thumb_mode = 0;
56#endif
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +020057 sbp->enabled++;
Petr Machatac7585b62011-07-08 22:58:12 +020058 if (sbp->enabled == 1 && enable) {
59 assert(proc->pid != 0);
Petr Machataf789c9c2011-07-09 10:54:27 +020060 enable_breakpoint(proc, sbp);
Petr Machatac7585b62011-07-08 22:58:12 +020061 }
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +020062}
63
Juan Cespedesf1350522008-12-16 18:19:58 +010064void
Juan Cespedesa8909f72009-04-28 20:02:41 +020065delete_breakpoint(Process *proc, void *addr) {
Juan Cespedescd8976d2009-05-14 13:47:58 +020066 Breakpoint *sbp;
67
68 debug(DEBUG_FUNCTION, "delete_breakpoint(pid=%d, addr=%p)", proc->pid, addr);
69
70 sbp = dict_find_entry(proc->breakpoints, addr);
Ian Wienand2d45b1a2006-02-20 22:48:07 +010071 assert(sbp); /* FIXME: remove after debugging has been done. */
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +020072 /* This should only happen on out-of-memory conditions. */
Ian Wienand2d45b1a2006-02-20 22:48:07 +010073 if (sbp == NULL)
74 return;
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +020075
76 sbp->enabled--;
Ian Wienand2d45b1a2006-02-20 22:48:07 +010077 if (sbp->enabled == 0)
Petr Machataf789c9c2011-07-09 10:54:27 +020078 disable_breakpoint(proc, sbp);
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +020079 assert(sbp->enabled >= 0);
80}
81
Juan Cespedesf1350522008-12-16 18:19:58 +010082static void
83enable_bp_cb(void *addr, void *sbp, void *proc) {
Juan Cespedescd8976d2009-05-14 13:47:58 +020084 debug(DEBUG_FUNCTION, "enable_bp_cb(pid=%d)", ((Process *)proc)->pid);
Juan Cespedes1dec2172009-05-07 10:12:10 +020085 if (((Breakpoint *)sbp)->enabled) {
Petr Machataf789c9c2011-07-09 10:54:27 +020086 enable_breakpoint(proc, sbp);
Juan Cespedescac15c32003-01-31 18:58:58 +010087 }
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +020088}
89
Juan Cespedesf1350522008-12-16 18:19:58 +010090void
Juan Cespedesa8909f72009-04-28 20:02:41 +020091enable_all_breakpoints(Process *proc) {
Juan Cespedescd8976d2009-05-14 13:47:58 +020092 debug(DEBUG_FUNCTION, "enable_all_breakpoints(pid=%d)", proc->pid);
Juan Cespedes5e01f651998-03-08 22:31:44 +010093 if (proc->breakpoints_enabled <= 0) {
Juan Cespedesf1bfe202002-03-27 00:22:23 +010094#ifdef __powerpc__
95 unsigned long a;
96
97 /*
98 * PPC HACK! (XXX FIXME TODO)
99 * If the dynamic linker hasn't populated the PLT then
100 * dont enable the breakpoints
101 */
Juan Cespedesce377d52008-12-16 19:38:10 +0100102 if (options.libcalls) {
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100103 a = ptrace(PTRACE_PEEKTEXT, proc->pid,
Paul Gilliam76c61f12006-06-14 06:55:21 +0200104 sym2addr(proc, proc->list_of_symbols),
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100105 0);
Juan Cespedesde5a7eb2002-03-31 20:53:52 +0200106 if (a == 0x0)
107 return;
108 }
Juan Cespedesf1bfe202002-03-27 00:22:23 +0100109#endif
110
Juan Cespedescac15c32003-01-31 18:58:58 +0100111 debug(1, "Enabling breakpoints for pid %u...", proc->pid);
Juan Cespedesa0ccf392003-02-01 19:02:37 +0100112 if (proc->breakpoints) {
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100113 dict_apply_to_all(proc->breakpoints, enable_bp_cb,
114 proc);
Juan Cespedesa0ccf392003-02-01 19:02:37 +0100115 }
Eric Vaitl1228a912006-12-28 16:16:56 +0100116#ifdef __mips__
Juan Cespedesa413e5b2007-09-04 17:34:53 +0200117 {
Juan Cespedes5c682042009-05-21 15:59:56 +0200118 /*
119 * I'm sure there is a nicer way to do this. We need to
120 * insert breakpoints _after_ the child has been started.
121 */
Juan Cespedesa413e5b2007-09-04 17:34:53 +0200122 struct library_symbol *sym;
123 struct library_symbol *new_sym;
124 sym=proc->list_of_symbols;
125 while(sym){
126 void *addr= sym2addr(proc,sym);
127 if(!addr){
128 sym=sym->next;
129 continue;
130 }
131 if(dict_find_entry(proc->breakpoints,addr)){
132 sym=sym->next;
133 continue;
134 }
135 debug(2,"inserting bp %p %s",addr,sym->name);
Arnaud Patard47950872010-01-08 08:40:15 -0500136 new_sym=malloc(sizeof(*new_sym) + strlen(sym->name) + 1);
137 memcpy(new_sym,sym,sizeof(*new_sym) + strlen(sym->name) + 1);
Juan Cespedesa413e5b2007-09-04 17:34:53 +0200138 new_sym->next=proc->list_of_symbols;
139 proc->list_of_symbols=new_sym;
Juan Cespedesa413e5b2007-09-04 17:34:53 +0200140 insert_breakpoint(proc, addr, new_sym);
141 sym=sym->next;
142 }
143 }
Eric Vaitl1228a912006-12-28 16:16:56 +0100144#endif
Juan Cespedes5e01f651998-03-08 22:31:44 +0100145 }
146 proc->breakpoints_enabled = 1;
147}
148
Juan Cespedesf1350522008-12-16 18:19:58 +0100149static void
150disable_bp_cb(void *addr, void *sbp, void *proc) {
Juan Cespedescd8976d2009-05-14 13:47:58 +0200151 debug(DEBUG_FUNCTION, "disable_bp_cb(pid=%d)", ((Process *)proc)->pid);
Juan Cespedes1dec2172009-05-07 10:12:10 +0200152 if (((Breakpoint *)sbp)->enabled) {
Petr Machataf789c9c2011-07-09 10:54:27 +0200153 disable_breakpoint(proc, sbp);
Juan Cespedescac15c32003-01-31 18:58:58 +0100154 }
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200155}
156
Juan Cespedesf1350522008-12-16 18:19:58 +0100157void
Juan Cespedesa8909f72009-04-28 20:02:41 +0200158disable_all_breakpoints(Process *proc) {
Juan Cespedescd8976d2009-05-14 13:47:58 +0200159 debug(DEBUG_FUNCTION, "disable_all_breakpoints(pid=%d)", proc->pid);
Juan Cespedes5e01f651998-03-08 22:31:44 +0100160 if (proc->breakpoints_enabled) {
Juan Cespedescac15c32003-01-31 18:58:58 +0100161 debug(1, "Disabling breakpoints for pid %u...", proc->pid);
162 dict_apply_to_all(proc->breakpoints, disable_bp_cb, proc);
Juan Cespedes5e01f651998-03-08 22:31:44 +0100163 }
164 proc->breakpoints_enabled = 0;
165}
Juan Cespedes7186e2a2003-01-31 19:56:34 +0100166
Juan Cespedesf1350522008-12-16 18:19:58 +0100167static void
168free_bp_cb(void *addr, void *sbp, void *data) {
Juan Cespedescd8976d2009-05-14 13:47:58 +0200169 debug(DEBUG_FUNCTION, "free_bp_cb(sbp=%p)", sbp);
Juan Cespedes7186e2a2003-01-31 19:56:34 +0100170 assert(sbp);
171 free(sbp);
172}
173
Juan Cespedesf1350522008-12-16 18:19:58 +0100174void
Petr Machatac7585b62011-07-08 22:58:12 +0200175breakpoints_init(Process *proc, int enable)
176{
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100177 struct library_symbol *sym;
Juan Cespedes7186e2a2003-01-31 19:56:34 +0100178
Juan Cespedescd8976d2009-05-14 13:47:58 +0200179 debug(DEBUG_FUNCTION, "breakpoints_init(pid=%d)", proc->pid);
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100180 if (proc->breakpoints) { /* let's remove that struct */
Juan Cespedes7186e2a2003-01-31 19:56:34 +0100181 dict_apply_to_all(proc->breakpoints, free_bp_cb, NULL);
182 dict_clear(proc->breakpoints);
183 proc->breakpoints = NULL;
184 }
Petr Machata26627682011-07-08 18:15:32 +0200185
186 proc->breakpoints = dict_init(dict_key2hash_int,
187 dict_key_cmp_int);
Juan Cespedes7186e2a2003-01-31 19:56:34 +0100188
Petr Machata3d7e4b82011-07-08 18:15:19 +0200189 if (proc->list_of_symbols != NULL) {
190 struct library_symbol * sym = proc->list_of_symbols;
191 while (sym != NULL) {
192 struct library_symbol * next = sym->next;
193 free(sym);
194 sym = next;
195 }
196 }
197 proc->list_of_symbols = NULL;
198
Juan Cespedesce377d52008-12-16 19:38:10 +0100199 if (options.libcalls && proc->filename) {
Ian Wienand9a2ad352006-02-20 22:44:45 +0100200 proc->list_of_symbols = read_elf(proc);
Juan Cespedes7186e2a2003-01-31 19:56:34 +0100201 if (opt_e) {
Petr Machata26627682011-07-08 18:15:32 +0200202 struct library_symbol **tmp1 = &proc->list_of_symbols;
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100203 while (*tmp1) {
204 struct opt_e_t *tmp2 = opt_e;
Juan Cespedes7186e2a2003-01-31 19:56:34 +0100205 int keep = !opt_e_enable;
206
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100207 while (tmp2) {
Petr Machata26627682011-07-08 18:15:32 +0200208 if (!strcmp((*tmp1)->name,
209 tmp2->name)) {
Juan Cespedes7186e2a2003-01-31 19:56:34 +0100210 keep = opt_e_enable;
211 }
212 tmp2 = tmp2->next;
213 }
214 if (!keep) {
215 *tmp1 = (*tmp1)->next;
216 } else {
217 tmp1 = &((*tmp1)->next);
218 }
219 }
220 }
Juan Cespedes7186e2a2003-01-31 19:56:34 +0100221 }
Petr Machatac7585b62011-07-08 22:58:12 +0200222
223 for (sym = proc->list_of_symbols; sym; sym = sym->next)
224 insert_breakpoint(proc, sym2addr(proc, sym), sym, enable);
225
Juan Cespedes7186e2a2003-01-31 19:56:34 +0100226 proc->callstack_depth = 0;
227 proc->breakpoints_enabled = -1;
228}
Ian Wienand9a2ad352006-02-20 22:44:45 +0100229
Juan Cespedesf1350522008-12-16 18:19:58 +0100230void
Juan Cespedesa8909f72009-04-28 20:02:41 +0200231reinitialize_breakpoints(Process *proc) {
Juan Cespedescd8976d2009-05-14 13:47:58 +0200232 struct library_symbol *sym;
233
234 debug(DEBUG_FUNCTION, "reinitialize_breakpoints(pid=%d)", proc->pid);
235
236 sym = proc->list_of_symbols;
Ian Wienand9a2ad352006-02-20 22:44:45 +0100237
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100238 while (sym) {
239 if (sym->needs_init) {
Petr Machatac7585b62011-07-08 22:58:12 +0200240 insert_breakpoint(proc, sym2addr(proc, sym), sym, 1);
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100241 if (sym->needs_init && !sym->is_weak) {
242 fprintf(stderr,
243 "could not re-initialize breakpoint for \"%s\" in file \"%s\"\n",
244 sym->name, proc->filename);
245 exit(1);
246 }
247 }
248 sym = sym->next;
249 }
250}