Don't emit PT_INTERP for -shared outputs#1577
Open
bamo wants to merge 1 commit into
Open
Conversation
When --dynamic-linker is passed alongside -shared, mold currently emits a .interp section and a PT_INTERP program header. Both lld and BFD ld silently drop --dynamic-linker for -shared outputs because shared libraries are loaded by the dynamic linker rather than bootstrapped by the kernel, so PT_INTERP serves no purpose there. Gate .interp creation on (!shared || pie) so we keep it for regular executables, -pie executables, and -shared -pie runnable shared libraries (the libc.so.6-style case), and drop it only for the pure shared-library case. The PT_INTERP program header at output-chunks.cc:219 is conditional on ctx.interp being non-null, so the segment vanishes automatically with no second edit. Fixes rui314#1572
Contributor
Author
|
btw, I empirically tested all four cases on lld 18.1.3 and BFD ld 2.42 (Ubuntu 24.04 / aarch64). mold's behavior after the fix is consistent with both linkers on every case, with one exception: lld rejects |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When --dynamic-linker is passed alongside -shared, mold currently emits a .interp section and a PT_INTERP program header. Both lld and BFD ld silently drop --dynamic-linker for -shared outputs because shared libraries are loaded by the dynamic linker rather than bootstrapped by the kernel, so PT_INTERP serves no purpose there.
Gate .interp creation on (!shared || pie) so we keep it for regular executables, -pie executables, and -shared -pie runnable shared libraries (the libc.so.6-style case), and drop it only for the pure shared-library case. The PT_INTERP program header at output-chunks.cc:219 is conditional on ctx.interp being non-null, so the segment vanishes automatically with no second edit.
Fixes #1572