VirtualBox

source: vbox/trunk/src/VBox/VMM/PATM/PATMA.h@ 28

Last change on this file since 28 was 23, checked in by vboxsync, 18 years ago

string.h & stdio.h + header cleanups.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 7.5 KB
Line 
1/* $Id: PATMA.h 23 2007-01-15 14:08:28Z vboxsync $ */
2/** @file
3 * PATM macros & definitions (identical to PATMA.mac!!)
4 */
5
6/*
7 * Copyright (C) 2006 InnoTek Systemberatung GmbH
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * If you received this file as part of a commercial VirtualBox
18 * distribution, then only the terms of your commercial VirtualBox
19 * license agreement apply instead of the previous paragraph.
20 */
21
22#ifndef __PATMA_H__
23#define __PATMA_H__
24
25
26#define PATM_VMFLAGS 0xF1ABCD00
27#ifdef VBOX_WITH_STATISTICS
28#define PATM_ALLPATCHCALLS 0xF1ABCD01
29#define PATM_PERPATCHCALLS 0xF1ABCD02
30#endif
31#define PATM_JUMPDELTA 0xF1ABCD03
32#ifdef VBOX_WITH_STATISTICS
33#define PATM_IRETEFLAGS 0xF1ABCD04
34#define PATM_IRETCS 0xF1ABCD05
35#define PATM_IRETEIP 0xF1ABCD06
36#endif
37#define PATM_FIXUP 0xF1ABCD07
38#define PATM_PENDINGACTION 0xF1ABCD08
39#define PATM_CPUID_STD_PTR 0xF1ABCD09
40#define PATM_CPUID_EXT_PTR 0xF1ABCD0a
41#define PATM_CPUID_DEF_PTR 0xF1ABCD0b
42#define PATM_STACKBASE 0xF1ABCD0c /** Stack to store our private patch return addesses */
43#define PATM_STACKBASE_GUEST 0xF1ABCD0d /** Stack to store guest return addresses */
44#define PATM_STACKPTR 0xF1ABCD0e
45#define PATM_PATCHBASE 0xF1ABCD0f
46#define PATM_INTERRUPTFLAG 0xF1ABCD10
47#define PATM_INHIBITIRQADDR 0xF1ABCD11
48#define PATM_VM_FORCEDACTIONS 0xF1ABCD12
49#define PATM_TEMP_EAX 0xF1ABCD13 /** Location for original EAX register */
50#define PATM_TEMP_ECX 0xF1ABCD14 /** Location for original ECX register */
51#define PATM_TEMP_EDI 0xF1ABCD15 /** Location for original EDI register */
52#define PATM_TEMP_EFLAGS 0xF1ABCD16 /** Location for original eflags */
53#define PATM_TEMP_RESTORE_FLAGS 0xF1ABCD17 /** Which registers to restore */
54
55/* Anything larger doesn't require a fixup */
56#define PATM_NO_FIXUP 0xF1ABCE00
57#define PATM_CPUID_STD_MAX 0xF1ABCE00
58#define PATM_CPUID_EXT_MAX 0xF1ABCE01
59#define PATM_RETURNADDR 0xF1ABCE02
60#define PATM_PATCHNEXTBLOCK 0xF1ABCE03
61#define PATM_CALLTARGET 0xF1ABCE04 /** relative call target */
62#define PATM_NEXTINSTRADDR 0xF1ABCE05 /** absolute guest address of the next instruction */
63#define PATM_CURINSTRADDR 0xF1ABCE06 /** absolute guest address of the current instruction */
64#define PATM_LOOKUP_AND_CALL_FUNCTION 0xF1ABCE07 /** Relative address of global PATM lookup and call function. */
65#define PATM_RETURN_FUNCTION 0xF1ABCE08 /** Relative address of global PATM return function. */
66#define PATM_LOOKUP_AND_JUMP_FUNCTION 0xF1ABCE09 /** Relative address of global PATM lookup and jump function. */
67
68// everything except IOPL, NT, IF, VM, VIF, VIP and RF
69#define PATM_FLAGS_MASK (X86_EFL_CF|X86_EFL_PF|X86_EFL_AF|X86_EFL_ZF|X86_EFL_SF|X86_EFL_TF|X86_EFL_DF|X86_EFL_OF|X86_EFL_AC|X86_EFL_ID)
70
71// currently only IF & IOPL
72#define PATM_VIRTUAL_FLAGS_MASK (X86_EFL_IF|X86_EFL_IOPL)
73
74/* PATM stack size (identical in PATMA.mac!!) */
75#define PATM_STACK_SIZE (PAGE_SIZE)
76#define PATM_STACK_TOTAL_SIZE (2*PATM_STACK_SIZE)
77#define PATM_MAX_STACK (PATM_STACK_SIZE/sizeof(RTGCPTR))
78
79/* Patch Manager pending actions (in GCSTATE). */
80#define PATM_ACTION_LOOKUP_ADDRESS 1
81#define PATM_ACTION_DISPATCH_PENDING_IRQ 2
82#define PATM_ACTION_LOG_IF1 3
83#define PATM_ACTION_LOG_CLI 4
84#define PATM_ACTION_LOG_STI 5
85#define PATM_ACTION_LOG_POPF_IF1 6
86#define PATM_ACTION_LOG_POPF_IF0 7
87#define PATM_ACTION_LOG_PUSHF 8
88#define PATM_ACTION_LOG_IRET 9
89
90/* Magic dword found in ecx for patm pending actions. */
91#define PATM_ACTION_MAGIC 0xABCD4321
92
93/** PATM_TEMP_RESTORE_FLAGS */
94#define PATM_RESTORE_EAX BIT(0)
95#define PATM_RESTORE_ECX BIT(1)
96#define PATM_RESTORE_EDI BIT(2)
97
98typedef struct
99{
100 uint8_t *pFunction;
101 uint32_t offJump;
102 uint32_t offRelJump; //used only by loop/loopz/loopnz
103 uint32_t offSizeOverride; //size override byte position
104 uint32_t size;
105 uint32_t nrRelocs;
106 uint32_t uReloc[1];
107} PATCHASMRECORD, *PPATCHASMRECORD;
108
109/* For indirect calls/jump (identical in PATMA.h & PATMA.mac!) */
110/** @note MUST BE A POWER OF TWO! */
111/** @note direct calls have only one lookup slot (PATCHDIRECTJUMPTABLE_SIZE) */
112/** @note Some statistics reveal that:
113 * - call: Windows XP boot -> max 16, 127 replacements
114 * - call: Knoppix 3.7 boot -> max 9
115 * - ret: Knoppix 5.0.1 boot -> max 16, 80000 replacements (3+ million hits)
116 */
117#define PATM_MAX_JUMPTABLE_ENTRIES 16
118typedef struct
119{
120 uint16_t nrSlots;
121 uint16_t ulInsertPos;
122 uint32_t cAddresses;
123 struct
124 {
125 RTGCPTR pInstrGC;
126 RTGCUINTPTR pRelPatchGC; /* relative to patch base */
127 } Slot[1];
128} PATCHJUMPTABLE, *PPATCHJUMPTABLE;
129
130
131#ifdef __cplusplus
132extern "C"
133{
134#endif
135
136extern PATCHASMRECORD PATMCliRecord;
137extern PATCHASMRECORD PATMStiRecord;
138extern PATCHASMRECORD PATMPopf32Record;
139extern PATCHASMRECORD PATMPopf16Record;
140extern PATCHASMRECORD PATMPopf16Record_NoExit;
141extern PATCHASMRECORD PATMPopf32Record_NoExit;
142extern PATCHASMRECORD PATMPushf32Record;
143extern PATCHASMRECORD PATMPushf16Record;
144extern PATCHASMRECORD PATMIretRecord;
145extern PATCHASMRECORD PATMCpuidRecord;
146extern PATCHASMRECORD PATMLoopRecord;
147extern PATCHASMRECORD PATMLoopZRecord;
148extern PATCHASMRECORD PATMLoopNZRecord;
149extern PATCHASMRECORD PATMJEcxRecord;
150extern PATCHASMRECORD PATMIntEntryRecord;
151extern PATCHASMRECORD PATMIntEntryRecordErrorCode;
152extern PATCHASMRECORD PATMTrapEntryRecord;
153extern PATCHASMRECORD PATMTrapEntryRecordErrorCode;
154extern PATCHASMRECORD PATMPushCSRecord;
155
156extern PATCHASMRECORD PATMCheckIFRecord;
157extern PATCHASMRECORD PATMJumpToGuest_IF1Record;
158
159extern PATCHASMRECORD PATMCallRecord;
160extern PATCHASMRECORD PATMCallIndirectRecord;
161extern PATCHASMRECORD PATMRetRecord;
162extern PATCHASMRECORD PATMJumpIndirectRecord;
163
164extern PATCHASMRECORD PATMLookupAndCallRecord;
165extern PATCHASMRECORD PATMRetFunctionRecord;
166extern PATCHASMRECORD PATMLookupAndJumpRecord;
167
168extern PATCHASMRECORD PATMStatsRecord;
169
170extern PATCHASMRECORD PATMSetPIFRecord;
171extern PATCHASMRECORD PATMClearPIFRecord;
172
173extern PATCHASMRECORD PATMSetInhibitIRQRecord;
174extern PATCHASMRECORD PATMClearInhibitIRQFaultIF0Record;
175extern PATCHASMRECORD PATMClearInhibitIRQContIF0Record;
176
177extern uint32_t PATMInterruptFlag;
178#ifdef __cplusplus
179}
180#endif
181
182#endif //__PATMA_H__
Note: See TracBrowser for help on using the repository browser.

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