Page MenuHomeFreeBSD

Clarify that vm_map_protect cannot upgrade max_protection
ClosedPublic

Authored by emaste on Jun 20 2019, 1:01 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, May 16, 9:50 PM
Unknown Object (File)
Tue, May 14, 2:30 PM
Unknown Object (File)
Tue, May 7, 5:26 AM
Unknown Object (File)
Tue, Apr 30, 5:14 PM
Unknown Object (File)
Tue, Apr 30, 5:10 PM
Unknown Object (File)
Tue, Apr 30, 5:10 PM
Unknown Object (File)
Apr 24 2024, 5:20 PM
Unknown Object (File)
Apr 19 2024, 2:37 PM
Subscribers

Details

Summary

It's implied by the RETURN VALUES section but be explicit in the description that vm_map_protect can not set new protection bits that are already in each entry's max_protection.

(Prompted by a comment/review in D18880.)

Diff Detail

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

Event Timeline

brooks added inline comments.
share/man/man9/vm_map_protect.9
66 ↗(On Diff #58833)

It is probably noting that this case also (IIRC) demotes any existing permissions (vs bailing if they would not be permitted).

This revision is now accepted and ready to land.Jun 20 2019, 6:04 PM
share/man/man9/vm_map_protect.9
66 ↗(On Diff #58833)

*worth noting

share/man/man9/vm_map_protect.9
66 ↗(On Diff #58833)

Yeah - I'll confirm and commit another change.

share/man/man9/vm_map_protect.9
66 ↗(On Diff #58833)

yes,

old_prot = current->protection;

if (set_max)
        current->protection =
            (current->max_protection = new_prot) &
            old_prot;
else
        current->protection = new_prot;