Page MenuHomeFreeBSD

libkldelf: add elf_lookup_symbol function
ClosedPublic

Authored by khng on Sep 23 2024, 6:42 PM.
Tags
None
Referenced Files
F146979832: D46764.diff
Sat, Mar 7, 7:33 AM
Unknown Object (File)
Thu, Mar 5, 8:38 PM
Unknown Object (File)
Thu, Mar 5, 2:43 PM
Unknown Object (File)
Tue, Mar 3, 4:40 PM
Unknown Object (File)
Wed, Feb 25, 5:46 AM
Unknown Object (File)
Mon, Feb 23, 5:40 PM
Unknown Object (File)
Mon, Feb 23, 6:26 AM
Unknown Object (File)
Sun, Feb 22, 7:48 PM
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.