mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 20:11:06 +01:00
Fix write only mappings on arm64
When trapping on a wrote access to a buffer the kernel has mapped as write only we should only pass the VM_PROT_WRITE flag. Previously the call to vm_fault_trap as the VM_PROT_READ flag was unexpected. Reported by: manu Sponsored by: Innovate UK
This commit is contained in:
parent
2cef3afd7b
commit
f56a08c810
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=366665
@ -301,7 +301,7 @@ data_abort(struct thread *td, struct trapframe *frame, uint64_t esr,
|
||||
break;
|
||||
default:
|
||||
ftype = (esr & ISS_DATA_WnR) == 0 ? VM_PROT_READ :
|
||||
VM_PROT_READ | VM_PROT_WRITE;
|
||||
VM_PROT_WRITE;
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -259,6 +259,21 @@ ATF_TC_BODY(mmap__dev_zero_shared, tc)
|
||||
close(fd);
|
||||
}
|
||||
|
||||
ATF_TC_WITHOUT_HEAD(mmap__write_only);
|
||||
ATF_TC_BODY(mmap__write_only, tc)
|
||||
{
|
||||
void *p;
|
||||
int pagesize;
|
||||
|
||||
ATF_REQUIRE((pagesize = getpagesize()) > 0);
|
||||
p = mmap(NULL, pagesize, PROT_WRITE, MAP_ANON, -1, 0);
|
||||
ATF_REQUIRE(p != MAP_FAILED);
|
||||
|
||||
*(volatile uint32_t *)p = 0x12345678;
|
||||
|
||||
munmap(p, pagesize);
|
||||
}
|
||||
|
||||
ATF_TP_ADD_TCS(tp)
|
||||
{
|
||||
|
||||
@ -266,6 +281,7 @@ ATF_TP_ADD_TCS(tp)
|
||||
ATF_TP_ADD_TC(tp, mmap__bad_arguments);
|
||||
ATF_TP_ADD_TC(tp, mmap__dev_zero_private);
|
||||
ATF_TP_ADD_TC(tp, mmap__dev_zero_shared);
|
||||
ATF_TP_ADD_TC(tp, mmap__write_only);
|
||||
|
||||
return (atf_no_error());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user