Page MenuHomeFreeBSD

loader: fix elf lookup_symbol type filtering
ClosedPublic

Authored by kevans on Oct 13 2022, 2:25 AM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Sep 25, 12:11 AM
Unknown Object (File)
Wed, Sep 25, 12:11 AM
Unknown Object (File)
Wed, Sep 25, 12:11 AM
Unknown Object (File)
Sun, Sep 22, 11:39 PM
Unknown Object (File)
Wed, Sep 18, 10:17 AM
Unknown Object (File)
Fri, Sep 6, 3:16 AM
Unknown Object (File)
Aug 4 2024, 6:22 AM
Unknown Object (File)
Jul 20 2024, 9:05 PM
Subscribers

Details

Summary

The existing logic doesn't seem to make much sense, as we won't filter
on the type if st_shndx != SHN_UNDEF. In practice, this breaks booting
12.3 kernels on newer loaders, as they do have a kernphys symbol of
the wrong type (NOTYPE, rather than OBJECT) -- we end up deriving the
wrong value for copy_staging.

It's unclear if this version makes any more sense, but it seems to match
what rtld's matched_symbol() does. Loader doesn't need to care about
STT_FUNC w/ UND shndx, because we won't encounter those; in kmods,
undefined (kernel) functions are NOTYPE.

Diff Detail

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