xref: /xnu-10002.81.5/tests/vm_memory_tests_src/common.c (revision 5e3eaea39dcf651e66cb99ba7d70e32cc4a99587)
1*5e3eaea3SApple OSS Distributions #include "mach_vm_tests.h"
2*5e3eaea3SApple OSS Distributions #include "unistd.h"
3*5e3eaea3SApple OSS Distributions 
4*5e3eaea3SApple OSS Distributions #define TEST_TXT_FILE "/tmp/xnu.vm.sharing.test.txt"
5*5e3eaea3SApple OSS Distributions 
6*5e3eaea3SApple OSS Distributions static const char * lorem_text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. \
7*5e3eaea3SApple OSS Distributions Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate\
8*5e3eaea3SApple OSS Distributions velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.";
9*5e3eaea3SApple OSS Distributions 
10*5e3eaea3SApple OSS Distributions 
11*5e3eaea3SApple OSS Distributions static int fd = 0;
12*5e3eaea3SApple OSS Distributions static struct stat sb;
13*5e3eaea3SApple OSS Distributions mach_port_t persistentReplyPort;
14*5e3eaea3SApple OSS Distributions 
15*5e3eaea3SApple OSS Distributions int
mach_server_data_setup(void ** buffer)16*5e3eaea3SApple OSS Distributions mach_server_data_setup(void **buffer)
17*5e3eaea3SApple OSS Distributions {
18*5e3eaea3SApple OSS Distributions 	if (0 != access(TEST_TXT_FILE, F_OK)) {
19*5e3eaea3SApple OSS Distributions 		/* create a test file */
20*5e3eaea3SApple OSS Distributions 		const size_t lorem_text_length = strlen(lorem_text);
21*5e3eaea3SApple OSS Distributions 		int w_fd = open(TEST_TXT_FILE, O_WRONLY | O_CREAT | O_TRUNC, (mode_t)0666);
22*5e3eaea3SApple OSS Distributions 		size_t required_length = 450783;
23*5e3eaea3SApple OSS Distributions 		assert(w_fd >= 0);
24*5e3eaea3SApple OSS Distributions 		size_t bytes_written = 0;
25*5e3eaea3SApple OSS Distributions 		while (bytes_written < required_length) {
26*5e3eaea3SApple OSS Distributions 			bytes_written += (size_t)write(w_fd, &lorem_text[0], (size_t)(lorem_text_length - 1));
27*5e3eaea3SApple OSS Distributions 			if ((bytes_written + lorem_text_length) > required_length) {
28*5e3eaea3SApple OSS Distributions 				bytes_written += (size_t)write(w_fd, &lorem_text[0], (size_t)(required_length - bytes_written));
29*5e3eaea3SApple OSS Distributions 				break;
30*5e3eaea3SApple OSS Distributions 			}
31*5e3eaea3SApple OSS Distributions 		}
32*5e3eaea3SApple OSS Distributions 		close(w_fd);
33*5e3eaea3SApple OSS Distributions 	}
34*5e3eaea3SApple OSS Distributions 
35*5e3eaea3SApple OSS Distributions 	/* Sample data set needs to be mapped in our space */
36*5e3eaea3SApple OSS Distributions 	fd = open(TEST_TXT_FILE, O_RDONLY | O_EXCL, 0666);
37*5e3eaea3SApple OSS Distributions 
38*5e3eaea3SApple OSS Distributions 	if (fd < 0) {
39*5e3eaea3SApple OSS Distributions 		printf("mach_server_data_setup: cannot open file %s - %d (%s).\n", TEST_TXT_FILE, errno, strerror(errno));
40*5e3eaea3SApple OSS Distributions 		return errno;
41*5e3eaea3SApple OSS Distributions 	}
42*5e3eaea3SApple OSS Distributions 
43*5e3eaea3SApple OSS Distributions 	if (fstat(fd, &sb) < 0) {
44*5e3eaea3SApple OSS Distributions 		printf("mach_server_data_setup: cannot stat file %s - %d (%s).\n", TEST_TXT_FILE, errno, strerror(errno));
45*5e3eaea3SApple OSS Distributions 		return errno;
46*5e3eaea3SApple OSS Distributions 	}
47*5e3eaea3SApple OSS Distributions 
48*5e3eaea3SApple OSS Distributions #if MMAP_PATH
49*5e3eaea3SApple OSS Distributions 	*buffer = mmap(NULL, sb.st_size, PROT_READ, MAP_FILE | MAP_PRIVATE, fd, 0);
50*5e3eaea3SApple OSS Distributions 
51*5e3eaea3SApple OSS Distributions 	if (*buffer == MAP_FAILED) {
52*5e3eaea3SApple OSS Distributions 		printf("mach_server_remap: mmap failed - %d (%s).\n", errno, strerror(errno));
53*5e3eaea3SApple OSS Distributions 		*buffer = NULL;
54*5e3eaea3SApple OSS Distributions 	}
55*5e3eaea3SApple OSS Distributions #else
56*5e3eaea3SApple OSS Distributions 	kern_return_t kr = KERN_SUCCESS;
57*5e3eaea3SApple OSS Distributions 	kr = mach_vm_allocate(mach_task_self(), (mach_vm_address_t *)buffer, (mach_vm_size_t)sb.st_size, VM_FLAGS_ANYWHERE);
58*5e3eaea3SApple OSS Distributions 	assert(kr == KERN_SUCCESS);
59*5e3eaea3SApple OSS Distributions #endif
60*5e3eaea3SApple OSS Distributions 	return 0;
61*5e3eaea3SApple OSS Distributions }
62*5e3eaea3SApple OSS Distributions 
63*5e3eaea3SApple OSS Distributions void
mach_server_data_cleanup(void * buffer,mach_vm_address_t src,mach_vm_size_t size)64*5e3eaea3SApple OSS Distributions mach_server_data_cleanup(void *buffer, mach_vm_address_t src, mach_vm_size_t size)
65*5e3eaea3SApple OSS Distributions {
66*5e3eaea3SApple OSS Distributions #if MMAP_PATH
67*5e3eaea3SApple OSS Distributions 	if (buffer) {
68*5e3eaea3SApple OSS Distributions 		munmap(buffer, sb.st_size);
69*5e3eaea3SApple OSS Distributions 	}
70*5e3eaea3SApple OSS Distributions #else
71*5e3eaea3SApple OSS Distributions 	mach_vm_deallocate(mach_task_self(), (mach_vm_address_t)buffer, (mach_vm_size_t)sb.st_size);
72*5e3eaea3SApple OSS Distributions #endif
73*5e3eaea3SApple OSS Distributions 
74*5e3eaea3SApple OSS Distributions 	if (src) {
75*5e3eaea3SApple OSS Distributions 		mach_vm_deallocate(mach_task_self(), src, size);
76*5e3eaea3SApple OSS Distributions 	}
77*5e3eaea3SApple OSS Distributions 
78*5e3eaea3SApple OSS Distributions 	if (fd > 2) {
79*5e3eaea3SApple OSS Distributions 		close(fd);
80*5e3eaea3SApple OSS Distributions 	}
81*5e3eaea3SApple OSS Distributions }
82*5e3eaea3SApple OSS Distributions 
83*5e3eaea3SApple OSS Distributions void
mach_server_construct_header(ipc_message_t * message,mach_port_t replyPort)84*5e3eaea3SApple OSS Distributions mach_server_construct_header(ipc_message_t *message, mach_port_t replyPort)
85*5e3eaea3SApple OSS Distributions {
86*5e3eaea3SApple OSS Distributions 	bzero(message, sizeof(*message));
87*5e3eaea3SApple OSS Distributions 	message->header.msgh_bits = MACH_MSGH_BITS(MACH_MSG_TYPE_COPY_SEND, MACH_MSG_TYPE_MAKE_SEND_ONCE) | MACH_MSGH_BITS_COMPLEX;
88*5e3eaea3SApple OSS Distributions 	message->header.msgh_remote_port = persistentReplyPort;//serverPort;
89*5e3eaea3SApple OSS Distributions 	message->header.msgh_local_port = replyPort;
90*5e3eaea3SApple OSS Distributions 	message->header.msgh_size = sizeof(*message);
91*5e3eaea3SApple OSS Distributions 	message->header.msgh_id = 1;
92*5e3eaea3SApple OSS Distributions }
93*5e3eaea3SApple OSS Distributions 
94*5e3eaea3SApple OSS Distributions void
mach_server_contruct_payload(ipc_message_t * message,mach_vm_address_t src,mach_port_t port,mach_vm_size_t size,mach_vm_offset_t misoffset,boolean_t copy,int vm_op)95*5e3eaea3SApple OSS Distributions mach_server_contruct_payload(ipc_message_t         *message,
96*5e3eaea3SApple OSS Distributions     mach_vm_address_t       src,
97*5e3eaea3SApple OSS Distributions     mach_port_t                     port,
98*5e3eaea3SApple OSS Distributions     mach_vm_size_t          size,
99*5e3eaea3SApple OSS Distributions     mach_vm_offset_t        misoffset,
100*5e3eaea3SApple OSS Distributions     boolean_t                       copy,
101*5e3eaea3SApple OSS Distributions     int                                     vm_op)
102*5e3eaea3SApple OSS Distributions {
103*5e3eaea3SApple OSS Distributions 	if (port == MACH_PORT_NULL) {
104*5e3eaea3SApple OSS Distributions 		message->address = src;//LD TODO: (src + 8193);
105*5e3eaea3SApple OSS Distributions 	} else {
106*5e3eaea3SApple OSS Distributions 		message->body.msgh_descriptor_count = 1;
107*5e3eaea3SApple OSS Distributions 		message->port_descriptor.name = port;
108*5e3eaea3SApple OSS Distributions 		message->port_descriptor.disposition = MACH_MSG_TYPE_COPY_SEND;
109*5e3eaea3SApple OSS Distributions 		message->port_descriptor.type = MACH_MSG_PORT_DESCRIPTOR;
110*5e3eaea3SApple OSS Distributions 	}
111*5e3eaea3SApple OSS Distributions 
112*5e3eaea3SApple OSS Distributions 	message->pid = (uint64_t)getpid();
113*5e3eaea3SApple OSS Distributions 	message->size = size;
114*5e3eaea3SApple OSS Distributions 	message->vm_op = vm_op;
115*5e3eaea3SApple OSS Distributions 	message->copy = copy;
116*5e3eaea3SApple OSS Distributions 	message->misoffset = misoffset;
117*5e3eaea3SApple OSS Distributions }
118*5e3eaea3SApple OSS Distributions 
119*5e3eaea3SApple OSS Distributions void
mach_server_create_allocation(mach_vm_address_t * src,mach_vm_size_t size,void * buffer)120*5e3eaea3SApple OSS Distributions mach_server_create_allocation(mach_vm_address_t *src, mach_vm_size_t size, void *buffer)
121*5e3eaea3SApple OSS Distributions {
122*5e3eaea3SApple OSS Distributions 	kern_return_t       kr = KERN_SUCCESS;
123*5e3eaea3SApple OSS Distributions 	mach_vm_size_t      chunk_size = 0;
124*5e3eaea3SApple OSS Distributions 	unsigned int        chunk_count = 0;
125*5e3eaea3SApple OSS Distributions 	mach_vm_address_t   localsrc = 0;
126*5e3eaea3SApple OSS Distributions 
127*5e3eaea3SApple OSS Distributions 	kr = mach_vm_allocate(mach_task_self(), &localsrc, size, VM_FLAGS_ANYWHERE);
128*5e3eaea3SApple OSS Distributions 	assert(KERN_SUCCESS == kr);
129*5e3eaea3SApple OSS Distributions 
130*5e3eaea3SApple OSS Distributions 	chunk_size = MIN(size, (mach_vm_size_t)sb.st_size);
131*5e3eaea3SApple OSS Distributions 
132*5e3eaea3SApple OSS Distributions 	if (chunk_size == 0) {
133*5e3eaea3SApple OSS Distributions 		printf("mach_server_remap: Input size is 0\n");
134*5e3eaea3SApple OSS Distributions 		exit(0);
135*5e3eaea3SApple OSS Distributions 	}
136*5e3eaea3SApple OSS Distributions 
137*5e3eaea3SApple OSS Distributions 	chunk_count = (unsigned int)(size / (mach_vm_size_t)sb.st_size);
138*5e3eaea3SApple OSS Distributions 
139*5e3eaea3SApple OSS Distributions 	if (debug && 0) {
140*5e3eaea3SApple OSS Distributions 		printf("Chunks of size: 0x%llx and count: %d\n", chunk_size, chunk_count);
141*5e3eaea3SApple OSS Distributions 	}
142*5e3eaea3SApple OSS Distributions 
143*5e3eaea3SApple OSS Distributions 	for (unsigned int i = 0; i < chunk_count; i++) {
144*5e3eaea3SApple OSS Distributions 		memcpy((void*)(localsrc + (i * chunk_size)), buffer, chunk_size);
145*5e3eaea3SApple OSS Distributions 	}
146*5e3eaea3SApple OSS Distributions 
147*5e3eaea3SApple OSS Distributions 	*src = localsrc;
148*5e3eaea3SApple OSS Distributions }
149*5e3eaea3SApple OSS Distributions 
150*5e3eaea3SApple OSS Distributions void
server_error_out(mach_port_t port)151*5e3eaea3SApple OSS Distributions server_error_out(mach_port_t port)
152*5e3eaea3SApple OSS Distributions {
153*5e3eaea3SApple OSS Distributions 	/* All done here...*/
154*5e3eaea3SApple OSS Distributions 	kern_return_t ret;
155*5e3eaea3SApple OSS Distributions 
156*5e3eaea3SApple OSS Distributions 	mach_msg_size_t messageSize = sizeof(ipc_message_t) + sizeof(mach_msg_trailer_t) + 64;
157*5e3eaea3SApple OSS Distributions 	ipc_message_t *message = (ipc_message_t *)calloc(1, messageSize);
158*5e3eaea3SApple OSS Distributions 
159*5e3eaea3SApple OSS Distributions 	message->header.msgh_bits = MACH_MSGH_BITS_ZERO;
160*5e3eaea3SApple OSS Distributions 	message->header.msgh_size = messageSize;
161*5e3eaea3SApple OSS Distributions 	message->header.msgh_remote_port = MACH_PORT_NULL;
162*5e3eaea3SApple OSS Distributions 	message->header.msgh_local_port = port;
163*5e3eaea3SApple OSS Distributions 
164*5e3eaea3SApple OSS Distributions 	mach_server_construct_header(message, port);
165*5e3eaea3SApple OSS Distributions 	message->vm_op = VM_OP_EXIT_ERROR;
166*5e3eaea3SApple 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);
167*5e3eaea3SApple OSS Distributions 	if (ret != KERN_SUCCESS) {
168*5e3eaea3SApple OSS Distributions 		T_LOG("ERROR: Failed to send message to client: (%d) %s\n", ret, mach_error_string(ret));
169*5e3eaea3SApple OSS Distributions 		exit(1);
170*5e3eaea3SApple OSS Distributions 	}
171*5e3eaea3SApple OSS Distributions 	T_LOG("server_error_out. abort()\n");
172*5e3eaea3SApple OSS Distributions 	abort();
173*5e3eaea3SApple OSS Distributions }
174