]> git.saurik.com Git - apple/xnu.git/blob - osfmk/x86_64/copyio.c
xnu-2782.30.5.tar.gz
[apple/xnu.git] / osfmk / x86_64 / copyio.c
1 /*
2 * Copyright (c) 2009 Apple Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28 #include <mach_assert.h>
29
30 #include <sys/errno.h>
31 #include <i386/param.h>
32 #include <i386/misc_protos.h>
33 #include <i386/cpu_data.h>
34 #include <i386/machine_routines.h>
35 #include <i386/cpuid.h>
36 #include <i386/vmx.h>
37 #include <vm/pmap.h>
38 #include <vm/vm_map.h>
39 #include <vm/vm_kern.h>
40 #include <vm/vm_fault.h>
41
42 #include <sys/kdebug.h>
43
44 static int copyio(int, user_addr_t, char *, vm_size_t, vm_size_t *, int);
45 static int copyio_phys(addr64_t, addr64_t, vm_size_t, int);
46
47 /*
48 * The copy engine has the following characteristics
49 * - copyio() handles copies to/from user or kernel space
50 * - copypv() deals with physical or virtual addresses
51 *
52 * Readers familiar with the 32-bit kernel will expect Joe's thesis at this
53 * point describing the full glory of the copy window implementation. In K64,
54 * however, there is no need for windowing. Thanks to the vast shared address
55 * space, the kernel has direct access to userspace and to physical memory.
56 *
57 * User virtual addresses are accessible provided the user's cr3 is loaded.
58 * Physical addresses are accessible via the direct map and the PHYSMAP_PTOV()
59 * translation.
60 *
61 * Copyin/out variants all boil done to just these 2 routines in locore.s which
62 * provide fault-recoverable copying:
63 */
64 extern int _bcopy(const void *, void *, vm_size_t);
65 extern int _bcopystr(const void *, void *, vm_size_t, vm_size_t *);
66
67
68 /*
69 * Types of copies:
70 */
71 #define COPYIN 0 /* from user virtual to kernel virtual */
72 #define COPYOUT 1 /* from kernel virtual to user virtual */
73 #define COPYINSTR 2 /* string variant of copyout */
74 #define COPYINPHYS 3 /* from user virtual to kernel physical */
75 #define COPYOUTPHYS 4 /* from kernel physical to user virtual */
76
77 #if DEVELOPMENT
78 typedef struct {
79 uint64_t timestamp;
80 thread_t thread;
81 uintptr_t cr4;
82 uint8_t cpuid;
83 uint8_t smap_state;
84 uint8_t copyio_active;
85 } smaplog_entry_t;
86
87 #define SMAPLOG_BUFFER_SIZE (50)
88 static smaplog_entry_t smaplog_cbuf[SMAPLOG_BUFFER_SIZE];
89 static uint32_t smaplog_head = 0;
90
91 static void
92 smaplog_add_entry(boolean_t enabling)
93 {
94 uint32_t index = 0;
95 thread_t thread = current_thread();
96
97 do {
98 index = smaplog_head;
99 } while (!OSCompareAndSwap(index, (index + 1) % SMAPLOG_BUFFER_SIZE, &smaplog_head));
100
101 assert(index < SMAPLOG_BUFFER_SIZE);
102 assert(smaplog_head < SMAPLOG_BUFFER_SIZE);
103 assert(thread);
104
105 smaplog_cbuf[index].timestamp = mach_absolute_time();
106 smaplog_cbuf[index].thread = thread;
107 smaplog_cbuf[index].cpuid = cpu_number();
108 smaplog_cbuf[index].cr4 = get_cr4();
109 smaplog_cbuf[index].smap_state = enabling;
110 smaplog_cbuf[index].copyio_active = (thread->machine.specFlags & CopyIOActive) ? 1 : 0;
111 }
112 #endif /* DEVELOPMENT */
113
114 extern boolean_t pmap_smap_enabled;
115 static inline void user_access_enable(void) {
116 if (pmap_smap_enabled) {
117 stac();
118 #if DEVELOPMENT
119 smaplog_add_entry(TRUE);
120 #endif
121 }
122 }
123 static inline void user_access_disable(void) {
124 if (pmap_smap_enabled) {
125 clac();
126 #if DEVELOPMENT
127 smaplog_add_entry(FALSE);
128 #endif
129 }
130 }
131
132 static int
133 copyio(int copy_type, user_addr_t user_addr, char *kernel_addr,
134 vm_size_t nbytes, vm_size_t *lencopied, int use_kernel_map)
135 {
136 thread_t thread;
137 pmap_t pmap;
138 vm_size_t bytes_copied;
139 int error = 0;
140 boolean_t istate = FALSE;
141 boolean_t recursive_CopyIOActive;
142 #if KDEBUG
143 int debug_type = 0xeff70010;
144 debug_type += (copy_type << 2);
145 #endif
146
147 thread = current_thread();
148
149 KERNEL_DEBUG(debug_type | DBG_FUNC_START,
150 (unsigned)(user_addr >> 32), (unsigned)user_addr,
151 nbytes, thread->machine.copyio_state, 0);
152
153 if (nbytes == 0)
154 goto out;
155
156 pmap = thread->map->pmap;
157
158 if ((copy_type != COPYINPHYS) && (copy_type != COPYOUTPHYS) && ((vm_offset_t)kernel_addr < VM_MIN_KERNEL_AND_KEXT_ADDRESS)) {
159 panic("Invalid copy parameter, copy type: %d, kernel address: %p", copy_type, kernel_addr);
160 }
161
162 /* Sanity and security check for addresses to/from a user */
163
164 if (((pmap != kernel_pmap) && (use_kernel_map == 0)) &&
165 ((nbytes && (user_addr+nbytes <= user_addr)) || ((user_addr + nbytes) > vm_map_max(thread->map)))) {
166 error = EFAULT;
167 goto out;
168 }
169
170 /*
171 * If the no_shared_cr3 boot-arg is set (true), the kernel runs on
172 * its own pmap and cr3 rather than the user's -- so that wild accesses
173 * from kernel or kexts can be trapped. So, during copyin and copyout,
174 * we need to switch back to the user's map/cr3. The thread is flagged
175 * "CopyIOActive" at this time so that if the thread is pre-empted,
176 * we will later restore the correct cr3.
177 */
178 recursive_CopyIOActive = thread->machine.specFlags & CopyIOActive;
179 thread->machine.specFlags |= CopyIOActive;
180 user_access_enable();
181 if (no_shared_cr3) {
182 istate = ml_set_interrupts_enabled(FALSE);
183 if (get_cr3_base() != pmap->pm_cr3)
184 set_cr3_raw(pmap->pm_cr3);
185 }
186
187 /*
188 * Ensure that we're running on the target thread's cr3.
189 */
190 if ((pmap != kernel_pmap) && !use_kernel_map &&
191 (get_cr3_base() != pmap->pm_cr3)) {
192 panic("copyio(%d,%p,%p,%ld,%p,%d) cr3 is %p expects %p",
193 copy_type, (void *)user_addr, kernel_addr, nbytes, lencopied, use_kernel_map,
194 (void *) get_cr3_raw(), (void *) pmap->pm_cr3);
195 }
196 if (no_shared_cr3)
197 (void) ml_set_interrupts_enabled(istate);
198
199 KERNEL_DEBUG(0xeff70044 | DBG_FUNC_NONE, (unsigned)user_addr,
200 (unsigned)kernel_addr, nbytes, 0, 0);
201
202 switch (copy_type) {
203
204 case COPYIN:
205 error = _bcopy((const void *) user_addr,
206 kernel_addr,
207 nbytes);
208 break;
209
210 case COPYOUT:
211 error = _bcopy(kernel_addr,
212 (void *) user_addr,
213 nbytes);
214 break;
215
216 case COPYINPHYS:
217 error = _bcopy((const void *) user_addr,
218 PHYSMAP_PTOV(kernel_addr),
219 nbytes);
220 break;
221
222 case COPYOUTPHYS:
223 error = _bcopy((const void *) PHYSMAP_PTOV(kernel_addr),
224 (void *) user_addr,
225 nbytes);
226 break;
227
228 case COPYINSTR:
229 error = _bcopystr((const void *) user_addr,
230 kernel_addr,
231 (int) nbytes,
232 &bytes_copied);
233
234 /*
235 * lencopied should be updated on success
236 * or ENAMETOOLONG... but not EFAULT
237 */
238 if (error != EFAULT)
239 *lencopied = bytes_copied;
240
241 if (error) {
242 #if KDEBUG
243 nbytes = *lencopied;
244 #endif
245 break;
246 }
247 if (*(kernel_addr + bytes_copied - 1) == 0) {
248 /*
249 * we found a NULL terminator... we're done
250 */
251 #if KDEBUG
252 nbytes = *lencopied;
253 #endif
254 break;
255 } else {
256 /*
257 * no more room in the buffer and we haven't
258 * yet come across a NULL terminator
259 */
260 #if KDEBUG
261 nbytes = *lencopied;
262 #endif
263 error = ENAMETOOLONG;
264 break;
265 }
266 break;
267 }
268
269 user_access_disable();
270 if (!recursive_CopyIOActive) {
271 thread->machine.specFlags &= ~CopyIOActive;
272 }
273 if (no_shared_cr3) {
274 istate = ml_set_interrupts_enabled(FALSE);
275 if (get_cr3_raw() != kernel_pmap->pm_cr3)
276 set_cr3_raw(kernel_pmap->pm_cr3);
277 (void) ml_set_interrupts_enabled(istate);
278 }
279
280 out:
281 KERNEL_DEBUG(debug_type | DBG_FUNC_END, (unsigned)user_addr,
282 (unsigned)kernel_addr, (unsigned)nbytes, error, 0);
283
284 return (error);
285 }
286
287
288 static int
289 copyio_phys(addr64_t source, addr64_t sink, vm_size_t csize, int which)
290 {
291 char *paddr;
292 user_addr_t vaddr;
293 int ctype;
294
295 if (which & cppvPsnk) {
296 paddr = (char *)sink;
297 vaddr = (user_addr_t)source;
298 ctype = COPYINPHYS;
299 } else {
300 paddr = (char *)source;
301 vaddr = (user_addr_t)sink;
302 ctype = COPYOUTPHYS;
303 }
304 return copyio(ctype, vaddr, paddr, csize, NULL, which & cppvKmap);
305 }
306
307 int
308 copyinmsg(const user_addr_t user_addr, char *kernel_addr, mach_msg_size_t nbytes)
309 {
310 return copyio(COPYIN, user_addr, kernel_addr, nbytes, NULL, 0);
311 }
312
313 int
314 copyin(const user_addr_t user_addr, char *kernel_addr, vm_size_t nbytes)
315 {
316 return copyio(COPYIN, user_addr, kernel_addr, nbytes, NULL, 0);
317 }
318
319 int
320 copyinstr(const user_addr_t user_addr, char *kernel_addr, vm_size_t nbytes, vm_size_t *lencopied)
321 {
322 *lencopied = 0;
323
324 return copyio(COPYINSTR, user_addr, kernel_addr, nbytes, lencopied, 0);
325 }
326
327 int
328 copyoutmsg(const char *kernel_addr, user_addr_t user_addr, mach_msg_size_t nbytes)
329 {
330 return copyio(COPYOUT, user_addr, (char *)(uintptr_t)kernel_addr, nbytes, NULL, 0);
331 }
332
333 int
334 copyout(const void *kernel_addr, user_addr_t user_addr, vm_size_t nbytes)
335 {
336 return copyio(COPYOUT, user_addr, (char *)(uintptr_t)kernel_addr, nbytes, NULL, 0);
337 }
338
339
340 kern_return_t
341 copypv(addr64_t src64, addr64_t snk64, unsigned int size, int which)
342 {
343 unsigned int lop, csize;
344 int bothphys = 0;
345
346 KERNEL_DEBUG(0xeff7004c | DBG_FUNC_START, (unsigned)src64,
347 (unsigned)snk64, size, which, 0);
348
349 if ((which & (cppvPsrc | cppvPsnk)) == 0 ) /* Make sure that only one is virtual */
350 panic("copypv: no more than 1 parameter may be virtual\n"); /* Not allowed */
351
352 if ((which & (cppvPsrc | cppvPsnk)) == (cppvPsrc | cppvPsnk))
353 bothphys = 1; /* both are physical */
354
355 while (size) {
356
357 if (bothphys) {
358 lop = (unsigned int)(PAGE_SIZE - (snk64 & (PAGE_SIZE - 1))); /* Assume sink smallest */
359
360 if (lop > (unsigned int)(PAGE_SIZE - (src64 & (PAGE_SIZE - 1))))
361 lop = (unsigned int)(PAGE_SIZE - (src64 & (PAGE_SIZE - 1))); /* No, source is smaller */
362 } else {
363 /*
364 * only need to compute the resid for the physical page
365 * address... we don't care about where we start/finish in
366 * the virtual since we just call the normal copyin/copyout
367 */
368 if (which & cppvPsrc)
369 lop = (unsigned int)(PAGE_SIZE - (src64 & (PAGE_SIZE - 1)));
370 else
371 lop = (unsigned int)(PAGE_SIZE - (snk64 & (PAGE_SIZE - 1)));
372 }
373 csize = size; /* Assume we can copy it all */
374 if (lop < size)
375 csize = lop; /* Nope, we can't do it all */
376 #if 0
377 /*
378 * flush_dcache64 is currently a nop on the i386...
379 * it's used when copying to non-system memory such
380 * as video capture cards... on PPC there was a need
381 * to flush due to how we mapped this memory... not
382 * sure if it's needed on i386.
383 */
384 if (which & cppvFsrc)
385 flush_dcache64(src64, csize, 1); /* If requested, flush source before move */
386 if (which & cppvFsnk)
387 flush_dcache64(snk64, csize, 1); /* If requested, flush sink before move */
388 #endif
389 if (bothphys)
390 bcopy_phys(src64, snk64, csize); /* Do a physical copy, virtually */
391 else {
392 if (copyio_phys(src64, snk64, csize, which))
393 return (KERN_FAILURE);
394 }
395 #if 0
396 if (which & cppvFsrc)
397 flush_dcache64(src64, csize, 1); /* If requested, flush source after move */
398 if (which & cppvFsnk)
399 flush_dcache64(snk64, csize, 1); /* If requested, flush sink after move */
400 #endif
401 size -= csize; /* Calculate what is left */
402 snk64 += csize; /* Bump sink to next physical address */
403 src64 += csize; /* Bump source to next physical address */
404 }
405 KERNEL_DEBUG(0xeff7004c | DBG_FUNC_END, (unsigned)src64,
406 (unsigned)snk64, size, which, 0);
407
408 return KERN_SUCCESS;
409 }