VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/bootsectors/bs3-cpu-basic-2-template.c@ 60669

Last change on this file since 60669 was 60669, checked in by vboxsync, 9 years ago

bs3kit: updates.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 78.2 KB
Line 
1/* $Id: bs3-cpu-basic-2-template.c 60669 2016-04-23 00:06:24Z vboxsync $ */
2/** @file
3 * BS3Kit - bs3-cpu-basic-2, C code template.
4 */
5
6/*
7 * Copyright (C) 2007-2016 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.215389.xyz. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*********************************************************************************************************************************
29* Header Files *
30*********************************************************************************************************************************/
31#include <iprt/asm.h>
32#include <iprt/asm-amd64-x86.h>
33
34
35/*********************************************************************************************************************************
36* Defined Constants And Macros *
37*********************************************************************************************************************************/
38#undef CHECK_MEMBER
39#define CHECK_MEMBER(a_szName, a_szFmt, a_Actual, a_Expected) \
40 do \
41 { \
42 if ((a_Actual) == (a_Expected)) { /* likely */ } \
43 else bs3CpuBasic2_FailedF(a_szName "=" a_szFmt " expected " a_szFmt, (a_Actual), (a_Expected)); \
44 } while (0)
45
46#ifdef BS3_INSTANTIATING_MODE
47# undef MyBs3Idt
48# undef MY_SYS_SEL_R0_CS
49# undef MY_SYS_SEL_R0_CS_CNF
50# undef MY_SYS_SEL_R0_DS
51# undef MY_SYS_SEL_R0_SS
52# if BS3_MODE_IS_16BIT_SYS(TMPL_MODE)
53# define MyBs3Idt Bs3Idt16
54# define MY_SYS_SEL_R0_CS BS3_SEL_R0_CS16
55# define MY_SYS_SEL_R0_CS_CNF BS3_SEL_R0_CS16_CNF
56# define MY_SYS_SEL_R0_DS BS3_SEL_R0_DS16
57# define MY_SYS_SEL_R0_SS BS3_SEL_R0_SS16
58# elif BS3_MODE_IS_32BIT_SYS(TMPL_MODE)
59# define MyBs3Idt Bs3Idt32
60# define MY_SYS_SEL_R0_CS BS3_SEL_R0_CS32
61# define MY_SYS_SEL_R0_CS_CNF BS3_SEL_R0_CS32_CNF
62# define MY_SYS_SEL_R0_DS BS3_SEL_R0_DS32
63# define MY_SYS_SEL_R0_SS BS3_SEL_R0_SS32
64# elif BS3_MODE_IS_64BIT_SYS(TMPL_MODE)
65# define MyBs3Idt Bs3Idt64
66# define MY_SYS_SEL_R0_CS BS3_SEL_R0_CS64
67# define MY_SYS_SEL_R0_CS_CNF BS3_SEL_R0_CS64_CNF
68# define MY_SYS_SEL_R0_DS BS3_SEL_R0_DS64
69# define MY_SYS_SEL_R0_SS BS3_SEL_R0_DS64
70# else
71# error "TMPL_MODE"
72# endif
73#endif
74
75/*********************************************************************************************************************************
76* Structures and Typedefs *
77*********************************************************************************************************************************/
78#ifdef BS3_INSTANTIATING_CMN
79typedef struct BS3CB2INVLDESCTYPE
80{
81 uint8_t u4Type;
82 uint8_t u1DescType;
83} BS3CB2INVLDESCTYPE;
84#endif
85
86
87/*********************************************************************************************************************************
88* External Symbols *
89*********************************************************************************************************************************/
90#ifdef BS3_INSTANTIATING_CMN
91extern BS3_DECL(void) bs3CpuBasic2_Int80(void);
92extern BS3_DECL(void) bs3CpuBasic2_Int81(void);
93extern BS3_DECL(void) bs3CpuBasic2_Int82(void);
94extern BS3_DECL(void) bs3CpuBasic2_Int83(void);
95extern BS3_DECL(void) bs3CpuBasic2_ud2(void);
96#define bs3CpuBasic2_sidt_bx_ud2 BS3_CMN_NM(bs3CpuBasic2_sidt_bx_ud2)
97extern BS3_DECL(void) bs3CpuBasic2_sidt_bx_ud2(void);
98#define bs3CpuBasic2_lidt_bx_ud2 BS3_CMN_NM(bs3CpuBasic2_lidt_bx_ud2)
99extern BS3_DECL(void) bs3CpuBasic2_lidt_bx_ud2(void);
100#define g_bs3CpuBasic2_ud2_FlatAddr BS3_DATA_NM(g_bs3CpuBasic2_ud2_FlatAddr)
101extern uint32_t g_bs3CpuBasic2_ud2_FlatAddr;
102#endif
103
104
105/*********************************************************************************************************************************
106* Global Variables *
107*********************************************************************************************************************************/
108#ifdef BS3_INSTANTIATING_CMN
109# define g_pszTestMode BS3_CMN_NM(g_pszTestMode)
110static const char BS3_FAR *g_pszTestMode = (const char *)1;
111# define g_bTestMode BS3_CMN_NM(g_bTestMode)
112static uint8_t g_bTestMode = 1;
113# define g_f16BitSys BS3_CMN_NM(g_f16BitSys)
114static bool g_f16BitSys = 1;
115
116/** Table containing invalid CS selector types. */
117static const BS3CB2INVLDESCTYPE g_aInvalidCsTypes[] =
118{
119 { X86_SEL_TYPE_RO, 1 },
120 { X86_SEL_TYPE_RO_ACC, 1 },
121 { X86_SEL_TYPE_RW, 1 },
122 { X86_SEL_TYPE_RW_ACC, 1 },
123 { X86_SEL_TYPE_RO_DOWN, 1 },
124 { X86_SEL_TYPE_RO_DOWN_ACC, 1 },
125 { X86_SEL_TYPE_RW_DOWN, 1 },
126 { X86_SEL_TYPE_RW_DOWN_ACC, 1 },
127 { 0, 0 },
128 { 1, 0 },
129 { 2, 0 },
130 { 3, 0 },
131 { 4, 0 },
132 { 5, 0 },
133 { 6, 0 },
134 { 7, 0 },
135 { 8, 0 },
136 { 9, 0 },
137 { 10, 0 },
138 { 11, 0 },
139 { 12, 0 },
140 { 13, 0 },
141 { 14, 0 },
142 { 15, 0 },
143};
144
145/** Table containing invalid SS selector types. */
146static const BS3CB2INVLDESCTYPE g_aInvalidSsTypes[] =
147{
148 { X86_SEL_TYPE_EO, 1 },
149 { X86_SEL_TYPE_EO_ACC, 1 },
150 { X86_SEL_TYPE_ER, 1 },
151 { X86_SEL_TYPE_ER_ACC, 1 },
152 { X86_SEL_TYPE_EO_CONF, 1 },
153 { X86_SEL_TYPE_EO_CONF_ACC, 1 },
154 { X86_SEL_TYPE_ER_CONF, 1 },
155 { X86_SEL_TYPE_ER_CONF_ACC, 1 },
156 { 0, 0 },
157 { 1, 0 },
158 { 2, 0 },
159 { 3, 0 },
160 { 4, 0 },
161 { 5, 0 },
162 { 6, 0 },
163 { 7, 0 },
164 { 8, 0 },
165 { 9, 0 },
166 { 10, 0 },
167 { 11, 0 },
168 { 12, 0 },
169 { 13, 0 },
170 { 14, 0 },
171 { 15, 0 },
172};
173
174#endif /* BS3_INSTANTIATING_CMN - global */
175
176#ifdef BS3_INSTANTIATING_CMN
177
178/**
179 * Wrapper around Bs3TestFailedF that prefixes the error with g_usBs3TestStep
180 * and g_pszTestMode.
181 */
182# define bs3CpuBasic2_FailedF BS3_CMN_NM(bs3CpuBasic2_FailedF)
183BS3_DECL_NEAR(void) bs3CpuBasic2_FailedF(const char *pszFormat, ...)
184{
185 va_list va;
186
187 char szTmp[168];
188 va_start(va, pszFormat);
189 Bs3StrPrintfV(szTmp, sizeof(szTmp), pszFormat, va);
190 va_end(va);
191
192 Bs3TestFailedF("%u - %s: %s", g_usBs3TestStep, g_pszTestMode, szTmp);
193}
194
195
196/**
197 * Compares trap stuff.
198 */
199# define bs3CpuBasic2_CompareIntCtx1 BS3_CMN_NM(bs3CpuBasic2_CompareIntCtx1)
200BS3_DECL_NEAR(void) bs3CpuBasic2_CompareIntCtx1(PCBS3TRAPFRAME pTrapCtx, PCBS3REGCTX pStartCtx, uint8_t bXcpt)
201{
202 uint16_t const cErrorsBefore = Bs3TestSubErrorCount();
203 CHECK_MEMBER("bXcpt", "%#04x", pTrapCtx->bXcpt, bXcpt);
204 CHECK_MEMBER("bErrCd", "%#06RX64", pTrapCtx->uErrCd, 0);
205 Bs3TestCheckRegCtxEx(&pTrapCtx->Ctx, pStartCtx, 2 /*int xx*/, 0 /*cbSpAdjust*/, 0 /*fExtraEfl*/, g_pszTestMode, g_usBs3TestStep);
206 if (Bs3TestSubErrorCount() != cErrorsBefore)
207 {
208 Bs3TrapPrintFrame(pTrapCtx);
209#if 1
210 Bs3TestPrintf("Halting: g_uBs3CpuDetected=%#x\n", g_uBs3CpuDetected);
211 Bs3TestPrintf("Halting in CompareTrapCtx1: bXcpt=%#x\n", bXcpt);
212 ASMHalt();
213#endif
214 }
215}
216
217
218/**
219 * Compares trap stuff.
220 */
221# define bs3CpuBasic2_CompareTrapCtx2 BS3_CMN_NM(bs3CpuBasic2_CompareTrapCtx2)
222BS3_DECL_NEAR(void) bs3CpuBasic2_CompareTrapCtx2(PCBS3TRAPFRAME pTrapCtx, PCBS3REGCTX pStartCtx, uint16_t cbIpAdjust,
223 uint8_t bXcpt, uint16_t uHandlerCs)
224{
225 uint16_t const cErrorsBefore = Bs3TestSubErrorCount();
226 CHECK_MEMBER("bXcpt", "%#04x", pTrapCtx->bXcpt, bXcpt);
227 CHECK_MEMBER("bErrCd", "%#06RX64", pTrapCtx->uErrCd, 0);
228 CHECK_MEMBER("uHandlerCs", "%#06x", pTrapCtx->uHandlerCs, uHandlerCs);
229 Bs3TestCheckRegCtxEx(&pTrapCtx->Ctx, pStartCtx, cbIpAdjust, 0 /*cbSpAdjust*/, 0 /*fExtraEfl*/, g_pszTestMode, g_usBs3TestStep);
230 if (Bs3TestSubErrorCount() != cErrorsBefore)
231 {
232 Bs3TrapPrintFrame(pTrapCtx);
233#if 1
234 Bs3TestPrintf("Halting: g_uBs3CpuDetected=%#x\n", g_uBs3CpuDetected);
235 Bs3TestPrintf("Halting in CompareTrapCtx2: bXcpt=%#x\n", bXcpt);
236 ASMHalt();
237#endif
238 }
239}
240
241/**
242 * Compares a CPU trap.
243 */
244# define bs3CpuBasic2_CompareCpuTrapCtx BS3_CMN_NM(bs3CpuBasic2_CompareCpuTrapCtx)
245BS3_DECL_NEAR(void) bs3CpuBasic2_CompareCpuTrapCtx(PCBS3TRAPFRAME pTrapCtx, PCBS3REGCTX pStartCtx, uint16_t uErrCd,
246 uint8_t bXcpt, bool f486ResumeFlagHint)
247{
248 uint16_t const cErrorsBefore = Bs3TestSubErrorCount();
249 uint32_t fExtraEfl;
250
251 CHECK_MEMBER("bXcpt", "%#04x", pTrapCtx->bXcpt, bXcpt);
252 CHECK_MEMBER("bErrCd", "%#06RX16", (uint16_t)pTrapCtx->uErrCd, (uint16_t)uErrCd); /* 486 only writes a word */
253
254 fExtraEfl = X86_EFL_RF;
255 if ( g_f16BitSys
256 || ( !f486ResumeFlagHint
257 && (g_uBs3CpuDetected & BS3CPU_TYPE_MASK) <= BS3CPU_80486 ) )
258 fExtraEfl = 0;
259 else
260 fExtraEfl = X86_EFL_RF;
261#if 0 /** @todo Running on an AMD Phenom II X6 1100T under AMD-V I'm not getting good X86_EFL_RF results. Enable this to get on with other work. */
262 fExtraEfl = pTrapCtx->Ctx.rflags.u32 & X86_EFL_RF;
263#endif
264 Bs3TestCheckRegCtxEx(&pTrapCtx->Ctx, pStartCtx, 0 /*cbIpAdjust*/, 0 /*cbSpAdjust*/, fExtraEfl, g_pszTestMode, g_usBs3TestStep);
265 if (Bs3TestSubErrorCount() != cErrorsBefore)
266 {
267 Bs3TrapPrintFrame(pTrapCtx);
268#if 1
269 Bs3TestPrintf("Halting: g_uBs3CpuDetected=%#x\n", g_uBs3CpuDetected);
270 Bs3TestPrintf("Halting: bXcpt=%#x uErrCd=%#x\n", bXcpt, uErrCd);
271 ASMHalt();
272#endif
273 }
274}
275
276
277/**
278 * Compares \#GP trap.
279 */
280# define bs3CpuBasic2_CompareGpCtx BS3_CMN_NM(bs3CpuBasic2_CompareGpCtx)
281BS3_DECL_NEAR(void) bs3CpuBasic2_CompareGpCtx(PCBS3TRAPFRAME pTrapCtx, PCBS3REGCTX pStartCtx, uint16_t uErrCd)
282{
283 bs3CpuBasic2_CompareCpuTrapCtx(pTrapCtx, pStartCtx, uErrCd, X86_XCPT_GP, true /*f486ResumeFlagHint*/);
284}
285
286/**
287 * Compares \#NP trap.
288 */
289# define bs3CpuBasic2_CompareNpCtx BS3_CMN_NM(bs3CpuBasic2_CompareNpCtx)
290BS3_DECL_NEAR(void) bs3CpuBasic2_CompareNpCtx(PCBS3TRAPFRAME pTrapCtx, PCBS3REGCTX pStartCtx, uint16_t uErrCd)
291{
292 bs3CpuBasic2_CompareCpuTrapCtx(pTrapCtx, pStartCtx, uErrCd, X86_XCPT_NP, true /*f486ResumeFlagHint*/);
293}
294
295/**
296 * Compares \#SS trap.
297 */
298# define bs3CpuBasic2_CompareSsCtx BS3_CMN_NM(bs3CpuBasic2_CompareSsCtx)
299BS3_DECL_NEAR(void) bs3CpuBasic2_CompareSsCtx(PCBS3TRAPFRAME pTrapCtx, PCBS3REGCTX pStartCtx, uint16_t uErrCd, bool f486ResumeFlagHint)
300{
301 bs3CpuBasic2_CompareCpuTrapCtx(pTrapCtx, pStartCtx, uErrCd, X86_XCPT_SS, f486ResumeFlagHint);
302}
303
304/**
305 * Compares \#TS trap.
306 */
307# define bs3CpuBasic2_CompareTsCtx BS3_CMN_NM(bs3CpuBasic2_CompareTsCtx)
308BS3_DECL_NEAR(void) bs3CpuBasic2_CompareTsCtx(PCBS3TRAPFRAME pTrapCtx, PCBS3REGCTX pStartCtx, uint16_t uErrCd)
309{
310 bs3CpuBasic2_CompareCpuTrapCtx(pTrapCtx, pStartCtx, uErrCd, X86_XCPT_TS, false /*f486ResumeFlagHint*/);
311}
312
313/**
314 * Compares \#PF trap.
315 */
316# define bs3CpuBasic2_ComparePfCtx BS3_CMN_NM(bs3CpuBasic2_ComparePfCtx)
317BS3_DECL_NEAR(void) bs3CpuBasic2_ComparePfCtx(PCBS3TRAPFRAME pTrapCtx, PBS3REGCTX pStartCtx, uint16_t uErrCd, uint64_t uCr2Expected)
318{
319 uint64_t const uCr2Saved = pStartCtx->cr2.u;
320 pStartCtx->cr2.u = uCr2Expected;
321 bs3CpuBasic2_CompareCpuTrapCtx(pTrapCtx, pStartCtx, uErrCd, X86_XCPT_PF, true /*f486ResumeFlagHint*/);
322 pStartCtx->cr2.u = uCr2Saved;
323}
324
325/**
326 * Compares \#UD trap.
327 */
328# define bs3CpuBasic2_CompareUdCtx BS3_CMN_NM(bs3CpuBasic2_CompareUdCtx)
329BS3_DECL_NEAR(void) bs3CpuBasic2_CompareUdCtx(PCBS3TRAPFRAME pTrapCtx, PCBS3REGCTX pStartCtx)
330{
331 bs3CpuBasic2_CompareCpuTrapCtx(pTrapCtx, pStartCtx, 0 /*no error code*/, X86_XCPT_UD, true /*f486ResumeFlagHint*/);
332}
333
334
335# define bs3CpuBasic2_RaiseXcpt1Common BS3_CMN_NM(bs3CpuBasic2_RaiseXcpt1Common)
336BS3_DECL_NEAR(void) bs3CpuBasic2_RaiseXcpt1Common(uint16_t const uSysR0Cs, uint16_t const uSysR0CsConf, uint16_t const uSysR0Ss,
337 PX86DESC const paIdt, unsigned const cIdteShift)
338{
339 BS3TRAPFRAME TrapCtx;
340 BS3REGCTX Ctx80;
341 BS3REGCTX Ctx81;
342 BS3REGCTX Ctx82;
343 BS3REGCTX Ctx83;
344 BS3REGCTX CtxTmp;
345 BS3REGCTX CtxTmp2;
346 PBS3REGCTX apCtx8x[4];
347 unsigned iCtx;
348 unsigned iRing;
349 unsigned iDpl;
350 unsigned iRpl;
351 unsigned i, j, k;
352 uint32_t uExpected;
353 bool const f486Plus = (g_uBs3CpuDetected & BS3CPU_TYPE_MASK) >= BS3CPU_80486;
354# if TMPL_BITS == 16
355 bool const f386Plus = (g_uBs3CpuDetected & BS3CPU_TYPE_MASK) >= BS3CPU_80386;
356 bool const f286 = (g_uBs3CpuDetected & BS3CPU_TYPE_MASK) == BS3CPU_80286;
357# else
358 bool const f286 = false;
359 bool const f386Plus = true;
360 int rc;
361 uint8_t *pbIdtCopyAlloc;
362 PX86DESC pIdtCopy;
363 const unsigned cbIdte = 1 << (3 + cIdteShift);
364 RTCCUINTXREG uCr0Saved = ASMGetCR0();
365 RTGDTR GdtrSaved;
366# endif
367 RTIDTR IdtrSaved;
368 RTIDTR Idtr;
369
370 ASMGetIDTR(&IdtrSaved);
371# if TMPL_BITS != 16
372 ASMGetGDTR(&GdtrSaved);
373# endif
374
375 /* make sure they're allocated */
376 Bs3MemZero(&TrapCtx, sizeof(TrapCtx));
377 Bs3MemZero(&Ctx80, sizeof(Ctx80));
378 Bs3MemZero(&Ctx81, sizeof(Ctx81));
379 Bs3MemZero(&Ctx82, sizeof(Ctx82));
380 Bs3MemZero(&Ctx83, sizeof(Ctx83));
381 Bs3MemZero(&CtxTmp, sizeof(CtxTmp));
382 Bs3MemZero(&CtxTmp2, sizeof(CtxTmp2));
383
384 /* Context array. */
385 apCtx8x[0] = &Ctx80;
386 apCtx8x[1] = &Ctx81;
387 apCtx8x[2] = &Ctx82;
388 apCtx8x[3] = &Ctx83;
389
390# if TMPL_BITS != 16
391 /* Allocate memory for playing around with the IDT. */
392 pbIdtCopyAlloc = NULL;
393 if (BS3_MODE_IS_PAGED(g_bTestMode))
394 pbIdtCopyAlloc = Bs3MemAlloc(BS3MEMKIND_FLAT32, 12*_1K);
395# endif
396
397 /*
398 * IDT entry 80 thru 83 are assigned DPLs according to the number.
399 * (We'll be useing more, but this'll do for now.)
400 */
401 paIdt[0x80 << cIdteShift].Gate.u2Dpl = 0;
402 paIdt[0x81 << cIdteShift].Gate.u2Dpl = 1;
403 paIdt[0x82 << cIdteShift].Gate.u2Dpl = 2;
404 paIdt[0x83 << cIdteShift].Gate.u2Dpl = 3;
405
406 Bs3RegCtxSave(&Ctx80);
407 Ctx80.rsp.u -= 0x300;
408 Ctx80.rip.u = (uintptr_t)BS3_FP_OFF(&bs3CpuBasic2_Int80);
409# if TMPL_BITS == 16
410 Ctx80.cs = BS3_MODE_IS_RM_OR_V86(g_bTestMode) ? BS3_SEL_TEXT16 : BS3_SEL_R0_CS16;
411# elif TMPL_BITS == 32
412 g_uBs3TrapEipHint = Ctx80.rip.u32;
413# endif
414 Bs3MemCpy(&Ctx81, &Ctx80, sizeof(Ctx80));
415 Ctx81.rip.u = (uintptr_t)BS3_FP_OFF(&bs3CpuBasic2_Int81);
416 Bs3MemCpy(&Ctx82, &Ctx80, sizeof(Ctx80));
417 Ctx82.rip.u = (uintptr_t)BS3_FP_OFF(&bs3CpuBasic2_Int82);
418 Bs3MemCpy(&Ctx83, &Ctx80, sizeof(Ctx80));
419 Ctx83.rip.u = (uintptr_t)BS3_FP_OFF(&bs3CpuBasic2_Int83);
420
421 /*
422 * Check that all the above gates work from ring-0.
423 */
424 for (iCtx = 0; iCtx < RT_ELEMENTS(apCtx8x); iCtx++)
425 {
426 g_usBs3TestStep = iCtx;
427# if TMPL_BITS == 32
428 g_uBs3TrapEipHint = apCtx8x[iCtx]->rip.u32;
429# endif
430 Bs3TrapSetJmpAndRestore(apCtx8x[iCtx], &TrapCtx);
431 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, apCtx8x[iCtx], 0x80+iCtx /*bXcpt*/);
432 }
433
434 /*
435 * Check that the gate DPL checks works.
436 */
437 g_usBs3TestStep = 100;
438 for (iRing = 0; iRing <= 3; iRing++)
439 {
440 for (iCtx = 0; iCtx < RT_ELEMENTS(apCtx8x); iCtx++)
441 {
442 Bs3MemCpy(&CtxTmp, apCtx8x[iCtx], sizeof(CtxTmp));
443 Bs3RegCtxConvertToRingX(&CtxTmp, iRing);
444# if TMPL_BITS == 32
445 g_uBs3TrapEipHint = CtxTmp.rip.u32;
446# endif
447 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
448 if (iCtx < iRing)
449 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
450 else
451 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x80 + iCtx /*bXcpt*/);
452 g_usBs3TestStep++;
453 }
454 }
455
456 /*
457 * Modify the gate CS value and run the handler at a different CPL.
458 * Throw RPL variations into the mix (completely ignored) together
459 * with gate presence.
460 * 1. CPL <= GATE.DPL
461 * 2. GATE.P
462 * 3. GATE.CS.DPL <= CPL (non-conforming segments)
463 */
464 g_usBs3TestStep = 1000;
465 for (i = 0; i <= 3; i++)
466 {
467 for (iRing = 0; iRing <= 3; iRing++)
468 {
469 for (iCtx = 0; iCtx < RT_ELEMENTS(apCtx8x); iCtx++)
470 {
471# if TMPL_BITS == 32
472 g_uBs3TrapEipHint = apCtx8x[iCtx]->rip.u32;
473# endif
474 Bs3MemCpy(&CtxTmp, apCtx8x[iCtx], sizeof(CtxTmp));
475 Bs3RegCtxConvertToRingX(&CtxTmp, iRing);
476
477 for (j = 0; j <= 3; j++)
478 {
479 uint16_t const uCs = (uSysR0Cs | j) + (i << BS3_SEL_RING_SHIFT);
480 for (k = 0; k < 2; k++)
481 {
482 g_usBs3TestStep++;
483 /*Bs3TestPrintf("g_usBs3TestStep=%u iCtx=%u iRing=%u i=%u uCs=%04x\n", g_usBs3TestStep, iCtx, iRing, i, uCs);*/
484 paIdt[(0x80 + iCtx) << cIdteShift].Gate.u16Sel = uCs;
485 paIdt[(0x80 + iCtx) << cIdteShift].Gate.u1Present = k;
486 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
487 /*Bs3TrapPrintFrame(&TrapCtx);*/
488 if (iCtx < iRing)
489 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
490 else if (k == 0)
491 bs3CpuBasic2_CompareNpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
492 else if (i > iRing)
493 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, uCs & X86_SEL_MASK_OFF_RPL);
494 else
495 {
496 uint16_t uExpectedCs = uCs & X86_SEL_MASK_OFF_RPL;
497 if (i <= iCtx && i <= iRing)
498 uExpectedCs |= i;
499 bs3CpuBasic2_CompareTrapCtx2(&TrapCtx, &CtxTmp, 2 /*int 8xh*/, 0x80 + iCtx /*bXcpt*/, uExpectedCs);
500 }
501 }
502 }
503
504 paIdt[(0x80 + iCtx) << cIdteShift].Gate.u16Sel = uSysR0Cs;
505 paIdt[(0x80 + iCtx) << cIdteShift].Gate.u1Present = 1;
506 }
507 }
508 }
509 BS3_ASSERT(g_usBs3TestStep < 1600);
510
511 /*
512 * Various CS and SS related faults
513 *
514 * We temporarily reconfigure gate 80 and 83 with new CS selectors, the
515 * latter have a CS.DPL of 2 for testing ring transisions and SS loading
516 * without making it impossible to handle faults.
517 */
518 g_usBs3TestStep = 1600;
519 Bs3GdteTestPage00 = Bs3Gdt[uSysR0Cs >> X86_SEL_SHIFT];
520 Bs3GdteTestPage00.Gen.u1Present = 0;
521 Bs3GdteTestPage00.Gen.u4Type &= ~X86_SEL_TYPE_ACCESSED;
522 paIdt[0x80 << cIdteShift].Gate.u16Sel = BS3_SEL_TEST_PAGE_00;
523
524 /* CS.PRESENT = 0 */
525 Bs3TrapSetJmpAndRestore(&Ctx80, &TrapCtx);
526 bs3CpuBasic2_CompareNpCtx(&TrapCtx, &Ctx80, BS3_SEL_TEST_PAGE_00);
527 if (Bs3GdteTestPage00.Gen.u4Type & X86_SEL_TYPE_ACCESSED)
528 bs3CpuBasic2_FailedF("selector was accessed");
529 g_usBs3TestStep++;
530
531 /* Check that GATE.DPL is checked before CS.PRESENT. */
532 for (iRing = 1; iRing < 4; iRing++)
533 {
534 Bs3MemCpy(&CtxTmp, &Ctx80, sizeof(CtxTmp));
535 Bs3RegCtxConvertToRingX(&CtxTmp, iRing);
536 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
537 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, (0x80 << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
538 if (Bs3GdteTestPage00.Gen.u4Type & X86_SEL_TYPE_ACCESSED)
539 bs3CpuBasic2_FailedF("selector was accessed");
540 g_usBs3TestStep++;
541 }
542
543 /* CS.DPL mismatch takes precedence over CS.PRESENT = 0. */
544 Bs3GdteTestPage00.Gen.u4Type &= ~X86_SEL_TYPE_ACCESSED;
545 Bs3TrapSetJmpAndRestore(&Ctx80, &TrapCtx);
546 bs3CpuBasic2_CompareNpCtx(&TrapCtx, &Ctx80, BS3_SEL_TEST_PAGE_00);
547 if (Bs3GdteTestPage00.Gen.u4Type & X86_SEL_TYPE_ACCESSED)
548 bs3CpuBasic2_FailedF("CS selector was accessed");
549 g_usBs3TestStep++;
550 for (iDpl = 1; iDpl < 4; iDpl++)
551 {
552 Bs3GdteTestPage00.Gen.u2Dpl = iDpl;
553 Bs3TrapSetJmpAndRestore(&Ctx80, &TrapCtx);
554 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &Ctx80, BS3_SEL_TEST_PAGE_00);
555 if (Bs3GdteTestPage00.Gen.u4Type & X86_SEL_TYPE_ACCESSED)
556 bs3CpuBasic2_FailedF("CS selector was accessed");
557 g_usBs3TestStep++;
558 }
559
560 /* 1608: Check all the invalid CS selector types alone. */
561 Bs3GdteTestPage00 = Bs3Gdt[uSysR0Cs >> X86_SEL_SHIFT];
562 for (i = 0; i < RT_ELEMENTS(g_aInvalidCsTypes); i++)
563 {
564 Bs3GdteTestPage00.Gen.u4Type = g_aInvalidCsTypes[i].u4Type;
565 Bs3GdteTestPage00.Gen.u1DescType = g_aInvalidCsTypes[i].u1DescType;
566 Bs3TrapSetJmpAndRestore(&Ctx80, &TrapCtx);
567 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &Ctx80, BS3_SEL_TEST_PAGE_00);
568 if (Bs3GdteTestPage00.Gen.u4Type != g_aInvalidCsTypes[i].u4Type)
569 bs3CpuBasic2_FailedF("Invalid CS type %#x/%u -> %#x/%u\n",
570 g_aInvalidCsTypes[i].u4Type, g_aInvalidCsTypes[i].u1DescType,
571 Bs3GdteTestPage00.Gen.u4Type, Bs3GdteTestPage00.Gen.u1DescType);
572 g_usBs3TestStep++;
573
574 /* Incorrect CS.TYPE takes precedence over CS.PRESENT = 0. */
575 Bs3GdteTestPage00.Gen.u1Present = 0;
576 Bs3TrapSetJmpAndRestore(&Ctx80, &TrapCtx);
577 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &Ctx80, BS3_SEL_TEST_PAGE_00);
578 Bs3GdteTestPage00.Gen.u1Present = 1;
579 g_usBs3TestStep++;
580 }
581
582 /* Fix CS again. */
583 Bs3GdteTestPage00 = Bs3Gdt[uSysR0Cs >> X86_SEL_SHIFT];
584
585 /* 1632: Test SS. */
586 if (!BS3_MODE_IS_64BIT_SYS(g_bTestMode))
587 {
588 uint16_t BS3_FAR *puTssSs2 = BS3_MODE_IS_16BIT_SYS(g_bTestMode) ? &Bs3Tss16.ss2 : &Bs3Tss32.ss2;
589 uint16_t const uSavedSs2 = *puTssSs2;
590 X86DESC const SavedGate83 = paIdt[0x83 << cIdteShift];
591
592 /* Make the handler execute in ring-2. */
593 Bs3GdteTestPage02 = Bs3Gdt[(uSysR0Cs + (2 << BS3_SEL_RING_SHIFT)) >> X86_SEL_SHIFT];
594 Bs3GdteTestPage02.Gen.u4Type &= ~X86_SEL_TYPE_ACCESSED;
595 paIdt[0x83 << cIdteShift].Gate.u16Sel = BS3_SEL_TEST_PAGE_02 | 2;
596
597 Bs3MemCpy(&CtxTmp, &Ctx83, sizeof(CtxTmp));
598 Bs3RegCtxConvertToRingX(&CtxTmp, 3); /* yeah, from 3 so SS:xSP is reloaded. */
599 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
600 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x83);
601 if (!(Bs3GdteTestPage02.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
602 bs3CpuBasic2_FailedF("CS selector was not access");
603 g_usBs3TestStep++;
604
605 /* Create a SS.DPL=2 stack segment and check that SS2.RPL matters and
606 that we get #SS if the selector isn't present. */
607 i = 0; /* used for cycling thru invalid CS types */
608 for (k = 0; k < 10; k++)
609 {
610 /* k=0: present,
611 k=1: not-present,
612 k=2: present but very low limit,
613 k=3: not-present, low limit.
614 k=4: present, read-only.
615 k=5: not-present, read-only.
616 k=6: present, code-selector.
617 k=7: not-present, code-selector.
618 k=8: present, read-write / no access + system (=LDT).
619 k=9: not-present, read-write / no access + system (=LDT).
620 */
621 Bs3GdteTestPage03 = Bs3Gdt[(uSysR0Ss + (2 << BS3_SEL_RING_SHIFT)) >> X86_SEL_SHIFT];
622 Bs3GdteTestPage03.Gen.u1Present = !(k & 1);
623 if (k >= 8)
624 {
625 Bs3GdteTestPage03.Gen.u1DescType = 0; /* system */
626 Bs3GdteTestPage03.Gen.u4Type = X86_SEL_TYPE_RW; /* = LDT */
627 }
628 else if (k >= 6)
629 Bs3GdteTestPage03.Gen.u4Type = X86_SEL_TYPE_ER;
630 else if (k >= 4)
631 Bs3GdteTestPage03.Gen.u4Type = X86_SEL_TYPE_RO;
632 else if (k >= 2)
633 {
634 Bs3GdteTestPage03.Gen.u16LimitLow = 0x400;
635 Bs3GdteTestPage03.Gen.u4LimitHigh = 0;
636 Bs3GdteTestPage03.Gen.u1Granularity = 0;
637 }
638
639 for (iDpl = 0; iDpl < 4; iDpl++)
640 {
641 Bs3GdteTestPage03.Gen.u2Dpl = iDpl;
642
643 for (iRpl = 0; iRpl < 4; iRpl++)
644 {
645 *puTssSs2 = BS3_SEL_TEST_PAGE_03 | iRpl;
646 //Bs3TestPrintf("k=%u iDpl=%u iRpl=%u step=%u\n", k, iDpl, iRpl, g_usBs3TestStep);
647 Bs3GdteTestPage02.Gen.u4Type &= ~X86_SEL_TYPE_ACCESSED;
648 Bs3GdteTestPage03.Gen.u4Type &= ~X86_SEL_TYPE_ACCESSED;
649 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
650 if (iRpl != 2 || iRpl != iDpl || k >= 4)
651 bs3CpuBasic2_CompareTsCtx(&TrapCtx, &CtxTmp, BS3_SEL_TEST_PAGE_03);
652 else if (k != 0)
653 bs3CpuBasic2_CompareSsCtx(&TrapCtx, &CtxTmp, BS3_SEL_TEST_PAGE_03,
654 k == 2 /*f486ResumeFlagHint*/);
655 else
656 {
657 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x83);
658 if (TrapCtx.uHandlerSs != (BS3_SEL_TEST_PAGE_03 | 2))
659 bs3CpuBasic2_FailedF("uHandlerSs=%#x expected %#x\n", TrapCtx.uHandlerSs, BS3_SEL_TEST_PAGE_03 | 2);
660 }
661 if (!(Bs3GdteTestPage02.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
662 bs3CpuBasic2_FailedF("CS selector was not access");
663 if ( TrapCtx.bXcpt == 0x83
664 || (TrapCtx.bXcpt == X86_XCPT_SS && k == 2) )
665 {
666 if (!(Bs3GdteTestPage03.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
667 bs3CpuBasic2_FailedF("SS selector was not accessed");
668 }
669 else if (Bs3GdteTestPage03.Gen.u4Type & X86_SEL_TYPE_ACCESSED)
670 bs3CpuBasic2_FailedF("SS selector was accessed");
671 g_usBs3TestStep++;
672
673 /* +1: Modify the gate DPL to check that this is checked before SS.DPL and SS.PRESENT. */
674 paIdt[0x83 << cIdteShift].Gate.u2Dpl = 2;
675 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
676 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, (0x83 << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
677 paIdt[0x83 << cIdteShift].Gate.u2Dpl = 3;
678 g_usBs3TestStep++;
679
680 /* +2: Check the the CS.DPL check is done before the SS ones. Restoring the
681 ring-0 INT 83 context triggers the CS.DPL < CPL check. */
682 Bs3TrapSetJmpAndRestore(&Ctx83, &TrapCtx);
683 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &Ctx83, BS3_SEL_TEST_PAGE_02);
684 g_usBs3TestStep++;
685
686 /* +3: Now mark the CS selector not present and check that that also triggers before SS stuff. */
687 Bs3GdteTestPage02.Gen.u1Present = 0;
688 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
689 bs3CpuBasic2_CompareNpCtx(&TrapCtx, &CtxTmp, BS3_SEL_TEST_PAGE_02);
690 Bs3GdteTestPage02.Gen.u1Present = 1;
691 g_usBs3TestStep++;
692
693 /* +4: Make the CS selector some invalid type and check it triggers before SS stuff. */
694 Bs3GdteTestPage02.Gen.u4Type = g_aInvalidCsTypes[i].u4Type;
695 Bs3GdteTestPage02.Gen.u1DescType = g_aInvalidCsTypes[i].u1DescType;
696 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
697 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, BS3_SEL_TEST_PAGE_02);
698 Bs3GdteTestPage02.Gen.u4Type = X86_SEL_TYPE_ER_ACC;
699 Bs3GdteTestPage02.Gen.u1DescType = 1;
700 g_usBs3TestStep++;
701
702 /* +5: Now, make the CS selector limit too small and that it triggers after SS trouble.
703 The 286 had a simpler approach to these GP(0). */
704 Bs3GdteTestPage02.Gen.u16LimitLow = 0;
705 Bs3GdteTestPage02.Gen.u4LimitHigh = 0;
706 Bs3GdteTestPage02.Gen.u1Granularity = 0;
707 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
708 if (f286)
709 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, 0 /*uErrCd*/);
710 else if (iRpl != 2 || iRpl != iDpl || k >= 4)
711 bs3CpuBasic2_CompareTsCtx(&TrapCtx, &CtxTmp, BS3_SEL_TEST_PAGE_03);
712 else if (k != 0)
713 bs3CpuBasic2_CompareSsCtx(&TrapCtx, &CtxTmp, BS3_SEL_TEST_PAGE_03, k == 2 /*f486ResumeFlagHint*/);
714 else
715 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, 0 /*uErrCd*/);
716 Bs3GdteTestPage02 = Bs3Gdt[(uSysR0Cs + (2 << BS3_SEL_RING_SHIFT)) >> X86_SEL_SHIFT];
717 g_usBs3TestStep++;
718 }
719 }
720 }
721
722 /* Check all the invalid SS selector types alone. */
723 Bs3GdteTestPage02 = Bs3Gdt[(uSysR0Cs + (2 << BS3_SEL_RING_SHIFT)) >> X86_SEL_SHIFT];
724 Bs3GdteTestPage03 = Bs3Gdt[(uSysR0Ss + (2 << BS3_SEL_RING_SHIFT)) >> X86_SEL_SHIFT];
725 *puTssSs2 = BS3_SEL_TEST_PAGE_03 | 2;
726 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
727 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x83);
728 g_usBs3TestStep++;
729 for (i = 0; i < RT_ELEMENTS(g_aInvalidSsTypes); i++)
730 {
731 Bs3GdteTestPage03.Gen.u4Type = g_aInvalidSsTypes[i].u4Type;
732 Bs3GdteTestPage03.Gen.u1DescType = g_aInvalidSsTypes[i].u1DescType;
733 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
734 bs3CpuBasic2_CompareTsCtx(&TrapCtx, &CtxTmp, BS3_SEL_TEST_PAGE_03);
735 if (Bs3GdteTestPage03.Gen.u4Type != g_aInvalidSsTypes[i].u4Type)
736 bs3CpuBasic2_FailedF("Invalid SS type %#x/%u -> %#x/%u\n",
737 g_aInvalidSsTypes[i].u4Type, g_aInvalidSsTypes[i].u1DescType,
738 Bs3GdteTestPage03.Gen.u4Type, Bs3GdteTestPage03.Gen.u1DescType);
739 g_usBs3TestStep++;
740 }
741
742 /*
743 * Continue the SS experiments with a expand down segment. We'll use
744 * the same setup as we already have with gate 83h being DPL and
745 * having CS.DPL=2.
746 *
747 * Expand down segments are weird. The valid area is practically speaking
748 * reversed. So, a 16-bit segment with a limit of 0x6000 will have valid
749 * addresses from 0xffff thru 0x6001.
750 *
751 * So, with expand down segments we can more easily cut partially into the
752 * pushing of the iret frame and trigger more interesting behavior than
753 * with regular "expand up" segments where the whole pushing area is either
754 * all fine or not not fine.
755 */
756 Bs3GdteTestPage02 = Bs3Gdt[(uSysR0Cs + (2 << BS3_SEL_RING_SHIFT)) >> X86_SEL_SHIFT];
757 Bs3GdteTestPage03 = Bs3Gdt[(uSysR0Ss + (2 << BS3_SEL_RING_SHIFT)) >> X86_SEL_SHIFT];
758 Bs3GdteTestPage03.Gen.u2Dpl = 2;
759 Bs3GdteTestPage03.Gen.u4Type = X86_SEL_TYPE_RW_DOWN;
760 *puTssSs2 = BS3_SEL_TEST_PAGE_03 | 2;
761
762 /* First test, limit = max --> no bytes accessible --> #GP */
763 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
764 bs3CpuBasic2_CompareSsCtx(&TrapCtx, &CtxTmp, BS3_SEL_TEST_PAGE_03, true /*f486ResumeFlagHint*/);
765
766 /* Second test, limit = 0 --> all by zero byte accessible --> works */
767 Bs3GdteTestPage03.Gen.u16LimitLow = 0;
768 Bs3GdteTestPage03.Gen.u4LimitHigh = 0;
769 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
770 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x83);
771
772 /* Modify the gate handler to be a dummy that immediately does UD2
773 and triggers #UD, then advance the limit down till we get the #UD. */
774 Bs3GdteTestPage03.Gen.u1Granularity = 0;
775
776 Bs3MemCpy(&CtxTmp2, &CtxTmp, sizeof(CtxTmp2)); /* #UD result context */
777 if (g_f16BitSys)
778 {
779 CtxTmp2.rip.u = g_bs3CpuBasic2_ud2_FlatAddr - BS3_ADDR_BS3TEXT16;
780 Bs3Trap16SetGate(0x83, X86_SEL_TYPE_SYS_286_INT_GATE, 3, BS3_SEL_TEST_PAGE_02, CtxTmp2.rip.u16, 0 /*cParams*/);
781 CtxTmp2.rsp.u = Bs3Tss16.sp2 - 2*5;
782 }
783 else
784 {
785 CtxTmp2.rip.u = g_bs3CpuBasic2_ud2_FlatAddr;
786 Bs3Trap32SetGate(0x83, X86_SEL_TYPE_SYS_386_INT_GATE, 3, BS3_SEL_TEST_PAGE_02, CtxTmp2.rip.u32, 0 /*cParams*/);
787 CtxTmp2.rsp.u = Bs3Tss32.esp2 - 4*5;
788 }
789 CtxTmp2.bMode = g_bTestMode; /* g_bBs3CurrentMode not changed by the UD2 handler. */
790 CtxTmp2.cs = BS3_SEL_TEST_PAGE_02 | 2;
791 CtxTmp2.ss = BS3_SEL_TEST_PAGE_03 | 2;
792 CtxTmp2.bCpl = 2;
793
794 /* test run. */
795 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
796 bs3CpuBasic2_CompareUdCtx(&TrapCtx, &CtxTmp2);
797 g_usBs3TestStep++;
798
799 /* Real run. */
800 i = (g_f16BitSys ? 2 : 4) * 6 + 1;
801 while (i-- > 0)
802 {
803 Bs3GdteTestPage03.Gen.u16LimitLow = CtxTmp2.rsp.u16 + i - 1;
804 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
805 if (i > 0)
806 bs3CpuBasic2_CompareSsCtx(&TrapCtx, &CtxTmp, BS3_SEL_TEST_PAGE_03, true /*f486ResumeFlagHint*/);
807 else
808 bs3CpuBasic2_CompareUdCtx(&TrapCtx, &CtxTmp2);
809 g_usBs3TestStep++;
810 }
811
812 /* Do a run where we do the same-ring kind of access. */
813 Bs3RegCtxConvertToRingX(&CtxTmp, 2);
814 if (g_f16BitSys)
815 {
816 CtxTmp2.rsp.u32 = CtxTmp.rsp.u32 - 2*3;
817 i = 2*3 - 1;
818 }
819 else
820 {
821 CtxTmp2.rsp.u32 = CtxTmp.rsp.u32 - 4*3;
822 i = 4*3 - 1;
823 }
824 CtxTmp.ss = BS3_SEL_TEST_PAGE_03 | 2;
825 CtxTmp2.ds = CtxTmp.ds;
826 CtxTmp2.es = CtxTmp.es;
827 CtxTmp2.fs = CtxTmp.fs;
828 CtxTmp2.gs = CtxTmp.gs;
829 while (i-- > 0)
830 {
831 Bs3GdteTestPage03.Gen.u16LimitLow = CtxTmp2.rsp.u16 + i - 1;
832 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
833 if (i > 0)
834 bs3CpuBasic2_CompareSsCtx(&TrapCtx, &CtxTmp, 0 /*BS3_SEL_TEST_PAGE_03*/, true /*f486ResumeFlagHint*/);
835 else
836 bs3CpuBasic2_CompareUdCtx(&TrapCtx, &CtxTmp2);
837 g_usBs3TestStep++;
838 }
839
840 *puTssSs2 = uSavedSs2;
841 paIdt[0x83 << cIdteShift] = SavedGate83;
842 }
843 paIdt[0x80 << cIdteShift].Gate.u16Sel = uSysR0Cs;
844 BS3_ASSERT(g_usBs3TestStep < 3000);
845
846 /*
847 * Modify the gate CS value with a conforming segment.
848 */
849 g_usBs3TestStep = 3000;
850 for (i = 0; i <= 3; i++) /* cs.dpl */
851 {
852 for (iRing = 0; iRing <= 3; iRing++)
853 {
854 for (iCtx = 0; iCtx < RT_ELEMENTS(apCtx8x); iCtx++)
855 {
856 Bs3MemCpy(&CtxTmp, apCtx8x[iCtx], sizeof(CtxTmp));
857 Bs3RegCtxConvertToRingX(&CtxTmp, iRing);
858# if TMPL_BITS == 32
859 g_uBs3TrapEipHint = CtxTmp.rip.u32;
860# endif
861
862 for (j = 0; j <= 3; j++) /* rpl */
863 {
864 uint16_t const uCs = (uSysR0CsConf | j) + (i << BS3_SEL_RING_SHIFT);
865 /*Bs3TestPrintf("g_usBs3TestStep=%u iCtx=%u iRing=%u i=%u uCs=%04x\n", g_usBs3TestStep, iCtx, iRing, i, uCs);*/
866 paIdt[(0x80 + iCtx) << cIdteShift].Gate.u16Sel = uCs;
867 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
868 //Bs3TestPrintf("%u/%u/%u/%u: cs=%04x hcs=%04x xcpt=%02x\n", i, iRing, iCtx, j, uCs, TrapCtx.uHandlerCs, TrapCtx.bXcpt);
869 /*Bs3TrapPrintFrame(&TrapCtx);*/
870 g_usBs3TestStep++;
871 if (iCtx < iRing)
872 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
873 else if (i > iRing)
874 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, uCs & X86_SEL_MASK_OFF_RPL);
875 else
876 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x80 + iCtx /*bXcpt*/);
877 }
878 paIdt[(0x80 + iCtx) << cIdteShift].Gate.u16Sel = uSysR0Cs;
879 }
880 }
881 }
882 BS3_ASSERT(g_usBs3TestStep < 3500);
883
884 /*
885 * The gates must be 64-bit in long mode.
886 */
887 if (cIdteShift != 0)
888 {
889 g_usBs3TestStep = 3500;
890 for (i = 0; i <= 3; i++)
891 {
892 for (iRing = 0; iRing <= 3; iRing++)
893 {
894 for (iCtx = 0; iCtx < RT_ELEMENTS(apCtx8x); iCtx++)
895 {
896 Bs3MemCpy(&CtxTmp, apCtx8x[iCtx], sizeof(CtxTmp));
897 Bs3RegCtxConvertToRingX(&CtxTmp, iRing);
898
899 for (j = 0; j < 2; j++)
900 {
901 static const uint16_t s_auCSes[2] = { BS3_SEL_R0_CS16, BS3_SEL_R0_CS32 };
902 uint16_t uCs = (s_auCSes[j] | i) + (i << BS3_SEL_RING_SHIFT);
903 g_usBs3TestStep++;
904 /*Bs3TestPrintf("g_usBs3TestStep=%u iCtx=%u iRing=%u i=%u uCs=%04x\n", g_usBs3TestStep, iCtx, iRing, i, uCs);*/
905 paIdt[(0x80 + iCtx) << cIdteShift].Gate.u16Sel = uCs;
906 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
907 /*Bs3TrapPrintFrame(&TrapCtx);*/
908 if (iCtx < iRing)
909 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
910 else
911 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, uCs & X86_SEL_MASK_OFF_RPL);
912 }
913 paIdt[(0x80 + iCtx) << cIdteShift].Gate.u16Sel = uSysR0Cs;
914 }
915 }
916 }
917 BS3_ASSERT(g_usBs3TestStep < 4000);
918 }
919
920 /*
921 * IDT limit check. The 286 does not access X86DESCGATE::u16OffsetHigh.
922 */
923 g_usBs3TestStep = 5000;
924 i = (0x80 << (cIdteShift + 3)) - 1;
925 j = (0x82 << (cIdteShift + 3)) - (!f286 ? 1 : 3);
926 k = (0x83 << (cIdteShift + 3)) - 1;
927 for (; i <= k; i++, g_usBs3TestStep++)
928 {
929 Idtr = IdtrSaved;
930 Idtr.cbIdt = i;
931 ASMSetIDTR(&Idtr);
932 Bs3TrapSetJmpAndRestore(&Ctx81, &TrapCtx);
933 if (i < j)
934 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &Ctx81, (0x81 << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
935 else
936 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx81, 0x81 /*bXcpt*/);
937 }
938 ASMSetIDTR(&IdtrSaved);
939 BS3_ASSERT(g_usBs3TestStep < 5100);
940
941# if TMPL_BITS != 16 /* Only do the paging related stuff in 32-bit and 64-bit modes. */
942
943 /*
944 * IDT page not present. Placing the IDT copy such that 0x80 is on the
945 * first page and 0x81 is on the second page. We need proceed to move
946 * it down byte by byte to check that any inaccessible byte means #PF.
947 *
948 * Note! We must reload the alternative IDTR for each run as any kind of
949 * printing to the string (like error reporting) will cause a switch
950 * to real mode and back, reloading the default IDTR.
951 */
952 g_usBs3TestStep = 5200;
953 if (BS3_MODE_IS_PAGED(g_bTestMode) && pbIdtCopyAlloc)
954 {
955 uint32_t const uCr2Expected = Bs3SelPtrToFlat(pbIdtCopyAlloc) + _4K;
956 for (j = 0; j < cbIdte; j++)
957 {
958 pIdtCopy = (PX86DESC)&pbIdtCopyAlloc[_4K - cbIdte * 0x81 - j];
959 Bs3MemCpy(pIdtCopy, paIdt, cbIdte * 256);
960
961 Idtr.cbIdt = IdtrSaved.cbIdt;
962 Idtr.pIdt = Bs3SelPtrToFlat(pIdtCopy);
963
964 ASMSetIDTR(&Idtr);
965 Bs3TrapSetJmpAndRestore(&Ctx81, &TrapCtx);
966 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx81, 0x81 /*bXcpt*/);
967 g_usBs3TestStep++;
968
969 ASMSetIDTR(&Idtr);
970 Bs3TrapSetJmpAndRestore(&Ctx80, &TrapCtx);
971 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx80, 0x80 /*bXcpt*/);
972 g_usBs3TestStep++;
973
974 rc = Bs3PagingProtect(uCr2Expected, _4K, 0 /*fSet*/, X86_PTE_P /*fClear*/);
975 if (RT_SUCCESS(rc))
976 {
977 ASMSetIDTR(&Idtr);
978 Bs3TrapSetJmpAndRestore(&Ctx80, &TrapCtx);
979 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx80, 0x80 /*bXcpt*/);
980 g_usBs3TestStep++;
981
982 ASMSetIDTR(&Idtr);
983 Bs3TrapSetJmpAndRestore(&Ctx81, &TrapCtx);
984 if (f486Plus)
985 bs3CpuBasic2_ComparePfCtx(&TrapCtx, &Ctx81, 0 /*uErrCd*/, uCr2Expected);
986 else
987 bs3CpuBasic2_ComparePfCtx(&TrapCtx, &Ctx81, X86_TRAP_PF_RW /*uErrCd*/, uCr2Expected + 4 - RT_MIN(j, 4));
988 g_usBs3TestStep++;
989
990 Bs3PagingProtect(uCr2Expected, _4K, X86_PTE_P /*fSet*/, 0 /*fClear*/);
991
992 /* Check if that the entry type is checked after the whole IDTE has been cleared for #PF. */
993 pIdtCopy[0x80 << cIdteShift].Gate.u4Type = 0;
994 rc = Bs3PagingProtect(uCr2Expected, _4K, 0 /*fSet*/, X86_PTE_P /*fClear*/);
995 if (RT_SUCCESS(rc))
996 {
997 ASMSetIDTR(&Idtr);
998 Bs3TrapSetJmpAndRestore(&Ctx81, &TrapCtx);
999 if (f486Plus)
1000 bs3CpuBasic2_ComparePfCtx(&TrapCtx, &Ctx81, 0 /*uErrCd*/, uCr2Expected);
1001 else
1002 bs3CpuBasic2_ComparePfCtx(&TrapCtx, &Ctx81, X86_TRAP_PF_RW /*uErrCd*/, uCr2Expected + 4 - RT_MIN(j, 4));
1003 g_usBs3TestStep++;
1004
1005 Bs3PagingProtect(uCr2Expected, _4K, X86_PTE_P /*fSet*/, 0 /*fClear*/);
1006 }
1007 }
1008 else
1009 Bs3TestPrintf("Bs3PagingProtectPtr: %d\n", i);
1010
1011 ASMSetIDTR(&IdtrSaved);
1012 }
1013 }
1014
1015 /*
1016 * The read/write and user/supervisor bits the IDT PTEs are irrelevant.
1017 */
1018 g_usBs3TestStep = 5300;
1019 if (BS3_MODE_IS_PAGED(g_bTestMode) && pbIdtCopyAlloc)
1020 {
1021 Bs3MemCpy(pbIdtCopyAlloc, paIdt, cbIdte * 256);
1022 Idtr.cbIdt = IdtrSaved.cbIdt;
1023 Idtr.pIdt = Bs3SelPtrToFlat(pbIdtCopyAlloc);
1024
1025 ASMSetIDTR(&Idtr);
1026 Bs3TrapSetJmpAndRestore(&Ctx81, &TrapCtx);
1027 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx81, 0x81 /*bXcpt*/);
1028 g_usBs3TestStep++;
1029
1030 rc = Bs3PagingProtect(Idtr.pIdt, _4K, 0 /*fSet*/, X86_PTE_RW | X86_PTE_US /*fClear*/);
1031 if (RT_SUCCESS(rc))
1032 {
1033 ASMSetIDTR(&Idtr);
1034 Bs3TrapSetJmpAndRestore(&Ctx81, &TrapCtx);
1035 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx81, 0x81 /*bXcpt*/);
1036 g_usBs3TestStep++;
1037
1038 Bs3PagingProtect(Idtr.pIdt, _4K, X86_PTE_RW | X86_PTE_US /*fSet*/, 0 /*fClear*/);
1039 }
1040 ASMSetIDTR(&IdtrSaved);
1041 }
1042
1043 /*
1044 * Check that CS.u1Accessed is set to 1. Use the test page selector #0 and #3 together
1045 * with interrupt gates 80h and 83h, respectively.
1046 */
1047/** @todo Throw in SS.u1Accessed too. */
1048 g_usBs3TestStep = 5400;
1049 if (BS3_MODE_IS_PAGED(g_bTestMode) && pbIdtCopyAlloc)
1050 {
1051 Bs3GdteTestPage00 = Bs3Gdt[uSysR0Cs >> X86_SEL_SHIFT];
1052 Bs3GdteTestPage00.Gen.u4Type &= ~X86_SEL_TYPE_ACCESSED;
1053 paIdt[0x80 << cIdteShift].Gate.u16Sel = BS3_SEL_TEST_PAGE_00;
1054
1055 Bs3GdteTestPage03 = Bs3Gdt[(uSysR0Cs + (3 << BS3_SEL_RING_SHIFT)) >> X86_SEL_SHIFT];
1056 Bs3GdteTestPage03.Gen.u4Type &= ~X86_SEL_TYPE_ACCESSED;
1057 paIdt[0x83 << cIdteShift].Gate.u16Sel = BS3_SEL_TEST_PAGE_03; /* rpl is ignored, so leave it as zero. */
1058
1059 /* Check that the CS.A bit is being set on a general basis and that
1060 the special CS values work with out generic handler code. */
1061 Bs3TrapSetJmpAndRestore(&Ctx80, &TrapCtx);
1062 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx80, 0x80 /*bXcpt*/);
1063 if (!(Bs3GdteTestPage00.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
1064 bs3CpuBasic2_FailedF("u4Type=%#x, not accessed", Bs3GdteTestPage00.Gen.u4Type);
1065 g_usBs3TestStep++;
1066
1067 Bs3MemCpy(&CtxTmp, &Ctx83, sizeof(CtxTmp));
1068 Bs3RegCtxConvertToRingX(&CtxTmp, 3);
1069 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
1070 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x83 /*bXcpt*/);
1071 if (!(Bs3GdteTestPage03.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
1072 bs3CpuBasic2_FailedF("u4Type=%#x, not accessed!", Bs3GdteTestPage00.Gen.u4Type);
1073 if (TrapCtx.uHandlerCs != (BS3_SEL_TEST_PAGE_03 | 3))
1074 bs3CpuBasic2_FailedF("uHandlerCs=%#x, expected %#x", TrapCtx.uHandlerCs, (BS3_SEL_TEST_PAGE_03 | 3));
1075 g_usBs3TestStep++;
1076
1077 /*
1078 * Now check that setting CS.u1Access to 1 does __NOT__ trigger a page
1079 * fault due to the RW bit being zero.
1080 * (We check both with with and without the WP bit if 80486.)
1081 */
1082 if ((g_uBs3CpuDetected & BS3CPU_TYPE_MASK) >= BS3CPU_80486)
1083 ASMSetCR0(uCr0Saved | X86_CR0_WP);
1084
1085 Bs3GdteTestPage00.Gen.u4Type &= ~X86_SEL_TYPE_ACCESSED;
1086 Bs3GdteTestPage03.Gen.u4Type &= ~X86_SEL_TYPE_ACCESSED;
1087 rc = Bs3PagingProtect(GdtrSaved.pGdt + BS3_SEL_TEST_PAGE_00, 8, 0 /*fSet*/, X86_PTE_RW /*fClear*/);
1088 if (RT_SUCCESS(rc))
1089 {
1090 /* ring-0 handler */
1091 Bs3TrapSetJmpAndRestore(&Ctx80, &TrapCtx);
1092 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx80, 0x80 /*bXcpt*/);
1093 if (!(Bs3GdteTestPage00.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
1094 bs3CpuBasic2_FailedF("u4Type=%#x, not accessed!", Bs3GdteTestPage00.Gen.u4Type);
1095 g_usBs3TestStep++;
1096
1097 /* ring-3 handler */
1098 Bs3MemCpy(&CtxTmp, &Ctx83, sizeof(CtxTmp));
1099 Bs3RegCtxConvertToRingX(&CtxTmp, 3);
1100 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
1101 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x83 /*bXcpt*/);
1102 if (!(Bs3GdteTestPage03.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
1103 bs3CpuBasic2_FailedF("u4Type=%#x, not accessed!", Bs3GdteTestPage00.Gen.u4Type);
1104 g_usBs3TestStep++;
1105
1106 /* clear WP and repeat the above. */
1107 if ((g_uBs3CpuDetected & BS3CPU_TYPE_MASK) >= BS3CPU_80486)
1108 ASMSetCR0(uCr0Saved & ~X86_CR0_WP);
1109 Bs3GdteTestPage00.Gen.u4Type &= ~X86_SEL_TYPE_ACCESSED; /* (No need to RW the page - ring-0, WP=0.) */
1110 Bs3GdteTestPage03.Gen.u4Type &= ~X86_SEL_TYPE_ACCESSED; /* (No need to RW the page - ring-0, WP=0.) */
1111
1112 Bs3TrapSetJmpAndRestore(&Ctx80, &TrapCtx);
1113 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx80, 0x80 /*bXcpt*/);
1114 if (!(Bs3GdteTestPage00.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
1115 bs3CpuBasic2_FailedF("u4Type=%#x, not accessed!", Bs3GdteTestPage00.Gen.u4Type);
1116 g_usBs3TestStep++;
1117
1118 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
1119 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x83 /*bXcpt*/);
1120 if (!(Bs3GdteTestPage03.Gen.u4Type & X86_SEL_TYPE_ACCESSED))
1121 bs3CpuBasic2_FailedF("u4Type=%#x, not accessed!n", Bs3GdteTestPage03.Gen.u4Type);
1122 g_usBs3TestStep++;
1123
1124 Bs3PagingProtect(GdtrSaved.pGdt + BS3_SEL_TEST_PAGE_00, 8, X86_PTE_RW /*fSet*/, 0 /*fClear*/);
1125 }
1126
1127 ASMSetCR0(uCr0Saved);
1128
1129 /*
1130 * While we're here, check that if the CS GDT entry is a non-present
1131 * page we do get a #PF with the rigth error code and CR2.
1132 */
1133 Bs3GdteTestPage00.Gen.u4Type &= ~X86_SEL_TYPE_ACCESSED; /* Just for fun, really a pointless gesture. */
1134 Bs3GdteTestPage03.Gen.u4Type &= ~X86_SEL_TYPE_ACCESSED;
1135 rc = Bs3PagingProtect(GdtrSaved.pGdt + BS3_SEL_TEST_PAGE_00, 8, 0 /*fSet*/, X86_PTE_P /*fClear*/);
1136 if (RT_SUCCESS(rc))
1137 {
1138 Bs3TrapSetJmpAndRestore(&Ctx80, &TrapCtx);
1139 if (f486Plus)
1140 bs3CpuBasic2_ComparePfCtx(&TrapCtx, &Ctx80, 0 /*uErrCd*/, GdtrSaved.pGdt + BS3_SEL_TEST_PAGE_00);
1141 else
1142 bs3CpuBasic2_ComparePfCtx(&TrapCtx, &Ctx80, X86_TRAP_PF_RW, GdtrSaved.pGdt + BS3_SEL_TEST_PAGE_00 + 4);
1143 g_usBs3TestStep++;
1144
1145 /* Do it from ring-3 to check ErrCd, which doesn't set X86_TRAP_PF_US it turns out. */
1146 Bs3MemCpy(&CtxTmp, &Ctx83, sizeof(CtxTmp));
1147 Bs3RegCtxConvertToRingX(&CtxTmp, 3);
1148 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
1149
1150 if (f486Plus)
1151 bs3CpuBasic2_ComparePfCtx(&TrapCtx, &CtxTmp, 0 /*uErrCd*/, GdtrSaved.pGdt + BS3_SEL_TEST_PAGE_03);
1152 else
1153 bs3CpuBasic2_ComparePfCtx(&TrapCtx, &CtxTmp, X86_TRAP_PF_RW, GdtrSaved.pGdt + BS3_SEL_TEST_PAGE_03 + 4);
1154 g_usBs3TestStep++;
1155
1156 Bs3PagingProtect(GdtrSaved.pGdt + BS3_SEL_TEST_PAGE_00, 8, X86_PTE_P /*fSet*/, 0 /*fClear*/);
1157 if (Bs3GdteTestPage00.Gen.u4Type & X86_SEL_TYPE_ACCESSED)
1158 bs3CpuBasic2_FailedF("u4Type=%#x, accessed! #1", Bs3GdteTestPage00.Gen.u4Type);
1159 if (Bs3GdteTestPage03.Gen.u4Type & X86_SEL_TYPE_ACCESSED)
1160 bs3CpuBasic2_FailedF("u4Type=%#x, accessed! #2", Bs3GdteTestPage03.Gen.u4Type);
1161 }
1162
1163 /* restore */
1164 paIdt[0x80 << cIdteShift].Gate.u16Sel = uSysR0Cs;
1165 paIdt[0x83 << cIdteShift].Gate.u16Sel = uSysR0Cs;// + (3 << BS3_SEL_RING_SHIFT) + 3;
1166 }
1167
1168# endif /* 32 || 64*/
1169
1170 /*
1171 * Check broad EFLAGS effects.
1172 */
1173 g_usBs3TestStep = 5600;
1174 for (iCtx = 0; iCtx < RT_ELEMENTS(apCtx8x); iCtx++)
1175 {
1176 for (iRing = 0; iRing < 4; iRing++)
1177 {
1178 Bs3MemCpy(&CtxTmp, apCtx8x[iCtx], sizeof(CtxTmp));
1179 Bs3RegCtxConvertToRingX(&CtxTmp, iRing);
1180
1181 /* all set */
1182 CtxTmp.rflags.u32 &= X86_EFL_VM | X86_EFL_1;
1183 CtxTmp.rflags.u32 |= X86_EFL_CF | X86_EFL_PF | X86_EFL_AF | X86_EFL_ZF | X86_EFL_SF /* | X86_EFL_TF */ /*| X86_EFL_IF*/
1184 | X86_EFL_DF | X86_EFL_OF | X86_EFL_IOPL /* | X86_EFL_NT*/;
1185 if (f486Plus)
1186 CtxTmp.rflags.u32 |= X86_EFL_AC;
1187 if (f486Plus && !g_f16BitSys)
1188 CtxTmp.rflags.u32 |= X86_EFL_RF;
1189 if (g_uBs3CpuDetected & BS3CPU_F_CPUID)
1190 CtxTmp.rflags.u32 |= X86_EFL_VIF | X86_EFL_VIP;
1191 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
1192 CtxTmp.rflags.u32 &= ~X86_EFL_RF;
1193
1194 if (iCtx >= iRing)
1195 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x80 + iCtx /*bXcpt*/);
1196 else
1197 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
1198 uExpected = CtxTmp.rflags.u32
1199 & ( X86_EFL_1 | X86_EFL_CF | X86_EFL_PF | X86_EFL_AF | X86_EFL_ZF | X86_EFL_SF | X86_EFL_DF
1200 | X86_EFL_OF | X86_EFL_IOPL | X86_EFL_NT | X86_EFL_VM | X86_EFL_AC | X86_EFL_VIF | X86_EFL_VIP
1201 | X86_EFL_ID /*| X86_EFL_TF*/ /*| X86_EFL_IF*/ /*| X86_EFL_RF*/ );
1202 if (TrapCtx.fHandlerRfl != uExpected)
1203 bs3CpuBasic2_FailedF("unexpected handler rflags value: %RX64 expected %RX32; CtxTmp.rflags=%RX64 Ctx.rflags=%RX64\n",
1204 TrapCtx.fHandlerRfl, uExpected, CtxTmp.rflags.u, TrapCtx.Ctx.rflags.u);
1205 g_usBs3TestStep++;
1206
1207 /* all cleared */
1208 if ((g_uBs3CpuDetected & BS3CPU_TYPE_MASK) < BS3CPU_80286)
1209 CtxTmp.rflags.u32 = apCtx8x[iCtx]->rflags.u32 & (X86_EFL_RA1_MASK | UINT16_C(0xf000));
1210 else
1211 CtxTmp.rflags.u32 = apCtx8x[iCtx]->rflags.u32 & (X86_EFL_VM | X86_EFL_RA1_MASK);
1212 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
1213 if (iCtx >= iRing)
1214 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x80 + iCtx /*bXcpt*/);
1215 else
1216 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
1217 uExpected = CtxTmp.rflags.u32;
1218 if (TrapCtx.fHandlerRfl != uExpected)
1219 bs3CpuBasic2_FailedF("unexpected handler rflags value: %RX64 expected %RX32; CtxTmp.rflags=%RX64 Ctx.rflags=%RX64\n",
1220 TrapCtx.fHandlerRfl, uExpected, CtxTmp.rflags.u, TrapCtx.Ctx.rflags.u);
1221 g_usBs3TestStep++;
1222 }
1223 }
1224
1225/** @todo CS.LIMIT / canonical(CS) */
1226
1227
1228 /*
1229 * Check invalid gate types.
1230 */
1231 g_usBs3TestStep = 32000;
1232 for (iRing = 0; iRing <= 3; iRing++)
1233 {
1234 static const uint16_t s_auCSes[] = { BS3_SEL_R0_CS16, BS3_SEL_R0_CS32, BS3_SEL_R0_CS64,
1235 BS3_SEL_TSS16, BS3_SEL_TSS32, BS3_SEL_TSS64, 0, BS3_SEL_SPARE_1f };
1236 static uint16_t const s_auInvlTypes64[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13,
1237 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
1238 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f };
1239 static uint16_t const s_auInvlTypes32[] = { 0, 1, 2, 3, 8, 9, 10, 11, 13,
1240 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
1241 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,
1242 /*286:*/ 12, 14, 15 };
1243 uint16_t const * const pauInvTypes = cIdteShift != 0 ? s_auInvlTypes64 : s_auInvlTypes32;
1244 uint16_t const cInvTypes = cIdteShift != 0 ? RT_ELEMENTS(s_auInvlTypes64)
1245 : f386Plus ? RT_ELEMENTS(s_auInvlTypes32) - 3 : RT_ELEMENTS(s_auInvlTypes32);
1246
1247
1248 for (iCtx = 0; iCtx < RT_ELEMENTS(apCtx8x); iCtx++)
1249 {
1250 unsigned iType;
1251
1252 Bs3MemCpy(&CtxTmp, apCtx8x[iCtx], sizeof(CtxTmp));
1253 Bs3RegCtxConvertToRingX(&CtxTmp, iRing);
1254# if TMPL_BITS == 32
1255 g_uBs3TrapEipHint = CtxTmp.rip.u32;
1256# endif
1257 for (iType = 0; iType < cInvTypes; iType++)
1258 {
1259 uint8_t const bSavedType = paIdt[(0x80 + iCtx) << cIdteShift].Gate.u4Type;
1260 paIdt[(0x80 + iCtx) << cIdteShift].Gate.u1DescType = pauInvTypes[iType] >> 4;
1261 paIdt[(0x80 + iCtx) << cIdteShift].Gate.u4Type = pauInvTypes[iType] & 0xf;
1262
1263 for (i = 0; i < 4; i++)
1264 {
1265 for (j = 0; j < RT_ELEMENTS(s_auCSes); j++)
1266 {
1267 uint16_t uCs = (unsigned)(s_auCSes[j] - BS3_SEL_R0_FIRST) < (unsigned)(4 << BS3_SEL_RING_SHIFT)
1268 ? (s_auCSes[j] | i) + (i << BS3_SEL_RING_SHIFT)
1269 : s_auCSes[j] | i;
1270 /*Bs3TestPrintf("g_usBs3TestStep=%u iCtx=%u iRing=%u i=%u uCs=%04x type=%#x\n", g_usBs3TestStep, iCtx, iRing, i, uCs, pauInvTypes[iType]);*/
1271 paIdt[(0x80 + iCtx) << cIdteShift].Gate.u16Sel = uCs;
1272 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
1273 g_usBs3TestStep++;
1274 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
1275
1276 /* Mark it not-present to check that invalid type takes precedence. */
1277 paIdt[(0x80 + iCtx) << cIdteShift].Gate.u1Present = 0;
1278 Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
1279 g_usBs3TestStep++;
1280 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
1281 paIdt[(0x80 + iCtx) << cIdteShift].Gate.u1Present = 1;
1282 }
1283 }
1284
1285 paIdt[(0x80 + iCtx) << cIdteShift].Gate.u16Sel = uSysR0Cs;
1286 paIdt[(0x80 + iCtx) << cIdteShift].Gate.u4Type = bSavedType;
1287 paIdt[(0x80 + iCtx) << cIdteShift].Gate.u1DescType = 0;
1288 paIdt[(0x80 + iCtx) << cIdteShift].Gate.u1Present = 1;
1289 }
1290 }
1291 }
1292 BS3_ASSERT(g_usBs3TestStep < 62000U && g_usBs3TestStep > 32000U);
1293
1294
1295 /** @todo
1296 * - Run \#PF and \#GP (and others?) at CPLs other than zero.
1297 * - Quickly generate all faults.
1298 * - All the peculiarities v8086.
1299 */
1300
1301# if TMPL_BITS != 16
1302 Bs3MemFree(pbIdtCopyAlloc, 12*_1K);
1303# endif
1304}
1305
1306
1307# define bs3CpuBasic2_sidt_Common BS3_CMN_NM(bs3CpuBasic2_sidt_Common)
1308BS3_DECL_NEAR(void) bs3CpuBasic2_sidt_Common(void)
1309{
1310 BS3TRAPFRAME TrapCtx;
1311 BS3REGCTX Ctx;
1312 BS3REGCTX CtxUdExpected;
1313 BS3REGCTX TmpCtx;
1314 uint8_t const cbBuf = 8*2; /* test buffer area */
1315 uint8_t abBuf[8*2 + 8 + 8]; /* test buffer w/ misalignment test space and some extra guard. */
1316 uint8_t BS3_FAR *pbBuf = abBuf;
1317 uint8_t const cbIdtr = BS3_MODE_IS_64BIT_CODE(g_bTestMode) ? 2+8 : 2+4;
1318 bool const f286 = (g_uBs3CpuDetected & BS3CPU_TYPE_MASK) == BS3CPU_80286;
1319 uint8_t bFiller;
1320 unsigned off;
1321
1322 g_usBs3TestStep = 0;
1323
1324 /* make sure they're allocated */
1325 Bs3MemZero(&Ctx, sizeof(Ctx));
1326 Bs3MemZero(&CtxUdExpected, sizeof(CtxUdExpected));
1327 Bs3MemZero(&TmpCtx, sizeof(TmpCtx));
1328 Bs3MemZero(&TrapCtx, sizeof(TrapCtx));
1329 Bs3MemZero(&abBuf, sizeof(abBuf));
1330
1331 /* Create a context, give this routine some more stack space, point the context
1332 at our SIDT [xBX] + UD2 combo, and point DS:xBX at abBuf. */
1333 Bs3RegCtxSaveEx(&Ctx, g_bTestMode, 256 /*cbExtraStack*/);
1334 Ctx.rip.u = (uintptr_t)BS3_FP_OFF(&bs3CpuBasic2_sidt_bx_ud2);
1335# if TMPL_BITS == 32
1336 g_uBs3TrapEipHint = Ctx.rip.u32;
1337# endif
1338 Ctx.rbx.u = BS3_FP_OFF(pbBuf);
1339# if TMPL_BITS == 16
1340 Ctx.ds = BS3_FP_SEG(pbBuf);
1341# endif
1342
1343 /* For successful SIDT attempts, we'll stop at the UD2. */
1344 Bs3MemCpy(&CtxUdExpected, &Ctx, sizeof(Ctx));
1345 CtxUdExpected.rip.u += 3;
1346
1347 /*
1348 * Check that it works at all and that only bytes we expect gets written to.
1349 */
1350 /* First with zero buffer. */
1351 Bs3MemZero(abBuf, sizeof(abBuf));
1352 if (!ASMMemIsAllU8(abBuf, sizeof(abBuf), 0))
1353 Bs3TestFailedF("ASMMemIsAllU8 or Bs3MemZero is busted: abBuf=%.*Rhxs\n", sizeof(abBuf), pbBuf);
1354 if (!ASMMemIsZero(abBuf, sizeof(abBuf)))
1355 Bs3TestFailedF("ASMMemIsZero or Bs3MemZero is busted: abBuf=%.*Rhxs\n", sizeof(abBuf), pbBuf);
1356 Bs3TrapSetJmpAndRestore(&Ctx, &TrapCtx);
1357 bs3CpuBasic2_CompareUdCtx(&TrapCtx, &CtxUdExpected);
1358 if (f286 && abBuf[cbIdtr - 1] != 0xff)
1359 Bs3TestFailedF("286: Top base byte isn't 0xff (#1): %#x\n", abBuf[cbIdtr - 1]);
1360 if (!ASMMemIsZero(&abBuf[cbIdtr], cbBuf - cbIdtr))
1361 Bs3TestFailedF("Unexpected buffer bytes set (#1): cbIdtr=%u abBuf=%.*Rhxs\n", cbIdtr, cbBuf, pbBuf);
1362 g_usBs3TestStep++;
1363
1364 /* Again with buffer filled a byte not occuring in the previous result. */
1365 bFiller = 0x55;
1366 while (Bs3MemChr(abBuf, bFiller, cbBuf) != NULL)
1367 bFiller++;
1368 Bs3MemSet(abBuf, bFiller, sizeof(abBuf));
1369 if (!ASMMemIsAllU8(abBuf, sizeof(abBuf), bFiller))
1370 Bs3TestFailedF("ASMMemIsAllU8 or Bs3MemSet is busted: bFiller=%#x abBuf=%.*Rhxs\n", bFiller, sizeof(abBuf), pbBuf);
1371
1372 Bs3TrapSetJmpAndRestore(&Ctx, &TrapCtx);
1373 bs3CpuBasic2_CompareUdCtx(&TrapCtx, &CtxUdExpected);
1374 if (f286 && abBuf[cbIdtr - 1] != 0xff)
1375 Bs3TestFailedF("286: Top base byte isn't 0xff (#2): %#x\n", abBuf[cbIdtr - 1]);
1376 if (!ASMMemIsAllU8(&abBuf[cbIdtr], cbBuf - cbIdtr, bFiller))
1377 Bs3TestFailedF("Unexpected buffer bytes set (#2): cbIdtr=%u bFiller=%#x abBuf=%.*Rhxs\n", cbIdtr, bFiller, cbBuf, pbBuf);
1378 if (Bs3MemChr(abBuf, bFiller, cbIdtr) != NULL)
1379 Bs3TestFailedF("Not all bytes touched: cbIdtr=%u bFiller=%#x abBuf=%.*Rhxs\n", cbIdtr, bFiller, cbBuf, pbBuf);
1380 g_usBs3TestStep++;
1381
1382 /*
1383 * Slide the buffer along 8 bytes to cover misalignment.
1384 */
1385 for (off = 0; off < 8; off++)
1386 {
1387 pbBuf = &abBuf[off];
1388 CtxUdExpected.rbx.u = Ctx.rbx.u = BS3_FP_OFF(pbBuf);
1389
1390 /* First with zero buffer. */
1391 Bs3MemZero(abBuf, sizeof(abBuf));
1392 Bs3TrapSetJmpAndRestore(&Ctx, &TrapCtx);
1393 bs3CpuBasic2_CompareUdCtx(&TrapCtx, &CtxUdExpected);
1394 if (off > 0 && !ASMMemIsZero(abBuf, off))
1395 Bs3TestFailedF("Unexpected buffer bytes set before (#3): cbIdtr=%u off=%u abBuf=%.*Rhxs\n",
1396 cbIdtr, off, off + cbBuf, abBuf);
1397 if (!ASMMemIsZero(&abBuf[off + cbIdtr], sizeof(abBuf) - cbIdtr - off))
1398 Bs3TestFailedF("Unexpected buffer bytes set after (#3): cbIdtr=%u off=%u abBuf=%.*Rhxs\n",
1399 cbIdtr, off, off + cbBuf, abBuf);
1400 if (f286 && abBuf[off + cbIdtr - 1] != 0xff)
1401 Bs3TestFailedF("286: Top base byte isn't 0xff (#3): %#x\n", abBuf[off + cbIdtr - 1]);
1402 g_usBs3TestStep++;
1403
1404 /* Again with buffer filled a byte not occuring in the previous result. */
1405 Bs3MemSet(abBuf, bFiller, sizeof(abBuf));
1406 Bs3TrapSetJmpAndRestore(&Ctx, &TrapCtx);
1407 bs3CpuBasic2_CompareUdCtx(&TrapCtx, &CtxUdExpected);
1408 if (off > 0 && !ASMMemIsAllU8(abBuf, off, bFiller))
1409 Bs3TestFailedF("Unexpected buffer bytes set before (#4): cbIdtr=%u off=%u bFiller=%#x abBuf=%.*Rhxs\n",
1410 cbIdtr, off, bFiller, off + cbBuf, abBuf);
1411 if (!ASMMemIsAllU8(&abBuf[off + cbIdtr], sizeof(abBuf) - cbIdtr - off, bFiller))
1412 Bs3TestFailedF("Unexpected buffer bytes set after (#4): cbIdtr=%u off=%u bFiller=%#x abBuf=%.*Rhxs\n",
1413 cbIdtr, off, bFiller, off + cbBuf, abBuf);
1414 if (Bs3MemChr(&abBuf[off], bFiller, cbIdtr) != NULL)
1415 Bs3TestFailedF("Not all bytes touched (#4): cbIdtr=%u off=%u bFiller=%#x abBuf=%.*Rhxs\n",
1416 cbIdtr, off, bFiller, off + cbBuf, abBuf);
1417 if (f286 && abBuf[off + cbIdtr - 1] != 0xff)
1418 Bs3TestFailedF("286: Top base byte isn't 0xff (#4): %#x\n", abBuf[off + cbIdtr - 1]);
1419 g_usBs3TestStep++;
1420
1421 }
1422 pbBuf = abBuf;
1423 CtxUdExpected.rbx.u = Ctx.rbx.u = BS3_FP_OFF(pbBuf);
1424
1425 /*
1426 * Play with the selector limit if the target mode supports limit checking
1427 * We use BS3_SEL_TEST_PAGE_00 for this
1428 */
1429 if ( !BS3_MODE_IS_RM_OR_V86(g_bTestMode)
1430 && !BS3_MODE_IS_64BIT_CODE(g_bTestMode))
1431 {
1432 uint16_t cbLimit;
1433 uint16_t const uSavedDs = Ctx.ds;
1434 uint32_t uFlatBuf = Bs3SelPtrToFlat(pbBuf);
1435 Bs3GdteTestPage00 = Bs3Gdte_DATA16;
1436 Bs3GdteTestPage00.Gen.u16BaseLow = (uint16_t)uFlatBuf;
1437 Bs3GdteTestPage00.Gen.u8BaseHigh1 = (uint8_t)(uFlatBuf >> 16);
1438 Bs3GdteTestPage00.Gen.u8BaseHigh2 = (uint8_t)(uFlatBuf >> 24);
1439
1440 CtxUdExpected.ds = Ctx.ds = BS3_SEL_TEST_PAGE_00;
1441
1442 /* Expand up (normal). */
1443 for (off = 0; off < 8; off++)
1444 {
1445 CtxUdExpected.rbx.u = Ctx.rbx.u = off;
1446 for (cbLimit = 0; cbLimit < cbIdtr*2; cbLimit++)
1447 {
1448 Bs3GdteTestPage00.Gen.u16LimitLow = cbLimit;
1449 Bs3MemSet(abBuf, bFiller, sizeof(abBuf));
1450 Bs3TrapSetJmpAndRestore(&Ctx, &TrapCtx);
1451 if (off + cbIdtr <= cbLimit + 1)
1452 {
1453 bs3CpuBasic2_CompareUdCtx(&TrapCtx, &CtxUdExpected);
1454 if (Bs3MemChr(&abBuf[off], bFiller, cbIdtr) != NULL)
1455 Bs3TestFailedF("Not all bytes touched (#5): cbIdtr=%u off=%u cbLimit=%u bFiller=%#x abBuf=%.*Rhxs\n",
1456 cbIdtr, off, cbLimit, bFiller, off + cbBuf, abBuf);
1457 if (f286 && abBuf[off + cbIdtr - 1] != 0xff)
1458 Bs3TestFailedF("286: Top base byte isn't 0xff (#5): %#x\n", abBuf[off + cbIdtr - 1]);
1459 }
1460 else
1461 {
1462 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &Ctx, 0);
1463 if (off + 2 <= cbLimit + 1)
1464 {
1465 if (Bs3MemChr(&abBuf[off], bFiller, 2) != NULL)
1466 Bs3TestFailedF("Limit bytes not touched (#6): cbIdtr=%u off=%u cbLimit=%u bFiller=%#x abBuf=%.*Rhxs\n",
1467 cbIdtr, off, cbLimit, bFiller, off + cbBuf, abBuf);
1468 if (!ASMMemIsAllU8(&abBuf[off + 2], cbIdtr - 2, bFiller))
1469 Bs3TestFailedF("Base bytes touched on #GP (#6): cbIdtr=%u off=%u cbLimit=%u bFiller=%#x abBuf=%.*Rhxs\n",
1470 cbIdtr, off, cbLimit, bFiller, off + cbBuf, abBuf);
1471 }
1472 else if (!ASMMemIsAllU8(abBuf, sizeof(abBuf), bFiller))
1473 Bs3TestFailedF("Bytes touched on #GP: cbIdtr=%u off=%u cbLimit=%u bFiller=%#x abBuf=%.*Rhxs\n",
1474 cbIdtr, off, cbLimit, bFiller, off + cbBuf, abBuf);
1475 }
1476
1477 if (off > 0 && !ASMMemIsAllU8(abBuf, off, bFiller))
1478 Bs3TestFailedF("Leading bytes touched (#7): cbIdtr=%u off=%u cbLimit=%u bFiller=%#x abBuf=%.*Rhxs\n",
1479 cbIdtr, off, cbLimit, bFiller, off + cbBuf, abBuf);
1480 if (!ASMMemIsAllU8(&abBuf[off + cbIdtr], sizeof(abBuf) - off - cbIdtr, bFiller))
1481 Bs3TestFailedF("Trailing bytes touched (#7): cbIdtr=%u off=%u cbLimit=%u bFiller=%#x abBuf=%.*Rhxs\n",
1482 cbIdtr, off, cbLimit, bFiller, off + cbBuf, abBuf);
1483
1484 g_usBs3TestStep++;
1485 }
1486 }
1487
1488 /* Expand down (weird). Inverted valid area compared to expand up,
1489 so a limit of zero give us a valid range for 0001..0ffffh (instead of
1490 a segment with one valid byte at 0000h). Whereas a limit of 0fffeh
1491 means one valid byte at 0ffffh, and a limit of 0ffffh means none
1492 (because in a normal expand up the 0ffffh means all 64KB are
1493 accessible). */
1494 Bs3GdteTestPage00.Gen.u4Type = X86_SEL_TYPE_RW_DOWN_ACC;
1495 for (off = 0; off < 8; off++)
1496 {
1497 CtxUdExpected.rbx.u = Ctx.rbx.u = off;
1498 for (cbLimit = 0; cbLimit < cbIdtr*2; cbLimit++)
1499 {
1500 Bs3GdteTestPage00.Gen.u16LimitLow = cbLimit;
1501 Bs3MemSet(abBuf, bFiller, sizeof(abBuf));
1502 Bs3TrapSetJmpAndRestore(&Ctx, &TrapCtx);
1503
1504 if (off > cbLimit)
1505 {
1506 bs3CpuBasic2_CompareUdCtx(&TrapCtx, &CtxUdExpected);
1507 if (Bs3MemChr(&abBuf[off], bFiller, cbIdtr) != NULL)
1508 Bs3TestFailedF("Not all bytes touched (#5): cbIdtr=%u off=%u cbLimit=%u bFiller=%#x abBuf=%.*Rhxs\n",
1509 cbIdtr, off, cbLimit, bFiller, off + cbBuf, abBuf);
1510 if (f286 && abBuf[off + cbIdtr - 1] != 0xff)
1511 Bs3TestFailedF("286: Top base byte isn't 0xff (#5): %#x\n", abBuf[off + cbIdtr - 1]);
1512 }
1513 else
1514 {
1515 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &Ctx, 0);
1516 if (!ASMMemIsAllU8(abBuf, sizeof(abBuf), bFiller))
1517 Bs3TestFailedF("Bytes touched on #GP: cbIdtr=%u off=%u cbLimit=%u bFiller=%#x abBuf=%.*Rhxs\n",
1518 cbIdtr, off, cbLimit, bFiller, off + cbBuf, abBuf);
1519 }
1520
1521 if (off > 0 && !ASMMemIsAllU8(abBuf, off, bFiller))
1522 Bs3TestFailedF("Leading bytes touched (#7): cbIdtr=%u off=%u cbLimit=%u bFiller=%#x abBuf=%.*Rhxs\n",
1523 cbIdtr, off, cbLimit, bFiller, off + cbBuf, abBuf);
1524 if (!ASMMemIsAllU8(&abBuf[off + cbIdtr], sizeof(abBuf) - off - cbIdtr, bFiller))
1525 Bs3TestFailedF("Trailing bytes touched (#7): cbIdtr=%u off=%u cbLimit=%u bFiller=%#x abBuf=%.*Rhxs\n",
1526 cbIdtr, off, cbLimit, bFiller, off + cbBuf, abBuf);
1527
1528 g_usBs3TestStep++;
1529 }
1530 }
1531
1532 CtxUdExpected.ds = Ctx.ds = uSavedDs;
1533 CtxUdExpected.rbx.u = Ctx.rbx.u = BS3_FP_OFF(pbBuf);
1534 }
1535
1536 /*
1537 * Play with the paging.
1538 */
1539 if (BS3_MODE_IS_PAGED(g_bTestMode))
1540 {
1541
1542
1543 }
1544
1545}
1546
1547# if ARCH_BITS != 64
1548
1549/**
1550 * Worker for bs3CpuBasic2_TssGateEsp that tests the INT 80 from outer rings.
1551 */
1552# define bs3CpuBasic2_TssGateEsp_AltStackOuterRing BS3_CMN_NM(bs3CpuBasic2_TssGateEsp_AltStackOuterRing)
1553BS3_DECL_NEAR(void) bs3CpuBasic2_TssGateEsp_AltStackOuterRing(PCBS3REGCTX pCtx, uint8_t bRing, uint8_t *pbAltStack,
1554 size_t cbAltStack, bool f16BitStack, bool f16BitTss,
1555 bool f16BitHandler, unsigned uLine)
1556{
1557 uint8_t const cbIretFrame = f16BitHandler ? 5*2 : 5*4;
1558 BS3REGCTX Ctx2;
1559 BS3TRAPFRAME TrapCtx;
1560 uint8_t *pbTmp;
1561 g_usBs3TestStep = uLine;
1562
1563 Bs3MemCpy(&Ctx2, pCtx, sizeof(Ctx2));
1564 Bs3RegCtxConvertToRingX(&Ctx2, bRing);
1565
1566 if (pbAltStack)
1567 {
1568 Ctx2.rsp.u = Bs3SelPtrToFlat(pbAltStack + 0x1980);
1569 Bs3MemZero(pbAltStack, cbAltStack);
1570 }
1571
1572 Bs3TrapSetJmpAndRestore(&Ctx2, &TrapCtx);
1573
1574 if (!f16BitStack && f16BitTss)
1575 Ctx2.rsp.u &= UINT16_MAX;
1576
1577 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx2, 0x80 /*bXcpt*/);
1578 CHECK_MEMBER("bCpl", "%u", TrapCtx.Ctx.bCpl, bRing);
1579 CHECK_MEMBER("cbIretFrame", "%#x", TrapCtx.cbIretFrame, cbIretFrame);
1580
1581 if (pbAltStack)
1582 {
1583 uint64_t uExpectedRsp = (f16BitTss ? Bs3Tss16.sp0 : Bs3Tss32.esp0) - cbIretFrame;
1584 if (f16BitStack)
1585 {
1586 uExpectedRsp &= UINT16_MAX;
1587 uExpectedRsp |= Ctx2.rsp.u & ~(uint64_t)UINT16_MAX;
1588 }
1589 if ( TrapCtx.uHandlerRsp != uExpectedRsp
1590 || TrapCtx.uHandlerSs != (f16BitTss ? Bs3Tss16.ss0 : Bs3Tss32.ss0))
1591 bs3CpuBasic2_FailedF("handler SS:ESP=%04x:%08RX64, expected %04x:%08RX16",
1592 TrapCtx.uHandlerSs, TrapCtx.uHandlerRsp, Bs3Tss16.ss0, uExpectedRsp);
1593
1594 pbTmp = (uint8_t *)ASMMemFirstNonZero(pbAltStack, cbAltStack);
1595 if ((f16BitStack || TrapCtx.uHandlerRsp <= UINT16_MAX) && pbTmp != NULL)
1596 bs3CpuBasic2_FailedF("someone touched the alt stack (%p) with SS:ESP=%04x:%#RX32: %p=%02x",
1597 pbAltStack, Ctx2.ss, Ctx2.rsp.u32, pbTmp, *pbTmp);
1598 else if (!f16BitStack && TrapCtx.uHandlerRsp > UINT16_MAX && pbTmp == NULL)
1599 bs3CpuBasic2_FailedF("the alt stack (%p) was not used SS:ESP=%04x:%#RX32\n", pbAltStack, Ctx2.ss, Ctx2.rsp.u32);
1600 }
1601}
1602
1603# define bs3CpuBasic2_TssGateEspCommon BS3_CMN_NM(bs3CpuBasic2_TssGateEspCommon)
1604BS3_DECL_NEAR(void) bs3CpuBasic2_TssGateEspCommon(bool const g_f16BitSys, PX86DESC const paIdt, unsigned const cIdteShift)
1605{
1606 BS3TRAPFRAME TrapCtx;
1607 BS3REGCTX Ctx;
1608 BS3REGCTX Ctx2;
1609# if TMPL_BITS == 16
1610 uint8_t *pbTmp;
1611# endif
1612
1613 /* make sure they're allocated */
1614 Bs3MemZero(&Ctx, sizeof(Ctx));
1615 Bs3MemZero(&Ctx2, sizeof(Ctx2));
1616 Bs3MemZero(&TrapCtx, sizeof(TrapCtx));
1617
1618 Bs3RegCtxSave(&Ctx);
1619 Ctx.rsp.u -= 0x80;
1620 Ctx.rip.u = (uintptr_t)BS3_FP_OFF(&bs3CpuBasic2_Int80);
1621# if TMPL_BITS == 32
1622 g_uBs3TrapEipHint = Ctx.rip.u32;
1623# endif
1624
1625 /*
1626 * We'll be using IDT entry 80 and 81 here. The first one will be
1627 * accessible from all DPLs, the latter not. So, start with setting
1628 * the DPLs.
1629 */
1630 paIdt[0x80 << cIdteShift].Gate.u2Dpl = 3;
1631 paIdt[0x81 << cIdteShift].Gate.u2Dpl = 0;
1632
1633 /*
1634 * Check that the basic stuff works first.
1635 */
1636 Bs3TrapSetJmpAndRestore(&Ctx, &TrapCtx);
1637 g_usBs3TestStep = __LINE__;
1638 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx, 0x80 /*bXcpt*/);
1639
1640 bs3CpuBasic2_TssGateEsp_AltStackOuterRing(&Ctx, 1, NULL, 0, g_f16BitSys, g_f16BitSys, g_f16BitSys, __LINE__);
1641 bs3CpuBasic2_TssGateEsp_AltStackOuterRing(&Ctx, 2, NULL, 0, g_f16BitSys, g_f16BitSys, g_f16BitSys, __LINE__);
1642 bs3CpuBasic2_TssGateEsp_AltStackOuterRing(&Ctx, 3, NULL, 0, g_f16BitSys, g_f16BitSys, g_f16BitSys, __LINE__);
1643
1644 /*
1645 * Check that the upper part of ESP is preserved when doing .
1646 */
1647 if ((g_uBs3CpuDetected & BS3CPU_TYPE_MASK) >= BS3CPU_80386)
1648 {
1649 size_t const cbAltStack = _8K;
1650 uint8_t *pbAltStack = Bs3MemAllocZ(BS3MEMKIND_TILED, cbAltStack);
1651 if (pbAltStack)
1652 {
1653 /* same ring */
1654 g_usBs3TestStep = __LINE__;
1655 Bs3MemCpy(&Ctx2, &Ctx, sizeof(Ctx2));
1656 Ctx2.rsp.u = Bs3SelPtrToFlat(pbAltStack + 0x1980);
1657 if (Bs3TrapSetJmp(&TrapCtx))
1658 Bs3RegCtxRestore(&Ctx2, 0); /* (does not return) */
1659 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx2, 0x80 /*bXcpt*/);
1660# if TMPL_BITS == 16
1661 if ((pbTmp = (uint8_t *)ASMMemFirstNonZero(pbAltStack, cbAltStack)) != NULL)
1662 bs3CpuBasic2_FailedF("someone touched the alt stack (%p) with SS:ESP=%04x:%#RX32: %p=%02x\n",
1663 pbAltStack, Ctx2.ss, Ctx2.rsp.u32, pbTmp, *pbTmp);
1664# else
1665 if (ASMMemIsZero(pbAltStack, cbAltStack))
1666 bs3CpuBasic2_FailedF("alt stack wasn't used despite SS:ESP=%04x:%#RX32\n", Ctx2.ss, Ctx2.rsp.u32);
1667# endif
1668
1669 /* Different rings (load SS0:SP0 from TSS). */
1670 bs3CpuBasic2_TssGateEsp_AltStackOuterRing(&Ctx, 1, pbAltStack, cbAltStack,
1671 g_f16BitSys, g_f16BitSys, g_f16BitSys, __LINE__);
1672 bs3CpuBasic2_TssGateEsp_AltStackOuterRing(&Ctx, 2, pbAltStack, cbAltStack,
1673 g_f16BitSys, g_f16BitSys, g_f16BitSys, __LINE__);
1674 bs3CpuBasic2_TssGateEsp_AltStackOuterRing(&Ctx, 3, pbAltStack, cbAltStack,
1675 g_f16BitSys, g_f16BitSys, g_f16BitSys, __LINE__);
1676
1677 /* Different rings but switch the SS bitness in the TSS. */
1678 if (g_f16BitSys)
1679 {
1680 Bs3Tss16.ss0 = BS3_SEL_R0_SS32;
1681 bs3CpuBasic2_TssGateEsp_AltStackOuterRing(&Ctx, 1, pbAltStack, cbAltStack,
1682 false, g_f16BitSys, g_f16BitSys, __LINE__);
1683 Bs3Tss16.ss0 = BS3_SEL_R0_SS16;
1684 }
1685 else
1686 {
1687 Bs3Tss32.ss0 = BS3_SEL_R0_SS16;
1688 bs3CpuBasic2_TssGateEsp_AltStackOuterRing(&Ctx, 1, pbAltStack, cbAltStack,
1689 true, g_f16BitSys, g_f16BitSys, __LINE__);
1690 Bs3Tss32.ss0 = BS3_SEL_R0_SS32;
1691 }
1692
1693 Bs3MemFree(pbAltStack, cbAltStack);
1694 }
1695 else
1696 Bs3TestPrintf("%s: Skipping ESP check, alloc failed\n", g_pszTestMode);
1697 }
1698 else
1699 Bs3TestPrintf("%s: Skipping ESP check, CPU too old\n", g_pszTestMode);
1700}
1701
1702# endif /* ARCH_BITS != 64 */
1703#endif /* BS3_INSTANTIATING_CMN */
1704
1705
1706/*
1707 * Mode specific code.
1708 * Mode specific code.
1709 * Mode specific code.
1710 */
1711#ifdef BS3_INSTANTIATING_MODE
1712
1713BS3_DECL_FAR(uint8_t) TMPL_NM(bs3CpuBasic2_TssGateEsp)(uint8_t bMode)
1714{
1715 uint8_t bRet = 0;
1716
1717 g_pszTestMode = TMPL_NM(g_szBs3ModeName);
1718 g_bTestMode = bMode;
1719 g_f16BitSys = BS3_MODE_IS_16BIT_SYS(TMPL_MODE);
1720
1721# if TMPL_MODE == BS3_MODE_PE16 \
1722 || TMPL_MODE == BS3_MODE_PE16_32 \
1723 || TMPL_MODE == BS3_MODE_PP16 \
1724 || TMPL_MODE == BS3_MODE_PP16_32 \
1725 || TMPL_MODE == BS3_MODE_PAE16 \
1726 || TMPL_MODE == BS3_MODE_PAE16_32 \
1727 || TMPL_MODE == BS3_MODE_PE32
1728 bs3CpuBasic2_TssGateEspCommon(BS3_MODE_IS_16BIT_SYS(TMPL_MODE),
1729 (PX86DESC)MyBs3Idt,
1730 BS3_MODE_IS_64BIT_SYS(TMPL_MODE) ? 1 : 0);
1731# else
1732 bRet = BS3TESTDOMODE_SKIPPED;
1733# endif
1734
1735 /*
1736 * Re-initialize the IDT.
1737 */
1738 Bs3TrapInit();
1739 return bRet;
1740}
1741
1742
1743BS3_DECL_FAR(uint8_t) TMPL_NM(bs3CpuBasic2_RaiseXcpt1)(uint8_t bMode)
1744{
1745 g_pszTestMode = TMPL_NM(g_szBs3ModeName);
1746 g_bTestMode = bMode;
1747 g_f16BitSys = BS3_MODE_IS_16BIT_SYS(TMPL_MODE);
1748
1749# if !BS3_MODE_IS_RM_OR_V86(TMPL_MODE)
1750
1751 /*
1752 * Pass to common worker which is only compiled once per mode.
1753 */
1754 bs3CpuBasic2_RaiseXcpt1Common(MY_SYS_SEL_R0_CS,
1755 MY_SYS_SEL_R0_CS_CNF,
1756 MY_SYS_SEL_R0_SS,
1757 (PX86DESC)MyBs3Idt,
1758 BS3_MODE_IS_64BIT_SYS(TMPL_MODE) ? 1 : 0);
1759
1760 /*
1761 * Re-initialize the IDT.
1762 */
1763 Bs3TrapInit();
1764 return 0;
1765# elif TMPL_MODE == BS3_MODE_RM
1766
1767 /*
1768 * Check
1769 */
1770 /** @todo check */
1771 return BS3TESTDOMODE_SKIPPED;
1772
1773# else
1774 return BS3TESTDOMODE_SKIPPED;
1775# endif
1776}
1777
1778
1779BS3_DECL_FAR(uint8_t) TMPL_NM(bs3CpuBasic2_iret)(uint8_t bMode)
1780{
1781 g_pszTestMode = TMPL_NM(g_szBs3ModeName);
1782 g_bTestMode = bMode;
1783 g_f16BitSys = BS3_MODE_IS_16BIT_SYS(TMPL_MODE);
1784
1785 Bs3PrintStrN(RT_STR_TUPLE("Hello world!\n"));
1786# if !BS3_MODE_IS_V86(TMPL_MODE)
1787 Bs3TestPrintf(RT_STR_TUPLE("Hi there!\n"));
1788# endif
1789 return BS3TESTDOMODE_SKIPPED;
1790}
1791
1792
1793BS3_DECL_FAR(uint8_t) TMPL_NM(bs3CpuBasic2_sidt)(uint8_t bMode)
1794{
1795//if (bMode == BS3_MODE_PE16_V86)
1796{
1797 g_pszTestMode = TMPL_NM(g_szBs3ModeName);
1798 g_bTestMode = bMode;
1799 g_f16BitSys = BS3_MODE_IS_16BIT_SYS(TMPL_MODE);
1800
1801 BS3_ASSERT(bMode == TMPL_MODE);
1802
1803 /*
1804 * Pass to common worker which is only compiled once per mode.
1805 */
1806 bs3CpuBasic2_sidt_Common();
1807
1808 /*
1809 * Re-initialize the IDT.
1810 */
1811 Bs3TrapInit();
1812}
1813
1814 return 0;
1815}
1816
1817#endif /* BS3_INSTANTIATING_MODE */
1818
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette