This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / include / net / tcp.h
1 /*
2  * INET         An implementation of the TCP/IP protocol suite for the LINUX
3  *              operating system.  INET is implemented using the  BSD Socket
4  *              interface as the means of communication with the user level.
5  *
6  *              Definitions for the TCP module.
7  *
8  * Version:     @(#)tcp.h       1.0.5   05/23/93
9  *
10  * Authors:     Ross Biro, <bir7@leland.Stanford.Edu>
11  *              Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12  *
13  *              This program is free software; you can redistribute it and/or
14  *              modify it under the terms of the GNU General Public License
15  *              as published by the Free Software Foundation; either version
16  *              2 of the License, or (at your option) any later version.
17  */
18 #ifndef _TCP_H
19 #define _TCP_H
20
21 #define TCP_DEBUG 1
22 #define FASTRETRANS_DEBUG 1
23
24 /* Cancel timers, when they are not required. */
25 #undef TCP_CLEAR_TIMERS
26
27 #include <linux/config.h>
28 #include <linux/list.h>
29 #include <linux/tcp.h>
30 #include <linux/slab.h>
31 #include <linux/cache.h>
32 #include <linux/percpu.h>
33 #include <net/checksum.h>
34 #include <net/sock.h>
35 #include <net/snmp.h>
36 #include <net/ip.h>
37 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
38 #include <linux/ipv6.h>
39 #endif
40 #include <linux/seq_file.h>
41
42 /* This is for all connections with a full identity, no wildcards.
43  * New scheme, half the table is for TIME_WAIT, the other half is
44  * for the rest.  I'll experiment with dynamic table growth later.
45  */
46 struct tcp_ehash_bucket {
47         rwlock_t          lock;
48         struct hlist_head chain;
49 } __attribute__((__aligned__(8)));
50
51 /* This is for listening sockets, thus all sockets which possess wildcards. */
52 #define TCP_LHTABLE_SIZE        32      /* Yes, really, this is all you need. */
53
54 /* There are a few simple rules, which allow for local port reuse by
55  * an application.  In essence:
56  *
57  *      1) Sockets bound to different interfaces may share a local port.
58  *         Failing that, goto test 2.
59  *      2) If all sockets have sk->sk_reuse set, and none of them are in
60  *         TCP_LISTEN state, the port may be shared.
61  *         Failing that, goto test 3.
62  *      3) If all sockets are bound to a specific inet_sk(sk)->rcv_saddr local
63  *         address, and none of them are the same, the port may be
64  *         shared.
65  *         Failing this, the port cannot be shared.
66  *
67  * The interesting point, is test #2.  This is what an FTP server does
68  * all day.  To optimize this case we use a specific flag bit defined
69  * below.  As we add sockets to a bind bucket list, we perform a
70  * check of: (newsk->sk_reuse && (newsk->sk_state != TCP_LISTEN))
71  * As long as all sockets added to a bind bucket pass this test,
72  * the flag bit will be set.
73  * The resulting situation is that tcp_v[46]_verify_bind() can just check
74  * for this flag bit, if it is set and the socket trying to bind has
75  * sk->sk_reuse set, we don't even have to walk the owners list at all,
76  * we return that it is ok to bind this socket to the requested local port.
77  *
78  * Sounds like a lot of work, but it is worth it.  In a more naive
79  * implementation (ie. current FreeBSD etc.) the entire list of ports
80  * must be walked for each data port opened by an ftp server.  Needless
81  * to say, this does not scale at all.  With a couple thousand FTP
82  * users logged onto your box, isn't it nice to know that new data
83  * ports are created in O(1) time?  I thought so. ;-)   -DaveM
84  */
85 struct tcp_bind_bucket {
86         unsigned short          port;
87         signed short            fastreuse;
88         struct hlist_node       node;
89         struct hlist_head       owners;
90 };
91
92 #define tb_for_each(tb, node, head) hlist_for_each_entry(tb, node, head, node)
93
94 struct tcp_bind_hashbucket {
95         spinlock_t              lock;
96         struct hlist_head       chain;
97 };
98
99 static inline struct tcp_bind_bucket *__tb_head(struct tcp_bind_hashbucket *head)
100 {
101         return hlist_entry(head->chain.first, struct tcp_bind_bucket, node);
102 }
103
104 static inline struct tcp_bind_bucket *tb_head(struct tcp_bind_hashbucket *head)
105 {
106         return hlist_empty(&head->chain) ? NULL : __tb_head(head);
107 }
108
109 extern struct tcp_hashinfo {
110         /* This is for sockets with full identity only.  Sockets here will
111          * always be without wildcards and will have the following invariant:
112          *
113          *          TCP_ESTABLISHED <= sk->sk_state < TCP_CLOSE
114          *
115          * First half of the table is for sockets not in TIME_WAIT, second half
116          * is for TIME_WAIT sockets only.
117          */
118         struct tcp_ehash_bucket *__tcp_ehash;
119
120         /* Ok, let's try this, I give up, we do need a local binding
121          * TCP hash as well as the others for fast bind/connect.
122          */
123         struct tcp_bind_hashbucket *__tcp_bhash;
124
125         int __tcp_bhash_size;
126         int __tcp_ehash_size;
127
128         /* All sockets in TCP_LISTEN state will be in here.  This is the only
129          * table where wildcard'd TCP sockets can exist.  Hash function here
130          * is just local port number.
131          */
132         struct hlist_head __tcp_listening_hash[TCP_LHTABLE_SIZE];
133
134         /* All the above members are written once at bootup and
135          * never written again _or_ are predominantly read-access.
136          *
137          * Now align to a new cache line as all the following members
138          * are often dirty.
139          */
140         rwlock_t __tcp_lhash_lock ____cacheline_aligned;
141         atomic_t __tcp_lhash_users;
142         wait_queue_head_t __tcp_lhash_wait;
143         spinlock_t __tcp_portalloc_lock;
144 } tcp_hashinfo;
145
146 #define tcp_ehash       (tcp_hashinfo.__tcp_ehash)
147 #define tcp_bhash       (tcp_hashinfo.__tcp_bhash)
148 #define tcp_ehash_size  (tcp_hashinfo.__tcp_ehash_size)
149 #define tcp_bhash_size  (tcp_hashinfo.__tcp_bhash_size)
150 #define tcp_listening_hash (tcp_hashinfo.__tcp_listening_hash)
151 #define tcp_lhash_lock  (tcp_hashinfo.__tcp_lhash_lock)
152 #define tcp_lhash_users (tcp_hashinfo.__tcp_lhash_users)
153 #define tcp_lhash_wait  (tcp_hashinfo.__tcp_lhash_wait)
154 #define tcp_portalloc_lock (tcp_hashinfo.__tcp_portalloc_lock)
155
156 extern kmem_cache_t *tcp_bucket_cachep;
157 extern struct tcp_bind_bucket *tcp_bucket_create(struct tcp_bind_hashbucket *head,
158                                                  unsigned short snum);
159 extern void tcp_bucket_destroy(struct tcp_bind_bucket *tb);
160 extern void tcp_bucket_unlock(struct sock *sk);
161 extern int tcp_port_rover;
162 extern struct sock *tcp_v4_lookup_listener(u32 addr, unsigned short hnum, int dif);
163
164 /* These are AF independent. */
165 static __inline__ int tcp_bhashfn(__u16 lport)
166 {
167         return (lport & (tcp_bhash_size - 1));
168 }
169
170 extern void tcp_bind_hash(struct sock *sk, struct tcp_bind_bucket *tb,
171                           unsigned short snum);
172
173 #if (BITS_PER_LONG == 64)
174 #define TCP_ADDRCMP_ALIGN_BYTES 8
175 #else
176 #define TCP_ADDRCMP_ALIGN_BYTES 4
177 #endif
178
179 /* This is a TIME_WAIT bucket.  It works around the memory consumption
180  * problems of sockets in such a state on heavily loaded servers, but
181  * without violating the protocol specification.
182  */
183 struct tcp_tw_bucket {
184         /*
185          * Now struct sock also uses sock_common, so please just
186          * don't add nothing before this first member (__tw_common) --acme
187          */
188         struct sock_common      __tw_common;
189 #define tw_family               __tw_common.skc_family
190 #define tw_state                __tw_common.skc_state
191 #define tw_reuse                __tw_common.skc_reuse
192 #define tw_bound_dev_if         __tw_common.skc_bound_dev_if
193 #define tw_node                 __tw_common.skc_node
194 #define tw_bind_node            __tw_common.skc_bind_node
195 #define tw_refcnt               __tw_common.skc_refcnt
196 #define tw_xid                  __tw_common.skc_xid
197 #define tw_vx_info              __tw_common.skc_vx_info
198 #define tw_nid                  __tw_common.skc_nid
199 #define tw_nx_info              __tw_common.skc_nx_info
200         volatile unsigned char  tw_substate;
201         unsigned char           tw_rcv_wscale;
202         __u16                   tw_sport;
203         /* Socket demultiplex comparisons on incoming packets. */
204         /* these five are in inet_opt */
205         __u32                   tw_daddr
206                 __attribute__((aligned(TCP_ADDRCMP_ALIGN_BYTES)));
207         __u32                   tw_rcv_saddr;
208         __u16                   tw_dport;
209         __u16                   tw_num;
210         /* And these are ours. */
211         int                     tw_hashent;
212         int                     tw_timeout;
213         __u32                   tw_rcv_nxt;
214         __u32                   tw_snd_nxt;
215         __u32                   tw_rcv_wnd;
216         __u32                   tw_ts_recent;
217         long                    tw_ts_recent_stamp;
218         unsigned long           tw_ttd;
219         struct tcp_bind_bucket  *tw_tb;
220         struct hlist_node       tw_death_node;
221 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
222         struct in6_addr         tw_v6_daddr;
223         struct in6_addr         tw_v6_rcv_saddr;
224         int                     tw_v6_ipv6only;
225 #endif
226 };
227
228 static __inline__ void tw_add_node(struct tcp_tw_bucket *tw,
229                                    struct hlist_head *list)
230 {
231         hlist_add_head(&tw->tw_node, list);
232 }
233
234 static __inline__ void tw_add_bind_node(struct tcp_tw_bucket *tw,
235                                         struct hlist_head *list)
236 {
237         hlist_add_head(&tw->tw_bind_node, list);
238 }
239
240 static inline int tw_dead_hashed(struct tcp_tw_bucket *tw)
241 {
242         return tw->tw_death_node.pprev != NULL;
243 }
244
245 static __inline__ void tw_dead_node_init(struct tcp_tw_bucket *tw)
246 {
247         tw->tw_death_node.pprev = NULL;
248 }
249
250 static __inline__ void __tw_del_dead_node(struct tcp_tw_bucket *tw)
251 {
252         __hlist_del(&tw->tw_death_node);
253         tw_dead_node_init(tw);
254 }
255
256 static __inline__ int tw_del_dead_node(struct tcp_tw_bucket *tw)
257 {
258         if (tw_dead_hashed(tw)) {
259                 __tw_del_dead_node(tw);
260                 return 1;
261         }
262         return 0;
263 }
264
265 #define tw_for_each(tw, node, head) \
266         hlist_for_each_entry(tw, node, head, tw_node)
267
268 #define tw_for_each_inmate(tw, node, jail) \
269         hlist_for_each_entry(tw, node, jail, tw_death_node)
270
271 #define tw_for_each_inmate_safe(tw, node, safe, jail) \
272         hlist_for_each_entry_safe(tw, node, safe, jail, tw_death_node)
273
274 #define tcptw_sk(__sk)  ((struct tcp_tw_bucket *)(__sk))
275
276 static inline u32 tcp_v4_rcv_saddr(const struct sock *sk)
277 {
278         return likely(sk->sk_state != TCP_TIME_WAIT) ?
279                 inet_sk(sk)->rcv_saddr : tcptw_sk(sk)->tw_rcv_saddr;
280 }
281
282 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
283 static inline struct in6_addr *__tcp_v6_rcv_saddr(const struct sock *sk)
284 {
285         return likely(sk->sk_state != TCP_TIME_WAIT) ?
286                 &inet6_sk(sk)->rcv_saddr : &tcptw_sk(sk)->tw_v6_rcv_saddr;
287 }
288
289 static inline struct in6_addr *tcp_v6_rcv_saddr(const struct sock *sk)
290 {
291         return sk->sk_family == AF_INET6 ? __tcp_v6_rcv_saddr(sk) : NULL;
292 }
293
294 #define tcptw_sk_ipv6only(__sk) (tcptw_sk(__sk)->tw_v6_ipv6only)
295
296 static inline int tcp_v6_ipv6only(const struct sock *sk)
297 {
298         return likely(sk->sk_state != TCP_TIME_WAIT) ?
299                 ipv6_only_sock(sk) : tcptw_sk_ipv6only(sk);
300 }
301 #else
302 # define __tcp_v6_rcv_saddr(__sk)       NULL
303 # define tcp_v6_rcv_saddr(__sk)         NULL
304 # define tcptw_sk_ipv6only(__sk)        0
305 # define tcp_v6_ipv6only(__sk)          0
306 #endif
307
308 extern kmem_cache_t *tcp_timewait_cachep;
309
310 static inline void tcp_tw_put(struct tcp_tw_bucket *tw)
311 {
312         if (atomic_dec_and_test(&tw->tw_refcnt)) {
313 #ifdef INET_REFCNT_DEBUG
314                 printk(KERN_DEBUG "tw_bucket %p released\n", tw);
315 #endif
316                 kmem_cache_free(tcp_timewait_cachep, tw);
317         }
318 }
319
320 extern atomic_t tcp_orphan_count;
321 extern int tcp_tw_count;
322 extern void tcp_time_wait(struct sock *sk, int state, int timeo);
323 extern void tcp_tw_schedule(struct tcp_tw_bucket *tw, int timeo);
324 extern void tcp_tw_deschedule(struct tcp_tw_bucket *tw);
325
326
327 /* Socket demux engine toys. */
328 #ifdef __BIG_ENDIAN
329 #define TCP_COMBINED_PORTS(__sport, __dport) \
330         (((__u32)(__sport)<<16) | (__u32)(__dport))
331 #else /* __LITTLE_ENDIAN */
332 #define TCP_COMBINED_PORTS(__sport, __dport) \
333         (((__u32)(__dport)<<16) | (__u32)(__sport))
334 #endif
335
336 #if (BITS_PER_LONG == 64)
337 #ifdef __BIG_ENDIAN
338 #define TCP_V4_ADDR_COOKIE(__name, __saddr, __daddr) \
339         __u64 __name = (((__u64)(__saddr))<<32)|((__u64)(__daddr));
340 #else /* __LITTLE_ENDIAN */
341 #define TCP_V4_ADDR_COOKIE(__name, __saddr, __daddr) \
342         __u64 __name = (((__u64)(__daddr))<<32)|((__u64)(__saddr));
343 #endif /* __BIG_ENDIAN */
344 #define TCP_IPV4_MATCH(__sk, __cookie, __saddr, __daddr, __ports, __dif)\
345         (((*((__u64 *)&(inet_sk(__sk)->daddr)))== (__cookie))   &&      \
346          ((*((__u32 *)&(inet_sk(__sk)->dport)))== (__ports))    &&      \
347          (!((__sk)->sk_bound_dev_if) || ((__sk)->sk_bound_dev_if == (__dif))))
348 #define TCP_IPV4_TW_MATCH(__sk, __cookie, __saddr, __daddr, __ports, __dif)\
349         (((*((__u64 *)&(tcptw_sk(__sk)->tw_daddr))) == (__cookie)) &&   \
350          ((*((__u32 *)&(tcptw_sk(__sk)->tw_dport))) == (__ports)) &&    \
351          (!((__sk)->sk_bound_dev_if) || ((__sk)->sk_bound_dev_if == (__dif))))
352 #else /* 32-bit arch */
353 #define TCP_V4_ADDR_COOKIE(__name, __saddr, __daddr)
354 #define TCP_IPV4_MATCH(__sk, __cookie, __saddr, __daddr, __ports, __dif)\
355         ((inet_sk(__sk)->daddr                  == (__saddr))   &&      \
356          (inet_sk(__sk)->rcv_saddr              == (__daddr))   &&      \
357          ((*((__u32 *)&(inet_sk(__sk)->dport)))== (__ports))    &&      \
358          (!((__sk)->sk_bound_dev_if) || ((__sk)->sk_bound_dev_if == (__dif))))
359 #define TCP_IPV4_TW_MATCH(__sk, __cookie, __saddr, __daddr, __ports, __dif)\
360         ((tcptw_sk(__sk)->tw_daddr              == (__saddr))   &&      \
361          (tcptw_sk(__sk)->tw_rcv_saddr          == (__daddr))   &&      \
362          ((*((__u32 *)&(tcptw_sk(__sk)->tw_dport))) == (__ports)) &&    \
363          (!((__sk)->sk_bound_dev_if) || ((__sk)->sk_bound_dev_if == (__dif))))
364 #endif /* 64-bit arch */
365
366 #define TCP_IPV6_MATCH(__sk, __saddr, __daddr, __ports, __dif)     \
367         (((*((__u32 *)&(inet_sk(__sk)->dport)))== (__ports))    && \
368          ((__sk)->sk_family             == AF_INET6)            && \
369          !ipv6_addr_cmp(&inet6_sk(__sk)->daddr, (__saddr))      && \
370          !ipv6_addr_cmp(&inet6_sk(__sk)->rcv_saddr, (__daddr))  && \
371          (!((__sk)->sk_bound_dev_if) || ((__sk)->sk_bound_dev_if == (__dif))))
372
373 /* These can have wildcards, don't try too hard. */
374 static __inline__ int tcp_lhashfn(unsigned short num)
375 {
376         return num & (TCP_LHTABLE_SIZE - 1);
377 }
378
379 static __inline__ int tcp_sk_listen_hashfn(struct sock *sk)
380 {
381         return tcp_lhashfn(inet_sk(sk)->num);
382 }
383
384 #define MAX_TCP_HEADER  (128 + MAX_HEADER)
385
386 /* 
387  * Never offer a window over 32767 without using window scaling. Some
388  * poor stacks do signed 16bit maths! 
389  */
390 #define MAX_TCP_WINDOW          32767U
391
392 /* Minimal accepted MSS. It is (60+60+8) - (20+20). */
393 #define TCP_MIN_MSS             88U
394
395 /* Minimal RCV_MSS. */
396 #define TCP_MIN_RCVMSS          536U
397
398 /* After receiving this amount of duplicate ACKs fast retransmit starts. */
399 #define TCP_FASTRETRANS_THRESH 3
400
401 /* Maximal reordering. */
402 #define TCP_MAX_REORDERING      127
403
404 /* Maximal number of ACKs sent quickly to accelerate slow-start. */
405 #define TCP_MAX_QUICKACKS       16U
406
407 /* urg_data states */
408 #define TCP_URG_VALID   0x0100
409 #define TCP_URG_NOTYET  0x0200
410 #define TCP_URG_READ    0x0400
411
412 #define TCP_RETR1       3       /*
413                                  * This is how many retries it does before it
414                                  * tries to figure out if the gateway is
415                                  * down. Minimal RFC value is 3; it corresponds
416                                  * to ~3sec-8min depending on RTO.
417                                  */
418
419 #define TCP_RETR2       15      /*
420                                  * This should take at least
421                                  * 90 minutes to time out.
422                                  * RFC1122 says that the limit is 100 sec.
423                                  * 15 is ~13-30min depending on RTO.
424                                  */
425
426 #define TCP_SYN_RETRIES  5      /* number of times to retry active opening a
427                                  * connection: ~180sec is RFC minumum   */
428
429 #define TCP_SYNACK_RETRIES 5    /* number of times to retry passive opening a
430                                  * connection: ~180sec is RFC minumum   */
431
432
433 #define TCP_ORPHAN_RETRIES 7    /* number of times to retry on an orphaned
434                                  * socket. 7 is ~50sec-16min.
435                                  */
436
437
438 #define TCP_TIMEWAIT_LEN (60*HZ) /* how long to wait to destroy TIME-WAIT
439                                   * state, about 60 seconds     */
440 #define TCP_FIN_TIMEOUT TCP_TIMEWAIT_LEN
441                                  /* BSD style FIN_WAIT2 deadlock breaker.
442                                   * It used to be 3min, new value is 60sec,
443                                   * to combine FIN-WAIT-2 timeout with
444                                   * TIME-WAIT timer.
445                                   */
446
447 #define TCP_DELACK_MAX  ((unsigned)(HZ/5))      /* maximal time to delay before sending an ACK */
448 #if HZ >= 100
449 #define TCP_DELACK_MIN  ((unsigned)(HZ/25))     /* minimal time to delay before sending an ACK */
450 #define TCP_ATO_MIN     ((unsigned)(HZ/25))
451 #else
452 #define TCP_DELACK_MIN  4U
453 #define TCP_ATO_MIN     4U
454 #endif
455 #define TCP_RTO_MAX     ((unsigned)(120*HZ))
456 #define TCP_RTO_MIN     ((unsigned)(HZ/5))
457 #define TCP_TIMEOUT_INIT ((unsigned)(3*HZ))     /* RFC 1122 initial RTO value   */
458
459 #define TCP_RESOURCE_PROBE_INTERVAL ((unsigned)(HZ/2U)) /* Maximal interval between probes
460                                                          * for local resources.
461                                                          */
462
463 #define TCP_KEEPALIVE_TIME      (120*60*HZ)     /* two hours */
464 #define TCP_KEEPALIVE_PROBES    9               /* Max of 9 keepalive probes    */
465 #define TCP_KEEPALIVE_INTVL     (75*HZ)
466
467 #define MAX_TCP_KEEPIDLE        32767
468 #define MAX_TCP_KEEPINTVL       32767
469 #define MAX_TCP_KEEPCNT         127
470 #define MAX_TCP_SYNCNT          127
471
472 #define TCP_SYNQ_INTERVAL       (HZ/5)  /* Period of SYNACK timer */
473 #define TCP_SYNQ_HSIZE          512     /* Size of SYNACK hash table */
474
475 #define TCP_PAWS_24DAYS (60 * 60 * 24 * 24)
476 #define TCP_PAWS_MSL    60              /* Per-host timestamps are invalidated
477                                          * after this time. It should be equal
478                                          * (or greater than) TCP_TIMEWAIT_LEN
479                                          * to provide reliability equal to one
480                                          * provided by timewait state.
481                                          */
482 #define TCP_PAWS_WINDOW 1               /* Replay window for per-host
483                                          * timestamps. It must be less than
484                                          * minimal timewait lifetime.
485                                          */
486
487 #define TCP_TW_RECYCLE_SLOTS_LOG        5
488 #define TCP_TW_RECYCLE_SLOTS            (1<<TCP_TW_RECYCLE_SLOTS_LOG)
489
490 /* If time > 4sec, it is "slow" path, no recycling is required,
491    so that we select tick to get range about 4 seconds.
492  */
493
494 #if HZ <= 16 || HZ > 4096
495 # error Unsupported: HZ <= 16 or HZ > 4096
496 #elif HZ <= 32
497 # define TCP_TW_RECYCLE_TICK (5+2-TCP_TW_RECYCLE_SLOTS_LOG)
498 #elif HZ <= 64
499 # define TCP_TW_RECYCLE_TICK (6+2-TCP_TW_RECYCLE_SLOTS_LOG)
500 #elif HZ <= 128
501 # define TCP_TW_RECYCLE_TICK (7+2-TCP_TW_RECYCLE_SLOTS_LOG)
502 #elif HZ <= 256
503 # define TCP_TW_RECYCLE_TICK (8+2-TCP_TW_RECYCLE_SLOTS_LOG)
504 #elif HZ <= 512
505 # define TCP_TW_RECYCLE_TICK (9+2-TCP_TW_RECYCLE_SLOTS_LOG)
506 #elif HZ <= 1024
507 # define TCP_TW_RECYCLE_TICK (10+2-TCP_TW_RECYCLE_SLOTS_LOG)
508 #elif HZ <= 2048
509 # define TCP_TW_RECYCLE_TICK (11+2-TCP_TW_RECYCLE_SLOTS_LOG)
510 #else
511 # define TCP_TW_RECYCLE_TICK (12+2-TCP_TW_RECYCLE_SLOTS_LOG)
512 #endif
513
514 #define BICTCP_1_OVER_BETA      8       /*
515                                          * Fast recovery
516                                          * multiplicative decrease factor
517                                          */
518 #define BICTCP_MAX_INCREMENT 32         /*
519                                          * Limit on the amount of
520                                          * increment allowed during
521                                          * binary search.
522                                          */
523 #define BICTCP_FUNC_OF_MIN_INCR 11      /*
524                                          * log(B/Smin)/log(B/(B-1))+1,
525                                          * Smin:min increment
526                                          * B:log factor
527                                          */
528 #define BICTCP_B                4        /*
529                                           * In binary search,
530                                           * go to point (max+min)/N
531                                           */
532
533 /*
534  *      TCP option
535  */
536  
537 #define TCPOPT_NOP              1       /* Padding */
538 #define TCPOPT_EOL              0       /* End of options */
539 #define TCPOPT_MSS              2       /* Segment size negotiating */
540 #define TCPOPT_WINDOW           3       /* Window scaling */
541 #define TCPOPT_SACK_PERM        4       /* SACK Permitted */
542 #define TCPOPT_SACK             5       /* SACK Block */
543 #define TCPOPT_TIMESTAMP        8       /* Better RTT estimations/PAWS */
544
545 /*
546  *     TCP option lengths
547  */
548
549 #define TCPOLEN_MSS            4
550 #define TCPOLEN_WINDOW         3
551 #define TCPOLEN_SACK_PERM      2
552 #define TCPOLEN_TIMESTAMP      10
553
554 /* But this is what stacks really send out. */
555 #define TCPOLEN_TSTAMP_ALIGNED          12
556 #define TCPOLEN_WSCALE_ALIGNED          4
557 #define TCPOLEN_SACKPERM_ALIGNED        4
558 #define TCPOLEN_SACK_BASE               2
559 #define TCPOLEN_SACK_BASE_ALIGNED       4
560 #define TCPOLEN_SACK_PERBLOCK           8
561
562 #define TCP_TIME_RETRANS        1       /* Retransmit timer */
563 #define TCP_TIME_DACK           2       /* Delayed ack timer */
564 #define TCP_TIME_PROBE0         3       /* Zero window probe timer */
565 #define TCP_TIME_KEEPOPEN       4       /* Keepalive timer */
566
567 /* Flags in tp->nonagle */
568 #define TCP_NAGLE_OFF           1       /* Nagle's algo is disabled */
569 #define TCP_NAGLE_CORK          2       /* Socket is corked         */
570 #define TCP_NAGLE_PUSH          4       /* Cork is overriden for already queued data */
571
572 /* sysctl variables for tcp */
573 extern int sysctl_max_syn_backlog;
574 extern int sysctl_tcp_timestamps;
575 extern int sysctl_tcp_window_scaling;
576 extern int sysctl_tcp_sack;
577 extern int sysctl_tcp_fin_timeout;
578 extern int sysctl_tcp_tw_recycle;
579 extern int sysctl_tcp_keepalive_time;
580 extern int sysctl_tcp_keepalive_probes;
581 extern int sysctl_tcp_keepalive_intvl;
582 extern int sysctl_tcp_syn_retries;
583 extern int sysctl_tcp_synack_retries;
584 extern int sysctl_tcp_retries1;
585 extern int sysctl_tcp_retries2;
586 extern int sysctl_tcp_orphan_retries;
587 extern int sysctl_tcp_syncookies;
588 extern int sysctl_tcp_retrans_collapse;
589 extern int sysctl_tcp_stdurg;
590 extern int sysctl_tcp_rfc1337;
591 extern int sysctl_tcp_abort_on_overflow;
592 extern int sysctl_tcp_max_orphans;
593 extern int sysctl_tcp_max_tw_buckets;
594 extern int sysctl_tcp_fack;
595 extern int sysctl_tcp_reordering;
596 extern int sysctl_tcp_ecn;
597 extern int sysctl_tcp_dsack;
598 extern int sysctl_tcp_mem[3];
599 extern int sysctl_tcp_wmem[3];
600 extern int sysctl_tcp_rmem[3];
601 extern int sysctl_tcp_app_win;
602 extern int sysctl_tcp_adv_win_scale;
603 extern int sysctl_tcp_tw_reuse;
604 extern int sysctl_tcp_frto;
605 extern int sysctl_tcp_low_latency;
606 extern int sysctl_tcp_westwood;
607 extern int sysctl_tcp_vegas_cong_avoid;
608 extern int sysctl_tcp_vegas_alpha;
609 extern int sysctl_tcp_vegas_beta;
610 extern int sysctl_tcp_vegas_gamma;
611 extern int sysctl_tcp_nometrics_save;
612 extern int sysctl_tcp_bic;
613 extern int sysctl_tcp_bic_fast_convergence;
614 extern int sysctl_tcp_bic_low_window;
615 extern int sysctl_tcp_moderate_rcvbuf;
616 extern int sysctl_tcp_tso_win_divisor;
617
618 extern atomic_t tcp_memory_allocated;
619 extern atomic_t tcp_sockets_allocated;
620 extern int tcp_memory_pressure;
621
622 struct open_request;
623
624 struct or_calltable {
625         int  family;
626         int  (*rtx_syn_ack)     (struct sock *sk, struct open_request *req, struct dst_entry*);
627         void (*send_ack)        (struct sk_buff *skb, struct open_request *req);
628         void (*destructor)      (struct open_request *req);
629         void (*send_reset)      (struct sk_buff *skb);
630 };
631
632 struct tcp_v4_open_req {
633         __u32                   loc_addr;
634         __u32                   rmt_addr;
635         struct ip_options       *opt;
636 };
637
638 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
639 struct tcp_v6_open_req {
640         struct in6_addr         loc_addr;
641         struct in6_addr         rmt_addr;
642         struct sk_buff          *pktopts;
643         int                     iif;
644 };
645 #endif
646
647 /* this structure is too big */
648 struct open_request {
649         struct open_request     *dl_next; /* Must be first member! */
650         __u32                   rcv_isn;
651         __u32                   snt_isn;
652         __u16                   rmt_port;
653         __u16                   mss;
654         __u8                    retrans;
655         __u8                    __pad;
656         __u16   snd_wscale : 4, 
657                 rcv_wscale : 4, 
658                 tstamp_ok : 1,
659                 sack_ok : 1,
660                 wscale_ok : 1,
661                 ecn_ok : 1,
662                 acked : 1;
663         /* The following two fields can be easily recomputed I think -AK */
664         __u32                   window_clamp;   /* window clamp at creation time */
665         __u32                   rcv_wnd;        /* rcv_wnd offered first time */
666         __u32                   ts_recent;
667         unsigned long           expires;
668         struct or_calltable     *class;
669         struct sock             *sk;
670         union {
671                 struct tcp_v4_open_req v4_req;
672 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
673                 struct tcp_v6_open_req v6_req;
674 #endif
675         } af;
676 #ifdef CONFIG_ACCEPT_QUEUES
677         unsigned long acceptq_time_stamp;
678         int           acceptq_class;
679 #endif
680 };
681
682 /* SLAB cache for open requests. */
683 extern kmem_cache_t *tcp_openreq_cachep;
684
685 #define tcp_openreq_alloc()             kmem_cache_alloc(tcp_openreq_cachep, SLAB_ATOMIC)
686 #define tcp_openreq_fastfree(req)       kmem_cache_free(tcp_openreq_cachep, req)
687
688 static inline void tcp_openreq_free(struct open_request *req)
689 {
690         req->class->destructor(req);
691         tcp_openreq_fastfree(req);
692 }
693
694 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
695 #define TCP_INET_FAMILY(fam) ((fam) == AF_INET)
696 #else
697 #define TCP_INET_FAMILY(fam) 1
698 #endif
699
700 /*
701  *      Pointers to address related TCP functions
702  *      (i.e. things that depend on the address family)
703  */
704
705 struct tcp_func {
706         int                     (*queue_xmit)           (struct sk_buff *skb,
707                                                          int ipfragok);
708
709         void                    (*send_check)           (struct sock *sk,
710                                                          struct tcphdr *th,
711                                                          int len,
712                                                          struct sk_buff *skb);
713
714         int                     (*rebuild_header)       (struct sock *sk);
715
716         int                     (*conn_request)         (struct sock *sk,
717                                                          struct sk_buff *skb);
718
719         struct sock *           (*syn_recv_sock)        (struct sock *sk,
720                                                          struct sk_buff *skb,
721                                                          struct open_request *req,
722                                                          struct dst_entry *dst);
723     
724         int                     (*remember_stamp)       (struct sock *sk);
725
726         __u16                   net_header_len;
727
728         int                     (*setsockopt)           (struct sock *sk, 
729                                                          int level, 
730                                                          int optname, 
731                                                          char __user *optval, 
732                                                          int optlen);
733
734         int                     (*getsockopt)           (struct sock *sk, 
735                                                          int level, 
736                                                          int optname, 
737                                                          char __user *optval, 
738                                                          int __user *optlen);
739
740
741         void                    (*addr2sockaddr)        (struct sock *sk,
742                                                          struct sockaddr *);
743
744         int sockaddr_len;
745 };
746
747 /*
748  * The next routines deal with comparing 32 bit unsigned ints
749  * and worry about wraparound (automatic with unsigned arithmetic).
750  */
751
752 static inline int before(__u32 seq1, __u32 seq2)
753 {
754         return (__s32)(seq1-seq2) < 0;
755 }
756
757 static inline int after(__u32 seq1, __u32 seq2)
758 {
759         return (__s32)(seq2-seq1) < 0;
760 }
761
762
763 /* is s2<=s1<=s3 ? */
764 static inline int between(__u32 seq1, __u32 seq2, __u32 seq3)
765 {
766         return seq3 - seq2 >= seq1 - seq2;
767 }
768
769
770 extern struct proto tcp_prot;
771
772 DECLARE_SNMP_STAT(struct tcp_mib, tcp_statistics);
773 #define TCP_INC_STATS(field)            SNMP_INC_STATS(tcp_statistics, field)
774 #define TCP_INC_STATS_BH(field)         SNMP_INC_STATS_BH(tcp_statistics, field)
775 #define TCP_INC_STATS_USER(field)       SNMP_INC_STATS_USER(tcp_statistics, field)
776 #define TCP_DEC_STATS(field)            SNMP_DEC_STATS(tcp_statistics, field)
777 #define TCP_ADD_STATS_BH(field, val)    SNMP_ADD_STATS_BH(tcp_statistics, field, val)
778 #define TCP_ADD_STATS_USER(field, val)  SNMP_ADD_STATS_USER(tcp_statistics, field, val)
779
780 extern void                     tcp_put_port(struct sock *sk);
781 extern void                     tcp_inherit_port(struct sock *sk, struct sock *child);
782
783 extern void                     tcp_v4_err(struct sk_buff *skb, u32);
784
785 extern void                     tcp_shutdown (struct sock *sk, int how);
786
787 extern int                      tcp_v4_rcv(struct sk_buff *skb);
788
789 extern int                      tcp_v4_remember_stamp(struct sock *sk);
790
791 extern int                      tcp_v4_tw_remember_stamp(struct tcp_tw_bucket *tw);
792
793 extern int                      tcp_sendmsg(struct kiocb *iocb, struct sock *sk,
794                                             struct msghdr *msg, size_t size);
795 extern ssize_t                  tcp_sendpage(struct socket *sock, struct page *page, int offset, size_t size, int flags);
796
797 extern int                      tcp_ioctl(struct sock *sk, 
798                                           int cmd, 
799                                           unsigned long arg);
800
801 extern int                      tcp_rcv_state_process(struct sock *sk, 
802                                                       struct sk_buff *skb,
803                                                       struct tcphdr *th,
804                                                       unsigned len);
805
806 extern int                      tcp_rcv_established(struct sock *sk, 
807                                                     struct sk_buff *skb,
808                                                     struct tcphdr *th, 
809                                                     unsigned len);
810
811 extern void                     tcp_rcv_space_adjust(struct sock *sk);
812
813 enum tcp_ack_state_t
814 {
815         TCP_ACK_SCHED = 1,
816         TCP_ACK_TIMER = 2,
817         TCP_ACK_PUSHED= 4
818 };
819
820 static inline void tcp_schedule_ack(struct tcp_opt *tp)
821 {
822         tp->ack.pending |= TCP_ACK_SCHED;
823 }
824
825 static inline int tcp_ack_scheduled(struct tcp_opt *tp)
826 {
827         return tp->ack.pending&TCP_ACK_SCHED;
828 }
829
830 static __inline__ void tcp_dec_quickack_mode(struct tcp_opt *tp)
831 {
832         if (tp->ack.quick && --tp->ack.quick == 0) {
833                 /* Leaving quickack mode we deflate ATO. */
834                 tp->ack.ato = TCP_ATO_MIN;
835         }
836 }
837
838 extern void tcp_enter_quickack_mode(struct tcp_opt *tp);
839
840 static __inline__ void tcp_delack_init(struct tcp_opt *tp)
841 {
842         memset(&tp->ack, 0, sizeof(tp->ack));
843 }
844
845 static inline void tcp_clear_options(struct tcp_opt *tp)
846 {
847         tp->tstamp_ok = tp->sack_ok = tp->wscale_ok = tp->snd_wscale = 0;
848 }
849
850 enum tcp_tw_status
851 {
852         TCP_TW_SUCCESS = 0,
853         TCP_TW_RST = 1,
854         TCP_TW_ACK = 2,
855         TCP_TW_SYN = 3
856 };
857
858
859 extern enum tcp_tw_status       tcp_timewait_state_process(struct tcp_tw_bucket *tw,
860                                                            struct sk_buff *skb,
861                                                            struct tcphdr *th,
862                                                            unsigned len);
863
864 extern struct sock *            tcp_check_req(struct sock *sk,struct sk_buff *skb,
865                                               struct open_request *req,
866                                               struct open_request **prev);
867 extern int                      tcp_child_process(struct sock *parent,
868                                                   struct sock *child,
869                                                   struct sk_buff *skb);
870 extern void                     tcp_enter_frto(struct sock *sk);
871 extern void                     tcp_enter_loss(struct sock *sk, int how);
872 extern void                     tcp_clear_retrans(struct tcp_opt *tp);
873 extern void                     tcp_update_metrics(struct sock *sk);
874
875 extern void                     tcp_close(struct sock *sk, 
876                                           long timeout);
877 extern struct sock *            tcp_accept(struct sock *sk, int flags, int *err);
878 extern unsigned int             tcp_poll(struct file * file, struct socket *sock, struct poll_table_struct *wait);
879
880 extern int                      tcp_getsockopt(struct sock *sk, int level, 
881                                                int optname,
882                                                char __user *optval, 
883                                                int __user *optlen);
884 extern int                      tcp_setsockopt(struct sock *sk, int level, 
885                                                int optname, char __user *optval, 
886                                                int optlen);
887 extern void                     tcp_set_keepalive(struct sock *sk, int val);
888 extern int                      tcp_recvmsg(struct kiocb *iocb, struct sock *sk,
889                                             struct msghdr *msg,
890                                             size_t len, int nonblock, 
891                                             int flags, int *addr_len);
892
893 extern int                      tcp_listen_start(struct sock *sk);
894
895 extern void                     tcp_parse_options(struct sk_buff *skb,
896                                                   struct tcp_opt *tp,
897                                                   int estab);
898
899 /*
900  *      TCP v4 functions exported for the inet6 API
901  */
902
903 extern int                      tcp_v4_rebuild_header(struct sock *sk);
904
905 extern int                      tcp_v4_build_header(struct sock *sk, 
906                                                     struct sk_buff *skb);
907
908 extern void                     tcp_v4_send_check(struct sock *sk, 
909                                                   struct tcphdr *th, int len, 
910                                                   struct sk_buff *skb);
911
912 extern int                      tcp_v4_conn_request(struct sock *sk,
913                                                     struct sk_buff *skb);
914
915 extern struct sock *            tcp_create_openreq_child(struct sock *sk,
916                                                          struct open_request *req,
917                                                          struct sk_buff *skb);
918
919 extern struct sock *            tcp_v4_syn_recv_sock(struct sock *sk,
920                                                      struct sk_buff *skb,
921                                                      struct open_request *req,
922                                                         struct dst_entry *dst);
923
924 extern int                      tcp_v4_do_rcv(struct sock *sk,
925                                               struct sk_buff *skb);
926
927 extern int                      tcp_v4_connect(struct sock *sk,
928                                                struct sockaddr *uaddr,
929                                                int addr_len);
930
931 extern int                      tcp_connect(struct sock *sk);
932
933 extern struct sk_buff *         tcp_make_synack(struct sock *sk,
934                                                 struct dst_entry *dst,
935                                                 struct open_request *req);
936
937 extern int                      tcp_disconnect(struct sock *sk, int flags);
938
939 extern void                     tcp_unhash(struct sock *sk);
940
941 extern int                      tcp_v4_hash_connecting(struct sock *sk);
942
943
944 /* From syncookies.c */
945 extern struct sock *cookie_v4_check(struct sock *sk, struct sk_buff *skb, 
946                                     struct ip_options *opt);
947 extern __u32 cookie_v4_init_sequence(struct sock *sk, struct sk_buff *skb, 
948                                      __u16 *mss);
949
950 /* tcp_output.c */
951
952 extern int tcp_write_xmit(struct sock *, int nonagle);
953 extern int tcp_retransmit_skb(struct sock *, struct sk_buff *);
954 extern void tcp_xmit_retransmit_queue(struct sock *);
955 extern void tcp_simple_retransmit(struct sock *);
956 extern int tcp_trim_head(struct sock *, struct sk_buff *, u32);
957
958 extern void tcp_send_probe0(struct sock *);
959 extern void tcp_send_partial(struct sock *);
960 extern int  tcp_write_wakeup(struct sock *);
961 extern void tcp_send_fin(struct sock *sk);
962 extern void tcp_send_active_reset(struct sock *sk, int priority);
963 extern int  tcp_send_synack(struct sock *);
964 extern void tcp_push_one(struct sock *, unsigned mss_now);
965 extern void tcp_send_ack(struct sock *sk);
966 extern void tcp_send_delayed_ack(struct sock *sk);
967 extern void cleanup_rbuf(struct sock *sk, int copied);
968
969 /* tcp_timer.c */
970 extern void tcp_init_xmit_timers(struct sock *);
971 extern void tcp_clear_xmit_timers(struct sock *);
972
973 extern void tcp_delete_keepalive_timer (struct sock *);
974 extern void tcp_reset_keepalive_timer (struct sock *, unsigned long);
975 extern unsigned int tcp_sync_mss(struct sock *sk, u32 pmtu);
976 extern unsigned int tcp_current_mss(struct sock *sk, int large);
977
978 extern const char timer_bug_msg[];
979
980 /* tcp_diag.c */
981 extern void tcp_get_info(struct sock *, struct tcp_info *);
982
983 /* Read 'sendfile()'-style from a TCP socket */
984 typedef int (*sk_read_actor_t)(read_descriptor_t *, struct sk_buff *,
985                                 unsigned int, size_t);
986 extern int tcp_read_sock(struct sock *sk, read_descriptor_t *desc,
987                          sk_read_actor_t recv_actor);
988
989 static inline void tcp_clear_xmit_timer(struct sock *sk, int what)
990 {
991         struct tcp_opt *tp = tcp_sk(sk);
992         
993         switch (what) {
994         case TCP_TIME_RETRANS:
995         case TCP_TIME_PROBE0:
996                 tp->pending = 0;
997
998 #ifdef TCP_CLEAR_TIMERS
999                 sk_stop_timer(sk, &tp->retransmit_timer);
1000 #endif
1001                 break;
1002         case TCP_TIME_DACK:
1003                 tp->ack.blocked = 0;
1004                 tp->ack.pending = 0;
1005
1006 #ifdef TCP_CLEAR_TIMERS
1007                 sk_stop_timer(sk, &tp->delack_timer);
1008 #endif
1009                 break;
1010         default:
1011                 printk(timer_bug_msg);
1012                 return;
1013         };
1014
1015 }
1016
1017 /*
1018  *      Reset the retransmission timer
1019  */
1020 static inline void tcp_reset_xmit_timer(struct sock *sk, int what, unsigned long when)
1021 {
1022         struct tcp_opt *tp = tcp_sk(sk);
1023
1024         if (when > TCP_RTO_MAX) {
1025 #ifdef TCP_DEBUG
1026                 printk(KERN_DEBUG "reset_xmit_timer sk=%p %d when=0x%lx, caller=%p\n", sk, what, when, current_text_addr());
1027 #endif
1028                 when = TCP_RTO_MAX;
1029         }
1030
1031         switch (what) {
1032         case TCP_TIME_RETRANS:
1033         case TCP_TIME_PROBE0:
1034                 tp->pending = what;
1035                 tp->timeout = jiffies+when;
1036                 sk_reset_timer(sk, &tp->retransmit_timer, tp->timeout);
1037                 break;
1038
1039         case TCP_TIME_DACK:
1040                 tp->ack.pending |= TCP_ACK_TIMER;
1041                 tp->ack.timeout = jiffies+when;
1042                 sk_reset_timer(sk, &tp->delack_timer, tp->ack.timeout);
1043                 break;
1044
1045         default:
1046                 printk(timer_bug_msg);
1047         };
1048 }
1049
1050 /* Initialize RCV_MSS value.
1051  * RCV_MSS is an our guess about MSS used by the peer.
1052  * We haven't any direct information about the MSS.
1053  * It's better to underestimate the RCV_MSS rather than overestimate.
1054  * Overestimations make us ACKing less frequently than needed.
1055  * Underestimations are more easy to detect and fix by tcp_measure_rcv_mss().
1056  */
1057
1058 static inline void tcp_initialize_rcv_mss(struct sock *sk)
1059 {
1060         struct tcp_opt *tp = tcp_sk(sk);
1061         unsigned int hint = min(tp->advmss, tp->mss_cache_std);
1062
1063         hint = min(hint, tp->rcv_wnd/2);
1064         hint = min(hint, TCP_MIN_RCVMSS);
1065         hint = max(hint, TCP_MIN_MSS);
1066
1067         tp->ack.rcv_mss = hint;
1068 }
1069
1070 static __inline__ void __tcp_fast_path_on(struct tcp_opt *tp, u32 snd_wnd)
1071 {
1072         tp->pred_flags = htonl((tp->tcp_header_len << 26) |
1073                                ntohl(TCP_FLAG_ACK) |
1074                                snd_wnd);
1075 }
1076
1077 static __inline__ void tcp_fast_path_on(struct tcp_opt *tp)
1078 {
1079         __tcp_fast_path_on(tp, tp->snd_wnd>>tp->snd_wscale);
1080 }
1081
1082 static inline void tcp_fast_path_check(struct sock *sk, struct tcp_opt *tp)
1083 {
1084         if (skb_queue_len(&tp->out_of_order_queue) == 0 &&
1085             tp->rcv_wnd &&
1086             atomic_read(&sk->sk_rmem_alloc) < sk->sk_rcvbuf &&
1087             !tp->urg_data)
1088                 tcp_fast_path_on(tp);
1089 }
1090
1091 /* Compute the actual receive window we are currently advertising.
1092  * Rcv_nxt can be after the window if our peer push more data
1093  * than the offered window.
1094  */
1095 static __inline__ u32 tcp_receive_window(struct tcp_opt *tp)
1096 {
1097         s32 win = tp->rcv_wup + tp->rcv_wnd - tp->rcv_nxt;
1098
1099         if (win < 0)
1100                 win = 0;
1101         return (u32) win;
1102 }
1103
1104 /* Choose a new window, without checks for shrinking, and without
1105  * scaling applied to the result.  The caller does these things
1106  * if necessary.  This is a "raw" window selection.
1107  */
1108 extern u32      __tcp_select_window(struct sock *sk);
1109
1110 /* TCP timestamps are only 32-bits, this causes a slight
1111  * complication on 64-bit systems since we store a snapshot
1112  * of jiffies in the buffer control blocks below.  We decidely
1113  * only use of the low 32-bits of jiffies and hide the ugly
1114  * casts with the following macro.
1115  */
1116 #define tcp_time_stamp          ((__u32)(jiffies))
1117
1118 /* This is what the send packet queueing engine uses to pass
1119  * TCP per-packet control information to the transmission
1120  * code.  We also store the host-order sequence numbers in
1121  * here too.  This is 36 bytes on 32-bit architectures,
1122  * 40 bytes on 64-bit machines, if this grows please adjust
1123  * skbuff.h:skbuff->cb[xxx] size appropriately.
1124  */
1125 struct tcp_skb_cb {
1126         union {
1127                 struct inet_skb_parm    h4;
1128 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
1129                 struct inet6_skb_parm   h6;
1130 #endif
1131         } header;       /* For incoming frames          */
1132         __u32           seq;            /* Starting sequence number     */
1133         __u32           end_seq;        /* SEQ + FIN + SYN + datalen    */
1134         __u32           when;           /* used to compute rtt's        */
1135         __u8            flags;          /* TCP header flags.            */
1136
1137         /* NOTE: These must match up to the flags byte in a
1138          *       real TCP header.
1139          */
1140 #define TCPCB_FLAG_FIN          0x01
1141 #define TCPCB_FLAG_SYN          0x02
1142 #define TCPCB_FLAG_RST          0x04
1143 #define TCPCB_FLAG_PSH          0x08
1144 #define TCPCB_FLAG_ACK          0x10
1145 #define TCPCB_FLAG_URG          0x20
1146 #define TCPCB_FLAG_ECE          0x40
1147 #define TCPCB_FLAG_CWR          0x80
1148
1149         __u8            sacked;         /* State flags for SACK/FACK.   */
1150 #define TCPCB_SACKED_ACKED      0x01    /* SKB ACK'd by a SACK block    */
1151 #define TCPCB_SACKED_RETRANS    0x02    /* SKB retransmitted            */
1152 #define TCPCB_LOST              0x04    /* SKB is lost                  */
1153 #define TCPCB_TAGBITS           0x07    /* All tag bits                 */
1154
1155 #define TCPCB_EVER_RETRANS      0x80    /* Ever retransmitted frame     */
1156 #define TCPCB_RETRANS           (TCPCB_SACKED_RETRANS|TCPCB_EVER_RETRANS)
1157
1158 #define TCPCB_URG               0x20    /* Urgent pointer advenced here */
1159
1160 #define TCPCB_AT_TAIL           (TCPCB_URG)
1161
1162         __u16           urg_ptr;        /* Valid w/URG flags is set.    */
1163         __u32           ack_seq;        /* Sequence number ACK'd        */
1164 };
1165
1166 #define TCP_SKB_CB(__skb)       ((struct tcp_skb_cb *)&((__skb)->cb[0]))
1167
1168 #include <net/tcp_ecn.h>
1169
1170 /* Due to TSO, an SKB can be composed of multiple actual
1171  * packets.  To keep these tracked properly, we use this.
1172  */
1173 static inline int tcp_skb_pcount(struct sk_buff *skb)
1174 {
1175         return skb_shinfo(skb)->tso_segs;
1176 }
1177
1178 /* This is valid iff tcp_skb_pcount() > 1. */
1179 static inline int tcp_skb_mss(struct sk_buff *skb)
1180 {
1181         return skb_shinfo(skb)->tso_size;
1182 }
1183
1184 static inline void tcp_inc_pcount(tcp_pcount_t *count, struct sk_buff *skb)
1185 {
1186         count->val += tcp_skb_pcount(skb);
1187 }
1188
1189 static inline void tcp_inc_pcount_explicit(tcp_pcount_t *count, int amt)
1190 {
1191         count->val += amt;
1192 }
1193
1194 static inline void tcp_dec_pcount_explicit(tcp_pcount_t *count, int amt)
1195 {
1196         count->val -= amt;
1197 }
1198
1199 static inline void tcp_dec_pcount(tcp_pcount_t *count, struct sk_buff *skb)
1200 {
1201         count->val -= tcp_skb_pcount(skb);
1202 }
1203
1204 static inline void tcp_dec_pcount_approx(tcp_pcount_t *count,
1205                                          struct sk_buff *skb)
1206 {
1207         if (count->val) {
1208                 count->val -= tcp_skb_pcount(skb);
1209                 if ((int)count->val < 0)
1210                         count->val = 0;
1211         }
1212 }
1213
1214 static inline __u32 tcp_get_pcount(tcp_pcount_t *count)
1215 {
1216         return count->val;
1217 }
1218
1219 static inline void tcp_set_pcount(tcp_pcount_t *count, __u32 val)
1220 {
1221         count->val = val;
1222 }
1223
1224 static inline void tcp_packets_out_inc(struct sock *sk, struct tcp_opt *tp,
1225                                        struct sk_buff *skb)
1226 {
1227         int orig = tcp_get_pcount(&tp->packets_out);
1228
1229         tcp_inc_pcount(&tp->packets_out, skb);
1230         if (!orig)
1231                 tcp_reset_xmit_timer(sk, TCP_TIME_RETRANS, tp->rto);
1232 }
1233
1234 static inline void tcp_packets_out_dec(struct tcp_opt *tp, struct sk_buff *skb)
1235 {
1236         tcp_dec_pcount(&tp->packets_out, skb);
1237 }
1238
1239 /* This determines how many packets are "in the network" to the best
1240  * of our knowledge.  In many cases it is conservative, but where
1241  * detailed information is available from the receiver (via SACK
1242  * blocks etc.) we can make more aggressive calculations.
1243  *
1244  * Use this for decisions involving congestion control, use just
1245  * tp->packets_out to determine if the send queue is empty or not.
1246  *
1247  * Read this equation as:
1248  *
1249  *      "Packets sent once on transmission queue" MINUS
1250  *      "Packets left network, but not honestly ACKed yet" PLUS
1251  *      "Packets fast retransmitted"
1252  */
1253 static __inline__ unsigned int tcp_packets_in_flight(struct tcp_opt *tp)
1254 {
1255         return (tcp_get_pcount(&tp->packets_out) -
1256                 tcp_get_pcount(&tp->left_out) +
1257                 tcp_get_pcount(&tp->retrans_out));
1258 }
1259
1260 /*
1261  * Which congestion algorithim is in use on the connection.
1262  */
1263 #define tcp_is_vegas(__tp)      ((__tp)->adv_cong == TCP_VEGAS)
1264 #define tcp_is_westwood(__tp)   ((__tp)->adv_cong == TCP_WESTWOOD)
1265 #define tcp_is_bic(__tp)        ((__tp)->adv_cong == TCP_BIC)
1266
1267 /* Recalculate snd_ssthresh, we want to set it to:
1268  *
1269  * Reno:
1270  *      one half the current congestion window, but no
1271  *      less than two segments
1272  *
1273  * BIC:
1274  *      behave like Reno until low_window is reached,
1275  *      then increase congestion window slowly
1276  */
1277 static inline __u32 tcp_recalc_ssthresh(struct tcp_opt *tp)
1278 {
1279         if (tcp_is_bic(tp)) {
1280                 if (sysctl_tcp_bic_fast_convergence &&
1281                     tp->snd_cwnd < tp->bictcp.last_max_cwnd)
1282                         tp->bictcp.last_max_cwnd
1283                                 = (tp->snd_cwnd * (2*BICTCP_1_OVER_BETA-1))
1284                                 / (BICTCP_1_OVER_BETA/2);
1285                 else
1286                         tp->bictcp.last_max_cwnd = tp->snd_cwnd;
1287
1288                 if (tp->snd_cwnd > sysctl_tcp_bic_low_window)
1289                         return max(tp->snd_cwnd - (tp->snd_cwnd/BICTCP_1_OVER_BETA),
1290                                    2U);
1291         }
1292
1293         return max(tp->snd_cwnd >> 1U, 2U);
1294 }
1295
1296 /* Stop taking Vegas samples for now. */
1297 #define tcp_vegas_disable(__tp) ((__tp)->vegas.doing_vegas_now = 0)
1298     
1299 static inline void tcp_vegas_enable(struct tcp_opt *tp)
1300 {
1301         /* There are several situations when we must "re-start" Vegas:
1302          *
1303          *  o when a connection is established
1304          *  o after an RTO
1305          *  o after fast recovery
1306          *  o when we send a packet and there is no outstanding
1307          *    unacknowledged data (restarting an idle connection)
1308          *
1309          * In these circumstances we cannot do a Vegas calculation at the
1310          * end of the first RTT, because any calculation we do is using
1311          * stale info -- both the saved cwnd and congestion feedback are
1312          * stale.
1313          *
1314          * Instead we must wait until the completion of an RTT during
1315          * which we actually receive ACKs.
1316          */
1317     
1318         /* Begin taking Vegas samples next time we send something. */
1319         tp->vegas.doing_vegas_now = 1;
1320      
1321         /* Set the beginning of the next send window. */
1322         tp->vegas.beg_snd_nxt = tp->snd_nxt;
1323
1324         tp->vegas.cntRTT = 0;
1325         tp->vegas.minRTT = 0x7fffffff;
1326 }
1327
1328 /* Should we be taking Vegas samples right now? */
1329 #define tcp_vegas_enabled(__tp) ((__tp)->vegas.doing_vegas_now)
1330
1331 extern void tcp_ca_init(struct tcp_opt *tp);
1332
1333 static inline void tcp_set_ca_state(struct tcp_opt *tp, u8 ca_state)
1334 {
1335         if (tcp_is_vegas(tp)) {
1336                 if (ca_state == TCP_CA_Open) 
1337                         tcp_vegas_enable(tp);
1338                 else
1339                         tcp_vegas_disable(tp);
1340         }
1341         tp->ca_state = ca_state;
1342 }
1343
1344 /* If cwnd > ssthresh, we may raise ssthresh to be half-way to cwnd.
1345  * The exception is rate halving phase, when cwnd is decreasing towards
1346  * ssthresh.
1347  */
1348 static inline __u32 tcp_current_ssthresh(struct tcp_opt *tp)
1349 {
1350         if ((1<<tp->ca_state)&(TCPF_CA_CWR|TCPF_CA_Recovery))
1351                 return tp->snd_ssthresh;
1352         else
1353                 return max(tp->snd_ssthresh,
1354                            ((tp->snd_cwnd >> 1) +
1355                             (tp->snd_cwnd >> 2)));
1356 }
1357
1358 static inline void tcp_sync_left_out(struct tcp_opt *tp)
1359 {
1360         if (tp->sack_ok &&
1361             (tcp_get_pcount(&tp->sacked_out) >=
1362              tcp_get_pcount(&tp->packets_out) - tcp_get_pcount(&tp->lost_out)))
1363                 tcp_set_pcount(&tp->sacked_out,
1364                                (tcp_get_pcount(&tp->packets_out) -
1365                                 tcp_get_pcount(&tp->lost_out)));
1366         tcp_set_pcount(&tp->left_out,
1367                        (tcp_get_pcount(&tp->sacked_out) +
1368                         tcp_get_pcount(&tp->lost_out)));
1369 }
1370
1371 extern void tcp_cwnd_application_limited(struct sock *sk);
1372
1373 /* Congestion window validation. (RFC2861) */
1374
1375 static inline void tcp_cwnd_validate(struct sock *sk, struct tcp_opt *tp)
1376 {
1377         __u32 packets_out = tcp_get_pcount(&tp->packets_out);
1378
1379         if (packets_out >= tp->snd_cwnd) {
1380                 /* Network is feed fully. */
1381                 tp->snd_cwnd_used = 0;
1382                 tp->snd_cwnd_stamp = tcp_time_stamp;
1383         } else {
1384                 /* Network starves. */
1385                 if (tcp_get_pcount(&tp->packets_out) > tp->snd_cwnd_used)
1386                         tp->snd_cwnd_used = tcp_get_pcount(&tp->packets_out);
1387
1388                 if ((s32)(tcp_time_stamp - tp->snd_cwnd_stamp) >= tp->rto)
1389                         tcp_cwnd_application_limited(sk);
1390         }
1391 }
1392
1393 /* Set slow start threshould and cwnd not falling to slow start */
1394 static inline void __tcp_enter_cwr(struct tcp_opt *tp)
1395 {
1396         tp->undo_marker = 0;
1397         tp->snd_ssthresh = tcp_recalc_ssthresh(tp);
1398         tp->snd_cwnd = min(tp->snd_cwnd,
1399                            tcp_packets_in_flight(tp) + 1U);
1400         tp->snd_cwnd_cnt = 0;
1401         tp->high_seq = tp->snd_nxt;
1402         tp->snd_cwnd_stamp = tcp_time_stamp;
1403         TCP_ECN_queue_cwr(tp);
1404 }
1405
1406 static inline void tcp_enter_cwr(struct tcp_opt *tp)
1407 {
1408         tp->prior_ssthresh = 0;
1409         if (tp->ca_state < TCP_CA_CWR) {
1410                 __tcp_enter_cwr(tp);
1411                 tcp_set_ca_state(tp, TCP_CA_CWR);
1412         }
1413 }
1414
1415 extern __u32 tcp_init_cwnd(struct tcp_opt *tp, struct dst_entry *dst);
1416
1417 /* Slow start with delack produces 3 packets of burst, so that
1418  * it is safe "de facto".
1419  */
1420 static __inline__ __u32 tcp_max_burst(struct tcp_opt *tp)
1421 {
1422         return 3;
1423 }
1424
1425 static __inline__ int tcp_minshall_check(struct tcp_opt *tp)
1426 {
1427         return after(tp->snd_sml,tp->snd_una) &&
1428                 !after(tp->snd_sml, tp->snd_nxt);
1429 }
1430
1431 static __inline__ void tcp_minshall_update(struct tcp_opt *tp, int mss, struct sk_buff *skb)
1432 {
1433         if (skb->len < mss)
1434                 tp->snd_sml = TCP_SKB_CB(skb)->end_seq;
1435 }
1436
1437 /* Return 0, if packet can be sent now without violation Nagle's rules:
1438    1. It is full sized.
1439    2. Or it contains FIN.
1440    3. Or higher layers meant to force a packet boundary, hence the PSH bit.
1441    4. Or TCP_NODELAY was set.
1442    5. Or TCP_CORK is not set, and all sent packets are ACKed.
1443       With Minshall's modification: all sent small packets are ACKed.
1444  */
1445
1446 static __inline__ int
1447 tcp_nagle_check(struct tcp_opt *tp, struct sk_buff *skb, unsigned mss_now, int nonagle)
1448 {
1449         return (skb->len < mss_now &&
1450                 !(TCP_SKB_CB(skb)->flags & TCPCB_FLAG_FIN) &&
1451                 ((nonagle&TCP_NAGLE_CORK) ||
1452                  (!nonagle &&
1453                   tcp_get_pcount(&tp->packets_out) &&
1454                   tcp_minshall_check(tp))));
1455 }
1456
1457 extern void tcp_set_skb_tso_segs(struct sk_buff *, unsigned int);
1458
1459 /* This checks if the data bearing packet SKB (usually sk->sk_send_head)
1460  * should be put on the wire right now.
1461  */
1462 static __inline__ int tcp_snd_test(struct tcp_opt *tp, struct sk_buff *skb,
1463                                    unsigned cur_mss, int nonagle)
1464 {
1465         int pkts = tcp_skb_pcount(skb);
1466
1467         if (!pkts) {
1468                 tcp_set_skb_tso_segs(skb, tp->mss_cache_std);
1469                 pkts = tcp_skb_pcount(skb);
1470         }
1471
1472         /*      RFC 1122 - section 4.2.3.4
1473          *
1474          *      We must queue if
1475          *
1476          *      a) The right edge of this frame exceeds the window
1477          *      b) There are packets in flight and we have a small segment
1478          *         [SWS avoidance and Nagle algorithm]
1479          *         (part of SWS is done on packetization)
1480          *         Minshall version sounds: there are no _small_
1481          *         segments in flight. (tcp_nagle_check)
1482          *      c) We have too many packets 'in flight'
1483          *
1484          *      Don't use the nagle rule for urgent data (or
1485          *      for the final FIN -DaveM).
1486          *
1487          *      Also, Nagle rule does not apply to frames, which
1488          *      sit in the middle of queue (they have no chances
1489          *      to get new data) and if room at tail of skb is
1490          *      not enough to save something seriously (<32 for now).
1491          */
1492
1493         /* Don't be strict about the congestion window for the
1494          * final FIN frame.  -DaveM
1495          */
1496         return (((nonagle&TCP_NAGLE_PUSH) || tp->urg_mode
1497                  || !tcp_nagle_check(tp, skb, cur_mss, nonagle)) &&
1498                 (((tcp_packets_in_flight(tp) + (pkts-1)) < tp->snd_cwnd) ||
1499                  (TCP_SKB_CB(skb)->flags & TCPCB_FLAG_FIN)) &&
1500                 !after(TCP_SKB_CB(skb)->end_seq, tp->snd_una + tp->snd_wnd));
1501 }
1502
1503 static __inline__ void tcp_check_probe_timer(struct sock *sk, struct tcp_opt *tp)
1504 {
1505         if (!tcp_get_pcount(&tp->packets_out) && !tp->pending)
1506                 tcp_reset_xmit_timer(sk, TCP_TIME_PROBE0, tp->rto);
1507 }
1508
1509 static __inline__ int tcp_skb_is_last(struct sock *sk, struct sk_buff *skb)
1510 {
1511         return skb->next == (struct sk_buff *)&sk->sk_write_queue;
1512 }
1513
1514 /* Push out any pending frames which were held back due to
1515  * TCP_CORK or attempt at coalescing tiny packets.
1516  * The socket must be locked by the caller.
1517  */
1518 static __inline__ void __tcp_push_pending_frames(struct sock *sk,
1519                                                  struct tcp_opt *tp,
1520                                                  unsigned cur_mss,
1521                                                  int nonagle)
1522 {
1523         struct sk_buff *skb = sk->sk_send_head;
1524
1525         if (skb) {
1526                 if (!tcp_skb_is_last(sk, skb))
1527                         nonagle = TCP_NAGLE_PUSH;
1528                 if (!tcp_snd_test(tp, skb, cur_mss, nonagle) ||
1529                     tcp_write_xmit(sk, nonagle))
1530                         tcp_check_probe_timer(sk, tp);
1531         }
1532         tcp_cwnd_validate(sk, tp);
1533 }
1534
1535 static __inline__ void tcp_push_pending_frames(struct sock *sk,
1536                                                struct tcp_opt *tp)
1537 {
1538         __tcp_push_pending_frames(sk, tp, tcp_current_mss(sk, 1), tp->nonagle);
1539 }
1540
1541 static __inline__ int tcp_may_send_now(struct sock *sk, struct tcp_opt *tp)
1542 {
1543         struct sk_buff *skb = sk->sk_send_head;
1544
1545         return (skb &&
1546                 tcp_snd_test(tp, skb, tcp_current_mss(sk, 1),
1547                              tcp_skb_is_last(sk, skb) ? TCP_NAGLE_PUSH : tp->nonagle));
1548 }
1549
1550 static __inline__ void tcp_init_wl(struct tcp_opt *tp, u32 ack, u32 seq)
1551 {
1552         tp->snd_wl1 = seq;
1553 }
1554
1555 static __inline__ void tcp_update_wl(struct tcp_opt *tp, u32 ack, u32 seq)
1556 {
1557         tp->snd_wl1 = seq;
1558 }
1559
1560 extern void                     tcp_destroy_sock(struct sock *sk);
1561
1562
1563 /*
1564  * Calculate(/check) TCP checksum
1565  */
1566 static __inline__ u16 tcp_v4_check(struct tcphdr *th, int len,
1567                                    unsigned long saddr, unsigned long daddr, 
1568                                    unsigned long base)
1569 {
1570         return csum_tcpudp_magic(saddr,daddr,len,IPPROTO_TCP,base);
1571 }
1572
1573 static __inline__ int __tcp_checksum_complete(struct sk_buff *skb)
1574 {
1575         return (unsigned short)csum_fold(skb_checksum(skb, 0, skb->len, skb->csum));
1576 }
1577
1578 static __inline__ int tcp_checksum_complete(struct sk_buff *skb)
1579 {
1580         return skb->ip_summed != CHECKSUM_UNNECESSARY &&
1581                 __tcp_checksum_complete(skb);
1582 }
1583
1584 /* Prequeue for VJ style copy to user, combined with checksumming. */
1585
1586 static __inline__ void tcp_prequeue_init(struct tcp_opt *tp)
1587 {
1588         tp->ucopy.task = NULL;
1589         tp->ucopy.len = 0;
1590         tp->ucopy.memory = 0;
1591         skb_queue_head_init(&tp->ucopy.prequeue);
1592 }
1593
1594 /* Packet is added to VJ-style prequeue for processing in process
1595  * context, if a reader task is waiting. Apparently, this exciting
1596  * idea (VJ's mail "Re: query about TCP header on tcp-ip" of 07 Sep 93)
1597  * failed somewhere. Latency? Burstiness? Well, at least now we will
1598  * see, why it failed. 8)8)                               --ANK
1599  *
1600  * NOTE: is this not too big to inline?
1601  */
1602 static __inline__ int tcp_prequeue(struct sock *sk, struct sk_buff *skb)
1603 {
1604         struct tcp_opt *tp = tcp_sk(sk);
1605
1606         if (!sysctl_tcp_low_latency && tp->ucopy.task) {
1607                 __skb_queue_tail(&tp->ucopy.prequeue, skb);
1608                 tp->ucopy.memory += skb->truesize;
1609                 if (tp->ucopy.memory > sk->sk_rcvbuf) {
1610                         struct sk_buff *skb1;
1611
1612                         BUG_ON(sock_owned_by_user(sk));
1613
1614                         while ((skb1 = __skb_dequeue(&tp->ucopy.prequeue)) != NULL) {
1615                                 sk->sk_backlog_rcv(sk, skb1);
1616                                 NET_INC_STATS_BH(LINUX_MIB_TCPPREQUEUEDROPPED);
1617                         }
1618
1619                         tp->ucopy.memory = 0;
1620                 } else if (skb_queue_len(&tp->ucopy.prequeue) == 1) {
1621                         wake_up_interruptible(sk->sk_sleep);
1622                         if (!tcp_ack_scheduled(tp))
1623                                 tcp_reset_xmit_timer(sk, TCP_TIME_DACK, (3*TCP_RTO_MIN)/4);
1624                 }
1625                 return 1;
1626         }
1627         return 0;
1628 }
1629
1630
1631 #undef STATE_TRACE
1632
1633 #ifdef STATE_TRACE
1634 static char *statename[]={
1635         "Unused","Established","Syn Sent","Syn Recv",
1636         "Fin Wait 1","Fin Wait 2","Time Wait", "Close",
1637         "Close Wait","Last ACK","Listen","Closing"
1638 };
1639 #endif
1640
1641 static __inline__ void tcp_set_state(struct sock *sk, int state)
1642 {
1643         int oldstate = sk->sk_state;
1644
1645         switch (state) {
1646         case TCP_ESTABLISHED:
1647                 if (oldstate != TCP_ESTABLISHED)
1648                         TCP_INC_STATS(TCP_MIB_CURRESTAB);
1649                 break;
1650
1651         case TCP_CLOSE:
1652                 if (oldstate == TCP_CLOSE_WAIT || oldstate == TCP_ESTABLISHED)
1653                         TCP_INC_STATS(TCP_MIB_ESTABRESETS);
1654
1655                 sk->sk_prot->unhash(sk);
1656                 if (tcp_sk(sk)->bind_hash &&
1657                     !(sk->sk_userlocks & SOCK_BINDPORT_LOCK))
1658                         tcp_put_port(sk);
1659                 /* fall through */
1660         default:
1661                 if (oldstate==TCP_ESTABLISHED)
1662                         TCP_DEC_STATS(TCP_MIB_CURRESTAB);
1663         }
1664
1665         /* Change state AFTER socket is unhashed to avoid closed
1666          * socket sitting in hash tables.
1667          */
1668         sk->sk_state = state;
1669
1670 #ifdef STATE_TRACE
1671         SOCK_DEBUG(sk, "TCP sk=%p, State %s -> %s\n",sk, statename[oldstate],statename[state]);
1672 #endif  
1673 }
1674
1675 static __inline__ void tcp_done(struct sock *sk)
1676 {
1677         tcp_set_state(sk, TCP_CLOSE);
1678         tcp_clear_xmit_timers(sk);
1679
1680         sk->sk_shutdown = SHUTDOWN_MASK;
1681
1682         if (!sock_flag(sk, SOCK_DEAD))
1683                 sk->sk_state_change(sk);
1684         else
1685                 tcp_destroy_sock(sk);
1686 }
1687
1688 static __inline__ void tcp_sack_reset(struct tcp_opt *tp)
1689 {
1690         tp->dsack = 0;
1691         tp->eff_sacks = 0;
1692         tp->num_sacks = 0;
1693 }
1694
1695 static __inline__ void tcp_build_and_update_options(__u32 *ptr, struct tcp_opt *tp, __u32 tstamp)
1696 {
1697         if (tp->tstamp_ok) {
1698                 *ptr++ = __constant_htonl((TCPOPT_NOP << 24) |
1699                                           (TCPOPT_NOP << 16) |
1700                                           (TCPOPT_TIMESTAMP << 8) |
1701                                           TCPOLEN_TIMESTAMP);
1702                 *ptr++ = htonl(tstamp);
1703                 *ptr++ = htonl(tp->ts_recent);
1704         }
1705         if (tp->eff_sacks) {
1706                 struct tcp_sack_block *sp = tp->dsack ? tp->duplicate_sack : tp->selective_acks;
1707                 int this_sack;
1708
1709                 *ptr++ = __constant_htonl((TCPOPT_NOP << 24) |
1710                                           (TCPOPT_NOP << 16) |
1711                                           (TCPOPT_SACK << 8) |
1712                                           (TCPOLEN_SACK_BASE +
1713                                            (tp->eff_sacks * TCPOLEN_SACK_PERBLOCK)));
1714                 for(this_sack = 0; this_sack < tp->eff_sacks; this_sack++) {
1715                         *ptr++ = htonl(sp[this_sack].start_seq);
1716                         *ptr++ = htonl(sp[this_sack].end_seq);
1717                 }
1718                 if (tp->dsack) {
1719                         tp->dsack = 0;
1720                         tp->eff_sacks--;
1721                 }
1722         }
1723 }
1724
1725 /* Construct a tcp options header for a SYN or SYN_ACK packet.
1726  * If this is every changed make sure to change the definition of
1727  * MAX_SYN_SIZE to match the new maximum number of options that you
1728  * can generate.
1729  */
1730 static inline void tcp_syn_build_options(__u32 *ptr, int mss, int ts, int sack,
1731                                              int offer_wscale, int wscale, __u32 tstamp, __u32 ts_recent)
1732 {
1733         /* We always get an MSS option.
1734          * The option bytes which will be seen in normal data
1735          * packets should timestamps be used, must be in the MSS
1736          * advertised.  But we subtract them from tp->mss_cache so
1737          * that calculations in tcp_sendmsg are simpler etc.
1738          * So account for this fact here if necessary.  If we
1739          * don't do this correctly, as a receiver we won't
1740          * recognize data packets as being full sized when we
1741          * should, and thus we won't abide by the delayed ACK
1742          * rules correctly.
1743          * SACKs don't matter, we never delay an ACK when we
1744          * have any of those going out.
1745          */
1746         *ptr++ = htonl((TCPOPT_MSS << 24) | (TCPOLEN_MSS << 16) | mss);
1747         if (ts) {
1748                 if(sack)
1749                         *ptr++ = __constant_htonl((TCPOPT_SACK_PERM << 24) | (TCPOLEN_SACK_PERM << 16) |
1750                                                   (TCPOPT_TIMESTAMP << 8) | TCPOLEN_TIMESTAMP);
1751                 else
1752                         *ptr++ = __constant_htonl((TCPOPT_NOP << 24) | (TCPOPT_NOP << 16) |
1753                                                   (TCPOPT_TIMESTAMP << 8) | TCPOLEN_TIMESTAMP);
1754                 *ptr++ = htonl(tstamp);         /* TSVAL */
1755                 *ptr++ = htonl(ts_recent);      /* TSECR */
1756         } else if(sack)
1757                 *ptr++ = __constant_htonl((TCPOPT_NOP << 24) | (TCPOPT_NOP << 16) |
1758                                           (TCPOPT_SACK_PERM << 8) | TCPOLEN_SACK_PERM);
1759         if (offer_wscale)
1760                 *ptr++ = htonl((TCPOPT_NOP << 24) | (TCPOPT_WINDOW << 16) | (TCPOLEN_WINDOW << 8) | (wscale));
1761 }
1762
1763 /* Determine a window scaling and initial window to offer. */
1764 extern void tcp_select_initial_window(int __space, __u32 mss,
1765                                       __u32 *rcv_wnd, __u32 *window_clamp,
1766                                       int wscale_ok, __u8 *rcv_wscale);
1767
1768 static inline int tcp_win_from_space(int space)
1769 {
1770         return sysctl_tcp_adv_win_scale<=0 ?
1771                 (space>>(-sysctl_tcp_adv_win_scale)) :
1772                 space - (space>>sysctl_tcp_adv_win_scale);
1773 }
1774
1775 /* Note: caller must be prepared to deal with negative returns */ 
1776 static inline int tcp_space(const struct sock *sk)
1777 {
1778         return tcp_win_from_space(sk->sk_rcvbuf -
1779                                   atomic_read(&sk->sk_rmem_alloc));
1780
1781
1782 static inline int tcp_full_space(const struct sock *sk)
1783 {
1784         return tcp_win_from_space(sk->sk_rcvbuf); 
1785 }
1786
1787 struct tcp_listen_opt
1788 {
1789         u8                      max_qlen_log;   /* log_2 of maximal queued SYNs */
1790         int                     qlen;
1791 #ifdef CONFIG_ACCEPT_QUEUES
1792         int                     qlen_young[NUM_ACCEPT_QUEUES];
1793 #else
1794         int                     qlen_young;
1795 #endif
1796         int                     clock_hand;
1797         u32                     hash_rnd;
1798         struct open_request     *syn_table[TCP_SYNQ_HSIZE];
1799 };
1800
1801 #ifdef CONFIG_ACCEPT_QUEUES
1802 static inline void sk_acceptq_removed(struct sock *sk, int class)
1803 {
1804         tcp_sk(sk)->acceptq[class].aq_backlog--;
1805 }
1806
1807 static inline void sk_acceptq_added(struct sock *sk, int class)
1808 {
1809         tcp_sk(sk)->acceptq[class].aq_backlog++;
1810 }
1811
1812 static inline int sk_acceptq_is_full(struct sock *sk, int class)
1813 {
1814         return tcp_sk(sk)->acceptq[class].aq_backlog >
1815                 sk->sk_max_ack_backlog;
1816 }
1817
1818 static inline void tcp_set_acceptq(struct tcp_opt *tp, struct open_request *req)
1819 {
1820         int class = req->acceptq_class;
1821         int prev_class;
1822
1823         if (!tp->acceptq[class].aq_ratio) {
1824                 req->acceptq_class = 0;
1825                 class = 0;
1826         }
1827
1828         tp->acceptq[class].aq_qcount++;
1829         req->acceptq_time_stamp = jiffies;
1830
1831         if (tp->acceptq[class].aq_tail) {
1832                 req->dl_next = tp->acceptq[class].aq_tail->dl_next;
1833                 tp->acceptq[class].aq_tail->dl_next = req;
1834                 tp->acceptq[class].aq_tail = req;
1835         } else { /* if first request in the class */
1836                 tp->acceptq[class].aq_head = req;
1837                 tp->acceptq[class].aq_tail = req;
1838
1839                 prev_class = class - 1;
1840                 while (prev_class >= 0) {
1841                         if (tp->acceptq[prev_class].aq_tail)
1842                                 break;
1843                         prev_class--;
1844                 }
1845                 if (prev_class < 0) {
1846                         req->dl_next = tp->accept_queue;
1847                         tp->accept_queue = req;
1848                 }
1849                 else {
1850                         req->dl_next = tp->acceptq[prev_class].aq_tail->dl_next;
1851                         tp->acceptq[prev_class].aq_tail->dl_next = req;
1852                 }
1853         }
1854 }
1855 static inline void tcp_acceptq_queue(struct sock *sk, struct open_request *req,
1856                                          struct sock *child)
1857 {
1858         tcp_set_acceptq(tcp_sk(sk),req);
1859         req->sk = child;
1860         sk_acceptq_added(sk,req->acceptq_class);
1861 }
1862
1863 #else
1864 static inline void tcp_acceptq_queue(struct sock *sk, struct open_request *req,
1865                                          struct sock *child)
1866 {
1867         struct tcp_opt *tp = tcp_sk(sk);
1868
1869         req->sk = child;
1870         sk_acceptq_added(sk);
1871
1872         if (!tp->accept_queue_tail) {
1873                 tp->accept_queue = req;
1874         } else {
1875                 tp->accept_queue_tail->dl_next = req;
1876         }
1877         tp->accept_queue_tail = req;
1878         req->dl_next = NULL;
1879 }
1880
1881 #endif
1882
1883
1884 #ifdef CONFIG_ACCEPT_QUEUES
1885 static inline void
1886 tcp_synq_removed(struct sock *sk, struct open_request *req)
1887 {
1888         struct tcp_listen_opt *lopt = tcp_sk(sk)->listen_opt;
1889
1890         if (--lopt->qlen == 0)
1891                 tcp_delete_keepalive_timer(sk);
1892         if (req->retrans == 0)
1893                 lopt->qlen_young[req->acceptq_class]--;
1894 }
1895
1896 static inline void tcp_synq_added(struct sock *sk, struct open_request *req)
1897 {
1898         struct tcp_listen_opt *lopt = tcp_sk(sk)->listen_opt;
1899
1900         if (lopt->qlen++ == 0)
1901                 tcp_reset_keepalive_timer(sk, TCP_TIMEOUT_INIT);
1902         lopt->qlen_young[req->acceptq_class]++;
1903 }
1904
1905 static inline int tcp_synq_len(struct sock *sk)
1906 {
1907         return tcp_sk(sk)->listen_opt->qlen;
1908 }
1909
1910 static inline int tcp_synq_young(struct sock *sk, int class)
1911 {
1912         return tcp_sk(sk)->listen_opt->qlen_young[class];
1913 }
1914
1915 #else
1916
1917 static inline void
1918 tcp_synq_removed(struct sock *sk, struct open_request *req)
1919 {
1920         struct tcp_listen_opt *lopt = tcp_sk(sk)->listen_opt;
1921
1922         if (--lopt->qlen == 0)
1923                 tcp_delete_keepalive_timer(sk);
1924         if (req->retrans == 0)
1925                 lopt->qlen_young--;
1926 }
1927
1928 static inline void tcp_synq_added(struct sock *sk)
1929 {
1930         struct tcp_listen_opt *lopt = tcp_sk(sk)->listen_opt;
1931
1932         if (lopt->qlen++ == 0)
1933                 tcp_reset_keepalive_timer(sk, TCP_TIMEOUT_INIT);
1934         lopt->qlen_young++;
1935 }
1936
1937 static inline int tcp_synq_len(struct sock *sk)
1938 {
1939         return tcp_sk(sk)->listen_opt->qlen;
1940 }
1941
1942 static inline int tcp_synq_young(struct sock *sk)
1943 {
1944         return tcp_sk(sk)->listen_opt->qlen_young;
1945 }
1946 #endif
1947
1948 static inline int tcp_synq_is_full(struct sock *sk)
1949 {
1950         return tcp_synq_len(sk) >> tcp_sk(sk)->listen_opt->max_qlen_log;
1951 }
1952
1953 static inline void tcp_synq_unlink(struct tcp_opt *tp, struct open_request *req,
1954                                        struct open_request **prev)
1955 {
1956         write_lock(&tp->syn_wait_lock);
1957         *prev = req->dl_next;
1958         write_unlock(&tp->syn_wait_lock);
1959 }
1960
1961 static inline void tcp_synq_drop(struct sock *sk, struct open_request *req,
1962                                      struct open_request **prev)
1963 {
1964         tcp_synq_unlink(tcp_sk(sk), req, prev);
1965         tcp_synq_removed(sk, req);
1966         tcp_openreq_free(req);
1967 }
1968
1969 static __inline__ void tcp_openreq_init(struct open_request *req,
1970                                         struct tcp_opt *tp,
1971                                         struct sk_buff *skb)
1972 {
1973         req->rcv_wnd = 0;               /* So that tcp_send_synack() knows! */
1974         req->rcv_isn = TCP_SKB_CB(skb)->seq;
1975         req->mss = tp->mss_clamp;
1976         req->ts_recent = tp->saw_tstamp ? tp->rcv_tsval : 0;
1977         req->tstamp_ok = tp->tstamp_ok;
1978         req->sack_ok = tp->sack_ok;
1979         req->snd_wscale = tp->snd_wscale;
1980         req->wscale_ok = tp->wscale_ok;
1981         req->acked = 0;
1982         req->ecn_ok = 0;
1983         req->rmt_port = skb->h.th->source;
1984 }
1985
1986 extern void tcp_enter_memory_pressure(void);
1987
1988 extern void tcp_listen_wlock(void);
1989
1990 /* - We may sleep inside this lock.
1991  * - If sleeping is not required (or called from BH),
1992  *   use plain read_(un)lock(&tcp_lhash_lock).
1993  */
1994
1995 static inline void tcp_listen_lock(void)
1996 {
1997         /* read_lock synchronizes to candidates to writers */
1998         read_lock(&tcp_lhash_lock);
1999         atomic_inc(&tcp_lhash_users);
2000         read_unlock(&tcp_lhash_lock);
2001 }
2002
2003 static inline void tcp_listen_unlock(void)
2004 {
2005         if (atomic_dec_and_test(&tcp_lhash_users))
2006                 wake_up(&tcp_lhash_wait);
2007 }
2008
2009 static inline int keepalive_intvl_when(struct tcp_opt *tp)
2010 {
2011         return tp->keepalive_intvl ? : sysctl_tcp_keepalive_intvl;
2012 }
2013
2014 static inline int keepalive_time_when(struct tcp_opt *tp)
2015 {
2016         return tp->keepalive_time ? : sysctl_tcp_keepalive_time;
2017 }
2018
2019 static inline int tcp_fin_time(struct tcp_opt *tp)
2020 {
2021         int fin_timeout = tp->linger2 ? : sysctl_tcp_fin_timeout;
2022
2023         if (fin_timeout < (tp->rto<<2) - (tp->rto>>1))
2024                 fin_timeout = (tp->rto<<2) - (tp->rto>>1);
2025
2026         return fin_timeout;
2027 }
2028
2029 static inline int tcp_paws_check(struct tcp_opt *tp, int rst)
2030 {
2031         if ((s32)(tp->rcv_tsval - tp->ts_recent) >= 0)
2032                 return 0;
2033         if (xtime.tv_sec >= tp->ts_recent_stamp + TCP_PAWS_24DAYS)
2034                 return 0;
2035
2036         /* RST segments are not recommended to carry timestamp,
2037            and, if they do, it is recommended to ignore PAWS because
2038            "their cleanup function should take precedence over timestamps."
2039            Certainly, it is mistake. It is necessary to understand the reasons
2040            of this constraint to relax it: if peer reboots, clock may go
2041            out-of-sync and half-open connections will not be reset.
2042            Actually, the problem would be not existing if all
2043            the implementations followed draft about maintaining clock
2044            via reboots. Linux-2.2 DOES NOT!
2045
2046            However, we can relax time bounds for RST segments to MSL.
2047          */
2048         if (rst && xtime.tv_sec >= tp->ts_recent_stamp + TCP_PAWS_MSL)
2049                 return 0;
2050         return 1;
2051 }
2052
2053 static inline void tcp_v4_setup_caps(struct sock *sk, struct dst_entry *dst)
2054 {
2055         sk->sk_route_caps = dst->dev->features;
2056         if (sk->sk_route_caps & NETIF_F_TSO) {
2057                 if (sk->sk_no_largesend || dst->header_len)
2058                         sk->sk_route_caps &= ~NETIF_F_TSO;
2059         }
2060 }
2061
2062 #define TCP_CHECK_TIMER(sk) do { } while (0)
2063
2064 static inline int tcp_use_frto(const struct sock *sk)
2065 {
2066         const struct tcp_opt *tp = tcp_sk(sk);
2067         
2068         /* F-RTO must be activated in sysctl and there must be some
2069          * unsent new data, and the advertised window should allow
2070          * sending it.
2071          */
2072         return (sysctl_tcp_frto && sk->sk_send_head &&
2073                 !after(TCP_SKB_CB(sk->sk_send_head)->end_seq,
2074                        tp->snd_una + tp->snd_wnd));
2075 }
2076
2077 static inline void tcp_mib_init(void)
2078 {
2079         /* See RFC 2012 */
2080         TCP_ADD_STATS_USER(TCP_MIB_RTOALGORITHM, 1);
2081         TCP_ADD_STATS_USER(TCP_MIB_RTOMIN, TCP_RTO_MIN*1000/HZ);
2082         TCP_ADD_STATS_USER(TCP_MIB_RTOMAX, TCP_RTO_MAX*1000/HZ);
2083         TCP_ADD_STATS_USER(TCP_MIB_MAXCONN, -1);
2084 }
2085
2086 /* /proc */
2087 enum tcp_seq_states {
2088         TCP_SEQ_STATE_LISTENING,
2089         TCP_SEQ_STATE_OPENREQ,
2090         TCP_SEQ_STATE_ESTABLISHED,
2091         TCP_SEQ_STATE_TIME_WAIT,
2092 };
2093
2094 struct tcp_seq_afinfo {
2095         struct module           *owner;
2096         char                    *name;
2097         sa_family_t             family;
2098         int                     (*seq_show) (struct seq_file *m, void *v);
2099         struct file_operations  *seq_fops;
2100 };
2101
2102 struct tcp_iter_state {
2103         sa_family_t             family;
2104         enum tcp_seq_states     state;
2105         struct sock             *syn_wait_sk;
2106         int                     bucket, sbucket, num, uid;
2107         struct seq_operations   seq_ops;
2108 };
2109
2110 extern int tcp_proc_register(struct tcp_seq_afinfo *afinfo);
2111 extern void tcp_proc_unregister(struct tcp_seq_afinfo *afinfo);
2112
2113 /* TCP Westwood functions and constants */
2114
2115 #define TCP_WESTWOOD_INIT_RTT  (20*HZ)           /* maybe too conservative?! */
2116 #define TCP_WESTWOOD_RTT_MIN   (HZ/20)           /* 50ms */
2117
2118 static inline void tcp_westwood_update_rtt(struct tcp_opt *tp, __u32 rtt_seq)
2119 {
2120         if (tcp_is_westwood(tp))
2121                 tp->westwood.rtt = rtt_seq;
2122 }
2123
2124 void __tcp_westwood_fast_bw(struct sock *, struct sk_buff *);
2125 void __tcp_westwood_slow_bw(struct sock *, struct sk_buff *);
2126
2127 static inline void tcp_westwood_fast_bw(struct sock *sk, struct sk_buff *skb)
2128 {
2129         if (tcp_is_westwood(tcp_sk(sk)))
2130                 __tcp_westwood_fast_bw(sk, skb);
2131 }
2132
2133 static inline void tcp_westwood_slow_bw(struct sock *sk, struct sk_buff *skb)
2134 {
2135         if (tcp_is_westwood(tcp_sk(sk)))
2136                 __tcp_westwood_slow_bw(sk, skb);
2137 }
2138
2139 static inline __u32 __tcp_westwood_bw_rttmin(const struct tcp_opt *tp)
2140 {
2141         return max((tp->westwood.bw_est) * (tp->westwood.rtt_min) /
2142                    (__u32) (tp->mss_cache_std),
2143                    2U);
2144 }
2145
2146 static inline __u32 tcp_westwood_bw_rttmin(const struct tcp_opt *tp)
2147 {
2148         return tcp_is_westwood(tp) ? __tcp_westwood_bw_rttmin(tp) : 0;
2149 }
2150
2151 static inline int tcp_westwood_ssthresh(struct tcp_opt *tp)
2152 {
2153         __u32 ssthresh = 0;
2154
2155         if (tcp_is_westwood(tp)) {
2156                 ssthresh = __tcp_westwood_bw_rttmin(tp);
2157                 if (ssthresh)
2158                         tp->snd_ssthresh = ssthresh;  
2159         }
2160
2161         return (ssthresh != 0);
2162 }
2163
2164 static inline int tcp_westwood_cwnd(struct tcp_opt *tp)
2165 {
2166         __u32 cwnd = 0;
2167
2168         if (tcp_is_westwood(tp)) {
2169                 cwnd = __tcp_westwood_bw_rttmin(tp);
2170                 if (cwnd)
2171                         tp->snd_cwnd = cwnd;
2172         }
2173
2174         return (cwnd != 0);
2175 }
2176 #endif  /* _TCP_H */