1*1b191cb5SApple OSS Distributions #include <stdio.h> 2*1b191cb5SApple OSS Distributions #include <errno.h> 3*1b191cb5SApple OSS Distributions #include <string.h> 4*1b191cb5SApple OSS Distributions #include <unistd.h> 5*1b191cb5SApple OSS Distributions #include <sys/mman.h> 6*1b191cb5SApple OSS Distributions 7*1b191cb5SApple OSS Distributions #include <darwintest.h> 8*1b191cb5SApple OSS Distributions #include <darwintest_utils.h> 9*1b191cb5SApple OSS Distributions 10*1b191cb5SApple OSS Distributions #include "jumbo_va_spaces_common.h" 11*1b191cb5SApple OSS Distributions 12*1b191cb5SApple OSS Distributions T_GLOBAL_META( 13*1b191cb5SApple OSS Distributions T_META_NAMESPACE("xnu.vm"), 14*1b191cb5SApple OSS Distributions T_META_RADAR_COMPONENT_NAME("xnu"), 15*1b191cb5SApple OSS Distributions T_META_RADAR_COMPONENT_VERSION("VM"), 16*1b191cb5SApple OSS Distributions T_META_RUN_CONCURRENTLY(true)); 17*1b191cb5SApple OSS Distributions 18*1b191cb5SApple OSS Distributions T_DECL(TESTNAME, 19*1b191cb5SApple OSS Distributions "Verify that a required entitlement is present in order to be granted an extra-large " 20*1b191cb5SApple OSS Distributions "VA space on arm64", 21*1b191cb5SApple OSS Distributions T_META_CHECK_LEAKS(false)) 22*1b191cb5SApple OSS Distributions { 23*1b191cb5SApple OSS Distributions if (!dt_64_bit_kernel()) { 24*1b191cb5SApple OSS Distributions T_SKIP("This test is only applicable to arm64"); 25*1b191cb5SApple OSS Distributions } 26*1b191cb5SApple OSS Distributions 27*1b191cb5SApple OSS Distributions #if defined(ENTITLED) 28*1b191cb5SApple OSS Distributions verify_jumbo_va(true); 29*1b191cb5SApple OSS Distributions #else 30*1b191cb5SApple OSS Distributions verify_jumbo_va(false); 31*1b191cb5SApple OSS Distributions #endif 32*1b191cb5SApple OSS Distributions } 33