xref: /xnu-8792.81.2/tests/stackshot_block_owner_14362384.m (revision 19c3b8c28c31cb8130e034cfb5df6bf9ba342d90)
1*19c3b8c2SApple OSS Distributions#ifdef T_NAMESPACE
2*19c3b8c2SApple OSS Distributions#undef T_NAMESPACE
3*19c3b8c2SApple OSS Distributions#endif
4*19c3b8c2SApple OSS Distributions#include <darwintest.h>
5*19c3b8c2SApple OSS Distributions#include <darwintest_utils.h>
6*19c3b8c2SApple OSS Distributions
7*19c3b8c2SApple OSS Distributions#include <kdd.h>
8*19c3b8c2SApple OSS Distributions#include <kern/kcdata.h>
9*19c3b8c2SApple OSS Distributions#include <kern/debug.h>
10*19c3b8c2SApple OSS Distributions#include <kern/block_hint.h>
11*19c3b8c2SApple OSS Distributions#include <mach/mach.h>
12*19c3b8c2SApple OSS Distributions#include <mach/mach_init.h>
13*19c3b8c2SApple OSS Distributions#include <mach/mach_traps.h>
14*19c3b8c2SApple OSS Distributions#include <mach/message.h>
15*19c3b8c2SApple OSS Distributions#include <mach/port.h>
16*19c3b8c2SApple OSS Distributions#include <mach/semaphore.h>
17*19c3b8c2SApple OSS Distributions#include <mach/task.h>
18*19c3b8c2SApple OSS Distributions#include <os/lock.h>
19*19c3b8c2SApple OSS Distributions#include <pthread.h>
20*19c3b8c2SApple OSS Distributions#include <signal.h>
21*19c3b8c2SApple OSS Distributions#include <sys/sysctl.h>
22*19c3b8c2SApple OSS Distributions#include <sys/stackshot.h>
23*19c3b8c2SApple OSS Distributions#include <sys/types.h>
24*19c3b8c2SApple OSS Distributions#include <stdlib.h>
25*19c3b8c2SApple OSS Distributions#include <unistd.h>
26*19c3b8c2SApple OSS Distributions#include <TargetConditionals.h>
27*19c3b8c2SApple OSS Distributions
28*19c3b8c2SApple OSS Distributions#if !(TARGET_OS_IPHONE && !TARGET_OS_SIMULATOR)
29*19c3b8c2SApple OSS Distributions#include <pcre.h>
30*19c3b8c2SApple OSS Distributions#endif
31*19c3b8c2SApple OSS Distributions
32*19c3b8c2SApple OSS Distributions
33*19c3b8c2SApple OSS DistributionsT_GLOBAL_META(
34*19c3b8c2SApple OSS Distributions        T_META_NAMESPACE("xnu.scheduler"),
35*19c3b8c2SApple OSS Distributions        T_META_RADAR_COMPONENT_NAME("xnu"),
36*19c3b8c2SApple OSS Distributions        T_META_RADAR_COMPONENT_VERSION("stackshot"),
37*19c3b8c2SApple OSS Distributions        T_META_OWNER("jonathan_w_adams"),
38*19c3b8c2SApple OSS Distributions        T_META_ASROOT(true)
39*19c3b8c2SApple OSS Distributions);
40*19c3b8c2SApple OSS Distributions
41*19c3b8c2SApple OSS Distributions#include <Foundation/Foundation.h>
42*19c3b8c2SApple OSS Distributions
43*19c3b8c2SApple OSS Distributions#define SENDS_TO_BLOCK 6
44*19c3b8c2SApple OSS Distributions#define NUMRETRIES 5
45*19c3b8c2SApple OSS Distributions#define KRWLCK_STORES_EXCL_OWNER 0
46*19c3b8c2SApple OSS Distributions
47*19c3b8c2SApple OSS Distributions#define KMUTEX_SYSCTL_CHECK_EXISTS   0
48*19c3b8c2SApple OSS Distributions#define KMUTEX_SYSCTL_ACQUIRE_WAIT   1
49*19c3b8c2SApple OSS Distributions#define KMUTEX_SYSCTL_ACQUIRE_NOWAIT 2
50*19c3b8c2SApple OSS Distributions#define KMUTEX_SYSCTL_SIGNAL         3
51*19c3b8c2SApple OSS Distributions#define KMUTEX_SYSCTL_TEARDOWN       4
52*19c3b8c2SApple OSS Distributions
53*19c3b8c2SApple OSS Distributions#define KRWLCK_SYSCTL_CHECK_EXISTS    0
54*19c3b8c2SApple OSS Distributions#define KRWLCK_SYSCTL_RACQUIRE_NOWAIT 1
55*19c3b8c2SApple OSS Distributions#define KRWLCK_SYSCTL_RACQUIRE_WAIT   2
56*19c3b8c2SApple OSS Distributions#define KRWLCK_SYSCTL_WACQUIRE_NOWAIT 3
57*19c3b8c2SApple OSS Distributions#define KRWLCK_SYSCTL_WACQUIRE_WAIT   4
58*19c3b8c2SApple OSS Distributions#define KRWLCK_SYSCTL_SIGNAL          5
59*19c3b8c2SApple OSS Distributions#define KRWLCK_SYSCTL_TEARDOWN        6
60*19c3b8c2SApple OSS Distributions
61*19c3b8c2SApple OSS Distributionsstatic const char kmutex_ctl[] = "debug.test_MutexOwnerCtl";
62*19c3b8c2SApple OSS Distributionsstatic const char krwlck_ctl[] = "debug.test_RWLockOwnerCtl";
63*19c3b8c2SApple OSS Distributions
64*19c3b8c2SApple OSS Distributionsstatic mach_port_t test_send_port = MACH_PORT_NULL;
65*19c3b8c2SApple OSS Distributionsstatic mach_port_t test_recv_port = MACH_PORT_NULL;
66*19c3b8c2SApple OSS Distributions
67*19c3b8c2SApple OSS Distributionsstatic void *
68*19c3b8c2SApple OSS Distributionstake_stackshot(uint32_t extra_flags, uint64_t since_timestamp)
69*19c3b8c2SApple OSS Distributions{
70*19c3b8c2SApple OSS Distributions	void * stackshot = NULL;
71*19c3b8c2SApple OSS Distributions	int ret = 0;
72*19c3b8c2SApple OSS Distributions	uint32_t stackshot_flags = STACKSHOT_SAVE_LOADINFO |
73*19c3b8c2SApple OSS Distributions					STACKSHOT_GET_GLOBAL_MEM_STATS |
74*19c3b8c2SApple OSS Distributions					STACKSHOT_SAVE_IMP_DONATION_PIDS |
75*19c3b8c2SApple OSS Distributions					STACKSHOT_KCDATA_FORMAT;
76*19c3b8c2SApple OSS Distributions
77*19c3b8c2SApple OSS Distributions	if (since_timestamp != 0)
78*19c3b8c2SApple OSS Distributions		stackshot_flags |= STACKSHOT_COLLECT_DELTA_SNAPSHOT;
79*19c3b8c2SApple OSS Distributions
80*19c3b8c2SApple OSS Distributions	stackshot_flags |= extra_flags;
81*19c3b8c2SApple OSS Distributions
82*19c3b8c2SApple OSS Distributions	stackshot = stackshot_config_create();
83*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_NOTNULL(stackshot, "Allocating stackshot config");
84*19c3b8c2SApple OSS Distributions
85*19c3b8c2SApple OSS Distributions	ret = stackshot_config_set_flags(stackshot, stackshot_flags);
86*19c3b8c2SApple OSS Distributions	T_ASSERT_POSIX_ZERO(ret, "Setting flags on stackshot config");
87*19c3b8c2SApple OSS Distributions
88*19c3b8c2SApple OSS Distributions	ret = stackshot_config_set_pid(stackshot, getpid());
89*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Setting target pid on stackshot config");
90*19c3b8c2SApple OSS Distributions
91*19c3b8c2SApple OSS Distributions	if (since_timestamp != 0) {
92*19c3b8c2SApple OSS Distributions		ret = stackshot_config_set_delta_timestamp(stackshot, since_timestamp);
93*19c3b8c2SApple OSS Distributions		T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Setting prev snapshot time on stackshot config");
94*19c3b8c2SApple OSS Distributions	}
95*19c3b8c2SApple OSS Distributions
96*19c3b8c2SApple OSS Distributions	for (int retries = NUMRETRIES; retries > 0; retries--) {
97*19c3b8c2SApple OSS Distributions		ret = stackshot_capture_with_config(stackshot);
98*19c3b8c2SApple OSS Distributions		T_QUIET; T_ASSERT_TRUE(ret == 0 || ret == EBUSY || ret == ETIMEDOUT,
99*19c3b8c2SApple OSS Distributions				"Attempting to take stackshot (error %d)...", ret);
100*19c3b8c2SApple OSS Distributions		if (retries == 0 && (ret == EBUSY || ret == ETIMEDOUT))
101*19c3b8c2SApple OSS Distributions			T_ASSERT_FAIL("Failed to take stackshot after %d retries: got %d (%s)", NUMRETRIES, ret, strerror(ret));
102*19c3b8c2SApple OSS Distributions		if (ret == 0)
103*19c3b8c2SApple OSS Distributions			break;
104*19c3b8c2SApple OSS Distributions	}
105*19c3b8c2SApple OSS Distributions	return stackshot;
106*19c3b8c2SApple OSS Distributions}
107*19c3b8c2SApple OSS Distributions
108*19c3b8c2SApple OSS Distributionsstatic void
109*19c3b8c2SApple OSS Distributionssave_stackshot(void *stackshot, const char *filename)
110*19c3b8c2SApple OSS Distributions{
111*19c3b8c2SApple OSS Distributions	void *buf = stackshot_config_get_stackshot_buffer(stackshot);
112*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_NOTNULL(buf, "buf");
113*19c3b8c2SApple OSS Distributions	size_t size = stackshot_config_get_stackshot_size(stackshot);
114*19c3b8c2SApple OSS Distributions	FILE *f = fopen(filename, "w");
115*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_NOTNULL(f, "f");
116*19c3b8c2SApple OSS Distributions	fwrite(buf, size, 1, f);
117*19c3b8c2SApple OSS Distributions	fclose(f);
118*19c3b8c2SApple OSS Distributions}
119*19c3b8c2SApple OSS Distributions
120*19c3b8c2SApple OSS Distributionsstatic
121*19c3b8c2SApple OSS Distributionsvoid check_python(void *stackshot, const char *func, const char *fmt, ...)
122*19c3b8c2SApple OSS Distributions{
123*19c3b8c2SApple OSS Distributions	char sspath[MAXPATHLEN];
124*19c3b8c2SApple OSS Distributions	strlcpy(sspath, func, sizeof(sspath));
125*19c3b8c2SApple OSS Distributions	strlcat(sspath, ".kcdata", sizeof(sspath));
126*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(dt_resultfile(sspath, sizeof(sspath)),
127*19c3b8c2SApple OSS Distributions	                "create result file path");
128*19c3b8c2SApple OSS Distributions
129*19c3b8c2SApple OSS Distributions	save_stackshot(stackshot, sspath);
130*19c3b8c2SApple OSS Distributions
131*19c3b8c2SApple OSS Distributions#if !(TARGET_OS_IPHONE && !TARGET_OS_SIMULATOR)
132*19c3b8c2SApple OSS Distributions	va_list args;
133*19c3b8c2SApple OSS Distributions	va_start(args, fmt);
134*19c3b8c2SApple OSS Distributions	char *re_string = NULL;
135*19c3b8c2SApple OSS Distributions	vasprintf(&re_string, fmt, args);
136*19c3b8c2SApple OSS Distributions	va_end(args);
137*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_NOTNULL(re_string, "vasprintf");
138*19c3b8c2SApple OSS Distributions
139*19c3b8c2SApple OSS Distributions	const char *pcreErrorStr;
140*19c3b8c2SApple OSS Distributions	int pcreErrorOffset;
141*19c3b8c2SApple OSS Distributions	pcre *re = pcre_compile(re_string, 0, &pcreErrorStr, &pcreErrorOffset, NULL);
142*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_NOTNULL(re, "pcre_compile");
143*19c3b8c2SApple OSS Distributions
144*19c3b8c2SApple OSS Distributions	char *kcdata_invoke;
145*19c3b8c2SApple OSS Distributions	asprintf(&kcdata_invoke, "/usr/local/bin/kcdata --pretty %s", sspath);
146*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_NOTNULL(kcdata_invoke, "asprintf");
147*19c3b8c2SApple OSS Distributions
148*19c3b8c2SApple OSS Distributions	bool found = false;
149*19c3b8c2SApple OSS Distributions	FILE *p = popen(kcdata_invoke, "r");
150*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_NOTNULL(p, "popen");
151*19c3b8c2SApple OSS Distributions	while (1) {
152*19c3b8c2SApple OSS Distributions		char *line = NULL;
153*19c3b8c2SApple OSS Distributions		size_t linecap = 0;
154*19c3b8c2SApple OSS Distributions		ssize_t linesize = getline(&line, &linecap, p);
155*19c3b8c2SApple OSS Distributions		if (linesize < 0) {
156*19c3b8c2SApple OSS Distributions			if (line)
157*19c3b8c2SApple OSS Distributions				free(line);
158*19c3b8c2SApple OSS Distributions			break;
159*19c3b8c2SApple OSS Distributions		}
160*19c3b8c2SApple OSS Distributions		int pcre_ret = pcre_exec(re, NULL, line, strlen(line), 0, 0, NULL, 0);
161*19c3b8c2SApple OSS Distributions		if (pcre_ret == 0){
162*19c3b8c2SApple OSS Distributions			T_LOG("line: %s", line);
163*19c3b8c2SApple OSS Distributions			found = true;
164*19c3b8c2SApple OSS Distributions		}
165*19c3b8c2SApple OSS Distributions		free(line);
166*19c3b8c2SApple OSS Distributions	}
167*19c3b8c2SApple OSS Distributions	T_EXPECT_TRUE(found, "found a match to \"%s\" in output of \"%s\"", re_string, kcdata_invoke);
168*19c3b8c2SApple OSS Distributions	pclose(p);
169*19c3b8c2SApple OSS Distributions	pcre_free(re);
170*19c3b8c2SApple OSS Distributions	free(re_string);
171*19c3b8c2SApple OSS Distributions	free(kcdata_invoke);
172*19c3b8c2SApple OSS Distributions#endif
173*19c3b8c2SApple OSS Distributions}
174*19c3b8c2SApple OSS Distributions
175*19c3b8c2SApple OSS Distributions
176*19c3b8c2SApple OSS Distributions// waitinfo can be NULL, but len must be non-null and point to the length of the waitinfo array.
177*19c3b8c2SApple OSS Distributions// when the function returns, len will be set to the number of waitinfo structs found in the stackshot.
178*19c3b8c2SApple OSS Distributionsstatic void
179*19c3b8c2SApple OSS Distributionsfind_blocking_info(void * stackshot, struct stackshot_thread_waitinfo *waitinfo, int *len)
180*19c3b8c2SApple OSS Distributions{
181*19c3b8c2SApple OSS Distributions	void *buf = NULL;
182*19c3b8c2SApple OSS Distributions	uint32_t t = 0;
183*19c3b8c2SApple OSS Distributions	uint32_t buflen = 0;
184*19c3b8c2SApple OSS Distributions	NSError *error = nil;
185*19c3b8c2SApple OSS Distributions	NSMutableDictionary *parsed_container = nil;
186*19c3b8c2SApple OSS Distributions	NSArray *parsed_waitinfo = nil;
187*19c3b8c2SApple OSS Distributions
188*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_NOTNULL(len, "Length pointer shouldn't be NULL");
189*19c3b8c2SApple OSS Distributions	int oldlen = *len;
190*19c3b8c2SApple OSS Distributions	*len = 0;
191*19c3b8c2SApple OSS Distributions
192*19c3b8c2SApple OSS Distributions	buf = stackshot_config_get_stackshot_buffer(stackshot);
193*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_NOTNULL(buf, "Getting stackshot buffer");
194*19c3b8c2SApple OSS Distributions	buflen = stackshot_config_get_stackshot_size(stackshot);
195*19c3b8c2SApple OSS Distributions
196*19c3b8c2SApple OSS Distributions	kcdata_iter_t iter = kcdata_iter(buf, buflen);
197*19c3b8c2SApple OSS Distributions
198*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_TRUE(kcdata_iter_type(iter) == KCDATA_BUFFER_BEGIN_STACKSHOT ||
199*19c3b8c2SApple OSS Distributions			kcdata_iter_type(iter) == KCDATA_BUFFER_BEGIN_DELTA_STACKSHOT,
200*19c3b8c2SApple OSS Distributions			"Checking start of stackshot buffer");
201*19c3b8c2SApple OSS Distributions
202*19c3b8c2SApple OSS Distributions	iter = kcdata_iter_next(iter);
203*19c3b8c2SApple OSS Distributions	KCDATA_ITER_FOREACH(iter)
204*19c3b8c2SApple OSS Distributions	{
205*19c3b8c2SApple OSS Distributions		t = kcdata_iter_type(iter);
206*19c3b8c2SApple OSS Distributions
207*19c3b8c2SApple OSS Distributions		if (t != KCDATA_TYPE_CONTAINER_BEGIN) {
208*19c3b8c2SApple OSS Distributions			continue;
209*19c3b8c2SApple OSS Distributions		}
210*19c3b8c2SApple OSS Distributions
211*19c3b8c2SApple OSS Distributions		if (kcdata_iter_container_type(iter) != STACKSHOT_KCCONTAINER_TASK) {
212*19c3b8c2SApple OSS Distributions			continue;
213*19c3b8c2SApple OSS Distributions		}
214*19c3b8c2SApple OSS Distributions
215*19c3b8c2SApple OSS Distributions		parsed_container = parseKCDataContainer(&iter, &error);
216*19c3b8c2SApple OSS Distributions		T_QUIET; T_ASSERT_TRUE(!error, "Error while parsing container: %d (%s)",
217*19c3b8c2SApple OSS Distributions				(int)error.code, [error.domain UTF8String]);
218*19c3b8c2SApple OSS Distributions		T_QUIET; T_ASSERT_TRUE(parsed_container && !error, "Parsing container");
219*19c3b8c2SApple OSS Distributions
220*19c3b8c2SApple OSS Distributions		parsed_waitinfo = parsed_container[@"task_snapshots"][@"thread_waitinfo"];
221*19c3b8c2SApple OSS Distributions		for (id elem in parsed_waitinfo) {
222*19c3b8c2SApple OSS Distributions			/* check to see that tid matches expected idle status */
223*19c3b8c2SApple OSS Distributions			uint8_t type = [elem[@"wait_type"] unsignedCharValue];
224*19c3b8c2SApple OSS Distributions			if (type != kThreadWaitNone) {
225*19c3b8c2SApple OSS Distributions				if (waitinfo && *len < oldlen) {
226*19c3b8c2SApple OSS Distributions					struct stackshot_thread_waitinfo *curr = &waitinfo[*len];
227*19c3b8c2SApple OSS Distributions					curr->wait_type = type;
228*19c3b8c2SApple OSS Distributions					curr->owner     = [elem[@"owner"] unsignedLongLongValue];
229*19c3b8c2SApple OSS Distributions					curr->waiter    = [elem[@"waiter"] unsignedLongLongValue];
230*19c3b8c2SApple OSS Distributions					curr->context   = [elem[@"context"] unsignedLongLongValue];
231*19c3b8c2SApple OSS Distributions				}
232*19c3b8c2SApple OSS Distributions				(*len)++;
233*19c3b8c2SApple OSS Distributions			}
234*19c3b8c2SApple OSS Distributions		}
235*19c3b8c2SApple OSS Distributions		[parsed_container release];
236*19c3b8c2SApple OSS Distributions	}
237*19c3b8c2SApple OSS Distributions}
238*19c3b8c2SApple OSS Distributions
239*19c3b8c2SApple OSS Distributions/* perform various actions with a mutex in kernel memory. note that, since we aren't allowed
240*19c3b8c2SApple OSS Distributions * to go to user space while still holding a mutex, the lock-acquiring actions in this kernel
241*19c3b8c2SApple OSS Distributions * sysctl will either lock and immediately release the lock, or lock and wait until a semaphore
242*19c3b8c2SApple OSS Distributions * is signalled, then unlock. if called with CHECK_EXISTS, returns whether or not the sysctl
243*19c3b8c2SApple OSS Distributions * exist in the kernel (to determine if we're running with CONFIG_XNUPOST defined). Else,
244*19c3b8c2SApple OSS Distributions * returns 1. */
245*19c3b8c2SApple OSS Distributionsstatic int kmutex_action(int action)
246*19c3b8c2SApple OSS Distributions{
247*19c3b8c2SApple OSS Distributions	int ret = 0;
248*19c3b8c2SApple OSS Distributions	if (action == KMUTEX_SYSCTL_CHECK_EXISTS) {
249*19c3b8c2SApple OSS Distributions		ret = sysctlbyname(krwlck_ctl, NULL, NULL, NULL, 0);
250*19c3b8c2SApple OSS Distributions		return !(ret == -1);
251*19c3b8c2SApple OSS Distributions	}
252*19c3b8c2SApple OSS Distributions
253*19c3b8c2SApple OSS Distributions	char * action_name = "";
254*19c3b8c2SApple OSS Distributions	switch(action) {
255*19c3b8c2SApple OSS Distributions		case KMUTEX_SYSCTL_ACQUIRE_WAIT:
256*19c3b8c2SApple OSS Distributions			action_name = "lock (and wait)";
257*19c3b8c2SApple OSS Distributions			break;
258*19c3b8c2SApple OSS Distributions		case KMUTEX_SYSCTL_ACQUIRE_NOWAIT:
259*19c3b8c2SApple OSS Distributions			action_name = "lock";
260*19c3b8c2SApple OSS Distributions			break;
261*19c3b8c2SApple OSS Distributions		case KMUTEX_SYSCTL_SIGNAL:
262*19c3b8c2SApple OSS Distributions			action_name = "signal to holder of";
263*19c3b8c2SApple OSS Distributions			break;
264*19c3b8c2SApple OSS Distributions		case KMUTEX_SYSCTL_TEARDOWN:
265*19c3b8c2SApple OSS Distributions			action_name = "tear down";
266*19c3b8c2SApple OSS Distributions			break;
267*19c3b8c2SApple OSS Distributions		default:
268*19c3b8c2SApple OSS Distributions			T_ASSERT_FAIL("Somebody passed the wrong argument to kmutex_action: %d", action);
269*19c3b8c2SApple OSS Distributions			break;
270*19c3b8c2SApple OSS Distributions	}
271*19c3b8c2SApple OSS Distributions
272*19c3b8c2SApple OSS Distributions	ret = sysctlbyname(kmutex_ctl, NULL, NULL, &action, sizeof(int));
273*19c3b8c2SApple OSS Distributions	T_ASSERT_POSIX_SUCCESS(ret, "sysctl: %s kernel mutex", action_name);
274*19c3b8c2SApple OSS Distributions	return 1;
275*19c3b8c2SApple OSS Distributions}
276*19c3b8c2SApple OSS Distributions
277*19c3b8c2SApple OSS Distributionsstatic void
278*19c3b8c2SApple OSS Distributionssysctl_kmutex_test_match(uint64_t context)
279*19c3b8c2SApple OSS Distributions{
280*19c3b8c2SApple OSS Distributions	int ret = 0;
281*19c3b8c2SApple OSS Distributions	unsigned long long unslid_kmutex_address = 0;
282*19c3b8c2SApple OSS Distributions	size_t addrsize = sizeof(unslid_kmutex_address);
283*19c3b8c2SApple OSS Distributions
284*19c3b8c2SApple OSS Distributions	ret = sysctlbyname(kmutex_ctl, &unslid_kmutex_address, &addrsize, NULL, 0);
285*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_SUCCESS(ret, "Getting unslid location of kernel mutex. Size is %llu",
286*19c3b8c2SApple OSS Distributions			(unsigned long long)addrsize);
287*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(context, unslid_kmutex_address,
288*19c3b8c2SApple OSS Distributions			"Context should match unslid location of mutex in kernel memory");
289*19c3b8c2SApple OSS Distributions}
290*19c3b8c2SApple OSS Distributions
291*19c3b8c2SApple OSS Distributions/* We don't really care what goes into these messages, we're just sending something to a port. */
292*19c3b8c2SApple OSS Distributionsstatic void
293*19c3b8c2SApple OSS Distributionsmsg_send_helper(mach_port_t remote_port)
294*19c3b8c2SApple OSS Distributions{
295*19c3b8c2SApple OSS Distributions	int ret;
296*19c3b8c2SApple OSS Distributions        mach_msg_header_t * msg = NULL;
297*19c3b8c2SApple OSS Distributions
298*19c3b8c2SApple OSS Distributions        ret = vm_allocate(mach_task_self(),
299*19c3b8c2SApple OSS Distributions                            (vm_address_t *)&msg,
300*19c3b8c2SApple OSS Distributions                            PAGE_SIZE,
301*19c3b8c2SApple OSS Distributions                            VM_MAKE_TAG(VM_MEMORY_MACH_MSG) | TRUE);
302*19c3b8c2SApple OSS Distributions
303*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "Allocating vm page %p", (void*)msg);
304*19c3b8c2SApple OSS Distributions        msg->msgh_bits = MACH_MSGH_BITS_SET(MACH_MSG_TYPE_COPY_SEND, 0, 0, 0);
305*19c3b8c2SApple OSS Distributions	msg->msgh_size = PAGE_SIZE;
306*19c3b8c2SApple OSS Distributions        msg->msgh_remote_port = remote_port;
307*19c3b8c2SApple OSS Distributions        msg->msgh_local_port = MACH_PORT_NULL;
308*19c3b8c2SApple OSS Distributions        msg->msgh_voucher_port = MACH_PORT_NULL;
309*19c3b8c2SApple OSS Distributions        ret = mach_msg(msg,
310*19c3b8c2SApple OSS Distributions 			MACH_SEND_MSG | MACH_MSG_OPTION_NONE,
311*19c3b8c2SApple OSS Distributions			PAGE_SIZE,
312*19c3b8c2SApple OSS Distributions                        0,
313*19c3b8c2SApple OSS Distributions                        MACH_PORT_NULL,
314*19c3b8c2SApple OSS Distributions                        MACH_MSG_TIMEOUT_NONE,
315*19c3b8c2SApple OSS Distributions                        MACH_PORT_NULL);
316*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "Sending message to port %d", remote_port);
317*19c3b8c2SApple OSS Distributions
318*19c3b8c2SApple OSS Distributions        vm_deallocate(mach_task_self(), (vm_address_t)msg, PAGE_SIZE);
319*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "Deallocating vm page %p", (void*)msg);
320*19c3b8c2SApple OSS Distributions}
321*19c3b8c2SApple OSS Distributions
322*19c3b8c2SApple OSS Distributionsstatic void
323*19c3b8c2SApple OSS Distributionsmsg_recv_helper(mach_port_t local_port)
324*19c3b8c2SApple OSS Distributions{
325*19c3b8c2SApple OSS Distributions	int ret = 0;
326*19c3b8c2SApple OSS Distributions	mach_msg_size_t size = 2*PAGE_SIZE;
327*19c3b8c2SApple OSS Distributions	mach_msg_header_t * msg = NULL;
328*19c3b8c2SApple OSS Distributions        ret = vm_allocate(mach_task_self(),
329*19c3b8c2SApple OSS Distributions                          (vm_address_t *)&msg,
330*19c3b8c2SApple OSS Distributions			  size,
331*19c3b8c2SApple OSS Distributions                          VM_MAKE_TAG(VM_MEMORY_MACH_MSG) | TRUE );
332*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "Allocating page %p for message", (void*)msg);
333*19c3b8c2SApple OSS Distributions
334*19c3b8c2SApple OSS Distributions	ret = mach_msg(msg,
335*19c3b8c2SApple OSS Distributions			MACH_RCV_MSG,
336*19c3b8c2SApple OSS Distributions			0,
337*19c3b8c2SApple OSS Distributions			size,
338*19c3b8c2SApple OSS Distributions			local_port,
339*19c3b8c2SApple OSS Distributions			MACH_MSG_TIMEOUT_NONE,
340*19c3b8c2SApple OSS Distributions			MACH_PORT_NULL);
341*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "Received message on port %d", local_port);
342*19c3b8c2SApple OSS Distributions        ret = vm_deallocate(mach_task_self(), (vm_address_t)msg, PAGE_SIZE);
343*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "Deallocating page %p", (void*)msg);
344*19c3b8c2SApple OSS Distributions}
345*19c3b8c2SApple OSS Distributions
346*19c3b8c2SApple OSS Distributions/* perform various actions with a rwlock in kernel memory. note that, since we aren't allowed
347*19c3b8c2SApple OSS Distributions * to go to user space while still holding a rwlock, the lock-acquiring actions in this kernel
348*19c3b8c2SApple OSS Distributions * sysctl will either lock and immediately release the lock, or lock and wait until a semaphore
349*19c3b8c2SApple OSS Distributions * is signalled, then unlock. if called with CHECK_EXISTS, returns whether or not the sysctl
350*19c3b8c2SApple OSS Distributions * exist in the kernel (to determine if we're running with CONFIG_XNUPOST defined). Else,
351*19c3b8c2SApple OSS Distributions * returns 1. */
352*19c3b8c2SApple OSS Distributionsstatic int
353*19c3b8c2SApple OSS Distributionskrwlck_action(int action)
354*19c3b8c2SApple OSS Distributions{
355*19c3b8c2SApple OSS Distributions	int ret = 0;
356*19c3b8c2SApple OSS Distributions	if (action == KRWLCK_SYSCTL_CHECK_EXISTS) {
357*19c3b8c2SApple OSS Distributions		ret = sysctlbyname(krwlck_ctl, NULL, NULL, NULL, 0);
358*19c3b8c2SApple OSS Distributions		return !(ret == -1);
359*19c3b8c2SApple OSS Distributions	}
360*19c3b8c2SApple OSS Distributions
361*19c3b8c2SApple OSS Distributions	char * action_name = "";
362*19c3b8c2SApple OSS Distributions	switch(action) {
363*19c3b8c2SApple OSS Distributions		case KRWLCK_SYSCTL_RACQUIRE_NOWAIT:
364*19c3b8c2SApple OSS Distributions			action_name = "shared lock";
365*19c3b8c2SApple OSS Distributions			break;
366*19c3b8c2SApple OSS Distributions		case KRWLCK_SYSCTL_RACQUIRE_WAIT:
367*19c3b8c2SApple OSS Distributions			action_name = "shared lock (and wait)";
368*19c3b8c2SApple OSS Distributions			break;
369*19c3b8c2SApple OSS Distributions		case KRWLCK_SYSCTL_WACQUIRE_NOWAIT:
370*19c3b8c2SApple OSS Distributions			action_name = "exclusive lock";
371*19c3b8c2SApple OSS Distributions			break;
372*19c3b8c2SApple OSS Distributions		case KRWLCK_SYSCTL_WACQUIRE_WAIT:
373*19c3b8c2SApple OSS Distributions			action_name = "exclusive lock (and wait)";
374*19c3b8c2SApple OSS Distributions			break;
375*19c3b8c2SApple OSS Distributions		case KRWLCK_SYSCTL_SIGNAL:
376*19c3b8c2SApple OSS Distributions			action_name = "signal to holder of";
377*19c3b8c2SApple OSS Distributions			break;
378*19c3b8c2SApple OSS Distributions		case KRWLCK_SYSCTL_TEARDOWN:
379*19c3b8c2SApple OSS Distributions			action_name = "tear down";
380*19c3b8c2SApple OSS Distributions			break;
381*19c3b8c2SApple OSS Distributions		default:
382*19c3b8c2SApple OSS Distributions			T_ASSERT_FAIL("Somebody passed the wrong argument to krwlck_action: %d", action);
383*19c3b8c2SApple OSS Distributions			break;
384*19c3b8c2SApple OSS Distributions	}
385*19c3b8c2SApple OSS Distributions
386*19c3b8c2SApple OSS Distributions	ret = sysctlbyname(krwlck_ctl, NULL, NULL, &action, sizeof(int));
387*19c3b8c2SApple OSS Distributions	T_ASSERT_POSIX_SUCCESS(ret, "sysctl: %s kernel rwlock", action_name);
388*19c3b8c2SApple OSS Distributions	return 1;
389*19c3b8c2SApple OSS Distributions}
390*19c3b8c2SApple OSS Distributions
391*19c3b8c2SApple OSS Distributionsstatic void
392*19c3b8c2SApple OSS Distributionssysctl_krwlck_test_match(uint64_t context)
393*19c3b8c2SApple OSS Distributions{
394*19c3b8c2SApple OSS Distributions	int ret = 0;
395*19c3b8c2SApple OSS Distributions	unsigned long long unslid_krwlck_address = 0;
396*19c3b8c2SApple OSS Distributions	size_t addrsize = sizeof(unslid_krwlck_address);
397*19c3b8c2SApple OSS Distributions
398*19c3b8c2SApple OSS Distributions	ret = sysctlbyname(krwlck_ctl, &unslid_krwlck_address, &addrsize, NULL, 0);
399*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_SUCCESS(ret, "Getting unslid location of kernel rwlock");
400*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(context, unslid_krwlck_address, "Context should match unslid location of rwlock in kernel memory");
401*19c3b8c2SApple OSS Distributions}
402*19c3b8c2SApple OSS Distributions
403*19c3b8c2SApple OSS Distributions/* "Grabbing" threads: only purpose is to grab a sync primitive and hang. */
404*19c3b8c2SApple OSS Distributions
405*19c3b8c2SApple OSS Distributionsstatic void *
406*19c3b8c2SApple OSS Distributionskmutex_grabbing_thread(void * arg)
407*19c3b8c2SApple OSS Distributions{
408*19c3b8c2SApple OSS Distributions	(void)arg;
409*19c3b8c2SApple OSS Distributions	kmutex_action(KMUTEX_SYSCTL_ACQUIRE_NOWAIT);
410*19c3b8c2SApple OSS Distributions	return NULL;
411*19c3b8c2SApple OSS Distributions}
412*19c3b8c2SApple OSS Distributions
413*19c3b8c2SApple OSS Distributionsstatic void *
414*19c3b8c2SApple OSS Distributionskmutex_grab_and_wait_thread(void * arg)
415*19c3b8c2SApple OSS Distributions{
416*19c3b8c2SApple OSS Distributions	(void)arg;
417*19c3b8c2SApple OSS Distributions	kmutex_action(KMUTEX_SYSCTL_ACQUIRE_WAIT);
418*19c3b8c2SApple OSS Distributions	return NULL;
419*19c3b8c2SApple OSS Distributions}
420*19c3b8c2SApple OSS Distributions
421*19c3b8c2SApple OSS Distributionsstatic void *
422*19c3b8c2SApple OSS Distributionssem_grabbing_thread(void * arg)
423*19c3b8c2SApple OSS Distributions{
424*19c3b8c2SApple OSS Distributions	semaphore_t *sem = (semaphore_t *)arg;
425*19c3b8c2SApple OSS Distributions	semaphore_wait(*sem);
426*19c3b8c2SApple OSS Distributions	return NULL;
427*19c3b8c2SApple OSS Distributions}
428*19c3b8c2SApple OSS Distributions
429*19c3b8c2SApple OSS Distributionsstatic void *
430*19c3b8c2SApple OSS Distributionsmsg_blocking_thread(void * arg)
431*19c3b8c2SApple OSS Distributions{
432*19c3b8c2SApple OSS Distributions	(void)arg;
433*19c3b8c2SApple OSS Distributions	msg_recv_helper(test_send_port);
434*19c3b8c2SApple OSS Distributions
435*19c3b8c2SApple OSS Distributions	for (int i = 0; i < SENDS_TO_BLOCK; i++)
436*19c3b8c2SApple OSS Distributions		msg_send_helper(test_recv_port); // will block on test_send_port until message is received
437*19c3b8c2SApple OSS Distributions	return NULL;
438*19c3b8c2SApple OSS Distributions}
439*19c3b8c2SApple OSS Distributions
440*19c3b8c2SApple OSS Distributionsstatic void *
441*19c3b8c2SApple OSS Distributionsulock_blocking_thread(void * arg)
442*19c3b8c2SApple OSS Distributions{
443*19c3b8c2SApple OSS Distributions	os_unfair_lock_t oul = (os_unfair_lock_t)arg;
444*19c3b8c2SApple OSS Distributions	os_unfair_lock_lock(oul);
445*19c3b8c2SApple OSS Distributions	os_unfair_lock_unlock(oul);
446*19c3b8c2SApple OSS Distributions	return NULL;
447*19c3b8c2SApple OSS Distributions}
448*19c3b8c2SApple OSS Distributions
449*19c3b8c2SApple OSS Distributions// acquires a kernel rwlock for writing, and then waits on a kernel semaphore.
450*19c3b8c2SApple OSS Distributionsstatic void *
451*19c3b8c2SApple OSS Distributionskrwlck_write_waiting_thread(void * arg)
452*19c3b8c2SApple OSS Distributions{
453*19c3b8c2SApple OSS Distributions	(void)arg;
454*19c3b8c2SApple OSS Distributions	krwlck_action(KRWLCK_SYSCTL_WACQUIRE_WAIT);
455*19c3b8c2SApple OSS Distributions	return NULL;
456*19c3b8c2SApple OSS Distributions}
457*19c3b8c2SApple OSS Distributions
458*19c3b8c2SApple OSS Distributions// attempts to acquire a kernel rwlock for reading, and doesn't wait on a semaphore afterwards.
459*19c3b8c2SApple OSS Distributionsstatic void *
460*19c3b8c2SApple OSS Distributionskrwlck_read_grabbing_thread(void * arg)
461*19c3b8c2SApple OSS Distributions{
462*19c3b8c2SApple OSS Distributions	(void)arg;
463*19c3b8c2SApple OSS Distributions	krwlck_action(KRWLCK_SYSCTL_RACQUIRE_NOWAIT);
464*19c3b8c2SApple OSS Distributions	return NULL;
465*19c3b8c2SApple OSS Distributions}
466*19c3b8c2SApple OSS Distributions
467*19c3b8c2SApple OSS Distributionsstatic void *
468*19c3b8c2SApple OSS Distributionspthread_mutex_blocking_thread(void * arg)
469*19c3b8c2SApple OSS Distributions{
470*19c3b8c2SApple OSS Distributions	pthread_mutex_t *mtx = (pthread_mutex_t *)arg;
471*19c3b8c2SApple OSS Distributions	pthread_mutex_lock(mtx);
472*19c3b8c2SApple OSS Distributions	pthread_mutex_unlock(mtx);
473*19c3b8c2SApple OSS Distributions	return NULL;
474*19c3b8c2SApple OSS Distributions}
475*19c3b8c2SApple OSS Distributions
476*19c3b8c2SApple OSS Distributionsstatic void *
477*19c3b8c2SApple OSS Distributionspthread_rwlck_blocking_thread(void * arg)
478*19c3b8c2SApple OSS Distributions{
479*19c3b8c2SApple OSS Distributions	pthread_rwlock_t *rwlck = (pthread_rwlock_t *)arg;
480*19c3b8c2SApple OSS Distributions	pthread_rwlock_rdlock(rwlck);
481*19c3b8c2SApple OSS Distributions	pthread_rwlock_unlock(rwlck);
482*19c3b8c2SApple OSS Distributions	return NULL;
483*19c3b8c2SApple OSS Distributions}
484*19c3b8c2SApple OSS Distributions
485*19c3b8c2SApple OSS Distributionsstatic void *
486*19c3b8c2SApple OSS Distributionspthread_cond_blocking_thread(void * arg)
487*19c3b8c2SApple OSS Distributions{
488*19c3b8c2SApple OSS Distributions	pthread_mutex_t mtx  = PTHREAD_MUTEX_INITIALIZER;
489*19c3b8c2SApple OSS Distributions	pthread_cond_t *cond = (pthread_cond_t *)arg;
490*19c3b8c2SApple OSS Distributions	pthread_cond_wait(cond, &mtx);
491*19c3b8c2SApple OSS Distributions	pthread_mutex_unlock(&mtx);
492*19c3b8c2SApple OSS Distributions	return NULL;
493*19c3b8c2SApple OSS Distributions}
494*19c3b8c2SApple OSS Distributions
495*19c3b8c2SApple OSS Distributionsstatic void *
496*19c3b8c2SApple OSS Distributionswaitpid_blocking_thread(void * arg)
497*19c3b8c2SApple OSS Distributions{
498*19c3b8c2SApple OSS Distributions	pid_t pid = (pid_t)arg;
499*19c3b8c2SApple OSS Distributions
500*19c3b8c2SApple OSS Distributions	int ret = waitpid(pid, NULL, 0);
501*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_SUCCESS(ret, "Reaping child.");
502*19c3b8c2SApple OSS Distributions	return NULL;
503*19c3b8c2SApple OSS Distributions}
504*19c3b8c2SApple OSS Distributions
505*19c3b8c2SApple OSS Distributions/*
506*19c3b8c2SApple OSS Distributions * Uses a debug sysctl to initialize a kernel mutex.
507*19c3b8c2SApple OSS Distributions *
508*19c3b8c2SApple OSS Distributions * The 'waiting' thread grabs this kernel mutex, and immediately waits on a kernel semaphore.
509*19c3b8c2SApple OSS Distributions * The 'grabbing' thread just attempts to lock the kernel mutex.
510*19c3b8c2SApple OSS Distributions * When the semaphore is signalled, the 'waiting' thread will unlock the kernel mutex,
511*19c3b8c2SApple OSS Distributions * giving the opportunity for the 'grabbing' thread to lock it and then immediately unlock it.
512*19c3b8c2SApple OSS Distributions * This allows us to create a situation in the kernel where we know a thread to be blocked
513*19c3b8c2SApple OSS Distributions * on a kernel mutex.
514*19c3b8c2SApple OSS Distributions */
515*19c3b8c2SApple OSS Distributionsstatic void
516*19c3b8c2SApple OSS Distributionstest_kmutex_blocking(void)
517*19c3b8c2SApple OSS Distributions{
518*19c3b8c2SApple OSS Distributions	int ret = 0;
519*19c3b8c2SApple OSS Distributions	int len = 2;
520*19c3b8c2SApple OSS Distributions	struct stackshot_thread_waitinfo waitinfo[2] = { { 0 }, { 0 } };
521*19c3b8c2SApple OSS Distributions	uint64_t thread_id = 0;
522*19c3b8c2SApple OSS Distributions	pthread_t grabbing, waiting;
523*19c3b8c2SApple OSS Distributions
524*19c3b8c2SApple OSS Distributions	T_LOG("Starting %s", __FUNCTION__);
525*19c3b8c2SApple OSS Distributions	ret = pthread_create(&waiting, NULL, kmutex_grab_and_wait_thread, NULL); // thread will block until we signal it
526*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Spawning grab and wait thread");
527*19c3b8c2SApple OSS Distributions	sleep(1); // give time for thread to block
528*19c3b8c2SApple OSS Distributions	ret = pthread_create(&grabbing, NULL, kmutex_grabbing_thread, NULL); // thread should immediately block
529*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Spawning waiting thread");
530*19c3b8c2SApple OSS Distributions	sleep(3); // give (lots of) time for thread to give up spinning on lock
531*19c3b8c2SApple OSS Distributions
532*19c3b8c2SApple OSS Distributions	void * stackshot = take_stackshot(STACKSHOT_THREAD_WAITINFO, 0);
533*19c3b8c2SApple OSS Distributions
534*19c3b8c2SApple OSS Distributions	ret = pthread_threadid_np(waiting, &thread_id); // this is the thread that currently holds the kernel mutex
535*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Getting integer value of thread id");
536*19c3b8c2SApple OSS Distributions
537*19c3b8c2SApple OSS Distributions	check_python(stackshot, __func__, "thread \\d+: semaphore port \\w+ with unknown owner");
538*19c3b8c2SApple OSS Distributions
539*19c3b8c2SApple OSS Distributions	find_blocking_info(stackshot, (struct stackshot_thread_waitinfo *)&waitinfo, &len);
540*19c3b8c2SApple OSS Distributions
541*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(len, 2, "There should only be two blocking threads");
542*19c3b8c2SApple OSS Distributions	for (int i = 0; i < len; i++) {
543*19c3b8c2SApple OSS Distributions		struct stackshot_thread_waitinfo *curr = &waitinfo[i];
544*19c3b8c2SApple OSS Distributions		if (curr->wait_type == kThreadWaitSemaphore)
545*19c3b8c2SApple OSS Distributions			continue;
546*19c3b8c2SApple OSS Distributions		T_EXPECT_EQ(curr->wait_type, kThreadWaitKernelMutex, "Wait type should match expected KernelMutex value");
547*19c3b8c2SApple OSS Distributions		T_EXPECT_EQ(curr->owner, thread_id, "Thread ID of blocking thread should match 'owner' field in stackshot");
548*19c3b8c2SApple OSS Distributions		sysctl_kmutex_test_match(curr->context);
549*19c3b8c2SApple OSS Distributions
550*19c3b8c2SApple OSS Distributions		check_python(stackshot, __func__, "thread \\d+: kernel mutex %llx owned by thread %lld", curr->context, thread_id);
551*19c3b8c2SApple OSS Distributions	}
552*19c3b8c2SApple OSS Distributions
553*19c3b8c2SApple OSS Distributions	kmutex_action(KMUTEX_SYSCTL_SIGNAL); // waiting thread should now unblock.
554*19c3b8c2SApple OSS Distributions	ret = pthread_join(waiting, NULL);
555*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Joining on waiting thread");
556*19c3b8c2SApple OSS Distributions	ret = pthread_join(grabbing, NULL);
557*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Joining on grabber thread");
558*19c3b8c2SApple OSS Distributions	kmutex_action(KMUTEX_SYSCTL_TEARDOWN);
559*19c3b8c2SApple OSS Distributions	stackshot_config_dealloc(stackshot);
560*19c3b8c2SApple OSS Distributions}
561*19c3b8c2SApple OSS Distributions
562*19c3b8c2SApple OSS Distributions/* Initialize a userspace semaphore, and spawn a thread to block on it. */
563*19c3b8c2SApple OSS Distributionsstatic void
564*19c3b8c2SApple OSS Distributionstest_semaphore_blocking(void)
565*19c3b8c2SApple OSS Distributions{
566*19c3b8c2SApple OSS Distributions	int ret = 0;
567*19c3b8c2SApple OSS Distributions	semaphore_t sem;
568*19c3b8c2SApple OSS Distributions	struct stackshot_thread_waitinfo waitinfo = { 0 };
569*19c3b8c2SApple OSS Distributions	int len = 1;
570*19c3b8c2SApple OSS Distributions	uint64_t pid = 0;
571*19c3b8c2SApple OSS Distributions
572*19c3b8c2SApple OSS Distributions	T_LOG("Starting %s", __FUNCTION__);
573*19c3b8c2SApple OSS Distributions	ret = semaphore_create(mach_task_self(), &sem, SYNC_POLICY_FIFO, 0);
574*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "Creating semaphore");
575*19c3b8c2SApple OSS Distributions	pthread_t tid;
576*19c3b8c2SApple OSS Distributions	ret = pthread_create(&tid, NULL, sem_grabbing_thread, (void*)&sem); // thread should immediately block
577*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Creating semaphore grabbing thread");
578*19c3b8c2SApple OSS Distributions
579*19c3b8c2SApple OSS Distributions	sleep(1); // give time for thread to block
580*19c3b8c2SApple OSS Distributions
581*19c3b8c2SApple OSS Distributions	void * stackshot = take_stackshot(STACKSHOT_THREAD_WAITINFO, 0);
582*19c3b8c2SApple OSS Distributions	find_blocking_info(stackshot, (struct stackshot_thread_waitinfo *)&waitinfo, &len);
583*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(len, 1, "Only one blocking thread should exist");
584*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(waitinfo.wait_type, kThreadWaitSemaphore, "Wait type should match expected Semaphore value");
585*19c3b8c2SApple OSS Distributions
586*19c3b8c2SApple OSS Distributions	pid = (uint64_t)getpid();
587*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(waitinfo.owner, pid, "Owner value should match process ID");
588*19c3b8c2SApple OSS Distributions
589*19c3b8c2SApple OSS Distributions	check_python(stackshot, __func__, "thread \\d+: semaphore port \\w+ owned by pid %d", (int)pid);
590*19c3b8c2SApple OSS Distributions
591*19c3b8c2SApple OSS Distributions	ret = semaphore_signal(sem);
592*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "Signalling semaphore");
593*19c3b8c2SApple OSS Distributions	ret = pthread_join(tid, NULL);
594*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Joining on grabber thread");
595*19c3b8c2SApple OSS Distributions	ret = semaphore_destroy(mach_task_self(), sem);
596*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "Destroying semaphore");
597*19c3b8c2SApple OSS Distributions	stackshot_config_dealloc(stackshot);
598*19c3b8c2SApple OSS Distributions}
599*19c3b8c2SApple OSS Distributions
600*19c3b8c2SApple OSS Distributions/* Spawn a process to send a message to, and block while both sending and receiving in different contexts. */
601*19c3b8c2SApple OSS Distributionsstatic void
602*19c3b8c2SApple OSS Distributionstest_mach_msg_blocking(void)
603*19c3b8c2SApple OSS Distributions{
604*19c3b8c2SApple OSS Distributions	int ret = 0;
605*19c3b8c2SApple OSS Distributions	pthread_t tid;
606*19c3b8c2SApple OSS Distributions	void *stackshot = NULL;
607*19c3b8c2SApple OSS Distributions	struct stackshot_thread_waitinfo waitinfo = { 0 };
608*19c3b8c2SApple OSS Distributions	int len = 1;
609*19c3b8c2SApple OSS Distributions
610*19c3b8c2SApple OSS Distributions	T_LOG("Starting %s", __FUNCTION__);
611*19c3b8c2SApple OSS Distributions	ret = mach_port_allocate(mach_task_self(), MACH_PORT_RIGHT_RECEIVE, &test_send_port);
612*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "Allocating send port");
613*19c3b8c2SApple OSS Distributions	ret = mach_port_allocate(mach_task_self(), MACH_PORT_RIGHT_RECEIVE, &test_recv_port);
614*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "Allocating recv port");
615*19c3b8c2SApple OSS Distributions	ret = mach_port_insert_right(mach_task_self(), test_send_port, test_send_port, MACH_MSG_TYPE_MAKE_SEND);
616*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "Getting send right to send port");
617*19c3b8c2SApple OSS Distributions	ret = mach_port_insert_right(mach_task_self(), test_recv_port, test_recv_port, MACH_MSG_TYPE_MAKE_SEND);
618*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "Getting send right to recv port");
619*19c3b8c2SApple OSS Distributions
620*19c3b8c2SApple OSS Distributions	ret = pthread_create(&tid, NULL, msg_blocking_thread, (void*)&test_send_port); // thread should block on test_recv_port soon
621*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Creating message blocking thread");
622*19c3b8c2SApple OSS Distributions
623*19c3b8c2SApple OSS Distributions	sleep(1); // give time for thread to block
624*19c3b8c2SApple OSS Distributions	stackshot = take_stackshot(STACKSHOT_THREAD_WAITINFO, 0);
625*19c3b8c2SApple OSS Distributions	find_blocking_info(stackshot, (struct stackshot_thread_waitinfo *)&waitinfo, &len);
626*19c3b8c2SApple OSS Distributions
627*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(len, 1, "Only one blocking thread should exist");
628*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(waitinfo.wait_type, kThreadWaitPortReceive, "Wait type should match expected PortReceive value");
629*19c3b8c2SApple OSS Distributions
630*19c3b8c2SApple OSS Distributions	check_python(stackshot, __func__, "thread \\d+: mach_msg receive on port \\w+ name %llx", (long long)test_send_port);
631*19c3b8c2SApple OSS Distributions
632*19c3b8c2SApple OSS Distributions	stackshot_config_dealloc(stackshot);
633*19c3b8c2SApple OSS Distributions
634*19c3b8c2SApple OSS Distributions	msg_send_helper(test_send_port); // ping! msg_blocking_thread will now try to test_send_port us stuff, and block until we receive.
635*19c3b8c2SApple OSS Distributions
636*19c3b8c2SApple OSS Distributions	sleep(1); // give time for thread to block
637*19c3b8c2SApple OSS Distributions	stackshot = take_stackshot(STACKSHOT_THREAD_WAITINFO, 0);
638*19c3b8c2SApple OSS Distributions	find_blocking_info(stackshot, (struct stackshot_thread_waitinfo *)&waitinfo, &len);
639*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(len, 1, "Only one blocking thread should exist");
640*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(waitinfo.wait_type, kThreadWaitPortSend, "Wait type should match expected PortSend value");
641*19c3b8c2SApple OSS Distributions
642*19c3b8c2SApple OSS Distributions	check_python(stackshot, __func__, "thread \\d+: mach_msg send on port \\w+ owned by pid %d", (int)getpid());
643*19c3b8c2SApple OSS Distributions
644*19c3b8c2SApple OSS Distributions	stackshot_config_dealloc(stackshot);
645*19c3b8c2SApple OSS Distributions
646*19c3b8c2SApple OSS Distributions	msg_recv_helper(test_recv_port); // thread should block until we receive one of its messages
647*19c3b8c2SApple OSS Distributions	ret = pthread_join(tid, NULL);
648*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Joining on blocking thread");
649*19c3b8c2SApple OSS Distributions}
650*19c3b8c2SApple OSS Distributions
651*19c3b8c2SApple OSS Distributionsstatic void
652*19c3b8c2SApple OSS Distributionstest_ulock_blocking(void)
653*19c3b8c2SApple OSS Distributions{
654*19c3b8c2SApple OSS Distributions	int ret = 0;
655*19c3b8c2SApple OSS Distributions	void *stackshot = NULL;
656*19c3b8c2SApple OSS Distributions	uint64_t thread_id = 0;
657*19c3b8c2SApple OSS Distributions	pthread_t tid;
658*19c3b8c2SApple OSS Distributions	struct os_unfair_lock_s ouls = OS_UNFAIR_LOCK_INIT;
659*19c3b8c2SApple OSS Distributions	os_unfair_lock_t oul = &ouls;
660*19c3b8c2SApple OSS Distributions	struct stackshot_thread_waitinfo waitinfo = { 0 };
661*19c3b8c2SApple OSS Distributions	int len = 1;
662*19c3b8c2SApple OSS Distributions
663*19c3b8c2SApple OSS Distributions	T_LOG("Starting %s", __FUNCTION__);
664*19c3b8c2SApple OSS Distributions	os_unfair_lock_lock(oul);
665*19c3b8c2SApple OSS Distributions	ret = pthread_create(&tid, NULL, ulock_blocking_thread, (void*)oul);
666*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Creating ulock blocking thread");
667*19c3b8c2SApple OSS Distributions	sleep(3); // give time for thread to spawn, fall back to kernel for contention, and block
668*19c3b8c2SApple OSS Distributions
669*19c3b8c2SApple OSS Distributions	stackshot = take_stackshot(STACKSHOT_THREAD_WAITINFO, 0);
670*19c3b8c2SApple OSS Distributions
671*19c3b8c2SApple OSS Distributions	find_blocking_info(stackshot, (struct stackshot_thread_waitinfo *)&waitinfo, &len);
672*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(len, 1, "Only one blocking thread should exist");
673*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(waitinfo.wait_type, kThreadWaitUserLock, "Wait type should match expected UserLock value");
674*19c3b8c2SApple OSS Distributions
675*19c3b8c2SApple OSS Distributions	os_unfair_lock_unlock(oul);
676*19c3b8c2SApple OSS Distributions	ret = pthread_join(tid, NULL); // wait for thread to unblock and exit
677*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Joining on blocking thread");
678*19c3b8c2SApple OSS Distributions
679*19c3b8c2SApple OSS Distributions	ret = pthread_threadid_np(NULL, &thread_id); // this thread is the "owner" of the ulock
680*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Getting integer value of thread id");
681*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(waitinfo.owner, thread_id, "Thread ID of blocking thread should match 'owner' field in stackshot");
682*19c3b8c2SApple OSS Distributions
683*19c3b8c2SApple OSS Distributions	check_python(stackshot, __func__, "thread \\d+: unfair lock \\w+ owned by thread %lld", thread_id);
684*19c3b8c2SApple OSS Distributions	stackshot_config_dealloc(stackshot);
685*19c3b8c2SApple OSS Distributions	return;
686*19c3b8c2SApple OSS Distributions}
687*19c3b8c2SApple OSS Distributions
688*19c3b8c2SApple OSS Distributionsstatic void
689*19c3b8c2SApple OSS Distributionstest_krwlock_blocking(void)
690*19c3b8c2SApple OSS Distributions{
691*19c3b8c2SApple OSS Distributions	int ret = 0;
692*19c3b8c2SApple OSS Distributions	void *stackshot = NULL;
693*19c3b8c2SApple OSS Distributions	uint64_t thread_id = 0;
694*19c3b8c2SApple OSS Distributions	pthread_t waiting, grabbing;
695*19c3b8c2SApple OSS Distributions	int len = 2;
696*19c3b8c2SApple OSS Distributions	struct stackshot_thread_waitinfo waitinfo[2] = { { 0 }, { 0 } };
697*19c3b8c2SApple OSS Distributions
698*19c3b8c2SApple OSS Distributions	T_LOG("Starting %s", __FUNCTION__);
699*19c3b8c2SApple OSS Distributions	// this thread should spawn, acquire a kernel rwlock for write, and then wait on a semaphore
700*19c3b8c2SApple OSS Distributions	ret = pthread_create(&waiting, NULL, krwlck_write_waiting_thread, NULL);
701*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Creating krwlck write waiting thread");
702*19c3b8c2SApple OSS Distributions	sleep(1); // give time for thread to block
703*19c3b8c2SApple OSS Distributions	// this thread should spawn and try to acquire the same kernel rwlock for read, but block
704*19c3b8c2SApple OSS Distributions	ret = pthread_create(&grabbing, NULL, krwlck_read_grabbing_thread, NULL);
705*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Creating krwlck read grabbing thread");
706*19c3b8c2SApple OSS Distributions	sleep(1); // give time for thread to block
707*19c3b8c2SApple OSS Distributions
708*19c3b8c2SApple OSS Distributions	stackshot = take_stackshot(STACKSHOT_THREAD_WAITINFO, 0);
709*19c3b8c2SApple OSS Distributions
710*19c3b8c2SApple OSS Distributions	check_python(stackshot, __func__, "thread \\d+: semaphore port \\w+ with unknown owner");
711*19c3b8c2SApple OSS Distributions
712*19c3b8c2SApple OSS Distributions	find_blocking_info(stackshot, (struct stackshot_thread_waitinfo *)&waitinfo, &len);
713*19c3b8c2SApple OSS Distributions
714*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(len, 2, "There should only be two blocking threads");
715*19c3b8c2SApple OSS Distributions	for (int i = 0; i < len; i++) {
716*19c3b8c2SApple OSS Distributions		struct stackshot_thread_waitinfo *curr = &waitinfo[i];
717*19c3b8c2SApple OSS Distributions		if (curr->wait_type == kThreadWaitSemaphore)
718*19c3b8c2SApple OSS Distributions			continue;
719*19c3b8c2SApple OSS Distributions		T_EXPECT_EQ(curr->wait_type, kThreadWaitKernelRWLockRead, "Wait type should match expected KRWLockRead value");
720*19c3b8c2SApple OSS Distributions		sysctl_krwlck_test_match(curr->context);
721*19c3b8c2SApple OSS Distributions
722*19c3b8c2SApple OSS Distributions		check_python(stackshot, __func__, "thread \\d+: krwlock %llx for reading", curr->context);
723*19c3b8c2SApple OSS Distributions
724*19c3b8c2SApple OSS Distributions#if KRWLCK_STORES_EXCL_OWNER /* A future planned enhancement */
725*19c3b8c2SApple OSS Distributions		ret = pthread_threadid_np(waiting, &thread_id); // this is the thread that currently holds the kernel mutex
726*19c3b8c2SApple OSS Distributions		T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Getting integer value of thread id");
727*19c3b8c2SApple OSS Distributions		T_EXPECT_EQ(curr->owner, thread_id, "Thread ID of blocking thread should match 'owner' field in stackshot");
728*19c3b8c2SApple OSS Distributions#else
729*19c3b8c2SApple OSS Distributions		(void)thread_id; // suppress compiler warning about unused variable
730*19c3b8c2SApple OSS Distributions#endif /* RWLCK_STORES_EXCL_OWNER */
731*19c3b8c2SApple OSS Distributions	}
732*19c3b8c2SApple OSS Distributions
733*19c3b8c2SApple OSS Distributions	krwlck_action(KRWLCK_SYSCTL_SIGNAL); // pthread should now unblock & finish
734*19c3b8c2SApple OSS Distributions	ret = pthread_join(waiting, NULL);
735*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Joining on waiting thread");
736*19c3b8c2SApple OSS Distributions	ret = pthread_join(grabbing, NULL);
737*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Joining on grabbing thread");
738*19c3b8c2SApple OSS Distributions	krwlck_action(KRWLCK_SYSCTL_TEARDOWN);
739*19c3b8c2SApple OSS Distributions	stackshot_config_dealloc(stackshot);
740*19c3b8c2SApple OSS Distributions}
741*19c3b8c2SApple OSS Distributions
742*19c3b8c2SApple OSS Distributions
743*19c3b8c2SApple OSS Distributionsstatic void
744*19c3b8c2SApple OSS Distributionstest_pthread_mutex_blocking(void)
745*19c3b8c2SApple OSS Distributions{
746*19c3b8c2SApple OSS Distributions	int ret = 0;
747*19c3b8c2SApple OSS Distributions	void *stackshot = NULL;
748*19c3b8c2SApple OSS Distributions	uint64_t thread_id = 0;
749*19c3b8c2SApple OSS Distributions	pthread_t tid;
750*19c3b8c2SApple OSS Distributions	struct stackshot_thread_waitinfo waitinfo = { 0 };
751*19c3b8c2SApple OSS Distributions	pthread_mutex_t mtx = PTHREAD_MUTEX_INITIALIZER;
752*19c3b8c2SApple OSS Distributions	int len = 1;
753*19c3b8c2SApple OSS Distributions
754*19c3b8c2SApple OSS Distributions	T_LOG("Starting %s", __FUNCTION__);
755*19c3b8c2SApple OSS Distributions
756*19c3b8c2SApple OSS Distributions	ret = pthread_threadid_np(NULL, &thread_id); // this thread is the "owner" of the mutex
757*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Getting integer value of thread id");
758*19c3b8c2SApple OSS Distributions
759*19c3b8c2SApple OSS Distributions	pthread_mutex_lock(&mtx);
760*19c3b8c2SApple OSS Distributions	ret = pthread_create(&tid, NULL, pthread_mutex_blocking_thread, (void*)&mtx);
761*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Creating pthread mutex blocking thread");
762*19c3b8c2SApple OSS Distributions	sleep(2); // give time for thread to block
763*19c3b8c2SApple OSS Distributions
764*19c3b8c2SApple OSS Distributions	stackshot = take_stackshot(STACKSHOT_THREAD_WAITINFO, 0);
765*19c3b8c2SApple OSS Distributions
766*19c3b8c2SApple OSS Distributions	check_python(stackshot, __func__, "thread \\d+: pthread mutex %llx owned by thread %lld", &mtx, thread_id);
767*19c3b8c2SApple OSS Distributions
768*19c3b8c2SApple OSS Distributions	find_blocking_info(stackshot, (struct stackshot_thread_waitinfo *)&waitinfo, &len);
769*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(len, 1, "Only one blocking thread should exist");
770*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(waitinfo.wait_type, kThreadWaitPThreadMutex,
771*19c3b8c2SApple OSS Distributions			"Wait type should match expected PThreadMutex value");
772*19c3b8c2SApple OSS Distributions	stackshot_config_dealloc(stackshot);
773*19c3b8c2SApple OSS Distributions
774*19c3b8c2SApple OSS Distributions	pthread_mutex_unlock(&mtx);
775*19c3b8c2SApple OSS Distributions	ret = pthread_join(tid, NULL); // wait for thread to unblock and exit
776*19c3b8c2SApple OSS Distributions
777*19c3b8c2SApple OSS Distributions
778*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(waitinfo.owner, thread_id,
779*19c3b8c2SApple OSS Distributions			"Thread ID of blocking thread should match 'owner' field in stackshot");
780*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(waitinfo.context, (uint64_t)&mtx,
781*19c3b8c2SApple OSS Distributions			"Userspace address of mutex should match 'context' field in stackshot");
782*19c3b8c2SApple OSS Distributions}
783*19c3b8c2SApple OSS Distributions
784*19c3b8c2SApple OSS Distributionsstatic void
785*19c3b8c2SApple OSS Distributionstest_pthread_rwlck_blocking(void)
786*19c3b8c2SApple OSS Distributions{
787*19c3b8c2SApple OSS Distributions	int ret = 0;
788*19c3b8c2SApple OSS Distributions	void *stackshot = NULL;
789*19c3b8c2SApple OSS Distributions	pthread_t tid;
790*19c3b8c2SApple OSS Distributions	struct stackshot_thread_waitinfo waitinfo = { 0 };
791*19c3b8c2SApple OSS Distributions	pthread_rwlock_t rwlck = PTHREAD_RWLOCK_INITIALIZER;
792*19c3b8c2SApple OSS Distributions	int len = 1;
793*19c3b8c2SApple OSS Distributions
794*19c3b8c2SApple OSS Distributions	T_LOG("Starting %s", __FUNCTION__);
795*19c3b8c2SApple OSS Distributions	pthread_rwlock_wrlock(&rwlck);
796*19c3b8c2SApple OSS Distributions	ret = pthread_create(&tid, NULL, pthread_rwlck_blocking_thread, (void*)&rwlck);
797*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Creating pthread rwlck blocking thread");
798*19c3b8c2SApple OSS Distributions	sleep(2);
799*19c3b8c2SApple OSS Distributions
800*19c3b8c2SApple OSS Distributions	stackshot = take_stackshot(STACKSHOT_THREAD_WAITINFO, 0);
801*19c3b8c2SApple OSS Distributions
802*19c3b8c2SApple OSS Distributions	check_python(stackshot, __func__, "thread \\d+: pthread rwlock %llx for reading", (long long)&rwlck);
803*19c3b8c2SApple OSS Distributions
804*19c3b8c2SApple OSS Distributions	find_blocking_info(stackshot, (struct stackshot_thread_waitinfo *)&waitinfo, &len);
805*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(len, 1, "Only one blocking thread should exist");
806*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(waitinfo.wait_type, kThreadWaitPThreadRWLockRead,
807*19c3b8c2SApple OSS Distributions			"Wait type should match expected PThreadRWLockRead value");
808*19c3b8c2SApple OSS Distributions	stackshot_config_dealloc(stackshot);
809*19c3b8c2SApple OSS Distributions
810*19c3b8c2SApple OSS Distributions	pthread_rwlock_unlock(&rwlck);
811*19c3b8c2SApple OSS Distributions	ret = pthread_join(tid, NULL); // wait for thread to unblock and exit
812*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(waitinfo.context, (uint64_t)&rwlck,
813*19c3b8c2SApple OSS Distributions			"Userspace address of rwlck should match 'context' field in stackshot");
814*19c3b8c2SApple OSS Distributions}
815*19c3b8c2SApple OSS Distributions
816*19c3b8c2SApple OSS Distributions
817*19c3b8c2SApple OSS Distributions
818*19c3b8c2SApple OSS Distributionsstatic void
819*19c3b8c2SApple OSS Distributionstest_pthread_cond_blocking(void)
820*19c3b8c2SApple OSS Distributions{
821*19c3b8c2SApple OSS Distributions	int ret = 0;
822*19c3b8c2SApple OSS Distributions	void *stackshot = NULL;
823*19c3b8c2SApple OSS Distributions	pthread_t tid;
824*19c3b8c2SApple OSS Distributions	pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
825*19c3b8c2SApple OSS Distributions	struct stackshot_thread_waitinfo waitinfo = { 0 };
826*19c3b8c2SApple OSS Distributions	int len = 1;
827*19c3b8c2SApple OSS Distributions
828*19c3b8c2SApple OSS Distributions	T_LOG("Starting %s", __FUNCTION__);
829*19c3b8c2SApple OSS Distributions	ret = pthread_create(&tid, NULL, pthread_cond_blocking_thread, (void*)&cond);
830*19c3b8c2SApple OSS Distributions	T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Creating pthread condvar blocking thread");
831*19c3b8c2SApple OSS Distributions	sleep(2);
832*19c3b8c2SApple OSS Distributions
833*19c3b8c2SApple OSS Distributions	stackshot = take_stackshot(STACKSHOT_THREAD_WAITINFO, 0);
834*19c3b8c2SApple OSS Distributions
835*19c3b8c2SApple OSS Distributions	check_python(stackshot, __func__, "thread \\d+: pthread condvar %llx", (long long)&cond);
836*19c3b8c2SApple OSS Distributions
837*19c3b8c2SApple OSS Distributions	find_blocking_info(stackshot, (struct stackshot_thread_waitinfo *)&waitinfo, &len);
838*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(len, 1, "Only one blocking thread should exist");
839*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(waitinfo.wait_type, kThreadWaitPThreadCondVar,
840*19c3b8c2SApple OSS Distributions			"Wait type should match expected PThreadCondVar value");
841*19c3b8c2SApple OSS Distributions	stackshot_config_dealloc(stackshot);
842*19c3b8c2SApple OSS Distributions
843*19c3b8c2SApple OSS Distributions	pthread_cond_signal(&cond);
844*19c3b8c2SApple OSS Distributions	ret = pthread_join(tid, NULL); // wait for thread to unblock and exit
845*19c3b8c2SApple OSS Distributions	T_EXPECT_EQ(waitinfo.context, (uint64_t)&cond,
846*19c3b8c2SApple OSS Distributions			"Userspace address of condvar should match 'context' field in stackshot");
847*19c3b8c2SApple OSS Distributions	pthread_cond_destroy(&cond);
848*19c3b8c2SApple OSS Distributions}
849*19c3b8c2SApple OSS Distributions
850*19c3b8c2SApple OSS Distributionsstatic void
851*19c3b8c2SApple OSS Distributionstest_waitpid_blocking(void)
852*19c3b8c2SApple OSS Distributions{
853*19c3b8c2SApple OSS Distributions	int ret = 0;
854*19c3b8c2SApple OSS Distributions	pid_t pid = 0;
855*19c3b8c2SApple OSS Distributions	void *stackshot = NULL;
856*19c3b8c2SApple OSS Distributions	struct stackshot_thread_waitinfo waitinfo = { 0 };
857*19c3b8c2SApple OSS Distributions	int len = 1;
858*19c3b8c2SApple OSS Distributions	pthread_t tid;
859*19c3b8c2SApple OSS Distributions
860*19c3b8c2SApple OSS Distributions	T_LOG("Starting %s", __FUNCTION__);
861*19c3b8c2SApple OSS Distributions	if ((pid = fork()) == 0) {
862*19c3b8c2SApple OSS Distributions		pause();
863*19c3b8c2SApple OSS Distributions	} else {
864*19c3b8c2SApple OSS Distributions		T_ASSERT_POSIX_SUCCESS(ret, "Running in parent. Child pid is %d", pid);
865*19c3b8c2SApple OSS Distributions
866*19c3b8c2SApple OSS Distributions		sleep(1); // allow enough time for child to run & sleep
867*19c3b8c2SApple OSS Distributions		ret = pthread_create(&tid, NULL, waitpid_blocking_thread, (void*)pid);
868*19c3b8c2SApple OSS Distributions		T_QUIET; T_ASSERT_POSIX_ZERO(ret, "Creating waitpid blocking thread");
869*19c3b8c2SApple OSS Distributions
870*19c3b8c2SApple OSS Distributions		sleep(1); // allow enough time for reaping thread to waitpid & block
871*19c3b8c2SApple OSS Distributions		stackshot = take_stackshot(STACKSHOT_THREAD_WAITINFO, 0);
872*19c3b8c2SApple OSS Distributions		find_blocking_info(stackshot, (struct stackshot_thread_waitinfo *)&waitinfo, &len);
873*19c3b8c2SApple OSS Distributions		T_EXPECT_EQ(len, 1, "Only one blocking thread should exist");
874*19c3b8c2SApple OSS Distributions		T_EXPECT_EQ(waitinfo.wait_type, kThreadWaitOnProcess,
875*19c3b8c2SApple OSS Distributions				"Wait type should match expected WaitOnProcess value");
876*19c3b8c2SApple OSS Distributions
877*19c3b8c2SApple OSS Distributions		check_python(stackshot, __func__, "thread \\d+: waitpid, for pid %d", (int)pid);
878*19c3b8c2SApple OSS Distributions
879*19c3b8c2SApple OSS Distributions		stackshot_config_dealloc(stackshot);
880*19c3b8c2SApple OSS Distributions		T_EXPECT_EQ(waitinfo.owner, pid,
881*19c3b8c2SApple OSS Distributions			"Process ID of blocking process should match 'owner' field in stackshot");
882*19c3b8c2SApple OSS Distributions
883*19c3b8c2SApple OSS Distributions		ret = kill(pid, SIGUSR1); // wake up child so waitpid thread can reap it & exit
884*19c3b8c2SApple OSS Distributions		T_QUIET; T_ASSERT_POSIX_SUCCESS(ret, "Send SIGUSR1 to child process");
885*19c3b8c2SApple OSS Distributions		ret = pthread_join(tid, NULL);
886*19c3b8c2SApple OSS Distributions		T_QUIET; T_ASSERT_POSIX_SUCCESS(ret, "Join on waitpid thread");
887*19c3b8c2SApple OSS Distributions	}
888*19c3b8c2SApple OSS Distributions}
889*19c3b8c2SApple OSS Distributions
890*19c3b8c2SApple OSS Distributions/*
891*19c3b8c2SApple OSS Distributions *
892*19c3b8c2SApple OSS Distributions * Test declarations
893*19c3b8c2SApple OSS Distributions *
894*19c3b8c2SApple OSS Distributions */
895*19c3b8c2SApple OSS Distributions
896*19c3b8c2SApple OSS DistributionsT_DECL(stackshot_block_owner_klocks, "tests stackshot block owner for kernel locks") {
897*19c3b8c2SApple OSS Distributions	/* check to see if kmutex sysctl exists before running kmutex test */
898*19c3b8c2SApple OSS Distributions	if (kmutex_action(KMUTEX_SYSCTL_CHECK_EXISTS))
899*19c3b8c2SApple OSS Distributions		test_kmutex_blocking();
900*19c3b8c2SApple OSS Distributions	/* check to see if krwlck sysctl exists before running krwlck test */
901*19c3b8c2SApple OSS Distributions	if (krwlck_action(KRWLCK_SYSCTL_CHECK_EXISTS))
902*19c3b8c2SApple OSS Distributions		test_krwlock_blocking();
903*19c3b8c2SApple OSS Distributions	test_ulock_blocking();
904*19c3b8c2SApple OSS Distributions}
905*19c3b8c2SApple OSS Distributions
906*19c3b8c2SApple OSS DistributionsT_DECL(stackshot_block_owner_pthread_mutex, "tests stackshot block owner: pthread mutex") {
907*19c3b8c2SApple OSS Distributions	test_pthread_mutex_blocking();
908*19c3b8c2SApple OSS Distributions}
909*19c3b8c2SApple OSS Distributions
910*19c3b8c2SApple OSS DistributionsT_DECL(stackshot_block_owner_pthread_rwlck, "tests stackshot block owner: pthread rw locks") {
911*19c3b8c2SApple OSS Distributions	test_pthread_rwlck_blocking();
912*19c3b8c2SApple OSS Distributions}
913*19c3b8c2SApple OSS Distributions
914*19c3b8c2SApple OSS DistributionsT_DECL(stackshot_block_owner_pthread_condvar, "tests stackshot block owner: pthread condvar") {
915*19c3b8c2SApple OSS Distributions	test_pthread_cond_blocking();
916*19c3b8c2SApple OSS Distributions}
917*19c3b8c2SApple OSS Distributions
918*19c3b8c2SApple OSS DistributionsT_DECL(stackshot_block_owner_semaphore, "tests stackshot block owner: semaphore") {
919*19c3b8c2SApple OSS Distributions	test_semaphore_blocking();
920*19c3b8c2SApple OSS Distributions}
921*19c3b8c2SApple OSS Distributions
922*19c3b8c2SApple OSS DistributionsT_DECL(stackshot_block_owner_mach_msg, "tests stackshot block owner: mach messaging") {
923*19c3b8c2SApple OSS Distributions	test_mach_msg_blocking();
924*19c3b8c2SApple OSS Distributions}
925*19c3b8c2SApple OSS Distributions
926*19c3b8c2SApple OSS DistributionsT_DECL(stackshot_block_owner_waitpid, "tests stackshot block owner: waitpid") {
927*19c3b8c2SApple OSS Distributions	test_waitpid_blocking();
928*19c3b8c2SApple OSS Distributions}
929