Page MenuHomeFreeBSD

libkldelf: add elf_lookup_symbol function
ClosedPublic

Authored by khng on Sep 23 2024, 6:42 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Dec 11, 10:46 PM
Unknown Object (File)
Nov 24 2024, 2:32 PM
Unknown Object (File)
Nov 22 2024, 11:31 AM
Unknown Object (File)
Nov 5 2024, 8:46 PM
Unknown Object (File)
Oct 30 2024, 3:31 PM
Unknown Object (File)
Oct 26 2024, 5:44 PM
Unknown Object (File)
Oct 8 2024, 7:07 PM
Unknown Object (File)
Oct 8 2024, 5:20 AM
Subscribers
None

Details

Summary

The elf_lookup_symbol function looks up the symbol with a given symbol
name. A pointer to the GElf_Sym of the symbol is returned if the symbol
exists in the opened ELF file.

Sponsored by: Juniper Networks, Inc.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

khng requested review of this revision.Sep 23 2024, 6:42 PM
khng created this revision.
lib/libkldelf/kldelf.h
321

What if there is more than one symbol with the same name? This can happen e.g., with local function symbols.

lib/libkldelf/kldelf.h
321

For now it will just return the first one being found when traversing symtab.

markj added inline comments.
lib/libkldelf/kldelf.h
321

I'd mention that caveat in the comment.

This revision is now accepted and ready to land.Sep 30 2024, 8:49 AM
This revision was automatically updated to reflect the committed changes.