Page MenuHomeFreeBSD

imgact_elf.c: unify check for phdr fitting into the first page
ClosedPublic

Authored by kib on Sep 5 2020, 7:05 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Nov 5, 11:22 PM
Unknown Object (File)
Tue, Nov 4, 2:20 AM
Unknown Object (File)
Thu, Oct 30, 12:18 PM
Unknown Object (File)
Mon, Oct 27, 7:00 AM
Unknown Object (File)
Thu, Oct 23, 11:58 PM
Unknown Object (File)
Thu, Oct 23, 11:58 PM
Unknown Object (File)
Thu, Oct 23, 3:28 PM
Unknown Object (File)
Thu, Oct 23, 3:28 PM
Subscribers

Details

Summary

Similar to the userspace rtld check.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

kib requested review of this revision.Sep 5 2020, 7:05 PM
This revision is now accepted and ready to land.Sep 5 2020, 7:16 PM
sys/kern/imgact_elf.c
455 ↗(On Diff #76694)

hrm, actually shouldn't this be <= PAGE_SIZE - hdr->e_phoff)

kib edited the summary of this revision. (Show Details)

Unfix off by one.

P.S. Then rtld-elf/map_object.c needs to be unfixed as well.

This revision now requires review to proceed.Sep 5 2020, 8:56 PM

P.S. Then rtld-elf/map_object.c needs to be unfixed as well.

Yes, in that review I thought it was fixing an off-by-one, but now that I look at it again here I think it's correct this way (now).

This revision is now accepted and ready to land.Sep 7 2020, 7:06 PM