public inbox for gnu-gabi@sourceware.org
 help / color / mirror / Atom feed
From: "H.J. Lu" <hjl.tools@gmail.com>
To: Roland McGrath <roland@hack.frob.com>
Cc: Binutils <binutils@sourceware.org>, gnu-gabi@sourceware.org
Subject: Re: RFC: Add SHT_GNU_PHDRS
Date: Mon, 01 Jan 2018 00:00:00 -0000	[thread overview]
Message-ID: <CAMe9rOrtDnf6hT4HMmTGyFyCnRsE8xnXLOQ+HH8FdMbgAcZaMA@mail.gmail.com> (raw)
In-Reply-To: <CAORpzuOWtHeqBLEE+MMN4-TZyp6Z1r-MdmyNv7Zj-BhxMstr=g@mail.gmail.com>

On Wed, Sep 26, 2018 at 7:53 PM, Roland McGrath <roland@hack.frob.com> wrote:
> Just put the rodata segment first.  That's what lld does and it works great.

Does it work with relro segment?  Also rodata is always required:

[hjl@gnu-cfl-1 ld]$ readelf -SWl  tmpdir/pr23428
There are 13 section headers, starting at offset 0x2008:

Section Headers:
  [Nr] Name              Type            Address          Off    Size
 ES Flg Lk Inf Al
  [ 0]                   NULL            0000000000000000 000000
000000 00      0   0  0
  [ 1] .note.gnu.property NOTE            0000000000400120 000120
000020 00   A  0   0  8
  [ 2] .text             PROGBITS        0000000000401000 001000
00012d 00  AX  0   0 16
  [ 3] .comment          PROGBITS        0000000000000000 00112d
00002c 01  MS  0   0  1
  [ 4] .debug_aranges    PROGBITS        0000000000000000 001160
000060 00      0   0 16
  [ 5] .debug_info       PROGBITS        0000000000000000 0011c0
000482 00      0   0  1
  [ 6] .debug_abbrev     PROGBITS        0000000000000000 001642
00016d 00      0   0  1
  [ 7] .debug_line       PROGBITS        0000000000000000 0017af
000246 00      0   0  1
  [ 8] .debug_frame      PROGBITS        0000000000000000 0019f8
000040 00      0   0  8
  [ 9] .debug_str        PROGBITS        0000000000000000 001a38
000374 01  MS  0   0  1
  [10] .symtab           SYMTAB          0000000000000000 001db0
000198 18     11  11  8
  [11] .strtab           STRTAB          0000000000000000 001f48
000030 00      0   0  1
  [12] .shstrtab         STRTAB          0000000000000000 001f78
00008a 00      0   0  1
Key to Flags:
  W (write), A (alloc), X (execute), M (merge), S (strings), I (info),
  L (link order), O (extra OS processing required), G (group), T (TLS),
  C (compressed), x (unknown), o (OS specific), E (exclude),
  l (large), p (processor specific)

Elf file type is EXEC (Executable file)
Entry point 0x401000
There are 4 program headers, starting at offset 64

Program Headers:
  Type           Offset   VirtAddr           PhysAddr
FileSiz  MemSiz   Flg Align
  LOAD           0x000000 0x0000000000400000 0x0000000000400000
0x000140 0x000140 R   0x1000
  LOAD           0x001000 0x0000000000401000 0x0000000000401000
0x00012d 0x00012d R E 0x1000
  NOTE           0x000120 0x0000000000400120 0x0000000000400120
0x000020 0x000020 R   0x8
  GNU_STACK      0x000000 0x0000000000000000 0x0000000000000000
0x000000 0x000000 RWE 0x10

 Section to Segment mapping:
  Segment Sections...
   00     .note.gnu.property
   01     .text
   02     .note.gnu.property
   03
[hjl@gnu-cfl-1 ld]$ ./tmpdir/pr23428
[hjl@gnu-cfl-1 ld]$

There is no rodata at all.

> There is also the nacl layout that specifically addresses exactly this issue
> for a platform that requires the code segment to have the lowest address,
> but I don't think any other modern platform actually had such a requirement.
>
> On Wed, Sep 26, 2018, 14:54 H.J. Lu <hjl.tools@gmail.com> wrote:
>>
>> When -z separate-code is used to create executable, ld won't place any
>> data in the code-only PT_LOAD segment.  If there are no data sections
>> placed before the code-only PT_LOAD segment, the program headers
>> won't be mapped into any PT_LOAD segment.  When the executable tries
>> to access it (based on the program header address passed in AT_PHDR),ri
>> it will lead to segfault.
>>
>> I am proposing
>>
>> #define SHT_GNU_PHDRS  0x6ffffff4  /* Dummy section for program header */
>>
>> This is a special read-only SHF_ALLOC zero-size data section.  It is the
>> first output section, which will force a data PT_LOAD segment with program
>> header before the code-only PT_LOAD segment,
>>
>> --
>> H.J.
>>
> --
>
>
> Thanks,
> Roland



-- 
H.J.

      parent reply	other threads:[~2018-09-27  4:32 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-01  0:00 H.J. Lu
2018-01-01  0:00 ` Carlos O'Donell
2018-01-01  0:00   ` H.J. Lu
2018-01-01  0:00 ` Florian Weimer
2018-01-01  0:00   ` Jan Beulich
2018-01-01  0:00     ` Florian Weimer
2018-01-01  0:00       ` Szabolcs Nagy
2018-01-01  0:00         ` H.J. Lu
2018-01-01  0:00           ` Florian Weimer
2018-01-01  0:00             ` H.J. Lu
2018-01-01  0:00               ` Florian Weimer
2018-01-01  0:00                 ` Michael Matz
2018-01-01  0:00                   ` Florian Weimer
2018-01-01  0:00                     ` Michael Matz
2018-01-01  0:00                 ` Carlos O'Donell
2018-01-01  0:00                   ` H.J. Lu
2018-01-01  0:00                     ` Carlos O'Donell
2018-01-01  0:00                       ` H.J. Lu
2018-01-01  0:00                         ` Carlos O'Donell
2018-01-01  0:00                   ` Cary Coutant
2018-01-01  0:00                     ` H.J. Lu
2018-01-01  0:00                       ` Rich Felker
2018-01-01  0:00         ` Florian Weimer
2018-01-01  0:00           ` Cary Coutant
     [not found] ` <CAORpzuOWtHeqBLEE+MMN4-TZyp6Z1r-MdmyNv7Zj-BhxMstr=g@mail.gmail.com>
2018-01-01  0:00   ` 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=CAMe9rOrtDnf6hT4HMmTGyFyCnRsE8xnXLOQ+HH8FdMbgAcZaMA@mail.gmail.com \
    --to=hjl.tools@gmail.com \
    --cc=binutils@sourceware.org \
    --cc=gnu-gabi@sourceware.org \
    --cc=roland@hack.frob.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).