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)
Thu, Aug 7, 2:08 PM
Unknown Object (File)
Mon, Aug 4, 11:13 PM
Unknown Object (File)
Sun, Jul 27, 2:30 AM
Unknown Object (File)
Sun, Jul 27, 12:57 AM
Unknown Object (File)
Sat, Jul 26, 5:16 PM
Unknown Object (File)
Sat, Jul 26, 4:48 PM
Unknown Object (File)
Sat, Jul 26, 3:35 PM
Unknown Object (File)
Sat, Jul 26, 3:34 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