xref: /xnu-11417.140.69/tests/atm_diagnostic_flag_entitled.c (revision 43a90889846e00bfb5cf1d255cdc0a701a1e05a4) !
1*43a90889SApple OSS Distributions #include <darwintest.h>
2*43a90889SApple OSS Distributions 
3*43a90889SApple OSS Distributions #include <mach/mach_error.h>
4*43a90889SApple OSS Distributions #include <mach/mach_host.h>
5*43a90889SApple OSS Distributions 
6*43a90889SApple OSS Distributions #include "drop_priv.h"
7*43a90889SApple OSS Distributions 
8*43a90889SApple OSS Distributions T_GLOBAL_META(T_META_NAMESPACE("xnu.debugging"));
9*43a90889SApple OSS Distributions 
10*43a90889SApple OSS Distributions /*
11*43a90889SApple OSS Distributions  * The low 8 bits may be in use, so modify one
12*43a90889SApple OSS Distributions  * of the upper 8 bits to ensure round-tripping.
13*43a90889SApple OSS Distributions  */
14*43a90889SApple OSS Distributions #define LIBTRACE_PRIVATE_DATA  0x01000000
15*43a90889SApple OSS Distributions 
16*43a90889SApple OSS Distributions static bool _needs_reset;
17*43a90889SApple OSS Distributions static uint32_t _original;
18*43a90889SApple OSS Distributions 
19*43a90889SApple OSS Distributions static uint32_t
_save_atm_diagnostic_flag(void)20*43a90889SApple OSS Distributions _save_atm_diagnostic_flag(void)
21*43a90889SApple OSS Distributions {
22*43a90889SApple OSS Distributions 	kern_return_t kr;
23*43a90889SApple OSS Distributions 	kr = host_get_atm_diagnostic_flag(mach_host_self(), &_original);
24*43a90889SApple OSS Distributions 	T_QUIET; T_ASSERT_MACH_SUCCESS(kr, "host_get_atm_diagnostic_flag()");
25*43a90889SApple OSS Distributions 	T_LOG("Original ATM diagnostic flag: 0x%08x", _original);
26*43a90889SApple OSS Distributions 	return _original;
27*43a90889SApple OSS Distributions }
28*43a90889SApple OSS Distributions 
29*43a90889SApple OSS Distributions static kern_return_t
_mutate_atm_diagnostic_flag(uint32_t v)30*43a90889SApple OSS Distributions _mutate_atm_diagnostic_flag(uint32_t v)
31*43a90889SApple OSS Distributions {
32*43a90889SApple OSS Distributions 	T_LOG("Try to set ATM diagnostic flag to: 0x%08x", v);
33*43a90889SApple OSS Distributions 	kern_return_t kr = host_set_atm_diagnostic_flag(mach_host_self(), v);
34*43a90889SApple OSS Distributions 	if (kr == KERN_SUCCESS) {
35*43a90889SApple OSS Distributions 		_needs_reset = true;
36*43a90889SApple OSS Distributions 	}
37*43a90889SApple OSS Distributions 	return kr;
38*43a90889SApple OSS Distributions }
39*43a90889SApple OSS Distributions 
40*43a90889SApple OSS Distributions static void
_reset_atm_diagnostic_flag(void)41*43a90889SApple OSS Distributions _reset_atm_diagnostic_flag(void)
42*43a90889SApple OSS Distributions {
43*43a90889SApple OSS Distributions 	if (!_needs_reset) {
44*43a90889SApple OSS Distributions 		return;
45*43a90889SApple OSS Distributions 	}
46*43a90889SApple OSS Distributions 	T_LOG("Reset ATM diagnostic flag to: 0x%08x", _original);
47*43a90889SApple OSS Distributions 	kern_return_t kr;
48*43a90889SApple OSS Distributions 	kr = host_set_atm_diagnostic_flag(mach_host_self(), _original);
49*43a90889SApple OSS Distributions 	if (kr != KERN_SUCCESS) {
50*43a90889SApple OSS Distributions 		T_ASSERT_FAIL("host_set_atm_diagnostic_flag() failed: %s",
51*43a90889SApple OSS Distributions 		    mach_error_string(kr));
52*43a90889SApple OSS Distributions 	}
53*43a90889SApple OSS Distributions }
54*43a90889SApple OSS Distributions 
55*43a90889SApple OSS Distributions static void
_toggle_atm_diagnostic_flag(void)56*43a90889SApple OSS Distributions _toggle_atm_diagnostic_flag(void)
57*43a90889SApple OSS Distributions {
58*43a90889SApple OSS Distributions 	T_ATEND(_reset_atm_diagnostic_flag);
59*43a90889SApple OSS Distributions 	uint32_t f = _save_atm_diagnostic_flag();
60*43a90889SApple OSS Distributions 	f ^= LIBTRACE_PRIVATE_DATA;
61*43a90889SApple OSS Distributions 	kern_return_t kr = _mutate_atm_diagnostic_flag(f);
62*43a90889SApple OSS Distributions 	if (kr == KERN_NOT_SUPPORTED) {
63*43a90889SApple OSS Distributions 		T_SKIP("Seems ATM is disabled on this platform. "
64*43a90889SApple OSS Distributions 		    "Ignoring host_set_atm_diagnostic_flag functionality. "
65*43a90889SApple OSS Distributions 		    "Bailing gracefully.");
66*43a90889SApple OSS Distributions 	}
67*43a90889SApple OSS Distributions 	T_EXPECT_MACH_SUCCESS(kr, "Set atm_diagnostic_flag");
68*43a90889SApple OSS Distributions }
69*43a90889SApple OSS Distributions 
70*43a90889SApple OSS Distributions T_DECL(atm_diagnostic_flag_entitled_privileged,
71*43a90889SApple OSS Distributions     "change the atm_diagnostic_flag (entitled, privileged)",
72*43a90889SApple OSS Distributions     T_META_ASROOT(true))
73*43a90889SApple OSS Distributions {
74*43a90889SApple OSS Distributions 	_toggle_atm_diagnostic_flag();
75*43a90889SApple OSS Distributions }
76*43a90889SApple OSS Distributions 
77*43a90889SApple OSS Distributions T_DECL(atm_diagnostic_flag_entitled_unprivileged,
78*43a90889SApple OSS Distributions     "change the atm_diagnostic_flag (entitled, unprivileged)",
79*43a90889SApple OSS Distributions     T_META_ASROOT(false))
80*43a90889SApple OSS Distributions {
81*43a90889SApple OSS Distributions 	if (running_as_root()) {
82*43a90889SApple OSS Distributions 		drop_priv();
83*43a90889SApple OSS Distributions 	}
84*43a90889SApple OSS Distributions 	_toggle_atm_diagnostic_flag();
85*43a90889SApple OSS Distributions }
86