Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 | /* Copyright (c) 2018 Apple Inc. All rights reserved. */ #include <CoreFoundation/CoreFoundation.h> #include <darwintest.h> #include <dispatch/dispatch.h> #include <ktrace/ktrace.h> #include <kern/debug.h> #include <notify.h> #include <sys/kdebug.h> #include <sys/sysctl.h> #include <TargetConditionals.h> enum telemetry_pmi { TELEMETRY_PMI_NONE, TELEMETRY_PMI_INSTRS, TELEMETRY_PMI_CYCLES, }; #define TELEMETRY_CMD_PMI_SETUP 3 T_GLOBAL_META(T_META_NAMESPACE("xnu.debugging.telemetry"), T_META_CHECK_LEAKS(false), T_META_ASROOT(true)); extern int __telemetry(uint64_t cmd, uint64_t deadline, uint64_t interval, uint64_t leeway, uint64_t arg4, uint64_t arg5); /* * Microstackshots based on PMI are only supported on devices with monotonic * support. */ static void skip_if_pmi_unsupported(void) { int supported = 0; int ret = sysctlbyname("kern.monotonic.supported", &supported, &(size_t){ sizeof(supported), }, NULL, 0); if (ret < 0) { T_SKIP("monotonic sysctl generated an error: %d (%s)", errno, strerror(errno)); } if (!supported) { T_SKIP("monotonic must be supported for microstackshots"); } } /* * Data Analytics (da) also has a microstackshot configuration -- set a PMI * cycle interval of 0 to force it to disable microstackshot on PMI. */ static void set_da_microstackshot_period(CFNumberRef num) { CFPreferencesSetValue(CFSTR("microstackshotPMICycleInterval"), num, CFSTR("com.apple.da"), #if TARGET_OS_IPHONE CFSTR("mobile"), #else // TARGET_OS_IPHONE CFSTR("root"), #endif // !TARGET_OS_IPHONE kCFPreferencesCurrentHost); notify_post("com.apple.da.tasking_changed"); } static void disable_da_microstackshots(void) { int64_t zero = 0; CFNumberRef num = CFNumberCreate(NULL, kCFNumberSInt64Type, &zero); set_da_microstackshot_period(num); T_LOG("notified da of tasking change, sleeping"); #if TARGET_OS_WATCH sleep(8); #else /* TARGET_OS_WATCH */ sleep(3); #endif /* !TARGET_OS_WATCH */ } /* * Unset the preference to allow da to reset its configuration. */ static void reenable_da_microstackshots(void) { set_da_microstackshot_period(NULL); } /* * Clean up the test's configuration and allow da to activate again. */ static void telemetry_cleanup(void) { (void)__telemetry(TELEMETRY_CMD_PMI_SETUP, TELEMETRY_PMI_NONE, 0, 0, 0, 0); reenable_da_microstackshots(); } /* * Make sure da hasn't configured the microstackshots -- otherwise the PMI * setup command will return EBUSY. */ static void telemetry_init(void) { disable_da_microstackshots(); T_LOG("installing cleanup handler"); T_ATEND(telemetry_cleanup); } volatile static bool spinning = true; static void * thread_spin(__unused void *arg) { while (spinning) { } return NULL; } #define MT_MICROSTACKSHOT KDBG_EVENTID(DBG_MONOTONIC, 2, 1) #define MS_RECORD MACHDBG_CODE(DBG_MACH_STACKSHOT, \ MICROSTACKSHOT_RECORD) #if defined(__arm64__) || defined(__arm__) #define INSTRS_PERIOD (100ULL * 1000 * 1000) #else /* defined(__arm64__) || defined(__arm__) */ #define INSTRS_PERIOD (1ULL * 1000 * 1000 * 1000) #endif /* !defined(__arm64__) && !defined(__arm__) */ #define SLEEP_SECS 10 T_DECL(microstackshot_pmi, "attempt to configure microstackshots on PMI") { skip_if_pmi_unsupported(); T_SETUPBEGIN; ktrace_session_t s = ktrace_session_create(); T_QUIET; T_WITH_ERRNO; T_ASSERT_NOTNULL(s, "session create"); __block int pmi_events = 0; __block int microstackshot_record_events = 0; __block int pmi_records = 0; __block int io_records = 0; __block int interrupt_records = 0; __block int timer_arm_records = 0; __block int unknown_records = 0; __block int empty_records = 0; ktrace_events_single(s, MT_MICROSTACKSHOT, ^(__unused struct trace_point *tp) { pmi_events++; }); ktrace_events_single_paired(s, MS_RECORD, ^(struct trace_point *start, __unused struct trace_point *end) { if (start->arg1 & kPMIRecord) { pmi_records++; } if (start->arg1 & kIORecord) { io_records++; } if (start->arg1 & kInterruptRecord) { interrupt_records++; } if (start->arg1 & kTimerArmingRecord) { timer_arm_records++; } if (start->arg2 == end->arg2) { /* * The buffer didn't grow for this record -- there was * an error. */ empty_records++; } const uint8_t any_record = kPMIRecord | kIORecord | kInterruptRecord | kTimerArmingRecord; if ((start->arg1 & any_record) == 0) { unknown_records++; } microstackshot_record_events++; }); ktrace_set_completion_handler(s, ^{ ktrace_session_destroy(s); T_EXPECT_GT(pmi_events, 0, "saw non-zero PMIs (%g/sec)", pmi_events / (double)SLEEP_SECS); T_EXPECT_GT(pmi_records, 0, "saw non-zero PMI record events (%g/sec)", pmi_records / (double)SLEEP_SECS); T_EXPECT_EQ(unknown_records, 0, "saw zero unknown record events"); T_EXPECT_GT(microstackshot_record_events, 0, "saw non-zero microstackshot record events (%d -- %g/sec)", microstackshot_record_events, microstackshot_record_events / (double)SLEEP_SECS); T_EXPECT_NE(empty_records, microstackshot_record_events, "saw non-empty records (%d empty)", empty_records); if (interrupt_records > 0) { T_LOG("saw %g interrupt records per second", interrupt_records / (double)SLEEP_SECS); } else { T_LOG("saw no interrupt records"); } if (io_records > 0) { T_LOG("saw %g I/O records per second", io_records / (double)SLEEP_SECS); } else { T_LOG("saw no I/O records"); } if (timer_arm_records > 0) { T_LOG("saw %g timer arming records per second", timer_arm_records / (double)SLEEP_SECS); } else { T_LOG("saw no timer arming records"); } T_END; }); T_SETUPEND; telemetry_init(); /* * Start sampling via telemetry on the instructions PMI. */ int ret = __telemetry(TELEMETRY_CMD_PMI_SETUP, TELEMETRY_PMI_INSTRS, INSTRS_PERIOD, 0, 0, 0); T_ASSERT_POSIX_SUCCESS(ret, "telemetry syscall succeeded, started microstackshots"); pthread_t thread; int error = pthread_create(&thread, NULL, thread_spin, NULL); T_ASSERT_POSIX_ZERO(error, "started thread to spin"); error = ktrace_start(s, dispatch_get_main_queue()); T_ASSERT_POSIX_ZERO(error, "started tracing"); dispatch_after(dispatch_time(DISPATCH_TIME_NOW, SLEEP_SECS * NSEC_PER_SEC), dispatch_get_main_queue(), ^{ spinning = false; ktrace_end(s, 0); (void)pthread_join(thread, NULL); T_LOG("ending trace session after %d seconds", SLEEP_SECS); }); dispatch_main(); } T_DECL(error_handling, "ensure that error conditions for the telemetry syscall are observed") { skip_if_pmi_unsupported(); telemetry_init(); int ret = __telemetry(TELEMETRY_CMD_PMI_SETUP, TELEMETRY_PMI_INSTRS, 1, 0, 0, 0); T_EXPECT_EQ(ret, -1, "telemetry shouldn't allow PMI every instruction"); ret = __telemetry(TELEMETRY_CMD_PMI_SETUP, TELEMETRY_PMI_INSTRS, 1000 * 1000, 0, 0, 0); T_EXPECT_EQ(ret, -1, "telemetry shouldn't allow PMI every million instructions"); ret = __telemetry(TELEMETRY_CMD_PMI_SETUP, TELEMETRY_PMI_CYCLES, 1, 0, 0, 0); T_EXPECT_EQ(ret, -1, "telemetry shouldn't allow PMI every cycle"); ret = __telemetry(TELEMETRY_CMD_PMI_SETUP, TELEMETRY_PMI_CYCLES, 1000 * 1000, 0, 0, 0); T_EXPECT_EQ(ret, -1, "telemetry shouldn't allow PMI every million cycles"); ret = __telemetry(TELEMETRY_CMD_PMI_SETUP, TELEMETRY_PMI_CYCLES, UINT64_MAX, 0, 0, 0); T_EXPECT_EQ(ret, -1, "telemetry shouldn't allow PMI every UINT64_MAX cycles"); ret = __telemetry(TELEMETRY_CMD_PMI_SETUP, TELEMETRY_PMI_CYCLES, (1ULL << 55), 0, 0, 0); T_EXPECT_EQ(ret, -1, "telemetry shouldn't allow PMI with extremely long periods"); } |