This is an archive of the discontinued LLVM Phabricator instance.

[ELF] - Do not try to create .eh_frame_hdr for relocatable output.
ClosedPublic

Authored by grimar on Mar 3 2017, 3:16 AM.

Details

Summary

.eh_frame_hdr is a header constructed for .eh_frame sections.
We do not proccess .eh_frame when doing relocatable output,
so should not try to create .eh_frame_hdr too.
Previous behavior without this patch is segfault.

Fixes PR32118.

Diff Detail

Repository
rL LLVM

Event Timeline

grimar created this revision.Mar 3 2017, 3:16 AM

Personally, I think that there should be a warning or error about incompatible command-line options in this case. A user has explicitly requested two different features that cannot be used together. We should tell them that -r wins out over --eh-frame-hdr.

I think it would make sense to put the test inside the same test as the normal .eh_frame_hdr test. That way we know for certain that an .eh_frame_hdr would definitely be created if -r was not specified, and that we aren't getting a spurious pass.

emaste added a subscriber: emaste.Mar 4 2017, 7:00 AM

A user has explicitly requested two different features that cannot be used together.

In this case the user explicitly requested -r, and the compiler driver implicitly added --eh-frame-hdr. A sample command line that leads to this error:

cc -target x86_64-unknown-freebsd12.0 --sysroot=/tank/emaste/obj/tank/emaste/src/freebsd-xlld/tmp -B/tank/emaste/obj/tank/emaste/src/freebsd-xlld/tmp/usr/bin -O2 -pipe -std=gnu99 -Qunused-arguments -nostdlib -Wl,-dc -r -o cat.lo cat_stub.o /tank/emaste/obj/tank/emaste/src/freebsd-xlld/rescue/rescue//tank/emaste/src/freebsd-xlld/bin/cat/cat.o

It may well be the case that we should (also) change Clang to not add --eh-frame-hdr on relocatable links.

emaste added a comment.Mar 4 2017, 9:41 AM

The FreeBSD components that prompted PR32118 link with this change.

Unable to test full image as lld now fails an assertion later in the build - PR to follow.

/tank/emaste/obj/tank/emaste/src/freebsd-xlld/tmp/usr/bin/ld: error: Section has different type from others with the same name autoload.o:(.eh_frame)
Assertion failed: (isa<X>(Val) && "cast<Ty>() argument of incompatible type!"), function cast, file ../include/llvm/Support/Casting.h, line 236.
cc: error: unable to execute command: Abort trap (core dumped)
cc: error: linker command failed due to signal (use -v to see invocation)
joerg added a subscriber: joerg.Mar 5 2017, 4:42 AM

I'm not sure that clang should care at all about relocatable output, it is too much of a special case. IMO if you want to link relocatable output, you should call the linker directly.

emaste added a comment.Mar 5 2017, 7:14 AM

IMO if you want to link relocatable output, you should call the linker directly.

That's probably true and something we should address in FreeBSD's build.

However, this is a regression from 4.0.0 so perhaps we should initially go with this D30566 patch in addition to a warning that --eh-frame-header is being ignored?

grimar added a comment.Mar 6 2017, 1:46 AM

I think it would make sense to put the test inside the same test as the normal .eh_frame_hdr test. That way we know for certain that an .eh_frame_hdr would definitely be created if -r was not specified, and that we aren't getting a spurious pass.

I probably would not do that. Normal .eh_frame_hdr test is a "eh-frame-hdr.s" for example, it is itself complete and large enough.
We already have 15 testcases named "relocatable-<something>.s" for testing relocatable output specific things. It is consistent for new test to go into that group.

grimar updated this revision to Diff 90662.Mar 6 2017, 1:55 AM
  • Added warning when -r used together with --eh-frame-hdr

I think it would make sense to put the test inside the same test as the normal .eh_frame_hdr test. That way we know for certain that an .eh_frame_hdr would definitely be created if -r was not specified, and that we aren't getting a spurious pass.

I probably would not do that. Normal .eh_frame_hdr test is a "eh-frame-hdr.s" for example, it is itself complete and large enough.
We already have 15 testcases named "relocatable-<something>.s" for testing relocatable output specific things. It is consistent for new test to go into that group.

Fair enough, since there's prior art for this.

Looks good from my point of view, but should probably get a LGTM from somebody with a little more familiarity with the code-base.

ruiu added inline comments.Mar 6 2017, 8:27 AM
ELF/Driver.cpp
230 ↗(On Diff #90662)

Shouldn't we handle this as an error instead of a warning? All other incompatible combinations are handled as errors here.

grimar added inline comments.Mar 6 2017, 8:31 AM
ELF/Driver.cpp
230 ↗(On Diff #90662)

According to comments compiler driver implicitly added --eh-frame-hdr, I afraid we probably may get many complains about link fails if this be a error().
Thats why I added it as a warning.

ruiu added inline comments.Mar 6 2017, 8:37 AM
ELF/Driver.cpp
230 ↗(On Diff #90662)

I don't want to add a warning that is too verbose and not helpful for users. That kind of warnings would educate users to ignore warnings rather than fixing them. If compilers automatically adds --eh-frame-hdr to the command line, there's no way for users to fix it, so you need to ignore this error message all the time.

grimar added inline comments.Mar 6 2017, 8:43 AM
ELF/Driver.cpp
230 ↗(On Diff #90662)

Users has a choice here - to call linker directly for generating relocatable output instead of calling compiler.

I have no strong opinion here though. I am ok to remove it.

ruiu added inline comments.Mar 6 2017, 8:46 AM
ELF/Driver.cpp
230 ↗(On Diff #90662)

Does gcc add this option too?

grimar added inline comments.Mar 6 2017, 9:03 AM
ELF/Driver.cpp
230 ↗(On Diff #90662)

Yes, gcc 5.4.1 do that.

ruiu added inline comments.Mar 6 2017, 10:25 AM
ELF/Driver.cpp
230 ↗(On Diff #90662)

OK, then it is too pervasive to warn. Probably we should just ignore --eh-frame-hdr if -r is passed rather than annoy users with the warning message.

grimar updated this revision to Diff 90825.Mar 7 2017, 2:10 AM
  • Removed warning when --eh-frame-hdr and -r used together.
ruiu accepted this revision.Mar 7 2017, 9:43 AM

LGTM

This revision is now accepted and ready to land.Mar 7 2017, 9:43 AM
This revision was automatically updated to reflect the committed changes.