xref: /xnu-8020.121.3/tests/shared_cache_tests.c (revision fdd8201d7b966f0c3ea610489d29bd841d358941)
1*fdd8201dSApple OSS Distributions #include <darwintest.h>
2*fdd8201dSApple OSS Distributions #include <darwintest_utils.h>
3*fdd8201dSApple OSS Distributions #include <mach-o/dyld.h>
4*fdd8201dSApple OSS Distributions #include <mach-o/dyld_priv.h>
5*fdd8201dSApple OSS Distributions #include <TargetConditionals.h>
6*fdd8201dSApple OSS Distributions 
7*fdd8201dSApple OSS Distributions T_GLOBAL_META(T_META_NAMESPACE("xnu.shared_cache"));
8*fdd8201dSApple OSS Distributions 
9*fdd8201dSApple OSS Distributions // Give the test up to two minutes because in the failure case we want to invoke update_dyld_shared_cache, which
10*fdd8201dSApple OSS Distributions // might take a bit to do.
11*fdd8201dSApple OSS Distributions T_DECL(present, "tests that the device is running with a shared cache", T_META_ASROOT(true), T_META_TIMEOUT(120))
12*fdd8201dSApple OSS Distributions {
13*fdd8201dSApple OSS Distributions 	size_t shared_cache_len = 0;
14*fdd8201dSApple OSS Distributions 	const void *cache_header = _dyld_get_shared_cache_range(&shared_cache_len);
15*fdd8201dSApple OSS Distributions 
16*fdd8201dSApple OSS Distributions #if TARGET_OS_OSX
17*fdd8201dSApple OSS Distributions 	T_SKIP("shared cache testing support incomplete (57267667)");
18*fdd8201dSApple OSS Distributions #endif /* TARGET_OS_OSX */
19*fdd8201dSApple OSS Distributions 
20*fdd8201dSApple OSS Distributions 	if ((cache_header == NULL) || (shared_cache_len == 0)) {
21*fdd8201dSApple OSS Distributions #if TARGET_OS_OSX
22*fdd8201dSApple OSS Distributions 		char *tmp_dir = (char *) dt_tmpdir();
23*fdd8201dSApple OSS Distributions 		T_QUIET; T_ASSERT_NOTNULL(tmp_dir, "darwintest created tmp dir");
24*fdd8201dSApple OSS Distributions 		// Try to invoke update_dyld_shared_cache to gather information on why we're not running with a shared cache
25*fdd8201dSApple OSS Distributions 		char *shared_cache_update_cmd[] = { "/usr/bin/update_dyld_shared_cache", "-debug", "-cache_dir", tmp_dir, NULL };
26*fdd8201dSApple OSS Distributions 		pid_t child1 = dt_launch_tool_pipe(shared_cache_update_cmd, false, NULL, ^bool (char *data, __unused size_t data_size, __unused dt_pipe_data_handler_context_t *context) {
27*fdd8201dSApple OSS Distributions 			T_LOG("%s", data);
28*fdd8201dSApple OSS Distributions 			return false;
29*fdd8201dSApple OSS Distributions 		}, ^bool (__unused char *data, __unused size_t data_size, __unused dt_pipe_data_handler_context_t *context) {
30*fdd8201dSApple OSS Distributions 			T_LOG("%s", data);
31*fdd8201dSApple OSS Distributions 			return false;
32*fdd8201dSApple OSS Distributions 		}, BUFFER_PATTERN_LINE, NULL);
33*fdd8201dSApple OSS Distributions 
34*fdd8201dSApple OSS Distributions 		int status = 0;
35*fdd8201dSApple OSS Distributions 		dt_waitpid(child1, &status, NULL, 0);
36*fdd8201dSApple OSS Distributions 
37*fdd8201dSApple OSS Distributions 		T_LOG("waitpid for %d returned with status %d", child1, WEXITSTATUS(status));
38*fdd8201dSApple OSS Distributions #endif // TARGET_OS_OSX
39*fdd8201dSApple OSS Distributions 		T_ASSERT_NOTNULL(cache_header, "shared cache present");
40*fdd8201dSApple OSS Distributions 		T_ASSERT_GT((int) shared_cache_len, 0, "shared cache has non-zero length");
41*fdd8201dSApple OSS Distributions 	}
42*fdd8201dSApple OSS Distributions 
43*fdd8201dSApple OSS Distributions 	T_PASS("shared cache appears to be present and valid");
44*fdd8201dSApple OSS Distributions }
45