Page MenuHomeFreeBSD

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

Authored by jhb on Wed, Jul 29, 7:23 PM.
Tags
None
Referenced Files
F167450979: D58541.diff
Fri, Aug 21, 8:42 PM
F167448869: D58541.diff
Fri, Aug 21, 8:19 PM
Unknown Object (File)
Fri, Aug 21, 12:31 PM
Unknown Object (File)
Fri, Aug 21, 2:59 AM
Unknown Object (File)
Wed, Aug 19, 8:19 PM
Unknown Object (File)
Wed, Aug 19, 11:39 AM
Unknown Object (File)
Thu, Aug 13, 2:36 AM
Unknown Object (File)
Wed, Aug 12, 12:57 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.Wed, Jul 29, 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.Thu, Jul 30, 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.