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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
//
// enablement_tests.m
// libmalloc
//
// Tests for the xzone malloc json printer and other secure allocator enablement configurations
//

#include <darwintest.h>
#include <darwintest_utils.h>
#include <../src/internal.h>

#if CONFIG_XZONE_MALLOC && (MALLOC_TARGET_IOS_ONLY || TARGET_OS_OSX || TARGET_OS_VISION)

#include <Foundation/Foundation.h>
#include <Foundation/NSJSONSerialization.h>

#define PID_BUFFER_SIZE 256
#define NUM_PIDS_BUFFER_SIZE (512 * sizeof (pid_t))

static char *print_buffer = NULL;
static size_t print_buffer_capacity = 0;
static size_t print_buffer_index = 0;

typedef struct enablement_configuration {
	bool should_have_xzones;
	bool guards_enabled;
	bool thread_cache_enabled;
	unsigned batch_size;
	unsigned ptr_bucket_count;
	unsigned segment_group_ids_count;
	unsigned segment_group_count;
	bool defer_tiny;
	bool defer_small;
	bool defer_large;
} enablement_configuration;

static uint8_t
get_ncpuclusters(void)
{
	return *(uint8_t *)(uintptr_t)_COMM_PAGE_CPU_CLUSTERS;
}

static void
reset_print_buffer(void)
{
	T_ASSERT_NULL(print_buffer, "reset_print_buffer called multiple times");
	print_buffer_index = 0;
	print_buffer_capacity = vm_page_size;
	print_buffer = malloc(print_buffer_capacity);
	T_ASSERT_NOTNULL(print_buffer, "Allocate print buffer");
}

static void
resize_print_buffer(void)
{
	T_ASSERT_NOTNULL(print_buffer, "Must call reset_print_buffer first");
	vm_address_t addr = 0;
	size_t new_capacity = print_buffer_capacity * 2;
	print_buffer = realloc(print_buffer, new_capacity);
	T_ASSERT_NOTNULL(print_buffer, "Realloc print buffer");
	print_buffer_capacity = new_capacity;
}

static void
append_to_buffer(const char *data, size_t len)
{
	while (1) {
		if (len >= print_buffer_capacity - print_buffer_index) {
			resize_print_buffer();
		} else {
			memcpy(&print_buffer[print_buffer_index], data, len);
			print_buffer_index += len;
			break;
		}
	}
}

static void
free_print_buffer(void)
{
	free(print_buffer);
	print_buffer = NULL;
	print_buffer_capacity = 0;
	print_buffer_index = 0;
}

// Helper searches all running pids and returns the first instance that
// matches a process name (searchname). Heavily inspired from:
// https://stashweb.sd.apple.com/projects/COREOS/repos/perfcheck/browse/lib/utils.c#31
pid_t
find_first_pid_for_process(const char *searchname)
{
	pid_t pid = 0;
	int i, buffer_size;
	int pid_buffer_size = NUM_PIDS_BUFFER_SIZE;
	pid_t *pids = NULL;
	bool finished = false;

	do {
		pids = reallocf(pids, pid_buffer_size);
		if (!pids) return 0;

		buffer_size = proc_listpids(PROC_ALL_PIDS, 0, pids, pid_buffer_size);
		if (buffer_size < pid_buffer_size) {
			finished = true;
		} else {
			pid_buffer_size = buffer_size * 2;
		}
	} while (!finished);

	for (i = 0; i < buffer_size / sizeof (pid_t); i++) {
		struct proc_bsdinfo proc;
		int st = proc_pidinfo(pids[i], PROC_PIDTBSDINFO, 0,
				&proc, PROC_PIDTBSDINFO_SIZE);
		if (st == PROC_PIDTBSDINFO_SIZE) {
			// If a matching process is found, ensure it's not pid 0
			if (strcmp(searchname, proc.pbi_name) == 0) {
				pid = pids[i];
				free(pids);
				return pid;
			}
		}
	}

	free(pids);
	return pid;
}

