-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathhdpmipt.c
452 lines (406 loc) · 11.4 KB
/
hdpmipt.c
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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#ifndef __GNUC__ //make vscode happy
#define __attribute__(x)
#endif
#include <dpmi/dbgutil.h>
#include <untrapio.h>
#include "hdpmipt.h"
#define HDPMIPT_SWITCH_STACK 1 //TODO: debug
#define HDPMIPT_STACKSIZE 16384
typedef struct
{
uint32_t edi;
uint16_t es;
}HDPMIPT_ENTRY;
extern uint32_t __djgpp_stack_top;
static const char* VENDOR_HDPMI = "HDPMI"; //vendor string
static HDPMIPT_ENTRY HDPMIPT_Entry;
#if HDPMIPT_SWITCH_STACK
static uint32_t HDPMIPT_OldESP[2];
static uint32_t HDPMIPT_NewStack[2];
#endif
static QEMM_IODT_LINK HDPMIPT_IODT_header;
static QEMM_IODT_LINK* HDPMIPT_IODT_Link = &HDPMIPT_IODT_header;
static uint16_t HDPMIPT_GetDS()
{
uint16_t ds;
asm("mov %%ds, %0":"=r"(ds));
return ds;
}
static uint32_t __attribute__((noinline)) HDPMIPT_TrapHandler()
{
uint32_t port = 0, out = 0, value = 0;
asm(
"mov %%edx, %0 \n\t"
"mov %%ecx, %1 \n\t"
"mov %%eax, %2 \n\t"
:"=m"(port),"=m"(out),"=m"(value)
:
:"memory"
);
QEMM_TrapFlags |= QEMM_TF_PM;
//if(port >= 0 && port <= 0xF)
//_LOG("Trapped PM: %s %x\n", out ? "out" : "in", port);
QEMM_IODT_LINK* link = HDPMIPT_IODT_header.next;
while(link)
{
for(int i = 0; i < link->count; ++i)
{
//if(port>=0&&port<=0xF)
// _LOG("port: %s %04x, %04x, %04x\n",out ? "out" : "in",port, link->iodt[i].port, value);
if(link->iodt[i].port == port)
return link->iodt[i].handler(port, value, out);
}
link = link->next;
}
return value;
}
static void __attribute__((naked)) HDPMIPT_TrapHandlerWrapper()
{
//switch to local stack from trapped client's stack
#if HDPMIPT_SWITCH_STACK
asm(
"movl %%esp, %0 \n\t"
"mov %%ss, %%sp \n\t"
"mov %%sp, %1 \n\t"
"lss %2, %%esp \n\t"
:"=m"(HDPMIPT_OldESP[0]),"=m"(HDPMIPT_OldESP[1])
:"m"(HDPMIPT_NewStack[0])
:"memory"
);
#endif
HDPMIPT_TrapHandler();
#if HDPMIPT_SWITCH_STACK
asm("lss %0, %%esp" : :"m"(HDPMIPT_OldESP[0]) ); //restore stack
#endif
asm("lret"); //retf
}
static int HDPMIPT_GetVendorEntry(HDPMIPT_ENTRY* entry)
{
int result = 0;
asm(
"pushl %%es \n\t"
"pushl %%esi \n\t"
"pushl %%edi \n\t"
"xor %%eax, %%eax \n\t"
"xor %%edi, %%edi \n\t"
"mov %%di, %%es \n\t"
"movw $0x168A, %%ax \n\t"
"movl %3, %%esi \n\t"
"int $0x2F \n\t"
"mov %%es, %%cx \n\t" //entry->es & entry->edi may use register esi & edi
"mov %%edi, %%edx \n\t" //save edi to edx and pop first
"popl %%edi \n\t"
"popl %%esi \n\t"
"popl %%es \n\t"
"movl %%eax, %0 \n\t"
"movw %%cx, %1 \n\t"
"movl %%edx, %2 \n\t"
: "=r"(result),"=m"(entry->es), "=m"(entry->edi)
: "m"(VENDOR_HDPMI)
: "eax", "ecx", "edx","memory"
);
return (result&0xFF) == 0; //al=0 to succeed
}
static uint32_t HDPMI_Internal_InstallTrap(const HDPMIPT_ENTRY* entry, int start, int end, void(*handler)(void))
{
uint32_t handle = 0;
int count = end - start + 1;
asm(
"pushl %%ebx \n\t"
"pushl %%esi \n\t"
"pushl %%edi \n\t"
"pushl %1 \n\t pushl %2 \n\t" //"movl %1, %%esi \n\t" //ESI: starting port
"popl %%edi \n\t popl %%esi \n\t" //"movl %2, %%edi \n\t" //EDI: port count
"xor %%ecx, %%ecx \n\t"
"mov %%cs, %%cx \n\t" //CX: handler code seg
"xor %%ebx, %%ebx \n\t"
"mov %%ds, %%bx \n\t" //BX: handler data seg
"movl %3, %%edx \n\t" //EDX: handler addr
"movl $6, %%eax \n\t" //ax=6, install port trap
"lcall *%4\n\t"
"popl %%edi \n\t"
"popl %%esi \n\t"
"popl %%ebx \n\t"
"jc 1f \n\t"
"movl %%eax, %0 \n\t 1:"
:"=g"(handle)
:"g"(start),"g"(count),"g"(handler),"m"(*entry)
:"eax","ebx","ecx","edx","memory"
);
return handle;
}
static BOOL HDPMI_Internal_UninstallTrap(const HDPMIPT_ENTRY* entry, uint32_t handle)
{
BOOL result = FALSE;
asm(
"movl %2, %%edx \n\t" //EDX=handle
"movl $7, %%eax \n\t" //ax=7, unistall port trap
"lcall *%1\n\t"
"jc 1f \n\t"
"movl $1, %%eax \n\t"
"movb %%al, %0 \n\t"
"1: nop \n\t"
:"=m"(result)
:"m"(*entry),"m"(handle)
:"eax","ecx","edx","memory"
);
return result;
}
BOOL HDPMIPT_Detect()
{
HDPMIPT_ENTRY entry;
BOOL result = HDPMIPT_GetVendorEntry(&entry);
return result && (entry.edi || entry.es);
}
BOOL HDPMIPT_Install_IOPortTrap(uint16_t start, uint16_t end, QEMM_IODT* inputp iodt, uint16_t count, QEMM_IOPT* outputp iopt)
{
assert(iopt);
if(HDPMIPT_IODT_header.next == NULL)
{
if(!HDPMIPT_GetVendorEntry(&HDPMIPT_Entry))
{
HDPMIPT_Entry.es = 0;
HDPMIPT_Entry.edi = 0;
puts("Failed to get HDPMI Vendor entry point.\n");
return FALSE;
}
//_LOG("HDPMI vendor entry: %04x:%08x\n", HDPMIPT_Entry.es, HDPMIPT_Entry.edi);
}
uint32_t handle = HDPMI_Internal_InstallTrap(&HDPMIPT_Entry, start, end, &HDPMIPT_TrapHandlerWrapper);
if(!handle)
{
_LOG("Failed to install HDPMI io port trap.\n");
return FALSE;
}
if(HDPMIPT_IODT_header.next == NULL)
{
#if HDPMIPT_SWITCH_STACK
HDPMIPT_NewStack[0] = (uintptr_t)malloc(HDPMIPT_STACKSIZE) + HDPMIPT_STACKSIZE - 8;
HDPMIPT_NewStack[1] = HDPMIPT_GetDS();
#endif
}
QEMM_IODT* Iodt = (QEMM_IODT*)malloc(sizeof(QEMM_IODT)*count);
memcpy(Iodt, iodt, sizeof(QEMM_IODT)*count);
QEMM_IODT_LINK* newlink = (QEMM_IODT_LINK*)malloc(sizeof(QEMM_IODT_LINK));
newlink->iodt = Iodt;
newlink->count = count;
newlink->prev = HDPMIPT_IODT_Link;
newlink->next = NULL;
HDPMIPT_IODT_Link->next = newlink;
HDPMIPT_IODT_Link = newlink;
iopt->memory = (uintptr_t)newlink;
iopt->handle = handle;
return TRUE;
}
BOOL HDPMIPT_Uninstall_IOPortTrap(QEMM_IOPT* inputp iopt)
{
CLIS();
QEMM_IODT_LINK* link = (QEMM_IODT_LINK*)iopt->memory;
link->prev->next = link->next;
if(link->next) link->next->prev = link->prev;
if(HDPMIPT_IODT_Link == link)
HDPMIPT_IODT_Link = link->prev;
STIL();
BOOL result = HDPMI_Internal_UninstallTrap(&HDPMIPT_Entry, iopt->handle);
if(!result)
_LOG("Failed to uninstall HDPMI io port trap.\n");
free(link->iodt);
free(link);
if(HDPMIPT_IODT_header.next == NULL)
{
#if HDPMIPT_SWITCH_STACK
free((void*)(HDPMIPT_NewStack[0] - HDPMIPT_STACKSIZE + 8));
#endif
}
return TRUE;
}
void HDPMIPT_UntrappedIO_Write(uint16_t port, uint8_t value)
{
if(HDPMIPT_Entry.es == 0 || HDPMIPT_Entry.edi == 0)
{
if(!HDPMIPT_GetVendorEntry(&HDPMIPT_Entry))
return;
}
asm(
"movl $0x08, %%eax \n\t" //function no.
"movw %1, %%dx \n\t" //dx=port
"movb %2, %%cl \n\t" //cl=value
"movb $1, %%ch \n\t" //ch=int/out
"lcall *%0\n\t"
:
:"m"(HDPMIPT_Entry),"m"(port),"m"(value)
:"eax","ecx","edx"
);
}
uint8_t HDPMIPT_UntrappedIO_Read(uint16_t port)
{
if(HDPMIPT_Entry.es == 0 || HDPMIPT_Entry.edi == 0)
{
if(!HDPMIPT_GetVendorEntry(&HDPMIPT_Entry))
return FALSE;
}
uint8_t result = 0;
asm(
"movl $0x08, %%eax \n\t" //function no.
"movw %2, %%dx \n\t" //dx=port
"xor %%ch, %%ch \n\t" //ch=in/out
"lcall *%1\n\t"
"movb %%al, %0 \n\t"
:"=m"(result)
:"m"(HDPMIPT_Entry),"m"(port)
:"eax","ecx","edx"
);
return result;
}
BOOL HDPMIPT_InstallIRQRoutedHandler(uint8_t irq, uint16_t cs, uint32_t offset, uint16_t rmcs, uint16_t rmoffset)
{
if(HDPMIPT_Entry.es == 0 || HDPMIPT_Entry.edi == 0)
{
if(!HDPMIPT_GetVendorEntry(&HDPMIPT_Entry))
return FALSE;
}
BOOL result = 0;
asm(
"pushl %%esi \n\t"
"movl $0x0B, %%eax \n\t" //function no.
"movzxb %2, %%esi \n\t" //esi=irq
"movzxw %3, %%ecx \n\t" //ecx=selector
"movl %4, %%edx \n\t" //edx=offset
"movw %5, %%bx \n\t" //ebx=rm far ptr
"shl $16, %%ebx \n\t"
"movw %6, %%bx \n\t"
"lcall *%1 \n\t"
"popl %%esi \n\t"
"movb $1, %0 \n\t "
"jnc 1f \n\t"
"movb $0, %0 \n\t"
"1: \n\t"
:"=m"(result)
:"m"(HDPMIPT_Entry),"m"(irq),"m"(cs),"m"(offset),"m"(rmcs),"m"(rmoffset)
:"eax","ecx","edx","ebx"
);
return result;
}
BOOL HDPMIPT_GetIRQRoutedHandler(uint8_t irq, uint16_t* cs, uint32_t* offset, uint16_t* rmcs, uint16_t* rmoffset)
{
if(HDPMIPT_Entry.es == 0 || HDPMIPT_Entry.edi == 0)
{
if(!HDPMIPT_GetVendorEntry(&HDPMIPT_Entry))
return FALSE;
}
assert(cs && offset && rmcs && rmoffset);
uint16_t _cs = 0, _rmcs = 0, _rmoffset = 0;
uint32_t _offset = 0;
BOOL result = 0;
asm(
"pushl %%esi \n\t"
"movl $0x0D, %%eax \n\t" //function no.
"movzxb %6, %%esi \n\t" //esi=irq
"lcall *%5 \n\t"
"jc 1f \n\t"
"movw %%cx, %0 \n\t" //ecx=selector
"movl %%edx, %1 \n\t" //edx=offset
"movw %%bx, %2 \n\t" //ebx=rm far ptr
"shl $16, %%ebx \n\t"
"movw %%bx, %3 \n\t"
"movb $1, %4 \n\t "
"jmp 2f \n\t"
"1: movb $0, %4 \n\t"
"2: popl %%esi \n\t"
:"=m"(_cs),"=m"(_offset),"=m"(_rmcs),"=m"(_rmoffset),"=m"(result)
:"m"(HDPMIPT_Entry),"m"(irq)
:"eax","ecx","edx","ebx"
);
*offset = _offset; *cs = _cs; *rmcs = _rmcs; *rmoffset = _rmoffset;
return result;
}
static HDPMIPT_IRQRoutedHandle DPMIPT_IRQROutingCache[16];
BOOL HDPMIPT_DisableIRQRouting(uint8_t irq)
{
if(irq > 15)
{
assert(FALSE);
return FALSE;
}
if(!HDPMIPT_GetIRQRoutedHandlerH(irq, &DPMIPT_IRQROutingCache[irq]))
{
assert(FALSE);
return FALSE;
}
if(DPMIPT_IRQROutingCache[irq].cs == 0 && DPMIPT_IRQROutingCache[irq].offset == 0
&& DPMIPT_IRQROutingCache[irq].rmcs == 0 && DPMIPT_IRQROutingCache[irq].rmoffset == 0)
{
return TRUE;
}
BOOL result = HDPMIPT_InstallIRQRoutedHandler(irq, 0, 0, 0, 0);
assert(result);
return result;
}
BOOL HDPMIPT_EnableIRQRouting(uint8_t irq)
{
if(irq > 15 || !DPMIPT_IRQROutingCache[irq].valid)
{
assert(FALSE);
return FALSE;
}
if( DPMIPT_IRQROutingCache[irq].cs == 0 && DPMIPT_IRQROutingCache[irq].offset == 0
&& DPMIPT_IRQROutingCache[irq].rmcs == 0 && DPMIPT_IRQROutingCache[irq].rmoffset == 0)
{
return TRUE;
}
if(!HDPMIPT_InstallIRQRoutedHandlerH(irq, &DPMIPT_IRQROutingCache[irq]))
{
assert(FALSE);
return FALSE;
}
return TRUE;
}
BOOL HDPMIPT_LockIRQRouting(BOOL locked)
{
if(HDPMIPT_Entry.es == 0 || HDPMIPT_Entry.edi == 0)
{
if(!HDPMIPT_GetVendorEntry(&HDPMIPT_Entry))
return FALSE;
}
locked = locked ? 1 : 0;
BOOL result = 0;
asm(
"movl $0x0E, %%eax \n\t" //function no.
"movzxb %2, %%ecx \n\t"
"lcall *%1 \n\t"
"jc 1f \n\t"
"movb $1, %0 \n\t "
"jmp 2f \n\t"
"1: movb $0, %0 \n\t"
"2: \n\t"
:"=m"(result)
:"m"(HDPMIPT_Entry),"m"(locked)
:"eax","ecx"
);
return result;
}
BOOL HDPMIPT_GetInterrupContext(INTCONTEXT* context)
{
if(HDPMIPT_Entry.es == 0 || HDPMIPT_Entry.edi == 0)
{
if(!HDPMIPT_GetVendorEntry(&HDPMIPT_Entry))
return FALSE;
}
asm(
"pushl %%edi \n\t"
"mov %%ds, %%dx \n\t"
"movl %1, %%edi \n\t"
"movl $0x0C, %%eax \n\t"
"lcall *%0 \n\t"
"popl %%edi \n\t"
:
:"m"(HDPMIPT_Entry), "m"(context)
:"eax", "edx"
);
//DBG_DumpREG(&context->regs);
return TRUE;
}