xref: /csrg-svn/sys/netiso/tp_pcb.h (revision 51138)
149268Sbostic /*-
249268Sbostic  * Copyright (c) 1991 The Regents of the University of California.
349268Sbostic  * All rights reserved.
449268Sbostic  *
549268Sbostic  * %sccs.include.redist.c%
649268Sbostic  *
7*51138Ssklower  *	@(#)tp_pcb.h	7.16 (Berkeley) 09/17/91
849268Sbostic  */
949268Sbostic 
1036409Ssklower /***********************************************************
1136409Ssklower 		Copyright IBM Corporation 1987
1236409Ssklower 
1336409Ssklower                       All Rights Reserved
1436409Ssklower 
1536409Ssklower Permission to use, copy, modify, and distribute this software and its
1636409Ssklower documentation for any purpose and without fee is hereby granted,
1736409Ssklower provided that the above copyright notice appear in all copies and that
1836409Ssklower both that copyright notice and this permission notice appear in
1936409Ssklower supporting documentation, and that the name of IBM not be
2036409Ssklower used in advertising or publicity pertaining to distribution of the
2136409Ssklower software without specific, written prior permission.
2236409Ssklower 
2336409Ssklower IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
2436409Ssklower ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
2536409Ssklower IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
2636409Ssklower ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
2736409Ssklower WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
2836409Ssklower ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
2936409Ssklower SOFTWARE.
3036409Ssklower 
3136409Ssklower ******************************************************************/
3236409Ssklower 
3336409Ssklower /*
3436409Ssklower  * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison
3536409Ssklower  */
3636409Ssklower /*
3736409Ssklower  * ARGO TP
3836409Ssklower  *
3936409Ssklower  * $Header: tp_pcb.h,v 5.2 88/11/18 17:09:32 nhall Exp $
4036409Ssklower  * $Source: /usr/argo/sys/netiso/RCS/tp_pcb.h,v $
4136409Ssklower  *
4236409Ssklower  *
4336409Ssklower  * This file defines the transport protocol control block (tpcb).
4436409Ssklower  * and a bunch of #define values that are used in the tpcb.
4536409Ssklower  */
4636409Ssklower 
4736409Ssklower #ifndef  __TP_PCB__
4836409Ssklower #define  __TP_PCB__
4936409Ssklower 
5036409Ssklower #include "../netiso/tp_param.h"
5136409Ssklower #include "../netiso/tp_timer.h"
5236409Ssklower #include "../netiso/tp_user.h"
5336409Ssklower #ifndef sblock
5437536Smckusick #include "socketvar.h"
5536409Ssklower #endif sblock
5636409Ssklower 
5736409Ssklower /* NOTE: the code depends on REF_CLOSED > REF_OPEN > the rest, and
5836409Ssklower  * on REF_FREE being zero
5936409Ssklower  *
6036409Ssklower  * Possible improvement:
6136409Ssklower  * think about merging the tp_ref w/ the tpcb and doing a search
6236409Ssklower  * through the tpcb list, from tpb. This would slow down lookup
6336409Ssklower  * during data transfer
6436409Ssklower  * It would be a little nicer also to have something based on the
6536409Ssklower  * clock (like top n bits of the reference is part of the clock, to
6636409Ssklower  * minimize the likelihood  of reuse after a crash)
6736409Ssklower  * also, need to keep the timer servicing part to a minimum (although
6836409Ssklower  * the cost of this is probably independent of whether the timers are
6936409Ssklower  * in the pcb or in an array..
7036409Ssklower  * Last, would have to make the number of timers a function of the amount of
7136409Ssklower  * mbufs available, plus some for the frozen references.
7236409Ssklower  *
7336409Ssklower  * Possible improvement:
7436409Ssklower  * Might not need the ref_state stuff either...
7536409Ssklower  * REF_FREE could correspond to tp_state == CLOSED or nonexistend tpcb,
7636409Ssklower  * REF_OPEN to tp_state anywhere from AK_WAIT or CR_SENT to CLOSING
7736409Ssklower  * REF_OPENING could correspond to LISTENING, because that's the
7836409Ssklower  * way it's used, not because the correspondence is exact.
7936409Ssklower  * REF_CLOSED could correspond to REFWAIT
8036409Ssklower  */
8136409Ssklower #define REF_FROZEN 3	/* has ref timer only */
8236409Ssklower #define REF_OPEN 2		/* has timers, possibly active */
8336409Ssklower #define REF_OPENING 1	/* in use (has a pcb) but no timers */
8436409Ssklower #define REF_FREE 0		/* free to reallocate */
8536409Ssklower 
8651007Ssklower #define N_CTIMERS 		6
8736409Ssklower 
8836409Ssklower struct tp_ref {
8951007Ssklower /*	u_char	 			tpr_state; /* values REF_FROZEN, etc. above */
9051007Ssklower /*	struct Ccallout 	tpr_callout[N_CTIMERS]; /* C timers */
9151007Ssklower /*	struct Ecallout		tpr_calltodo;			/* list of active E timers */
9251007Ssklower #define	tpr_state		tpr_pcb->tp_refstate
9351007Ssklower #define	tpr_callout		tpr_pcb->tp_refcallout
9451007Ssklower #define	tpr_calltodo 	tpr_pcb->tp_refcalltodo
9536409Ssklower 	struct tp_pcb 		*tpr_pcb;	/* back ptr to PCB */
9636409Ssklower };
9736409Ssklower 
9851006Ssklower struct tp_refinfo {
9951006Ssklower 	struct tp_ref		*tpr_base;
10051006Ssklower 	int					tpr_size;
10151007Ssklower 	int					tpr_maxopen;
10251007Ssklower 	int					tpr_numopen;
10351006Ssklower };
10451006Ssklower 
10536409Ssklower struct tp_param {
10636409Ssklower 	/* PER system stuff (one static structure instead of a bunch of names) */
10736409Ssklower 	unsigned 	tpp_configed:1;			/* Has TP been initialized? */
10836409Ssklower };
10936409Ssklower 
11036409Ssklower 
11136409Ssklower struct nl_protosw {
11236409Ssklower 	int		nlp_afamily;			/* address family */
11336409Ssklower 	int		(*nlp_putnetaddr)();	/* puts addresses in nl pcb */
11436409Ssklower 	int		(*nlp_getnetaddr)();	/* gets addresses from nl pcb */
11544424Ssklower 	int		(*nlp_cmpnetaddr)();	/* compares address in pcb with sockaddr */
11636409Ssklower 	int		(*nlp_putsufx)();		/* puts transport suffixes in nl pcb */
11736409Ssklower 	int		(*nlp_getsufx)();		/* gets transport suffixes from nl pcb */
11836409Ssklower 	int		(*nlp_recycle_suffix)();/* clears suffix from nl pcb */
11936409Ssklower 	int		(*nlp_mtu)();			/* figures out mtu based on nl used */
12036409Ssklower 	int		(*nlp_pcbbind)();		/* bind to pcb for net level */
12136409Ssklower 	int		(*nlp_pcbconn)();		/* connect for net level */
12236409Ssklower 	int		(*nlp_pcbdisc)();		/* disconnect net level */
12336409Ssklower 	int		(*nlp_pcbdetach)();		/* detach net level pcb */
12436409Ssklower 	int		(*nlp_pcballoc)();		/* allocate a net level pcb */
12536409Ssklower 	int		(*nlp_output)();		/* prepare a packet to give to nl */
12636409Ssklower 	int		(*nlp_dgoutput)();		/* prepare a packet to give to nl */
12736409Ssklower 	int		(*nlp_ctloutput)();		/* hook for network set/get options */
12836409Ssklower 	caddr_t	nlp_pcblist;			/* list of xx_pcb's for connections */
12944424Ssklower };
13036409Ssklower 
13136409Ssklower 
13236409Ssklower struct tp_pcb {
13344424Ssklower 	struct tp_pcb		*tp_next;
13444424Ssklower 	struct tp_pcb		*tp_prev;
13544424Ssklower 	struct tp_pcb		*tp_nextlisten; /* chain all listeners */
13636409Ssklower 	u_short 			tp_state;		/* state of fsm */
13736409Ssklower 	short 				tp_retrans;		/* # times can still retrans */
13836409Ssklower 	struct tp_ref 		*tp_refp;		/* rest of pcb	*/
13936409Ssklower 	caddr_t				tp_npcb;		/* to lower layer pcb */
14036409Ssklower 	struct nl_protosw	*tp_nlproto;	/* lower-layer dependent routines */
14136409Ssklower 	struct socket 		*tp_sock;		/* back ptr */
14236409Ssklower 
14336409Ssklower 
14436409Ssklower 	RefNum				tp_lref;	 	/* local reference */
14536409Ssklower 	RefNum 				tp_fref;		/* foreign reference */
14636409Ssklower 
14736409Ssklower 	u_int				tp_seqmask;		/* mask for seq space */
14836409Ssklower 	u_int				tp_seqbit;		/* bit for seq number wraparound */
14936409Ssklower 	u_int				tp_seqhalf;		/* half the seq space */
15036409Ssklower 
15150904Ssklower 	struct mbuf			*tp_ucddata;	/* user connect/disconnect data */
15250904Ssklower 
15336409Ssklower 	/* credit & sequencing info for SENDING */
15436409Ssklower 	u_short 			tp_fcredit;		/* current remote credit in # packets */
155*51138Ssklower 	u_short				tp_ssthresh;	/* cong_win threshold for slow start
156*51138Ssklower 										 * exponential to linear switch
157*51138Ssklower 										 */
15836409Ssklower 	u_short				tp_cong_win;	/* congestion window : set to 1 on
15936409Ssklower 										 * source quench
16036409Ssklower 										 * Minimizes the amount of retrans-
16136409Ssklower 										 * missions (independently of the
16236409Ssklower 										 * retrans strategy).  Increased
16336409Ssklower 										 * by one for each good ack received.
16436409Ssklower 										 * Minimizes the amount sent in a
16536409Ssklower 										 * regular tp_send() also.
16636409Ssklower 										 */
16739919Ssklower 	u_int   tp_ackrcvd; /* ACKs received since the send window was updated */
16839919Ssklower 	SeqNum              tp_last_retrans;
16939919Ssklower 	SeqNum              tp_retrans_hiwat;
17036409Ssklower 	SeqNum				tp_snduna;		/* seq # of lowest unacked DT */
17136409Ssklower 	SeqNum				tp_sndhiwat;	/* highest seq # sent so far */
17250904Ssklower 	SeqNum				tp_sndnum;		/* next seq # to be assigned */
17350904Ssklower 	struct mbuf			*tp_sndhiwat_m; /* packet corres. to sndhiwat*/
17436409Ssklower 	int					tp_Nwindow;		/* for perf. measurement */
17536409Ssklower 
17636409Ssklower 	/* credit & sequencing info for RECEIVING */
17736409Ssklower 	SeqNum	 			tp_sent_lcdt;	/* cdt according to last ack sent */
17836409Ssklower 	SeqNum	 			tp_sent_uwe;	/* uwe according to last ack sent */
17950904Ssklower 	SeqNum				tp_rcvnxt;		/* next DT seq # expect to recv */
18036409Ssklower 	SeqNum	 			tp_sent_rcvnxt;	/* rcvnxt according to last ack sent
18136409Ssklower 										 * needed for perf measurements only
18236409Ssklower 										 */
18336409Ssklower 	u_short				tp_lcredit;		/* current local credit in # packets */
18450904Ssklower 	u_short				tp_maxlcredit;	/* needed for reassembly queue */
18550904Ssklower 	struct mbuf			**tp_rsyq;		/* unacked stuff recvd out of order */
18650904Ssklower 	int					tp_rsycnt;		/* number of packets */
18736409Ssklower 
18839919Ssklower 	/* receiver congestion state stuff ...  */
18939919Ssklower 	u_int               tp_win_recv;
19039919Ssklower 
19139919Ssklower 	/* receive window as a scaled int (8 bit fraction part) */
19239919Ssklower 
19339919Ssklower 	struct cong_sample {
19439919Ssklower 		ushort  cs_size; 				/* current window size */
19539919Ssklower 		ushort  cs_received;   			/* PDUs received in this sample */
19639919Ssklower 		ushort  cs_ce_set;    /* PDUs received in this sample with CE bit set */
19739919Ssklower 	} tp_cong_sample;
19839919Ssklower 
19939919Ssklower 
20036409Ssklower 	/* parameters per-connection controllable by user */
20136409Ssklower 	struct tp_conn_param _tp_param;
20236409Ssklower 
20336409Ssklower #define	tp_Nretrans _tp_param.p_Nretrans
20436409Ssklower #define	tp_dr_ticks _tp_param.p_dr_ticks
20536409Ssklower #define	tp_cc_ticks _tp_param.p_cc_ticks
20636409Ssklower #define	tp_dt_ticks _tp_param.p_dt_ticks
20736409Ssklower #define	tp_xpd_ticks _tp_param.p_x_ticks
20836409Ssklower #define	tp_cr_ticks _tp_param.p_cr_ticks
20936409Ssklower #define	tp_keepalive_ticks _tp_param.p_keepalive_ticks
21036409Ssklower #define	tp_sendack_ticks _tp_param.p_sendack_ticks
21136409Ssklower #define	tp_refer_ticks _tp_param.p_ref_ticks
21236409Ssklower #define	tp_inact_ticks _tp_param.p_inact_ticks
21336409Ssklower #define	tp_xtd_format _tp_param.p_xtd_format
21436409Ssklower #define	tp_xpd_service _tp_param.p_xpd_service
21536409Ssklower #define	tp_ack_strat _tp_param.p_ack_strat
21636409Ssklower #define	tp_rx_strat _tp_param.p_rx_strat
21736409Ssklower #define	tp_use_checksum _tp_param.p_use_checksum
21836409Ssklower #define	tp_use_efc _tp_param.p_use_efc
21936409Ssklower #define	tp_use_nxpd _tp_param.p_use_nxpd
22036409Ssklower #define	tp_use_rcc _tp_param.p_use_rcc
22136409Ssklower #define	tp_tpdusize _tp_param.p_tpdusize
22236409Ssklower #define	tp_class _tp_param.p_class
22336409Ssklower #define	tp_winsize _tp_param.p_winsize
22436409Ssklower #define	tp_no_disc_indications _tp_param.p_no_disc_indications
22536409Ssklower #define	tp_dont_change_params _tp_param.p_dont_change_params
22636409Ssklower #define	tp_netservice _tp_param.p_netservice
22742490Ssklower #define	tp_version _tp_param.p_version
22836409Ssklower 
229*51138Ssklower 	int					tp_l_tpdusize;
23036409Ssklower 		/* whereas tp_tpdusize is log2(the negotiated max size)
23136409Ssklower 		 * l_tpdusize is the size we'll use when sending, in # chars
23236409Ssklower 		 */
23336409Ssklower 
234*51138Ssklower 	int					tp_rtv;			/* max round-trip time variance */
235*51138Ssklower 	int					tp_rtt; 		/* smoothed round-trip time */
236*51138Ssklower 	SeqNum				tp_rttseq;		/* packet being timed */
237*51138Ssklower 	int					tp_rttemit;		/* when emitted, in ticks */
238*51138Ssklower 	int					tp_idle;		/* last activity, in ticks */
239*51138Ssklower 	short				tp_rxtcur;		/* current retransmit value */
240*51138Ssklower 	short				tp_rxtshift;	/* log(2) of rexmt exp. backoff */
241*51138Ssklower 
24236409Ssklower 	unsigned
24336409Ssklower 		tp_sendfcc:1,			/* shall next ack include FCC parameter? */
24436409Ssklower 		tp_trace:1,				/* is this pcb being traced? (not used yet) */
24536409Ssklower 		tp_perf_on:1,			/* 0/1 -> performance measuring on  */
24636409Ssklower 		tp_reneged:1,			/* have we reneged on cdt since last ack? */
24739919Ssklower 		tp_decbit:3,			/* dec bit was set, we're in reneg mode  */
24839919Ssklower 		tp_cebit_off:1,			/* the real DEC bit algorithms not in use */
24936409Ssklower 		tp_flags:8,				/* values: */
25036409Ssklower #define TPF_NLQOS_PDN	 	TPFLAG_NLQOS_PDN
25136409Ssklower #define TPF_PEER_ON_SAMENET	TPFLAG_PEER_ON_SAMENET
25250851Ssklower #define TPF_GENERAL_ADDR	TPFLAG_GENERAL_ADDR
25351007Ssklower #define TPF_DELACK			0x8
25451007Ssklower #define TPF_ACKNOW			0x10
25536409Ssklower 
25650851Ssklower #define PEER_IS_LOCAL(t)	(((t)->tp_flags & TPF_PEER_ON_SAME_NET) != 0)
25750851Ssklower #define USES_PDN(t)			(((t)->tp_flags & TPF_NLQOS_PDN) != 0)
25836409Ssklower 
25950904Ssklower 		tp_oktonagle:1,			/* Last unsent packet that may be append to */
26050940Ssklower 		tp_notdetached:1,		/* Call tp_detach before freeing XXXXXXX */
26150940Ssklower 		tp_unused:14;
26236409Ssklower 
26336409Ssklower 
26436409Ssklower #ifdef TP_PERF_MEAS
26536409Ssklower 	/* performance stats - see tp_stat.h */
26637469Ssklower 	struct tp_pmeas		*tp_p_meas;
26737469Ssklower 	struct mbuf			*tp_p_mbuf;
26836409Ssklower #endif TP_PERF_MEAS
26937469Ssklower 	/* addressing */
27037469Ssklower 	u_short				tp_domain;		/* domain (INET, ISO) */
27137469Ssklower 	/* for compatibility with the *old* way and with INET, be sure that
27237469Ssklower 	 * that lsuffix and fsuffix are aligned to a short addr.
27337469Ssklower 	 * having them follow the u_short *suffixlen should suffice (choke)
27437469Ssklower 	 */
27537469Ssklower 	u_short				tp_fsuffixlen;	/* foreign suffix */
27637469Ssklower 	char				tp_fsuffix[MAX_TSAP_SEL_LEN];
27737469Ssklower 	u_short				tp_lsuffixlen;	/* local suffix */
27837469Ssklower 	char				tp_lsuffix[MAX_TSAP_SEL_LEN];
27937469Ssklower #define SHORT_LSUFXP(tpcb) ((short *)((tpcb)->tp_lsuffix))
28037469Ssklower #define SHORT_FSUFXP(tpcb) ((short *)((tpcb)->tp_fsuffix))
28137469Ssklower 
28251007Ssklower 	/* Timer stuff */
28351007Ssklower 	u_char 				tp_vers;			/* protocol version */
28451007Ssklower 	u_char 				tp_peer_acktime;	/* used for DT retrans time */
28551007Ssklower 	u_char	 			tp_refstate;		/* values REF_FROZEN, etc. above */
28651007Ssklower 	struct tp_pcb		*tp_fasttimeo;		/* limit pcbs to examine */
28751007Ssklower 	struct Ccallout 	tp_refcallout[N_CTIMERS]; /* C timers */
28851007Ssklower 	struct Ecallarg		tp_retransargs;		/* dunt ask ... */
28937469Ssklower 
29037469Ssklower 	struct sockbuf		tp_Xsnd;		/* for expedited data */
29137469Ssklower /*	struct sockbuf		tp_Xrcv;		/* for expedited data */
29237469Ssklower #define tp_Xrcv tp_sock->so_rcv
29337469Ssklower 	SeqNum				tp_Xsndnxt;	/* next XPD seq # to send */
29437469Ssklower 	SeqNum				tp_Xuna;		/* seq # of unacked XPD */
29537469Ssklower 	SeqNum				tp_Xrcvnxt;	/* next XPD seq # expect to recv */
29637469Ssklower 
29737469Ssklower 	/* AK subsequencing */
29837469Ssklower 	u_short				tp_s_subseq;	/* next subseq to send */
29937469Ssklower 	u_short				tp_r_subseq;	/* highest recv subseq */
30037469Ssklower 
30136409Ssklower };
30236409Ssklower 
30339919Ssklower u_int	tp_start_win;
30439919Ssklower 
30539919Ssklower #define ROUND(scaled_int) (((scaled_int) >> 8) + (((scaled_int) & 0x80) ? 1:0))
30639919Ssklower 
30739919Ssklower /* to round off a scaled int with an 8 bit fraction part */
30839919Ssklower 
30939919Ssklower #define CONG_INIT_SAMPLE(pcb) \
31039919Ssklower 	pcb->tp_cong_sample.cs_received = \
31139919Ssklower     pcb->tp_cong_sample.cs_ce_set = 0; \
31239919Ssklower     pcb->tp_cong_sample.cs_size = MAX(pcb->tp_lcredit, 1) << 1;
31339919Ssklower 
31439919Ssklower #define CONG_UPDATE_SAMPLE(pcb, ce_bit) \
31539919Ssklower     pcb->tp_cong_sample.cs_received++; \
31639919Ssklower     if (ce_bit) { \
31739919Ssklower         pcb->tp_cong_sample.cs_ce_set++; \
31839919Ssklower     } \
31939919Ssklower     if (pcb->tp_cong_sample.cs_size <= pcb->tp_cong_sample.cs_received) { \
32039919Ssklower         if ((pcb->tp_cong_sample.cs_ce_set << 1) >=  \
32139919Ssklower                     pcb->tp_cong_sample.cs_size ) { \
32239919Ssklower             pcb->tp_win_recv -= pcb->tp_win_recv >> 3; /* multiply by .875 */ \
32339919Ssklower             pcb->tp_win_recv = MAX(1 << 8, pcb->tp_win_recv); \
32439919Ssklower         } \
32539919Ssklower         else { \
32639919Ssklower             pcb->tp_win_recv += (1 << 8); /* add one to the scaled int */ \
32739919Ssklower         } \
32839919Ssklower         pcb->tp_lcredit = ROUND(pcb->tp_win_recv); \
32939919Ssklower         CONG_INIT_SAMPLE(pcb); \
33039919Ssklower     }
33139919Ssklower 
33239919Ssklower #define CONG_ACK(pcb, seq) \
33339919Ssklower { int   newacks = SEQ_SUB(pcb, seq, pcb->tp_snduna); \
33439919Ssklower 	if (newacks > 0) { \
33539919Ssklower 		pcb->tp_ackrcvd += newacks; \
33639919Ssklower 		if (pcb->tp_ackrcvd >= MIN(pcb->tp_fcredit, pcb->tp_cong_win)) { \
33739919Ssklower 			++pcb->tp_cong_win; \
33839919Ssklower 			pcb->tp_ackrcvd = 0; \
33939919Ssklower 		} \
34039919Ssklower 	} \
34139919Ssklower }
34239919Ssklower 
34344424Ssklower #ifdef KERNEL
344*51138Ssklower extern struct tp_refinfo 	tp_refinfo;
34536409Ssklower extern struct timeval 	time;
346*51138Ssklower extern struct tp_ref	*tp_ref;
34736409Ssklower extern struct tp_param	tp_param;
34844424Ssklower extern struct nl_protosw  nl_protosw[];
34944424Ssklower extern struct tp_pcb	*tp_listeners;
35051007Ssklower extern struct tp_pcb	*tp_ftimeolist;
35144424Ssklower #endif
35236409Ssklower 
35350435Ssklower #define	sototpcb(so) 	((struct tp_pcb *)(so->so_pcb))
35450435Ssklower #define	sototpref(so)	((sototpcb(so)->tp_ref))
35536409Ssklower #define	tpcbtoso(tp)	((struct socket *)((tp)->tp_sock))
35636409Ssklower #define	tpcbtoref(tp)	((struct tp_ref *)((tp)->tp_ref))
35736409Ssklower 
35836409Ssklower #endif  __TP_PCB__
359