// Calls "heap -p *procname" and returns an array of json objects, one each for
// the xzm zones in the remote process. If the process doesn't use xzm, the
// array will be empty. If the process doesn't exist, this function either calls
// T_FAIL or T_SKIP, based on skip_if_not_found. If multiple processes with name
// procname exist, this function will choose to examine the one with the
// lowest pid.
static NSArray *
get_process_json(char *procname, bool skip_if_not_found)
{
	reset_print_buffer();

	__block bool not_found = false;

	// Dump heap's stderr to our stdout, for help debugging test failures. Also
	// monitor for a magic string indicating that the requested process doesn't
	// exist, to handle skip_if_not_found
	dt_pipe_data_handler_t stderr_handler = ^bool(char *data,
			__unused size_t data_size,
			__unused dt_pipe_data_handler_context_t *context) {
		T_LOG("heap stderr: %s", data);
		const char *not_found_needle = "heap cannot find any existing process";
		if (strstr(data, not_found_needle)) {
			not_found = true;
			T_LOG("Process does not exist");
			return true;
		}
		return false;
	};
	// returning true will stop executing handler.
	dt_pipe_data_handler_t stdout_handler =
			^bool(char *data, __unused size_t data_size,
			__unused dt_pipe_data_handler_context_t *context) {
		T_LOG("heap output: %s", data);
		append_to_buffer(data, data_size);
		return false;
	};

	// Unfortunately, calling heap on an app right after it is launched may
	// error with:
	// "Process exists but has not fully started -- dyld has initialized but
	// libSystem has not"
	// Use a polling approach: retry the heap command up to 3 times, until we
	// succeed
	bool wait = true;
	int exit_status = 1;
	int signal = 1;

	for (int i = 0; i < 3; ++i) {
		// If there are multiple instances of a process running, make
		// heap inspect only one of them
		pid_t process_pid = find_first_pid_for_process(procname);
		if (process_pid == 0) {
			not_found = true;
		}

		char process_buffer[PID_BUFFER_SIZE] = {};
		snprintf(process_buffer, PID_BUFFER_SIZE, "%d", process_pid);
		char *argv[] = { "/usr/bin/heap", "-p", process_buffer, NULL };
		pid_t pid = dt_launch_tool_pipe(argv, false, NULL, stdout_handler,
				stderr_handler, BUFFER_PATTERN_LINE, NULL);

		int timeout = 30; // 30 second timeout
		wait = dt_waitpid(pid, &exit_status, &signal, timeout);

		if (!wait && skip_if_not_found && not_found) {
			// Failed exit - should only occur when the tools couldn't find a
			// process by name
			T_SKIP("Skipping since %s doesn't exist", procname);
		}

		if (wait) {
			break;
		} else {
			// heap didn't succeed. Wait a tiny bit, then retry
			sleep(1);
		}
	}
	T_ASSERT_TRUE(wait, "heap exited successfully, status = %d, signal = %d",
			exit_status, signal);
	T_ASSERT_POSIX_ZERO(exit_status, "Exit status is success");
	T_ASSERT_POSIX_ZERO(signal, "Exit signal is success");

	// We don't have a great way to know that we've processed all of heap's
	// stderr/stdout, so use a fixed sleep to (hopefully) let those finish
	sleep(1);

	NSMutableArray *retval = [NSMutableArray arrayWithCapacity:1];
	char *heap_output = &print_buffer[0];
	size_t heap_len = print_buffer_index;
	while (heap_output) {
		const char *start_symbol = "Begin xzone malloc JSON:\n";
		const char *end_symbol = "End xzone malloc JSON\n";

		char *json_start = strnstr(heap_output, start_symbol, heap_len);
		if (!json_start) {
			// No more json to parse
			break;
		}
		json_start += strlen(start_symbol);
		char *json_end = strnstr(heap_output, end_symbol, heap_len);
		T_ASSERT_GE(json_end, json_start, "Incorrect end token");

		NSData *json_data = [NSData dataWithBytes:json_start
				length:(json_end - json_start)];

		NSError *e = nil;
		NSDictionary *json_dict =
				[NSJSONSerialization JSONObjectWithData:json_data options:0
				error:&e];
		T_ASSERT_NE(json_dict, nil, "Parsed json, error = %s",
				[[e localizedDescription] UTF8String]);

		[retval addObject:json_dict];

		char *new_heap_output = json_end + strlen(end_symbol);
		heap_len -= new_heap_output - heap_output;
		heap_output = new_heap_output;
	}

	free_print_buffer();

	return retval;
}

