Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Simon Marchi <simark@simark.ca>
To: Pedro Alves <palves@redhat.com>
Cc: gdb-patches@sourceware.org
Subject: Re: [PATCH v2 01/15] Fix breakpoints in ifunc after inferior resolved it (@got.plt symbol creation)
Date: Sat, 14 Apr 2018 16:36:00 -0000	[thread overview]
Message-ID: <ff5b7ab9a747eb11bbb23a387c39affd@simark.ca> (raw)
In-Reply-To: <deafa985-44fc-2eef-a4f4-5005e25a550a@redhat.com>

On 2018-04-10 17:19, Pedro Alves wrote:
> On 04/01/2018 04:35 AM, Simon Marchi wrote:
>> On 2018-03-25 03:19 PM, Pedro Alves wrote:
> 
>>>    /* This search algorithm is from 
>>> _bfd_elf_canonicalize_dynamic_reloc.  */
>>>    for (relplt = obfd->sections; relplt != NULL; relplt = 
>>> relplt->next)
>>> -    if (elf_section_data (relplt)->this_hdr.sh_info == plt_elf_idx
>>> -	&& (elf_section_data (relplt)->this_hdr.sh_type == SHT_REL
>>> -	    || elf_section_data (relplt)->this_hdr.sh_type == SHT_RELA))
>>> -      break;
>>> +    {
>>> +      const auto &this_hdr = elf_section_data (relplt)->this_hdr;
>>> +
>>> +      if (this_hdr.sh_type == SHT_REL || this_hdr.sh_type == 
>>> SHT_RELA)
>>> +	{
>>> +	  asection *target_section = NULL;
>>> +
>>> +	  if (this_hdr.sh_info == plt_elf_idx)
>>> +	    target_section = plt;
>>> +	  else if (this_hdr.sh_info == got_plt_elf_idx)
>>> +	    target_section = got_plt;
>>> +
>>> +	  if (target_section != NULL)
>>> +	    break;
>> 
>> Is it really useful to have/set target_section?  Couldn't we just 
>> break out of the
>> loop like this?
>> 
>>   if (this_hdr.sh_info == plt_elf_idx
>>       || this_hdr.sh_info == got_plt_elf_idx)
>>     break;
>> 
> 
> Hmm, the original intention was to use target_section in the other
> loop, but that didn't work, so I reverted it, but somehow not that
> part.  :-P
> 
>>> 
>>> @@ -573,6 +586,18 @@ elf_rel_plt_read (minimal_symbol_reader &reader,
>>> 
>>>    std::string string_buffer;
>>> 
>>> +  /* Does ADDRESS reside in SECTION of OBFD?  */
>>> +  auto within_section = [obfd] (asection *section, CORE_ADDR 
>>> address)
>>> +    {
>>> +      if (section == NULL)
>>> +	return false;
>>> +
>>> +      /* Does the pointer reside in the .got.plt section?  */
>> 
>> That comment should change, since it's not stricly .got.plt.
>> 
> 
> I've removed it, since the intro comment already says it all.
> 
>> Or maybe you intended to use target_section here at some point?  Is 
>> there a
>> relationship between the section that matched in the for loop above 
>> and the
>> section that will contain the address?  In other words, could we save 
>> the
>> target_section from above and do
> 
> Yeah, in an earlier version I tried doing that, but then testing on the
> different systems found out that there's no relation between the
> two sections.
> 
> Here's the updated patch.  WDYT?

LGTM (though I trust the passing tests more than I trust myself).

Simon


  reply	other threads:[~2018-04-14 16:36 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-25 19:19 [PATCH v2 00/15] Fixing GNU ifunc support Pedro Alves
2018-03-25 19:19 ` [PATCH v2 11/15] Fix stepping past GNU ifunc resolvers (introduce lookup_msym_prefer) Pedro Alves
2018-06-18 20:26   ` [PATCH] Silence GCC "uninitialized" warning on minsyms.c:lookup_minimal_symbol_by_pc_section Sergio Durigan Junior
2018-06-19 15:22     ` Pedro Alves
2018-06-19 16:55       ` Sergio Durigan Junior
2018-06-19 18:47       ` Tom Tromey
2018-03-25 19:19 ` [PATCH v2 01/15] Fix breakpoints in ifunc after inferior resolved it (@got.plt symbol creation) Pedro Alves
2018-04-01  3:35   ` Simon Marchi
2018-04-10 21:20     ` Pedro Alves
2018-04-14 16:36       ` Simon Marchi [this message]
2018-03-25 19:19 ` [PATCH v2 05/15] Fix elf_gnu_ifunc_resolve_by_got buglet Pedro Alves
2018-04-01  4:32   ` Simon Marchi
2018-04-10 21:52     ` Pedro Alves
2018-03-25 19:19 ` [PATCH v2 03/15] Calling ifunc functions when target has no debug info but resolver has Pedro Alves
2018-04-01  4:22   ` Simon Marchi
2018-04-10 21:48     ` Pedro Alves
2018-04-10 21:54       ` Pedro Alves
2018-03-25 19:19 ` [PATCH v2 02/15] Fix calling ifunc functions when resolver has debug info and different name Pedro Alves
2018-04-01  3:44   ` Simon Marchi
2018-04-10 21:20     ` Pedro Alves
2018-03-25 19:19 ` [PATCH v2 08/15] Eliminate find_pc_partial_function_gnu_ifunc Pedro Alves
2018-03-25 19:19 ` [PATCH v2 07/15] Breakpoints, don't skip prologue of ifunc resolvers with debug info Pedro Alves
2018-03-25 19:19 ` [PATCH v2 12/15] For PPC64/ELFv1: Introduce mst_data_gnu_ifunc Pedro Alves
2018-03-25 19:19 ` [PATCH v2 15/15] Fix resolving GNU ifunc bp locations when inferior runs resolver Pedro Alves
2018-03-25 19:25 ` [PATCH v2 09/15] Factor out minsym_found/find_function_start_sal overload Pedro Alves
2018-03-25 19:25 ` [PATCH v2 04/15] Calling ifunc functions when resolver has debug info, user symbol same name Pedro Alves
2018-03-25 19:28 ` [PATCH v2 14/15] Extend GNU ifunc testcases Pedro Alves
2018-03-25 19:29 ` [PATCH v2 10/15] For PPC64: elf_gnu_ifunc_record_cache: handle plt symbols in .text section Pedro Alves
2018-03-25 19:29 ` [PATCH v2 13/15] PPC64: always make synthetic .text symbols for GNU ifunc symbols Pedro Alves
2018-03-25 19:33   ` Pedro Alves
2018-03-26  7:54   ` Alan Modra
2018-03-25 19:29 ` [PATCH v2 06/15] Fix setting breakpoints on ifunc functions after they're already resolved Pedro Alves
2018-04-26 12:23 ` [PATCH v2 00/15] Fixing GNU ifunc support Pedro Alves

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ff5b7ab9a747eb11bbb23a387c39affd@simark.ca \
    --to=simark@simark.ca \
    --cc=gdb-patches@sourceware.org \
    --cc=palves@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox