-
Notifications
You must be signed in to change notification settings - Fork 47
/
dmmic.asm
363 lines (270 loc) · 3.93 KB
/
dmmic.asm
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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
FORMAT MZ
include 'config.asm'
macro linear reg,trg,seg
{
xor reg,reg
mov reg,seg
shl reg,4
add reg,trg
}
macro rinear reg,trg,seg
{
xor reg,reg
mov reg,seg
shl reg,16
add reg,trg
}
; --- Thread Stacks
SEGMENT STACKS
stx1 dw 100 dup (?)
stx1e:
stx2 dw 100 dup(0)
stx2e:
stx3 dw 1000 dup(0)
stx3e:
stx4 dw 1000 dup(0)
stx4e:
stx5 dw 1000 dup(0)
stx5e:
stx6 dw 1000 dup(0)
stx6e:
stx7 dw 1000 dup(0)
stx7e:
stx8 dw 1000 dup(0)
stx8e:
stx9 dw 1000 dup(0)
stx9e:
nop
; ---- Unrestricted vm Mode Thread
SEGMENT T16 USE16
v0:
sti
mov ax,0x0900
int 0xF0
mov si,MAIN16
shl esi,16
mov dx,m4
mov bp,0x0900
mov ax,0x0421
int 0xF0
; Unlock mutex
mov ax,MAIN16
mov es,ax
mov di,mut1
mov ax,0x0503
int 0xF0
vmcall
; ---- Protected Mode Thread
SEGMENT T32 USE32
rt2:
; Int 0xF0 works also in protected mode
mov ax,0
int 0xF0
; DOS call
mov bp,0x0900
xor esi,esi
mov si,MAIN16
shl esi,16
mov dx,m2
mov ax,0x421
int 0xF0
; Unlock mutex
mov ax,0x0503
linear edi,mut1,MAIN16
int 0xF0
retf
; Virtualized PM Thread (from Virtualized Paged Mode or Unrestricted Mode )
v1:
; Int 0xF0 works also in protected mode (but CPUID not in virtualization)
xchg bx,bx
; DOS call
mov bp,0x0900
xor esi,esi
mov si,MAIN16
shl esi,16
mov dx,m1
mov ax,0x421
;int 0xF0 ;Not Yet
; Unlock mutex
mov ax,0x0503
linear edi,mut1,MAIN16
int 0xF0
retf
; ---- Long Mode Thread
SEGMENT T64 USE64
; Virtualized LM Thread (from Unrestricted Mode )
v3:
xchg bx,bx
nop
nop
vmcall
rt3:
nop
nop
nop
nop
nop
; Int 0xF0 works also in long mode
mov ax,0
int 0xF0
; DOS call
xor rsi,rsi
mov si,MAIN16
shl rsi,16
mov rdx,m3
mov rax,0x0900
int 0x21
; Unlock mutex
mov ax,0x0503
linear rdi,mut1,MAIN16
int 0xF0
ret
; Virtualized LM Thread
v2:
vmcall
SEGMENT MAIN16 USE16
ORG 0h
m1 db "[real] ","$";
m2 db "[protected] ","$";
m3 db "[long] ","$";
m4 db "[virtualized real]","$";
crlf db 0dh,0ah,"$"
mut1 db 0
dhvalue db 0
include "reqdmmi.asm"
; Real mode thread
rt1:
sti
push cs
pop si
shl esi,16
mov dx,m1
mov bp,0x0900
mov ax,0x0421
int 0xF0
; unlock mut
push cs
pop es
mov di,mut1
mov ax,0x0503
int 0xF0
retf
main:
if RESIDENT = 0
mov ax,0x4c00
int 0x21
end if
RequireDMMI
; dl = num of cpus
; dh = virtualization mode
mov [cs:dhvalue],dh
; enter unreal
mov ax,0x0900
int 0xF0
; init mut
push cs
pop es
mov di,mut1
mov ax,0x0500
int 0xF0
repeat 4
; lock mut
push cs
pop es
mov di,mut1
mov ax,0x0502
int 0xF0
end repeat
; run a real mode thread
push cs
pop es
mov dx,rt1
mov cx,STACKS
mov gs,cx
mov cx,stx1e
mov ax,0x0100
mov ebx,1
int 0xF0
; run a protected thread
push cs
pop es
mov ax,0x0101
mov ebx,3
linear ecx,stx3e,STACKS
linear edx,rt2,T32
int 0xF0
; run a long thread
push cs
pop es
mov ax,0x0102
mov ebx,4
linear ecx,stx4e,STACKS
linear edx,rt3,T64
int 0xF0
; run a virtualized paged protected mode thread
cmp [cs:dhvalue],2
je .useUnr
cmp [cs:dhvalue],1
je .usePmV
; No virtualization supported
; Release one mutex
push cs
pop es
mov di,mut1
mov ax,0x0503
int 0xF0
jmp .AfterV
.usePmV:
push cs
pop es
mov ax,0x0103
mov ebx,0x107
linear edi,stx6e,STACKS
linear ecx,stx7e,STACKS
linear edx,v1,T32
int 0xF0
jmp .AfterV
; run a virtualized unrestricted guest -> real mode thread
.useUnr:
push cs
pop es
mov ax,0x0103
mov ebx,0x007
rinear edi,stx8e,STACKS
linear ecx,stx9e,STACKS
rinear edx,v0,T16
mov esi,0 ; Mode 0 -> Real mode
int 0xF0
; Virtualized Unrestricted Guest -> protected mode thread
push cs
pop es
mov ax,0x0103
mov ebx,0x007
linear ecx,stx3e,STACKS
linear edx,v1,T32
mov esi,1 ; Mode 1 -> Protected mode
;int 0xF0
; Virtualized Unrestricted Guest -> long mode thread
push cs
pop es
mov ax,0x0103
mov ebx,0x007
linear ecx,stx3e,STACKS
linear edx,v3,T64
mov esi,2 ; Mode 2 -> Long mode
;int 0xF0 ; Not working yet because MSR writing causes VMEXIT, (we haven't yet defined MSR bitmaps in VMX)
.AfterV:
; wait mut
push cs
pop es
mov di,mut1
mov ax,0x0504
int 0xF0
push cs
pop ds
mov ax,0x0900
mov dx,crlf
int 0x21
mov ax,0x4c00
int 0x21
entry MAIN16:main