static char *
get_device_name(char *devicename, size_t buflen)
{
	// Key off of hardware model instead of the comm page, since libmalloc
	// keys off of the commpage, and this protects us against bugs in that
	// path
	int kr = sysctlbyname("hw.targettype", devicename, &buflen, NULL, 0);
	T_EXPECT_EQ(KERN_SUCCESS, kr, "Got target-type");
	T_ASSERT_GT(buflen, 0ul, "Len (%z) > 0", buflen);
	return devicename;
}

static void
enablement_configuration_process_checks(
	NSArray *json_array,
	enablement_configuration *configuration
	)
{
#if MALLOC_TARGET_IOS_ONLY
	// Array of all the non-AMP hardware
	char non_amp_hardware[2][16] = {"J171", "J172"};
	char devicename[16] = { 0 };
	size_t len = sizeof(devicename) - 1;
	get_device_name(devicename, len);

	// The secure allocator should not be enabled for any process on non-AMP
	// hardware
	for (int i = 0; i < countof(non_amp_hardware); ++i) {
		if (!strcmp(devicename, non_amp_hardware[i])) {
			T_EXPECT_EQ(json_array.count, 0ul, "No zones should be present");
			return;
		}
	}
#endif

	// The secure allocator should not be enabled for any process on intel
	// machines
#if TARGET_OS_OSX && !TARGET_CPU_ARM64
	T_EXPECT_EQ(json_array.count, 0ul, "No zones should be present");
	return;
#endif

	// Verify if the secure allocator is enabled for that process
	if (configuration->should_have_xzones) {
		T_ASSERT_GE(json_array.count, 1ul, "At least one zone is xzm");
	} else {
		T_EXPECT_EQ(json_array.count, 0ul, "No zones should be present");
		return;
	}

	// Verify guard configuration
	NSDictionary *guard_config = json_array[0][@"guard_config"];
	T_ASSERT_NE(guard_config, nil, "Guard config dictionary in output");
	T_EXPECT_EQ([guard_config[@"guards_enabled"] boolValue],
			(int)configuration->guards_enabled,
			"Guard configuration");

	// Verify thread caching configuration
	T_EXPECT_EQ([json_array[0][@"thread_cache_enabled"] boolValue],
			(int)configuration->thread_cache_enabled, "Thread caching configuration");

	// Verify batching configuration
	T_EXPECT_EQ([json_array[0][@"batch_size"] intValue],
			configuration->batch_size, "Batching configuration");

	// Verify number of pointer buckets
	T_EXPECT_EQ([json_array[0][@"ptr_bucket_count"] intValue],
			configuration->ptr_bucket_count, "Expected number of pointer buckets");

	// Verify segment group configuration
	T_EXPECT_EQ([json_array[0][@"segment_group_ids_count"] intValue],
			configuration->segment_group_ids_count, "Expected number of segment group ids");
	T_EXPECT_EQ([json_array[0][@"segment_group_count"] intValue],
		configuration->segment_group_count, "Expected number of segment groups");

	// Verify deferred reclaim configuration
	T_EXPECT_EQ([json_array[0][@"defer_tiny"] intValue],
			configuration->defer_tiny,
			"Deferred reclaim (tiny) configuration");
	T_EXPECT_EQ([json_array[0][@"defer_small"] intValue],
			configuration->defer_small,
			"Deferred reclaim (small) configuration");
	T_EXPECT_EQ([json_array[0][@"defer_large"] intValue],
			configuration->defer_large,
			"Deferred reclaim (large) configuration");
}

