2023-01-31 21:26:43 -06:00
|
|
|
global flushTSS
|
|
|
|
flushTSS:
|
|
|
|
mov ax, 0x28
|
|
|
|
ltr ax
|
|
|
|
ret
|
|
|
|
|
2023-02-02 00:50:16 -06:00
|
|
|
global task_ptr
|
2022-09-19 16:06:01 -05:00
|
|
|
task_ptr: equ (0x310000-4)
|
|
|
|
|
2022-09-21 17:14:11 -05:00
|
|
|
; return address in EAX
|
|
|
|
; return stack in ECX
|
|
|
|
; we can modify EAX, ECX, EDX
|
|
|
|
; i.e. save all others in task
|
2022-09-19 16:06:01 -05:00
|
|
|
global save_current_task
|
|
|
|
save_current_task:
|
2022-09-21 17:14:11 -05:00
|
|
|
push edx
|
|
|
|
mov edx, esp ; EDX holds our tmp stack, unsaved
|
2022-09-19 16:06:01 -05:00
|
|
|
mov esp, dword [task_ptr] ; load current task pointer
|
|
|
|
push ss
|
2022-09-21 17:14:11 -05:00
|
|
|
push ecx ; return stack
|
2022-09-19 16:06:01 -05:00
|
|
|
pushfd
|
|
|
|
push cs
|
|
|
|
push eax ; return address
|
|
|
|
push ds ; other segs, pop
|
|
|
|
push es ; before iret
|
|
|
|
push fs ; in exit handler
|
|
|
|
push gs
|
2022-09-21 17:14:11 -05:00
|
|
|
push ebp ; saved
|
|
|
|
push ebx ; saved
|
|
|
|
push esi ; saved
|
|
|
|
push edi ; saved
|
2022-09-19 16:06:01 -05:00
|
|
|
mov dword [task_ptr], esp ; save new task pointer
|
2022-09-21 17:14:11 -05:00
|
|
|
mov esp, edx
|
|
|
|
pop edx
|
2022-09-19 16:06:01 -05:00
|
|
|
ret
|
|
|
|
|
|
|
|
global return_prev_task
|
|
|
|
return_prev_task:
|
2022-09-21 17:14:11 -05:00
|
|
|
mov ecx, eax ; save return value for later
|
|
|
|
mov edx, dword [task_ptr] ; load current task pointer
|
|
|
|
add dword [task_ptr], 52 ; adjust to last task pointer
|
|
|
|
mov edi, [edx+0]
|
|
|
|
mov esi, [edx+4]
|
|
|
|
mov ebx, [edx+8]
|
|
|
|
mov ebp, [edx+12]
|
|
|
|
mov eax, [edx+0+16] ; gs
|
2022-09-19 16:06:01 -05:00
|
|
|
mov gs, ax
|
2022-09-21 17:14:11 -05:00
|
|
|
mov eax, [edx+4+16] ; fs
|
2022-09-19 16:06:01 -05:00
|
|
|
mov fs, ax
|
2022-09-21 17:14:11 -05:00
|
|
|
mov eax, [edx+8+16] ; es
|
2022-09-19 16:06:01 -05:00
|
|
|
mov es, ax
|
|
|
|
; SS:ESP <- return stack
|
2023-02-02 00:50:16 -06:00
|
|
|
push ecx
|
|
|
|
mov eax, [edx+32+16] ; ss
|
|
|
|
mov ecx, [edx+20+16] ; cs
|
|
|
|
and eax, 3
|
|
|
|
and ecx, 3
|
|
|
|
or eax, ecx
|
|
|
|
pop ecx
|
|
|
|
cmp eax, 3
|
|
|
|
je .ret_stack
|
|
|
|
.ret_no_stack:
|
2022-09-21 17:14:11 -05:00
|
|
|
mov esp, [edx+28+16] ; esp
|
|
|
|
mov eax, [edx+32+16] ; ss
|
2022-09-19 16:06:01 -05:00
|
|
|
mov ss, ax
|
2022-09-21 17:14:11 -05:00
|
|
|
mov eax, [edx+24+16] ; eflags
|
|
|
|
push eax
|
|
|
|
mov eax, [edx+20+16] ; cs
|
|
|
|
push eax
|
|
|
|
mov eax, [edx+16+16] ; eip
|
|
|
|
push eax
|
|
|
|
mov eax, [edx+12+16] ; ds
|
2022-09-19 16:06:01 -05:00
|
|
|
mov ds, ax
|
2022-09-21 17:14:11 -05:00
|
|
|
mov eax, ecx ; restore return value
|
2022-09-19 16:06:01 -05:00
|
|
|
iret
|
2023-02-02 00:50:16 -06:00
|
|
|
.ret_stack:
|
|
|
|
mov eax, [edx+32+16] ; ss
|
|
|
|
push eax
|
|
|
|
mov eax, [edx+28+16] ; esp
|
|
|
|
push eax
|
|
|
|
mov eax, [edx+24+16] ; eflags
|
|
|
|
push eax
|
|
|
|
mov eax, [edx+20+16] ; cs
|
|
|
|
push eax
|
|
|
|
mov eax, [edx+16+16] ; eip
|
|
|
|
push eax
|
|
|
|
mov eax, [edx+12+16] ; ds
|
|
|
|
mov ds, ax
|
|
|
|
mov eax, ecx ; restore return value
|
|
|
|
iret
|
2023-01-31 21:26:43 -06:00
|
|
|
|
2023-02-02 14:52:26 -06:00
|
|
|
; extern void enter_v86(uint32_t ss, uint32_t esp, uint32_t cs, uint32_t eip, union V86Regs_t *regs);
|
2023-01-31 21:26:43 -06:00
|
|
|
global enter_v86
|
2023-02-02 00:50:16 -06:00
|
|
|
global _enter_v86_internal_no_task
|
2023-01-31 21:26:43 -06:00
|
|
|
enter_v86:
|
|
|
|
pop eax ; return address
|
|
|
|
mov ecx, esp ; return stack
|
|
|
|
call save_current_task
|
2023-02-02 00:50:16 -06:00
|
|
|
_enter_v86_internal_no_task:
|
2023-01-31 21:26:43 -06:00
|
|
|
mov ebp, esp ; save stack pointer
|
2023-02-02 14:52:26 -06:00
|
|
|
mov eax, dword [ebp+16] ; regs
|
|
|
|
test eax, eax
|
|
|
|
jz .no_regs
|
|
|
|
; load regs: edi, esi, ebx, edx, ecx, eax
|
|
|
|
mov edi, dword [eax+0]
|
|
|
|
mov esi, dword [eax+4]
|
|
|
|
mov ebx, dword [eax+8]
|
|
|
|
mov edx, dword [eax+12]
|
|
|
|
mov ecx, dword [eax+16]
|
|
|
|
mov eax, dword [eax+20]
|
|
|
|
.no_regs:
|
2023-01-31 21:26:43 -06:00
|
|
|
push dword [ebp+0] ; ss
|
|
|
|
push dword [ebp+4] ; esp
|
|
|
|
pushfd ; eflags
|
|
|
|
or dword [esp], (1 << 17) ; set VM flags
|
|
|
|
;or dword [esp], (3 << 12) ; IOPL 3
|
|
|
|
push dword [ebp+8] ; cs
|
|
|
|
push dword [ebp+12] ; eip
|
|
|
|
iret
|
|
|
|
|
|
|
|
; return address in eax, return stack in ebp
|
|
|
|
;extern save_current_task
|
|
|
|
|
|
|
|
extern user_test
|
|
|
|
global jmp_usermode_test
|
|
|
|
jmp_usermode_test:
|
|
|
|
pop eax ; return address
|
|
|
|
mov ecx, esp ; return stack
|
|
|
|
call save_current_task
|
|
|
|
mov esp, 0x800000 ; usermode stack
|
|
|
|
mov eax, 0x20 | 3
|
|
|
|
mov ds, ax
|
|
|
|
mov es, ax
|
|
|
|
mov fs, ax
|
|
|
|
mov gs, ax
|
|
|
|
mov eax, esp
|
|
|
|
push 0x20 | 3
|
|
|
|
push eax
|
|
|
|
pushfd
|
|
|
|
push 0x18 | 3
|
|
|
|
push user_test
|
|
|
|
iret
|