Subversion Repositories Kolibri OS

Rev

Rev 2995 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2. ;;                                                                 ;;
  3. ;; Copyright (C) KolibriOS team 2004-2012. All rights reserved.    ;;
  4. ;; Distributed under terms of the GNU General Public License       ;;
  5. ;;                                                                 ;;
  6. ;;  Part of the tcp/ip network stack for KolibriOS                 ;;
  7. ;;                                                                 ;;
  8. ;;   Written by hidnplayr@kolibrios.org,                           ;;
  9. ;;     and Clevermouse.                                            ;;
  10. ;;                                                                 ;;
  11. ;;       Based on code by mike.dld                                 ;;
  12. ;;                                                                 ;;
  13. ;;         GNU GENERAL PUBLIC LICENSE                              ;;
  14. ;;          Version 2, June 1991                                   ;;
  15. ;;                                                                 ;;
  16. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  17.  
  18. $Revision: 2996 $
  19.  
  20.  
  21. struct  SOCKET
  22.  
  23.         NextPtr                 dd ? ; pointer to next socket in list
  24.         PrevPtr                 dd ? ; pointer to previous socket in list
  25.         Number                  dd ? ; socket number
  26.  
  27.         mutex                   MUTEX
  28.  
  29.         PID                     dd ? ; application process id
  30.         Domain                  dd ? ; INET/UNIX/..
  31.         Type                    dd ? ; RAW/STREAM/DGRAP
  32.         Protocol                dd ? ; ICMP/IPv4/ARP/TCP/UDP
  33.         errorcode               dd ?
  34.         device                  dd ?
  35.  
  36.         options                 dd ?
  37.         state                   dd ?
  38.         backlog                 dw ? ; how many incomming connections that can be queued
  39.  
  40.         snd_proc                dd ?
  41.         rcv_proc                dd ?
  42.  
  43. ends
  44.  
  45. struct  IP_SOCKET               SOCKET
  46.  
  47.         LocalIP                 rd 4 ; network byte order
  48.         RemoteIP                rd 4 ; network byte order
  49.  
  50. ends
  51.  
  52. struct  TCP_SOCKET              IP_SOCKET
  53.  
  54.         LocalPort               dw ? ; network byte order
  55.         RemotePort              dw ? ; network byte order
  56.  
  57.         t_state                 dd ? ; TCB state
  58.         t_rxtshift              db ?
  59.                                 rb 3 ; align
  60.         t_rxtcur                dd ?
  61.         t_dupacks               dd ?
  62.         t_maxseg                dd ?
  63.         t_force                 dd ?
  64.         t_flags                 dd ?
  65.  
  66. ;---------------
  67. ; RFC783 page 21
  68.  
  69. ; send sequence
  70.         SND_UNA                 dd ? ; sequence number of unack'ed sent Packets
  71.         SND_NXT                 dd ? ; next send sequence number to use
  72.         SND_UP                  dd ? ; urgent pointer
  73.         SND_WL1                 dd ? ; window minus one
  74.         SND_WL2                 dd ? ;
  75.         ISS                     dd ? ; initial send sequence number
  76.         SND_WND                 dd ? ; send window
  77.  
  78. ; receive sequence
  79.         RCV_WND                 dd ? ; receive window
  80.         RCV_NXT                 dd ? ; next receive sequence number to use
  81.         RCV_UP                  dd ? ; urgent pointer
  82.         IRS                     dd ? ; initial receive sequence number
  83.  
  84. ;---------------------
  85. ; Additional variables
  86.  
  87. ; receive variables
  88.         RCV_ADV                 dd ?
  89.  
  90. ; retransmit variables
  91.         SND_MAX                 dd ?
  92.  
  93. ; congestion control
  94.         SND_CWND                dd ?
  95.         SND_SSTHRESH            dd ?
  96.  
  97. ;----------------------
  98. ; Transmit timing stuff
  99.         t_idle                  dd ?
  100.         t_rtt                   dd ?
  101.         t_rtseq                 dd ?
  102.         t_srtt                  dd ?
  103.         t_rttvar                dd ?
  104.         t_rttmin                dd ?
  105.         max_sndwnd              dd ?
  106.  
  107. ;-----------------
  108. ; Out-of-band data
  109.         t_oobflags              dd ?
  110.         t_iobc                  dd ?
  111.         t_softerror             dd ?
  112.  
  113.  
  114. ;---------
  115. ; RFC 1323                              ; the order of next 4 elements may not change
  116.  
  117.         SND_SCALE               db ?
  118.         RCV_SCALE               db ?
  119.         requested_s_scale       db ?
  120.         request_r_scale         db ?
  121.  
  122.         ts_recent               dd ?    ; a copy of the most-recent valid timestamp from the other end
  123.         ts_recent_age           dd ?
  124.         last_ack_sent           dd ?
  125.  
  126.  
  127. ;-------
  128. ; Timers
  129.         timer_retransmission    dd ? ; rexmt
  130.         timer_persist           dd ?
  131.         timer_keepalive         dd ? ; keepalive/syn timeout
  132.         timer_timed_wait        dd ? ; also used as 2msl timer
  133.  
  134. ; extra
  135.  
  136.         ts_ecr                  dd ? ; timestamp echo reply
  137.         ts_val                  dd ?
  138.         temp_bits               db ?
  139.  
  140. ends
  141.  
  142. struct  UDP_SOCKET              IP_SOCKET
  143.  
  144.         LocalPort               dw ? ; network byte order
  145.         RemotePort              dw ? ; network byte order
  146.         firstpacket             db ?
  147.  
  148. ends
  149.  
  150.  
  151. struct  ICMP_SOCKET             IP_SOCKET
  152.  
  153.         Identifier              dw ?
  154.  
  155. ends
  156.  
  157.  
  158. struct  RING_BUFFER
  159.  
  160.         start_ptr               dd ? ; Pointer to start of buffer
  161.         end_ptr                 dd ? ; pointer to end of buffer
  162.         read_ptr                dd ? ; Read pointer
  163.         write_ptr               dd ? ; Write pointer
  164.         size                    dd ? ; Number of bytes buffered
  165.  
  166. ends
  167.  
  168. struct  STREAM_SOCKET           TCP_SOCKET
  169.  
  170.         rcv                     RING_BUFFER
  171.         snd                     RING_BUFFER
  172.  
  173. ends
  174.  
  175. struct  socket_queue_entry
  176.  
  177.         data_ptr                dd ?
  178.         buf_ptr                 dd ?
  179.         data_size               dd ?
  180.  
  181. ends
  182.  
  183.  
  184. SOCKETBUFFSIZE          = 4096     ; in bytes
  185.  
  186. SOCKET_QUEUE_SIZE       = 10       ; maximum number ofincoming packets queued for 1 socket
  187. ; the incoming packet queue for sockets is placed in the socket struct itself, at this location from start
  188. SOCKET_QUEUE_LOCATION   = (SOCKETBUFFSIZE - SOCKET_QUEUE_SIZE*sizeof.socket_queue_entry - sizeof.queue)
  189.  
  190. uglobal
  191.         net_sockets     rd 4
  192.         last_socket_num dd ?
  193.         last_UDP_port   dw ? ; These values give the number of the last used ephemeral port
  194.         last_TCP_port   dw ? ;
  195. endg
  196.  
  197.  
  198. ;-----------------------------------------------------------------
  199. ;
  200. ; SOCKET_init
  201. ;
  202. ;-----------------------------------------------------------------
  203. macro   SOCKET_init {
  204.  
  205.         xor     eax, eax
  206.         mov     edi, net_sockets
  207.         mov     ecx, 5
  208.         rep     stosd
  209.  
  210.        @@:
  211.         pseudo_random eax
  212.         cmp     ax, MIN_EPHEMERAL_PORT
  213.         jb      @r
  214.         cmp     ax, MAX_EPHEMERAL_PORT
  215.         ja      @r
  216.         xchg    al, ah
  217.         mov     [last_UDP_port], ax
  218.  
  219.        @@:
  220.         pseudo_random eax
  221.         cmp     ax, MIN_EPHEMERAL_PORT
  222.         jb      @r
  223.         cmp     ax, MAX_EPHEMERAL_PORT
  224.         ja      @r
  225.         xchg    al, ah
  226.         mov     [last_TCP_port], ax
  227.  
  228. }
  229.  
  230.  
  231. ;-----------------------------------------------------------------
  232. ;
  233. ; SOCKET_block
  234. ;
  235. ;-----------------------------------------------------------------
  236. macro   SOCKET_block socket, loop, done {
  237.  
  238.         test    [socket + SOCKET.options], SO_BLOCK     ; Is this a blocking socket?
  239.         jz      done                                    ; No, return immediately
  240.  
  241.         push    esi
  242.         mov     esi, 5                                  ; yes, wait for event
  243.         call    delay_ms
  244.         pop     esi
  245.  
  246.         jmp     loop
  247.  
  248. }
  249.  
  250.  
  251. ;-----------------------------------------------------------------
  252. ;
  253. ; Socket API (function 74)
  254. ;
  255. ;-----------------------------------------------------------------
  256. align 4
  257. sys_socket:
  258.  
  259.         cmp     ebx, 255
  260.         jz      SOCKET_debug
  261.  
  262.         cmp     ebx, .number
  263.         ja      s_error
  264.         jmp     dword [.table + 4*ebx]
  265.  
  266.   .table:
  267.         dd      SOCKET_open     ; 0
  268.         dd      SOCKET_close    ; 1
  269.         dd      SOCKET_bind     ; 2
  270.         dd      SOCKET_listen   ; 3
  271.         dd      SOCKET_connect  ; 4
  272.         dd      SOCKET_accept   ; 5
  273.         dd      SOCKET_send     ; 6
  274.         dd      SOCKET_receive  ; 7
  275.         dd      SOCKET_set_opt  ; 8
  276.         dd      SOCKET_get_opt  ; 9
  277.   .number = ($ - .table) / 4 - 1
  278.  
  279. s_error:
  280.         DEBUGF  1,"socket error\n"
  281.         mov     dword [esp+32], -1
  282.  
  283.         ret
  284.  
  285.  
  286.  
  287. ;-----------------------------------------------------------------
  288. ;
  289. ; SOCKET_open
  290. ;
  291. ;  IN:  domain in ecx
  292. ;       type in edx
  293. ;       protocol in esi
  294. ;  OUT: eax is socket num, -1 on error
  295. ;
  296. ;-----------------------------------------------------------------
  297. align 4
  298. SOCKET_open:
  299.  
  300.         DEBUGF  1,"SOCKET_open: domain=%u type=%u protocol=%x\n", ecx, edx, esi
  301.  
  302.         push    ecx edx esi
  303.         call    SOCKET_alloc
  304.         pop     esi edx ecx
  305.         jz      s_error
  306.  
  307.         mov     [esp+32], edi                   ; return socketnumber
  308.  
  309.         mov     [eax + SOCKET.Domain], ecx
  310.         mov     [eax + SOCKET.Type], edx
  311.         mov     [eax + SOCKET.Protocol], esi
  312.  
  313.         cmp     ecx, AF_INET4
  314.         jne     .no_inet4
  315.  
  316.         cmp     edx, SOCK_DGRAM
  317.         je      .udp
  318.  
  319.         cmp     edx, SOCK_STREAM
  320.         je      .tcp
  321.  
  322.         cmp     edx, SOCK_RAW
  323.         je      .raw
  324.  
  325.   .no_inet4:
  326.         cmp     ecx, AF_PPP
  327.         jne     .no_ppp
  328.  
  329.         cmp     esi, PPP_PROTO_ETHERNET
  330.         je      .pppoe
  331.  
  332.   .no_ppp:
  333.         ret
  334.  
  335. align 4
  336.   .raw:
  337.         test    esi, esi       ; IP_PROTO_IP
  338.         jz      .ip
  339.  
  340.         cmp     esi, IP_PROTO_ICMP
  341.         je      .icmp
  342.  
  343.         cmp     esi, IP_PROTO_UDP
  344.         je      .udp
  345.  
  346.         cmp     esi, IP_PROTO_TCP
  347.         je      .tcp
  348.  
  349.         ret
  350.  
  351. align 4
  352.   .udp:
  353.         mov     [eax + SOCKET.Protocol], IP_PROTO_UDP
  354.         mov     [eax + SOCKET.snd_proc], SOCKET_send_udp
  355.         mov     [eax + SOCKET.rcv_proc], SOCKET_receive_dgram
  356.         ret
  357.  
  358. align 4
  359.   .tcp:
  360.         mov     [eax + SOCKET.Protocol], IP_PROTO_TCP
  361.         mov     [eax + SOCKET.snd_proc], SOCKET_send_tcp
  362.         mov     [eax + SOCKET.rcv_proc], SOCKET_receive_tcp
  363.  
  364.         TCP_init_socket eax
  365.         ret
  366.  
  367.  
  368. align 4
  369.   .ip:
  370.         mov     [eax + SOCKET.snd_proc], SOCKET_send_ip
  371.         mov     [eax + SOCKET.rcv_proc], SOCKET_receive_dgram
  372.         ret
  373.  
  374.  
  375. align 4
  376.   .icmp:
  377.         mov     [eax + SOCKET.snd_proc], SOCKET_send_icmp
  378.         mov     [eax + SOCKET.rcv_proc], SOCKET_receive_dgram
  379.         ret
  380.  
  381. align 4
  382.   .pppoe:
  383.         push    eax
  384.         init_queue (eax + SOCKET_QUEUE_LOCATION)        ; Set up data receiving queue
  385.         pop     eax
  386.  
  387.         mov     [eax + SOCKET.snd_proc], SOCKET_send_pppoe
  388.         mov     [eax + SOCKET.rcv_proc], SOCKET_receive_dgram
  389.         ret
  390.  
  391.  
  392. ;-----------------------------------------------------------------
  393. ;
  394. ; SOCKET_bind
  395. ;
  396. ;  IN:  socket number in ecx
  397. ;       pointer to sockaddr struct in edx
  398. ;       length of that struct in esi
  399. ;  OUT: 0 on success
  400. ;
  401. ;-----------------------------------------------------------------
  402. align 4
  403. SOCKET_bind:
  404.  
  405.         DEBUGF  1,"SOCKET_bind: socknum=%u sockaddr=%x length=%u\n", ecx, edx, esi
  406.  
  407.         call    SOCKET_num_to_ptr
  408.         jz      s_error
  409.  
  410.         cmp     esi, 2
  411.         jb      s_error
  412.  
  413.         cmp     word [edx], AF_INET4
  414.         je      .af_inet4
  415.  
  416.         cmp     word [edx], AF_UNIX
  417.         je      .af_unix
  418.  
  419.         jmp     s_error
  420.  
  421.   .af_unix:
  422.         ; TODO: write code here
  423.  
  424.         mov     dword [esp+32], 0
  425.         ret
  426.  
  427.   .af_inet4:
  428.  
  429.         cmp     esi, 6
  430.         jb      s_error
  431.  
  432.         cmp     [eax + SOCKET.Protocol], IP_PROTO_UDP
  433.         je      .udp
  434.  
  435.         cmp     [eax + SOCKET.Protocol], IP_PROTO_TCP
  436.         je      .tcp
  437.  
  438.         jmp     s_error
  439.  
  440.   .tcp:
  441.   .udp:
  442.  
  443.         mov     ebx, [edx + 4]                  ; First, fill in the IP
  444.         test    ebx, ebx                        ; If IP is 0, use default
  445.         jnz     @f
  446.         mov     ebx, [NET_DEFAULT]
  447.         mov     ebx, [IP_LIST + 4*ebx]
  448.        @@:
  449.         mov     [eax + IP_SOCKET.LocalIP], ebx
  450.  
  451.         mov     bx, [edx + 2]                   ; Now fill in the local port if it's still available
  452.         call    SOCKET_check_port
  453.         jz      s_error                         ; ZF is set by socket_check_port, on error
  454.  
  455.         DEBUGF  1,"SOCKET_bind: local ip=%u.%u.%u.%u\n",\
  456.         [eax + IP_SOCKET.LocalIP + 0]:1,[eax + IP_SOCKET.LocalIP + 1]:1,\
  457.         [eax + IP_SOCKET.LocalIP + 2]:1,[eax + IP_SOCKET.LocalIP + 3]:1
  458.  
  459.         mov     dword [esp+32], 0
  460.         ret
  461.  
  462.  
  463.  
  464.  
  465. ;-----------------------------------------------------------------
  466. ;
  467. ; SOCKET_connect
  468. ;
  469. ;  IN:  socket number in ecx
  470. ;       pointer to sockaddr struct in edx
  471. ;       length of that struct in esi
  472. ;  OUT: 0 on success
  473. ;
  474. ;-----------------------------------------------------------------
  475. align 4
  476. SOCKET_connect:
  477.  
  478.         DEBUGF  1,"SOCKET_connect: socknum=%u sockaddr=%x length=%u\n", ecx, edx, esi
  479.  
  480.         call    SOCKET_num_to_ptr
  481.         jz      s_error
  482.  
  483.         cmp     esi, 8
  484.         jb      s_error
  485.  
  486.         cmp     word [edx], AF_INET4
  487.         je      .af_inet4
  488.  
  489.         jmp     s_error
  490.  
  491.   .af_inet4:
  492.         cmp     [eax + IP_SOCKET.LocalIP], 0
  493.         jne     @f
  494.         push    [IP_LIST]
  495.         pop     [eax + IP_SOCKET.LocalIP]
  496.        @@:
  497.  
  498.         cmp     [eax + SOCKET.Protocol], IP_PROTO_UDP
  499.         je      .udp
  500.  
  501.         cmp     [eax + SOCKET.Protocol], IP_PROTO_TCP
  502.         je      .tcp
  503.  
  504.         cmp     [eax + SOCKET.Protocol], IP_PROTO_IP
  505.         je      .ip
  506.  
  507.         cmp     [eax + SOCKET.Protocol], IP_PROTO_ICMP
  508.         je      .ip
  509.  
  510.         jmp     s_error
  511.  
  512. align 4
  513.   .udp:
  514.         pusha
  515.         lea     ecx, [eax + SOCKET.mutex]
  516.         call    mutex_lock
  517.         popa
  518.  
  519.         pushw   [edx + 2]
  520.         pop     [eax + UDP_SOCKET.RemotePort]
  521.  
  522.         pushd   [edx + 4]
  523.         pop     [eax + IP_SOCKET.RemoteIP]
  524.  
  525.         cmp     [eax + UDP_SOCKET.LocalPort], 0
  526.         jne     @f
  527.         call    SOCKET_find_port
  528.        @@:
  529.  
  530.         mov     [eax + UDP_SOCKET.firstpacket], 0
  531.  
  532.         push    eax
  533.         init_queue (eax + SOCKET_QUEUE_LOCATION)        ; Set up data receiving queue
  534.         pop     eax
  535.  
  536.         lea     ecx, [eax + SOCKET.mutex]
  537.         call    mutex_unlock
  538.  
  539.         mov     dword [esp+32], 0
  540.         ret
  541.  
  542. align 4
  543.   .tcp:
  544.         pusha
  545.         lea     ecx, [eax + SOCKET.mutex]
  546.         call    mutex_lock
  547.         popa
  548.  
  549.         pushw   [edx + 2]
  550.         pop     [eax + TCP_SOCKET.RemotePort]
  551.  
  552.         pushd   [edx + 4]
  553.         pop     [eax + IP_SOCKET.RemoteIP]
  554.  
  555.         cmp     [eax + TCP_SOCKET.LocalPort], 0
  556.         jne     @f
  557.         call    SOCKET_find_port
  558.        @@:
  559.  
  560.         mov     [eax + TCP_SOCKET.timer_persist], 0
  561.         mov     [eax + TCP_SOCKET.t_state], TCPS_SYN_SENT
  562.  
  563.         push    [TCP_sequence_num]
  564.         add     [TCP_sequence_num], 6400
  565.         pop     [eax + TCP_SOCKET.ISS]
  566.         mov     [eax + TCP_SOCKET.timer_keepalive], TCP_time_keep_init
  567.  
  568.  
  569.         TCP_sendseqinit eax
  570.  
  571. ;        mov     [ebx + TCP_SOCKET.timer_retransmission],   ;; todo: create macro to set retransmission timer
  572.  
  573.         mov     ebx, eax
  574.  
  575.         lea     eax, [ebx + STREAM_SOCKET.snd]
  576.         call    SOCKET_ring_create
  577.  
  578.         lea     eax, [ebx + STREAM_SOCKET.rcv]
  579.         call    SOCKET_ring_create
  580.  
  581.         pusha
  582.         lea     ecx, [ebx + SOCKET.mutex]
  583.         call    mutex_unlock
  584.         popa
  585.  
  586.         mov     eax, ebx
  587.         call    TCP_output
  588.  
  589. ;;; TODO: wait for successfull connection if blocking socket
  590.  
  591.         mov     dword [esp+32], 0
  592.         ret
  593.  
  594. align 4
  595.   .ip:
  596.         pusha
  597.         lea     ecx, [eax + SOCKET.mutex]
  598.         call    mutex_lock
  599.         popa
  600.  
  601.         pushd   [edx + 4]
  602.         pop     [eax + IP_SOCKET.RemoteIP]
  603.  
  604.         push    eax
  605.         init_queue (eax + SOCKET_QUEUE_LOCATION)        ; Set up data receiving queue
  606.         pop     eax
  607.  
  608.         lea     ecx, [eax + SOCKET.mutex]
  609.         call    mutex_unlock
  610.  
  611.         mov     dword [esp+32], 0
  612.         ret
  613.  
  614.  
  615. ;-----------------------------------------------------------------
  616. ;
  617. ; SOCKET_listen
  618. ;
  619. ;  IN:  socket number in ecx
  620. ;       backlog in edx
  621. ;  OUT: eax is socket num, -1 on error
  622. ;
  623. ;-----------------------------------------------------------------
  624. align 4
  625. SOCKET_listen:
  626.  
  627.         DEBUGF  1,"SOCKET_listen: socknum=%u backlog=%u\n", ecx, edx
  628.  
  629.         call    SOCKET_num_to_ptr
  630.         jz      s_error
  631.  
  632.         cmp     [eax + SOCKET.Domain], AF_INET4
  633.         jne     s_error
  634.  
  635.         cmp     [eax + SOCKET.Protocol], IP_PROTO_TCP
  636.         jne     s_error
  637.  
  638.         cmp     [eax + TCP_SOCKET.LocalPort], 0
  639.         je      s_error
  640.  
  641.         cmp     [eax + IP_SOCKET.LocalIP], 0
  642.         jne     @f
  643.         push    [IP_LIST]
  644.         pop     [eax + IP_SOCKET.LocalIP]
  645.        @@:
  646.  
  647.         cmp     edx, MAX_backlog
  648.         jbe     @f
  649.         mov     edx, MAX_backlog
  650.        @@:
  651.  
  652.         mov     [eax + SOCKET.backlog], dx
  653.         or      [eax + SOCKET.options], SO_ACCEPTCON
  654.         mov     [eax + TCP_SOCKET.t_state], TCPS_LISTEN
  655.         mov     [eax + TCP_SOCKET.timer_keepalive], 0           ; disable keepalive timer
  656.  
  657.         push    eax
  658.         init_queue (eax + SOCKET_QUEUE_LOCATION)                ; Set up sockets queue
  659.         pop     eax
  660.  
  661.         mov     dword [esp+32], 0
  662.  
  663.         ret
  664.  
  665.  
  666. ;-----------------------------------------------------------------
  667. ;
  668. ; SOCKET_accept
  669. ;
  670. ;  IN:  socket number in ecx
  671. ;       addr in edx
  672. ;       addrlen in esi
  673. ;  OUT: eax is socket num, -1 on error
  674. ;
  675. ;-----------------------------------------------------------------
  676. align 4
  677. SOCKET_accept:
  678.  
  679.         DEBUGF  1,"SOCKET_accept: socknum=%u sockaddr=%x length=%u\n", ecx, edx, esi
  680.  
  681.         call    SOCKET_num_to_ptr
  682.         jz      s_error
  683.  
  684.         test    [eax + SOCKET.options], SO_ACCEPTCON
  685.         jz      s_error
  686.  
  687.         cmp     [eax + SOCKET.Domain], AF_INET4
  688.         jne     s_error
  689.  
  690.         cmp     [eax + SOCKET.Protocol], IP_PROTO_TCP
  691.         jne     s_error
  692.  
  693.   .loop:
  694.         get_from_queue (eax + SOCKET_QUEUE_LOCATION), MAX_backlog, 4, .block
  695.  
  696. ; Ok, we got a socket ptr
  697.         mov     eax, [esi]
  698.  
  699. ; Change PID to that of the current process
  700.         mov     ebx, [TASK_BASE]
  701.         mov     ebx, [ebx + TASKDATA.pid]
  702.         mov     [eax + SOCKET.PID], ebx
  703.  
  704. ; Convert it to a socket number
  705.         call    SOCKET_ptr_to_num
  706.         jz      s_error
  707. ; and return it to caller
  708.         mov     [esp+32], eax
  709.         ret
  710.  
  711.   .block:
  712.         SOCKET_block    eax, .loop, s_error
  713.  
  714. ;-----------------------------------------------------------------
  715. ;
  716. ; SOCKET_close
  717. ;
  718. ;  IN:  socket number in ecx
  719. ;  OUT: eax is socket num, -1 on error
  720. ;
  721. ;-----------------------------------------------------------------
  722. align 4
  723. SOCKET_close:
  724.  
  725.         DEBUGF  1,"SOCKET_close: %u\n", ecx
  726.  
  727.         call    SOCKET_num_to_ptr
  728.         jz      s_error
  729.  
  730.         cmp     [eax + SOCKET.Domain], AF_INET4
  731.         jne     s_error
  732.  
  733.         cmp     [eax + SOCKET.Protocol], IP_PROTO_UDP
  734.         je      .free
  735.  
  736.         cmp     [eax + SOCKET.Protocol], IP_PROTO_ICMP
  737.         je      .free
  738.  
  739.         cmp     [eax + SOCKET.Protocol], IP_PROTO_IP
  740.         je      .free
  741.  
  742.         cmp     [eax + SOCKET.Protocol], IP_PROTO_TCP
  743.         je      .tcp
  744.  
  745.         jmp     s_error
  746.  
  747.   .tcp:
  748.         cmp     [eax + TCP_SOCKET.t_state], TCPS_SYN_RECEIVED    ; state must be LISTEN, SYN_SENT or CLOSED
  749.         jb      .free
  750.  
  751.         call    TCP_usrclosed
  752.         call    TCP_output      ;;;; Fixme: is this nescessary??
  753.  
  754. ;;; TODO: wait for successfull termination if blocking socket
  755.         mov     dword [esp+32], 0
  756.  
  757.         ret
  758.  
  759.   .free:
  760.         call    SOCKET_free
  761.         mov     dword [esp+32], 0
  762.  
  763.         ret
  764.  
  765.  
  766. ;-----------------------------------------------------------------
  767. ;
  768. ; SOCKET_receive
  769. ;
  770. ;  IN:  socket number in ecx
  771. ;       addr to buffer in edx
  772. ;       length of buffer in esi
  773. ;       flags in edi
  774. ;  OUT: eax is number of bytes copied, -1 on error
  775. ;
  776. ;-----------------------------------------------------------------
  777. align 4
  778. SOCKET_receive:
  779.  
  780.         DEBUGF  1,"SOCKET_receive: socknum=%u bufaddr=%x buflength=%u flags=%x\n", ecx, edx, esi, edi
  781.  
  782.         call    SOCKET_num_to_ptr
  783.         jz      s_error
  784.  
  785.         jmp     [eax + SOCKET.rcv_proc]
  786.  
  787.  
  788. align 4
  789. SOCKET_receive_dgram:
  790.  
  791.         DEBUGF  1,"SOCKET_receive: DGRAM\n"
  792.  
  793.         mov     ebx, esi
  794.         mov     edi, edx                                        ; addr to buffer
  795.  
  796.   .loop:
  797.         get_from_queue (eax + SOCKET_QUEUE_LOCATION), SOCKET_QUEUE_SIZE, sizeof.socket_queue_entry, .block      ; destroys esi and ecx
  798.  
  799.         mov     ecx, [esi + socket_queue_entry.data_size]
  800.         DEBUGF  1,"SOCKET_receive: %u bytes data\n", ecx
  801.  
  802.         cmp     ecx, ebx
  803.         ja      .too_small
  804.  
  805.         push    [esi + socket_queue_entry.buf_ptr]              ; save the buffer addr so we can clear it later
  806.         mov     esi, [esi + socket_queue_entry.data_ptr]
  807.         DEBUGF  1,"SOCKET_receive: Source buffer=%x real addr=%x\n", [esp], esi
  808.         mov     [esp+32+4], ecx                                 ; return number of bytes copied
  809.  
  810. ; copy the data
  811.         shr     ecx, 1
  812.         jnc     .nb
  813.         movsb
  814.   .nb:
  815.         shr     ecx, 1
  816.         jnc     .nw
  817.         movsw
  818.   .nw:
  819.         test    ecx, ecx
  820.         jz      .nd
  821.         rep     movsd
  822.   .nd:
  823.  
  824.         call    kernel_free                                     ; remove the packet
  825.         ret
  826.  
  827.   .too_small:
  828.  
  829.         DEBUGF  1,"SOCKET_receive: Buffer too small\n"
  830.         jmp     s_error
  831.  
  832.   .block:
  833.         SOCKET_block    eax, .loop, s_error
  834.  
  835.  
  836. align 4
  837. SOCKET_receive_tcp:
  838.  
  839.         DEBUGF  1,"SOCKET_receive: TCP\n"
  840.  
  841.         mov     ecx, esi
  842.         mov     edi, edx
  843.         xor     edx, edx
  844.         add     eax, STREAM_SOCKET.rcv
  845.   .loop:                            ;;;; FIXME: ecx!
  846.         call    SOCKET_ring_read
  847.         test    ecx, ecx
  848.         jz      .block
  849.         call    SOCKET_ring_free
  850.  
  851.         mov     [esp+32], ecx                                   ; return number of bytes copied
  852.         ret
  853.  
  854.   .block:
  855.         SOCKET_block    (eax - STREAM_SOCKET.rcv), .loop, s_error
  856.  
  857.  
  858. ;-----------------------------------------------------------------
  859. ;
  860. ; SOCKET_send
  861. ;
  862. ;
  863. ;  IN:  socket number in ecx
  864. ;       pointer to data in edx
  865. ;       datalength in esi
  866. ;       flags in edi
  867. ;  OUT: -1 on error
  868. ;
  869. ;-----------------------------------------------------------------
  870. align 4
  871. SOCKET_send:
  872.  
  873.         DEBUGF  1,"SOCKET_send: socknum=%u data ptr=%x length=%u flags=%x\n", ecx, edx, esi, edi
  874.  
  875.         call    SOCKET_num_to_ptr
  876.         jz      s_error
  877.  
  878.         mov     ecx, esi
  879.         mov     esi, edx
  880.  
  881.         jmp     [eax + SOCKET.snd_proc]
  882.  
  883.  
  884. align 4
  885. SOCKET_send_udp:
  886.  
  887.         DEBUGF  1,"SOCKET_send: UDP\n"
  888.  
  889.         mov     [esp+32], ecx
  890.         call    UDP_output
  891.         cmp     eax, -1
  892.         je      s_error
  893.         ret
  894.  
  895.  
  896. align 4
  897. SOCKET_send_tcp:
  898.  
  899.         DEBUGF  1,"SOCKET_send: TCP\n"
  900.  
  901.         push    eax
  902.         add     eax, STREAM_SOCKET.snd
  903.         call    SOCKET_ring_write
  904.         pop     eax
  905.  
  906.         mov     [esp+32], ecx
  907.  
  908.         call    TCP_output
  909.         ret
  910.  
  911.  
  912. align 4
  913. SOCKET_send_ip:
  914.  
  915.         DEBUGF  1,"SOCKET_send: IPv4\n"
  916.  
  917.         mov     [esp+32], ecx
  918.         call    IPv4_output_raw
  919.         cmp     eax, -1
  920.         je      s_error
  921.         ret
  922.  
  923.  
  924. align 4
  925. SOCKET_send_icmp:
  926.  
  927.         DEBUGF  1,"SOCKET_send: ICMP\n"
  928.  
  929.         mov     [esp+32], ecx
  930.         call    ICMP_output_raw
  931.         cmp     eax, -1
  932.         je      s_error
  933.         ret
  934.  
  935.  
  936. align 4
  937. SOCKET_send_pppoe:
  938.  
  939.         DEBUGF  1,"SOCKET_send: PPPoE\n"
  940.  
  941.         mov     [esp+32], ecx
  942.         mov     ebx, [eax + SOCKET.device]
  943.  
  944.         call    PPPoE_discovery_output
  945.         cmp     eax, -1
  946.         je      s_error
  947.         ret
  948.  
  949.  
  950.  
  951.  
  952. ;-----------------------------------------------------------------
  953. ;
  954. ; SOCKET_get_options
  955. ;
  956. ;  IN:  ecx = socket number
  957. ;       edx = pointer to the options:
  958. ;               dd      level, optname, optval, optlen
  959. ;  OUT: -1 on error
  960. ;
  961. ; At moment, uses only pseudo-optname -2 for get last_ack_number for TCP.
  962. ; TODO: find best way to notify that send()'ed data were acknowledged
  963. ; Also pseudo-optname -3 is valid and returns socket state, one of TCPS_*.
  964. ;
  965. ;-----------------------------------------------------------------
  966. align 4
  967. SOCKET_get_opt:
  968.  
  969.         DEBUGF  1,"SOCKET_get_opt\n"
  970.  
  971.         call    SOCKET_num_to_ptr
  972.         jz      s_error
  973.  
  974.         cmp     dword [edx], IP_PROTO_TCP
  975.         jne     s_error
  976.         cmp     dword [edx+4], -2
  977.         je      @f
  978.         cmp     dword [edx+4], -3
  979.         jne     s_error
  980. @@:
  981. ;        mov     eax, [edx+12]
  982. ;        test    eax, eax
  983. ;        jz      .fail
  984. ;        cmp     dword [eax], 4
  985. ;        mov     dword [eax], 4
  986. ;        jb      .fail
  987. ;        stdcall net_socket_num_to_addr, ecx
  988. ;        test    eax, eax
  989. ;        jz      .fail
  990. ;        ; todo: check that eax is really TCP socket
  991. ;        mov     ecx, [eax + TCP_SOCKET.last_ack_number]
  992. ;        cmp     dword [edx+4], -2
  993. ;        jz      @f
  994. ;        mov     ecx, [eax + TCP_SOCKET.state]
  995. @@:
  996.         mov     eax, [edx+8]
  997.         test    eax, eax
  998.         jz      @f
  999.         mov     [eax], ecx
  1000. @@:
  1001.         mov     dword [esp+32], 0
  1002.         ret
  1003.  
  1004.  
  1005.  
  1006. ;-----------------------------------------------------------------
  1007. ;
  1008. ; SOCKET_set_options
  1009. ;
  1010. ;  IN:  ecx = socket number
  1011. ;       edx = pointer to the options:
  1012. ;               dd      level, optname, optlen, optval
  1013. ;  OUT: -1 on error
  1014. ;
  1015. ;-----------------------------------------------------------------
  1016. align 4
  1017. SOCKET_set_opt:
  1018.  
  1019.         DEBUGF  1,"SOCKET_set_opt\n"
  1020.  
  1021.         call    SOCKET_num_to_ptr
  1022.         jz      s_error
  1023.  
  1024.         cmp     dword [edx], SOL_SOCKET
  1025.         jne     s_error
  1026.  
  1027.         cmp     dword [edx+4], SO_BINDTODEVICE
  1028.         je      .bind
  1029.  
  1030.         cmp     dword [edx+4], SO_BLOCK
  1031.         je      .block
  1032.  
  1033.         jmp     s_error
  1034.  
  1035.   .bind:
  1036.         cmp     dword [edx+8], 0
  1037.         je      .unbind
  1038.  
  1039.         movzx   edx, byte [edx + 9]
  1040.         cmp     edx, MAX_NET_DEVICES
  1041.         ja      s_error
  1042.  
  1043.         mov     edx, [NET_DRV_LIST + 4*edx]
  1044.         test    edx, edx
  1045.         jz      s_error
  1046.         mov     [eax + SOCKET.device], edx
  1047.  
  1048.         DEBUGF  1,"SOCKET_set_opt: Bound socket %x to device %x\n",eax, edx
  1049.  
  1050.         mov     dword [esp+32], 0       ; success!
  1051.         ret
  1052.  
  1053.   .unbind:
  1054.         mov     [eax + SOCKET.device], 0
  1055.  
  1056.         mov     dword [esp+32], 0       ; success!
  1057.         ret
  1058.  
  1059.   .block:
  1060.         cmp     dword [edx+8], 0
  1061.         je      .unblock
  1062.  
  1063.         or      [eax + SOCKET.options], SO_BLOCK
  1064.  
  1065.         mov     dword [esp+32], 0       ; success!
  1066.         ret
  1067.  
  1068.   .unblock:
  1069.         and     [eax + SOCKET.options], not SO_BLOCK
  1070.  
  1071.         mov     dword [esp+32], 0       ; success!
  1072.         ret
  1073.  
  1074.  
  1075.  
  1076.  
  1077.  
  1078. ;-----------------------------------------------------------------
  1079. ;
  1080. ; SOCKET_debug
  1081. ;
  1082. ;  Copies socket variables to application buffer
  1083. ;
  1084. ;  IN:  ecx = socket number
  1085. ;       edx = pointer to buffer
  1086. ;
  1087. ;  OUT: -1 on error
  1088. ;-----------------------------------------------------------------
  1089. align 4
  1090. SOCKET_debug:
  1091.  
  1092.         DEBUGF  1,"SOCKET_debug\n"
  1093.  
  1094.         call    SOCKET_num_to_ptr
  1095.         jz      s_error
  1096.  
  1097.         mov     esi, eax
  1098.         mov     edi, edx
  1099.         mov     ecx, SOCKETBUFFSIZE/4
  1100.         rep     movsd
  1101.  
  1102.         mov     dword [esp+32], 0
  1103.         ret
  1104.  
  1105.  
  1106. ;-----------------------------------------------------------------
  1107. ;
  1108. ; SOCKET_find_port
  1109. ;
  1110. ; Fills in the local port number for TCP and UDP sockets
  1111. ; This procedure always works because the number of sockets is
  1112. ; limited to a smaller number then the number of possible ports
  1113. ;
  1114. ;  IN:  eax = socket pointer
  1115. ;  OUT: /
  1116. ;
  1117. ;-----------------------------------------------------------------
  1118. align 4
  1119. SOCKET_find_port:
  1120.  
  1121.         DEBUGF  1,"SOCKET_find_port\n"
  1122.  
  1123.         push    ebx esi ecx
  1124.  
  1125.         cmp     [eax + SOCKET.Protocol], IP_PROTO_UDP
  1126.         je      .udp
  1127.  
  1128.         cmp     [eax + SOCKET.Protocol], IP_PROTO_TCP
  1129.         je      .tcp
  1130.  
  1131.         pop     ecx esi ebx
  1132.         ret
  1133.  
  1134.   .udp:
  1135.         mov     bx, [last_UDP_port]
  1136.         call    .findit
  1137.         mov     [last_UDP_port], bx
  1138.  
  1139.         pop     ecx esi ebx
  1140.         ret
  1141.  
  1142.   .tcp:
  1143.         mov     bx, [last_TCP_port]
  1144.         call    .findit
  1145.         mov     [last_TCP_port], bx
  1146.  
  1147.         pop     ecx esi ebx
  1148.         ret
  1149.  
  1150.  
  1151.   .restart:
  1152.         mov     bx, MIN_EPHEMERAL_PORT_N
  1153.   .findit:
  1154.         cmp     bx, MAX_EPHEMERAL_PORT_N
  1155.         je      .restart
  1156.  
  1157.         add     bh, 1
  1158.         adc     bl, 0
  1159.  
  1160.         call    SOCKET_check_port
  1161.         jz      .findit
  1162.         ret
  1163.  
  1164.  
  1165.  
  1166. ;-----------------------------------------------------------------
  1167. ;
  1168. ; SOCKET_check_port (to be used with AF_INET only!)
  1169. ;
  1170. ; Checks if a local port number is unused
  1171. ; If the proposed port number is unused, it is filled in in the socket structure
  1172. ;
  1173. ;  IN:  eax = socket ptr (to find out if its a TCP/UDP socket)
  1174. ;        bx = proposed socket number (network byte order)
  1175. ;
  1176. ;  OUT:  ZF = set on error
  1177. ;
  1178. ;-----------------------------------------------------------------
  1179. align 4
  1180. SOCKET_check_port:
  1181.  
  1182.         DEBUGF  1,"SOCKET_check_port: "
  1183.  
  1184.         mov     ecx, [eax + SOCKET.Protocol]
  1185.         mov     edx, [eax + IP_SOCKET.LocalIP]
  1186.         mov     esi, net_sockets
  1187.  
  1188.   .next_socket:
  1189.         mov     esi, [esi + SOCKET.NextPtr]
  1190.         or      esi, esi
  1191.         jz      .port_ok
  1192.  
  1193.         cmp     [esi + SOCKET.Protocol], ecx
  1194.         jne     .next_socket
  1195.  
  1196.         cmp     [esi + IP_SOCKET.LocalIP], edx
  1197.         jne     .next_socket
  1198.  
  1199.         cmp     [esi + UDP_SOCKET.LocalPort], bx
  1200.         jne     .next_socket
  1201.  
  1202.         DEBUGF  1,"local port %u already in use\n", bx
  1203.         ret
  1204.  
  1205.   .port_ok:
  1206.         DEBUGF  1,"local port %x is free\n", bx         ; FIXME: find a way to print big endian values with debugf
  1207.         mov     [eax + UDP_SOCKET.LocalPort], bx
  1208.         or      bx, bx                                  ; clear the zero-flag
  1209.         ret
  1210.  
  1211.  
  1212.  
  1213. ;-----------------------------------------------------------------
  1214. ;
  1215. ; SOCKET_input
  1216. ;
  1217. ; Updates a (stateless) socket with received data
  1218. ;
  1219. ; Note: the mutex should already be set !
  1220. ;
  1221. ;  IN:  eax = socket ptr
  1222. ;       ecx = data size
  1223. ;       esi = ptr to data
  1224. ;       [esp] = ptr to buf
  1225. ;       [esp + 4] = buf size
  1226. ;
  1227. ;  OUT: /
  1228. ;
  1229. ;-----------------------------------------------------------------
  1230. align 4
  1231. SOCKET_input:
  1232.  
  1233.         DEBUGF  1,"SOCKET_input: socket=%x, data=%x size=%u\n", eax, esi, ecx
  1234.  
  1235.         mov     [esp+4], ecx
  1236.         push    esi
  1237.         mov     esi, esp
  1238.  
  1239.         add_to_queue (eax + SOCKET_QUEUE_LOCATION), SOCKET_QUEUE_SIZE, sizeof.socket_queue_entry, SOCKET_input.full
  1240.  
  1241.         DEBUGF  1,"SOCKET_input: queued packet successfully\n"
  1242.         add     esp, sizeof.socket_queue_entry
  1243.  
  1244.         pusha
  1245.         lea     ecx, [eax + SOCKET.mutex]
  1246.         call    mutex_unlock
  1247.         popa
  1248.  
  1249.         jmp     SOCKET_notify_owner
  1250.  
  1251.   .full:
  1252.         DEBUGF  2,"SOCKET_input: socket %x is full!\n", eax
  1253.  
  1254.         pusha
  1255.         lea     ecx, [eax + SOCKET.mutex]
  1256.         call    mutex_unlock
  1257.         popa
  1258.  
  1259.         call    kernel_free
  1260.         add     esp, 8
  1261.  
  1262.         ret
  1263.  
  1264.  
  1265. ;--------------------------
  1266. ;
  1267. ; eax = ptr to ring struct (just a buffer of the right size)
  1268. ;
  1269. align 4
  1270. SOCKET_ring_create:
  1271.  
  1272.         push    esi
  1273.         mov     esi, eax
  1274.  
  1275.         push    edx
  1276.         stdcall create_ring_buffer, SOCKET_MAXDATA, PG_SW
  1277.         pop     edx
  1278.  
  1279.         DEBUGF  1,"SOCKET_ring_created: %x\n", eax
  1280.         mov     [esi + RING_BUFFER.start_ptr], eax
  1281.         mov     [esi + RING_BUFFER.write_ptr], eax
  1282.         mov     [esi + RING_BUFFER.read_ptr], eax
  1283.         mov     [esi + RING_BUFFER.size], 0
  1284.         add     eax, SOCKET_MAXDATA
  1285.         mov     [esi + RING_BUFFER.end_ptr], eax
  1286.         mov     eax, esi
  1287.         pop     esi
  1288.  
  1289.         ret
  1290.  
  1291. ;-----------------------------------------------------------------
  1292. ;
  1293. ; SOCKET_ring_write
  1294. ;
  1295. ; Adds data to a stream socket, and updates write pointer and size
  1296. ;
  1297. ;  IN:  eax = ptr to ring struct
  1298. ;       ecx = data size
  1299. ;       esi = ptr to data
  1300. ;
  1301. ;  OUT: ecx = number of bytes stored
  1302. ;
  1303. ;-----------------------------------------------------------------
  1304. align 4
  1305. SOCKET_ring_write:
  1306.  
  1307.         DEBUGF  1,"SOCKET_ring_write: ringbuff=%x ptr=%x size=%u\n", eax, esi, ecx
  1308.  
  1309.         add     [eax + RING_BUFFER.size], ecx
  1310.         jc      .way_too_large
  1311.         cmp     [eax + RING_BUFFER.size], SOCKET_MAXDATA
  1312.         ja      .too_large
  1313.  
  1314.   .copy:
  1315.         mov     edi, [eax + RING_BUFFER.write_ptr]
  1316.         DEBUGF  2,"SOCKET_ring_write: %u bytes from %x to %x\n", ecx, esi, edi
  1317.  
  1318.         push    ecx
  1319.         shr     ecx, 1
  1320.         jnc     .nb
  1321.         movsb
  1322.   .nb:
  1323.         shr     ecx, 1
  1324.         jnc     .nw
  1325.         movsw
  1326.   .nw:
  1327.         test    ecx, ecx
  1328.         jz      .nd
  1329.         rep     movsd
  1330.   .nd:
  1331.         pop     ecx
  1332.  
  1333.         cmp     edi, [eax + RING_BUFFER.end_ptr]
  1334.         jae     .wrap
  1335.         mov     [eax + RING_BUFFER.write_ptr], edi
  1336.  
  1337.         ret
  1338.  
  1339.   .wrap:
  1340.         sub     edi, SOCKET_MAXDATA
  1341.         mov     [eax + RING_BUFFER.write_ptr], edi
  1342.  
  1343.         ret
  1344.  
  1345.   .too_large:                                                           ; update size, we will fill buffer completely
  1346.         sub     [eax + RING_BUFFER.size], SOCKET_MAXDATA
  1347.         sub     ecx, [eax + RING_BUFFER.size]
  1348.         mov     [eax + RING_BUFFER.size], SOCKET_MAXDATA
  1349.         ja      .copy
  1350.  
  1351.   .full:
  1352.         DEBUGF  2,"SOCKET_ring_write: ring buffer is full!\n"
  1353.         xor     ecx, ecx
  1354.         ret
  1355.  
  1356.   .way_too_large:
  1357.         sub     [eax + RING_BUFFER.size], ecx
  1358.         mov     ecx, SOCKET_MAXDATA
  1359.         sub     ecx, [eax + RING_BUFFER.size]
  1360.         ja      .copy
  1361.         jmp     .full
  1362.  
  1363.  
  1364.  
  1365. ;-----------------------------------------------------------------
  1366. ;
  1367. ; SOCKET_ring_read
  1368. ;
  1369. ;  IN:  eax = ring struct ptr
  1370. ;       ecx = bytes to read
  1371. ;       edx = offset
  1372. ;       edi = ptr to buffer start
  1373. ;
  1374. ;  OUT: eax = unchanged
  1375. ;       ecx = number of bytes read (0 on error)
  1376. ;       edx = destroyed
  1377. ;       esi = destroyed
  1378. ;       edi = ptr to buffer end
  1379. ;
  1380. ;-----------------------------------------------------------------
  1381. align 4
  1382. SOCKET_ring_read:
  1383.  
  1384.         DEBUGF  1,"SOCKET_ring_read: ringbuff=%x ptr=%x size=%u offset=%x\n", eax, edi, ecx, edx
  1385.  
  1386.         mov     esi, [eax + RING_BUFFER.read_ptr]
  1387.         add     esi, edx                                        ; esi = start_ptr + offset
  1388.  
  1389.         neg     edx
  1390.         add     edx, [eax + RING_BUFFER.size]                   ; edx = snd.size - offset
  1391.         jle     .no_data_at_all
  1392.  
  1393.         cmp     ecx, edx
  1394.         ja      .less_data
  1395.  
  1396.   .copy:
  1397.         DEBUGF  2,"SOCKET_ring_read: %u bytes from %x to %x\n", ecx, esi, edi
  1398.         push    ecx
  1399.         shr     ecx, 1
  1400.         jnc     .nb
  1401.         movsb
  1402.   .nb:
  1403.         shr     ecx, 1
  1404.         jnc     .nw
  1405.         movsw
  1406.   .nw:
  1407.         test    ecx, ecx
  1408.         jz      .nd
  1409.         rep     movsd
  1410.   .nd:
  1411.         pop     ecx
  1412.         ret
  1413.  
  1414.   .no_data_at_all:
  1415.         DEBUGF  1,"SOCKET_ring_read: no data at all!\n"
  1416.         xor     ecx, ecx
  1417.         ret
  1418.  
  1419.   .less_data:
  1420.         mov     ecx, edx
  1421.         jmp     .copy
  1422.  
  1423.  
  1424. ;-----------------------------------------------------------------
  1425. ;
  1426. ; SOCKET_ring_free
  1427. ;
  1428. ; Free's some bytes from the ringbuffer
  1429. ;
  1430. ;  IN:  eax = ptr to ring struct
  1431. ;       ecx = data size
  1432. ;
  1433. ;  OUT: ecx = number of bytes free-ed
  1434. ;
  1435. ;-----------------------------------------------------------------
  1436. align 4
  1437. SOCKET_ring_free:
  1438.  
  1439.         DEBUGF  1,"SOCKET_ring_free: %u bytes from ring %x\n", ecx, eax
  1440.  
  1441.         sub     [eax + RING_BUFFER.size], ecx
  1442.         jb      .error
  1443.         add     [eax + RING_BUFFER.read_ptr], ecx
  1444.  
  1445.         mov     edx, [eax + RING_BUFFER.end_ptr]
  1446.         cmp     [eax + RING_BUFFER.read_ptr], edx
  1447.         jb      @f
  1448.         sub     [eax + RING_BUFFER.read_ptr], SOCKET_MAXDATA
  1449.        @@:
  1450.         ret
  1451.  
  1452.   .error:       ; we could free all available bytes, but that would be stupid, i guess..
  1453.         DEBUGF  1,"SOCKET_ring_free: buffer=%x error!\n", eax
  1454.         add     [eax + RING_BUFFER.size], ecx
  1455.         xor     ecx, ecx
  1456.         ret
  1457.  
  1458.  
  1459. ;-----------------------------------------------------------------
  1460. ;
  1461. ; SOCKET_notify_owner
  1462. ;
  1463. ; notify's the owner of a socket that something happened
  1464. ;
  1465. ;  IN:  eax = socket ptr
  1466. ;  OUT: /
  1467. ;
  1468. ;-----------------------------------------------------------------
  1469. align 4
  1470. SOCKET_notify_owner:
  1471.  
  1472.         DEBUGF  1,"SOCKET_notify_owner: %x\n", eax
  1473.  
  1474.         call    SOCKET_check
  1475.         jz      .error
  1476.  
  1477.         push    eax ecx esi
  1478.  
  1479. ; socket exists, now try to flag an event to the application
  1480.  
  1481.         mov     eax, [eax + SOCKET.PID]
  1482.         test    eax, eax
  1483.         jz      .error2
  1484.         mov     ecx, 1
  1485.         mov     esi, TASK_DATA + TASKDATA.pid
  1486.  
  1487.        .next_pid:
  1488.         cmp     [esi], eax
  1489.         je      .found_pid
  1490.         inc     ecx
  1491.         add     esi, 0x20
  1492.         cmp     ecx, [TASK_COUNT]
  1493.         jbe     .next_pid
  1494.  
  1495. ; PID not found, TODO: close socket!
  1496.  
  1497.         jmp     .error2
  1498.  
  1499.        .found_pid:
  1500.         shl     ecx, 8
  1501.         or      [ecx + SLOT_BASE + APPDATA.event_mask], EVENT_NETWORK
  1502.         mov     [check_idle_semaphore], 200
  1503.  
  1504.         DEBUGF  1,"SOCKET_notify_owner: succes!\n"
  1505.  
  1506.   .error2:
  1507.         pop     esi ecx eax
  1508.  
  1509.   .error:
  1510.  
  1511.         ret
  1512.  
  1513.  
  1514. ;--------------------------------------------------------------------
  1515. ;
  1516. ; SOCKET_alloc
  1517. ;
  1518. ; Allocate memory for socket data and put new socket into the list
  1519. ; Newly created socket is initialized with calling PID and number and
  1520. ; put into beginning of list (which is a fastest way).
  1521. ;
  1522. ; IN:  /
  1523. ; OUT: eax = 0 on error, socket ptr otherwise
  1524. ;      edi = socket number
  1525. ;       ZF = cleared on error
  1526. ;
  1527. ;--------------------------------------------------------------------
  1528. align 4
  1529. SOCKET_alloc:
  1530.  
  1531.         push    ebx
  1532.  
  1533.         stdcall kernel_alloc, SOCKETBUFFSIZE
  1534.         DEBUGF  1, "SOCKET_alloc: ptr=%x\n", eax
  1535.         or      eax, eax
  1536.         jz      .exit
  1537.  
  1538. ; zero-initialize allocated memory
  1539.         push    eax
  1540.         mov     edi, eax
  1541.         mov     ecx, SOCKETBUFFSIZE / 4
  1542.         xor     eax, eax
  1543.         rep     stosd
  1544.         pop     eax
  1545.  
  1546. ; set send-and receive procedures to return -1
  1547.         mov     [eax + SOCKET.snd_proc], s_error
  1548.         mov     [eax + SOCKET.rcv_proc], s_error
  1549.  
  1550. ; find first free socket number and use it
  1551.         mov     edi, [last_socket_num]
  1552.   .next_socket_number:
  1553.         inc     edi
  1554.         jz      .next_socket_number     ; avoid socket nr 0
  1555.         cmp     edi, -1
  1556.         je      .next_socket_number     ; avoid socket nr -1
  1557.         mov     ebx, net_sockets
  1558.   .next_socket:
  1559.         mov     ebx, [ebx + SOCKET.NextPtr]
  1560.         test    ebx, ebx
  1561.         jz      .last_socket
  1562.  
  1563.         cmp     [ebx + SOCKET.Number], edi
  1564.         jne     .next_socket
  1565.         jmp     .next_socket_number
  1566.  
  1567.   .last_socket:
  1568.         mov     [last_socket_num], edi
  1569.         mov     [eax + SOCKET.Number], edi
  1570.         DEBUGF  1, "SOCKET_alloc: number=%u\n", edi
  1571.  
  1572. ; Fill in PID
  1573.         mov     ebx, [TASK_BASE]
  1574.         mov     ebx, [ebx + TASKDATA.pid]
  1575.         mov     [eax + SOCKET.PID], ebx
  1576.  
  1577. ; init mutex
  1578.         pusha
  1579.         lea     ecx, [eax + SOCKET.mutex]
  1580.         call    mutex_init
  1581.         popa
  1582.  
  1583. ; add socket to the list by re-arranging some pointers
  1584.         mov     ebx, [net_sockets + SOCKET.NextPtr]
  1585.  
  1586.         mov     [eax + SOCKET.PrevPtr], net_sockets
  1587.         mov     [eax + SOCKET.NextPtr], ebx
  1588.  
  1589.         test    ebx, ebx
  1590.         jz      @f
  1591.  
  1592.         pusha
  1593.         lea     ecx, [ebx + SOCKET.mutex]
  1594.         call    mutex_lock
  1595.         popa
  1596.  
  1597.         mov     [ebx + SOCKET.PrevPtr], eax
  1598.  
  1599.         pusha
  1600.         lea     ecx, [ebx + SOCKET.mutex]
  1601.         call    mutex_unlock
  1602.         popa
  1603.        @@:
  1604.  
  1605.         mov     [net_sockets + SOCKET.NextPtr], eax
  1606.         or      eax, eax                ; used to clear zero flag
  1607.   .exit:
  1608.         pop     ebx
  1609.  
  1610.         ret
  1611.  
  1612.  
  1613. ;----------------------------------------------------
  1614. ;
  1615. ; SOCKET_free
  1616. ;
  1617. ; Free socket data memory and remove socket from the list
  1618. ;
  1619. ; IN:  eax = socket ptr
  1620. ; OUT: /
  1621. ;
  1622. ;----------------------------------------------------
  1623. align 4
  1624. SOCKET_free:
  1625.  
  1626.         DEBUGF  1, "SOCKET_free: %x\n", eax
  1627.  
  1628.         call    SOCKET_check
  1629.         jz      .error
  1630.  
  1631.         push    ebx
  1632.  
  1633.         pusha
  1634.         lea     ecx, [eax + SOCKET.mutex]
  1635.         call    mutex_lock
  1636.         popa
  1637.  
  1638.         cmp     [eax + SOCKET.Domain], AF_INET4
  1639.         jnz     .no_tcp
  1640.  
  1641.         cmp     [eax + SOCKET.Protocol], IP_PROTO_TCP
  1642.         jnz     .no_tcp
  1643.  
  1644.         mov     ebx, eax
  1645.         stdcall kernel_free, [ebx + STREAM_SOCKET.rcv.start_ptr]
  1646.         stdcall kernel_free, [ebx + STREAM_SOCKET.snd.start_ptr]
  1647.         mov     eax, ebx
  1648.   .no_tcp:
  1649.  
  1650.         push    eax                             ; this will be passed to kernel_free
  1651.         mov     ebx, [eax + SOCKET.NextPtr]
  1652.         mov     eax, [eax + SOCKET.PrevPtr]
  1653.  
  1654.         DEBUGF  1, "SOCKET_free: linking socket %x to socket %x\n", eax, ebx
  1655.  
  1656.         test    eax, eax
  1657.         jz      @f
  1658.         mov     [eax + SOCKET.NextPtr], ebx
  1659.        @@:
  1660.  
  1661.         test    ebx, ebx
  1662.         jz      @f
  1663.         mov     [ebx + SOCKET.PrevPtr], eax
  1664.        @@:
  1665.  
  1666.         call    kernel_free
  1667.         pop     ebx
  1668.  
  1669.         DEBUGF  1, "SOCKET_free: success!\n"
  1670.  
  1671.   .error:
  1672.         ret
  1673.  
  1674. ;------------------------------------
  1675. ;
  1676. ; SOCKET_fork
  1677. ;
  1678. ; Create a child socket
  1679. ;
  1680. ; IN:  socket nr in ebx
  1681. ; OUT: child socket nr in eax
  1682. ;
  1683. ;-----------------------------------
  1684. align 4
  1685. SOCKET_fork:
  1686.  
  1687.         DEBUGF  1,"SOCKET_fork: %x\n", ebx
  1688.  
  1689. ; Exit if backlog queue is full
  1690.         mov     eax, [ebx + SOCKET_QUEUE_LOCATION + queue.size]
  1691.         cmp     ax, [ebx + SOCKET.backlog]
  1692.         jae     .fail
  1693.  
  1694. ; Allocate new socket
  1695.         push    ebx
  1696.         call    SOCKET_alloc
  1697.         pop     ebx
  1698.         jz      .fail
  1699.  
  1700.         push    eax
  1701.         mov     esi, esp
  1702.         add_to_queue (ebx + SOCKET_QUEUE_LOCATION), MAX_backlog, 4, .fail2
  1703.         pop     eax
  1704.  
  1705. ; Copy structure from current socket to new
  1706. ; We start at PID to preserve the socket num, and the 2 pointers at beginning of socket
  1707.         lea     esi, [ebx + SOCKET.PID]
  1708.         lea     edi, [eax + SOCKET.PID]
  1709.         mov     ecx, (SOCKET_QUEUE_LOCATION - SOCKET.PID + 3)/4
  1710.         rep     movsd
  1711.  
  1712.         and     [eax + SOCKET.options], not SO_ACCEPTCON
  1713.  
  1714.         ret
  1715.  
  1716.   .fail2:
  1717.         add     esp, 4+4+4
  1718.   .fail:
  1719.         DEBUGF  1,"SOCKET_fork: failed\n"
  1720.         xor     eax, eax
  1721.         ret
  1722.  
  1723.  
  1724. ;---------------------------------------------------
  1725. ;
  1726. ; SOCKET_num_to_ptr
  1727. ;
  1728. ; Get socket structure address by its number
  1729. ;
  1730. ; IN:  ecx = socket number
  1731. ; OUT: eax = 0 on error, socket ptr otherwise
  1732. ;       ZF = set on error
  1733. ;
  1734. ;---------------------------------------------------
  1735. align 4
  1736. SOCKET_num_to_ptr:
  1737.  
  1738.         DEBUGF  1,"SOCKET_num_to_ptr: num=%u ", ecx
  1739.  
  1740.         mov     eax, net_sockets
  1741.  
  1742.   .next_socket:
  1743.         mov     eax, [eax + SOCKET.NextPtr]
  1744.         or      eax, eax
  1745.         jz      .error
  1746.         cmp     [eax + SOCKET.Number], ecx
  1747.         jne     .next_socket
  1748.  
  1749.         test    eax, eax
  1750.  
  1751.         DEBUGF  1,"ptr=%x\n", eax
  1752.         ret
  1753.  
  1754.   .error:
  1755.         DEBUGF  1,"not found\n", eax
  1756.         ret
  1757.  
  1758.  
  1759. ;---------------------------------------------------
  1760. ;
  1761. ; SOCKET_ptr_to_num
  1762. ;
  1763. ; Get socket number by its address
  1764. ;
  1765. ; IN:  eax = socket ptr
  1766. ; OUT: eax = 0 on error, socket num otherwise
  1767. ;       ZF = set on error
  1768. ;
  1769. ;---------------------------------------------------
  1770. align 4
  1771. SOCKET_ptr_to_num:
  1772.  
  1773.         DEBUGF  1,"SOCKET_ptr_to_num: ptr=%x ", eax
  1774.  
  1775.         call    SOCKET_check
  1776.         jz      .error
  1777.  
  1778.         mov     eax, [eax + SOCKET.Number]
  1779.  
  1780.         DEBUGF  1,"num=%u\n", eax
  1781.         ret
  1782.  
  1783.   .error:
  1784.         DEBUGF  1,"not found\n", eax
  1785.         ret
  1786.  
  1787.  
  1788. ;---------------------------------------------------
  1789. ;
  1790. ; SOCKET_check
  1791. ;
  1792. ; checks if the given value is really a socket ptr
  1793. ;
  1794. ; IN:  eax = socket ptr
  1795. ; OUT: eax = 0 on error, unchanged otherwise
  1796. ;       ZF = set on error
  1797. ;
  1798. ;---------------------------------------------------
  1799. align 4
  1800. SOCKET_check:
  1801.  
  1802.         DEBUGF  1,"SOCKET_check: %x\n", eax
  1803.  
  1804.         push    ebx
  1805.         mov     ebx, net_sockets
  1806.  
  1807.   .next_socket:
  1808.         mov     ebx, [ebx + SOCKET.NextPtr]
  1809.         or      ebx, ebx
  1810.         jz      .done
  1811.         cmp     ebx, eax
  1812.         jnz     .next_socket
  1813.  
  1814.   .done:
  1815.         mov     eax, ebx
  1816.         test    eax, eax
  1817.         pop     ebx
  1818.  
  1819.         ret
  1820.  
  1821.  
  1822.  
  1823. ;---------------------------------------------------
  1824. ;
  1825. ; SOCKET_check_owner
  1826. ;
  1827. ; checks if the caller application owns the socket
  1828. ;
  1829. ; IN:  eax = socket ptr
  1830. ; OUT:  ZF = true/false
  1831. ;
  1832. ;---------------------------------------------------
  1833. align 4
  1834. SOCKET_check_owner:
  1835.  
  1836.         DEBUGF  1,"SOCKET_check_owner: %x\n", eax
  1837.  
  1838.         push    ebx
  1839.         mov     ebx, [TASK_BASE]
  1840.         mov     ebx, [ecx + TASKDATA.pid]
  1841.         cmp     [eax + SOCKET.PID], ebx
  1842.         pop      ebx
  1843.  
  1844.         ret
  1845.  
  1846.  
  1847.  
  1848.  
  1849. ;------------------------------------------------------
  1850. ;
  1851. ; SOCKET_process_end
  1852. ;
  1853. ; Kernel calls this function when a certain process ends
  1854. ; This function will check if the process had any open sockets
  1855. ; And update them accordingly
  1856. ;
  1857. ; IN:  edx = pid
  1858. ; OUT: /
  1859. ;
  1860. ;------------------------------------------------------
  1861. align 4
  1862. SOCKET_process_end:
  1863.  
  1864.         DEBUGF  1,"SOCKET_process_end: %x\n", edx
  1865.  
  1866.         push    ebx
  1867.         mov     ebx, net_sockets
  1868.  
  1869.   .next_socket:
  1870.         mov     ebx, [ebx + SOCKET.NextPtr]
  1871.   .test_socket:
  1872.         test    ebx, ebx
  1873.         jz      .done
  1874.  
  1875.         cmp     [ebx + SOCKET.PID], edx
  1876.         jne     .next_socket
  1877.  
  1878.         DEBUGF  1,"SOCKET_process_end: killing socket %x\n", ebx
  1879.  
  1880.         mov     [ebx + SOCKET.PID], 0
  1881.  
  1882.         cmp     [ebx + SOCKET.Protocol], IP_PROTO_TCP
  1883.         je      .tcp
  1884.  
  1885. ; The socket is stateless, just kill it right away!
  1886.  
  1887.         mov     eax, ebx
  1888.         mov     ebx, [ebx + SOCKET.NextPtr]
  1889.         call    SOCKET_free
  1890.         jmp     .test_socket
  1891.  
  1892.   .tcp:
  1893.         push    [ebx + SOCKET.NextPtr]
  1894.         mov     eax, ebx
  1895.         call    TCP_disconnect
  1896.         pop     ebx
  1897.         jmp     .test_socket
  1898.  
  1899.   .done:
  1900.         pop     ebx
  1901.  
  1902.         ret
  1903.  
  1904.  
  1905.  
  1906.  
  1907. ;-----------------------------------------------------------------
  1908. ;
  1909. ; SOCKET_is_connecting
  1910. ;
  1911. ;  IN:  eax = socket ptr
  1912. ;  OUT: /
  1913. ;
  1914. ;-----------------------------------------------------------------
  1915.  
  1916. align 4
  1917. SOCKET_is_connecting:
  1918.  
  1919.         DEBUGF  1,"SOCKET_is_connecting: %x\n", eax
  1920.  
  1921.         and     [eax + SOCKET.options], not (SS_ISCONNECTED + SS_ISDISCONNECTING + SS_ISCONFIRMING)
  1922.         or      [eax + SOCKET.options], SS_ISCONNECTING
  1923.  
  1924.         jmp     SOCKET_notify_owner
  1925.  
  1926.  
  1927.  
  1928. ;-----------------------------------------------------------------
  1929. ;
  1930. ; SOCKET_is_connected
  1931. ;
  1932. ;  IN:  eax = socket ptr
  1933. ;  OUT: /
  1934. ;
  1935. ;-----------------------------------------------------------------
  1936.  
  1937. align 4
  1938. SOCKET_is_connected:
  1939.  
  1940.         DEBUGF  1,"SOCKET_is_connected: %x\n", eax
  1941.  
  1942.         and     [eax + SOCKET.options], not (SS_ISCONNECTING + SS_ISDISCONNECTING + SS_ISCONFIRMING)
  1943.         or      [eax + SOCKET.options], SS_ISCONNECTED
  1944.  
  1945.         jmp     SOCKET_notify_owner
  1946.  
  1947.  
  1948.  
  1949.  
  1950. ;-----------------------------------------------------------------
  1951. ;
  1952. ; SOCKET_is_disconnecting
  1953. ;
  1954. ;  IN:  eax = socket ptr
  1955. ;  OUT: /
  1956. ;
  1957. ;-----------------------------------------------------------------
  1958.  
  1959. align 4
  1960. SOCKET_is_disconnecting:
  1961.  
  1962.         DEBUGF  1,"SOCKET_is_disconnecting: %x\n", eax
  1963.  
  1964.         and     [eax + SOCKET.options], not (SS_ISCONNECTING)
  1965.         or      [eax + SOCKET.options], SS_ISDISCONNECTING + SS_CANTRCVMORE + SS_CANTSENDMORE
  1966.  
  1967.         jmp     SOCKET_notify_owner
  1968.  
  1969.  
  1970.  
  1971. ;-----------------------------------------------------------------
  1972. ;
  1973. ; SOCKET_is_disconnected
  1974. ;
  1975. ;  IN:  eax = socket ptr
  1976. ;  OUT: /
  1977. ;
  1978. ;-----------------------------------------------------------------
  1979.  
  1980. align 4
  1981. SOCKET_is_disconnected:
  1982.  
  1983.         DEBUGF  1,"SOCKET_is_disconnected: %x\n", eax
  1984.  
  1985.         and     [eax + SOCKET.options], not (SS_ISCONNECTING + SS_ISCONNECTED + SS_ISDISCONNECTING)
  1986.         or      [eax + SOCKET.options], SS_CANTRCVMORE + SS_CANTSENDMORE
  1987.  
  1988.         jmp     SOCKET_notify_owner
  1989.  
  1990.  
  1991. ;-----------------------------------------------------------------
  1992. ;
  1993. ; SOCKET_cant_recv_more
  1994. ;
  1995. ;  IN:  eax = socket ptr
  1996. ;  OUT: /
  1997. ;
  1998. ;-----------------------------------------------------------------
  1999.  
  2000. align 4
  2001. SOCKET_cant_recv_more:
  2002.  
  2003.         DEBUGF  1,"SOCKET_cant_recv_more: %x\n", eax
  2004.  
  2005.         or      [eax + SOCKET.options], SS_CANTRCVMORE
  2006.  
  2007.         ret
  2008.  
  2009.  
  2010.  
  2011. ;-----------------------------------------------------------------
  2012. ;
  2013. ; SOCKET_cant_send_more
  2014. ;
  2015. ;  IN:  eax = socket ptr
  2016. ;  OUT: /
  2017. ;
  2018. ;-----------------------------------------------------------------
  2019.  
  2020. align 4
  2021. SOCKET_cant_send_more:
  2022.  
  2023.         DEBUGF  1,"SOCKET_cant_send_more: %x\n", eax
  2024.  
  2025.         or      [eax + SOCKET.options], SS_CANTSENDMORE
  2026.  
  2027.         ret