static pid_t
spawn_process(char *new_argv[])
{
	pid_t child_pid = 0;
	errno_t ret = posix_spawn(&child_pid, new_argv[0], NULL, NULL,
			new_argv, NULL);
	T_ASSERT_POSIX_ZERO(ret, "posix_spawn(%s)", new_argv[0]);
	T_ASSERT_NE(child_pid, 0, "posix_spawn(%s)", new_argv[0]);

	int status;
	// We expect the newly created process to run indefinitely.
	// Assert that it started, and if so, proceed with the test.
	int pid = waitpid(child_pid, &status, WNOHANG);
	T_ASSERT_POSIX_ZERO(pid, "waitpid call is successful");
	return child_pid;
}

static void
security_critical_configuration_checks(char *process)
{
	struct enablement_configuration configuration = (enablement_configuration) {
		.should_have_xzones = true,
		.guards_enabled = true,
		.thread_cache_enabled = false,
		.batch_size = 0,
#if TARGET_OS_OSX || TARGET_OS_VISION
		.ptr_bucket_count = 4,
#else
		.ptr_bucket_count = 3,
#endif
		.segment_group_ids_count = XZM_SEGMENT_GROUP_IDS_COUNT,
		.segment_group_count = 1 * XZM_SEGMENT_GROUP_IDS_COUNT,
		.defer_tiny = false,
		.defer_small = false,
		.defer_large = false,
	 };

	enablement_configuration_process_checks(
		get_process_json(process, false),
		&configuration
		);
}

void terminate_process(pid_t pid) {
	char terminate_process_buffer[PID_BUFFER_SIZE] = {};
	snprintf(terminate_process_buffer, PID_BUFFER_SIZE, "kill -9 %d", pid);
	T_ASSERT_POSIX_ZERO(system(terminate_process_buffer), "terminated process");
}

T_DECL(xzone_enabled_launchd,
		"Verify enablement configuration for security critical processes"
		"(launchd)",
		T_META_TAG_VM_NOT_ELIGIBLE,
		T_META_ASROOT(true))
{
	security_critical_configuration_checks("launchd.development");
}

T_DECL(xzone_enabled_logd,
		"Verify enablement configuration for security critical processes"
		"(logd)",
		T_META_TAG_VM_NOT_ELIGIBLE,
		T_META_ASROOT(true))
{
	security_critical_configuration_checks("logd");
}

T_DECL(xzone_enabled_notifyd,
		"Verify enablement configuration for security critical processes" "(notifyd)",
		T_META_TAG_VM_NOT_ELIGIBLE,
		T_META_ASROOT(true))
{
	security_critical_configuration_checks("notifyd");
}

// This test needs to be run as the local (non-root) user on macOS in order to
// successfully launch Safari
T_DECL(xzone_enabled_safari,
		"Verify enablement configuration for security critical processes"
		"(Safari)",
#if TARGET_OS_OSX
		T_META_REQUIRES_NETWORK(true),
#endif
		T_META_TAG_VM_NOT_ELIGIBLE)
{
#if TARGET_OS_OSX
	// Launch the Safari process on macOS
	char *launch_safari_args[] = {"/usr/bin/open", "-a", "Safari",
	"http://apple.com", NULL};
	pid_t safari_pid = spawn_process(launch_safari_args);
	security_critical_configuration_checks("Safari");
#else
#if MALLOC_TARGET_IOS_ONLY
	// Move past home screen to launch app in foreground
	T_ASSERT_POSIX_ZERO(system("LaunchApp -unlock com.apple.springboard"), "open homescreen");
#endif
	// Launch the MobileSafari app
	T_ASSERT_POSIX_ZERO(system("xctitool launch com.apple.mobilesafari"), "launch MobileSafari");

	// We'd like to verify that Safari, along with its related subprocesses,
	// are running with the secure critical process configuration
	security_critical_configuration_checks("MobileSafari");
#endif
	security_critical_configuration_checks("com.apple.WebKit.Networking");
	security_critical_configuration_checks("com.apple.WebKit.GPU");
	security_critical_configuration_checks("com.apple.WebKit.WebContent");

#if TARGET_OS_OSX
	terminate_process(safari_pid);
#endif
}

