forked from KolibriOS/kolibrios
c60d5b31c6
-Use HMAC and CTR/CBC from libcrash instead of our own implementations -Fixed stack allocation for keystroke handler thread git-svn-id: svn://kolibrios.org@9987 a494cfbc-eb01-0410-851d-a64ba20cac60
258 lines
9.8 KiB
PHP
Executable File
258 lines
9.8 KiB
PHP
Executable File
; sshlib_transport.inc - SSH transport layer
|
|
;
|
|
; Copyright (C) 2016-2024 Jeffrey Amelynck
|
|
;
|
|
; This program is free software: you can redistribute it and/or modify
|
|
; it under the terms of the GNU General Public License as published by
|
|
; the Free Software Foundation, either version 3 of the License, or
|
|
; (at your option) any later version.
|
|
;
|
|
; This program is distributed in the hope that it will be useful,
|
|
; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
; GNU General Public License for more details.
|
|
;
|
|
; You should have received a copy of the GNU General Public License
|
|
; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
align 16
|
|
proc sshlib_recv_packet_hmac con_ptr, flags
|
|
|
|
locals
|
|
data_length dd ? ; Total length of packet without MAC
|
|
endl
|
|
|
|
DEBUGF 3, "> "
|
|
; Receive first block
|
|
mov ebx, [con_ptr]
|
|
mov ecx, [ebx + sshlib_connection.socketnum]
|
|
mov esi, [ebx + sshlib_connection.rx_crypt_blocksize]
|
|
lea edx, [ebx + sshlib_connection.rx_buffer]
|
|
mov edi, [flags]
|
|
mcall recv
|
|
cmp eax, 0
|
|
jle .sock_fail
|
|
sub [ssh_chan.rcv_wnd], eax ;;; FIXME
|
|
DEBUGF 2, "chunk = %u ", eax
|
|
|
|
mov ebx, [con_ptr]
|
|
cmp eax, [ebx + sshlib_connection.rx_crypt_blocksize]
|
|
jne .proto_fail ; TODO: handle receives of 1, 2, and 3 bytes correctly
|
|
|
|
; Decrypt first block
|
|
pusha
|
|
lea esi, [ebx + sshlib_connection.rx_buffer]
|
|
lea ecx, [ebx + sshlib_connection.rx_crypt_ctx]
|
|
stdcall [ebx + sshlib_connection.rx_crypt_proc], ecx, esi, eax, esi
|
|
popa
|
|
|
|
; Check data length
|
|
mov esi, [ebx + sshlib_connection.rx_buffer.packet_length]
|
|
bswap esi ; convert length to little endian
|
|
mov [ebx + sshlib_connection.rx_buffer.packet_length], esi
|
|
DEBUGF 2, "packet length=%u ", esi
|
|
cmp esi, BUFFERSIZE
|
|
ja .proto_fail ; packet is too large
|
|
|
|
; Calculate amount of remaining data
|
|
add esi, 4 ; Packet length field itself is not included in the count
|
|
sub esi, [ebx + sshlib_connection.rx_crypt_blocksize] ; Already received this amount of data
|
|
add esi, [ebx + sshlib_connection.rx_mac_length]
|
|
jz .packet_complete
|
|
|
|
; Receive remaining data
|
|
lea edx, [ebx + sshlib_connection.rx_buffer]
|
|
add edx, [ebx + sshlib_connection.rx_crypt_blocksize]
|
|
mov ecx, [ebx + sshlib_connection.socketnum]
|
|
mov edi, [flags]
|
|
.receive_loop:
|
|
DEBUGF 3, "want %d bytes.. ", esi
|
|
mcall recv
|
|
cmp eax, 0
|
|
jle .sock_fail
|
|
sub [ssh_chan.rcv_wnd], eax ;;; FIXME
|
|
DEBUGF 3, "got %d bytes\n", eax
|
|
add edx, eax
|
|
sub esi, eax
|
|
jnz .receive_loop
|
|
.packet_complete:
|
|
|
|
; Decrypt data
|
|
mov ebx, [con_ptr]
|
|
mov ecx, [ebx + sshlib_connection.rx_buffer.packet_length]
|
|
add ecx, 4 ; Packet_length field itself
|
|
sub ecx, [ebx + sshlib_connection.rx_crypt_blocksize] ; Already decrypted this amount of data
|
|
jz .decrypt_complete
|
|
|
|
lea esi, [ebx + sshlib_connection.rx_buffer]
|
|
add esi, [ebx + sshlib_connection.rx_crypt_blocksize]
|
|
pusha
|
|
lea eax, [ebx + sshlib_connection.rx_crypt_ctx]
|
|
stdcall [ebx + sshlib_connection.rx_crypt_proc], eax, esi, ecx, esi
|
|
popa
|
|
.decrypt_complete:
|
|
|
|
; Authenticate message
|
|
lea esi, [ebx + sshlib_connection.rx_mac_seqnr]
|
|
mov ecx, [ebx + sshlib_connection.rx_buffer.packet_length]
|
|
add ecx, 8 ; packet_length field itself + sequence number
|
|
lea eax, [ebx + sshlib_connection.rx_mac_ctx]
|
|
mov edx, [ebx + sshlib_connection.rx_buffer.packet_length]
|
|
bswap edx ; convert length to big endian
|
|
mov [ebx + sshlib_connection.rx_buffer.packet_length], edx
|
|
lea edx, [ebx + sshlib_connection.rx_int_key]
|
|
stdcall [ebx + sshlib_connection.rx_mac_proc], eax, esi, ecx, edx, SHA2_256_LEN
|
|
mov edx, [ebx + sshlib_connection.rx_buffer.packet_length]
|
|
bswap edx ; convert length to little endian
|
|
mov [ebx + sshlib_connection.rx_buffer.packet_length], edx
|
|
|
|
lea esi, [ebx + sshlib_connection.rx_mac_ctx]
|
|
lea edi, [ebx + sshlib_connection.rx_buffer+4]
|
|
add edi, [ebx + sshlib_connection.rx_buffer.packet_length]
|
|
mov ecx, [ebx + sshlib_connection.rx_mac_length]
|
|
shr ecx, 2
|
|
repe cmpsd ; TODO: constant time
|
|
jne .mac_fail
|
|
|
|
; Return useful data length to the caller via eax register
|
|
mov eax, [ebx + sshlib_connection.rx_buffer.packet_length]
|
|
movzx ebx, [ebx + sshlib_connection.rx_buffer.padding_length]
|
|
sub eax, ebx
|
|
|
|
; Update sequence counter
|
|
mov ebx, [con_ptr]
|
|
add byte[ebx + sshlib_connection.rx_mac_seqnr+3], 1
|
|
adc byte[ebx + sshlib_connection.rx_mac_seqnr+2], 0
|
|
adc byte[ebx + sshlib_connection.rx_mac_seqnr+1], 0
|
|
adc byte[ebx + sshlib_connection.rx_mac_seqnr+0], 0
|
|
|
|
DEBUGF 1, "useful data length=%u\n", eax
|
|
|
|
ret
|
|
|
|
.sock_fail:
|
|
DEBUGF 3, "ssh_recv_packet failed!\n"
|
|
mov eax, SSHLIB_ERR_SOCKET
|
|
ret
|
|
|
|
.mac_fail:
|
|
DEBUGF 3, "ssh_recv_packet message authentication failed!\n"
|
|
mov eax, SSHLIB_ERR_MAC_VERIFY_FAIL
|
|
xor ebx, ebx
|
|
ret
|
|
|
|
.proto_fail:
|
|
DEBUGF 3, "ssh_recv_packet protocol failure!\n"
|
|
mov eax, SSHLIB_ERR_PROTOCOL
|
|
xor ebx, ebx
|
|
ret
|
|
|
|
endp
|
|
|
|
|
|
align 16
|
|
proc sshlib_send_packet_hmac con_ptr, buf, payload_size, flags
|
|
|
|
locals
|
|
packet_size dd ?
|
|
endl
|
|
DEBUGF 2, "< "
|
|
|
|
; Check how many bytes we should pad
|
|
mov eax, [payload_size]
|
|
inc eax ; padding length byte
|
|
lea edx, [eax+4] ; total packet size (without padding and MAC)
|
|
mov [packet_size], edx
|
|
|
|
mov ecx, [con_ptr]
|
|
; mov edx, eax;;;;;;;;;;;;;;;
|
|
mov ebx, [ecx+sshlib_connection.tx_pad_size]
|
|
dec ebx
|
|
and edx, ebx
|
|
neg edx
|
|
add edx, [ecx+sshlib_connection.tx_pad_size]
|
|
add edx, [ecx+sshlib_connection.tx_pad_size]
|
|
DEBUGF 1, "padding %u bytes ", edx
|
|
add [packet_size], edx ; total packet size with padding
|
|
|
|
; Start building the packet
|
|
; First comes the packet length, in network byte order ofcourse.
|
|
add eax, edx
|
|
DEBUGF 2, "total size: %u ", eax
|
|
bswap eax
|
|
lea edi, [ecx+sshlib_connection.tx_buffer]
|
|
stosd
|
|
; Then the padding length
|
|
mov al, dl
|
|
stosb
|
|
; And the actual payload bytes
|
|
mov esi, [buf]
|
|
mov ecx, [payload_size]
|
|
rep movsb
|
|
|
|
; Append the packet with #edx padding bytes.
|
|
; Since we must pad at least 8 bytes, we can always use DWORD writes.
|
|
; First do an (unaligned) write exactly following the data
|
|
dec edx
|
|
mov esi, edx
|
|
shr esi, 2 ; number dwords
|
|
mov ebx, edx
|
|
and ebx, 3
|
|
inc ebx ; number bytes in first write (1-4)
|
|
call MBRandom
|
|
mov dword[edi], eax
|
|
add edi, ebx
|
|
; Then, do as many aligned writes as nescessary
|
|
@@:
|
|
call MBRandom
|
|
stosd
|
|
dec esi
|
|
jnz @r
|
|
|
|
; Append the packet with Message Authentication Code
|
|
mov ebx, [con_ptr]
|
|
DEBUGF 1, "MAC sequence number: 0x%x\n", [ebx + sshlib_connection.tx_mac_seqnr]
|
|
lea esi, [ebx + sshlib_connection.tx_mac_seqnr]
|
|
mov ecx, [packet_size]
|
|
add ecx, 4 ; Sequence number length
|
|
lea eax, [ebx + sshlib_connection.tx_mac_ctx]
|
|
lea edx, [ebx + sshlib_connection.tx_int_key]
|
|
stdcall [ebx + sshlib_connection.tx_mac_proc], eax, esi, ecx, edx, SHA2_256_LEN
|
|
|
|
mov ebx, [con_ptr]
|
|
lea esi, [ebx + sshlib_connection.tx_mac_ctx]
|
|
lea edi, [ebx + sshlib_connection.tx_buffer]
|
|
add edi, [packet_size]
|
|
mov ecx, [ebx + sshlib_connection.tx_mac_length]
|
|
shr ecx, 2
|
|
rep movsd
|
|
|
|
; Now, encrypt everything but MAC
|
|
lea esi, [ebx + sshlib_connection.tx_buffer]
|
|
lea eax, [ebx + sshlib_connection.tx_crypt_ctx]
|
|
stdcall [ebx + sshlib_connection.tx_crypt_proc], eax, esi, [packet_size], esi
|
|
|
|
; Send the packet
|
|
mov ebx, [con_ptr]
|
|
mov ecx, [ebx + sshlib_connection.socketnum]
|
|
lea edx, [ebx + sshlib_connection.tx_buffer]
|
|
mov esi, [packet_size]
|
|
add esi, [ebx + sshlib_connection.tx_mac_length]
|
|
mov edi, [flags]
|
|
mcall send
|
|
|
|
; Update sequence counter
|
|
mov ebx, [con_ptr]
|
|
add byte[ebx + sshlib_connection.tx_mac_seqnr+3], 1
|
|
adc byte[ebx + sshlib_connection.tx_mac_seqnr+2], 0
|
|
adc byte[ebx + sshlib_connection.tx_mac_seqnr+1], 0
|
|
adc byte[ebx + sshlib_connection.tx_mac_seqnr+0], 0
|
|
|
|
DEBUGF 2, "\n"
|
|
|
|
ret
|
|
|
|
endp
|
|
|