mailing list of musl libc
 help / color / mirror / code / Atom feed
From: Szabolcs Nagy <nsz@port70.net>
To: musl@lists.openwall.com
Subject: Re: Static PIE with musl and clang
Date: Tue, 16 May 2017 11:02:09 +0200	[thread overview]
Message-ID: <20170516090209.GC9350@port70.net> (raw)
In-Reply-To: <1432352279.548091.1494876298089.JavaMail.zimbra@computervoice.com>

* Paul Sturm <psturm@computervoice.com> [2017-05-15 14:24:58 -0500]:
> I decided to take a step back and try to make this work first with gcc (7.1) and ld (2.28). Both tools were built statically and musl (1.16+) is also built as a static libc.a. 
> 
> Test program is aslr.c: 
> 
> #include <stdio.h> 
> 
> int main() { 
> printf("%p\n", main); 
> return 0; 
> } 
> 
> gcc aslr.c -fPIE -pie -static-libgcc -Wl,-static -Wl,--no-dynamic-linker 
> 
> ./a.out 
> Segementation fault 

there is no -static passed to the compiler so it cannot possibly
select the right crt file.

you need to patch gcc for static pie support, or pass all the
necessary linker flags manually (including the crt files).

https://github.com/richfelker/musl-cross-make/blob/master/patches/gcc-6.3.0/0010-static-pie-support.diff


      reply	other threads:[~2017-05-16  9:02 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-05  1:47 Paul Sturm
2017-03-05  2:44 ` Rich Felker
2017-03-05  3:41   ` Paul Sturm
2017-03-05 12:21     ` Szabolcs Nagy
2017-05-15 19:24       ` Paul Sturm
2017-05-16  9:02         ` Szabolcs Nagy [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=20170516090209.GC9350@port70.net \
    --to=nsz@port70.net \
    --cc=musl@lists.openwall.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.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

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 NNTP newsgroup(s).