2007-03-21 23:58:33 +01:00
|
|
|
|
$Revision$
|
2007-03-26 14:18:08 +02:00
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
;; ;;
|
|
|
|
|
;; Copyright (C) KolibriOS team 2004-2007. All rights reserved. ;;
|
|
|
|
|
;; Distributed under terms of the GNU General Public License ;;
|
|
|
|
|
;; ;;
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2006-10-06 08:09:41 +02:00
|
|
|
|
|
|
|
|
|
align 4
|
|
|
|
|
proc alloc_page
|
|
|
|
|
|
|
|
|
|
pushfd
|
|
|
|
|
cli
|
|
|
|
|
mov ebx, [page_start]
|
|
|
|
|
mov ecx, [page_end]
|
|
|
|
|
.l1:
|
|
|
|
|
bsf eax,[ebx];
|
|
|
|
|
jnz .found
|
|
|
|
|
add ebx,4
|
|
|
|
|
cmp ebx, ecx
|
|
|
|
|
jb .l1
|
|
|
|
|
popfd
|
|
|
|
|
xor eax,eax
|
|
|
|
|
ret
|
|
|
|
|
.found:
|
|
|
|
|
btr [ebx], eax
|
|
|
|
|
mov [page_start],ebx
|
|
|
|
|
sub ebx, sys_pgmap
|
2006-12-29 08:12:27 +01:00
|
|
|
|
lea eax, [eax+ebx*8]
|
2006-10-06 08:09:41 +02:00
|
|
|
|
shl eax, 12
|
|
|
|
|
dec [pg_data.pages_free]
|
|
|
|
|
popfd
|
|
|
|
|
ret
|
|
|
|
|
endp
|
|
|
|
|
|
|
|
|
|
align 4
|
|
|
|
|
proc alloc_pages stdcall, count:dword
|
|
|
|
|
pushfd
|
|
|
|
|
cli
|
|
|
|
|
mov eax, [count]
|
|
|
|
|
add eax, 7
|
|
|
|
|
shr eax, 3
|
|
|
|
|
mov [count], eax
|
|
|
|
|
cmp eax, [pg_data.pages_free]
|
|
|
|
|
ja .fail
|
|
|
|
|
|
|
|
|
|
mov ecx, [page_start]
|
|
|
|
|
mov ebx, [page_end]
|
|
|
|
|
.find:
|
|
|
|
|
mov edx, [count]
|
|
|
|
|
mov edi, ecx
|
|
|
|
|
.match:
|
|
|
|
|
cmp byte [ecx], 0xFF
|
|
|
|
|
jne .next
|
|
|
|
|
dec edx
|
|
|
|
|
jz .ok
|
|
|
|
|
inc ecx
|
|
|
|
|
cmp ecx,ebx
|
|
|
|
|
jb .match
|
|
|
|
|
.fail: xor eax, eax
|
|
|
|
|
popfd
|
|
|
|
|
ret
|
|
|
|
|
.next:
|
|
|
|
|
inc ecx
|
|
|
|
|
cmp ecx, ebx
|
|
|
|
|
jb .find
|
|
|
|
|
popfd
|
|
|
|
|
xor eax, eax
|
|
|
|
|
ret
|
|
|
|
|
.ok:
|
|
|
|
|
sub ecx, edi
|
|
|
|
|
inc ecx
|
|
|
|
|
mov esi, edi
|
|
|
|
|
xor eax, eax
|
|
|
|
|
rep stosb
|
|
|
|
|
sub esi, sys_pgmap
|
|
|
|
|
shl esi, 3+12
|
|
|
|
|
mov eax, esi
|
|
|
|
|
mov ebx, [count]
|
|
|
|
|
shl ebx, 3
|
|
|
|
|
sub [pg_data.pages_free], ebx
|
|
|
|
|
popfd
|
|
|
|
|
ret
|
|
|
|
|
endp
|
|
|
|
|
|
|
|
|
|
align 4
|
|
|
|
|
proc map_page stdcall,lin_addr:dword,phis_addr:dword,flags:dword
|
2007-02-05 15:20:36 +01:00
|
|
|
|
push ebx
|
2006-10-06 08:09:41 +02:00
|
|
|
|
mov eax, [phis_addr]
|
|
|
|
|
and eax, not 0xFFF
|
|
|
|
|
or eax, [flags]
|
|
|
|
|
mov ebx, [lin_addr]
|
|
|
|
|
shr ebx, 12
|
2007-02-20 13:05:24 +01:00
|
|
|
|
mov [page_tabs+ebx*4], eax
|
2006-10-06 08:09:41 +02:00
|
|
|
|
mov eax, [lin_addr]
|
|
|
|
|
invlpg [eax]
|
2007-02-05 15:20:36 +01:00
|
|
|
|
pop ebx
|
2006-10-06 08:09:41 +02:00
|
|
|
|
ret
|
|
|
|
|
endp
|
|
|
|
|
|
2007-01-19 04:58:46 +01:00
|
|
|
|
align 4
|
|
|
|
|
map_space: ;not implemented
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ret
|
|
|
|
|
|
|
|
|
|
|
2006-10-06 08:09:41 +02:00
|
|
|
|
align 4
|
|
|
|
|
proc free_page
|
|
|
|
|
;arg: eax page address
|
|
|
|
|
pushfd
|
|
|
|
|
cli
|
|
|
|
|
shr eax, 12 ;page index
|
2007-04-02 16:29:39 +02:00
|
|
|
|
bts dword [sys_pgmap], eax ;that's all!
|
2007-01-23 15:55:03 +01:00
|
|
|
|
cmc
|
2007-02-08 02:02:14 +01:00
|
|
|
|
adc [pg_data.pages_free], 0
|
2006-10-06 08:09:41 +02:00
|
|
|
|
shr eax, 3
|
|
|
|
|
and eax, not 3 ;dword offset from page_map
|
2007-04-02 16:29:39 +02:00
|
|
|
|
add eax, sys_pgmap
|
2006-10-06 08:09:41 +02:00
|
|
|
|
cmp [page_start], eax
|
|
|
|
|
ja @f
|
|
|
|
|
popfd
|
|
|
|
|
ret
|
|
|
|
|
@@:
|
|
|
|
|
mov [page_start], eax
|
|
|
|
|
popfd
|
|
|
|
|
ret
|
|
|
|
|
endp
|
|
|
|
|
|
2007-01-18 08:31:56 +01:00
|
|
|
|
; param
|
2007-02-08 02:02:14 +01:00
|
|
|
|
; eax= page base + page flags
|
2007-01-19 04:58:46 +01:00
|
|
|
|
; ebx= liear address
|
|
|
|
|
; ecx= count
|
|
|
|
|
|
|
|
|
|
align 4
|
2007-02-08 02:02:14 +01:00
|
|
|
|
commit_pages:
|
2007-01-19 04:58:46 +01:00
|
|
|
|
|
2007-02-08 02:02:14 +01:00
|
|
|
|
test ecx, ecx
|
|
|
|
|
jz .fail
|
2007-01-19 04:58:46 +01:00
|
|
|
|
|
2007-02-08 02:02:14 +01:00
|
|
|
|
mov edi, ebx
|
|
|
|
|
mov ebx, pg_data.pg_mutex
|
|
|
|
|
call wait_mutex ;ebx
|
|
|
|
|
|
|
|
|
|
mov edx, 0x1000
|
|
|
|
|
mov ebx, edi
|
|
|
|
|
shr ebx, 12
|
|
|
|
|
@@:
|
2007-02-20 13:05:24 +01:00
|
|
|
|
mov [page_tabs+ebx*4], eax
|
2007-02-08 02:02:14 +01:00
|
|
|
|
invlpg [edi]
|
|
|
|
|
add edi, edx
|
|
|
|
|
add eax, edx
|
|
|
|
|
inc ebx
|
|
|
|
|
dec ecx
|
|
|
|
|
jnz @B
|
|
|
|
|
mov [pg_data.pg_mutex],ecx
|
|
|
|
|
.fail:
|
2007-01-19 04:58:46 +01:00
|
|
|
|
ret
|
|
|
|
|
|
2007-02-08 02:02:14 +01:00
|
|
|
|
|
2007-01-19 04:58:46 +01:00
|
|
|
|
; param
|
2007-01-18 08:31:56 +01:00
|
|
|
|
; eax= base
|
2007-01-19 04:58:46 +01:00
|
|
|
|
; ecx= count
|
2007-01-18 08:31:56 +01:00
|
|
|
|
|
|
|
|
|
align 4
|
|
|
|
|
release_pages:
|
2007-02-05 15:20:36 +01:00
|
|
|
|
|
|
|
|
|
pushad
|
2007-01-18 08:31:56 +01:00
|
|
|
|
mov ebx, pg_data.pg_mutex
|
|
|
|
|
call wait_mutex ;ebx
|
|
|
|
|
|
|
|
|
|
mov esi, eax
|
|
|
|
|
mov edi, eax
|
|
|
|
|
|
|
|
|
|
shr esi, 10
|
2007-02-20 13:05:24 +01:00
|
|
|
|
add esi, page_tabs
|
2007-02-08 02:02:14 +01:00
|
|
|
|
|
|
|
|
|
mov ebp, [pg_data.pages_free]
|
2007-01-18 08:31:56 +01:00
|
|
|
|
mov ebx, [page_start]
|
|
|
|
|
mov edx, sys_pgmap
|
|
|
|
|
@@:
|
|
|
|
|
xor eax, eax
|
|
|
|
|
xchg eax, [esi]
|
|
|
|
|
invlpg [edi]
|
|
|
|
|
|
|
|
|
|
test eax, 1
|
|
|
|
|
jz .next
|
|
|
|
|
|
|
|
|
|
shr eax, 12
|
|
|
|
|
bts [edx], eax
|
2007-01-23 15:55:03 +01:00
|
|
|
|
cmc
|
2007-02-08 02:02:14 +01:00
|
|
|
|
adc ebp, 0
|
2007-01-18 08:31:56 +01:00
|
|
|
|
shr eax, 3
|
|
|
|
|
and eax, -4
|
|
|
|
|
add eax, edx
|
|
|
|
|
cmp eax, ebx
|
|
|
|
|
jae .next
|
|
|
|
|
|
|
|
|
|
mov ebx, eax
|
|
|
|
|
.next:
|
|
|
|
|
add edi, 0x1000
|
|
|
|
|
add esi, 4
|
|
|
|
|
dec ecx
|
|
|
|
|
jnz @B
|
2007-02-08 02:02:14 +01:00
|
|
|
|
mov [pg_data.pages_free], ebp
|
2007-01-18 08:31:56 +01:00
|
|
|
|
and [pg_data.pg_mutex],0
|
2007-02-05 15:20:36 +01:00
|
|
|
|
popad
|
2007-01-18 08:31:56 +01:00
|
|
|
|
ret
|
|
|
|
|
|
2006-10-06 08:09:41 +02:00
|
|
|
|
align 4
|
2006-10-20 16:02:26 +02:00
|
|
|
|
proc map_page_table stdcall, lin_addr:dword, phis_addr:dword
|
2007-02-05 15:20:36 +01:00
|
|
|
|
push ebx
|
2006-10-06 08:09:41 +02:00
|
|
|
|
mov ebx, [lin_addr]
|
|
|
|
|
shr ebx, 22
|
|
|
|
|
mov eax, [phis_addr]
|
|
|
|
|
and eax, not 0xFFF
|
|
|
|
|
or eax, PG_UW ;+PG_NOCACHE
|
2007-02-27 12:47:52 +01:00
|
|
|
|
mov dword [master_tab+ebx*4], eax
|
2006-10-06 08:09:41 +02:00
|
|
|
|
mov eax, [lin_addr]
|
|
|
|
|
shr eax, 10
|
2007-02-20 13:05:24 +01:00
|
|
|
|
add eax, page_tabs
|
2006-10-06 08:09:41 +02:00
|
|
|
|
invlpg [eax]
|
2007-02-05 15:20:36 +01:00
|
|
|
|
pop ebx
|
2006-10-06 08:09:41 +02:00
|
|
|
|
ret
|
|
|
|
|
endp
|
|
|
|
|
|
|
|
|
|
align 4
|
|
|
|
|
proc init_LFB
|
2007-02-27 12:47:52 +01:00
|
|
|
|
locals
|
|
|
|
|
pg_count dd ?
|
|
|
|
|
endl
|
|
|
|
|
|
2006-10-06 08:09:41 +02:00
|
|
|
|
cmp dword [LFBAddress], -1
|
|
|
|
|
jne @f
|
2007-03-10 17:04:35 +01:00
|
|
|
|
mov [BOOT_VAR+0x901c],byte 2
|
2006-10-06 08:09:41 +02:00
|
|
|
|
stdcall kernel_alloc, 0x280000
|
|
|
|
|
mov [LFBAddress], eax
|
|
|
|
|
ret
|
|
|
|
|
@@:
|
|
|
|
|
test [SCR_MODE],word 0100000000000000b
|
2006-11-16 06:47:31 +01:00
|
|
|
|
jnz @f
|
2007-03-10 17:04:35 +01:00
|
|
|
|
mov [BOOT_VAR+0x901c],byte 2
|
2006-11-16 06:47:31 +01:00
|
|
|
|
ret
|
2006-10-06 08:09:41 +02:00
|
|
|
|
@@:
|
2007-05-14 06:27:51 +02:00
|
|
|
|
call init_mtrr
|
|
|
|
|
|
2007-02-27 12:47:52 +01:00
|
|
|
|
mov edx, LFB_BASE
|
2006-10-06 08:09:41 +02:00
|
|
|
|
mov esi, [LFBAddress]
|
2007-04-18 08:37:14 +02:00
|
|
|
|
mov edi, 0x00800000
|
2007-02-28 09:52:06 +01:00
|
|
|
|
mov dword [exp_lfb+4], edx
|
2006-11-20 08:06:00 +01:00
|
|
|
|
|
2006-10-06 08:09:41 +02:00
|
|
|
|
shr edi, 12
|
|
|
|
|
mov [pg_count], edi
|
|
|
|
|
shr edi, 10
|
|
|
|
|
|
|
|
|
|
bt [cpu_caps], CAPS_PSE
|
|
|
|
|
jnc .map_page_tables
|
|
|
|
|
or esi, PG_LARGE+PG_UW
|
2007-04-18 08:37:14 +02:00
|
|
|
|
mov edx, sys_pgdir+(LFB_BASE shr 20)
|
2006-10-06 08:09:41 +02:00
|
|
|
|
@@:
|
2007-04-18 08:37:14 +02:00
|
|
|
|
mov [edx], esi
|
2007-02-27 12:47:52 +01:00
|
|
|
|
add edx, 4
|
2006-10-06 08:09:41 +02:00
|
|
|
|
add esi, 0x00400000
|
|
|
|
|
dec edi
|
|
|
|
|
jnz @B
|
|
|
|
|
|
2006-11-03 17:26:10 +01:00
|
|
|
|
bt [cpu_caps], CAPS_PGE
|
|
|
|
|
jnc @F
|
2007-04-18 08:37:14 +02:00
|
|
|
|
or dword [sys_pgdir+(LFB_BASE shr 20)], PG_GLOBAL
|
2006-11-03 17:26:10 +01:00
|
|
|
|
@@:
|
2007-02-27 12:47:52 +01:00
|
|
|
|
mov dword [LFBAddress], LFB_BASE
|
2006-10-06 08:09:41 +02:00
|
|
|
|
mov eax, cr3 ;flush TLB
|
|
|
|
|
mov cr3, eax
|
|
|
|
|
ret
|
|
|
|
|
|
|
|
|
|
.map_page_tables:
|
|
|
|
|
|
2007-04-18 08:37:14 +02:00
|
|
|
|
@@:
|
2006-10-06 08:09:41 +02:00
|
|
|
|
call alloc_page
|
2007-02-27 12:47:52 +01:00
|
|
|
|
stdcall map_page_table, edx, eax
|
2007-03-05 22:37:28 +01:00
|
|
|
|
add edx, 0x00400000
|
2006-10-06 08:09:41 +02:00
|
|
|
|
dec edi
|
2007-04-18 08:37:14 +02:00
|
|
|
|
jnz @B
|
2006-10-06 08:09:41 +02:00
|
|
|
|
|
|
|
|
|
mov eax, [LFBAddress]
|
2007-02-27 12:47:52 +01:00
|
|
|
|
mov edi, page_tabs + (LFB_BASE shr 10)
|
2006-10-06 08:09:41 +02:00
|
|
|
|
or eax, PG_UW
|
|
|
|
|
mov ecx, [pg_count]
|
2007-02-27 12:47:52 +01:00
|
|
|
|
cld
|
2007-03-05 22:37:28 +01:00
|
|
|
|
@@:
|
|
|
|
|
stosd
|
|
|
|
|
add eax, 0x1000
|
|
|
|
|
dec ecx
|
|
|
|
|
jnz @B
|
2006-10-06 08:09:41 +02:00
|
|
|
|
|
2007-02-27 12:47:52 +01:00
|
|
|
|
mov dword [LFBAddress], LFB_BASE
|
2006-10-06 08:09:41 +02:00
|
|
|
|
mov eax, cr3 ;flush TLB
|
|
|
|
|
mov cr3, eax
|
|
|
|
|
|
|
|
|
|
ret
|
|
|
|
|
endp
|
|
|
|
|
|
|
|
|
|
align 4
|
|
|
|
|
proc new_mem_resize stdcall, new_size:dword
|
|
|
|
|
|
2007-01-17 05:43:21 +01:00
|
|
|
|
mov ebx, pg_data.pg_mutex
|
|
|
|
|
call wait_mutex ;ebx
|
2006-10-06 08:09:41 +02:00
|
|
|
|
|
|
|
|
|
mov edi, [new_size]
|
|
|
|
|
add edi,4095
|
|
|
|
|
and edi,not 4095
|
|
|
|
|
mov [new_size], edi
|
|
|
|
|
|
2007-04-18 08:37:14 +02:00
|
|
|
|
mov edx,[current_slot]
|
|
|
|
|
cmp [edx+APPDATA.heap_base],0
|
2006-10-10 07:11:30 +02:00
|
|
|
|
jne .exit
|
|
|
|
|
|
2007-04-18 08:37:14 +02:00
|
|
|
|
mov esi, [edx+APPDATA.mem_size]
|
2006-10-06 08:09:41 +02:00
|
|
|
|
add esi, 4095
|
|
|
|
|
and esi, not 4095
|
|
|
|
|
|
|
|
|
|
cmp edi, esi
|
|
|
|
|
jae .expand
|
|
|
|
|
|
|
|
|
|
shr edi, 12
|
|
|
|
|
shr esi, 12
|
|
|
|
|
@@:
|
2007-02-27 12:47:52 +01:00
|
|
|
|
mov eax, [app_page_tabs+edi*4]
|
2006-10-06 08:09:41 +02:00
|
|
|
|
test eax, 1
|
|
|
|
|
jz .next
|
2007-02-27 12:47:52 +01:00
|
|
|
|
mov dword [app_page_tabs+edi*4], 2
|
2006-10-06 08:09:41 +02:00
|
|
|
|
mov ebx, edi
|
|
|
|
|
shl ebx, 12
|
|
|
|
|
invlpg [ebx+std_application_base_address]
|
|
|
|
|
call free_page
|
|
|
|
|
|
|
|
|
|
.next: add edi, 1
|
|
|
|
|
cmp edi, esi
|
|
|
|
|
jb @B
|
|
|
|
|
|
|
|
|
|
.update_size:
|
2007-04-18 08:37:14 +02:00
|
|
|
|
mov ebx, [new_size]
|
|
|
|
|
call update_mem_size
|
2006-10-06 08:09:41 +02:00
|
|
|
|
|
|
|
|
|
xor eax, eax
|
|
|
|
|
dec [pg_data.pg_mutex]
|
|
|
|
|
ret
|
|
|
|
|
.expand:
|
|
|
|
|
|
|
|
|
|
push esi
|
|
|
|
|
push edi
|
|
|
|
|
|
|
|
|
|
add edi, 0x3FFFFF
|
|
|
|
|
and edi, not(0x3FFFFF)
|
|
|
|
|
add esi, 0x3FFFFF
|
|
|
|
|
and esi, not(0x3FFFFF)
|
|
|
|
|
|
|
|
|
|
cmp esi, edi
|
|
|
|
|
jae .grow
|
|
|
|
|
|
|
|
|
|
xchg esi, edi
|
|
|
|
|
|
|
|
|
|
@@:
|
|
|
|
|
call alloc_page
|
|
|
|
|
test eax, eax
|
|
|
|
|
jz .exit
|
|
|
|
|
|
2006-10-20 16:02:26 +02:00
|
|
|
|
stdcall map_page_table, edi, eax
|
2006-10-06 08:09:41 +02:00
|
|
|
|
|
|
|
|
|
push edi
|
|
|
|
|
shr edi, 10
|
2007-02-20 13:05:24 +01:00
|
|
|
|
add edi, page_tabs
|
2006-10-06 08:09:41 +02:00
|
|
|
|
mov ecx, 1024
|
|
|
|
|
xor eax, eax
|
|
|
|
|
cld
|
|
|
|
|
rep stosd
|
|
|
|
|
pop edi
|
|
|
|
|
|
|
|
|
|
add edi, 0x00400000
|
|
|
|
|
cmp edi, esi
|
|
|
|
|
jb @B
|
|
|
|
|
.grow:
|
|
|
|
|
pop edi
|
|
|
|
|
pop esi
|
|
|
|
|
@@:
|
|
|
|
|
call alloc_page
|
|
|
|
|
test eax, eax
|
|
|
|
|
jz .exit
|
|
|
|
|
stdcall map_page,esi,eax,dword PG_UW
|
|
|
|
|
|
|
|
|
|
push edi
|
|
|
|
|
mov edi, esi
|
|
|
|
|
xor eax, eax
|
|
|
|
|
mov ecx, 1024
|
|
|
|
|
cld
|
|
|
|
|
rep stosd
|
|
|
|
|
pop edi
|
|
|
|
|
|
|
|
|
|
add esi, 0x1000
|
|
|
|
|
cmp esi, edi
|
2007-01-25 14:42:23 +01:00
|
|
|
|
jb @B
|
2006-10-06 08:09:41 +02:00
|
|
|
|
|
|
|
|
|
jmp .update_size
|
|
|
|
|
.exit:
|
|
|
|
|
xor eax, eax
|
|
|
|
|
inc eax
|
|
|
|
|
dec [pg_data.pg_mutex]
|
|
|
|
|
ret
|
|
|
|
|
endp
|
|
|
|
|
|
2007-01-25 14:42:23 +01:00
|
|
|
|
update_mem_size:
|
2007-04-18 08:37:14 +02:00
|
|
|
|
; in: edx = slot base
|
2007-01-25 14:42:23 +01:00
|
|
|
|
; ebx = new memory size
|
|
|
|
|
; destroys eax,ecx,edx
|
|
|
|
|
|
2007-04-18 08:37:14 +02:00
|
|
|
|
mov [APPDATA.mem_size+edx],ebx
|
2007-01-25 14:42:23 +01:00
|
|
|
|
;search threads and update
|
|
|
|
|
;application memory size infomation
|
2007-04-18 08:37:14 +02:00
|
|
|
|
mov ecx,[APPDATA.dir_table+edx]
|
2007-01-25 14:42:23 +01:00
|
|
|
|
mov eax,2
|
|
|
|
|
|
|
|
|
|
.search_threads:
|
|
|
|
|
;eax = current slot
|
|
|
|
|
;ebx = new memory size
|
|
|
|
|
;ecx = page directory
|
|
|
|
|
cmp eax,[TASK_COUNT]
|
|
|
|
|
jg .search_threads_end
|
|
|
|
|
mov edx,eax
|
|
|
|
|
shl edx,5
|
|
|
|
|
cmp word [CURRENT_TASK+edx+TASKDATA.state],9 ;if slot empty?
|
|
|
|
|
jz .search_threads_next
|
|
|
|
|
shl edx,3
|
2007-02-28 11:51:05 +01:00
|
|
|
|
cmp [SLOT_BASE+edx+APPDATA.dir_table],ecx ;if it is our thread?
|
2007-01-25 14:42:23 +01:00
|
|
|
|
jnz .search_threads_next
|
2007-02-28 11:51:05 +01:00
|
|
|
|
mov [SLOT_BASE+edx+APPDATA.mem_size],ebx ;update memory size
|
2007-01-25 14:42:23 +01:00
|
|
|
|
.search_threads_next:
|
|
|
|
|
inc eax
|
|
|
|
|
jmp .search_threads
|
|
|
|
|
.search_threads_end:
|
|
|
|
|
ret
|
|
|
|
|
|
2007-01-20 08:48:13 +01:00
|
|
|
|
; param
|
|
|
|
|
; eax= linear address
|
|
|
|
|
;
|
|
|
|
|
; retval
|
|
|
|
|
; eax= phisical page address
|
|
|
|
|
|
2006-10-06 08:09:41 +02:00
|
|
|
|
align 4
|
2007-01-20 08:48:13 +01:00
|
|
|
|
get_pg_addr:
|
|
|
|
|
shr eax, 12
|
2007-02-20 13:05:24 +01:00
|
|
|
|
mov eax, [page_tabs+eax*4]
|
2006-10-06 08:09:41 +02:00
|
|
|
|
and eax, 0xFFFFF000
|
|
|
|
|
ret
|
|
|
|
|
|
2007-04-18 08:37:14 +02:00
|
|
|
|
|
2006-10-20 16:02:26 +02:00
|
|
|
|
align 4
|
2006-10-06 08:09:41 +02:00
|
|
|
|
proc page_fault_handler
|
|
|
|
|
|
2007-04-18 08:37:14 +02:00
|
|
|
|
.err_code equ ebp+32
|
|
|
|
|
.err_addr equ ebp-4
|
|
|
|
|
|
|
|
|
|
pushad
|
2006-10-06 08:09:41 +02:00
|
|
|
|
mov ebp, esp
|
|
|
|
|
mov eax, cr2
|
2006-10-10 07:11:30 +02:00
|
|
|
|
push eax
|
2006-10-06 08:09:41 +02:00
|
|
|
|
|
2007-04-18 08:37:14 +02:00
|
|
|
|
mov ax, app_data
|
2006-10-06 08:09:41 +02:00
|
|
|
|
mov ds, ax
|
2006-10-20 16:02:26 +02:00
|
|
|
|
mov es, ax
|
|
|
|
|
|
|
|
|
|
inc [pg_data.pages_faults]
|
2006-10-06 08:09:41 +02:00
|
|
|
|
|
2007-04-18 08:37:14 +02:00
|
|
|
|
; push eax
|
|
|
|
|
; push edx
|
|
|
|
|
; mov edx, 0x400 ;bochs
|
|
|
|
|
; mov al,0xff ;bochs
|
|
|
|
|
; out dx, al ;bochs
|
|
|
|
|
; pop edx
|
|
|
|
|
; pop eax
|
2006-10-06 08:09:41 +02:00
|
|
|
|
|
2007-04-18 08:37:14 +02:00
|
|
|
|
mov ebx, [.err_addr]
|
|
|
|
|
mov eax, [.err_code]
|
2006-10-06 08:09:41 +02:00
|
|
|
|
|
2007-04-18 08:37:14 +02:00
|
|
|
|
cmp ebx, OS_BASE
|
|
|
|
|
jb .user_space ;<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ;
|
2006-10-20 16:02:26 +02:00
|
|
|
|
|
2007-02-27 12:47:52 +01:00
|
|
|
|
cmp ebx, page_tabs
|
2007-04-18 08:37:14 +02:00
|
|
|
|
jb .kernel_space ;<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2006-10-06 08:09:41 +02:00
|
|
|
|
|
2007-04-18 08:37:14 +02:00
|
|
|
|
cmp ebx, kernel_tabs
|
|
|
|
|
jb .alloc;.app_tabs ;<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ;
|
|
|
|
|
;<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2007-02-27 12:47:52 +01:00
|
|
|
|
|
2007-04-18 08:37:14 +02:00
|
|
|
|
cmp ebx, LFB_BASE
|
|
|
|
|
jb .core_tabs ;<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
;<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
.lfb:
|
|
|
|
|
;<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> LFB
|
|
|
|
|
;<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
jmp .fail
|
2006-10-06 08:09:41 +02:00
|
|
|
|
|
2007-04-18 08:37:14 +02:00
|
|
|
|
align 4
|
2006-10-06 08:09:41 +02:00
|
|
|
|
.user_space:
|
2007-04-18 08:37:14 +02:00
|
|
|
|
test eax, PG_MAP
|
|
|
|
|
jnz .err_access ;<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
;<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ?
|
|
|
|
|
|
2006-10-06 08:09:41 +02:00
|
|
|
|
shr ebx, 12
|
2006-10-10 07:11:30 +02:00
|
|
|
|
mov ecx, ebx
|
|
|
|
|
shr ecx, 10
|
|
|
|
|
mov edx, [master_tab+ecx*4]
|
2007-04-18 08:37:14 +02:00
|
|
|
|
test edx, PG_MAP
|
|
|
|
|
jz .fail ;<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
;<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2006-10-06 08:09:41 +02:00
|
|
|
|
|
2007-02-20 13:05:24 +01:00
|
|
|
|
mov eax, [page_tabs+ebx*4]
|
2006-10-06 08:09:41 +02:00
|
|
|
|
test eax, 2
|
2007-04-18 08:37:14 +02:00
|
|
|
|
jz .fail ;<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD> ;
|
|
|
|
|
;<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2006-10-20 16:02:26 +02:00
|
|
|
|
.alloc:
|
2006-10-06 08:09:41 +02:00
|
|
|
|
call alloc_page
|
|
|
|
|
and eax, eax
|
2007-04-18 08:37:14 +02:00
|
|
|
|
jz .fail
|
2006-10-06 08:09:41 +02:00
|
|
|
|
|
|
|
|
|
stdcall map_page,[ebp-4],eax,dword PG_UW
|
|
|
|
|
|
2006-10-20 16:02:26 +02:00
|
|
|
|
mov edi, [ebp-4]
|
|
|
|
|
and edi, 0xFFFFF000
|
2006-10-06 08:09:41 +02:00
|
|
|
|
mov ecx, 1024
|
|
|
|
|
xor eax, eax
|
2006-10-20 16:02:26 +02:00
|
|
|
|
cld
|
|
|
|
|
rep stosd
|
2006-10-06 08:09:41 +02:00
|
|
|
|
.exit:
|
|
|
|
|
mov esp, ebp
|
|
|
|
|
popad
|
|
|
|
|
add esp, 4
|
|
|
|
|
iretd
|
2007-04-18 08:37:14 +02:00
|
|
|
|
|
|
|
|
|
.err_access:
|
|
|
|
|
;<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
jmp .fail
|
|
|
|
|
|
|
|
|
|
.kernel_space:
|
|
|
|
|
test eax, PG_MAP
|
|
|
|
|
jz .fail ;<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
|
|
|
|
|
test eax, 4 ;U/S
|
|
|
|
|
jnz .fail ;<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
;<EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
test eax, 8
|
|
|
|
|
jnz .fail ;<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
;<EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD> P4/Xeon
|
|
|
|
|
|
|
|
|
|
;<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
|
|
|
|
|
cmp ebx, tss._io_map_0
|
|
|
|
|
jb .fail
|
|
|
|
|
|
|
|
|
|
cmp ebx, tss._io_map_0+8192
|
|
|
|
|
jae .fail
|
|
|
|
|
|
|
|
|
|
; io permission map
|
|
|
|
|
; copy-on-write protection
|
|
|
|
|
|
|
|
|
|
call alloc_page
|
|
|
|
|
and eax, eax
|
|
|
|
|
jz .fail
|
|
|
|
|
|
|
|
|
|
push eax
|
|
|
|
|
stdcall map_page,[ebp-4],eax,dword PG_SW
|
|
|
|
|
pop eax
|
|
|
|
|
mov edi, [.err_addr]
|
|
|
|
|
and edi, -4096
|
|
|
|
|
lea esi, [edi+(not tss._io_map_0)+1]; -tss._io_map_0
|
|
|
|
|
|
|
|
|
|
mov ebx, esi
|
|
|
|
|
shr ebx, 12
|
|
|
|
|
mov edx, [current_slot]
|
|
|
|
|
or eax, PG_SW
|
|
|
|
|
mov [edx+APPDATA.io_map+ebx*4], eax
|
|
|
|
|
|
|
|
|
|
add esi, [default_io_map]
|
|
|
|
|
mov ecx, 4096/4
|
|
|
|
|
cld
|
|
|
|
|
rep movsd
|
|
|
|
|
jmp .exit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;<EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
|
|
|
|
|
.core_tabs:
|
2006-10-10 07:11:30 +02:00
|
|
|
|
.fail:
|
|
|
|
|
mov esp, ebp
|
|
|
|
|
popad
|
|
|
|
|
add esp, 4
|
|
|
|
|
|
2007-04-18 08:37:14 +02:00
|
|
|
|
; iretd
|
|
|
|
|
|
2006-10-10 07:11:30 +02:00
|
|
|
|
save_ring3_context ;debugger support
|
|
|
|
|
|
|
|
|
|
mov bl, 14
|
|
|
|
|
jmp exc_c
|
|
|
|
|
iretd
|
2006-10-06 08:09:41 +02:00
|
|
|
|
endp
|
|
|
|
|
|
|
|
|
|
align 4
|
|
|
|
|
proc map_mem stdcall, lin_addr:dword,pdir:dword,\
|
|
|
|
|
ofs:dword,buf_size:dword
|
|
|
|
|
mov eax, [buf_size]
|
|
|
|
|
test eax, eax
|
|
|
|
|
jz .exit
|
|
|
|
|
|
|
|
|
|
mov eax, [pdir]
|
|
|
|
|
and eax, 0xFFFFF000
|
|
|
|
|
|
|
|
|
|
stdcall map_page,[ipc_pdir],eax,dword PG_UW
|
|
|
|
|
mov ebx, [ofs]
|
|
|
|
|
shr ebx, 22
|
|
|
|
|
mov esi, [ipc_pdir]
|
|
|
|
|
mov edi, [ipc_ptab]
|
|
|
|
|
mov eax, [esi+ebx*4]
|
|
|
|
|
and eax, 0xFFFFF000
|
|
|
|
|
test eax, eax
|
|
|
|
|
jz .exit
|
|
|
|
|
stdcall map_page,edi,eax,dword PG_UW
|
|
|
|
|
; inc ebx
|
|
|
|
|
; add edi, 0x1000
|
|
|
|
|
; mov eax, [esi+ebx*4]
|
|
|
|
|
; test eax, eax
|
|
|
|
|
; jz @f
|
|
|
|
|
; and eax, 0xFFFFF000
|
|
|
|
|
; stdcall map_page, edi, eax
|
|
|
|
|
|
|
|
|
|
@@: mov edi, [lin_addr]
|
|
|
|
|
and edi, 0xFFFFF000
|
|
|
|
|
mov ecx, [buf_size]
|
|
|
|
|
add ecx, 4095
|
|
|
|
|
shr ecx, 12
|
|
|
|
|
inc ecx
|
|
|
|
|
|
|
|
|
|
mov edx, [ofs]
|
|
|
|
|
shr edx, 12
|
|
|
|
|
and edx, 0x3FF
|
|
|
|
|
mov esi, [ipc_ptab]
|
|
|
|
|
|
|
|
|
|
.map: mov eax, [esi+edx*4]
|
|
|
|
|
and eax, 0xFFFFF000
|
|
|
|
|
test eax, eax
|
|
|
|
|
jz .exit
|
|
|
|
|
stdcall map_page,edi,eax,dword PG_UW
|
|
|
|
|
add edi, 0x1000
|
|
|
|
|
inc edx
|
|
|
|
|
dec ecx
|
|
|
|
|
jnz .map
|
|
|
|
|
|
|
|
|
|
.exit:
|
|
|
|
|
ret
|
|
|
|
|
endp
|
|
|
|
|
|
|
|
|
|
align 4
|
|
|
|
|
proc map_memEx stdcall, lin_addr:dword,pdir:dword,\
|
|
|
|
|
ofs:dword,buf_size:dword
|
|
|
|
|
mov eax, [buf_size]
|
|
|
|
|
test eax, eax
|
|
|
|
|
jz .exit
|
|
|
|
|
|
|
|
|
|
mov eax, [pdir]
|
|
|
|
|
and eax, 0xFFFFF000
|
|
|
|
|
|
|
|
|
|
stdcall map_page,[proc_mem_pdir],eax,dword PG_UW
|
|
|
|
|
mov ebx, [ofs]
|
|
|
|
|
shr ebx, 22
|
|
|
|
|
mov esi, [proc_mem_pdir]
|
|
|
|
|
mov edi, [proc_mem_tab]
|
|
|
|
|
mov eax, [esi+ebx*4]
|
|
|
|
|
and eax, 0xFFFFF000
|
|
|
|
|
test eax, eax
|
|
|
|
|
jz .exit
|
|
|
|
|
stdcall map_page,edi,eax,dword PG_UW
|
|
|
|
|
|
|
|
|
|
@@: mov edi, [lin_addr]
|
|
|
|
|
and edi, 0xFFFFF000
|
|
|
|
|
mov ecx, [buf_size]
|
|
|
|
|
add ecx, 4095
|
|
|
|
|
shr ecx, 12
|
|
|
|
|
inc ecx
|
|
|
|
|
|
|
|
|
|
mov edx, [ofs]
|
|
|
|
|
shr edx, 12
|
|
|
|
|
and edx, 0x3FF
|
|
|
|
|
mov esi, [proc_mem_tab]
|
|
|
|
|
|
|
|
|
|
.map: mov eax, [esi+edx*4]
|
|
|
|
|
; and eax, 0xFFFFF000
|
|
|
|
|
; test eax, eax
|
|
|
|
|
; jz .exit
|
|
|
|
|
stdcall map_page,edi,eax,dword PG_UW
|
|
|
|
|
add edi, 0x1000
|
|
|
|
|
inc edx
|
|
|
|
|
dec ecx
|
|
|
|
|
jnz .map
|
|
|
|
|
.exit:
|
|
|
|
|
ret
|
|
|
|
|
endp
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sys_IPC:
|
|
|
|
|
;input:
|
|
|
|
|
; eax=1 - set ipc buffer area
|
|
|
|
|
; ebx=address of buffer
|
|
|
|
|
; ecx=size of buffer
|
|
|
|
|
; eax=2 - send message
|
|
|
|
|
; ebx=PID
|
|
|
|
|
; ecx=address of message
|
|
|
|
|
; edx=size of message
|
|
|
|
|
|
|
|
|
|
cmp eax,1
|
|
|
|
|
jne @f
|
|
|
|
|
call set_ipc_buff
|
|
|
|
|
mov [esp+36], eax
|
|
|
|
|
ret
|
|
|
|
|
@@:
|
|
|
|
|
cmp eax, 2
|
|
|
|
|
jne @f
|
|
|
|
|
stdcall sys_ipc_send, ebx, ecx, edx
|
|
|
|
|
mov [esp+36], eax
|
|
|
|
|
ret
|
|
|
|
|
@@:
|
|
|
|
|
xor eax, eax
|
|
|
|
|
not eax
|
|
|
|
|
mov [esp+36], eax
|
|
|
|
|
ret
|
|
|
|
|
|
|
|
|
|
align 4
|
|
|
|
|
proc set_ipc_buff
|
|
|
|
|
|
2007-04-18 08:37:14 +02:00
|
|
|
|
mov eax,[current_slot]
|
2006-10-06 08:09:41 +02:00
|
|
|
|
pushf
|
|
|
|
|
cli
|
2007-04-18 08:37:14 +02:00
|
|
|
|
mov [eax+APPDATA.ipc_start],ebx ;set fields in extended information area
|
|
|
|
|
mov [eax+APPDATA.ipc_size],ecx
|
2006-10-06 08:09:41 +02:00
|
|
|
|
|
|
|
|
|
add ecx, ebx
|
|
|
|
|
add ecx, 4095
|
|
|
|
|
and ecx, not 4095
|
|
|
|
|
|
|
|
|
|
.touch: mov eax, [ebx]
|
|
|
|
|
add ebx, 0x1000
|
|
|
|
|
cmp ebx, ecx
|
|
|
|
|
jna .touch
|
|
|
|
|
|
|
|
|
|
popf
|
|
|
|
|
xor eax, eax
|
|
|
|
|
ret
|
|
|
|
|
endp
|
|
|
|
|
|
|
|
|
|
proc sys_ipc_send stdcall, PID:dword, msg_addr:dword, msg_size:dword
|
|
|
|
|
locals
|
|
|
|
|
dst_slot dd ?
|
|
|
|
|
dst_offset dd ?
|
|
|
|
|
buf_size dd ?
|
|
|
|
|
endl
|
|
|
|
|
|
|
|
|
|
pushf
|
|
|
|
|
cli
|
|
|
|
|
|
|
|
|
|
mov eax, [PID]
|
|
|
|
|
call pid_to_slot
|
|
|
|
|
test eax,eax
|
|
|
|
|
jz .no_pid
|
|
|
|
|
|
|
|
|
|
mov [dst_slot], eax
|
|
|
|
|
shl eax,8
|
2007-02-28 11:51:05 +01:00
|
|
|
|
mov edi,[eax+SLOT_BASE+0xa0] ;is ipc area defined?
|
2006-10-06 08:09:41 +02:00
|
|
|
|
test edi,edi
|
|
|
|
|
jz .no_ipc_area
|
|
|
|
|
|
|
|
|
|
mov ebx, edi
|
2007-04-18 08:37:14 +02:00
|
|
|
|
; add edi, new_app_base
|
2006-10-06 08:09:41 +02:00
|
|
|
|
and ebx, 0xFFF
|
|
|
|
|
mov [dst_offset], ebx
|
|
|
|
|
|
2007-02-28 11:51:05 +01:00
|
|
|
|
mov esi, [eax+SLOT_BASE+0xa4]
|
2006-10-06 08:09:41 +02:00
|
|
|
|
mov [buf_size], esi
|
|
|
|
|
|
2007-02-28 11:51:05 +01:00
|
|
|
|
stdcall map_mem, [ipc_tmp], [SLOT_BASE+eax+0xB8],\
|
2006-10-06 08:09:41 +02:00
|
|
|
|
edi, esi
|
|
|
|
|
|
|
|
|
|
mov edi, [dst_offset]
|
|
|
|
|
add edi, [ipc_tmp]
|
|
|
|
|
cmp dword [edi], 0
|
|
|
|
|
jnz .ipc_blocked ;if dword [buffer]<>0 - ipc blocked now
|
2006-12-02 09:18:48 +01:00
|
|
|
|
|
2006-10-06 08:09:41 +02:00
|
|
|
|
mov ebx, dword [edi+4]
|
|
|
|
|
mov edx, ebx
|
|
|
|
|
add ebx, 8
|
|
|
|
|
add ebx, [msg_size]
|
|
|
|
|
cmp ebx, [buf_size]
|
|
|
|
|
ja .buffer_overflow ;esi<0 - not enough memory in buffer
|
2006-12-02 09:18:48 +01:00
|
|
|
|
|
2006-10-06 08:09:41 +02:00
|
|
|
|
mov dword [edi+4], ebx
|
|
|
|
|
mov eax,[TASK_BASE]
|
|
|
|
|
mov eax, [eax+0x04] ;eax - our PID
|
|
|
|
|
mov edi, [dst_offset]
|
|
|
|
|
add edi, [ipc_tmp]
|
|
|
|
|
add edi, edx
|
|
|
|
|
mov [edi], eax
|
|
|
|
|
mov ecx, [msg_size]
|
|
|
|
|
|
|
|
|
|
mov [edi+4], ecx
|
|
|
|
|
add edi, 8
|
|
|
|
|
mov esi, [msg_addr]
|
2007-04-18 08:37:14 +02:00
|
|
|
|
; add esi, new_app_base
|
2006-10-06 08:09:41 +02:00
|
|
|
|
cld
|
|
|
|
|
rep movsb
|
|
|
|
|
|
|
|
|
|
mov ebx, [ipc_tmp]
|
|
|
|
|
mov edx, ebx
|
|
|
|
|
shr ebx, 12
|
|
|
|
|
xor eax, eax
|
2007-02-20 13:05:24 +01:00
|
|
|
|
mov [page_tabs+ebx*4], eax
|
2006-10-06 08:09:41 +02:00
|
|
|
|
invlpg [edx]
|
|
|
|
|
|
|
|
|
|
mov ebx, [ipc_pdir]
|
|
|
|
|
mov edx, ebx
|
|
|
|
|
shr ebx, 12
|
|
|
|
|
xor eax, eax
|
2007-02-20 13:05:24 +01:00
|
|
|
|
mov [page_tabs+ebx*4], eax
|
2006-10-06 08:09:41 +02:00
|
|
|
|
invlpg [edx]
|
|
|
|
|
|
|
|
|
|
mov ebx, [ipc_ptab]
|
|
|
|
|
mov edx, ebx
|
|
|
|
|
shr ebx, 12
|
|
|
|
|
xor eax, eax
|
2007-02-20 13:05:24 +01:00
|
|
|
|
mov [page_tabs+ebx*4], eax
|
2006-10-06 08:09:41 +02:00
|
|
|
|
invlpg [edx]
|
|
|
|
|
|
|
|
|
|
mov eax, [dst_slot]
|
|
|
|
|
shl eax, 8
|
2007-02-28 11:51:05 +01:00
|
|
|
|
or [eax+SLOT_BASE+0xA8],dword 0x40
|
2006-10-06 08:09:41 +02:00
|
|
|
|
cmp dword [check_idle_semaphore],20
|
|
|
|
|
jge .ipc_no_cis
|
|
|
|
|
|
|
|
|
|
mov dword [check_idle_semaphore],5
|
|
|
|
|
.ipc_no_cis:
|
|
|
|
|
popf
|
|
|
|
|
xor eax, eax
|
|
|
|
|
ret
|
|
|
|
|
.no_pid:
|
|
|
|
|
popf
|
|
|
|
|
mov eax, 4
|
|
|
|
|
ret
|
|
|
|
|
.no_ipc_area:
|
|
|
|
|
popf
|
|
|
|
|
xor eax, eax
|
|
|
|
|
inc eax
|
|
|
|
|
ret
|
|
|
|
|
.ipc_blocked:
|
|
|
|
|
popf
|
|
|
|
|
mov eax, 2
|
|
|
|
|
ret
|
|
|
|
|
.buffer_overflow:
|
|
|
|
|
popf
|
|
|
|
|
mov eax, 3
|
|
|
|
|
ret
|
|
|
|
|
endp
|
|
|
|
|
|
|
|
|
|
align 4
|
2006-10-08 09:48:38 +02:00
|
|
|
|
sysfn_meminfo:
|
2006-10-06 08:09:41 +02:00
|
|
|
|
|
2007-04-18 08:37:14 +02:00
|
|
|
|
; add ebx, new_app_base
|
|
|
|
|
cmp ebx, OS_BASE
|
|
|
|
|
jae .fail
|
2006-10-10 07:11:30 +02:00
|
|
|
|
|
2006-10-06 08:09:41 +02:00
|
|
|
|
mov eax, [pg_data.pages_count]
|
2006-10-08 09:48:38 +02:00
|
|
|
|
mov [ebx], eax
|
2006-10-10 07:11:30 +02:00
|
|
|
|
shl eax, 12
|
|
|
|
|
mov [esp+36], eax
|
2006-10-08 09:48:38 +02:00
|
|
|
|
mov ecx, [pg_data.pages_free]
|
|
|
|
|
mov [ebx+4], ecx
|
|
|
|
|
mov edx, [pg_data.pages_faults]
|
|
|
|
|
mov [ebx+8], edx
|
|
|
|
|
mov esi, [heap_size]
|
|
|
|
|
mov [ebx+12], esi
|
|
|
|
|
mov edi, [heap_free]
|
|
|
|
|
mov [ebx+16], edi
|
|
|
|
|
mov eax, [heap_blocks]
|
|
|
|
|
mov [ebx+20], eax
|
|
|
|
|
mov ecx, [free_blocks]
|
|
|
|
|
mov [ebx+24], ecx
|
2006-10-10 07:11:30 +02:00
|
|
|
|
ret
|
|
|
|
|
.fail:
|
|
|
|
|
mov dword [esp+36], -1
|
2006-10-06 08:09:41 +02:00
|
|
|
|
ret
|
|
|
|
|
|
|
|
|
|
align 4
|
|
|
|
|
new_services:
|
|
|
|
|
|
|
|
|
|
cmp eax,4
|
|
|
|
|
jle sys_sheduler
|
|
|
|
|
|
2006-10-08 09:48:38 +02:00
|
|
|
|
cmp eax, 11
|
2006-10-06 08:09:41 +02:00
|
|
|
|
jb .fail
|
|
|
|
|
ja @f
|
|
|
|
|
|
2006-10-20 16:02:26 +02:00
|
|
|
|
call init_heap
|
2006-10-06 08:09:41 +02:00
|
|
|
|
mov [esp+36], eax
|
|
|
|
|
ret
|
|
|
|
|
@@:
|
|
|
|
|
cmp eax, 12
|
|
|
|
|
ja @f
|
|
|
|
|
|
|
|
|
|
stdcall user_alloc, ebx
|
|
|
|
|
mov [esp+36], eax
|
|
|
|
|
ret
|
|
|
|
|
@@:
|
|
|
|
|
cmp eax, 13
|
|
|
|
|
ja @f
|
|
|
|
|
stdcall user_free, ebx
|
|
|
|
|
mov [esp+36], eax
|
|
|
|
|
ret
|
|
|
|
|
@@:
|
|
|
|
|
cmp eax, 14
|
|
|
|
|
ja @f
|
2007-04-18 08:37:14 +02:00
|
|
|
|
cmp ebx, OS_BASE
|
|
|
|
|
jae .fail
|
2006-12-02 09:18:48 +01:00
|
|
|
|
stdcall get_event_ex, ebx, ecx
|
|
|
|
|
mov [esp+36], eax
|
2006-10-06 08:09:41 +02:00
|
|
|
|
ret
|
|
|
|
|
@@:
|
|
|
|
|
cmp eax, 15
|
|
|
|
|
ja @f
|
2007-04-18 08:37:14 +02:00
|
|
|
|
mov ecx, [current_slot]
|
|
|
|
|
mov eax, [ecx+APPDATA.fpu_handler]
|
|
|
|
|
mov [ecx+APPDATA.fpu_handler], ebx
|
2006-10-06 08:09:41 +02:00
|
|
|
|
mov [esp+36], eax
|
|
|
|
|
ret
|
|
|
|
|
@@:
|
|
|
|
|
cmp eax, 16
|
|
|
|
|
ja @f
|
|
|
|
|
|
2006-10-20 16:02:26 +02:00
|
|
|
|
test ebx, ebx
|
|
|
|
|
jz .fail
|
2007-04-18 08:37:14 +02:00
|
|
|
|
cmp ebx, OS_BASE
|
|
|
|
|
jae .fail
|
2006-10-06 08:09:41 +02:00
|
|
|
|
stdcall get_service, ebx
|
|
|
|
|
mov [esp+36], eax
|
|
|
|
|
ret
|
|
|
|
|
@@:
|
|
|
|
|
cmp eax, 17
|
|
|
|
|
ja @f
|
2007-02-27 12:47:52 +01:00
|
|
|
|
call srv_handlerEx ;ebx
|
2006-10-06 08:09:41 +02:00
|
|
|
|
mov [esp+36], eax
|
|
|
|
|
ret
|
2006-10-07 11:47:03 +02:00
|
|
|
|
@@:
|
|
|
|
|
cmp eax, 18
|
|
|
|
|
ja @f
|
2007-04-18 08:37:14 +02:00
|
|
|
|
mov ecx, [current_slot]
|
|
|
|
|
mov eax, [ecx+APPDATA.sse_handler]
|
|
|
|
|
mov [ecx+APPDATA.sse_handler], ebx
|
2006-10-07 11:47:03 +02:00
|
|
|
|
mov [esp+36], eax
|
|
|
|
|
ret
|
2006-10-27 17:08:19 +02:00
|
|
|
|
@@:
|
|
|
|
|
cmp eax, 19
|
2007-04-02 16:29:39 +02:00
|
|
|
|
ja @f
|
2007-04-18 08:37:14 +02:00
|
|
|
|
cmp ebx, OS_BASE
|
|
|
|
|
jae .fail
|
2006-10-27 17:08:19 +02:00
|
|
|
|
stdcall load_library, ebx
|
|
|
|
|
mov [esp+36], eax
|
|
|
|
|
ret
|
2007-04-02 16:29:39 +02:00
|
|
|
|
@@:
|
2007-05-14 06:27:51 +02:00
|
|
|
|
cmp eax, 20
|
|
|
|
|
ja .fail
|
|
|
|
|
mov eax, ecx
|
|
|
|
|
call user_realloc
|
|
|
|
|
mov [esp+36], eax
|
|
|
|
|
ret
|
2006-10-06 08:09:41 +02:00
|
|
|
|
.fail:
|
|
|
|
|
xor eax, eax
|
|
|
|
|
mov [esp+36], eax
|
|
|
|
|
ret
|
|
|
|
|
|
|
|
|
|
align 4
|
|
|
|
|
proc init_mtrr
|
|
|
|
|
|
2007-03-10 17:04:35 +01:00
|
|
|
|
cmp [BOOT_VAR+0x901c],byte 2
|
2006-10-06 08:09:41 +02:00
|
|
|
|
je .exit
|
|
|
|
|
|
2006-11-16 06:47:31 +01:00
|
|
|
|
bt [cpu_caps], CAPS_MTRR
|
|
|
|
|
jnc .exit
|
|
|
|
|
|
2006-10-06 08:09:41 +02:00
|
|
|
|
mov eax, cr0
|
|
|
|
|
or eax, 0x60000000 ;disable caching
|
|
|
|
|
mov cr0, eax
|
|
|
|
|
wbinvd ;invalidate cache
|
|
|
|
|
|
|
|
|
|
mov ecx, 0x2FF
|
|
|
|
|
rdmsr ;
|
|
|
|
|
push eax
|
|
|
|
|
|
|
|
|
|
xor edx, edx
|
|
|
|
|
xor eax, eax
|
|
|
|
|
mov ecx, 0x2FF
|
|
|
|
|
wrmsr ;disable all MTRR
|
|
|
|
|
|
|
|
|
|
stdcall set_mtrr, dword 0,dword 0,[MEM_AMOUNT],MEM_WB
|
|
|
|
|
stdcall set_mtrr, dword 1,[LFBAddress],[LFBSize],MEM_WC
|
|
|
|
|
xor edx, edx
|
|
|
|
|
xor eax, eax
|
|
|
|
|
mov ecx, 0x204
|
|
|
|
|
mov ebx, 6
|
|
|
|
|
@@:
|
|
|
|
|
wrmsr ;disable unused MTRR
|
|
|
|
|
inc ecx
|
|
|
|
|
wrmsr
|
|
|
|
|
inc ecx
|
|
|
|
|
dec ebx
|
|
|
|
|
jnz @b
|
|
|
|
|
|
|
|
|
|
wbinvd ;again invalidate
|
|
|
|
|
|
|
|
|
|
pop eax
|
|
|
|
|
or eax, 0x800 ;set default memtype to UC
|
|
|
|
|
and al, 0xF0
|
|
|
|
|
mov ecx, 0x2FF
|
|
|
|
|
wrmsr ;and enable MTRR
|
|
|
|
|
|
|
|
|
|
mov eax, cr0
|
|
|
|
|
and eax, not 0x60000000
|
|
|
|
|
mov cr0, eax ; enable caching
|
|
|
|
|
.exit:
|
|
|
|
|
ret
|
|
|
|
|
endp
|
|
|
|
|
|
|
|
|
|
align 4
|
|
|
|
|
proc set_mtrr stdcall, reg:dword,base:dword,size:dword,mem_type:dword
|
|
|
|
|
|
|
|
|
|
xor edx, edx
|
|
|
|
|
mov eax, [base]
|
|
|
|
|
or eax, [mem_type]
|
|
|
|
|
mov ecx, [reg]
|
|
|
|
|
lea ecx, [0x200+ecx*2]
|
|
|
|
|
wrmsr
|
|
|
|
|
|
|
|
|
|
mov ebx, [size]
|
|
|
|
|
dec ebx
|
|
|
|
|
mov eax, 0xFFFFFFFF
|
|
|
|
|
mov edx, 0x0000000F
|
|
|
|
|
sub eax, ebx
|
|
|
|
|
sbb edx, 0
|
|
|
|
|
or eax, 0x800
|
|
|
|
|
inc ecx
|
|
|
|
|
wrmsr
|
|
|
|
|
ret
|
|
|
|
|
endp
|
|
|
|
|
|
2007-04-18 08:37:14 +02:00
|
|
|
|
|
|
|
|
|
|
2006-10-10 07:11:30 +02:00
|
|
|
|
align 4
|
|
|
|
|
proc stall stdcall, delay:dword
|
|
|
|
|
push ecx
|
|
|
|
|
push edx
|
|
|
|
|
push ebx
|
|
|
|
|
push eax
|
|
|
|
|
|
|
|
|
|
mov eax, [delay]
|
|
|
|
|
mul [stall_mcs]
|
|
|
|
|
mov ebx, eax ;low
|
|
|
|
|
mov ecx, edx ;high
|
|
|
|
|
rdtsc
|
|
|
|
|
add ebx, eax
|
|
|
|
|
adc ecx,edx
|
|
|
|
|
@@:
|
|
|
|
|
rdtsc
|
|
|
|
|
sub eax, ebx
|
|
|
|
|
sbb edx, ecx
|
|
|
|
|
jb @B
|
|
|
|
|
|
|
|
|
|
pop eax
|
|
|
|
|
pop ebx
|
|
|
|
|
pop edx
|
|
|
|
|
pop ecx
|
|
|
|
|
ret
|
|
|
|
|
endp
|
|
|
|
|
|
2007-05-24 09:36:48 +02:00
|
|
|
|
align 4
|
|
|
|
|
proc create_ring_buffer stdcall, size:dword, flags:dword
|
|
|
|
|
locals
|
|
|
|
|
buf_ptr dd ?
|
|
|
|
|
endl
|
|
|
|
|
|
|
|
|
|
mov eax, [size]
|
|
|
|
|
test eax, eax
|
|
|
|
|
jz .fail
|
|
|
|
|
|
|
|
|
|
add eax, eax
|
|
|
|
|
stdcall alloc_kernel_space, eax
|
|
|
|
|
test eax, eax
|
|
|
|
|
jz .fail
|
|
|
|
|
|
|
|
|
|
mov [buf_ptr], eax
|
|
|
|
|
|
|
|
|
|
mov ebx, [size]
|
|
|
|
|
shr ebx, 12
|
|
|
|
|
push ebx
|
|
|
|
|
|
|
|
|
|
stdcall alloc_pages, ebx
|
|
|
|
|
pop ecx
|
|
|
|
|
|
|
|
|
|
test eax, eax
|
|
|
|
|
jz .mm_fail
|
|
|
|
|
|
|
|
|
|
or eax, [flags]
|
|
|
|
|
mov edi, [buf_ptr]
|
|
|
|
|
mov ebx, [buf_ptr]
|
|
|
|
|
mov edx, ecx
|
|
|
|
|
shl edx, 2
|
|
|
|
|
shr edi, 10
|
|
|
|
|
@@:
|
|
|
|
|
mov [page_tabs+edi], eax
|
|
|
|
|
mov [page_tabs+edi+edx], eax
|
|
|
|
|
invlpg [ebx]
|
|
|
|
|
invlpg [ebx+esi]
|
|
|
|
|
add eax, 0x1000
|
|
|
|
|
add ebx, 0x1000
|
|
|
|
|
add edi, 4
|
|
|
|
|
dec ecx
|
|
|
|
|
jnz @B
|
|
|
|
|
|
|
|
|
|
mov eax, [buf_ptr]
|
|
|
|
|
ret
|
|
|
|
|
.mm_fail:
|
|
|
|
|
stdcall free_kernel_space, [buf_ptr]
|
|
|
|
|
xor eax, eax
|
|
|
|
|
.fail:
|
|
|
|
|
ret
|
|
|
|
|
endp
|
2007-04-18 08:37:14 +02:00
|
|
|
|
|
|
|
|
|
if 0
|
|
|
|
|
push eax
|
|
|
|
|
push edx
|
|
|
|
|
mov edx, 0x400 ;bochs
|
|
|
|
|
mov al,0xff ;bochs
|
|
|
|
|
out dx, al ;bochs
|
|
|
|
|
pop edx
|
|
|
|
|
pop eax
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|