tcp.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:52k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  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. #define TCP_DEBUG 1
  21. #define FASTRETRANS_DEBUG 1
  22. /* Cancel timers, when they are not required. */
  23. #undef TCP_CLEAR_TIMERS
  24. #include <linux/config.h>
  25. #include <linux/tcp.h>
  26. #include <linux/slab.h>
  27. #include <net/checksum.h>
  28. #include <net/sock.h>
  29. /* This is for all connections with a full identity, no wildcards.
  30.  * New scheme, half the table is for TIME_WAIT, the other half is
  31.  * for the rest.  I'll experiment with dynamic table growth later.
  32.  */
  33. struct tcp_ehash_bucket {
  34. rwlock_t lock;
  35. struct sock *chain;
  36. } __attribute__((__aligned__(8)));
  37. /* This is for listening sockets, thus all sockets which possess wildcards. */
  38. #define TCP_LHTABLE_SIZE 32 /* Yes, really, this is all you need. */
  39. /* There are a few simple rules, which allow for local port reuse by
  40.  * an application.  In essence:
  41.  *
  42.  * 1) Sockets bound to different interfaces may share a local port.
  43.  *    Failing that, goto test 2.
  44.  * 2) If all sockets have sk->reuse set, and none of them are in
  45.  *    TCP_LISTEN state, the port may be shared.
  46.  *    Failing that, goto test 3.
  47.  * 3) If all sockets are bound to a specific sk->rcv_saddr local
  48.  *    address, and none of them are the same, the port may be
  49.  *    shared.
  50.  *    Failing this, the port cannot be shared.
  51.  *
  52.  * The interesting point, is test #2.  This is what an FTP server does
  53.  * all day.  To optimize this case we use a specific flag bit defined
  54.  * below.  As we add sockets to a bind bucket list, we perform a
  55.  * check of: (newsk->reuse && (newsk->state != TCP_LISTEN))
  56.  * As long as all sockets added to a bind bucket pass this test,
  57.  * the flag bit will be set.
  58.  * The resulting situation is that tcp_v[46]_verify_bind() can just check
  59.  * for this flag bit, if it is set and the socket trying to bind has
  60.  * sk->reuse set, we don't even have to walk the owners list at all,
  61.  * we return that it is ok to bind this socket to the requested local port.
  62.  *
  63.  * Sounds like a lot of work, but it is worth it.  In a more naive
  64.  * implementation (ie. current FreeBSD etc.) the entire list of ports
  65.  * must be walked for each data port opened by an ftp server.  Needless
  66.  * to say, this does not scale at all.  With a couple thousand FTP
  67.  * users logged onto your box, isn't it nice to know that new data
  68.  * ports are created in O(1) time?  I thought so. ;-) -DaveM
  69.  */
  70. struct tcp_bind_bucket {
  71. unsigned short port;
  72. unsigned short fastreuse;
  73. struct tcp_bind_bucket *next;
  74. struct sock *owners;
  75. struct tcp_bind_bucket **pprev;
  76. };
  77. struct tcp_bind_hashbucket {
  78. spinlock_t lock;
  79. struct tcp_bind_bucket *chain;
  80. };
  81. extern struct tcp_hashinfo {
  82. /* This is for sockets with full identity only.  Sockets here will
  83.  * always be without wildcards and will have the following invariant:
  84.  *
  85.  *          TCP_ESTABLISHED <= sk->state < TCP_CLOSE
  86.  *
  87.  * First half of the table is for sockets not in TIME_WAIT, second half
  88.  * is for TIME_WAIT sockets only.
  89.  */
  90. struct tcp_ehash_bucket *__tcp_ehash;
  91. /* Ok, let's try this, I give up, we do need a local binding
  92.  * TCP hash as well as the others for fast bind/connect.
  93.  */
  94. struct tcp_bind_hashbucket *__tcp_bhash;
  95. int __tcp_bhash_size;
  96. int __tcp_ehash_size;
  97. /* All sockets in TCP_LISTEN state will be in here.  This is the only
  98.  * table where wildcard'd TCP sockets can exist.  Hash function here
  99.  * is just local port number.
  100.  */
  101. struct sock *__tcp_listening_hash[TCP_LHTABLE_SIZE];
  102. /* All the above members are written once at bootup and
  103.  * never written again _or_ are predominantly read-access.
  104.  *
  105.  * Now align to a new cache line as all the following members
  106.  * are often dirty.
  107.  */
  108. rwlock_t __tcp_lhash_lock
  109. __attribute__((__aligned__(SMP_CACHE_BYTES)));
  110. atomic_t __tcp_lhash_users;
  111. wait_queue_head_t __tcp_lhash_wait;
  112. spinlock_t __tcp_portalloc_lock;
  113. } tcp_hashinfo;
  114. #define tcp_ehash (tcp_hashinfo.__tcp_ehash)
  115. #define tcp_bhash (tcp_hashinfo.__tcp_bhash)
  116. #define tcp_ehash_size (tcp_hashinfo.__tcp_ehash_size)
  117. #define tcp_bhash_size (tcp_hashinfo.__tcp_bhash_size)
  118. #define tcp_listening_hash (tcp_hashinfo.__tcp_listening_hash)
  119. #define tcp_lhash_lock (tcp_hashinfo.__tcp_lhash_lock)
  120. #define tcp_lhash_users (tcp_hashinfo.__tcp_lhash_users)
  121. #define tcp_lhash_wait (tcp_hashinfo.__tcp_lhash_wait)
  122. #define tcp_portalloc_lock (tcp_hashinfo.__tcp_portalloc_lock)
  123. extern kmem_cache_t *tcp_bucket_cachep;
  124. extern struct tcp_bind_bucket *tcp_bucket_create(struct tcp_bind_hashbucket *head,
  125.  unsigned short snum);
  126. extern void tcp_bucket_unlock(struct sock *sk);
  127. extern int tcp_port_rover;
  128. extern struct sock *tcp_v4_lookup_listener(u32 addr, unsigned short hnum, int dif);
  129. /* These are AF independent. */
  130. static __inline__ int tcp_bhashfn(__u16 lport)
  131. {
  132. return (lport & (tcp_bhash_size - 1));
  133. }
  134. /* This is a TIME_WAIT bucket.  It works around the memory consumption
  135.  * problems of sockets in such a state on heavily loaded servers, but
  136.  * without violating the protocol specification.
  137.  */
  138. struct tcp_tw_bucket {
  139. /* These _must_ match the beginning of struct sock precisely.
  140.  * XXX Yes I know this is gross, but I'd have to edit every single
  141.  * XXX networking file if I created a "struct sock_header". -DaveM
  142.  */
  143. __u32 daddr;
  144. __u32 rcv_saddr;
  145. __u16 dport;
  146. unsigned short num;
  147. int bound_dev_if;
  148. struct sock *next;
  149. struct sock **pprev;
  150. struct sock *bind_next;
  151. struct sock **bind_pprev;
  152. unsigned char state,
  153. substate; /* "zapped" is replaced with "substate" */
  154. __u16 sport;
  155. unsigned short family;
  156. unsigned char reuse,
  157. rcv_wscale; /* It is also TW bucket specific */
  158. atomic_t refcnt;
  159. /* And these are ours. */
  160. int hashent;
  161. int timeout;
  162. __u32 rcv_nxt;
  163. __u32 snd_nxt;
  164. __u32 rcv_wnd;
  165.         __u32 ts_recent;
  166.         long ts_recent_stamp;
  167. unsigned long ttd;
  168. struct tcp_bind_bucket *tb;
  169. struct tcp_tw_bucket *next_death;
  170. struct tcp_tw_bucket **pprev_death;
  171. #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
  172. struct in6_addr v6_daddr;
  173. struct in6_addr v6_rcv_saddr;
  174. #endif
  175. };
  176. extern kmem_cache_t *tcp_timewait_cachep;
  177. static inline void tcp_tw_put(struct tcp_tw_bucket *tw)
  178. {
  179. if (atomic_dec_and_test(&tw->refcnt)) {
  180. #ifdef INET_REFCNT_DEBUG
  181. printk(KERN_DEBUG "tw_bucket %p releasedn", tw);
  182. #endif
  183. kmem_cache_free(tcp_timewait_cachep, tw);
  184. }
  185. }
  186. extern atomic_t tcp_orphan_count;
  187. extern int tcp_tw_count;
  188. extern void tcp_time_wait(struct sock *sk, int state, int timeo);
  189. extern void tcp_timewait_kill(struct tcp_tw_bucket *tw);
  190. extern void tcp_tw_schedule(struct tcp_tw_bucket *tw, int timeo);
  191. extern void tcp_tw_deschedule(struct tcp_tw_bucket *tw);
  192. /* Socket demux engine toys. */
  193. #ifdef __BIG_ENDIAN
  194. #define TCP_COMBINED_PORTS(__sport, __dport) 
  195. (((__u32)(__sport)<<16) | (__u32)(__dport))
  196. #else /* __LITTLE_ENDIAN */
  197. #define TCP_COMBINED_PORTS(__sport, __dport) 
  198. (((__u32)(__dport)<<16) | (__u32)(__sport))
  199. #endif
  200. #if (BITS_PER_LONG == 64)
  201. #ifdef __BIG_ENDIAN
  202. #define TCP_V4_ADDR_COOKIE(__name, __saddr, __daddr) 
  203. __u64 __name = (((__u64)(__saddr))<<32)|((__u64)(__daddr));
  204. #else /* __LITTLE_ENDIAN */
  205. #define TCP_V4_ADDR_COOKIE(__name, __saddr, __daddr) 
  206. __u64 __name = (((__u64)(__daddr))<<32)|((__u64)(__saddr));
  207. #endif /* __BIG_ENDIAN */
  208. #define TCP_IPV4_MATCH(__sk, __cookie, __saddr, __daddr, __ports, __dif)
  209. (((*((__u64 *)&((__sk)->daddr)))== (__cookie)) &&
  210.  ((*((__u32 *)&((__sk)->dport)))== (__ports))   &&
  211.  (!((__sk)->bound_dev_if) || ((__sk)->bound_dev_if == (__dif))))
  212. #else /* 32-bit arch */
  213. #define TCP_V4_ADDR_COOKIE(__name, __saddr, __daddr)
  214. #define TCP_IPV4_MATCH(__sk, __cookie, __saddr, __daddr, __ports, __dif)
  215. (((__sk)->daddr == (__saddr)) &&
  216.  ((__sk)->rcv_saddr == (__daddr)) &&
  217.  ((*((__u32 *)&((__sk)->dport)))== (__ports))   &&
  218.  (!((__sk)->bound_dev_if) || ((__sk)->bound_dev_if == (__dif))))
  219. #endif /* 64-bit arch */
  220. #define TCP_IPV6_MATCH(__sk, __saddr, __daddr, __ports, __dif)    
  221. (((*((__u32 *)&((__sk)->dport)))== (__ports))    && 
  222.  ((__sk)->family == AF_INET6) && 
  223.  !ipv6_addr_cmp(&(__sk)->net_pinfo.af_inet6.daddr, (__saddr)) && 
  224.  !ipv6_addr_cmp(&(__sk)->net_pinfo.af_inet6.rcv_saddr, (__daddr)) && 
  225.  (!((__sk)->bound_dev_if) || ((__sk)->bound_dev_if == (__dif))))
  226. /* These can have wildcards, don't try too hard. */
  227. static __inline__ int tcp_lhashfn(unsigned short num)
  228. {
  229. return num & (TCP_LHTABLE_SIZE - 1);
  230. }
  231. static __inline__ int tcp_sk_listen_hashfn(struct sock *sk)
  232. {
  233. return tcp_lhashfn(sk->num);
  234. }
  235. #define MAX_TCP_HEADER (128 + MAX_HEADER)
  236. /* 
  237.  * Never offer a window over 32767 without using window scaling. Some
  238.  * poor stacks do signed 16bit maths! 
  239.  */
  240. #define MAX_TCP_WINDOW 32767U
  241. /* Minimal accepted MSS. It is (60+60+8) - (20+20). */
  242. #define TCP_MIN_MSS 88U
  243. /* Minimal RCV_MSS. */
  244. #define TCP_MIN_RCVMSS 536U
  245. /* After receiving this amount of duplicate ACKs fast retransmit starts. */
  246. #define TCP_FASTRETRANS_THRESH 3
  247. /* Maximal reordering. */
  248. #define TCP_MAX_REORDERING 127
  249. /* Maximal number of ACKs sent quickly to accelerate slow-start. */
  250. #define TCP_MAX_QUICKACKS 16U
  251. /* urg_data states */
  252. #define TCP_URG_VALID 0x0100
  253. #define TCP_URG_NOTYET 0x0200
  254. #define TCP_URG_READ 0x0400
  255. #define TCP_RETR1 3 /*
  256.  * This is how many retries it does before it
  257.  * tries to figure out if the gateway is
  258.  * down. Minimal RFC value is 3; it corresponds
  259.  * to ~3sec-8min depending on RTO.
  260.  */
  261. #define TCP_RETR2 15 /*
  262.  * This should take at least
  263.  * 90 minutes to time out.
  264.  * RFC1122 says that the limit is 100 sec.
  265.  * 15 is ~13-30min depending on RTO.
  266.  */
  267. #define TCP_SYN_RETRIES  5 /* number of times to retry active opening a
  268.  * connection: ~180sec is RFC minumum */
  269. #define TCP_SYNACK_RETRIES 5 /* number of times to retry passive opening a
  270.  * connection: ~180sec is RFC minumum */
  271. #define TCP_ORPHAN_RETRIES 7 /* number of times to retry on an orphaned
  272.  * socket. 7 is ~50sec-16min.
  273.  */
  274. #define TCP_TIMEWAIT_LEN (60*HZ) /* how long to wait to destroy TIME-WAIT
  275.   * state, about 60 seconds */
  276. #define TCP_FIN_TIMEOUT TCP_TIMEWAIT_LEN
  277.                                  /* BSD style FIN_WAIT2 deadlock breaker.
  278.   * It used to be 3min, new value is 60sec,
  279.   * to combine FIN-WAIT-2 timeout with
  280.   * TIME-WAIT timer.
  281.   */
  282. #define TCP_DELACK_MAX ((unsigned)(HZ/5)) /* maximal time to delay before sending an ACK */
  283. #if HZ >= 100
  284. #define TCP_DELACK_MIN ((unsigned)(HZ/25)) /* minimal time to delay before sending an ACK */
  285. #define TCP_ATO_MIN ((unsigned)(HZ/25))
  286. #else
  287. #define TCP_DELACK_MIN 4U
  288. #define TCP_ATO_MIN 4U
  289. #endif
  290. #define TCP_RTO_MAX ((unsigned)(120*HZ))
  291. #define TCP_RTO_MIN ((unsigned)(HZ/5))
  292. #define TCP_TIMEOUT_INIT ((unsigned)(3*HZ)) /* RFC 1122 initial RTO value */
  293. #define TCP_RESOURCE_PROBE_INTERVAL ((unsigned)(HZ/2U)) /* Maximal interval between probes
  294.                  * for local resources.
  295.                  */
  296. #define TCP_KEEPALIVE_TIME (120*60*HZ) /* two hours */
  297. #define TCP_KEEPALIVE_PROBES 9 /* Max of 9 keepalive probes */
  298. #define TCP_KEEPALIVE_INTVL (75*HZ)
  299. #define MAX_TCP_KEEPIDLE 32767
  300. #define MAX_TCP_KEEPINTVL 32767
  301. #define MAX_TCP_KEEPCNT 127
  302. #define MAX_TCP_SYNCNT 127
  303. /* TIME_WAIT reaping mechanism. */
  304. #define TCP_TWKILL_SLOTS 8 /* Please keep this a power of 2. */
  305. #define TCP_TWKILL_PERIOD (TCP_TIMEWAIT_LEN/TCP_TWKILL_SLOTS)
  306. #define TCP_SYNQ_INTERVAL (HZ/5) /* Period of SYNACK timer */
  307. #define TCP_SYNQ_HSIZE 512 /* Size of SYNACK hash table */
  308. #define TCP_PAWS_24DAYS (60 * 60 * 24 * 24)
  309. #define TCP_PAWS_MSL 60 /* Per-host timestamps are invalidated
  310.  * after this time. It should be equal
  311.  * (or greater than) TCP_TIMEWAIT_LEN
  312.  * to provide reliability equal to one
  313.  * provided by timewait state.
  314.  */
  315. #define TCP_PAWS_WINDOW 1 /* Replay window for per-host
  316.  * timestamps. It must be less than
  317.  * minimal timewait lifetime.
  318.  */
  319. #define TCP_TW_RECYCLE_SLOTS_LOG 5
  320. #define TCP_TW_RECYCLE_SLOTS (1<<TCP_TW_RECYCLE_SLOTS_LOG)
  321. /* If time > 4sec, it is "slow" path, no recycling is required,
  322.    so that we select tick to get range about 4 seconds.
  323.  */
  324. #if HZ <= 16 || HZ > 4096
  325. # error Unsupported: HZ <= 16 or HZ > 4096
  326. #elif HZ <= 32
  327. # define TCP_TW_RECYCLE_TICK (5+2-TCP_TW_RECYCLE_SLOTS_LOG)
  328. #elif HZ <= 64
  329. # define TCP_TW_RECYCLE_TICK (6+2-TCP_TW_RECYCLE_SLOTS_LOG)
  330. #elif HZ <= 128
  331. # define TCP_TW_RECYCLE_TICK (7+2-TCP_TW_RECYCLE_SLOTS_LOG)
  332. #elif HZ <= 256
  333. # define TCP_TW_RECYCLE_TICK (8+2-TCP_TW_RECYCLE_SLOTS_LOG)
  334. #elif HZ <= 512
  335. # define TCP_TW_RECYCLE_TICK (9+2-TCP_TW_RECYCLE_SLOTS_LOG)
  336. #elif HZ <= 1024
  337. # define TCP_TW_RECYCLE_TICK (10+2-TCP_TW_RECYCLE_SLOTS_LOG)
  338. #elif HZ <= 2048
  339. # define TCP_TW_RECYCLE_TICK (11+2-TCP_TW_RECYCLE_SLOTS_LOG)
  340. #else
  341. # define TCP_TW_RECYCLE_TICK (12+2-TCP_TW_RECYCLE_SLOTS_LOG)
  342. #endif
  343. /*
  344.  * TCP option
  345.  */
  346.  
  347. #define TCPOPT_NOP 1 /* Padding */
  348. #define TCPOPT_EOL 0 /* End of options */
  349. #define TCPOPT_MSS 2 /* Segment size negotiating */
  350. #define TCPOPT_WINDOW 3 /* Window scaling */
  351. #define TCPOPT_SACK_PERM        4       /* SACK Permitted */
  352. #define TCPOPT_SACK             5       /* SACK Block */
  353. #define TCPOPT_TIMESTAMP 8 /* Better RTT estimations/PAWS */
  354. /*
  355.  *     TCP option lengths
  356.  */
  357. #define TCPOLEN_MSS            4
  358. #define TCPOLEN_WINDOW         3
  359. #define TCPOLEN_SACK_PERM      2
  360. #define TCPOLEN_TIMESTAMP      10
  361. /* But this is what stacks really send out. */
  362. #define TCPOLEN_TSTAMP_ALIGNED 12
  363. #define TCPOLEN_WSCALE_ALIGNED 4
  364. #define TCPOLEN_SACKPERM_ALIGNED 4
  365. #define TCPOLEN_SACK_BASE 2
  366. #define TCPOLEN_SACK_BASE_ALIGNED 4
  367. #define TCPOLEN_SACK_PERBLOCK 8
  368. #define TCP_TIME_RETRANS 1 /* Retransmit timer */
  369. #define TCP_TIME_DACK 2 /* Delayed ack timer */
  370. #define TCP_TIME_PROBE0 3 /* Zero window probe timer */
  371. #define TCP_TIME_KEEPOPEN 4 /* Keepalive timer */
  372. /* sysctl variables for tcp */
  373. extern int sysctl_max_syn_backlog;
  374. extern int sysctl_tcp_timestamps;
  375. extern int sysctl_tcp_window_scaling;
  376. extern int sysctl_tcp_sack;
  377. extern int sysctl_tcp_fin_timeout;
  378. extern int sysctl_tcp_tw_recycle;
  379. extern int sysctl_tcp_keepalive_time;
  380. extern int sysctl_tcp_keepalive_probes;
  381. extern int sysctl_tcp_keepalive_intvl;
  382. extern int sysctl_tcp_syn_retries;
  383. extern int sysctl_tcp_synack_retries;
  384. extern int sysctl_tcp_retries1;
  385. extern int sysctl_tcp_retries2;
  386. extern int sysctl_tcp_orphan_retries;
  387. extern int sysctl_tcp_syncookies;
  388. extern int sysctl_tcp_retrans_collapse;
  389. extern int sysctl_tcp_stdurg;
  390. extern int sysctl_tcp_rfc1337;
  391. extern int sysctl_tcp_tw_recycle;
  392. extern int sysctl_tcp_abort_on_overflow;
  393. extern int sysctl_tcp_max_orphans;
  394. extern int sysctl_tcp_max_tw_buckets;
  395. extern int sysctl_tcp_fack;
  396. extern int sysctl_tcp_reordering;
  397. extern int sysctl_tcp_ecn;
  398. extern int sysctl_tcp_dsack;
  399. extern int sysctl_tcp_mem[3];
  400. extern int sysctl_tcp_wmem[3];
  401. extern int sysctl_tcp_rmem[3];
  402. extern int sysctl_tcp_app_win;
  403. extern int sysctl_tcp_adv_win_scale;
  404. extern atomic_t tcp_memory_allocated;
  405. extern atomic_t tcp_sockets_allocated;
  406. extern int tcp_memory_pressure;
  407. struct open_request;
  408. struct or_calltable {
  409. int  family;
  410. int  (*rtx_syn_ack) (struct sock *sk, struct open_request *req, struct dst_entry*);
  411. void (*send_ack) (struct sk_buff *skb, struct open_request *req);
  412. void (*destructor) (struct open_request *req);
  413. void (*send_reset) (struct sk_buff *skb);
  414. };
  415. struct tcp_v4_open_req {
  416. __u32 loc_addr;
  417. __u32 rmt_addr;
  418. struct ip_options *opt;
  419. };
  420. #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
  421. struct tcp_v6_open_req {
  422. struct in6_addr loc_addr;
  423. struct in6_addr rmt_addr;
  424. struct sk_buff *pktopts;
  425. int iif;
  426. };
  427. #endif
  428. /* this structure is too big */
  429. struct open_request {
  430. struct open_request *dl_next; /* Must be first member! */
  431. __u32 rcv_isn;
  432. __u32 snt_isn;
  433. __u16 rmt_port;
  434. __u16 mss;
  435. __u8 retrans;
  436. __u8 index;
  437. __u16 snd_wscale : 4, 
  438. rcv_wscale : 4, 
  439. tstamp_ok : 1,
  440. sack_ok : 1,
  441. wscale_ok : 1,
  442. ecn_ok : 1,
  443. acked : 1;
  444. /* The following two fields can be easily recomputed I think -AK */
  445. __u32 window_clamp; /* window clamp at creation time */
  446. __u32 rcv_wnd; /* rcv_wnd offered first time */
  447. __u32 ts_recent;
  448. unsigned long expires;
  449. struct or_calltable *class;
  450. struct sock *sk;
  451. union {
  452. struct tcp_v4_open_req v4_req;
  453. #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
  454. struct tcp_v6_open_req v6_req;
  455. #endif
  456. } af;
  457. };
  458. /* SLAB cache for open requests. */
  459. extern kmem_cache_t *tcp_openreq_cachep;
  460. #define tcp_openreq_alloc() kmem_cache_alloc(tcp_openreq_cachep, SLAB_ATOMIC)
  461. #define tcp_openreq_fastfree(req) kmem_cache_free(tcp_openreq_cachep, req)
  462. static inline void tcp_openreq_free(struct open_request *req)
  463. {
  464. req->class->destructor(req);
  465. tcp_openreq_fastfree(req);
  466. }
  467. #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
  468. #define TCP_INET_FAMILY(fam) ((fam) == AF_INET)
  469. #else
  470. #define TCP_INET_FAMILY(fam) 1
  471. #endif
  472. /*
  473.  * Pointers to address related TCP functions
  474.  * (i.e. things that depend on the address family)
  475.  *
  476.  *  BUGGG_FUTURE: all the idea behind this struct is wrong.
  477.  * It mixes socket frontend with transport function.
  478.  * With port sharing between IPv6/v4 it gives the only advantage,
  479.  * only poor IPv6 needs to permanently recheck, that it
  480.  * is still IPv6 8)8) It must be cleaned up as soon as possible.
  481.  * --ANK (980802)
  482.  */
  483. struct tcp_func {
  484. int (*queue_xmit) (struct sk_buff *skb);
  485. void (*send_check) (struct sock *sk,
  486.  struct tcphdr *th,
  487.  int len,
  488.  struct sk_buff *skb);
  489. int (*rebuild_header) (struct sock *sk);
  490. int (*conn_request) (struct sock *sk,
  491.  struct sk_buff *skb);
  492. struct sock * (*syn_recv_sock) (struct sock *sk,
  493.  struct sk_buff *skb,
  494.  struct open_request *req,
  495.  struct dst_entry *dst);
  496. int (*hash_connecting) (struct sock *sk);
  497. int (*remember_stamp) (struct sock *sk);
  498. __u16 net_header_len;
  499. int (*setsockopt) (struct sock *sk, 
  500.  int level, 
  501.  int optname, 
  502.  char *optval, 
  503.  int optlen);
  504. int (*getsockopt) (struct sock *sk, 
  505.  int level, 
  506.  int optname, 
  507.  char *optval, 
  508.  int *optlen);
  509. void (*addr2sockaddr) (struct sock *sk,
  510.  struct sockaddr *);
  511. int sockaddr_len;
  512. };
  513. /*
  514.  * The next routines deal with comparing 32 bit unsigned ints
  515.  * and worry about wraparound (automatic with unsigned arithmetic).
  516.  */
  517. extern __inline int before(__u32 seq1, __u32 seq2)
  518. {
  519.         return (__s32)(seq1-seq2) < 0;
  520. }
  521. extern __inline int after(__u32 seq1, __u32 seq2)
  522. {
  523. return (__s32)(seq2-seq1) < 0;
  524. }
  525. /* is s2<=s1<=s3 ? */
  526. extern __inline int between(__u32 seq1, __u32 seq2, __u32 seq3)
  527. {
  528. return seq3 - seq2 >= seq1 - seq2;
  529. }
  530. extern struct proto tcp_prot;
  531. extern struct tcp_mib tcp_statistics[NR_CPUS*2];
  532. #define TCP_INC_STATS(field) SNMP_INC_STATS(tcp_statistics, field)
  533. #define TCP_INC_STATS_BH(field) SNMP_INC_STATS_BH(tcp_statistics, field)
  534. #define TCP_INC_STATS_USER(field)  SNMP_INC_STATS_USER(tcp_statistics, field)
  535. extern void tcp_put_port(struct sock *sk);
  536. extern void __tcp_put_port(struct sock *sk);
  537. extern void tcp_inherit_port(struct sock *sk, struct sock *child);
  538. extern void tcp_v4_err(struct sk_buff *skb, u32);
  539. extern void tcp_shutdown (struct sock *sk, int how);
  540. extern int tcp_v4_rcv(struct sk_buff *skb);
  541. extern int tcp_v4_remember_stamp(struct sock *sk);
  542. extern int      tcp_v4_tw_remember_stamp(struct tcp_tw_bucket *tw);
  543. extern int tcp_sendmsg(struct sock *sk, struct msghdr *msg, int size);
  544. extern ssize_t tcp_sendpage(struct socket *sock, struct page *page, int offset, size_t size, int flags);
  545. extern int tcp_ioctl(struct sock *sk, 
  546.   int cmd, 
  547.   unsigned long arg);
  548. extern int tcp_rcv_state_process(struct sock *sk, 
  549.       struct sk_buff *skb,
  550.       struct tcphdr *th,
  551.       unsigned len);
  552. extern int tcp_rcv_established(struct sock *sk, 
  553.     struct sk_buff *skb,
  554.     struct tcphdr *th, 
  555.     unsigned len);
  556. enum tcp_ack_state_t
  557. {
  558. TCP_ACK_SCHED = 1,
  559. TCP_ACK_TIMER = 2,
  560. TCP_ACK_PUSHED= 4
  561. };
  562. static inline void tcp_schedule_ack(struct tcp_opt *tp)
  563. {
  564. tp->ack.pending |= TCP_ACK_SCHED;
  565. }
  566. static inline int tcp_ack_scheduled(struct tcp_opt *tp)
  567. {
  568. return tp->ack.pending&TCP_ACK_SCHED;
  569. }
  570. static __inline__ void tcp_dec_quickack_mode(struct tcp_opt *tp)
  571. {
  572. if (tp->ack.quick && --tp->ack.quick == 0) {
  573. /* Leaving quickack mode we deflate ATO. */
  574. tp->ack.ato = TCP_ATO_MIN;
  575. }
  576. }
  577. extern void tcp_enter_quickack_mode(struct tcp_opt *tp);
  578. static __inline__ void tcp_delack_init(struct tcp_opt *tp)
  579. {
  580. memset(&tp->ack, 0, sizeof(tp->ack));
  581. }
  582. static inline void tcp_clear_options(struct tcp_opt *tp)
  583. {
  584.   tp->tstamp_ok = tp->sack_ok = tp->wscale_ok = tp->snd_wscale = 0;
  585. }
  586. enum tcp_tw_status
  587. {
  588. TCP_TW_SUCCESS = 0,
  589. TCP_TW_RST = 1,
  590. TCP_TW_ACK = 2,
  591. TCP_TW_SYN = 3
  592. };
  593. extern enum tcp_tw_status tcp_timewait_state_process(struct tcp_tw_bucket *tw,
  594.    struct sk_buff *skb,
  595.    struct tcphdr *th,
  596.    unsigned len);
  597. extern struct sock * tcp_check_req(struct sock *sk,struct sk_buff *skb,
  598.       struct open_request *req,
  599.       struct open_request **prev);
  600. extern int tcp_child_process(struct sock *parent,
  601.   struct sock *child,
  602.   struct sk_buff *skb);
  603. extern void tcp_enter_loss(struct sock *sk, int how);
  604. extern void tcp_clear_retrans(struct tcp_opt *tp);
  605. extern void tcp_update_metrics(struct sock *sk);
  606. extern void tcp_close(struct sock *sk, 
  607.   long timeout);
  608. extern struct sock * tcp_accept(struct sock *sk, int flags, int *err);
  609. extern unsigned int tcp_poll(struct file * file, struct socket *sock, struct poll_table_struct *wait);
  610. extern void tcp_write_space(struct sock *sk); 
  611. extern int tcp_getsockopt(struct sock *sk, int level, 
  612.        int optname, char *optval, 
  613.        int *optlen);
  614. extern int tcp_setsockopt(struct sock *sk, int level, 
  615.        int optname, char *optval, 
  616.        int optlen);
  617. extern void tcp_set_keepalive(struct sock *sk, int val);
  618. extern int tcp_recvmsg(struct sock *sk, 
  619.     struct msghdr *msg,
  620.     int len, int nonblock, 
  621.     int flags, int *addr_len);
  622. extern int tcp_listen_start(struct sock *sk);
  623. extern void tcp_parse_options(struct sk_buff *skb,
  624.   struct tcp_opt *tp,
  625.   int estab);
  626. /*
  627.  * TCP v4 functions exported for the inet6 API
  628.  */
  629. extern int         tcp_v4_rebuild_header(struct sock *sk);
  630. extern int         tcp_v4_build_header(struct sock *sk, 
  631.     struct sk_buff *skb);
  632. extern void         tcp_v4_send_check(struct sock *sk, 
  633.   struct tcphdr *th, int len, 
  634.   struct sk_buff *skb);
  635. extern int tcp_v4_conn_request(struct sock *sk,
  636.     struct sk_buff *skb);
  637. extern struct sock * tcp_create_openreq_child(struct sock *sk,
  638.  struct open_request *req,
  639.  struct sk_buff *skb);
  640. extern struct sock * tcp_v4_syn_recv_sock(struct sock *sk,
  641.      struct sk_buff *skb,
  642.      struct open_request *req,
  643. struct dst_entry *dst);
  644. extern int tcp_v4_do_rcv(struct sock *sk,
  645.       struct sk_buff *skb);
  646. extern int tcp_v4_connect(struct sock *sk,
  647.        struct sockaddr *uaddr,
  648.        int addr_len);
  649. extern int tcp_connect(struct sock *sk,
  650.     struct sk_buff *skb);
  651. extern struct sk_buff * tcp_make_synack(struct sock *sk,
  652. struct dst_entry *dst,
  653. struct open_request *req);
  654. extern int tcp_disconnect(struct sock *sk, int flags);
  655. extern void tcp_unhash(struct sock *sk);
  656. extern int tcp_v4_hash_connecting(struct sock *sk);
  657. /* From syncookies.c */
  658. extern struct sock *cookie_v4_check(struct sock *sk, struct sk_buff *skb, 
  659.     struct ip_options *opt);
  660. extern __u32 cookie_v4_init_sequence(struct sock *sk, struct sk_buff *skb, 
  661.      __u16 *mss);
  662. /* tcp_output.c */
  663. extern int tcp_write_xmit(struct sock *, int nonagle);
  664. extern int tcp_retransmit_skb(struct sock *, struct sk_buff *);
  665. extern void tcp_xmit_retransmit_queue(struct sock *);
  666. extern void tcp_simple_retransmit(struct sock *);
  667. extern void tcp_send_probe0(struct sock *);
  668. extern void tcp_send_partial(struct sock *);
  669. extern int  tcp_write_wakeup(struct sock *);
  670. extern void tcp_send_fin(struct sock *sk);
  671. extern void tcp_send_active_reset(struct sock *sk, int priority);
  672. extern int  tcp_send_synack(struct sock *);
  673. extern int  tcp_transmit_skb(struct sock *, struct sk_buff *);
  674. extern void tcp_send_skb(struct sock *, struct sk_buff *, int force_queue, unsigned mss_now);
  675. extern void tcp_push_one(struct sock *, unsigned mss_now);
  676. extern void tcp_send_ack(struct sock *sk);
  677. extern void tcp_send_delayed_ack(struct sock *sk);
  678. /* tcp_timer.c */
  679. extern void tcp_init_xmit_timers(struct sock *);
  680. extern void tcp_clear_xmit_timers(struct sock *);
  681. extern void tcp_delete_keepalive_timer (struct sock *);
  682. extern void tcp_reset_keepalive_timer (struct sock *, unsigned long);
  683. extern int tcp_sync_mss(struct sock *sk, u32 pmtu);
  684. extern const char timer_bug_msg[];
  685. static inline void tcp_clear_xmit_timer(struct sock *sk, int what)
  686. {
  687. struct tcp_opt *tp = &sk->tp_pinfo.af_tcp;
  688. switch (what) {
  689. case TCP_TIME_RETRANS:
  690. case TCP_TIME_PROBE0:
  691. tp->pending = 0;
  692. #ifdef TCP_CLEAR_TIMERS
  693. if (timer_pending(&tp->retransmit_timer) &&
  694.     del_timer(&tp->retransmit_timer))
  695. __sock_put(sk);
  696. #endif
  697. break;
  698. case TCP_TIME_DACK:
  699. tp->ack.blocked = 0;
  700. tp->ack.pending = 0;
  701. #ifdef TCP_CLEAR_TIMERS
  702. if (timer_pending(&tp->delack_timer) &&
  703.     del_timer(&tp->delack_timer))
  704. __sock_put(sk);
  705. #endif
  706. break;
  707. default:
  708. printk(timer_bug_msg);
  709. return;
  710. };
  711. }
  712. /*
  713.  * Reset the retransmission timer
  714.  */
  715. static inline void tcp_reset_xmit_timer(struct sock *sk, int what, unsigned long when)
  716. {
  717. struct tcp_opt *tp = &sk->tp_pinfo.af_tcp;
  718. if (when > TCP_RTO_MAX) {
  719. #ifdef TCP_DEBUG
  720. printk(KERN_DEBUG "reset_xmit_timer sk=%p %d when=0x%lx, caller=%pn", sk, what, when, current_text_addr());
  721. #endif
  722. when = TCP_RTO_MAX;
  723. }
  724. switch (what) {
  725. case TCP_TIME_RETRANS:
  726. case TCP_TIME_PROBE0:
  727. tp->pending = what;
  728. tp->timeout = jiffies+when;
  729. if (!mod_timer(&tp->retransmit_timer, tp->timeout))
  730. sock_hold(sk);
  731. break;
  732. case TCP_TIME_DACK:
  733. tp->ack.pending |= TCP_ACK_TIMER;
  734. tp->ack.timeout = jiffies+when;
  735. if (!mod_timer(&tp->delack_timer, tp->ack.timeout))
  736. sock_hold(sk);
  737. break;
  738. default:
  739. printk(KERN_DEBUG "bug: unknown timer valuen");
  740. };
  741. }
  742. /* Compute the current effective MSS, taking SACKs and IP options,
  743.  * and even PMTU discovery events into account.
  744.  */
  745. static __inline__ unsigned int tcp_current_mss(struct sock *sk)
  746. {
  747. struct tcp_opt *tp = &sk->tp_pinfo.af_tcp;
  748. struct dst_entry *dst = __sk_dst_get(sk);
  749. int mss_now = tp->mss_cache; 
  750. if (dst && dst->pmtu != tp->pmtu_cookie)
  751. mss_now = tcp_sync_mss(sk, dst->pmtu);
  752. if (tp->eff_sacks)
  753. mss_now -= (TCPOLEN_SACK_BASE_ALIGNED +
  754.     (tp->eff_sacks * TCPOLEN_SACK_PERBLOCK));
  755. return mss_now;
  756. }
  757. /* Initialize RCV_MSS value.
  758.  * RCV_MSS is an our guess about MSS used by the peer.
  759.  * We haven't any direct information about the MSS.
  760.  * It's better to underestimate the RCV_MSS rather than overestimate.
  761.  * Overestimations make us ACKing less frequently than needed.
  762.  * Underestimations are more easy to detect and fix by tcp_measure_rcv_mss().
  763.  */
  764. static inline void tcp_initialize_rcv_mss(struct sock *sk)
  765. {
  766. struct tcp_opt *tp = &sk->tp_pinfo.af_tcp;
  767. unsigned int hint = min(tp->advmss, tp->mss_cache);
  768. hint = min(hint, tp->rcv_wnd/2);
  769. hint = min(hint, TCP_MIN_RCVMSS);
  770. hint = max(hint, TCP_MIN_MSS);
  771. tp->ack.rcv_mss = hint;
  772. }
  773. static __inline__ void __tcp_fast_path_on(struct tcp_opt *tp, u32 snd_wnd)
  774. {
  775. tp->pred_flags = htonl((tp->tcp_header_len << 26) |
  776.        ntohl(TCP_FLAG_ACK) |
  777.        snd_wnd);
  778. }
  779. static __inline__ void tcp_fast_path_on(struct tcp_opt *tp)
  780. {
  781. __tcp_fast_path_on(tp, tp->snd_wnd>>tp->snd_wscale);
  782. }
  783. static inline void tcp_fast_path_check(struct sock *sk, struct tcp_opt *tp)
  784. {
  785. if (skb_queue_len(&tp->out_of_order_queue) == 0 &&
  786.     tp->rcv_wnd &&
  787.     atomic_read(&sk->rmem_alloc) < sk->rcvbuf &&
  788.     !tp->urg_data)
  789. tcp_fast_path_on(tp);
  790. }
  791. /* Compute the actual receive window we are currently advertising.
  792.  * Rcv_nxt can be after the window if our peer push more data
  793.  * than the offered window.
  794.  */
  795. static __inline__ u32 tcp_receive_window(struct tcp_opt *tp)
  796. {
  797. s32 win = tp->rcv_wup + tp->rcv_wnd - tp->rcv_nxt;
  798. if (win < 0)
  799. win = 0;
  800. return (u32) win;
  801. }
  802. /* Choose a new window, without checks for shrinking, and without
  803.  * scaling applied to the result.  The caller does these things
  804.  * if necessary.  This is a "raw" window selection.
  805.  */
  806. extern u32 __tcp_select_window(struct sock *sk);
  807. /* TCP timestamps are only 32-bits, this causes a slight
  808.  * complication on 64-bit systems since we store a snapshot
  809.  * of jiffies in the buffer control blocks below.  We decidely
  810.  * only use of the low 32-bits of jiffies and hide the ugly
  811.  * casts with the following macro.
  812.  */
  813. #define tcp_time_stamp ((__u32)(jiffies))
  814. /* This is what the send packet queueing engine uses to pass
  815.  * TCP per-packet control information to the transmission
  816.  * code.  We also store the host-order sequence numbers in
  817.  * here too.  This is 36 bytes on 32-bit architectures,
  818.  * 40 bytes on 64-bit machines, if this grows please adjust
  819.  * skbuff.h:skbuff->cb[xxx] size appropriately.
  820.  */
  821. struct tcp_skb_cb {
  822. union {
  823. struct inet_skb_parm h4;
  824. #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
  825. struct inet6_skb_parm h6;
  826. #endif
  827. } header; /* For incoming frames */
  828. __u32 seq; /* Starting sequence number */
  829. __u32 end_seq; /* SEQ + FIN + SYN + datalen */
  830. __u32 when; /* used to compute rtt's */
  831. __u8 flags; /* TCP header flags. */
  832. /* NOTE: These must match up to the flags byte in a
  833.  *       real TCP header.
  834.  */
  835. #define TCPCB_FLAG_FIN 0x01
  836. #define TCPCB_FLAG_SYN 0x02
  837. #define TCPCB_FLAG_RST 0x04
  838. #define TCPCB_FLAG_PSH 0x08
  839. #define TCPCB_FLAG_ACK 0x10
  840. #define TCPCB_FLAG_URG 0x20
  841. #define TCPCB_FLAG_ECE 0x40
  842. #define TCPCB_FLAG_CWR 0x80
  843. __u8 sacked; /* State flags for SACK/FACK. */
  844. #define TCPCB_SACKED_ACKED 0x01 /* SKB ACK'd by a SACK block */
  845. #define TCPCB_SACKED_RETRANS 0x02 /* SKB retransmitted */
  846. #define TCPCB_LOST 0x04 /* SKB is lost */
  847. #define TCPCB_TAGBITS 0x07 /* All tag bits */
  848. #define TCPCB_EVER_RETRANS 0x80 /* Ever retransmitted frame */
  849. #define TCPCB_RETRANS (TCPCB_SACKED_RETRANS|TCPCB_EVER_RETRANS)
  850. #define TCPCB_URG 0x20 /* Urgent pointer advenced here */
  851. #define TCPCB_AT_TAIL (TCPCB_URG)
  852. __u16 urg_ptr; /* Valid w/URG flags is set. */
  853. __u32 ack_seq; /* Sequence number ACK'd */
  854. };
  855. #define TCP_SKB_CB(__skb) ((struct tcp_skb_cb *)&((__skb)->cb[0]))
  856. #define for_retrans_queue(skb, sk, tp) 
  857. for (skb = (sk)->write_queue.next;
  858.      (skb != (tp)->send_head) &&
  859.      (skb != (struct sk_buff *)&(sk)->write_queue);
  860.      skb=skb->next)
  861. #include <net/tcp_ecn.h>
  862. /*
  863.  * Compute minimal free write space needed to queue new packets. 
  864.  */
  865. static inline int tcp_min_write_space(struct sock *sk)
  866. {
  867. return sk->wmem_queued/2;
  868. }
  869.  
  870. static inline int tcp_wspace(struct sock *sk)
  871. {
  872. return sk->sndbuf - sk->wmem_queued;
  873. }
  874. /* This determines how many packets are "in the network" to the best
  875.  * of our knowledge.  In many cases it is conservative, but where
  876.  * detailed information is available from the receiver (via SACK
  877.  * blocks etc.) we can make more aggressive calculations.
  878.  *
  879.  * Use this for decisions involving congestion control, use just
  880.  * tp->packets_out to determine if the send queue is empty or not.
  881.  *
  882.  * Read this equation as:
  883.  *
  884.  * "Packets sent once on transmission queue" MINUS
  885.  * "Packets left network, but not honestly ACKed yet" PLUS
  886.  * "Packets fast retransmitted"
  887.  */
  888. static __inline__ unsigned int tcp_packets_in_flight(struct tcp_opt *tp)
  889. {
  890. return tp->packets_out - tp->left_out + tp->retrans_out;
  891. }
  892. /* Recalculate snd_ssthresh, we want to set it to:
  893.  *
  894.  *  one half the current congestion window, but no
  895.  * less than two segments
  896.  */
  897. static inline __u32 tcp_recalc_ssthresh(struct tcp_opt *tp)
  898. {
  899. return max(tp->snd_cwnd >> 1U, 2U);
  900. }
  901. /* If cwnd > ssthresh, we may raise ssthresh to be half-way to cwnd.
  902.  * The exception is rate halving phase, when cwnd is decreasing towards
  903.  * ssthresh.
  904.  */
  905. static inline __u32 tcp_current_ssthresh(struct tcp_opt *tp)
  906. {
  907. if ((1<<tp->ca_state)&(TCPF_CA_CWR|TCPF_CA_Recovery))
  908. return tp->snd_ssthresh;
  909. else
  910. return max(tp->snd_ssthresh,
  911.    ((tp->snd_cwnd >> 1) +
  912.     (tp->snd_cwnd >> 2)));
  913. }
  914. static inline void tcp_sync_left_out(struct tcp_opt *tp)
  915. {
  916. if (tp->sack_ok && tp->sacked_out >= tp->packets_out - tp->lost_out)
  917. tp->sacked_out = tp->packets_out - tp->lost_out;
  918. tp->left_out = tp->sacked_out + tp->lost_out;
  919. }
  920. extern void tcp_cwnd_application_limited(struct sock *sk);
  921. /* Congestion window validation. (RFC2861) */
  922. static inline void tcp_cwnd_validate(struct sock *sk, struct tcp_opt *tp)
  923. {
  924. if (tp->packets_out >= tp->snd_cwnd) {
  925. /* Network is feed fully. */
  926. tp->snd_cwnd_used = 0;
  927. tp->snd_cwnd_stamp = tcp_time_stamp;
  928. } else {
  929. /* Network starves. */
  930. if (tp->packets_out > tp->snd_cwnd_used)
  931. tp->snd_cwnd_used = tp->packets_out;
  932. if ((s32)(tcp_time_stamp - tp->snd_cwnd_stamp) >= tp->rto)
  933. tcp_cwnd_application_limited(sk);
  934. }
  935. }
  936. /* Set slow start threshould and cwnd not falling to slow start */
  937. static inline void __tcp_enter_cwr(struct tcp_opt *tp)
  938. {
  939. tp->undo_marker = 0;
  940. tp->snd_ssthresh = tcp_recalc_ssthresh(tp);
  941. tp->snd_cwnd = min(tp->snd_cwnd,
  942.    tcp_packets_in_flight(tp) + 1U);
  943. tp->snd_cwnd_cnt = 0;
  944. tp->high_seq = tp->snd_nxt;
  945. tp->snd_cwnd_stamp = tcp_time_stamp;
  946. TCP_ECN_queue_cwr(tp);
  947. }
  948. static inline void tcp_enter_cwr(struct tcp_opt *tp)
  949. {
  950. tp->prior_ssthresh = 0;
  951. if (tp->ca_state < TCP_CA_CWR) {
  952. __tcp_enter_cwr(tp);
  953. tp->ca_state = TCP_CA_CWR;
  954. }
  955. }
  956. extern __u32 tcp_init_cwnd(struct tcp_opt *tp);
  957. /* Slow start with delack produces 3 packets of burst, so that
  958.  * it is safe "de facto".
  959.  */
  960. static __inline__ __u32 tcp_max_burst(struct tcp_opt *tp)
  961. {
  962. return 3;
  963. }
  964. static __inline__ int tcp_minshall_check(struct tcp_opt *tp)
  965. {
  966. return after(tp->snd_sml,tp->snd_una) &&
  967. !after(tp->snd_sml, tp->snd_nxt);
  968. }
  969. static __inline__ void tcp_minshall_update(struct tcp_opt *tp, int mss, struct sk_buff *skb)
  970. {
  971. if (skb->len < mss)
  972. tp->snd_sml = TCP_SKB_CB(skb)->end_seq;
  973. }
  974. /* Return 0, if packet can be sent now without violation Nagle's rules:
  975.    1. It is full sized.
  976.    2. Or it contains FIN.
  977.    3. Or TCP_NODELAY was set.
  978.    4. Or TCP_CORK is not set, and all sent packets are ACKed.
  979.       With Minshall's modification: all sent small packets are ACKed.
  980.  */
  981. static __inline__ int
  982. tcp_nagle_check(struct tcp_opt *tp, struct sk_buff *skb, unsigned mss_now, int nonagle)
  983. {
  984. return (skb->len < mss_now &&
  985. !(TCP_SKB_CB(skb)->flags & TCPCB_FLAG_FIN) &&
  986. (nonagle == 2 ||
  987.  (!nonagle &&
  988.   tp->packets_out &&
  989.   tcp_minshall_check(tp))));
  990. }
  991. /* This checks if the data bearing packet SKB (usually tp->send_head)
  992.  * should be put on the wire right now.
  993.  */
  994. static __inline__ int tcp_snd_test(struct tcp_opt *tp, struct sk_buff *skb,
  995.    unsigned cur_mss, int nonagle)
  996. {
  997. /* RFC 1122 - section 4.2.3.4
  998.  *
  999.  * We must queue if
  1000.  *
  1001.  * a) The right edge of this frame exceeds the window
  1002.  * b) There are packets in flight and we have a small segment
  1003.  *    [SWS avoidance and Nagle algorithm]
  1004.  *    (part of SWS is done on packetization)
  1005.  *    Minshall version sounds: there are no _small_
  1006.  *    segments in flight. (tcp_nagle_check)
  1007.  * c) We have too many packets 'in flight'
  1008.  *
  1009.  *  Don't use the nagle rule for urgent data (or
  1010.  * for the final FIN -DaveM).
  1011.  *
  1012.  * Also, Nagle rule does not apply to frames, which
  1013.  * sit in the middle of queue (they have no chances
  1014.  * to get new data) and if room at tail of skb is
  1015.  * not enough to save something seriously (<32 for now).
  1016.  */
  1017. /* Don't be strict about the congestion window for the
  1018.  * final FIN frame.  -DaveM
  1019.  */
  1020. return ((nonagle==1 || tp->urg_mode
  1021.  || !tcp_nagle_check(tp, skb, cur_mss, nonagle)) &&
  1022. ((tcp_packets_in_flight(tp) < tp->snd_cwnd) ||
  1023.  (TCP_SKB_CB(skb)->flags & TCPCB_FLAG_FIN)) &&
  1024. !after(TCP_SKB_CB(skb)->end_seq, tp->snd_una + tp->snd_wnd));
  1025. }
  1026. static __inline__ void tcp_check_probe_timer(struct sock *sk, struct tcp_opt *tp)
  1027. {
  1028. if (!tp->packets_out && !tp->pending)
  1029. tcp_reset_xmit_timer(sk, TCP_TIME_PROBE0, tp->rto);
  1030. }
  1031. static __inline__ int tcp_skb_is_last(struct sock *sk, struct sk_buff *skb)
  1032. {
  1033. return (skb->next == (struct sk_buff*)&sk->write_queue);
  1034. }
  1035. /* Push out any pending frames which were held back due to
  1036.  * TCP_CORK or attempt at coalescing tiny packets.
  1037.  * The socket must be locked by the caller.
  1038.  */
  1039. static __inline__ void __tcp_push_pending_frames(struct sock *sk,
  1040.  struct tcp_opt *tp,
  1041.  unsigned cur_mss,
  1042.  int nonagle)
  1043. {
  1044. struct sk_buff *skb = tp->send_head;
  1045. if (skb) {
  1046. if (!tcp_skb_is_last(sk, skb))
  1047. nonagle = 1;
  1048. if (!tcp_snd_test(tp, skb, cur_mss, nonagle) ||
  1049.     tcp_write_xmit(sk, nonagle))
  1050. tcp_check_probe_timer(sk, tp);
  1051. }
  1052. tcp_cwnd_validate(sk, tp);
  1053. }
  1054. static __inline__ void tcp_push_pending_frames(struct sock *sk,
  1055.        struct tcp_opt *tp)
  1056. {
  1057. __tcp_push_pending_frames(sk, tp, tcp_current_mss(sk), tp->nonagle);
  1058. }
  1059. static __inline__ int tcp_may_send_now(struct sock *sk, struct tcp_opt *tp)
  1060. {
  1061. struct sk_buff *skb = tp->send_head;
  1062. return (skb &&
  1063. tcp_snd_test(tp, skb, tcp_current_mss(sk),
  1064.      tcp_skb_is_last(sk, skb) ? 1 : tp->nonagle));
  1065. }
  1066. static __inline__ void tcp_init_wl(struct tcp_opt *tp, u32 ack, u32 seq)
  1067. {
  1068. tp->snd_wl1 = seq;
  1069. }
  1070. static __inline__ void tcp_update_wl(struct tcp_opt *tp, u32 ack, u32 seq)
  1071. {
  1072. tp->snd_wl1 = seq;
  1073. }
  1074. extern void tcp_destroy_sock(struct sock *sk);
  1075. /*
  1076.  * Calculate(/check) TCP checksum
  1077.  */
  1078. static __inline__ u16 tcp_v4_check(struct tcphdr *th, int len,
  1079.    unsigned long saddr, unsigned long daddr, 
  1080.    unsigned long base)
  1081. {
  1082. return csum_tcpudp_magic(saddr,daddr,len,IPPROTO_TCP,base);
  1083. }
  1084. static __inline__ int __tcp_checksum_complete(struct sk_buff *skb)
  1085. {
  1086. return (unsigned short)csum_fold(skb_checksum(skb, 0, skb->len, skb->csum));
  1087. }
  1088. static __inline__ int tcp_checksum_complete(struct sk_buff *skb)
  1089. {
  1090. return skb->ip_summed != CHECKSUM_UNNECESSARY &&
  1091. __tcp_checksum_complete(skb);
  1092. }
  1093. /* Prequeue for VJ style copy to user, combined with checksumming. */
  1094. static __inline__ void tcp_prequeue_init(struct tcp_opt *tp)
  1095. {
  1096. tp->ucopy.task = NULL;
  1097. tp->ucopy.len = 0;
  1098. tp->ucopy.memory = 0;
  1099. skb_queue_head_init(&tp->ucopy.prequeue);
  1100. }
  1101. /* Packet is added to VJ-style prequeue for processing in process
  1102.  * context, if a reader task is waiting. Apparently, this exciting
  1103.  * idea (VJ's mail "Re: query about TCP header on tcp-ip" of 07 Sep 93)
  1104.  * failed somewhere. Latency? Burstiness? Well, at least now we will
  1105.  * see, why it failed. 8)8)   --ANK
  1106.  *
  1107.  * NOTE: is this not too big to inline?
  1108.  */
  1109. static __inline__ int tcp_prequeue(struct sock *sk, struct sk_buff *skb)
  1110. {
  1111. struct tcp_opt *tp = &sk->tp_pinfo.af_tcp;
  1112. if (tp->ucopy.task) {
  1113. __skb_queue_tail(&tp->ucopy.prequeue, skb);
  1114. tp->ucopy.memory += skb->truesize;
  1115. if (tp->ucopy.memory > sk->rcvbuf) {
  1116. struct sk_buff *skb1;
  1117. if (sk->lock.users) BUG();
  1118. while ((skb1 = __skb_dequeue(&tp->ucopy.prequeue)) != NULL) {
  1119. sk->backlog_rcv(sk, skb1);
  1120. NET_INC_STATS_BH(TCPPrequeueDropped);
  1121. }
  1122. tp->ucopy.memory = 0;
  1123. } else if (skb_queue_len(&tp->ucopy.prequeue) == 1) {
  1124. wake_up_interruptible(sk->sleep);
  1125. if (!tcp_ack_scheduled(tp))
  1126. tcp_reset_xmit_timer(sk, TCP_TIME_DACK, (3*TCP_RTO_MIN)/4);
  1127. }
  1128. return 1;
  1129. }
  1130. return 0;
  1131. }
  1132. #undef STATE_TRACE
  1133. #ifdef STATE_TRACE
  1134. static char *statename[]={
  1135. "Unused","Established","Syn Sent","Syn Recv",
  1136. "Fin Wait 1","Fin Wait 2","Time Wait", "Close",
  1137. "Close Wait","Last ACK","Listen","Closing"
  1138. };
  1139. #endif
  1140. static __inline__ void tcp_set_state(struct sock *sk, int state)
  1141. {
  1142. int oldstate = sk->state;
  1143. switch (state) {
  1144. case TCP_ESTABLISHED:
  1145. if (oldstate != TCP_ESTABLISHED)
  1146. TCP_INC_STATS(TcpCurrEstab);
  1147. break;
  1148. case TCP_CLOSE:
  1149. sk->prot->unhash(sk);
  1150. if (sk->prev && !(sk->userlocks&SOCK_BINDPORT_LOCK))
  1151. tcp_put_port(sk);
  1152. /* fall through */
  1153. default:
  1154. if (oldstate==TCP_ESTABLISHED)
  1155. tcp_statistics[smp_processor_id()*2+!in_softirq()].TcpCurrEstab--;
  1156. }
  1157. /* Change state AFTER socket is unhashed to avoid closed
  1158.  * socket sitting in hash tables.
  1159.  */
  1160. sk->state = state;
  1161. #ifdef STATE_TRACE
  1162. SOCK_DEBUG(sk, "TCP sk=%p, State %s -> %sn",sk, statename[oldstate],statename[state]);
  1163. #endif
  1164. }
  1165. static __inline__ void tcp_done(struct sock *sk)
  1166. {
  1167. tcp_set_state(sk, TCP_CLOSE);
  1168. tcp_clear_xmit_timers(sk);
  1169. sk->shutdown = SHUTDOWN_MASK;
  1170. if (!sk->dead)
  1171. sk->state_change(sk);
  1172. else
  1173. tcp_destroy_sock(sk);
  1174. }
  1175. static __inline__ void tcp_sack_reset(struct tcp_opt *tp)
  1176. {
  1177. tp->dsack = 0;
  1178. tp->eff_sacks = 0;
  1179. tp->num_sacks = 0;
  1180. }
  1181. static __inline__ void tcp_build_and_update_options(__u32 *ptr, struct tcp_opt *tp, __u32 tstamp)
  1182. {
  1183. if (tp->tstamp_ok) {
  1184. *ptr++ = __constant_htonl((TCPOPT_NOP << 24) |
  1185.   (TCPOPT_NOP << 16) |
  1186.   (TCPOPT_TIMESTAMP << 8) |
  1187.   TCPOLEN_TIMESTAMP);
  1188. *ptr++ = htonl(tstamp);
  1189. *ptr++ = htonl(tp->ts_recent);
  1190. }
  1191. if (tp->eff_sacks) {
  1192. struct tcp_sack_block *sp = tp->dsack ? tp->duplicate_sack : tp->selective_acks;
  1193. int this_sack;
  1194. *ptr++ = __constant_htonl((TCPOPT_NOP << 24) |
  1195.   (TCPOPT_NOP << 16) |
  1196.   (TCPOPT_SACK << 8) |
  1197.   (TCPOLEN_SACK_BASE +
  1198.    (tp->eff_sacks * TCPOLEN_SACK_PERBLOCK)));
  1199. for(this_sack = 0; this_sack < tp->eff_sacks; this_sack++) {
  1200. *ptr++ = htonl(sp[this_sack].start_seq);
  1201. *ptr++ = htonl(sp[this_sack].end_seq);
  1202. }
  1203. if (tp->dsack) {
  1204. tp->dsack = 0;
  1205. tp->eff_sacks--;
  1206. }
  1207. }
  1208. }
  1209. /* Construct a tcp options header for a SYN or SYN_ACK packet.
  1210.  * If this is every changed make sure to change the definition of
  1211.  * MAX_SYN_SIZE to match the new maximum number of options that you
  1212.  * can generate.
  1213.  */
  1214. static inline void tcp_syn_build_options(__u32 *ptr, int mss, int ts, int sack,
  1215.      int offer_wscale, int wscale, __u32 tstamp, __u32 ts_recent)
  1216. {
  1217. /* We always get an MSS option.
  1218.  * The option bytes which will be seen in normal data
  1219.  * packets should timestamps be used, must be in the MSS
  1220.  * advertised.  But we subtract them from tp->mss_cache so
  1221.  * that calculations in tcp_sendmsg are simpler etc.
  1222.  * So account for this fact here if necessary.  If we
  1223.  * don't do this correctly, as a receiver we won't
  1224.  * recognize data packets as being full sized when we
  1225.  * should, and thus we won't abide by the delayed ACK
  1226.  * rules correctly.
  1227.  * SACKs don't matter, we never delay an ACK when we
  1228.  * have any of those going out.
  1229.  */
  1230. *ptr++ = htonl((TCPOPT_MSS << 24) | (TCPOLEN_MSS << 16) | mss);
  1231. if (ts) {
  1232. if(sack)
  1233. *ptr++ = __constant_htonl((TCPOPT_SACK_PERM << 24) | (TCPOLEN_SACK_PERM << 16) |
  1234.   (TCPOPT_TIMESTAMP << 8) | TCPOLEN_TIMESTAMP);
  1235. else
  1236. *ptr++ = __constant_htonl((TCPOPT_NOP << 24) | (TCPOPT_NOP << 16) |
  1237.   (TCPOPT_TIMESTAMP << 8) | TCPOLEN_TIMESTAMP);
  1238. *ptr++ = htonl(tstamp); /* TSVAL */
  1239. *ptr++ = htonl(ts_recent); /* TSECR */
  1240. } else if(sack)
  1241. *ptr++ = __constant_htonl((TCPOPT_NOP << 24) | (TCPOPT_NOP << 16) |
  1242.   (TCPOPT_SACK_PERM << 8) | TCPOLEN_SACK_PERM);
  1243. if (offer_wscale)
  1244. *ptr++ = htonl((TCPOPT_NOP << 24) | (TCPOPT_WINDOW << 16) | (TCPOLEN_WINDOW << 8) | (wscale));
  1245. }
  1246. /* Determine a window scaling and initial window to offer.
  1247.  * Based on the assumption that the given amount of space
  1248.  * will be offered. Store the results in the tp structure.
  1249.  * NOTE: for smooth operation initial space offering should
  1250.  * be a multiple of mss if possible. We assume here that mss >= 1.
  1251.  * This MUST be enforced by all callers.
  1252.  */
  1253. static inline void tcp_select_initial_window(int __space, __u32 mss,
  1254. __u32 *rcv_wnd,
  1255. __u32 *window_clamp,
  1256. int wscale_ok,
  1257. __u8 *rcv_wscale)
  1258. {
  1259. unsigned int space = (__space < 0 ? 0 : __space);
  1260. /* If no clamp set the clamp to the max possible scaled window */
  1261. if (*window_clamp == 0)
  1262. (*window_clamp) = (65535 << 14);
  1263. space = min(*window_clamp, space);
  1264. /* Quantize space offering to a multiple of mss if possible. */
  1265. if (space > mss)
  1266. space = (space / mss) * mss;
  1267. /* NOTE: offering an initial window larger than 32767
  1268.  * will break some buggy TCP stacks. We try to be nice.
  1269.  * If we are not window scaling, then this truncates
  1270.  * our initial window offering to 32k. There should also
  1271.  * be a sysctl option to stop being nice.
  1272.  */
  1273. (*rcv_wnd) = min(space, MAX_TCP_WINDOW);
  1274. (*rcv_wscale) = 0;
  1275. if (wscale_ok) {
  1276. /* See RFC1323 for an explanation of the limit to 14 */
  1277. while (space > 65535 && (*rcv_wscale) < 14) {
  1278. space >>= 1;
  1279. (*rcv_wscale)++;
  1280. }
  1281. if (*rcv_wscale && sysctl_tcp_app_win && space>=mss &&
  1282.     space - max((space>>sysctl_tcp_app_win), mss>>*rcv_wscale) < 65536/2)
  1283. (*rcv_wscale)--;
  1284. }
  1285. /* Set initial window to value enough for senders,
  1286.  * following RFC1414. Senders, not following this RFC,
  1287.  * will be satisfied with 2.
  1288.  */
  1289. if (mss > (1<<*rcv_wscale)) {
  1290. int init_cwnd = 4;
  1291. if (mss > 1460*3)
  1292. init_cwnd = 2;
  1293. else if (mss > 1460)
  1294. init_cwnd = 3;
  1295. if (*rcv_wnd > init_cwnd*mss)
  1296. *rcv_wnd = init_cwnd*mss;
  1297. }
  1298. /* Set the clamp no higher than max representable value */
  1299. (*window_clamp) = min(65535U << (*rcv_wscale), *window_clamp);
  1300. }
  1301. static inline int tcp_win_from_space(int space)
  1302. {
  1303. return sysctl_tcp_adv_win_scale<=0 ?
  1304. (space>>(-sysctl_tcp_adv_win_scale)) :
  1305. space - (space>>sysctl_tcp_adv_win_scale);
  1306. }
  1307. /* Note: caller must be prepared to deal with negative returns */ 
  1308. static inline int tcp_space(struct sock *sk)
  1309. {
  1310. return tcp_win_from_space(sk->rcvbuf - atomic_read(&sk->rmem_alloc));
  1311. static inline int tcp_full_space( struct sock *sk)
  1312. {
  1313. return tcp_win_from_space(sk->rcvbuf); 
  1314. }
  1315. static inline void tcp_acceptq_removed(struct sock *sk)
  1316. {
  1317. sk->ack_backlog--;
  1318. }
  1319. static inline void tcp_acceptq_added(struct sock *sk)
  1320. {
  1321. sk->ack_backlog++;
  1322. }
  1323. static inline int tcp_acceptq_is_full(struct sock *sk)
  1324. {
  1325. return sk->ack_backlog > sk->max_ack_backlog;
  1326. }
  1327. static inline void tcp_acceptq_queue(struct sock *sk, struct open_request *req,
  1328.  struct sock *child)
  1329. {
  1330. struct tcp_opt *tp = &sk->tp_pinfo.af_tcp;
  1331. req->sk = child;
  1332. tcp_acceptq_added(sk);
  1333. if (!tp->accept_queue_tail) {
  1334. tp->accept_queue = req;
  1335. } else {
  1336. tp->accept_queue_tail->dl_next = req;
  1337. }
  1338. tp->accept_queue_tail = req;
  1339. req->dl_next = NULL;
  1340. }
  1341. struct tcp_listen_opt
  1342. {
  1343. u8 max_qlen_log; /* log_2 of maximal queued SYNs */
  1344. int qlen;
  1345. int qlen_young;
  1346. int clock_hand;
  1347. struct open_request *syn_table[TCP_SYNQ_HSIZE];
  1348. };
  1349. static inline void
  1350. tcp_synq_removed(struct sock *sk, struct open_request *req)
  1351. {
  1352. struct tcp_listen_opt *lopt = sk->tp_pinfo.af_tcp.listen_opt;
  1353. if (--lopt->qlen == 0)
  1354. tcp_delete_keepalive_timer(sk);
  1355. if (req->retrans == 0)
  1356. lopt->qlen_young--;
  1357. }
  1358. static inline void tcp_synq_added(struct sock *sk)
  1359. {
  1360. struct tcp_listen_opt *lopt = sk->tp_pinfo.af_tcp.listen_opt;
  1361. if (lopt->qlen++ == 0)
  1362. tcp_reset_keepalive_timer(sk, TCP_TIMEOUT_INIT);
  1363. lopt->qlen_young++;
  1364. }
  1365. static inline int tcp_synq_len(struct sock *sk)
  1366. {
  1367. return sk->tp_pinfo.af_tcp.listen_opt->qlen;
  1368. }
  1369. static inline int tcp_synq_young(struct sock *sk)
  1370. {
  1371. return sk->tp_pinfo.af_tcp.listen_opt->qlen_young;
  1372. }
  1373. static inline int tcp_synq_is_full(struct sock *sk)
  1374. {
  1375. return tcp_synq_len(sk)>>sk->tp_pinfo.af_tcp.listen_opt->max_qlen_log;
  1376. }
  1377. static inline void tcp_synq_unlink(struct tcp_opt *tp, struct open_request *req,
  1378.        struct open_request **prev)
  1379. {
  1380. write_lock(&tp->syn_wait_lock);
  1381. *prev = req->dl_next;
  1382. write_unlock(&tp->syn_wait_lock);
  1383. }
  1384. static inline void tcp_synq_drop(struct sock *sk, struct open_request *req,
  1385.      struct open_request **prev)
  1386. {
  1387. tcp_synq_unlink(&sk->tp_pinfo.af_tcp, req, prev);
  1388. tcp_synq_removed(sk, req);
  1389. tcp_openreq_free(req);
  1390. }
  1391. static __inline__ void tcp_openreq_init(struct open_request *req,
  1392. struct tcp_opt *tp,
  1393. struct sk_buff *skb)
  1394. {
  1395. req->rcv_wnd = 0; /* So that tcp_send_synack() knows! */
  1396. req->rcv_isn = TCP_SKB_CB(skb)->seq;
  1397. req->mss = tp->mss_clamp;
  1398. req->ts_recent = tp->saw_tstamp ? tp->rcv_tsval : 0;
  1399. req->tstamp_ok = tp->tstamp_ok;
  1400. req->sack_ok = tp->sack_ok;
  1401. req->snd_wscale = tp->snd_wscale;
  1402. req->wscale_ok = tp->wscale_ok;
  1403. req->acked = 0;
  1404. req->ecn_ok = 0;
  1405. req->rmt_port = skb->h.th->source;
  1406. }
  1407. #define TCP_MEM_QUANTUM ((int)PAGE_SIZE)
  1408. static inline void tcp_free_skb(struct sock *sk, struct sk_buff *skb)
  1409. {
  1410. sk->tp_pinfo.af_tcp.queue_shrunk = 1;
  1411. sk->wmem_queued -= skb->truesize;
  1412. sk->forward_alloc += skb->truesize;
  1413. __kfree_skb(skb);
  1414. }
  1415. static inline void tcp_charge_skb(struct sock *sk, struct sk_buff *skb)
  1416. {
  1417. sk->wmem_queued += skb->truesize;
  1418. sk->forward_alloc -= skb->truesize;
  1419. }
  1420. extern void __tcp_mem_reclaim(struct sock *sk);
  1421. extern int tcp_mem_schedule(struct sock *sk, int size, int kind);
  1422. static inline void tcp_mem_reclaim(struct sock *sk)
  1423. {
  1424. if (sk->forward_alloc >= TCP_MEM_QUANTUM)
  1425. __tcp_mem_reclaim(sk);
  1426. }
  1427. static inline void tcp_enter_memory_pressure(void)
  1428. {
  1429. if (!tcp_memory_pressure) {
  1430. NET_INC_STATS(TCPMemoryPressures);
  1431. tcp_memory_pressure = 1;
  1432. }
  1433. }
  1434. static inline void tcp_moderate_sndbuf(struct sock *sk)
  1435. {
  1436. if (!(sk->userlocks&SOCK_SNDBUF_LOCK)) {
  1437. sk->sndbuf = min(sk->sndbuf, sk->wmem_queued/2);
  1438. sk->sndbuf = max(sk->sndbuf, SOCK_MIN_SNDBUF);
  1439. }
  1440. }
  1441. static inline struct sk_buff *tcp_alloc_pskb(struct sock *sk, int size, int mem, int gfp)
  1442. {
  1443. struct sk_buff *skb = alloc_skb(size+MAX_TCP_HEADER, gfp);
  1444. if (skb) {
  1445. skb->truesize += mem;
  1446. if (sk->forward_alloc >= (int)skb->truesize ||
  1447.     tcp_mem_schedule(sk, skb->truesize, 0)) {
  1448. skb_reserve(skb, MAX_TCP_HEADER);
  1449. return skb;
  1450. }
  1451. __kfree_skb(skb);
  1452. } else {
  1453. tcp_enter_memory_pressure();
  1454. tcp_moderate_sndbuf(sk);
  1455. }
  1456. return NULL;
  1457. }
  1458. static inline struct sk_buff *tcp_alloc_skb(struct sock *sk, int size, int gfp)
  1459. {
  1460. return tcp_alloc_pskb(sk, size, 0, gfp);
  1461. }
  1462. static inline struct page * tcp_alloc_page(struct sock *sk)
  1463. {
  1464. if (sk->forward_alloc >= (int)PAGE_SIZE ||
  1465.     tcp_mem_schedule(sk, PAGE_SIZE, 0)) {
  1466. struct page *page = alloc_pages(sk->allocation, 0);
  1467. if (page)
  1468. return page;
  1469. }
  1470. tcp_enter_memory_pressure();
  1471. tcp_moderate_sndbuf(sk);
  1472. return NULL;
  1473. }
  1474. static inline void tcp_writequeue_purge(struct sock *sk)
  1475. {
  1476. struct sk_buff *skb;
  1477. while ((skb = __skb_dequeue(&sk->write_queue)) != NULL)
  1478. tcp_free_skb(sk, skb);
  1479. tcp_mem_reclaim(sk);
  1480. }
  1481. extern void tcp_rfree(struct sk_buff *skb);
  1482. static inline void tcp_set_owner_r(struct sk_buff *skb, struct sock *sk)
  1483. {
  1484. skb->sk = sk;
  1485. skb->destructor = tcp_rfree;
  1486. atomic_add(skb->truesize, &sk->rmem_alloc);
  1487. sk->forward_alloc -= skb->truesize;
  1488. }
  1489. extern void tcp_listen_wlock(void);
  1490. /* - We may sleep inside this lock.
  1491.  * - If sleeping is not required (or called from BH),
  1492.  *   use plain read_(un)lock(&tcp_lhash_lock).
  1493.  */
  1494. static inline void tcp_listen_lock(void)
  1495. {
  1496. /* read_lock synchronizes to candidates to writers */
  1497. read_lock(&tcp_lhash_lock);
  1498. atomic_inc(&tcp_lhash_users);
  1499. read_unlock(&tcp_lhash_lock);
  1500. }
  1501. static inline void tcp_listen_unlock(void)
  1502. {
  1503. if (atomic_dec_and_test(&tcp_lhash_users))
  1504. wake_up(&tcp_lhash_wait);
  1505. }
  1506. static inline int keepalive_intvl_when(struct tcp_opt *tp)
  1507. {
  1508. return tp->keepalive_intvl ? : sysctl_tcp_keepalive_intvl;
  1509. }
  1510. static inline int keepalive_time_when(struct tcp_opt *tp)
  1511. {
  1512. return tp->keepalive_time ? : sysctl_tcp_keepalive_time;
  1513. }
  1514. static inline int tcp_fin_time(struct tcp_opt *tp)
  1515. {
  1516. int fin_timeout = tp->linger2 ? : sysctl_tcp_fin_timeout;
  1517. if (fin_timeout < (tp->rto<<2) - (tp->rto>>1))
  1518. fin_timeout = (tp->rto<<2) - (tp->rto>>1);
  1519. return fin_timeout;
  1520. }
  1521. static inline int tcp_paws_check(struct tcp_opt *tp, int rst)
  1522. {
  1523. if ((s32)(tp->rcv_tsval - tp->ts_recent) >= 0)
  1524. return 0;
  1525. if (xtime.tv_sec >= tp->ts_recent_stamp + TCP_PAWS_24DAYS)
  1526. return 0;
  1527. /* RST segments are not recommended to carry timestamp,
  1528.    and, if they do, it is recommended to ignore PAWS because
  1529.    "their cleanup function should take precedence over timestamps."
  1530.    Certainly, it is mistake. It is necessary to understand the reasons
  1531.    of this constraint to relax it: if peer reboots, clock may go
  1532.    out-of-sync and half-open connections will not be reset.
  1533.    Actually, the problem would be not existing if all
  1534.    the implementations followed draft about maintaining clock
  1535.    via reboots. Linux-2.2 DOES NOT!
  1536.    However, we can relax time bounds for RST segments to MSL.
  1537.  */
  1538. if (rst && xtime.tv_sec >= tp->ts_recent_stamp + TCP_PAWS_MSL)
  1539. return 0;
  1540. return 1;
  1541. }
  1542. #define TCP_CHECK_TIMER(sk) do { } while (0);
  1543. #endif /* _TCP_H */