]>
git.saurik.com Git - apple/xnu.git/blob - bsd/netat/adsp_Control.c
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * Copyright (c) 1990, 1995-1998 Apple Computer, Inc.
24 * All Rights Reserved.
28 * From Mike Shoemaker v01.25 07/02/90 for MacOS
29 * 09/07/95 - Modified for performance (Tuyen Nguyen)
30 * Modified for MP, 1996 by Tuyen Nguyen
31 * Modified, April 9, 1997 by Tuyen Nguyen for MacOSX.
34 #include <sys/errno.h>
35 #include <sys/types.h>
36 #include <sys/param.h>
37 #include <machine/spl.h>
38 #include <sys/systm.h>
39 #include <sys/kernel.h>
41 #include <sys/filedesc.h>
42 #include <sys/fcntl.h>
45 #include <sys/socket.h>
47 #include <netat/sysglue.h>
48 #include <netat/appletalk.h>
49 #include <netat/ddp.h>
50 #include <netat/at_pcb.h>
51 #include <netat/debug.h>
52 #include <netat/adsp.h>
53 #include <netat/adsp_internal.h>
55 /* # of additional ticks to add to any timer that we're queuing up. For
56 * very short delays (1 and 2), the timer fires before the transmit
68 * # of bytes in avail in local receive queue
70 int CalcRecvWdw(sp
) /* (CCBPtr sp) */
75 bytes
= calcRecvQ(sp
);
76 bytes
= sp
->rbuflen
- bytes
; /* get what is left */
78 if (bytes
<= 16) { /* %%% this should be zero */
79 sp
->rbufFull
= 1; /* Save flag that our recv buf is full */
83 return ((bytes
+bytes
+bytes
) >> 2) + 1; /* %%% */
91 register struct mbuf
*m
, *p
;
93 if (((sp
->gref
)->so
)->so_rcv
.sb_mb
)
94 for (p
= ((sp
->gref
)->so
)->so_rcv
.sb_mb
; p
; p
= p
->m_nextpkt
)
95 for (m
= p
; m
; m
= m
->m_next
)
100 if (sp
->rData
) { /* There is data in buffer */
101 if (mb
= sp
->rbuf_mb
) {
103 bytes
+= gbuf_msgsize(mb
);
107 if (mb
= sp
->crbuf_mb
)
108 bytes
+= gbuf_msgsize(mb
);
117 * Check to see if the transmit PB is available and if there is anything
118 * to transmit. Start off any pending transmit.
120 * Normally called from the write completion routine
123 * sp Connection control block
125 * true if sent a packet
127 void CheckSend(sp
) /* (CCBPtr sp) */
131 int attnMsg
; /* True if attention message */
133 register gbuf_t
*mp
; /* send message block */
135 register gbuf_t
*tmp
;
138 char *dp
; /* a data pointer */
139 int use_attention_code
;
140 int len
; /* length used in allocd mblk */
141 int datalen
; /* amount of data attached to mblk */
142 gbuf_t
*mprev
, *mlist
= 0;
146 if (sp
->state
== sClosed
)
149 /* get a message block to hold DDP and
150 * ADSP headers + 2 bytes of attention
151 * code if necessary */
152 if ((mp
= gbuf_alloc(AT_WR_OFFSET
+ DDPL_FRAME_LEN
+ ADSP_FRAME_LEN
+ ADSP_OPEN_FRAME_LEN
+ 2,
156 return; /* can't get buffers... do nothing! */
158 ATDISABLE(s
, sp
->lock
);
159 sp
->callSend
= 0; /* Clear flag */
160 use_attention_code
= 0;
164 gbuf_rinc(mp
,AT_WR_OFFSET
);
165 gbuf_wset(mp
,DDPL_FRAME_LEN
); /* leave room for DDP header */
170 i
= sp
->sendCtl
; /* get local copy bitmap of */
171 /* which ctl packets to send. */
174 if (i
& 0x1E) /* One of the open ctrl packets */
177 /* point past ADSP header (no attention) */
178 dp
= ((char *) gbuf_wptr(mp
)) + ADSP_FRAME_LEN
;
179 UAL_ASSIGN(sp
->f
.pktFirstByteSeq
, netdw(sp
->firstRtmtSeq
));
181 UAS_ASSIGN(sp
->of
.version
, netw(0x0100)); /* Fill in open connection parms */
182 UAS_ASSIGN(sp
->of
.dstCID
, sp
->remCID
); /* Destination CID */
183 UAL_ASSIGN(sp
->of
.pktAttnRecvSeq
, netdw(sp
->attnRecvSeq
));
184 bcopy((caddr_t
) &sp
->of
, (caddr_t
) dp
, ADSP_OPEN_FRAME_LEN
);
185 len
+= ADSP_OPEN_FRAME_LEN
;
187 if (i
& B_CTL_OREQ
) {
188 UAS_ASSIGN(sp
->f
.CID
, sp
->locCID
);
190 sp
->f
.descriptor
= ADSP_CONTROL_BIT
| ADSP_CTL_OREQ
;
191 } else if (i
& B_CTL_OACK
) {
192 UAS_ASSIGN(sp
->f
.CID
, sp
->locCID
);
194 sp
->f
.descriptor
= ADSP_CONTROL_BIT
| ADSP_CTL_OACK
;
195 } else if (i
& B_CTL_OREQACK
) {
196 UAS_ASSIGN(sp
->f
.CID
, sp
->locCID
);
197 mask
= B_CTL_OREQACK
;
198 sp
->f
.descriptor
= ADSP_CONTROL_BIT
| ADSP_CTL_OREQACK
;
201 UAS_ASSIGN(sp
->f
.CID
, 0);
203 sp
->f
.descriptor
= ADSP_CONTROL_BIT
| ADSP_CTL_ODENY
;
204 UAL_ASSIGN(sp
->f
.pktFirstByteSeq
, 0);
207 if (i
& (B_CTL_OREQ
| B_CTL_OREQACK
))
208 /* Need to start up a timer for it */
210 /* It's possible that we've received a duplicate
211 * open request. In this case, there will already be
212 * a timer queued up for the request+ack
213 * packet we sent the first time. So remove the timer
216 RemoveTimerElem(&adspGlobal
.slowTimers
, &sp
->ProbeTimer
);
217 InsertTimerElem(&adspGlobal
.slowTimers
, &sp
->ProbeTimer
,
221 /* seq # of next byte to send */
222 UAL_ASSIGN(sp
->f
.pktFirstByteSeq
, netdw(sp
->sendSeq
));
224 if (i
& B_CTL_CLOSE
) {
225 sp
->state
= sClosed
; /* Now we're closed */
227 sp
->f
.descriptor
= ADSP_CONTROL_BIT
| ADSP_CTL_CLOSE
;
228 } else if (i
& B_CTL_PROBE
) {
231 ADSP_CONTROL_BIT
| ADSP_CTL_PROBE
| ADSP_ACK_REQ_BIT
;
232 } else if (i
& B_CTL_FRESET
) {
234 sp
->f
.descriptor
= ADSP_CONTROL_BIT
| ADSP_CTL_FRESET
;
235 InsertTimerElem(&adspGlobal
.fastTimers
,
236 &sp
->ResetTimer
, sp
->rtmtInterval
+TX_DLY
);
237 } else if (i
& B_CTL_FRESETACK
) {
238 mask
= B_CTL_FRESETACK
;
239 sp
->f
.descriptor
= ADSP_CONTROL_BIT
| ADSP_CTL_FRESET_ACK
;
241 else if (i
& B_CTL_RETRANSMIT
) {
242 mask
= B_CTL_RETRANSMIT
;
243 sp
->f
.descriptor
= ADSP_CONTROL_BIT
| ADSP_CTL_RETRANSMIT
;
246 dPrintf(D_M_ADSP
, D_L_ERROR
, ("CheckSend: Control bit error\n"));
248 } /* non open control packet */
250 sp
->sendCtl
&= ~mask
;
252 } /* send control packet */
254 if (sp
->sendAttnData
) /* Send attn ready to go? */
256 sp
->sendAttnData
= 0; /* Clear Flags */
258 sp
->sendAttnAck
= 0; /* This will also do an Attn Ack */
261 sp
->f
.descriptor
= ADSP_ATTENTION_BIT
| ADSP_ACK_REQ_BIT
;
262 if (gbuf_cont(sp
->sapb
->mp
)) {
263 gbuf_cont(mp
) = gbuf_dupm(gbuf_cont(sp
->sapb
->mp
));
264 /* Major hack here. The ADSP Attn code is butted up against
265 * the end of the adsp packet header, and the length is
266 * increased by 2. (There is a pad field behind the adsp
267 * header in the CCB just for this purpose.)
270 use_attention_code
++;
272 sp
->f
.data
[0] = high(sp
->sapb
->u
.attnParams
.attnCode
);
273 sp
->f
.data
[1] = low(sp
->sapb
->u
.attnParams
.attnCode
);
274 InsertTimerElem(&adspGlobal
.fastTimers
, &sp
->AttnTimer
,
275 sp
->rtmtInterval
+TX_DLY
);
280 if (sp
->sendAttnAck
) /* Send attn ack ready to go? */
283 sp
->f
.descriptor
= ADSP_CONTROL_BIT
| ADSP_ATTENTION_BIT
;
288 if ((sp
->state
== sOpen
|| sp
->state
== sClosing
) && /* Correct state */
289 (!sp
->waitingAck
) && /* not waiting for an ACK */
290 (sp
->sData
) && /* have data to send */
291 (GTE(sp
->sendWdwSeq
,sp
->sendSeq
)) && /* he has room to accept it */
292 (sp
->pktSendCnt
< sp
->pktSendMax
)) /* haven't sent too many pkts
296 if (datalen
= attachData(sp
, mp
)) /* attach data to mp */
297 goto sendit
; /* if successful, sendit */
300 if (sp
->sendDataAck
) {
301 UAL_ASSIGN(sp
->f
.pktFirstByteSeq
, netdw(sp
->sendSeq
)); /* seq # of next byte */
303 sp
->f
.descriptor
= ADSP_CONTROL_BIT
;
308 * Nothing left to do...
312 ATENABLE(s
, sp
->lock
);
314 adsp_sendddp(sp
, mlist
, 0, &sp
->remoteAddress
, DDP_ADSP
);
320 UAL_ASSIGN(sp
->f
.pktFirstByteSeq
, netdw(sp
->attnSendSeq
));
321 UAL_ASSIGN(sp
->f
.pktNextRecvSeq
, netdw(sp
->attnRecvSeq
));
322 UAS_ASSIGN(sp
->f
.pktRecvWdw
, 0); /* Always zero in attn pkt */
325 UAL_ASSIGN(sp
->f
.pktNextRecvSeq
, netdw(sp
->recvSeq
));
326 UAS_ASSIGN(sp
->f
.pktRecvWdw
, netw(CalcRecvWdw(sp
)));
328 if (use_attention_code
) {
329 bcopy((caddr_t
) &sp
->f
, (caddr_t
) gbuf_wptr(mp
), ADSP_FRAME_LEN
+ 2);
330 len
+= ADSP_FRAME_LEN
+ 2;
332 bcopy((caddr_t
) &sp
->f
, (caddr_t
) gbuf_wptr(mp
), ADSP_FRAME_LEN
);
333 len
+= ADSP_FRAME_LEN
;
335 gbuf_winc(mp
,len
); /* update mblk length */
337 gbuf_next(mprev
) = mp
;
342 if (sp
->state
== sClosed
) { /* must have sent a close advice */
343 /* send header + data */
344 ATENABLE(s
, sp
->lock
);
345 adsp_sendddp(sp
, mlist
, 0, &sp
->remoteAddress
, DDP_ADSP
);
346 DoClose(sp
, 0, -1); /* complete close! */
349 ATENABLE(s
, sp
->lock
);
350 if (sp
->state
== sClosing
) /* See if we were waiting on this write */
356 * completepb delivers a paramater block with all its appropriate fields
357 * set back to the user.
359 * The assumptions here are that the PB is not linked to any queue,
360 * that the fields including ioResult are set, and that the
361 * kernel is no longer interested in the mblks that may or
362 * maynot be linked to this pb.
364 void completepb(sp
, pb
)
366 register struct adspcmd
*pb
;
368 if (sp
->gref
&& (sp
->gref
->info
== (caddr_t
)sp
->sp_mp
)) {
369 if (gbuf_len(pb
->mp
) > sizeof(struct adspcmd
))
370 gbuf_wset(pb
->mp
,sizeof(struct adspcmd
));
371 SndMsgUp(sp
->gref
, pb
->mp
);
387 int partial
= 0; /* flag for a partial send */
389 register gbuf_t
*smp
; /* send data message block */
390 register gbuf_t
*psmp
; /* previous message block */
394 if (LT(sp
->sendSeq
, sp
->firstRtmtSeq
)) /* Sanity check on send seq */
395 sp
->sendSeq
= sp
->firstRtmtSeq
; /* seq must be oldest in buffer. */
397 /* This test and assignment was necessary because the retry VBL could
398 * have fired and reset send Seq to first Rtmt Seq, and then an
399 * expected ACK comes in that bumps first Rtmt Seq up. Then we
400 * have the problem that send Seq is less than first Rtmt Seq.
401 * The easiest fix to this timing dilemma seems to be to reset
402 * sendSeq to first Rtmt Seq if we're sending the first packet.
404 UAL_ASSIGN(sp
->f
.pktFirstByteSeq
, netdw(sp
->sendSeq
));
406 if (smp
= sp
->sbuf_mb
) /* Get oldest header */
408 else if (smp
= sp
->csbuf_mb
)
411 if (smp
== 0) { /* this shouldn't happen... */
416 * Must find next byte to transmit
418 seq
= sp
->firstRtmtSeq
; /* Seq # of oldest in buffer */
419 while ((diff
= (sp
->sendSeq
- seq
)) >= ((bsize
= gbuf_msgsize(smp
)) + eom
)) {
420 seq
+= bsize
+ eom
; /* update sequence # */
421 if (gbuf_next(smp
)) { /* if another send buffer */
422 smp
= gbuf_next(smp
);
424 } else if (smp
== sp
->csbuf_mb
) { /* seen the current one? */
427 } else if (sp
->csbuf_mb
) { /* look at it */
430 } else { /* no more buffers */
437 if (gbuf_next(smp
) == 0) /* last block */
439 cnt
= bsize
- diff
; /* # of bytes in this block */
444 * Check to see if the number of bytes is less than the 'send
445 * Blocking' setting. If so, then we won't send this data unless
446 * we're flushing. So we set up a timer to force a flush later.
448 if ((cnt
< sp
->sendBlocking
) && !sp
->writeFlush
) {
449 InsertTimerElem(&adspGlobal
.fastTimers
, &sp
->FlushTimer
,
451 return 0; /* no data to send */
454 if (cnt
> ADSP_MAX_DATA_LEN
) { /* truncate to one packet */
455 cnt
= ADSP_MAX_DATA_LEN
;
457 sendAckReq
= 0; /* Won't send ack because end of data */
462 /* trim extra bytes off the beginning of the "block" before the copy */
464 if (gbuf_len(smp
) > diff
)
467 diff
-= gbuf_len(smp
);
468 smp
= gbuf_cont(smp
);
470 if((gbuf_cont(mp
) = gbuf_dupm(smp
)) == 0) /* copy the data */
472 smp
= gbuf_cont(mp
); /* use the new message blocks */
473 gbuf_rinc(smp
,diff
); /* and get to the first byte of data to send */
476 * Check to see if this many bytes will close the other end's
477 * receive window. If so, we need to send an ack request along
478 * with this. sendWdwSeq is the seq # of the last byte that
479 * the remote has room for
481 if ((diff
= sp
->sendWdwSeq
+ 1 - sp
->sendSeq
) <= cnt
) {
482 if (diff
< cnt
) { /* Won't fit exactly */
483 eom
= 0; /* so can't send EOM */
487 sendAckReq
= 1; /* Make him tell us new recv. window */
488 sp
->noXmitFlow
= 1; /* Don't do flow control calc. */
491 /* trim extra bytes off the tail of the "block" after the copy */
492 if (partial
&& smp
) {
495 while (tcnt
&& smp
) { /* while there are message blocks and data */
496 if (tcnt
>= gbuf_len(smp
)) {
497 tcnt
-= gbuf_len(smp
);
500 smp
= gbuf_cont(smp
);
502 if (psmp
!= smp
) { /* not the first item on the list */
507 gbuf_freem(gbuf_cont(smp
));
514 if (gbuf_cont(smp
)) {
515 gbuf_freem(gbuf_cont(smp
));
523 sp
->sendSeq
+= cnt
+ eom
; /* Update sendSeq field */
525 if (GT(sp
->sendSeq
, sp
->maxSendSeq
)) /* Keep track of >st ever sent */
526 sp
->maxSendSeq
= sp
->sendSeq
;
529 sp
->f
.descriptor
= ADSP_EOM_BIT
;
531 sp
->f
.descriptor
= 0;
533 if (sendAckReq
|| (++sp
->pktSendCnt
>= sp
->pktSendMax
)) {
534 /* Last packet in a series */
535 sp
->f
.descriptor
|= ADSP_ACK_REQ_BIT
; /* We want an ack to this */
536 sp
->waitingAck
= 1; /* Flag that we're waiting */
537 sp
->sendStamp
= SysTicks(); /* Save time we sent request */
538 sp
->timerSeq
= sp
->sendSeq
; /* Save seq # we want acked */
539 InsertTimerElem(&adspGlobal
.fastTimers
, &sp
->RetryTimer
,
540 sp
->rtmtInterval
+TX_DLY
);