forked from KolibriOS/kolibrios
15ad016d59
NSINST: run app if exists on TPM, ISO, if not the download git-svn-id: svn://kolibrios.org@8418 a494cfbc-eb01-0410-851d-a64ba20cac60
416 lines
12 KiB
NASM
416 lines
12 KiB
NASM
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; ;;
|
|
;; Copyright (C) KolibriOS team 2017. All rights reserved. ;;
|
|
;; Distributed under terms of the GNU General Public License ;;
|
|
;; ;;
|
|
;; netsurf-installer - Set up Netsurf Browser on KolibriOS ;;
|
|
;; Author: ashmew2. ;;
|
|
;; ;;
|
|
;; Inspired from downloader.asm by hidnplayr@kolibrios.org ;;
|
|
;; GENERAL PUBLIC LICENSE ;;
|
|
;; Version 2, June 1991 ;;
|
|
;; ;;
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
URLMAXLEN = 65535
|
|
FILENAMEMAXLEN = 1024
|
|
__DEBUG_LEVEL__ = 2
|
|
__DEBUG__ = 1
|
|
|
|
format binary as ""
|
|
use32
|
|
org 0x0
|
|
db 'MENUET01' ; header
|
|
dd 0x01 ; header version
|
|
dd START ; entry point
|
|
dd I_END ; image size
|
|
dd I_END+0x1000 ; required memory
|
|
dd I_END+0x1000 ; esp
|
|
dd 0x0 ; I_Path
|
|
dd 0x0 ; I_Path
|
|
|
|
include '../../macros.inc'
|
|
include '../../proc32.inc'
|
|
include '../../dll.inc'
|
|
include '../../debug-fdo.inc'
|
|
include '../../develop/libraries/http/http.inc'
|
|
include '../../string.inc'
|
|
|
|
include '../../system/notify3/notify.inc'
|
|
|
|
include 'notify.asm'
|
|
|
|
virtual at 0
|
|
http_msg http_msg
|
|
end virtual
|
|
|
|
;; Parameters
|
|
;; HTTP URL to download
|
|
;; Target filename
|
|
proc get_file_over_http targeturl, targetfilename
|
|
pusha
|
|
xor eax, eax
|
|
mov [write_to_file.current_offset], eax
|
|
mov [write_to_file.bufsize], eax
|
|
mov [write_to_file.bufptr], eax
|
|
|
|
DEBUGF 1, "---- HTTP : Getting %s\n", [targeturl]
|
|
invoke HTTP_get, [targeturl], 0, FLAG_KEEPALIVE or FLAG_BLOCK, 0
|
|
cmp eax, 0
|
|
je .http_error
|
|
mov [httpstruct], eax
|
|
|
|
;; No HTTP errors, create a new file for the download.
|
|
DEBUGF 1, "---- Creating new file : %s\n", [targetfilename]
|
|
mcall 70, create_new_file
|
|
cmp eax, 0
|
|
jne .file_error
|
|
|
|
.http_receive_loop:
|
|
DEBUGF 1, "---- Receiving over http.\n"
|
|
invoke HTTP_receive, [httpstruct]
|
|
|
|
cmp eax, 0
|
|
je .http_transfer_done
|
|
|
|
|
|
mov ebp, [httpstruct]
|
|
DEBUGF 1, "---- http flags = 0x%x.\n", [ebp + http_msg.flags]
|
|
test [ebp + http_msg.flags], 0xffff0000
|
|
jnz .http_error
|
|
|
|
mov ebp, [ebp + http_msg.content_received]
|
|
cmp ebp, [write_to_file.current_offset]
|
|
jle .http_receive_loop
|
|
;; Only proceed if we have more data in HTTP buffer than we have written to file.
|
|
|
|
;; Process data we got (write it to the file)
|
|
mov ebp, [httpstruct]
|
|
mov ecx, [ebp + http_msg.content_length]
|
|
mov edx, [ebp + http_msg.content_received]
|
|
|
|
DEBUGF 1, "---- Current file write offset : %u (http got : %u / %u)\n", [write_to_file.current_offset], edx, ecx
|
|
sub edx, [write_to_file.current_offset]
|
|
mov [write_to_file.bufsize], edx
|
|
|
|
mov ecx, [ebp + http_msg.content_ptr]
|
|
add ecx, [write_to_file.current_offset]
|
|
mov [write_to_file.bufptr], ecx
|
|
|
|
DEBUGF 1, "---- ecx + offset = 0x%x\n", ecx
|
|
DEBUGF 1, "---- Writing to file %u bytes at 0x%x to %s\n", [write_to_file.bufsize], [write_to_file.bufptr], current_filename
|
|
mcall 70, write_to_file
|
|
cmp eax, 0
|
|
jne .file_error
|
|
|
|
DEBUGF 1, "---- Wrote to file %u bytes.\n", ebx
|
|
add [write_to_file.current_offset], ebx
|
|
DEBUGF 1, "---- File offset updated to : %u\n", [write_to_file.current_offset]
|
|
|
|
jmp .http_receive_loop
|
|
|
|
.file_error:
|
|
DEBUGF 1, "file_erroR with eax = %u!", eax
|
|
call EXIT
|
|
|
|
.http_error:
|
|
DEBUGF 1, "http_erroR!"
|
|
call EXIT
|
|
|
|
.http_transfer_done:
|
|
;; Write any remaining bytes from the http buffer into the file
|
|
DEBUGF 1, "---- http flags = 0x%x.\n", [httpstruct + http_msg.flags]
|
|
DEBUGF 1, "Got %u bytes in total\n", [httpstruct + http_msg.content_length]
|
|
|
|
mov ebp, [httpstruct]
|
|
mov edx, [ebp + http_msg.content_length]
|
|
|
|
sub edx, [write_to_file.current_offset]
|
|
mov [write_to_file.bufsize], edx
|
|
|
|
mov ecx, [ebp + http_msg.content_ptr]
|
|
add ecx, [write_to_file.current_offset]
|
|
mov [write_to_file.bufptr], ecx
|
|
|
|
DEBUGF 1, "---- Final ecx + offset = 0x%x\n", ecx
|
|
DEBUGF 1, "-- Writing to file %u bytes at 0x%x to %s\n", [write_to_file.bufsize], [write_to_file.bufptr], current_filename
|
|
|
|
mcall 70, write_to_file
|
|
cmp eax, 0
|
|
jne .file_error
|
|
|
|
DEBUGF 1, "-- Wrote to file %u bytes.\n", ebx
|
|
add [write_to_file.current_offset], ebx
|
|
DEBUGF 1, "-- File offset updated to : %u\n", [write_to_file.current_offset]
|
|
mov ebp, [httpstruct]
|
|
mov edx, [ebp + http_msg.content_length]
|
|
cmp [write_to_file.current_offset], edx
|
|
jne .http_transfer_done
|
|
|
|
invoke HTTP_free, [httpstruct]
|
|
|
|
popa
|
|
ret
|
|
endp
|
|
|
|
proc make_new_folder newfolder
|
|
pusha
|
|
|
|
mov eax, [newfolder]
|
|
mov [create_new_folder.foldername], eax
|
|
mcall 70, create_new_folder
|
|
test eax, eax
|
|
jz .success
|
|
|
|
DEBUGF 1, "Failed to create folder: %s\n", [newfolder]
|
|
call EXIT
|
|
|
|
.success:
|
|
popa
|
|
ret
|
|
endp
|
|
|
|
proc run_if_exists file_path
|
|
m2m [fileinfo.path], [file_path]
|
|
mcall 70, fileinfo
|
|
test eax, eax
|
|
jnz @f
|
|
m2m [fileopen.path], [file_path]
|
|
mcall 70, fileopen
|
|
mcall -1
|
|
@@:
|
|
ret
|
|
endp
|
|
|
|
|
|
START:
|
|
stdcall run_if_exists, TMP_netsurf
|
|
stdcall run_if_exists, ISO_netsurf
|
|
|
|
mcall 68, 11 ; init heap
|
|
call NOTIFY_RUN
|
|
|
|
; load libraries
|
|
stdcall dll.Load, @IMPORT
|
|
test eax, eax
|
|
jnz .all_files_done_error
|
|
|
|
DEBUGF 2, "-------------------------\n"
|
|
DEBUGF 2, "NETSURF INSTALLER.\n"
|
|
|
|
stdcall make_new_folder, dirname_res
|
|
; stdcall make_new_folder, dirname_res_pointers
|
|
; stdcall make_new_folder, dirname_res_throbber
|
|
; stdcall make_new_folder, dirname_res_icons
|
|
|
|
|
|
.get_next_file:
|
|
mov edi, current_url
|
|
mov esi, url
|
|
|
|
@@:
|
|
movsb
|
|
cmp byte[esi], 0
|
|
jne @b
|
|
;; Loaded the base URL into current URL
|
|
|
|
;; Move onto the subsequent file.
|
|
mov esi, [filelistoffset]
|
|
cmp byte[esi], 0
|
|
je .all_files_done
|
|
|
|
@@:
|
|
movsb
|
|
cmp byte[esi], 0
|
|
jne @b
|
|
movsb
|
|
|
|
;; DEBUGF 1, "-- Current URL with filename is : %s\n", current_url
|
|
|
|
; Create name of file we will download to
|
|
mov esi, download_file_path
|
|
mov edi, current_filename
|
|
|
|
@@:
|
|
movsb
|
|
cmp byte[esi], 0
|
|
jne @b
|
|
|
|
mov esi, [filelistoffset]
|
|
@@:
|
|
movsb
|
|
cmp byte[esi], 0
|
|
jne @b
|
|
movsb
|
|
mov [filelistoffset], esi
|
|
|
|
;; current_filename is now set to the name of the file
|
|
;; current_url is now set to the name of the file we will get after download
|
|
DEBUGF 2, "Fetching : %s", current_filename
|
|
pusha
|
|
call NOTIFY_CHANGE
|
|
popa
|
|
stdcall get_file_over_http, current_url, current_filename
|
|
DEBUGF 2, "...DONE!\n"
|
|
jmp .get_next_file
|
|
|
|
.all_files_done:
|
|
DEBUGF 2, "-------------------------\n"
|
|
DEBUGF 2, "NETSURF INSTALLED. Enjoy!\n"
|
|
DEBUGF 2, "-------------------------\n"
|
|
call EXIT
|
|
;; Inform user that all files are done
|
|
|
|
.all_files_done_error:
|
|
DEBUGF 1, "FATAL ERROR: FAILED.\n", eax
|
|
call EXIT
|
|
|
|
;---------------------------------------------------------------------
|
|
; Data area
|
|
;-----------------------------------------------------------------------------
|
|
align 4
|
|
@IMPORT:
|
|
|
|
library lib_http, 'http.obj'
|
|
import lib_http, \
|
|
HTTP_get, 'get', \
|
|
HTTP_receive, 'receive', \
|
|
HTTP_free, 'free'
|
|
|
|
include_debug_strings
|
|
|
|
download_file_path db '/tmp0/1/', 0
|
|
dirname_res db '/tmp0/1/res', 0
|
|
dirname_res_pointers db '/tmp0/1/res/pointers', 0
|
|
dirname_res_throbber db '/tmp0/1/res/throbber', 0
|
|
dirname_res_icons db '/tmp0/1/res/icons', 0
|
|
|
|
url db 'www.kolibri-n.org/files/netsurf/',0
|
|
|
|
; I don't know why NOTIFY_CHANGE doesn't work for the first file
|
|
; so I use this small shit to fix it at NOTIFY_RUN phase
|
|
filelist_first db '/tmp0/1/netsurf', 0
|
|
|
|
MAX_FILES = 6
|
|
|
|
filelist db 'netsurf', 0
|
|
;db 'netsurf-kolibrios.map', 0 ;what this???
|
|
db 'res/adblock.css', 0
|
|
db 'res/quirks.css', 0
|
|
db 'res/Messages', 0
|
|
db 'res/default.css', 0
|
|
db 'res/sans.ttf', 0
|
|
db 'res/internal.css', 0
|
|
; db 'res/welcome.html', 0
|
|
; db 'res/licence.html', 0
|
|
; db 'res/maps.html', 0
|
|
; db 'res/credits.html', 0
|
|
; db 'res/favicon.png', 0
|
|
; db 'res/netsurf.png', 0
|
|
; db 'res/throbber/throbber8.png', 0
|
|
; db 'res/throbber/throbber3.png', 0
|
|
; db 'res/throbber/throbber4.png', 0
|
|
; db 'res/throbber/throbber0.png', 0
|
|
; db 'res/throbber/throbber6.png', 0
|
|
; db 'res/throbber/throbber2.png', 0
|
|
; db 'res/throbber/throbber1.png', 0
|
|
; db 'res/throbber/throbber7.png', 0
|
|
; db 'res/throbber/throbber5.png', 0
|
|
; db 'res/pointers/point.png', 0
|
|
; db 'res/pointers/no_drop.png', 0
|
|
; db 'res/pointers/wait.png', 0
|
|
; db 'res/pointers/up-down.png', 0
|
|
; db 'res/pointers/help.png', 0
|
|
; db 'res/pointers/ru-ld.png', 0
|
|
; db 'res/pointers/menu.png', 0
|
|
; db 'res/pointers/not_allowed.png', 0
|
|
; db 'res/pointers/cross.png', 0
|
|
; db 'res/pointers/default.png', 0
|
|
; db 'res/pointers/caret.png', 0
|
|
; db 'res/pointers/left-right.png', 0
|
|
; db 'res/pointers/lu-rd.png', 0
|
|
; db 'res/pointers/progress.png', 0
|
|
; db 'res/pointers/move.png', 0
|
|
; db 'res/icons/back.png', 0
|
|
; db 'res/icons/back_g.png', 0
|
|
; db 'res/icons/scrollr.png', 0
|
|
; db 'res/icons/osk.png', 0
|
|
; db 'res/icons/forward_g.png', 0
|
|
; db 'res/icons/scrolll.png', 0
|
|
; db 'res/icons/history.png', 0
|
|
; db 'res/icons/forward.png', 0
|
|
; db 'res/icons/home_g.png', 0
|
|
; db 'res/icons/history_g.png', 0
|
|
; db 'res/icons/reload_g.png', 0
|
|
; db 'res/icons/scrollu.png', 0
|
|
; db 'res/icons/stop.png', 0
|
|
; db 'res/icons/scrolld.png', 0
|
|
; db 'res/icons/stop_g.png', 0
|
|
; db 'res/icons/home.png', 0
|
|
; db 'res/icons/reload.png', 0
|
|
db 0
|
|
|
|
filelistoffset dd filelist
|
|
httpstruct dd 0
|
|
|
|
create_new_file dd 2, 0, 0, 0, 0
|
|
db 0
|
|
dd current_filename
|
|
|
|
create_new_folder dd 9, 0, 0, 0, 0
|
|
db 0
|
|
.foldername dd 0
|
|
|
|
write_to_file dd 3
|
|
.current_offset dd 0, 0
|
|
.bufsize dd 0
|
|
.bufptr dd 0
|
|
db 0
|
|
dd current_filename
|
|
|
|
socketdata rb 4096
|
|
current_url rb URLMAXLEN
|
|
current_filename rb FILENAMEMAXLEN
|
|
|
|
ISO_netsurf db "/kolibrios/netsurf/netsurf", 0
|
|
TMP_netsurf db "/tmp0/1/netsurf", 0
|
|
|
|
bdvk_buf rb 560
|
|
|
|
fileinfo dd 5
|
|
dd 0,0,0
|
|
dd bdvk_buf
|
|
db 0
|
|
.path dd ? ; path
|
|
|
|
;=====================================================================
|
|
; NOTIFY DATA
|
|
timer dd 0
|
|
params rb 256
|
|
ctrl:
|
|
.name rb 32
|
|
.addr rd 1
|
|
rb 2048
|
|
|
|
sz_text:
|
|
db "Downloading Netsurf ",10, 0
|
|
sz_quote:
|
|
db "'", 0
|
|
sz_flags:
|
|
db "Ddcpt", 0
|
|
|
|
sz_final_text:
|
|
db "Netsurf download complete.",10,"Enjoy!",0
|
|
|
|
fi_launch:
|
|
dd 7, 0, params, 0, 0
|
|
db "/sys/@notify", 0
|
|
|
|
fileopen dd 7
|
|
dd 0,0,0,0
|
|
db 0
|
|
.path dd ? ; path
|
|
;=====================================================================
|
|
|
|
I_END:
|