xref: /xnu-8020.140.41/tests/mach_port_mod_refs.c (revision 27b03b360a988dfd3dfdf34262bb0042026747cc)
1*27b03b36SApple OSS Distributions #include <darwintest.h>
2*27b03b36SApple OSS Distributions #include <mach/mach.h>
3*27b03b36SApple OSS Distributions #include <stdlib.h>
4*27b03b36SApple OSS Distributions #include <stdio.h>
5*27b03b36SApple OSS Distributions 
6*27b03b36SApple OSS Distributions T_GLOBAL_META(T_META_RUN_CONCURRENTLY(true),
7*27b03b36SApple OSS Distributions     T_META_NAMESPACE("xnu.ipc"),
8*27b03b36SApple OSS Distributions     T_META_RADAR_COMPONENT_NAME("xnu"),
9*27b03b36SApple OSS Distributions     T_META_RADAR_COMPONENT_VERSION("IPC"));
10*27b03b36SApple OSS Distributions 
11*27b03b36SApple OSS Distributions T_DECL(mach_port_mod_refs, "mach_port_mod_refs"){
12*27b03b36SApple OSS Distributions 	mach_port_t port_set;
13*27b03b36SApple OSS Distributions 	mach_port_t port;
14*27b03b36SApple OSS Distributions 	task_exc_guard_behavior_t old, new;
15*27b03b36SApple OSS Distributions 	int ret;
16*27b03b36SApple OSS Distributions 
17*27b03b36SApple OSS Distributions 	ret = mach_port_allocate(mach_task_self(), MACH_PORT_RIGHT_PORT_SET, &port_set);
18*27b03b36SApple OSS Distributions 	T_ASSERT_MACH_SUCCESS(ret, "mach_port_allocate MACH_PORT_RIGHT_PORT_SET");
19*27b03b36SApple OSS Distributions 
20*27b03b36SApple OSS Distributions 	ret = mach_port_allocate(mach_task_self(), MACH_PORT_RIGHT_RECEIVE, &port);
21*27b03b36SApple OSS Distributions 	T_ASSERT_MACH_SUCCESS(ret, "mach_port_allocate MACH_PORT_RIGHT_RECEIVE");
22*27b03b36SApple OSS Distributions 
23*27b03b36SApple OSS Distributions 	/*
24*27b03b36SApple OSS Distributions 	 * Disable [optional] Mach port guard exceptions to avoid fatal crash
25*27b03b36SApple OSS Distributions 	 */
26*27b03b36SApple OSS Distributions 	ret = task_get_exc_guard_behavior(mach_task_self(), &old);
27*27b03b36SApple OSS Distributions 	T_ASSERT_MACH_SUCCESS(ret, "task_get_exc_guard_behavior");
28*27b03b36SApple OSS Distributions 	new = (old & ~TASK_EXC_GUARD_MP_DELIVER);
29*27b03b36SApple OSS Distributions 	ret = task_set_exc_guard_behavior(mach_task_self(), new);
30*27b03b36SApple OSS Distributions 	T_ASSERT_MACH_SUCCESS(ret, "task_set_exc_guard_behavior new");
31*27b03b36SApple OSS Distributions 
32*27b03b36SApple OSS Distributions 	/*
33*27b03b36SApple OSS Distributions 	 * Test all known variants of port rights on each type of port
34*27b03b36SApple OSS Distributions 	 */
35*27b03b36SApple OSS Distributions 
36*27b03b36SApple OSS Distributions 	/* can't subtract a send right if it doesn't exist */
37*27b03b36SApple OSS Distributions 	ret = mach_port_mod_refs(mach_task_self(), port, MACH_PORT_RIGHT_SEND, -1);
38*27b03b36SApple OSS Distributions 	T_ASSERT_EQ(ret, KERN_INVALID_RIGHT, "mach_port_mod_refs SEND: -1 on a RECV right");
39*27b03b36SApple OSS Distributions 
40*27b03b36SApple OSS Distributions 	/* can't subtract a send once right if it doesn't exist */
41*27b03b36SApple OSS Distributions 	ret = mach_port_mod_refs(mach_task_self(), port, MACH_PORT_RIGHT_SEND_ONCE, -1);
42*27b03b36SApple OSS Distributions 	T_ASSERT_EQ(ret, KERN_INVALID_RIGHT, "mach_port_mod_refs SEND_ONCE: -1 on a RECV right");
43*27b03b36SApple OSS Distributions 
44*27b03b36SApple OSS Distributions 	/* can't subtract a PORT SET right if it's not a port set */
45*27b03b36SApple OSS Distributions 	ret = mach_port_mod_refs(mach_task_self(), port, MACH_PORT_RIGHT_PORT_SET, -1);
46*27b03b36SApple OSS Distributions 	T_ASSERT_EQ(ret, KERN_INVALID_RIGHT, "mach_port_mod_refs PORT_SET: -1 on a RECV right");
47*27b03b36SApple OSS Distributions 
48*27b03b36SApple OSS Distributions 	/* can't subtract a dead name right if it doesn't exist */
49*27b03b36SApple OSS Distributions 	ret = mach_port_mod_refs(mach_task_self(), port, MACH_PORT_RIGHT_DEAD_NAME, -1);
50*27b03b36SApple OSS Distributions 	T_ASSERT_EQ(ret, KERN_INVALID_RIGHT, "mach_port_mod_refs DEAD_NAME: -1 on a RECV right");
51*27b03b36SApple OSS Distributions 
52*27b03b36SApple OSS Distributions 	/* can't subtract a LABELH right if it doesn't exist */
53*27b03b36SApple OSS Distributions 	ret = mach_port_mod_refs(mach_task_self(), port, MACH_PORT_RIGHT_LABELH, -1);
54*27b03b36SApple OSS Distributions 	T_ASSERT_EQ(ret, KERN_INVALID_RIGHT, "mach_port_mod_refs LABELH: -1 on a RECV right");
55*27b03b36SApple OSS Distributions 
56*27b03b36SApple OSS Distributions 	/* can't subtract an invalid right-type */
57*27b03b36SApple OSS Distributions 	ret = mach_port_mod_refs(mach_task_self(), port, MACH_PORT_RIGHT_NUMBER, -1);
58*27b03b36SApple OSS Distributions 	T_ASSERT_EQ(ret, KERN_INVALID_VALUE, "mach_port_mod_refs NUMBER: -1 on a RECV right");
59*27b03b36SApple OSS Distributions 
60*27b03b36SApple OSS Distributions 	/* can't subtract an invalid right-type */
61*27b03b36SApple OSS Distributions 	ret = mach_port_mod_refs(mach_task_self(), port, MACH_PORT_RIGHT_NUMBER + 1, -1);
62*27b03b36SApple OSS Distributions 	T_ASSERT_EQ(ret, KERN_INVALID_VALUE, "mach_port_mod_refs NUMBER+1: -1 on a RECV right");
63*27b03b36SApple OSS Distributions 
64*27b03b36SApple OSS Distributions 
65*27b03b36SApple OSS Distributions 	/* can't subtract a send right if it doesn't exist */
66*27b03b36SApple OSS Distributions 	ret = mach_port_mod_refs(mach_task_self(), port_set, MACH_PORT_RIGHT_SEND, -1);
67*27b03b36SApple OSS Distributions 	T_ASSERT_EQ(ret, KERN_INVALID_RIGHT, "mach_port_mod_refs SEND: -1 on a PORT_SET right");
68*27b03b36SApple OSS Distributions 
69*27b03b36SApple OSS Distributions 	/* can't subtract a send once right if it doesn't exist */
70*27b03b36SApple OSS Distributions 	ret = mach_port_mod_refs(mach_task_self(), port_set, MACH_PORT_RIGHT_SEND_ONCE, -1);
71*27b03b36SApple OSS Distributions 	T_ASSERT_EQ(ret, KERN_INVALID_RIGHT, "mach_port_mod_refs SEND_ONCE: -1 on a PORT_SET right");
72*27b03b36SApple OSS Distributions 
73*27b03b36SApple OSS Distributions 	/* can't subtract a receive right if it's a port set */
74*27b03b36SApple OSS Distributions 	ret = mach_port_mod_refs(mach_task_self(), port_set, MACH_PORT_RIGHT_RECEIVE, -1);
75*27b03b36SApple OSS Distributions 	T_ASSERT_EQ(ret, KERN_INVALID_RIGHT, "mach_port_mod_refs RECV: -1 on a PORT_SET right");
76*27b03b36SApple OSS Distributions 
77*27b03b36SApple OSS Distributions 	/* can't subtract a dead name right if it doesn't exist */
78*27b03b36SApple OSS Distributions 	ret = mach_port_mod_refs(mach_task_self(), port_set, MACH_PORT_RIGHT_DEAD_NAME, -1);
79*27b03b36SApple OSS Distributions 	T_ASSERT_EQ(ret, KERN_INVALID_RIGHT, "mach_port_mod_refs DEAD_NAME: -1 on a PORT_SET right");
80*27b03b36SApple OSS Distributions 
81*27b03b36SApple OSS Distributions 	/* can't subtract a LABELH right if it doesn't exist */
82*27b03b36SApple OSS Distributions 	ret = mach_port_mod_refs(mach_task_self(), port_set, MACH_PORT_RIGHT_LABELH, -1);
83*27b03b36SApple OSS Distributions 	T_ASSERT_EQ(ret, KERN_INVALID_RIGHT, "mach_port_mod_refs LABELH: -1 on a PORT_SET right");
84*27b03b36SApple OSS Distributions 
85*27b03b36SApple OSS Distributions 	/* can't subtract an invalid right-type */
86*27b03b36SApple OSS Distributions 	ret = mach_port_mod_refs(mach_task_self(), port_set, MACH_PORT_RIGHT_NUMBER, -1);
87*27b03b36SApple OSS Distributions 	T_ASSERT_EQ(ret, KERN_INVALID_VALUE, "mach_port_mod_refs NUMBER: -1 on a PORT_SET right");
88*27b03b36SApple OSS Distributions 
89*27b03b36SApple OSS Distributions 	/* can't subtract an invalid right-type */
90*27b03b36SApple OSS Distributions 	ret = mach_port_mod_refs(mach_task_self(), port_set, MACH_PORT_RIGHT_NUMBER + 1, -1);
91*27b03b36SApple OSS Distributions 	T_ASSERT_EQ(ret, KERN_INVALID_VALUE, "mach_port_mod_refs NUMBER+1: -1 on a PORT_SET right");
92*27b03b36SApple OSS Distributions 
93*27b03b36SApple OSS Distributions 	/* restore the old guard behavior */
94*27b03b36SApple OSS Distributions 	ret = task_set_exc_guard_behavior(mach_task_self(), old);
95*27b03b36SApple OSS Distributions 	T_ASSERT_MACH_SUCCESS(ret, "task_set_exc_guard_behavior old");
96*27b03b36SApple OSS Distributions 
97*27b03b36SApple OSS Distributions 	/*
98*27b03b36SApple OSS Distributions 	 * deallocate the ports/sets
99*27b03b36SApple OSS Distributions 	 */
100*27b03b36SApple OSS Distributions 	ret = mach_port_mod_refs(mach_task_self(), port_set, MACH_PORT_RIGHT_PORT_SET, -1);
101*27b03b36SApple OSS Distributions 	T_ASSERT_MACH_SUCCESS(ret, "mach_port_mod_refs(PORT_SET, -1)");
102*27b03b36SApple OSS Distributions 
103*27b03b36SApple OSS Distributions 	ret = mach_port_mod_refs(mach_task_self(), port, MACH_PORT_RIGHT_RECEIVE, -1);
104*27b03b36SApple OSS Distributions 	T_ASSERT_MACH_SUCCESS(ret, "mach_port_mod_refs(RECV_RIGHT, -1)");
105*27b03b36SApple OSS Distributions }
106