Introduce show_debug_regs
[deliverable/binutils-gdb.git] / gdb / solib-frv.c
CommitLineData
c4d10515 1/* Handle FR-V (FDPIC) shared libraries for GDB, the GNU Debugger.
ecd75fc8 2 Copyright (C) 2004-2014 Free Software Foundation, Inc.
c4d10515
KB
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
c4d10515
KB
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c4d10515
KB
18
19
20#include "defs.h"
c4d10515
KB
21#include "inferior.h"
22#include "gdbcore.h"
cb5c8c39 23#include "solib.h"
c4d10515
KB
24#include "solist.h"
25#include "frv-tdep.h"
26#include "objfiles.h"
27#include "symtab.h"
28#include "language.h"
29#include "command.h"
30#include "gdbcmd.h"
31#include "elf/frv.h"
f1838a98 32#include "exceptions.h"
cbb099e8 33#include "gdb_bfd.h"
c4d10515
KB
34
35/* Flag which indicates whether internal debug messages should be printed. */
ccce17b0 36static unsigned int solib_frv_debug;
c4d10515
KB
37
38/* FR-V pointers are four bytes wide. */
39enum { FRV_PTR_SIZE = 4 };
40
41/* Representation of loadmap and related structs for the FR-V FDPIC ABI. */
42
43/* External versions; the size and alignment of the fields should be
44 the same as those on the target. When loaded, the placement of
45 the bits in each field will be the same as on the target. */
e2b7c966
KB
46typedef gdb_byte ext_Elf32_Half[2];
47typedef gdb_byte ext_Elf32_Addr[4];
48typedef gdb_byte ext_Elf32_Word[4];
c4d10515
KB
49
50struct ext_elf32_fdpic_loadseg
51{
52 /* Core address to which the segment is mapped. */
53 ext_Elf32_Addr addr;
54 /* VMA recorded in the program header. */
55 ext_Elf32_Addr p_vaddr;
56 /* Size of this segment in memory. */
57 ext_Elf32_Word p_memsz;
58};
59
60struct ext_elf32_fdpic_loadmap {
61 /* Protocol version number, must be zero. */
62 ext_Elf32_Half version;
63 /* Number of segments in this map. */
64 ext_Elf32_Half nsegs;
65 /* The actual memory map. */
66 struct ext_elf32_fdpic_loadseg segs[1 /* nsegs, actually */];
67};
68
69/* Internal versions; the types are GDB types and the data in each
70 of the fields is (or will be) decoded from the external struct
71 for ease of consumption. */
72struct int_elf32_fdpic_loadseg
73{
74 /* Core address to which the segment is mapped. */
75 CORE_ADDR addr;
76 /* VMA recorded in the program header. */
77 CORE_ADDR p_vaddr;
78 /* Size of this segment in memory. */
79 long p_memsz;
80};
81
82struct int_elf32_fdpic_loadmap {
83 /* Protocol version number, must be zero. */
84 int version;
85 /* Number of segments in this map. */
86 int nsegs;
87 /* The actual memory map. */
88 struct int_elf32_fdpic_loadseg segs[1 /* nsegs, actually */];
89};
90
91/* Given address LDMADDR, fetch and decode the loadmap at that address.
92 Return NULL if there is a problem reading the target memory or if
93 there doesn't appear to be a loadmap at the given address. The
94 allocated space (representing the loadmap) returned by this
95 function may be freed via a single call to xfree(). */
96
97static struct int_elf32_fdpic_loadmap *
98fetch_loadmap (CORE_ADDR ldmaddr)
99{
f5656ead 100 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
c4d10515
KB
101 struct ext_elf32_fdpic_loadmap ext_ldmbuf_partial;
102 struct ext_elf32_fdpic_loadmap *ext_ldmbuf;
103 struct int_elf32_fdpic_loadmap *int_ldmbuf;
104 int ext_ldmbuf_size, int_ldmbuf_size;
105 int version, seg, nsegs;
106
107 /* Fetch initial portion of the loadmap. */
e2b7c966 108 if (target_read_memory (ldmaddr, (gdb_byte *) &ext_ldmbuf_partial,
c4d10515
KB
109 sizeof ext_ldmbuf_partial))
110 {
111 /* Problem reading the target's memory. */
112 return NULL;
113 }
114
115 /* Extract the version. */
e2b7c966 116 version = extract_unsigned_integer (ext_ldmbuf_partial.version,
e17a4113
UW
117 sizeof ext_ldmbuf_partial.version,
118 byte_order);
c4d10515
KB
119 if (version != 0)
120 {
121 /* We only handle version 0. */
122 return NULL;
123 }
124
125 /* Extract the number of segments. */
e2b7c966 126 nsegs = extract_unsigned_integer (ext_ldmbuf_partial.nsegs,
e17a4113
UW
127 sizeof ext_ldmbuf_partial.nsegs,
128 byte_order);
c4d10515 129
9bc7b6c6
KB
130 if (nsegs <= 0)
131 return NULL;
132
c4d10515
KB
133 /* Allocate space for the complete (external) loadmap. */
134 ext_ldmbuf_size = sizeof (struct ext_elf32_fdpic_loadmap)
135 + (nsegs - 1) * sizeof (struct ext_elf32_fdpic_loadseg);
136 ext_ldmbuf = xmalloc (ext_ldmbuf_size);
137
138 /* Copy over the portion of the loadmap that's already been read. */
139 memcpy (ext_ldmbuf, &ext_ldmbuf_partial, sizeof ext_ldmbuf_partial);
140
141 /* Read the rest of the loadmap from the target. */
142 if (target_read_memory (ldmaddr + sizeof ext_ldmbuf_partial,
e2b7c966 143 (gdb_byte *) ext_ldmbuf + sizeof ext_ldmbuf_partial,
c4d10515
KB
144 ext_ldmbuf_size - sizeof ext_ldmbuf_partial))
145 {
146 /* Couldn't read rest of the loadmap. */
147 xfree (ext_ldmbuf);
148 return NULL;
149 }
150
151 /* Allocate space into which to put information extract from the
152 external loadsegs. I.e, allocate the internal loadsegs. */
153 int_ldmbuf_size = sizeof (struct int_elf32_fdpic_loadmap)
154 + (nsegs - 1) * sizeof (struct int_elf32_fdpic_loadseg);
155 int_ldmbuf = xmalloc (int_ldmbuf_size);
156
157 /* Place extracted information in internal structs. */
158 int_ldmbuf->version = version;
159 int_ldmbuf->nsegs = nsegs;
160 for (seg = 0; seg < nsegs; seg++)
161 {
162 int_ldmbuf->segs[seg].addr
e2b7c966 163 = extract_unsigned_integer (ext_ldmbuf->segs[seg].addr,
e17a4113
UW
164 sizeof (ext_ldmbuf->segs[seg].addr),
165 byte_order);
c4d10515 166 int_ldmbuf->segs[seg].p_vaddr
e2b7c966 167 = extract_unsigned_integer (ext_ldmbuf->segs[seg].p_vaddr,
e17a4113
UW
168 sizeof (ext_ldmbuf->segs[seg].p_vaddr),
169 byte_order);
c4d10515 170 int_ldmbuf->segs[seg].p_memsz
e2b7c966 171 = extract_unsigned_integer (ext_ldmbuf->segs[seg].p_memsz,
e17a4113
UW
172 sizeof (ext_ldmbuf->segs[seg].p_memsz),
173 byte_order);
c4d10515
KB
174 }
175
d5c560f7 176 xfree (ext_ldmbuf);
c4d10515
KB
177 return int_ldmbuf;
178}
179
180/* External link_map and elf32_fdpic_loadaddr struct definitions. */
181
e2b7c966 182typedef gdb_byte ext_ptr[4];
c4d10515
KB
183
184struct ext_elf32_fdpic_loadaddr
185{
186 ext_ptr map; /* struct elf32_fdpic_loadmap *map; */
187 ext_ptr got_value; /* void *got_value; */
188};
189
190struct ext_link_map
191{
192 struct ext_elf32_fdpic_loadaddr l_addr;
193
194 /* Absolute file name object was found in. */
195 ext_ptr l_name; /* char *l_name; */
196
197 /* Dynamic section of the shared object. */
198 ext_ptr l_ld; /* ElfW(Dyn) *l_ld; */
199
200 /* Chain of loaded objects. */
201 ext_ptr l_next, l_prev; /* struct link_map *l_next, *l_prev; */
202};
203
c378eb4e 204/* Link map info to include in an allocated so_list entry. */
c4d10515
KB
205
206struct lm_info
207 {
208 /* The loadmap, digested into an easier to use form. */
209 struct int_elf32_fdpic_loadmap *map;
210 /* The GOT address for this link map entry. */
211 CORE_ADDR got_value;
186993b4
KB
212 /* The link map address, needed for frv_fetch_objfile_link_map(). */
213 CORE_ADDR lm_addr;
c4d10515
KB
214
215 /* Cached dynamic symbol table and dynamic relocs initialized and
216 used only by find_canonical_descriptor_in_load_object().
217
218 Note: kevinb/2004-02-26: It appears that calls to
219 bfd_canonicalize_dynamic_reloc() will use the same symbols as
220 those supplied to the first call to this function. Therefore,
221 it's important to NOT free the asymbol ** data structure
222 supplied to the first call. Thus the caching of the dynamic
223 symbols (dyn_syms) is critical for correct operation. The
224 caching of the dynamic relocations could be dispensed with. */
225 asymbol **dyn_syms;
226 arelent **dyn_relocs;
c378eb4e 227 int dyn_reloc_count; /* Number of dynamic relocs. */
c4d10515
KB
228
229 };
230
231/* The load map, got value, etc. are not available from the chain
232 of loaded shared objects. ``main_executable_lm_info'' provides
233 a way to get at this information so that it doesn't need to be
234 frequently recomputed. Initialized by frv_relocate_main_executable(). */
235static struct lm_info *main_executable_lm_info;
236
237static void frv_relocate_main_executable (void);
238static CORE_ADDR main_got (void);
239static int enable_break2 (void);
240
7f86f058 241/* Implement the "open_symbol_file_object" target_so_ops method. */
c4d10515
KB
242
243static int
244open_symbol_file_object (void *from_ttyp)
245{
246 /* Unimplemented. */
247 return 0;
248}
249
250/* Cached value for lm_base(), below. */
251static CORE_ADDR lm_base_cache = 0;
252
186993b4
KB
253/* Link map address for main module. */
254static CORE_ADDR main_lm_addr = 0;
255
c4d10515
KB
256/* Return the address from which the link map chain may be found. On
257 the FR-V, this may be found in a number of ways. Assuming that the
258 main executable has already been relocated, the easiest way to find
259 this value is to look up the address of _GLOBAL_OFFSET_TABLE_. A
260 pointer to the start of the link map will be located at the word found
261 at _GLOBAL_OFFSET_TABLE_ + 8. (This is part of the dynamic linker
262 reserve area mandated by the ABI.) */
263
264static CORE_ADDR
265lm_base (void)
266{
f5656ead 267 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
3b7344d5 268 struct bound_minimal_symbol got_sym;
c4d10515 269 CORE_ADDR addr;
e2b7c966 270 gdb_byte buf[FRV_PTR_SIZE];
c4d10515 271
89a7ee67
KB
272 /* One of our assumptions is that the main executable has been relocated.
273 Bail out if this has not happened. (Note that post_create_inferior()
274 in infcmd.c will call solib_add prior to solib_create_inferior_hook().
275 If we allow this to happen, lm_base_cache will be initialized with
276 a bogus value. */
277 if (main_executable_lm_info == 0)
278 return 0;
279
c4d10515
KB
280 /* If we already have a cached value, return it. */
281 if (lm_base_cache)
282 return lm_base_cache;
283
284 got_sym = lookup_minimal_symbol ("_GLOBAL_OFFSET_TABLE_", NULL,
285 symfile_objfile);
3b7344d5 286 if (got_sym.minsym == 0)
c4d10515
KB
287 {
288 if (solib_frv_debug)
289 fprintf_unfiltered (gdb_stdlog,
290 "lm_base: _GLOBAL_OFFSET_TABLE_ not found.\n");
291 return 0;
292 }
293
77e371c0 294 addr = BMSYMBOL_VALUE_ADDRESS (got_sym) + 8;
c4d10515
KB
295
296 if (solib_frv_debug)
297 fprintf_unfiltered (gdb_stdlog,
298 "lm_base: _GLOBAL_OFFSET_TABLE_ + 8 = %s\n",
bb599908 299 hex_string_custom (addr, 8));
c4d10515
KB
300
301 if (target_read_memory (addr, buf, sizeof buf) != 0)
302 return 0;
e17a4113 303 lm_base_cache = extract_unsigned_integer (buf, sizeof buf, byte_order);
c4d10515
KB
304
305 if (solib_frv_debug)
306 fprintf_unfiltered (gdb_stdlog,
307 "lm_base: lm_base_cache = %s\n",
bb599908 308 hex_string_custom (lm_base_cache, 8));
c4d10515
KB
309
310 return lm_base_cache;
311}
312
313
7f86f058 314/* Implement the "current_sos" target_so_ops method. */
c4d10515
KB
315
316static struct so_list *
317frv_current_sos (void)
318{
f5656ead 319 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
c4d10515
KB
320 CORE_ADDR lm_addr, mgot;
321 struct so_list *sos_head = NULL;
322 struct so_list **sos_next_ptr = &sos_head;
323
7c699b81
KB
324 /* Make sure that the main executable has been relocated. This is
325 required in order to find the address of the global offset table,
326 which in turn is used to find the link map info. (See lm_base()
327 for details.)
328
329 Note that the relocation of the main executable is also performed
4d1eb6b4 330 by solib_create_inferior_hook(), however, in the case of core
7c699b81 331 files, this hook is called too late in order to be of benefit to
4d1eb6b4 332 solib_add. solib_add eventually calls this this function,
7c699b81 333 frv_current_sos, and also precedes the call to
4d1eb6b4 334 solib_create_inferior_hook(). (See post_create_inferior() in
7c699b81
KB
335 infcmd.c.) */
336 if (main_executable_lm_info == 0 && core_bfd != NULL)
337 frv_relocate_main_executable ();
338
339 /* Fetch the GOT corresponding to the main executable. */
c4d10515
KB
340 mgot = main_got ();
341
342 /* Locate the address of the first link map struct. */
343 lm_addr = lm_base ();
344
b021a221 345 /* We have at least one link map entry. Fetch the lot of them,
c4d10515
KB
346 building the solist chain. */
347 while (lm_addr)
348 {
349 struct ext_link_map lm_buf;
350 CORE_ADDR got_addr;
351
352 if (solib_frv_debug)
353 fprintf_unfiltered (gdb_stdlog,
354 "current_sos: reading link_map entry at %s\n",
bb599908 355 hex_string_custom (lm_addr, 8));
c4d10515 356
3e43a32a
MS
357 if (target_read_memory (lm_addr, (gdb_byte *) &lm_buf,
358 sizeof (lm_buf)) != 0)
c4d10515 359 {
3e43a32a
MS
360 warning (_("frv_current_sos: Unable to read link map entry. "
361 "Shared object chain may be incomplete."));
c4d10515
KB
362 break;
363 }
364
365 got_addr
e2b7c966 366 = extract_unsigned_integer (lm_buf.l_addr.got_value,
e17a4113
UW
367 sizeof (lm_buf.l_addr.got_value),
368 byte_order);
c4d10515
KB
369 /* If the got_addr is the same as mgotr, then we're looking at the
370 entry for the main executable. By convention, we don't include
371 this in the list of shared objects. */
372 if (got_addr != mgot)
373 {
374 int errcode;
375 char *name_buf;
376 struct int_elf32_fdpic_loadmap *loadmap;
377 struct so_list *sop;
378 CORE_ADDR addr;
379
380 /* Fetch the load map address. */
e2b7c966 381 addr = extract_unsigned_integer (lm_buf.l_addr.map,
e17a4113
UW
382 sizeof lm_buf.l_addr.map,
383 byte_order);
c4d10515
KB
384 loadmap = fetch_loadmap (addr);
385 if (loadmap == NULL)
386 {
3e43a32a
MS
387 warning (_("frv_current_sos: Unable to fetch load map. "
388 "Shared object chain may be incomplete."));
c4d10515
KB
389 break;
390 }
391
392 sop = xcalloc (1, sizeof (struct so_list));
393 sop->lm_info = xcalloc (1, sizeof (struct lm_info));
394 sop->lm_info->map = loadmap;
395 sop->lm_info->got_value = got_addr;
186993b4 396 sop->lm_info->lm_addr = lm_addr;
c4d10515 397 /* Fetch the name. */
e2b7c966 398 addr = extract_unsigned_integer (lm_buf.l_name,
e17a4113
UW
399 sizeof (lm_buf.l_name),
400 byte_order);
c4d10515
KB
401 target_read_string (addr, &name_buf, SO_NAME_MAX_PATH_SIZE - 1,
402 &errcode);
403
404 if (solib_frv_debug)
405 fprintf_unfiltered (gdb_stdlog, "current_sos: name = %s\n",
406 name_buf);
407
408 if (errcode != 0)
8a3fe4f8
AC
409 warning (_("Can't read pathname for link map entry: %s."),
410 safe_strerror (errcode));
c4d10515
KB
411 else
412 {
413 strncpy (sop->so_name, name_buf, SO_NAME_MAX_PATH_SIZE - 1);
414 sop->so_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
415 xfree (name_buf);
416 strcpy (sop->so_original_name, sop->so_name);
417 }
418
419 *sos_next_ptr = sop;
420 sos_next_ptr = &sop->next;
421 }
186993b4
KB
422 else
423 {
424 main_lm_addr = lm_addr;
425 }
c4d10515 426
e17a4113
UW
427 lm_addr = extract_unsigned_integer (lm_buf.l_next,
428 sizeof (lm_buf.l_next), byte_order);
c4d10515
KB
429 }
430
431 enable_break2 ();
432
433 return sos_head;
434}
435
436
437/* Return 1 if PC lies in the dynamic symbol resolution code of the
438 run time loader. */
439
440static CORE_ADDR interp_text_sect_low;
441static CORE_ADDR interp_text_sect_high;
442static CORE_ADDR interp_plt_sect_low;
443static CORE_ADDR interp_plt_sect_high;
444
445static int
446frv_in_dynsym_resolve_code (CORE_ADDR pc)
447{
448 return ((pc >= interp_text_sect_low && pc < interp_text_sect_high)
449 || (pc >= interp_plt_sect_low && pc < interp_plt_sect_high)
3e5d3a5a 450 || in_plt_section (pc));
c4d10515
KB
451}
452
453/* Given a loadmap and an address, return the displacement needed
454 to relocate the address. */
455
63807e1d 456static CORE_ADDR
c4d10515
KB
457displacement_from_map (struct int_elf32_fdpic_loadmap *map,
458 CORE_ADDR addr)
459{
460 int seg;
461
462 for (seg = 0; seg < map->nsegs; seg++)
463 {
464 if (map->segs[seg].p_vaddr <= addr
465 && addr < map->segs[seg].p_vaddr + map->segs[seg].p_memsz)
466 {
467 return map->segs[seg].addr - map->segs[seg].p_vaddr;
468 }
469 }
470
471 return 0;
472}
473
474/* Print a warning about being unable to set the dynamic linker
475 breakpoint. */
476
477static void
478enable_break_failure_warning (void)
479{
8a3fe4f8 480 warning (_("Unable to find dynamic linker breakpoint function.\n"
c4d10515 481 "GDB will be unable to debug shared library initializers\n"
8a3fe4f8 482 "and track explicitly loaded dynamic code."));
c4d10515
KB
483}
484
cb457ae2
YQ
485/* Helper function for gdb_bfd_lookup_symbol. */
486
487static int
488cmp_name (asymbol *sym, void *data)
489{
490 return (strcmp (sym->name, (const char *) data) == 0);
491}
492
7f86f058 493/* Arrange for dynamic linker to hit breakpoint.
c4d10515
KB
494
495 The dynamic linkers has, as part of its debugger interface, support
496 for arranging for the inferior to hit a breakpoint after mapping in
497 the shared libraries. This function enables that breakpoint.
498
499 On the FR-V, using the shared library (FDPIC) ABI, the symbol
500 _dl_debug_addr points to the r_debug struct which contains
501 a field called r_brk. r_brk is the address of the function
502 descriptor upon which a breakpoint must be placed. Being a
503 function descriptor, we must extract the entry point in order
504 to set the breakpoint.
505
506 Our strategy will be to get the .interp section from the
507 executable. This section will provide us with the name of the
508 interpreter. We'll open the interpreter and then look up
509 the address of _dl_debug_addr. We then relocate this address
510 using the interpreter's loadmap. Once the relocated address
511 is known, we fetch the value (address) corresponding to r_brk
512 and then use that value to fetch the entry point of the function
7f86f058 513 we're interested in. */
c4d10515 514
c4d10515
KB
515static int enable_break2_done = 0;
516
517static int
518enable_break2 (void)
519{
f5656ead 520 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
c4d10515
KB
521 int success = 0;
522 char **bkpt_namep;
523 asection *interp_sect;
524
cb7db0f2 525 if (enable_break2_done)
c4d10515
KB
526 return 1;
527
c4d10515
KB
528 interp_text_sect_low = interp_text_sect_high = 0;
529 interp_plt_sect_low = interp_plt_sect_high = 0;
530
531 /* Find the .interp section; if not found, warn the user and drop
532 into the old breakpoint at symbol code. */
533 interp_sect = bfd_get_section_by_name (exec_bfd, ".interp");
534 if (interp_sect)
535 {
536 unsigned int interp_sect_size;
001f13d8 537 char *buf;
c4d10515 538 bfd *tmp_bfd = NULL;
c4d10515
KB
539 int status;
540 CORE_ADDR addr, interp_loadmap_addr;
e2b7c966 541 gdb_byte addr_buf[FRV_PTR_SIZE];
c4d10515 542 struct int_elf32_fdpic_loadmap *ldm;
f1838a98 543 volatile struct gdb_exception ex;
c4d10515
KB
544
545 /* Read the contents of the .interp section into a local buffer;
546 the contents specify the dynamic linker this program uses. */
547 interp_sect_size = bfd_section_size (exec_bfd, interp_sect);
548 buf = alloca (interp_sect_size);
549 bfd_get_section_contents (exec_bfd, interp_sect,
550 buf, 0, interp_sect_size);
551
552 /* Now we need to figure out where the dynamic linker was
553 loaded so that we can load its symbols and place a breakpoint
554 in the dynamic linker itself.
555
556 This address is stored on the stack. However, I've been unable
557 to find any magic formula to find it for Solaris (appears to
558 be trivial on GNU/Linux). Therefore, we have to try an alternate
559 mechanism to find the dynamic linker's base address. */
560
f1838a98
UW
561 TRY_CATCH (ex, RETURN_MASK_ALL)
562 {
563 tmp_bfd = solib_bfd_open (buf);
564 }
c4d10515
KB
565 if (tmp_bfd == NULL)
566 {
567 enable_break_failure_warning ();
568 return 0;
569 }
570
f5656ead 571 status = frv_fdpic_loadmap_addresses (target_gdbarch (),
c4d10515
KB
572 &interp_loadmap_addr, 0);
573 if (status < 0)
574 {
8a3fe4f8 575 warning (_("Unable to determine dynamic linker loadmap address."));
c4d10515 576 enable_break_failure_warning ();
cbb099e8 577 gdb_bfd_unref (tmp_bfd);
c4d10515
KB
578 return 0;
579 }
580
581 if (solib_frv_debug)
582 fprintf_unfiltered (gdb_stdlog,
583 "enable_break: interp_loadmap_addr = %s\n",
bb599908 584 hex_string_custom (interp_loadmap_addr, 8));
c4d10515
KB
585
586 ldm = fetch_loadmap (interp_loadmap_addr);
587 if (ldm == NULL)
588 {
8a3fe4f8 589 warning (_("Unable to load dynamic linker loadmap at address %s."),
bb599908 590 hex_string_custom (interp_loadmap_addr, 8));
c4d10515 591 enable_break_failure_warning ();
cbb099e8 592 gdb_bfd_unref (tmp_bfd);
c4d10515
KB
593 return 0;
594 }
595
596 /* Record the relocated start and end address of the dynamic linker
597 text and plt section for svr4_in_dynsym_resolve_code. */
598 interp_sect = bfd_get_section_by_name (tmp_bfd, ".text");
599 if (interp_sect)
600 {
601 interp_text_sect_low
602 = bfd_section_vma (tmp_bfd, interp_sect);
603 interp_text_sect_low
604 += displacement_from_map (ldm, interp_text_sect_low);
605 interp_text_sect_high
606 = interp_text_sect_low + bfd_section_size (tmp_bfd, interp_sect);
607 }
608 interp_sect = bfd_get_section_by_name (tmp_bfd, ".plt");
609 if (interp_sect)
610 {
611 interp_plt_sect_low =
612 bfd_section_vma (tmp_bfd, interp_sect);
613 interp_plt_sect_low
614 += displacement_from_map (ldm, interp_plt_sect_low);
615 interp_plt_sect_high =
616 interp_plt_sect_low + bfd_section_size (tmp_bfd, interp_sect);
617 }
618
cb457ae2
YQ
619 addr = gdb_bfd_lookup_symbol (tmp_bfd, cmp_name, "_dl_debug_addr");
620
c4d10515
KB
621 if (addr == 0)
622 {
3e43a32a
MS
623 warning (_("Could not find symbol _dl_debug_addr "
624 "in dynamic linker"));
c4d10515 625 enable_break_failure_warning ();
cbb099e8 626 gdb_bfd_unref (tmp_bfd);
c4d10515
KB
627 return 0;
628 }
629
630 if (solib_frv_debug)
631 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
632 "enable_break: _dl_debug_addr "
633 "(prior to relocation) = %s\n",
bb599908 634 hex_string_custom (addr, 8));
c4d10515
KB
635
636 addr += displacement_from_map (ldm, addr);
637
638 if (solib_frv_debug)
639 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
640 "enable_break: _dl_debug_addr "
641 "(after relocation) = %s\n",
bb599908 642 hex_string_custom (addr, 8));
c4d10515
KB
643
644 /* Fetch the address of the r_debug struct. */
645 if (target_read_memory (addr, addr_buf, sizeof addr_buf) != 0)
646 {
3e43a32a
MS
647 warning (_("Unable to fetch contents of _dl_debug_addr "
648 "(at address %s) from dynamic linker"),
bb599908 649 hex_string_custom (addr, 8));
c4d10515 650 }
e17a4113 651 addr = extract_unsigned_integer (addr_buf, sizeof addr_buf, byte_order);
c4d10515 652
cb7db0f2
MF
653 if (solib_frv_debug)
654 fprintf_unfiltered (gdb_stdlog,
655 "enable_break: _dl_debug_addr[0..3] = %s\n",
656 hex_string_custom (addr, 8));
657
658 /* If it's zero, then the ldso hasn't initialized yet, and so
659 there are no shared libs yet loaded. */
660 if (addr == 0)
661 {
662 if (solib_frv_debug)
663 fprintf_unfiltered (gdb_stdlog,
664 "enable_break: ldso not yet initialized\n");
665 /* Do not warn, but mark to run again. */
666 return 0;
667 }
668
c4d10515
KB
669 /* Fetch the r_brk field. It's 8 bytes from the start of
670 _dl_debug_addr. */
671 if (target_read_memory (addr + 8, addr_buf, sizeof addr_buf) != 0)
672 {
3e43a32a
MS
673 warning (_("Unable to fetch _dl_debug_addr->r_brk "
674 "(at address %s) from dynamic linker"),
bb599908 675 hex_string_custom (addr + 8, 8));
c4d10515 676 enable_break_failure_warning ();
cbb099e8 677 gdb_bfd_unref (tmp_bfd);
c4d10515
KB
678 return 0;
679 }
e17a4113 680 addr = extract_unsigned_integer (addr_buf, sizeof addr_buf, byte_order);
c4d10515
KB
681
682 /* Now fetch the function entry point. */
683 if (target_read_memory (addr, addr_buf, sizeof addr_buf) != 0)
684 {
3e43a32a
MS
685 warning (_("Unable to fetch _dl_debug_addr->.r_brk entry point "
686 "(at address %s) from dynamic linker"),
bb599908 687 hex_string_custom (addr, 8));
c4d10515 688 enable_break_failure_warning ();
cbb099e8 689 gdb_bfd_unref (tmp_bfd);
c4d10515
KB
690 return 0;
691 }
e17a4113 692 addr = extract_unsigned_integer (addr_buf, sizeof addr_buf, byte_order);
c4d10515
KB
693
694 /* We're done with the temporary bfd. */
cbb099e8 695 gdb_bfd_unref (tmp_bfd);
c4d10515
KB
696
697 /* We're also done with the loadmap. */
698 xfree (ldm);
699
cb7db0f2
MF
700 /* Remove all the solib event breakpoints. Their addresses
701 may have changed since the last time we ran the program. */
702 remove_solib_event_breakpoints ();
703
c4d10515 704 /* Now (finally!) create the solib breakpoint. */
f5656ead 705 create_solib_event_breakpoint (target_gdbarch (), addr);
c4d10515 706
cb7db0f2
MF
707 enable_break2_done = 1;
708
c4d10515
KB
709 return 1;
710 }
711
712 /* Tell the user we couldn't set a dynamic linker breakpoint. */
713 enable_break_failure_warning ();
714
715 /* Failure return. */
716 return 0;
717}
718
719static int
720enable_break (void)
721{
722 asection *interp_sect;
d56e56aa 723 CORE_ADDR entry_point;
c4d10515 724
abd0a5fa 725 if (symfile_objfile == NULL)
c4d10515 726 {
abd0a5fa
JK
727 if (solib_frv_debug)
728 fprintf_unfiltered (gdb_stdlog,
729 "enable_break: No symbol file found.\n");
730 return 0;
731 }
c4d10515 732
d56e56aa 733 if (!entry_point_address_query (&entry_point))
abd0a5fa 734 {
c4d10515
KB
735 if (solib_frv_debug)
736 fprintf_unfiltered (gdb_stdlog,
abd0a5fa
JK
737 "enable_break: Symbol file has no entry point.\n");
738 return 0;
c4d10515 739 }
abd0a5fa
JK
740
741 /* Check for the presence of a .interp section. If there is no
742 such section, the executable is statically linked. */
743
744 interp_sect = bfd_get_section_by_name (exec_bfd, ".interp");
745
746 if (interp_sect == NULL)
c4d10515
KB
747 {
748 if (solib_frv_debug)
749 fprintf_unfiltered (gdb_stdlog,
abd0a5fa
JK
750 "enable_break: No .interp section found.\n");
751 return 0;
c4d10515
KB
752 }
753
d56e56aa 754 create_solib_event_breakpoint (target_gdbarch (), entry_point);
abd0a5fa
JK
755
756 if (solib_frv_debug)
757 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
758 "enable_break: solib event breakpoint "
759 "placed at entry point: %s\n",
d56e56aa 760 hex_string_custom (entry_point, 8));
c4d10515
KB
761 return 1;
762}
763
7f86f058 764/* Implement the "special_symbol_handling" target_so_ops method. */
c4d10515
KB
765
766static void
767frv_special_symbol_handling (void)
768{
7f86f058 769 /* Nothing needed for FRV. */
c4d10515
KB
770}
771
772static void
773frv_relocate_main_executable (void)
774{
775 int status;
9bc7b6c6 776 CORE_ADDR exec_addr, interp_addr;
c4d10515
KB
777 struct int_elf32_fdpic_loadmap *ldm;
778 struct cleanup *old_chain;
779 struct section_offsets *new_offsets;
780 int changed;
781 struct obj_section *osect;
782
f5656ead 783 status = frv_fdpic_loadmap_addresses (target_gdbarch (),
9bc7b6c6 784 &interp_addr, &exec_addr);
c4d10515 785
9bc7b6c6 786 if (status < 0 || (exec_addr == 0 && interp_addr == 0))
c4d10515
KB
787 {
788 /* Not using FDPIC ABI, so do nothing. */
789 return;
790 }
791
792 /* Fetch the loadmap located at ``exec_addr''. */
793 ldm = fetch_loadmap (exec_addr);
794 if (ldm == NULL)
8a3fe4f8 795 error (_("Unable to load the executable's loadmap."));
c4d10515
KB
796
797 if (main_executable_lm_info)
798 xfree (main_executable_lm_info);
799 main_executable_lm_info = xcalloc (1, sizeof (struct lm_info));
800 main_executable_lm_info->map = ldm;
801
802 new_offsets = xcalloc (symfile_objfile->num_sections,
803 sizeof (struct section_offsets));
804 old_chain = make_cleanup (xfree, new_offsets);
805 changed = 0;
806
807 ALL_OBJFILE_OSECTIONS (symfile_objfile, osect)
808 {
809 CORE_ADDR orig_addr, addr, offset;
810 int osect_idx;
811 int seg;
812
65cf3563 813 osect_idx = osect - symfile_objfile->sections;
c4d10515
KB
814
815 /* Current address of section. */
aded6f54 816 addr = obj_section_addr (osect);
c4d10515
KB
817 /* Offset from where this section started. */
818 offset = ANOFFSET (symfile_objfile->section_offsets, osect_idx);
819 /* Original address prior to any past relocations. */
820 orig_addr = addr - offset;
821
822 for (seg = 0; seg < ldm->nsegs; seg++)
823 {
824 if (ldm->segs[seg].p_vaddr <= orig_addr
825 && orig_addr < ldm->segs[seg].p_vaddr + ldm->segs[seg].p_memsz)
826 {
827 new_offsets->offsets[osect_idx]
828 = ldm->segs[seg].addr - ldm->segs[seg].p_vaddr;
829
830 if (new_offsets->offsets[osect_idx] != offset)
831 changed = 1;
832 break;
833 }
834 }
835 }
836
837 if (changed)
838 objfile_relocate (symfile_objfile, new_offsets);
839
840 do_cleanups (old_chain);
841
842 /* Now that symfile_objfile has been relocated, we can compute the
843 GOT value and stash it away. */
844 main_executable_lm_info->got_value = main_got ();
845}
846
7f86f058 847/* Implement the "create_inferior_hook" target_solib_ops method.
c4d10515 848
7f86f058
PA
849 For the FR-V shared library ABI (FDPIC), the main executable needs
850 to be relocated. The shared library breakpoints also need to be
851 enabled. */
c4d10515
KB
852
853static void
268a4a75 854frv_solib_create_inferior_hook (int from_tty)
c4d10515
KB
855{
856 /* Relocate main executable. */
857 frv_relocate_main_executable ();
858
859 /* Enable shared library breakpoints. */
860 if (!enable_break ())
861 {
8a3fe4f8 862 warning (_("shared library handler failed to enable breakpoint"));
c4d10515
KB
863 return;
864 }
865}
866
867static void
868frv_clear_solib (void)
869{
870 lm_base_cache = 0;
c4d10515 871 enable_break2_done = 0;
186993b4 872 main_lm_addr = 0;
7c699b81
KB
873 if (main_executable_lm_info != 0)
874 {
875 xfree (main_executable_lm_info->map);
876 xfree (main_executable_lm_info->dyn_syms);
877 xfree (main_executable_lm_info->dyn_relocs);
878 xfree (main_executable_lm_info);
879 main_executable_lm_info = 0;
880 }
c4d10515
KB
881}
882
883static void
884frv_free_so (struct so_list *so)
885{
886 xfree (so->lm_info->map);
887 xfree (so->lm_info->dyn_syms);
888 xfree (so->lm_info->dyn_relocs);
889 xfree (so->lm_info);
890}
891
892static void
893frv_relocate_section_addresses (struct so_list *so,
0542c86d 894 struct target_section *sec)
c4d10515
KB
895{
896 int seg;
897 struct int_elf32_fdpic_loadmap *map;
898
899 map = so->lm_info->map;
900
901 for (seg = 0; seg < map->nsegs; seg++)
902 {
903 if (map->segs[seg].p_vaddr <= sec->addr
904 && sec->addr < map->segs[seg].p_vaddr + map->segs[seg].p_memsz)
905 {
906 CORE_ADDR displ = map->segs[seg].addr - map->segs[seg].p_vaddr;
433759f7 907
c4d10515
KB
908 sec->addr += displ;
909 sec->endaddr += displ;
910 break;
911 }
912 }
913}
914
915/* Return the GOT address associated with the main executable. Return
916 0 if it can't be found. */
917
918static CORE_ADDR
919main_got (void)
920{
3b7344d5 921 struct bound_minimal_symbol got_sym;
c4d10515 922
3e43a32a
MS
923 got_sym = lookup_minimal_symbol ("_GLOBAL_OFFSET_TABLE_",
924 NULL, symfile_objfile);
3b7344d5 925 if (got_sym.minsym == 0)
c4d10515
KB
926 return 0;
927
77e371c0 928 return BMSYMBOL_VALUE_ADDRESS (got_sym);
c4d10515
KB
929}
930
931/* Find the global pointer for the given function address ADDR. */
932
933CORE_ADDR
934frv_fdpic_find_global_pointer (CORE_ADDR addr)
935{
936 struct so_list *so;
937
938 so = master_so_list ();
939 while (so)
940 {
941 int seg;
942 struct int_elf32_fdpic_loadmap *map;
943
944 map = so->lm_info->map;
945
946 for (seg = 0; seg < map->nsegs; seg++)
947 {
948 if (map->segs[seg].addr <= addr
949 && addr < map->segs[seg].addr + map->segs[seg].p_memsz)
950 return so->lm_info->got_value;
951 }
952
953 so = so->next;
954 }
955
7a9dd1b2 956 /* Didn't find it in any of the shared objects. So assume it's in the
c4d10515
KB
957 main executable. */
958 return main_got ();
959}
960
961/* Forward declarations for frv_fdpic_find_canonical_descriptor(). */
962static CORE_ADDR find_canonical_descriptor_in_load_object
0d5cff50 963 (CORE_ADDR, CORE_ADDR, const char *, bfd *, struct lm_info *);
c4d10515
KB
964
965/* Given a function entry point, attempt to find the canonical descriptor
966 associated with that entry point. Return 0 if no canonical descriptor
967 could be found. */
968
969CORE_ADDR
970frv_fdpic_find_canonical_descriptor (CORE_ADDR entry_point)
971{
0d5cff50 972 const char *name;
c4d10515
KB
973 CORE_ADDR addr;
974 CORE_ADDR got_value;
975 struct int_elf32_fdpic_loadmap *ldm = 0;
976 struct symbol *sym;
c4d10515
KB
977
978 /* Fetch the corresponding global pointer for the entry point. */
979 got_value = frv_fdpic_find_global_pointer (entry_point);
980
981 /* Attempt to find the name of the function. If the name is available,
982 it'll be used as an aid in finding matching functions in the dynamic
983 symbol table. */
984 sym = find_pc_function (entry_point);
985 if (sym == 0)
986 name = 0;
987 else
988 name = SYMBOL_LINKAGE_NAME (sym);
989
990 /* Check the main executable. */
991 addr = find_canonical_descriptor_in_load_object
992 (entry_point, got_value, name, symfile_objfile->obfd,
993 main_executable_lm_info);
994
995 /* If descriptor not found via main executable, check each load object
996 in list of shared objects. */
997 if (addr == 0)
998 {
999 struct so_list *so;
1000
1001 so = master_so_list ();
1002 while (so)
1003 {
1004 addr = find_canonical_descriptor_in_load_object
1005 (entry_point, got_value, name, so->abfd, so->lm_info);
1006
1007 if (addr != 0)
1008 break;
1009
1010 so = so->next;
1011 }
1012 }
1013
1014 return addr;
1015}
1016
1017static CORE_ADDR
1018find_canonical_descriptor_in_load_object
0d5cff50 1019 (CORE_ADDR entry_point, CORE_ADDR got_value, const char *name, bfd *abfd,
c4d10515
KB
1020 struct lm_info *lm)
1021{
f5656ead 1022 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
c4d10515
KB
1023 arelent *rel;
1024 unsigned int i;
1025 CORE_ADDR addr = 0;
1026
1027 /* Nothing to do if no bfd. */
1028 if (abfd == 0)
1029 return 0;
1030
35e08e03
KB
1031 /* Nothing to do if no link map. */
1032 if (lm == 0)
1033 return 0;
1034
c4d10515
KB
1035 /* We want to scan the dynamic relocs for R_FRV_FUNCDESC relocations.
1036 (More about this later.) But in order to fetch the relocs, we
1037 need to first fetch the dynamic symbols. These symbols need to
1038 be cached due to the way that bfd_canonicalize_dynamic_reloc()
1039 works. (See the comments in the declaration of struct lm_info
1040 for more information.) */
1041 if (lm->dyn_syms == NULL)
1042 {
1043 long storage_needed;
1044 unsigned int number_of_symbols;
1045
1046 /* Determine amount of space needed to hold the dynamic symbol table. */
1047 storage_needed = bfd_get_dynamic_symtab_upper_bound (abfd);
1048
1049 /* If there are no dynamic symbols, there's nothing to do. */
1050 if (storage_needed <= 0)
1051 return 0;
1052
1053 /* Allocate space for the dynamic symbol table. */
1054 lm->dyn_syms = (asymbol **) xmalloc (storage_needed);
1055
1056 /* Fetch the dynamic symbol table. */
1057 number_of_symbols = bfd_canonicalize_dynamic_symtab (abfd, lm->dyn_syms);
1058
1059 if (number_of_symbols == 0)
1060 return 0;
1061 }
1062
1063 /* Fetch the dynamic relocations if not already cached. */
1064 if (lm->dyn_relocs == NULL)
1065 {
1066 long storage_needed;
1067
1068 /* Determine amount of space needed to hold the dynamic relocs. */
1069 storage_needed = bfd_get_dynamic_reloc_upper_bound (abfd);
1070
1071 /* Bail out if there are no dynamic relocs. */
1072 if (storage_needed <= 0)
1073 return 0;
1074
1075 /* Allocate space for the relocs. */
1076 lm->dyn_relocs = (arelent **) xmalloc (storage_needed);
1077
1078 /* Fetch the dynamic relocs. */
1079 lm->dyn_reloc_count
1080 = bfd_canonicalize_dynamic_reloc (abfd, lm->dyn_relocs, lm->dyn_syms);
1081 }
1082
1083 /* Search the dynamic relocs. */
1084 for (i = 0; i < lm->dyn_reloc_count; i++)
1085 {
1086 rel = lm->dyn_relocs[i];
1087
1088 /* Relocs of interest are those which meet the following
1089 criteria:
1090
1091 - the names match (assuming the caller could provide
1092 a name which matches ``entry_point'').
1093 - the relocation type must be R_FRV_FUNCDESC. Relocs
1094 of this type are used (by the dynamic linker) to
1095 look up the address of a canonical descriptor (allocating
1096 it if need be) and initializing the GOT entry referred
1097 to by the offset to the address of the descriptor.
1098
1099 These relocs of interest may be used to obtain a
1100 candidate descriptor by first adjusting the reloc's
1101 address according to the link map and then dereferencing
1102 this address (which is a GOT entry) to obtain a descriptor
1103 address. */
1104 if ((name == 0 || strcmp (name, (*rel->sym_ptr_ptr)->name) == 0)
1105 && rel->howto->type == R_FRV_FUNCDESC)
1106 {
e2b7c966 1107 gdb_byte buf [FRV_PTR_SIZE];
c4d10515
KB
1108
1109 /* Compute address of address of candidate descriptor. */
1110 addr = rel->address + displacement_from_map (lm->map, rel->address);
1111
1112 /* Fetch address of candidate descriptor. */
1113 if (target_read_memory (addr, buf, sizeof buf) != 0)
1114 continue;
e17a4113 1115 addr = extract_unsigned_integer (buf, sizeof buf, byte_order);
c4d10515
KB
1116
1117 /* Check for matching entry point. */
1118 if (target_read_memory (addr, buf, sizeof buf) != 0)
1119 continue;
e17a4113
UW
1120 if (extract_unsigned_integer (buf, sizeof buf, byte_order)
1121 != entry_point)
c4d10515
KB
1122 continue;
1123
1124 /* Check for matching got value. */
1125 if (target_read_memory (addr + 4, buf, sizeof buf) != 0)
1126 continue;
e17a4113
UW
1127 if (extract_unsigned_integer (buf, sizeof buf, byte_order)
1128 != got_value)
c4d10515
KB
1129 continue;
1130
1131 /* Match was successful! Exit loop. */
1132 break;
1133 }
1134 }
1135
1136 return addr;
1137}
1138
186993b4
KB
1139/* Given an objfile, return the address of its link map. This value is
1140 needed for TLS support. */
1141CORE_ADDR
1142frv_fetch_objfile_link_map (struct objfile *objfile)
1143{
1144 struct so_list *so;
1145
1146 /* Cause frv_current_sos() to be run if it hasn't been already. */
1147 if (main_lm_addr == 0)
1148 solib_add (0, 0, 0, 1);
1149
1150 /* frv_current_sos() will set main_lm_addr for the main executable. */
1151 if (objfile == symfile_objfile)
1152 return main_lm_addr;
1153
1154 /* The other link map addresses may be found by examining the list
1155 of shared libraries. */
1156 for (so = master_so_list (); so; so = so->next)
1157 {
1158 if (so->objfile == objfile)
1159 return so->lm_info->lm_addr;
1160 }
1161
1162 /* Not found! */
1163 return 0;
1164}
1165
917630e4 1166struct target_so_ops frv_so_ops;
c4d10515 1167
63807e1d
PA
1168/* Provide a prototype to silence -Wmissing-prototypes. */
1169extern initialize_file_ftype _initialize_frv_solib;
1170
c4d10515
KB
1171void
1172_initialize_frv_solib (void)
1173{
1174 frv_so_ops.relocate_section_addresses = frv_relocate_section_addresses;
1175 frv_so_ops.free_so = frv_free_so;
1176 frv_so_ops.clear_solib = frv_clear_solib;
1177 frv_so_ops.solib_create_inferior_hook = frv_solib_create_inferior_hook;
1178 frv_so_ops.special_symbol_handling = frv_special_symbol_handling;
1179 frv_so_ops.current_sos = frv_current_sos;
1180 frv_so_ops.open_symbol_file_object = open_symbol_file_object;
1181 frv_so_ops.in_dynsym_resolve_code = frv_in_dynsym_resolve_code;
831a0c44 1182 frv_so_ops.bfd_open = solib_bfd_open;
c4d10515 1183
c4d10515 1184 /* Debug this file's internals. */
ccce17b0
YQ
1185 add_setshow_zuinteger_cmd ("solib-frv", class_maintenance,
1186 &solib_frv_debug, _("\
85c07804
AC
1187Set internal debugging of shared library code for FR-V."), _("\
1188Show internal debugging of shared library code for FR-V."), _("\
1189When non-zero, FR-V solib specific internal debugging is enabled."),
ccce17b0
YQ
1190 NULL,
1191 NULL, /* FIXME: i18n: */
1192 &setdebuglist, &showdebuglist);
c4d10515 1193}
This page took 1.38055 seconds and 4 git commands to generate.