1/* 2 * Copyright (c) 2006 The DragonFly Project. All rights reserved. 3 * 4 * This code is derived from software contributed to The DragonFly Project 5 * by Matthew Dillon <dillon@backplane.com> 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in 15 * the documentation and/or other materials provided with the 16 * distribution. 17 * 3. Neither the name of The DragonFly Project nor the names of its 18 * contributors may be used to endorse or promote products derived 19 * from this software without specific, prior written permission. 20 * 21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 22 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 25 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 26 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, 27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 29 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 31 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 32 * SUCH DAMAGE. 33 */3435#ifndef_SYS_VKERNEL_H_36#define_SYS_VKERNEL_H_3738#ifdefined(_KERNEL) || defined(_KERNEL_STRUCTURES) 39/* 40 * KERNEL ONLY DEFINITIONS 41 */4243#ifndef_SYS_PARAM_H_44#include <sys/param.h> 45#endif46#ifndef_SYS_QUEUE_H_47#include <sys/queue.h> 48#endif49#ifndef_SYS_TREE_H_50#include <sys/tree.h> 51#endif52#ifndef_SYS_SPINLOCK_H_53#include <sys/spinlock.h> 54#endif55#ifndef_SYS_THREAD_H_56#include <sys/thread.h> 57#endif58#include <machine/frame.h> 59#include <machine/vframe.h> 60#include <machine/limits.h> 6162structvmspace_rb_tree; 63structvmspace_entry; 64structlwp; 65RB_PROTOTYPE(vmspace_rb_tree, vmspace_entry, rb_entry, rb_vmspace_compare); 6667/* 68 * Process operating as virtual kernels manage multiple VM spaces. The 69 * original VM space and trap context is saved in the process's vkernel 70 * structure. 71 */72structvkernel_lwp { 73structtrapframesave_trapframe; /* swapped context */74structvextframesave_vextframe; 75structtrapframe *user_trapframe; /* copyback to vkernel */76structvextframe *user_vextframe; 77structvmspace_entry *ve; 78structvmspace_entry *ve_cache; 79}; 8081structvkernel_proc { 82RB_HEAD(vmspace_rb_tree, vmspace_entry) root; 83structlwkt_tokentoken; 84intrefs; 85register_tvkernel_cr3; 86}; 8788structvmspace_entry { 89void *id; 90structvmspace *vmspace; 91uint32_tflags; 92uint32_trefs; /* in-use + 1(on-tree */93uint32_tcache_refs; /* cache count (separate) */94RB_ENTRY(vmspace_entry) rb_entry; 95}; 9697#defineVKE_REF_DELETED0x80000000U9899#ifdef_KERNEL100101voidvkernel_inherit(structproc *p1, structproc *p2); 102voidvkernel_exit(structproc *p); 103voidvkernel_lwp_exit(structlwp *lp); 104voidvkernel_trap(structlwp *lp, structtrapframe *frame); 105106#endif107108#else109/* 110 * USER ONLY DEFINITIONS 111 */112113#ifndef_MACHINE_PARAM_H_114#include <machine/param.h> 115#endif116117#endif118119/* 120 * KERNEL AND USER DEFINITIONS 121 * 122 * WARNING: vpte_t is 64 bits. A 4-layer page table is used. 123 */124typedefu_longvpte_t; 125126#ifLONG_BIT == 32127#defineVPTE_FRAME_END32128#defineVPTE_PAGE_BITS10129#defineVPTE_FRAME0xFFFFF000L130#elifLONG_BIT == 64131#defineVPTE_FRAME_END48132#defineVPTE_PAGE_BITS9133#defineVPTE_FRAME0x000FFFFFFFFFF000L134#else135#error"LONG_BIT not defined"136#endif137138#defineVPTE_PAGE_ENTRIES (PAGE_SIZE / sizeof(vpte_t)) 139#defineVPTE_PAGE_MASK ((1 << VPTE_PAGE_BITS) - 1) 140#defineVPTE_PAGETABLE_SIZEPAGE_SIZE141142#defineVPTE_V0x00000001/* valid */143#defineVPTE_RW0x00000002/* read/write */144#defineVPTE_U0x00000004/* user access bit if managed vmspace */145146#defineVPTE_A0x00000020/* page accessed bit */147#defineVPTE_M0x00000040/* page modified bit */148#defineVPTE_PS0x00000080/* page directory direct mapping */149150#defineVPTE_G0x00000100/* global bit ?? */151#defineVPTE_WIRED0x00000200/* wired */152#defineVPTE_MANAGED0x00000400/* managed bit ?? */153#defineVPTE_NX0x00000800/* no-execute bit */154155#endif156157
close