public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Florian Weimer <fweimer@redhat.com>
To: "H.J. Lu via Libc-alpha" <libc-alpha@sourceware.org>
Subject: Re: [PATCH] elf: Stop with zero entry point value [BZ #28453]
Date: Fri, 10 Dec 2021 05:26:42 +0100	[thread overview]
Message-ID: <87zgp9ccfx.fsf@oldenburg.str.redhat.com> (raw)
In-Reply-To: <877dcddr60.fsf@oldenburg.str.redhat.com> (Florian Weimer's message of "Fri, 10 Dec 2021 05:23:19 +0100")

* Florian Weimer:

> * H. J. Lu via Libc-alpha:
>
>> Stop with zero entry point value unless we are tracing shared objects
>> since a zero entry point value in the ELF header indicates there is no
>> associated entry point.  Now we get
>>
>> $ ./elf/ld.so /lib64/libstdc++.so.6.0.29
>> ./elf/ld.so: cannot execute '/lib64/libstdc++.so.6.0.29' without entry point
>> $
>>
>> instead of
>>
>> $ /lib64/ld-linux-x86-64.so.2 /lib64/libstdc++.so.6.0.29
>> Segmentation fault (core dumped)
>> $
>>
>> This fixes [BZ #28453].
>
> Hah.  We recently had a downstream request to fix this.
>
>> +$(objpfx)tst-rtld-run-dso.out: tst-rtld-run-dso.sh $(objpfx)ld.so \
>> +			    $(objpfx)testobj1.so
>> +	$(SHELL) tst-rtld-run-dso.sh $(objpfx)ld.so $(objpfx)testobj1.so \
>> +	    '$(test-wrapper-env)' '$(run_program_env)' > $@
>> +	$(evaluate-test)
>> +

And I forgot to fill in the blanks:

Nick changed binutils very recently to default a zero entry point if
_start is not defined.  Before ld just used the lowest text address as
the entry point (apparently a leftover from the a.out days).

This means we need to link testobj1 with -Wl,--entry=0 (or use a new
test object).

>> diff --git a/elf/rtld.c b/elf/rtld.c
>> index 6ce1e07dc0..77bcdf8e29 100644
>> --- a/elf/rtld.c
>> +++ b/elf/rtld.c
>> @@ -1424,6 +1424,14 @@ dl_main (const ElfW(Phdr) *phdr,
>>  	 implementations which has no real free() function it does not
>>  	 makes sense to free the old string first.  */
>>        main_map->l_name = (char *) "";
>> +
>> +      /* Stop if there is no associated entry point and we are not
>> +         tracing shared objects.  */
>> +      if (main_map->l_entry == main_map->l_addr
>> +	  && state.mode != rtld_mode_trace)
>> +	_dl_fatal_printf("%s: cannot execute '%s' without entry point\n",
>> +			 ld_so_name, _dl_argv[_dl_argc -1]);
>
> Missing space before 1.
>
> Should we say “cannot execute shared object” or “cannot exe[cute a]
> shared library directly”?  execve should fail with ELIBEXEC, and the
> error messages should match.
>
> Should this check come later, after we have run ELF constructors, to
> maximize backwards compatibility?  ELF constructors might never return.
>
> Thanks,
> Florian


  reply	other threads:[~2021-12-10  4:26 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-10  2:31 H.J. Lu
2021-12-10  4:23 ` Florian Weimer
2021-12-10  4:26   ` Florian Weimer [this message]
2021-12-10  5:02   ` [PATCH v3] " H.J. Lu
2021-12-10  6:07     ` Florian Weimer
2021-12-10 13:15       ` H.J. Lu

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=87zgp9ccfx.fsf@oldenburg.str.redhat.com \
    --to=fweimer@redhat.com \
    --cc=libc-alpha@sourceware.org \
    /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).