⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pk_subr.c

📁 早期freebsd实现
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * Copyright (c) University of British Columbia, 1984 * Copyright (C) Computer Science Department IV,  * 		 University of Erlangen-Nuremberg, Germany, 1992 * Copyright (c) 1991, 1992, 1993 *	The Regents of the University of California.  All rights reserved. * * This code is derived from software contributed to Berkeley by the * Laboratory for Computation Vision and the Computer Science Department * of the the University of British Columbia and the Computer Science * Department (IV) of the University of Erlangen-Nuremberg, Germany. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software *    must display the following acknowledgement: *	This product includes software developed by the University of *	California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors *    may be used to endorse or promote products derived from this software *    without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * *	@(#)pk_subr.c	8.1 (Berkeley) 6/10/93 */#include <sys/param.h>#include <sys/systm.h>#include <sys/mbuf.h>#include <sys/socket.h>#include <sys/protosw.h>#include <sys/socketvar.h>#include <sys/errno.h>#include <sys/time.h>#include <sys/kernel.h>#include <net/if.h>#include <net/route.h>#include <netccitt/dll.h>#include <netccitt/x25.h>#include <netccitt/x25err.h>#include <netccitt/pk.h>#include <netccitt/pk_var.h>int     pk_sendspace = 1024 * 2 + 8;int     pk_recvspace = 1024 * 2 + 8;struct pklcd_q pklcd_q = {&pklcd_q, &pklcd_q};struct x25bitslice x25_bitslice[] = {/*	  mask, shift value */	{ 0xf0, 0x4 },	{ 0xf,  0x0 },	{ 0x80, 0x7 },	{ 0x40, 0x6 },	{ 0x30, 0x4 },	{ 0xe0, 0x5 },	{ 0x10, 0x4 },	{ 0xe,  0x1 },	{ 0x1,  0x0 }};/*  *  Attach X.25 protocol to socket, allocate logical channel descripter *  and buffer space, and enter LISTEN state if we are to accept *  IN-COMMING CALL packets.   * */struct pklcd *pk_attach (so)struct socket *so;{	register struct pklcd *lcp;	register int error = ENOBUFS;	int pk_output ();	MALLOC(lcp, struct pklcd *, sizeof (*lcp), M_PCB, M_NOWAIT);	if (lcp) {		bzero ((caddr_t)lcp, sizeof (*lcp));		insque (&lcp -> lcd_q, &pklcd_q);		lcp -> lcd_state = READY;		lcp -> lcd_send = pk_output;		if (so) {			error = soreserve (so, pk_sendspace, pk_recvspace);			lcp -> lcd_so = so;			if (so -> so_options & SO_ACCEPTCONN)				lcp -> lcd_state = LISTEN;		} else			sbreserve (&lcp -> lcd_sb, pk_sendspace);	}	if (so) {		so -> so_pcb = (caddr_t) lcp;		so -> so_error = error;	}	return (lcp);}/*  *  Disconnect X.25 protocol from socket. */pk_disconnect (lcp)register struct pklcd *lcp;{	register struct socket *so = lcp -> lcd_so;	register struct pklcd *l, *p;	switch (lcp -> lcd_state) {	case LISTEN: 		for (p = 0, l = pk_listenhead; l && l != lcp; p = l, l = l -> lcd_listen);		if (p == 0) {			if (l != 0)				pk_listenhead = l -> lcd_listen;		}		else		if (l != 0)			p -> lcd_listen = l -> lcd_listen;		pk_close (lcp);		break;	case READY: 		pk_acct (lcp);		pk_close (lcp);		break;	case SENT_CLEAR: 	case RECEIVED_CLEAR: 		break;	default: 		pk_acct (lcp);		if (so) {			soisdisconnecting (so);			sbflush (&so -> so_rcv);		}		pk_clear (lcp, 241, 0); /* Normal Disconnect */	}}/*  *  Close an X.25 Logical Channel. Discard all space held by the *  connection and internal descriptors. Wake up any sleepers. */pk_close (lcp)struct pklcd *lcp;{	register struct socket *so = lcp -> lcd_so;	/*	 * If the X.25 connection is torn down due to link	 * level failure (e.g. LLC2 FRMR) and at the same the user	 * level is still filling up the socket send buffer that	 * send buffer is locked. An attempt to sbflush () that send	 * buffer will lead us into - no, not temptation but - panic!	 * So - we'll just check wether the send buffer is locked	 * and if that's the case we'll mark the lcp as zombie and 	 * have the pk_timer () do the cleaning ...	 */		if (so && so -> so_snd.sb_flags & SB_LOCK)		lcp -> lcd_state = LCN_ZOMBIE;	else		pk_freelcd (lcp);	if (so == NULL)		return;	so -> so_pcb = 0;	soisdisconnected (so);	/* sofree (so);	/* gak!!! you can't do that here */}/*  *  Create a template to be used to send X.25 packets on a logical *  channel. It allocates an mbuf and fills in a skeletal packet *  depending on its type. This packet is passed to pk_output where *  the remainer of the packet is filled in.*/struct mbuf *pk_template (lcn, type)int lcn, type;{	register struct mbuf *m;	register struct x25_packet *xp;	MGETHDR (m, M_DONTWAIT, MT_HEADER);	if (m == 0)		panic ("pk_template");	m -> m_act = 0;	/*	 * Efficiency hack: leave a four byte gap at the beginning	 * of the packet level header with the hope that this will	 * be enough room for the link level to insert its header.	 */	m -> m_data += max_linkhdr;	m -> m_pkthdr.len = m -> m_len = PKHEADERLN;	xp = mtod (m, struct x25_packet *);	*(long *)xp = 0;		/* ugly, but fast *//*	xp -> q_bit = 0;*/	X25SBITS(xp -> bits, fmt_identifier, 1);/*	xp -> lc_group_number = 0;*/	SET_LCN(xp, lcn);	xp -> packet_type = type;	return (m);}/*  *  This routine restarts all the virtual circuits. Actually, *  the virtual circuits are not "restarted" as such. Instead, *  any active switched circuit is simply returned to READY *  state. */pk_restart (pkp, restart_cause)register struct pkcb *pkp;int restart_cause;{	register struct mbuf *m;	register struct pklcd *lcp;	register int i;	/* Restart all logical channels. */	if (pkp -> pk_chan == 0)		return;	/*	 * Don't do this if we're doing a restart issued from	 * inside pk_connect () --- which is only done if and	 * only if the X.25 link is down, i.e. a RESTART needs	 * to be done to get it up.	 */	if (!(pkp -> pk_dxerole & DTE_CONNECTPENDING)) {		for (i = 1; i <= pkp -> pk_maxlcn; ++i)			if ((lcp = pkp -> pk_chan[i]) != NULL) {				if (lcp -> lcd_so) {					lcp -> lcd_so -> so_error = ENETRESET;					pk_close (lcp);				} else {					pk_flush (lcp);					lcp -> lcd_state = READY;					if (lcp -> lcd_upper)						lcp -> lcd_upper (lcp, 0);				}			}	}	if (restart_cause < 0)		return;	pkp -> pk_state = DTE_SENT_RESTART;	pkp -> pk_dxerole &= ~(DTE_PLAYDCE | DTE_PLAYDTE);	lcp = pkp -> pk_chan[0];	m = lcp -> lcd_template = pk_template (lcp -> lcd_lcn, X25_RESTART);	m -> m_pkthdr.len = m -> m_len += 2;	mtod (m, struct x25_packet *) -> packet_data = 0;	/* DTE only */	mtod (m, octet *)[4]  = restart_cause;	pk_output (lcp);}/*  *  This procedure frees up the Logical Channel Descripter. */pk_freelcd (lcp)register struct pklcd *lcp;{	if (lcp == NULL)		return;	if (lcp -> lcd_lcn > 0)		lcp -> lcd_pkp -> pk_chan[lcp -> lcd_lcn] = NULL;	pk_flush (lcp);	remque (&lcp -> lcd_q);	free ((caddr_t)lcp, M_PCB);}static struct x25_ifaddr *pk_ifwithaddr (sx)	struct sockaddr_x25 *sx;{	struct ifnet *ifp;	struct ifaddr *ifa;	register struct x25_ifaddr *ia;	char *addr = sx -> x25_addr;	for (ifp = ifnet; ifp; ifp = ifp -> if_next)		for (ifa = ifp -> if_addrlist; ifa; ifa = ifa -> ifa_next)			if (ifa -> ifa_addr -> sa_family == AF_CCITT) {				ia = (struct x25_ifaddr *)ifa;				if (bcmp (addr, ia -> ia_xc.xc_addr.x25_addr,					 16) == 0)					return (ia);							}	return ((struct x25_ifaddr *)0);}/*  *  Bind a address and protocol value to a socket.  The important *  part is the protocol value - the first four characters of the  *  Call User Data field. */#define XTRACTPKP(rt)	((rt) -> rt_flags & RTF_GATEWAY ? \			 ((rt) -> rt_llinfo ? \			  (struct pkcb *) ((struct rtentry *)((rt) -> rt_llinfo)) -> rt_llinfo : \			  (struct pkcb *) NULL) : \			 (struct pkcb *)((rt) -> rt_llinfo))pk_bind (lcp, nam)struct pklcd *lcp;struct mbuf *nam;{	register struct pklcd *pp;	register struct sockaddr_x25 *sa;	if (nam == NULL)		return (EADDRNOTAVAIL);	if (lcp -> lcd_ceaddr)				/* XXX */		return (EADDRINUSE);	if (pk_checksockaddr (nam))		return (EINVAL);	sa = mtod (nam, struct sockaddr_x25 *);	/*	 * If the user wishes to accept calls only from a particular	 * net (net != 0), make sure the net is known	 */	if (sa -> x25_addr[0]) {		if (!pk_ifwithaddr (sa))			return (ENETUNREACH);	} else if (sa -> x25_net) {		if (!ifa_ifwithnet ((struct sockaddr *)sa))			return (ENETUNREACH);	}	/*	 * For ISO's sake permit default listeners, but only one such . . .	 */	for (pp = pk_listenhead; pp; pp = pp -> lcd_listen) {		register struct sockaddr_x25 *sa2 = pp -> lcd_ceaddr;		if ((sa2 -> x25_udlen == sa -> x25_udlen) &&		    (sa2 -> x25_udlen == 0 ||		     (bcmp (sa2 -> x25_udata, sa -> x25_udata,			    min (sa2 -> x25_udlen, sa -> x25_udlen)) == 0)))				return (EADDRINUSE);	}	lcp -> lcd_laddr = *sa;	lcp -> lcd_ceaddr = &lcp -> lcd_laddr;	return (0);}/* * Include a bound control block in the list of listeners. */pk_listen (lcp)register struct pklcd *lcp;{	register struct pklcd **pp;	if (lcp -> lcd_ceaddr == 0)		return (EDESTADDRREQ);	lcp -> lcd_state = LISTEN;	/*	 * Add default listener at end, any others at start.	 */	if (lcp -> lcd_ceaddr -> x25_udlen == 0) {		for (pp = &pk_listenhead; *pp; )			pp = &((*pp) -> lcd_listen);		*pp = lcp;	} else {		lcp -> lcd_listen = pk_listenhead;		pk_listenhead = lcp;	}	return (0);}/* * Include a listening control block for the benefit of other protocols. */pk_protolisten (spi, spilen, callee)int (*callee) ();{	register struct pklcd *lcp = pk_attach ((struct socket *)0);	register struct mbuf *nam;	register struct sockaddr_x25 *sa;	int error = ENOBUFS;	if (lcp) {		if (nam = m_getclr (MT_SONAME, M_DONTWAIT)) {			sa = mtod (nam, struct sockaddr_x25 *);			sa -> x25_family = AF_CCITT;			sa -> x25_len = nam -> m_len = sizeof (*sa);			sa -> x25_udlen = spilen;			sa -> x25_udata[0] = spi;			lcp -> lcd_upper = callee;			lcp -> lcd_flags = X25_MBS_HOLD;			if ((error = pk_bind (lcp, nam)) == 0)				error = pk_listen (lcp);			(void) m_free (nam);		}		if (error)			pk_freelcd (lcp);	}	return error; /* Hopefully Zero !*/}/* * Associate a logical channel descriptor with a network. * Fill in the default network specific parameters and then * set any parameters explicitly specified by the user or * by the remote DTE. */pk_assoc (pkp, lcp, sa)register struct pkcb *pkp;register struct pklcd *lcp;register struct sockaddr_x25 *sa;{	lcp -> lcd_pkp = pkp;	lcp -> lcd_packetsize = pkp -> pk_xcp -> xc_psize;	lcp -> lcd_windowsize = pkp -> pk_xcp -> xc_pwsize;	lcp -> lcd_rsn = MODULUS - 1;	pkp -> pk_chan[lcp -> lcd_lcn] = lcp;	if (sa -> x25_opts.op_psize)		lcp -> lcd_packetsize = sa -> x25_opts.op_psize;	else		sa -> x25_opts.op_psize = lcp -> lcd_packetsize;	if (sa -> x25_opts.op_wsize)		lcp -> lcd_windowsize = sa -> x25_opts.op_wsize;	else		sa -> x25_opts.op_wsize = lcp -> lcd_windowsize;	sa -> x25_net = pkp -> pk_xcp -> xc_addr.x25_net;	lcp -> lcd_flags |= sa -> x25_opts.op_flags;	lcp -> lcd_stime = time.tv_sec;}pk_connect (lcp, sa)register struct pklcd *lcp;register struct sockaddr_x25 *sa;{	register struct pkcb *pkp;	register struct rtentry *rt;	register struct rtentry *nrt;	struct rtentry *npaidb_enter ();	struct pkcb *pk_newlink ();	if (sa -> x25_addr[0] == '\0')		return (EDESTADDRREQ);	/*	 * Is the destination address known?	 */	if (!(rt = rtalloc1 ((struct sockaddr *)sa, 1)))		return (ENETUNREACH);	if (!(pkp = XTRACTPKP(rt)))		pkp = pk_newlink ((struct x25_ifaddr *) (rt -> rt_ifa), 				 (caddr_t) 0);	/*	 * Have we entered the LLC address?	 */	if (nrt = npaidb_enter (rt -> rt_gateway, rt_key (rt), rt, 0))		pkp -> pk_llrt = nrt;	/*	 * Have we allocated an LLC2 link yet?	 */	if (pkp -> pk_llnext == (caddr_t)0 && pkp -> pk_llctlinput) {		struct dll_ctlinfo ctlinfo;		ctlinfo.dlcti_rt = rt;		ctlinfo.dlcti_pcb = (caddr_t) pkp;		ctlinfo.dlcti_conf = 			(struct dllconfig *) (&((struct x25_ifaddr *)(rt -> rt_ifa)) -> ia_xc);		pkp -> pk_llnext = 			(pkp -> pk_llctlinput) (PRC_CONNECT_REQUEST, 0, &ctlinfo);	}	if (pkp -> pk_state != DTE_READY && pkp -> pk_state != DTE_WAITING)			return (ENETDOWN);	if ((lcp -> lcd_lcn = pk_getlcn (pkp)) == 0)		return (EMFILE);	lcp -> lcd_faddr = *sa;	lcp -> lcd_ceaddr = & lcp -> lcd_faddr;	pk_assoc (pkp, lcp, lcp -> lcd_ceaddr);	/*	 * If the link is not up yet, initiate an X.25 RESTART	 */	if (pkp -> pk_state == DTE_WAITING) {		pkp -> pk_dxerole |= DTE_CONNECTPENDING;		pk_ctlinput (PRC_LINKUP, (struct sockaddr *)0, pkp);		if (lcp -> lcd_so)			soisconnecting (lcp -> lcd_so);		return 0;	}	if (lcp -> lcd_so)		soisconnecting (lcp -> lcd_so);	lcp -> lcd_template = pk_template (lcp -> lcd_lcn, X25_CALL);	pk_callrequest (lcp, lcp -> lcd_ceaddr, pkp -> pk_xcp);	return (*pkp -> pk_ia -> ia_start) (lcp);}/* * Complete all pending X.25 call requests --- this gets called after * the X.25 link has been restarted. */#define RESHUFFLELCN(maxlcn, lcn) ((maxlcn) - (lcn) + 1)pk_callcomplete (pkp)	register struct pkcb *pkp;{	register struct pklcd *lcp;	register int i;	register int ni;		if (pkp -> pk_dxerole & DTE_CONNECTPENDING) 		pkp -> pk_dxerole &= ~DTE_CONNECTPENDING;	else return;	if (pkp -> pk_chan == 0)		return;		/*	 * We pretended to be a DTE for allocating lcns, if	 * it turns out that we are in reality performing as a	 * DCE we need to reshuffle the lcps.	 *			        	  	               *             /+---------------+--------     -	      	 *            / | a  (maxlcn-1) |              \      	 *           /  +---------------+              	\     	 *     +--- *   | b  (maxlcn-2) |         	 \    	 *     |     \  +---------------+         	  \   	 *   r |      \ | c  (maxlcn-3) |         	   \  	 *   e |       \+---------------+         	    | 	 *   s |        |	 .                	    |  	 *   h |        |        .                	    | m	 *   u |        |	 .      	  	    | a	 *   f |        |	 .      	  	    | x	 *   f |        |	 .                	    | l	 *   l |       /+---------------+         	    | c	 *   e |      / | c' (   3    ) |         	    | n	 *     |     /  +---------------+         	    | 	 *     +--> *   | b' (   2    ) |         	   /	 *           \  +---------------+         	  / 	 *            \ | a' (   1    ) |         	 /      	 *             \+---------------+               /            *              | 0             |              /    	 *              +---------------+--------     -     	 *	    	 */	    	if (pkp -> pk_dxerole & DTE_PLAYDCE) {		/* Sigh, reshuffle it */		for (i = pkp -> pk_maxlcn; i > 0; --i)			if (pkp -> pk_chan[i]) {				ni = RESHUFFLELCN(pkp -> pk_maxlcn, i);				pkp -> pk_chan[ni] = pkp -> pk_chan[i];				pkp -> pk_chan[i] = NULL;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -