* [RFA Darwin]: Use bfd_mach_o_lookup_command to get interpreter
@ 2009-07-06 9:45 Tristan Gingold
2009-07-16 19:49 ` Joel Brobecker
0 siblings, 1 reply; 3+ messages in thread
From: Tristan Gingold @ 2009-07-06 9:45 UTC (permalink / raw)
To: gdb-patches
Hi,
a few weeks ago, I changed the BFD back-end so that the interpreter path is
not put anymore into a section. This patch adjust the way gdb retrieve the
interpreter: it is now get directly from the corresponding load command.
(As a good news this also simplifies the code).
(Maybe obvious or Mach-O maintainer ?)
Tristan.
2009-07-06 Tristan Gingold <gingold@adacore.com>
* solib-darwin.c (find_program_interpreter): Simplify the code by
looking up for the load_dylinker command instead of reading the
corresponding (but deprecated) section.
(darwin_solib_create_inferior_hook): Adjust: do not free the
interpreter path.
Index: solib-darwin.c
===================================================================
RCS file: /cvs/src/src/gdb/solib-darwin.c,v
retrieving revision 1.6
diff -u -p -r1.6 solib-darwin.c
--- solib-darwin.c 2 Jul 2009 17:25:58 -0000 1.6
+++ solib-darwin.c 6 Jul 2009 07:57:13 -0000
@@ -159,27 +159,20 @@ lookup_symbol_from_bfd (bfd *abfd, char
}
/* Return program interpreter string. */
+
static gdb_byte *
find_program_interpreter (void)
{
gdb_byte *buf = NULL;
- /* If we have an exec_bfd, use its section table. */
+ /* If we have an exec_bfd, get the interpreter from the load commands. */
if (exec_bfd)
{
- struct bfd_section *dylinker_sect;
+ bfd_mach_o_load_command *cmd;
- dylinker_sect = bfd_get_section_by_name (exec_bfd, "LC_LOAD_DYLINKER");
- if (dylinker_sect != NULL)
- {
- int sect_size = bfd_section_size (exec_bfd, dylinker_sect);
-
- buf = xmalloc (sect_size);
- if (bfd_get_section_contents (exec_bfd, dylinker_sect,
- buf, 0, sect_size))
- return buf;
- xfree (buf);
- }
+ if (bfd_mach_o_lookup_command (exec_bfd,
+ BFD_MACH_O_LC_LOAD_DYLINKER, &cmd) == 1)
+ return cmd->command.dylinker.name_str;
}
/* If we didn't find it, read from memory.
@@ -324,11 +317,8 @@ darwin_solib_create_inferior_hook (void)
}
}
if (!dyld_bfd)
- {
- xfree (interp_name);
- return;
- }
-
+ return;
+
if (!inf->attach_flag)
{
/* We find the dynamic linker's base address by examining
@@ -340,9 +330,8 @@ darwin_solib_create_inferior_hook (void)
else
{
/* FIXME: todo.
- Get address of __DATA.__dyld in exec_bfd, read address at offset 0
+ Get address of __DATA.__dyld in exec_bfd, read address at offset 0.
*/
- xfree (interp_name);
return;
}
@@ -351,7 +340,6 @@ darwin_solib_create_inferior_hook (void)
lookup_symbol_from_bfd (dyld_bfd, "_dyld_all_image_infos");
bfd_close (dyld_bfd);
- xfree (interp_name);
if (dyld_all_image_addr == 0)
return;
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [RFA Darwin]: Use bfd_mach_o_lookup_command to get interpreter
2009-07-06 9:45 [RFA Darwin]: Use bfd_mach_o_lookup_command to get interpreter Tristan Gingold
@ 2009-07-16 19:49 ` Joel Brobecker
2009-08-10 16:30 ` Tristan Gingold
0 siblings, 1 reply; 3+ messages in thread
From: Joel Brobecker @ 2009-07-16 19:49 UTC (permalink / raw)
To: Tristan Gingold; +Cc: gdb-patches
Hi Tristan,
> 2009-07-06 Tristan Gingold <gingold@adacore.com>
>
> * solib-darwin.c (find_program_interpreter): Simplify the code by
> looking up for the load_dylinker command instead of reading the
> corresponding (but deprecated) section.
> (darwin_solib_create_inferior_hook): Adjust: do not free the
> interpreter path.
That looks great. Go ahead and commit.
Thanks,
--
Joel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [RFA Darwin]: Use bfd_mach_o_lookup_command to get interpreter
2009-07-16 19:49 ` Joel Brobecker
@ 2009-08-10 16:30 ` Tristan Gingold
0 siblings, 0 replies; 3+ messages in thread
From: Tristan Gingold @ 2009-08-10 16:30 UTC (permalink / raw)
To: Joel Brobecker; +Cc: gdb-patches
On Jul 16, 2009, at 9:11 PM, Joel Brobecker wrote:
> Hi Tristan,
>
>> 2009-07-06 Tristan Gingold <gingold@adacore.com>
>>
>> * solib-darwin.c (find_program_interpreter): Simplify the code by
>> looking up for the load_dylinker command instead of reading the
>> corresponding (but deprecated) section.
>> (darwin_solib_create_inferior_hook): Adjust: do not free the
>> interpreter path.
>
> That looks great. Go ahead and commit.
Thanks, committed.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-08-10 9:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-07-06 9:45 [RFA Darwin]: Use bfd_mach_o_lookup_command to get interpreter Tristan Gingold
2009-07-16 19:49 ` Joel Brobecker
2009-08-10 16:30 ` Tristan Gingold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox