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.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support relocation kind 0003 and extend IMAGE_REL_ types #141
base: master
Are you sure you want to change the base?
Support relocation kind 0003 and extend IMAGE_REL_ types #141
Changes from 1 commit
19aadf0
b346f56
275b310
5b09bd6
3b46240
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just for my own understanding:
add32(off, s)
, so thatoff
in LLVM corresponds toptr->addr
in Flexlink ands
in LLVM corresponds tos
in Flexlink.IMAGE_REL_AMD64_ADDR64
in LLVM (RELOC_ABS
in Flexlink) is implemented byadd64(off, s + imageBase)
, so thats + imageBase
in LLVM corresponds tos
in Flexlink.Do you understand why the
s
arguments do not seem to match between the two cases?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Going one step further, those equations imply that
imageBase = 0
.I spent a lot of time looking and I couldn't find out why IMAGE_REL_AMD64_ADDR64 seems to work. The math for all the other relocation kinds make sense.
However, two things ...
/base:
base addresslink.exe
option is fixed for OCaml executable to be0x10000
atflexdll/cmdline.ml
Line 47 in 80496b5
and also the same in
flexdll/create_dll.ml
Line 77 in 80496b5
for OCaml plugins / stubs.
flexdll/reloc.ml
Lines 470 to 475 in 80496b5
into absolute relocations by
Reloc.abs
:flexdll/coff.ml
Lines 437 to 444 in 80496b5
So my suspicion was that the
Reloc.abs
absolute relocations were being translated at CreateProcess time byntdll.LdrInitializeThunk
(or whatever is reading the PE.reloc
section) to complete theimageBase
adjustment.@dra27, any chance you can explain why
base_addr
(orimage_base
for DLLs) is not used in the calculations?(These calculations are undocumented in flexdll and fairly complicated)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's far too long since I stared at all this, but are we comparing like with like here? Isn't that code in LLVM the part of a linker which is computing actual relocations to be carried out by the loader? In flexdll's, case, I don't think we have to worry about the image base - the symbol table as a data structure has already been had all the relocations resolved when the executable was loaded (by the Windows loader) - so
s
in flexdll is an absolute address for the symbol, where in lld it's still base-relative?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, your loader comment is what I had meant with "translated at CreateProcess time by
ntdll.LdrInitializeThunk
". But I am still puzzled why that only applies to IMAGE_REL_AMD64_ADDR64.