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)
Thu, Nov 14, 6:37 PM
Unknown Object (File)
Sep 30 2024, 7:32 PM
Unknown Object (File)
Sep 23 2024, 12:43 AM
Unknown Object (File)
Sep 12 2024, 4:00 PM
Unknown Object (File)
Sep 5 2024, 7:10 PM
Unknown Object (File)
Sep 3 2024, 4:05 PM
Unknown Object (File)
Jul 25 2024, 12:29 AM
Unknown Object (File)
Jul 16 2024, 11:57 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