]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/i386/i386/sys_machdep.c
Update hostapd/wpa_supplicant to version 2.5.
[FreeBSD/FreeBSD.git] / sys / i386 / i386 / sys_machdep.c
1 /*-
2  * Copyright (c) 1990 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  *      from: @(#)sys_machdep.c 5.5 (Berkeley) 1/19/91
30  */
31
32 #include <sys/cdefs.h>
33 __FBSDID("$FreeBSD$");
34
35 #include "opt_capsicum.h"
36 #include "opt_kstack_pages.h"
37
38 #include <sys/param.h>
39 #include <sys/capsicum.h>
40 #include <sys/systm.h>
41 #include <sys/lock.h>
42 #include <sys/malloc.h>
43 #include <sys/mutex.h>
44 #include <sys/priv.h>
45 #include <sys/proc.h>
46 #include <sys/smp.h>
47 #include <sys/sysproto.h>
48
49 #include <vm/vm.h>
50 #include <vm/pmap.h>
51 #include <vm/vm_map.h>
52 #include <vm/vm_extern.h>
53
54 #include <machine/cpu.h>
55 #include <machine/pcb.h>
56 #include <machine/pcb_ext.h>
57 #include <machine/proc.h>
58 #include <machine/sysarch.h>
59
60 #include <security/audit/audit.h>
61
62 #include <vm/vm_kern.h>         /* for kernel_map */
63
64 #define MAX_LD 8192
65 #define LD_PER_PAGE 512
66 #define NEW_MAX_LD(num)  ((num + LD_PER_PAGE) & ~(LD_PER_PAGE-1))
67 #define SIZE_FROM_LARGEST_LD(num) (NEW_MAX_LD(num) << 3)
68 #define NULL_LDT_BASE   ((caddr_t)NULL)
69
70 #ifdef SMP
71 static void set_user_ldt_rv(struct vmspace *vmsp);
72 #endif
73 static int i386_set_ldt_data(struct thread *, int start, int num,
74         union descriptor *descs);
75 static int i386_ldt_grow(struct thread *td, int len);
76
77 void
78 fill_based_sd(struct segment_descriptor *sdp, uint32_t base)
79 {
80
81         sdp->sd_lobase = base & 0xffffff;
82         sdp->sd_hibase = (base >> 24) & 0xff;
83         sdp->sd_lolimit = 0xffff;       /* 4GB limit, wraps around */
84         sdp->sd_hilimit = 0xf;
85         sdp->sd_type = SDT_MEMRWA;
86         sdp->sd_dpl = SEL_UPL;
87         sdp->sd_p = 1;
88         sdp->sd_xx = 0;
89         sdp->sd_def32 = 1;
90         sdp->sd_gran = 1;
91 }
92
93 #ifndef _SYS_SYSPROTO_H_
94 struct sysarch_args {
95         int op;
96         char *parms;
97 };
98 #endif
99
100 int
101 sysarch(td, uap)
102         struct thread *td;
103         register struct sysarch_args *uap;
104 {
105         int error;
106         union descriptor *lp;
107         union {
108                 struct i386_ldt_args largs;
109                 struct i386_ioperm_args iargs;
110                 struct i386_get_xfpustate xfpu;
111         } kargs;
112         uint32_t base;
113         struct segment_descriptor sd, *sdp;
114
115         AUDIT_ARG_CMD(uap->op);
116
117 #ifdef CAPABILITY_MODE
118         /*
119          * When adding new operations, add a new case statement here to
120          * explicitly indicate whether or not the operation is safe to
121          * perform in capability mode.
122          */
123         if (IN_CAPABILITY_MODE(td)) {
124                 switch (uap->op) {
125                 case I386_GET_LDT:
126                 case I386_SET_LDT:
127                 case I386_GET_IOPERM:
128                 case I386_GET_FSBASE:
129                 case I386_SET_FSBASE:
130                 case I386_GET_GSBASE:
131                 case I386_SET_GSBASE:
132                 case I386_GET_XFPUSTATE:
133                         break;
134
135                 case I386_SET_IOPERM:
136                 default:
137 #ifdef KTRACE
138                         if (KTRPOINT(td, KTR_CAPFAIL))
139                                 ktrcapfail(CAPFAIL_SYSCALL, NULL, NULL);
140 #endif
141                         return (ECAPMODE);
142                 }
143         }
144 #endif
145
146         switch (uap->op) {
147         case I386_GET_IOPERM:
148         case I386_SET_IOPERM:
149                 if ((error = copyin(uap->parms, &kargs.iargs,
150                     sizeof(struct i386_ioperm_args))) != 0)
151                         return (error);
152                 break;
153         case I386_GET_LDT:
154         case I386_SET_LDT:
155                 if ((error = copyin(uap->parms, &kargs.largs,
156                     sizeof(struct i386_ldt_args))) != 0)
157                         return (error);
158                 if (kargs.largs.num > MAX_LD || kargs.largs.num <= 0)
159                         return (EINVAL);
160                 break;
161         case I386_GET_XFPUSTATE:
162                 if ((error = copyin(uap->parms, &kargs.xfpu,
163                     sizeof(struct i386_get_xfpustate))) != 0)
164                         return (error);
165                 break;
166         default:
167                 break;
168         }
169
170         switch(uap->op) {
171         case I386_GET_LDT:
172                 error = i386_get_ldt(td, &kargs.largs);
173                 break;
174         case I386_SET_LDT:
175                 if (kargs.largs.descs != NULL) {
176                         lp = (union descriptor *)malloc(
177                             kargs.largs.num * sizeof(union descriptor),
178                             M_TEMP, M_WAITOK);
179                         error = copyin(kargs.largs.descs, lp,
180                             kargs.largs.num * sizeof(union descriptor));
181                         if (error == 0)
182                                 error = i386_set_ldt(td, &kargs.largs, lp);
183                         free(lp, M_TEMP);
184                 } else {
185                         error = i386_set_ldt(td, &kargs.largs, NULL);
186                 }
187                 break;
188         case I386_GET_IOPERM:
189                 error = i386_get_ioperm(td, &kargs.iargs);
190                 if (error == 0)
191                         error = copyout(&kargs.iargs, uap->parms,
192                             sizeof(struct i386_ioperm_args));
193                 break;
194         case I386_SET_IOPERM:
195                 error = i386_set_ioperm(td, &kargs.iargs);
196                 break;
197         case I386_VM86:
198                 error = vm86_sysarch(td, uap->parms);
199                 break;
200         case I386_GET_FSBASE:
201                 sdp = &td->td_pcb->pcb_fsd;
202                 base = sdp->sd_hibase << 24 | sdp->sd_lobase;
203                 error = copyout(&base, uap->parms, sizeof(base));
204                 break;
205         case I386_SET_FSBASE:
206                 error = copyin(uap->parms, &base, sizeof(base));
207                 if (error == 0) {
208                         /*
209                          * Construct a descriptor and store it in the pcb for
210                          * the next context switch.  Also store it in the gdt
211                          * so that the load of tf_fs into %fs will activate it
212                          * at return to userland.
213                          */
214                         fill_based_sd(&sd, base);
215                         critical_enter();
216                         td->td_pcb->pcb_fsd = sd;
217                         PCPU_GET(fsgs_gdt)[0] = sd;
218                         critical_exit();
219                         td->td_frame->tf_fs = GSEL(GUFS_SEL, SEL_UPL);
220                 }
221                 break;
222         case I386_GET_GSBASE:
223                 sdp = &td->td_pcb->pcb_gsd;
224                 base = sdp->sd_hibase << 24 | sdp->sd_lobase;
225                 error = copyout(&base, uap->parms, sizeof(base));
226                 break;
227         case I386_SET_GSBASE:
228                 error = copyin(uap->parms, &base, sizeof(base));
229                 if (error == 0) {
230                         /*
231                          * Construct a descriptor and store it in the pcb for
232                          * the next context switch.  Also store it in the gdt
233                          * because we have to do a load_gs() right now.
234                          */
235                         fill_based_sd(&sd, base);
236                         critical_enter();
237                         td->td_pcb->pcb_gsd = sd;
238                         PCPU_GET(fsgs_gdt)[1] = sd;
239                         critical_exit();
240                         load_gs(GSEL(GUGS_SEL, SEL_UPL));
241                 }
242                 break;
243         case I386_GET_XFPUSTATE:
244                 if (kargs.xfpu.len > cpu_max_ext_state_size -
245                     sizeof(union savefpu))
246                         return (EINVAL);
247                 npxgetregs(td);
248                 error = copyout((char *)(get_pcb_user_save_td(td) + 1),
249                     kargs.xfpu.addr, kargs.xfpu.len);
250                 break;
251         default:
252                 error = EINVAL;
253                 break;
254         }
255         return (error);
256 }
257
258 int
259 i386_extend_pcb(struct thread *td)
260 {
261         int i, offset;
262         u_long *addr;
263         struct pcb_ext *ext;
264         struct soft_segment_descriptor ssd = {
265                 0,                      /* segment base address (overwritten) */
266                 ctob(IOPAGES + 1) - 1,  /* length */
267                 SDT_SYS386TSS,          /* segment type */
268                 0,                      /* priority level */
269                 1,                      /* descriptor present */
270                 0, 0,
271                 0,                      /* default 32 size */
272                 0                       /* granularity */
273         };
274
275         ext = (struct pcb_ext *)kmem_malloc(kernel_arena, ctob(IOPAGES+1),
276             M_WAITOK | M_ZERO);
277         /* -16 is so we can convert a trapframe into vm86trapframe inplace */
278         ext->ext_tss.tss_esp0 = td->td_kstack + ctob(td->td_kstack_pages) -
279             sizeof(struct pcb) - 16;
280         ext->ext_tss.tss_ss0 = GSEL(GDATA_SEL, SEL_KPL);
281         /*
282          * The last byte of the i/o map must be followed by an 0xff byte.
283          * We arbitrarily allocate 16 bytes here, to keep the starting
284          * address on a doubleword boundary.
285          */
286         offset = PAGE_SIZE - 16;
287         ext->ext_tss.tss_ioopt = 
288             (offset - ((unsigned)&ext->ext_tss - (unsigned)ext)) << 16;
289         ext->ext_iomap = (caddr_t)ext + offset;
290         ext->ext_vm86.vm86_intmap = (caddr_t)ext + offset - 32;
291
292         addr = (u_long *)ext->ext_vm86.vm86_intmap;
293         for (i = 0; i < (ctob(IOPAGES) + 32 + 16) / sizeof(u_long); i++)
294                 *addr++ = ~0;
295
296         ssd.ssd_base = (unsigned)&ext->ext_tss;
297         ssd.ssd_limit -= ((unsigned)&ext->ext_tss - (unsigned)ext);
298         ssdtosd(&ssd, &ext->ext_tssd);
299
300         KASSERT(td == curthread, ("giving TSS to !curthread"));
301         KASSERT(td->td_pcb->pcb_ext == 0, ("already have a TSS!"));
302
303         /* Switch to the new TSS. */
304         critical_enter();
305         td->td_pcb->pcb_ext = ext;
306         PCPU_SET(private_tss, 1);
307         *PCPU_GET(tss_gdt) = ext->ext_tssd;
308         ltr(GSEL(GPROC0_SEL, SEL_KPL));
309         critical_exit();
310
311         return 0;
312 }
313
314 int
315 i386_set_ioperm(td, uap)
316         struct thread *td;
317         struct i386_ioperm_args *uap;
318 {
319         int i, error;
320         char *iomap;
321
322         if ((error = priv_check(td, PRIV_IO)) != 0)
323                 return (error);
324         if ((error = securelevel_gt(td->td_ucred, 0)) != 0)
325                 return (error);
326         /*
327          * XXX 
328          * While this is restricted to root, we should probably figure out
329          * whether any other driver is using this i/o address, as so not to
330          * cause confusion.  This probably requires a global 'usage registry'.
331          */
332
333         if (td->td_pcb->pcb_ext == 0)
334                 if ((error = i386_extend_pcb(td)) != 0)
335                         return (error);
336         iomap = (char *)td->td_pcb->pcb_ext->ext_iomap;
337
338         if (uap->start + uap->length > IOPAGES * PAGE_SIZE * NBBY)
339                 return (EINVAL);
340
341         for (i = uap->start; i < uap->start + uap->length; i++) {
342                 if (uap->enable)
343                         iomap[i >> 3] &= ~(1 << (i & 7));
344                 else
345                         iomap[i >> 3] |= (1 << (i & 7));
346         }
347         return (error);
348 }
349
350 int
351 i386_get_ioperm(td, uap)
352         struct thread *td;
353         struct i386_ioperm_args *uap;
354 {
355         int i, state;
356         char *iomap;
357
358         if (uap->start >= IOPAGES * PAGE_SIZE * NBBY)
359                 return (EINVAL);
360
361         if (td->td_pcb->pcb_ext == 0) {
362                 uap->length = 0;
363                 goto done;
364         }
365
366         iomap = (char *)td->td_pcb->pcb_ext->ext_iomap;
367
368         i = uap->start;
369         state = (iomap[i >> 3] >> (i & 7)) & 1;
370         uap->enable = !state;
371         uap->length = 1;
372
373         for (i = uap->start + 1; i < IOPAGES * PAGE_SIZE * NBBY; i++) {
374                 if (state != ((iomap[i >> 3] >> (i & 7)) & 1))
375                         break;
376                 uap->length++;
377         }
378
379 done:
380         return (0);
381 }
382
383 /*
384  * Update the GDT entry pointing to the LDT to point to the LDT of the
385  * current process. Manage dt_lock holding/unholding autonomously.
386  */   
387 void
388 set_user_ldt(struct mdproc *mdp)
389 {
390         struct proc_ldt *pldt;
391         int dtlocked;
392
393         dtlocked = 0;
394         if (!mtx_owned(&dt_lock)) {
395                 mtx_lock_spin(&dt_lock);
396                 dtlocked = 1;
397         }
398
399         pldt = mdp->md_ldt;
400 #ifdef SMP
401         gdt[PCPU_GET(cpuid) * NGDT + GUSERLDT_SEL].sd = pldt->ldt_sd;
402 #else
403         gdt[GUSERLDT_SEL].sd = pldt->ldt_sd;
404 #endif
405         lldt(GSEL(GUSERLDT_SEL, SEL_KPL));
406         PCPU_SET(currentldt, GSEL(GUSERLDT_SEL, SEL_KPL));
407         if (dtlocked)
408                 mtx_unlock_spin(&dt_lock);
409 }
410
411 #ifdef SMP
412 static void
413 set_user_ldt_rv(struct vmspace *vmsp)
414 {
415         struct thread *td;
416
417         td = curthread;
418         if (vmsp != td->td_proc->p_vmspace)
419                 return;
420
421         set_user_ldt(&td->td_proc->p_md);
422 }
423 #endif
424
425 /*
426  * dt_lock must be held. Returns with dt_lock held.
427  */
428 struct proc_ldt *
429 user_ldt_alloc(struct mdproc *mdp, int len)
430 {
431         struct proc_ldt *pldt, *new_ldt;
432
433         mtx_assert(&dt_lock, MA_OWNED);
434         mtx_unlock_spin(&dt_lock);
435         new_ldt = malloc(sizeof(struct proc_ldt),
436                 M_SUBPROC, M_WAITOK);
437
438         new_ldt->ldt_len = len = NEW_MAX_LD(len);
439         new_ldt->ldt_base = (caddr_t)kmem_malloc(kernel_arena,
440             len * sizeof(union descriptor), M_WAITOK);
441         new_ldt->ldt_refcnt = 1;
442         new_ldt->ldt_active = 0;
443
444         mtx_lock_spin(&dt_lock);
445         gdt_segs[GUSERLDT_SEL].ssd_base = (unsigned)new_ldt->ldt_base;
446         gdt_segs[GUSERLDT_SEL].ssd_limit = len * sizeof(union descriptor) - 1;
447         ssdtosd(&gdt_segs[GUSERLDT_SEL], &new_ldt->ldt_sd);
448
449         if ((pldt = mdp->md_ldt) != NULL) {
450                 if (len > pldt->ldt_len)
451                         len = pldt->ldt_len;
452                 bcopy(pldt->ldt_base, new_ldt->ldt_base,
453                     len * sizeof(union descriptor));
454         } else
455                 bcopy(ldt, new_ldt->ldt_base, sizeof(ldt));
456         
457         return (new_ldt);
458 }
459
460 /*
461  * Must be called with dt_lock held.  Returns with dt_lock unheld.
462  */
463 void
464 user_ldt_free(struct thread *td)
465 {
466         struct mdproc *mdp = &td->td_proc->p_md;
467         struct proc_ldt *pldt;
468
469         mtx_assert(&dt_lock, MA_OWNED);
470         if ((pldt = mdp->md_ldt) == NULL) {
471                 mtx_unlock_spin(&dt_lock);
472                 return;
473         }
474
475         if (td == curthread) {
476                 lldt(_default_ldt);
477                 PCPU_SET(currentldt, _default_ldt);
478         }
479
480         mdp->md_ldt = NULL;
481         user_ldt_deref(pldt);
482 }
483
484 void
485 user_ldt_deref(struct proc_ldt *pldt)
486 {
487
488         mtx_assert(&dt_lock, MA_OWNED);
489         if (--pldt->ldt_refcnt == 0) {
490                 mtx_unlock_spin(&dt_lock);
491                 kmem_free(kernel_arena, (vm_offset_t)pldt->ldt_base,
492                         pldt->ldt_len * sizeof(union descriptor));
493                 free(pldt, M_SUBPROC);
494         } else
495                 mtx_unlock_spin(&dt_lock);
496 }
497
498 /*
499  * Note for the authors of compat layers (linux, etc): copyout() in
500  * the function below is not a problem since it presents data in
501  * arch-specific format (i.e. i386-specific in this case), not in
502  * the OS-specific one.
503  */
504 int
505 i386_get_ldt(td, uap)
506         struct thread *td;
507         struct i386_ldt_args *uap;
508 {
509         int error = 0;
510         struct proc_ldt *pldt;
511         int nldt, num;
512         union descriptor *lp;
513
514 #ifdef  DEBUG
515         printf("i386_get_ldt: start=%d num=%d descs=%p\n",
516             uap->start, uap->num, (void *)uap->descs);
517 #endif
518
519         mtx_lock_spin(&dt_lock);
520         if ((pldt = td->td_proc->p_md.md_ldt) != NULL) {
521                 nldt = pldt->ldt_len;
522                 lp = &((union descriptor *)(pldt->ldt_base))[uap->start];
523                 mtx_unlock_spin(&dt_lock);
524                 num = min(uap->num, nldt);
525         } else {
526                 mtx_unlock_spin(&dt_lock);
527                 nldt = sizeof(ldt)/sizeof(ldt[0]);
528                 num = min(uap->num, nldt);
529                 lp = &ldt[uap->start];
530         }
531
532         if ((uap->start > (unsigned int)nldt) ||
533             ((unsigned int)num > (unsigned int)nldt) ||
534             ((unsigned int)(uap->start + num) > (unsigned int)nldt))
535                 return(EINVAL);
536
537         error = copyout(lp, uap->descs, num * sizeof(union descriptor));
538         if (!error)
539                 td->td_retval[0] = num;
540
541         return(error);
542 }
543
544 int
545 i386_set_ldt(td, uap, descs)
546         struct thread *td;
547         struct i386_ldt_args *uap;
548         union descriptor *descs;
549 {
550         int error = 0, i;
551         int largest_ld;
552         struct mdproc *mdp = &td->td_proc->p_md;
553         struct proc_ldt *pldt;
554         union descriptor *dp;
555
556 #ifdef  DEBUG
557         printf("i386_set_ldt: start=%d num=%d descs=%p\n",
558             uap->start, uap->num, (void *)uap->descs);
559 #endif
560
561         if (descs == NULL) {
562                 /* Free descriptors */
563                 if (uap->start == 0 && uap->num == 0) {
564                         /*
565                          * Treat this as a special case, so userland needn't
566                          * know magic number NLDT.
567                          */
568                         uap->start = NLDT;
569                         uap->num = MAX_LD - NLDT;
570                 }
571                 if (uap->num == 0)
572                         return (EINVAL);
573                 mtx_lock_spin(&dt_lock);
574                 if ((pldt = mdp->md_ldt) == NULL ||
575                     uap->start >= pldt->ldt_len) {
576                         mtx_unlock_spin(&dt_lock);
577                         return (0);
578                 }
579                 largest_ld = uap->start + uap->num;
580                 if (largest_ld > pldt->ldt_len)
581                         largest_ld = pldt->ldt_len;
582                 i = largest_ld - uap->start;
583                 bzero(&((union descriptor *)(pldt->ldt_base))[uap->start],
584                     sizeof(union descriptor) * i);
585                 mtx_unlock_spin(&dt_lock);
586                 return (0);
587         }
588
589         if (!(uap->start == LDT_AUTO_ALLOC && uap->num == 1)) {
590                 /* verify range of descriptors to modify */
591                 largest_ld = uap->start + uap->num;
592                 if (uap->start >= MAX_LD || largest_ld > MAX_LD) {
593                         return (EINVAL);
594                 }
595         }
596
597         /* Check descriptors for access violations */
598         for (i = 0; i < uap->num; i++) {
599                 dp = &descs[i];
600
601                 switch (dp->sd.sd_type) {
602                 case SDT_SYSNULL:       /* system null */ 
603                         dp->sd.sd_p = 0;
604                         break;
605                 case SDT_SYS286TSS: /* system 286 TSS available */
606                 case SDT_SYSLDT:    /* system local descriptor table */
607                 case SDT_SYS286BSY: /* system 286 TSS busy */
608                 case SDT_SYSTASKGT: /* system task gate */
609                 case SDT_SYS286IGT: /* system 286 interrupt gate */
610                 case SDT_SYS286TGT: /* system 286 trap gate */
611                 case SDT_SYSNULL2:  /* undefined by Intel */ 
612                 case SDT_SYS386TSS: /* system 386 TSS available */
613                 case SDT_SYSNULL3:  /* undefined by Intel */
614                 case SDT_SYS386BSY: /* system 386 TSS busy */
615                 case SDT_SYSNULL4:  /* undefined by Intel */ 
616                 case SDT_SYS386IGT: /* system 386 interrupt gate */
617                 case SDT_SYS386TGT: /* system 386 trap gate */
618                 case SDT_SYS286CGT: /* system 286 call gate */ 
619                 case SDT_SYS386CGT: /* system 386 call gate */
620                         /* I can't think of any reason to allow a user proc
621                          * to create a segment of these types.  They are
622                          * for OS use only.
623                          */
624                         return (EACCES);
625                         /*NOTREACHED*/
626
627                 /* memory segment types */
628                 case SDT_MEMEC:   /* memory execute only conforming */
629                 case SDT_MEMEAC:  /* memory execute only accessed conforming */
630                 case SDT_MEMERC:  /* memory execute read conforming */
631                 case SDT_MEMERAC: /* memory execute read accessed conforming */
632                          /* Must be "present" if executable and conforming. */
633                         if (dp->sd.sd_p == 0)
634                                 return (EACCES);
635                         break;
636                 case SDT_MEMRO:   /* memory read only */
637                 case SDT_MEMROA:  /* memory read only accessed */
638                 case SDT_MEMRW:   /* memory read write */
639                 case SDT_MEMRWA:  /* memory read write accessed */
640                 case SDT_MEMROD:  /* memory read only expand dwn limit */
641                 case SDT_MEMRODA: /* memory read only expand dwn lim accessed */
642                 case SDT_MEMRWD:  /* memory read write expand dwn limit */  
643                 case SDT_MEMRWDA: /* memory read write expand dwn lim acessed */
644                 case SDT_MEME:    /* memory execute only */ 
645                 case SDT_MEMEA:   /* memory execute only accessed */
646                 case SDT_MEMER:   /* memory execute read */
647                 case SDT_MEMERA:  /* memory execute read accessed */
648                         break;
649                 default:
650                         return(EINVAL);
651                         /*NOTREACHED*/
652                 }
653
654                 /* Only user (ring-3) descriptors may be present. */
655                 if ((dp->sd.sd_p != 0) && (dp->sd.sd_dpl != SEL_UPL))
656                         return (EACCES);
657         }
658
659         if (uap->start == LDT_AUTO_ALLOC && uap->num == 1) {
660                 /* Allocate a free slot */
661                 mtx_lock_spin(&dt_lock);
662                 if ((pldt = mdp->md_ldt) == NULL) {
663                         if ((error = i386_ldt_grow(td, NLDT + 1))) {
664                                 mtx_unlock_spin(&dt_lock);
665                                 return (error);
666                         }
667                         pldt = mdp->md_ldt;
668                 }
669 again:
670                 /*
671                  * start scanning a bit up to leave room for NVidia and
672                  * Wine, which still user the "Blat" method of allocation.
673                  */
674                 dp = &((union descriptor *)(pldt->ldt_base))[NLDT];
675                 for (i = NLDT; i < pldt->ldt_len; ++i) {
676                         if (dp->sd.sd_type == SDT_SYSNULL)
677                                 break;
678                         dp++;
679                 }
680                 if (i >= pldt->ldt_len) {
681                         if ((error = i386_ldt_grow(td, pldt->ldt_len+1))) {
682                                 mtx_unlock_spin(&dt_lock);
683                                 return (error);
684                         }
685                         goto again;
686                 }
687                 uap->start = i;
688                 error = i386_set_ldt_data(td, i, 1, descs);
689                 mtx_unlock_spin(&dt_lock);
690         } else {
691                 largest_ld = uap->start + uap->num;
692                 mtx_lock_spin(&dt_lock);
693                 if (!(error = i386_ldt_grow(td, largest_ld))) {
694                         error = i386_set_ldt_data(td, uap->start, uap->num,
695                             descs);
696                 }
697                 mtx_unlock_spin(&dt_lock);
698         }
699         if (error == 0)
700                 td->td_retval[0] = uap->start;
701         return (error);
702 }
703
704 static int
705 i386_set_ldt_data(struct thread *td, int start, int num,
706         union descriptor *descs)
707 {
708         struct mdproc *mdp = &td->td_proc->p_md;
709         struct proc_ldt *pldt = mdp->md_ldt;
710
711         mtx_assert(&dt_lock, MA_OWNED);
712
713         /* Fill in range */
714         bcopy(descs,
715             &((union descriptor *)(pldt->ldt_base))[start],
716             num * sizeof(union descriptor));
717         return (0);
718 }
719
720 static int
721 i386_ldt_grow(struct thread *td, int len) 
722 {
723         struct mdproc *mdp = &td->td_proc->p_md;
724         struct proc_ldt *new_ldt, *pldt;
725         caddr_t old_ldt_base = NULL_LDT_BASE;
726         int old_ldt_len = 0;
727
728         mtx_assert(&dt_lock, MA_OWNED);
729
730         if (len > MAX_LD)
731                 return (ENOMEM);
732         if (len < NLDT + 1)
733                 len = NLDT + 1;
734
735         /* Allocate a user ldt. */
736         if ((pldt = mdp->md_ldt) == NULL || len > pldt->ldt_len) {
737                 new_ldt = user_ldt_alloc(mdp, len);
738                 if (new_ldt == NULL)
739                         return (ENOMEM);
740                 pldt = mdp->md_ldt;
741
742                 if (pldt != NULL) {
743                         if (new_ldt->ldt_len <= pldt->ldt_len) {
744                                 /*
745                                  * We just lost the race for allocation, so
746                                  * free the new object and return.
747                                  */
748                                 mtx_unlock_spin(&dt_lock);
749                                 kmem_free(kernel_arena,
750                                    (vm_offset_t)new_ldt->ldt_base,
751                                    new_ldt->ldt_len * sizeof(union descriptor));
752                                 free(new_ldt, M_SUBPROC);
753                                 mtx_lock_spin(&dt_lock);
754                                 return (0);
755                         }
756
757                         /*
758                          * We have to substitute the current LDT entry for
759                          * curproc with the new one since its size grew.
760                          */
761                         old_ldt_base = pldt->ldt_base;
762                         old_ldt_len = pldt->ldt_len;
763                         pldt->ldt_sd = new_ldt->ldt_sd;
764                         pldt->ldt_base = new_ldt->ldt_base;
765                         pldt->ldt_len = new_ldt->ldt_len;
766                 } else
767                         mdp->md_ldt = pldt = new_ldt;
768 #ifdef SMP
769                 /*
770                  * Signal other cpus to reload ldt.  We need to unlock dt_lock
771                  * here because other CPU will contest on it since their
772                  * curthreads won't hold the lock and will block when trying
773                  * to acquire it.
774                  */
775                 mtx_unlock_spin(&dt_lock);
776                 smp_rendezvous(NULL, (void (*)(void *))set_user_ldt_rv,
777                     NULL, td->td_proc->p_vmspace);
778 #else
779                 set_user_ldt(&td->td_proc->p_md);
780                 mtx_unlock_spin(&dt_lock);
781 #endif
782                 if (old_ldt_base != NULL_LDT_BASE) {
783                         kmem_free(kernel_arena, (vm_offset_t)old_ldt_base,
784                             old_ldt_len * sizeof(union descriptor));
785                         free(new_ldt, M_SUBPROC);
786                 }
787                 mtx_lock_spin(&dt_lock);
788         }
789         return (0);
790 }