T_DECL(xzone_enabled_driverkit,
		"Verify enablement configuration for Driverkit processes",
		T_META_TAG_VM_NOT_ELIGIBLE,
		T_META_ASROOT(true))
{
	// DriverKit processes are usually started at boot. However, on devboards
	// for J8XX, which miss many parts, the command "ps -u _driverkit" shows no
	// processes running by default. Thus, run a simple test to start the
	// com.apple.AppleUserHIDDriver process for analysis.
	char *spawn_driverkit_proc_args[] = {"/usr/local/bin/hidUserDeviceTest", "hidUserDeviceTest", "-k", NULL};
	pid_t driver_test_pid = spawn_process(spawn_driverkit_proc_args);

	// The above action would have started the DriverKit process with the
	// label: com.apple.AppleUserHIDDriver
	struct enablement_configuration configuration = (enablement_configuration) {
		.should_have_xzones = true,
		.guards_enabled = false,
		.thread_cache_enabled = false,
		.batch_size = 0,
#if TARGET_OS_OSX || TARGET_OS_VISION
		.ptr_bucket_count = 4,
#else
		.ptr_bucket_count = 3,
#endif
		.segment_group_ids_count = XZM_SEGMENT_GROUP_IDS_COUNT,
		.segment_group_count = 1 * XZM_SEGMENT_GROUP_IDS_COUNT,
		.defer_tiny = false,
		.defer_small = false,
		.defer_large = false,
	 };

	enablement_configuration_process_checks(
		get_process_json("com.apple.AppleUserHIDDrivers", false),
		&configuration
		);
	// Cleanup the process so that it doesn't linger undesirably
	terminate_process(driver_test_pid);
}

T_DECL(xzone_enabled_general_process_test_runner,
		"Verify enablement configuration for general processes (the test" "process itself)",
		T_META_TAG_VM_NOT_ELIGIBLE,
		T_META_TAG_NO_ALLOCATOR_OVERRIDE,
		T_META_ASROOT(true))
{
	struct enablement_configuration configuration = (enablement_configuration) {
#if TARGET_OS_OSX
		.should_have_xzones = false,
#else
		.should_have_xzones = true,
#endif
		.guards_enabled = false,
		.thread_cache_enabled = false,
		.batch_size = 0,
#if TARGET_OS_VISION
		.ptr_bucket_count = 4,
#else
		.ptr_bucket_count = 2,
#endif
		.segment_group_ids_count = XZM_SEGMENT_GROUP_IDS_COUNT,
		.segment_group_count = 1 * XZM_SEGMENT_GROUP_IDS_COUNT,
		.defer_tiny = false,
		.defer_small = false,
		.defer_large = false,
	 };

	enablement_configuration_process_checks(
		get_process_json("enablement_tests", false),
		&configuration
		);
}

T_DECL(xzone_enabled_general_daemon,
		"Verify enablement configuration for general processes (a daemon," "watchdogd)",
		T_META_TAG_VM_NOT_ELIGIBLE,
		T_META_ASROOT(true))
{
	struct enablement_configuration configuration = (enablement_configuration) {
		.should_have_xzones = true,
		.guards_enabled = false,
		.thread_cache_enabled = false,
		.batch_size = 0,
#if TARGET_OS_VISION || TARGET_OS_OSX
		.ptr_bucket_count = 4,
#else
		.ptr_bucket_count = 2,
#endif
		.segment_group_ids_count = XZM_SEGMENT_GROUP_IDS_COUNT,
		.segment_group_count = 1 * XZM_SEGMENT_GROUP_IDS_COUNT,
		.defer_tiny = false,
		.defer_small = false,
		.defer_large = false,
	 };
	// The second process we'll examine in the general category is a daemon,
	// watchdogd
	enablement_configuration_process_checks(
		get_process_json("watchdogd", false),
		&configuration
	);
}

