sys_machdep.c revision 1.46 1 1.46 maxv /* $NetBSD: sys_machdep.c,v 1.46 2018/01/04 14:02:23 maxv Exp $ */
2 1.1 ad
3 1.38 maxv /*
4 1.38 maxv * Copyright (c) 1998, 2007, 2009, 2017 The NetBSD Foundation, Inc.
5 1.1 ad * All rights reserved.
6 1.1 ad *
7 1.1 ad * This code is derived from software contributed to The NetBSD Foundation
8 1.38 maxv * by Charles M. Hannum, by Andrew Doran, and by Maxime Villard.
9 1.1 ad *
10 1.1 ad * Redistribution and use in source and binary forms, with or without
11 1.1 ad * modification, are permitted provided that the following conditions
12 1.1 ad * are met:
13 1.1 ad * 1. Redistributions of source code must retain the above copyright
14 1.1 ad * notice, this list of conditions and the following disclaimer.
15 1.1 ad * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 ad * notice, this list of conditions and the following disclaimer in the
17 1.1 ad * documentation and/or other materials provided with the distribution.
18 1.1 ad *
19 1.1 ad * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 ad * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 ad * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 ad * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 ad * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 ad * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 ad * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 ad * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 ad * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 ad * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 ad * POSSIBILITY OF SUCH DAMAGE.
30 1.1 ad */
31 1.1 ad
32 1.1 ad #include <sys/cdefs.h>
33 1.46 maxv __KERNEL_RCSID(0, "$NetBSD: sys_machdep.c,v 1.46 2018/01/04 14:02:23 maxv Exp $");
34 1.1 ad
35 1.1 ad #include "opt_mtrr.h"
36 1.36 maxv #include "opt_pmc.h"
37 1.1 ad #include "opt_user_ldt.h"
38 1.27 christos #include "opt_compat_netbsd.h"
39 1.1 ad #include "opt_xen.h"
40 1.1 ad
41 1.1 ad #include <sys/param.h>
42 1.1 ad #include <sys/systm.h>
43 1.1 ad #include <sys/ioctl.h>
44 1.1 ad #include <sys/file.h>
45 1.1 ad #include <sys/time.h>
46 1.1 ad #include <sys/proc.h>
47 1.1 ad #include <sys/uio.h>
48 1.1 ad #include <sys/kernel.h>
49 1.1 ad #include <sys/buf.h>
50 1.1 ad #include <sys/signal.h>
51 1.1 ad #include <sys/malloc.h>
52 1.9 yamt #include <sys/kmem.h>
53 1.1 ad #include <sys/kauth.h>
54 1.17 ad #include <sys/cpu.h>
55 1.1 ad #include <sys/mount.h>
56 1.1 ad #include <sys/syscallargs.h>
57 1.1 ad
58 1.1 ad #include <uvm/uvm_extern.h>
59 1.1 ad
60 1.1 ad #include <machine/cpufunc.h>
61 1.1 ad #include <machine/gdt.h>
62 1.1 ad #include <machine/psl.h>
63 1.1 ad #include <machine/reg.h>
64 1.1 ad #include <machine/sysarch.h>
65 1.1 ad #include <machine/mtrr.h>
66 1.1 ad
67 1.1 ad #ifdef __x86_64__
68 1.40 maxv #undef IOPERM /* not implemented */
69 1.1 ad #else
70 1.9 yamt #if defined(XEN)
71 1.9 yamt #undef IOPERM
72 1.9 yamt #else /* defined(XEN) */
73 1.1 ad #define IOPERM
74 1.9 yamt #endif /* defined(XEN) */
75 1.1 ad #endif
76 1.1 ad
77 1.35 maxv #ifdef XEN
78 1.40 maxv #undef USER_LDT
79 1.35 maxv #undef PMC
80 1.35 maxv #endif
81 1.35 maxv
82 1.34 maxv #ifdef PMC
83 1.1 ad #include <machine/pmc.h>
84 1.1 ad #endif
85 1.1 ad
86 1.1 ad extern struct vm_map *kernel_map;
87 1.1 ad
88 1.1 ad int x86_get_ioperm(struct lwp *, void *, register_t *);
89 1.1 ad int x86_set_ioperm(struct lwp *, void *, register_t *);
90 1.1 ad int x86_get_mtrr(struct lwp *, void *, register_t *);
91 1.1 ad int x86_set_mtrr(struct lwp *, void *, register_t *);
92 1.24 chs int x86_set_sdbase32(void *, char, lwp_t *, bool);
93 1.18 ad int x86_set_sdbase(void *, char, lwp_t *, bool);
94 1.24 chs int x86_get_sdbase32(void *, char);
95 1.18 ad int x86_get_sdbase(void *, char);
96 1.1 ad
97 1.1 ad int
98 1.1 ad x86_get_ldt(struct lwp *l, void *args, register_t *retval)
99 1.1 ad {
100 1.2 dsl #ifndef USER_LDT
101 1.2 dsl return EINVAL;
102 1.2 dsl #else
103 1.2 dsl struct x86_get_ldt_args ua;
104 1.2 dsl union descriptor *cp;
105 1.2 dsl int error;
106 1.2 dsl
107 1.2 dsl if ((error = copyin(args, &ua, sizeof(ua))) != 0)
108 1.2 dsl return error;
109 1.2 dsl
110 1.2 dsl if (ua.num < 0 || ua.num > 8192)
111 1.2 dsl return EINVAL;
112 1.2 dsl
113 1.2 dsl cp = malloc(ua.num * sizeof(union descriptor), M_TEMP, M_WAITOK);
114 1.2 dsl if (cp == NULL)
115 1.2 dsl return ENOMEM;
116 1.2 dsl
117 1.2 dsl error = x86_get_ldt1(l, &ua, cp);
118 1.2 dsl *retval = ua.num;
119 1.2 dsl if (error == 0)
120 1.2 dsl error = copyout(cp, ua.desc, ua.num * sizeof(*cp));
121 1.2 dsl
122 1.2 dsl free(cp, M_TEMP);
123 1.2 dsl return error;
124 1.2 dsl #endif
125 1.2 dsl }
126 1.2 dsl
127 1.2 dsl int
128 1.2 dsl x86_get_ldt1(struct lwp *l, struct x86_get_ldt_args *ua, union descriptor *cp)
129 1.2 dsl {
130 1.2 dsl #ifndef USER_LDT
131 1.2 dsl return EINVAL;
132 1.2 dsl #else
133 1.1 ad int error;
134 1.1 ad struct proc *p = l->l_proc;
135 1.1 ad pmap_t pmap = p->p_vmspace->vm_map.pmap;
136 1.1 ad int nldt, num;
137 1.2 dsl union descriptor *lp;
138 1.1 ad
139 1.38 maxv #ifdef __x86_64__
140 1.38 maxv const size_t min_ldt_size = LDT_SIZE;
141 1.38 maxv #else
142 1.38 maxv const size_t min_ldt_size = NLDT * sizeof(union descriptor);
143 1.38 maxv #endif
144 1.38 maxv
145 1.1 ad error = kauth_authorize_machdep(l->l_cred, KAUTH_MACHDEP_LDT_GET,
146 1.1 ad NULL, NULL, NULL, NULL);
147 1.1 ad if (error)
148 1.38 maxv return error;
149 1.1 ad
150 1.2 dsl if (ua->start < 0 || ua->num < 0 || ua->start > 8192 || ua->num > 8192 ||
151 1.2 dsl ua->start + ua->num > 8192)
152 1.38 maxv return EINVAL;
153 1.1 ad
154 1.38 maxv if (ua->start * sizeof(union descriptor) < min_ldt_size)
155 1.32 maxv return EINVAL;
156 1.32 maxv
157 1.17 ad mutex_enter(&cpu_lock);
158 1.1 ad
159 1.17 ad if (pmap->pm_ldt != NULL) {
160 1.17 ad nldt = pmap->pm_ldt_len / sizeof(*lp);
161 1.1 ad lp = pmap->pm_ldt;
162 1.1 ad } else {
163 1.32 maxv #ifdef __x86_64__
164 1.32 maxv nldt = LDT_SIZE / sizeof(*lp);
165 1.32 maxv #else
166 1.1 ad nldt = NLDT;
167 1.32 maxv #endif
168 1.32 maxv lp = (union descriptor *)ldtstore;
169 1.1 ad }
170 1.1 ad
171 1.2 dsl if (ua->start > nldt) {
172 1.17 ad mutex_exit(&cpu_lock);
173 1.38 maxv return EINVAL;
174 1.1 ad }
175 1.1 ad
176 1.2 dsl lp += ua->start;
177 1.2 dsl num = min(ua->num, nldt - ua->start);
178 1.2 dsl ua->num = num;
179 1.1 ad
180 1.1 ad memcpy(cp, lp, num * sizeof(union descriptor));
181 1.17 ad mutex_exit(&cpu_lock);
182 1.1 ad
183 1.2 dsl return 0;
184 1.2 dsl #endif
185 1.2 dsl }
186 1.2 dsl
187 1.2 dsl int
188 1.2 dsl x86_set_ldt(struct lwp *l, void *args, register_t *retval)
189 1.2 dsl {
190 1.2 dsl #ifndef USER_LDT
191 1.2 dsl return EINVAL;
192 1.2 dsl #else
193 1.2 dsl struct x86_set_ldt_args ua;
194 1.2 dsl union descriptor *descv;
195 1.2 dsl int error;
196 1.2 dsl
197 1.2 dsl if ((error = copyin(args, &ua, sizeof(ua))) != 0)
198 1.38 maxv return error;
199 1.2 dsl
200 1.2 dsl if (ua.num < 0 || ua.num > 8192)
201 1.2 dsl return EINVAL;
202 1.2 dsl
203 1.2 dsl descv = malloc(sizeof (*descv) * ua.num, M_TEMP, M_NOWAIT);
204 1.2 dsl if (descv == NULL)
205 1.2 dsl return ENOMEM;
206 1.2 dsl
207 1.2 dsl error = copyin(ua.desc, descv, sizeof (*descv) * ua.num);
208 1.1 ad if (error == 0)
209 1.2 dsl error = x86_set_ldt1(l, &ua, descv);
210 1.2 dsl *retval = ua.start;
211 1.1 ad
212 1.2 dsl free(descv, M_TEMP);
213 1.2 dsl return error;
214 1.1 ad #endif
215 1.1 ad }
216 1.1 ad
217 1.1 ad int
218 1.2 dsl x86_set_ldt1(struct lwp *l, struct x86_set_ldt_args *ua,
219 1.2 dsl union descriptor *descv)
220 1.1 ad {
221 1.2 dsl #ifndef USER_LDT
222 1.2 dsl return EINVAL;
223 1.2 dsl #else
224 1.17 ad int error, i, n, old_sel, new_sel;
225 1.1 ad struct proc *p = l->l_proc;
226 1.1 ad pmap_t pmap = p->p_vmspace->vm_map.pmap;
227 1.17 ad size_t old_len, new_len;
228 1.17 ad union descriptor *old_ldt, *new_ldt;
229 1.1 ad
230 1.32 maxv #ifdef __x86_64__
231 1.32 maxv const size_t min_ldt_size = LDT_SIZE;
232 1.32 maxv #else
233 1.32 maxv const size_t min_ldt_size = NLDT * sizeof(union descriptor);
234 1.32 maxv #endif
235 1.32 maxv
236 1.1 ad error = kauth_authorize_machdep(l->l_cred, KAUTH_MACHDEP_LDT_SET,
237 1.1 ad NULL, NULL, NULL, NULL);
238 1.1 ad if (error)
239 1.38 maxv return error;
240 1.1 ad
241 1.2 dsl if (ua->start < 0 || ua->num < 0 || ua->start > 8192 || ua->num > 8192 ||
242 1.2 dsl ua->start + ua->num > 8192)
243 1.38 maxv return EINVAL;
244 1.1 ad
245 1.38 maxv if (ua->start * sizeof(union descriptor) < min_ldt_size)
246 1.32 maxv return EINVAL;
247 1.32 maxv
248 1.1 ad /* Check descriptors for access violations. */
249 1.2 dsl for (i = 0; i < ua->num; i++) {
250 1.1 ad union descriptor *desc = &descv[i];
251 1.1 ad
252 1.43 maxv #ifdef __x86_64__
253 1.43 maxv if (desc->sd.sd_long != 0)
254 1.43 maxv return EACCES;
255 1.43 maxv #endif
256 1.43 maxv
257 1.1 ad switch (desc->sd.sd_type) {
258 1.1 ad case SDT_SYSNULL:
259 1.1 ad desc->sd.sd_p = 0;
260 1.1 ad break;
261 1.1 ad case SDT_MEMEC:
262 1.1 ad case SDT_MEMEAC:
263 1.1 ad case SDT_MEMERC:
264 1.1 ad case SDT_MEMERAC:
265 1.1 ad /* Must be "present" if executable and conforming. */
266 1.2 dsl if (desc->sd.sd_p == 0)
267 1.2 dsl return EACCES;
268 1.1 ad break;
269 1.1 ad case SDT_MEMRO:
270 1.1 ad case SDT_MEMROA:
271 1.1 ad case SDT_MEMRW:
272 1.1 ad case SDT_MEMRWA:
273 1.1 ad case SDT_MEMROD:
274 1.1 ad case SDT_MEMRODA:
275 1.1 ad case SDT_MEMRWD:
276 1.1 ad case SDT_MEMRWDA:
277 1.1 ad case SDT_MEME:
278 1.1 ad case SDT_MEMEA:
279 1.1 ad case SDT_MEMER:
280 1.1 ad case SDT_MEMERA:
281 1.1 ad break;
282 1.1 ad default:
283 1.38 maxv return EACCES;
284 1.1 ad }
285 1.1 ad
286 1.1 ad if (desc->sd.sd_p != 0) {
287 1.1 ad /* Only user (ring-3) descriptors may be present. */
288 1.2 dsl if (desc->sd.sd_dpl != SEL_UPL)
289 1.2 dsl return EACCES;
290 1.1 ad }
291 1.1 ad }
292 1.1 ad
293 1.17 ad /*
294 1.17 ad * Install selected changes. We perform a copy, write, swap dance
295 1.17 ad * here to ensure that all updates happen atomically.
296 1.17 ad */
297 1.17 ad
298 1.17 ad /* Allocate a new LDT. */
299 1.17 ad for (;;) {
300 1.17 ad new_len = (ua->start + ua->num) * sizeof(union descriptor);
301 1.17 ad new_len = max(new_len, pmap->pm_ldt_len);
302 1.32 maxv new_len = max(new_len, min_ldt_size);
303 1.17 ad new_len = round_page(new_len);
304 1.1 ad new_ldt = (union descriptor *)uvm_km_alloc(kernel_map,
305 1.30 dholland new_len, 0, UVM_KMF_WIRED | UVM_KMF_ZERO | UVM_KMF_WAITVA);
306 1.17 ad mutex_enter(&cpu_lock);
307 1.17 ad if (pmap->pm_ldt_len <= new_len) {
308 1.17 ad break;
309 1.1 ad }
310 1.17 ad mutex_exit(&cpu_lock);
311 1.17 ad uvm_km_free(kernel_map, (vaddr_t)new_ldt, new_len,
312 1.17 ad UVM_KMF_WIRED);
313 1.17 ad }
314 1.1 ad
315 1.17 ad /* Copy existing entries, if any. */
316 1.17 ad if (pmap->pm_ldt != NULL) {
317 1.1 ad old_ldt = pmap->pm_ldt;
318 1.17 ad old_len = pmap->pm_ldt_len;
319 1.17 ad old_sel = pmap->pm_ldt_sel;
320 1.1 ad memcpy(new_ldt, old_ldt, old_len);
321 1.17 ad } else {
322 1.17 ad old_ldt = NULL;
323 1.17 ad old_len = 0;
324 1.17 ad old_sel = -1;
325 1.32 maxv memcpy(new_ldt, ldtstore, min_ldt_size);
326 1.17 ad }
327 1.1 ad
328 1.17 ad /* Apply requested changes. */
329 1.17 ad for (i = 0, n = ua->start; i < ua->num; i++, n++) {
330 1.17 ad new_ldt[n] = descv[i];
331 1.17 ad }
332 1.1 ad
333 1.17 ad /* Allocate LDT selector. */
334 1.17 ad new_sel = ldt_alloc(new_ldt, new_len);
335 1.17 ad if (new_sel == -1) {
336 1.17 ad mutex_exit(&cpu_lock);
337 1.1 ad uvm_km_free(kernel_map, (vaddr_t)new_ldt, new_len,
338 1.1 ad UVM_KMF_WIRED);
339 1.17 ad return ENOMEM;
340 1.17 ad }
341 1.17 ad
342 1.17 ad /* All changes are now globally visible. Swap in the new LDT. */
343 1.17 ad pmap->pm_ldt_len = new_len;
344 1.17 ad pmap->pm_ldt_sel = new_sel;
345 1.30 dholland /* membar_store_store for pmap_fork() to read these unlocked safely */
346 1.30 dholland membar_producer();
347 1.30 dholland pmap->pm_ldt = new_ldt;
348 1.17 ad
349 1.17 ad /* Switch existing users onto new LDT. */
350 1.17 ad pmap_ldt_sync(pmap);
351 1.17 ad
352 1.17 ad /* Free existing LDT (if any). */
353 1.17 ad if (old_ldt != NULL) {
354 1.17 ad ldt_free(old_sel);
355 1.30 dholland /* exit the mutex before free */
356 1.30 dholland mutex_exit(&cpu_lock);
357 1.17 ad uvm_km_free(kernel_map, (vaddr_t)old_ldt, old_len,
358 1.1 ad UVM_KMF_WIRED);
359 1.30 dholland } else {
360 1.30 dholland mutex_exit(&cpu_lock);
361 1.17 ad }
362 1.2 dsl
363 1.17 ad return error;
364 1.1 ad #endif
365 1.1 ad }
366 1.1 ad
367 1.1 ad int
368 1.1 ad x86_iopl(struct lwp *l, void *args, register_t *retval)
369 1.1 ad {
370 1.1 ad int error;
371 1.1 ad struct x86_iopl_args ua;
372 1.1 ad #ifdef XEN
373 1.9 yamt int iopl;
374 1.1 ad #else
375 1.1 ad struct trapframe *tf = l->l_md.md_regs;
376 1.1 ad #endif
377 1.1 ad
378 1.1 ad error = kauth_authorize_machdep(l->l_cred, KAUTH_MACHDEP_IOPL,
379 1.1 ad NULL, NULL, NULL, NULL);
380 1.1 ad if (error)
381 1.38 maxv return error;
382 1.1 ad
383 1.1 ad if ((error = copyin(args, &ua, sizeof(ua))) != 0)
384 1.1 ad return error;
385 1.1 ad
386 1.1 ad #ifdef XEN
387 1.9 yamt if (ua.iopl)
388 1.9 yamt iopl = SEL_UPL;
389 1.9 yamt else
390 1.9 yamt iopl = SEL_KPL;
391 1.22 rmind
392 1.22 rmind {
393 1.22 rmind struct physdev_op physop;
394 1.22 rmind struct pcb *pcb;
395 1.22 rmind
396 1.22 rmind pcb = lwp_getpcb(l);
397 1.22 rmind pcb->pcb_iopl = iopl;
398 1.22 rmind
399 1.1 ad /* Force the change at ring 0. */
400 1.22 rmind physop.cmd = PHYSDEVOP_SET_IOPL;
401 1.22 rmind physop.u.set_iopl.iopl = iopl;
402 1.22 rmind HYPERVISOR_physdev_op(&physop);
403 1.22 rmind }
404 1.1 ad #elif defined(__x86_64__)
405 1.1 ad if (ua.iopl)
406 1.1 ad tf->tf_rflags |= PSL_IOPL;
407 1.1 ad else
408 1.1 ad tf->tf_rflags &= ~PSL_IOPL;
409 1.1 ad #else
410 1.1 ad if (ua.iopl)
411 1.1 ad tf->tf_eflags |= PSL_IOPL;
412 1.1 ad else
413 1.1 ad tf->tf_eflags &= ~PSL_IOPL;
414 1.1 ad #endif
415 1.1 ad
416 1.1 ad return 0;
417 1.1 ad }
418 1.1 ad
419 1.1 ad int
420 1.1 ad x86_get_ioperm(struct lwp *l, void *args, register_t *retval)
421 1.1 ad {
422 1.1 ad #ifdef IOPERM
423 1.1 ad int error;
424 1.22 rmind struct pcb *pcb = lwp_getpcb(l);
425 1.1 ad struct x86_get_ioperm_args ua;
426 1.9 yamt void *dummymap = NULL;
427 1.9 yamt void *iomap;
428 1.1 ad
429 1.1 ad error = kauth_authorize_machdep(l->l_cred, KAUTH_MACHDEP_IOPERM_GET,
430 1.1 ad NULL, NULL, NULL, NULL);
431 1.1 ad if (error)
432 1.38 maxv return error;
433 1.1 ad
434 1.1 ad if ((error = copyin(args, &ua, sizeof(ua))) != 0)
435 1.38 maxv return error;
436 1.1 ad
437 1.9 yamt iomap = pcb->pcb_iomap;
438 1.9 yamt if (iomap == NULL) {
439 1.9 yamt iomap = dummymap = kmem_alloc(IOMAPSIZE, KM_SLEEP);
440 1.9 yamt memset(dummymap, 0xff, IOMAPSIZE);
441 1.9 yamt }
442 1.9 yamt error = copyout(iomap, ua.iomap, IOMAPSIZE);
443 1.9 yamt if (dummymap != NULL) {
444 1.9 yamt kmem_free(dummymap, IOMAPSIZE);
445 1.9 yamt }
446 1.9 yamt return error;
447 1.1 ad #else
448 1.1 ad return EINVAL;
449 1.1 ad #endif
450 1.1 ad }
451 1.1 ad
452 1.1 ad int
453 1.1 ad x86_set_ioperm(struct lwp *l, void *args, register_t *retval)
454 1.1 ad {
455 1.1 ad #ifdef IOPERM
456 1.9 yamt struct cpu_info *ci;
457 1.1 ad int error;
458 1.22 rmind struct pcb *pcb = lwp_getpcb(l);
459 1.1 ad struct x86_set_ioperm_args ua;
460 1.9 yamt void *new;
461 1.9 yamt void *old;
462 1.1 ad
463 1.1 ad error = kauth_authorize_machdep(l->l_cred, KAUTH_MACHDEP_IOPERM_SET,
464 1.1 ad NULL, NULL, NULL, NULL);
465 1.1 ad if (error)
466 1.38 maxv return error;
467 1.1 ad
468 1.1 ad if ((error = copyin(args, &ua, sizeof(ua))) != 0)
469 1.38 maxv return error;
470 1.1 ad
471 1.9 yamt new = kmem_alloc(IOMAPSIZE, KM_SLEEP);
472 1.9 yamt error = copyin(ua.iomap, new, IOMAPSIZE);
473 1.9 yamt if (error) {
474 1.9 yamt kmem_free(new, IOMAPSIZE);
475 1.9 yamt return error;
476 1.9 yamt }
477 1.9 yamt old = pcb->pcb_iomap;
478 1.9 yamt pcb->pcb_iomap = new;
479 1.9 yamt if (old != NULL) {
480 1.9 yamt kmem_free(old, IOMAPSIZE);
481 1.9 yamt }
482 1.9 yamt
483 1.46 maxv CTASSERT(offsetof(struct cpu_tss, iomap) -
484 1.46 maxv offsetof(struct cpu_tss, tss) == IOMAP_VALIDOFF);
485 1.46 maxv
486 1.13 ad kpreempt_disable();
487 1.9 yamt ci = curcpu();
488 1.45 maxv memcpy(ci->ci_tss->iomap, pcb->pcb_iomap, IOMAPSIZE);
489 1.46 maxv ci->ci_tss->tss.tss_iobase = IOMAP_VALIDOFF << 16;
490 1.13 ad kpreempt_enable();
491 1.9 yamt
492 1.9 yamt return error;
493 1.1 ad #else
494 1.1 ad return EINVAL;
495 1.1 ad #endif
496 1.1 ad }
497 1.1 ad
498 1.1 ad int
499 1.1 ad x86_get_mtrr(struct lwp *l, void *args, register_t *retval)
500 1.1 ad {
501 1.1 ad #ifdef MTRR
502 1.1 ad struct x86_get_mtrr_args ua;
503 1.1 ad int error, n;
504 1.1 ad
505 1.1 ad if (mtrr_funcs == NULL)
506 1.1 ad return ENOSYS;
507 1.1 ad
508 1.1 ad error = kauth_authorize_machdep(l->l_cred, KAUTH_MACHDEP_MTRR_GET,
509 1.1 ad NULL, NULL, NULL, NULL);
510 1.1 ad if (error)
511 1.38 maxv return error;
512 1.1 ad
513 1.1 ad error = copyin(args, &ua, sizeof ua);
514 1.1 ad if (error != 0)
515 1.1 ad return error;
516 1.1 ad
517 1.1 ad error = copyin(ua.n, &n, sizeof n);
518 1.1 ad if (error != 0)
519 1.1 ad return error;
520 1.1 ad
521 1.12 ad KERNEL_LOCK(1, NULL);
522 1.1 ad error = mtrr_get(ua.mtrrp, &n, l->l_proc, MTRR_GETSET_USER);
523 1.12 ad KERNEL_UNLOCK_ONE(NULL);
524 1.1 ad
525 1.1 ad copyout(&n, ua.n, sizeof (int));
526 1.1 ad
527 1.1 ad return error;
528 1.1 ad #else
529 1.1 ad return EINVAL;
530 1.1 ad #endif
531 1.1 ad }
532 1.1 ad
533 1.1 ad int
534 1.1 ad x86_set_mtrr(struct lwp *l, void *args, register_t *retval)
535 1.1 ad {
536 1.1 ad #ifdef MTRR
537 1.1 ad int error, n;
538 1.1 ad struct x86_set_mtrr_args ua;
539 1.1 ad
540 1.1 ad if (mtrr_funcs == NULL)
541 1.1 ad return ENOSYS;
542 1.1 ad
543 1.1 ad error = kauth_authorize_machdep(l->l_cred, KAUTH_MACHDEP_MTRR_SET,
544 1.1 ad NULL, NULL, NULL, NULL);
545 1.1 ad if (error)
546 1.38 maxv return error;
547 1.1 ad
548 1.1 ad error = copyin(args, &ua, sizeof ua);
549 1.1 ad if (error != 0)
550 1.1 ad return error;
551 1.1 ad
552 1.1 ad error = copyin(ua.n, &n, sizeof n);
553 1.1 ad if (error != 0)
554 1.1 ad return error;
555 1.1 ad
556 1.12 ad KERNEL_LOCK(1, NULL);
557 1.1 ad error = mtrr_set(ua.mtrrp, &n, l->l_proc, MTRR_GETSET_USER);
558 1.1 ad if (n != 0)
559 1.1 ad mtrr_commit();
560 1.12 ad KERNEL_UNLOCK_ONE(NULL);
561 1.1 ad
562 1.1 ad copyout(&n, ua.n, sizeof n);
563 1.1 ad
564 1.1 ad return error;
565 1.1 ad #else
566 1.1 ad return EINVAL;
567 1.1 ad #endif
568 1.1 ad }
569 1.1 ad
570 1.24 chs #ifdef __x86_64__
571 1.24 chs #define pcb_fsd pcb_fs
572 1.24 chs #define pcb_gsd pcb_gs
573 1.24 chs #define segment_descriptor mem_segment_descriptor
574 1.24 chs #endif
575 1.24 chs
576 1.1 ad int
577 1.24 chs x86_set_sdbase32(void *arg, char which, lwp_t *l, bool direct)
578 1.5 ad {
579 1.24 chs struct trapframe *tf = l->l_md.md_regs;
580 1.24 chs union descriptor usd;
581 1.18 ad struct pcb *pcb;
582 1.24 chs uint32_t base;
583 1.6 ad int error;
584 1.5 ad
585 1.18 ad if (direct) {
586 1.18 ad base = (vaddr_t)arg;
587 1.18 ad } else {
588 1.18 ad error = copyin(arg, &base, sizeof(base));
589 1.18 ad if (error != 0)
590 1.18 ad return error;
591 1.18 ad }
592 1.5 ad
593 1.24 chs memset(&usd, 0, sizeof(usd));
594 1.19 bouyer usd.sd.sd_lobase = base & 0xffffff;
595 1.19 bouyer usd.sd.sd_hibase = (base >> 24) & 0xff;
596 1.19 bouyer usd.sd.sd_lolimit = 0xffff;
597 1.19 bouyer usd.sd.sd_hilimit = 0xf;
598 1.19 bouyer usd.sd.sd_type = SDT_MEMRWA;
599 1.19 bouyer usd.sd.sd_dpl = SEL_UPL;
600 1.19 bouyer usd.sd.sd_p = 1;
601 1.19 bouyer usd.sd.sd_def32 = 1;
602 1.19 bouyer usd.sd.sd_gran = 1;
603 1.6 ad
604 1.24 chs pcb = lwp_getpcb(l);
605 1.13 ad kpreempt_disable();
606 1.6 ad if (which == 'f') {
607 1.19 bouyer memcpy(&pcb->pcb_fsd, &usd.sd,
608 1.19 bouyer sizeof(struct segment_descriptor));
609 1.18 ad if (l == curlwp) {
610 1.19 bouyer update_descriptor(&curcpu()->ci_gdt[GUFS_SEL], &usd);
611 1.18 ad }
612 1.24 chs tf->tf_fs = GSEL(GUFS_SEL, SEL_UPL);
613 1.6 ad } else /* which == 'g' */ {
614 1.19 bouyer memcpy(&pcb->pcb_gsd, &usd.sd,
615 1.19 bouyer sizeof(struct segment_descriptor));
616 1.18 ad if (l == curlwp) {
617 1.19 bouyer update_descriptor(&curcpu()->ci_gdt[GUGS_SEL], &usd);
618 1.42 maxv #if defined(__x86_64__) && defined(XEN)
619 1.24 chs setusergs(GSEL(GUGS_SEL, SEL_UPL));
620 1.24 chs #endif
621 1.18 ad }
622 1.24 chs tf->tf_gs = GSEL(GUGS_SEL, SEL_UPL);
623 1.6 ad }
624 1.13 ad kpreempt_enable();
625 1.24 chs return 0;
626 1.24 chs }
627 1.5 ad
628 1.24 chs int
629 1.24 chs x86_set_sdbase(void *arg, char which, lwp_t *l, bool direct)
630 1.24 chs {
631 1.24 chs #ifdef i386
632 1.24 chs return x86_set_sdbase32(arg, which, l, direct);
633 1.5 ad #else
634 1.24 chs struct pcb *pcb;
635 1.24 chs vaddr_t base;
636 1.24 chs
637 1.24 chs if (l->l_proc->p_flag & PK_32) {
638 1.24 chs return x86_set_sdbase32(arg, which, l, direct);
639 1.24 chs }
640 1.24 chs
641 1.24 chs if (direct) {
642 1.24 chs base = (vaddr_t)arg;
643 1.24 chs } else {
644 1.29 christos int error = copyin(arg, &base, sizeof(base));
645 1.24 chs if (error != 0)
646 1.24 chs return error;
647 1.24 chs }
648 1.24 chs
649 1.24 chs if (base >= VM_MAXUSER_ADDRESS)
650 1.24 chs return EINVAL;
651 1.24 chs
652 1.24 chs pcb = lwp_getpcb(l);
653 1.24 chs
654 1.24 chs kpreempt_disable();
655 1.24 chs switch(which) {
656 1.24 chs case 'f':
657 1.24 chs pcb->pcb_fs = base;
658 1.24 chs if (l == curlwp)
659 1.24 chs wrmsr(MSR_FSBASE, pcb->pcb_fs);
660 1.24 chs break;
661 1.24 chs case 'g':
662 1.24 chs pcb->pcb_gs = base;
663 1.24 chs if (l == curlwp)
664 1.24 chs wrmsr(MSR_KERNELGSBASE, pcb->pcb_gs);
665 1.24 chs break;
666 1.24 chs default:
667 1.28 dholland panic("x86_set_sdbase");
668 1.24 chs }
669 1.24 chs kpreempt_enable();
670 1.24 chs
671 1.29 christos return 0;
672 1.5 ad #endif
673 1.5 ad }
674 1.5 ad
675 1.5 ad int
676 1.24 chs x86_get_sdbase32(void *arg, char which)
677 1.5 ad {
678 1.5 ad struct segment_descriptor *sd;
679 1.24 chs uint32_t base;
680 1.5 ad
681 1.5 ad switch (which) {
682 1.5 ad case 'f':
683 1.24 chs sd = (void *)&curpcb->pcb_fsd;
684 1.5 ad break;
685 1.5 ad case 'g':
686 1.24 chs sd = (void *)&curpcb->pcb_gsd;
687 1.5 ad break;
688 1.5 ad default:
689 1.28 dholland panic("x86_get_sdbase32");
690 1.5 ad }
691 1.5 ad
692 1.5 ad base = sd->sd_hibase << 24 | sd->sd_lobase;
693 1.21 yamt return copyout(&base, arg, sizeof(base));
694 1.24 chs }
695 1.24 chs
696 1.24 chs int
697 1.24 chs x86_get_sdbase(void *arg, char which)
698 1.24 chs {
699 1.24 chs #ifdef i386
700 1.24 chs return x86_get_sdbase32(arg, which);
701 1.5 ad #else
702 1.24 chs vaddr_t base;
703 1.24 chs struct pcb *pcb;
704 1.24 chs
705 1.24 chs if (curproc->p_flag & PK_32) {
706 1.24 chs return x86_get_sdbase32(arg, which);
707 1.24 chs }
708 1.24 chs
709 1.24 chs pcb = lwp_getpcb(curlwp);
710 1.24 chs
711 1.24 chs switch(which) {
712 1.24 chs case 'f':
713 1.24 chs base = pcb->pcb_fs;
714 1.24 chs break;
715 1.24 chs case 'g':
716 1.24 chs base = pcb->pcb_gs;
717 1.24 chs break;
718 1.24 chs default:
719 1.24 chs panic("x86_get_sdbase");
720 1.24 chs }
721 1.24 chs
722 1.24 chs return copyout(&base, arg, sizeof(base));
723 1.5 ad #endif
724 1.5 ad }
725 1.5 ad
726 1.5 ad int
727 1.8 dsl sys_sysarch(struct lwp *l, const struct sys_sysarch_args *uap, register_t *retval)
728 1.1 ad {
729 1.8 dsl /* {
730 1.1 ad syscallarg(int) op;
731 1.1 ad syscallarg(void *) parms;
732 1.8 dsl } */
733 1.1 ad int error = 0;
734 1.1 ad
735 1.1 ad switch(SCARG(uap, op)) {
736 1.1 ad case X86_IOPL:
737 1.1 ad error = x86_iopl(l, SCARG(uap, parms), retval);
738 1.1 ad break;
739 1.1 ad
740 1.32 maxv #ifdef i386
741 1.32 maxv /*
742 1.32 maxv * On amd64, this is done via netbsd32_sysarch.
743 1.32 maxv */
744 1.1 ad case X86_GET_LDT:
745 1.1 ad error = x86_get_ldt(l, SCARG(uap, parms), retval);
746 1.1 ad break;
747 1.1 ad
748 1.1 ad case X86_SET_LDT:
749 1.1 ad error = x86_set_ldt(l, SCARG(uap, parms), retval);
750 1.1 ad break;
751 1.32 maxv #endif
752 1.1 ad
753 1.1 ad case X86_GET_IOPERM:
754 1.1 ad error = x86_get_ioperm(l, SCARG(uap, parms), retval);
755 1.1 ad break;
756 1.1 ad
757 1.1 ad case X86_SET_IOPERM:
758 1.1 ad error = x86_set_ioperm(l, SCARG(uap, parms), retval);
759 1.1 ad break;
760 1.1 ad
761 1.1 ad case X86_GET_MTRR:
762 1.1 ad error = x86_get_mtrr(l, SCARG(uap, parms), retval);
763 1.1 ad break;
764 1.1 ad case X86_SET_MTRR:
765 1.1 ad error = x86_set_mtrr(l, SCARG(uap, parms), retval);
766 1.1 ad break;
767 1.1 ad
768 1.34 maxv #ifdef PMC
769 1.1 ad case X86_PMC_INFO:
770 1.33 maxv error = sys_pmc_info(l, SCARG(uap, parms), retval);
771 1.1 ad break;
772 1.1 ad
773 1.1 ad case X86_PMC_STARTSTOP:
774 1.33 maxv error = sys_pmc_startstop(l, SCARG(uap, parms), retval);
775 1.1 ad break;
776 1.1 ad
777 1.1 ad case X86_PMC_READ:
778 1.33 maxv error = sys_pmc_read(l, SCARG(uap, parms), retval);
779 1.1 ad break;
780 1.1 ad #endif
781 1.1 ad
782 1.5 ad case X86_SET_FSBASE:
783 1.18 ad error = x86_set_sdbase(SCARG(uap, parms), 'f', curlwp, false);
784 1.5 ad break;
785 1.5 ad
786 1.5 ad case X86_SET_GSBASE:
787 1.18 ad error = x86_set_sdbase(SCARG(uap, parms), 'g', curlwp, false);
788 1.5 ad break;
789 1.5 ad
790 1.5 ad case X86_GET_FSBASE:
791 1.5 ad error = x86_get_sdbase(SCARG(uap, parms), 'f');
792 1.5 ad break;
793 1.5 ad
794 1.5 ad case X86_GET_GSBASE:
795 1.5 ad error = x86_get_sdbase(SCARG(uap, parms), 'g');
796 1.5 ad break;
797 1.5 ad
798 1.1 ad default:
799 1.1 ad error = EINVAL;
800 1.1 ad break;
801 1.1 ad }
802 1.38 maxv return error;
803 1.1 ad }
804 1.18 ad
805 1.18 ad int
806 1.18 ad cpu_lwp_setprivate(lwp_t *l, void *addr)
807 1.18 ad {
808 1.18 ad
809 1.24 chs #ifdef __x86_64__
810 1.24 chs if ((l->l_proc->p_flag & PK_32) == 0) {
811 1.24 chs return x86_set_sdbase(addr, 'f', l, true);
812 1.24 chs }
813 1.24 chs #endif
814 1.18 ad return x86_set_sdbase(addr, 'g', l, true);
815 1.18 ad }
816