10Sstevel@tonic-gate /* 20Sstevel@tonic-gate * CDDL HEADER START 30Sstevel@tonic-gate * 40Sstevel@tonic-gate * The contents of this file are subject to the terms of the 52712Snn35248 * Common Development and Distribution License (the "License"). 62712Snn35248 * You may not use this file except in compliance with the License. 70Sstevel@tonic-gate * 80Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 90Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 100Sstevel@tonic-gate * See the License for the specific language governing permissions 110Sstevel@tonic-gate * and limitations under the License. 120Sstevel@tonic-gate * 130Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 140Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 150Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 160Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 170Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 180Sstevel@tonic-gate * 190Sstevel@tonic-gate * CDDL HEADER END 200Sstevel@tonic-gate */ 210Sstevel@tonic-gate /* 223446Smrj * Copyright 2007 Sun Microsystems, Inc. All rights reserved. 230Sstevel@tonic-gate * Use is subject to license terms. 240Sstevel@tonic-gate */ 250Sstevel@tonic-gate 260Sstevel@tonic-gate /* Copyright (c) 1990, 1991 UNIX System Laboratories, Inc. */ 270Sstevel@tonic-gate /* Copyright (c) 1984, 1986, 1987, 1988, 1989, 1990 AT&T */ 280Sstevel@tonic-gate /* All Rights Reserved */ 290Sstevel@tonic-gate 300Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 310Sstevel@tonic-gate 320Sstevel@tonic-gate #include <sys/types.h> 330Sstevel@tonic-gate #include <sys/param.h> 340Sstevel@tonic-gate #include <sys/sysmacros.h> 350Sstevel@tonic-gate #include <sys/signal.h> 360Sstevel@tonic-gate #include <sys/systm.h> 370Sstevel@tonic-gate #include <sys/user.h> 380Sstevel@tonic-gate #include <sys/mman.h> 390Sstevel@tonic-gate #include <sys/class.h> 400Sstevel@tonic-gate #include <sys/proc.h> 410Sstevel@tonic-gate #include <sys/procfs.h> 420Sstevel@tonic-gate #include <sys/buf.h> 430Sstevel@tonic-gate #include <sys/kmem.h> 440Sstevel@tonic-gate #include <sys/cred.h> 450Sstevel@tonic-gate #include <sys/archsystm.h> 460Sstevel@tonic-gate #include <sys/vmparam.h> 470Sstevel@tonic-gate #include <sys/prsystm.h> 480Sstevel@tonic-gate #include <sys/reboot.h> 490Sstevel@tonic-gate #include <sys/uadmin.h> 500Sstevel@tonic-gate #include <sys/vfs.h> 510Sstevel@tonic-gate #include <sys/vnode.h> 520Sstevel@tonic-gate #include <sys/file.h> 530Sstevel@tonic-gate #include <sys/session.h> 540Sstevel@tonic-gate #include <sys/ucontext.h> 550Sstevel@tonic-gate #include <sys/dnlc.h> 560Sstevel@tonic-gate #include <sys/var.h> 570Sstevel@tonic-gate #include <sys/cmn_err.h> 580Sstevel@tonic-gate #include <sys/debugreg.h> 590Sstevel@tonic-gate #include <sys/thread.h> 600Sstevel@tonic-gate #include <sys/vtrace.h> 610Sstevel@tonic-gate #include <sys/consdev.h> 620Sstevel@tonic-gate #include <sys/psw.h> 630Sstevel@tonic-gate #include <sys/regset.h> 640Sstevel@tonic-gate #include <sys/privregs.h> 653451Smrj #include <sys/cpu.h> 660Sstevel@tonic-gate #include <sys/stack.h> 670Sstevel@tonic-gate #include <sys/swap.h> 680Sstevel@tonic-gate #include <vm/hat.h> 690Sstevel@tonic-gate #include <vm/anon.h> 700Sstevel@tonic-gate #include <vm/as.h> 710Sstevel@tonic-gate #include <vm/page.h> 720Sstevel@tonic-gate #include <vm/seg.h> 730Sstevel@tonic-gate #include <vm/seg_kmem.h> 740Sstevel@tonic-gate #include <vm/seg_map.h> 750Sstevel@tonic-gate #include <vm/seg_vn.h> 760Sstevel@tonic-gate #include <sys/exec.h> 770Sstevel@tonic-gate #include <sys/acct.h> 780Sstevel@tonic-gate #include <sys/core.h> 790Sstevel@tonic-gate #include <sys/corectl.h> 800Sstevel@tonic-gate #include <sys/modctl.h> 810Sstevel@tonic-gate #include <sys/tuneable.h> 820Sstevel@tonic-gate #include <c2/audit.h> 830Sstevel@tonic-gate #include <sys/bootconf.h> 842712Snn35248 #include <sys/brand.h> 850Sstevel@tonic-gate #include <sys/dumphdr.h> 860Sstevel@tonic-gate #include <sys/promif.h> 870Sstevel@tonic-gate #include <sys/systeminfo.h> 880Sstevel@tonic-gate #include <sys/kdi.h> 890Sstevel@tonic-gate #include <sys/contract_impl.h> 900Sstevel@tonic-gate #include <sys/x86_archext.h> 910Sstevel@tonic-gate #include <sys/segments.h> 923446Smrj #include <sys/ontrap.h> 930Sstevel@tonic-gate 940Sstevel@tonic-gate /* 950Sstevel@tonic-gate * Compare the version of boot that boot says it is against 960Sstevel@tonic-gate * the version of boot the kernel expects. 970Sstevel@tonic-gate */ 980Sstevel@tonic-gate int 990Sstevel@tonic-gate check_boot_version(int boots_version) 1000Sstevel@tonic-gate { 1010Sstevel@tonic-gate if (boots_version == BO_VERSION) 1020Sstevel@tonic-gate return (0); 1030Sstevel@tonic-gate 1040Sstevel@tonic-gate prom_printf("Wrong boot interface - kernel needs v%d found v%d\n", 1050Sstevel@tonic-gate BO_VERSION, boots_version); 1060Sstevel@tonic-gate prom_panic("halting"); 1070Sstevel@tonic-gate /*NOTREACHED*/ 1080Sstevel@tonic-gate } 1090Sstevel@tonic-gate 1100Sstevel@tonic-gate /* 1110Sstevel@tonic-gate * Process the physical installed list for boot. 1120Sstevel@tonic-gate * Finds: 1130Sstevel@tonic-gate * 1) the pfn of the highest installed physical page, 1140Sstevel@tonic-gate * 2) the number of pages installed 1150Sstevel@tonic-gate * 3) the number of distinct contiguous regions these pages fall into. 1160Sstevel@tonic-gate */ 1170Sstevel@tonic-gate void 1180Sstevel@tonic-gate installed_top_size( 1190Sstevel@tonic-gate struct memlist *list, /* pointer to start of installed list */ 1200Sstevel@tonic-gate pfn_t *high_pfn, /* return ptr for top value */ 1210Sstevel@tonic-gate pgcnt_t *pgcnt, /* return ptr for sum of installed pages */ 1220Sstevel@tonic-gate int *ranges) /* return ptr for the count of contig. ranges */ 1230Sstevel@tonic-gate { 1240Sstevel@tonic-gate pfn_t top = 0; 1250Sstevel@tonic-gate pgcnt_t sumpages = 0; 1260Sstevel@tonic-gate pfn_t highp; /* high page in a chunk */ 1270Sstevel@tonic-gate int cnt = 0; 1280Sstevel@tonic-gate 1290Sstevel@tonic-gate for (; list; list = list->next) { 1300Sstevel@tonic-gate ++cnt; 1310Sstevel@tonic-gate highp = (list->address + list->size - 1) >> PAGESHIFT; 1320Sstevel@tonic-gate if (top < highp) 1330Sstevel@tonic-gate top = highp; 1340Sstevel@tonic-gate sumpages += btop(list->size); 1350Sstevel@tonic-gate } 1360Sstevel@tonic-gate 1370Sstevel@tonic-gate *high_pfn = top; 1380Sstevel@tonic-gate *pgcnt = sumpages; 1390Sstevel@tonic-gate *ranges = cnt; 1400Sstevel@tonic-gate } 1410Sstevel@tonic-gate 1420Sstevel@tonic-gate /* 1430Sstevel@tonic-gate * Copy in a memory list from boot to kernel, with a filter function 1440Sstevel@tonic-gate * to remove pages. The filter function can increase the address and/or 145842Smec * decrease the size to filter out pages. It will also align addresses and 146842Smec * sizes to PAGESIZE. 1470Sstevel@tonic-gate */ 1480Sstevel@tonic-gate void 1490Sstevel@tonic-gate copy_memlist_filter( 1500Sstevel@tonic-gate struct memlist *src, 1510Sstevel@tonic-gate struct memlist **dstp, 1520Sstevel@tonic-gate void (*filter)(uint64_t *, uint64_t *)) 1530Sstevel@tonic-gate { 1540Sstevel@tonic-gate struct memlist *dst, *prev; 1550Sstevel@tonic-gate uint64_t addr; 1560Sstevel@tonic-gate uint64_t size; 1570Sstevel@tonic-gate uint64_t eaddr; 1580Sstevel@tonic-gate 1590Sstevel@tonic-gate dst = *dstp; 1600Sstevel@tonic-gate prev = dst; 1610Sstevel@tonic-gate 1620Sstevel@tonic-gate /* 1630Sstevel@tonic-gate * Move through the memlist applying a filter against 1640Sstevel@tonic-gate * each range of memory. Note that we may apply the 1650Sstevel@tonic-gate * filter multiple times against each memlist entry. 1660Sstevel@tonic-gate */ 1670Sstevel@tonic-gate for (; src; src = src->next) { 168842Smec addr = P2ROUNDUP(src->address, PAGESIZE); 169842Smec eaddr = P2ALIGN(src->address + src->size, PAGESIZE); 1700Sstevel@tonic-gate while (addr < eaddr) { 1710Sstevel@tonic-gate size = eaddr - addr; 1720Sstevel@tonic-gate if (filter != NULL) 1730Sstevel@tonic-gate filter(&addr, &size); 1740Sstevel@tonic-gate if (size == 0) 1750Sstevel@tonic-gate break; 1760Sstevel@tonic-gate dst->address = addr; 1770Sstevel@tonic-gate dst->size = size; 1780Sstevel@tonic-gate dst->next = 0; 1790Sstevel@tonic-gate if (prev == dst) { 1800Sstevel@tonic-gate dst->prev = 0; 1810Sstevel@tonic-gate dst++; 1820Sstevel@tonic-gate } else { 1830Sstevel@tonic-gate dst->prev = prev; 1840Sstevel@tonic-gate prev->next = dst; 1850Sstevel@tonic-gate dst++; 1860Sstevel@tonic-gate prev++; 1870Sstevel@tonic-gate } 1880Sstevel@tonic-gate addr += size; 1890Sstevel@tonic-gate } 1900Sstevel@tonic-gate } 1910Sstevel@tonic-gate 1920Sstevel@tonic-gate *dstp = dst; 1930Sstevel@tonic-gate } 1940Sstevel@tonic-gate 1950Sstevel@tonic-gate /* 1960Sstevel@tonic-gate * Kernel setup code, called from startup(). 1970Sstevel@tonic-gate */ 1980Sstevel@tonic-gate void 1990Sstevel@tonic-gate kern_setup1(void) 2000Sstevel@tonic-gate { 2010Sstevel@tonic-gate proc_t *pp; 2020Sstevel@tonic-gate 2030Sstevel@tonic-gate pp = &p0; 2040Sstevel@tonic-gate 2050Sstevel@tonic-gate proc_sched = pp; 2060Sstevel@tonic-gate 2070Sstevel@tonic-gate /* 2080Sstevel@tonic-gate * Initialize process 0 data structures 2090Sstevel@tonic-gate */ 2100Sstevel@tonic-gate pp->p_stat = SRUN; 2110Sstevel@tonic-gate pp->p_flag = SSYS; 2120Sstevel@tonic-gate 2130Sstevel@tonic-gate pp->p_pidp = &pid0; 2140Sstevel@tonic-gate pp->p_pgidp = &pid0; 2150Sstevel@tonic-gate pp->p_sessp = &session0; 2160Sstevel@tonic-gate pp->p_tlist = &t0; 2170Sstevel@tonic-gate pid0.pid_pglink = pp; 218749Ssusans pid0.pid_pgtail = pp; 2190Sstevel@tonic-gate 2200Sstevel@tonic-gate /* 2210Sstevel@tonic-gate * XXX - we asssume that the u-area is zeroed out except for 2220Sstevel@tonic-gate * ttolwp(curthread)->lwp_regs. 2230Sstevel@tonic-gate */ 2243446Smrj PTOU(curproc)->u_cmask = (mode_t)CMASK; 2250Sstevel@tonic-gate 2260Sstevel@tonic-gate thread_init(); /* init thread_free list */ 2270Sstevel@tonic-gate pid_init(); /* initialize pid (proc) table */ 2280Sstevel@tonic-gate contract_init(); /* initialize contracts */ 2290Sstevel@tonic-gate 2300Sstevel@tonic-gate init_pages_pp_maximum(); 2310Sstevel@tonic-gate } 2320Sstevel@tonic-gate 2330Sstevel@tonic-gate /* 2340Sstevel@tonic-gate * Load a procedure into a thread. 2350Sstevel@tonic-gate */ 2360Sstevel@tonic-gate void 2370Sstevel@tonic-gate thread_load(kthread_t *t, void (*start)(), caddr_t arg, size_t len) 2380Sstevel@tonic-gate { 2390Sstevel@tonic-gate caddr_t sp; 2400Sstevel@tonic-gate size_t framesz; 2410Sstevel@tonic-gate caddr_t argp; 2420Sstevel@tonic-gate long *p; 2430Sstevel@tonic-gate extern void thread_start(); 2440Sstevel@tonic-gate 2450Sstevel@tonic-gate /* 2460Sstevel@tonic-gate * Push a "c" call frame onto the stack to represent 2470Sstevel@tonic-gate * the caller of "start". 2480Sstevel@tonic-gate */ 2490Sstevel@tonic-gate sp = t->t_stk; 2500Sstevel@tonic-gate ASSERT(((uintptr_t)t->t_stk & (STACK_ENTRY_ALIGN - 1)) == 0); 2510Sstevel@tonic-gate if (len != 0) { 2520Sstevel@tonic-gate /* 2530Sstevel@tonic-gate * the object that arg points at is copied into the 2540Sstevel@tonic-gate * caller's frame. 2550Sstevel@tonic-gate */ 2560Sstevel@tonic-gate framesz = SA(len); 2570Sstevel@tonic-gate sp -= framesz; 2580Sstevel@tonic-gate ASSERT(sp > t->t_stkbase); 2590Sstevel@tonic-gate argp = sp + SA(MINFRAME); 2600Sstevel@tonic-gate bcopy(arg, argp, len); 2610Sstevel@tonic-gate arg = argp; 2620Sstevel@tonic-gate } 2630Sstevel@tonic-gate /* 2640Sstevel@tonic-gate * Set up arguments (arg and len) on the caller's stack frame. 2650Sstevel@tonic-gate */ 2660Sstevel@tonic-gate p = (long *)sp; 2670Sstevel@tonic-gate 2680Sstevel@tonic-gate *--p = 0; /* fake call */ 2690Sstevel@tonic-gate *--p = 0; /* null frame pointer terminates stack trace */ 2700Sstevel@tonic-gate *--p = (long)len; 2710Sstevel@tonic-gate *--p = (intptr_t)arg; 2720Sstevel@tonic-gate *--p = (intptr_t)start; 2730Sstevel@tonic-gate 2740Sstevel@tonic-gate /* 2750Sstevel@tonic-gate * initialize thread to resume at thread_start() which will 2760Sstevel@tonic-gate * turn around and invoke (*start)(arg, len). 2770Sstevel@tonic-gate */ 2780Sstevel@tonic-gate t->t_pc = (uintptr_t)thread_start; 2790Sstevel@tonic-gate t->t_sp = (uintptr_t)p; 2800Sstevel@tonic-gate 2810Sstevel@tonic-gate ASSERT((t->t_sp & (STACK_ENTRY_ALIGN - 1)) == 0); 2820Sstevel@tonic-gate } 2830Sstevel@tonic-gate 2840Sstevel@tonic-gate /* 2850Sstevel@tonic-gate * load user registers into lwp. 2860Sstevel@tonic-gate */ 2870Sstevel@tonic-gate /*ARGSUSED2*/ 2880Sstevel@tonic-gate void 2890Sstevel@tonic-gate lwp_load(klwp_t *lwp, gregset_t grp, uintptr_t thrptr) 2900Sstevel@tonic-gate { 2910Sstevel@tonic-gate struct regs *rp = lwptoregs(lwp); 2920Sstevel@tonic-gate 2930Sstevel@tonic-gate setgregs(lwp, grp); 2940Sstevel@tonic-gate rp->r_ps = PSL_USER; 2950Sstevel@tonic-gate 2960Sstevel@tonic-gate /* 2973446Smrj * For 64-bit lwps, we allow null %fs selector value, and null 2983446Smrj * %gs selector to point anywhere in the address space using 2990Sstevel@tonic-gate * %fsbase and %gsbase behind the scenes. libc uses %fs to point 3000Sstevel@tonic-gate * at the ulwp_t structure. 3010Sstevel@tonic-gate * 3020Sstevel@tonic-gate * For 32-bit lwps, libc wedges its lwp thread pointer into the 3030Sstevel@tonic-gate * ucontext ESP slot (which is otherwise irrelevant to setting a 3040Sstevel@tonic-gate * ucontext) and LWPGS_SEL value into gregs[REG_GS]. This is so 3050Sstevel@tonic-gate * syslwp_create() can atomically setup %gs. 3060Sstevel@tonic-gate * 3070Sstevel@tonic-gate * See setup_context() in libc. 3080Sstevel@tonic-gate */ 3090Sstevel@tonic-gate #ifdef _SYSCALL32_IMPL 3100Sstevel@tonic-gate if (lwp_getdatamodel(lwp) == DATAMODEL_ILP32) { 3110Sstevel@tonic-gate if (grp[REG_GS] == LWPGS_SEL) 3120Sstevel@tonic-gate (void) lwp_setprivate(lwp, _LWP_GSBASE, thrptr); 3133446Smrj } else { 3143446Smrj /* 3153446Smrj * See lwp_setprivate in kernel and setup_context in libc. 3163446Smrj * 3173446Smrj * Currently libc constructs a ucontext from whole cloth for 3183446Smrj * every new (not main) lwp created. For 64 bit processes 3193446Smrj * %fsbase is directly set to point to current thread pointer. 3203446Smrj * In the past (solaris 10) %fs was also set LWPFS_SEL to 3213446Smrj * indicate %fsbase. Now we use the null GDT selector for 3223446Smrj * this purpose. LWP[FS|GS]_SEL are only intended for 32 bit 3233446Smrj * processes. To ease transition we support older libcs in 3243446Smrj * the newer kernel by forcing %fs or %gs selector to null 3253446Smrj * by calling lwp_setprivate if LWP[FS|GS]_SEL is passed in 3263446Smrj * the ucontext. This is should be ripped out at some future 3273446Smrj * date. Another fix would be for libc to do a getcontext 3283446Smrj * and inherit the null %fs/%gs from the current context but 3293446Smrj * that means an extra system call and could hurt performance. 3303446Smrj */ 3313446Smrj if (grp[REG_FS] == 0x1bb) /* hard code legacy LWPFS_SEL */ 3323446Smrj (void) lwp_setprivate(lwp, _LWP_FSBASE, 3333446Smrj (uintptr_t)grp[REG_FSBASE]); 3343446Smrj 3353446Smrj if (grp[REG_GS] == 0x1c3) /* hard code legacy LWPGS_SEL */ 3363446Smrj (void) lwp_setprivate(lwp, _LWP_GSBASE, 3373446Smrj (uintptr_t)grp[REG_GSBASE]); 3380Sstevel@tonic-gate } 3390Sstevel@tonic-gate #else 3400Sstevel@tonic-gate if (grp[GS] == LWPGS_SEL) 3410Sstevel@tonic-gate (void) lwp_setprivate(lwp, _LWP_GSBASE, thrptr); 3420Sstevel@tonic-gate #endif 3430Sstevel@tonic-gate 3440Sstevel@tonic-gate lwp->lwp_eosys = JUSTRETURN; 3450Sstevel@tonic-gate lwptot(lwp)->t_post_sys = 1; 3460Sstevel@tonic-gate } 3470Sstevel@tonic-gate 3480Sstevel@tonic-gate /* 3490Sstevel@tonic-gate * set syscall()'s return values for a lwp. 3500Sstevel@tonic-gate */ 3510Sstevel@tonic-gate void 3520Sstevel@tonic-gate lwp_setrval(klwp_t *lwp, int v1, int v2) 3530Sstevel@tonic-gate { 3540Sstevel@tonic-gate lwptoregs(lwp)->r_ps &= ~PS_C; 3550Sstevel@tonic-gate lwptoregs(lwp)->r_r0 = v1; 3560Sstevel@tonic-gate lwptoregs(lwp)->r_r1 = v2; 3570Sstevel@tonic-gate } 3580Sstevel@tonic-gate 3590Sstevel@tonic-gate /* 3600Sstevel@tonic-gate * set syscall()'s return values for a lwp. 3610Sstevel@tonic-gate */ 3620Sstevel@tonic-gate void 3630Sstevel@tonic-gate lwp_setsp(klwp_t *lwp, caddr_t sp) 3640Sstevel@tonic-gate { 3650Sstevel@tonic-gate lwptoregs(lwp)->r_sp = (intptr_t)sp; 3660Sstevel@tonic-gate } 3670Sstevel@tonic-gate 3680Sstevel@tonic-gate /* 3690Sstevel@tonic-gate * Copy regs from parent to child. 3700Sstevel@tonic-gate */ 3710Sstevel@tonic-gate void 3720Sstevel@tonic-gate lwp_forkregs(klwp_t *lwp, klwp_t *clwp) 3730Sstevel@tonic-gate { 3740Sstevel@tonic-gate #if defined(__amd64) 3752712Snn35248 struct pcb *pcb = &clwp->lwp_pcb; 3762712Snn35248 struct regs *rp = lwptoregs(lwp); 3772712Snn35248 378*4503Ssudheer if (pcb->pcb_rupdate == 0) { 3792712Snn35248 pcb->pcb_ds = rp->r_ds; 3802712Snn35248 pcb->pcb_es = rp->r_es; 3812712Snn35248 pcb->pcb_fs = rp->r_fs; 3822712Snn35248 pcb->pcb_gs = rp->r_gs; 383*4503Ssudheer pcb->pcb_rupdate = 1; 3842712Snn35248 lwptot(clwp)->t_post_sys = 1; 3852712Snn35248 } 3862712Snn35248 ASSERT(lwptot(clwp)->t_post_sys); 3870Sstevel@tonic-gate #endif 3882712Snn35248 3890Sstevel@tonic-gate bcopy(lwp->lwp_regs, clwp->lwp_regs, sizeof (struct regs)); 3900Sstevel@tonic-gate } 3910Sstevel@tonic-gate 3920Sstevel@tonic-gate /* 3930Sstevel@tonic-gate * This function is currently unused on x86. 3940Sstevel@tonic-gate */ 3950Sstevel@tonic-gate /*ARGSUSED*/ 3960Sstevel@tonic-gate void 3970Sstevel@tonic-gate lwp_freeregs(klwp_t *lwp, int isexec) 3980Sstevel@tonic-gate {} 3990Sstevel@tonic-gate 4000Sstevel@tonic-gate /* 4010Sstevel@tonic-gate * This function is currently unused on x86. 4020Sstevel@tonic-gate */ 4030Sstevel@tonic-gate void 4040Sstevel@tonic-gate lwp_pcb_exit(void) 4050Sstevel@tonic-gate {} 4060Sstevel@tonic-gate 4070Sstevel@tonic-gate /* 4080Sstevel@tonic-gate * Lwp context ops for segment registers. 4090Sstevel@tonic-gate */ 4100Sstevel@tonic-gate 4110Sstevel@tonic-gate /* 4120Sstevel@tonic-gate * Every time we come into the kernel (syscall, interrupt or trap 4130Sstevel@tonic-gate * but not fast-traps) we capture the current values of the user's 4140Sstevel@tonic-gate * segment registers into the lwp's reg structure. This includes 4150Sstevel@tonic-gate * lcall for i386 generic system call support since it is handled 4160Sstevel@tonic-gate * as a segment-not-present trap. 4170Sstevel@tonic-gate * 4180Sstevel@tonic-gate * Here we save the current values from the lwp regs into the pcb 419*4503Ssudheer * and set pcb->pcb_rupdate to 1 to tell the rest of the kernel 4200Sstevel@tonic-gate * that the pcb copy of the segment registers is the current one. 4210Sstevel@tonic-gate * This ensures the lwp's next trip to user land via update_sregs. 4220Sstevel@tonic-gate * Finally we set t_post_sys to ensure that no system call fast-path's 4230Sstevel@tonic-gate * its way out of the kernel via sysret. 4240Sstevel@tonic-gate * 4250Sstevel@tonic-gate * (This means that we need to have interrupts disabled when we test 4260Sstevel@tonic-gate * t->t_post_sys in the syscall handlers; if the test fails, we need 4270Sstevel@tonic-gate * to keep interrupts disabled until we return to userland so we can't 4280Sstevel@tonic-gate * be switched away.) 4290Sstevel@tonic-gate * 4300Sstevel@tonic-gate * As a result of all this, we don't really have to do a whole lot if 4310Sstevel@tonic-gate * the thread is just mucking about in the kernel, switching on and 4320Sstevel@tonic-gate * off the cpu for whatever reason it feels like. And yet we still 4330Sstevel@tonic-gate * preserve fast syscalls, cause if we -don't- get descheduled, 4340Sstevel@tonic-gate * we never come here either. 4350Sstevel@tonic-gate */ 4360Sstevel@tonic-gate 4370Sstevel@tonic-gate #define VALID_LWP_DESC(udp) ((udp)->usd_type == SDT_MEMRWA && \ 4380Sstevel@tonic-gate (udp)->usd_p == 1 && (udp)->usd_dpl == SEL_UPL) 4390Sstevel@tonic-gate 4400Sstevel@tonic-gate void 4410Sstevel@tonic-gate lwp_segregs_save(klwp_t *lwp) 4420Sstevel@tonic-gate { 4430Sstevel@tonic-gate #if defined(__amd64) 4440Sstevel@tonic-gate pcb_t *pcb = &lwp->lwp_pcb; 4450Sstevel@tonic-gate struct regs *rp; 4460Sstevel@tonic-gate 4470Sstevel@tonic-gate ASSERT(VALID_LWP_DESC(&pcb->pcb_fsdesc)); 4480Sstevel@tonic-gate ASSERT(VALID_LWP_DESC(&pcb->pcb_gsdesc)); 4490Sstevel@tonic-gate 450*4503Ssudheer if (pcb->pcb_rupdate == 0) { 4510Sstevel@tonic-gate rp = lwptoregs(lwp); 4520Sstevel@tonic-gate 4530Sstevel@tonic-gate /* 4540Sstevel@tonic-gate * If there's no update already pending, capture the current 4550Sstevel@tonic-gate * %ds/%es/%fs/%gs values from lwp's regs in case the user 4560Sstevel@tonic-gate * changed them; %fsbase and %gsbase are privileged so the 4570Sstevel@tonic-gate * kernel versions of these registers in pcb_fsbase and 4580Sstevel@tonic-gate * pcb_gsbase are always up-to-date. 4590Sstevel@tonic-gate */ 4600Sstevel@tonic-gate pcb->pcb_ds = rp->r_ds; 4610Sstevel@tonic-gate pcb->pcb_es = rp->r_es; 4620Sstevel@tonic-gate pcb->pcb_fs = rp->r_fs; 4630Sstevel@tonic-gate pcb->pcb_gs = rp->r_gs; 464*4503Ssudheer pcb->pcb_rupdate = 1; 4650Sstevel@tonic-gate lwp->lwp_thread->t_post_sys = 1; 4660Sstevel@tonic-gate } 4670Sstevel@tonic-gate #endif /* __amd64 */ 4680Sstevel@tonic-gate 4690Sstevel@tonic-gate ASSERT(bcmp(&CPU->cpu_gdt[GDT_LWPFS], &lwp->lwp_pcb.pcb_fsdesc, 4700Sstevel@tonic-gate sizeof (lwp->lwp_pcb.pcb_fsdesc)) == 0); 4710Sstevel@tonic-gate ASSERT(bcmp(&CPU->cpu_gdt[GDT_LWPGS], &lwp->lwp_pcb.pcb_gsdesc, 4720Sstevel@tonic-gate sizeof (lwp->lwp_pcb.pcb_gsdesc)) == 0); 4730Sstevel@tonic-gate } 4740Sstevel@tonic-gate 4753446Smrj #if defined(__amd64) 4763446Smrj 4773446Smrj /* 4783446Smrj * Update the segment registers with new values from the pcb 4793446Smrj * 4803446Smrj * We have to do this carefully, and in the following order, 4813446Smrj * in case any of the selectors points at a bogus descriptor. 4823446Smrj * If they do, we'll catch trap with on_trap and return 1. 4833446Smrj * returns 0 on success. 4843446Smrj * 4853446Smrj * This is particularly tricky for %gs. 4863446Smrj * This routine must be executed under a cli. 4873446Smrj */ 4883446Smrj int 4893446Smrj update_sregs(struct regs *rp, klwp_t *lwp) 4903446Smrj { 4913446Smrj pcb_t *pcb = &lwp->lwp_pcb; 4923446Smrj ulong_t kgsbase; 4933446Smrj on_trap_data_t otd; 4943446Smrj int rc = 0; 4953446Smrj 4963446Smrj if (!on_trap(&otd, OT_SEGMENT_ACCESS)) { 4973446Smrj 4983446Smrj kgsbase = (ulong_t)CPU; 4993446Smrj __set_gs(pcb->pcb_gs); 5003446Smrj 5013446Smrj /* 5023446Smrj * If __set_gs fails it's because the new %gs is a bad %gs, 5033446Smrj * we'll be taking a trap but with the original %gs and %gsbase 5043446Smrj * undamaged (i.e. pointing at curcpu). 5053446Smrj * 5063446Smrj * We've just mucked up the kernel's gsbase. Oops. In 5073446Smrj * particular we can't take any traps at all. Make the newly 5083446Smrj * computed gsbase be the hidden gs via __swapgs , and fix 5093446Smrj * the kernel's gsbase back again. Later, when we return to 5103446Smrj * userland we'll swapgs again restoring gsbase just loaded 5113446Smrj * above. 5123446Smrj */ 5133446Smrj __swapgs(); 5143446Smrj rp->r_gs = pcb->pcb_gs; 5153446Smrj 5163446Smrj /* 5173446Smrj * restore kernel's gsbase 5183446Smrj */ 5193446Smrj wrmsr(MSR_AMD_GSBASE, kgsbase); 5203446Smrj 5213446Smrj /* 5223446Smrj * Only override the descriptor base address if 5233446Smrj * r_gs == LWPGS_SEL or if r_gs == NULL. A note on 5243446Smrj * NULL descriptors -- 32-bit programs take faults 5253446Smrj * if they deference NULL descriptors; however, 5263446Smrj * when 64-bit programs load them into %fs or %gs, 5273446Smrj * they DONT fault -- only the base address remains 5283446Smrj * whatever it was from the last load. Urk. 5293446Smrj * 5303446Smrj * XXX - note that lwp_setprivate now sets %fs/%gs to the 5313446Smrj * null selector for 64 bit processes. Whereas before 5323446Smrj * %fs/%gs were set to LWP(FS|GS)_SEL regardless of 5333446Smrj * the process's data model. For now we check for both 5343446Smrj * values so that the kernel can also support the older 5353446Smrj * libc. This should be ripped out at some point in the 5363446Smrj * future. 5373446Smrj */ 5383446Smrj if (pcb->pcb_gs == LWPGS_SEL || pcb->pcb_gs == 0) 5393446Smrj wrmsr(MSR_AMD_KGSBASE, pcb->pcb_gsbase); 5403446Smrj 5413446Smrj __set_ds(pcb->pcb_ds); 5423446Smrj rp->r_ds = pcb->pcb_ds; 5433446Smrj 5443446Smrj __set_es(pcb->pcb_es); 5453446Smrj rp->r_es = pcb->pcb_es; 5463446Smrj 5473446Smrj __set_fs(pcb->pcb_fs); 5483446Smrj rp->r_fs = pcb->pcb_fs; 5493446Smrj 5503446Smrj /* 5513446Smrj * Same as for %gs 5523446Smrj */ 5533446Smrj if (pcb->pcb_fs == LWPFS_SEL || pcb->pcb_fs == 0) 5543446Smrj wrmsr(MSR_AMD_FSBASE, pcb->pcb_fsbase); 5553446Smrj 5563446Smrj } else { 5573446Smrj cli(); 5583446Smrj rc = 1; 5593446Smrj } 5603446Smrj no_trap(); 5613446Smrj return (rc); 5623446Smrj } 5633446Smrj #endif /* __amd64 */ 5643446Smrj 5653446Smrj #ifdef _SYSCALL32_IMPL 5663446Smrj 5673446Smrj /* 5683446Smrj * Make it impossible for a process to change its data model. 5693446Smrj * We do this by toggling the present bits for the 32 and 5703446Smrj * 64-bit user code descriptors. That way if a user lwp attempts 5713446Smrj * to change its data model (by using the wrong code descriptor in 5723446Smrj * %cs) it will fault immediately. This also allows us to simplify 5733446Smrj * assertions and checks in the kernel. 5743446Smrj */ 5753446Smrj static void 5763446Smrj gdt_ucode_model(model_t model) 5773446Smrj { 5783446Smrj cpu_t *cpu; 5793446Smrj 5803446Smrj kpreempt_disable(); 5813446Smrj cpu = CPU; 5823446Smrj if (model == DATAMODEL_NATIVE) { 5833446Smrj cpu->cpu_gdt[GDT_UCODE].usd_p = 1; 5843446Smrj cpu->cpu_gdt[GDT_U32CODE].usd_p = 0; 5853446Smrj } else { 5863446Smrj cpu->cpu_gdt[GDT_U32CODE].usd_p = 1; 5873446Smrj cpu->cpu_gdt[GDT_UCODE].usd_p = 0; 5883446Smrj } 5893446Smrj kpreempt_enable(); 5903446Smrj } 5913446Smrj 5923446Smrj #endif /* _SYSCALL32_IMPL */ 5933446Smrj 5940Sstevel@tonic-gate /* 5950Sstevel@tonic-gate * Restore lwp private fs and gs segment descriptors 5960Sstevel@tonic-gate * on current cpu's GDT. 5970Sstevel@tonic-gate */ 5980Sstevel@tonic-gate static void 5990Sstevel@tonic-gate lwp_segregs_restore(klwp_t *lwp) 6000Sstevel@tonic-gate { 6013446Smrj pcb_t *pcb = &lwp->lwp_pcb; 6020Sstevel@tonic-gate cpu_t *cpu = CPU; 6030Sstevel@tonic-gate 6040Sstevel@tonic-gate ASSERT(VALID_LWP_DESC(&pcb->pcb_fsdesc)); 6050Sstevel@tonic-gate ASSERT(VALID_LWP_DESC(&pcb->pcb_gsdesc)); 6060Sstevel@tonic-gate 6073446Smrj #ifdef _SYSCALL32_IMPL 6083446Smrj gdt_ucode_model(DATAMODEL_NATIVE); 6093446Smrj #endif 6103446Smrj 6110Sstevel@tonic-gate cpu->cpu_gdt[GDT_LWPFS] = pcb->pcb_fsdesc; 6120Sstevel@tonic-gate cpu->cpu_gdt[GDT_LWPGS] = pcb->pcb_gsdesc; 6130Sstevel@tonic-gate 6140Sstevel@tonic-gate } 6150Sstevel@tonic-gate 6160Sstevel@tonic-gate #ifdef _SYSCALL32_IMPL 6170Sstevel@tonic-gate 6180Sstevel@tonic-gate static void 6190Sstevel@tonic-gate lwp_segregs_restore32(klwp_t *lwp) 6200Sstevel@tonic-gate { 6213446Smrj /*LINTED*/ 6220Sstevel@tonic-gate cpu_t *cpu = CPU; 6230Sstevel@tonic-gate pcb_t *pcb = &lwp->lwp_pcb; 6240Sstevel@tonic-gate 6253446Smrj ASSERT(VALID_LWP_DESC(&lwp->lwp_pcb.pcb_fsdesc)); 6263446Smrj ASSERT(VALID_LWP_DESC(&lwp->lwp_pcb.pcb_gsdesc)); 6270Sstevel@tonic-gate 6283446Smrj gdt_ucode_model(DATAMODEL_ILP32); 6290Sstevel@tonic-gate cpu->cpu_gdt[GDT_LWPFS] = pcb->pcb_fsdesc; 6300Sstevel@tonic-gate cpu->cpu_gdt[GDT_LWPGS] = pcb->pcb_gsdesc; 6310Sstevel@tonic-gate } 6320Sstevel@tonic-gate 6330Sstevel@tonic-gate #endif /* _SYSCALL32_IMPL */ 6340Sstevel@tonic-gate 6350Sstevel@tonic-gate /* 6362712Snn35248 * If this is a process in a branded zone, then we want it to use the brand 6372712Snn35248 * syscall entry points instead of the standard Solaris entry points. This 6382712Snn35248 * routine must be called when a new lwp is created within a branded zone 6392712Snn35248 * or when an existing lwp moves into a branded zone via a zone_enter() 6402712Snn35248 * operation. 6412712Snn35248 */ 6422712Snn35248 void 6432712Snn35248 lwp_attach_brand_hdlrs(klwp_t *lwp) 6442712Snn35248 { 6452712Snn35248 kthread_t *t = lwptot(lwp); 6462712Snn35248 6472712Snn35248 ASSERT(PROC_IS_BRANDED(lwptoproc(lwp))); 6482712Snn35248 ASSERT(removectx(t, NULL, brand_interpositioning_disable, 6492712Snn35248 brand_interpositioning_enable, NULL, NULL, NULL, NULL) == 0); 6502712Snn35248 6512712Snn35248 installctx(t, NULL, brand_interpositioning_disable, 6522712Snn35248 brand_interpositioning_enable, NULL, NULL, NULL, NULL); 6532712Snn35248 6542712Snn35248 if (t == curthread) { 6552712Snn35248 kpreempt_disable(); 6562712Snn35248 brand_interpositioning_enable(); 6572712Snn35248 kpreempt_enable(); 6582712Snn35248 } 6592712Snn35248 } 6602712Snn35248 6612712Snn35248 /* 6620Sstevel@tonic-gate * Add any lwp-associated context handlers to the lwp at the beginning 6630Sstevel@tonic-gate * of the lwp's useful life. 6640Sstevel@tonic-gate * 6650Sstevel@tonic-gate * All paths which create lwp's invoke lwp_create(); lwp_create() 6660Sstevel@tonic-gate * invokes lwp_stk_init() which initializes the stack, sets up 6670Sstevel@tonic-gate * lwp_regs, and invokes this routine. 6680Sstevel@tonic-gate * 6690Sstevel@tonic-gate * All paths which destroy lwp's invoke lwp_exit() to rip the lwp 6700Sstevel@tonic-gate * apart and put it on 'lwp_deathrow'; if the lwp is destroyed it 6710Sstevel@tonic-gate * ends up in thread_free() which invokes freectx(t, 0) before 6720Sstevel@tonic-gate * invoking lwp_stk_fini(). When the lwp is recycled from death 6730Sstevel@tonic-gate * row, lwp_stk_fini() is invoked, then thread_free(), and thus 6740Sstevel@tonic-gate * freectx(t, 0) as before. 6750Sstevel@tonic-gate * 6760Sstevel@tonic-gate * In the case of exec, the surviving lwp is thoroughly scrubbed 6770Sstevel@tonic-gate * clean; exec invokes freectx(t, 1) to destroy associated contexts. 6780Sstevel@tonic-gate * On the way back to the new image, it invokes setregs() which 6790Sstevel@tonic-gate * in turn invokes this routine. 6800Sstevel@tonic-gate */ 6810Sstevel@tonic-gate void 6820Sstevel@tonic-gate lwp_installctx(klwp_t *lwp) 6830Sstevel@tonic-gate { 6840Sstevel@tonic-gate kthread_t *t = lwptot(lwp); 6850Sstevel@tonic-gate int thisthread = t == curthread; 6860Sstevel@tonic-gate #ifdef _SYSCALL32_IMPL 6870Sstevel@tonic-gate void (*restop)(klwp_t *) = lwp_getdatamodel(lwp) == DATAMODEL_NATIVE ? 6880Sstevel@tonic-gate lwp_segregs_restore : lwp_segregs_restore32; 6890Sstevel@tonic-gate #else 6900Sstevel@tonic-gate void (*restop)(klwp_t *) = lwp_segregs_restore; 6910Sstevel@tonic-gate #endif 6920Sstevel@tonic-gate 6930Sstevel@tonic-gate /* 6940Sstevel@tonic-gate * Install the basic lwp context handlers on each lwp. 6950Sstevel@tonic-gate * 6960Sstevel@tonic-gate * On the amd64 kernel, the context handlers are responsible for 6970Sstevel@tonic-gate * virtualizing %ds, %es, %fs, and %gs to the lwp. The register 6980Sstevel@tonic-gate * values are only ever changed via sys_rtt when the 699*4503Ssudheer * pcb->pcb_rupdate == 1. Only sys_rtt gets to clear the bit. 7000Sstevel@tonic-gate * 7010Sstevel@tonic-gate * On the i386 kernel, the context handlers are responsible for 7020Sstevel@tonic-gate * virtualizing %gs/%fs to the lwp by updating the per-cpu GDTs 7030Sstevel@tonic-gate */ 7040Sstevel@tonic-gate ASSERT(removectx(t, lwp, lwp_segregs_save, restop, 7050Sstevel@tonic-gate NULL, NULL, NULL, NULL) == 0); 7060Sstevel@tonic-gate if (thisthread) 7070Sstevel@tonic-gate kpreempt_disable(); 7080Sstevel@tonic-gate installctx(t, lwp, lwp_segregs_save, restop, 7090Sstevel@tonic-gate NULL, NULL, NULL, NULL); 7100Sstevel@tonic-gate if (thisthread) { 7110Sstevel@tonic-gate /* 7120Sstevel@tonic-gate * Since we're the right thread, set the values in the GDT 7130Sstevel@tonic-gate */ 7140Sstevel@tonic-gate restop(lwp); 7150Sstevel@tonic-gate kpreempt_enable(); 7160Sstevel@tonic-gate } 7170Sstevel@tonic-gate 7180Sstevel@tonic-gate /* 7190Sstevel@tonic-gate * If we have sysenter/sysexit instructions enabled, we need 7200Sstevel@tonic-gate * to ensure that the hardware mechanism is kept up-to-date with the 7210Sstevel@tonic-gate * lwp's kernel stack pointer across context switches. 7220Sstevel@tonic-gate * 7230Sstevel@tonic-gate * sep_save zeros the sysenter stack pointer msr; sep_restore sets 7240Sstevel@tonic-gate * it to the lwp's kernel stack pointer (kstktop). 7250Sstevel@tonic-gate */ 7260Sstevel@tonic-gate if (x86_feature & X86_SEP) { 7270Sstevel@tonic-gate #if defined(__amd64) 7280Sstevel@tonic-gate caddr_t kstktop = (caddr_t)lwp->lwp_regs; 7290Sstevel@tonic-gate #elif defined(__i386) 7300Sstevel@tonic-gate caddr_t kstktop = ((caddr_t)lwp->lwp_regs - MINFRAME) + 7310Sstevel@tonic-gate SA(sizeof (struct regs) + MINFRAME); 7320Sstevel@tonic-gate #endif 7330Sstevel@tonic-gate ASSERT(removectx(t, kstktop, 7340Sstevel@tonic-gate sep_save, sep_restore, NULL, NULL, NULL, NULL) == 0); 7350Sstevel@tonic-gate 7360Sstevel@tonic-gate if (thisthread) 7370Sstevel@tonic-gate kpreempt_disable(); 7380Sstevel@tonic-gate installctx(t, kstktop, 7390Sstevel@tonic-gate sep_save, sep_restore, NULL, NULL, NULL, NULL); 7400Sstevel@tonic-gate if (thisthread) { 7410Sstevel@tonic-gate /* 7420Sstevel@tonic-gate * We're the right thread, so set the stack pointer 7430Sstevel@tonic-gate * for the first sysenter instruction to use 7440Sstevel@tonic-gate */ 7450Sstevel@tonic-gate sep_restore(kstktop); 7460Sstevel@tonic-gate kpreempt_enable(); 7470Sstevel@tonic-gate } 7480Sstevel@tonic-gate } 7492712Snn35248 7502712Snn35248 if (PROC_IS_BRANDED(ttoproc(t))) 7512712Snn35248 lwp_attach_brand_hdlrs(lwp); 7520Sstevel@tonic-gate } 7530Sstevel@tonic-gate 7540Sstevel@tonic-gate /* 7550Sstevel@tonic-gate * Clear registers on exec(2). 7560Sstevel@tonic-gate */ 7570Sstevel@tonic-gate void 7580Sstevel@tonic-gate setregs(uarg_t *args) 7590Sstevel@tonic-gate { 7600Sstevel@tonic-gate struct regs *rp; 7610Sstevel@tonic-gate kthread_t *t = curthread; 7620Sstevel@tonic-gate klwp_t *lwp = ttolwp(t); 7630Sstevel@tonic-gate pcb_t *pcb = &lwp->lwp_pcb; 7640Sstevel@tonic-gate greg_t sp; 7650Sstevel@tonic-gate 7660Sstevel@tonic-gate /* 7670Sstevel@tonic-gate * Initialize user registers 7680Sstevel@tonic-gate */ 7690Sstevel@tonic-gate (void) save_syscall_args(); /* copy args from registers first */ 7700Sstevel@tonic-gate rp = lwptoregs(lwp); 7710Sstevel@tonic-gate sp = rp->r_sp; 7720Sstevel@tonic-gate bzero(rp, sizeof (*rp)); 7730Sstevel@tonic-gate 7740Sstevel@tonic-gate rp->r_ss = UDS_SEL; 7750Sstevel@tonic-gate rp->r_sp = sp; 7760Sstevel@tonic-gate rp->r_pc = args->entry; 7770Sstevel@tonic-gate rp->r_ps = PSL_USER; 7780Sstevel@tonic-gate 7790Sstevel@tonic-gate #if defined(__amd64) 7800Sstevel@tonic-gate 7810Sstevel@tonic-gate pcb->pcb_fs = pcb->pcb_gs = 0; 7820Sstevel@tonic-gate pcb->pcb_fsbase = pcb->pcb_gsbase = 0; 7830Sstevel@tonic-gate 7840Sstevel@tonic-gate if (ttoproc(t)->p_model == DATAMODEL_NATIVE) { 7850Sstevel@tonic-gate 7860Sstevel@tonic-gate rp->r_cs = UCS_SEL; 7870Sstevel@tonic-gate 7880Sstevel@tonic-gate /* 7890Sstevel@tonic-gate * Only allow 64-bit user code descriptor to be present. 7900Sstevel@tonic-gate */ 7913446Smrj gdt_ucode_model(DATAMODEL_NATIVE); 7920Sstevel@tonic-gate 7930Sstevel@tonic-gate /* 7940Sstevel@tonic-gate * Arrange that the virtualized %fs and %gs GDT descriptors 7950Sstevel@tonic-gate * have a well-defined initial state (present, ring 3 7960Sstevel@tonic-gate * and of type data). 7970Sstevel@tonic-gate */ 7980Sstevel@tonic-gate pcb->pcb_fsdesc = pcb->pcb_gsdesc = zero_udesc; 7990Sstevel@tonic-gate 8000Sstevel@tonic-gate /* 8010Sstevel@tonic-gate * thrptr is either NULL or a value used by DTrace. 8020Sstevel@tonic-gate * 64-bit processes use %fs as their "thread" register. 8030Sstevel@tonic-gate */ 8040Sstevel@tonic-gate if (args->thrptr) 8050Sstevel@tonic-gate (void) lwp_setprivate(lwp, _LWP_FSBASE, args->thrptr); 8060Sstevel@tonic-gate 8070Sstevel@tonic-gate } else { 8080Sstevel@tonic-gate 8090Sstevel@tonic-gate rp->r_cs = U32CS_SEL; 8100Sstevel@tonic-gate rp->r_ds = rp->r_es = UDS_SEL; 8110Sstevel@tonic-gate 8120Sstevel@tonic-gate /* 8130Sstevel@tonic-gate * only allow 32-bit user code selector to be present. 8140Sstevel@tonic-gate */ 8153446Smrj gdt_ucode_model(DATAMODEL_ILP32); 8160Sstevel@tonic-gate 8170Sstevel@tonic-gate pcb->pcb_fsdesc = pcb->pcb_gsdesc = zero_u32desc; 8180Sstevel@tonic-gate 8190Sstevel@tonic-gate /* 8200Sstevel@tonic-gate * thrptr is either NULL or a value used by DTrace. 8210Sstevel@tonic-gate * 32-bit processes use %gs as their "thread" register. 8220Sstevel@tonic-gate */ 8230Sstevel@tonic-gate if (args->thrptr) 8240Sstevel@tonic-gate (void) lwp_setprivate(lwp, _LWP_GSBASE, args->thrptr); 8250Sstevel@tonic-gate 8260Sstevel@tonic-gate } 8270Sstevel@tonic-gate 8280Sstevel@tonic-gate pcb->pcb_ds = rp->r_ds; 8290Sstevel@tonic-gate pcb->pcb_es = rp->r_es; 830*4503Ssudheer pcb->pcb_rupdate = 1; 8310Sstevel@tonic-gate 8320Sstevel@tonic-gate #elif defined(__i386) 8330Sstevel@tonic-gate 8340Sstevel@tonic-gate rp->r_cs = UCS_SEL; 8350Sstevel@tonic-gate rp->r_ds = rp->r_es = UDS_SEL; 8360Sstevel@tonic-gate 8370Sstevel@tonic-gate /* 8380Sstevel@tonic-gate * Arrange that the virtualized %fs and %gs GDT descriptors 8390Sstevel@tonic-gate * have a well-defined initial state (present, ring 3 8400Sstevel@tonic-gate * and of type data). 8410Sstevel@tonic-gate */ 8420Sstevel@tonic-gate pcb->pcb_fsdesc = pcb->pcb_gsdesc = zero_udesc; 8430Sstevel@tonic-gate 8440Sstevel@tonic-gate /* 8450Sstevel@tonic-gate * For %gs we need to reset LWP_GSBASE in pcb and the 8460Sstevel@tonic-gate * per-cpu GDT descriptor. thrptr is either NULL 8470Sstevel@tonic-gate * or a value used by DTrace. 8480Sstevel@tonic-gate */ 8490Sstevel@tonic-gate if (args->thrptr) 8500Sstevel@tonic-gate (void) lwp_setprivate(lwp, _LWP_GSBASE, args->thrptr); 8510Sstevel@tonic-gate #endif 8520Sstevel@tonic-gate 8530Sstevel@tonic-gate lwp->lwp_eosys = JUSTRETURN; 8540Sstevel@tonic-gate t->t_post_sys = 1; 8550Sstevel@tonic-gate 8560Sstevel@tonic-gate /* 8570Sstevel@tonic-gate * Here we initialize minimal fpu state. 8580Sstevel@tonic-gate * The rest is done at the first floating 8590Sstevel@tonic-gate * point instruction that a process executes. 8600Sstevel@tonic-gate */ 8610Sstevel@tonic-gate pcb->pcb_fpu.fpu_flags = 0; 8620Sstevel@tonic-gate 8630Sstevel@tonic-gate /* 8640Sstevel@tonic-gate * Add the lwp context handlers that virtualize segment registers, 8650Sstevel@tonic-gate * and/or system call stacks etc. 8660Sstevel@tonic-gate */ 8670Sstevel@tonic-gate lwp_installctx(lwp); 8680Sstevel@tonic-gate } 8690Sstevel@tonic-gate 8702712Snn35248 user_desc_t * 8712712Snn35248 cpu_get_gdt(void) 8722712Snn35248 { 8732712Snn35248 return (CPU->cpu_gdt); 8742712Snn35248 } 8752712Snn35248 8762712Snn35248 8770Sstevel@tonic-gate #if !defined(lwp_getdatamodel) 8780Sstevel@tonic-gate 8790Sstevel@tonic-gate /* 8800Sstevel@tonic-gate * Return the datamodel of the given lwp. 8810Sstevel@tonic-gate */ 8820Sstevel@tonic-gate /*ARGSUSED*/ 8830Sstevel@tonic-gate model_t 8840Sstevel@tonic-gate lwp_getdatamodel(klwp_t *lwp) 8850Sstevel@tonic-gate { 8860Sstevel@tonic-gate return (lwp->lwp_procp->p_model); 8870Sstevel@tonic-gate } 8880Sstevel@tonic-gate 8890Sstevel@tonic-gate #endif /* !lwp_getdatamodel */ 8900Sstevel@tonic-gate 8910Sstevel@tonic-gate #if !defined(get_udatamodel) 8920Sstevel@tonic-gate 8930Sstevel@tonic-gate model_t 8940Sstevel@tonic-gate get_udatamodel(void) 8950Sstevel@tonic-gate { 8960Sstevel@tonic-gate return (curproc->p_model); 8970Sstevel@tonic-gate } 8980Sstevel@tonic-gate 8990Sstevel@tonic-gate #endif /* !get_udatamodel */ 900