kvisc/ka/sys/intr/trap0.k

216 lines
3.9 KiB
Plaintext
Raw Normal View History

2019-07-09 19:51:03 +02:00
; The OS/K Team licenses this file to you under the MIT license.
; See the LICENSE file in the project root for more information.
2019-08-08 18:39:12 +02:00
TrapHandlers.prolog:
2019-08-14 20:23:05 +02:00
nul rbp
2019-08-08 18:39:12 +02:00
2019-08-14 20:23:05 +02:00
; rax = caller's cr1
call RFS.LoadReg, r14, $cr1
2019-08-08 18:39:12 +02:00
; we don't preserve the r12 we got
mov r12, rax
2019-08-14 20:23:05 +02:00
nul rdx
2019-08-08 18:39:12 +02:00
jmp rcx
TrapHandlers.epilog:
; TRAP return values: RAX-RDX
mov ax2, rax
call RFS.StoreReg, r14, $rax
mov ax2, rdx
call RFS.StoreReg, r14, $rdx
call IDT.DoneHandling, r13
iret
;
; TRAP #0 handler
;
2019-08-06 23:21:37 +02:00
DefaultTrapHandler:
2019-07-09 19:51:03 +02:00
.init:
2019-07-10 12:28:20 +02:00
mov rcx, .text
2019-07-17 22:25:50 +02:00
mov rsp, TRAP0_STACK
2019-07-09 19:51:03 +02:00
jmp TrapHandlers.prolog
2019-07-10 12:28:20 +02:00
.text:
2019-08-03 17:41:44 +02:00
call RFS.LoadReg, r14, $rax
call RFS.LoadArgs, r14
2019-07-09 19:51:03 +02:00
2019-08-21 16:57:32 +02:00
; will be optimized with a table
; when we have a "finished" consistent API
2019-08-14 09:52:39 +02:00
jraxz .handle_Shutdown
beq rax, Sys.Exit, .handle_Exit
2019-08-21 16:57:32 +02:00
beq rax, Sys.ExecuteInFrame, .handle_EIF
2019-08-14 09:52:39 +02:00
beq rax, Sys.ReadFile, .handle_ReadFile
beq rax, Sys.OpenFile, .handle_OpenFile
beq rax, Sys.CloseFile, .handle_CloseFile
beq rax, Sys.CreateFile, .handle_CreateFile
beq rax, Sys.RemoveFile, .handle_RemoveFile
beq rax, Sys.FindNext, .handle_FindNext
beq rax, Sys.FindFirst, .handle_FindFirst
beq rax, Sys.EnterHaltMode, .handle_HaltMode
2019-08-05 15:55:46 +02:00
2019-08-21 16:57:32 +02:00
.sod:
2019-08-06 23:21:37 +02:00
call ScreenOfDeath, .badsyscall, r13
2019-07-09 19:51:03 +02:00
2019-08-21 16:57:32 +02:00
.wrong:
call ScreenOfDeath, .badparams, r13
2019-08-05 14:56:22 +02:00
.fini.savecx:
mov ax2, rcx
call RFS.StoreReg, r14, $rcx
2019-07-09 19:51:03 +02:00
.fini:
jmp TrapHandlers.epilog
2019-08-06 22:47:39 +02:00
.badsyscall = "Invalid syscall number in RAX"
2019-08-21 16:57:32 +02:00
.badparams = "Invalid syscall parameters"
2019-08-06 22:47:39 +02:00
2019-07-10 20:11:35 +02:00
;------------------------------------------------;
; Syscall implementations ;
;------------------------------------------------;
2019-07-10 17:17:45 +02:00
2019-07-09 19:51:03 +02:00
;
2019-07-10 17:17:45 +02:00
; Pass control to COMMAND.COM in frame 0
2019-07-09 19:51:03 +02:00
;
2019-07-10 17:17:45 +02:00
.handle_Exit:
2019-08-21 16:57:32 +02:00
; deactivate current rframe
bzr r14, .hE_nz ; unless it's 0...
call RFS.DeactivateFrame, r14
2019-07-10 17:17:45 +02:00
2019-08-21 16:57:32 +02:00
.hE_nz:
; open COMMAND.COM
2019-07-18 22:49:31 +02:00
call DISK.OpenFile, .cmdcom
2019-07-10 17:17:45 +02:00
2019-08-21 16:57:32 +02:00
; crash on failure
2019-08-14 09:52:39 +02:00
bltz rax, abort
2019-07-10 17:17:45 +02:00
2019-08-21 16:57:32 +02:00
; load at CMDCOM_LOADP
2019-07-10 17:17:45 +02:00
mov ax1, CMDCOM_LOADP
mov ax2, CMDCOM_MAXSZ
2019-07-18 22:49:31 +02:00
call DISK.ReadFile, rax
2019-07-10 17:17:45 +02:00
2019-08-21 16:57:32 +02:00
; assume that COMMAND.COM being
2019-07-10 17:17:45 +02:00
; less then 4KB means something
; went wrong
2019-08-14 09:52:39 +02:00
blt rax, 0x1000, abort
2019-07-10 17:17:45 +02:00
2019-08-21 16:57:32 +02:00
; close the handle
2019-07-18 22:49:31 +02:00
call DISK.CloseFile, rax
2019-07-10 17:17:45 +02:00
2019-08-21 16:57:32 +02:00
; code address
2019-07-10 17:17:45 +02:00
mov ax2, 0x100000
2019-07-18 22:49:31 +02:00
call RFS.StoreReg, zero, $rip
2019-07-10 17:17:45 +02:00
2019-08-21 16:57:32 +02:00
; usermode
2019-07-10 17:17:45 +02:00
mov ax2, 3
2019-07-18 22:49:31 +02:00
call RFS.StoreReg, zero, $cr0
2019-07-10 17:17:45 +02:00
mov rcx, CMDCOM_LOADP
2019-08-21 16:57:32 +02:00
sub rcx, 0x100000
2019-07-09 19:51:03 +02:00
2019-08-21 16:57:32 +02:00
; code offset
2019-07-10 17:17:45 +02:00
mov ax2, rcx
2019-07-18 22:49:31 +02:00
call RFS.StoreReg, zero, $cr1
2019-07-10 17:17:45 +02:00
2019-08-21 16:57:32 +02:00
; return frame
2019-08-14 20:23:05 +02:00
nul r14
2019-07-10 17:17:45 +02:00
jmp .fini
.cmdcom = "command.com"
2019-08-21 16:57:32 +02:00
.handle_EIF:
blt ax1, 5, .wrong
; RIP can't be <1MB
mov rcx, 0x100000
blt ax0, rcx, .wrong
; add old CR1
add ax0, r12
; real RIP can't be <1MB+32KB either
; (kernel + cmdcom personal space)
add rdx, rcx, 0x8000
blt ax0, rcx, .wrong
; save rframe and compute new CR1
mov rbx, ax1
sub rdi, ax0, rcx
; activate rframe
call RFS.ActivateFrame, rbx
; save new CR1
mov ax2, rdi
call RFS.StoreReg, rbx, $cr1
; interruptible user mode
mov ax2, 3
call RFS.StoreReg, rbx, $cr0
; set RIP = 1MB
mov ax2, rcx
call RFS.StoreReg, rbx, $rip
; change return frame
mov r14, rbx
jmp .fini
2019-07-10 17:17:45 +02:00
;
; Disk API
;
2019-07-10 12:26:15 +02:00
.handle_FindFirst:
2019-08-03 17:41:44 +02:00
inc ax0, r12
2019-07-10 12:26:15 +02:00
call DISK.FindFirst
2019-08-05 14:56:22 +02:00
jmp .fini.savecx
2019-07-10 12:26:15 +02:00
.handle_FindNext:
2019-08-03 17:41:44 +02:00
inc ax0, r12
2019-07-10 12:26:15 +02:00
call DISK.FindNext
2019-08-05 14:56:22 +02:00
jmp .fini.savecx
2019-07-09 19:51:03 +02:00
2019-07-13 12:38:03 +02:00
.handle_OpenFile:
2019-08-03 17:41:44 +02:00
inc ax0, r12
2019-07-13 12:38:03 +02:00
call DISK.OpenFile
jmp .fini
2019-08-05 14:56:22 +02:00
.handle_CreateFile:
inc ax0, r12
call DISK.CreateFile
jmp .fini
2019-08-05 15:55:46 +02:00
.handle_RemoveFile:
inc ax0, r12
call DISK.RemoveFile
jmp .fini
2019-07-13 12:38:03 +02:00
.handle_CloseFile:
call DISK.CloseFile
jmp .fini
.handle_ReadFile:
2019-08-03 17:41:44 +02:00
inc ax1, r12
2019-07-13 12:38:03 +02:00
call DISK.ReadFile
jmp .fini
2019-07-10 17:17:45 +02:00
;
; Misc.
;
2019-07-10 22:37:59 +02:00
.handle_Shutdown:
2019-08-14 09:52:39 +02:00
call IDT.DelHandler, zero
2019-07-10 22:37:59 +02:00
stop
2019-07-13 12:38:03 +02:00
.handle_HaltMode:
2019-08-14 09:52:39 +02:00
pause
pause
hlt
jmp .handle_HaltMode
2019-07-09 19:51:03 +02:00