Subversion Repositories Kolibri OS

Rev

Rev 3143 | 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. ;;                                                                 ;;
  10. ;;    Based on the code of 4.4BSD                                  ;;
  11. ;;                                                                 ;;
  12. ;;          GNU GENERAL PUBLIC LICENSE                             ;;
  13. ;;             Version 2, June 1991                                ;;
  14. ;;                                                                 ;;
  15. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  16.  
  17. $Revision: 3146 $
  18.  
  19. ;-----------------------------------------------------------------
  20. ;
  21. ; TCP_output
  22. ;
  23. ; IN:  eax = socket pointer
  24. ;
  25. ; OUT: /
  26. ;
  27. ;-----------------------------------------------------------------
  28. align 4
  29. TCP_output:
  30.  
  31.         pushf
  32.         cli
  33.  
  34.         DEBUGF 1,"TCP_output: socket=%x\n", eax
  35.  
  36.         pusha
  37.         lea     ecx, [eax + SOCKET.mutex]
  38.         call    mutex_lock
  39.         popa
  40.  
  41. ; We'll detect the length of the data to be transmitted, and flags to be used
  42. ; If there is some data, or any critical controls to send (SYN / RST), then transmit
  43. ; Otherwise, investigate further
  44.  
  45.         mov     ebx, [eax + TCP_SOCKET.SND_MAX]
  46.         cmp     ebx, [eax + TCP_SOCKET.SND_UNA]
  47.         jbe     .not_idle
  48.  
  49.         mov     ebx, [eax + TCP_SOCKET.t_idle]
  50.         cmp     ebx, [eax + TCP_SOCKET.t_rxtcur]
  51.         jbe     .not_idle
  52.  
  53. ; We have been idle for a while and no ACKS are expected to clock out any data we send..
  54. ; Slow start to get ack "clock" running again.
  55.  
  56.         mov     ebx, [eax + TCP_SOCKET.t_maxseg]
  57.         mov     [eax + TCP_SOCKET.SND_CWND], ebx
  58.  
  59.   .not_idle:
  60.   .again:
  61.         mov     [eax + TCP_SOCKET.temp_bits], 0
  62.  
  63.         mov     ebx, [eax + TCP_SOCKET.SND_NXT]         ; calculate offset (71)
  64.         sub     ebx, [eax + TCP_SOCKET.SND_UNA]         ;
  65.  
  66.         mov     ecx, [eax + TCP_SOCKET.SND_WND]         ; determine window
  67.         cmp     ecx, [eax + TCP_SOCKET.SND_CWND]        ;
  68.         jb      @f                                      ;
  69.         mov     ecx, [eax + TCP_SOCKET.SND_CWND]        ;
  70.        @@:                                              ;
  71.  
  72.         call    TCP_outflags                            ; flags in dl
  73.  
  74. ;------------------------
  75. ; data being forced out ?
  76.  
  77. ; If in persist timeout with window of 0, send 1 byte.
  78. ; Otherwise, if window is small but nonzero, and timer expired,
  79. ; we will send what we can and go to transmit state
  80.  
  81.         cmp     [eax + TCP_SOCKET.t_force], 0
  82.         je      .no_force
  83.  
  84.         DEBUGF 1,"TCP_output: forcing data out\n"
  85.  
  86.         test    ecx, ecx
  87.         jnz     .no_zero_window
  88.  
  89.         cmp     ebx, [eax + STREAM_SOCKET.snd.size]
  90.         jae     @f
  91.  
  92.         and     dl, not (TH_FIN)
  93.  
  94.        @@:
  95.         inc     ecx
  96.         jmp     .no_force
  97.  
  98.   .no_zero_window:
  99.         mov     [eax + TCP_SOCKET.timer_persist], 0
  100.         mov     [eax + TCP_SOCKET.t_rxtshift], 0
  101.  
  102.   .no_force:
  103.  
  104. ;--------------------------------
  105. ; Calculate how much data to send (106)
  106.  
  107.         mov     esi, [eax + STREAM_SOCKET.snd.size]
  108.         cmp     esi, ecx
  109.         jb      @f
  110.         mov     esi, ecx
  111.        @@:
  112.         sub     esi, ebx
  113.  
  114.  
  115. ;------------------------
  116. ; check for window shrink (107)
  117.  
  118. ; If FIN has been set, but not ACKed, but we havent been called to retransmit, esi will be -1
  119. ; Otherwise, window shrank after we sent into it.
  120.  
  121.         jae     .not_persist
  122.  
  123. ; enter persist state
  124.         xor     esi, esi
  125.  
  126. ; If window shrank to 0
  127.         test    ecx, ecx
  128.         jnz     @f
  129.  
  130. ; cancel pending retransmit
  131.         mov     [eax + TCP_SOCKET.timer_retransmission], 0
  132.  
  133. ; pull SND_NXT back to (closed) window, We will enter persist state below.
  134.         push    [eax + TCP_SOCKET.SND_UNA]
  135.         pop     [eax + TCP_SOCKET.SND_NXT]
  136.        @@:
  137.  
  138. ; If window didn't close completely, just wait for an ACK
  139.  
  140.   .not_persist:
  141.  
  142. ;---------------------------
  143. ; Send one segment at a time (124)
  144.  
  145.         cmp     esi, [eax + TCP_SOCKET.t_maxseg]
  146.         jbe     @f
  147.  
  148.         mov     esi, [eax + TCP_SOCKET.t_maxseg]
  149.         or      [eax + TCP_SOCKET.temp_bits], TCP_BIT_SENDALOT
  150.        @@:
  151.  
  152. ;--------------------------------------------
  153. ; Turn of FIN flag if send buffer not emptied (128)
  154.  
  155.         mov     edi, [eax + TCP_SOCKET.SND_NXT]
  156.         add     edi, esi
  157.         sub     edi, [eax + TCP_SOCKET.SND_UNA]
  158.         cmp     edi, [eax + STREAM_SOCKET.snd.size]
  159.         jae     @f
  160.         and     dl, not (TH_FIN)
  161.  
  162.        @@:
  163.  
  164. ;-------------------------------
  165. ; calculate window advertisement (130)
  166.  
  167.         mov     ecx, SOCKET_MAXDATA
  168.         sub     ecx, [eax + STREAM_SOCKET.rcv.size]
  169.  
  170. ;------------------------------
  171. ; Sender silly window avoidance (131)
  172.  
  173.         test    esi, esi
  174.         jz      .len_zero
  175.  
  176.         cmp     esi, [eax + TCP_SOCKET.t_maxseg]
  177.         je      TCP_send
  178.  
  179.         add     ebx, esi                                ; offset + length
  180.         cmp     ebx, [eax + STREAM_SOCKET.snd.size]
  181.         jb      @f
  182.  
  183.         test    [eax + TCP_SOCKET.t_flags], TF_NODELAY
  184.         jnz     TCP_send
  185.  
  186.         mov     ebx, [eax + TCP_SOCKET.SND_MAX]
  187.         cmp     ebx, [eax + TCP_SOCKET.SND_UNA]
  188.         je      TCP_send
  189.        @@:
  190.  
  191.         test    [eax + TCP_SOCKET.t_force], -1  ;;;
  192.         jnz     TCP_send
  193.  
  194.         mov     ebx, [eax + TCP_SOCKET.max_sndwnd]
  195.         shr     ebx, 1
  196.         cmp     esi, ebx
  197.         jae     TCP_send
  198.  
  199.         mov     ebx, [eax + TCP_SOCKET.SND_NXT]
  200.         cmp     ebx, [eax + TCP_SOCKET.SND_MAX]
  201.         jb      TCP_send
  202.  
  203.   .len_zero:
  204.  
  205. ;----------------------------------------
  206. ; Check if a window update should be sent (154)
  207.  
  208.         DEBUGF  1,"TCP_output: window=%d\n", ecx
  209.  
  210. ; Compare available window to amount of window known to peer (as advertised window less next expected input)
  211. ; If the difference is at least two max size segments, or at least 50% of the maximum possible window,
  212. ; Then we want to send a window update to the peer.
  213.  
  214.         test    ecx, ecx
  215.         jz      .no_window
  216.  
  217.         push    ecx
  218.         mov     cl, [eax + TCP_SOCKET.RCV_SCALE]
  219.         mov     ebx, TCP_max_win
  220.         shl     ebx, cl
  221.         pop     ecx
  222.         cmp     ebx, ecx
  223.         jb      @f
  224.         mov     ebx, ecx
  225.        @@:
  226.         sub     ebx, [eax + TCP_SOCKET.RCV_ADV]
  227.         add     ebx, [eax + TCP_SOCKET.RCV_NXT]
  228.  
  229.         mov     edi, [eax + TCP_SOCKET.t_maxseg]
  230.         shl     edi, 1
  231.  
  232. ;        cmp     ebx, edi
  233. ;        jae     TCP_send
  234.  
  235. ;        cmp     ebx, [eax + TCP_SOCKET.]    ;;; TODO: check with receive buffer high water mark
  236. ;        jae     TCP_send
  237.  
  238.   .no_window:
  239.  
  240. ;--------------------------
  241. ; Should a segment be sent? (174)
  242.  
  243.         DEBUGF  1,"TCP_output: 174\n"
  244.  
  245.         test    [eax + TCP_SOCKET.t_flags], TF_ACKNOW   ; we need to ACK
  246.         jnz     TCP_send
  247.  
  248.         test    dl, TH_SYN + TH_RST                     ; we need to send a SYN or RST
  249.         jnz     TCP_send
  250.  
  251.         mov     ebx, [eax + TCP_SOCKET.SND_UP]          ; when urgent pointer is beyond start of send bufer
  252.         cmp     ebx, [eax + TCP_SOCKET.SND_UNA]
  253.         ja      TCP_send
  254.  
  255.         test    dl, TH_FIN
  256.         jz      .enter_persist  ; no reason to send, enter persist state
  257.  
  258. ; FIN was set, only send if not already sent, or on retransmit
  259.  
  260.         test    [eax + TCP_SOCKET.t_flags], TF_SENTFIN
  261.         jz      TCP_send
  262.  
  263.         mov     ebx, [eax + TCP_SOCKET.SND_NXT]
  264.         cmp     ebx, [eax + TCP_SOCKET.SND_UNA]
  265.         je      TCP_send
  266.  
  267. ;--------------------
  268. ; Enter persist state (191)
  269.  
  270.   .enter_persist:
  271.  
  272.         cmp     [eax + STREAM_SOCKET.snd.size], 0       ; Data ready to send?
  273.         jne     @f
  274.         cmp     [eax + TCP_SOCKET.timer_retransmission], 0
  275.         jne     @f
  276.         cmp     [eax + TCP_SOCKET.timer_persist], 0     ; Persist timer already expired?
  277.         jne     @f
  278.  
  279.         DEBUGF  1,"TCP_output: Entering persist state\n"
  280.  
  281.         mov     [eax + TCP_SOCKET.t_rxtshift], 0
  282.         call    TCP_set_persist
  283.        @@:
  284.  
  285. ;----------------------------
  286. ; No reason to send a segment (219)
  287.  
  288.         DEBUGF  1,"TCP_output: No reason to send a segment\n"
  289.  
  290.         pusha
  291.         lea     ecx, [eax + SOCKET.mutex]
  292.         call    mutex_unlock
  293.         popa
  294.  
  295.         popf
  296.         ret
  297.  
  298.  
  299.  
  300.  
  301.  
  302.  
  303.  
  304.  
  305.  
  306. ;-----------------------------------------------
  307. ;
  308. ; Send a segment (222)
  309. ;
  310. ; eax = socket pointer
  311. ; esi = data len
  312. ;  dl = flags
  313. ;
  314. ;-----------------------------------------------
  315. align 4
  316. TCP_send:
  317.  
  318.         DEBUGF  1,"TCP_send: socket=%x length=%u flags=%x\n", eax, esi, dl
  319.  
  320.         push    eax                     ; save socket ptr
  321.         push    esi                     ; and data length too
  322.         mov     edi, sizeof.TCP_header  ; edi will contain headersize
  323.  
  324. ;------------------------------------
  325. ; Send options with first SYN segment
  326.  
  327.         test    dl, TH_SYN
  328.         jz      .options_done
  329.  
  330.         push    [eax + TCP_SOCKET.ISS]
  331.         pop     [eax + TCP_SOCKET.SND_NXT]
  332.  
  333.         test    [eax + TCP_SOCKET.t_flags], TF_NOOPT
  334.         jnz     .options_done
  335.  
  336.         mov     ecx, 1460                              ;;;; FIXME: use routing blablabla to determine MSS
  337.         or      ecx, TCP_OPT_MAXSEG shl 24 + 4 shl 16
  338.         bswap   ecx
  339.         push    ecx
  340.         add     di, 4
  341.  
  342.         DEBUGF  1,"TCP_send: added maxseg option\n"
  343.  
  344.         test    [eax + TCP_SOCKET.t_flags], TF_REQ_SCALE
  345.         jz      .no_scale
  346.  
  347.         test    dl, TH_ACK
  348.         jz      .scale_opt
  349.  
  350.         test    [eax + TCP_SOCKET.t_flags], TF_RCVD_SCALE
  351.         jz      .no_scale
  352.  
  353.   .scale_opt:
  354.         mov     cl, [eax + TCP_SOCKET.request_r_scale]
  355.         mov     ch, TCP_OPT_NOP
  356.         pushw   cx
  357.         pushw   TCP_OPT_WINDOW + 3 shl 8
  358.         add     di, 4
  359.  
  360.         DEBUGF  1,"TCP_send: added scale option\n"
  361.  
  362.   .no_scale:
  363.   .no_syn:
  364.  
  365. ;------------------------------------
  366. ; Make the timestamp option if needed
  367.  
  368.         test    [eax + TCP_SOCKET.t_flags], TF_REQ_TSTMP
  369.         jz      .no_timestamp
  370.  
  371.         test    dl, TH_RST
  372.         jnz     .no_timestamp
  373.  
  374.         test    dl, TH_ACK
  375.         jz      .timestamp
  376.  
  377.         test    [eax + TCP_SOCKET.t_flags], TF_RCVD_TSTMP
  378.         jz      .no_timestamp
  379.  
  380.   .timestamp:
  381.         pushd   0
  382.         pushd   [timer_ticks]
  383.         pushd   TCP_OPT_NOP + TCP_OPT_NOP shl 8 + TCP_OPT_TIMESTAMP shl 16 + 10 shl 24
  384.         add     di, 12
  385.  
  386.         DEBUGF  1,"TCP_send: added timestamp\n"
  387.  
  388.   .no_timestamp:
  389.  
  390.         ; <Add additional options here>
  391.  
  392.   .options_done:
  393.  
  394. ; eax = socket ptr
  395. ; edx = flags
  396. ; edi = header size
  397. ; esi = data len
  398.  
  399. ;---------------------------------------------
  400. ; check if we dont exceed the max segment size (270)
  401.  
  402.         add     esi, edi                        ; total TCP segment size
  403.         cmp     esi, [eax + TCP_SOCKET.t_maxseg]
  404.         jbe     .no_overflow
  405.  
  406.         mov     esi, [eax + TCP_SOCKET.t_maxseg]
  407.         or      [eax + TCP_SOCKET.temp_bits], TCP_BIT_SENDALOT
  408.   .no_overflow:
  409.  
  410. ;-----------------------------------------------------------------
  411. ; Start by pushing all TCP header values in reverse order on stack
  412. ; (essentially, creating the tcp header on the stack!)
  413.  
  414.         pushw   0       ;        .UrgentPointer          dw ?
  415.         pushw   0       ;        .Checksum               dw ?
  416.         pushw   0x00a0  ;        .Window                 dw ?    ;;;;;;; FIXME (370)
  417.         shl     edi, 2  ;        .DataOffset             db ?  only 4 left-most bits
  418.         shl     dx, 8
  419.         or      dx, di  ;        .Flags                  db ?
  420.         pushw   dx
  421.         shr     edi, 2  ;        .DataOffset             db ?
  422.  
  423.         push    [eax + TCP_SOCKET.RCV_NXT]      ;        .AckNumber              dd ?
  424.         ntohd   [esp]
  425.  
  426.         push    [eax + TCP_SOCKET.SND_NXT]      ;        .SequenceNumber         dd ?
  427.         ntohd   [esp]
  428.  
  429.         push    [eax + TCP_SOCKET.RemotePort]   ;        .DestinationPort        dw ?
  430.         push    [eax + TCP_SOCKET.LocalPort]    ;        .SourcePort             dw ?
  431.  
  432.         push    edi                     ; header size
  433.  
  434. ;---------------------
  435. ; Create the IP packet
  436.  
  437.         mov     ecx, esi
  438.  
  439.         mov     ebx, [eax + SOCKET.device]
  440.         mov     edx, [eax + IP_SOCKET.LocalIP]  ; source ip
  441.         mov     eax, [eax + IP_SOCKET.RemoteIP] ; dest ip
  442.         mov     di, IP_PROTO_TCP shl 8 + 128
  443.         call    IPv4_output
  444.         jz      .ip_error
  445.  
  446. ;-----------------------------------------
  447. ; Move TCP header from stack to TCP packet
  448.  
  449.         push    ecx
  450.         mov     ecx, [esp + 4]
  451.         lea     esi, [esp + 8]
  452.         shr     ecx, 2                  ; count is in bytes, we will work with dwords
  453.         rep     movsd
  454.         pop     ecx                     ; full TCP packet size
  455.  
  456.         pop     esi                     ; headersize
  457.         add     esp, esi                ; remove it from stack
  458.  
  459.         push    edx                     ; packet size for send proc
  460.         push    eax                     ; packet ptr for send proc
  461.  
  462.         mov     edx, edi                ; begin of data
  463.         sub     edx, esi                ; begin of packet (edi = begin of data)
  464.         push    ecx
  465.         sub     ecx, esi                ; data size
  466.  
  467. ;--------------
  468. ; Copy the data
  469.  
  470. ; eax = ptr to ring struct
  471. ; ecx = buffer size
  472. ; edi = ptr to buffer
  473.  
  474.         mov     eax, [esp + 16]                 ; get socket ptr
  475.  
  476.         push    edx
  477.         push    [eax + TCP_SOCKET.SND_NXT]      ; we'll need this for timing the transmission
  478.         test    ecx, ecx
  479.         jz      .nodata
  480.         mov     edx, [eax + TCP_SOCKET.SND_NXT]
  481.         add     [eax + TCP_SOCKET.SND_NXT], ecx ; update sequence number <<< CHECKME
  482.         sub     edx, [eax + TCP_SOCKET.SND_UNA] ; offset
  483.         add     eax, STREAM_SOCKET.snd
  484.         call    SOCKET_ring_read
  485.   .nodata:
  486.         pop     edi
  487.         pop     esi                             ; begin of data
  488.         pop     ecx                             ; full packet size
  489.         mov     eax, [esp + 12]                 ; socket ptr
  490.  
  491. ;----------------------------------
  492. ; initialize retransmit timer (400)
  493.  
  494. ;TODO: check t_force and persist
  495.  
  496.         test    [esi + TCP_header.Flags], TH_SYN + TH_FIN       ; syn and fin take a sequence number
  497.         jz      @f
  498.         inc     [eax + TCP_SOCKET.SND_NXT]
  499.         test    [esi + TCP_header.Flags], TH_FIN
  500.         jz      @f
  501.         or      [eax + TCP_SOCKET.t_flags], TF_SENTFIN          ; if we sent a fin, set the sentfin flag
  502.        @@:
  503.  
  504.         mov     edx, [eax + TCP_SOCKET.SND_NXT]
  505.         cmp     edx, [eax + TCP_SOCKET.SND_MAX]                 ; is this a retransmission?
  506.         jbe     @f
  507.         mov     [eax + TCP_SOCKET.SND_MAX], edx                 ; [eax + TCP_SOCKET.SND_NXT] from before we updated it
  508.  
  509.         cmp     [eax + TCP_SOCKET.t_rtt], 0                     ; are we currently timing anything?
  510.         je      @f
  511.         mov     [eax + TCP_SOCKET.t_rtt], 1                     ; nope, start transmission timer
  512.         mov     [eax + TCP_SOCKET.t_rtseq], edi
  513. ;TODO: update stats
  514.        @@:
  515.  
  516. ; set retransmission timer if not already set, and not doing an ACK or keepalive probe
  517.  
  518.         cmp     [eax + TCP_SOCKET.timer_retransmission], 0 ;;;; FIXME
  519.         ja      .retransmit_set
  520.  
  521.         cmp     edx, [eax + TCP_SOCKET.SND_UNA]                 ; edx is still [eax + TCP_SOCKET.SND_NXT]
  522.         je      .retransmit_set
  523.  
  524.         mov     edx, [eax + TCP_SOCKET.t_rxtcur]
  525.         mov     [eax + TCP_SOCKET.timer_retransmission], edx
  526.  
  527.         cmp     [eax + TCP_SOCKET.timer_persist], 0
  528.         jne     .retransmit_set
  529.         mov     [eax + TCP_SOCKET.timer_persist], 0
  530.         mov     [eax + TCP_SOCKET.t_rxtshift], 0
  531.  
  532.   .retransmit_set:
  533.  
  534. ;--------------------
  535. ; Create the checksum
  536.  
  537.         TCP_checksum (eax + IP_SOCKET.LocalIP), (eax + IP_SOCKET.RemoteIP)
  538.         mov     [esi + TCP_header.Checksum], dx
  539.  
  540. ; unlock socket
  541.         lea     ecx, [eax + SOCKET.mutex]
  542.         call    mutex_unlock
  543.  
  544. ;----------------
  545. ; Send the packet
  546.  
  547.         DEBUGF  1,"TCP_send: Sending with device %x\n", ebx
  548.         call    [ebx + NET_DEVICE.transmit]
  549.         jnz     .send_error
  550.  
  551. ;---------------
  552. ; Ok, data sent!
  553.  
  554.         pop     ecx
  555.         pop     eax
  556.  
  557.         inc     [TCP_segments_tx]       ; FIXME: correct interface?
  558.  
  559. ; unlock socket
  560.         lea     ecx, [eax + SOCKET.mutex]
  561.         call    mutex_lock
  562.  
  563. ; update advertised receive window
  564.         test    ecx, ecx
  565.         jz      @f
  566.         add     ecx, [eax + TCP_SOCKET.RCV_NXT]
  567.         cmp     ecx, [eax + TCP_SOCKET.RCV_ADV]
  568.         jbe     @f
  569.         mov     [eax + TCP_SOCKET.RCV_ADV], ecx
  570.        @@:
  571.  
  572. ; update last ack sent
  573.         push    [eax + TCP_SOCKET.RCV_NXT]
  574.         pop     [eax + TCP_SOCKET.last_ack_sent]
  575.  
  576. ; and flags
  577.         and     [eax + TCP_SOCKET.t_flags], not (TF_ACKNOW + TF_DELACK)
  578.  
  579.         test    [eax + TCP_SOCKET.temp_bits], TCP_BIT_SENDALOT
  580.         jnz     TCP_output.again
  581.  
  582. ; unlock socket
  583.         lea     ecx, [eax + SOCKET.mutex]
  584.         call    mutex_unlock
  585.  
  586.         DEBUGF 1,"TCP_send: success!\n"
  587.  
  588.         xor     eax, eax
  589.         popf
  590.         ret
  591.  
  592.  
  593.   .ip_error:
  594.         pop     ecx
  595.         add     esp, ecx
  596.         add     esp, 4
  597.         pop     eax
  598.  
  599.         mov     [eax + TCP_SOCKET.timer_retransmission], TCP_time_re_min
  600.  
  601. ; unlock socket
  602.         lea     ecx, [eax + SOCKET.mutex]
  603.         call    mutex_unlock
  604.  
  605.         DEBUGF 1,"TCP_send: IP error\n"
  606.  
  607.         or      eax, -1
  608.         popf
  609.         ret
  610.  
  611.   .send_error:
  612.         add     esp, 8
  613.  
  614.         DEBUGF 1,"TCP_send: sending failed\n"
  615.  
  616.         or      eax, -2
  617.         popf
  618.         ret
  619.  
  620.  
  621.  
  622.  
  623.  
  624.  
  625.