mirror of
https://github.com/opnsense/src.git
synced 2026-05-16 02:59:48 -04:00
Add a regression test for a scenario where a shadow vm object is shared by multiple mappings. If a page COW occurs through one of the mappings, then the virtual-to-physical mapping may become invalidated. This tests the scenario from CVE-2021-29626 which was fixed by982693bb72. Reviewed by: markj Sponsored by: Dell EMC Isilon (cherry picked from commit13d4f96130)
12 lines
174 B
Makefile
12 lines
174 B
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE= tests
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/vm
|
|
|
|
ATF_TESTS_C+= mlock_test \
|
|
mmap_test \
|
|
page_fault_signal \
|
|
shared_shadow_inval_test
|
|
|
|
.include <bsd.test.mk>
|