Subversion Repositories Kolibri OS

Rev

Rev 2465 | Rev 3626 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3555 Serge 1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
;;                                                                 ;;
3
;; Copyright (C) KolibriOS team 2004-2013. 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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1 ha 16
 
593 mikedld 17
$Revision: 3555 $
18
 
3555 Serge 19
; Socket states
20
TCPS_CLOSED             = 0
21
TCPS_LISTEN             = 1
22
TCPS_SYN_SENT           = 2
23
TCPS_SYN_RECEIVED       = 3
24
TCPS_ESTABLISHED        = 4
25
TCPS_CLOSE_WAIT         = 5
26
TCPS_FIN_WAIT_1         = 6
27
TCPS_CLOSING            = 7
28
TCPS_LAST_ACK           = 8
29
TCPS_FIN_WAIT_2         = 9
30
TCPS_TIMED_WAIT         = 10
593 mikedld 31
 
3555 Serge 32
; Socket Flags
33
TF_ACKNOW               = 1 shl 0     ; ack peer immediately
34
TF_DELACK               = 1 shl 1     ; ack, but try to delay it
35
TF_NODELAY              = 1 shl 2     ; don't delay packets to coalesce
36
TF_NOOPT                = 1 shl 3     ; don't use tcp options
37
TF_SENTFIN              = 1 shl 4     ; have sent FIN
38
TF_REQ_SCALE            = 1 shl 5     ; have/will request window scaling
39
TF_RCVD_SCALE           = 1 shl 6     ; other side has requested scaling
40
TF_REQ_TSTMP            = 1 shl 7     ; have/will request timestamps
41
TF_RCVD_TSTMP           = 1 shl 8     ; a timestamp was received in SYN
42
TF_SACK_PERMIT          = 1 shl 9     ; other side said I could SACK
1 ha 43
 
3555 Serge 44
; Segment flags
45
TH_FIN                  = 1 shl 0
46
TH_SYN                  = 1 shl 1
47
TH_RST                  = 1 shl 2
48
TH_PUSH                 = 1 shl 3
49
TH_ACK                  = 1 shl 4
50
TH_URG                  = 1 shl 5
261 hidnplayr 51
 
3555 Serge 52
; Segment header options
53
TCP_OPT_EOL             = 0           ; End of option list.
54
TCP_OPT_NOP             = 1           ; No-Operation.
55
TCP_OPT_MAXSEG          = 2           ; Maximum Segment Size.
56
TCP_OPT_WINDOW          = 3           ; window scale
57
TCP_OPT_SACK_PERMIT     = 4           ; Selective Acknowledgement
58
TCP_OPT_SACK            = 5
59
TCP_OPT_TIMESTAMP       = 8
261 hidnplayr 60
 
3555 Serge 61
; Fundamental timer values
62
TCP_time_MSL            = 47          ; max segment lifetime (30s)
63
TCP_time_re_min         = 2           ; min retransmission (1,28s)
64
TCP_time_re_max         = 100         ; max retransmission (64s)
65
TCP_time_pers_min       = 8           ; min persist (5,12s)
66
TCP_time_pers_max       = 94          ; max persist (60,16s)
67
TCP_time_keep_init      = 118         ; connection establishment (75,52s)
68
TCP_time_keep_idle      = 4608        ; idle time before 1st probe (2h)
69
TCP_time_keep_interval  = 118         ; between probes when no response (75,52s)
70
TCP_time_rtt_default    = 5           ; default Round Trip Time (3,2s)
71
TCP_time_srtt_default   = 0           ;
72
TCP_time_max_idle       = 8*TCP_time_keep_interval      ; FIXME
907 mikedld 73
 
3555 Serge 74
; timer constants
75
TCP_max_rxtshift        = 12          ; max retransmissions waiting for ACK
76
TCP_max_keepcnt         = 8           ; max keepalive probes
1 ha 77
 
261 hidnplayr 78
;
3555 Serge 79
TCP_max_winshift        = 14
80
TCP_max_win             = 65535
1 ha 81
 
3555 Serge 82
TCP_re_xmit_thresh      = 3
261 hidnplayr 83
 
3555 Serge 84
TCP_mss_default         = 1480        ; default max segment size
261 hidnplayr 85
 
3555 Serge 86
; smoothed round trip time and estimated variance are stored as fixed point numbers,
87
; shifted by the value below.
88
; With these scales, srtt has 3 bits to the right of the binary point, and thus an "alpha"
89
; of .875. rttvar has 2 bits to the right and thus "alpha" of 0.75
90
TCP_RTT_SHIFT           = 3
91
TCP_RTTVAR_SHIFT        = 2
261 hidnplayr 92
 
3555 Serge 93
; bits used by tcp_input and tcp_output
94
TCP_BIT_NEEDOUTPUT      = 1 shl 0
95
TCP_BIT_TIMESTAMP       = 1 shl 1
96
TCP_BIT_DROPSOCKET      = 1 shl 2
261 hidnplayr 97
 
3555 Serge 98
TCP_BIT_SENDALOT        = 1 shl 0
261 hidnplayr 99
 
