This is an archive of the discontinued LLVM Phabricator instance.

[lldb][COFF] Add note to forwarder export symbols in symtab
ClosedPublic

Authored by alvinhochun on Sep 22 2022, 11:57 PM.

Details

Summary

Forwarder exports do not point to a real function or variable. Instead
they point to a string describing which DLL and symbol to forward to.
Any imports which uses them will be redirected by the loader
transparently. These symbols do not have much use in LLDB, but keep them
just in case someone find it useful. Also set a synthesized name with
the forwarder string for informational purpose.

Depends on D134426

Diff Detail

Event Timeline

alvinhochun created this revision.Sep 22 2022, 11:57 PM
Herald added a project: Restricted Project. · View Herald TranscriptSep 22 2022, 11:57 PM
alvinhochun requested review of this revision.Sep 22 2022, 11:57 PM
Herald added a project: Restricted Project. · View Herald TranscriptSep 22 2022, 11:57 PM

They may not be useful (at the moment), but if they're not actively causing harm (e.g. stopping some other feature from functioning, or if we're badly misrepresenting them in the symtab output), then I think we should keep them. You never know -- maybe someone will find a use for them.

mstorsjo added a comment.EditedSep 23 2022, 3:46 AM

They may not be useful (at the moment), but if they're not actively causing harm (e.g. stopping some other feature from functioning, or if we're badly misrepresenting them in the symtab output), then I think we should keep them. You never know -- maybe someone will find a use for them.

Hm, maybe, but they're just plain names even without an associated address? @alvinhochun If we keep them, do we need to adjust the code below to handle the fact that they're addressless?

Where is the "dll description string" that they point to? Could they be made to point to that?

They may not be useful (at the moment), but if they're not actively causing harm (e.g. stopping some other feature from functioning, or if we're badly misrepresenting them in the symtab output), then I think we should keep them. You never know -- maybe someone will find a use for them.

Hm, maybe, but they're just plain names even without an associated address? @alvinhochun If we keep them, do we need to adjust the code below to handle the fact that they're addressless?

Hmm I'm not sure how. They do have an address pointing to the forwarder string, but they are useless as it is now.

Mind that the DLL containing the forwarder export does not actually export the symbol. When another EXE or DLL imports the forwarder symbol, Windows sees that it is a forwarder and loads the forwarded target instead. Unless a real exported function is imported from this DLL, it isn't even loaded into the process (at least that's what I gather from Process Explorer's module search with "api-ms" -- DLLs using this as a prefix contains only forwarder symbols to ucrtbase.dll or other system DLLs).

If anyone wants to list these symbols they can always do it with llvm-objdump. (llvm-readobj isn't handling this right now but I will make a patch.)

Where is the "dll description string" that they point to? Could they be made to point to that?

The current symbol address is already pointing to it.

Where is the "dll description string" that they point to? Could they be made to point to that?

The current symbol address is already pointing to it.

Ok, so is there any harm in keeping them this way?

The symbols may not be very useful, but I would not say that they are useless. If, for whatever reason, the user finds himself inspecting the part of the memory covered by the forwarder string, then with this symbol, that memory would symbolicate as forwarded_symbol+X, which seems nice.

Ok, so is there any harm in keeping them this way?

The symbols may not be very useful, but I would not say that they are useless. If, for whatever reason, the user finds himself inspecting the part of the memory covered by the forwarder string, then with this symbol, that memory would symbolicate as forwarded_symbol+X, which seems nice.

I guess you're right, we can keep these symbols. Though do you think it make sense to synthesize a demangled name for the symbol, let's say ExportName (forwarded to kernel32.LoadLibrary)?

alvinhochun retitled this revision from [lldb][COFF] Skip forwarder export symbols in symtab to [lldb][COFF] Add note to forwarder export symbols in symtab.
alvinhochun edited the summary of this revision. (Show Details)

Changed the patch to not remove the forwarder symbol, but instead add a note to the symbol name.

labath accepted this revision.Sep 27 2022, 8:59 AM

Ok, so is there any harm in keeping them this way?

The symbols may not be very useful, but I would not say that they are useless. If, for whatever reason, the user finds himself inspecting the part of the memory covered by the forwarder string, then with this symbol, that memory would symbolicate as forwarded_symbol+X, which seems nice.

I guess you're right, we can keep these symbols. Though do you think it make sense to synthesize a demangled name for the symbol, let's say ExportName (forwarded to kernel32.LoadLibrary)?

Possibly. Are these basically the same as "undefined" (i.e., defined by another shared library) symbols on ELF? If so, then it may make sense to mark them as eSymbolTypeUndefined, in case some generic algorithm wants to do something with them. I believe MachO also has this notion of forwarding a symbol to a particular shared library (I think they call it "two-level namespacing"), so you may want to look at how those are represented.

But overall, I don't think this is particularly important, and we can change this later if we have a need for it.

This revision is now accepted and ready to land.Sep 27 2022, 8:59 AM
This revision was automatically updated to reflect the committed changes.