<div dir="ltr">Hi Oleg,<div><br></div><div>The problem is that lld incorrectly exports a dummy definition of __tls_get_addr saying that this TLS runtime function resides at the first address of the text section (which coincides with your main function). Your libc (and mine doesn't, that's why this went unnoticed) requests this symbol at link time, and the linker promptly puts this into the dynamic symbol table. </div><div><br></div><div>At runtime, your program runs normally, but afterwards, when libc is running its finalization hooks, it uses TLS storage, a mechanism that needs the __tls_get_addr function to be correctly set up. Since it has been incorrectly linked to your main function, it loops calling your main function several times until it crashes.</div><div><br></div><div>Therefore, while the patch introduced in r<span style="font-family:arial,sans-serif;font-size:13px">218259</span> is correct, the problem is that lld is incorrectly exporting __tls_get_addr. I spent this week working on this issue (TLS relocations) and I will upload today a patch that fixes the __tls_get_addr symbol on ELF targets, please wait a little more until this new patch gets reviewed. Thanks for your report.</div><div><br></div><div>Rafael Auler</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Sep 26, 2014 at 10:32 AM, Rafael Auler <span dir="ltr"><<a href="mailto:rafaelauler@gmail.com" target="_blank">rafaelauler@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Thanks for reporting, I'll look into this.<div><br></div><div>Could you send me in a private message the binary attached?</div><div><br></div><div>Thanks,</div><div>Rafael</div></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Sep 26, 2014 at 10:24 AM, Oleg Ranevskyy <span dir="ltr"><<a href="mailto:llvm.mail.list@gmail.com" target="_blank">llvm.mail.list@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
I've encountered a newly introduced bug in lld today.<br>
<br>
I am building my program with clang and lld on an X86-64 Ubuntu Linux machine.<br>
Command line:<br>
    clang main.c<br>
<br>
The compiled program invokes the "main" function multiple times until it closes with a segmentation fault.<br>
This affects even the most primitive programs like "int main() { return 0; }".<br>
<br>
The problem was introduced at the revision 218259 - [ELF] Fix linking when a regular object defines a symbol that is used in a DSO.<br>
<br>
Would you be able to take a look at this please?<br>
<br>
Thank you.<br>
<br>
Kind regards,<br>
Oleg<br>
</blockquote></div><br></div>
</div></div></blockquote></div><br></div>