1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
|
; $Id: cidet-appA.asm $
;; @file
; CPU Instruction Decoding & Execution Tests - Ring-3 Driver Application, Assembly Code.
;
;
; Copyright (C) 2009-2023 Oracle and/or its affiliates.
;
; This file is part of VirtualBox base platform packages, as
; available from https://www.virtualbox.org.
;
; This program is free software; you can redistribute it and/or
; modify it under the terms of the GNU General Public License
; as published by the Free Software Foundation, in version 3 of the
; License.
;
; This program 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
; General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with this program; if not, see <https://www.gnu.org/licenses>.
;
; The contents of this file may alternatively be used under the terms
; of the Common Development and Distribution License Version 1.0
; (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
; in the VirtualBox distribution, in which case the provisions of the
; CDDL are applicable instead of those of the GPL.
;
; You may elect to license modified versions of this file under the
; terms and conditions of either the GPL or the CDDL or both.
;
; SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
;
;*******************************************************************************
;* Header Files *
;*******************************************************************************
%include "iprt/asmdefs.mac"
%include "iprt/x86.mac"
%include "cidet.mac"
;*******************************************************************************
;* Global Variables *
;*******************************************************************************
%ifdef RT_ARCH_X86
;; Used by CidetAppSaveAndRestoreCtx when we have a tricky target stack.
g_uTargetEip dd 0
g_uTargetCs dw 0
%endif
;;
; Leave GS alone on 64-bit darwin (gs is 0, no ldt or gdt entry to load that'll
; restore the lower 32-bits of the base when saving and restoring the register).
%ifdef RT_OS_DARWIN
%ifdef RT_ARCH_AMD64
%define CIDET_LEAVE_GS_ALONE
%endif
%endif
BEGINCODE
;;
; ASSUMES that it's called and the EIP/RIP is found on the stack.
;
; @param pSaveCtx ds:xCX The context to save; DS, xDX and xCX have
; already been saved by the caller.
; @param pRestoreCtx ds:xDX The context to restore.
;
BEGINPROC CidetAppSaveAndRestoreCtx
;
; Save the stack pointer and program counter first so we can later
; bypass this step if we need to.
;
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_xAX * 8], xAX ; need scratch register.
lea xAX, [xSP + xCB]
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_xSP * 8], xAX
mov word [xCX + CIDETCPUCTX.aSRegs + X86_SREG_SS * 2], ss
mov word [xCX + CIDETCPUCTX.aSRegs + X86_SREG_CS * 2], cs
mov xAX, [xSP]
mov [xCX + CIDETCPUCTX.rip], xAX
jmp CidetAppSaveAndRestoreCtx_1
GLOBALNAME CidetAppSaveAndRestoreCtx_NoSsSpCsIp
mov [xDX + CIDETCPUCTX.aGRegs + X86_GREG_xAX * 8], xAX
CidetAppSaveAndRestoreCtx_1:
; Flags.
%ifdef RT_ARCH_AMD64
pushfq
%else
pushfd
%endif
pop xAX
mov [xCX + CIDETCPUCTX.rfl], xAX
; Segment registers.
mov word [xCX + CIDETCPUCTX.aSRegs + X86_SREG_ES * 2], es
mov word [xCX + CIDETCPUCTX.aSRegs + X86_SREG_FS * 2], fs
mov word [xCX + CIDETCPUCTX.aSRegs + X86_SREG_GS * 2], gs
; Remaining GPRs.
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_xBX * 8], xBX
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_xBP * 8], xBP
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_xSI * 8], xSI
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_xDI * 8], xDI
%ifdef RT_ARCH_AMD64
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x8 * 8], r8
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x9 * 8], r9
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x10 * 8], r10
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x11 * 8], r11
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x12 * 8], r12
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x13 * 8], r13
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x14 * 8], r14
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x15 * 8], r15
xor eax, eax
mov [xCX + CIDETCPUCTX.cr2], rax
%ifndef CIDET_REDUCED_CTX
mov [xCX + CIDETCPUCTX.cr0], rax
mov [xCX + CIDETCPUCTX.cr3], rax
mov [xCX + CIDETCPUCTX.cr4], rax
mov [xCX + CIDETCPUCTX.cr8], rax
mov [xCX + CIDETCPUCTX.dr0], rax
mov [xCX + CIDETCPUCTX.dr1], rax
mov [xCX + CIDETCPUCTX.dr2], rax
mov [xCX + CIDETCPUCTX.dr3], rax
mov [xCX + CIDETCPUCTX.dr6], rax
mov [xCX + CIDETCPUCTX.dr7], rax
mov [xCX + CIDETCPUCTX.tr], ax
mov [xCX + CIDETCPUCTX.ldtr], ax
%endif
%else
xor eax, eax
mov [xCX + CIDETCPUCTX.rfl + 4], eax
mov [xCX + CIDETCPUCTX.rip + 4], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_xAX * 8 + 4], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_xCX * 8 + 4], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_xDX * 8 + 4], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_xBX * 8 + 4], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_xSP * 8 + 4], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_xBP * 8 + 4], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_xSI * 8 + 4], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_xDI * 8 + 4], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x8 * 8 ], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x8 * 8 + 4], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x9 * 8 ], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x9 * 8 + 4], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x10 * 8 ], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x10 * 8 + 4], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x11 * 8 ], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x11 * 8 + 4], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x12 * 8 ], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x12 * 8 + 4], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x13 * 8 ], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x13 * 8 + 4], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x14 * 8 ], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x14 * 8 + 4], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x15 * 8 ], eax
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_x15 * 8 + 4], eax
mov [xCX + CIDETCPUCTX.cr2 ], eax
mov [xCX + CIDETCPUCTX.cr2 + 4], eax
%ifndef CIDET_REDUCED_CTX
mov [xCX + CIDETCPUCTX.cr0 ], eax
mov [xCX + CIDETCPUCTX.cr0 + 4], eax
mov [xCX + CIDETCPUCTX.cr3 ], eax
mov [xCX + CIDETCPUCTX.cr3 + 4], eax
mov [xCX + CIDETCPUCTX.cr4 ], eax
mov [xCX + CIDETCPUCTX.cr4 + 4], eax
mov [xCX + CIDETCPUCTX.cr8 ], eax
mov [xCX + CIDETCPUCTX.cr8 + 4], eax
mov [xCX + CIDETCPUCTX.dr0 ], eax
mov [xCX + CIDETCPUCTX.dr0 + 4], eax
mov [xCX + CIDETCPUCTX.dr1 ], eax
mov [xCX + CIDETCPUCTX.dr1 + 4], eax
mov [xCX + CIDETCPUCTX.dr2 ], eax
mov [xCX + CIDETCPUCTX.dr2 + 4], eax
mov [xCX + CIDETCPUCTX.dr3 ], eax
mov [xCX + CIDETCPUCTX.dr3 + 4], eax
mov [xCX + CIDETCPUCTX.dr6 ], eax
mov [xCX + CIDETCPUCTX.dr6 + 4], eax
mov [xCX + CIDETCPUCTX.dr7 ], eax
mov [xCX + CIDETCPUCTX.dr7 + 4], eax
mov [xCX + CIDETCPUCTX.tr], ax
mov [xCX + CIDETCPUCTX.ldtr], ax
%endif
%endif
dec xAX
mov [xCX + CIDETCPUCTX.uErr], xAX
%ifdef RT_ARCH_X86
mov [xCX + CIDETCPUCTX.uErr + 4], eax
%endif
mov [xCX + CIDETCPUCTX.uXcpt], eax
;
; Restore the other state (pointer in xDX).
;
NAME(CidetAppSaveAndRestoreCtx_Restore):
; Restore ES, FS, and GS.
mov es, [xDX + CIDETCPUCTX.aSRegs + X86_SREG_ES * 2]
mov fs, [xDX + CIDETCPUCTX.aSRegs + X86_SREG_FS * 2]
%ifndef CIDET_LEAVE_GS_ALONE
mov gs, [xDX + CIDETCPUCTX.aSRegs + X86_SREG_GS * 2]
%endif
; Restore most GPRs (except xCX, xAX and xSP).
mov xCX, [xDX + CIDETCPUCTX.aGRegs + X86_GREG_xCX * 8]
mov xBX, [xDX + CIDETCPUCTX.aGRegs + X86_GREG_xBX * 8]
mov xBP, [xDX + CIDETCPUCTX.aGRegs + X86_GREG_xBP * 8]
mov xSI, [xDX + CIDETCPUCTX.aGRegs + X86_GREG_xSI * 8]
mov xDI, [xDX + CIDETCPUCTX.aGRegs + X86_GREG_xDI * 8]
%ifdef RT_ARCH_AMD64
mov r8, [xDX + CIDETCPUCTX.aGRegs + X86_GREG_x8 * 8]
mov r9, [xDX + CIDETCPUCTX.aGRegs + X86_GREG_x9 * 8]
mov r10, [xDX + CIDETCPUCTX.aGRegs + X86_GREG_x10 * 8]
mov r11, [xDX + CIDETCPUCTX.aGRegs + X86_GREG_x11 * 8]
mov r12, [xDX + CIDETCPUCTX.aGRegs + X86_GREG_x12 * 8]
mov r13, [xDX + CIDETCPUCTX.aGRegs + X86_GREG_x13 * 8]
mov r14, [xDX + CIDETCPUCTX.aGRegs + X86_GREG_x14 * 8]
mov r15, [xDX + CIDETCPUCTX.aGRegs + X86_GREG_x15 * 8]
%endif
%ifdef RT_ARCH_AMD64
; Create an iret frame which restores SS:RSP, RFLAGS, and CS:RIP.
movzx eax, word [xDX + CIDETCPUCTX.aSRegs + X86_SREG_SS * 2]
push xAX
push qword [xDX + CIDETCPUCTX.aGRegs + X86_GREG_xSP * 8]
push qword [xDX + CIDETCPUCTX.rfl]
movzx eax, word [xDX + CIDETCPUCTX.aSRegs + X86_SREG_CS * 2]
push xAX
push qword [xDX + CIDETCPUCTX.rip]
; Restore DS, xAX and xDX then do the iret.
mov ds, [xDX + CIDETCPUCTX.aSRegs + X86_SREG_DS * 2]
mov xAX, [xDX + CIDETCPUCTX.aGRegs + X86_GREG_xAX * 8]
mov xDX, [xDX + CIDETCPUCTX.aGRegs + X86_GREG_xDX * 8]
iretq
%else
; In 32-bit mode iret doesn't restore CS:ESP for us, so we have to
; make a choice whether the SS:ESP is more important than EFLAGS.
cmp byte [xDX + CIDETCPUCTX.fTrickyStack], 0
jne .tricky_stack
mov ss, [xDX + CIDETCPUCTX.aSRegs + X86_SREG_SS * 2]
mov xSP, [xDX + CIDETCPUCTX.aGRegs + X86_GREG_xSP * 8]
push dword [xDX + CIDETCPUCTX.rfl] ; iret frame
movzx eax, word [xDX + CIDETCPUCTX.aSRegs + X86_SREG_CS * 2] ; iret frame
push xAX ; iret frame
push dword [xDX + CIDETCPUCTX.rip] ; iret frame
mov xAX, [xDX + CIDETCPUCTX.aGRegs + X86_GREG_xAX * 8]
mov ds, [xDX + CIDETCPUCTX.aSRegs + X86_SREG_DS * 2]
mov xDX, [cs:xDX + CIDETCPUCTX.aGRegs + X86_GREG_xDX * 8]
iretd
.tricky_stack:
mov xAX, [xDX + CIDETCPUCTX.rip]
mov [g_uTargetEip], xAX
mov ax, [xDX + CIDETCPUCTX.aSRegs + X86_SREG_CS * 2]
mov [g_uTargetCs], ax
push dword [xDX + CIDETCPUCTX.rfl]
popfd
mov ss, [xDX + CIDETCPUCTX.aSRegs + X86_SREG_SS * 2]
mov xSP, [xDX + CIDETCPUCTX.aGRegs + X86_GREG_xSP * 8]
mov xAX, [xDX + CIDETCPUCTX.aGRegs + X86_GREG_xAX * 8]
mov ds, [xDX + CIDETCPUCTX.aSRegs + X86_SREG_DS * 2]
mov xDX, [cs:xDX + CIDETCPUCTX.aGRegs + X86_GREG_xDX * 8]
jmp far [cs:g_uTargetEip]
%endif
ENDPROC CidetAppSaveAndRestoreCtx
;;
; C callable version of CidetAppSaveAndRestoreCtx more or less.
;
; @param pSaveCtx x86:esp+4 gcc:rdi msc:rcx
; @param pRestoreCtx x86:esp+8 gcc:rsi msc:rdx
BEGINPROC CidetAppExecute
%ifdef RT_ARCH_X86
mov ecx, [esp + 4]
mov edx, [esp + 8]
%elifdef ASM_CALL64_GCC
mov rcx, rdi
mov rdx, rsi
%elifndef ASM_CALL64_MSC
%error "unsupport arch."
%endif
mov word [xCX + CIDETCPUCTX.aSRegs + X86_SREG_DS * 2], ds
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_xDX * 8], xDX
mov [xCX + CIDETCPUCTX.aGRegs + X86_GREG_xCX * 8], xCX
jmp NAME(CidetAppSaveAndRestoreCtx)
ENDPROC CidetAppExecute
;;
; C callable restore function.
;
; @param pRestoreCtx x86:esp+4 gcc:rdi msc:rcx
BEGINPROC CidetAppRestoreCtx
%ifdef RT_ARCH_X86
mov edx, [esp + 4]
%elifdef ASM_CALL64_GCC
mov rdx, rdi
%elifdef ASM_CALL64_MSC
mov rdx, rcx
%else
%error "unsupport arch."
%endif
mov ds, [cs:xDX + CIDETCPUCTX.aSRegs + X86_SREG_DS * 2]
jmp NAME(CidetAppSaveAndRestoreCtx_Restore)
ENDPROC CidetAppRestoreCtx
|