2013-05-28 21:09:31 +02:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; ;;
|
2015-06-01 21:18:07 +02:00
|
|
|
;; Copyright (C) KolibriOS team 2004-2015. All rights reserved. ;;
|
2013-05-28 21:09:31 +02:00
|
|
|
;; Distributed under terms of the GNU General Public License ;;
|
|
|
|
;; ;;
|
|
|
|
;; loopback.inc ;;
|
|
|
|
;; ;;
|
|
|
|
;; LoopBack device for KolibriOS ;;
|
|
|
|
;; ;;
|
|
|
|
;; Written by hidnplayr@kolibrios.org ;;
|
|
|
|
;; ;;
|
|
|
|
;; GNU GENERAL PUBLIC LICENSE ;;
|
|
|
|
;; Version 2, June 1991 ;;
|
|
|
|
;; ;;
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
2015-06-01 21:18:07 +02:00
|
|
|
$Revision: 5523 $
|
2013-05-28 21:09:31 +02:00
|
|
|
|
|
|
|
iglobal
|
2013-06-28 10:02:49 +02:00
|
|
|
align 4
|
2013-05-28 21:09:31 +02:00
|
|
|
|
|
|
|
LOOPBACK_DEVICE:
|
|
|
|
|
2013-06-08 15:00:38 +02:00
|
|
|
.device_type dd NET_DEVICE_LOOPBACK
|
|
|
|
.mtu dd 4096
|
|
|
|
.name dd .namestr
|
2013-05-28 21:09:31 +02:00
|
|
|
|
2013-06-08 15:00:38 +02:00
|
|
|
.unload dd .dummy_fn
|
|
|
|
.reset dd .dummy_fn
|
|
|
|
.transmit dd LOOP_input
|
2013-05-28 21:09:31 +02:00
|
|
|
|
2013-06-08 15:00:38 +02:00
|
|
|
.bytes_tx dq 0
|
|
|
|
.bytes_rx dq 0
|
|
|
|
.packets_tx dd 0
|
|
|
|
.packets_rx dd 0
|
|
|
|
|
|
|
|
.link_state dd -1
|
2014-01-01 22:16:27 +01:00
|
|
|
.hwacc dd NET_HWACC_TCP_IPv4_IN + NET_HWACC_TCP_IPv4_OUT
|
2013-06-08 15:00:38 +02:00
|
|
|
|
|
|
|
.namestr db 'loopback', 0
|
2013-05-28 21:09:31 +02:00
|
|
|
|
|
|
|
.dummy_fn:
|
2013-06-28 10:02:49 +02:00
|
|
|
ret
|
2013-05-28 21:09:31 +02:00
|
|
|
|
|
|
|
endg
|
|
|
|
|
2013-06-08 15:00:38 +02:00
|
|
|
|
|
|
|
macro LOOP_init {
|
|
|
|
local .fail
|
|
|
|
|
|
|
|
mov ebx, LOOPBACK_DEVICE
|
|
|
|
call NET_add_device
|
|
|
|
|
|
|
|
cmp eax, -1
|
|
|
|
je .fail
|
|
|
|
|
|
|
|
mov [IP_LIST], 127 + 1 shl 24
|
|
|
|
mov [SUBNET_LIST], 255
|
|
|
|
mov [BROADCAST_LIST], 0xffffff00 + 127
|
|
|
|
|
|
|
|
.fail:
|
|
|
|
}
|
|
|
|
|
2013-05-28 21:09:31 +02:00
|
|
|
;-----------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; LOOP_input
|
|
|
|
;
|
2013-06-08 15:00:38 +02:00
|
|
|
; IN: [esp+4] = Pointer to buffer
|
2013-05-28 21:09:31 +02:00
|
|
|
;
|
|
|
|
; OUT: /
|
|
|
|
;
|
|
|
|
;-----------------------------------------------------------------
|
|
|
|
align 4
|
|
|
|
LOOP_input:
|
|
|
|
|
2015-06-01 21:18:07 +02:00
|
|
|
mov eax, [esp+4]
|
2013-05-28 21:09:31 +02:00
|
|
|
|
2015-06-01 21:18:07 +02:00
|
|
|
; Update stats
|
2013-06-08 15:00:38 +02:00
|
|
|
inc [LOOPBACK_DEVICE.packets_rx]
|
2015-06-01 21:18:07 +02:00
|
|
|
|
|
|
|
mov ecx, [eax + NET_BUFF.length]
|
2013-06-08 15:00:38 +02:00
|
|
|
add dword[LOOPBACK_DEVICE.bytes_rx], ecx
|
|
|
|
adc dword[LOOPBACK_DEVICE.bytes_rx + 4], 0
|
|
|
|
|
2015-06-01 21:18:07 +02:00
|
|
|
DEBUGF DEBUG_NETWORK_VERBOSE, "LOOP_input: ptr=%x size=%u\n", eax, ecx
|
2013-05-28 21:09:31 +02:00
|
|
|
|
2015-06-01 21:18:07 +02:00
|
|
|
; Reverse buffptr and returnaddr on stack
|
|
|
|
pop edx edi
|
|
|
|
push edx edi
|
|
|
|
|
|
|
|
; Set registers for protocol handlers
|
|
|
|
lea edx, [eax + NET_BUFF.data]
|
|
|
|
mov ebx, [eax + NET_BUFF.device]
|
|
|
|
mov eax, [eax + NET_BUFF.type]
|
|
|
|
|
|
|
|
; Place protocol handlers here
|
2013-06-08 15:00:38 +02:00
|
|
|
cmp eax, AF_INET4
|
2013-05-28 21:09:31 +02:00
|
|
|
je IPv4_input
|
|
|
|
|
2015-06-01 21:18:07 +02:00
|
|
|
DEBUGF DEBUG_NETWORK_VERBOSE, "LOOP_input: Unknown packet type=%x\n", eax
|
2013-05-28 21:09:31 +02:00
|
|
|
|
|
|
|
.dump:
|
2013-06-02 12:40:22 +02:00
|
|
|
DEBUGF DEBUG_NETWORK_VERBOSE, "LOOP_input: dumping\n"
|
2015-06-01 21:18:07 +02:00
|
|
|
call NET_BUFF_free
|
2013-05-28 21:09:31 +02:00
|
|
|
ret
|
|
|
|
|
2015-06-01 21:18:07 +02:00
|
|
|
|
2013-05-28 21:09:31 +02:00
|
|
|
;-----------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; LOOP_output
|
|
|
|
;
|
2015-06-01 21:18:07 +02:00
|
|
|
; IN: ecx = packet size
|
2013-06-08 15:00:38 +02:00
|
|
|
; edi = address family
|
2013-05-28 21:09:31 +02:00
|
|
|
;
|
2015-06-01 21:18:07 +02:00
|
|
|
; OUT: eax = start of net frame / 0 on error
|
2013-06-08 15:00:38 +02:00
|
|
|
; ebx = to device structure
|
|
|
|
; ecx = unchanged (packet size of embedded data)
|
2015-06-01 21:18:07 +02:00
|
|
|
; edi = start of payload
|
2013-05-28 21:09:31 +02:00
|
|
|
;
|
|
|
|
;-----------------------------------------------------------------
|
|
|
|
align 4
|
|
|
|
LOOP_output:
|
|
|
|
|
2013-06-02 12:40:22 +02:00
|
|
|
DEBUGF DEBUG_NETWORK_VERBOSE, "LOOP_output\n"
|
2013-05-28 21:09:31 +02:00
|
|
|
|
|
|
|
cmp ecx, [LOOPBACK_DEVICE.mtu]
|
2015-06-01 21:18:07 +02:00
|
|
|
ja .too_large
|
|
|
|
|
|
|
|
push ecx edi
|
|
|
|
add ecx, NET_BUFF.data
|
|
|
|
stdcall NET_BUFF_alloc, ecx
|
2013-05-28 21:09:31 +02:00
|
|
|
test eax, eax
|
|
|
|
jz .out_of_ram
|
|
|
|
|
2015-06-01 21:18:07 +02:00
|
|
|
pop edi
|
|
|
|
mov [eax + NET_BUFF.type], edi
|
2013-05-28 21:09:31 +02:00
|
|
|
mov ebx, LOOPBACK_DEVICE
|
2015-06-01 21:18:07 +02:00
|
|
|
mov [eax + NET_BUFF.device], ebx
|
|
|
|
pop ecx
|
|
|
|
mov [eax + NET_BUFF.length], ecx
|
|
|
|
lea edi, [eax + NET_BUFF.data]
|
2013-05-28 21:09:31 +02:00
|
|
|
|
2013-06-08 15:00:38 +02:00
|
|
|
inc [LOOPBACK_DEVICE.packets_tx]
|
|
|
|
add dword[LOOPBACK_DEVICE.bytes_tx], ecx
|
|
|
|
adc dword[LOOPBACK_DEVICE.bytes_tx + 4], 0
|
|
|
|
|
2015-06-01 21:18:07 +02:00
|
|
|
DEBUGF DEBUG_NETWORK_VERBOSE, "LOOP_output: ptr=%x size=%u\n", eax, ecx
|
|
|
|
ret
|
|
|
|
|
|
|
|
.too_large:
|
|
|
|
DEBUGF DEBUG_NETWORK_ERROR, "LOOP_output: packet is too large\n"
|
|
|
|
xor eax, eax
|
2013-05-28 21:09:31 +02:00
|
|
|
ret
|
|
|
|
|
|
|
|
.out_of_ram:
|
2013-06-08 15:00:38 +02:00
|
|
|
DEBUGF DEBUG_NETWORK_ERROR, "LOOP_output: out of memory\n"
|
|
|
|
add esp, 4+4
|
2015-06-01 21:18:07 +02:00
|
|
|
xor eax, eax
|
2013-05-28 21:09:31 +02:00
|
|
|
ret
|
|
|
|
|
|
|
|
|