xref: /csrg-svn/sys/netiso/tp_pcb.c (revision 39196)
136408Ssklower /***********************************************************
2*39196Ssklower 				Copyright IBM Corporation 1987
336408Ssklower 
436408Ssklower                       All Rights Reserved
536408Ssklower 
636408Ssklower Permission to use, copy, modify, and distribute this software and its
736408Ssklower documentation for any purpose and without fee is hereby granted,
836408Ssklower provided that the above copyright notice appear in all copies and that
936408Ssklower both that copyright notice and this permission notice appear in
1036408Ssklower supporting documentation, and that the name of IBM not be
1136408Ssklower used in advertising or publicity pertaining to distribution of the
1236408Ssklower software without specific, written prior permission.
1336408Ssklower 
1436408Ssklower IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
1536408Ssklower ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
1636408Ssklower IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
1736408Ssklower ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
1836408Ssklower WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
1936408Ssklower ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
2036408Ssklower SOFTWARE.
2136408Ssklower 
2236408Ssklower ******************************************************************/
2336408Ssklower 
2436408Ssklower /*
2536408Ssklower  * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison
2636408Ssklower  */
2736408Ssklower /*
2836408Ssklower  * ARGO TP
2936408Ssklower  *
3036408Ssklower  * $Header: tp_pcb.c,v 5.4 88/11/18 17:28:24 nhall Exp $
3136408Ssklower  * $Source: /usr/argo/sys/netiso/RCS/tp_pcb.c,v $
32*39196Ssklower  *	@(#)tp_pcb.c	7.4 (Berkeley) 09/22/89 *
3336408Ssklower  *
3436408Ssklower  *
3536408Ssklower  * This is the initialization and cleanup stuff -
3636408Ssklower  * for the tp machine in general as well as  for the individual pcbs.
3736408Ssklower  * tp_init() is called at system startup.  tp_attach() and tp_getref() are
3836408Ssklower  * called when a socket is created.  tp_detach() and tp_freeref()
3936408Ssklower  * are called during the closing stage and/or when the reference timer
4036408Ssklower  * goes off.
4136408Ssklower  * tp_soisdisconnecting() and tp_soisdisconnected() are tp-specific
4236408Ssklower  * versions of soisconnect*
4336408Ssklower  * and are called (obviously) during the closing phase.
4436408Ssklower  *
4536408Ssklower  */
4636408Ssklower 
4736408Ssklower #ifndef lint
4836408Ssklower static char *rcsid = "$Header: tp_pcb.c,v 5.4 88/11/18 17:28:24 nhall Exp $";
4936408Ssklower #endif lint
5036408Ssklower 
5136408Ssklower #include "argoxtwentyfive.h"
5236408Ssklower #include "types.h"
5336408Ssklower #include "param.h"
5436408Ssklower #include "mbuf.h"
5536408Ssklower #include "socket.h"
5636408Ssklower #include "socketvar.h"
5736408Ssklower #include "protosw.h"
5836408Ssklower #include "errno.h"
5936408Ssklower #include "time.h"
6037469Ssklower #include "argo_debug.h"
6137469Ssklower #include "tp_param.h"
6237469Ssklower #include "tp_timer.h"
6337469Ssklower #include "tp_ip.h"
6437469Ssklower #include "tp_stat.h"
6537469Ssklower #include "tp_pcb.h"
6637469Ssklower #include "tp_tpdu.h"
6737469Ssklower #include "tp_trace.h"
6837469Ssklower #include "tp_meas.h"
6937469Ssklower #include "tp_seq.h"
7037469Ssklower #include "tp_clnp.h"
7136408Ssklower 
7236408Ssklower /* list of reference structures */
7336408Ssklower struct tp_ref tp_ref[N_TPREF];
7436408Ssklower 
7536408Ssklower struct tp_param tp_param = {
7636408Ssklower 	1,				/*  configured 		*/
7736408Ssklower };
7836408Ssklower 
7936408Ssklower /* ticks are in units of:
8036408Ssklower  * 500 nano-fortnights ;-) or
8136408Ssklower  * 500 ms or
8236408Ssklower  * 1/2 second
8336408Ssklower  */
8436408Ssklower 
8536408Ssklower struct tp_conn_param tp_conn_param[] = {
8636408Ssklower 	/* ISO_CLNS: TP4 CONNECTION LESS */
8736408Ssklower 	{
8836408Ssklower 		TP_NRETRANS, 	/* short p_Nretrans;  */
8936408Ssklower 		20,		/* 10 sec */ 	/* short p_dr_ticks;  */
9036408Ssklower 
9136408Ssklower 		20,		/* 10 sec */ 	/* short p_cc_ticks; */
9236408Ssklower 		20,		/* 10 sec */ 	/* short p_dt_ticks; */
9336408Ssklower 
9436408Ssklower 		40,		/* 20 sec */ 	/* short p_x_ticks;	 */
9536408Ssklower 		80,		/* 40 sec */ 	/* short p_cr_ticks;*/
9636408Ssklower 
9736408Ssklower 		240,	/* 2 min */ 	/* short p_keepalive_ticks;*/
9836408Ssklower 		10,		/* 5 sec */ 	/* short p_sendack_ticks;  */
9936408Ssklower 
10036408Ssklower 		600,	/* 5 min */ 	/* short p_ref_ticks;	*/
10136408Ssklower 		360,	/* 3 min */ 	/* short p_inact_ticks;	*/
10236408Ssklower 
10336408Ssklower 		(short) 100, 			/* short p_lcdtfract */
10436408Ssklower 		(short) TP_SOCKBUFSIZE,	/* short p_winsize */
10536408Ssklower 		TP_TPDUSIZE, 			/* u_char p_tpdusize */
10636408Ssklower 
10736408Ssklower 		TPACK_WINDOW, 			/* 4 bits p_ack_strat */
10836408Ssklower 		TPRX_USE_CW | TPRX_FASTSTART,
10936408Ssklower 								/* 4 bits p_rx_strat*/
11036408Ssklower 		TP_CLASS_4 | TP_CLASS_0,/* 5 bits p_class */
11136408Ssklower 		1,						/* 1 bit xtd format */
11236408Ssklower 		1,						/* 1 bit xpd service */
11336408Ssklower 		1,						/* 1 bit use_checksum */
11436408Ssklower 		0,						/* 1 bit use net xpd */
11536408Ssklower 		0,						/* 1 bit use rcc */
11636408Ssklower 		0,						/* 1 bit use efc */
11738841Ssklower 		1,						/* no disc indications */
11836408Ssklower 		0,						/* don't change params */
11936408Ssklower 		ISO_CLNS,				/* p_netservice */
12036408Ssklower 	},
12136408Ssklower 	/* IN_CLNS: TP4 CONNECTION LESS */
12236408Ssklower 	{
12336408Ssklower 		TP_NRETRANS, 	/* short p_Nretrans;  */
12436408Ssklower 		20,		/* 10 sec */ 	/* short p_dr_ticks;  */
12536408Ssklower 
12636408Ssklower 		20,		/* 10 sec */ 	/* short p_cc_ticks; */
12736408Ssklower 		20,		/* 10 sec */ 	/* short p_dt_ticks; */
12836408Ssklower 
12936408Ssklower 		40,		/* 20 sec */ 	/* short p_x_ticks;	 */
13036408Ssklower 		80,		/* 40 sec */ 	/* short p_cr_ticks;*/
13136408Ssklower 
13236408Ssklower 		240,	/* 2 min */ 	/* short p_keepalive_ticks;*/
13336408Ssklower 		10,		/* 5 sec */ 	/* short p_sendack_ticks;  */
13436408Ssklower 
13536408Ssklower 		600,	/* 5 min */ 	/* short p_ref_ticks;	*/
13636408Ssklower 		360,	/* 3 min */ 	/* short p_inact_ticks;	*/
13736408Ssklower 
13836408Ssklower 		(short) 100, 			/* short p_lcdtfract */
13936408Ssklower 		(short) TP_SOCKBUFSIZE,	/* short p_winsize */
14036408Ssklower 		TP_TPDUSIZE, 			/* u_char p_tpdusize */
14136408Ssklower 
14236408Ssklower 		TPACK_WINDOW, 			/* 4 bits p_ack_strat */
14336408Ssklower 		TPRX_USE_CW | TPRX_FASTSTART,
14436408Ssklower 								/* 4 bits p_rx_strat*/
14536408Ssklower 		TP_CLASS_4,				/* 5 bits p_class */
14636408Ssklower 		1,						/* 1 bit xtd format */
14736408Ssklower 		1,						/* 1 bit xpd service */
14836408Ssklower 		1,						/* 1 bit use_checksum */
14936408Ssklower 		0,						/* 1 bit use net xpd */
15036408Ssklower 		0,						/* 1 bit use rcc */
15136408Ssklower 		0,						/* 1 bit use efc */
15238841Ssklower 		1,						/* no disc indications */
15336408Ssklower 		0,						/* don't change params */
15436408Ssklower 		IN_CLNS,				/* p_netservice */
15536408Ssklower 	},
15636408Ssklower 	/* ISO_CONS: TP0 CONNECTION MODE */
15736408Ssklower 	{
15836408Ssklower 		TP_NRETRANS, 			/* short p_Nretrans;  */
15936408Ssklower 		0,		/* n/a */		/* short p_dr_ticks; */
16036408Ssklower 
16136408Ssklower 		40,		/* 20 sec */	/* short p_cc_ticks; */
16236408Ssklower 		0,		/* n/a */		/* short p_dt_ticks; */
16336408Ssklower 
16436408Ssklower 		0,		/* n/a */		/* short p_x_ticks;	*/
16536408Ssklower 		360,	/* 3  min */	/* short p_cr_ticks;*/
16636408Ssklower 
16736408Ssklower 		0,		/* n/a */		/* short p_keepalive_ticks;*/
16836408Ssklower 		0,		/* n/a */		/* short p_sendack_ticks; */
16936408Ssklower 
17036408Ssklower 		600,	/* for cr/cc to clear *//* short p_ref_ticks;	*/
17136408Ssklower 		0,		/* n/a */		/* short p_inact_ticks;	*/
17236408Ssklower 
17336408Ssklower 		/* Use tp4 defaults just in case the user changes ONLY
17436408Ssklower 		 * the class
17536408Ssklower 		 */
17636408Ssklower 		(short) 100, 			/* short p_lcdtfract */
17736408Ssklower 		(short) TP0_SOCKBUFSIZE,	/* short p_winsize */
17836408Ssklower 		TP0_TPDUSIZE, 			/* 8 bits p_tpdusize */
17936408Ssklower 
18036408Ssklower 		0, 						/* 4 bits p_ack_strat */
18136408Ssklower 		0, 						/* 4 bits p_rx_strat*/
18236408Ssklower 		TP_CLASS_0,				/* 5 bits p_class */
18336408Ssklower 		0,						/* 1 bit xtd format */
18436408Ssklower 		0,						/* 1 bit xpd service */
18536408Ssklower 		0,						/* 1 bit use_checksum */
18636408Ssklower 		0,						/* 1 bit use net xpd */
18736408Ssklower 		0,						/* 1 bit use rcc */
18836408Ssklower 		0,						/* 1 bit use efc */
18936408Ssklower 		0,						/* no disc indications */
19036408Ssklower 		0,						/* don't change params */
19136408Ssklower 		ISO_CONS,				/* p_netservice */
19236408Ssklower 	},
19336408Ssklower 	/* ISO_COSNS: TP4 CONNECTION LESS SERVICE over CONSNS */
19436408Ssklower 	{
19536408Ssklower 		TP_NRETRANS, 	/* short p_Nretrans;  */
19636408Ssklower 		40,		/* 20 sec */ 	/* short p_dr_ticks;  */
19736408Ssklower 
19836408Ssklower 		40,		/* 20 sec */ 	/* short p_cc_ticks; */
19936408Ssklower 		80,		/* 40 sec */ 	/* short p_dt_ticks; */
20036408Ssklower 
20136408Ssklower 		120,		/* 1 min */ 	/* short p_x_ticks;	 */
20236408Ssklower 		360,		/* 3 min */ 	/* short p_cr_ticks;*/
20336408Ssklower 
20436408Ssklower 		360,	/* 3 min */ 	/* short p_keepalive_ticks;*/
20536408Ssklower 		20,		/* 10 sec */ 	/* short p_sendack_ticks;  */
20636408Ssklower 
20736408Ssklower 		600,	/* 5 min */ 	/* short p_ref_ticks;	*/
20836408Ssklower 		480,	/* 4 min */ 	/* short p_inact_ticks;	*/
20936408Ssklower 
21036408Ssklower 		(short) 100, 			/* short p_lcdtfract */
21136408Ssklower 		(short) TP0_SOCKBUFSIZE,	/* short p_winsize */
21236408Ssklower 		TP0_TPDUSIZE, 			/* u_char p_tpdusize */
21336408Ssklower 
21436408Ssklower 		TPACK_WINDOW, 			/* 4 bits p_ack_strat */
21536408Ssklower 		TPRX_USE_CW ,			/* No fast start */
21636408Ssklower 								/* 4 bits p_rx_strat*/
21736408Ssklower 		TP_CLASS_4 | TP_CLASS_0,/* 5 bits p_class */
21836408Ssklower 		0,						/* 1 bit xtd format */
21936408Ssklower 		1,						/* 1 bit xpd service */
22036408Ssklower 		1,						/* 1 bit use_checksum */
22136408Ssklower 		0,						/* 1 bit use net xpd */
22236408Ssklower 		0,						/* 1 bit use rcc */
22336408Ssklower 		0,						/* 1 bit use efc */
22436408Ssklower 		0,						/* no disc indications */
22536408Ssklower 		0,						/* don't change params */
22636408Ssklower 		ISO_COSNS,				/* p_netservice */
22736408Ssklower 	},
22836408Ssklower };
22936408Ssklower 
23036408Ssklower #ifdef INET
23136408Ssklower int		in_putnetaddr();
23236408Ssklower int		in_getnetaddr();
23336408Ssklower int 	in_putsufx();
23436408Ssklower int 	in_getsufx();
23536408Ssklower int 	in_recycle_tsuffix();
23636408Ssklower int 	tpip_mtu();
23736408Ssklower int 	in_pcbbind();
23836408Ssklower int 	in_pcbconnect();
23936408Ssklower int 	in_pcbdisconnect();
24036408Ssklower int 	in_pcbdetach();
24136408Ssklower int 	in_pcballoc();
24236408Ssklower int 	tpip_output();
24336408Ssklower int 	tpip_output_dg();
24436408Ssklower struct inpcb	tp_inpcb;
24536408Ssklower #endif INET
24636408Ssklower #ifdef ISO
24736408Ssklower int		iso_putnetaddr();
24836408Ssklower int		iso_getnetaddr();
24936408Ssklower int 	iso_putsufx();
25036408Ssklower int 	iso_getsufx();
25136408Ssklower int 	iso_recycle_tsuffix();
25236408Ssklower int		tpclnp_mtu();
25336408Ssklower int		iso_pcbbind();
25436408Ssklower int		iso_pcbconnect();
25536408Ssklower int		iso_pcbdisconnect();
25636408Ssklower int 	iso_pcbdetach();
25736408Ssklower int 	iso_pcballoc();
25836408Ssklower int 	tpclnp_output();
25936408Ssklower int 	tpclnp_output_dg();
26036408Ssklower int		iso_nlctloutput();
26136408Ssklower struct isopcb	tp_isopcb;
26236408Ssklower #endif ISO
26336408Ssklower #if NARGOXTWENTYFIVE > 0
26436408Ssklower int		iso_putnetaddr();
26536408Ssklower int		iso_getnetaddr();
26636408Ssklower int 	iso_putsufx();
26736408Ssklower int 	iso_getsufx();
26836408Ssklower int 	iso_recycle_tsuffix();
26936408Ssklower int		tpcons_mtu();
27036408Ssklower int		iso_pcbbind();
27136408Ssklower int		iso_pcbconnect();
27236408Ssklower int		iso_pcbdisconnect();
27336408Ssklower int 	iso_pcbdetach();
27436408Ssklower int 	iso_pcballoc();
27536408Ssklower int 	tpcons_output();
27636408Ssklower int 	tpcons_output_dg();
27736408Ssklower struct isopcb	tp_isopcb;
27836408Ssklower #endif NARGOXTWENTYFIVE
27936408Ssklower 
28037469Ssklower 
28136408Ssklower struct nl_protosw nl_protosw[] = {
28236408Ssklower 	/* ISO_CLNS */
28336408Ssklower #ifdef ISO
28436408Ssklower 	{ AF_ISO, iso_putnetaddr, iso_getnetaddr,
28536408Ssklower 		iso_putsufx, iso_getsufx,
28636408Ssklower 		iso_recycle_tsuffix,
28736408Ssklower 		tpclnp_mtu, iso_pcbbind, iso_pcbconnect,
28836408Ssklower 		iso_pcbdisconnect,	iso_pcbdetach,
28936408Ssklower 		iso_pcballoc,
29036408Ssklower 		tpclnp_output, tpclnp_output_dg, iso_nlctloutput,
29136408Ssklower 		(caddr_t) &tp_isopcb,
29236408Ssklower 		},
29337469Ssklower #else
29437469Ssklower 	{ 0 },
29536408Ssklower #endif ISO
29636408Ssklower 	/* IN_CLNS */
29736408Ssklower #ifdef INET
29836408Ssklower 	{ AF_INET, in_putnetaddr, in_getnetaddr,
29936408Ssklower 		in_putsufx, in_getsufx,
30036408Ssklower 		in_recycle_tsuffix,
30136408Ssklower 		tpip_mtu, in_pcbbind, in_pcbconnect,
30236408Ssklower 		in_pcbdisconnect,	in_pcbdetach,
30336408Ssklower 		in_pcballoc,
30436408Ssklower 		tpip_output, tpip_output_dg, /* nl_ctloutput */ NULL,
30536408Ssklower 		(caddr_t) &tp_inpcb,
30636408Ssklower 		},
30737469Ssklower #else
30837469Ssklower 	{ 0 },
30936408Ssklower #endif INET
31036408Ssklower 	/* ISO_CONS */
31137469Ssklower #if defined(ISO) && (NARGOXTWENTYFIVE > 0)
31236408Ssklower 	{ AF_ISO, iso_putnetaddr, iso_getnetaddr,
31336408Ssklower 		iso_putsufx, iso_getsufx,
31436408Ssklower 		iso_recycle_tsuffix,
31536408Ssklower 		tpcons_mtu, iso_pcbbind, iso_pcbconnect,
31636408Ssklower 		iso_pcbdisconnect,	iso_pcbdetach,
31736408Ssklower 		iso_pcballoc,
31836408Ssklower 		tpcons_output, tpcons_output_dg, iso_nlctloutput,
31936408Ssklower 		(caddr_t) &tp_isopcb,
32036408Ssklower 		},
32137469Ssklower #else
32237469Ssklower 	{ 0 },
32337469Ssklower #endif ISO_CONS
32437469Ssklower 	/* End of protosw marker */
32537469Ssklower 	{ 0 }
32636408Ssklower };
32736408Ssklower 
32836408Ssklower /*
32936408Ssklower  * NAME:  tp_init()
33036408Ssklower  *
33136408Ssklower  * CALLED FROM:
33236408Ssklower  *  autoconf through the protosw structure
33336408Ssklower  *
33436408Ssklower  * FUNCTION:
33536408Ssklower  *  initialize tp machine
33636408Ssklower  *
33736408Ssklower  * RETURNS:  Nada
33836408Ssklower  *
33936408Ssklower  * SIDE EFFECTS:
34036408Ssklower  *
34136408Ssklower  * NOTES:
34236408Ssklower  */
34337469Ssklower int
34436408Ssklower tp_init()
34536408Ssklower {
34636408Ssklower 	static int 	init_done=0;
34736408Ssklower 	void	 	tp_timerinit();
34836408Ssklower 
34936408Ssklower 	if (init_done++)
35037469Ssklower 		return 0;
35136408Ssklower 
35236408Ssklower 
35336408Ssklower 	/* FOR INET */
35436408Ssklower 	tp_inpcb.inp_next = tp_inpcb.inp_prev = &tp_inpcb;
35536408Ssklower 	/* FOR ISO */
35636408Ssklower 	tp_isopcb.isop_next = tp_isopcb.isop_prev = &tp_isopcb;
35736408Ssklower 
35836408Ssklower 	tp_timerinit();
35936408Ssklower 	bzero((caddr_t)&tp_stat, sizeof(struct tp_stat));
36037469Ssklower 	return 0;
36136408Ssklower }
36236408Ssklower 
36336408Ssklower /*
36436408Ssklower  * NAME: 	tp_soisdisconnecting()
36536408Ssklower  *
36636408Ssklower  * CALLED FROM:
36736408Ssklower  *  tp.trans
36836408Ssklower  *
36936408Ssklower  * FUNCTION and ARGUMENTS:
37036408Ssklower  *  Set state of the socket (so) to reflect that fact that we're disconnectING
37136408Ssklower  *
37236408Ssklower  * RETURNS: 	Nada
37336408Ssklower  *
37436408Ssklower  * SIDE EFFECTS:
37536408Ssklower  *
37636408Ssklower  * NOTES:
37736408Ssklower  *  This differs from the regular soisdisconnecting() in that the latter
37836408Ssklower  *  also sets the SS_CANTRECVMORE and SS_CANTSENDMORE flags.
37936408Ssklower  *  We don't want to set those flags because those flags will cause
38036408Ssklower  *  a SIGPIPE to be delivered in sosend() and we don't like that.
38136408Ssklower  *  If anyone else is sleeping on this socket, wake 'em up.
38236408Ssklower  */
38336408Ssklower void
38436408Ssklower tp_soisdisconnecting(so)
38536408Ssklower 	register struct socket *so;
38636408Ssklower {
38738841Ssklower 	soisdisconnecting(so);
38838841Ssklower 	so->so_state &= ~SS_CANTSENDMORE;
38936408Ssklower 	IFPERF(sototpcb(so))
39036408Ssklower 		register struct tp_pcb *tpcb = sototpcb(so);
39136408Ssklower 		u_int 	fsufx, lsufx;
39236408Ssklower 
39337469Ssklower 		bcopy ((caddr_t)tpcb->tp_fsuffix, (caddr_t)&fsufx, sizeof(u_int) );
39437469Ssklower 		bcopy ((caddr_t)tpcb->tp_lsuffix, (caddr_t)&lsufx, sizeof(u_int) );
39536408Ssklower 
39637469Ssklower 		tpmeas(tpcb->tp_lref, TPtime_close, &time, fsufx, lsufx, tpcb->tp_fref);
39736408Ssklower 		tpcb->tp_perf_on = 0; /* turn perf off */
39836408Ssklower 	ENDPERF
39936408Ssklower }
40036408Ssklower 
40136408Ssklower 
40236408Ssklower /*
40336408Ssklower  * NAME: tp_soisdisconnected()
40436408Ssklower  *
40536408Ssklower  * CALLED FROM:
40636408Ssklower  *	tp.trans
40736408Ssklower  *
40836408Ssklower  * FUNCTION and ARGUMENTS:
40936408Ssklower  *  Set state of the socket (so) to reflect that fact that we're disconnectED
41036408Ssklower  *  Set the state of the reference structure to closed, and
41136408Ssklower  *  recycle the suffix.
41236408Ssklower  *  Start a reference timer.
41336408Ssklower  *
41436408Ssklower  * RETURNS:	Nada
41536408Ssklower  *
41636408Ssklower  * SIDE EFFECTS:
41736408Ssklower  *
41836408Ssklower  * NOTES:
41936408Ssklower  *  This differs from the regular soisdisconnected() in that the latter
42036408Ssklower  *  also sets the SS_CANTRECVMORE and SS_CANTSENDMORE flags.
42136408Ssklower  *  We don't want to set those flags because those flags will cause
42236408Ssklower  *  a SIGPIPE to be delivered in sosend() and we don't like that.
42336408Ssklower  *  If anyone else is sleeping on this socket, wake 'em up.
42436408Ssklower  */
42536408Ssklower void
42636408Ssklower tp_soisdisconnected(tpcb)
42736408Ssklower 	register struct tp_pcb	*tpcb;
42836408Ssklower {
42936408Ssklower 	register struct socket	*so = tpcb->tp_sock;
43036408Ssklower 
43138841Ssklower 	soisdisconnecting(so);
43238841Ssklower 	so->so_state &= ~SS_CANTSENDMORE;
43336408Ssklower 	IFPERF(sototpcb(so))
43437469Ssklower 		register struct tp_pcb *ttpcb = sototpcb(so);
43536408Ssklower 		u_int 	fsufx, lsufx;
43636408Ssklower 
43736408Ssklower 		/* CHOKE */
43837469Ssklower 		bcopy ((caddr_t)ttpcb->tp_fsuffix, (caddr_t)&fsufx, sizeof(u_int) );
43937469Ssklower 		bcopy ((caddr_t)ttpcb->tp_lsuffix, (caddr_t)&lsufx, sizeof(u_int) );
44036408Ssklower 
44137469Ssklower 		tpmeas(ttpcb->tp_lref, TPtime_close,
44237469Ssklower 		   &time, &lsufx, &fsufx, ttpcb->tp_fref);
44336408Ssklower 		tpcb->tp_perf_on = 0; /* turn perf off */
44436408Ssklower 	ENDPERF
44536408Ssklower 
44636408Ssklower 	tpcb->tp_refp->tpr_state = REF_FROZEN;
44736408Ssklower 	tp_recycle_tsuffix( tpcb );
44836408Ssklower 	tp_etimeout(tpcb->tp_refp, TM_reference, 0,0,0, (int)tpcb->tp_refer_ticks);
44936408Ssklower }
45036408Ssklower 
45136408Ssklower int tp_maxrefopen;  /* highest reference # of the set of open tp connections */
45236408Ssklower 
45336408Ssklower /*
45436408Ssklower  * NAME:	tp_freeref()
45536408Ssklower  *
45636408Ssklower  * CALLED FROM:
45736408Ssklower  *  tp.trans when the reference timer goes off, and
45836408Ssklower  *  from tp_attach() and tp_detach() when a tpcb is partially set up but not
45936408Ssklower  *  set up enough to have a ref timer set for it, and it's discarded
46036408Ssklower  *  due to some sort of error or an early close()
46136408Ssklower  *
46236408Ssklower  * FUNCTION and ARGUMENTS:
46336408Ssklower  *  Frees the reference represented by (r) for re-use.
46436408Ssklower  *
46536408Ssklower  * RETURNS: Nothing
46636408Ssklower  *
46736408Ssklower  * SIDE EFFECTS:
46836408Ssklower  *
46936408Ssklower  * NOTES:	better be called at clock priority !!!!!
47036408Ssklower  */
47136408Ssklower void
47236408Ssklower tp_freeref(r)
47336408Ssklower 	register struct tp_ref *r;
47436408Ssklower {
47536408Ssklower 	IFDEBUG(D_TIMER)
47636408Ssklower 		printf("tp_freeref called for ref %d maxrefopen %d\n",
47736408Ssklower 		r - tp_ref, tp_maxrefopen);
47836408Ssklower 	ENDDEBUG
47936408Ssklower 	IFTRACE(D_TIMER)
48036408Ssklower 		tptrace(TPPTmisc, "tp_freeref ref tp_maxrefopen",
48136408Ssklower 		r - tp_ref, tp_maxrefopen, 0, 0);
48236408Ssklower 	ENDTRACE
48336408Ssklower 	r->tpr_state = REF_FREE;
48436408Ssklower 	IFDEBUG(D_CONN)
48536408Ssklower 		printf("tp_freeref: CLEARING tpr_pcb 0x%x\n", r->tpr_pcb);
48636408Ssklower 	ENDDEBUG
48736408Ssklower 	r->tpr_pcb = (struct tp_pcb *)0;
48836408Ssklower 
48936408Ssklower 	r = &tp_ref[tp_maxrefopen];
49036408Ssklower 
49136408Ssklower 	while( tp_maxrefopen > 0 ) {
49236408Ssklower 		if(r->tpr_state )
49336408Ssklower 			break;
49436408Ssklower 		tp_maxrefopen--;
49536408Ssklower 		r--;
49636408Ssklower 	}
49736408Ssklower 	IFDEBUG(D_TIMER)
49836408Ssklower 		printf("tp_freeref ends w/ maxrefopen %d\n", tp_maxrefopen);
49936408Ssklower 	ENDDEBUG
50036408Ssklower }
50136408Ssklower 
50236408Ssklower /*
50336408Ssklower  * NAME:  tp_getref()
50436408Ssklower  *
50536408Ssklower  * CALLED FROM:
50636408Ssklower  *  tp_attach()
50736408Ssklower  *
50836408Ssklower  * FUNCTION and ARGUMENTS:
50936408Ssklower  *  obtains the next free reference and allocates the appropriate
51036408Ssklower  *  ref structure, links that structure to (tpcb)
51136408Ssklower  *
51236408Ssklower  * RETURN VALUE:
51336408Ssklower  *	a reference number
51436408Ssklower  *  or TP_ENOREF
51536408Ssklower  *
51636408Ssklower  * SIDE EFFECTS:
51736408Ssklower  *
51836408Ssklower  * NOTES:
51936408Ssklower  */
52036408Ssklower static RefNum
52136408Ssklower tp_getref(tpcb)
52236408Ssklower 	register struct tp_pcb *tpcb;
52336408Ssklower {
52436408Ssklower 	register struct tp_ref	*r = tp_ref;
52536408Ssklower 	register int 			i=1;
52636408Ssklower 
52736408Ssklower 	r++; /* tp_ref[0] is never used */
52836408Ssklower 
52936408Ssklower 	/* REF_FREE is zero */
53036408Ssklower 	while( r->tpr_state ) {
53136408Ssklower 		r++;
53236408Ssklower 		if ( i == N_TPREF ) {
53336408Ssklower 			return TP_ENOREF;
53436408Ssklower 		}
53536408Ssklower 		i++;
53636408Ssklower 	}
53736408Ssklower 	r->tpr_state = REF_OPENING;
53836408Ssklower 	if (tp_maxrefopen < i)
53936408Ssklower 		tp_maxrefopen = i;
54036408Ssklower 	r->tpr_pcb = tpcb;
54136408Ssklower 	tpcb->tp_refp = r;
54236408Ssklower 
54336408Ssklower 	return i;
54436408Ssklower }
54536408Ssklower 
54636408Ssklower /*
54736408Ssklower  * NAME: tp_attach()
54836408Ssklower  *
54936408Ssklower  * CALLED FROM:
55036408Ssklower  *	tp_usrreq, PRU_ATTACH
55136408Ssklower  *
55236408Ssklower  * FUNCTION and ARGUMENTS:
55336408Ssklower  *  given a socket (so) and a protocol family (dom), allocate a tpcb
55436408Ssklower  *  and ref structure, initialize everything in the structures that
55536408Ssklower  *  needs to be initialized.
55636408Ssklower  *
55736408Ssklower  * RETURN VALUE:
55836408Ssklower  *  0 ok
55936408Ssklower  *  EINVAL if DEBUG(X) in is on and a disaster has occurred
56036408Ssklower  *  ENOPROTOOPT if TP hasn't been configured or if the
56136408Ssklower  *   socket wasn't created with tp as its protocol
56236408Ssklower  *  EISCONN if this socket is already part of a connection
56336408Ssklower  *  ETOOMANYREFS if ran out of tp reference numbers.
56436408Ssklower  *  E* whatever error is returned from soreserve()
56536408Ssklower  *    for from the network-layer pcb allocation routine
56636408Ssklower  *
56736408Ssklower  * SIDE EFFECTS:
56836408Ssklower  *
56936408Ssklower  * NOTES:
57036408Ssklower  */
57137469Ssklower tp_attach(so, dom)
57236408Ssklower 	struct socket 	*so;
57336408Ssklower 	int 			dom;
57436408Ssklower {
57536408Ssklower 	register struct tp_pcb	*tpcb;
57636408Ssklower 	int 					error;
57736408Ssklower 	int 					protocol = so->so_proto->pr_protocol;
57836408Ssklower 	extern struct tp_conn_param tp_conn_param[];
57936408Ssklower 
58036408Ssklower 	IFDEBUG(D_CONN)
58136408Ssklower 		printf("tp_attach:dom 0x%x so 0x%x ", dom, so);
58236408Ssklower 	ENDDEBUG
58336408Ssklower 	IFTRACE(D_CONN)
58436408Ssklower 		tptrace(TPPTmisc, "tp_attach:dom so", dom, so, 0, 0);
58536408Ssklower 	ENDTRACE
58636408Ssklower 	if ( ! tp_param.tpp_configed ) {
58736408Ssklower 		error = ENOPROTOOPT; /* protocol not available */
58836408Ssklower 		goto bad2;
58936408Ssklower 	}
59036408Ssklower 
59136408Ssklower 	if (so->so_pcb != NULL) {
59236408Ssklower 		return EISCONN;	/* socket already part of a connection*/
59336408Ssklower 	}
59436408Ssklower 
59536408Ssklower 	error = soreserve(so, TP_SOCKBUFSIZE, TP_SOCKBUFSIZE);
59636408Ssklower 		/* later an ioctl will allow reallocation IF still in closed state */
59736408Ssklower 
59836408Ssklower 	if (error)
59936408Ssklower 		goto bad2;
60036408Ssklower 
60137469Ssklower 	MALLOC(tpcb, struct tp_pcb *, sizeof(*tpcb), M_PCB, M_NOWAIT);
60237469Ssklower 	if (tpcb == NULL) {
60336408Ssklower 		error = ENOBUFS;
60436408Ssklower 		goto bad2;
60536408Ssklower 	}
60636408Ssklower 	bzero( (caddr_t)tpcb, sizeof (struct tp_pcb) );
60736408Ssklower 
60836408Ssklower 	if ( ((tpcb->tp_lref = tp_getref(tpcb)) &  TP_ENOREF) != 0 ) {
60936408Ssklower 		error = ETOOMANYREFS;
61036408Ssklower 		goto bad3;
61136408Ssklower 	}
61236408Ssklower 	tpcb->tp_sock =  so;
61336408Ssklower 	tpcb->tp_domain = dom;
61436408Ssklower 	if (protocol<ISOPROTO_TP4) {
61536408Ssklower 		tpcb->tp_netservice = ISO_CONS;
61636408Ssklower 		tpcb->tp_snduna = (SeqNum) -1;/* kludge so the pseudo-ack from the CR/CC
61736408Ssklower 								 * will generate correct fake-ack values
61836408Ssklower 								 */
61936408Ssklower 	} else {
62036408Ssklower 		tpcb->tp_netservice = (dom== AF_INET)?IN_CLNS:ISO_CLNS;
62136408Ssklower 		/* the default */
62236408Ssklower 	}
62336408Ssklower 	tpcb->_tp_param = tp_conn_param[tpcb->tp_netservice];
62436408Ssklower 
62536408Ssklower 	tpcb->tp_cong_win = 1;
62636408Ssklower 	tpcb->tp_state = TP_CLOSED;
62736408Ssklower 	tpcb->tp_vers  = TP_VERSION;
62836408Ssklower 
62936408Ssklower 		   /* Spec says default is 128 octets,
63036408Ssklower 			* that is, if the tpdusize argument never appears, use 128.
63136408Ssklower 			* As the initiator, we will always "propose" the 2048
63236408Ssklower 			* size, that is, we will put this argument in the CR
63336408Ssklower 			* always, but accept what the other side sends on the CC.
63436408Ssklower 			* If the initiator sends us something larger on a CR,
63536408Ssklower 			* we'll respond w/ this.
63636408Ssklower 			* Our maximum is 4096.  See tp_chksum.c comments.
63736408Ssklower 			*/
63836408Ssklower 	tpcb->tp_l_tpdusize = 1 << tpcb->tp_tpdusize;
63936408Ssklower 
64036408Ssklower 	tpcb->tp_seqmask  = TP_NML_FMT_MASK;
64136408Ssklower 	tpcb->tp_seqbit  =  TP_NML_FMT_BIT;
64236408Ssklower 	tpcb->tp_seqhalf  =  tpcb->tp_seqbit >> 1;
64336408Ssklower 	tpcb->tp_sndhiwat = (SeqNum) - 1; /* a kludge but it works */
64436408Ssklower 	tpcb->tp_s_subseq = 0;
64536408Ssklower 
64636408Ssklower 	/* attach to a network-layer protoswitch */
64736408Ssklower 	/* new way */
64836408Ssklower 	tpcb->tp_nlproto = & nl_protosw[tpcb->tp_netservice];
64936408Ssklower 	ASSERT( tpcb->tp_nlproto->nlp_afamily == tpcb->tp_domain);
65036408Ssklower #ifdef notdef
65136408Ssklower 	/* OLD WAY */
65236408Ssklower 	/* TODO: properly, this search would be on the basis of
65336408Ssklower 	* domain,netservice or just netservice only (if you have
65436408Ssklower 	* IN_CLNS, ISO_CLNS, and ISO_CONS)
65536408Ssklower 	*/
65636408Ssklower 	tpcb->tp_nlproto = nl_protosw;
65736408Ssklower 	while(tpcb->tp_nlproto->nlp_afamily != tpcb->tp_domain )  {
65836408Ssklower 		if( tpcb->tp_nlproto->nlp_afamily == 0 ) {
65936408Ssklower 			error = EAFNOSUPPORT;
66036408Ssklower 			goto bad4;
66136408Ssklower 		}
66236408Ssklower 		tpcb->tp_nlproto ++;
66336408Ssklower 	}
66436408Ssklower #endif notdef
66536408Ssklower 
66636408Ssklower 	/* xx_pcballoc sets so_pcb */
66736408Ssklower 	if ( error =  (tpcb->tp_nlproto->nlp_pcballoc) (
66836408Ssklower 							so, tpcb->tp_nlproto->nlp_pcblist ) ) {
66936408Ssklower 		goto bad4;
67036408Ssklower 	}
67136408Ssklower 
67236408Ssklower 	if( dom == AF_INET )
67336408Ssklower 		sotoinpcb(so)->inp_ppcb = (caddr_t) tpcb;
67436408Ssklower 		/* nothing to do for iso case */
67536408Ssklower 
67636408Ssklower 	tpcb->tp_npcb = (caddr_t) so->so_pcb;
67736408Ssklower 	so->so_tpcb = (caddr_t) tpcb;
67836408Ssklower 
67936408Ssklower 	return 0;
68036408Ssklower 
68136408Ssklower bad4:
68236408Ssklower 	IFDEBUG(D_CONN)
68336408Ssklower 		printf("BAD4 in tp_attach, so 0x%x\n", so);
68436408Ssklower 	ENDDEBUG
68536408Ssklower 	tp_freeref(tpcb->tp_refp);
68636408Ssklower 
68736408Ssklower bad3:
68836408Ssklower 	IFDEBUG(D_CONN)
68936408Ssklower 		printf("BAD3 in tp_attach, so 0x%x\n", so);
69036408Ssklower 	ENDDEBUG
69136408Ssklower 
69237469Ssklower 	free((caddr_t)tpcb, M_PCB); /* never a cluster  */
69336408Ssklower 
69436408Ssklower bad2:
69536408Ssklower 	IFDEBUG(D_CONN)
69636408Ssklower 		printf("BAD2 in tp_attach, so 0x%x\n", so);
69736408Ssklower 	ENDDEBUG
69836408Ssklower 	so->so_pcb = 0;
69936408Ssklower 	so->so_tpcb = 0;
70036408Ssklower 	sofree(so);
70136408Ssklower 
70237469Ssklower /*bad:*/
70336408Ssklower 	IFDEBUG(D_CONN)
70436408Ssklower 		printf("BAD in tp_attach, so 0x%x\n", so);
70536408Ssklower 	ENDDEBUG
70636408Ssklower 	return error;
70736408Ssklower }
70836408Ssklower 
70936408Ssklower /*
71036408Ssklower  * NAME:  tp_detach()
71136408Ssklower  *
71236408Ssklower  * CALLED FROM:
71336408Ssklower  *	tp.trans, on behalf of a user close request
71436408Ssklower  *  and when the reference timer goes off
71536408Ssklower  * (if the disconnect  was initiated by the protocol entity
71636408Ssklower  * rather than by the user)
71736408Ssklower  *
71836408Ssklower  * FUNCTION and ARGUMENTS:
71936408Ssklower  *  remove the tpcb structure from the list of active or
72036408Ssklower  *  partially active connections, recycle all the mbufs
72136408Ssklower  *  associated with the pcb, ref structure, sockbufs, etc.
72236408Ssklower  *  Only free the ref structure if you know that a ref timer
72336408Ssklower  *  wasn't set for this tpcb.
72436408Ssklower  *
72536408Ssklower  * RETURNS:  Nada
72636408Ssklower  *
72736408Ssklower  * SIDE EFFECTS:
72836408Ssklower  *
72936408Ssklower  * NOTES:
73036408Ssklower  *  tp_soisdisconnected() was already when this is called
73136408Ssklower  */
73236408Ssklower void
73336408Ssklower tp_detach(tpcb)
73436408Ssklower 	register struct tp_pcb 	*tpcb;
73536408Ssklower {
73636408Ssklower 	void					tp_freeref();
73736408Ssklower 	register struct socket	 *so = tpcb->tp_sock;
73836408Ssklower 
73936408Ssklower 	IFDEBUG(D_CONN)
74037469Ssklower 		printf("tp_detach(tpcb 0x%x, so 0x%x)\n",
74137469Ssklower 			tpcb,so);
74236408Ssklower 	ENDDEBUG
74336408Ssklower 	IFTRACE(D_CONN)
74436408Ssklower 		tptraceTPCB(TPPTmisc, "tp_detach tpcb so lsufx",
745*39196Ssklower 			tpcb, so, *(u_short *)(tpcb->tp_lsuffix), 0);
74636408Ssklower 	ENDTRACE
74736408Ssklower 
74836408Ssklower 	if (so->so_head) {
74936408Ssklower 		if (!soqremque(so, 0) && !soqremque(so, 1))
75036408Ssklower 			panic("sofree dq");
75136408Ssklower 		so->so_head = 0;
75236408Ssklower 	}
75336408Ssklower 
75436408Ssklower 	IFDEBUG(D_CONN)
75536408Ssklower 		printf("tp_detach(freeing RTC list snduna 0x%x rcvnxt 0x%x)\n",
75636408Ssklower 		tpcb->tp_snduna_rtc,
75736408Ssklower 		tpcb->tp_rcvnxt_rtc);
75836408Ssklower 	ENDDEBUG
75936408Ssklower 
76036408Ssklower #define FREE_RTC_LIST(XXX)\
76136408Ssklower 	{ register struct tp_rtc *xxr = XXX, *xxs; while (xxr) {\
76236408Ssklower 		xxs = xxr->tprt_next;\
76336408Ssklower 		m_freem( xxr->tprt_data );\
76436408Ssklower 		m_free( dtom(xxr) ); xxr = xxs; }\
76536408Ssklower 		XXX = (struct tp_rtc *)0;\
76636408Ssklower 	}
76736408Ssklower 
76836408Ssklower 	FREE_RTC_LIST( tpcb->tp_snduna_rtc );
76936408Ssklower 	tpcb->tp_sndhiwat_rtc = (struct tp_rtc *)0;
77036408Ssklower 
77136408Ssklower 	FREE_RTC_LIST( tpcb->tp_rcvnxt_rtc );
77236408Ssklower 
77336408Ssklower #undef FREE_RTC_LIST
77436408Ssklower 
77536408Ssklower 	IFDEBUG(D_CONN)
77636408Ssklower 		printf("calling (...nlproto->...)(0x%x, so 0x%x)\n",
77736408Ssklower 			so->so_pcb, so);
77836408Ssklower 		printf("so 0x%x so_head 0x%x,  qlen %d q0len %d qlimit %d\n",
77936408Ssklower 		so,  so->so_head,
78036408Ssklower 		so->so_q0len, so->so_qlen, so->so_qlimit);
78136408Ssklower 	ENDDEBUG
78236408Ssklower 
78337469Ssklower 	if ( tpcb->tp_flags & (TPF_DISC_DATA_OUT | TPF_CONN_DATA_OUT ) )  {
78436408Ssklower 		ASSERT( so->so_snd.sb_cc != 0 );
78536408Ssklower 		IFDEBUG(D_CONN)
78636408Ssklower 			printf(
78736408Ssklower 			"detach, flags 0x%x doing sbdrop on so_snd, mb 0x%x cc 0x%x\n",
78836408Ssklower 				tpcb->tp_flags, so->so_snd.sb_mb, so->so_snd.sb_cc);
78936408Ssklower 			dump_mbuf( so->so_snd.sb_mb, "detach so snd: \n");
79036408Ssklower 		ENDDEBUG
79136408Ssklower 		if ( so->so_snd.sb_cc != 0 )
79237469Ssklower 			sbflush(&so->so_snd);
79336408Ssklower 		tpcb->tp_flags &= ~(TPF_CONN_DATA_OUT | TPF_DISC_DATA_OUT);
79436408Ssklower 	}
79536408Ssklower 	if ( tpcb->tp_flags & (TPF_DISC_DATA_IN | TPF_CONN_DATA_IN ) ) {
79636408Ssklower 		ASSERT( tpcb->tp_Xrcv.sb_cc != 0 );
79736408Ssklower 		IFDEBUG(D_CONN)
79836408Ssklower 			printf(
79936408Ssklower 			"detach, flags 0x%x doing sbdrop on tp_Xrcv, mb 0x%x cc 0x%x\n",
80036408Ssklower 				tpcb->tp_flags, tpcb->tp_Xrcv.sb_mb, tpcb->tp_Xrcv.sb_cc);
80136408Ssklower 			dump_mbuf( tpcb->tp_Xrcv.sb_mb, "detach Xrcv: \n");
80236408Ssklower 		ENDDEBUG
80336408Ssklower 		if( tpcb->tp_Xrcv.sb_cc != 0 )
80437469Ssklower 			sbdrop(&tpcb->tp_Xrcv, (int)tpcb->tp_Xrcv.sb_cc);
80536408Ssklower 		tpcb->tp_flags &= ~(TPF_CONN_DATA_IN | TPF_DISC_DATA_IN);
80636408Ssklower 	}
80736408Ssklower 
80836408Ssklower 	IFDEBUG(D_CONN)
80936408Ssklower 		printf("so_snd at 0x%x so_rcv at 0x%x\n", &so->so_snd, &so->so_rcv);
81036408Ssklower 		dump_mbuf(so->so_snd.sb_mb, "so_snd at detach ");
81136408Ssklower 		printf("about to call LL detach, nlproto 0x%x, nl_detach 0x%x\n",
81236408Ssklower 				tpcb->tp_nlproto, tpcb->tp_nlproto->nlp_pcbdetach);
81336408Ssklower 	ENDDEBUG
81436408Ssklower 
81536408Ssklower 
81637469Ssklower 
81737469Ssklower 	(tpcb->tp_nlproto->nlp_pcbdetach)((struct inpcb *)so->so_pcb);
81837469Ssklower 				/* does an sofree(so) */
81937469Ssklower 
82036408Ssklower 	IFDEBUG(D_CONN)
82136408Ssklower 		printf("after xxx_pcbdetach\n");
82236408Ssklower 	ENDDEBUG
82336408Ssklower 
82436408Ssklower 	if( tpcb->tp_refp->tpr_state == REF_OPENING ) {
82536408Ssklower 		/* no connection existed here so no reference timer will be called */
82636408Ssklower 		IFDEBUG(D_CONN)
82736408Ssklower 			printf("SETTING ref %d, 0x%x to REF_FREE\n", tpcb->tp_lref,
82836408Ssklower 			tpcb->tp_refp - &tp_ref[0]);
82936408Ssklower 		ENDDEBUG
83036408Ssklower 
83136408Ssklower 		tp_freeref(tpcb->tp_refp);
83236408Ssklower 	}
83336408Ssklower 
83437469Ssklower 	if (tpcb->tp_Xsnd.sb_mb) {
83537469Ssklower 		printf("Unsent Xdata on detach; would panic");
83637469Ssklower 		sbflush(&tpcb->tp_Xsnd);
83737469Ssklower 	}
83836408Ssklower 	so->so_tpcb = (caddr_t)0;
83936408Ssklower 
84036408Ssklower 	/*
84136408Ssklower 	 * Get rid of the cluster mbuf allocated for performance measurements, if
84236408Ssklower 	 * there is one.  Note that tpcb->tp_perf_on says nothing about whether or
84336408Ssklower 	 * not a cluster mbuf was allocated, so you have to check for a pointer
84436408Ssklower 	 * to one (that is, we need the TP_PERF_MEASs around the following section
84536408Ssklower 	 * of code, not the IFPERFs)
84636408Ssklower 	 */
84736408Ssklower #ifdef TP_PERF_MEAS
84837469Ssklower 	if(tpcb->tp_p_mbuf) {
84937469Ssklower 		register struct mbuf *m = tpcb->tp_p_mbuf;
85037469Ssklower 		struct mbuf *n;
85136408Ssklower 		IFDEBUG(D_PERF_MEAS)
85236408Ssklower 			printf("freeing tp_p_meas 0x%x  ", tpcb->tp_p_meas);
85336408Ssklower 		ENDDEBUG
85437469Ssklower 		do {
85537469Ssklower 		    MFREE(m, n);
85637469Ssklower 		    m = n;
85737469Ssklower 		} while (n);
85837469Ssklower 		tpcb->tp_p_meas = 0;
85937469Ssklower 		tpcb->tp_p_mbuf = 0;
86036408Ssklower 	}
86136408Ssklower #endif TP_PERF_MEAS
86236408Ssklower 
86336408Ssklower 	IFDEBUG(D_CONN)
86437469Ssklower 		printf( "end of detach, NOT single, tpcb 0x%x\n", tpcb);
86536408Ssklower 	ENDDEBUG
86637469Ssklower 	/* free((caddr_t)tpcb, M_PCB); WHere to put this ? */
86736408Ssklower }
868