public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: "Wang, Yanzhang" <yanzhang.wang@intel.com>
To: Palmer Dabbelt <palmer@rivosinc.com>
Cc: "libc-alpha@sourceware.org" <libc-alpha@sourceware.org>,
	"schwab@suse.de" <schwab@suse.de>,
	"adhemerval.zanella@linaro.org" <adhemerval.zanella@linaro.org>
Subject: RE: [PATCH] RISC-V: Fix the static-PIE non-relocated object check
Date: Fri, 23 Feb 2024 03:47:13 +0000	[thread overview]
Message-ID: <IA1PR11MB64662B63042F54260276C5F6F2552@IA1PR11MB6466.namprd11.prod.outlook.com> (raw)
In-Reply-To: <mhng-6f02a9dd-a12e-4791-9c73-d848a395a02a@palmer-ri-x1c9a>

OK, no problem. 

> -----Original Message-----
> From: Palmer Dabbelt <palmer@rivosinc.com>
> Sent: Friday, February 23, 2024 11:07 AM
> To: Wang, Yanzhang <yanzhang.wang@intel.com>
> Cc: libc-alpha@sourceware.org; schwab@suse.de;
> adhemerval.zanella@linaro.org
> Subject: RE: [PATCH] RISC-V: Fix the static-PIE non-relocated object check
> 
> On Thu, 22 Feb 2024 18:16:47 PST (-0800), yanzhang.wang@intel.com wrote:
> > Hi Palmer,
> >
> > Thanks for your patch. I have did the full tests with the same change
> > as this patch on my qemu-system. There's no regression introduced.
> >
> > Also test this change with mold linker. It passed.
> 
> Awesome, thanks.  I don't have a good setup for this so I was sort of just
> trying to figure it out from poking aroud the code and whatever Andres said.
> 
> Are you OK posting a Tested-by?  This will probably get backported, so best
> to get that stuff sorted out.
> 
> >
> > Thanks,
> > Yanzhang
> >
> >> -----Original Message-----
> >> From: Palmer Dabbelt <palmer@rivosinc.com>
> >> Sent: Friday, February 23, 2024 7:24 AM
> >> To: libc-alpha@sourceware.org
> >> Cc: schwab@suse.de; Wang, Yanzhang <yanzhang.wang@intel.com>;
> >> adhemerval.zanella@linaro.org; Palmer Dabbelt <palmer@rivosinc.com>
> >> Subject: [PATCH] RISC-V: Fix the static-PIE non-relocated object
> >> check
> >>
> >> The value of l_scope is only valid post relocation, so this original
> >> check was triggering undefined behavior.  Instead just directly check
> >> to see if the object has been relocated, at which point using l_scope is
> safe.
> >>
> >> Reported-by: Andreas Schwab <schwab@suse.de>
> >> Closes: BZ #31317
> >> Fixes: e0590f41fe ("RISC-V: Enable static-pie.")
> >> Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
> >> ---
> >>  sysdeps/riscv/dl-machine.h | 2 +-
> >>  1 file changed, 1 insertion(+), 1 deletion(-)
> >>
> >> diff --git a/sysdeps/riscv/dl-machine.h b/sysdeps/riscv/dl-machine.h
> >> index
> >> 0cbb476c05..b2f28697f7 100644
> >> --- a/sysdeps/riscv/dl-machine.h
> >> +++ b/sysdeps/riscv/dl-machine.h
> >> @@ -348,7 +348,7 @@ elf_machine_runtime_setup (struct link_map *l,
> >> struct r_scope_elem *scope[],
> >>        gotplt[1] = (ElfW(Addr)) l;
> >>      }
> >>
> >> -  if (l->l_type == lt_executable && l->l_scope != NULL)
> >> +  if (l->l_type == lt_executable && l->l_relocated)
> >>      {
> >>        /* The __global_pointer$ may not be defined by the linker if the
> >>  	 $gp register does not be used to access the global variable
> >> --
> >> 2.43.0

  reply	other threads:[~2024-02-23  3:47 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-22 23:24 Palmer Dabbelt
2024-02-23  2:16 ` Wang, Yanzhang
2024-02-23  3:06   ` Palmer Dabbelt
2024-02-23  3:47     ` Wang, Yanzhang [this message]
2024-02-29  9:11 ` Andreas Schwab

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=IA1PR11MB64662B63042F54260276C5F6F2552@IA1PR11MB6466.namprd11.prod.outlook.com \
    --to=yanzhang.wang@intel.com \
    --cc=adhemerval.zanella@linaro.org \
    --cc=libc-alpha@sourceware.org \
    --cc=palmer@rivosinc.com \
    --cc=schwab@suse.de \
    /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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).