1*043036a2SApple OSS Distributions //
2*043036a2SApple OSS Distributions // vmremaptest.c
3*043036a2SApple OSS Distributions //
4*043036a2SApple OSS Distributions // Created by Lionel Desai on 9/16/19.
5*043036a2SApple OSS Distributions // Copyright © 2019 Apple. All rights reserved.
6*043036a2SApple OSS Distributions //
7*043036a2SApple OSS Distributions
8*043036a2SApple OSS Distributions #include "mach_vm_tests.h"
9*043036a2SApple OSS Distributions #include <sys/sysctl.h>
10*043036a2SApple OSS Distributions
11*043036a2SApple OSS Distributions
12*043036a2SApple OSS Distributions #define TESTSZ (140 * 1024 * 1024ULL)
13*043036a2SApple OSS Distributions
14*043036a2SApple OSS Distributions void
mach_vm_client(mach_port_t port)15*043036a2SApple OSS Distributions mach_vm_client(mach_port_t port)
16*043036a2SApple OSS Distributions {
17*043036a2SApple OSS Distributions mach_port_t memport = MACH_PORT_NULL;
18*043036a2SApple OSS Distributions mach_vm_address_t src = 0, dest = 0, tmp = 0;
19*043036a2SApple OSS Distributions mach_vm_size_t size = 0;
20*043036a2SApple OSS Distributions vm_prot_t cur_prot, max_prot;
21*043036a2SApple OSS Distributions mach_port_name_t lport = 0;
22*043036a2SApple OSS Distributions kern_return_t ret = 0;
23*043036a2SApple OSS Distributions boolean_t copy = FALSE;
24*043036a2SApple OSS Distributions mach_vm_offset_t misoffset = 0;
25*043036a2SApple OSS Distributions
26*043036a2SApple OSS Distributions mach_msg_type_number_t countp;
27*043036a2SApple OSS Distributions mach_msg_size_t messageSize = 0;
28*043036a2SApple OSS Distributions ipc_message_t *message = NULL;
29*043036a2SApple OSS Distributions
30*043036a2SApple OSS Distributions char buffer[PATH_MAX];
31*043036a2SApple OSS Distributions ret = proc_pidpath(getpid(), buffer, sizeof(buffer));
32*043036a2SApple OSS Distributions assert(ret != -1);
33*043036a2SApple OSS Distributions
34*043036a2SApple OSS Distributions messageSize = sizeof(ipc_message_t) + sizeof(mach_msg_trailer_t) + 64;
35*043036a2SApple OSS Distributions message = (ipc_message_t *)calloc(1, messageSize);
36*043036a2SApple OSS Distributions
37*043036a2SApple OSS Distributions message->header.msgh_bits = MACH_MSGH_BITS_ZERO;
38*043036a2SApple OSS Distributions message->header.msgh_size = messageSize;
39*043036a2SApple OSS Distributions message->header.msgh_remote_port = MACH_PORT_NULL;
40*043036a2SApple OSS Distributions message->header.msgh_local_port = port;
41*043036a2SApple OSS Distributions
42*043036a2SApple OSS Distributions while (1) {
43*043036a2SApple OSS Distributions /* Awaiting the pid/src. addr/size from the server so we know what to remap from where */
44*043036a2SApple OSS Distributions ret = mach_msg(&message->header, MACH_RCV_MSG | MACH_RCV_LARGE, 0, messageSize, port, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
45*043036a2SApple OSS Distributions if (ret == KERN_SUCCESS) {
46*043036a2SApple OSS Distributions if (debug) {
47*043036a2SApple OSS Distributions T_LOG("CLIENT: received info from server... 0x%llx, %lld, 0x%llx, %d - %d\n", message->address, message->size, message->misoffset, message->vm_op, message->copy);
48*043036a2SApple OSS Distributions }
49*043036a2SApple OSS Distributions
50*043036a2SApple OSS Distributions switch (message->vm_op) {
51*043036a2SApple OSS Distributions case VM_OP_REMAP:
52*043036a2SApple OSS Distributions ret = task_for_pid(mach_task_self(), (pid_t) message->pid, &lport);
53*043036a2SApple OSS Distributions T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "task_for_pid");
54*043036a2SApple OSS Distributions
55*043036a2SApple OSS Distributions copy = message->copy;
56*043036a2SApple OSS Distributions size = message->size;
57*043036a2SApple OSS Distributions src = message->address;
58*043036a2SApple OSS Distributions misoffset = 0;
59*043036a2SApple OSS Distributions
60*043036a2SApple OSS Distributions ret = mach_vm_allocate(mach_task_self(), &tmp, size + 16384, VM_FLAGS_ANYWHERE);
61*043036a2SApple OSS Distributions T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "mach_vm_allocate");
62*043036a2SApple OSS Distributions mach_vm_deallocate(mach_task_self(), tmp, size + 16384);
63*043036a2SApple OSS Distributions
64*043036a2SApple OSS Distributions dest = tmp + 4096;
65*043036a2SApple OSS Distributions
66*043036a2SApple OSS Distributions ret = mach_vm_remap(mach_task_self(), &dest, size, 0, VM_FLAGS_ANYWHERE | VM_FLAGS_RETURN_DATA_ADDR,
67*043036a2SApple OSS Distributions lport, src, copy,
68*043036a2SApple OSS Distributions &cur_prot,
69*043036a2SApple OSS Distributions &max_prot,
70*043036a2SApple OSS Distributions VM_INHERIT_NONE);
71*043036a2SApple OSS Distributions
72*043036a2SApple OSS Distributions if (ret) {
73*043036a2SApple OSS Distributions char dstval[64];
74*043036a2SApple OSS Distributions memcpy(dstval, (void*) dest, 64);
75*043036a2SApple OSS Distributions T_LOG("CLIENT: mach_vm_remap FAILED: %s -- src 0x%llx, dest 0x%llx (%s)\n", mach_error_string(ret), src, dest, dstval);
76*043036a2SApple OSS Distributions T_FAIL("CLIENT: mach_vm_remap FAILED");
77*043036a2SApple OSS Distributions }
78*043036a2SApple OSS Distributions
79*043036a2SApple OSS Distributions memcpy(message->value, (void*)dest, 64);
80*043036a2SApple OSS Distributions break;
81*043036a2SApple OSS Distributions
82*043036a2SApple OSS Distributions case VM_OP_READ_OVERWRITE:
83*043036a2SApple OSS Distributions ret = task_for_pid(mach_task_self(), (pid_t) message->pid, &lport);
84*043036a2SApple OSS Distributions T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "task_for_pid");
85*043036a2SApple OSS Distributions
86*043036a2SApple OSS Distributions size = message->size;
87*043036a2SApple OSS Distributions src = message->address;
88*043036a2SApple OSS Distributions misoffset = 0;
89*043036a2SApple OSS Distributions
90*043036a2SApple OSS Distributions mach_vm_size_t dest_size = 0;
91*043036a2SApple OSS Distributions ret = mach_vm_allocate(mach_task_self(), &tmp, size + 16384, VM_FLAGS_ANYWHERE);
92*043036a2SApple OSS Distributions assert(KERN_SUCCESS == ret);
93*043036a2SApple OSS Distributions
94*043036a2SApple OSS Distributions dest = tmp + 4096;
95*043036a2SApple OSS Distributions
96*043036a2SApple OSS Distributions ret = mach_vm_read_overwrite(lport, src, size, dest, &dest_size);
97*043036a2SApple OSS Distributions
98*043036a2SApple OSS Distributions if (ret) {
99*043036a2SApple OSS Distributions char dstval[64];
100*043036a2SApple OSS Distributions memcpy(dstval, (void*) dest, 64);
101*043036a2SApple OSS Distributions T_LOG("CLIENT: mach_vm_read_overwrite FAILED: %s -- src 0x%llx, dest 0x%llx (%s)\n", mach_error_string(ret), src, dest, dstval);
102*043036a2SApple OSS Distributions T_FAIL("CLIENT: mach_vm_read_overwrite FAILED");
103*043036a2SApple OSS Distributions }
104*043036a2SApple OSS Distributions
105*043036a2SApple OSS Distributions memcpy(message->value, (void*)dest, 64);
106*043036a2SApple OSS Distributions break;
107*043036a2SApple OSS Distributions
108*043036a2SApple OSS Distributions case VM_OP_READ:
109*043036a2SApple OSS Distributions ret = task_for_pid(mach_task_self(), (pid_t) message->pid, &lport);
110*043036a2SApple OSS Distributions T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "task_for_pid");
111*043036a2SApple OSS Distributions
112*043036a2SApple OSS Distributions size = message->size;
113*043036a2SApple OSS Distributions src = message->address;
114*043036a2SApple OSS Distributions misoffset = 0;
115*043036a2SApple OSS Distributions
116*043036a2SApple OSS Distributions ret = mach_vm_read(lport, src, size, (vm_offset_t*)&dest, &countp);
117*043036a2SApple OSS Distributions if (ret) {
118*043036a2SApple OSS Distributions char dstval[64];
119*043036a2SApple OSS Distributions memcpy(dstval, (void*) dest, 64);
120*043036a2SApple OSS Distributions T_LOG("CLIENT: mach_vm_read FAILED: %s -- src 0x%llx, dest 0x%llx (%s)\n", mach_error_string(ret), src, dest, dstval);
121*043036a2SApple OSS Distributions T_FAIL("CLIENT: mach_vm_read FAILED");
122*043036a2SApple OSS Distributions exit(1);
123*043036a2SApple OSS Distributions }
124*043036a2SApple OSS Distributions
125*043036a2SApple OSS Distributions memcpy(message->value, (void*)dest, 64);
126*043036a2SApple OSS Distributions break;
127*043036a2SApple OSS Distributions
128*043036a2SApple OSS Distributions #if 0
129*043036a2SApple OSS Distributions case VM_OP_WRITE:
130*043036a2SApple OSS Distributions ret = task_for_pid(mach_task_self(), (pid_t) message->pid, &lport);
131*043036a2SApple OSS Distributions T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "task_for_pid");
132*043036a2SApple OSS Distributions
133*043036a2SApple OSS Distributions size = message->size;
134*043036a2SApple OSS Distributions src = message->address;
135*043036a2SApple OSS Distributions misoffset = 0;
136*043036a2SApple OSS Distributions
137*043036a2SApple OSS Distributions ret = mach_vm_write(lport, src, dest, countp);
138*043036a2SApple OSS Distributions if (ret) {
139*043036a2SApple OSS Distributions char dstval[64];
140*043036a2SApple OSS Distributions memcpy(dstval, (void*) dest, 64);
141*043036a2SApple OSS Distributions T_LOG("CLIENT: mach_vm_write FAILED: %s -- src 0x%llx, dest 0x%llx (%s)\n", mach_error_string(ret), src, dest, dstval);
142*043036a2SApple OSS Distributions T_FAIL("CLIENT: mach_vm_write FAILED");
143*043036a2SApple OSS Distributions }
144*043036a2SApple OSS Distributions
145*043036a2SApple OSS Distributions memcpy(message->value, (void*)dest, 64);
146*043036a2SApple OSS Distributions break;
147*043036a2SApple OSS Distributions #endif
148*043036a2SApple OSS Distributions case VM_OP_MEMENTRY:
149*043036a2SApple OSS Distributions assert(message->body.msgh_descriptor_count == 1);
150*043036a2SApple OSS Distributions dest = 0;
151*043036a2SApple OSS Distributions size = message->size;
152*043036a2SApple OSS Distributions memport = message->port_descriptor.name;
153*043036a2SApple OSS Distributions copy = message->copy;
154*043036a2SApple OSS Distributions if (copy) {
155*043036a2SApple OSS Distributions misoffset = 0;
156*043036a2SApple OSS Distributions } else {
157*043036a2SApple OSS Distributions misoffset = message->misoffset;
158*043036a2SApple OSS Distributions }
159*043036a2SApple OSS Distributions
160*043036a2SApple OSS Distributions cur_prot = max_prot = VM_PROT_READ;
161*043036a2SApple OSS Distributions #if 0
162*043036a2SApple OSS Distributions /* This + VM_FLAGS_FIXED in mach_vm_map() will return KERN_INVALID_ARG expectedly */
163*043036a2SApple OSS Distributions ret = mach_vm_allocate(mach_task_self(), &tmp, size + 16384, VM_FLAGS_ANYWHERE);
164*043036a2SApple OSS Distributions dest = tmp + 4095;
165*043036a2SApple OSS Distributions mach_vm_deallocate(mach_task_self(), tmp, size + 16384);
166*043036a2SApple OSS Distributions #endif
167*043036a2SApple OSS Distributions ret = mach_vm_map(mach_task_self(), &dest, size, 0 /*mask*/,
168*043036a2SApple OSS Distributions VM_FLAGS_ANYWHERE | VM_FLAGS_RETURN_DATA_ADDR,
169*043036a2SApple OSS Distributions memport, 0 /*offset*/, copy, cur_prot, max_prot, VM_INHERIT_NONE);
170*043036a2SApple OSS Distributions
171*043036a2SApple OSS Distributions if (ret) {
172*043036a2SApple OSS Distributions T_LOG("CLIENT: mach_vm_map FAILED: %s -- port 0x%x\n", mach_error_string(ret), memport);
173*043036a2SApple OSS Distributions T_FAIL("CLIENT: mach_vm_map FAILED");
174*043036a2SApple OSS Distributions }
175*043036a2SApple OSS Distributions
176*043036a2SApple OSS Distributions memcpy(message->value, (void*)(dest + misoffset), 64);
177*043036a2SApple OSS Distributions break;
178*043036a2SApple OSS Distributions
179*043036a2SApple OSS Distributions case VM_OP_UNMAP:
180*043036a2SApple OSS Distributions assert(dest);
181*043036a2SApple OSS Distributions ret = mach_vm_deallocate(mach_task_self(), dest, size);
182*043036a2SApple OSS Distributions if (ret) {
183*043036a2SApple OSS Distributions T_LOG("CLIENT: mach_vm_deallocate FAILED: %s -- dest 0x%llx, size 0x%llx\n", mach_error_string(ret), dest, size);
184*043036a2SApple OSS Distributions T_FAIL("CLIENT: mach_vm_deallocate FAILED");
185*043036a2SApple OSS Distributions }
186*043036a2SApple OSS Distributions /* No message to send here */
187*043036a2SApple OSS Distributions continue;
188*043036a2SApple OSS Distributions
189*043036a2SApple OSS Distributions case VM_OP_NONE:
190*043036a2SApple OSS Distributions memcpy(message->value, (void*) (dest + misoffset), 64);
191*043036a2SApple OSS Distributions break;
192*043036a2SApple OSS Distributions
193*043036a2SApple OSS Distributions case VM_OP_EXIT:
194*043036a2SApple OSS Distributions if (debug) {
195*043036a2SApple OSS Distributions T_LOG("CLIENT EXITING ****** \n");
196*043036a2SApple OSS Distributions }
197*043036a2SApple OSS Distributions return;
198*043036a2SApple OSS Distributions
199*043036a2SApple OSS Distributions case VM_OP_EXIT_ERROR:
200*043036a2SApple OSS Distributions if (debug) {
201*043036a2SApple OSS Distributions T_LOG("CLIENT EXITING WITH ERROR****** \n");
202*043036a2SApple OSS Distributions T_FAIL("Revieved VM_OP_EXIT_ERROR");
203*043036a2SApple OSS Distributions }
204*043036a2SApple OSS Distributions return;
205*043036a2SApple OSS Distributions default:
206*043036a2SApple OSS Distributions break;
207*043036a2SApple OSS Distributions }
208*043036a2SApple OSS Distributions
209*043036a2SApple OSS Distributions char dstval[64];
210*043036a2SApple OSS Distributions memcpy(dstval, (void*) message->value, 64);
211*043036a2SApple OSS Distributions dstval[63] = '\0';
212*043036a2SApple OSS Distributions
213*043036a2SApple OSS Distributions if (debug) {
214*043036a2SApple OSS Distributions T_LOG("CLIENT: dest 0x%llx -> 0x%llx (0x%llx), *dest %s\n", dest, dest + misoffset, misoffset, dstval);
215*043036a2SApple OSS Distributions /*memcpy(dstval, (void*) (dest + misoffset), 64);
216*043036a2SApple OSS Distributions * dstval[63]='\0';
217*043036a2SApple OSS Distributions * T_LOG("*dest %s\n", dstval);*/
218*043036a2SApple OSS Distributions }
219*043036a2SApple OSS Distributions
220*043036a2SApple OSS Distributions message->header.msgh_local_port = MACH_PORT_NULL;
221*043036a2SApple OSS Distributions
222*043036a2SApple OSS Distributions ret = mach_msg(&message->header, MACH_SEND_MSG, message->header.msgh_size, 0, MACH_PORT_NULL, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
223*043036a2SApple OSS Distributions T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "CLIENT: mach_msg_send FAILED");
224*043036a2SApple OSS Distributions } else {
225*043036a2SApple OSS Distributions T_QUIET; T_ASSERT_MACH_SUCCESS(ret, "CLIENT: mach_msg_rcv FAILED");
226*043036a2SApple OSS Distributions }
227*043036a2SApple OSS Distributions }
228*043036a2SApple OSS Distributions }
229*043036a2SApple OSS Distributions
230*043036a2SApple OSS Distributions void
mach_server_make_memory_entry(mach_port_t replyPort)231*043036a2SApple OSS Distributions mach_server_make_memory_entry(mach_port_t replyPort)
232*043036a2SApple OSS Distributions {
233*043036a2SApple OSS Distributions mach_vm_address_t src = 0, lsrc = 0;
234*043036a2SApple OSS Distributions mach_vm_size_t size = TESTSZ;
235*043036a2SApple OSS Distributions memory_object_size_t memsz = 0;
236*043036a2SApple OSS Distributions kern_return_t kr;
237*043036a2SApple OSS Distributions boolean_t modified_in_server = FALSE, perm_changed = FALSE;
238*043036a2SApple OSS Distributions ipc_message_t message;
239*043036a2SApple OSS Distributions ipc_message_t *reply = NULL;
240*043036a2SApple OSS Distributions char src_val[64], dst_val[64];
241*043036a2SApple OSS Distributions mach_msg_size_t replySize = 0;
242*043036a2SApple OSS Distributions void *buffer = NULL;
243*043036a2SApple OSS Distributions int flags = 0;
244*043036a2SApple OSS Distributions mach_port_t memport = 0;
245*043036a2SApple OSS Distributions int mementry_pass_idx = 0;
246*043036a2SApple OSS Distributions mach_vm_offset_t misoffset = 0;
247*043036a2SApple OSS Distributions
248*043036a2SApple OSS Distributions if (debug) {
249*043036a2SApple OSS Distributions T_LOG("\n*************** make_memory_entry_test START ***************\n");
250*043036a2SApple OSS Distributions }
251*043036a2SApple OSS Distributions
252*043036a2SApple OSS Distributions if (mach_server_data_setup(&buffer) != 0) {
253*043036a2SApple OSS Distributions server_error_out(replyPort);
254*043036a2SApple OSS Distributions }
255*043036a2SApple OSS Distributions
256*043036a2SApple OSS Distributions if (buffer == NULL) {
257*043036a2SApple OSS Distributions mach_server_data_cleanup(NULL, 0, 0);
258*043036a2SApple OSS Distributions exit(0);
259*043036a2SApple OSS Distributions }
260*043036a2SApple OSS Distributions
261*043036a2SApple OSS Distributions replySize = sizeof(ipc_message_t) + sizeof(mach_msg_trailer_t) + 64;
262*043036a2SApple OSS Distributions reply = calloc(1, replySize);
263*043036a2SApple OSS Distributions
264*043036a2SApple OSS Distributions test_different_mementry_mode:
265*043036a2SApple OSS Distributions /* create message to send over rights/address/pid/size */
266*043036a2SApple OSS Distributions mach_server_construct_header(&message, replyPort);
267*043036a2SApple OSS Distributions
268*043036a2SApple OSS Distributions /* allocation that we plan to remap in the client */
269*043036a2SApple OSS Distributions mach_server_create_allocation(&src, size, buffer);
270*043036a2SApple OSS Distributions
271*043036a2SApple OSS Distributions memsz = 8191;
272*043036a2SApple OSS Distributions lsrc = src + 94095;
273*043036a2SApple OSS Distributions int pgmask = (getpagesize() - 1);
274*043036a2SApple OSS Distributions misoffset = 94095 - (94095 & ~pgmask);
275*043036a2SApple OSS Distributions
276*043036a2SApple OSS Distributions if (mementry_pass_idx < 2) {
277*043036a2SApple OSS Distributions if (mementry_pass_idx == 0) {
278*043036a2SApple OSS Distributions flags = VM_PROT_DEFAULT | MAP_MEM_VM_COPY | MAP_MEM_USE_DATA_ADDR;
279*043036a2SApple OSS Distributions T_LOG("mach_make_memory_entry VM_COPY | USE_DATA_ADDR test...");
280*043036a2SApple OSS Distributions } else {
281*043036a2SApple OSS Distributions flags = VM_PROT_READ | MAP_MEM_VM_SHARE;
282*043036a2SApple OSS Distributions T_LOG("mach_make_memory_entry VM_SHARE test...");
283*043036a2SApple OSS Distributions }
284*043036a2SApple OSS Distributions kr = mach_vm_protect(mach_task_self(), (mach_vm_address_t) lsrc, (mach_vm_size_t)getpagesize(), FALSE, VM_PROT_READ);
285*043036a2SApple OSS Distributions assert(kr == KERN_SUCCESS);
286*043036a2SApple OSS Distributions perm_changed = TRUE;
287*043036a2SApple OSS Distributions } else {
288*043036a2SApple OSS Distributions flags = VM_PROT_DEFAULT;
289*043036a2SApple OSS Distributions perm_changed = FALSE;
290*043036a2SApple OSS Distributions T_LOG("mach_make_memory_entry DEFAULT test...");
291*043036a2SApple OSS Distributions }
292*043036a2SApple OSS Distributions
293*043036a2SApple OSS Distributions kr = mach_make_memory_entry_64(mach_task_self(), &memsz, lsrc, flags, &memport, MACH_PORT_NULL);
294*043036a2SApple OSS Distributions if (kr != KERN_SUCCESS) {
295*043036a2SApple OSS Distributions T_LOG("ERROR: mach_make_memory_entry_64 try (%d) failed in Client: (%d) %s\n",
296*043036a2SApple OSS Distributions mementry_pass_idx + 1, kr, mach_error_string(kr));
297*043036a2SApple OSS Distributions server_error_out(replyPort);
298*043036a2SApple OSS Distributions }
299*043036a2SApple OSS Distributions
300*043036a2SApple OSS Distributions mach_server_contruct_payload(&message, lsrc, memport, memsz, misoffset, ((flags & MAP_MEM_VM_COPY) == MAP_MEM_VM_COPY) /*copy*/, VM_OP_MEMENTRY);
301*043036a2SApple OSS Distributions
302*043036a2SApple OSS Distributions memcpy(src_val, (void*) lsrc, 64);
303*043036a2SApple OSS Distributions src_val[63] = '\0';
304*043036a2SApple OSS Distributions
305*043036a2SApple OSS Distributions check_again:
306*043036a2SApple OSS Distributions /* Sending over pid/src address/size */
307*043036a2SApple OSS Distributions kr = mach_msg(&message.header, MACH_SEND_MSG, message.header.msgh_size, 0, MACH_PORT_NULL, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
308*043036a2SApple OSS Distributions
309*043036a2SApple OSS Distributions if (kr != KERN_SUCCESS) {
310*043036a2SApple OSS Distributions T_LOG("ERROR: Failed to send message to client: (%d) %s\n", kr, mach_error_string(kr));
311*043036a2SApple OSS Distributions server_error_out(replyPort);
312*043036a2SApple OSS Distributions }
313*043036a2SApple OSS Distributions
314*043036a2SApple OSS Distributions /* Ack from client that it worked */
315*043036a2SApple OSS Distributions
316*043036a2SApple OSS Distributions bzero(reply, replySize);
317*043036a2SApple OSS Distributions
318*043036a2SApple OSS Distributions kr = mach_msg(&reply->header, MACH_RCV_MSG, 0, replySize, replyPort, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
319*043036a2SApple OSS Distributions if (kr != KERN_SUCCESS) {
320*043036a2SApple OSS Distributions T_LOG("ERROR: Failed to get reply from client: (%d) %s\n", kr, mach_error_string(kr));
321*043036a2SApple OSS Distributions server_error_out(replyPort);
322*043036a2SApple OSS Distributions }
323*043036a2SApple OSS Distributions
324*043036a2SApple OSS Distributions memcpy(dst_val, &reply->value, 64);
325*043036a2SApple OSS Distributions dst_val[63] = '\0';
326*043036a2SApple OSS Distributions
327*043036a2SApple OSS Distributions if (modified_in_server == FALSE) {
328*043036a2SApple OSS Distributions if (strncmp(src_val, dst_val, 64)) {
329*043036a2SApple OSS Distributions T_LOG("FAILED\n");
330*043036a2SApple OSS Distributions T_LOG("(%d) Pre modification mach_make_memory_entry() FAILED: copy(%d) src_val: %s dest_val: %s\n", mementry_pass_idx + 1, message.copy, src_val, dst_val);
331*043036a2SApple OSS Distributions server_error_out(replyPort);
332*043036a2SApple OSS Distributions }
333*043036a2SApple OSS Distributions } else {
334*043036a2SApple OSS Distributions if (message.copy == TRUE) {
335*043036a2SApple OSS Distributions if (strncmp(src_val, dst_val, 64) == 0) {
336*043036a2SApple OSS Distributions T_LOG("FAILED\n");
337*043036a2SApple OSS Distributions T_LOG("(%d) Data mismatch with Copy: %d src_val: %s dest_val: %s\n",
338*043036a2SApple OSS Distributions mementry_pass_idx + 1, message.copy, src_val, dst_val);
339*043036a2SApple OSS Distributions server_error_out(replyPort);
340*043036a2SApple OSS Distributions }
341*043036a2SApple OSS Distributions } else {
342*043036a2SApple OSS Distributions if (strncmp(src_val, dst_val, 64)) {
343*043036a2SApple OSS Distributions T_LOG("FAILED\n");
344*043036a2SApple OSS Distributions T_LOG("(%d) Data mismatch with Copy: %d src_val: %s dest_val: %s\n",
345*043036a2SApple OSS Distributions mementry_pass_idx + 1, message.copy, src_val, dst_val);
346*043036a2SApple OSS Distributions server_error_out(replyPort);
347*043036a2SApple OSS Distributions }
348*043036a2SApple OSS Distributions }
349*043036a2SApple OSS Distributions }
350*043036a2SApple OSS Distributions
351*043036a2SApple OSS Distributions if (modified_in_server == FALSE) {
352*043036a2SApple OSS Distributions /* Now we change our data that has been mapped elsewhere */
353*043036a2SApple OSS Distributions if (perm_changed) {
354*043036a2SApple OSS Distributions kr = mach_vm_protect(mach_task_self(), (mach_vm_address_t) lsrc, (mach_vm_size_t)getpagesize(), FALSE, VM_PROT_READ | VM_PROT_WRITE);
355*043036a2SApple OSS Distributions assert(kr == KERN_SUCCESS);
356*043036a2SApple OSS Distributions }
357*043036a2SApple OSS Distributions
358*043036a2SApple OSS Distributions memcpy((void*) lsrc, "THIS IS DIFFERENT -- BUT WE DON'T know if that's expecTED", 64);
359*043036a2SApple OSS Distributions
360*043036a2SApple OSS Distributions if (perm_changed) {
361*043036a2SApple OSS Distributions kr = mach_vm_protect(mach_task_self(), (mach_vm_address_t) lsrc, (mach_vm_size_t)getpagesize(), FALSE, VM_PROT_READ);
362*043036a2SApple OSS Distributions assert(kr == KERN_SUCCESS);
363*043036a2SApple OSS Distributions }
364*043036a2SApple OSS Distributions
365*043036a2SApple OSS Distributions memcpy(src_val, (void*) lsrc, 64);
366*043036a2SApple OSS Distributions src_val[63] = '\0';
367*043036a2SApple OSS Distributions modified_in_server = TRUE;
368*043036a2SApple OSS Distributions message.vm_op = VM_OP_NONE;
369*043036a2SApple OSS Distributions
370*043036a2SApple OSS Distributions /* Check to see if the data in the other process is as expected */
371*043036a2SApple OSS Distributions goto check_again;
372*043036a2SApple OSS Distributions }
373*043036a2SApple OSS Distributions
374*043036a2SApple OSS Distributions if (mementry_pass_idx < 2) {
375*043036a2SApple OSS Distributions /* Next remap mode...so ask the other process to unmap the older mapping. */
376*043036a2SApple OSS Distributions message.vm_op = VM_OP_UNMAP;
377*043036a2SApple OSS Distributions kr = mach_msg(&message.header, MACH_SEND_MSG, message.header.msgh_size, 0, MACH_PORT_NULL, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
378*043036a2SApple OSS Distributions if (kr != KERN_SUCCESS) {
379*043036a2SApple OSS Distributions T_LOG("ERROR: Failed to send message to client: (%d) %s\n", kr, mach_error_string(kr));
380*043036a2SApple OSS Distributions server_error_out(replyPort);
381*043036a2SApple OSS Distributions }
382*043036a2SApple OSS Distributions
383*043036a2SApple OSS Distributions mach_port_deallocate(mach_task_self(), memport);
384*043036a2SApple OSS Distributions memport = MACH_PORT_NULL;
385*043036a2SApple OSS Distributions mach_vm_deallocate(mach_task_self(), src, size);
386*043036a2SApple OSS Distributions
387*043036a2SApple OSS Distributions T_LOG("PASSED\n");
388*043036a2SApple OSS Distributions
389*043036a2SApple OSS Distributions mementry_pass_idx++;
390*043036a2SApple OSS Distributions modified_in_server = FALSE;
391*043036a2SApple OSS Distributions
392*043036a2SApple OSS Distributions goto test_different_mementry_mode;
393*043036a2SApple OSS Distributions }
394*043036a2SApple OSS Distributions
395*043036a2SApple OSS Distributions T_LOG("PASSED\n");
396*043036a2SApple OSS Distributions
397*043036a2SApple OSS Distributions /* Unmap old mapping in the other process. */
398*043036a2SApple OSS Distributions message.vm_op = VM_OP_UNMAP;
399*043036a2SApple OSS Distributions kr = mach_msg(&message.header, MACH_SEND_MSG, message.header.msgh_size, 0, MACH_PORT_NULL, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
400*043036a2SApple OSS Distributions if (kr != KERN_SUCCESS) {
401*043036a2SApple OSS Distributions T_LOG("ERROR: Failed to send message to client: (%d) %s\n", kr, mach_error_string(kr));
402*043036a2SApple OSS Distributions server_error_out(replyPort);
403*043036a2SApple OSS Distributions }
404*043036a2SApple OSS Distributions
405*043036a2SApple OSS Distributions free(reply);
406*043036a2SApple OSS Distributions reply = NULL;
407*043036a2SApple OSS Distributions
408*043036a2SApple OSS Distributions mach_port_deallocate(mach_task_self(), memport);
409*043036a2SApple OSS Distributions memport = MACH_PORT_NULL;
410*043036a2SApple OSS Distributions
411*043036a2SApple OSS Distributions mach_server_data_cleanup(buffer, src, size);
412*043036a2SApple OSS Distributions buffer = NULL;
413*043036a2SApple OSS Distributions
414*043036a2SApple OSS Distributions if (debug) {
415*043036a2SApple OSS Distributions T_LOG("*************** mach_make_memory_entry_test END ***************\n");
416*043036a2SApple OSS Distributions }
417*043036a2SApple OSS Distributions }
418*043036a2SApple OSS Distributions
419*043036a2SApple OSS Distributions void
mach_server_read(mach_port_t replyPort,int op)420*043036a2SApple OSS Distributions mach_server_read(mach_port_t replyPort, int op)
421*043036a2SApple OSS Distributions {
422*043036a2SApple OSS Distributions mach_vm_address_t src;
423*043036a2SApple OSS Distributions mach_vm_size_t size = TESTSZ;
424*043036a2SApple OSS Distributions kern_return_t kr;
425*043036a2SApple OSS Distributions boolean_t modified_in_server = FALSE;
426*043036a2SApple OSS Distributions ipc_message_t message;
427*043036a2SApple OSS Distributions char src_val[64], dst_val[64];
428*043036a2SApple OSS Distributions mach_msg_size_t replySize = 0;
429*043036a2SApple OSS Distributions ipc_message_t *reply = NULL;
430*043036a2SApple OSS Distributions void *buffer = NULL;
431*043036a2SApple OSS Distributions
432*043036a2SApple OSS Distributions if (debug) {
433*043036a2SApple OSS Distributions T_LOG("\n*************** vm_read / write / overwrite_test START ***************\n");
434*043036a2SApple OSS Distributions }
435*043036a2SApple OSS Distributions
436*043036a2SApple OSS Distributions {
437*043036a2SApple OSS Distributions char opname[16];
438*043036a2SApple OSS Distributions if (op == VM_OP_READ) {
439*043036a2SApple OSS Distributions strlcpy(opname, "read", 5);
440*043036a2SApple OSS Distributions }
441*043036a2SApple OSS Distributions if (op == VM_OP_WRITE) {
442*043036a2SApple OSS Distributions strlcpy(opname, "write", 6);
443*043036a2SApple OSS Distributions }
444*043036a2SApple OSS Distributions if (op == VM_OP_READ_OVERWRITE) {
445*043036a2SApple OSS Distributions strlcpy(opname, "read_overwrite", 15);
446*043036a2SApple OSS Distributions }
447*043036a2SApple OSS Distributions
448*043036a2SApple OSS Distributions T_LOG("vm_%s test...", opname);
449*043036a2SApple OSS Distributions }
450*043036a2SApple OSS Distributions
451*043036a2SApple OSS Distributions if (mach_server_data_setup(&buffer) != 0) {
452*043036a2SApple OSS Distributions server_error_out(replyPort);
453*043036a2SApple OSS Distributions }
454*043036a2SApple OSS Distributions
455*043036a2SApple OSS Distributions if (buffer == NULL) {
456*043036a2SApple OSS Distributions mach_server_data_cleanup(NULL, 0, 0);
457*043036a2SApple OSS Distributions exit(0);
458*043036a2SApple OSS Distributions }
459*043036a2SApple OSS Distributions
460*043036a2SApple OSS Distributions replySize = sizeof(ipc_message_t) + sizeof(mach_msg_trailer_t) + 64;
461*043036a2SApple OSS Distributions reply = calloc(1, replySize);
462*043036a2SApple OSS Distributions
463*043036a2SApple OSS Distributions /* create message to send over rights/address/pid/size */
464*043036a2SApple OSS Distributions mach_server_construct_header(&message, replyPort);
465*043036a2SApple OSS Distributions
466*043036a2SApple OSS Distributions /* allocation that we plan to remap in the client */
467*043036a2SApple OSS Distributions mach_server_create_allocation(&src, size, buffer);
468*043036a2SApple OSS Distributions
469*043036a2SApple OSS Distributions mach_server_contruct_payload(&message, src, MACH_PORT_NULL /* port */, size, 0, TRUE /*copy*/, op);
470*043036a2SApple OSS Distributions if (debug) {
471*043036a2SApple OSS Distributions T_LOG("server COPY: Sending 0x%llx, %d, 0x%llx\n", message.address, getpid(), message.size);
472*043036a2SApple OSS Distributions }
473*043036a2SApple OSS Distributions memcpy(src_val, (void*)message.address, 64);
474*043036a2SApple OSS Distributions
475*043036a2SApple OSS Distributions check_again:
476*043036a2SApple OSS Distributions /* Sending over pid/src address/size */
477*043036a2SApple OSS Distributions kr = mach_msg(&message.header, MACH_SEND_MSG, message.header.msgh_size, 0, MACH_PORT_NULL, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
478*043036a2SApple OSS Distributions if (kr != KERN_SUCCESS) {
479*043036a2SApple OSS Distributions T_LOG("ERROR: Failed to send message to client: (%d) %s\n", kr, mach_error_string(kr));
480*043036a2SApple OSS Distributions server_error_out(replyPort);
481*043036a2SApple OSS Distributions }
482*043036a2SApple OSS Distributions
483*043036a2SApple OSS Distributions /* Ack from client that it worked */
484*043036a2SApple OSS Distributions
485*043036a2SApple OSS Distributions bzero(reply, replySize);
486*043036a2SApple OSS Distributions
487*043036a2SApple OSS Distributions kr = mach_msg(&reply->header, MACH_RCV_MSG, 0, replySize, replyPort, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
488*043036a2SApple OSS Distributions if (kr != KERN_SUCCESS) {
489*043036a2SApple OSS Distributions T_LOG("ERROR: Failed to get reply from client: (%d) %s\n", kr, mach_error_string(kr));
490*043036a2SApple OSS Distributions server_error_out(replyPort);
491*043036a2SApple OSS Distributions }
492*043036a2SApple OSS Distributions
493*043036a2SApple OSS Distributions memcpy(dst_val, &reply->value, 64);
494*043036a2SApple OSS Distributions
495*043036a2SApple OSS Distributions if (modified_in_server == FALSE) {
496*043036a2SApple OSS Distributions if (strncmp(src_val, dst_val, 64)) {
497*043036a2SApple OSS Distributions T_LOG("Pre modification (op: %d) FAILED: src_val: %s dest_val: %s\n", op, src_val, dst_val);
498*043036a2SApple OSS Distributions server_error_out(replyPort);
499*043036a2SApple OSS Distributions }
500*043036a2SApple OSS Distributions } else {
501*043036a2SApple OSS Distributions if (strncmp(src_val, dst_val, 64) == 0) {
502*043036a2SApple OSS Distributions T_LOG("Data mismatch (op:%d) with Copy: %d src_val: %s dest_val: %s\n", op, message.copy, src_val, dst_val);
503*043036a2SApple OSS Distributions server_error_out(replyPort);
504*043036a2SApple OSS Distributions }
505*043036a2SApple OSS Distributions }
506*043036a2SApple OSS Distributions
507*043036a2SApple OSS Distributions if (modified_in_server == FALSE) {
508*043036a2SApple OSS Distributions /* Now we change our data that has been mapped elsewhere */
509*043036a2SApple OSS Distributions memcpy((void*)message.address, "THIS IS DIFFERENT -- BUT WE DON'T know if that's expecTED", 64);
510*043036a2SApple OSS Distributions memcpy(src_val, (void*)message.address, 64);
511*043036a2SApple OSS Distributions modified_in_server = TRUE;
512*043036a2SApple OSS Distributions message.vm_op = VM_OP_NONE;
513*043036a2SApple OSS Distributions
514*043036a2SApple OSS Distributions /* Check to see if the data in the other process is as expected */
515*043036a2SApple OSS Distributions goto check_again;
516*043036a2SApple OSS Distributions }
517*043036a2SApple OSS Distributions
518*043036a2SApple OSS Distributions /* Unmap old mapping in the other process. */
519*043036a2SApple OSS Distributions message.vm_op = VM_OP_UNMAP;
520*043036a2SApple OSS Distributions kr = mach_msg(&message.header, MACH_SEND_MSG, message.header.msgh_size, 0, MACH_PORT_NULL, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
521*043036a2SApple OSS Distributions if (kr != KERN_SUCCESS) {
522*043036a2SApple OSS Distributions T_LOG("ERROR: Failed to send message to client: (%d) %s\n", kr, mach_error_string(kr));
523*043036a2SApple OSS Distributions server_error_out(replyPort);
524*043036a2SApple OSS Distributions }
525*043036a2SApple OSS Distributions
526*043036a2SApple OSS Distributions free(reply);
527*043036a2SApple OSS Distributions reply = NULL;
528*043036a2SApple OSS Distributions
529*043036a2SApple OSS Distributions mach_server_data_cleanup(buffer, src, size);
530*043036a2SApple OSS Distributions buffer = NULL;
531*043036a2SApple OSS Distributions
532*043036a2SApple OSS Distributions if (debug) {
533*043036a2SApple OSS Distributions T_LOG("*************** vm_read_test END ***************\n");
534*043036a2SApple OSS Distributions }
535*043036a2SApple OSS Distributions
536*043036a2SApple OSS Distributions T_LOG("PASSED\n");
537*043036a2SApple OSS Distributions }
538*043036a2SApple OSS Distributions
539*043036a2SApple OSS Distributions void
mach_server_remap(mach_port_t replyPort)540*043036a2SApple OSS Distributions mach_server_remap(mach_port_t replyPort)
541*043036a2SApple OSS Distributions {
542*043036a2SApple OSS Distributions mach_vm_address_t src = 0, lsrc = 0;
543*043036a2SApple OSS Distributions mach_vm_size_t size = TESTSZ;
544*043036a2SApple OSS Distributions kern_return_t kr;
545*043036a2SApple OSS Distributions int remap_copy_pass_idx = 0;
546*043036a2SApple OSS Distributions boolean_t modified_in_server = FALSE;
547*043036a2SApple OSS Distributions void *buffer;
548*043036a2SApple OSS Distributions ipc_message_t message;
549*043036a2SApple OSS Distributions char src_val[64], dst_val[64];
550*043036a2SApple OSS Distributions mach_msg_size_t replySize = 0;
551*043036a2SApple OSS Distributions ipc_message_t *reply = NULL;
552*043036a2SApple OSS Distributions
553*043036a2SApple OSS Distributions if (debug) {
554*043036a2SApple OSS Distributions T_LOG("\n*************** vm_remap_test START ***************\n");
555*043036a2SApple OSS Distributions }
556*043036a2SApple OSS Distributions
557*043036a2SApple OSS Distributions if (mach_server_data_setup(&buffer) != 0) {
558*043036a2SApple OSS Distributions server_error_out(replyPort);
559*043036a2SApple OSS Distributions }
560*043036a2SApple OSS Distributions
561*043036a2SApple OSS Distributions if (buffer == NULL) {
562*043036a2SApple OSS Distributions mach_server_data_cleanup(NULL, 0, 0);
563*043036a2SApple OSS Distributions exit(0);
564*043036a2SApple OSS Distributions }
565*043036a2SApple OSS Distributions
566*043036a2SApple OSS Distributions replySize = sizeof(ipc_message_t) + sizeof(mach_msg_trailer_t) + 64;
567*043036a2SApple OSS Distributions reply = calloc(1, replySize);
568*043036a2SApple OSS Distributions
569*043036a2SApple OSS Distributions remap_again:
570*043036a2SApple OSS Distributions
571*043036a2SApple OSS Distributions T_LOG("vm_remap (copy = %s) test...", ((remap_copy_pass_idx == 0) ? "FALSE" : "TRUE"));
572*043036a2SApple OSS Distributions
573*043036a2SApple OSS Distributions /* create message to send over rights/address/pid/size */
574*043036a2SApple OSS Distributions mach_server_construct_header(&message, replyPort);
575*043036a2SApple OSS Distributions
576*043036a2SApple OSS Distributions /* server allocation that we plan to remap in the client */
577*043036a2SApple OSS Distributions mach_server_create_allocation(&src, size, buffer);
578*043036a2SApple OSS Distributions
579*043036a2SApple OSS Distributions lsrc = src + 8193;
580*043036a2SApple OSS Distributions
581*043036a2SApple OSS Distributions mach_server_contruct_payload(&message, lsrc, MACH_PORT_NULL /* port */, size - 9000, 0, remap_copy_pass_idx /*copy*/, VM_OP_REMAP);
582*043036a2SApple OSS Distributions if (debug) {
583*043036a2SApple OSS Distributions T_LOG("server COPY: Sending 0x%llx, %d, 0x%llx\n", message.address, getpid(), message.size);
584*043036a2SApple OSS Distributions }
585*043036a2SApple OSS Distributions
586*043036a2SApple OSS Distributions memcpy(src_val, (void*)lsrc, 64);
587*043036a2SApple OSS Distributions src_val[63] = '\0';
588*043036a2SApple OSS Distributions
589*043036a2SApple OSS Distributions check_again:
590*043036a2SApple OSS Distributions /* Sending over pid/src address/size */
591*043036a2SApple OSS Distributions kr = mach_msg(&message.header, MACH_SEND_MSG, message.header.msgh_size, 0, MACH_PORT_NULL, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
592*043036a2SApple OSS Distributions if (kr != KERN_SUCCESS) {
593*043036a2SApple OSS Distributions T_LOG("ERROR: Failed to send message to client: (%d) %s\n", kr, mach_error_string(kr));
594*043036a2SApple OSS Distributions server_error_out(replyPort);
595*043036a2SApple OSS Distributions }
596*043036a2SApple OSS Distributions
597*043036a2SApple OSS Distributions /* Ack from client that it worked */
598*043036a2SApple OSS Distributions
599*043036a2SApple OSS Distributions bzero(reply, replySize);
600*043036a2SApple OSS Distributions
601*043036a2SApple OSS Distributions kr = mach_msg(&reply->header, MACH_RCV_MSG, 0, replySize, replyPort, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
602*043036a2SApple OSS Distributions if (kr != KERN_SUCCESS) {
603*043036a2SApple OSS Distributions T_LOG("ERROR: Failed to get reply from client: (%d) %s\n", kr, mach_error_string(kr));
604*043036a2SApple OSS Distributions server_error_out(replyPort);
605*043036a2SApple OSS Distributions }
606*043036a2SApple OSS Distributions
607*043036a2SApple OSS Distributions memcpy(dst_val, &reply->value, 64);
608*043036a2SApple OSS Distributions dst_val[63] = '\0';
609*043036a2SApple OSS Distributions
610*043036a2SApple OSS Distributions
611*043036a2SApple OSS Distributions if (modified_in_server == FALSE) {
612*043036a2SApple OSS Distributions if (strncmp(src_val, dst_val, 64)) {
613*043036a2SApple OSS Distributions T_LOG("Pre modification remap() FAILED: copy(%d) src_val: %s dest_val: %s\n",
614*043036a2SApple OSS Distributions message.copy, src_val, dst_val);
615*043036a2SApple OSS Distributions server_error_out(replyPort);
616*043036a2SApple OSS Distributions }
617*043036a2SApple OSS Distributions } else {
618*043036a2SApple OSS Distributions if (message.copy == TRUE) {
619*043036a2SApple OSS Distributions if (strcmp(src_val, dst_val) == 0) {
620*043036a2SApple OSS Distributions T_LOG("Data mismatch with Copy: %d src_val: %s dest_val: %s\n",
621*043036a2SApple OSS Distributions message.copy, src_val, dst_val);
622*043036a2SApple OSS Distributions server_error_out(replyPort);
623*043036a2SApple OSS Distributions }
624*043036a2SApple OSS Distributions } else {
625*043036a2SApple OSS Distributions if (strcmp(src_val, dst_val)) {
626*043036a2SApple OSS Distributions T_LOG("Data mismatch with Copy: %d src_val: %s dest_val: %s\n",
627*043036a2SApple OSS Distributions message.copy, src_val, dst_val);
628*043036a2SApple OSS Distributions server_error_out(replyPort);
629*043036a2SApple OSS Distributions }
630*043036a2SApple OSS Distributions }
631*043036a2SApple OSS Distributions }
632*043036a2SApple OSS Distributions
633*043036a2SApple OSS Distributions if (modified_in_server == FALSE) {
634*043036a2SApple OSS Distributions /* Now we change our data that has been mapped elsewhere */
635*043036a2SApple OSS Distributions memcpy((void*)message.address, "THIS IS DIFFERENT -- BUT WE DON'T know if that's expecTED", 64);
636*043036a2SApple OSS Distributions memcpy(src_val, (void*)message.address, 64);
637*043036a2SApple OSS Distributions src_val[63] = '\0';
638*043036a2SApple OSS Distributions
639*043036a2SApple OSS Distributions modified_in_server = TRUE;
640*043036a2SApple OSS Distributions message.vm_op = VM_OP_NONE;
641*043036a2SApple OSS Distributions
642*043036a2SApple OSS Distributions /* Check to see if the data in the other process is as expected */
643*043036a2SApple OSS Distributions goto check_again;
644*043036a2SApple OSS Distributions }
645*043036a2SApple OSS Distributions
646*043036a2SApple OSS Distributions if (remap_copy_pass_idx == 0) {
647*043036a2SApple OSS Distributions /* Next remap mode...so ask the other process to unmap the older mapping. */
648*043036a2SApple OSS Distributions message.vm_op = VM_OP_UNMAP;
649*043036a2SApple OSS Distributions kr = mach_msg(&message.header, MACH_SEND_MSG, message.header.msgh_size, 0, MACH_PORT_NULL, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
650*043036a2SApple OSS Distributions if (kr != KERN_SUCCESS) {
651*043036a2SApple OSS Distributions T_LOG("ERROR: Failed to send message to client: (%d) %s\n", kr, mach_error_string(kr));
652*043036a2SApple OSS Distributions server_error_out(replyPort);
653*043036a2SApple OSS Distributions }
654*043036a2SApple OSS Distributions
655*043036a2SApple OSS Distributions mach_vm_deallocate(mach_task_self(), src, size);
656*043036a2SApple OSS Distributions
657*043036a2SApple OSS Distributions T_LOG("PASSED\n");
658*043036a2SApple OSS Distributions
659*043036a2SApple OSS Distributions remap_copy_pass_idx++;
660*043036a2SApple OSS Distributions modified_in_server = FALSE;
661*043036a2SApple OSS Distributions
662*043036a2SApple OSS Distributions /* Next remap pass to test (copy == TRUE). Send data out again to the other process to remap. */
663*043036a2SApple OSS Distributions goto remap_again;
664*043036a2SApple OSS Distributions }
665*043036a2SApple OSS Distributions
666*043036a2SApple OSS Distributions T_LOG("PASSED\n");
667*043036a2SApple OSS Distributions
668*043036a2SApple OSS Distributions /* Unmap old mapping in the other process. */
669*043036a2SApple OSS Distributions message.vm_op = VM_OP_UNMAP;
670*043036a2SApple OSS Distributions kr = mach_msg(&message.header, MACH_SEND_MSG, message.header.msgh_size, 0, MACH_PORT_NULL, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
671*043036a2SApple OSS Distributions if (kr != KERN_SUCCESS) {
672*043036a2SApple OSS Distributions T_LOG("ERROR: Failed to send message to client: (%d) %s\n", kr, mach_error_string(kr));
673*043036a2SApple OSS Distributions server_error_out(replyPort);
674*043036a2SApple OSS Distributions }
675*043036a2SApple OSS Distributions
676*043036a2SApple OSS Distributions free(reply);
677*043036a2SApple OSS Distributions reply = NULL;
678*043036a2SApple OSS Distributions
679*043036a2SApple OSS Distributions mach_server_data_cleanup(buffer, src, size);
680*043036a2SApple OSS Distributions buffer = NULL;
681*043036a2SApple OSS Distributions
682*043036a2SApple OSS Distributions if (debug) {
683*043036a2SApple OSS Distributions T_LOG("*************** vm_remap_test END ***************\n");
684*043036a2SApple OSS Distributions }
685*043036a2SApple OSS Distributions }
686