#if TARGET_OS_OSX
T_DECL(xzone_enabled_overridden_app,
		"Verify enablement configuration for an overridden app on MacOS (Messages)",
		T_META_TAG_VM_NOT_ELIGIBLE)
{
	struct enablement_configuration configuration = (enablement_configuration) {
		.should_have_xzones = true,
		.guards_enabled = false,
		.thread_cache_enabled = true,
		.batch_size = 10,
		.ptr_bucket_count = 4,
		.segment_group_ids_count = XZM_SEGMENT_GROUP_IDS_COUNT,
		.segment_group_count = get_ncpuclusters() * XZM_SEGMENT_GROUP_IDS_COUNT,
		.defer_tiny = true,
		.defer_small = true,
		.defer_large = true,
	 };

	// Launch the Messages app on macOS
	char *launch_notes_args[] = {"/System/Applications/Messages.app/Contents/MacOS/Messages", NULL};
	pid_t pid = spawn_process(launch_notes_args);

	// On macOS, we expect this to use xzone malloc
	enablement_configuration_process_checks(
		get_process_json("Messages", false),
		&configuration
	);
	// Cleanup the process so that it doesn't linger undesirably
	terminate_process(pid);
}
#endif // TARGET_OS_OSX

T_DECL(xzone_enabled_general_app,
		"Verify enablement configuration for a general app (Notes)",
		T_META_TAG_VM_NOT_ELIGIBLE)
{
	bool should_defer_large = false;
#if MALLOC_TARGET_IOS_ONLY
	// If an iOS device has >=6GB of memory, the enablement configuration
	// should have defer_large set to "true"
	uint64_t memsize = platform_hw_memsize();
	const uint64_t defer_large_ios_bytes_memsize = 6 * 1073741824ULL;
	T_LOG("Device memsize: %"PRIu64", defer_large_ios_bytes_memsize: %"PRIu64"",
			memsize, defer_large_ios_bytes_memsize);
	if (memsize >= defer_large_ios_bytes_memsize) {
		should_defer_large = true;
	}
#endif

	struct enablement_configuration configuration = (enablement_configuration) {
#if TARGET_OS_OSX
		.should_have_xzones = false,
#else
		.should_have_xzones = true,
#endif // TARGET_OS_OSX
		.guards_enabled = false,
		.thread_cache_enabled = true,
		.batch_size = 0,
#if TARGET_OS_VISION
		.ptr_bucket_count = 4,
#else
		.ptr_bucket_count = 2,
#endif // TARGET_OS_VISION
		.segment_group_ids_count = XZM_SEGMENT_GROUP_IDS_COUNT,
		.segment_group_count = 1 * XZM_SEGMENT_GROUP_IDS_COUNT,
		.defer_tiny = false,
		.defer_small = false,
		.defer_large = should_defer_large,
	 };

#if TARGET_OS_OSX
	// Launch the Notes app on macOS
	char *launch_notes_args[] = {"/System/Applications/Notes.app/Contents/MacOS/Notes", NULL};
	pid_t notes_pid = spawn_process(launch_notes_args);

	// On macOS, we expect a random app process to not use xzone malloc
	enablement_configuration_process_checks(
		get_process_json("Notes", false),
		&configuration
	);
	// Cleanup the process so that it doesn't linger undesirably
	terminate_process(notes_pid);
#else

#if MALLOC_TARGET_IOS_ONLY
	// Move past home screen to launch app in foreground
	T_ASSERT_POSIX_ZERO(system("LaunchApp -unlock com.apple.springboard"),
	"open homescreen");
#endif // MALLOC_TARGET_IOS_ONLY

	// Launch the MobileNotes app
	T_ASSERT_POSIX_ZERO(system("xctitool launch com.apple.mobilenotes"),
	"launch MobileNotes");
	enablement_configuration_process_checks(
		get_process_json("MobileNotes", false),
		&configuration
	);

#endif // TARGET_OS_OSX
}

#else // CONFIG_XZONE_MALLOC && (MALLOC_TARGET_IOS_ONLY || TARGET_OS_OSX ||
// TARGET_OS_VISION)
T_DECL(skip_json_printer_tests, "Skip printer tests")
{
	T_SKIP("Nothing to test without xzone malloc on ios/macos/visionos");
}
#endif // CONFIG_XZONE_MALLOC && (MALLOC_TARGET_IOS_ONLY || TARGET_OS_OSX ||
// TARGET_OS_VISION)