2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2008-05-16 00:10:00 +04:00
|
|
|
// $Id: exception.cc,v 1.116 2008-05-15 20:10:00 sshwarts Exp $
|
2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2001-04-10 06:20:02 +04:00
|
|
|
// Copyright (C) 2001 MandrakeSoft S.A.
|
2001-04-10 05:04:59 +04:00
|
|
|
//
|
|
|
|
// MandrakeSoft S.A.
|
|
|
|
// 43, rue d'Aboukir
|
|
|
|
// 75002 Paris - France
|
|
|
|
// http://www.linux-mandrake.com/
|
|
|
|
// http://www.mandrakesoft.com/
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2008-01-29 20:13:10 +03:00
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2001-05-24 22:46:34 +04:00
|
|
|
#define NEED_CPU_REG_SHORTCUTS 1
|
2001-04-10 05:04:59 +04:00
|
|
|
#include "bochs.h"
|
2006-03-07 01:03:16 +03:00
|
|
|
#include "cpu.h"
|
merge in BRANCH-io-cleanup.
To see the commit logs for this use either cvsweb or
cvs update -r BRANCH-io-cleanup and then 'cvs log' the various files.
In general this provides a generic interface for logging.
logfunctions:: is a class that is inherited by some classes, and also
. allocated as a standalone global called 'genlog'. All logging uses
. one of the ::info(), ::error(), ::ldebug(), ::panic() methods of this
. class through 'BX_INFO(), BX_ERROR(), BX_DEBUG(), BX_PANIC()' macros
. respectively.
.
. An example usage:
. BX_INFO(("Hello, World!\n"));
iofunctions:: is a class that is allocated once by default, and assigned
as the iofunction of each logfunctions instance. It is this class that
maintains the file descriptor and other output related code, at this
point using vfprintf(). At some future point, someone may choose to
write a gui 'console' for bochs to which messages would be redirected
simply by assigning a different iofunction class to the various logfunctions
objects.
More cleanup is coming, but this works for now. If you want to see alot
of debugging output, in main.cc, change onoff[LOGLEV_DEBUG]=0 to =1.
Comments, bugs, flames, to me: todd@fries.net
2001-05-15 18:49:57 +04:00
|
|
|
#define LOG_THIS BX_CPU_THIS_PTR
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2006-03-07 01:03:16 +03:00
|
|
|
#include "iodev/iodev.h"
|
|
|
|
|
2005-12-12 22:54:48 +03:00
|
|
|
#if BX_SUPPORT_X86_64==0
|
|
|
|
// Make life easier merging cpu64 & cpu code.
|
|
|
|
#define RIP EIP
|
|
|
|
#define RSP ESP
|
|
|
|
#endif
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/* Exception classes. These are used as indexes into the 'is_exception_OK'
|
|
|
|
* array below, and are stored in the 'exception' array also
|
|
|
|
*/
|
|
|
|
#define BX_ET_BENIGN 0
|
|
|
|
#define BX_ET_CONTRIBUTORY 1
|
|
|
|
#define BX_ET_PAGE_FAULT 2
|
|
|
|
|
|
|
|
#define BX_ET_DOUBLE_FAULT 10
|
|
|
|
|
2004-09-15 00:19:54 +04:00
|
|
|
static const bx_bool is_exception_OK[3][3] = {
|
2001-04-10 05:04:59 +04:00
|
|
|
{ 1, 1, 1 }, /* 1st exception is BENIGN */
|
|
|
|
{ 1, 0, 1 }, /* 1st exception is CONTRIBUTORY */
|
|
|
|
{ 1, 0, 0 } /* 1st exception is PAGE_FAULT */
|
2004-09-15 00:19:54 +04:00
|
|
|
};
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2006-02-11 12:08:02 +03:00
|
|
|
#define BX_EXCEPTION_CLASS_TRAP 0
|
|
|
|
#define BX_EXCEPTION_CLASS_FAULT 1
|
|
|
|
#define BX_EXCEPTION_CLASS_ABORT 2
|
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
#if BX_SUPPORT_X86_64
|
|
|
|
void BX_CPU_C::long_mode_int(Bit8u vector, bx_bool is_INT, bx_bool is_error_code, Bit16u error_code)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2005-04-12 22:08:10 +04:00
|
|
|
// long mode interrupt
|
2008-05-05 01:25:16 +04:00
|
|
|
Bit64u tmp1, tmp2;
|
2005-04-12 22:08:10 +04:00
|
|
|
|
|
|
|
bx_descriptor_t gate_descriptor, cs_descriptor;
|
|
|
|
bx_selector_t cs_selector;
|
|
|
|
|
|
|
|
// interrupt vector must be within IDT table limits,
|
|
|
|
// else #GP(vector number*16 + 2 + EXT)
|
2008-04-08 21:58:56 +04:00
|
|
|
if ((vector*16 + 15) > BX_CPU_THIS_PTR idtr.limit) {
|
2008-05-05 01:25:16 +04:00
|
|
|
BX_ERROR(("interrupt(long mode): vector must be within IDT table limits, IDT.limit = 0x%x", BX_CPU_THIS_PTR idtr.limit));
|
2005-04-12 22:08:10 +04:00
|
|
|
exception(BX_GP_EXCEPTION, vector*16 + 2, 0);
|
|
|
|
}
|
|
|
|
|
2008-05-05 01:25:16 +04:00
|
|
|
access_read_linear(BX_CPU_THIS_PTR idtr.base + vector*16, 8, 0, BX_READ, &tmp1);
|
|
|
|
access_read_linear(BX_CPU_THIS_PTR idtr.base + vector*16 + 8, 8, 0, BX_READ, &tmp2);
|
|
|
|
|
|
|
|
if (tmp2 & BX_CONST64(0x00001F0000000000)) {
|
|
|
|
BX_ERROR(("interrupt(long mode): IDT entry extended attributes DWORD4 TYPE != 0"));
|
|
|
|
exception(BX_GP_EXCEPTION, vector*16 + 2, 0);
|
|
|
|
}
|
2005-04-12 22:08:10 +04:00
|
|
|
|
2008-05-05 01:25:16 +04:00
|
|
|
Bit32u dword1 = GET32L(tmp1);
|
|
|
|
Bit32u dword2 = GET32H(tmp1);
|
|
|
|
Bit32u dword3 = GET32L(tmp2);
|
2005-04-12 22:08:10 +04:00
|
|
|
|
|
|
|
parse_descriptor(dword1, dword2, &gate_descriptor);
|
|
|
|
|
|
|
|
if ((gate_descriptor.valid==0) || gate_descriptor.segment)
|
|
|
|
{
|
|
|
|
BX_ERROR(("interrupt(long mode): gate descriptor is not valid sys seg"));
|
2005-08-03 00:20:22 +04:00
|
|
|
exception(BX_GP_EXCEPTION, vector*16 + 2, 0);
|
2005-04-12 22:08:10 +04:00
|
|
|
}
|
|
|
|
|
2008-05-05 01:25:16 +04:00
|
|
|
// descriptor AR byte must indicate interrupt gate, trap gate,
|
|
|
|
// or task gate, else #GP(vector*16 + 2 + EXT)
|
2008-02-03 00:46:54 +03:00
|
|
|
if (gate_descriptor.type != BX_386_INTERRUPT_GATE &&
|
2005-08-03 00:20:22 +04:00
|
|
|
gate_descriptor.type != BX_386_TRAP_GATE)
|
|
|
|
{
|
2005-08-04 01:10:42 +04:00
|
|
|
BX_ERROR(("interrupt(long mode): unsupported gate type %u",
|
2005-04-12 22:08:10 +04:00
|
|
|
(unsigned) gate_descriptor.type));
|
2005-08-04 01:10:42 +04:00
|
|
|
exception(BX_GP_EXCEPTION, vector*16 + 2, 0);
|
2005-04-12 22:08:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// if software interrupt, then gate descripor DPL must be >= CPL,
|
2007-02-03 20:56:35 +03:00
|
|
|
// else #GP(vector * 16 + 2 + EXT)
|
2005-04-12 22:08:10 +04:00
|
|
|
if (is_INT && (gate_descriptor.dpl < CPL))
|
|
|
|
{
|
|
|
|
BX_ERROR(("interrupt(long mode): is_INT && (dpl < CPL)"));
|
2005-08-03 00:20:22 +04:00
|
|
|
exception(BX_GP_EXCEPTION, vector*16 + 2, 0);
|
2002-03-12 21:59:31 +03:00
|
|
|
}
|
2005-04-12 22:08:10 +04:00
|
|
|
|
2007-02-03 20:56:35 +03:00
|
|
|
// Gate must be present, else #NP(vector * 16 + 2 + EXT)
|
2005-07-11 00:32:32 +04:00
|
|
|
if (! IS_PRESENT(gate_descriptor)) {
|
2005-04-12 22:08:10 +04:00
|
|
|
BX_ERROR(("interrupt(long mode): p == 0"));
|
2005-08-03 00:20:22 +04:00
|
|
|
exception(BX_NP_EXCEPTION, vector*16 + 2, 0);
|
2001-05-23 12:16:07 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-11-06 22:17:42 +03:00
|
|
|
Bit16u gate_dest_selector = gate_descriptor.u.gate.dest_selector;
|
|
|
|
Bit64u gate_dest_offset = ((Bit64u)dword3 << 32) |
|
|
|
|
gate_descriptor.u.gate.dest_offset;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-11-06 22:17:42 +03:00
|
|
|
unsigned ist = gate_descriptor.u.gate.param_count & 0x7;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
// examine CS selector and descriptor given in gate descriptor
|
|
|
|
// selector must be non-null else #GP(EXT)
|
2006-06-12 20:58:27 +04:00
|
|
|
if ((gate_dest_selector & 0xfffc) == 0) {
|
2005-08-03 00:20:22 +04:00
|
|
|
BX_ERROR(("int_trap_gate(long mode): selector null"));
|
2005-04-12 22:08:10 +04:00
|
|
|
exception(BX_GP_EXCEPTION, 0, 0);
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
parse_selector(gate_dest_selector, &cs_selector);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
// selector must be within its descriptor table limits
|
|
|
|
// else #GP(selector+EXT)
|
2005-08-04 01:10:42 +04:00
|
|
|
fetch_raw_descriptor(&cs_selector, &dword1, &dword2, BX_GP_EXCEPTION);
|
2005-04-12 22:08:10 +04:00
|
|
|
parse_descriptor(dword1, dword2, &cs_descriptor);
|
|
|
|
|
|
|
|
// descriptor AR byte must indicate code seg
|
|
|
|
// and code segment descriptor DPL<=CPL, else #GP(selector+EXT)
|
2008-02-03 00:46:54 +03:00
|
|
|
if (cs_descriptor.valid==0 || cs_descriptor.segment==0 ||
|
2006-06-17 16:09:55 +04:00
|
|
|
IS_DATA_SEGMENT(cs_descriptor.type) ||
|
|
|
|
cs_descriptor.dpl>CPL)
|
2005-04-12 22:08:10 +04:00
|
|
|
{
|
2007-09-27 20:22:14 +04:00
|
|
|
BX_ERROR(("interrupt(long mode): not accessable or not code segment"));
|
2005-04-12 22:08:10 +04:00
|
|
|
exception(BX_GP_EXCEPTION, cs_selector.value & 0xfffc, 0);
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
// check that it's a 64 bit segment
|
2005-08-04 01:10:42 +04:00
|
|
|
if (! IS_LONG64_SEGMENT(cs_descriptor) || cs_descriptor.u.segment.d_b)
|
2005-02-02 00:17:57 +03:00
|
|
|
{
|
2005-04-12 22:08:10 +04:00
|
|
|
BX_ERROR(("interrupt(long mode): must be 64 bit segment"));
|
2008-05-05 01:25:16 +04:00
|
|
|
exception(BX_GP_EXCEPTION, cs_selector.value & 0xfffc, 0);
|
2005-04-12 22:08:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// segment must be present, else #NP(selector + EXT)
|
2005-07-11 00:32:32 +04:00
|
|
|
if (! IS_PRESENT(cs_descriptor)) {
|
2005-04-12 22:08:10 +04:00
|
|
|
BX_ERROR(("interrupt(long mode): segment not present"));
|
|
|
|
exception(BX_NP_EXCEPTION, cs_selector.value & 0xfffc, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// if code segment is non-conforming and DPL < CPL then
|
|
|
|
// INTERRUPT TO INNER PRIVILEGE:
|
2008-04-12 01:40:36 +04:00
|
|
|
if (IS_CODE_SEGMENT_NON_CONFORMING(cs_descriptor.type) && cs_descriptor.dpl<CPL)
|
2005-04-12 22:08:10 +04:00
|
|
|
{
|
|
|
|
Bit64u RSP_for_cpl_x;
|
|
|
|
|
|
|
|
BX_DEBUG(("interrupt(long mode): INTERRUPT TO INNER PRIVILEGE"));
|
|
|
|
|
|
|
|
// check selector and descriptor for new stack in current TSS
|
2006-06-17 16:09:55 +04:00
|
|
|
if (ist != 0) {
|
2008-04-22 01:29:43 +04:00
|
|
|
BX_DEBUG(("interrupt(long mode): trap to IST, vector = %d", ist));
|
2005-04-12 22:08:10 +04:00
|
|
|
get_RSP_from_TSS(ist+3, &RSP_for_cpl_x);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
get_RSP_from_TSS(cs_descriptor.dpl, &RSP_for_cpl_x);
|
2005-02-02 00:17:57 +03:00
|
|
|
}
|
|
|
|
|
2005-08-04 23:31:59 +04:00
|
|
|
RSP_for_cpl_x &= BX_CONST64(0xfffffffffffffff0);
|
|
|
|
|
2007-10-19 14:59:39 +04:00
|
|
|
Bit64u old_CS = BX_CPU_THIS_PTR sregs[BX_SEG_REG_CS].selector.value;
|
2005-08-04 01:10:42 +04:00
|
|
|
Bit64u old_RIP = RIP;
|
2007-10-19 14:59:39 +04:00
|
|
|
Bit64u old_SS = BX_CPU_THIS_PTR sregs[BX_SEG_REG_SS].selector.value;
|
2005-04-12 22:08:10 +04:00
|
|
|
Bit64u old_RSP = RSP;
|
2002-09-14 21:29:47 +04:00
|
|
|
|
2008-04-12 01:40:36 +04:00
|
|
|
if (! IsCanonical(RSP_for_cpl_x)) {
|
|
|
|
// #SS(selector) when changing priviledge level
|
|
|
|
BX_ERROR(("interrupt(long mode): canonical address failure %08x%08x",
|
|
|
|
GET32H(RSP_for_cpl_x), GET32L(RSP_for_cpl_x)));
|
2008-04-17 02:08:46 +04:00
|
|
|
exception(BX_SS_EXCEPTION, old_SS & 0xfffc, 0);
|
2008-04-12 01:40:36 +04:00
|
|
|
}
|
|
|
|
|
2007-10-19 14:59:39 +04:00
|
|
|
// push old stack long pointer onto new stack
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_qword_64(RSP_for_cpl_x - 8, cs_descriptor.dpl, old_SS);
|
|
|
|
write_new_stack_qword_64(RSP_for_cpl_x - 16, cs_descriptor.dpl, old_RSP);
|
|
|
|
write_new_stack_qword_64(RSP_for_cpl_x - 24, cs_descriptor.dpl, read_eflags());
|
2007-10-19 14:59:39 +04:00
|
|
|
// push long pointer to return address onto new stack
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_qword_64(RSP_for_cpl_x - 32, cs_descriptor.dpl, old_CS);
|
|
|
|
write_new_stack_qword_64(RSP_for_cpl_x - 40, cs_descriptor.dpl, old_RIP);
|
2007-10-19 14:59:39 +04:00
|
|
|
RSP_for_cpl_x -= 40;
|
|
|
|
|
|
|
|
if (is_error_code) {
|
|
|
|
RSP_for_cpl_x -= 8;
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_qword_64(RSP_for_cpl_x, cs_descriptor.dpl, error_code);
|
2007-10-19 14:59:39 +04:00
|
|
|
}
|
|
|
|
|
2005-08-04 01:10:42 +04:00
|
|
|
bx_selector_t ss_selector;
|
|
|
|
bx_descriptor_t ss_descriptor;
|
2002-09-14 21:29:47 +04:00
|
|
|
|
2005-08-04 01:10:42 +04:00
|
|
|
// set up a null descriptor
|
|
|
|
parse_selector(0, &ss_selector);
|
|
|
|
parse_descriptor(0, 0, &ss_descriptor);
|
2005-04-12 22:08:10 +04:00
|
|
|
|
2005-08-04 01:10:42 +04:00
|
|
|
// load CS:RIP (guaranteed to be in 64 bit mode)
|
|
|
|
branch_far64(&cs_selector, &cs_descriptor, gate_dest_offset, cs_descriptor.dpl);
|
2005-04-12 22:08:10 +04:00
|
|
|
|
2005-08-04 01:10:42 +04:00
|
|
|
// set up null SS descriptor
|
|
|
|
load_ss(&ss_selector, &ss_descriptor, cs_descriptor.dpl);
|
|
|
|
RSP = RSP_for_cpl_x;
|
2005-04-12 22:08:10 +04:00
|
|
|
|
|
|
|
// if INTERRUPT GATE set IF to 0
|
2006-06-12 20:58:27 +04:00
|
|
|
if (!(gate_descriptor.type & 1)) // even is int-gate
|
|
|
|
BX_CPU_THIS_PTR clear_IF();
|
|
|
|
BX_CPU_THIS_PTR clear_TF();
|
|
|
|
BX_CPU_THIS_PTR clear_VM();
|
|
|
|
BX_CPU_THIS_PTR clear_RF();
|
|
|
|
BX_CPU_THIS_PTR clear_NT();
|
2005-04-12 22:08:10 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if code segment is conforming OR code segment DPL = CPL then
|
|
|
|
// INTERRUPT TO SAME PRIVILEGE LEVEL:
|
2006-06-12 20:58:27 +04:00
|
|
|
if (IS_CODE_SEGMENT_CONFORMING(cs_descriptor.type) || cs_descriptor.dpl==CPL)
|
2005-04-12 22:08:10 +04:00
|
|
|
{
|
|
|
|
BX_DEBUG(("interrupt(long mode): INTERRUPT TO SAME PRIVILEGE"));
|
|
|
|
|
|
|
|
Bit64u old_RSP = RSP;
|
|
|
|
|
|
|
|
// check selector and descriptor for new stack in current TSS
|
|
|
|
if (ist > 0) {
|
|
|
|
BX_DEBUG(("interrupt(long mode): trap to IST, vector = %d\n",ist));
|
|
|
|
get_RSP_from_TSS(ist+3, &RSP);
|
2005-02-02 00:17:57 +03:00
|
|
|
}
|
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
// align stack
|
2005-08-04 23:31:59 +04:00
|
|
|
RSP &= BX_CONST64(0xfffffffffffffff0);
|
2005-04-12 22:08:10 +04:00
|
|
|
|
|
|
|
// push flags onto stack
|
|
|
|
// push current CS selector onto stack
|
|
|
|
// push return offset onto stack
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_qword_64(RSP - 8, cs_descriptor.dpl,
|
2008-03-24 00:24:05 +03:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_SS].selector.value);
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_qword_64(RSP - 16, cs_descriptor.dpl, old_RSP);
|
|
|
|
write_new_stack_qword_64(RSP - 24, cs_descriptor.dpl, read_eflags());
|
|
|
|
write_new_stack_qword_64(RSP - 32, cs_descriptor.dpl,
|
2008-03-24 00:24:05 +03:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_CS].selector.value);
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_qword_64(RSP - 40, cs_descriptor.dpl, RIP);
|
2008-03-24 00:24:05 +03:00
|
|
|
RSP -= 40;
|
|
|
|
|
|
|
|
if (is_error_code) {
|
|
|
|
RSP -= 8;
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_qword_64(RSP, cs_descriptor.dpl, error_code);
|
2008-03-24 00:24:05 +03:00
|
|
|
}
|
2005-04-12 22:08:10 +04:00
|
|
|
|
|
|
|
// set the RPL field of CS to CPL
|
2005-08-04 01:10:42 +04:00
|
|
|
branch_far64(&cs_selector, &cs_descriptor, gate_dest_offset, CPL);
|
2005-04-12 22:08:10 +04:00
|
|
|
|
|
|
|
// if interrupt gate then set IF to 0
|
2006-06-12 20:58:27 +04:00
|
|
|
if (!(gate_descriptor.type & 1)) // even is int-gate
|
|
|
|
BX_CPU_THIS_PTR clear_IF();
|
|
|
|
BX_CPU_THIS_PTR clear_TF();
|
|
|
|
BX_CPU_THIS_PTR clear_VM();
|
|
|
|
BX_CPU_THIS_PTR clear_RF();
|
|
|
|
BX_CPU_THIS_PTR clear_NT();
|
2005-04-12 22:08:10 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// else #GP(CS selector + ext)
|
2007-10-19 14:14:33 +04:00
|
|
|
BX_ERROR(("interrupt(long mode): bad descriptor type=%u, descriptor.dpl=%u, CPL=%u",
|
2006-06-12 20:58:27 +04:00
|
|
|
(unsigned) cs_descriptor.type, (unsigned) cs_descriptor.dpl, (unsigned) CPL));
|
2005-04-12 22:08:10 +04:00
|
|
|
BX_ERROR(("cs.segment = %u", (unsigned) cs_descriptor.segment));
|
|
|
|
exception(BX_GP_EXCEPTION, cs_selector.value & 0xfffc, 0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void BX_CPU_C::protected_mode_int(Bit8u vector, bx_bool is_INT, bx_bool is_error_code, Bit16u error_code)
|
|
|
|
{
|
|
|
|
// protected mode interrupt
|
2008-03-25 01:13:04 +03:00
|
|
|
Bit32u dword1, dword2;
|
2005-04-12 22:08:10 +04:00
|
|
|
bx_descriptor_t gate_descriptor, cs_descriptor;
|
|
|
|
bx_selector_t cs_selector;
|
|
|
|
|
|
|
|
Bit16u raw_tss_selector;
|
|
|
|
bx_selector_t tss_selector;
|
|
|
|
bx_descriptor_t tss_descriptor;
|
|
|
|
|
|
|
|
Bit16u gate_dest_selector;
|
|
|
|
Bit32u gate_dest_offset;
|
|
|
|
|
|
|
|
// interrupt vector must be within IDT table limits,
|
|
|
|
// else #GP(vector number*8 + 2 + EXT)
|
2008-02-16 01:05:43 +03:00
|
|
|
if ((vector*8 + 7) > BX_CPU_THIS_PTR idtr.limit) {
|
2008-05-05 01:25:16 +04:00
|
|
|
BX_DEBUG(("interrupt(): vector must be within IDT table limits, IDT.limit = 0x%x", BX_CPU_THIS_PTR idtr.limit));
|
2005-04-12 22:08:10 +04:00
|
|
|
exception(BX_GP_EXCEPTION, vector*8 + 2, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// descriptor AR byte must indicate interrupt gate, trap gate,
|
|
|
|
// or task gate, else #GP(vector*8 + 2 + EXT)
|
2008-03-29 21:18:08 +03:00
|
|
|
access_read_linear(BX_CPU_THIS_PTR idtr.base + vector*8, 4, 0,
|
2005-04-12 22:08:10 +04:00
|
|
|
BX_READ, &dword1);
|
2008-03-29 21:18:08 +03:00
|
|
|
access_read_linear(BX_CPU_THIS_PTR idtr.base + vector*8 + 4, 4, 0,
|
2005-04-12 22:08:10 +04:00
|
|
|
BX_READ, &dword2);
|
|
|
|
|
|
|
|
parse_descriptor(dword1, dword2, &gate_descriptor);
|
|
|
|
|
|
|
|
if ((gate_descriptor.valid==0) || gate_descriptor.segment) {
|
2006-10-20 19:38:39 +04:00
|
|
|
BX_DEBUG(("interrupt(): gate descriptor is not valid sys seg (vector=0x%02x)", vector));
|
2005-04-12 22:08:10 +04:00
|
|
|
exception(BX_GP_EXCEPTION, vector*8 + 2, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (gate_descriptor.type) {
|
|
|
|
case BX_TASK_GATE:
|
|
|
|
case BX_286_INTERRUPT_GATE:
|
|
|
|
case BX_286_TRAP_GATE:
|
|
|
|
case BX_386_INTERRUPT_GATE:
|
|
|
|
case BX_386_TRAP_GATE:
|
|
|
|
break;
|
|
|
|
default:
|
2006-06-10 02:29:07 +04:00
|
|
|
BX_ERROR(("interrupt(): gate.type(%u) != {5,6,7,14,15}",
|
2005-04-12 22:08:10 +04:00
|
|
|
(unsigned) gate_descriptor.type));
|
|
|
|
exception(BX_GP_EXCEPTION, vector*8 + 2, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// if software interrupt, then gate descripor DPL must be >= CPL,
|
|
|
|
// else #GP(vector * 8 + 2 + EXT)
|
|
|
|
if (is_INT && (gate_descriptor.dpl < CPL)) {
|
|
|
|
BX_DEBUG(("interrupt(): is_INT && (dpl < CPL)"));
|
|
|
|
exception(BX_GP_EXCEPTION, vector*8 + 2, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Gate must be present, else #NP(vector * 8 + 2 + EXT)
|
2005-07-11 00:32:32 +04:00
|
|
|
if (! IS_PRESENT(gate_descriptor)) {
|
2006-06-10 02:29:07 +04:00
|
|
|
BX_ERROR(("interrupt(): gate not present"));
|
2005-04-12 22:08:10 +04:00
|
|
|
exception(BX_NP_EXCEPTION, vector*8 + 2, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (gate_descriptor.type) {
|
|
|
|
case BX_TASK_GATE:
|
|
|
|
// examine selector to TSS, given in task gate descriptor
|
|
|
|
raw_tss_selector = gate_descriptor.u.taskgate.tss_selector;
|
|
|
|
parse_selector(raw_tss_selector, &tss_selector);
|
|
|
|
|
|
|
|
// must specify global in the local/global bit,
|
2005-12-12 22:44:06 +03:00
|
|
|
// else #GP(TSS selector)
|
2005-04-12 22:08:10 +04:00
|
|
|
if (tss_selector.ti) {
|
2008-04-18 14:19:33 +04:00
|
|
|
BX_ERROR(("interrupt: tss_selector.ti=1 from gate descriptor - #GP(tss_selector)"));
|
2005-12-12 22:44:06 +03:00
|
|
|
exception(BX_GP_EXCEPTION, raw_tss_selector & 0xfffc, 0);
|
2005-02-02 00:17:57 +03:00
|
|
|
}
|
2002-09-14 21:29:47 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
// index must be within GDT limits, else #TS(TSS selector)
|
2005-12-13 01:01:22 +03:00
|
|
|
fetch_raw_descriptor(&tss_selector, &dword1, &dword2, BX_GP_EXCEPTION);
|
2005-04-12 22:08:10 +04:00
|
|
|
|
|
|
|
parse_descriptor(dword1, dword2, &tss_descriptor);
|
|
|
|
|
2005-12-12 22:44:06 +03:00
|
|
|
// AR byte must specify available TSS,
|
|
|
|
// else #GP(TSS selector)
|
2005-04-12 22:08:10 +04:00
|
|
|
if (tss_descriptor.valid==0 || tss_descriptor.segment) {
|
2008-04-18 14:19:33 +04:00
|
|
|
BX_ERROR(("exception: TSS selector points to invalid or bad TSS - #GP(tss_selector)"));
|
2005-12-12 22:44:06 +03:00
|
|
|
exception(BX_GP_EXCEPTION, raw_tss_selector & 0xfffc, 0);
|
2005-04-12 22:08:10 +04:00
|
|
|
}
|
2008-04-18 14:19:33 +04:00
|
|
|
|
|
|
|
if (tss_descriptor.type!=BX_SYS_SEGMENT_AVAIL_286_TSS &&
|
|
|
|
tss_descriptor.type!=BX_SYS_SEGMENT_AVAIL_386_TSS)
|
|
|
|
{
|
|
|
|
BX_ERROR(("exception: TSS selector points to bad TSS - #GP(tss_selector)"));
|
2005-12-12 22:44:06 +03:00
|
|
|
exception(BX_GP_EXCEPTION, raw_tss_selector & 0xfffc, 0);
|
2005-02-02 00:17:57 +03:00
|
|
|
}
|
2002-09-14 21:29:47 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
// TSS must be present, else #NP(TSS selector)
|
2005-08-02 22:44:20 +04:00
|
|
|
if (! IS_PRESENT(tss_descriptor)) {
|
|
|
|
BX_ERROR(("exception: TSS descriptor.p == 0"));
|
|
|
|
exception(BX_NP_EXCEPTION, raw_tss_selector & 0xfffc, 0);
|
|
|
|
}
|
2005-04-12 22:08:10 +04:00
|
|
|
|
|
|
|
// switch tasks with nesting to TSS
|
|
|
|
task_switch(&tss_selector, &tss_descriptor,
|
|
|
|
BX_TASK_FROM_CALL_OR_INT, dword1, dword2);
|
|
|
|
|
|
|
|
// if interrupt was caused by fault with error code
|
|
|
|
// stack limits must allow push of 2 more bytes, else #SS(0)
|
|
|
|
// push error code onto stack
|
|
|
|
|
2006-06-12 20:58:27 +04:00
|
|
|
if (is_error_code) {
|
2008-04-22 01:29:43 +04:00
|
|
|
if (tss_descriptor.type >= 9) // TSS386
|
2005-04-12 22:08:10 +04:00
|
|
|
push_32(error_code);
|
|
|
|
else
|
|
|
|
push_16(error_code);
|
2005-02-02 00:17:57 +03:00
|
|
|
}
|
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
// instruction pointer must be in CS limit, else #GP(0)
|
|
|
|
if (EIP > BX_CPU_THIS_PTR sregs[BX_SEG_REG_CS].cache.u.segment.limit_scaled) {
|
|
|
|
BX_ERROR(("exception(): EIP > CS.limit"));
|
|
|
|
exception(BX_GP_EXCEPTION, 0, 0);
|
|
|
|
}
|
2002-09-14 21:29:47 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
return;
|
|
|
|
|
|
|
|
case BX_286_INTERRUPT_GATE:
|
|
|
|
case BX_286_TRAP_GATE:
|
|
|
|
case BX_386_INTERRUPT_GATE:
|
|
|
|
case BX_386_TRAP_GATE:
|
2007-11-06 22:17:42 +03:00
|
|
|
gate_dest_selector = gate_descriptor.u.gate.dest_selector;
|
|
|
|
gate_dest_offset = gate_descriptor.u.gate.dest_offset;
|
2003-02-26 05:48:12 +03:00
|
|
|
|
2002-09-14 21:29:47 +04:00
|
|
|
// examine CS selector and descriptor given in gate descriptor
|
|
|
|
// selector must be non-null else #GP(EXT)
|
2006-06-12 20:58:27 +04:00
|
|
|
if ((gate_dest_selector & 0xfffc) == 0) {
|
2005-07-07 22:40:35 +04:00
|
|
|
BX_ERROR(("int_trap_gate(): selector null"));
|
2002-09-14 21:29:47 +04:00
|
|
|
exception(BX_GP_EXCEPTION, 0, 0);
|
2005-02-02 00:17:57 +03:00
|
|
|
}
|
2002-09-14 21:29:47 +04:00
|
|
|
|
|
|
|
parse_selector(gate_dest_selector, &cs_selector);
|
|
|
|
|
|
|
|
// selector must be within its descriptor table limits
|
|
|
|
// else #GP(selector+EXT)
|
2005-04-12 22:08:10 +04:00
|
|
|
fetch_raw_descriptor(&cs_selector, &dword1, &dword2, BX_GP_EXCEPTION);
|
2002-09-14 21:29:47 +04:00
|
|
|
parse_descriptor(dword1, dword2, &cs_descriptor);
|
|
|
|
|
|
|
|
// descriptor AR byte must indicate code seg
|
|
|
|
// and code segment descriptor DPL<=CPL, else #GP(selector+EXT)
|
2006-06-12 20:58:27 +04:00
|
|
|
if (cs_descriptor.valid==0 || cs_descriptor.segment==0 ||
|
|
|
|
IS_DATA_SEGMENT(cs_descriptor.type) ||
|
|
|
|
cs_descriptor.dpl>CPL)
|
2004-07-12 23:20:55 +04:00
|
|
|
{
|
2007-11-30 11:49:12 +03:00
|
|
|
BX_ERROR(("interrupt(): not accessable or not code segment cs=0x%04x", cs_selector.value));
|
2002-09-14 21:29:47 +04:00
|
|
|
exception(BX_GP_EXCEPTION, cs_selector.value & 0xfffc, 0);
|
2004-07-12 23:20:55 +04:00
|
|
|
}
|
2005-02-02 00:17:57 +03:00
|
|
|
|
2002-09-14 21:29:47 +04:00
|
|
|
// segment must be present, else #NP(selector + EXT)
|
2005-07-11 00:32:32 +04:00
|
|
|
if (! IS_PRESENT(cs_descriptor)) {
|
2006-06-10 02:29:07 +04:00
|
|
|
BX_ERROR(("interrupt(): segment not present"));
|
2002-09-14 21:29:47 +04:00
|
|
|
exception(BX_NP_EXCEPTION, cs_selector.value & 0xfffc, 0);
|
2004-07-12 23:20:55 +04:00
|
|
|
}
|
2002-09-14 21:29:47 +04:00
|
|
|
|
|
|
|
// if code segment is non-conforming and DPL < CPL then
|
|
|
|
// INTERRUPT TO INNER PRIVILEGE:
|
2006-06-12 20:58:27 +04:00
|
|
|
if(IS_CODE_SEGMENT_NON_CONFORMING(cs_descriptor.type) && (cs_descriptor.dpl < CPL))
|
2004-07-12 23:20:55 +04:00
|
|
|
{
|
2005-04-12 22:08:10 +04:00
|
|
|
Bit16u old_SS, old_CS, SS_for_cpl_x;
|
|
|
|
Bit32u ESP_for_cpl_x, old_EIP, old_ESP;
|
|
|
|
bx_descriptor_t ss_descriptor;
|
|
|
|
bx_selector_t ss_selector;
|
|
|
|
int is_v8086_mode = v8086_mode();
|
2002-09-14 21:29:47 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
BX_DEBUG(("interrupt(): INTERRUPT TO INNER PRIVILEGE"));
|
2002-09-14 21:29:47 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
if (is_v8086_mode && cs_descriptor.dpl != 0) {
|
|
|
|
// if code segment DPL != 0 then #GP(new code segment selector)
|
2006-06-10 02:29:07 +04:00
|
|
|
BX_ERROR(("interrupt(): code segment DPL != 0 in v8086 mode"));
|
2005-04-12 22:08:10 +04:00
|
|
|
exception(BX_GP_EXCEPTION, cs_selector.value & 0xfffc, 0);
|
2003-02-26 05:48:12 +03:00
|
|
|
}
|
2002-09-14 21:29:47 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
// check selector and descriptor for new stack in current TSS
|
|
|
|
get_SS_ESP_from_TSS(cs_descriptor.dpl,
|
|
|
|
&SS_for_cpl_x, &ESP_for_cpl_x);
|
2002-09-14 21:29:47 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
// Selector must be non-null else #TS(EXT)
|
2006-06-12 20:58:27 +04:00
|
|
|
if ((SS_for_cpl_x & 0xfffc) == 0) {
|
|
|
|
BX_ERROR(("interrupt(): SS selector null"));
|
2005-04-12 22:08:10 +04:00
|
|
|
exception(BX_TS_EXCEPTION, 0, 0); /* TS(ext) */
|
|
|
|
}
|
2002-09-14 21:29:47 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
// selector index must be within its descriptor table limits
|
|
|
|
// else #TS(SS selector + EXT)
|
|
|
|
parse_selector(SS_for_cpl_x, &ss_selector);
|
|
|
|
// fetch 2 dwords of descriptor; call handles out of limits checks
|
|
|
|
fetch_raw_descriptor(&ss_selector, &dword1, &dword2, BX_TS_EXCEPTION);
|
|
|
|
parse_descriptor(dword1, dword2, &ss_descriptor);
|
|
|
|
|
|
|
|
// selector rpl must = dpl of code segment,
|
|
|
|
// else #TS(SS selector + ext)
|
|
|
|
if (ss_selector.rpl != cs_descriptor.dpl) {
|
2006-06-12 20:58:27 +04:00
|
|
|
BX_ERROR(("interrupt(): SS.rpl != CS.dpl"));
|
2005-04-12 22:08:10 +04:00
|
|
|
exception(BX_TS_EXCEPTION, SS_for_cpl_x & 0xfffc, 0);
|
|
|
|
}
|
2002-10-08 18:43:18 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
// stack seg DPL must = DPL of code segment,
|
|
|
|
// else #TS(SS selector + ext)
|
|
|
|
if (ss_descriptor.dpl != cs_descriptor.dpl) {
|
2006-06-12 20:58:27 +04:00
|
|
|
BX_ERROR(("interrupt(): SS.dpl != CS.dpl"));
|
2005-04-12 22:08:10 +04:00
|
|
|
exception(BX_TS_EXCEPTION, SS_for_cpl_x & 0xfffc, 0);
|
|
|
|
}
|
2002-10-08 18:43:18 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
// descriptor must indicate writable data segment,
|
|
|
|
// else #TS(SS selector + EXT)
|
2006-06-12 20:58:27 +04:00
|
|
|
if (ss_descriptor.valid==0 || ss_descriptor.segment==0 ||
|
|
|
|
IS_CODE_SEGMENT(ss_descriptor.type) ||
|
|
|
|
!IS_DATA_SEGMENT_WRITEABLE(ss_descriptor.type))
|
2005-04-12 22:08:10 +04:00
|
|
|
{
|
2006-06-12 20:58:27 +04:00
|
|
|
BX_ERROR(("interrupt(): SS is not writable data segment"));
|
2005-04-12 22:08:10 +04:00
|
|
|
exception(BX_TS_EXCEPTION, SS_for_cpl_x & 0xfffc, 0);
|
|
|
|
}
|
2002-09-14 21:29:47 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
// seg must be present, else #SS(SS selector + ext)
|
2005-07-11 00:32:32 +04:00
|
|
|
if (! IS_PRESENT(ss_descriptor)) {
|
|
|
|
BX_ERROR(("interrupt(): SS not present"));
|
2005-04-12 22:08:10 +04:00
|
|
|
exception(BX_SS_EXCEPTION, SS_for_cpl_x & 0xfffc, 0);
|
|
|
|
}
|
2002-09-14 21:29:47 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
// IP must be within CS segment boundaries, else #GP(0)
|
|
|
|
if (gate_dest_offset > cs_descriptor.u.segment.limit_scaled) {
|
|
|
|
BX_DEBUG(("interrupt(): gate EIP > CS.limit"));
|
|
|
|
exception(BX_GP_EXCEPTION, 0, 0);
|
|
|
|
}
|
2002-09-14 21:29:47 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
old_ESP = ESP;
|
|
|
|
old_SS = BX_CPU_THIS_PTR sregs[BX_SEG_REG_SS].selector.value;
|
|
|
|
old_EIP = EIP;
|
|
|
|
old_CS = BX_CPU_THIS_PTR sregs[BX_SEG_REG_CS].selector.value;
|
2002-09-14 21:29:47 +04:00
|
|
|
|
2007-10-19 14:59:39 +04:00
|
|
|
// Prepare new stack segment
|
|
|
|
bx_segment_reg_t new_stack;
|
|
|
|
new_stack.selector = ss_selector;
|
|
|
|
new_stack.cache = ss_descriptor;
|
|
|
|
new_stack.selector.rpl = cs_descriptor.dpl;
|
|
|
|
// add cpl to the selector value
|
|
|
|
new_stack.selector.value = (0xfffc & new_stack.selector.value) |
|
|
|
|
new_stack.selector.rpl;
|
|
|
|
|
2008-04-26 01:21:46 +04:00
|
|
|
if (ss_descriptor.u.segment.d_b) {
|
|
|
|
Bit32u temp_ESP = ESP_for_cpl_x;
|
|
|
|
|
|
|
|
if (is_v8086_mode)
|
|
|
|
{
|
|
|
|
if (gate_descriptor.type>=14) { // 386 int/trap gate
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_dword_32(&new_stack, temp_ESP-4, cs_descriptor.dpl,
|
2008-04-26 01:21:46 +04:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_GS].selector.value);
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_dword_32(&new_stack, temp_ESP-8, cs_descriptor.dpl,
|
2008-04-26 01:21:46 +04:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_FS].selector.value);
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_dword_32(&new_stack, temp_ESP-12, cs_descriptor.dpl,
|
2008-04-26 01:21:46 +04:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_DS].selector.value);
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_dword_32(&new_stack, temp_ESP-16, cs_descriptor.dpl,
|
2008-04-26 01:21:46 +04:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_ES].selector.value);
|
|
|
|
temp_ESP -= 16;
|
|
|
|
}
|
|
|
|
else {
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_word_32(&new_stack, temp_ESP-2, cs_descriptor.dpl,
|
2008-04-26 01:21:46 +04:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_GS].selector.value);
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_word_32(&new_stack, temp_ESP-4, cs_descriptor.dpl,
|
2008-04-26 01:21:46 +04:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_FS].selector.value);
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_word_32(&new_stack, temp_ESP-6, cs_descriptor.dpl,
|
2008-04-26 01:21:46 +04:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_DS].selector.value);
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_word_32(&new_stack, temp_ESP-8, cs_descriptor.dpl,
|
2008-04-26 01:21:46 +04:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_ES].selector.value);
|
|
|
|
temp_ESP -= 8;
|
|
|
|
}
|
|
|
|
}
|
2007-10-19 14:59:39 +04:00
|
|
|
|
|
|
|
if (gate_descriptor.type>=14) { // 386 int/trap gate
|
2008-04-26 01:21:46 +04:00
|
|
|
// push long pointer to old stack onto new stack
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_dword_32(&new_stack, temp_ESP-4, cs_descriptor.dpl, old_SS);
|
|
|
|
write_new_stack_dword_32(&new_stack, temp_ESP-8, cs_descriptor.dpl, old_ESP);
|
|
|
|
write_new_stack_dword_32(&new_stack, temp_ESP-12, cs_descriptor.dpl, read_eflags());
|
|
|
|
write_new_stack_dword_32(&new_stack, temp_ESP-16, cs_descriptor.dpl, old_CS);
|
|
|
|
write_new_stack_dword_32(&new_stack, temp_ESP-20, cs_descriptor.dpl, old_EIP);
|
2008-04-26 01:21:46 +04:00
|
|
|
temp_ESP -= 20;
|
|
|
|
|
|
|
|
if (is_error_code) {
|
|
|
|
temp_ESP -= 4;
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_dword_32(&new_stack, temp_ESP, cs_descriptor.dpl, error_code);
|
2008-04-26 01:21:46 +04:00
|
|
|
}
|
2007-10-19 14:59:39 +04:00
|
|
|
}
|
2008-04-26 01:21:46 +04:00
|
|
|
else { // 286 int/trap gate
|
|
|
|
// push long pointer to old stack onto new stack
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_word_32(&new_stack, temp_ESP-2, cs_descriptor.dpl, old_SS);
|
|
|
|
write_new_stack_word_32(&new_stack, temp_ESP-4, cs_descriptor.dpl, (Bit16u) old_ESP);
|
|
|
|
write_new_stack_word_32(&new_stack, temp_ESP-6, cs_descriptor.dpl, (Bit16u) read_eflags());
|
|
|
|
write_new_stack_word_32(&new_stack, temp_ESP-8, cs_descriptor.dpl, old_CS);
|
|
|
|
write_new_stack_word_32(&new_stack, temp_ESP-10, cs_descriptor.dpl, (Bit16u) old_EIP);
|
2008-04-26 01:21:46 +04:00
|
|
|
temp_ESP -= 10;
|
|
|
|
|
|
|
|
if (is_error_code) {
|
|
|
|
temp_ESP -= 2;
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_word_32(&new_stack, temp_ESP, cs_descriptor.dpl, error_code);
|
2008-04-26 01:21:46 +04:00
|
|
|
}
|
2007-10-19 14:59:39 +04:00
|
|
|
}
|
2008-04-26 01:21:46 +04:00
|
|
|
|
|
|
|
ESP = temp_ESP;
|
2007-10-19 14:59:39 +04:00
|
|
|
}
|
2008-04-26 01:21:46 +04:00
|
|
|
else {
|
|
|
|
Bit16u temp_SP = (Bit16u) ESP_for_cpl_x;
|
|
|
|
|
|
|
|
if (is_v8086_mode)
|
|
|
|
{
|
|
|
|
if (gate_descriptor.type>=14) { // 386 int/trap gate
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_dword_32(&new_stack, (Bit16u)(temp_SP-4), cs_descriptor.dpl,
|
2008-04-26 01:21:46 +04:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_GS].selector.value);
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_dword_32(&new_stack, (Bit16u)(temp_SP-8), cs_descriptor.dpl,
|
2008-04-26 01:21:46 +04:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_FS].selector.value);
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_dword_32(&new_stack, (Bit16u)(temp_SP-12), cs_descriptor.dpl,
|
2008-04-26 01:21:46 +04:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_DS].selector.value);
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_dword_32(&new_stack, (Bit16u)(temp_SP-16), cs_descriptor.dpl,
|
2008-04-26 01:21:46 +04:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_ES].selector.value);
|
|
|
|
temp_SP -= 16;
|
|
|
|
}
|
|
|
|
else {
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_word_32(&new_stack, (Bit16u)(temp_SP-2), cs_descriptor.dpl,
|
2008-04-26 01:21:46 +04:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_GS].selector.value);
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_word_32(&new_stack, (Bit16u)(temp_SP-4), cs_descriptor.dpl,
|
2008-04-26 01:21:46 +04:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_FS].selector.value);
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_word_32(&new_stack, (Bit16u)(temp_SP-6), cs_descriptor.dpl,
|
2008-04-26 01:21:46 +04:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_DS].selector.value);
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_word_32(&new_stack, (Bit16u)(temp_SP-8), cs_descriptor.dpl,
|
2008-04-26 01:21:46 +04:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_ES].selector.value);
|
|
|
|
temp_SP -= 8;
|
|
|
|
}
|
|
|
|
}
|
2007-10-19 14:59:39 +04:00
|
|
|
|
2008-04-26 01:21:46 +04:00
|
|
|
if (gate_descriptor.type>=14) { // 386 int/trap gate
|
|
|
|
// push long pointer to old stack onto new stack
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_dword_32(&new_stack, (Bit16u)(temp_SP-4), cs_descriptor.dpl, old_SS);
|
|
|
|
write_new_stack_dword_32(&new_stack, (Bit16u)(temp_SP-8), cs_descriptor.dpl, old_ESP);
|
|
|
|
write_new_stack_dword_32(&new_stack, (Bit16u)(temp_SP-12), cs_descriptor.dpl, read_eflags());
|
|
|
|
write_new_stack_dword_32(&new_stack, (Bit16u)(temp_SP-16), cs_descriptor.dpl, old_CS);
|
|
|
|
write_new_stack_dword_32(&new_stack, (Bit16u)(temp_SP-20), cs_descriptor.dpl, old_EIP);
|
2008-04-26 01:21:46 +04:00
|
|
|
temp_SP -= 20;
|
|
|
|
|
|
|
|
if (is_error_code) {
|
|
|
|
temp_SP -= 4;
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_dword_32(&new_stack, temp_SP, cs_descriptor.dpl, error_code);
|
2008-04-26 01:21:46 +04:00
|
|
|
}
|
2007-10-19 14:59:39 +04:00
|
|
|
}
|
2008-04-26 01:21:46 +04:00
|
|
|
else { // 286 int/trap gate
|
|
|
|
// push long pointer to old stack onto new stack
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_word_32(&new_stack, (Bit16u)(temp_SP-2), cs_descriptor.dpl, old_SS);
|
|
|
|
write_new_stack_word_32(&new_stack, (Bit16u)(temp_SP-4), cs_descriptor.dpl, (Bit16u) old_ESP);
|
|
|
|
write_new_stack_word_32(&new_stack, (Bit16u)(temp_SP-6), cs_descriptor.dpl, (Bit16u) read_eflags());
|
|
|
|
write_new_stack_word_32(&new_stack, (Bit16u)(temp_SP-8), cs_descriptor.dpl, old_CS);
|
|
|
|
write_new_stack_word_32(&new_stack, (Bit16u)(temp_SP-10), cs_descriptor.dpl, (Bit16u) old_EIP);
|
2008-04-26 01:21:46 +04:00
|
|
|
temp_SP -= 10;
|
|
|
|
|
|
|
|
if (is_error_code) {
|
|
|
|
temp_SP -= 2;
|
2008-05-11 00:35:03 +04:00
|
|
|
write_new_stack_word_32(&new_stack, temp_SP, cs_descriptor.dpl, error_code);
|
2008-04-26 01:21:46 +04:00
|
|
|
}
|
2007-10-19 14:59:39 +04:00
|
|
|
}
|
2008-04-26 01:21:46 +04:00
|
|
|
|
|
|
|
SP = temp_SP;
|
2007-10-19 14:59:39 +04:00
|
|
|
}
|
|
|
|
|
2008-04-26 01:21:46 +04:00
|
|
|
// load new SS:eSP values from TSS
|
2005-04-12 22:08:10 +04:00
|
|
|
load_ss(&ss_selector, &ss_descriptor, cs_descriptor.dpl);
|
2003-02-26 05:48:12 +03:00
|
|
|
|
2008-04-26 01:21:46 +04:00
|
|
|
// load new CS:eIP values from gate
|
2005-04-12 22:08:10 +04:00
|
|
|
// set CPL to new code segment DPL
|
|
|
|
// set RPL of CS to CPL
|
|
|
|
load_cs(&cs_selector, &cs_descriptor, cs_descriptor.dpl);
|
|
|
|
EIP = gate_dest_offset;
|
2008-02-03 00:46:54 +03:00
|
|
|
|
2002-09-14 21:29:47 +04:00
|
|
|
// if INTERRUPT GATE set IF to 0
|
2006-06-12 20:58:27 +04:00
|
|
|
if (!(gate_descriptor.type & 1)) // even is int-gate
|
|
|
|
BX_CPU_THIS_PTR clear_IF();
|
|
|
|
BX_CPU_THIS_PTR clear_TF();
|
|
|
|
BX_CPU_THIS_PTR clear_VM();
|
|
|
|
BX_CPU_THIS_PTR clear_RF();
|
|
|
|
BX_CPU_THIS_PTR clear_NT();
|
2005-04-12 22:08:10 +04:00
|
|
|
|
|
|
|
if (is_v8086_mode)
|
|
|
|
{
|
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_GS].cache.valid = 0;
|
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_GS].selector.value = 0;
|
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_FS].cache.valid = 0;
|
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_FS].selector.value = 0;
|
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_DS].cache.valid = 0;
|
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_DS].selector.value = 0;
|
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_ES].cache.valid = 0;
|
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_ES].selector.value = 0;
|
|
|
|
}
|
|
|
|
|
2002-09-14 21:29:47 +04:00
|
|
|
return;
|
2004-07-12 23:20:55 +04:00
|
|
|
}
|
2002-09-14 21:29:47 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
if (v8086_mode()) {
|
|
|
|
// if code segment DPL != 0 then #GP(new code segment selector)
|
2006-06-10 02:29:07 +04:00
|
|
|
BX_ERROR(("interrupt(): code seg DPL != 0 in v8086 mode"));
|
2005-04-12 22:08:10 +04:00
|
|
|
exception(BX_GP_EXCEPTION, cs_selector.value & 0xfffc, 0);
|
|
|
|
}
|
|
|
|
|
2002-09-14 21:29:47 +04:00
|
|
|
// if code segment is conforming OR code segment DPL = CPL then
|
|
|
|
// INTERRUPT TO SAME PRIVILEGE LEVEL:
|
2006-06-12 20:58:27 +04:00
|
|
|
if (IS_CODE_SEGMENT_CONFORMING(cs_descriptor.type) || cs_descriptor.dpl==CPL)
|
2004-07-12 23:20:55 +04:00
|
|
|
{
|
2005-04-12 22:08:10 +04:00
|
|
|
BX_DEBUG(("int_trap_gate286(): INTERRUPT TO SAME PRIVILEGE"));
|
|
|
|
|
|
|
|
// EIP must be in CS limit else #GP(0)
|
|
|
|
if (gate_dest_offset > cs_descriptor.u.segment.limit_scaled) {
|
|
|
|
BX_ERROR(("interrupt(): IP > cs descriptor limit"));
|
|
|
|
exception(BX_GP_EXCEPTION, 0, 0);
|
|
|
|
}
|
2002-09-14 21:29:47 +04:00
|
|
|
|
|
|
|
// push flags onto stack
|
|
|
|
// push current CS selector onto stack
|
|
|
|
// push return offset onto stack
|
2005-04-12 22:08:10 +04:00
|
|
|
if (gate_descriptor.type >= 14) { // 386 gate
|
|
|
|
push_32(read_eflags());
|
|
|
|
push_32(BX_CPU_THIS_PTR sregs[BX_SEG_REG_CS].selector.value);
|
|
|
|
push_32(EIP);
|
2006-06-12 20:58:27 +04:00
|
|
|
if (is_error_code)
|
2005-04-12 22:08:10 +04:00
|
|
|
push_32(error_code);
|
|
|
|
}
|
|
|
|
else { // 286 gate
|
2008-04-08 21:58:56 +04:00
|
|
|
push_16((Bit16u) read_eflags());
|
2005-04-12 22:08:10 +04:00
|
|
|
push_16(BX_CPU_THIS_PTR sregs[BX_SEG_REG_CS].selector.value);
|
|
|
|
push_16(IP);
|
2006-06-12 20:58:27 +04:00
|
|
|
if (is_error_code)
|
2005-04-12 22:08:10 +04:00
|
|
|
push_16(error_code);
|
|
|
|
}
|
2002-09-14 21:29:47 +04:00
|
|
|
|
|
|
|
// load CS:IP from gate
|
|
|
|
// load CS descriptor
|
|
|
|
// set the RPL field of CS to CPL
|
|
|
|
load_cs(&cs_selector, &cs_descriptor, CPL);
|
2005-04-12 22:08:10 +04:00
|
|
|
EIP = gate_dest_offset;
|
2002-09-14 21:29:47 +04:00
|
|
|
|
|
|
|
// if interrupt gate then set IF to 0
|
2006-06-12 20:58:27 +04:00
|
|
|
if (!(gate_descriptor.type & 1)) // even is int-gate
|
|
|
|
BX_CPU_THIS_PTR clear_IF();
|
|
|
|
BX_CPU_THIS_PTR clear_TF();
|
|
|
|
BX_CPU_THIS_PTR clear_NT();
|
|
|
|
BX_CPU_THIS_PTR clear_VM();
|
|
|
|
BX_CPU_THIS_PTR clear_RF();
|
2002-09-14 21:29:47 +04:00
|
|
|
return;
|
2004-07-12 23:20:55 +04:00
|
|
|
}
|
2002-09-14 21:29:47 +04:00
|
|
|
|
|
|
|
// else #GP(CS selector + ext)
|
2005-04-12 22:08:10 +04:00
|
|
|
BX_DEBUG(("interrupt: bad descriptor"));
|
2006-06-12 20:58:27 +04:00
|
|
|
BX_DEBUG(("type=%u, descriptor.dpl=%u, CPL=%u",
|
|
|
|
(unsigned) cs_descriptor.type, (unsigned) cs_descriptor.dpl,
|
2005-04-12 22:08:10 +04:00
|
|
|
(unsigned) CPL));
|
|
|
|
BX_DEBUG(("cs.segment = %u", (unsigned) cs_descriptor.segment));
|
2002-09-14 21:29:47 +04:00
|
|
|
exception(BX_GP_EXCEPTION, cs_selector.value & 0xfffc, 0);
|
2005-04-12 22:08:10 +04:00
|
|
|
break;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
default:
|
|
|
|
BX_PANIC(("bad descriptor type in interrupt()!"));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
void BX_CPU_C::real_mode_int(Bit8u vector, bx_bool is_INT, bx_bool is_error_code, Bit16u error_code)
|
|
|
|
{
|
|
|
|
// real mode interrupt
|
|
|
|
Bit16u cs_selector, ip;
|
2005-03-01 23:55:25 +03:00
|
|
|
|
2006-06-12 20:58:27 +04:00
|
|
|
if ((vector*4+3) > BX_CPU_THIS_PTR idtr.limit) {
|
2005-04-12 22:08:10 +04:00
|
|
|
BX_ERROR(("interrupt(real mode) vector > idtr.limit"));
|
|
|
|
exception(BX_GP_EXCEPTION, 0, 0);
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-04-08 21:58:56 +04:00
|
|
|
push_16((Bit16u) read_eflags());
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
cs_selector = BX_CPU_THIS_PTR sregs[BX_SEG_REG_CS].selector.value;
|
|
|
|
push_16(cs_selector);
|
|
|
|
ip = EIP;
|
|
|
|
push_16(ip);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-03-29 21:18:08 +03:00
|
|
|
access_read_linear(BX_CPU_THIS_PTR idtr.base + 4 * vector, 2, 0, BX_READ, &ip);
|
2005-04-12 22:08:10 +04:00
|
|
|
EIP = (Bit32u) ip;
|
2008-03-29 21:18:08 +03:00
|
|
|
access_read_linear(BX_CPU_THIS_PTR idtr.base + 4 * vector + 2, 2, 0, BX_READ, &cs_selector);
|
2005-04-12 22:08:10 +04:00
|
|
|
load_seg_reg(&BX_CPU_THIS_PTR sregs[BX_SEG_REG_CS], cs_selector);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
/* INT affects the following flags: I,T */
|
2006-06-12 20:58:27 +04:00
|
|
|
BX_CPU_THIS_PTR clear_IF();
|
|
|
|
BX_CPU_THIS_PTR clear_TF();
|
2005-04-12 22:08:10 +04:00
|
|
|
#if BX_CPU_LEVEL >= 4
|
2006-06-12 20:58:27 +04:00
|
|
|
BX_CPU_THIS_PTR clear_AC();
|
2005-04-12 22:08:10 +04:00
|
|
|
#endif
|
2006-06-12 20:58:27 +04:00
|
|
|
BX_CPU_THIS_PTR clear_RF();
|
2005-04-12 22:08:10 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
void BX_CPU_C::interrupt(Bit8u vector, bx_bool is_INT, bx_bool is_error_code, Bit16u error_code)
|
|
|
|
{
|
|
|
|
#if BX_DEBUGGER
|
|
|
|
BX_CPU_THIS_PTR show_flag |= Flag_intsig;
|
|
|
|
#if BX_DEBUG_LINUX
|
|
|
|
if (bx_dbg.linux_syscall) {
|
2006-01-26 01:20:00 +03:00
|
|
|
if (vector == 0x80) bx_dbg_linux_syscall(BX_CPU_ID);
|
2005-02-02 00:17:57 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
2006-06-22 23:53:58 +04:00
|
|
|
bx_dbg_interrupt(BX_CPU_ID, vector, error_code);
|
2005-04-12 22:08:10 +04:00
|
|
|
#endif
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
BX_DEBUG(("interrupt(): vector = %u, INT = %u, EXT = %u",
|
|
|
|
(unsigned) vector, (unsigned) is_INT, (unsigned) BX_CPU_THIS_PTR EXT));
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
BX_INSTR_INTERRUPT(BX_CPU_ID, vector);
|
|
|
|
invalidate_prefetch_q();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
// Discard any traps and inhibits for new context; traps will
|
|
|
|
// resume upon return.
|
|
|
|
BX_CPU_THIS_PTR debug_trap = 0;
|
|
|
|
BX_CPU_THIS_PTR inhibit_mask = 0;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-10-17 17:06:09 +04:00
|
|
|
BX_CPU_THIS_PTR save_cs = BX_CPU_THIS_PTR sregs[BX_SEG_REG_CS];
|
|
|
|
BX_CPU_THIS_PTR save_ss = BX_CPU_THIS_PTR sregs[BX_SEG_REG_SS];
|
|
|
|
BX_CPU_THIS_PTR save_eip = RIP;
|
|
|
|
BX_CPU_THIS_PTR save_esp = RSP;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
#if BX_SUPPORT_X86_64
|
2006-10-04 23:08:40 +04:00
|
|
|
if (long_mode()) {
|
2005-04-12 22:08:10 +04:00
|
|
|
long_mode_int(vector, is_INT, is_error_code, error_code);
|
2005-08-09 01:03:32 +04:00
|
|
|
return;
|
2005-04-12 22:08:10 +04:00
|
|
|
}
|
2006-10-04 23:08:40 +04:00
|
|
|
#endif
|
2005-08-09 01:03:32 +04:00
|
|
|
|
2005-04-12 22:08:10 +04:00
|
|
|
if(real_mode()) {
|
|
|
|
real_mode_int(vector, is_INT, is_error_code, error_code);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
protected_mode_int(vector, is_INT, is_error_code, error_code);
|
2005-02-02 00:17:57 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2005-02-02 00:17:57 +03:00
|
|
|
// vector: 0..255: vector in IDT
|
|
|
|
// error_code: if exception generates and error, push this error code
|
2008-05-16 00:10:00 +04:00
|
|
|
// trap: override exception class to TRAP
|
|
|
|
void BX_CPU_C::exception(unsigned vector, Bit16u error_code, bx_bool trap)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2006-02-11 12:08:02 +03:00
|
|
|
unsigned exception_type = 0, exception_class = BX_EXCEPTION_CLASS_FAULT;
|
|
|
|
bx_bool push_error = 0;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-10-07 02:08:18 +04:00
|
|
|
invalidate_prefetch_q();
|
2003-02-13 18:04:11 +03:00
|
|
|
BX_INSTR_EXCEPTION(BX_CPU_ID, vector);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2006-06-22 23:53:58 +04:00
|
|
|
#if BX_DEBUGGER
|
|
|
|
bx_dbg_exception(BX_CPU_ID, vector, error_code);
|
|
|
|
#endif
|
|
|
|
|
2007-09-27 20:22:14 +04:00
|
|
|
BX_DEBUG(("exception(0x%02x): error_code=%04x", vector, error_code));
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
// if not initial error, restore previous register values from
|
|
|
|
// previous attempt to handle exception
|
|
|
|
if (BX_CPU_THIS_PTR errorno) {
|
2005-10-17 17:06:09 +04:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_CS] = BX_CPU_THIS_PTR save_cs;
|
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_SS] = BX_CPU_THIS_PTR save_ss;
|
|
|
|
RIP = BX_CPU_THIS_PTR save_eip;
|
|
|
|
RSP = BX_CPU_THIS_PTR save_esp;
|
2005-02-02 00:17:57 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-04-15 21:22:11 +04:00
|
|
|
if (BX_CPU_THIS_PTR errorno > 0) {
|
|
|
|
if (errno > 2 || BX_CPU_THIS_PTR curr_exception == BX_ET_DOUBLE_FAULT) {
|
|
|
|
debug(BX_CPU_THIS_PTR prev_rip); // print debug information to the log
|
2006-06-12 23:51:31 +04:00
|
|
|
#if BX_DEBUGGER
|
2008-04-15 21:22:11 +04:00
|
|
|
// trap into debugger (similar as done when PANIC occured)
|
|
|
|
bx_debug_break();
|
2006-06-12 23:51:31 +04:00
|
|
|
#endif
|
2008-04-15 21:22:11 +04:00
|
|
|
if (SIM->get_param_bool(BXPN_RESET_ON_TRIPLE_FAULT)->get()) {
|
|
|
|
BX_ERROR(("exception(): 3rd (%d) exception with no resolution, shutdown status is %02xh, resetting", vector, DEV_cmos_get_reg(0x0f)));
|
|
|
|
bx_pc_system.Reset(BX_RESET_SOFTWARE);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
BX_PANIC(("exception(): 3rd (%d) exception with no resolution", vector));
|
|
|
|
BX_ERROR(("WARNING: Any simulation after this point is completely bogus !"));
|
|
|
|
shutdown();
|
|
|
|
}
|
|
|
|
longjmp(BX_CPU_THIS_PTR jmp_buf_env, 1); // go back to main decode loop
|
2006-02-01 21:12:08 +03:00
|
|
|
}
|
2005-08-03 00:20:22 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
// note: fault-class exceptions _except_ #DB set RF in
|
|
|
|
// eflags image.
|
|
|
|
|
|
|
|
switch (vector) {
|
2006-01-31 20:41:08 +03:00
|
|
|
case BX_DE_EXCEPTION: // DIV by 0
|
2001-04-10 05:04:59 +04:00
|
|
|
push_error = 0;
|
2006-02-11 12:08:02 +03:00
|
|
|
exception_class = BX_EXCEPTION_CLASS_FAULT;
|
|
|
|
exception_type = BX_ET_CONTRIBUTORY;
|
2001-04-10 05:04:59 +04:00
|
|
|
break;
|
2006-01-31 20:41:08 +03:00
|
|
|
case BX_DB_EXCEPTION: // debug exceptions
|
2001-04-10 05:04:59 +04:00
|
|
|
push_error = 0;
|
2006-02-11 12:08:02 +03:00
|
|
|
// Instruction fetch breakpoint - FAULT
|
|
|
|
// Data read or write breakpoint - TRAP
|
|
|
|
// I/O read or write breakpoint - TRAP
|
|
|
|
// General detect condition - FAULT
|
|
|
|
// Single-step - TRAP
|
|
|
|
// Task-switch - TRAP
|
2008-05-16 00:10:00 +04:00
|
|
|
exception_class = BX_EXCEPTION_CLASS_FAULT;
|
2006-02-11 12:08:02 +03:00
|
|
|
exception_type = BX_ET_BENIGN;
|
2001-04-10 05:04:59 +04:00
|
|
|
break;
|
2006-01-31 20:41:08 +03:00
|
|
|
case 2: // NMI
|
2001-04-10 05:04:59 +04:00
|
|
|
push_error = 0;
|
2006-02-11 12:08:02 +03:00
|
|
|
exception_type = BX_ET_BENIGN;
|
2001-04-10 05:04:59 +04:00
|
|
|
break;
|
2006-01-31 20:41:08 +03:00
|
|
|
case BX_BP_EXCEPTION: // breakpoint
|
2001-04-10 05:04:59 +04:00
|
|
|
push_error = 0;
|
2006-02-11 12:08:02 +03:00
|
|
|
exception_class = BX_EXCEPTION_CLASS_TRAP;
|
|
|
|
exception_type = BX_ET_BENIGN;
|
2001-04-10 05:04:59 +04:00
|
|
|
break;
|
2006-01-31 20:41:08 +03:00
|
|
|
case BX_OF_EXCEPTION: // overflow
|
2001-04-10 05:04:59 +04:00
|
|
|
push_error = 0;
|
2006-02-11 12:08:02 +03:00
|
|
|
exception_class = BX_EXCEPTION_CLASS_TRAP;
|
|
|
|
exception_type = BX_ET_BENIGN;
|
2001-04-10 05:04:59 +04:00
|
|
|
break;
|
2006-01-31 20:41:08 +03:00
|
|
|
case BX_BR_EXCEPTION: // bounds check
|
2001-04-10 05:04:59 +04:00
|
|
|
push_error = 0;
|
2006-02-11 12:08:02 +03:00
|
|
|
exception_class = BX_EXCEPTION_CLASS_FAULT;
|
|
|
|
exception_type = BX_ET_BENIGN;
|
2001-04-10 05:04:59 +04:00
|
|
|
break;
|
2006-01-31 20:41:08 +03:00
|
|
|
case BX_UD_EXCEPTION: // invalid opcode
|
2001-04-10 05:04:59 +04:00
|
|
|
push_error = 0;
|
2006-02-11 12:08:02 +03:00
|
|
|
exception_class = BX_EXCEPTION_CLASS_FAULT;
|
|
|
|
exception_type = BX_ET_BENIGN;
|
2001-04-10 05:04:59 +04:00
|
|
|
break;
|
2006-01-31 20:41:08 +03:00
|
|
|
case BX_NM_EXCEPTION: // device not available
|
2001-04-10 05:04:59 +04:00
|
|
|
push_error = 0;
|
2006-02-11 12:08:02 +03:00
|
|
|
exception_class = BX_EXCEPTION_CLASS_FAULT;
|
|
|
|
exception_type = BX_ET_BENIGN;
|
2001-04-10 05:04:59 +04:00
|
|
|
break;
|
2006-01-31 20:41:08 +03:00
|
|
|
case BX_DF_EXCEPTION: // double fault
|
2001-04-10 05:04:59 +04:00
|
|
|
push_error = 1;
|
2006-02-11 12:08:02 +03:00
|
|
|
error_code = 0;
|
|
|
|
exception_class = BX_EXCEPTION_CLASS_ABORT;
|
|
|
|
exception_type = BX_ET_DOUBLE_FAULT;
|
2001-04-10 05:04:59 +04:00
|
|
|
break;
|
2006-01-31 20:41:08 +03:00
|
|
|
case 9: // coprocessor segment overrun (286,386 only)
|
2001-04-10 05:04:59 +04:00
|
|
|
push_error = 0;
|
2006-02-11 12:08:02 +03:00
|
|
|
exception_class = BX_EXCEPTION_CLASS_ABORT;
|
2008-04-15 21:22:11 +04:00
|
|
|
exception_type = BX_ET_BENIGN;
|
2001-05-30 22:56:02 +04:00
|
|
|
BX_PANIC(("exception(9): unfinished"));
|
2001-04-10 05:04:59 +04:00
|
|
|
break;
|
2006-01-31 20:41:08 +03:00
|
|
|
case BX_TS_EXCEPTION: // invalid TSS
|
2001-04-10 05:04:59 +04:00
|
|
|
push_error = 1;
|
2006-02-11 12:08:02 +03:00
|
|
|
exception_class = BX_EXCEPTION_CLASS_FAULT;
|
|
|
|
exception_type = BX_ET_CONTRIBUTORY;
|
2001-04-10 05:04:59 +04:00
|
|
|
break;
|
2006-01-31 20:41:08 +03:00
|
|
|
case BX_NP_EXCEPTION: // segment not present
|
2001-04-10 05:04:59 +04:00
|
|
|
push_error = 1;
|
2006-02-11 12:08:02 +03:00
|
|
|
exception_class = BX_EXCEPTION_CLASS_FAULT;
|
|
|
|
exception_type = BX_ET_CONTRIBUTORY;
|
2001-04-10 05:04:59 +04:00
|
|
|
break;
|
2006-01-31 20:41:08 +03:00
|
|
|
case BX_SS_EXCEPTION: // stack fault
|
2001-04-10 05:04:59 +04:00
|
|
|
push_error = 1;
|
2006-02-11 12:08:02 +03:00
|
|
|
exception_class = BX_EXCEPTION_CLASS_FAULT;
|
|
|
|
exception_type = BX_ET_CONTRIBUTORY;
|
2001-04-10 05:04:59 +04:00
|
|
|
break;
|
2006-01-31 20:41:08 +03:00
|
|
|
case BX_GP_EXCEPTION: // general protection
|
2001-04-10 05:04:59 +04:00
|
|
|
push_error = 1;
|
2006-02-11 12:08:02 +03:00
|
|
|
exception_class = BX_EXCEPTION_CLASS_FAULT;
|
|
|
|
exception_type = BX_ET_CONTRIBUTORY;
|
2001-04-10 05:04:59 +04:00
|
|
|
break;
|
2006-01-31 20:41:08 +03:00
|
|
|
case BX_PF_EXCEPTION: // page fault
|
2001-04-10 05:04:59 +04:00
|
|
|
push_error = 1;
|
2006-02-11 12:08:02 +03:00
|
|
|
exception_class = BX_EXCEPTION_CLASS_FAULT;
|
|
|
|
exception_type = BX_ET_PAGE_FAULT;
|
2001-04-10 05:04:59 +04:00
|
|
|
break;
|
2006-01-31 20:41:08 +03:00
|
|
|
case 15: // reserved
|
2001-05-30 22:56:02 +04:00
|
|
|
BX_PANIC(("exception(15): reserved"));
|
2006-01-31 20:41:08 +03:00
|
|
|
push_error = 0;
|
|
|
|
exception_type = 0;
|
2001-04-10 05:04:59 +04:00
|
|
|
break;
|
2006-01-31 20:41:08 +03:00
|
|
|
case BX_MF_EXCEPTION: // floating-point error
|
2001-04-10 05:04:59 +04:00
|
|
|
push_error = 0;
|
2006-02-11 12:08:02 +03:00
|
|
|
exception_class = BX_EXCEPTION_CLASS_FAULT;
|
|
|
|
exception_type = BX_ET_BENIGN;
|
2001-04-10 05:04:59 +04:00
|
|
|
break;
|
|
|
|
#if BX_CPU_LEVEL >= 4
|
2006-01-31 20:41:08 +03:00
|
|
|
case BX_AC_EXCEPTION: // alignment check
|
2006-02-11 12:08:02 +03:00
|
|
|
push_error = 1;
|
|
|
|
exception_class = BX_EXCEPTION_CLASS_FAULT;
|
|
|
|
exception_type = BX_ET_BENIGN;
|
2001-04-10 05:04:59 +04:00
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#if BX_CPU_LEVEL >= 5
|
2006-01-31 20:41:08 +03:00
|
|
|
case BX_MC_EXCEPTION: // machine check
|
2006-02-11 12:08:02 +03:00
|
|
|
BX_PANIC(("exception(): machine-check, vector 18 not implemented"));
|
2006-01-31 20:41:08 +03:00
|
|
|
push_error = 0;
|
2006-02-11 12:08:02 +03:00
|
|
|
exception_class = BX_EXCEPTION_CLASS_ABORT;
|
|
|
|
exception_type = BX_ET_BENIGN;
|
2001-04-10 05:04:59 +04:00
|
|
|
break;
|
2006-01-31 20:41:08 +03:00
|
|
|
#if BX_SUPPORT_SSE
|
|
|
|
case BX_XM_EXCEPTION: // SIMD Floating-Point exception
|
|
|
|
push_error = 0;
|
2006-02-11 12:08:02 +03:00
|
|
|
exception_class = BX_EXCEPTION_CLASS_FAULT;
|
|
|
|
exception_type = BX_ET_BENIGN;
|
2006-01-31 20:41:08 +03:00
|
|
|
break;
|
|
|
|
#endif
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
|
|
|
default:
|
2001-05-30 22:56:02 +04:00
|
|
|
BX_PANIC(("exception(%u): bad vector", (unsigned) vector));
|
2006-02-11 12:08:02 +03:00
|
|
|
exception_type = BX_ET_BENIGN;
|
|
|
|
push_error = 0; // keep compiler happy for now
|
2001-04-10 05:04:59 +04:00
|
|
|
break;
|
2005-02-02 00:17:57 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-05-16 00:10:00 +04:00
|
|
|
if (trap) {
|
|
|
|
exception_class = BX_EXCEPTION_CLASS_TRAP;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (exception_class == BX_EXCEPTION_CLASS_FAULT)
|
|
|
|
{
|
|
|
|
// restore RIP/RSP to value before error occurred
|
|
|
|
RIP = BX_CPU_THIS_PTR prev_rip;
|
|
|
|
if (BX_CPU_THIS_PTR speculative_rsp)
|
|
|
|
RSP = BX_CPU_THIS_PTR prev_rsp;
|
2006-02-11 12:08:02 +03:00
|
|
|
|
2008-05-16 00:10:00 +04:00
|
|
|
if (vector != BX_DB_EXCEPTION) BX_CPU_THIS_PTR assert_RF();
|
|
|
|
}
|
2006-02-11 12:08:02 +03:00
|
|
|
}
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
if (exception_type != BX_ET_PAGE_FAULT) {
|
|
|
|
// Page faults have different format
|
|
|
|
error_code = (error_code & 0xfffe) | BX_CPU_THIS_PTR EXT;
|
2005-02-02 00:17:57 +03:00
|
|
|
}
|
2006-01-31 20:41:08 +03:00
|
|
|
else {
|
|
|
|
// FIXME: special format error returned for page faults ?
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_CPU_THIS_PTR EXT = 1;
|
|
|
|
|
|
|
|
/* if we've already had 1st exception, see if 2nd causes a
|
|
|
|
* Double Fault instead. Otherwise, just record 1st exception
|
|
|
|
*/
|
2008-04-15 21:22:11 +04:00
|
|
|
if (BX_CPU_THIS_PTR errorno > 0) {
|
|
|
|
if (is_exception_OK[BX_CPU_THIS_PTR curr_exception][exception_type]) {
|
|
|
|
BX_CPU_THIS_PTR curr_exception = exception_type;
|
|
|
|
}
|
2001-05-15 19:29:33 +04:00
|
|
|
else {
|
2008-04-15 21:22:11 +04:00
|
|
|
exception(BX_DF_EXCEPTION, 0, 0);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
2001-05-15 19:29:33 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
else {
|
2008-04-15 21:22:11 +04:00
|
|
|
BX_CPU_THIS_PTR curr_exception = exception_type;
|
2001-05-15 19:29:33 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-04-15 21:22:11 +04:00
|
|
|
BX_CPU_THIS_PTR errorno++;
|
|
|
|
|
2006-02-01 21:12:08 +03:00
|
|
|
if (real_mode()) {
|
|
|
|
// not INT, no error code pushed
|
|
|
|
BX_CPU_THIS_PTR interrupt(vector, 0, 0, 0);
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_CPU_THIS_PTR errorno = 0; // error resolved
|
|
|
|
longjmp(BX_CPU_THIS_PTR jmp_buf_env, 1); // go back to main decode loop
|
2005-02-02 00:17:57 +03:00
|
|
|
}
|
2006-02-01 21:12:08 +03:00
|
|
|
else {
|
|
|
|
BX_CPU_THIS_PTR interrupt(vector, 0, push_error, error_code);
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_CPU_THIS_PTR errorno = 0; // error resolved
|
|
|
|
longjmp(BX_CPU_THIS_PTR jmp_buf_env, 1); // go back to main decode loop
|
2004-07-12 23:20:55 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|