xref: /xnu-11215.81.4/tests/debug_enable_syscall_rejection.c (revision d4514f0bc1d3f944c22d92e68b646ac3fb40d452)
1*d4514f0bSApple OSS Distributions /*
2*d4514f0bSApple OSS Distributions  * Copyright (c) 2019-2021 Apple Inc. All rights reserved.
3*d4514f0bSApple OSS Distributions  *
4*d4514f0bSApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5*d4514f0bSApple OSS Distributions  *
6*d4514f0bSApple OSS Distributions  * This file contains Original Code and/or Modifications of Original Code
7*d4514f0bSApple OSS Distributions  * as defined in and that are subject to the Apple Public Source License
8*d4514f0bSApple OSS Distributions  * Version 2.0 (the 'License'). You may not use this file except in
9*d4514f0bSApple OSS Distributions  * compliance with the License. The rights granted to you under the License
10*d4514f0bSApple OSS Distributions  * may not be used to create, or enable the creation or redistribution of,
11*d4514f0bSApple OSS Distributions  * unlawful or unlicensed copies of an Apple operating system, or to
12*d4514f0bSApple OSS Distributions  * circumvent, violate, or enable the circumvention or violation of, any
13*d4514f0bSApple OSS Distributions  * terms of an Apple operating system software license agreement.
14*d4514f0bSApple OSS Distributions  *
15*d4514f0bSApple OSS Distributions  * Please obtain a copy of the License at
16*d4514f0bSApple OSS Distributions  * http://www.opensource.apple.com/apsl/ and read it before using this file.
17*d4514f0bSApple OSS Distributions  *
18*d4514f0bSApple OSS Distributions  * The Original Code and all software distributed under the License are
19*d4514f0bSApple OSS Distributions  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20*d4514f0bSApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21*d4514f0bSApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22*d4514f0bSApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23*d4514f0bSApple OSS Distributions  * Please see the License for the specific language governing rights and
24*d4514f0bSApple OSS Distributions  * limitations under the License.
25*d4514f0bSApple OSS Distributions  *
26*d4514f0bSApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27*d4514f0bSApple OSS Distributions  */
28*d4514f0bSApple OSS Distributions 
29*d4514f0bSApple OSS Distributions /*
30*d4514f0bSApple OSS Distributions  * tests for scheduler hygiene system call rejection feature
31*d4514f0bSApple OSS Distributions  */
32*d4514f0bSApple OSS Distributions 
33*d4514f0bSApple OSS Distributions #include <darwintest.h>
34*d4514f0bSApple OSS Distributions #include <darwintest_posix.h>
35*d4514f0bSApple OSS Distributions #include <darwintest_utils.h>
36*d4514f0bSApple OSS Distributions 
37*d4514f0bSApple OSS Distributions #include <errno.h>
38*d4514f0bSApple OSS Distributions #include <libgen.h>
39*d4514f0bSApple OSS Distributions #include <pthread.h>
40*d4514f0bSApple OSS Distributions #include <signal.h>
41*d4514f0bSApple OSS Distributions #include <stdarg.h>
42*d4514f0bSApple OSS Distributions #include <stdio.h>
43*d4514f0bSApple OSS Distributions #include <string.h>
44*d4514f0bSApple OSS Distributions #include <sys/sysctl.h>
45*d4514f0bSApple OSS Distributions #include <unistd.h>
46*d4514f0bSApple OSS Distributions 
47*d4514f0bSApple OSS Distributions #include <mach/mach.h>
48*d4514f0bSApple OSS Distributions #include <mach/mach_traps.h>
49*d4514f0bSApple OSS Distributions #include <mach/mach_types.h>
50*d4514f0bSApple OSS Distributions 
51*d4514f0bSApple OSS Distributions #include <darwintest.h>
52*d4514f0bSApple OSS Distributions #include <darwintest_utils.h>
53*d4514f0bSApple OSS Distributions 
54*d4514f0bSApple OSS Distributions #include <sys/kern_debug.h>
55*d4514f0bSApple OSS Distributions #include <sys/stat.h>
56*d4514f0bSApple OSS Distributions 
57*d4514f0bSApple OSS Distributions #include <mach-o/dyld.h>
58*d4514f0bSApple OSS Distributions 
59*d4514f0bSApple OSS Distributions T_GLOBAL_META(
60*d4514f0bSApple OSS Distributions 	T_META_NAMESPACE("xnu.debug"),
61*d4514f0bSApple OSS Distributions 	T_META_RADAR_COMPONENT_NAME("xnu"),
62*d4514f0bSApple OSS Distributions 	T_META_RADAR_COMPONENT_VERSION("arm"),
63*d4514f0bSApple OSS Distributions 	T_META_OWNER("julien_oster")
64*d4514f0bSApple OSS Distributions 	);
65*d4514f0bSApple OSS Distributions 
66*d4514f0bSApple OSS Distributions static int const ALIVE = 0;
67*d4514f0bSApple OSS Distributions static int const DEAD = 1;
68*d4514f0bSApple OSS Distributions 
69*d4514f0bSApple OSS Distributions static int
helper(char ** args)70*d4514f0bSApple OSS Distributions helper(char **args)
71*d4514f0bSApple OSS Distributions {
72*d4514f0bSApple OSS Distributions 	int ret = 0;
73*d4514f0bSApple OSS Distributions 	int status = 0;
74*d4514f0bSApple OSS Distributions 	int signal = 0;
75*d4514f0bSApple OSS Distributions 	int timeout = 30;
76*d4514f0bSApple OSS Distributions 
77*d4514f0bSApple OSS Distributions 	pid_t child_pid = 0;
78*d4514f0bSApple OSS Distributions 	bool wait_ret = true;
79*d4514f0bSApple OSS Distributions 
80*d4514f0bSApple OSS Distributions 	char binary_path[MAXPATHLEN], *binary_dir = NULL;
81*d4514f0bSApple OSS Distributions 	uint32_t path_size = sizeof(binary_path);
82*d4514f0bSApple OSS Distributions 
83*d4514f0bSApple OSS Distributions 	ret = _NSGetExecutablePath(binary_path, &path_size);
84*d4514f0bSApple OSS Distributions 	T_QUIET; T_ASSERT_EQ(ret, 0, "_NSGetExecutablePath: %s, size: %d", binary_path, path_size);
85*d4514f0bSApple OSS Distributions 	binary_dir = dirname(binary_path);
86*d4514f0bSApple OSS Distributions 	T_QUIET; T_WITH_ERRNO; T_ASSERT_NOTNULL(binary_dir, "get binary directory: %s", binary_dir);
87*d4514f0bSApple OSS Distributions 
88*d4514f0bSApple OSS Distributions 	char const *helper_binary = "debug_syscall_rejection_helper";
89*d4514f0bSApple OSS Distributions 	snprintf(binary_path, MAXPATHLEN, "%s/%s", binary_dir, helper_binary);
90*d4514f0bSApple OSS Distributions 	args[0] = binary_path;
91*d4514f0bSApple OSS Distributions 
92*d4514f0bSApple OSS Distributions 	ret = dt_launch_tool(&child_pid, args, false, NULL, NULL);
93*d4514f0bSApple OSS Distributions 	T_QUIET; T_ASSERT_EQ(ret, 0, "launch helper: %s", helper_binary);
94*d4514f0bSApple OSS Distributions 
95*d4514f0bSApple OSS Distributions 	wait_ret = dt_waitpid(child_pid, &status, &signal, timeout);
96*d4514f0bSApple OSS Distributions 
97*d4514f0bSApple OSS Distributions 	if (wait_ret) {
98*d4514f0bSApple OSS Distributions 		// T_LOG("helper returned: %d", status);
99*d4514f0bSApple OSS Distributions 
100*d4514f0bSApple OSS Distributions 		T_EXPECT_EQ(status, 0, "helper returned exit code %i", status);
101*d4514f0bSApple OSS Distributions 
102*d4514f0bSApple OSS Distributions 		return 0;
103*d4514f0bSApple OSS Distributions 	}
104*d4514f0bSApple OSS Distributions 
105*d4514f0bSApple OSS Distributions 	// helper crashed (possibly expectedly)
106*d4514f0bSApple OSS Distributions 
107*d4514f0bSApple OSS Distributions 	if (signal != 0) {
108*d4514f0bSApple OSS Distributions 		// T_LOG("signal terminated helper: %d", signal);
109*d4514f0bSApple OSS Distributions 
110*d4514f0bSApple OSS Distributions 		T_EXPECT_EQ(signal, SIGKILL, "helper terminated with signal %i", signal);
111*d4514f0bSApple OSS Distributions 		return 1;
112*d4514f0bSApple OSS Distributions 	}
113*d4514f0bSApple OSS Distributions 
114*d4514f0bSApple OSS Distributions 	T_FAIL("helper terminated with unexpected condition (status: %i, signal: %i)", status, signal);
115*d4514f0bSApple OSS Distributions 	return 2;
116*d4514f0bSApple OSS Distributions }
117*d4514f0bSApple OSS Distributions 
118*d4514f0bSApple OSS Distributions static void
do_test(char const * msg,int expectation,...)119*d4514f0bSApple OSS Distributions do_test(char const *msg, int expectation, ...)
120*d4514f0bSApple OSS Distributions {
121*d4514f0bSApple OSS Distributions 	size_t const arg_max_count = 128;
122*d4514f0bSApple OSS Distributions 	char *args[arg_max_count] = {0};
123*d4514f0bSApple OSS Distributions 
124*d4514f0bSApple OSS Distributions 	va_list ap;
125*d4514f0bSApple OSS Distributions 	va_start(ap, expectation);
126*d4514f0bSApple OSS Distributions 
127*d4514f0bSApple OSS Distributions 	char *arg;
128*d4514f0bSApple OSS Distributions 	int i = 1;
129*d4514f0bSApple OSS Distributions 	while ((arg = va_arg(ap, char *)) != NULL) {
130*d4514f0bSApple OSS Distributions 		T_QUIET; T_ASSERT_LT(i, (int)arg_max_count, "no args overflow");
131*d4514f0bSApple OSS Distributions 		args[i++] = arg;
132*d4514f0bSApple OSS Distributions 	}
133*d4514f0bSApple OSS Distributions 
134*d4514f0bSApple OSS Distributions 	va_end(ap);
135*d4514f0bSApple OSS Distributions 
136*d4514f0bSApple OSS Distributions 	T_EXPECT_EQ(helper(args), expectation, "%s", msg);
137*d4514f0bSApple OSS Distributions }
138*d4514f0bSApple OSS Distributions 
139*d4514f0bSApple OSS Distributions #define ALLOW(pos, mask) "-a", "-s", #mask, "-i", #pos
140*d4514f0bSApple OSS Distributions #define DENY(pos, mask) "-d", "-s", #mask, "-i", #pos
141*d4514f0bSApple OSS Distributions 
142*d4514f0bSApple OSS Distributions T_DECL(debug_syscall_rejection_tests,
143*d4514f0bSApple OSS Distributions     "Verify that syscall rejection works",
144*d4514f0bSApple OSS Distributions     T_META_SYSCTL_INT("kern.debug_syscall_rejection_mode=1"),
145*d4514f0bSApple OSS Distributions     T_META_REQUIRES_SYSCTL_EQ("kern.debug_syscall_rejection_mode", 1), T_META_TAG_VM_PREFERRED)
146*d4514f0bSApple OSS Distributions {
147*d4514f0bSApple OSS Distributions 	int old_mode;
148*d4514f0bSApple OSS Distributions 	size_t old_mode_size = sizeof(old_mode);
149*d4514f0bSApple OSS Distributions 	int new_mode = 2;
150*d4514f0bSApple OSS Distributions 
151*d4514f0bSApple OSS Distributions 	// test syscall mode switching (even if already done by T_META_SYSCTL_INT)
152*d4514f0bSApple OSS Distributions 	int ret = sysctlbyname("kern.debug_syscall_rejection_mode", &old_mode, &old_mode_size, &new_mode, sizeof(new_mode));
153*d4514f0bSApple OSS Distributions 	if (ret != 0) {
154*d4514f0bSApple OSS Distributions 		T_ASSERT_FAIL("Syscall rejection mode switching failed: ret %d, errno %d", ret, errno);
155*d4514f0bSApple OSS Distributions 	}
156*d4514f0bSApple OSS Distributions 
157*d4514f0bSApple OSS Distributions 	T_ASSERT_EQ(old_mode_size, sizeof(old_mode), "sysctl returns correct size");
158*d4514f0bSApple OSS Distributions 
159*d4514f0bSApple OSS Distributions 	char * const set_mask_12 = "12: chdir debug_syscall_reject_config";
160*d4514f0bSApple OSS Distributions 	size_t const set_mask_12_size = strlen(set_mask_12);
161*d4514f0bSApple OSS Distributions 	T_EXPECT_POSIX_SUCCESS(sysctlbyname("kern.syscall_rejection_masks", NULL, NULL, set_mask_12, set_mask_12_size),
162*d4514f0bSApple OSS Distributions 	    "set syscall rej test mask");
163*d4514f0bSApple OSS Distributions 
164*d4514f0bSApple OSS Distributions 	do_test("default is disallow all", DEAD, NULL);
165*d4514f0bSApple OSS Distributions 	do_test("disallow all dies", DEAD, DENY(0, 1), NULL);
166*d4514f0bSApple OSS Distributions 	do_test("allow all lives", ALIVE, ALLOW(0, 1), NULL);
167*d4514f0bSApple OSS Distributions 	do_test("allow testmask lives", ALIVE, ALLOW(0, 12), NULL);
168*d4514f0bSApple OSS Distributions 	do_test("disallow testmask overrides dies", DEAD, ALLOW(0, 1), DENY(1, 12), NULL);
169*d4514f0bSApple OSS Distributions 
170*d4514f0bSApple OSS Distributions 	// check that all slots work as expected
171*d4514f0bSApple OSS Distributions 	int const slots = 16;
172*d4514f0bSApple OSS Distributions 	for (int i = 0; i < slots - 1; i++) {
173*d4514f0bSApple OSS Distributions 		size_t const max_pos_len = 16;
174*d4514f0bSApple OSS Distributions 		char pos1[max_pos_len], pos2[max_pos_len];
175*d4514f0bSApple OSS Distributions 		T_QUIET; T_ASSERT_GE_INT(snprintf(pos1, max_pos_len, "%u", i), 0, "creating pos1");
176*d4514f0bSApple OSS Distributions 		T_QUIET; T_ASSERT_GE_INT(snprintf(pos2, max_pos_len, "%u", i + 1), 0, "creating pos2");
177*d4514f0bSApple OSS Distributions 
178*d4514f0bSApple OSS Distributions 		char *args[] = {DENY(pos1, ALL), ALLOW(pos2, 12), NULL};
179*d4514f0bSApple OSS Distributions 		T_EXPECT_EQ(helper(args), ALIVE, "pos %s/%s works (alive)", pos1, pos2);
180*d4514f0bSApple OSS Distributions 		char *args_d[] = {ALLOW(pos1, ALL), DENY(pos2, 12), NULL};
181*d4514f0bSApple OSS Distributions 		T_EXPECT_EQ(helper(args_d), DEAD, "pos %s/%s works (dead)", pos1, pos2);
182*d4514f0bSApple OSS Distributions 	}
183*d4514f0bSApple OSS Distributions 
184*d4514f0bSApple OSS Distributions 	// check non-fatal mode
185*d4514f0bSApple OSS Distributions 	new_mode = 1;
186*d4514f0bSApple OSS Distributions 	T_EXPECT_POSIX_SUCCESS(sysctlbyname("kern.debug_syscall_rejection_mode", NULL, NULL, &new_mode, sizeof(new_mode)),
187*d4514f0bSApple OSS Distributions 	    "set syscall rej mode to non-fatal");
188*d4514f0bSApple OSS Distributions 
189*d4514f0bSApple OSS Distributions 	do_test("non-fatal: default is disallow all", ALIVE, NULL);
190*d4514f0bSApple OSS Distributions 	do_test("non-fatal: disallow all", ALIVE, DENY(0, 1), NULL);
191*d4514f0bSApple OSS Distributions 	do_test("non-fatal: allow all", ALIVE, ALLOW(0, 1), NULL);
192*d4514f0bSApple OSS Distributions 	do_test("non-fatal: allow testmask", ALIVE, ALLOW(0, 12), NULL);
193*d4514f0bSApple OSS Distributions 	do_test("non-fatal: disallow testmask overrides", ALIVE, ALLOW(0, 1), DENY(1, 12), NULL);
194*d4514f0bSApple OSS Distributions 
195*d4514f0bSApple OSS Distributions 	// check force-fatal override
196*d4514f0bSApple OSS Distributions 	new_mode = 1;
197*d4514f0bSApple OSS Distributions 	T_EXPECT_POSIX_SUCCESS(sysctlbyname("kern.debug_syscall_rejection_mode", NULL, NULL, &new_mode, sizeof(new_mode)),
198*d4514f0bSApple OSS Distributions 	    "set syscall rej mode to non-fatal");
199*d4514f0bSApple OSS Distributions 
200*d4514f0bSApple OSS Distributions 	do_test("force-fatal: default is disallow all", DEAD, "-F", NULL);
201*d4514f0bSApple OSS Distributions 	do_test("force-fatal: disallow all", DEAD, DENY(0, 1), "-F", NULL);
202*d4514f0bSApple OSS Distributions 	do_test("force-fatal: allow all", ALIVE, ALLOW(0, 1), "-F", NULL);
203*d4514f0bSApple OSS Distributions 	do_test("force-fatal: allow testmask", ALIVE, ALLOW(0, 12), "-F", NULL);
204*d4514f0bSApple OSS Distributions 	do_test("force-fatal: disallow testmask overrides", DEAD, ALLOW(0, 1), DENY(1, 12), "-F", NULL);
205*d4514f0bSApple OSS Distributions }
206*d4514f0bSApple OSS Distributions 
207*d4514f0bSApple OSS Distributions T_DECL(debug_enable_syscall_rejection_crash_count,
208*d4514f0bSApple OSS Distributions     "count syscall rejection crash reports",
209*d4514f0bSApple OSS Distributions     T_META_ENABLED(FALSE), /* currently a manual test */
210*d4514f0bSApple OSS Distributions     T_META_TAG_VM_PREFERRED
211*d4514f0bSApple OSS Distributions     )
212*d4514f0bSApple OSS Distributions {
213*d4514f0bSApple OSS Distributions 	syscall_rejection_selector_t masks[] = {
214*d4514f0bSApple OSS Distributions 		SYSCALL_REJECTION_ALLOW(SYSCALL_REJECTION_ALL),
215*d4514f0bSApple OSS Distributions 		SYSCALL_REJECTION_DENY(SYSCALL_REJECTION_NULL),
216*d4514f0bSApple OSS Distributions 		SYSCALL_REJECTION_DENY(SYSCALL_REJECTION_NULL),
217*d4514f0bSApple OSS Distributions 		SYSCALL_REJECTION_DENY(SYSCALL_REJECTION_NULL),
218*d4514f0bSApple OSS Distributions 		SYSCALL_REJECTION_DENY(SYSCALL_REJECTION_NULL),
219*d4514f0bSApple OSS Distributions 		SYSCALL_REJECTION_DENY(SYSCALL_REJECTION_NULL),
220*d4514f0bSApple OSS Distributions 		SYSCALL_REJECTION_DENY(SYSCALL_REJECTION_NULL),
221*d4514f0bSApple OSS Distributions 		SYSCALL_REJECTION_DENY(SYSCALL_REJECTION_NULL),
222*d4514f0bSApple OSS Distributions 		SYSCALL_REJECTION_DENY(SYSCALL_REJECTION_NULL),
223*d4514f0bSApple OSS Distributions 		SYSCALL_REJECTION_DENY(2),
224*d4514f0bSApple OSS Distributions 		SYSCALL_REJECTION_DENY(2),
225*d4514f0bSApple OSS Distributions 		SYSCALL_REJECTION_DENY(2),
226*d4514f0bSApple OSS Distributions 		SYSCALL_REJECTION_DENY(2),
227*d4514f0bSApple OSS Distributions 		SYSCALL_REJECTION_DENY(2),
228*d4514f0bSApple OSS Distributions 		SYSCALL_REJECTION_DENY(2),
229*d4514f0bSApple OSS Distributions 		SYSCALL_REJECTION_DENY(2),
230*d4514f0bSApple OSS Distributions 	};
231*d4514f0bSApple OSS Distributions 
232*d4514f0bSApple OSS Distributions 	int ret = debug_syscall_reject_config(masks, sizeof(masks) / sizeof(masks[0]), SYSCALL_REJECTION_FLAGS_DEFAULT);
233*d4514f0bSApple OSS Distributions 
234*d4514f0bSApple OSS Distributions 	T_WITH_ERRNO; T_ASSERT_POSIX_SUCCESS(ret, "debug_syscall_reject_config");
235*d4514f0bSApple OSS Distributions 
236*d4514f0bSApple OSS Distributions 	ret = chdir("/tmp");
237*d4514f0bSApple OSS Distributions 	ret = chdir("/tmp");
238*d4514f0bSApple OSS Distributions 	ret = chdir("/tmp");
239*d4514f0bSApple OSS Distributions 
240*d4514f0bSApple OSS Distributions 	printf("chdir: %i\n", ret);
241*d4514f0bSApple OSS Distributions 
242*d4514f0bSApple OSS Distributions 	ret = debug_syscall_reject_config(masks, sizeof(masks) / sizeof(masks[0]), SYSCALL_REJECTION_FLAGS_ONCE);
243*d4514f0bSApple OSS Distributions 
244*d4514f0bSApple OSS Distributions 	T_WITH_ERRNO; T_ASSERT_POSIX_SUCCESS(ret, "debug_syscall_reject_config once");
245*d4514f0bSApple OSS Distributions 
246*d4514f0bSApple OSS Distributions 	ret = chdir("/tmp");
247*d4514f0bSApple OSS Distributions 	ret = chdir("/tmp");
248*d4514f0bSApple OSS Distributions 	ret = chdir("/tmp");
249*d4514f0bSApple OSS Distributions 
250*d4514f0bSApple OSS Distributions 	printf("chdir once: %i\n", ret);
251*d4514f0bSApple OSS Distributions 
252*d4514f0bSApple OSS Distributions 	ret = debug_syscall_reject_config(masks, sizeof(masks) / sizeof(masks[0]), SYSCALL_REJECTION_FLAGS_ONCE);
253*d4514f0bSApple OSS Distributions 
254*d4514f0bSApple OSS Distributions 	T_WITH_ERRNO; T_ASSERT_POSIX_SUCCESS(ret, "debug_syscall_reject_config once ignore");
255*d4514f0bSApple OSS Distributions 
256*d4514f0bSApple OSS Distributions 	ret = chdir("/tmp");
257*d4514f0bSApple OSS Distributions 	ret = chdir("/tmp");
258*d4514f0bSApple OSS Distributions 	ret = chdir("/tmp");
259*d4514f0bSApple OSS Distributions 
260*d4514f0bSApple OSS Distributions 	printf("chdir once ignore: %i\n", ret);
261*d4514f0bSApple OSS Distributions 
262*d4514f0bSApple OSS Distributions 	ret = debug_syscall_reject_config(masks, sizeof(masks) / sizeof(masks[0]), SYSCALL_REJECTION_FLAGS_FORCE_FATAL);
263*d4514f0bSApple OSS Distributions 
264*d4514f0bSApple OSS Distributions 	T_WITH_ERRNO; T_ASSERT_POSIX_SUCCESS(ret, "debug_syscall_reject_config fatal");
265*d4514f0bSApple OSS Distributions 
266*d4514f0bSApple OSS Distributions 	ret = chdir("/tmp");
267*d4514f0bSApple OSS Distributions 	ret = chdir("/tmp");
268*d4514f0bSApple OSS Distributions 	ret = chdir("/tmp");
269*d4514f0bSApple OSS Distributions 
270*d4514f0bSApple OSS Distributions 	printf("chdir fatal: %i\n", ret); // unreached, but this is currently manual testing only
271*d4514f0bSApple OSS Distributions 
272*d4514f0bSApple OSS Distributions 	/*
273*d4514f0bSApple OSS Distributions 	 * Expected number of crash reports:
274*d4514f0bSApple OSS Distributions 	 * Mode				Crashes		Reason
275*d4514f0bSApple OSS Distributions 	 * Ignore (0)		1			force fatal causes final crash
276*d4514f0bSApple OSS Distributions 	 * Guard (1)		5			3 without ONCE flag, 1 with ONCE flag, final forced fatal crash
277*d4514f0bSApple OSS Distributions 	 * Fatal (2)		1			first crash is fatal
278*d4514f0bSApple OSS Distributions 	 */
279*d4514f0bSApple OSS Distributions }
280