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)
Sat, Jul 20, 9:05 PM
Unknown Object (File)
Jun 20 2024, 4:14 PM
Unknown Object (File)
Jun 20 2024, 4:13 PM
Unknown Object (File)
Jun 14 2024, 5:46 AM
Unknown Object (File)
Jun 1 2024, 4:05 PM
Unknown Object (File)
May 24 2024, 7:32 PM
Unknown Object (File)
May 21 2024, 12:42 AM
Unknown Object (File)
May 20 2024, 10:55 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