summaryrefslogtreecommitdiff
path: root/sys/netiso/tp_cons.c
blob: d5cb50ee216309c553aac09d93dbc3a11f5fe560 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
/*	$OpenBSD: tp_cons.c,v 1.5 2001/06/27 03:49:54 angelos Exp $	*/
/*	$NetBSD: tp_cons.c,v 1.8 1996/02/14 21:32:37 christos Exp $	*/

/*-
 * Copyright (c) 1991, 1993
 *	The Regents of the University of California.  All rights reserved.
 *
 * 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.
 *
 *	@(#)tp_cons.c	8.1 (Berkeley) 6/10/93
 */

/***********************************************************
		Copyright IBM Corporation 1987

                      All Rights Reserved

Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the name of IBM not be
used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.

IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.

******************************************************************/

/*
 * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison
 */
/*
 * Here is where you find the iso- and cons-dependent code.  We've tried keep
 * all net-level and (primarily) address-family-dependent stuff out of the tp
 * source, and everthing here is reached indirectly through a switch table
 * (struct nl_protosw *) tpcb->tp_nlproto (see tp_pcb.c). The routines here
 * are: tpcons_input: pullup and call tp_input w/ correct arguments
 * tpcons_output: package a pkt for cons given an isopcb & some data
 * cons_chan_to_tpcb: find a tpcb based on the channel #
 */

#ifdef ISO
#ifdef TPCONS

#include <sys/param.h>
#include <sys/systm.h>
#include <sys/socket.h>
#include <sys/domain.h>
#include <sys/mbuf.h>
#include <sys/errno.h>
#include <sys/time.h>

#include <net/if.h>
#include <net/route.h>

#include <netiso/tp_param.h>
#include <netiso/argo_debug.h>
#include <netiso/tp_stat.h>
#include <netiso/tp_pcb.h>
#include <netiso/tp_trace.h>
#include <netiso/tp_stat.h>
#include <netiso/tp_tpdu.h>
#include <netiso/iso.h>
#include <netiso/iso_errno.h>
#include <netiso/iso_pcb.h>
#include <netiso/iso_var.h>
#include <netiso/cons.h>
#include <netiso/tp_seq.h>
#include <netiso/tp_var.h>
#include <netiso/clnp.h>

#undef FALSE
#undef TRUE
#include <netccitt/x25.h>
#include <netccitt/pk.h>
#include <netccitt/pk_var.h>
#include <netccitt/pk_extern.h>

#include <machine/stdarg.h>

#include <netiso/if_cons.c>


/*
 * CALLED FROM:
 *  tp_route_to() for PRU_CONNECT
 * FUNCTION, ARGUMENTS, SIDE EFFECTS and RETURN VALUE:
 *  version of the previous procedure for X.25
 */

int
tpcons_pcbconnect(v, nam)
	void *v;
	register struct mbuf *nam;
{
	struct isopcb  *isop = v;
	int             error;
	if ((error = iso_pcbconnect(isop, nam)) != 0)
		return error;
	if ((isop->isop_chan = (caddr_t) pk_attach((struct socket *) 0)) == 0) {
#ifdef ARGO_DEBUG
		if (argo_debug[D_CCONS]) {
			printf("tpcons_pcbconnect: no pklcd; returns 0x%x\n", error);
		}
#endif
		return ENOBUFS;
	}
	if ((error = cons_connect(isop)) != 0) {	/* if it doesn't work */
		/* oh, dear, throw packet away */
		pk_disconnect((struct pklcd *) isop->isop_chan);
		isop->isop_chan = 0;
	} else
		isop->isop_refcnt = 1;
	return error;
}


/*
 * CALLED FROM:
 * 	cons
 * FUNCTION and ARGUMENTS:
 * THIS MAYBE BELONGS IN SOME OTHER PLACE??? but i think not -
 */
void *
tpcons_ctlinput(cmd, siso, v)
	int             cmd;
	struct sockaddr *siso;
	void *v;
{
	struct isopcb  *isop = v;
	register struct tp_pcb *tpcb = 0;

	if (isop->isop_socket)
		tpcb = (struct tp_pcb *) isop->isop_socket->so_pcb;
	switch (cmd) {

	case PRC_CONS_SEND_DONE:
		if (tpcb) {
			struct tp_event E;
			int             error = 0;

			if (tpcb->tp_class == TP_CLASS_0) {
				/*
				 * only if class is exactly class zero, not
				 * still in class negotiation
				 */
				/* fake an ack */
				register SeqNum seq = SEQ_ADD(tpcb, tpcb->tp_snduna, 1);

#ifdef TPPT
				if(tp_traceflags[D_DATA])
					tptrace(TPPTmisc, "FAKE ACK seq cdt 1",
						seq, 0, 0, 0);
#endif
#ifdef ARGO_DEBUG
					if (argo_debug[D_DATA]) {
					printf("FAKE ACK seq 0x%x cdt 1\n", seq);
				}
#endif
				E.TP_ATTR(AK_TPDU).e_cdt = 1;
				E.TP_ATTR(AK_TPDU).e_seq = seq;
				E.TP_ATTR(AK_TPDU).e_subseq = 0;
				E.TP_ATTR(AK_TPDU).e_fcc_present = 0;
				error = DoEvent(AK_TPDU);
				if (error) {
					tpcb->tp_sock->so_error = error;
				}
			}	/* else ignore it */
		}
		break;
	case PRC_ROUTEDEAD:
		if (tpcb && tpcb->tp_class == TP_CLASS_0) {
			tpiso_reset(isop);
			break;
		}		/* else drop through */
	default:
		tpclnp_ctlinput(cmd, siso, NULL);
		break;
	}
	return NULL;
}

