public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
From: "H.J. Lu" <hjl.tools@gmail.com>
To: Binutils <binutils@sourceware.org>, Nick Clifton <nickc@redhat.com>
Subject: Re: [PATCH v2] elf: Reset alignment for each PT_LOAD segment
Date: Thu, 4 Aug 2022 09:25:37 -0700	[thread overview]
Message-ID: <CAMe9rOqhgvk6HzO0Z1Xh6m8hzEFRvCnZDt_6yLoHH6X_peRaFQ@mail.gmail.com> (raw)
In-Reply-To: <20220803170511.68247-1-hjl.tools@gmail.com>

On Wed, Aug 3, 2022 at 10:05 AM H.J. Lu <hjl.tools@gmail.com> wrote:
>
> Reset alignment for each PT_LOAD segment to avoid using alignment from
> the previous PT_LOAD segment.
>
> bfd/
>
>         PR ld/29435
>         * elf.c (assign_file_positions_for_load_sections): Reset
>         alignment for each PT_LOAD segment.
>
> ld/
>
>         PR ld/29435
>         * testsuite/ld-elf/pr29435.d: New file.
>         * testsuite/ld-elf/pr29435.s: Likewise.
> ---
>  bfd/elf.c                     |  7 ++++---
>  ld/testsuite/ld-elf/pr29435.d | 11 +++++++++++
>  ld/testsuite/ld-elf/pr29435.s |  6 ++++++
>  3 files changed, 21 insertions(+), 3 deletions(-)
>  create mode 100644 ld/testsuite/ld-elf/pr29435.d
>  create mode 100644 ld/testsuite/ld-elf/pr29435.s
>
> diff --git a/bfd/elf.c b/bfd/elf.c
> index 25f4bca34f0..3e64cdf6699 100644
> --- a/bfd/elf.c
> +++ b/bfd/elf.c
> @@ -5440,8 +5440,6 @@ assign_file_positions_for_load_sections (bfd *abfd,
>    Elf_Internal_Phdr *p;
>    file_ptr off;  /* Octets.  */
>    bfd_size_type maxpagesize;
> -  bfd_size_type p_align;
> -  bool p_align_p = false;
>    unsigned int alloc, actual;
>    unsigned int i, j;
>    struct elf_segment_map **sorted_seg_map;
> @@ -5526,7 +5524,6 @@ assign_file_positions_for_load_sections (bfd *abfd,
>      qsort (sorted_seg_map, alloc, sizeof (*sorted_seg_map),
>            elf_sort_segments);
>
> -  p_align = bed->p_align;
>    maxpagesize = 1;
>    if ((abfd->flags & D_PAGED) != 0)
>      {
> @@ -5561,6 +5558,8 @@ assign_file_positions_for_load_sections (bfd *abfd,
>        asection **secpp;
>        bfd_vma off_adjust;  /* Octets.  */
>        bool no_contents;
> +      bfd_size_type p_align;
> +      bool p_align_p;
>
>        /* An ELF segment (described by Elf_Internal_Phdr) may contain a
>          number of sections with contents contributing to both p_filesz
> @@ -5571,6 +5570,8 @@ assign_file_positions_for_load_sections (bfd *abfd,
>        p = phdrs + m->idx;
>        p->p_type = m->p_type;
>        p->p_flags = m->p_flags;
> +      p_align = bed->p_align;
> +      p_align_p = false;
>
>        if (m->count == 0)
>         p->p_vaddr = m->p_vaddr_offset * opb;
> diff --git a/ld/testsuite/ld-elf/pr29435.d b/ld/testsuite/ld-elf/pr29435.d
> new file mode 100644
> index 00000000000..4ca4fd086a2
> --- /dev/null
> +++ b/ld/testsuite/ld-elf/pr29435.d
> @@ -0,0 +1,11 @@
> +#ld: -shared -z separate-code -z relro
> +#xfail: ![check_shared_lib_support]
> +#xfail: ![check_relro_support]
> +#readelf: -Wl
> +
> +#failif
> +#...
> + +LOAD +0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ .* 0x8000
> +#...
> + +LOAD +0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ .* 0x8000
> +#...
> diff --git a/ld/testsuite/ld-elf/pr29435.s b/ld/testsuite/ld-elf/pr29435.s
> new file mode 100644
> index 00000000000..d2d8f265f5e
> --- /dev/null
> +++ b/ld/testsuite/ld-elf/pr29435.s
> @@ -0,0 +1,6 @@
> +        .text
> +       .balign 0x8000
> +       .globl  foo
> +       .type   foo, %function
> +foo:
> +       .byte 0
> --
> 2.37.1
>

Hi Nick,

Is it OK to backport to 2.38 and 2.39 branches?

Thanks.

-- 
H.J.

      reply	other threads:[~2022-08-04 16:26 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-03 17:05 H.J. Lu
2022-08-04 16:25 ` H.J. Lu [this message]

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=CAMe9rOqhgvk6HzO0Z1Xh6m8hzEFRvCnZDt_6yLoHH6X_peRaFQ@mail.gmail.com \
    --to=hjl.tools@gmail.com \
    --cc=binutils@sourceware.org \
    --cc=nickc@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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).