2012-06-01 21:09:50 +02:00
|
|
|
|
; version: 0.6
|
|
|
|
|
; last update: 01/06/2012
|
|
|
|
|
; written by: Lipatov Kirill aka Leency
|
|
|
|
|
; changes: removed old code
|
|
|
|
|
; added edit_box
|
|
|
|
|
; using system colors
|
|
|
|
|
;-----------------------------------------------------------
|
|
|
|
|
; version: 0.5
|
|
|
|
|
; date: 07/10/2010
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; written by: Marat Zakiyanov aka Mario79, aka Mario
|
|
|
|
|
; changes: reducing the size of the binary code,
|
|
|
|
|
; program uses far less memory while running
|
|
|
|
|
; (>0x7000, the old version used >0x100000),
|
|
|
|
|
; process only net event at start with parameter
|
|
|
|
|
;-----------------------------------------------------------
|
2012-06-01 21:09:50 +02:00
|
|
|
|
; version: 0.3 -0.4
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; written by: CleverMouse
|
|
|
|
|
;
|
|
|
|
|
;-----------------------------------------------------------
|
2010-10-06 15:29:55 +02:00
|
|
|
|
; wget 0.2 by barsuk
|
|
|
|
|
; based on Menuet Httpc
|
|
|
|
|
|
|
|
|
|
|
2012-06-01 21:09:50 +02:00
|
|
|
|
;TODO
|
|
|
|
|
;downloading status indication in window
|
|
|
|
|
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
; Enabling debugging puts stuff to the debug board
|
2010-10-07 11:38:59 +02:00
|
|
|
|
DEBUGGING_ENABLED equ 1
|
|
|
|
|
DEBUGGING_DISABLED equ 0
|
|
|
|
|
DEBUGGING_STATE equ DEBUGGING_ENABLED
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
use32
|
2010-10-07 11:38:59 +02:00
|
|
|
|
org 0x0
|
|
|
|
|
db 'MENUET01' ; header
|
|
|
|
|
dd 0x01 ; header version
|
|
|
|
|
dd START ; entry point
|
|
|
|
|
dd IM_END ; image size
|
|
|
|
|
dd I_END ;0x100000 ; required memory
|
|
|
|
|
dd stacktop ; esp
|
|
|
|
|
dd params ; I_PARAM
|
|
|
|
|
dd 0x0 ; I_Path
|
|
|
|
|
|
|
|
|
|
include 'lang.inc'
|
|
|
|
|
include '../../../macros.inc'
|
2012-06-01 21:09:50 +02:00
|
|
|
|
include '../../../proc32.inc'
|
|
|
|
|
include '../../../develop/libraries/box_lib/load_lib.mac'
|
|
|
|
|
include '../../../develop/libraries/box_lib/trunk/box_lib.mac'
|
|
|
|
|
include 'dll.inc'
|
|
|
|
|
include 'debug.inc'
|
2010-10-07 11:38:59 +02:00
|
|
|
|
|
|
|
|
|
URLMAXLEN equ 256 ; maximum length of url string
|
|
|
|
|
|
|
|
|
|
primary_buffer_size equ 4096
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2012-06-01 21:09:50 +02:00
|
|
|
|
sc system_colors
|
|
|
|
|
|
|
|
|
|
@use_library
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
; Memory usage
|
|
|
|
|
; webpage headers at buf_headers
|
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
START: ; start of execution
|
|
|
|
|
;dps <"Program started",13,10>
|
|
|
|
|
; prepare webAddr area
|
2012-06-01 21:09:50 +02:00
|
|
|
|
load_libraries l_libs_start,l_libs_end
|
|
|
|
|
mov ebp,lib_0
|
|
|
|
|
cmp dword [ebp+ll_struc_size-4],0
|
|
|
|
|
jz @f
|
|
|
|
|
mcall -1 ;exit not correct
|
|
|
|
|
@@:
|
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov al,' '
|
|
|
|
|
mov edi,webAddr
|
|
|
|
|
mov ecx,URLMAXLEN
|
|
|
|
|
cld
|
|
|
|
|
rep stosb
|
|
|
|
|
xor eax,eax
|
|
|
|
|
stosb
|
|
|
|
|
; prepare document area
|
|
|
|
|
mov al,'/'
|
|
|
|
|
mov edi,document
|
|
|
|
|
cld
|
|
|
|
|
stosb
|
|
|
|
|
mov al,' '
|
|
|
|
|
mov ecx,URLMAXLEN-1
|
|
|
|
|
rep stosb
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; create local heap
|
|
|
|
|
mcall 68,11
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
call load_settings
|
|
|
|
|
cmp [params],byte 0
|
|
|
|
|
jz prepare_event ;red
|
|
|
|
|
|
2012-06-01 21:09:50 +02:00
|
|
|
|
|
|
|
|
|
mcall 40, 10000000b ; only net event!!!
|
2010-10-07 11:38:59 +02:00
|
|
|
|
|
|
|
|
|
; we have an url
|
|
|
|
|
mov edi,document_user
|
|
|
|
|
mov al,' '
|
|
|
|
|
mov ecx,URLMAXLEN
|
|
|
|
|
rep stosb
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov esi,params
|
|
|
|
|
mov edi,document_user
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
.copy_param:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov al,[esi]
|
|
|
|
|
cmp al,0
|
|
|
|
|
jz .done
|
|
|
|
|
|
|
|
|
|
cmp al,' '
|
|
|
|
|
jz .done_inc
|
|
|
|
|
|
|
|
|
|
mov [edi],al
|
|
|
|
|
inc esi
|
|
|
|
|
inc edi
|
|
|
|
|
jmp .copy_param
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
.done_inc:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; url is followed by shared memory name.
|
|
|
|
|
inc esi
|
2010-10-06 15:29:55 +02:00
|
|
|
|
.done:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov [shared_name],esi
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov ah,22 ; strange way to tell that socket should be opened...
|
2010-10-06 15:29:55 +02:00
|
|
|
|
call socket_commands
|
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
jmp still
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
prepare_event:
|
|
|
|
|
; Report events
|
|
|
|
|
; Stack 8 + defaults
|
2012-06-01 21:09:50 +02:00
|
|
|
|
mcall 40,10100111b
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
red: ; redraw
|
|
|
|
|
call draw_window
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
still:
|
|
|
|
|
mcall 23,1 ; wait here for event
|
|
|
|
|
cmp eax,1 ; redraw request ?
|
|
|
|
|
je red
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp eax,2 ; key in buffer ?
|
|
|
|
|
je key
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp eax,3 ; button in buffer ?
|
|
|
|
|
je button
|
2012-06-01 21:09:50 +02:00
|
|
|
|
|
|
|
|
|
cmp eax,6 ; mouse in buffer ?
|
|
|
|
|
je mouse
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; Get the web page data from the remote server
|
|
|
|
|
call read_incoming_data
|
|
|
|
|
mov eax,[status]
|
|
|
|
|
mov [prev_status],eax
|
|
|
|
|
mcall 53,6,[socket]
|
|
|
|
|
mov [status],eax
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp [prev_status],4
|
|
|
|
|
jge no_send
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp [status],4
|
|
|
|
|
jne no_send
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov [onoff],1
|
|
|
|
|
call send_request
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
no_send:
|
|
|
|
|
call print_status
|
|
|
|
|
|
|
|
|
|
cmp [prev_status],4
|
|
|
|
|
jne no_close
|
|
|
|
|
cmp [status],4 ; connection closed by server
|
|
|
|
|
jbe no_close ; respond to connection close command
|
|
|
|
|
; draw page
|
|
|
|
|
call read_incoming_data
|
|
|
|
|
mcall 53,8,[socket]
|
|
|
|
|
mov [onoff],0
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
no_close:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
jmp still
|
|
|
|
|
|
|
|
|
|
key: ; key
|
2012-06-01 21:09:50 +02:00
|
|
|
|
mcall 2 ; read key
|
|
|
|
|
stdcall [edit_box_key], dword edit1
|
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
shr eax,8
|
|
|
|
|
cmp eax,184
|
|
|
|
|
jne no_down
|
|
|
|
|
cmp [display_from],25
|
|
|
|
|
jb no_down
|
|
|
|
|
sub [display_from],25
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
no_down:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp eax,183
|
|
|
|
|
jne no_up
|
|
|
|
|
add [display_from],25
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
no_up:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
jmp still
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
button: ; button
|
|
|
|
|
;dps <"Button pressed",13,10>
|
|
|
|
|
mcall 17 ; get id
|
|
|
|
|
cmp ah,26
|
|
|
|
|
je save
|
|
|
|
|
cmp ah,1 ; button id=1 ?
|
|
|
|
|
jne noclose
|
|
|
|
|
; dps "Closing socket before exit... "
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
close_end_exit:
|
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
;dpd eax
|
|
|
|
|
;dps <13,10>
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
exit:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
or eax,-1 ; close this program
|
|
|
|
|
mcall
|
2012-06-01 21:09:50 +02:00
|
|
|
|
|
|
|
|
|
mouse:
|
|
|
|
|
stdcall [edit_box_mouse], edit1
|
|
|
|
|
jmp still
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
save:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
dps "saving"
|
2010-10-06 15:29:55 +02:00
|
|
|
|
newline
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mcall 70,fileinfo
|
2010-10-06 15:29:55 +02:00
|
|
|
|
;pregs
|
2010-10-07 11:38:59 +02:00
|
|
|
|
jmp still
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
noclose:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp ah,31
|
|
|
|
|
jne noup
|
|
|
|
|
sub [display_from],20
|
|
|
|
|
jmp still
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
noup:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp ah,32
|
2012-06-01 21:09:50 +02:00
|
|
|
|
jne nourl
|
2010-10-07 11:38:59 +02:00
|
|
|
|
add [display_from],20
|
|
|
|
|
jmp still
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
f11:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mcall 10
|
|
|
|
|
cmp eax,2 ; key?
|
|
|
|
|
jz fbu
|
|
|
|
|
jmp still
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
fbu:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mcall 2 ; get key
|
|
|
|
|
shr eax,8
|
|
|
|
|
cmp eax,8
|
|
|
|
|
jnz nobs
|
|
|
|
|
jmp f11
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
nobs:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp eax,10
|
|
|
|
|
je retkey
|
|
|
|
|
cmp eax,13
|
|
|
|
|
je retkey
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp eax,31
|
|
|
|
|
jbe f11
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
jmp still
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
retkey:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov ah,22 ; start load
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
nourl:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
call socket_commands ; opens or closes the connection
|
|
|
|
|
jmp still
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
;****************************************************************************
|
|
|
|
|
; Function
|
|
|
|
|
; send_request
|
|
|
|
|
;
|
|
|
|
|
; Description
|
|
|
|
|
; Transmits the GET request to the server.
|
|
|
|
|
; This is done as GET then URL then HTTP/1.1',13,10,13,10 in 3 packets
|
|
|
|
|
;
|
|
|
|
|
;****************************************************************************
|
|
|
|
|
send_request:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
pusha
|
|
|
|
|
mov esi,string0
|
|
|
|
|
mov edi,request
|
2010-10-06 15:29:55 +02:00
|
|
|
|
movsd
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; If proxy is used, make absolute URI - prepend http://<host>
|
|
|
|
|
cmp [proxyAddr],byte 0
|
|
|
|
|
jz .noproxy
|
|
|
|
|
mov dword [edi],'http'
|
|
|
|
|
mov [edi+4],byte ':'
|
|
|
|
|
mov [edi+5],word '//'
|
|
|
|
|
add edi,7
|
|
|
|
|
mov esi,webAddr
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
.copy_host_loop:
|
|
|
|
|
lodsb
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp al,' '
|
|
|
|
|
jz .noproxy
|
2010-10-06 15:29:55 +02:00
|
|
|
|
stosb
|
2010-10-07 11:38:59 +02:00
|
|
|
|
jmp .copy_host_loop
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
.noproxy:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
xor edx,edx ; 0
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
.next_edx:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; Determine the length of the url to send in the GET request
|
|
|
|
|
mov al,[edx+document]
|
|
|
|
|
cmp al,' '
|
|
|
|
|
je .document_done
|
|
|
|
|
mov [edi],al
|
|
|
|
|
inc edi
|
|
|
|
|
inc edx
|
|
|
|
|
jmp .next_edx
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
.document_done:
|
|
|
|
|
mov esi,stringh
|
|
|
|
|
mov ecx,stringh_end-stringh
|
|
|
|
|
rep movsb
|
|
|
|
|
xor edx,edx ; 0
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
.webaddr_next:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov al,[webAddr + edx]
|
|
|
|
|
cmp al,' '
|
|
|
|
|
je .webaddr_done
|
|
|
|
|
mov [edi],al
|
|
|
|
|
inc edi
|
|
|
|
|
inc edx
|
|
|
|
|
jmp .webaddr_next
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
.webaddr_done:
|
|
|
|
|
cmp [proxyUser],byte 0
|
|
|
|
|
jz @f
|
|
|
|
|
call append_proxy_auth_header
|
2010-10-06 15:29:55 +02:00
|
|
|
|
@@:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov esi,connclose
|
|
|
|
|
mov ecx,connclose_end-connclose
|
|
|
|
|
rep movsb
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
pusha
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov eax,63
|
|
|
|
|
mov ebx,1
|
|
|
|
|
mov edx,request
|
2010-10-06 15:29:55 +02:00
|
|
|
|
@@:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov cl,[edx]
|
|
|
|
|
cmp edx,edi
|
|
|
|
|
jz @f
|
|
|
|
|
mcall
|
|
|
|
|
inc edx
|
|
|
|
|
jmp @b
|
2010-10-06 15:29:55 +02:00
|
|
|
|
@@:
|
|
|
|
|
popa
|
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov edx,edi
|
|
|
|
|
sub edx,request
|
|
|
|
|
;;;;now write \r\nConnection: Close \r\n\r\n
|
|
|
|
|
mcall 53,7,[socket],,request ;' HTTP/1.1 .. '
|
|
|
|
|
popa
|
|
|
|
|
ret
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
;****************************************************************************
|
|
|
|
|
; Function
|
|
|
|
|
; print_status
|
|
|
|
|
;
|
|
|
|
|
; Description
|
|
|
|
|
; displays the socket/data received status information
|
|
|
|
|
;
|
|
|
|
|
;****************************************************************************
|
|
|
|
|
print_status:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
pusha
|
|
|
|
|
mcall 26,9
|
|
|
|
|
cmp eax,[nextupdate]
|
|
|
|
|
jb status_return
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
add eax,25
|
|
|
|
|
mov [nextupdate],eax
|
|
|
|
|
|
|
|
|
|
mov ecx,[winys]
|
|
|
|
|
shl ecx,16
|
|
|
|
|
add ecx,-18*65536+10
|
|
|
|
|
mcall 13,<5,100>,,0xffffff
|
|
|
|
|
|
|
|
|
|
mov edx,12*65536-18
|
|
|
|
|
add edx,[winys]
|
|
|
|
|
xor esi,esi
|
|
|
|
|
mcall 47,<3,0>,[status],,
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov edx,40*65536-18
|
|
|
|
|
add edx,[winys]
|
|
|
|
|
mcall ,<6,0>,[pos]
|
|
|
|
|
|
|
|
|
|
status_return:
|
|
|
|
|
popa
|
|
|
|
|
ret
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
;****************************************************************************
|
|
|
|
|
; Function
|
|
|
|
|
; read_incoming_data
|
|
|
|
|
;
|
|
|
|
|
; Description
|
|
|
|
|
; receive the web page from the server, storing it without processing
|
|
|
|
|
;
|
|
|
|
|
;****************************************************************************
|
|
|
|
|
read_incoming_data:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp [onoff],1
|
|
|
|
|
je rid
|
|
|
|
|
ret
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
rid:
|
|
|
|
|
push esi
|
|
|
|
|
push edi
|
2010-10-07 11:38:59 +02:00
|
|
|
|
dps "rid"
|
2010-10-06 15:29:55 +02:00
|
|
|
|
newline
|
|
|
|
|
|
|
|
|
|
newbyteread:
|
|
|
|
|
;call print_status
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mcall 53,2,[socket]
|
|
|
|
|
cmp eax,0
|
|
|
|
|
je no_more_data
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mcall 53,11,[socket],primary_buf,primary_buffer_size
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
;dps "part "
|
|
|
|
|
;dph eax
|
2010-10-06 15:29:55 +02:00
|
|
|
|
;newline
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov edi,[pos]
|
|
|
|
|
add [pos],eax
|
2010-10-06 15:29:55 +02:00
|
|
|
|
push eax
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mcall 68,20,[pos],[buf_ptr]
|
|
|
|
|
mov [buf_ptr],eax
|
|
|
|
|
add edi,eax
|
|
|
|
|
mov esi,primary_buf
|
|
|
|
|
pop ecx ; number of recently read bytes
|
|
|
|
|
lea edx,[ecx - 3]
|
|
|
|
|
rep movsb
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
no_more_data:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mcall 53,6,[socket]
|
|
|
|
|
cmp eax,4
|
|
|
|
|
jne no_more_data.finish
|
|
|
|
|
jmp newbyteread
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
.finish:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
;dps "finish "
|
2010-10-06 15:29:55 +02:00
|
|
|
|
;pregs
|
|
|
|
|
call parse_result
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov ecx,[shared_name]
|
2012-04-06 21:11:48 +02:00
|
|
|
|
test ecx, ecx
|
|
|
|
|
jz @f
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp [ecx],byte 0
|
|
|
|
|
jnz save_in_shared
|
2012-04-06 21:11:48 +02:00
|
|
|
|
@@:
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mcall 70,fileinfo
|
|
|
|
|
;dps "saving "
|
2010-10-06 15:29:55 +02:00
|
|
|
|
;pregs
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; jmp close_end_exit
|
|
|
|
|
pop edi
|
|
|
|
|
pop esi
|
|
|
|
|
; if called from command line, then exit
|
|
|
|
|
cmp [params],byte 0
|
|
|
|
|
jnz exit
|
|
|
|
|
ret
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
save_in_shared:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov esi,1 ; SHM_OPEN+SHM_WRITE
|
|
|
|
|
mcall 68,22
|
|
|
|
|
test eax,eax
|
2010-10-06 15:29:55 +02:00
|
|
|
|
jz save_in_shared_done
|
2010-10-07 11:38:59 +02:00
|
|
|
|
|
|
|
|
|
sub edx,4
|
2010-10-06 15:29:55 +02:00
|
|
|
|
jbe save_in_shared_done
|
2010-10-07 11:38:59 +02:00
|
|
|
|
|
|
|
|
|
mov ecx,[final_size]
|
|
|
|
|
cmp ecx,edx
|
2010-10-06 15:29:55 +02:00
|
|
|
|
jb @f
|
2010-10-07 11:38:59 +02:00
|
|
|
|
|
|
|
|
|
mov ecx,edx
|
2010-10-06 15:29:55 +02:00
|
|
|
|
@@:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov [eax],ecx
|
|
|
|
|
lea edi,[eax+4]
|
|
|
|
|
mov esi,[final_buffer]
|
|
|
|
|
mov edx,ecx
|
|
|
|
|
shr ecx,2
|
2010-10-06 15:29:55 +02:00
|
|
|
|
rep movsd
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov ecx,edx
|
|
|
|
|
and ecx,3
|
2010-10-06 15:29:55 +02:00
|
|
|
|
rep movsb
|
2010-10-07 11:38:59 +02:00
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
save_in_shared_done:
|
|
|
|
|
pop edi
|
|
|
|
|
pop esi
|
|
|
|
|
jmp exit
|
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; this function cuts header, and removes chunk sizes if doc is chunked
|
|
|
|
|
; in: buf_ptr, pos; out: buf_ptr, pos.
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
parse_result:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; close socket
|
|
|
|
|
mcall 53,8,[socket]
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
dps "close socket: "
|
|
|
|
|
dph eax
|
2010-10-06 15:29:55 +02:00
|
|
|
|
newline
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov edi,[buf_ptr]
|
|
|
|
|
mov edx,[pos]
|
|
|
|
|
mov [buf_size],edx
|
|
|
|
|
; mcall 70,fileinfo_tmp
|
|
|
|
|
dps "pos = "
|
|
|
|
|
dph edx
|
2010-10-06 15:29:55 +02:00
|
|
|
|
newline
|
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; first, find end of headers
|
2010-10-06 15:29:55 +02:00
|
|
|
|
.next_byte:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp [edi],dword 0x0d0a0d0a ; <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
je .end_of_headers
|
|
|
|
|
cmp [edi],dword 0x0a0d0a0d
|
|
|
|
|
je .end_of_headers
|
|
|
|
|
inc edi
|
|
|
|
|
dec edx
|
|
|
|
|
jne .next_byte
|
|
|
|
|
; no end of headers. it's an error. let client see all those headers.
|
2010-10-06 15:29:55 +02:00
|
|
|
|
ret
|
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
.end_of_headers:
|
|
|
|
|
; here we look at headers and search content-length or transfer-encoding headers
|
|
|
|
|
;dps "eoh "
|
2010-10-06 15:29:55 +02:00
|
|
|
|
;newline
|
2010-10-07 11:38:59 +02:00
|
|
|
|
sub edi,[buf_ptr]
|
2011-08-26 20:20:09 +02:00
|
|
|
|
add edi,4
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov [body_pos],edi ; store position where document body starts
|
|
|
|
|
mov [is_chunked],0
|
|
|
|
|
; find content-length in headers
|
|
|
|
|
; not good method, but should work for 'Content-Length:'
|
|
|
|
|
mov esi,[buf_ptr]
|
|
|
|
|
mov edi,s_contentlength
|
|
|
|
|
mov ebx,[body_pos]
|
|
|
|
|
xor edx,edx ; 0
|
2010-10-06 15:29:55 +02:00
|
|
|
|
.cl_next:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov al,[esi]
|
|
|
|
|
cmp al,[edi + edx]
|
|
|
|
|
jne .cl_fail
|
|
|
|
|
inc edx
|
|
|
|
|
cmp edx,len_contentlength
|
|
|
|
|
je .cl_found
|
|
|
|
|
jmp .cl_incr
|
2010-10-06 15:29:55 +02:00
|
|
|
|
.cl_fail:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
xor edx,edx ; 0
|
2010-10-06 15:29:55 +02:00
|
|
|
|
.cl_incr:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
inc esi
|
|
|
|
|
dec ebx
|
|
|
|
|
je .cl_error
|
|
|
|
|
jmp .cl_next
|
2010-10-06 15:29:55 +02:00
|
|
|
|
.cl_error:
|
|
|
|
|
;pregs
|
|
|
|
|
;newline
|
2010-10-07 11:38:59 +02:00
|
|
|
|
;dph esi
|
2010-10-06 15:29:55 +02:00
|
|
|
|
;dps " content-length not found "
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; find 'chunked'
|
|
|
|
|
; <20><>, <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>, <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
; <20> <20><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
mov esi,[buf_ptr]
|
|
|
|
|
mov edi,s_chunked
|
|
|
|
|
mov ebx,[body_pos]
|
|
|
|
|
xor edx,edx ; 0
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
.ch_next:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov al,[esi]
|
|
|
|
|
cmp al,[edi + edx]
|
|
|
|
|
jne .ch_fail
|
|
|
|
|
inc edx
|
|
|
|
|
cmp edx,len_chunked
|
|
|
|
|
je .ch_found
|
|
|
|
|
jmp .ch_incr
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
.ch_fail:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
xor edx,edx ; 0
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
.ch_incr:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
inc esi
|
|
|
|
|
dec ebx
|
|
|
|
|
je .ch_error
|
|
|
|
|
jmp .ch_next
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
.ch_error:
|
|
|
|
|
; if neither of the 2 headers is found, it's an error
|
|
|
|
|
;dps "transfer-encoding: chunked not found "
|
|
|
|
|
mov eax,[pos]
|
|
|
|
|
sub eax,[body_pos]
|
|
|
|
|
jmp .write_final_size
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
.ch_found:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov [is_chunked],1
|
|
|
|
|
mov eax,[body_pos]
|
|
|
|
|
add eax,[buf_ptr]
|
|
|
|
|
sub eax,2
|
|
|
|
|
mov [prev_chunk_end],eax
|
|
|
|
|
jmp parse_chunks
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
.cl_found:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
call read_number ; eax = number from *esi
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
.write_final_size:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov [final_size],eax ; if this works, i will b very happy...
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov ebx,[pos] ; we well check if it is right
|
|
|
|
|
sub ebx,[body_pos]
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
;dps "check cl eax==ebx "
|
2010-10-06 15:29:55 +02:00
|
|
|
|
;pregs
|
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; everything is ok, so we return
|
|
|
|
|
mov eax,[body_pos]
|
|
|
|
|
mov ebx,[buf_ptr]
|
|
|
|
|
add ebx,eax
|
|
|
|
|
mov [final_buffer],ebx
|
|
|
|
|
; mov ebx,[pos]
|
|
|
|
|
; sub ebx,eax
|
|
|
|
|
; mov [final_size],ebx
|
2010-10-06 15:29:55 +02:00
|
|
|
|
ret
|
|
|
|
|
|
|
|
|
|
parse_chunks:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
;dps "parse chunks"
|
2010-10-06 15:29:55 +02:00
|
|
|
|
;newline
|
|
|
|
|
; we have to look through the data and remove sizes of chunks we see
|
|
|
|
|
; 1. read size of next chunk
|
|
|
|
|
; 2. if 0, it's end. if not, continue.
|
|
|
|
|
; 3. make a good buffer and copy a chunk there
|
2010-10-07 11:38:59 +02:00
|
|
|
|
xor eax,eax
|
|
|
|
|
mov [final_buffer],eax ; 0
|
|
|
|
|
mov [final_size],eax ; 0
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
.read_size:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov eax,[prev_chunk_end]
|
|
|
|
|
mov ebx,eax
|
|
|
|
|
sub ebx,[buf_ptr]
|
|
|
|
|
mov edx,eax
|
|
|
|
|
;dps "rs "
|
2010-10-06 15:29:55 +02:00
|
|
|
|
;pregs
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp ebx,[pos]
|
|
|
|
|
jae chunks_end ; not good
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
call read_hex ; in: eax=pointer to text. out:eax=hex number,ebx=end of text.
|
|
|
|
|
cmp eax,0
|
|
|
|
|
jz chunks_end
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
add ebx,1
|
|
|
|
|
mov edx,ebx ; edx = size of size of chunk
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
add ebx,eax
|
|
|
|
|
mov [prev_chunk_end],ebx
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
;dps "sz "
|
2010-10-06 15:29:55 +02:00
|
|
|
|
;pregs
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; do copying: from buf_ptr+edx to final_buffer+prev_final_size count eax
|
|
|
|
|
; realloc final buffer
|
2010-10-06 15:29:55 +02:00
|
|
|
|
push eax
|
|
|
|
|
push edx
|
|
|
|
|
push dword [final_size]
|
2010-10-07 11:38:59 +02:00
|
|
|
|
add [final_size],eax
|
|
|
|
|
mcall 68,20,[final_size],[final_buffer]
|
|
|
|
|
mov [final_buffer],eax
|
|
|
|
|
;dps "re "
|
2010-10-06 15:29:55 +02:00
|
|
|
|
;pregs
|
2010-10-07 11:38:59 +02:00
|
|
|
|
pop edi
|
|
|
|
|
pop esi
|
|
|
|
|
pop ecx
|
|
|
|
|
; add [pos],ecx
|
|
|
|
|
add edi,[final_buffer]
|
|
|
|
|
;dps "cp "
|
2010-10-06 15:29:55 +02:00
|
|
|
|
;pregs
|
2010-10-07 11:38:59 +02:00
|
|
|
|
rep movsb
|
|
|
|
|
jmp .read_size
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
chunks_end:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; free old buffer
|
|
|
|
|
dps "chunks end"
|
2010-10-06 15:29:55 +02:00
|
|
|
|
newline
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mcall 68,13,[buf_ptr]
|
|
|
|
|
; done!
|
2010-10-06 15:29:55 +02:00
|
|
|
|
ret
|
2010-10-07 11:38:59 +02:00
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
; reads content-length from [edi+ecx], result in eax
|
|
|
|
|
read_number:
|
|
|
|
|
push ebx
|
2010-10-07 11:38:59 +02:00
|
|
|
|
xor eax,eax
|
|
|
|
|
xor ebx,ebx
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
.next:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov bl,[esi]
|
|
|
|
|
;dph ebx
|
|
|
|
|
cmp bl,'0'
|
|
|
|
|
jb .not_number
|
|
|
|
|
cmp bl,'9'
|
|
|
|
|
ja .not_number
|
|
|
|
|
sub bl,'0'
|
|
|
|
|
shl eax,1
|
|
|
|
|
lea eax,[eax + eax * 4] ; eax *= 10
|
|
|
|
|
add eax,ebx
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
.not_number:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp bl,13
|
|
|
|
|
jz .done
|
|
|
|
|
inc esi
|
|
|
|
|
jmp .next
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
.done:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
pop ebx
|
2010-10-06 15:29:55 +02:00
|
|
|
|
;newline
|
2010-10-07 11:38:59 +02:00
|
|
|
|
;dps "strtoint eax "
|
2010-10-06 15:29:55 +02:00
|
|
|
|
;pregs
|
|
|
|
|
ret
|
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; reads hex from eax,result in eax,end of text in ebx
|
2010-10-06 15:29:55 +02:00
|
|
|
|
read_hex:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
add eax,2
|
|
|
|
|
mov ebx,eax
|
|
|
|
|
mov eax,[ebx]
|
|
|
|
|
mov [deba],eax
|
2010-10-06 15:29:55 +02:00
|
|
|
|
; pushf
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; pushad
|
|
|
|
|
; mov edx,deba
|
|
|
|
|
; call debug_outstr
|
|
|
|
|
; popad
|
|
|
|
|
; popf
|
|
|
|
|
xor eax,eax
|
|
|
|
|
xor ecx,ecx
|
2010-10-06 15:29:55 +02:00
|
|
|
|
.next:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov cl,[ebx]
|
|
|
|
|
inc ebx
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp cl,0x0d
|
|
|
|
|
jz .done
|
|
|
|
|
;dph ebx
|
|
|
|
|
or cl,0x20
|
|
|
|
|
sub cl,'0'
|
|
|
|
|
jb .bad
|
|
|
|
|
|
|
|
|
|
cmp cl,0x9
|
|
|
|
|
jbe .adding
|
|
|
|
|
|
|
|
|
|
sub cl,'a'-'0'-10
|
|
|
|
|
cmp cl,0x0a
|
|
|
|
|
jb .bad
|
|
|
|
|
|
|
|
|
|
cmp cl,0x0f
|
|
|
|
|
ja .bad
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
.adding:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
shl eax,4
|
|
|
|
|
or eax,ecx
|
|
|
|
|
; jmp .not_number
|
2010-10-06 15:29:55 +02:00
|
|
|
|
;.bad:
|
|
|
|
|
.bad:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
jmp .next
|
2010-10-06 15:29:55 +02:00
|
|
|
|
.done:
|
|
|
|
|
;newline
|
2010-10-07 11:38:59 +02:00
|
|
|
|
;dps "hextoint eax "
|
2010-10-06 15:29:55 +02:00
|
|
|
|
;pregs
|
|
|
|
|
ret
|
|
|
|
|
|
|
|
|
|
;****************************************************************************
|
|
|
|
|
; Function
|
|
|
|
|
; socket_commands
|
|
|
|
|
;
|
|
|
|
|
; Description
|
|
|
|
|
; opens or closes the socket
|
|
|
|
|
;
|
|
|
|
|
;****************************************************************************
|
|
|
|
|
socket_commands:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp ah,22 ; open socket
|
|
|
|
|
jnz tst3
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
dps "opening socket"
|
|
|
|
|
newline
|
|
|
|
|
; Clear all page memory
|
|
|
|
|
xor eax,eax
|
|
|
|
|
mov [prev_chunk_end],eax ; 0
|
|
|
|
|
cmp [buf_ptr],eax ; 0
|
|
|
|
|
jz no_free
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mcall 68,13,[buf_ptr] ; free buffer
|
|
|
|
|
|
|
|
|
|
no_free:
|
|
|
|
|
xor eax,eax
|
|
|
|
|
mov [buf_size],eax ; 0
|
|
|
|
|
; Parse the entered url
|
|
|
|
|
call parse_url
|
|
|
|
|
; Get a free port number
|
|
|
|
|
mov ecx,1000 ; local port starting at 1000
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
getlp1:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
inc ecx
|
|
|
|
|
push ecx
|
|
|
|
|
mcall 53,9
|
|
|
|
|
pop ecx
|
|
|
|
|
cmp eax,0 ; is this local port in use?
|
|
|
|
|
jz getlp1 ; yes - so try next
|
|
|
|
|
|
|
|
|
|
mov edx,80
|
|
|
|
|
cmp [proxyAddr],byte 0
|
|
|
|
|
jz sc000
|
|
|
|
|
mov edx,[proxyPort]
|
2010-10-06 15:29:55 +02:00
|
|
|
|
sc000:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mcall 53,5,,,[server_ip],1
|
|
|
|
|
mov [socket],eax
|
|
|
|
|
mov [pagexs],80
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
push eax
|
|
|
|
|
xor eax,eax ; 0
|
|
|
|
|
mov [pos],eax
|
|
|
|
|
mov [pagex],eax
|
|
|
|
|
mov [pagey],eax
|
|
|
|
|
mov [command_on_off],eax
|
|
|
|
|
mov [is_body],eax
|
|
|
|
|
pop eax
|
|
|
|
|
ret
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
tst3:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp ah,24 ; close socket
|
|
|
|
|
jnz no_24
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mcall 53,8,[socket]
|
2010-10-06 15:29:55 +02:00
|
|
|
|
no_24:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
ret
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
;****************************************************************************
|
|
|
|
|
; Function
|
|
|
|
|
; parse_url
|
|
|
|
|
;
|
|
|
|
|
; Description
|
|
|
|
|
; parses the full url typed in by the user into a web address ( that
|
|
|
|
|
; can be turned into an IP address by DNS ) and the page to display
|
|
|
|
|
; DNS will be used to translate the web address into an IP address, if
|
|
|
|
|
; needed.
|
|
|
|
|
; url is at document_user and will be space terminated.
|
|
|
|
|
; web address goes to webAddr and is space terminated.
|
|
|
|
|
; ip address goes to server_ip
|
|
|
|
|
; page goes to document and is space terminated.
|
|
|
|
|
;
|
|
|
|
|
; Supported formats:
|
|
|
|
|
; <protocol://>address<page>
|
|
|
|
|
; <protocol> is optional, removed and ignored - only http supported
|
|
|
|
|
; <address> is required. It can be an ip address or web address
|
|
|
|
|
; <page> is optional and must start with a leading / character
|
|
|
|
|
;
|
|
|
|
|
;****************************************************************************
|
|
|
|
|
parse_url:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; First, reset destination variables
|
|
|
|
|
cld
|
|
|
|
|
mov al,' '
|
|
|
|
|
mov edi,document
|
|
|
|
|
mov ecx,URLMAXLEN
|
|
|
|
|
rep stosb
|
|
|
|
|
mov edi,webAddr
|
|
|
|
|
mov ecx,URLMAXLEN
|
|
|
|
|
rep stosb
|
|
|
|
|
|
|
|
|
|
mov al,'/'
|
|
|
|
|
mov [document],al
|
|
|
|
|
|
|
|
|
|
mov esi,document_user
|
|
|
|
|
; remove any leading protocol text
|
|
|
|
|
mov ecx,URLMAXLEN
|
|
|
|
|
mov ax,'//'
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
pu_000:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp [esi],byte ' ' ; end of text?
|
|
|
|
|
je pu_002 ; yep, so not found
|
|
|
|
|
cmp [esi],ax
|
|
|
|
|
je pu_001 ; Found it, so esi+2 is start
|
|
|
|
|
inc esi
|
|
|
|
|
loop pu_000
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
pu_002:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; not found, so reset esi to start
|
|
|
|
|
mov esi,document_user-2
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
pu_001:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
add esi,2
|
|
|
|
|
mov ebx,esi ; save address of start of web address
|
|
|
|
|
mov edi,document_user + URLMAXLEN ; end of string
|
|
|
|
|
; look for page delimiter - it's a '/' character
|
2010-10-06 15:29:55 +02:00
|
|
|
|
pu_003:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp [esi],byte ' ' ; end of text?
|
|
|
|
|
je pu_004 ; yep, so none found
|
|
|
|
|
cmp esi,edi ; end of string?
|
|
|
|
|
je pu_004 ; yep, so none found
|
|
|
|
|
cmp [esi],byte '/' ; delimiter?
|
|
|
|
|
je pu_005 ; yep - process it
|
|
|
|
|
inc esi
|
|
|
|
|
jmp pu_003
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
pu_005:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; copy page to document address
|
|
|
|
|
; esi = delimiter
|
|
|
|
|
push esi
|
|
|
|
|
mov ecx,edi ; end of document_user
|
|
|
|
|
mov edi,document
|
|
|
|
|
cld
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
pu_006:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
movsb
|
|
|
|
|
cmp esi,ecx
|
|
|
|
|
je pu_007 ; end of string?
|
|
|
|
|
cmp [esi],byte ' ' ; end of text
|
|
|
|
|
; je pu_007 ; <20><><EFBFBD><EFBFBD>-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
; jmp pu_006 ; <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
jne pu_006
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
pu_007:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
pop esi ; point esi to '/' delimiter
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
pu_004:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; copy web address to webAddr
|
|
|
|
|
; start in ebx,end in esi-1
|
|
|
|
|
mov ecx,esi
|
|
|
|
|
mov esi,ebx
|
|
|
|
|
mov edi,webAddr
|
|
|
|
|
cld
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
pu_008:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
movsb
|
|
|
|
|
cmp esi,ecx
|
|
|
|
|
; je pu_009 ; <20><><EFBFBD><EFBFBD>-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
; jmp pu_008 ; <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
jne pu_008
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
pu_009:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; For debugging, display resulting strings
|
|
|
|
|
if DEBUGGING_STATE = DEBUGGING_ENABLED
|
|
|
|
|
mov esi,document_user
|
|
|
|
|
call debug_print_string
|
|
|
|
|
mov esi,webAddr
|
|
|
|
|
call debug_print_string
|
|
|
|
|
mov esi,document
|
|
|
|
|
call debug_print_string
|
|
|
|
|
end if
|
|
|
|
|
; Look up the ip address, or was it specified?
|
|
|
|
|
mov al,[proxyAddr]
|
|
|
|
|
cmp al,0
|
|
|
|
|
jnz pu_015
|
|
|
|
|
mov al,[webAddr]
|
2010-10-06 15:29:55 +02:00
|
|
|
|
pu_015:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp al,'0'
|
|
|
|
|
jb pu_010 ; Resolve address
|
|
|
|
|
cmp al,'9'
|
|
|
|
|
ja pu_010 ; Resolve address
|
|
|
|
|
|
|
|
|
|
if DEBUGGING_STATE = DEBUGGING_ENABLED
|
|
|
|
|
mov esi,str2 ; print gotip
|
|
|
|
|
call debug_print_string
|
|
|
|
|
end if
|
|
|
|
|
; Convert address
|
|
|
|
|
; If proxy is given, get proxy address instead of server
|
|
|
|
|
mov esi,proxyAddr-1
|
|
|
|
|
cmp byte [esi+1],0
|
|
|
|
|
jnz pu_020
|
|
|
|
|
mov esi,webAddr-1
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
pu_020:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov edi,server_ip
|
|
|
|
|
xor eax,eax
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
ip1:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
inc esi
|
|
|
|
|
cmp [esi],byte '0'
|
|
|
|
|
jb ip2
|
|
|
|
|
cmp [esi],byte '9'
|
|
|
|
|
jg ip2
|
|
|
|
|
imul eax,10
|
|
|
|
|
movzx ebx,byte [esi]
|
|
|
|
|
sub ebx,48
|
|
|
|
|
add eax,ebx
|
|
|
|
|
jmp ip1
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
ip2:
|
|
|
|
|
mov [edi],al
|
|
|
|
|
xor eax,eax
|
|
|
|
|
inc edi
|
|
|
|
|
cmp edi,server_ip+3
|
|
|
|
|
jbe ip1
|
|
|
|
|
jmp pu_011
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
pu_010:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
if DEBUGGING_STATE = DEBUGGING_ENABLED
|
|
|
|
|
mov esi,str1 ; print resolving
|
|
|
|
|
call debug_print_string
|
|
|
|
|
end if
|
|
|
|
|
; Resolve Address
|
|
|
|
|
call translateData ; Convert domain & DNS IP address
|
|
|
|
|
call resolveDomain ; get ip address
|
|
|
|
|
|
|
|
|
|
if DEBUGGING_STATE = DEBUGGING_ENABLED
|
|
|
|
|
mov esi,str3
|
|
|
|
|
call debug_print_string
|
|
|
|
|
end if
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
pu_011:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; Done
|
|
|
|
|
ret
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
;***************************************************************************
|
|
|
|
|
; Function
|
|
|
|
|
; translateData
|
|
|
|
|
;
|
|
|
|
|
; Description
|
|
|
|
|
; Coverts the domain name and DNS IP address typed in by the user into
|
|
|
|
|
; a format suitable for the IP layer.
|
|
|
|
|
;
|
|
|
|
|
; The ename, in query, is converted and stored in dnsMsg
|
|
|
|
|
;
|
|
|
|
|
;***************************************************************************
|
|
|
|
|
translateData:
|
|
|
|
|
; first, get the IP address of the DNS server
|
|
|
|
|
; Then, build up the request string.
|
|
|
|
|
|
|
|
|
|
; Build the request string
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov eax,0x00010100
|
|
|
|
|
mov [dnsMsg],eax
|
|
|
|
|
mov eax,0x00000100
|
|
|
|
|
mov [dnsMsg+4],eax
|
|
|
|
|
mov eax,0x00000000
|
|
|
|
|
mov [dnsMsg+8],eax
|
|
|
|
|
; domain name goes in at dnsMsg+12
|
|
|
|
|
mov esi,dnsMsg +12 ;location of label length
|
|
|
|
|
mov edi,dnsMsg + 13 ;label start
|
|
|
|
|
mov edx,proxyAddr
|
|
|
|
|
cmp byte [edx],0
|
|
|
|
|
jnz td000
|
|
|
|
|
mov edx,webAddr
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
td000:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov ecx,12 ; total string length so far
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
td002:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov [esi],byte 0
|
|
|
|
|
inc ecx
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
td0021:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov al,[edx]
|
|
|
|
|
cmp al,' '
|
|
|
|
|
je td001 ; we have finished the string translation
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp al,0
|
|
|
|
|
je td001
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp al,'.' ; we have finished the label
|
|
|
|
|
je td004
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
inc byte [esi]
|
|
|
|
|
inc ecx
|
|
|
|
|
mov [edi],al
|
|
|
|
|
inc edi
|
|
|
|
|
inc edx
|
|
|
|
|
jmp td0021
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
td004:
|
|
|
|
|
mov esi,edi
|
|
|
|
|
inc edi
|
|
|
|
|
inc edx
|
|
|
|
|
jmp td002
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; write label len + label text
|
2010-10-06 15:29:55 +02:00
|
|
|
|
td001:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov [edi],byte 0
|
|
|
|
|
inc ecx
|
|
|
|
|
inc edi
|
|
|
|
|
mov [edi],dword 0x01000100
|
|
|
|
|
add ecx,4
|
|
|
|
|
mov [dnsMsgLen],ecx
|
|
|
|
|
ret
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
;***************************************************************************
|
|
|
|
|
; Function
|
|
|
|
|
; resolveDomain
|
|
|
|
|
;
|
|
|
|
|
; Description
|
|
|
|
|
; Sends a question to the dns server
|
|
|
|
|
; works out the IP address from the response from the DNS server
|
|
|
|
|
;
|
|
|
|
|
;***************************************************************************
|
|
|
|
|
resolveDomain:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; Get a free port number
|
|
|
|
|
mov ecx,1000 ; local port starting at 1000
|
2010-10-06 15:29:55 +02:00
|
|
|
|
getlp:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
inc ecx
|
|
|
|
|
push ecx
|
|
|
|
|
mcall 53,9
|
|
|
|
|
pop ecx
|
|
|
|
|
cmp eax,0 ; is this local port in use?
|
|
|
|
|
jz getlp ; yes - so try next
|
|
|
|
|
|
|
|
|
|
; Get DNS IP
|
|
|
|
|
mcall 52,13
|
|
|
|
|
mov esi,eax
|
|
|
|
|
; First, open socket
|
|
|
|
|
mov edx,53 ; remote port - dns
|
|
|
|
|
; mov esi,dword [dns_ip]
|
|
|
|
|
xor ebx,ebx ; 0
|
|
|
|
|
mcall 53
|
|
|
|
|
mov [socketNum],eax
|
|
|
|
|
; write to socket ( request DNS lookup )
|
|
|
|
|
mcall 53,4,[socketNum],[dnsMsgLen],dnsMsg
|
|
|
|
|
; Setup the DNS response buffer
|
|
|
|
|
mov eax,dnsMsg
|
|
|
|
|
mov [dnsMsgLen],eax
|
|
|
|
|
; now, we wait for
|
|
|
|
|
; UI redraw
|
|
|
|
|
; UI close
|
|
|
|
|
; or data from remote
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
ctr001:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mcall 10 ; wait here for event
|
|
|
|
|
cmp eax,1 ; redraw request ?
|
|
|
|
|
je ctr003
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp eax,2 ; key in buffer ?
|
|
|
|
|
je ctr004
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
cmp eax,3 ; button in buffer ?
|
|
|
|
|
je ctr005
|
|
|
|
|
; Any data in the UDP receive buffer?
|
|
|
|
|
mcall 53,2,[socketNum]
|
|
|
|
|
cmp eax,0
|
|
|
|
|
je ctr001
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; we have data - this will be the response
|
2010-10-06 15:29:55 +02:00
|
|
|
|
ctr002:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mcall 53,3,[socketNum] ; read byte - block (high byte)
|
|
|
|
|
; Store the data in the response buffer
|
|
|
|
|
mov eax,[dnsMsgLen]
|
|
|
|
|
mov [eax],bl
|
|
|
|
|
inc dword [dnsMsgLen]
|
|
|
|
|
|
|
|
|
|
mcall 53,2,[socketNum] ; any more data?
|
|
|
|
|
cmp eax,0
|
|
|
|
|
jne ctr002 ; yes, so get it
|
|
|
|
|
|
|
|
|
|
; close socket
|
|
|
|
|
mcall 53,1,[socketNum]
|
|
|
|
|
mov [socketNum],dword 0xFFFF
|
|
|
|
|
; Now parse the message to get the host IP
|
|
|
|
|
; Man, this is complicated. It's described in
|
|
|
|
|
; RFC 1035
|
|
|
|
|
if DEBUGGING_STATE = DEBUGGING_ENABLED
|
|
|
|
|
mov esi,str4
|
|
|
|
|
call debug_print_string
|
|
|
|
|
end if
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
; 1) Validate that we have an answer with > 0 responses
|
|
|
|
|
; 2) Find the answer record with TYPE 0001 ( host IP )
|
|
|
|
|
; 3) Finally, copy the IP address to the display
|
|
|
|
|
; Note: The response is in dnsMsg
|
|
|
|
|
; The end of the buffer is pointed to by [dnsMsgLen]
|
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; Clear the IP address text
|
|
|
|
|
mov [server_ip],dword 0
|
|
|
|
|
mov esi,dnsMsg
|
|
|
|
|
; Is this a response to my question?
|
|
|
|
|
mov al,[esi+2]
|
|
|
|
|
and al,0x80
|
|
|
|
|
cmp al,0x80
|
|
|
|
|
jne ctr002a
|
|
|
|
|
; Were there any errors?
|
|
|
|
|
mov al,[esi+3]
|
|
|
|
|
and al,0x0F
|
|
|
|
|
cmp al,0x00
|
|
|
|
|
jne ctr002a
|
|
|
|
|
; Is there ( at least 1 ) answer?
|
|
|
|
|
mov ax,[esi+6]
|
|
|
|
|
cmp ax,0x00
|
|
|
|
|
je ctr002a
|
|
|
|
|
; Header valdated. Scan through and get my answer
|
|
|
|
|
if DEBUGGING_STATE = DEBUGGING_ENABLED
|
|
|
|
|
pusha
|
|
|
|
|
mov esi,str4
|
|
|
|
|
call debug_print_string
|
|
|
|
|
popa
|
|
|
|
|
end if
|
|
|
|
|
add esi,12 ; Skip to the question field
|
|
|
|
|
; Skip through the question field
|
|
|
|
|
call skipName
|
|
|
|
|
add esi,4 ; skip past the questions qtype, qclass
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
ctr002z:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; Now at the answer. There may be several answers,
|
|
|
|
|
; find the right one ( TYPE = 0x0001 )
|
|
|
|
|
call skipName
|
|
|
|
|
mov ax,[esi]
|
|
|
|
|
cmp ax,0x0100 ; Is this the IP address answer?
|
|
|
|
|
jne ctr002c
|
|
|
|
|
; Yes! Point esi to the first byte of the IP address
|
|
|
|
|
add esi,10
|
|
|
|
|
mov eax,[esi]
|
|
|
|
|
mov [server_ip],eax
|
|
|
|
|
ret
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
ctr002c: ; Skip through the answer, move to the next
|
|
|
|
|
add esi,8
|
|
|
|
|
movzx eax,byte [esi+1]
|
|
|
|
|
mov ah,[esi]
|
|
|
|
|
add esi,eax
|
|
|
|
|
add esi,2
|
|
|
|
|
; Have we reached the end of the msg?
|
|
|
|
|
; This is an error condition, should not happen
|
|
|
|
|
cmp esi,[dnsMsgLen]
|
|
|
|
|
jl ctr002z ; Check next answer
|
|
|
|
|
jmp ctr002a ; abort
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
ctr002a:
|
|
|
|
|
jmp ctr001
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
ctr003: ; redraw
|
|
|
|
|
call draw_window
|
|
|
|
|
jmp ctr001
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
ctr004: ; key
|
|
|
|
|
mcall 2 ; just read it and ignore
|
|
|
|
|
jmp ctr001
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
ctr005: ; button
|
|
|
|
|
mcall 17 ; get id
|
|
|
|
|
mov dl,ah
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; close socket
|
|
|
|
|
mcall 53,1,[socketNum]
|
|
|
|
|
cmp dl,1
|
|
|
|
|
je exit
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov [socketNum],dword 0xFFFF
|
|
|
|
|
mov [server_ip],dword 0
|
|
|
|
|
ret
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
;***************************************************************************
|
|
|
|
|
; Function
|
|
|
|
|
; skipName
|
|
|
|
|
;
|
|
|
|
|
; Description
|
|
|
|
|
; Increment esi to the first byte past the name field
|
|
|
|
|
; Names may use compressed labels. Normally do.
|
|
|
|
|
; RFC 1035 page 30 gives details
|
|
|
|
|
;
|
|
|
|
|
;***************************************************************************
|
|
|
|
|
skipName:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov al,[esi]
|
|
|
|
|
cmp al,0
|
|
|
|
|
je sn_exit
|
|
|
|
|
and al,0xc0
|
|
|
|
|
cmp al,0xc0
|
|
|
|
|
je sn001
|
|
|
|
|
|
|
|
|
|
movzx eax,byte [esi]
|
|
|
|
|
inc eax
|
|
|
|
|
add esi,eax
|
|
|
|
|
jmp skipName
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
sn001:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
add esi,2 ; A pointer is always at the end
|
|
|
|
|
ret
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
sn_exit:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
inc esi
|
|
|
|
|
ret
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
;***************************************************************************
|
|
|
|
|
; Function
|
|
|
|
|
; load_settings
|
|
|
|
|
;
|
|
|
|
|
; Description
|
|
|
|
|
; Load settings from configuration file network.ini
|
|
|
|
|
;
|
|
|
|
|
;***************************************************************************
|
|
|
|
|
load_settings:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
stdcall dll.Load,@IMPORT
|
|
|
|
|
test eax,eax
|
|
|
|
|
jnz ls001
|
|
|
|
|
invoke ini.get_str,inifile,sec_proxy,key_proxy,proxyAddr,256,proxyAddr
|
|
|
|
|
invoke ini.get_int,inifile,sec_proxy,key_proxyport,80
|
|
|
|
|
mov [proxyPort],eax
|
|
|
|
|
invoke ini.get_str,inifile,sec_proxy,key_user, proxyUser,256,proxyUser
|
|
|
|
|
invoke ini.get_str,inifile,sec_proxy,key_password,proxyPassword,256,proxyPassword
|
2010-10-06 15:29:55 +02:00
|
|
|
|
ls001:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
ret
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
;***************************************************************************
|
|
|
|
|
; Function
|
|
|
|
|
; append_proxy_auth_header
|
|
|
|
|
;
|
|
|
|
|
; Description
|
|
|
|
|
; Append header to HTTP request for proxy authentification
|
|
|
|
|
;
|
|
|
|
|
;***************************************************************************
|
|
|
|
|
append_proxy_auth_header:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov esi,proxy_auth_basic
|
|
|
|
|
mov ecx,proxy_auth_basic_end - proxy_auth_basic
|
|
|
|
|
rep movsb
|
|
|
|
|
; base64-encode string <user>:<password>
|
|
|
|
|
mov esi,proxyUser
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
apah000:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
lodsb
|
|
|
|
|
test al,al
|
|
|
|
|
jz apah001
|
|
|
|
|
call encode_base64_byte
|
|
|
|
|
jmp apah000
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
apah001:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov al,':'
|
|
|
|
|
call encode_base64_byte
|
|
|
|
|
mov esi,proxyPassword
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
apah002:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
lodsb
|
|
|
|
|
test al,al
|
|
|
|
|
jz apah003
|
|
|
|
|
call encode_base64_byte
|
|
|
|
|
jmp apah002
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
apah003:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
call encode_base64_final
|
|
|
|
|
ret
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
encode_base64_byte:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
inc ecx
|
|
|
|
|
shl edx,8
|
|
|
|
|
mov dl,al
|
|
|
|
|
cmp ecx,3
|
|
|
|
|
je ebb001
|
|
|
|
|
ret
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
ebb001:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
shl edx,8
|
|
|
|
|
inc ecx
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
ebb002:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
rol edx,6
|
|
|
|
|
xor eax,eax
|
|
|
|
|
xchg al,dl
|
|
|
|
|
mov al,[base64_table+eax]
|
|
|
|
|
stosb
|
|
|
|
|
loop ebb002
|
|
|
|
|
ret
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
encode_base64_final:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov al,0
|
|
|
|
|
test ecx,ecx
|
|
|
|
|
jz ebf000
|
|
|
|
|
call encode_base64_byte
|
|
|
|
|
test ecx,ecx
|
|
|
|
|
jz ebf001
|
|
|
|
|
call encode_base64_byte
|
|
|
|
|
mov byte [edi-2],'='
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
ebf001:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov byte [edi-1],'='
|
|
|
|
|
|
2010-10-06 15:29:55 +02:00
|
|
|
|
ebf000:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
ret
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
if DEBUGGING_STATE = DEBUGGING_ENABLED
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
;****************************************************************************
|
|
|
|
|
; Function
|
|
|
|
|
; debug_print_string
|
|
|
|
|
;
|
|
|
|
|
; Description
|
|
|
|
|
; prints a string to the debug board, in quotes
|
|
|
|
|
;
|
|
|
|
|
; esi holds ptr to msg to display, which is space or 0 terminated
|
|
|
|
|
;
|
|
|
|
|
; Nothing preserved; I'm assuming a pusha/popa is done before calling
|
|
|
|
|
;
|
|
|
|
|
;****************************************************************************
|
|
|
|
|
debug_print_string:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
push esi
|
|
|
|
|
mov cl,'"'
|
|
|
|
|
mcall 63,1
|
|
|
|
|
pop esi
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
dps_000:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov cl,[esi]
|
|
|
|
|
cmp cl,0
|
|
|
|
|
je dps_exit
|
|
|
|
|
|
|
|
|
|
cmp cl,' '
|
|
|
|
|
je dps_exit
|
|
|
|
|
jmp dps_001
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
dps_exit:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
mov cl,'"'
|
|
|
|
|
mcall 63,1
|
|
|
|
|
mov cl,13
|
|
|
|
|
mcall
|
|
|
|
|
mov cl,10
|
|
|
|
|
mcall
|
|
|
|
|
ret
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
dps_001:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
push esi
|
|
|
|
|
mcall 63,1
|
|
|
|
|
pop esi
|
|
|
|
|
inc esi
|
|
|
|
|
jmp dps_000
|
|
|
|
|
end if
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
; *********************************************
|
|
|
|
|
; ******* WINDOW DEFINITIONS AND DRAW ********
|
|
|
|
|
; *********************************************
|
|
|
|
|
|
|
|
|
|
draw_window:
|
2012-06-01 16:40:45 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; cmp [params],byte 0
|
|
|
|
|
; jz .noret
|
|
|
|
|
|
|
|
|
|
;.noret:
|
|
|
|
|
|
2012-06-01 21:09:50 +02:00
|
|
|
|
mcall 12,1
|
|
|
|
|
|
|
|
|
|
mcall 48,3,sc,40 ;get system colors
|
2010-10-07 11:38:59 +02:00
|
|
|
|
|
2012-06-01 21:09:50 +02:00
|
|
|
|
mov edx,[sc.work]
|
|
|
|
|
or edx,0x34000000
|
|
|
|
|
mcall 0,<50,370>,<350,140>,,0,title ;draw window
|
|
|
|
|
|
|
|
|
|
mov ecx,[sc.work_text]
|
|
|
|
|
or ecx,80000000h
|
|
|
|
|
mcall 4, <14,14>, ,type_pls ;"URL:"
|
|
|
|
|
|
|
|
|
|
;mov ecx,[winys]
|
|
|
|
|
;shl ecx,16
|
|
|
|
|
;add ecx,[winys]
|
|
|
|
|
;sub ecx,26*65536+26
|
|
|
|
|
;mcall 38,<5,545>
|
|
|
|
|
|
|
|
|
|
edit_boxes_set_sys_color edit1,editboxes_end,sc
|
|
|
|
|
stdcall [edit_box_draw], edit1
|
2010-10-07 11:38:59 +02:00
|
|
|
|
|
|
|
|
|
; RELOAD
|
2012-06-01 21:09:50 +02:00
|
|
|
|
mcall 8,<90,68>,<54,16>,22,[sc.work_button]
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; STOP
|
2012-06-01 21:09:50 +02:00
|
|
|
|
mcall ,<166,50>,<54,16>,24
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; SAVE
|
2012-06-01 21:09:50 +02:00
|
|
|
|
mcall ,<224,54>,,26
|
2010-10-07 11:38:59 +02:00
|
|
|
|
; BUTTON TEXT
|
2012-06-01 21:09:50 +02:00
|
|
|
|
mov ecx,[sc.work_button_text]
|
|
|
|
|
or ecx,80000000h
|
|
|
|
|
mcall 4,<102,59>,,button_text
|
2010-10-07 11:38:59 +02:00
|
|
|
|
|
2012-06-01 16:40:45 +02:00
|
|
|
|
mcall 12,2 ; end window redraw
|
2010-10-06 15:29:55 +02:00
|
|
|
|
ret
|
2010-10-07 11:38:59 +02:00
|
|
|
|
;-----------------------------------------------------------------------------
|
|
|
|
|
; Data area
|
|
|
|
|
;-----------------------------------------------------------------------------
|
|
|
|
|
align 4
|
2010-10-06 15:29:55 +02:00
|
|
|
|
@IMPORT:
|
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
library libini,'libini.obj'
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
import libini, \
|
2010-10-07 11:38:59 +02:00
|
|
|
|
ini.get_str,'ini_get_str', \
|
|
|
|
|
ini.get_int,'ini_get_int'
|
|
|
|
|
|
|
|
|
|
;---------------------------------------------------------------------
|
|
|
|
|
fileinfo dd 2,0,0
|
|
|
|
|
final_size dd 0
|
|
|
|
|
final_buffer dd 0
|
|
|
|
|
db '/rd/1/.download',0
|
|
|
|
|
|
|
|
|
|
body_pos dd 0
|
|
|
|
|
|
|
|
|
|
;fileinfo_tmp dd 2,0,0
|
|
|
|
|
buf_size dd 0
|
|
|
|
|
buf_ptr dd 0
|
|
|
|
|
; db '/rd/1/1',0
|
|
|
|
|
|
|
|
|
|
deba dd 0
|
|
|
|
|
db 0
|
|
|
|
|
;---------------------------------------------------------------------
|
|
|
|
|
if DEBUGGING_STATE = DEBUGGING_ENABLED
|
|
|
|
|
str1: db "Resolving...",0
|
|
|
|
|
str3: db "Resolved",0
|
|
|
|
|
str2: db "GotIP",0
|
|
|
|
|
str4: db "GotResponse",0
|
|
|
|
|
end if
|
|
|
|
|
;---------------------------------------------------------------------
|
2012-06-01 21:09:50 +02:00
|
|
|
|
;Leency editbox
|
|
|
|
|
mouse_dd dd 0
|
|
|
|
|
edit1 edit_box 295, 48, 10, 0xffffff, 0xff, 0x80ff, 0, 0x8000, URLMAXLEN, document_user, mouse_dd, ed_focus+ed_always_focus,7,7
|
|
|
|
|
editboxes_end:
|
|
|
|
|
|
|
|
|
|
head_f_i: head_f_l db 'System error',0
|
|
|
|
|
system_dir_0 db '/sys/lib/'
|
|
|
|
|
lib_name_0 db 'box_lib.obj',0
|
|
|
|
|
err_msg_found_lib_0 db '<27><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>⥪<EFBFBD> ',39,'box_lib.obj',39,0
|
|
|
|
|
err_msg_import_0 db '<27>訡<EFBFBD><E8A8A1> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>⥪<EFBFBD> ',39,'box_lib',39,0
|
|
|
|
|
|
|
|
|
|
l_libs_start:
|
|
|
|
|
lib_0 l_libs lib_name_0, sys_path, library_path, system_dir_0,\
|
|
|
|
|
err_msg_found_lib_0,head_f_l,import_box_lib,err_msg_import_0,head_f_i
|
|
|
|
|
l_libs_end:
|
|
|
|
|
|
|
|
|
|
align 4
|
|
|
|
|
import_box_lib:
|
|
|
|
|
;dd sz_init1
|
|
|
|
|
edit_box_draw dd sz_edit_box_draw
|
|
|
|
|
edit_box_key dd sz_edit_box_key
|
|
|
|
|
edit_box_mouse dd sz_edit_box_mouse
|
|
|
|
|
;edit_box_set_text dd sz_edit_box_set_text
|
|
|
|
|
dd 0,0
|
|
|
|
|
;sz_init1 db 'lib_init',0
|
|
|
|
|
sz_edit_box_draw db 'edit_box',0
|
|
|
|
|
sz_edit_box_key db 'edit_box_key',0
|
|
|
|
|
sz_edit_box_mouse db 'edit_box_mouse',0
|
|
|
|
|
;sz_edit_box_set_text db 'edit_box_set_text',0
|
|
|
|
|
|
|
|
|
|
sys_path rb 4096
|
|
|
|
|
library_path rb 4096
|
|
|
|
|
;---------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
type_pls db 'URL:',0
|
|
|
|
|
button_text db 'DOWNLOAD STOP RESAVE',0
|
2010-10-07 11:38:59 +02:00
|
|
|
|
display_from dd 20
|
2012-06-01 21:09:50 +02:00
|
|
|
|
pos dd 0x0
|
2010-10-07 11:38:59 +02:00
|
|
|
|
pagex dd 0x0
|
|
|
|
|
pagey dd 0x0
|
|
|
|
|
pagexs dd 80
|
|
|
|
|
command_on_off dd 0x0
|
|
|
|
|
text_type db 1
|
|
|
|
|
com2 dd 0x0
|
|
|
|
|
script dd 0x0
|
|
|
|
|
socket dd 0x0
|
|
|
|
|
|
|
|
|
|
addr dd 0x0
|
|
|
|
|
ya dd 0x0
|
|
|
|
|
len dd 0x00
|
|
|
|
|
|
2012-06-01 16:40:45 +02:00
|
|
|
|
title db 'Network Downloader',0
|
2010-10-07 11:38:59 +02:00
|
|
|
|
|
|
|
|
|
server_ip: db 207,44,212,20
|
|
|
|
|
;dns_ip: db 194,145,128,1
|
|
|
|
|
;---------------------------------------------------------------------
|
|
|
|
|
;webAddr:
|
|
|
|
|
;times URLMAXLEN db ' '
|
|
|
|
|
;db 0
|
|
|
|
|
|
|
|
|
|
;document: db '/'
|
|
|
|
|
;times URLMAXLEN-1 db ' '
|
|
|
|
|
;---------------------------------------------------------------------
|
|
|
|
|
s_contentlength db 'Content-Length:'
|
|
|
|
|
len_contentlength = 15
|
|
|
|
|
|
|
|
|
|
s_chunked db 'Transfer-Encoding: chunked'
|
|
|
|
|
len_chunked = $ - s_chunked
|
|
|
|
|
|
|
|
|
|
is_body dd 0 ; 0 if headers, 1 if content
|
|
|
|
|
is_chunked dd 0
|
|
|
|
|
prev_chunk_end dd 0
|
|
|
|
|
cur_chunk_size dd 0
|
|
|
|
|
|
|
|
|
|
string0: db 'GET '
|
|
|
|
|
|
|
|
|
|
stringh: db ' HTTP/1.1',13,10,'Host: '
|
2010-10-06 15:29:55 +02:00
|
|
|
|
stringh_end:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
proxy_auth_basic: db 13,10,'Proxy-Authorization: Basic '
|
2010-10-06 15:29:55 +02:00
|
|
|
|
proxy_auth_basic_end:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
connclose: db 13,10,'User-Agent: Kolibrios Downloader',13,10,'Connection: Close',13,10,13,10
|
2010-10-06 15:29:55 +02:00
|
|
|
|
connclose_end:
|
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
base64_table db 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
|
|
|
|
|
db '0123456789+/'
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
inifile db '/sys/network/zeroconf.ini',0
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
sec_proxy:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
key_proxy db 'proxy',0
|
|
|
|
|
key_proxyport db 'port',0
|
|
|
|
|
key_user db 'user',0
|
|
|
|
|
key_password db 'password',0
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
proxyPort dd 80
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
shared_name dd 0
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
;yandex: db 'menuetos.net'
|
2010-10-06 15:29:55 +02:00
|
|
|
|
;yandex_end:
|
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
status dd 0x0
|
|
|
|
|
prev_status dd 0x0
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
onoff dd 0x0
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
nextupdate: dd 0
|
|
|
|
|
winys: dd 400
|
2010-10-06 15:29:55 +02:00
|
|
|
|
|
2010-10-07 11:38:59 +02:00
|
|
|
|
dnsMsgLen: dd 0
|
|
|
|
|
socketNum: dd 0xFFFF
|
|
|
|
|
;---------------------------------------------------------------------
|
2012-06-01 21:09:50 +02:00
|
|
|
|
document_user db 'http://',0
|
2010-10-07 11:38:59 +02:00
|
|
|
|
;---------------------------------------------------------------------
|
|
|
|
|
IM_END:
|
|
|
|
|
rb URLMAXLEN-(IM_END - document_user)
|
|
|
|
|
;---------------------------------------------------------------------
|
|
|
|
|
align 4
|
|
|
|
|
document:
|
|
|
|
|
rb URLMAXLEN
|
|
|
|
|
;---------------------------------------------------------------------
|
|
|
|
|
align 4
|
|
|
|
|
webAddr:
|
|
|
|
|
rb URLMAXLEN+1
|
|
|
|
|
;---------------------------------------------------------------------
|
|
|
|
|
align 4
|
|
|
|
|
primary_buf:
|
|
|
|
|
rb primary_buffer_size
|
|
|
|
|
;---------------------------------------------------------------------
|
|
|
|
|
align 4
|
|
|
|
|
params: ; db 1024 dup(0)
|
|
|
|
|
rb 1024
|
|
|
|
|
;---------------------------------------------------------------------
|
|
|
|
|
align 4
|
|
|
|
|
request: ; db 256 dup(0)
|
|
|
|
|
rb 256
|
|
|
|
|
;---------------------------------------------------------------------
|
|
|
|
|
align 4
|
|
|
|
|
proxyAddr: ; db 256 dup(0)
|
|
|
|
|
rb 256
|
|
|
|
|
;---------------------------------------------------------------------
|
|
|
|
|
align 4
|
|
|
|
|
proxyUser: ; db 256 dup(0)
|
|
|
|
|
rb 256
|
|
|
|
|
;---------------------------------------------------------------------
|
|
|
|
|
align 4
|
|
|
|
|
proxyPassword: ; db 256 dup(0)
|
|
|
|
|
rb 256
|
|
|
|
|
;---------------------------------------------------------------------
|
|
|
|
|
align 4
|
2010-10-06 15:29:55 +02:00
|
|
|
|
dnsMsg:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
rb 4096
|
|
|
|
|
; rb 0x100000
|
|
|
|
|
;---------------------------------------------------------------------
|
|
|
|
|
align 4
|
|
|
|
|
rb 4096
|
|
|
|
|
stacktop:
|
|
|
|
|
;---------------------------------------------------------------------
|
2010-10-06 15:29:55 +02:00
|
|
|
|
I_END:
|
2010-10-07 11:38:59 +02:00
|
|
|
|
;---------------------------------------------------------------------
|