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)
Mon, Feb 10, 4:00 PM
Unknown Object (File)
Mon, Feb 10, 3:26 PM
Unknown Object (File)
Mon, Feb 10, 3:12 PM
Unknown Object (File)
Mon, Feb 10, 1:03 AM
Unknown Object (File)
Mon, Jan 27, 6:46 PM
Unknown Object (File)
Tue, Jan 21, 12:21 AM
Unknown Object (File)
Jan 15 2025, 12:26 AM
Unknown Object (File)
Dec 4 2024, 8:39 AM
Subscribers

Details

Summary

Similar to the userspace rtld check.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Skipped
Unit
Tests Skipped
Build Status
Buildable 33414

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

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