/*
 * CALLED FROM:
 * 	cons's intr routine
 * FUNCTION and ARGUMENTS:
 * Take a packet (m) from cons, pullup m as required by tp,
 *  ignore the socket argument, and call tp_input.
 * No return value.
 */
void
#if __STDC__
tpcons_input(struct mbuf *m, ...)
#else
tpcons_input(m, va_alist)
	struct mbuf    *m;
	va_dcl
#endif
{
	struct sockaddr *faddr, *laddr;
	caddr_t         channel;
	va_list ap;
	if (m == NULL)
		return;
	va_start(ap, m);
	faddr = va_arg(ap, struct sockaddr *);
	laddr = va_arg(ap, struct sockaddr *);
	channel = va_arg(ap, caddr_t);


	m = (struct mbuf *) tp_inputprep(m);

#ifdef ARGO_DEBUG
	if (argo_debug[D_TPINPUT]) {
		printf("tpcons_input before tp_input(m 0x%x)\n", m);
		dump_buf(m, 12 + m->m_len);
	}
#endif
	tp_input(m, faddr, laddr, channel, tpcons_output, 0);
}


/*
 * CALLED FROM:
 *  tp_emit()
 * FUNCTION and ARGUMENTS:
 *  Take a packet(m0) from tp and package it so that cons will accept it.
 *  This means filling in a few of the fields.
 *  inp is the isopcb structure; datalen is the length of the data in the
 *  mbuf string m0.
 * RETURN VALUE:
 *  whatever (E*) is returned form the net layer output routine.
 */

int
#if __STDC__
tpcons_output(struct mbuf *m0, ...)
#else
tpcons_output(m0, va_alist)
	struct mbuf    *m0;
	va_dcl
#endif
{
	struct isopcb  *isop;
	int             datalen;
	int             nochksum;
	register struct mbuf *m = m0;
	int             error;
	va_list		ap;

	va_start(ap, m0);
	datalen = va_arg(ap, int);
	isop = va_arg(ap, struct isopcb *);
	nochksum = va_arg(ap, int);
	va_end(ap);

#ifdef ARGO_DEBUG
	if (argo_debug[D_EMIT]) {
		printf(
		  "tpcons_output(isop 0x%x, m 0x%x, len 0x%x socket 0x%x\n",
		       isop, m0, datalen, isop->isop_socket);
	}
#endif
	if (m == NULL)
		return 0;
	if ((m->m_flags & M_PKTHDR) == 0) {
		MGETHDR(m, M_DONTWAIT, MT_DATA);
		if (m == 0)
			return ENOBUFS;
		M_MOVE_HDR(m, m0);
		m->m_next = m0;
	}
	m->m_pkthdr.len = datalen;
	if (isop->isop_chan == 0) {
		/* got a restart maybe? */
		if ((isop->isop_chan = (caddr_t) pk_attach((struct socket *) 0)) == 0) {
#ifdef ARGO_DEBUG
			if (argo_debug[D_CCONS]) {
				printf("tpcons_output: no pklcd\n");
			}
#endif
			error = ENOBUFS;
		}
		if ((error = cons_connect(isop)) != 0) {
			pk_disconnect((struct pklcd *) isop->isop_chan);
			isop->isop_chan = 0;
#ifdef ARGO_DEBUG
			if (argo_debug[D_CCONS]) {
				printf("tpcons_output: can't reconnect\n");
			}
#endif
		}
	} else {
		error = pk_send(m, isop->isop_chan);
		IncStat(ts_tpdu_sent);
	}
	return error;
}
/*
 * CALLED FROM:
 *  tp_error_emit()
 * FUNCTION and ARGUMENTS:
 *  Take a packet(m0) from tp and package it so that cons will accept it.
 *  chan is the cons channel to use; datalen is the length of the data in the
 *  mbuf string m0.
 * RETURN VALUE:
 *  whatever (E*) is returned form the net layer output routine.
 */

int
#if __STDC__
tpcons_output_dg(struct mbuf *m0, ...)
#else
tpcons_output_dg(m0, va_alist)
	struct mbuf    *m0;
	va_dcl
#endif
{
	int             datalen;
	caddr_t         chan;
	va_list		ap;

	va_start(ap, m0);
	datalen = va_arg(ap, int);
	chan = va_arg(ap, caddr_t);
	va_end(ap);

	return tpcons_output(m0, datalen,
			     ((struct pklcd *) chan)->lcd_upnext, 
			     0);
}
#else

#include <sys/param.h>

struct mbuf;

int tpcons_output __P((struct mbuf *m0, ...));

int
#if __STDC__
tpcons_output(struct mbuf *m0, ...)
#else
tpcons_output(m0, va_alist)
	struct mbuf    *m0;
	va_dcl
#endif
{
	return 0;
}
#endif /* TPCONS */
#endif /* ISO */