Subversion Repositories Kolibri OS

Rev

Rev 3737 | Rev 4030 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2. ;;                                                                 ;;
  3. ;; Copyright (C) KolibriOS team 2004-2013. All rights reserved.    ;;
  4. ;; Distributed under terms of the GNU General Public License       ;;
  5. ;;                                                                 ;;
  6. ;;  UDP.INC                                                        ;;
  7. ;;                                                                 ;;
  8. ;;  Part of the tcp/ip network stack for KolibriOS                 ;;
  9. ;;                                                                 ;;
  10. ;;    Written by hidnplayr@kolibrios.org                           ;;
  11. ;;                                                                 ;;
  12. ;;          GNU GENERAL PUBLIC LICENSE                             ;;
  13. ;;             Version 2, June 1991                                ;;
  14. ;;                                                                 ;;
  15. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  16.  
  17. $Revision: 2995 $
  18.  
  19.  
  20. struct  UDP_header
  21.  
  22.         SourcePort              dw  ?
  23.         DestinationPort         dw  ?
  24.         Length                  dw  ?  ; Length of (UDP Header + Data)
  25.         Checksum                dw  ?
  26.  
  27. ends
  28.  
  29.  
  30. uglobal
  31. align 4
  32.  
  33.         UDP_PACKETS_TX          rd  NET_DEVICES_MAX
  34.         UDP_PACKETS_RX          rd  NET_DEVICES_MAX
  35.  
  36. endg
  37.  
  38.  
  39. ;-----------------------------------------------------------------
  40. ;
  41. ; UDP_init
  42. ;
  43. ;  This function resets all UDP variables
  44. ;
  45. ;-----------------------------------------------------------------
  46. macro   UDP_init {
  47.  
  48.         xor     eax, eax
  49.         mov     edi, UDP_PACKETS_TX
  50.         mov     ecx, 2*NET_DEVICES_MAX
  51.         rep stosd
  52. }
  53.  
  54.  
  55. macro   UDP_checksum    IP1, IP2  { ; esi = ptr to udp packet, ecx = packet size, destroys: ecx, edx
  56.  
  57. ; Pseudoheader
  58.         mov     edx, IP_PROTO_UDP
  59.  
  60.         add     dl, [IP1+1]
  61.         adc     dh, [IP1+0]
  62.         adc     dl, [IP1+3]
  63.         adc     dh, [IP1+2]
  64.  
  65.         adc     dl, [IP2+1]
  66.         adc     dh, [IP2+0]
  67.         adc     dl, [IP2+3]
  68.         adc     dh, [IP2+2]
  69.  
  70.         adc     dl, cl ; byte[esi+UDP_header.Length+1]
  71.         adc     dh, ch ; byte[esi+UDP_header.Length+0]
  72.  
  73. ; Done with pseudoheader, now do real header
  74.         adc     dl, byte[esi+UDP_header.SourcePort+1]
  75.         adc     dh, byte[esi+UDP_header.SourcePort+0]
  76.  
  77.         adc     dl, byte[esi+UDP_header.DestinationPort+1]
  78.         adc     dh, byte[esi+UDP_header.DestinationPort+0]
  79.  
  80.         adc     dl, byte[esi+UDP_header.Length+1]
  81.         adc     dh, byte[esi+UDP_header.Length+0]
  82.  
  83.         adc     edx, 0
  84.  
  85. ; Done with header, now do data
  86.         push    esi
  87.         movzx   ecx, [esi+UDP_header.Length]
  88.         rol     cx , 8
  89.         sub     cx , sizeof.UDP_header
  90.         add     esi, sizeof.UDP_header
  91.  
  92.         call    checksum_1
  93.         call    checksum_2
  94.         pop     esi
  95.  
  96.         add     [esi+UDP_header.Checksum], dx   ; this final instruction will set or clear ZF :)
  97.  
  98. }
  99.  
  100.  
  101. ;-----------------------------------------------------------------
  102. ;
  103. ; UDP_input:
  104. ;
  105. ;  Called by IPv4_input,
  106. ;  this procedure will inject the udp data diagrams in the application sockets.
  107. ;
  108. ;  IN:   [esp]  = Pointer to buffer
  109. ;       [esp+4] = size of buffer
  110. ;       ebx = ptr to device struct
  111. ;       ecx = UDP Packet size
  112. ;       esi = ptr to UDP header
  113. ;       edi = ptr to ipv4 source and dest address
  114. ;
  115. ;  OUT: /
  116. ;
  117. ;-----------------------------------------------------------------
  118. align 4
  119. UDP_input:
  120.  
  121.         DEBUGF  DEBUG_NETWORK_VERBOSE, "UDP_input: size=%u\n", ecx
  122.  
  123.         ; First validate, checksum
  124.  
  125.         neg     [esi + UDP_header.Checksum]     ; substract checksum from 0
  126.         jz      .no_checksum                    ; if checksum is zero, it is considered valid
  127.  
  128.         ; otherwise, we will re-calculate the checksum and add it to this value, thus creating 0 when it is correct
  129.  
  130.         UDP_checksum (edi), (edi+4)
  131.         jnz     .checksum_mismatch
  132.  
  133.   .no_checksum:
  134.         DEBUGF  DEBUG_NETWORK_VERBOSE, "UDP_input: checksum ok\n"
  135.  
  136.         ; Convert length to little endian
  137.  
  138.         rol     [esi + UDP_header.Length], 8
  139.  
  140.         ; Look for a socket where
  141.         ; IP Packet UDP Destination Port = local Port
  142.         ; IP Packet SA = Remote IP
  143.  
  144.         pusha
  145.         mov     ecx, socket_mutex
  146.         call    mutex_lock
  147.         popa
  148.  
  149.         mov     cx, [esi + UDP_header.SourcePort]
  150.         mov     dx, [esi + UDP_header.DestinationPort]
  151.         mov     edi, [edi + 4]                          ; ipv4 source address
  152.         mov     eax, net_sockets
  153.  
  154.   .next_socket:
  155.         mov     eax, [eax + SOCKET.NextPtr]
  156.         or      eax, eax
  157.         jz      .dump_
  158.  
  159.         cmp     [eax + SOCKET.Domain], AF_INET4
  160.         jne     .next_socket
  161.  
  162.         cmp     [eax + SOCKET.Protocol], IP_PROTO_UDP
  163.         jne     .next_socket
  164.  
  165.         cmp     [eax + UDP_SOCKET.LocalPort], dx
  166.         jne     .next_socket
  167.  
  168.         DEBUGF  DEBUG_NETWORK_VERBOSE, "UDP_input: socket=%x\n", eax
  169.  
  170.         pusha
  171.         mov     ecx, socket_mutex
  172.         call    mutex_unlock
  173.         popa
  174.  
  175.         ;;; TODO: when packet is processed, check more sockets!
  176.  
  177. ;        cmp     [eax + IP_SOCKET.RemoteIP], 0xffffffff
  178. ;        je      @f
  179. ;        cmp     [eax + IP_SOCKET.RemoteIP], edi
  180. ;        jne     .next_socket
  181. ;       @@:
  182. ;
  183. ; FIXME: UDP should check remote IP, but not under all circumstances!
  184.  
  185.         cmp     [eax + UDP_SOCKET.firstpacket], 0
  186.         je      .updateport
  187.  
  188.         cmp     [eax + UDP_SOCKET.RemotePort], cx
  189.         jne     .dump
  190.  
  191.         pusha
  192.         lea     ecx, [eax + SOCKET.mutex]
  193.         call    mutex_lock
  194.         popa
  195.  
  196.   .updatesock:
  197.         call    NET_ptr_to_num4
  198.         inc     [UDP_PACKETS_RX + edi]
  199.  
  200.         movzx   ecx, [esi + UDP_header.Length]
  201.         sub     ecx, sizeof.UDP_header
  202.         add     esi, sizeof.UDP_header
  203.  
  204.         jmp     SOCKET_input
  205.  
  206.   .updateport:
  207.         pusha
  208.         lea     ecx, [eax + SOCKET.mutex]
  209.         call    mutex_lock
  210.         popa
  211.  
  212.         DEBUGF  DEBUG_NETWORK_VERBOSE, "UDP_input: new remote port=%x\n", cx ; FIXME: find a way to print big endian values with debugf
  213.         mov     [eax + UDP_SOCKET.RemotePort], cx
  214.         inc     [eax + UDP_SOCKET.firstpacket]
  215.  
  216.         jmp     .updatesock
  217.  
  218.   .dump_:
  219.  
  220.         pusha
  221.         mov     ecx, socket_mutex
  222.         call    mutex_unlock
  223.         popa
  224.  
  225.         DEBUGF  DEBUG_NETWORK_VERBOSE, "UDP_input: no socket found\n"
  226.  
  227.         jmp     .dump
  228.  
  229.   .checksum_mismatch:
  230.         DEBUGF  DEBUG_NETWORK_VERBOSE, "UDP_input: checksum mismatch\n"
  231.  
  232.   .dump:
  233.         call    NET_packet_free
  234.         add     esp, 4 ; pop (balance stack)
  235.         DEBUGF  DEBUG_NETWORK_VERBOSE,"UDP_input: dumping\n"
  236.  
  237.         ret
  238.  
  239.  
  240.  
  241.  
  242. ;-----------------------------------------------------------------
  243. ;
  244. ; UDP_output
  245. ;
  246. ; IN: eax = socket pointer
  247. ;     ecx = number of bytes to send
  248. ;     esi = pointer to data
  249. ;
  250. ;-----------------------------------------------------------------
  251.  
  252. align 4
  253. UDP_output:
  254.  
  255.         DEBUGF  DEBUG_NETWORK_VERBOSE, "UDP_output: socket=%x bytes=%u data_ptr=%x\n", eax, ecx, esi
  256.  
  257.         mov     dx, [eax + UDP_SOCKET.RemotePort]
  258.         DEBUGF  DEBUG_NETWORK_VERBOSE, "UDP_output: remote port=%x, ", dx    ; FIXME: find a way to print big endian values with debugf
  259.         rol     edx, 16
  260.         mov     dx, [eax + UDP_SOCKET.LocalPort]
  261.         DEBUGF  DEBUG_NETWORK_VERBOSE, "local port=%x\n", dx
  262.  
  263.         sub     esp, 8                                          ; Data ptr and data size will be placed here
  264.         push    edx esi
  265.         mov     ebx, [eax + SOCKET.device]
  266.         mov     edx, [eax + IP_SOCKET.LocalIP]
  267.         mov     eax, [eax + IP_SOCKET.RemoteIP]
  268.         mov     di, IP_PROTO_UDP shl 8 + 128
  269.         add     ecx, sizeof.UDP_header
  270.         call    IPv4_output
  271.         jz      .fail
  272.         mov     [esp + 8], eax                                  ; pointer to buffer start
  273.         mov     [esp + 8 + 4], edx                              ; buffer size
  274.  
  275.         mov     [edi + UDP_header.Length], cx
  276.         rol     [edi + UDP_header.Length], 8
  277.  
  278.         pop     esi
  279.         push    edi ecx
  280.         sub     ecx, sizeof.UDP_header
  281.         add     edi, sizeof.UDP_header
  282.         shr     ecx, 2
  283.         rep movsd
  284.         mov     ecx, [esp]
  285.         and     ecx, 3
  286.         rep movsb
  287.         pop     ecx edi
  288.  
  289.         pop     dword [edi + UDP_header.SourcePort]
  290.  
  291. ; Checksum
  292.         mov     esi, edi
  293.         mov     [edi + UDP_header.Checksum], 0
  294.         UDP_checksum (edi-4), (edi-8)                           ; FIXME: IPv4 packet could have options..
  295.  
  296.         DEBUGF  DEBUG_NETWORK_VERBOSE, "UDP_output: sending with device %x\n", ebx
  297.         call    [ebx + NET_DEVICE.transmit]
  298.         test    eax, eax
  299.         jnz     @f
  300.         call    NET_ptr_to_num4
  301.         inc     [UDP_PACKETS_TX + edi]
  302.        @@:
  303.  
  304.         ret
  305.  
  306.   .fail:
  307.         DEBUGF  DEBUG_NETWORK_ERROR, "UDP_output: failed\n"
  308.         add     esp, 4+4+8
  309.         or      eax, -1
  310.         ret
  311.  
  312.  
  313.  
  314. ;---------------------------------------------------------------------------
  315. ;
  316. ; UDP_API
  317. ;
  318. ; This function is called by system function 75
  319. ;
  320. ; IN:  subfunction number in bl
  321. ;      device number in bh
  322. ;      ecx, edx, .. depends on subfunction
  323. ;
  324. ; OUT:
  325. ;
  326. ;---------------------------------------------------------------------------
  327.  
  328. align 4
  329. UDP_api:
  330.  
  331.         movzx   eax, bh
  332.         shl     eax, 2
  333.  
  334.         test    bl, bl
  335.         jz      .packets_tx     ; 0
  336.         dec     bl
  337.         jz      .packets_rx     ; 1
  338.  
  339.   .error:
  340.         mov     eax, -1
  341.         ret
  342.  
  343.   .packets_tx:
  344.         mov     eax, [UDP_PACKETS_TX + eax]
  345.         ret
  346.  
  347.   .packets_rx:
  348.         mov     eax, [UDP_PACKETS_RX + eax]
  349.         ret
  350.