3555 Serge 100
TCP_PAWS_IDLE           = 24*24*60*60*100       ; 24 days, in 1/100 seconds
1 ha 101
 
3555 Serge 102
TCP_QUEUE_SIZE          = 50
1 ha 103
 
3555 Serge 104
struct  TCP_header
1 ha 105
 
3555 Serge 106
        SourcePort              dw ?
107
        DestinationPort         dw ?
108
        SequenceNumber          dd ?
109
        AckNumber               dd ?
110
        DataOffset              db ?    ; DataOffset[0-3 bits] and Reserved[4-7]
111
        Flags                   db ?    ; Reserved[0-1 bits]|URG|ACK|PSH|RST|SYN|FIN
112
        Window                  dw ?
113
        Checksum                dw ?
114
        UrgentPointer           dw ?
1 ha 115
 
3555 Serge 116
ends
1 ha 117
 
3555 Serge 118
struct  TCP_queue_entry
1 ha 119
 
3555 Serge 120
        ip_ptr          dd ?
121
        segment_ptr     dd ?
122
        segment_size    dd ?
123
        device_ptr      dd ?
1 ha 124
 
3555 Serge 125
        buffer_ptr      dd ?
126
        timestamp       dd ?
1 ha 127
 
3555 Serge 128
ends
1 ha 129
 
3555 Serge 130
align 4
131
uglobal
132
        TCP_segments_tx         rd MAX_NET_DEVICES
133
        TCP_segments_rx         rd MAX_NET_DEVICES
134
        TCP_segments_missed     rd MAX_NET_DEVICES
135
        TCP_segments_dumped     rd MAX_NET_DEVICES
136
;        TCP_bytes_rx            rq MAX_NET_DEVICES
137
;        TCP_bytes_tx            rq MAX_NET_DEVICES
138
        TCP_sequence_num        dd ?
139
        TCP_queue               rd TCP_QUEUE_SIZE*sizeof.TCP_queue_entry/4
140
        TCP_input_event         dd ?
141
endg
1 ha 142
 
143
 
3555 Serge 144
;-----------------------------------------------------------------
1 ha 145
;
3555 Serge 146
; TCP_init
1 ha 147
;
3555 Serge 148
;  This function resets all TCP variables
149
;
150
;-----------------------------------------------------------------
151
macro   TCP_init {
907 mikedld 152
 
3555 Serge 153
        xor     eax, eax
154
        mov     edi, TCP_segments_tx
155
        mov     ecx, (6*MAX_NET_DEVICES)
156
        rep     stosd
1 ha 157
 
3555 Serge 158
        pseudo_random   eax
159
        mov     [TCP_sequence_num], eax
1 ha 160
 
3555 Serge 161
        init_queue TCP_queue
1 ha 162
 
3555 Serge 163
        push    1
2434 Serge 164
        pop     ebx
3555 Serge 165
        mov     ecx, TCP_process_input
166
        call    new_sys_threads
1 ha 167
 
3555 Serge 168
}
1 ha 169
 
170
 
3555 Serge 171
include 'tcp_timer.inc'
172
include 'tcp_subr.inc'
173
include 'tcp_usreq.inc'
174
include 'tcp_input.inc'
175
include 'tcp_output.inc'
1 ha 176
 
177
 
3555 Serge 178
;---------------------------------------------------------------------------
1 ha 179
;
3555 Serge 180
; TCP_API
1 ha 181
;
3555 Serge 182
; This function is called by system function 76
1 ha 183
;
3555 Serge 184
; IN:  subfunction number in bl
185
;      device number in bh
186
;      ecx, edx, .. depends on subfunction
1 ha 187
;
3555 Serge 188
; OUT:
1 ha 189
;
3555 Serge 190
;---------------------------------------------------------------------------
191
align 4
192
TCP_api:
1 ha 193
 
3555 Serge 194
        movzx   eax, bh
195
        shl     eax, 2
1 ha 196
 
3555 Serge 197
        test    bl, bl
198
        jz      .packets_tx     ; 0
199
        dec     bl
200
        jz      .packets_rx     ; 1
201
        dec     bl
202
        jz      .packets_missed ; 2
203
        dec     bl
204
        jz      .packets_dumped ; 3
1 ha 205
 
3555 Serge 206
  .error:
207
        mov     eax, -1
2434 Serge 208
        ret
1 ha 209
 
3555 Serge 210
  .packets_tx:
211
        mov     eax, [TCP_segments_tx + eax]
2434 Serge 212
        ret
1181 clevermous 213
 
3555 Serge 214
  .packets_rx:
215
        mov     eax, [TCP_segments_rx + eax]
2434 Serge 216
        ret
1 ha 217
 
3555 Serge 218
  .packets_missed:
219
        mov     eax, [TCP_segments_missed + eax]
2434 Serge 220
        ret
1 ha 221
 
3555 Serge 222
  .packets_dumped:
223
        mov     eax, [TCP_segments_dumped + eax]
2434 Serge 224
        ret