Page MenuHomeFreeBSD

rtld: Reject ELF files with PT_LOAD or PT_TLS segments where filesz > memsz
ClosedPublic

Authored by jhb on Jul 29 2026, 7:23 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Sep 10, 11:30 PM
Unknown Object (File)
Wed, Sep 9, 2:46 PM
Unknown Object (File)
Tue, Sep 8, 4:11 PM
Unknown Object (File)
Tue, Sep 8, 4:36 AM
Unknown Object (File)
Tue, Sep 8, 3:51 AM
Unknown Object (File)
Tue, Sep 8, 3:51 AM
Unknown Object (File)
Mon, Sep 7, 5:09 AM
Unknown Object (File)
Sun, Sep 6, 11:24 PM
Subscribers

Details

Summary

All sorts of places in the ELF loading code assume that filesz <=
memsz, so check that explicitly up front. The kernel already performs
this check for the PT_LOAD segments in the main binary and rtld in
imgact_elf.c.

Diff Detail

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

Event Timeline

jhb requested review of this revision.Jul 29 2026, 7:23 PM

I do not object, but I also note that rtld trusts the format of the objects to be correct. There is a lot of missed bounds checks.

This revision is now accepted and ready to land.Jul 30 2026, 4:24 AM

There's also lib/libc/gen/tls.c for PT_TLS

There's also lib/libc/gen/tls.c for PT_TLS

Oof, thanks for catching that, I'll add another commit for that.