1 | /* $Id: bs3-cmn-Trap32Init.c 98103 2023-01-17 14:15:46Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * BS3Kit - Bs3Trap32Init
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2007-2023 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * The contents of this file may alternatively be used under the terms
|
---|
26 | * of the Common Development and Distribution License Version 1.0
|
---|
27 | * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
28 | * in the VirtualBox distribution, in which case the provisions of the
|
---|
29 | * CDDL are applicable instead of those of the GPL.
|
---|
30 | *
|
---|
31 | * You may elect to license modified versions of this file under the
|
---|
32 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
33 | *
|
---|
34 | * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
35 | */
|
---|
36 |
|
---|
37 |
|
---|
38 | /*********************************************************************************************************************************
|
---|
39 | * Header Files *
|
---|
40 | *********************************************************************************************************************************/
|
---|
41 | #include "bs3kit-template-header.h"
|
---|
42 |
|
---|
43 |
|
---|
44 | /*********************************************************************************************************************************
|
---|
45 | * External Symbols *
|
---|
46 | *********************************************************************************************************************************/
|
---|
47 | #define g_Bs3Trap32DoubleFaultHandlerFlatAddr BS3_DATA_NM(g_Bs3Trap32DoubleFaultHandlerFlatAddr)
|
---|
48 | extern uint32_t g_Bs3Trap32DoubleFaultHandlerFlatAddr;
|
---|
49 |
|
---|
50 |
|
---|
51 | #undef Bs3Trap32Init
|
---|
52 | BS3_CMN_DEF(void, Bs3Trap32Init,(void))
|
---|
53 | {
|
---|
54 | X86TSS32 BS3_FAR *pTss;
|
---|
55 | unsigned iIdt;
|
---|
56 |
|
---|
57 | /*
|
---|
58 | * IDT entries, except the system call gate.
|
---|
59 | */
|
---|
60 | for (iIdt = 0; iIdt < BS3_TRAP_SYSCALL; iIdt++)
|
---|
61 | Bs3Trap32SetGate(iIdt, X86_SEL_TYPE_SYS_386_INT_GATE, 0 /*bDpl*/,
|
---|
62 | BS3_SEL_R0_CS32, g_Bs3Trap32GenericEntriesFlatAddr + iIdt * 10, 0 /*cParams*/);
|
---|
63 | for (iIdt = BS3_TRAP_SYSCALL + 1; iIdt < 256; iIdt++)
|
---|
64 | Bs3Trap32SetGate(iIdt, X86_SEL_TYPE_SYS_386_INT_GATE, 0 /*bDpl*/,
|
---|
65 | BS3_SEL_R0_CS32, g_Bs3Trap32GenericEntriesFlatAddr + iIdt * 10, 0 /*cParams*/);
|
---|
66 |
|
---|
67 | /*
|
---|
68 | * Initialize the normal TSS so we can do ring transitions via the IDT.
|
---|
69 | */
|
---|
70 | pTss = &Bs3Tss32;
|
---|
71 | Bs3MemZero(pTss, sizeof(*pTss));
|
---|
72 | pTss->esp0 = BS3_ADDR_STACK_R0;
|
---|
73 | pTss->ss0 = BS3_SEL_R0_SS32;
|
---|
74 | pTss->esp1 = BS3_ADDR_STACK_R1;
|
---|
75 | pTss->ss1 = BS3_SEL_R1_SS32 | 1;
|
---|
76 | pTss->esp2 = BS3_ADDR_STACK_R2;
|
---|
77 | pTss->ss2 = BS3_SEL_R2_SS32 | 2;
|
---|
78 |
|
---|
79 | /*
|
---|
80 | * Initialize the double fault TSS.
|
---|
81 | * cr3 is filled in by switcher code, when needed.
|
---|
82 | */
|
---|
83 | pTss = &Bs3Tss32DoubleFault;
|
---|
84 | Bs3MemZero(pTss, sizeof(*pTss));
|
---|
85 | pTss->esp0 = BS3_ADDR_STACK_R0;
|
---|
86 | pTss->ss0 = BS3_SEL_R0_SS32;
|
---|
87 | pTss->esp1 = BS3_ADDR_STACK_R1;
|
---|
88 | pTss->ss1 = BS3_SEL_R1_SS32 | 1;
|
---|
89 | pTss->esp2 = BS3_ADDR_STACK_R2;
|
---|
90 | pTss->ss2 = BS3_SEL_R2_SS32 | 2;
|
---|
91 | pTss->eip = g_Bs3Trap32DoubleFaultHandlerFlatAddr;
|
---|
92 | pTss->eflags = X86_EFL_1;
|
---|
93 | pTss->esp = BS3_ADDR_STACK_R0_IST1;
|
---|
94 | pTss->es = BS3_SEL_R0_DS32;
|
---|
95 | pTss->ds = BS3_SEL_R0_DS32;
|
---|
96 | pTss->cs = BS3_SEL_R0_CS32;
|
---|
97 | pTss->ss = BS3_SEL_R0_SS32;
|
---|
98 |
|
---|
99 | Bs3Trap32SetGate(X86_XCPT_DF, X86_SEL_TYPE_SYS_TASK_GATE, 0 /*bDpl*/, BS3_SEL_TSS32_DF, 0, 0 /*cParams*/);
|
---|
100 | }
|
---|
101 |
|
---|