2012-04-03 18:37:24 +02:00
|
|
|
;
|
|
|
|
; Kolibrios FTP Daemon
|
|
|
|
;
|
|
|
|
; hidnplayr@gmail.com
|
|
|
|
;
|
|
|
|
; GPLv2
|
|
|
|
;
|
|
|
|
|
2012-04-05 15:00:39 +02:00
|
|
|
BUFFERSIZE = 8192
|
2012-04-03 22:28:26 +02:00
|
|
|
|
|
|
|
STATE_DISCONNECTED = 0
|
|
|
|
STATE_CONNECTED = 1
|
|
|
|
STATE_LOGIN = 2
|
|
|
|
STATE_ACTIVE = 3
|
2012-04-03 18:37:24 +02:00
|
|
|
|
2012-04-04 11:24:08 +02:00
|
|
|
TYPE_UNDEF = 0
|
|
|
|
|
|
|
|
TYPE_ASCII = 00000100b
|
|
|
|
TYPE_EBDIC = 00001000b
|
|
|
|
; subtypes for ascii & ebdic (np = default)
|
|
|
|
TYPE_NP = 00000001b ; non printable
|
|
|
|
TYPE_TELNET = 00000010b
|
|
|
|
TYPE_ASA = 00000011b
|
|
|
|
|
|
|
|
TYPE_IMAGE = 01000000b ; binary data
|
|
|
|
TYPE_LOCAL = 10000000b ; bits per byte must be specified
|
|
|
|
; lower 4 bits will hold this value
|
|
|
|
|
|
|
|
MODE_NOTREADY = 0
|
|
|
|
MODE_ACTIVE = 1
|
2012-04-04 15:08:07 +02:00
|
|
|
MODE_PASSIVE_WAIT = 2
|
|
|
|
MODE_PASSIVE_OK = 3
|
2012-04-03 18:37:24 +02:00
|
|
|
|
2012-04-07 13:36:00 +02:00
|
|
|
format binary as ""
|
|
|
|
|
2012-04-03 18:37:24 +02:00
|
|
|
use32
|
|
|
|
db 'MENUET01' ; signature
|
|
|
|
dd 1 ; header version
|
|
|
|
dd start ; entry point
|
|
|
|
dd i_end ; initialized size
|
|
|
|
dd mem+0x1000 ; required memory
|
|
|
|
dd mem+0x1000 ; stack pointer
|
2012-04-06 20:37:00 +02:00
|
|
|
dd params ; parameters
|
2012-04-03 18:37:24 +02:00
|
|
|
dd path ; path
|
|
|
|
|
|
|
|
include '../macros.inc'
|
|
|
|
purge mov,add,sub
|
|
|
|
include '../proc32.inc'
|
|
|
|
include '../dll.inc'
|
2012-04-04 15:08:07 +02:00
|
|
|
include '../struct.inc'
|
|
|
|
include '../libio.inc'
|
2012-04-03 18:37:24 +02:00
|
|
|
|
|
|
|
include '../network.inc'
|
|
|
|
include 'commands.inc'
|
|
|
|
|
|
|
|
align 4
|
|
|
|
start:
|
|
|
|
; load libraries
|
|
|
|
stdcall dll.Load, @IMPORT
|
|
|
|
test eax, eax
|
|
|
|
jnz exit
|
|
|
|
|
2012-04-06 20:37:00 +02:00
|
|
|
mcall 68, 11 ; init heap
|
|
|
|
|
2012-04-03 18:37:24 +02:00
|
|
|
; find path to main settings file
|
2012-04-06 20:37:00 +02:00
|
|
|
mov edi, path ; Calculate the length of zero-terminated string
|
2012-04-07 20:42:58 +02:00
|
|
|
xor al, al
|
2012-04-03 18:37:24 +02:00
|
|
|
mov ecx, 1024
|
|
|
|
repne scasb
|
|
|
|
dec edi
|
2012-04-06 20:37:00 +02:00
|
|
|
mov esi, filename ; append it with '.ini'
|
2012-04-03 18:37:24 +02:00
|
|
|
movsd
|
|
|
|
movsb
|
|
|
|
|
|
|
|
; initialize console
|
|
|
|
push 1
|
|
|
|
call [con_start]
|
2012-04-04 11:24:08 +02:00
|
|
|
|
2012-04-03 18:37:24 +02:00
|
|
|
push title
|
2012-04-04 11:24:08 +02:00
|
|
|
push -1
|
|
|
|
push -1
|
|
|
|
push -1
|
|
|
|
push -1
|
2012-04-03 18:37:24 +02:00
|
|
|
call [con_init]
|
|
|
|
|
2012-04-06 20:37:00 +02:00
|
|
|
mcall 40, 1 shl 7 ; we only want network events
|
2012-04-03 18:37:24 +02:00
|
|
|
|
2012-04-04 11:24:08 +02:00
|
|
|
invoke ini.get_int, path, str_ftpd, str_port, 21
|
|
|
|
mov [sockaddr1.port], ax
|
|
|
|
|
|
|
|
push eax
|
2012-04-03 18:37:24 +02:00
|
|
|
push str1
|
2012-04-04 11:24:08 +02:00
|
|
|
call [con_printf]
|
2012-04-03 18:37:24 +02:00
|
|
|
|
|
|
|
mcall socket, AF_INET4, SOCK_STREAM, 0
|
|
|
|
cmp eax, -1
|
|
|
|
je sock_err
|
|
|
|
|
|
|
|
mov [socketnum], eax
|
|
|
|
|
2012-04-04 11:24:08 +02:00
|
|
|
push str2
|
|
|
|
call [con_write_asciiz]
|
|
|
|
|
2012-04-07 20:42:58 +02:00
|
|
|
; mcall setsockopt, [socketnum], SOL_SOCKET, SO_REUSEADDR, &yes,
|
|
|
|
; cmp eax, -1
|
|
|
|
; je opt_err
|
2012-04-03 18:37:24 +02:00
|
|
|
|
|
|
|
mcall bind, [socketnum], sockaddr1, sockaddr1.length
|
|
|
|
cmp eax, -1
|
|
|
|
je bind_err
|
|
|
|
|
2012-04-04 11:24:08 +02:00
|
|
|
push str2
|
|
|
|
call [con_write_asciiz]
|
|
|
|
|
2012-04-03 18:37:24 +02:00
|
|
|
invoke ini.get_int, path, str_ftpd, str_conn, 1 ; Backlog (max connections)
|
|
|
|
mov edx, eax
|
2012-04-04 11:24:08 +02:00
|
|
|
|
|
|
|
push str2
|
|
|
|
call [con_write_asciiz]
|
|
|
|
|
2012-04-03 18:37:24 +02:00
|
|
|
mcall listen, [socketnum]
|
|
|
|
cmp eax, -1
|
|
|
|
je listen_err
|
|
|
|
|
2012-04-04 11:24:08 +02:00
|
|
|
push str2b
|
2012-04-03 18:37:24 +02:00
|
|
|
call [con_write_asciiz]
|
|
|
|
|
2012-04-06 20:37:00 +02:00
|
|
|
mainloop:
|
|
|
|
mcall 10 ; Wait here for incoming connections on the base socket (socketnum)
|
|
|
|
|
|
|
|
mcall 51, 1, threadstart, 0 ; Start a new thread for every incoming connection
|
|
|
|
; NOTE: upon initialisation of the thread, stack will not be available!
|
|
|
|
jmp mainloop
|
2012-04-03 18:37:24 +02:00
|
|
|
|
2012-04-07 20:42:58 +02:00
|
|
|
diff16 "threadstart", 0, $
|
2012-04-06 20:37:00 +02:00
|
|
|
threadstart:
|
|
|
|
mcall 68, 12, sizeof.thread_data ; allocate the thread data struct
|
2012-04-03 18:37:24 +02:00
|
|
|
cmp eax, -1
|
2012-04-06 20:37:00 +02:00
|
|
|
je exit
|
|
|
|
|
|
|
|
lea esp, [eax + thread_data.stack] ; init stack
|
|
|
|
push eax ; save pointer to thread_data on stack
|
|
|
|
|
|
|
|
mcall 40, 1 shl 7 ; we only want network events for this thread
|
2012-04-03 18:37:24 +02:00
|
|
|
|
2012-04-07 20:42:58 +02:00
|
|
|
pushd 0x03
|
|
|
|
call [con_set_flags]
|
2012-04-06 20:37:00 +02:00
|
|
|
push str8
|
|
|
|
call [con_write_asciiz] ; print on the console that we have created the new thread successfully
|
2012-04-07 20:42:58 +02:00
|
|
|
pushd 0x07
|
|
|
|
call [con_set_flags]
|
2012-04-06 20:37:00 +02:00
|
|
|
|
|
|
|
mcall accept, [socketnum], sockaddr1, sockaddr1.length ; time to accept the awaiting connection..
|
|
|
|
cmp eax, -1
|
|
|
|
je thread_exit
|
|
|
|
mov edx, [esp] ; pointer to thread_data
|
|
|
|
mov [edx + thread_data.socketnum], eax
|
2012-04-03 18:37:24 +02:00
|
|
|
|
2012-04-06 20:37:00 +02:00
|
|
|
mcall send, [edx + thread_data.socketnum], str220, str220.length, 0 ; send welcome string to the FTP client
|
2012-04-03 18:37:24 +02:00
|
|
|
|
2012-04-06 20:37:00 +02:00
|
|
|
threadloop:
|
2012-04-03 18:37:24 +02:00
|
|
|
mcall 10
|
|
|
|
|
2012-04-06 20:37:00 +02:00
|
|
|
mov edx, [esp] ; pointer to thread_data
|
|
|
|
|
|
|
|
cmp [edx + thread_data.mode], MODE_PASSIVE_WAIT
|
2012-04-04 15:08:07 +02:00
|
|
|
jne @f
|
2012-04-06 20:37:00 +02:00
|
|
|
mov ecx, [edx + thread_data.passivesocknum]
|
|
|
|
lea edx, [edx + thread_data.datasock]
|
|
|
|
mov esi, sizeof.thread_data.datasock
|
|
|
|
mcall accept
|
|
|
|
mov edx, [esp] ; pointer to thread_data
|
2012-04-04 15:08:07 +02:00
|
|
|
cmp eax, -1
|
|
|
|
je @f
|
2012-04-06 20:37:00 +02:00
|
|
|
mov [edx + thread_data.datasocketnum], eax
|
|
|
|
mov [edx + thread_data.mode], MODE_PASSIVE_OK
|
2012-04-04 15:08:07 +02:00
|
|
|
|
|
|
|
push str_datasock
|
2012-04-06 20:37:00 +02:00
|
|
|
call [con_write_asciiz] ; print on the console that the datasock is now ready
|
2012-04-04 15:08:07 +02:00
|
|
|
@@:
|
|
|
|
|
2012-04-06 20:37:00 +02:00
|
|
|
mov ecx, [edx + thread_data.socketnum]
|
|
|
|
lea edx, [edx + thread_data.buffer]
|
|
|
|
mov esi, sizeof.thread_data.buffer
|
|
|
|
mcall recv
|
|
|
|
cmp eax, -1 ; error?
|
|
|
|
je threadloop
|
|
|
|
or eax, eax ; 0 bytes read?
|
|
|
|
jz threadloop
|
|
|
|
push eax ; save number of bytes read on stack
|
2012-04-03 18:37:24 +02:00
|
|
|
|
2012-04-06 20:37:00 +02:00
|
|
|
mov edx, [esp+4] ; pointer to thread_data
|
|
|
|
mov byte [edx + thread_data.buffer + eax], 0 ; append received data with a 0 byte
|
2012-04-04 11:24:08 +02:00
|
|
|
|
2012-04-07 20:42:58 +02:00
|
|
|
pushd 0x02 ; print received data to console (in green color)
|
2012-04-04 11:24:08 +02:00
|
|
|
call [con_set_flags]
|
2012-04-07 20:42:58 +02:00
|
|
|
push str_newline
|
|
|
|
call [con_write_asciiz]
|
2012-04-06 20:37:00 +02:00
|
|
|
lea eax, [edx + thread_data.buffer]
|
|
|
|
push eax
|
2012-04-03 18:37:24 +02:00
|
|
|
call [con_write_asciiz]
|
2012-04-04 11:24:08 +02:00
|
|
|
pushd 0x07
|
|
|
|
call [con_set_flags]
|
|
|
|
|
2012-04-06 20:37:00 +02:00
|
|
|
pop ecx ; number of bytes read
|
|
|
|
lea esi, [edx + thread_data.buffer]
|
2012-04-03 18:37:24 +02:00
|
|
|
call parse_cmd
|
|
|
|
|
2012-04-06 20:37:00 +02:00
|
|
|
jmp threadloop
|
2012-04-03 18:37:24 +02:00
|
|
|
|
|
|
|
listen_err:
|
2012-04-04 11:24:08 +02:00
|
|
|
pushd 0x0c
|
|
|
|
call [con_set_flags]
|
2012-04-03 18:37:24 +02:00
|
|
|
push str3
|
|
|
|
call [con_write_asciiz]
|
|
|
|
jmp done
|
|
|
|
|
|
|
|
bind_err:
|
2012-04-04 11:24:08 +02:00
|
|
|
pushd 0x0c
|
|
|
|
call [con_set_flags]
|
2012-04-03 18:37:24 +02:00
|
|
|
push str4
|
|
|
|
call [con_write_asciiz]
|
|
|
|
jmp done
|
|
|
|
|
|
|
|
sock_err:
|
2012-04-04 11:24:08 +02:00
|
|
|
pushd 0x0c
|
|
|
|
call [con_set_flags]
|
2012-04-03 18:37:24 +02:00
|
|
|
push str6
|
|
|
|
call [con_write_asciiz]
|
|
|
|
jmp done
|
|
|
|
|
|
|
|
done:
|
|
|
|
call [con_getch2]
|
|
|
|
push 1
|
|
|
|
call [con_exit]
|
|
|
|
exit:
|
|
|
|
mcall -1
|
|
|
|
|
|
|
|
|
2012-04-06 20:37:00 +02:00
|
|
|
thread_exit:
|
|
|
|
push str_bye
|
|
|
|
call [con_write_asciiz] ; say bye bye
|
|
|
|
pop ecx ; get the thread_data pointer from stack
|
|
|
|
mcall 68, 13 ; free the memory
|
|
|
|
mcall -1 ; and kill the thread
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
; initialized data
|
2012-04-03 18:37:24 +02:00
|
|
|
|
2012-04-06 20:37:00 +02:00
|
|
|
title db 'KolibriOS FTP daemon 0.1', 0
|
|
|
|
str1 db 'Starting FTP daemon on port %u', 0
|
|
|
|
str2 db '.', 0
|
2012-04-07 20:42:58 +02:00
|
|
|
str2b db ' OK!',10,0
|
|
|
|
str3 db 'Listen error',10,0
|
|
|
|
str4 db 'Bind error',10,0
|
2012-04-06 20:37:00 +02:00
|
|
|
;str5 db 'Setsockopt error.',10,10,0
|
2012-04-07 20:42:58 +02:00
|
|
|
str6 db 'Could not open socket',10,0
|
2012-04-06 20:37:00 +02:00
|
|
|
str7 db 'Got data!',10,10,0
|
2012-04-07 20:42:58 +02:00
|
|
|
str8 db 10,'New thread created!',10,0
|
|
|
|
str_bye db 10,'Closing thread!',10,0
|
2012-04-03 18:37:24 +02:00
|
|
|
|
2012-04-07 20:42:58 +02:00
|
|
|
str_logged_in db 'Login ok',10,0
|
|
|
|
str_pass_ok db 'Password ok - Logged in',10,0
|
2012-04-04 15:08:07 +02:00
|
|
|
str_pwd db 'Current directory is "%s"\n',0
|
2012-04-07 20:42:58 +02:00
|
|
|
str_err2 db 'ERROR: cannot open directory',10,0
|
|
|
|
str_datasock db 'Passive data socket connected!',10,0
|
|
|
|
str_notfound db 'ERROR: file not found',10,0
|
|
|
|
str_sockerr db 'ERROR: socket error',10,0
|
2012-04-05 15:00:39 +02:00
|
|
|
|
2012-04-06 20:37:00 +02:00
|
|
|
str_newline db 10, 0
|
2012-04-04 15:08:07 +02:00
|
|
|
str_mask db '*', 0
|
|
|
|
|
2012-04-06 20:37:00 +02:00
|
|
|
months dd 'Jan '
|
|
|
|
dd 'Feb '
|
|
|
|
dd 'Mar '
|
|
|
|
dd 'Apr '
|
|
|
|
dd 'May '
|
|
|
|
dd 'Jun '
|
|
|
|
dd 'Jul '
|
|
|
|
dd 'Aug '
|
|
|
|
dd 'Sep '
|
|
|
|
dd 'Oct '
|
|
|
|
dd 'Nov '
|
|
|
|
dd 'Dec '
|
|
|
|
|
|
|
|
filename db '.ini', 0
|
|
|
|
str_port db 'port', 0
|
|
|
|
str_ftpd db 'ftpd', 0
|
|
|
|
str_conn db 'conn', 0
|
2012-04-03 18:37:24 +02:00
|
|
|
|
|
|
|
sockaddr1:
|
2012-04-06 20:37:00 +02:00
|
|
|
dw AF_INET4
|
|
|
|
.port dw 21
|
|
|
|
.ip dd 0
|
|
|
|
rb 10
|
|
|
|
.length = $ - sockaddr1
|
2012-04-03 18:37:24 +02:00
|
|
|
|
|
|
|
; import
|
2012-04-06 20:37:00 +02:00
|
|
|
|
2012-04-03 18:37:24 +02:00
|
|
|
align 4
|
|
|
|
@IMPORT:
|
|
|
|
|
2012-04-06 20:37:00 +02:00
|
|
|
library console, 'console.obj',\
|
|
|
|
libini, 'libini.obj', \
|
|
|
|
libio, 'libio.obj'
|
|
|
|
|
|
|
|
import console,\
|
|
|
|
con_start, 'START',\
|
|
|
|
con_init, 'con_init',\
|
|
|
|
con_write_asciiz, 'con_write_asciiz',\
|
|
|
|
con_exit, 'con_exit',\
|
|
|
|
con_gets, 'con_gets',\
|
|
|
|
con_cls, 'con_cls',\
|
|
|
|
con_printf, 'con_printf',\
|
|
|
|
con_getch2, 'con_getch2',\
|
|
|
|
con_set_cursor_pos, 'con_set_cursor_pos',\
|
|
|
|
con_set_flags, 'con_set_flags'
|
|
|
|
|
|
|
|
import libini,\
|
|
|
|
ini.get_str, 'ini_get_str',\
|
|
|
|
ini.get_int, 'ini_get_int'
|
|
|
|
|
|
|
|
import libio,\
|
|
|
|
libio.init, 'lib_init',\
|
|
|
|
file.size, 'file_size',\
|
|
|
|
file.open, 'file_open',\
|
|
|
|
file.read, 'file_read',\
|
|
|
|
file.close, 'file_close',\
|
|
|
|
file.find.first, 'file_find_first',\
|
|
|
|
file.find.next, 'file_find_next',\
|
|
|
|
file.find.close, 'file_find_close'
|
2012-04-03 18:37:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
i_end:
|
|
|
|
|
2012-04-06 20:37:00 +02:00
|
|
|
; uninitialised data
|
2012-04-03 22:28:26 +02:00
|
|
|
|
2012-04-06 20:37:00 +02:00
|
|
|
socketnum dd ?
|
|
|
|
path rb 1024
|
|
|
|
params rb 1024
|
2012-04-03 22:28:26 +02:00
|
|
|
|
2012-04-06 20:37:00 +02:00
|
|
|
mem:
|
2012-04-03 18:37:24 +02:00
|
|
|
|
|
|
|
|