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 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 | // Copyright 2023 (c) Apple Inc. All rights reserved. #include <darwintest.h> #include <darwintest_utils.h> #include <dirent.h> #include <kperf/kpc.h> #include <kperfdata/kpep.h> #include <stdarg.h> #include <stdbool.h> #include <string.h> #include <sys/guarded.h> #include <sys/ioctl.h> #include <sys/monotonic.h> #include "test_utils.h" #if __arm64__ #define HAS_CPC_SECURITY true #else // __arm64__ #define HAS_CPC_SECURITY false #endif // !__arm64__ #define _T_META_REQUIRES_CPC_SUPPORT \ T_META_REQUIRES_SYSCTL_EQ("kern.monotonic.supported", 1) T_GLOBAL_META( T_META_NAMESPACE("xnu.cpc"), T_META_RADAR_COMPONENT_NAME("xnu"), T_META_RADAR_COMPONENT_VERSION("cpu counters"), T_META_OWNER("mwidmann"), T_META_CHECK_LEAKS(false), T_META_ASROOT(true), XNU_T_META_SOC_SPECIFIC, T_META_ENABLED(HAS_CPC_SECURITY), _T_META_REQUIRES_CPC_SUPPORT); // Several of these tests have two variants to support running on development and release kernels. // Tests prefixed with `secure_` put the development kernel into a secure CPC mode while tests prefixed with `release_` can run on the RELEASE build variant. // Metadata for running on a development kernel in CPC secure mode. #define _T_META_CPC_SECURE_ON_DEV T_META_SYSCTL_INT("kern.cpc.secure=1"), XNU_T_META_REQUIRES_DEVELOPMENT_KERNEL static void _assert_kpep_ok(int kpep_err, const char *fmt, ...) { char msg[1024] = ""; va_list args; va_start(args, fmt); vsnprintf(msg, sizeof(msg), fmt, args); va_end(args); T_QUIET; T_ASSERT_EQ(kpep_err, KPEP_ERR_NONE, "%s: %s", msg, kpep_strerror(kpep_err)); } static void _skip_for_db(const char *kind, int kpep_err) { const char * const public_kpep_path = "/usr/share/kpep"; const char * const internal_kpep_path = "/usr/local/share/kpep"; const char * const paths[2] = { public_kpep_path, internal_kpep_path, }; for (int i = 0; i < 2; i++) { const char * const path = paths[i]; T_LOG("contents of %s:", path); DIR *dir = opendir(path); if (dir) { struct dirent *entry = NULL; while ((entry = readdir(dir)) != NULL) { T_LOG(" %s", entry->d_name); } (void)closedir(dir); } else { T_LOG("failed to open directory: %s", strerror(errno)); } } int cpu_family = 0; size_t family_size = sizeof(cpu_family); int ret = sysctlbyname("hw.cpufamily", &cpu_family, &family_size, NULL, 0); if (ret != 0) { T_LOG("HW CPU family: 0x%8x", cpu_family); } else { T_LOG("failed to get hw.cpufamily: %s", strerror(errno)); } T_SKIP("cannot open %s event database: %s", kind, kpep_strerror(kpep_err)); } // Check that a secure kernel disallows restricted events. static void check_secure_cpmu(void) { kpep_db_t public_db = NULL; int ret = kpep_db_createx(NULL, KPEP_DB_FLAG_PUBLIC_ONLY, &public_db); if (ret != KPEP_ERR_NONE) { _skip_for_db("public", ret); } kpep_db_t internal_db = NULL; ret = kpep_db_createx(NULL, KPEP_DB_FLAG_INTERNAL_ONLY, &internal_db); if (ret != KPEP_ERR_NONE) { _skip_for_db("internal", ret); } const char *na = NULL; kpep_db_name(public_db, &na); size_t internal_event_count = 0; ret = kpep_db_events_count(internal_db, &internal_event_count); _assert_kpep_ok(ret, "getting internal event count"); kpep_event_t *internal_events = calloc(internal_event_count, sizeof(internal_events[0])); T_QUIET; T_WITH_ERRNO; T_ASSERT_NOTNULL(internal_events, "allocate space for internal events"); ret = kpep_db_events(internal_db, internal_events, internal_event_count * sizeof(internal_events[0])); _assert_kpep_ok(ret, "getting internal events"); kpep_config_t config = NULL; ret = kpep_config_create(internal_db, &config); _assert_kpep_ok(ret, "creating event configuration"); ret = kpep_config_force_counters(config); _assert_kpep_ok(ret, "forcing counters with configuration"); size_t kpc_count_allocated = 0; uint64_t *kpc_configs = NULL; size_t *kpc_map = NULL; unsigned int tested = 0; unsigned int filtered = 0; unsigned int public_tested = 0; for (size_t i = 0; i < internal_event_count; i++) { kpep_event_t event = internal_events[i]; const char *name = NULL; ret = kpep_event_alias(event, &name); if (!name) { ret = kpep_event_name(event, &name); } _assert_kpep_ok(ret, "getting event name"); if (strncmp(name, "FIXED", strlen("FIXED")) == 0) { T_LOG("skipping non-configurable %s event", name); continue; } bool empty_event = strcmp(name, "NO_EVNT") == 0; if (empty_event) { continue; } kpep_event_t public_event = NULL; ret = kpep_db_event(public_db, name, &public_event); bool internal_only = ret == KPEP_ERR_EVENT_NOT_FOUND; ret = kpep_config_add_event(config, &event, 0, NULL); _assert_kpep_ok(ret, "adding event %s to configuration", name); size_t kpc_count = 0; ret = kpep_config_kpc_count(config, &kpc_count); _assert_kpep_ok(ret, "getting KPC count"); if (kpc_count == 0) { T_LOG("skipping event %s with no configuration", name); ret = kpep_config_remove_event(config, 0); _assert_kpep_ok(ret, "removing event %s from configuration", name); continue; } if (kpc_count > kpc_count_allocated) { free(kpc_configs); kpc_configs = calloc(kpc_count, sizeof(kpc_config_t)); T_QUIET; T_WITH_ERRNO; T_ASSERT_NOTNULL(kpc_configs, "allocate space for KPC configs"); free(kpc_map); kpc_map = calloc(kpc_count, sizeof(size_t)); T_QUIET; T_WITH_ERRNO; T_ASSERT_NOTNULL(kpc_map, "allocate space for KPC map"); kpc_count_allocated = kpc_count; } ret = kpep_config_kpc_map(config, kpc_map, kpc_count * sizeof(size_t)); _assert_kpep_ok(ret, "getting KPC map for event %s", name); ret = kpep_config_kpc(config, (uint8_t *)kpc_configs, kpc_count * sizeof(kpc_config_t)); _assert_kpep_ok(ret, "getting KPC configs for event %s", name); kpc_config_t kpc_config = kpc_configs[kpc_map[0]]; ret = kpep_config_apply(config); bool not_permitted = ret == KPEP_ERR_ERRNO && errno == EPERM; if (not_permitted) { if (!internal_only) { T_LOG("failed to configure public event %s (0x%04llx)", name, kpc_config); } filtered++; } else if (internal_only) { T_FAIL("configured internal-only event %s (0x%04llx) with secure CPC", name, kpc_config); } else { public_tested++; } ret = kpep_config_remove_event(config, 0); _assert_kpep_ok(ret, "removing event %s from configuration", name); tested++; } T_LOG("tested %u internal/public events", tested); T_LOG("correctly permitted to configure %u public events", public_tested); T_LOG("correctly not permitted to configure %u internal-only events", filtered); kpep_config_free(config); kpep_db_free(public_db); kpep_db_free(internal_db); free(kpc_configs); free(kpc_map); } T_DECL(secure_cpmu_event_restrictions, "secured CPMU should be restricted to known events", _T_META_CPC_SECURE_ON_DEV, T_META_TAG_VM_NOT_ELIGIBLE, T_META_ENABLED(false) /* rdar://153473281 */) { check_secure_cpmu(); } T_DECL(release_cpmu_event_restrictions, "release CPMU should be restricted to known events", XNU_T_META_REQUIRES_RELEASE_KERNEL, T_META_TAG_VM_NOT_ELIGIBLE, T_META_ENABLED(false) /* rdar://153473334 */) { check_secure_cpmu(); } #define UNCORE_DEV_PATH "/dev/monotonic/uncore" #define UPMU_REF_CYCLES 0x02 static void check_secure_upmu(void) { guardid_t guard; int fd; guard = 0xa5adcafe; T_SETUPBEGIN; fd = guarded_open_np(UNCORE_DEV_PATH, &guard, GUARD_CLOSE | GUARD_DUP | GUARD_WRITE, O_CLOEXEC | O_EXCL); if (fd < 0 && errno == ENOENT) { T_SKIP("uncore counters are unsupported"); } union monotonic_ctl_add add_ctl = { .in.config.event = UPMU_REF_CYCLES, .in.config.allowed_ctr_mask = 0xffff, }; T_SETUPEND; int ret = ioctl(fd, MT_IOC_ADD, &add_ctl); T_EXPECT_POSIX_FAILURE(ret, EPERM, "should not be allowed to count any events on UPMU"); } T_DECL(secure_upmu_event_restrictions, "secured UPMU should be restricted to no events", _T_META_CPC_SECURE_ON_DEV, T_META_TAG_VM_NOT_ELIGIBLE) { check_secure_upmu(); } T_DECL(release_upmu_event_restrictions, "release UPMU should be restricted to no events", XNU_T_META_REQUIRES_RELEASE_KERNEL, T_META_TAG_VM_NOT_ELIGIBLE) { check_secure_upmu(); } // Check that events which are exposed publicly are allowed to be configured. static void check_event_coverage(kpep_db_flags_t flag, const char *kind) { kpep_db_t db = NULL; int ret = kpep_db_createx(NULL, flag, &db); _assert_kpep_ok(ret, "creating %s event database", kind); size_t event_count = 0; ret = kpep_db_events_count(db, &event_count); _assert_kpep_ok(ret, "getting %s event count", kind); kpep_event_t *events = calloc(event_count, sizeof(events[0])); T_QUIET; T_WITH_ERRNO; T_ASSERT_NOTNULL(events, "allocate space for events"); ret = kpep_db_events(db, events, event_count * sizeof(events[0])); _assert_kpep_ok(ret, "getting public events"); kpep_config_t config = NULL; ret = kpep_config_create(db, &config); _assert_kpep_ok(ret, "creating event configuration"); ret = kpep_config_force_counters(config); _assert_kpep_ok(ret, "forcing counters with configuration"); size_t kpc_count_allocated = 0; uint64_t *kpc_configs = NULL; size_t *kpc_map = NULL; unsigned int tested = 0; for (size_t i = 0; i < event_count; i++) { kpep_event_t event = events[i]; const char *name = NULL; ret = kpep_event_name(event, &name); _assert_kpep_ok(ret, "getting event name"); if (strncmp(name, "FIXED", strlen("FIXED")) == 0) { T_LOG("skipping non-configurable %s event", name); continue; } ret = kpep_config_add_event(config, &event, 0, NULL); _assert_kpep_ok(ret, "adding event %s to configuration", name); size_t kpc_count = 0; ret = kpep_config_kpc_count(config, &kpc_count); _assert_kpep_ok(ret, "getting KPC count"); if (kpc_count > kpc_count_allocated) { free(kpc_configs); kpc_configs = calloc(kpc_count, sizeof(kpc_config_t)); T_QUIET; T_WITH_ERRNO; T_ASSERT_NOTNULL(kpc_configs, "allocate space for KPC configs"); kpc_count_allocated = kpc_count; free(kpc_map); kpc_map = calloc(kpc_count, sizeof(size_t)); T_QUIET; T_WITH_ERRNO; T_ASSERT_NOTNULL(kpc_map, "allocate space for KPC map"); } ret = kpep_config_kpc_map(config, kpc_map, kpc_count * sizeof(size_t)); _assert_kpep_ok(ret, "getting KPC map for event %s", name); ret = kpep_config_kpc(config, (uint8_t *)kpc_configs, kpc_count * sizeof(kpc_config_t)); _assert_kpep_ok(ret, "getting KPC configs for event %s", name); kpc_config_t kpc_config = kpc_configs[kpc_map[0]]; ret = kpep_config_apply(config); if (ret == KPEP_ERR_ERRNO && errno == EPERM) { T_FAIL("failed to configure %s event %s (0x%04llx) with secure CPC", kind, name, kpc_config); } else { _assert_kpep_ok(ret, "applying configuration with event %s (0x%04llx)", name, kpc_config); } ret = kpep_config_remove_event(config, 0); _assert_kpep_ok(ret, "removing event %s from configuration", name); tested++; } T_LOG("attempted to configure %u %s events", tested, kind); kpep_config_free(config); kpep_db_free(db); free(kpc_configs); free(kpc_map); } T_DECL(secure_public_event_coverage, "all public events in kpep should be allowed", _T_META_CPC_SECURE_ON_DEV, T_META_TAG_VM_NOT_ELIGIBLE) { check_event_coverage(KPEP_DB_FLAG_PUBLIC_ONLY, "public"); } T_DECL(release_public_event_coverage, "all public events in kpep should be allowed", XNU_T_META_REQUIRES_RELEASE_KERNEL, T_META_TAG_VM_NOT_ELIGIBLE) { check_event_coverage(KPEP_DB_FLAG_PUBLIC_ONLY, "public"); } // Check for internal development behaviors. T_DECL(insecure_cpmu_unrestricted, "insecure CPMU should be unrestricted", XNU_T_META_REQUIRES_DEVELOPMENT_KERNEL, T_META_SYSCTL_INT("kern.cpc.secure=0"), T_META_TAG_VM_NOT_ELIGIBLE) { check_event_coverage(KPEP_DB_FLAG_INTERNAL_ONLY, "internal"); } T_DECL(secure_kpc_counting_system, "kpc should not allow counting the kernel when secure", _T_META_CPC_SECURE_ON_DEV, T_META_ENABLED(false) /* rdar://131466526 */) { kpep_db_t db = NULL; int ret = kpep_db_createx(NULL, KPEP_DB_FLAG_PUBLIC_ONLY, &db); _assert_kpep_ok(ret, "creating public event database"); size_t event_count = 0; ret = kpep_db_events_count(db, &event_count); _assert_kpep_ok(ret, "getting public event count"); kpep_event_t *events = calloc(event_count, sizeof(events[0])); T_QUIET; T_WITH_ERRNO; T_ASSERT_NOTNULL(events, "allocate space for events"); ret = kpep_db_events(db, events, event_count * sizeof(events[0])); _assert_kpep_ok(ret, "getting public events"); kpep_config_t config = NULL; ret = kpep_config_create(db, &config); _assert_kpep_ok(ret, "creating event configuration"); ret = kpep_config_force_counters(config); _assert_kpep_ok(ret, "forcing counters with configuration"); kpep_event_t event = NULL; const char *name = NULL; for (size_t i = 0; i < event_count; i++) { event = events[i]; ret = kpep_event_name(event, &name); _assert_kpep_ok(ret, "getting event name"); if (strncmp(name, "FIXED", strlen("FIXED")) != 0) { break; } T_LOG("skipping non-configurable %s event", name); } ret = kpep_config_add_event(config, &event, KPEP_EVENT_FLAG_KERNEL, NULL); _assert_kpep_ok(ret, "adding event %s to configuration", name); ret = kpep_config_apply(config); _assert_kpep_ok(ret, "applying configuration with event %s", name); uint32_t config_count = kpc_get_config_count(KPC_CLASS_CONFIGURABLE_MASK); uint64_t *configs = calloc(config_count, sizeof(configs[0])); T_QUIET; T_ASSERT_NOTNULL(configs, "allocated %u * %zu", config_count, sizeof(configs[0])); ret = kpc_get_config(KPC_CLASS_CONFIGURABLE_MASK, configs); for (uint32_t i = 0; i < config_count; i++) { if ((configs[i] & 0x40000)) { T_FAIL("found configurable counter %u with configuration 0x%llx", i, configs[i]); } } T_LOG("checked %d events for EL2 counting", config_count); kpep_config_free(config); kpep_db_free(db); } |