home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / network / src_1218.zip / TCP.H < prev    next >
C/C++ Source or Header  |  1991-12-18  |  10KB  |  296 lines

  1. #ifndef    _TCP_H
  2. #define    _TCP_H
  3.  
  4. /* TCP implementation. Follows RFC 793 as closely as possible */
  5. #ifndef    _GLOBAL_H
  6. #include "global.h"
  7. #endif
  8.  
  9. #ifndef    _MBUF_H
  10. #include "mbuf.h"
  11. #endif
  12.  
  13. #ifndef    _IFACE_H
  14. #include "iface.h"
  15. #endif
  16.  
  17. #ifndef    _INTERNET_H
  18. #include "internet.h"
  19. #endif
  20.  
  21. #ifndef _IP_H
  22. #include "ip.h"
  23. #endif
  24.  
  25. #ifndef    _NETUSER_H
  26. #include "netuser.h"
  27. #endif
  28.  
  29. #ifndef    _TIMER_H
  30. #include "timer.h"
  31. #endif
  32.  
  33. #define    DEF_MSS    512    /* Default maximum segment size */
  34. #define    DEF_WND    2048    /* Default receiver window */
  35. #define    RTTCACHE 16    /* # of TCP round-trip-time cache entries */
  36. #define    DEF_RTT    5000    /* Initial guess at round trip time (5 sec) */
  37. #define    MSL2    30    /* Guess at two maximum-segment lifetimes */
  38. #define    MIN_RTO    500L    /* Minimum timeout, milliseconds */
  39.  
  40. #define    geniss()    ((int32)msclock() << 12) /* Increment clock at 4 MB/sec */
  41.  
  42. /* Number of consecutive duplicate acks to trigger fast recovery */
  43. #define    TCPDUPACKS    3
  44.  
  45. /* Round trip timing parameters */
  46. #define    AGAIN    8    /* Average RTT gain = 1/8 */
  47. #define    LAGAIN    3    /* Log2(AGAIN) */
  48. #define    DGAIN    4    /* Mean deviation gain = 1/4 */
  49. #define    LDGAIN    2    /* log2(DGAIN) */
  50.  
  51. /* TCP segment header -- internal representation
  52.  * Note that this structure is NOT the actual header as it appears on the
  53.  * network (in particular, the offset field is missing).
  54.  * All that knowledge is in the functions ntohtcp() and htontcp() in tcpsubr.c
  55.  */
  56. #define TCPLEN        20    /* Minimum Header length, bytes */
  57. #define    TCP_MAXOPT    40    /* Largest option field, bytes */
  58. struct tcp {
  59.     int16 source;    /* Source port */
  60.     int16 dest;    /* Destination port */
  61.     int32 seq;    /* Sequence number */
  62.     int32 ack;    /* Acknowledgment number */
  63.     int16 wnd;            /* Receiver flow control window */
  64.     int16 checksum;            /* Checksum */
  65.     int16 up;            /* Urgent pointer */
  66.     int16 mss;            /* Optional max seg size */
  67.     struct {
  68.         char congest;    /* Echoed IP congestion experienced bit */
  69.         char urg;
  70.         char ack;
  71.         char psh;
  72.         char rst;
  73.         char syn;
  74.         char fin;
  75.     } flags;
  76.     char optlen;            /* Length of options field, bytes */
  77.     char options[TCP_MAXOPT];    /* Options field */
  78. };
  79. /* TCP options */
  80. #define    EOL_KIND    0
  81. #define    NOOP_KIND    1
  82. #define    MSS_KIND    2
  83. #define    MSS_LENGTH    4
  84.  
  85. /* Resequencing queue entry */
  86. struct reseq {
  87.     struct reseq *next;    /* Linked-list pointer */
  88.     struct tcp seg;        /* TCP header */
  89.     struct mbuf *bp;    /* data */
  90.     int16 length;        /* data length */
  91.     char tos;        /* Type of service */
  92. };
  93. #define    NULLRESEQ    (struct reseq *)0
  94.  
  95. /* TCP connection control block */
  96. struct tcb {
  97.     struct tcb *next;    /* Linked list pointer */
  98.  
  99.     struct connection conn;
  100.  
  101.     char state;    /* Connection state */
  102.  
  103. /* These numbers match those defined in the MIB for TCP connection state */
  104. #define    TCP_CLOSED        1
  105. #define    TCP_LISTEN        2
  106. #define    TCP_SYN_SENT        3
  107. #define    TCP_SYN_RECEIVED    4
  108. #define    TCP_ESTABLISHED        5
  109. #define    TCP_FINWAIT1        6
  110. #define    TCP_FINWAIT2        7
  111. #define    TCP_CLOSE_WAIT        8
  112. #define    TCP_LAST_ACK        9
  113. #define    TCP_CLOSING        10
  114. #define    TCP_TIME_WAIT        11
  115.  
  116.     char reason;        /* Reason for closing */
  117. #define    NORMAL        0    /* Normal close */
  118. #define    RESET        1    /* Reset by other end */
  119. #define    TIMEOUT        2    /* Excessive retransmissions */
  120. #define    NETWORK        3    /* Network problem (ICMP message) */
  121.  
  122. /* If reason == NETWORK, the ICMP type and code values are stored here */
  123.     char type;
  124.     char code;
  125.  
  126.     /* Send sequence variables */
  127.     struct {
  128.         int32 una;    /* First unacknowledged sequence number */
  129.         int32 nxt;    /* Next sequence num to be sent for the first time */
  130.         int32 ptr;    /* Working transmission pointer */
  131.         int32 wl1;    /* Sequence number used for last window update */
  132.         int32 wl2;    /* Ack number used for last window update */
  133.         int16 wnd;    /* Other end's offered receive window */
  134.         int16 up;    /* Send urgent pointer */
  135.     } snd;
  136.     int32 iss;        /* Initial send sequence number */
  137.     int32 resent;        /* Count of bytes retransmitted */
  138.     int16 cwind;        /* Congestion window */
  139.     int16 ssthresh;        /* Slow-start threshold */
  140.     int dupacks;        /* Count of duplicate (do-nothing) ACKs */
  141.  
  142.     /* Receive sequence variables */
  143.     struct {
  144.         int32 nxt;    /* Incoming sequence number expected next */
  145.         int16 wnd;    /* Our offered receive window */
  146.         int16 up;    /* Receive urgent pointer */
  147.     } rcv;
  148.     int32 irs;        /* Initial receive sequence number */
  149.     int32 rerecv;        /* Count of duplicate bytes received */
  150.     int16 mss;        /* Maximum segment size */
  151.  
  152.     int16 window;        /* Receiver window and send queue limit */
  153.     int16 limit;        /* Send queue limit */
  154.  
  155.     void (*r_upcall) __ARGS((struct tcb *tcb,int cnt));
  156.         /* Call when "significant" amount of data arrives */
  157.     void (*t_upcall) __ARGS((struct tcb *tcb,int cnt));
  158.         /* Call when ok to send more data */
  159.     void (*s_upcall) __ARGS((struct tcb *tcb,int old,int new));
  160.         /* Call when connection state changes */
  161.     struct {        /* Control flags */
  162.         char force;    /* We owe the other end an ACK or window update */
  163.         char clone;    /* Server-type TCB, cloned on incoming SYN */
  164.         char retran;    /* A retransmission has occurred */
  165.         char active;    /* TCB created with an active open */
  166.         char synack;    /* Our SYN has been acked */
  167.         char rtt_run;    /* We're timing a segment */
  168.         char congest;    /* Copy of last IP congest bit received */
  169.     } flags;
  170.     char tos;        /* Type of service (for IP) */
  171.     int backoff;        /* Backoff interval */
  172.  
  173.     struct mbuf *rcvq;    /* Receive queue */
  174.     struct mbuf *sndq;    /* Send queue */
  175.     int16 rcvcnt;        /* Count of items on rcvq */
  176.     int16 sndcnt;        /* Number of unacknowledged sequence numbers on
  177.                  * sndq. NB: includes SYN and FIN, which don't
  178.                  * actually appear on sndq!
  179.                  */
  180.  
  181.     struct reseq *reseq;    /* Out-of-order segment queue */
  182.     struct timer timer;    /* Retransmission timer */
  183.     int32 rtt_time;        /* Stored clock values for RTT */
  184.     int32 rttseq;        /* Sequence number being timed */
  185.     int32 srtt;        /* Smoothed round trip time, milliseconds */
  186.     int32 mdev;        /* Mean deviation, milliseconds */
  187.     int32 lastactive;    /* Clock time when xmtr last active */
  188.  
  189.     int user;        /* User parameter (e.g., for mapping to an
  190.                  * application control block
  191.                  */
  192. };
  193. #define    NULLTCB    (struct tcb *)0
  194. /* TCP round-trip time cache */
  195. struct tcp_rtt {
  196.     int32 addr;        /* Destination IP address */
  197.     int32 srtt;        /* Most recent SRTT */
  198.     int32 mdev;        /* Most recent mean deviation */
  199. };
  200. #define    NULLRTT    (struct tcp_rtt *)0
  201. extern struct tcp_rtt Tcp_rtt[];
  202.  
  203. /* TCP statistics counters */
  204. struct tcp_stat {
  205.     int16 runt;        /* Smaller than minimum size */
  206.     int16 checksum;        /* TCP header checksum errors */
  207.     int16 conout;        /* Outgoing connection attempts */
  208.     int16 conin;        /* Incoming connection attempts */
  209.     int16 resets;        /* Resets generated */
  210.     int16 bdcsts;        /* Bogus broadcast packets */
  211. };
  212. extern struct mib_entry Tcp_mib[];
  213. #define    tcpRtoAlgorithm    Tcp_mib[1].value.integer
  214. #define    tcpRtoMin    Tcp_mib[2].value.integer
  215. #define    tcpRtoMax    Tcp_mib[3].value.integer
  216. #define    tcpMaxConn    Tcp_mib[4].value.integer
  217. #define    tcpActiveOpens    Tcp_mib[5].value.integer
  218. #define tcpPassiveOpens    Tcp_mib[6].value.integer
  219. #define    tcpAttemptFails    Tcp_mib[7].value.integer
  220. #define    tcpEstabResets    Tcp_mib[8].value.integer
  221. #define    tcpCurrEstab    Tcp_mib[9].value.integer
  222. #define    tcpInSegs    Tcp_mib[10].value.integer
  223. #define    tcpOutSegs    Tcp_mib[11].value.integer
  224. #define    tcpRetransSegs    Tcp_mib[12].value.integer
  225. #define    tcpInErrs    Tcp_mib[14].value.integer
  226. #define    tcpOutRsts    Tcp_mib[15].value.integer
  227. #define    NUMTCPMIB    15
  228.  
  229. extern struct tcb *Tcbs;
  230. extern char *Tcpstates[];
  231. extern char *Tcpreasons[];
  232.  
  233. /* In tcpcmd.c: */
  234. extern int32 Tcp_irtt;
  235. extern int16 Tcp_limit;
  236. extern int16 Tcp_mss;
  237. extern int Tcp_syndata;
  238. extern int Tcp_trace;
  239. extern int16 Tcp_window;
  240.  
  241. void st_tcp __ARGS((struct tcb *tcb));
  242.  
  243. /* In tcphdr.c: */
  244. struct mbuf *htontcp __ARGS((struct tcp *tcph,struct mbuf *data,
  245.     struct pseudo_header *ph));
  246. int ntohtcp __ARGS((struct tcp *tcph,struct mbuf **bpp));
  247.  
  248. /* In tcpin.c: */
  249. void reset __ARGS((struct ip *ip,struct tcp *seg));
  250. void send_syn __ARGS((struct tcb *tcb));
  251. void tcp_input __ARGS((struct iface *iface,struct ip *ip,struct mbuf *bp,
  252.     int rxbroadcast));
  253. void tcp_icmp __ARGS((int32 icsource,int32 source,int32 dest,
  254.     char type,char code,struct mbuf **bpp));
  255.  
  256. /* In tcpsubr.c: */
  257. void close_self __ARGS((struct tcb *tcb,int reason));
  258. struct tcb *create_tcb __ARGS((struct connection *conn));
  259. struct tcb *lookup_tcb __ARGS((struct connection *conn));
  260. void rtt_add __ARGS((int32 addr,int32 rtt));
  261. struct tcp_rtt *rtt_get __ARGS((int32 addr));
  262. int seq_ge __ARGS((int32 x,int32 y));
  263. int seq_gt __ARGS((int32 x,int32 y));
  264. int seq_le __ARGS((int32 x,int32 y));
  265. int seq_lt __ARGS((int32 x,int32 y));
  266. int seq_within __ARGS((int32 x,int32 low,int32 high));
  267. void setstate __ARGS((struct tcb *tcb,int newstate));
  268. void tcp_garbage __ARGS((int red));
  269.  
  270. /* In tcpout.c: */
  271. void tcp_output __ARGS((struct tcb *tcb));
  272.  
  273. /* In tcptimer.c: */
  274. int32 backoff __ARGS((int n));
  275. void tcp_timeout __ARGS((void *p));
  276.  
  277. /* In tcpuser.c: */
  278. int close_tcp __ARGS((struct tcb *tcb));
  279. int del_tcp __ARGS((struct tcb *tcb));
  280. int kick __ARGS((int32 addr));
  281. int kick_tcp __ARGS((struct tcb *tcb));
  282. struct tcb *open_tcp __ARGS((struct socket *lsocket,struct socket *fsocket,
  283.     int mode,int16 window,
  284.     void (*r_upcall) __ARGS((struct tcb *tcb,int cnt)),
  285.     void (*t_upcall) __ARGS((struct tcb *tcb,int cnt)),
  286.     void (*s_upcall) __ARGS((struct tcb *tcb,int old,int new)),
  287.     int tos,int user));
  288. int recv_tcp __ARGS((struct tcb *tcb,struct mbuf **bpp,int16 cnt));
  289. void reset_all __ARGS((void));
  290. void reset_tcp __ARGS((struct tcb *tcb));
  291. int send_tcp __ARGS((struct tcb *tcb,struct mbuf *bp));
  292. char *tcp_port __ARGS((int16 n));
  293. int tcpval __ARGS((struct tcb *tcb));
  294.  
  295. #endif    /* _TCP_H */
  296.