rx: Helper function for decrementing conn refcnt
[openafs.git] / src / rx / rx.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  *
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /* RX:  Extended Remote Procedure Call */
11
12 #include <afsconfig.h>
13 #include <afs/param.h>
14
15 #ifdef KERNEL
16 # include "afs/sysincludes.h"
17 # include "afsincludes.h"
18 # ifndef UKERNEL
19 #  include "h/types.h"
20 #  include "h/time.h"
21 #  include "h/stat.h"
22 #  ifdef AFS_LINUX20_ENV
23 #   include "h/socket.h"
24 #  endif
25 #  include "netinet/in.h"
26 #  ifdef AFS_SUN5_ENV
27 #   include "netinet/ip6.h"
28 #   include "inet/common.h"
29 #   include "inet/ip.h"
30 #   include "inet/ip_ire.h"
31 #  endif
32 #  include "afs/afs_args.h"
33 #  include "afs/afs_osi.h"
34 #  ifdef RX_KERNEL_TRACE
35 #   include "rx_kcommon.h"
36 #  endif
37 #  if   defined(AFS_AIX_ENV)
38 #   include "h/systm.h"
39 #  endif
40 #  ifdef RXDEBUG
41 #   undef RXDEBUG                       /* turn off debugging */
42 #  endif /* RXDEBUG */
43 #  if defined(AFS_SGI_ENV)
44 #   include "sys/debug.h"
45 #  endif
46 # else /* !UKERNEL */
47 #  include "afs/sysincludes.h"
48 #  include "afsincludes.h"
49 # endif /* !UKERNEL */
50 # include "afs/lock.h"
51 # include "rx_kmutex.h"
52 # include "rx_kernel.h"
53 # define        AFSOP_STOP_RXCALLBACK   210     /* Stop CALLBACK process */
54 # define        AFSOP_STOP_AFS          211     /* Stop AFS process */
55 # define        AFSOP_STOP_BKG          212     /* Stop BKG process */
56 extern afs_int32 afs_termState;
57 # ifdef AFS_AIX41_ENV
58 #  include "sys/lockl.h"
59 #  include "sys/lock_def.h"
60 # endif /* AFS_AIX41_ENV */
61 # include "afs/rxgen_consts.h"
62 #else /* KERNEL */
63 # include <roken.h>
64
65 # ifdef AFS_NT40_ENV
66 #  include <afs/afsutil.h>
67 #  include <WINNT\afsreg.h>
68 # endif
69
70 # include "rx_user.h"
71 #endif /* KERNEL */
72
73 #include "rx.h"
74 #include "rx_clock.h"
75 #include "rx_queue.h"
76 #include "rx_atomic.h"
77 #include "rx_globals.h"
78 #include "rx_trace.h"
79 #include "rx_internal.h"
80 #include "rx_stats.h"
81 #include "rx_event.h"
82
83 #include "rx_conn.h"
84 #include "rx_call.h"
85 #include "rx_packet.h"
86
87 #include <afs/rxgen_consts.h>
88
89 #ifndef KERNEL
90 #ifdef AFS_PTHREAD_ENV
91 #ifndef AFS_NT40_ENV
92 int (*registerProgram) (pid_t, char *) = 0;
93 int (*swapNameProgram) (pid_t, const char *, char *) = 0;
94 #endif
95 #else
96 int (*registerProgram) (PROCESS, char *) = 0;
97 int (*swapNameProgram) (PROCESS, const char *, char *) = 0;
98 #endif
99 #endif
100
101 /* Local static routines */
102 static void rxi_DestroyConnectionNoLock(struct rx_connection *conn);
103 static void rxi_ComputeRoundTripTime(struct rx_packet *, struct rx_ackPacket *,
104                                      struct rx_call *, struct rx_peer *,
105                                      struct clock *);
106 static void rxi_Resend(struct rxevent *event, void *arg0, void *arg1,
107                        int istack);
108 static void rxi_SendDelayedAck(struct rxevent *event, void *call,
109                                void *dummy, int dummy2);
110 static void rxi_SendDelayedCallAbort(struct rxevent *event, void *arg1,
111                                      void *dummy, int dummy2);
112 static void rxi_SendDelayedConnAbort(struct rxevent *event, void *arg1,
113                                      void *unused, int unused2);
114 static void rxi_ReapConnections(struct rxevent *unused, void *unused1,
115                                 void *unused2, int unused3);
116
117 #ifdef RX_ENABLE_LOCKS
118 static void rxi_SetAcksInTransmitQueue(struct rx_call *call);
119 #endif
120
121 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
122 struct rx_tq_debug {
123     rx_atomic_t rxi_start_aborted; /* rxi_start awoke after rxi_Send in error.*/
124     rx_atomic_t rxi_start_in_error;
125 } rx_tq_debug;
126 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
127
128 /* Constant delay time before sending an acknowledge of the last packet
129  * received.  This is to avoid sending an extra acknowledge when the
130  * client is about to make another call, anyway, or the server is
131  * about to respond.
132  *
133  * The lastAckDelay may not exceeed 400ms without causing peers to
134  * unecessarily timeout.
135  */
136 struct clock rx_lastAckDelay = {0, 400000};
137
138 /* Constant delay time before sending a soft ack when none was requested.
139  * This is to make sure we send soft acks before the sender times out,
140  * Normally we wait and send a hard ack when the receiver consumes the packet
141  *
142  * This value has been 100ms in all shipping versions of OpenAFS. Changing it
143  * will require changes to the peer's RTT calculations.
144  */
145 struct clock rx_softAckDelay = {0, 100000};
146
147 /*
148  * rxi_rpc_peer_stat_cnt counts the total number of peer stat structures
149  * currently allocated within rx.  This number is used to allocate the
150  * memory required to return the statistics when queried.
151  * Protected by the rx_rpc_stats mutex.
152  */
153
154 static unsigned int rxi_rpc_peer_stat_cnt;
155
156 /*
157  * rxi_rpc_process_stat_cnt counts the total number of local process stat
158  * structures currently allocated within rx.  The number is used to allocate
159  * the memory required to return the statistics when queried.
160  * Protected by the rx_rpc_stats mutex.
161  */
162
163 static unsigned int rxi_rpc_process_stat_cnt;
164
165 /*
166  * rxi_busyChannelError is the error to return to the application when a call
167  * channel appears busy (inferred from the receipt of RX_PACKET_TYPE_BUSY
168  * packets on the channel), and there are other call channels in the
169  * connection that are not busy. If 0, we do not return errors upon receiving
170  * busy packets; we just keep trying on the same call channel until we hit a
171  * timeout.
172  */
173 static afs_int32 rxi_busyChannelError = 0;
174
175 rx_atomic_t rx_nWaiting = RX_ATOMIC_INIT(0);
176 rx_atomic_t rx_nWaited = RX_ATOMIC_INIT(0);
177
178 #if !defined(offsetof)
179 #include <stddef.h>             /* for definition of offsetof() */
180 #endif
181
182 #ifdef RX_ENABLE_LOCKS
183 afs_kmutex_t rx_atomic_mutex;
184 #endif
185
186 /* Forward prototypes */
187 static struct rx_call * rxi_NewCall(struct rx_connection *, int);
188
189 static_inline void
190 putConnection (struct rx_connection *conn) {
191     MUTEX_ENTER(&rx_refcnt_mutex);
192     conn->refCount--;
193     MUTEX_EXIT(&rx_refcnt_mutex);
194 }
195
196 #ifdef AFS_PTHREAD_ENV
197
198 /*
199  * Use procedural initialization of mutexes/condition variables
200  * to ease NT porting
201  */
202
203 extern afs_kmutex_t rx_quota_mutex;
204 extern afs_kmutex_t rx_pthread_mutex;
205 extern afs_kmutex_t rx_packets_mutex;
206 extern afs_kmutex_t rx_refcnt_mutex;
207 extern afs_kmutex_t des_init_mutex;
208 extern afs_kmutex_t des_random_mutex;
209 extern afs_kmutex_t rx_clock_mutex;
210 extern afs_kmutex_t rxi_connCacheMutex;
211 extern afs_kmutex_t event_handler_mutex;
212 extern afs_kmutex_t listener_mutex;
213 extern afs_kmutex_t rx_if_init_mutex;
214 extern afs_kmutex_t rx_if_mutex;
215
216 extern afs_kcondvar_t rx_event_handler_cond;
217 extern afs_kcondvar_t rx_listener_cond;
218
219 static afs_kmutex_t epoch_mutex;
220 static afs_kmutex_t rx_init_mutex;
221 static afs_kmutex_t rx_debug_mutex;
222 static afs_kmutex_t rx_rpc_stats;
223
224 static void
225 rxi_InitPthread(void)
226 {
227     MUTEX_INIT(&rx_clock_mutex, "clock", MUTEX_DEFAULT, 0);
228     MUTEX_INIT(&rx_stats_mutex, "stats", MUTEX_DEFAULT, 0);
229     MUTEX_INIT(&rx_atomic_mutex, "atomic", MUTEX_DEFAULT, 0);
230     MUTEX_INIT(&rx_quota_mutex, "quota", MUTEX_DEFAULT, 0);
231     MUTEX_INIT(&rx_pthread_mutex, "pthread", MUTEX_DEFAULT, 0);
232     MUTEX_INIT(&rx_packets_mutex, "packets", MUTEX_DEFAULT, 0);
233     MUTEX_INIT(&rx_refcnt_mutex, "refcnts", MUTEX_DEFAULT, 0);
234     MUTEX_INIT(&epoch_mutex, "epoch", MUTEX_DEFAULT, 0);
235     MUTEX_INIT(&rx_init_mutex, "init", MUTEX_DEFAULT, 0);
236     MUTEX_INIT(&event_handler_mutex, "event handler", MUTEX_DEFAULT, 0);
237     MUTEX_INIT(&rxi_connCacheMutex, "conn cache", MUTEX_DEFAULT, 0);
238     MUTEX_INIT(&listener_mutex, "listener", MUTEX_DEFAULT, 0);
239     MUTEX_INIT(&rx_if_init_mutex, "if init", MUTEX_DEFAULT, 0);
240     MUTEX_INIT(&rx_if_mutex, "if", MUTEX_DEFAULT, 0);
241     MUTEX_INIT(&rx_debug_mutex, "debug", MUTEX_DEFAULT, 0);
242
243     CV_INIT(&rx_event_handler_cond, "evhand", CV_DEFAULT, 0);
244     CV_INIT(&rx_listener_cond, "rxlisten", CV_DEFAULT, 0);
245
246     osi_Assert(pthread_key_create(&rx_thread_id_key, NULL) == 0);
247     osi_Assert(pthread_key_create(&rx_ts_info_key, NULL) == 0);
248
249     MUTEX_INIT(&rx_rpc_stats, "rx_rpc_stats", MUTEX_DEFAULT, 0);
250     MUTEX_INIT(&rx_freePktQ_lock, "rx_freePktQ_lock", MUTEX_DEFAULT, 0);
251 #ifdef  RX_ENABLE_LOCKS
252 #ifdef RX_LOCKS_DB
253     rxdb_init();
254 #endif /* RX_LOCKS_DB */
255     MUTEX_INIT(&freeSQEList_lock, "freeSQEList lock", MUTEX_DEFAULT, 0);
256     MUTEX_INIT(&rx_freeCallQueue_lock, "rx_freeCallQueue_lock", MUTEX_DEFAULT,
257                0);
258     CV_INIT(&rx_waitingForPackets_cv, "rx_waitingForPackets_cv", CV_DEFAULT,
259             0);
260     MUTEX_INIT(&rx_peerHashTable_lock, "rx_peerHashTable_lock", MUTEX_DEFAULT,
261                0);
262     MUTEX_INIT(&rx_connHashTable_lock, "rx_connHashTable_lock", MUTEX_DEFAULT,
263                0);
264     MUTEX_INIT(&rx_serverPool_lock, "rx_serverPool_lock", MUTEX_DEFAULT, 0);
265     MUTEX_INIT(&rxi_keyCreate_lock, "rxi_keyCreate_lock", MUTEX_DEFAULT, 0);
266 #endif /* RX_ENABLE_LOCKS */
267 }
268
269 pthread_once_t rx_once_init = PTHREAD_ONCE_INIT;
270 #define INIT_PTHREAD_LOCKS osi_Assert(pthread_once(&rx_once_init, rxi_InitPthread)==0)
271 /*
272  * The rx_stats_mutex mutex protects the following global variables:
273  * rxi_lowConnRefCount
274  * rxi_lowPeerRefCount
275  * rxi_nCalls
276  * rxi_Alloccnt
277  * rxi_Allocsize
278  * rx_tq_debug
279  * rx_stats
280  */
281
282 /*
283  * The rx_quota_mutex mutex protects the following global variables:
284  * rxi_dataQuota
285  * rxi_minDeficit
286  * rxi_availProcs
287  * rxi_totalMin
288  */
289
290 /*
291  * The rx_freePktQ_lock protects the following global variables:
292  * rx_nFreePackets
293  */
294
295 /*
296  * The rx_packets_mutex mutex protects the following global variables:
297  * rx_nPackets
298  * rx_TSFPQLocalMax
299  * rx_TSFPQGlobSize
300  * rx_TSFPQMaxProcs
301  */
302
303 /*
304  * The rx_pthread_mutex mutex protects the following global variables:
305  * rxi_fcfs_thread_num
306  */
307 #else
308 #define INIT_PTHREAD_LOCKS
309 #endif
310
311
312 /* Variables for handling the minProcs implementation.  availProcs gives the
313  * number of threads available in the pool at this moment (not counting dudes
314  * executing right now).  totalMin gives the total number of procs required
315  * for handling all minProcs requests.  minDeficit is a dynamic variable
316  * tracking the # of procs required to satisfy all of the remaining minProcs
317  * demands.
318  * For fine grain locking to work, the quota check and the reservation of
319  * a server thread has to come while rxi_availProcs and rxi_minDeficit
320  * are locked. To this end, the code has been modified under #ifdef
321  * RX_ENABLE_LOCKS so that quota checks and reservation occur at the
322  * same time. A new function, ReturnToServerPool() returns the allocation.
323  *
324  * A call can be on several queue's (but only one at a time). When
325  * rxi_ResetCall wants to remove the call from a queue, it has to ensure
326  * that no one else is touching the queue. To this end, we store the address
327  * of the queue lock in the call structure (under the call lock) when we
328  * put the call on a queue, and we clear the call_queue_lock when the
329  * call is removed from a queue (once the call lock has been obtained).
330  * This allows rxi_ResetCall to safely synchronize with others wishing
331  * to manipulate the queue.
332  */
333
334 #if defined(RX_ENABLE_LOCKS)
335 static afs_kmutex_t rx_rpc_stats;
336 #endif
337
338 /* We keep a "last conn pointer" in rxi_FindConnection. The odds are
339 ** pretty good that the next packet coming in is from the same connection
340 ** as the last packet, since we're send multiple packets in a transmit window.
341 */
342 struct rx_connection *rxLastConn = 0;
343
344 #ifdef RX_ENABLE_LOCKS
345 /* The locking hierarchy for rx fine grain locking is composed of these
346  * tiers:
347  *
348  * rx_connHashTable_lock - synchronizes conn creation, rx_connHashTable access
349  * conn_call_lock - used to synchonize rx_EndCall and rx_NewCall
350  * call->lock - locks call data fields.
351  * These are independent of each other:
352  *      rx_freeCallQueue_lock
353  *      rxi_keyCreate_lock
354  * rx_serverPool_lock
355  * freeSQEList_lock
356  *
357  * serverQueueEntry->lock
358  * rx_peerHashTable_lock - locked under rx_connHashTable_lock
359  * rx_rpc_stats
360  * peer->lock - locks peer data fields.
361  * conn_data_lock - that more than one thread is not updating a conn data
362  *                  field at the same time.
363  * rx_freePktQ_lock
364  *
365  * lowest level:
366  *      multi_handle->lock
367  *      rxevent_lock
368  *      rx_packets_mutex
369  *      rx_stats_mutex
370  *      rx_refcnt_mutex
371  *      rx_atomic_mutex
372  *
373  * Do we need a lock to protect the peer field in the conn structure?
374  *      conn->peer was previously a constant for all intents and so has no
375  *      lock protecting this field. The multihomed client delta introduced
376  *      a RX code change : change the peer field in the connection structure
377  *      to that remote interface from which the last packet for this
378  *      connection was sent out. This may become an issue if further changes
379  *      are made.
380  */
381 #define SET_CALL_QUEUE_LOCK(C, L) (C)->call_queue_lock = (L)
382 #define CLEAR_CALL_QUEUE_LOCK(C) (C)->call_queue_lock = NULL
383 #ifdef RX_LOCKS_DB
384 /* rxdb_fileID is used to identify the lock location, along with line#. */
385 static int rxdb_fileID = RXDB_FILE_RX;
386 #endif /* RX_LOCKS_DB */
387 #else /* RX_ENABLE_LOCKS */
388 #define SET_CALL_QUEUE_LOCK(C, L)
389 #define CLEAR_CALL_QUEUE_LOCK(C)
390 #endif /* RX_ENABLE_LOCKS */
391 struct rx_serverQueueEntry *rx_waitForPacket = 0;
392 struct rx_serverQueueEntry *rx_waitingForPacket = 0;
393
394 /* ------------Exported Interfaces------------- */
395
396 /* This function allows rxkad to set the epoch to a suitably random number
397  * which rx_NewConnection will use in the future.  The principle purpose is to
398  * get rxnull connections to use the same epoch as the rxkad connections do, at
399  * least once the first rxkad connection is established.  This is important now
400  * that the host/port addresses aren't used in FindConnection: the uniqueness
401  * of epoch/cid matters and the start time won't do. */
402
403 #ifdef AFS_PTHREAD_ENV
404 /*
405  * This mutex protects the following global variables:
406  * rx_epoch
407  */
408
409 #define LOCK_EPOCH MUTEX_ENTER(&epoch_mutex)
410 #define UNLOCK_EPOCH MUTEX_EXIT(&epoch_mutex)
411 #else
412 #define LOCK_EPOCH
413 #define UNLOCK_EPOCH
414 #endif /* AFS_PTHREAD_ENV */
415
416 void
417 rx_SetEpoch(afs_uint32 epoch)
418 {
419     LOCK_EPOCH;
420     rx_epoch = epoch;
421     UNLOCK_EPOCH;
422 }
423
424 /* Initialize rx.  A port number may be mentioned, in which case this
425  * becomes the default port number for any service installed later.
426  * If 0 is provided for the port number, a random port will be chosen
427  * by the kernel.  Whether this will ever overlap anything in
428  * /etc/services is anybody's guess...  Returns 0 on success, -1 on
429  * error. */
430 #ifndef AFS_NT40_ENV
431 static
432 #endif
433 int rxinit_status = 1;
434 #ifdef AFS_PTHREAD_ENV
435 /*
436  * This mutex protects the following global variables:
437  * rxinit_status
438  */
439
440 #define LOCK_RX_INIT MUTEX_ENTER(&rx_init_mutex)
441 #define UNLOCK_RX_INIT MUTEX_EXIT(&rx_init_mutex)
442 #else
443 #define LOCK_RX_INIT
444 #define UNLOCK_RX_INIT
445 #endif
446
447 int
448 rx_InitHost(u_int host, u_int port)
449 {
450 #ifdef KERNEL
451     osi_timeval_t tv;
452 #else /* KERNEL */
453     struct timeval tv;
454 #endif /* KERNEL */
455     char *htable, *ptable;
456     int tmp_status;
457
458     SPLVAR;
459
460     INIT_PTHREAD_LOCKS;
461     LOCK_RX_INIT;
462     if (rxinit_status == 0) {
463         tmp_status = rxinit_status;
464         UNLOCK_RX_INIT;
465         return tmp_status;      /* Already started; return previous error code. */
466     }
467 #ifdef RXDEBUG
468     rxi_DebugInit();
469 #endif
470 #ifdef AFS_NT40_ENV
471     if (afs_winsockInit() < 0)
472         return -1;
473 #endif
474
475 #ifndef KERNEL
476     /*
477      * Initialize anything necessary to provide a non-premptive threading
478      * environment.
479      */
480     rxi_InitializeThreadSupport();
481 #endif
482
483     /* Allocate and initialize a socket for client and perhaps server
484      * connections. */
485
486     rx_socket = rxi_GetHostUDPSocket(host, (u_short) port);
487     if (rx_socket == OSI_NULLSOCKET) {
488         UNLOCK_RX_INIT;
489         return RX_ADDRINUSE;
490     }
491 #if defined(RX_ENABLE_LOCKS) && defined(KERNEL)
492 #ifdef RX_LOCKS_DB
493     rxdb_init();
494 #endif /* RX_LOCKS_DB */
495     MUTEX_INIT(&rx_stats_mutex, "rx_stats_mutex", MUTEX_DEFAULT, 0);
496     MUTEX_INIT(&rx_quota_mutex, "rx_quota_mutex", MUTEX_DEFAULT, 0);
497     MUTEX_INIT(&rx_pthread_mutex, "rx_pthread_mutex", MUTEX_DEFAULT, 0);
498     MUTEX_INIT(&rx_packets_mutex, "rx_packets_mutex", MUTEX_DEFAULT, 0);
499     MUTEX_INIT(&rx_refcnt_mutex, "rx_refcnt_mutex", MUTEX_DEFAULT, 0);
500     MUTEX_INIT(&rx_rpc_stats, "rx_rpc_stats", MUTEX_DEFAULT, 0);
501     MUTEX_INIT(&rx_freePktQ_lock, "rx_freePktQ_lock", MUTEX_DEFAULT, 0);
502     MUTEX_INIT(&freeSQEList_lock, "freeSQEList lock", MUTEX_DEFAULT, 0);
503     MUTEX_INIT(&rx_freeCallQueue_lock, "rx_freeCallQueue_lock", MUTEX_DEFAULT,
504                0);
505     CV_INIT(&rx_waitingForPackets_cv, "rx_waitingForPackets_cv", CV_DEFAULT,
506             0);
507     MUTEX_INIT(&rx_peerHashTable_lock, "rx_peerHashTable_lock", MUTEX_DEFAULT,
508                0);
509     MUTEX_INIT(&rx_connHashTable_lock, "rx_connHashTable_lock", MUTEX_DEFAULT,
510                0);
511     MUTEX_INIT(&rx_serverPool_lock, "rx_serverPool_lock", MUTEX_DEFAULT, 0);
512 #if defined(AFS_HPUX110_ENV)
513     if (!uniprocessor)
514         rx_sleepLock = alloc_spinlock(LAST_HELD_ORDER - 10, "rx_sleepLock");
515 #endif /* AFS_HPUX110_ENV */
516 #endif /* RX_ENABLE_LOCKS && KERNEL */
517
518     rxi_nCalls = 0;
519     rx_connDeadTime = 12;
520     rx_tranquil = 0;            /* reset flag */
521     rxi_ResetStatistics();
522     htable = (char *)
523         osi_Alloc(rx_hashTableSize * sizeof(struct rx_connection *));
524     PIN(htable, rx_hashTableSize * sizeof(struct rx_connection *));     /* XXXXX */
525     memset(htable, 0, rx_hashTableSize * sizeof(struct rx_connection *));
526     ptable = (char *)osi_Alloc(rx_hashTableSize * sizeof(struct rx_peer *));
527     PIN(ptable, rx_hashTableSize * sizeof(struct rx_peer *));   /* XXXXX */
528     memset(ptable, 0, rx_hashTableSize * sizeof(struct rx_peer *));
529
530     /* Malloc up a bunch of packets & buffers */
531     rx_nFreePackets = 0;
532     queue_Init(&rx_freePacketQueue);
533     rxi_NeedMorePackets = FALSE;
534     rx_nPackets = 0;    /* rx_nPackets is managed by rxi_MorePackets* */
535
536     /* enforce a minimum number of allocated packets */
537     if (rx_extraPackets < rxi_nSendFrags * rx_maxSendWindow)
538         rx_extraPackets = rxi_nSendFrags * rx_maxSendWindow;
539
540     /* allocate the initial free packet pool */
541 #ifdef RX_ENABLE_TSFPQ
542     rxi_MorePacketsTSFPQ(rx_extraPackets + RX_MAX_QUOTA + 2, RX_TS_FPQ_FLUSH_GLOBAL, 0);
543 #else /* RX_ENABLE_TSFPQ */
544     rxi_MorePackets(rx_extraPackets + RX_MAX_QUOTA + 2);        /* fudge */
545 #endif /* RX_ENABLE_TSFPQ */
546     rx_CheckPackets();
547
548     NETPRI;
549
550     clock_Init();
551
552 #if defined(AFS_NT40_ENV) && !defined(AFS_PTHREAD_ENV)
553     tv.tv_sec = clock_now.sec;
554     tv.tv_usec = clock_now.usec;
555     srand((unsigned int)tv.tv_usec);
556 #else
557     osi_GetTime(&tv);
558 #endif
559     if (port) {
560         rx_port = port;
561     } else {
562 #if defined(KERNEL) && !defined(UKERNEL)
563         /* Really, this should never happen in a real kernel */
564         rx_port = 0;
565 #else
566         struct sockaddr_in addr;
567 #ifdef AFS_NT40_ENV
568         int addrlen = sizeof(addr);
569 #else
570         socklen_t addrlen = sizeof(addr);
571 #endif
572         if (getsockname((intptr_t)rx_socket, (struct sockaddr *)&addr, &addrlen)) {
573             rx_Finalize();
574             return -1;
575         }
576         rx_port = addr.sin_port;
577 #endif
578     }
579     rx_stats.minRtt.sec = 9999999;
580 #ifdef  KERNEL
581     rx_SetEpoch(tv.tv_sec | 0x80000000);
582 #else
583     rx_SetEpoch(tv.tv_sec);     /* Start time of this package, rxkad
584                                  * will provide a randomer value. */
585 #endif
586     MUTEX_ENTER(&rx_quota_mutex);
587     rxi_dataQuota += rx_extraQuota; /* + extra pkts caller asked to rsrv */
588     MUTEX_EXIT(&rx_quota_mutex);
589     /* *Slightly* random start time for the cid.  This is just to help
590      * out with the hashing function at the peer */
591     rx_nextCid = ((tv.tv_sec ^ tv.tv_usec) << RX_CIDSHIFT);
592     rx_connHashTable = (struct rx_connection **)htable;
593     rx_peerHashTable = (struct rx_peer **)ptable;
594
595     rx_hardAckDelay.sec = 0;
596     rx_hardAckDelay.usec = 100000;      /* 100 milliseconds */
597
598     rxevent_Init(20, rxi_ReScheduleEvents);
599
600     /* Initialize various global queues */
601     queue_Init(&rx_idleServerQueue);
602     queue_Init(&rx_incomingCallQueue);
603     queue_Init(&rx_freeCallQueue);
604
605 #if defined(AFS_NT40_ENV) && !defined(KERNEL)
606     /* Initialize our list of usable IP addresses. */
607     rx_GetIFInfo();
608 #endif
609
610 #if defined(RXK_LISTENER_ENV) || !defined(KERNEL)
611     /* Start listener process (exact function is dependent on the
612      * implementation environment--kernel or user space) */
613     rxi_StartListener();
614 #endif
615
616     USERPRI;
617     tmp_status = rxinit_status = 0;
618     UNLOCK_RX_INIT;
619     return tmp_status;
620 }
621
622 int
623 rx_Init(u_int port)
624 {
625     return rx_InitHost(htonl(INADDR_ANY), port);
626 }
627
628 /* RTT Timer
629  * ---------
630  *
631  * The rxi_rto functions implement a TCP (RFC2988) style algorithm for
632  * maintaing the round trip timer.
633  *
634  */
635
636 /*!
637  * Start a new RTT timer for a given call and packet.
638  *
639  * There must be no resendEvent already listed for this call, otherwise this
640  * will leak events - intended for internal use within the RTO code only
641  *
642  * @param[in] call
643  *      the RX call to start the timer for
644  * @param[in] lastPacket
645  *      a flag indicating whether the last packet has been sent or not
646  *
647  * @pre call must be locked before calling this function
648  *
649  */
650 static_inline void
651 rxi_rto_startTimer(struct rx_call *call, int lastPacket, int istack)
652 {
653     struct clock now, retryTime;
654
655     clock_GetTime(&now);
656     retryTime = now;
657
658     clock_Add(&retryTime, &call->rto);
659
660     /* If we're sending the last packet, and we're the client, then the server
661      * may wait for an additional 400ms before returning the ACK, wait for it
662      * rather than hitting a timeout */
663     if (lastPacket && call->conn->type == RX_CLIENT_CONNECTION)
664         clock_Addmsec(&retryTime, 400);
665
666     MUTEX_ENTER(&rx_refcnt_mutex);
667     CALL_HOLD(call, RX_CALL_REFCOUNT_RESEND);
668     MUTEX_EXIT(&rx_refcnt_mutex);
669     call->resendEvent = rxevent_Post(&retryTime, &now, rxi_Resend,
670                                      call, NULL, istack);
671 }
672
673 /*!
674  * Cancel an RTT timer for a given call.
675  *
676  *
677  * @param[in] call
678  *      the RX call to cancel the timer for
679  *
680  * @pre call must be locked before calling this function
681  *
682  */
683
684 static_inline void
685 rxi_rto_cancel(struct rx_call *call)
686 {
687     rxevent_Cancel(&call->resendEvent, call, RX_CALL_REFCOUNT_RESEND);
688 }
689
690 /*!
691  * Tell the RTO timer that we have sent a packet.
692  *
693  * If the timer isn't already running, then start it. If the timer is running,
694  * then do nothing.
695  *
696  * @param[in] call
697  *      the RX call that the packet has been sent on
698  * @param[in] lastPacket
699  *      A flag which is true if this is the last packet for the call
700  *
701  * @pre The call must be locked before calling this function
702  *
703  */
704
705 static_inline void
706 rxi_rto_packet_sent(struct rx_call *call, int lastPacket, int istack)
707 {
708     if (call->resendEvent)
709         return;
710
711     rxi_rto_startTimer(call, lastPacket, istack);
712 }
713
714 /*!
715  * Tell the RTO timer that we have received an new ACK message
716  *
717  * This function should be called whenever a call receives an ACK that
718  * acknowledges new packets. Whatever happens, we stop the current timer.
719  * If there are unacked packets in the queue which have been sent, then
720  * we restart the timer from now. Otherwise, we leave it stopped.
721  *
722  * @param[in] call
723  *      the RX call that the ACK has been received on
724  */
725
726 static_inline void
727 rxi_rto_packet_acked(struct rx_call *call, int istack)
728 {
729     struct rx_packet *p, *nxp;
730
731     rxi_rto_cancel(call);
732
733     if (queue_IsEmpty(&call->tq))
734         return;
735
736     for (queue_Scan(&call->tq, p, nxp, rx_packet)) {
737         if (p->header.seq > call->tfirst + call->twind)
738             return;
739
740         if (!(p->flags & RX_PKTFLAG_ACKED) && p->flags & RX_PKTFLAG_SENT) {
741             rxi_rto_startTimer(call, p->header.flags & RX_LAST_PACKET, istack);
742             return;
743         }
744     }
745 }
746
747
748 /**
749  * Set an initial round trip timeout for a peer connection
750  *
751  * @param[in] secs The timeout to set in seconds
752  */
753
754 void
755 rx_rto_setPeerTimeoutSecs(struct rx_peer *peer, int secs) {
756     peer->rtt = secs * 8000;
757 }
758
759 /**
760  * Sets the error generated when a busy call channel is detected.
761  *
762  * @param[in] error The error to return for a call on a busy channel.
763  *
764  * @pre Neither rx_Init nor rx_InitHost have been called yet
765  */
766 void
767 rx_SetBusyChannelError(afs_int32 error)
768 {
769     osi_Assert(rxinit_status != 0);
770     rxi_busyChannelError = error;
771 }
772
773 /**
774  * Set a delayed ack event on the specified call for the given time
775  *
776  * @param[in] call - the call on which to set the event
777  * @param[in] offset - the delay from now after which the event fires
778  */
779 void
780 rxi_PostDelayedAckEvent(struct rx_call *call, struct clock *offset)
781 {
782     struct clock now, when;
783
784     clock_GetTime(&now);
785     when = now;
786     clock_Add(&when, offset);
787
788     if (!call->delayedAckEvent
789         || clock_Gt(&call->delayedAckTime, &when)) {
790
791         rxevent_Cancel(&call->delayedAckEvent, call,
792                        RX_CALL_REFCOUNT_DELAY);
793         MUTEX_ENTER(&rx_refcnt_mutex);
794         CALL_HOLD(call, RX_CALL_REFCOUNT_DELAY);
795         MUTEX_EXIT(&rx_refcnt_mutex);
796
797         call->delayedAckEvent = rxevent_Post(&when, &now,
798                                              rxi_SendDelayedAck,
799                                              call, NULL, 0);
800         call->delayedAckTime = when;
801     }
802 }
803
804 /* called with unincremented nRequestsRunning to see if it is OK to start
805  * a new thread in this service.  Could be "no" for two reasons: over the
806  * max quota, or would prevent others from reaching their min quota.
807  */
808 #ifdef RX_ENABLE_LOCKS
809 /* This verion of QuotaOK reserves quota if it's ok while the
810  * rx_serverPool_lock is held.  Return quota using ReturnToServerPool().
811  */
812 static int
813 QuotaOK(struct rx_service *aservice)
814 {
815     /* check if over max quota */
816     if (aservice->nRequestsRunning >= aservice->maxProcs) {
817         return 0;
818     }
819
820     /* under min quota, we're OK */
821     /* otherwise, can use only if there are enough to allow everyone
822      * to go to their min quota after this guy starts.
823      */
824
825     MUTEX_ENTER(&rx_quota_mutex);
826     if ((aservice->nRequestsRunning < aservice->minProcs)
827         || (rxi_availProcs > rxi_minDeficit)) {
828         aservice->nRequestsRunning++;
829         /* just started call in minProcs pool, need fewer to maintain
830          * guarantee */
831         if (aservice->nRequestsRunning <= aservice->minProcs)
832             rxi_minDeficit--;
833         rxi_availProcs--;
834         MUTEX_EXIT(&rx_quota_mutex);
835         return 1;
836     }
837     MUTEX_EXIT(&rx_quota_mutex);
838
839     return 0;
840 }
841
842 static void
843 ReturnToServerPool(struct rx_service *aservice)
844 {
845     aservice->nRequestsRunning--;
846     MUTEX_ENTER(&rx_quota_mutex);
847     if (aservice->nRequestsRunning < aservice->minProcs)
848         rxi_minDeficit++;
849     rxi_availProcs++;
850     MUTEX_EXIT(&rx_quota_mutex);
851 }
852
853 #else /* RX_ENABLE_LOCKS */
854 static int
855 QuotaOK(struct rx_service *aservice)
856 {
857     int rc = 0;
858     /* under min quota, we're OK */
859     if (aservice->nRequestsRunning < aservice->minProcs)
860         return 1;
861
862     /* check if over max quota */
863     if (aservice->nRequestsRunning >= aservice->maxProcs)
864         return 0;
865
866     /* otherwise, can use only if there are enough to allow everyone
867      * to go to their min quota after this guy starts.
868      */
869     MUTEX_ENTER(&rx_quota_mutex);
870     if (rxi_availProcs > rxi_minDeficit)
871         rc = 1;
872     MUTEX_EXIT(&rx_quota_mutex);
873     return rc;
874 }
875 #endif /* RX_ENABLE_LOCKS */
876
877 #ifndef KERNEL
878 /* Called by rx_StartServer to start up lwp's to service calls.
879    NExistingProcs gives the number of procs already existing, and which
880    therefore needn't be created. */
881 static void
882 rxi_StartServerProcs(int nExistingProcs)
883 {
884     struct rx_service *service;
885     int i;
886     int maxdiff = 0;
887     int nProcs = 0;
888
889     /* For each service, reserve N processes, where N is the "minimum"
890      * number of processes that MUST be able to execute a request in parallel,
891      * at any time, for that process.  Also compute the maximum difference
892      * between any service's maximum number of processes that can run
893      * (i.e. the maximum number that ever will be run, and a guarantee
894      * that this number will run if other services aren't running), and its
895      * minimum number.  The result is the extra number of processes that
896      * we need in order to provide the latter guarantee */
897     for (i = 0; i < RX_MAX_SERVICES; i++) {
898         int diff;
899         service = rx_services[i];
900         if (service == (struct rx_service *)0)
901             break;
902         nProcs += service->minProcs;
903         diff = service->maxProcs - service->minProcs;
904         if (diff > maxdiff)
905             maxdiff = diff;
906     }
907     nProcs += maxdiff;          /* Extra processes needed to allow max number requested to run in any given service, under good conditions */
908     nProcs -= nExistingProcs;   /* Subtract the number of procs that were previously created for use as server procs */
909     for (i = 0; i < nProcs; i++) {
910         rxi_StartServerProc(rx_ServerProc, rx_stackSize);
911     }
912 }
913 #endif /* KERNEL */
914
915 #ifdef AFS_NT40_ENV
916 /* This routine is only required on Windows */
917 void
918 rx_StartClientThread(void)
919 {
920 #ifdef AFS_PTHREAD_ENV
921     pthread_t pid;
922     pid = pthread_self();
923 #endif /* AFS_PTHREAD_ENV */
924 }
925 #endif /* AFS_NT40_ENV */
926
927 /* This routine must be called if any services are exported.  If the
928  * donateMe flag is set, the calling process is donated to the server
929  * process pool */
930 void
931 rx_StartServer(int donateMe)
932 {
933     struct rx_service *service;
934     int i;
935     SPLVAR;
936     clock_NewTime();
937
938     NETPRI;
939     /* Start server processes, if necessary (exact function is dependent
940      * on the implementation environment--kernel or user space).  DonateMe
941      * will be 1 if there is 1 pre-existing proc, i.e. this one.  In this
942      * case, one less new proc will be created rx_StartServerProcs.
943      */
944     rxi_StartServerProcs(donateMe);
945
946     /* count up the # of threads in minProcs, and add set the min deficit to
947      * be that value, too.
948      */
949     for (i = 0; i < RX_MAX_SERVICES; i++) {
950         service = rx_services[i];
951         if (service == (struct rx_service *)0)
952             break;
953         MUTEX_ENTER(&rx_quota_mutex);
954         rxi_totalMin += service->minProcs;
955         /* below works even if a thread is running, since minDeficit would
956          * still have been decremented and later re-incremented.
957          */
958         rxi_minDeficit += service->minProcs;
959         MUTEX_EXIT(&rx_quota_mutex);
960     }
961
962     /* Turn on reaping of idle server connections */
963     rxi_ReapConnections(NULL, NULL, NULL, 0);
964
965     USERPRI;
966
967     if (donateMe) {
968 #ifndef AFS_NT40_ENV
969 #ifndef KERNEL
970         char name[32];
971         static int nProcs;
972 #ifdef AFS_PTHREAD_ENV
973         pid_t pid;
974         pid = afs_pointer_to_int(pthread_self());
975 #else /* AFS_PTHREAD_ENV */
976         PROCESS pid;
977         LWP_CurrentProcess(&pid);
978 #endif /* AFS_PTHREAD_ENV */
979
980         sprintf(name, "srv_%d", ++nProcs);
981         if (registerProgram)
982             (*registerProgram) (pid, name);
983 #endif /* KERNEL */
984 #endif /* AFS_NT40_ENV */
985         rx_ServerProc(NULL);    /* Never returns */
986     }
987 #ifdef RX_ENABLE_TSFPQ
988     /* no use leaving packets around in this thread's local queue if
989      * it isn't getting donated to the server thread pool.
990      */
991     rxi_FlushLocalPacketsTSFPQ();
992 #endif /* RX_ENABLE_TSFPQ */
993     return;
994 }
995
996 /* Create a new client connection to the specified service, using the
997  * specified security object to implement the security model for this
998  * connection. */
999 struct rx_connection *
1000 rx_NewConnection(afs_uint32 shost, u_short sport, u_short sservice,
1001                  struct rx_securityClass *securityObject,
1002                  int serviceSecurityIndex)
1003 {
1004     int hashindex, i;
1005     afs_int32 cid;
1006     struct rx_connection *conn;
1007
1008     SPLVAR;
1009
1010     clock_NewTime();
1011     dpf(("rx_NewConnection(host %x, port %u, service %u, securityObject %p, "
1012          "serviceSecurityIndex %d)\n",
1013          ntohl(shost), ntohs(sport), sservice, securityObject,
1014          serviceSecurityIndex));
1015
1016     /* Vasilsi said: "NETPRI protects Cid and Alloc", but can this be true in
1017      * the case of kmem_alloc? */
1018     conn = rxi_AllocConnection();
1019 #ifdef  RX_ENABLE_LOCKS
1020     MUTEX_INIT(&conn->conn_call_lock, "conn call lock", MUTEX_DEFAULT, 0);
1021     MUTEX_INIT(&conn->conn_data_lock, "conn data lock", MUTEX_DEFAULT, 0);
1022     CV_INIT(&conn->conn_call_cv, "conn call cv", CV_DEFAULT, 0);
1023 #endif
1024     NETPRI;
1025     MUTEX_ENTER(&rx_connHashTable_lock);
1026     cid = (rx_nextCid += RX_MAXCALLS);
1027     conn->type = RX_CLIENT_CONNECTION;
1028     conn->cid = cid;
1029     conn->epoch = rx_epoch;
1030     conn->peer = rxi_FindPeer(shost, sport, 0, 1);
1031     conn->serviceId = sservice;
1032     conn->securityObject = securityObject;
1033     conn->securityData = (void *) 0;
1034     conn->securityIndex = serviceSecurityIndex;
1035     rx_SetConnDeadTime(conn, rx_connDeadTime);
1036     rx_SetConnSecondsUntilNatPing(conn, 0);
1037     conn->ackRate = RX_FAST_ACK_RATE;
1038     conn->nSpecific = 0;
1039     conn->specific = NULL;
1040     conn->challengeEvent = NULL;
1041     conn->delayedAbortEvent = NULL;
1042     conn->abortCount = 0;
1043     conn->error = 0;
1044     for (i = 0; i < RX_MAXCALLS; i++) {
1045         conn->twind[i] = rx_initSendWindow;
1046         conn->rwind[i] = rx_initReceiveWindow;
1047         conn->lastBusy[i] = 0;
1048     }
1049
1050     RXS_NewConnection(securityObject, conn);
1051     hashindex =
1052         CONN_HASH(shost, sport, conn->cid, conn->epoch, RX_CLIENT_CONNECTION);
1053
1054     conn->refCount++;           /* no lock required since only this thread knows... */
1055     conn->next = rx_connHashTable[hashindex];
1056     rx_connHashTable[hashindex] = conn;
1057     if (rx_stats_active)
1058         rx_atomic_inc(&rx_stats.nClientConns);
1059     MUTEX_EXIT(&rx_connHashTable_lock);
1060     USERPRI;
1061     return conn;
1062 }
1063
1064 /**
1065  * Ensure a connection's timeout values are valid.
1066  *
1067  * @param[in] conn The connection to check
1068  *
1069  * @post conn->secondUntilDead <= conn->idleDeadTime <= conn->hardDeadTime,
1070  *       unless idleDeadTime and/or hardDeadTime are not set
1071  * @internal
1072  */
1073 static void
1074 rxi_CheckConnTimeouts(struct rx_connection *conn)
1075 {
1076     /* a connection's timeouts must have the relationship
1077      * deadTime <= idleDeadTime <= hardDeadTime. Otherwise, for example, a
1078      * total loss of network to a peer may cause an idle timeout instead of a
1079      * dead timeout, simply because the idle timeout gets hit first. Also set
1080      * a minimum deadTime of 6, just to ensure it doesn't get set too low. */
1081     /* this logic is slightly complicated by the fact that
1082      * idleDeadTime/hardDeadTime may not be set at all, but it's not too bad.
1083      */
1084     conn->secondsUntilDead = MAX(conn->secondsUntilDead, 6);
1085     if (conn->idleDeadTime) {
1086         conn->idleDeadTime = MAX(conn->idleDeadTime, conn->secondsUntilDead);
1087     }
1088     if (conn->hardDeadTime) {
1089         if (conn->idleDeadTime) {
1090             conn->hardDeadTime = MAX(conn->idleDeadTime, conn->hardDeadTime);
1091         } else {
1092             conn->hardDeadTime = MAX(conn->secondsUntilDead, conn->hardDeadTime);
1093         }
1094     }
1095 }
1096
1097 void
1098 rx_SetConnDeadTime(struct rx_connection *conn, int seconds)
1099 {
1100     /* The idea is to set the dead time to a value that allows several
1101      * keepalives to be dropped without timing out the connection. */
1102     conn->secondsUntilDead = seconds;
1103     rxi_CheckConnTimeouts(conn);
1104     conn->secondsUntilPing = conn->secondsUntilDead / 6;
1105 }
1106
1107 void
1108 rx_SetConnHardDeadTime(struct rx_connection *conn, int seconds)
1109 {
1110     conn->hardDeadTime = seconds;
1111     rxi_CheckConnTimeouts(conn);
1112 }
1113
1114 void
1115 rx_SetConnIdleDeadTime(struct rx_connection *conn, int seconds)
1116 {
1117     conn->idleDeadTime = seconds;
1118     rxi_CheckConnTimeouts(conn);
1119 }
1120
1121 int rxi_lowPeerRefCount = 0;
1122 int rxi_lowConnRefCount = 0;
1123
1124 /*
1125  * Cleanup a connection that was destroyed in rxi_DestroyConnectioNoLock.
1126  * NOTE: must not be called with rx_connHashTable_lock held.
1127  */
1128 static void
1129 rxi_CleanupConnection(struct rx_connection *conn)
1130 {
1131     /* Notify the service exporter, if requested, that this connection
1132      * is being destroyed */
1133     if (conn->type == RX_SERVER_CONNECTION && conn->service->destroyConnProc)
1134         (*conn->service->destroyConnProc) (conn);
1135
1136     /* Notify the security module that this connection is being destroyed */
1137     RXS_DestroyConnection(conn->securityObject, conn);
1138
1139     /* If this is the last connection using the rx_peer struct, set its
1140      * idle time to now. rxi_ReapConnections will reap it if it's still
1141      * idle (refCount == 0) after rx_idlePeerTime (60 seconds) have passed.
1142      */
1143     MUTEX_ENTER(&rx_peerHashTable_lock);
1144     if (conn->peer->refCount < 2) {
1145         conn->peer->idleWhen = clock_Sec();
1146         if (conn->peer->refCount < 1) {
1147             conn->peer->refCount = 1;
1148             if (rx_stats_active) {
1149                 MUTEX_ENTER(&rx_stats_mutex);
1150                 rxi_lowPeerRefCount++;
1151                 MUTEX_EXIT(&rx_stats_mutex);
1152             }
1153         }
1154     }
1155     conn->peer->refCount--;
1156     MUTEX_EXIT(&rx_peerHashTable_lock);
1157
1158     if (rx_stats_active)
1159     {
1160         if (conn->type == RX_SERVER_CONNECTION)
1161             rx_atomic_dec(&rx_stats.nServerConns);
1162         else
1163             rx_atomic_dec(&rx_stats.nClientConns);
1164     }
1165 #ifndef KERNEL
1166     if (conn->specific) {
1167         int i;
1168         for (i = 0; i < conn->nSpecific; i++) {
1169             if (conn->specific[i] && rxi_keyCreate_destructor[i])
1170                 (*rxi_keyCreate_destructor[i]) (conn->specific[i]);
1171             conn->specific[i] = NULL;
1172         }
1173         free(conn->specific);
1174     }
1175     conn->specific = NULL;
1176     conn->nSpecific = 0;
1177 #endif /* !KERNEL */
1178
1179     MUTEX_DESTROY(&conn->conn_call_lock);
1180     MUTEX_DESTROY(&conn->conn_data_lock);
1181     CV_DESTROY(&conn->conn_call_cv);
1182
1183     rxi_FreeConnection(conn);
1184 }
1185
1186 /* Destroy the specified connection */
1187 void
1188 rxi_DestroyConnection(struct rx_connection *conn)
1189 {
1190     MUTEX_ENTER(&rx_connHashTable_lock);
1191     rxi_DestroyConnectionNoLock(conn);
1192     /* conn should be at the head of the cleanup list */
1193     if (conn == rx_connCleanup_list) {
1194         rx_connCleanup_list = rx_connCleanup_list->next;
1195         MUTEX_EXIT(&rx_connHashTable_lock);
1196         rxi_CleanupConnection(conn);
1197     }
1198 #ifdef RX_ENABLE_LOCKS
1199     else {
1200         MUTEX_EXIT(&rx_connHashTable_lock);
1201     }
1202 #endif /* RX_ENABLE_LOCKS */
1203 }
1204
1205 static void
1206 rxi_DestroyConnectionNoLock(struct rx_connection *conn)
1207 {
1208     struct rx_connection **conn_ptr;
1209     int havecalls = 0;
1210     struct rx_packet *packet;
1211     int i;
1212     SPLVAR;
1213
1214     clock_NewTime();
1215
1216     NETPRI;
1217     MUTEX_ENTER(&conn->conn_data_lock);
1218     MUTEX_ENTER(&rx_refcnt_mutex);
1219     if (conn->refCount > 0)
1220         conn->refCount--;
1221     else {
1222         if (rx_stats_active) {
1223             MUTEX_ENTER(&rx_stats_mutex);
1224             rxi_lowConnRefCount++;
1225             MUTEX_EXIT(&rx_stats_mutex);
1226         }
1227     }
1228
1229     if ((conn->refCount > 0) || (conn->flags & RX_CONN_BUSY)) {
1230         /* Busy; wait till the last guy before proceeding */
1231         MUTEX_EXIT(&rx_refcnt_mutex);
1232         MUTEX_EXIT(&conn->conn_data_lock);
1233         USERPRI;
1234         return;
1235     }
1236
1237     /* If the client previously called rx_NewCall, but it is still
1238      * waiting, treat this as a running call, and wait to destroy the
1239      * connection later when the call completes. */
1240     if ((conn->type == RX_CLIENT_CONNECTION)
1241         && (conn->flags & (RX_CONN_MAKECALL_WAITING|RX_CONN_MAKECALL_ACTIVE))) {
1242         conn->flags |= RX_CONN_DESTROY_ME;
1243         MUTEX_EXIT(&conn->conn_data_lock);
1244         USERPRI;
1245         return;
1246     }
1247     MUTEX_EXIT(&rx_refcnt_mutex);
1248     MUTEX_EXIT(&conn->conn_data_lock);
1249
1250     /* Check for extant references to this connection */
1251     MUTEX_ENTER(&conn->conn_call_lock);
1252     for (i = 0; i < RX_MAXCALLS; i++) {
1253         struct rx_call *call = conn->call[i];
1254         if (call) {
1255             havecalls = 1;
1256             if (conn->type == RX_CLIENT_CONNECTION) {
1257                 MUTEX_ENTER(&call->lock);
1258                 if (call->delayedAckEvent) {
1259                     /* Push the final acknowledgment out now--there
1260                      * won't be a subsequent call to acknowledge the
1261                      * last reply packets */
1262                     rxevent_Cancel(&call->delayedAckEvent, call,
1263                                    RX_CALL_REFCOUNT_DELAY);
1264                     if (call->state == RX_STATE_PRECALL
1265                         || call->state == RX_STATE_ACTIVE) {
1266                         rxi_SendAck(call, 0, 0, RX_ACK_DELAY, 0);
1267                     } else {
1268                         rxi_AckAll(NULL, call, 0);
1269                     }
1270                 }
1271                 MUTEX_EXIT(&call->lock);
1272             }
1273         }
1274     }
1275     MUTEX_EXIT(&conn->conn_call_lock);
1276
1277 #ifdef RX_ENABLE_LOCKS
1278     if (!havecalls) {
1279         if (MUTEX_TRYENTER(&conn->conn_data_lock)) {
1280             MUTEX_EXIT(&conn->conn_data_lock);
1281         } else {
1282             /* Someone is accessing a packet right now. */
1283             havecalls = 1;
1284         }
1285     }
1286 #endif /* RX_ENABLE_LOCKS */
1287
1288     if (havecalls) {
1289         /* Don't destroy the connection if there are any call
1290          * structures still in use */
1291         MUTEX_ENTER(&conn->conn_data_lock);
1292         conn->flags |= RX_CONN_DESTROY_ME;
1293         MUTEX_EXIT(&conn->conn_data_lock);
1294         USERPRI;
1295         return;
1296     }
1297
1298     if (conn->natKeepAliveEvent) {
1299         rxi_NatKeepAliveOff(conn);
1300     }
1301
1302     if (conn->delayedAbortEvent) {
1303         rxevent_Cancel(&conn->delayedAbortEvent, NULL, 0);
1304         packet = rxi_AllocPacket(RX_PACKET_CLASS_SPECIAL);
1305         if (packet) {
1306             MUTEX_ENTER(&conn->conn_data_lock);
1307             rxi_SendConnectionAbort(conn, packet, 0, 1);
1308             MUTEX_EXIT(&conn->conn_data_lock);
1309             rxi_FreePacket(packet);
1310         }
1311     }
1312
1313     /* Remove from connection hash table before proceeding */
1314     conn_ptr =
1315         &rx_connHashTable[CONN_HASH
1316                           (peer->host, peer->port, conn->cid, conn->epoch,
1317                            conn->type)];
1318     for (; *conn_ptr; conn_ptr = &(*conn_ptr)->next) {
1319         if (*conn_ptr == conn) {
1320             *conn_ptr = conn->next;
1321             break;
1322         }
1323     }
1324     /* if the conn that we are destroying was the last connection, then we
1325      * clear rxLastConn as well */
1326     if (rxLastConn == conn)
1327         rxLastConn = 0;
1328
1329     /* Make sure the connection is completely reset before deleting it. */
1330     /* get rid of pending events that could zap us later */
1331     rxevent_Cancel(&conn->challengeEvent, NULL, 0);
1332     rxevent_Cancel(&conn->checkReachEvent, NULL, 0);
1333     rxevent_Cancel(&conn->natKeepAliveEvent, NULL, 0);
1334
1335     /* Add the connection to the list of destroyed connections that
1336      * need to be cleaned up. This is necessary to avoid deadlocks
1337      * in the routines we call to inform others that this connection is
1338      * being destroyed. */
1339     conn->next = rx_connCleanup_list;
1340     rx_connCleanup_list = conn;
1341 }
1342
1343 /* Externally available version */
1344 void
1345 rx_DestroyConnection(struct rx_connection *conn)
1346 {
1347     SPLVAR;
1348
1349     NETPRI;
1350     rxi_DestroyConnection(conn);
1351     USERPRI;
1352 }
1353
1354 void
1355 rx_GetConnection(struct rx_connection *conn)
1356 {
1357     SPLVAR;
1358
1359     NETPRI;
1360     MUTEX_ENTER(&rx_refcnt_mutex);
1361     conn->refCount++;
1362     MUTEX_EXIT(&rx_refcnt_mutex);
1363     USERPRI;
1364 }
1365
1366 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
1367 /* Wait for the transmit queue to no longer be busy.
1368  * requires the call->lock to be held */
1369 void
1370 rxi_WaitforTQBusy(struct rx_call *call) {
1371     while (!call->error && (call->flags & RX_CALL_TQ_BUSY)) {
1372         call->flags |= RX_CALL_TQ_WAIT;
1373         call->tqWaiters++;
1374 #ifdef RX_ENABLE_LOCKS
1375         osirx_AssertMine(&call->lock, "rxi_WaitforTQ lock");
1376         CV_WAIT(&call->cv_tq, &call->lock);
1377 #else /* RX_ENABLE_LOCKS */
1378         osi_rxSleep(&call->tq);
1379 #endif /* RX_ENABLE_LOCKS */
1380         call->tqWaiters--;
1381         if (call->tqWaiters == 0) {
1382             call->flags &= ~RX_CALL_TQ_WAIT;
1383         }
1384     }
1385 }
1386 #endif
1387
1388 static void
1389 rxi_WakeUpTransmitQueue(struct rx_call *call)
1390 {
1391     if (call->tqWaiters || (call->flags & RX_CALL_TQ_WAIT)) {
1392         dpf(("call %"AFS_PTR_FMT" has %d waiters and flags %d\n",
1393              call, call->tqWaiters, call->flags));
1394 #ifdef RX_ENABLE_LOCKS
1395         osirx_AssertMine(&call->lock, "rxi_Start start");
1396         CV_BROADCAST(&call->cv_tq);
1397 #else /* RX_ENABLE_LOCKS */
1398         osi_rxWakeup(&call->tq);
1399 #endif /* RX_ENABLE_LOCKS */
1400     }
1401 }
1402
1403 /* Start a new rx remote procedure call, on the specified connection.
1404  * If wait is set to 1, wait for a free call channel; otherwise return
1405  * 0.  Maxtime gives the maximum number of seconds this call may take,
1406  * after rx_NewCall returns.  After this time interval, a call to any
1407  * of rx_SendData, rx_ReadData, etc. will fail with RX_CALL_TIMEOUT.
1408  * For fine grain locking, we hold the conn_call_lock in order to
1409  * to ensure that we don't get signalle after we found a call in an active
1410  * state and before we go to sleep.
1411  */
1412 struct rx_call *
1413 rx_NewCall(struct rx_connection *conn)
1414 {
1415     int i, wait, ignoreBusy = 1;
1416     struct rx_call *call;
1417     struct clock queueTime;
1418     afs_uint32 leastBusy = 0;
1419     SPLVAR;
1420
1421     clock_NewTime();
1422     dpf(("rx_NewCall(conn %"AFS_PTR_FMT")\n", conn));
1423
1424     NETPRI;
1425     clock_GetTime(&queueTime);
1426     /*
1427      * Check if there are others waiting for a new call.
1428      * If so, let them go first to avoid starving them.
1429      * This is a fairly simple scheme, and might not be
1430      * a complete solution for large numbers of waiters.
1431      *
1432      * makeCallWaiters keeps track of the number of
1433      * threads waiting to make calls and the
1434      * RX_CONN_MAKECALL_WAITING flag bit is used to
1435      * indicate that there are indeed calls waiting.
1436      * The flag is set when the waiter is incremented.
1437      * It is only cleared when makeCallWaiters is 0.
1438      * This prevents us from accidently destroying the
1439      * connection while it is potentially about to be used.
1440      */
1441     MUTEX_ENTER(&conn->conn_call_lock);
1442     MUTEX_ENTER(&conn->conn_data_lock);
1443     while (conn->flags & RX_CONN_MAKECALL_ACTIVE) {
1444         conn->flags |= RX_CONN_MAKECALL_WAITING;
1445         conn->makeCallWaiters++;
1446         MUTEX_EXIT(&conn->conn_data_lock);
1447
1448 #ifdef  RX_ENABLE_LOCKS
1449         CV_WAIT(&conn->conn_call_cv, &conn->conn_call_lock);
1450 #else
1451         osi_rxSleep(conn);
1452 #endif
1453         MUTEX_ENTER(&conn->conn_data_lock);
1454         conn->makeCallWaiters--;
1455         if (conn->makeCallWaiters == 0)
1456             conn->flags &= ~RX_CONN_MAKECALL_WAITING;
1457     }
1458
1459     /* We are now the active thread in rx_NewCall */
1460     conn->flags |= RX_CONN_MAKECALL_ACTIVE;
1461     MUTEX_EXIT(&conn->conn_data_lock);
1462
1463     for (;;) {
1464         wait = 1;
1465
1466         for (i = 0; i < RX_MAXCALLS; i++) {
1467             call = conn->call[i];
1468             if (call) {
1469                 if (!ignoreBusy && conn->lastBusy[i] != leastBusy) {
1470                     /* we're not ignoring busy call slots; only look at the
1471                      * call slot that is the "least" busy */
1472                     continue;
1473                 }
1474
1475                 if (call->state == RX_STATE_DALLY) {
1476                     MUTEX_ENTER(&call->lock);
1477                     if (call->state == RX_STATE_DALLY) {
1478                         if (ignoreBusy && conn->lastBusy[i]) {
1479                             /* if we're ignoring busy call slots, skip any ones that
1480                              * have lastBusy set */
1481                             if (leastBusy == 0 || conn->lastBusy[i] < leastBusy) {
1482                                 leastBusy = conn->lastBusy[i];
1483                             }
1484                             MUTEX_EXIT(&call->lock);
1485                             continue;
1486                         }
1487
1488                         /*
1489                          * We are setting the state to RX_STATE_RESET to
1490                          * ensure that no one else will attempt to use this
1491                          * call once we drop the conn->conn_call_lock and
1492                          * call->lock.  We must drop the conn->conn_call_lock
1493                          * before calling rxi_ResetCall because the process
1494                          * of clearing the transmit queue can block for an
1495                          * extended period of time.  If we block while holding
1496                          * the conn->conn_call_lock, then all rx_EndCall
1497                          * processing will block as well.  This has a detrimental
1498                          * effect on overall system performance.
1499                          */
1500                         call->state = RX_STATE_RESET;
1501                         MUTEX_EXIT(&conn->conn_call_lock);
1502                         MUTEX_ENTER(&rx_refcnt_mutex);
1503                         CALL_HOLD(call, RX_CALL_REFCOUNT_BEGIN);
1504                         MUTEX_EXIT(&rx_refcnt_mutex);
1505                         rxi_ResetCall(call, 0);
1506                         (*call->callNumber)++;
1507                         if (MUTEX_TRYENTER(&conn->conn_call_lock))
1508                             break;
1509
1510                         /*
1511                          * If we failed to be able to safely obtain the
1512                          * conn->conn_call_lock we will have to drop the
1513                          * call->lock to avoid a deadlock.  When the call->lock
1514                          * is released the state of the call can change.  If it
1515                          * is no longer RX_STATE_RESET then some other thread is
1516                          * using the call.
1517                          */
1518                         MUTEX_EXIT(&call->lock);
1519                         MUTEX_ENTER(&conn->conn_call_lock);
1520                         MUTEX_ENTER(&call->lock);
1521
1522                         if (call->state == RX_STATE_RESET)
1523                             break;
1524
1525                         /*
1526                          * If we get here it means that after dropping
1527                          * the conn->conn_call_lock and call->lock that
1528                          * the call is no longer ours.  If we can't find
1529                          * a free call in the remaining slots we should
1530                          * not go immediately to RX_CONN_MAKECALL_WAITING
1531                          * because by dropping the conn->conn_call_lock
1532                          * we have given up synchronization with rx_EndCall.
1533                          * Instead, cycle through one more time to see if
1534                          * we can find a call that can call our own.
1535                          */
1536                         MUTEX_ENTER(&rx_refcnt_mutex);
1537                         CALL_RELE(call, RX_CALL_REFCOUNT_BEGIN);
1538                         MUTEX_EXIT(&rx_refcnt_mutex);
1539                         wait = 0;
1540                     }
1541                     MUTEX_EXIT(&call->lock);
1542                 }
1543             } else {
1544                 if (ignoreBusy && conn->lastBusy[i]) {
1545                     /* if we're ignoring busy call slots, skip any ones that
1546                      * have lastBusy set */
1547                     if (leastBusy == 0 || conn->lastBusy[i] < leastBusy) {
1548                         leastBusy = conn->lastBusy[i];
1549                     }
1550                     continue;
1551                 }
1552
1553                 /* rxi_NewCall returns with mutex locked */
1554                 call = rxi_NewCall(conn, i);
1555                 MUTEX_ENTER(&rx_refcnt_mutex);
1556                 CALL_HOLD(call, RX_CALL_REFCOUNT_BEGIN);
1557                 MUTEX_EXIT(&rx_refcnt_mutex);
1558                 break;
1559             }
1560         }
1561         if (i < RX_MAXCALLS) {
1562             conn->lastBusy[i] = 0;
1563             break;
1564         }
1565         if (!wait)
1566             continue;
1567         if (leastBusy && ignoreBusy) {
1568             /* we didn't find a useable call slot, but we did see at least one
1569              * 'busy' slot; look again and only use a slot with the 'least
1570              * busy time */
1571             ignoreBusy = 0;
1572             continue;
1573         }
1574
1575         MUTEX_ENTER(&conn->conn_data_lock);
1576         conn->flags |= RX_CONN_MAKECALL_WAITING;
1577         conn->makeCallWaiters++;
1578         MUTEX_EXIT(&conn->conn_data_lock);
1579
1580 #ifdef  RX_ENABLE_LOCKS
1581         CV_WAIT(&conn->conn_call_cv, &conn->conn_call_lock);
1582 #else
1583         osi_rxSleep(conn);
1584 #endif
1585         MUTEX_ENTER(&conn->conn_data_lock);
1586         conn->makeCallWaiters--;
1587         if (conn->makeCallWaiters == 0)
1588             conn->flags &= ~RX_CONN_MAKECALL_WAITING;
1589         MUTEX_EXIT(&conn->conn_data_lock);
1590     }
1591     /* Client is initially in send mode */
1592     call->state = RX_STATE_ACTIVE;
1593     call->error = conn->error;
1594     if (call->error)
1595         call->mode = RX_MODE_ERROR;
1596     else
1597         call->mode = RX_MODE_SENDING;
1598
1599     /* remember start time for call in case we have hard dead time limit */
1600     call->queueTime = queueTime;
1601     clock_GetTime(&call->startTime);
1602     hzero(call->bytesSent);
1603     hzero(call->bytesRcvd);
1604
1605     /* Turn on busy protocol. */
1606     rxi_KeepAliveOn(call);
1607
1608     /* Attempt MTU discovery */
1609     rxi_GrowMTUOn(call);
1610
1611     /*
1612      * We are no longer the active thread in rx_NewCall
1613      */
1614     MUTEX_ENTER(&conn->conn_data_lock);
1615     conn->flags &= ~RX_CONN_MAKECALL_ACTIVE;
1616     MUTEX_EXIT(&conn->conn_data_lock);
1617
1618     /*
1619      * Wake up anyone else who might be giving us a chance to
1620      * run (see code above that avoids resource starvation).
1621      */
1622 #ifdef  RX_ENABLE_LOCKS
1623     CV_BROADCAST(&conn->conn_call_cv);
1624 #else
1625     osi_rxWakeup(conn);
1626 #endif
1627     MUTEX_EXIT(&conn->conn_call_lock);
1628
1629 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
1630     if (call->flags & (RX_CALL_TQ_BUSY | RX_CALL_TQ_CLEARME)) {
1631         osi_Panic("rx_NewCall call about to be used without an empty tq");
1632     }
1633 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
1634
1635     MUTEX_EXIT(&call->lock);
1636     USERPRI;
1637
1638     dpf(("rx_NewCall(call %"AFS_PTR_FMT")\n", call));
1639     return call;
1640 }
1641
1642 static int
1643 rxi_HasActiveCalls(struct rx_connection *aconn)
1644 {
1645     int i;
1646     struct rx_call *tcall;
1647     SPLVAR;
1648
1649     NETPRI;
1650     for (i = 0; i < RX_MAXCALLS; i++) {
1651         if ((tcall = aconn->call[i])) {
1652             if ((tcall->state == RX_STATE_ACTIVE)
1653                 || (tcall->state == RX_STATE_PRECALL)) {
1654                 USERPRI;
1655                 return 1;
1656             }
1657         }
1658     }
1659     USERPRI;
1660     return 0;
1661 }
1662
1663 int
1664 rxi_GetCallNumberVector(struct rx_connection *aconn,
1665                         afs_int32 * aint32s)
1666 {
1667     int i;
1668     struct rx_call *tcall;
1669     SPLVAR;
1670
1671     NETPRI;
1672     for (i = 0; i < RX_MAXCALLS; i++) {
1673         if ((tcall = aconn->call[i]) && (tcall->state == RX_STATE_DALLY))
1674             aint32s[i] = aconn->callNumber[i] + 1;
1675         else
1676             aint32s[i] = aconn->callNumber[i];
1677     }
1678     USERPRI;
1679     return 0;
1680 }
1681
1682 int
1683 rxi_SetCallNumberVector(struct rx_connection *aconn,
1684                         afs_int32 * aint32s)
1685 {
1686     int i;
1687     struct rx_call *tcall;
1688     SPLVAR;
1689
1690     NETPRI;
1691     for (i = 0; i < RX_MAXCALLS; i++) {
1692         if ((tcall = aconn->call[i]) && (tcall->state == RX_STATE_DALLY))
1693             aconn->callNumber[i] = aint32s[i] - 1;
1694         else
1695             aconn->callNumber[i] = aint32s[i];
1696     }
1697     USERPRI;
1698     return 0;
1699 }
1700
1701 /* Advertise a new service.  A service is named locally by a UDP port
1702  * number plus a 16-bit service id.  Returns (struct rx_service *) 0
1703  * on a failure.
1704  *
1705      char *serviceName;  Name for identification purposes (e.g. the
1706                          service name might be used for probing for
1707                          statistics) */
1708 struct rx_service *
1709 rx_NewServiceHost(afs_uint32 host, u_short port, u_short serviceId,
1710                   char *serviceName, struct rx_securityClass **securityObjects,
1711                   int nSecurityObjects,
1712                   afs_int32(*serviceProc) (struct rx_call * acall))
1713 {
1714     osi_socket socket = OSI_NULLSOCKET;
1715     struct rx_service *tservice;
1716     int i;
1717     SPLVAR;
1718
1719     clock_NewTime();
1720
1721     if (serviceId == 0) {
1722         (osi_Msg
1723          "rx_NewService:  service id for service %s is not non-zero.\n",
1724          serviceName);
1725         return 0;
1726     }
1727     if (port == 0) {
1728         if (rx_port == 0) {
1729             (osi_Msg
1730              "rx_NewService: A non-zero port must be specified on this call if a non-zero port was not provided at Rx initialization (service %s).\n",
1731              serviceName);
1732             return 0;
1733         }
1734         port = rx_port;
1735         socket = rx_socket;
1736     }
1737
1738     tservice = rxi_AllocService();
1739     NETPRI;
1740
1741 #ifdef  RX_ENABLE_LOCKS
1742     MUTEX_INIT(&tservice->svc_data_lock, "svc data lock", MUTEX_DEFAULT, 0);
1743 #endif
1744
1745     for (i = 0; i < RX_MAX_SERVICES; i++) {
1746         struct rx_service *service = rx_services[i];
1747         if (service) {
1748             if (port == service->servicePort && host == service->serviceHost) {
1749                 if (service->serviceId == serviceId) {
1750                     /* The identical service has already been
1751                      * installed; if the caller was intending to
1752                      * change the security classes used by this
1753                      * service, he/she loses. */
1754                     (osi_Msg
1755                      "rx_NewService: tried to install service %s with service id %d, which is already in use for service %s\n",
1756                      serviceName, serviceId, service->serviceName);
1757                     USERPRI;
1758                     rxi_FreeService(tservice);
1759                     return service;
1760                 }
1761                 /* Different service, same port: re-use the socket
1762                  * which is bound to the same port */
1763                 socket = service->socket;
1764             }
1765         } else {
1766             if (socket == OSI_NULLSOCKET) {
1767                 /* If we don't already have a socket (from another
1768                  * service on same port) get a new one */
1769                 socket = rxi_GetHostUDPSocket(host, port);
1770                 if (socket == OSI_NULLSOCKET) {
1771                     USERPRI;
1772                     rxi_FreeService(tservice);
1773                     return 0;
1774                 }
1775             }
1776             service = tservice;
1777             service->socket = socket;
1778             service->serviceHost = host;
1779             service->servicePort = port;
1780             service->serviceId = serviceId;
1781             service->serviceName = serviceName;
1782             service->nSecurityObjects = nSecurityObjects;
1783             service->securityObjects = securityObjects;
1784             service->minProcs = 0;
1785             service->maxProcs = 1;
1786             service->idleDeadTime = 60;
1787             service->idleDeadErr = 0;
1788             service->connDeadTime = rx_connDeadTime;
1789             service->executeRequestProc = serviceProc;
1790             service->checkReach = 0;
1791             service->nSpecific = 0;
1792             service->specific = NULL;
1793             rx_services[i] = service;   /* not visible until now */
1794             USERPRI;
1795             return service;
1796         }
1797     }
1798     USERPRI;
1799     rxi_FreeService(tservice);
1800     (osi_Msg "rx_NewService: cannot support > %d services\n",
1801      RX_MAX_SERVICES);
1802     return 0;
1803 }
1804
1805 /* Set configuration options for all of a service's security objects */
1806
1807 afs_int32
1808 rx_SetSecurityConfiguration(struct rx_service *service,
1809                             rx_securityConfigVariables type,
1810                             void *value)
1811 {
1812     int i;
1813     for (i = 0; i<service->nSecurityObjects; i++) {
1814         if (service->securityObjects[i]) {
1815             RXS_SetConfiguration(service->securityObjects[i], NULL, type,
1816                                  value, NULL);
1817         }
1818     }
1819     return 0;
1820 }
1821
1822 struct rx_service *
1823 rx_NewService(u_short port, u_short serviceId, char *serviceName,
1824               struct rx_securityClass **securityObjects, int nSecurityObjects,
1825               afs_int32(*serviceProc) (struct rx_call * acall))
1826 {
1827     return rx_NewServiceHost(htonl(INADDR_ANY), port, serviceId, serviceName, securityObjects, nSecurityObjects, serviceProc);
1828 }
1829
1830 /* Generic request processing loop. This routine should be called
1831  * by the implementation dependent rx_ServerProc. If socketp is
1832  * non-null, it will be set to the file descriptor that this thread
1833  * is now listening on. If socketp is null, this routine will never
1834  * returns. */
1835 void
1836 rxi_ServerProc(int threadID, struct rx_call *newcall, osi_socket * socketp)
1837 {
1838     struct rx_call *call;
1839     afs_int32 code;
1840     struct rx_service *tservice = NULL;
1841
1842     for (;;) {
1843         if (newcall) {
1844             call = newcall;
1845             newcall = NULL;
1846         } else {
1847             call = rx_GetCall(threadID, tservice, socketp);
1848             if (socketp && *socketp != OSI_NULLSOCKET) {
1849                 /* We are now a listener thread */
1850                 return;
1851             }
1852         }
1853
1854 #ifdef  KERNEL
1855         if (afs_termState == AFSOP_STOP_RXCALLBACK) {
1856 #ifdef RX_ENABLE_LOCKS
1857             AFS_GLOCK();
1858 #endif /* RX_ENABLE_LOCKS */
1859             afs_termState = AFSOP_STOP_AFS;
1860             afs_osi_Wakeup(&afs_termState);
1861 #ifdef RX_ENABLE_LOCKS
1862             AFS_GUNLOCK();
1863 #endif /* RX_ENABLE_LOCKS */
1864             return;
1865         }
1866 #endif
1867
1868         /* if server is restarting( typically smooth shutdown) then do not
1869          * allow any new calls.
1870          */
1871
1872         if (rx_tranquil && (call != NULL)) {
1873             SPLVAR;
1874
1875             NETPRI;
1876             MUTEX_ENTER(&call->lock);
1877
1878             rxi_CallError(call, RX_RESTARTING);
1879             rxi_SendCallAbort(call, (struct rx_packet *)0, 0, 0);
1880
1881             MUTEX_EXIT(&call->lock);
1882             USERPRI;
1883             continue;
1884         }
1885
1886         tservice = call->conn->service;
1887
1888         if (tservice->beforeProc)
1889             (*tservice->beforeProc) (call);
1890
1891         code = tservice->executeRequestProc(call);
1892
1893         if (tservice->afterProc)
1894             (*tservice->afterProc) (call, code);
1895
1896         rx_EndCall(call, code);
1897
1898         if (tservice->postProc)
1899             (*tservice->postProc) (code);
1900
1901         if (rx_stats_active) {
1902             MUTEX_ENTER(&rx_stats_mutex);
1903             rxi_nCalls++;
1904             MUTEX_EXIT(&rx_stats_mutex);
1905         }
1906     }
1907 }
1908
1909
1910 void
1911 rx_WakeupServerProcs(void)
1912 {
1913     struct rx_serverQueueEntry *np, *tqp;
1914     SPLVAR;
1915
1916     NETPRI;
1917     MUTEX_ENTER(&rx_serverPool_lock);
1918
1919 #ifdef RX_ENABLE_LOCKS
1920     if (rx_waitForPacket)
1921         CV_BROADCAST(&rx_waitForPacket->cv);
1922 #else /* RX_ENABLE_LOCKS */
1923     if (rx_waitForPacket)
1924         osi_rxWakeup(rx_waitForPacket);
1925 #endif /* RX_ENABLE_LOCKS */
1926     MUTEX_ENTER(&freeSQEList_lock);
1927     for (np = rx_FreeSQEList; np; np = tqp) {
1928         tqp = *(struct rx_serverQueueEntry **)np;
1929 #ifdef RX_ENABLE_LOCKS
1930         CV_BROADCAST(&np->cv);
1931 #else /* RX_ENABLE_LOCKS */
1932         osi_rxWakeup(np);
1933 #endif /* RX_ENABLE_LOCKS */
1934     }
1935     MUTEX_EXIT(&freeSQEList_lock);
1936     for (queue_Scan(&rx_idleServerQueue, np, tqp, rx_serverQueueEntry)) {
1937 #ifdef RX_ENABLE_LOCKS
1938         CV_BROADCAST(&np->cv);
1939 #else /* RX_ENABLE_LOCKS */
1940         osi_rxWakeup(np);
1941 #endif /* RX_ENABLE_LOCKS */
1942     }
1943     MUTEX_EXIT(&rx_serverPool_lock);
1944     USERPRI;
1945 }
1946
1947 /* meltdown:
1948  * One thing that seems to happen is that all the server threads get
1949  * tied up on some empty or slow call, and then a whole bunch of calls
1950  * arrive at once, using up the packet pool, so now there are more
1951  * empty calls.  The most critical resources here are server threads
1952  * and the free packet pool.  The "doreclaim" code seems to help in
1953  * general.  I think that eventually we arrive in this state: there
1954  * are lots of pending calls which do have all their packets present,
1955  * so they won't be reclaimed, are multi-packet calls, so they won't
1956  * be scheduled until later, and thus are tying up most of the free
1957  * packet pool for a very long time.
1958  * future options:
1959  * 1.  schedule multi-packet calls if all the packets are present.
1960  * Probably CPU-bound operation, useful to return packets to pool.
1961  * Do what if there is a full window, but the last packet isn't here?
1962  * 3.  preserve one thread which *only* runs "best" calls, otherwise
1963  * it sleeps and waits for that type of call.
1964  * 4.  Don't necessarily reserve a whole window for each thread.  In fact,
1965  * the current dataquota business is badly broken.  The quota isn't adjusted
1966  * to reflect how many packets are presently queued for a running call.
1967  * So, when we schedule a queued call with a full window of packets queued
1968  * up for it, that *should* free up a window full of packets for other 2d-class
1969  * calls to be able to use from the packet pool.  But it doesn't.
1970  *
1971  * NB.  Most of the time, this code doesn't run -- since idle server threads
1972  * sit on the idle server queue and are assigned by "...ReceivePacket" as soon
1973  * as a new call arrives.
1974  */
1975 /* Sleep until a call arrives.  Returns a pointer to the call, ready
1976  * for an rx_Read. */
1977 #ifdef RX_ENABLE_LOCKS
1978 struct rx_call *
1979 rx_GetCall(int tno, struct rx_service *cur_service, osi_socket * socketp)
1980 {
1981     struct rx_serverQueueEntry *sq;
1982     struct rx_call *call = (struct rx_call *)0;
1983     struct rx_service *service = NULL;
1984
1985     MUTEX_ENTER(&freeSQEList_lock);
1986
1987     if ((sq = rx_FreeSQEList)) {
1988         rx_FreeSQEList = *(struct rx_serverQueueEntry **)sq;
1989         MUTEX_EXIT(&freeSQEList_lock);
1990     } else {                    /* otherwise allocate a new one and return that */
1991         MUTEX_EXIT(&freeSQEList_lock);
1992         sq = rxi_Alloc(sizeof(struct rx_serverQueueEntry));
1993         MUTEX_INIT(&sq->lock, "server Queue lock", MUTEX_DEFAULT, 0);
1994         CV_INIT(&sq->cv, "server Queue lock", CV_DEFAULT, 0);
1995     }
1996
1997     MUTEX_ENTER(&rx_serverPool_lock);
1998     if (cur_service != NULL) {
1999         ReturnToServerPool(cur_service);
2000     }
2001     while (1) {
2002         if (queue_IsNotEmpty(&rx_incomingCallQueue)) {
2003             struct rx_call *tcall, *ncall, *choice2 = NULL;
2004
2005             /* Scan for eligible incoming calls.  A call is not eligible
2006              * if the maximum number of calls for its service type are
2007              * already executing */
2008             /* One thread will process calls FCFS (to prevent starvation),
2009              * while the other threads may run ahead looking for calls which
2010              * have all their input data available immediately.  This helps
2011              * keep threads from blocking, waiting for data from the client. */
2012             for (queue_Scan(&rx_incomingCallQueue, tcall, ncall, rx_call)) {
2013                 service = tcall->conn->service;
2014                 if (!QuotaOK(service)) {
2015                     continue;
2016                 }
2017                 MUTEX_ENTER(&rx_pthread_mutex);
2018                 if (tno == rxi_fcfs_thread_num
2019                     || !tcall->queue_item_header.next) {
2020                     MUTEX_EXIT(&rx_pthread_mutex);
2021                     /* If we're the fcfs thread , then  we'll just use
2022                      * this call. If we haven't been able to find an optimal
2023                      * choice, and we're at the end of the list, then use a
2024                      * 2d choice if one has been identified.  Otherwise... */
2025                     call = (choice2 ? choice2 : tcall);
2026                     service = call->conn->service;
2027                 } else {
2028                     MUTEX_EXIT(&rx_pthread_mutex);
2029                     if (!queue_IsEmpty(&tcall->rq)) {
2030                         struct rx_packet *rp;
2031                         rp = queue_First(&tcall->rq, rx_packet);
2032                         if (rp->header.seq == 1) {
2033                             if (!meltdown_1pkt
2034                                 || (rp->header.flags & RX_LAST_PACKET)) {
2035                                 call = tcall;
2036                             } else if (rxi_2dchoice && !choice2
2037                                        && !(tcall->flags & RX_CALL_CLEARED)
2038                                        && (tcall->rprev > rxi_HardAckRate)) {
2039                                 choice2 = tcall;
2040                             } else
2041                                 rxi_md2cnt++;
2042                         }
2043                     }
2044                 }
2045                 if (call) {
2046                     break;
2047                 } else {
2048                     ReturnToServerPool(service);
2049                 }
2050             }
2051         }
2052
2053         if (call) {
2054             queue_Remove(call);
2055             MUTEX_EXIT(&rx_serverPool_lock);
2056             MUTEX_ENTER(&call->lock);
2057
2058             if (call->flags & RX_CALL_WAIT_PROC) {
2059                 call->flags &= ~RX_CALL_WAIT_PROC;
2060                 rx_atomic_dec(&rx_nWaiting);
2061             }
2062
2063             if (call->state != RX_STATE_PRECALL || call->error) {
2064                 MUTEX_EXIT(&call->lock);
2065                 MUTEX_ENTER(&rx_serverPool_lock);
2066                 ReturnToServerPool(service);
2067                 call = NULL;
2068                 continue;
2069             }
2070
2071             if (queue_IsEmpty(&call->rq)
2072                 || queue_First(&call->rq, rx_packet)->header.seq != 1)
2073                 rxi_SendAck(call, 0, 0, RX_ACK_DELAY, 0);
2074
2075             CLEAR_CALL_QUEUE_LOCK(call);
2076             break;
2077         } else {
2078             /* If there are no eligible incoming calls, add this process
2079              * to the idle server queue, to wait for one */
2080             sq->newcall = 0;
2081             sq->tno = tno;
2082             if (socketp) {
2083                 *socketp = OSI_NULLSOCKET;
2084             }
2085             sq->socketp = socketp;
2086             queue_Append(&rx_idleServerQueue, sq);
2087 #ifndef AFS_AIX41_ENV
2088             rx_waitForPacket = sq;
2089 #else
2090             rx_waitingForPacket = sq;
2091 #endif /* AFS_AIX41_ENV */
2092             do {
2093                 CV_WAIT(&sq->cv, &rx_serverPool_lock);
2094 #ifdef  KERNEL
2095                 if (afs_termState == AFSOP_STOP_RXCALLBACK) {
2096                     MUTEX_EXIT(&rx_serverPool_lock);
2097                     return (struct rx_call *)0;
2098                 }
2099 #endif
2100             } while (!(call = sq->newcall)
2101                      && !(socketp && *socketp != OSI_NULLSOCKET));
2102             MUTEX_EXIT(&rx_serverPool_lock);
2103             if (call) {
2104                 MUTEX_ENTER(&call->lock);
2105             }
2106             break;
2107         }
2108     }
2109
2110     MUTEX_ENTER(&freeSQEList_lock);
2111     *(struct rx_serverQueueEntry **)sq = rx_FreeSQEList;
2112     rx_FreeSQEList = sq;
2113     MUTEX_EXIT(&freeSQEList_lock);
2114
2115     if (call) {
2116         clock_GetTime(&call->startTime);
2117         call->state = RX_STATE_ACTIVE;
2118         call->mode = RX_MODE_RECEIVING;
2119 #ifdef RX_KERNEL_TRACE
2120         if (ICL_SETACTIVE(afs_iclSetp)) {
2121             int glockOwner = ISAFS_GLOCK();
2122             if (!glockOwner)
2123                 AFS_GLOCK();
2124             afs_Trace3(afs_iclSetp, CM_TRACE_WASHERE, ICL_TYPE_STRING,
2125                        __FILE__, ICL_TYPE_INT32, __LINE__, ICL_TYPE_POINTER,
2126                        call);
2127             if (!glockOwner)
2128                 AFS_GUNLOCK();
2129         }
2130 #endif
2131
2132         rxi_calltrace(RX_CALL_START, call);
2133         dpf(("rx_GetCall(port=%d, service=%d) ==> call %"AFS_PTR_FMT"\n",
2134              call->conn->service->servicePort, call->conn->service->serviceId,
2135              call));
2136
2137         MUTEX_EXIT(&call->lock);
2138         MUTEX_ENTER(&rx_refcnt_mutex);
2139         CALL_HOLD(call, RX_CALL_REFCOUNT_BEGIN);
2140         MUTEX_EXIT(&rx_refcnt_mutex);
2141     } else {
2142         dpf(("rx_GetCall(socketp=%p, *socketp=0x%x)\n", socketp, *socketp));
2143     }
2144
2145     return call;
2146 }
2147 #else /* RX_ENABLE_LOCKS */
2148 struct rx_call *
2149 rx_GetCall(int tno, struct rx_service *cur_service, osi_socket * socketp)
2150 {
2151     struct rx_serverQueueEntry *sq;
2152     struct rx_call *call = (struct rx_call *)0, *choice2;
2153     struct rx_service *service = NULL;
2154     SPLVAR;
2155
2156     NETPRI;
2157     MUTEX_ENTER(&freeSQEList_lock);
2158
2159     if ((sq = rx_FreeSQEList)) {
2160         rx_FreeSQEList = *(struct rx_serverQueueEntry **)sq;
2161         MUTEX_EXIT(&freeSQEList_lock);
2162     } else {                    /* otherwise allocate a new one and return that */
2163         MUTEX_EXIT(&freeSQEList_lock);
2164         sq = rxi_Alloc(sizeof(struct rx_serverQueueEntry));
2165         MUTEX_INIT(&sq->lock, "server Queue lock", MUTEX_DEFAULT, 0);
2166         CV_INIT(&sq->cv, "server Queue lock", CV_DEFAULT, 0);
2167     }
2168     MUTEX_ENTER(&sq->lock);
2169
2170     if (cur_service != NULL) {
2171         cur_service->nRequestsRunning--;
2172         MUTEX_ENTER(&rx_quota_mutex);
2173         if (cur_service->nRequestsRunning < cur_service->minProcs)
2174             rxi_minDeficit++;
2175         rxi_availProcs++;
2176         MUTEX_EXIT(&rx_quota_mutex);
2177     }
2178     if (queue_IsNotEmpty(&rx_incomingCallQueue)) {
2179         struct rx_call *tcall, *ncall;
2180         /* Scan for eligible incoming calls.  A call is not eligible
2181          * if the maximum number of calls for its service type are
2182          * already executing */
2183         /* One thread will process calls FCFS (to prevent starvation),
2184          * while the other threads may run ahead looking for calls which
2185          * have all their input data available immediately.  This helps
2186          * keep threads from blocking, waiting for data from the client. */
2187         choice2 = (struct rx_call *)0;
2188         for (queue_Scan(&rx_incomingCallQueue, tcall, ncall, rx_call)) {
2189             service = tcall->conn->service;
2190             if (QuotaOK(service)) {
2191                 MUTEX_ENTER(&rx_pthread_mutex);
2192                 if (tno == rxi_fcfs_thread_num
2193                     || !tcall->queue_item_header.next) {
2194                     MUTEX_EXIT(&rx_pthread_mutex);
2195                     /* If we're the fcfs thread, then  we'll just use
2196                      * this call. If we haven't been able to find an optimal
2197                      * choice, and we're at the end of the list, then use a
2198                      * 2d choice if one has been identified.  Otherwise... */
2199                     call = (choice2 ? choice2 : tcall);
2200                     service = call->conn->service;
2201                 } else {
2202                     MUTEX_EXIT(&rx_pthread_mutex);
2203                     if (!queue_IsEmpty(&tcall->rq)) {
2204                         struct rx_packet *rp;
2205                         rp = queue_First(&tcall->rq, rx_packet);
2206                         if (rp->header.seq == 1
2207                             && (!meltdown_1pkt
2208                                 || (rp->header.flags & RX_LAST_PACKET))) {
2209                             call = tcall;
2210                         } else if (rxi_2dchoice && !choice2
2211                                    && !(tcall->flags & RX_CALL_CLEARED)
2212                                    && (tcall->rprev > rxi_HardAckRate)) {
2213                             choice2 = tcall;
2214                         } else
2215                             rxi_md2cnt++;
2216                     }
2217                 }
2218             }
2219             if (call)
2220                 break;
2221         }
2222     }
2223
2224     if (call) {
2225         queue_Remove(call);
2226         /* we can't schedule a call if there's no data!!! */
2227         /* send an ack if there's no data, if we're missing the
2228          * first packet, or we're missing something between first
2229          * and last -- there's a "hole" in the incoming data. */
2230         if (queue_IsEmpty(&call->rq)
2231             || queue_First(&call->rq, rx_packet)->header.seq != 1
2232             || call->rprev != queue_Last(&call->rq, rx_packet)->header.seq)
2233             rxi_SendAck(call, 0, 0, RX_ACK_DELAY, 0);
2234
2235         call->flags &= (~RX_CALL_WAIT_PROC);
2236         service->nRequestsRunning++;
2237         /* just started call in minProcs pool, need fewer to maintain
2238          * guarantee */
2239         MUTEX_ENTER(&rx_quota_mutex);
2240         if (service->nRequestsRunning <= service->minProcs)
2241             rxi_minDeficit--;
2242         rxi_availProcs--;
2243         MUTEX_EXIT(&rx_quota_mutex);
2244         rx_atomic_dec(&rx_nWaiting);
2245         /* MUTEX_EXIT(&call->lock); */
2246     } else {
2247         /* If there are no eligible incoming calls, add this process
2248          * to the idle server queue, to wait for one */
2249         sq->newcall = 0;
2250         if (socketp) {
2251             *socketp = OSI_NULLSOCKET;
2252         }
2253         sq->socketp = socketp;
2254         queue_Append(&rx_idleServerQueue, sq);
2255         do {
2256             osi_rxSleep(sq);
2257 #ifdef  KERNEL
2258             if (afs_termState == AFSOP_STOP_RXCALLBACK) {
2259                 USERPRI;
2260                 rxi_Free(sq, sizeof(struct rx_serverQueueEntry));
2261                 return (struct rx_call *)0;
2262             }
2263 #endif
2264         } while (!(call = sq->newcall)
2265                  && !(socketp && *socketp != OSI_NULLSOCKET));
2266     }
2267     MUTEX_EXIT(&sq->lock);
2268
2269     MUTEX_ENTER(&freeSQEList_lock);
2270     *(struct rx_serverQueueEntry **)sq = rx_FreeSQEList;
2271     rx_FreeSQEList = sq;
2272     MUTEX_EXIT(&freeSQEList_lock);
2273
2274     if (call) {
2275         clock_GetTime(&call->startTime);
2276         call->state = RX_STATE_ACTIVE;
2277         call->mode = RX_MODE_RECEIVING;
2278 #ifdef RX_KERNEL_TRACE
2279         if (ICL_SETACTIVE(afs_iclSetp)) {
2280             int glockOwner = ISAFS_GLOCK();
2281             if (!glockOwner)
2282                 AFS_GLOCK();
2283             afs_Trace3(afs_iclSetp, CM_TRACE_WASHERE, ICL_TYPE_STRING,
2284                        __FILE__, ICL_TYPE_INT32, __LINE__, ICL_TYPE_POINTER,
2285                        call);
2286             if (!glockOwner)
2287                 AFS_GUNLOCK();
2288         }
2289 #endif
2290
2291         rxi_calltrace(RX_CALL_START, call);
2292         dpf(("rx_GetCall(port=%d, service=%d) ==> call %p\n",
2293              call->conn->service->servicePort, call->conn->service->serviceId,
2294              call));
2295     } else {
2296         dpf(("rx_GetCall(socketp=%p, *socketp=0x%x)\n", socketp, *socketp));
2297     }
2298
2299     USERPRI;
2300
2301     return call;
2302 }
2303 #endif /* RX_ENABLE_LOCKS */
2304
2305
2306
2307 /* Establish a procedure to be called when a packet arrives for a
2308  * call.  This routine will be called at most once after each call,
2309  * and will also be called if there is an error condition on the or
2310  * the call is complete.  Used by multi rx to build a selection
2311  * function which determines which of several calls is likely to be a
2312  * good one to read from.
2313  * NOTE: the way this is currently implemented it is probably only a
2314  * good idea to (1) use it immediately after a newcall (clients only)
2315  * and (2) only use it once.  Other uses currently void your warranty
2316  */
2317 void
2318 rx_SetArrivalProc(struct rx_call *call,
2319                   void (*proc) (struct rx_call * call,
2320                                         void * mh,
2321                                         int index),
2322                   void * handle, int arg)
2323 {
2324     call->arrivalProc = proc;
2325     call->arrivalProcHandle = handle;
2326     call->arrivalProcArg = arg;
2327 }
2328
2329 /* Call is finished (possibly prematurely).  Return rc to the peer, if
2330  * appropriate, and return the final error code from the conversation
2331  * to the caller */
2332
2333 afs_int32
2334 rx_EndCall(struct rx_call *call, afs_int32 rc)
2335 {
2336     struct rx_connection *conn = call->conn;
2337     afs_int32 error;
2338     SPLVAR;
2339
2340     dpf(("rx_EndCall(call %"AFS_PTR_FMT" rc %d error %d abortCode %d)\n",
2341           call, rc, call->error, call->abortCode));
2342
2343     NETPRI;
2344     MUTEX_ENTER(&call->lock);
2345
2346     if (rc == 0 && call->error == 0) {
2347         call->abortCode = 0;
2348         call->abortCount = 0;
2349     }
2350
2351     call->arrivalProc = (void (*)())0;
2352     if (rc && call->error == 0) {
2353         rxi_CallError(call, rc);
2354         call->mode = RX_MODE_ERROR;
2355         /* Send an abort message to the peer if this error code has
2356          * only just been set.  If it was set previously, assume the
2357          * peer has already been sent the error code or will request it
2358          */
2359         rxi_SendCallAbort(call, (struct rx_packet *)0, 0, 0);
2360     }
2361     if (conn->type == RX_SERVER_CONNECTION) {
2362         /* Make sure reply or at least dummy reply is sent */
2363         if (call->mode == RX_MODE_RECEIVING) {
2364             MUTEX_EXIT(&call->lock);
2365             rxi_WriteProc(call, 0, 0);
2366             MUTEX_ENTER(&call->lock);
2367         }
2368         if (call->mode == RX_MODE_SENDING) {
2369             MUTEX_EXIT(&call->lock);
2370             rxi_FlushWrite(call);
2371             MUTEX_ENTER(&call->lock);
2372         }
2373         rxi_calltrace(RX_CALL_END, call);
2374         /* Call goes to hold state until reply packets are acknowledged */
2375         if (call->tfirst + call->nSoftAcked < call->tnext) {
2376             call->state = RX_STATE_HOLD;
2377         } else {
2378             call->state = RX_STATE_DALLY;
2379             rxi_ClearTransmitQueue(call, 0);
2380             rxi_rto_cancel(call);
2381             rxevent_Cancel(&call->keepAliveEvent, call,
2382                            RX_CALL_REFCOUNT_ALIVE);
2383         }
2384     } else {                    /* Client connection */
2385         char dummy;
2386         /* Make sure server receives input packets, in the case where
2387          * no reply arguments are expected */
2388         if ((call->mode == RX_MODE_SENDING)
2389             || (call->mode == RX_MODE_RECEIVING && call->rnext == 1)) {
2390             MUTEX_EXIT(&call->lock);
2391             (void)rxi_ReadProc(call, &dummy, 1);
2392             MUTEX_ENTER(&call->lock);
2393         }
2394
2395         /* If we had an outstanding delayed ack, be nice to the server
2396          * and force-send it now.
2397          */
2398         if (call->delayedAckEvent) {
2399             rxevent_Cancel(&call->delayedAckEvent, call,
2400                            RX_CALL_REFCOUNT_DELAY);
2401             rxi_SendDelayedAck(NULL, call, NULL, 0);
2402         }
2403
2404         /* We need to release the call lock since it's lower than the
2405          * conn_call_lock and we don't want to hold the conn_call_lock
2406          * over the rx_ReadProc call. The conn_call_lock needs to be held
2407          * here for the case where rx_NewCall is perusing the calls on
2408          * the connection structure. We don't want to signal until
2409          * rx_NewCall is in a stable state. Otherwise, rx_NewCall may
2410          * have checked this call, found it active and by the time it
2411          * goes to sleep, will have missed the signal.
2412          */
2413         MUTEX_EXIT(&call->lock);
2414         MUTEX_ENTER(&conn->conn_call_lock);
2415         MUTEX_ENTER(&call->lock);
2416
2417         if (!(call->flags & RX_CALL_PEER_BUSY)) {
2418             conn->lastBusy[call->channel] = 0;
2419         }
2420
2421         MUTEX_ENTER(&conn->conn_data_lock);
2422         conn->flags |= RX_CONN_BUSY;
2423         if (conn->flags & RX_CONN_MAKECALL_WAITING) {
2424             MUTEX_EXIT(&conn->conn_data_lock);
2425 #ifdef  RX_ENABLE_LOCKS
2426             CV_BROADCAST(&conn->conn_call_cv);
2427 #else
2428             osi_rxWakeup(conn);
2429 #endif
2430         }
2431 #ifdef RX_ENABLE_LOCKS
2432         else {
2433             MUTEX_EXIT(&conn->conn_data_lock);
2434         }
2435 #endif /* RX_ENABLE_LOCKS */
2436         call->state = RX_STATE_DALLY;
2437     }
2438     error = call->error;
2439
2440     /* currentPacket, nLeft, and NFree must be zeroed here, because
2441      * ResetCall cannot: ResetCall may be called at splnet(), in the
2442      * kernel version, and may interrupt the macros rx_Read or
2443      * rx_Write, which run at normal priority for efficiency. */
2444     if (call->currentPacket) {
2445 #ifdef RX_TRACK_PACKETS
2446         call->currentPacket->flags &= ~RX_PKTFLAG_CP;
2447 #endif
2448         rxi_FreePacket(call->currentPacket);
2449         call->currentPacket = (struct rx_packet *)0;
2450     }
2451
2452     call->nLeft = call->nFree = call->curlen = 0;
2453
2454     /* Free any packets from the last call to ReadvProc/WritevProc */
2455 #ifdef RXDEBUG_PACKET
2456     call->iovqc -=
2457 #endif /* RXDEBUG_PACKET */
2458         rxi_FreePackets(0, &call->iovq);
2459     MUTEX_EXIT(&call->lock);
2460
2461     MUTEX_ENTER(&rx_refcnt_mutex);
2462     CALL_RELE(call, RX_CALL_REFCOUNT_BEGIN);
2463     MUTEX_EXIT(&rx_refcnt_mutex);
2464     if (conn->type == RX_CLIENT_CONNECTION) {
2465         MUTEX_ENTER(&conn->conn_data_lock);
2466         conn->flags &= ~RX_CONN_BUSY;
2467         MUTEX_EXIT(&conn->conn_data_lock);
2468         MUTEX_EXIT(&conn->conn_call_lock);
2469     }
2470     USERPRI;
2471     /*
2472      * Map errors to the local host's errno.h format.
2473      */
2474     error = ntoh_syserr_conv(error);
2475     return error;
2476 }
2477
2478 #if !defined(KERNEL)
2479
2480 /* Call this routine when shutting down a server or client (especially
2481  * clients).  This will allow Rx to gracefully garbage collect server
2482  * connections, and reduce the number of retries that a server might
2483  * make to a dead client.
2484  * This is not quite right, since some calls may still be ongoing and
2485  * we can't lock them to destroy them. */
2486 void
2487 rx_Finalize(void)
2488 {
2489     struct rx_connection **conn_ptr, **conn_end;
2490
2491     INIT_PTHREAD_LOCKS;
2492     LOCK_RX_INIT;
2493     if (rxinit_status == 1) {
2494         UNLOCK_RX_INIT;
2495         return;                 /* Already shutdown. */
2496     }
2497     rxi_DeleteCachedConnections();
2498     if (rx_connHashTable) {
2499         MUTEX_ENTER(&rx_connHashTable_lock);
2500         for (conn_ptr = &rx_connHashTable[0], conn_end =
2501              &rx_connHashTable[rx_hashTableSize]; conn_ptr < conn_end;
2502              conn_ptr++) {
2503             struct rx_connection *conn, *next;
2504             for (conn = *conn_ptr; conn; conn = next) {
2505                 next = conn->next;
2506                 if (conn->type == RX_CLIENT_CONNECTION) {
2507                     MUTEX_ENTER(&rx_refcnt_mutex);
2508                     conn->refCount++;
2509                     MUTEX_EXIT(&rx_refcnt_mutex);
2510 #ifdef RX_ENABLE_LOCKS
2511                     rxi_DestroyConnectionNoLock(conn);
2512 #else /* RX_ENABLE_LOCKS */
2513                     rxi_DestroyConnection(conn);
2514 #endif /* RX_ENABLE_LOCKS */
2515                 }
2516             }
2517         }
2518 #ifdef RX_ENABLE_LOCKS
2519         while (rx_connCleanup_list) {
2520             struct rx_connection *conn;
2521             conn = rx_connCleanup_list;
2522             rx_connCleanup_list = rx_connCleanup_list->next;
2523             MUTEX_EXIT(&rx_connHashTable_lock);
2524             rxi_CleanupConnection(conn);
2525             MUTEX_ENTER(&rx_connHashTable_lock);
2526         }
2527         MUTEX_EXIT(&rx_connHashTable_lock);
2528 #endif /* RX_ENABLE_LOCKS */
2529     }
2530     rxi_flushtrace();
2531
2532 #ifdef AFS_NT40_ENV
2533     afs_winsockCleanup();
2534 #endif
2535
2536     rxinit_status = 1;
2537     UNLOCK_RX_INIT;
2538 }
2539 #endif
2540
2541 /* if we wakeup packet waiter too often, can get in loop with two
2542     AllocSendPackets each waking each other up (from ReclaimPacket calls) */
2543 void
2544 rxi_PacketsUnWait(void)
2545 {
2546     if (!rx_waitingForPackets) {
2547         return;
2548     }
2549 #ifdef KERNEL
2550     if (rxi_OverQuota(RX_PACKET_CLASS_SEND)) {
2551         return;                 /* still over quota */
2552     }
2553 #endif /* KERNEL */
2554     rx_waitingForPackets = 0;
2555 #ifdef  RX_ENABLE_LOCKS
2556     CV_BROADCAST(&rx_waitingForPackets_cv);
2557 #else
2558     osi_rxWakeup(&rx_waitingForPackets);
2559 #endif
2560     return;
2561 }
2562
2563
2564 /* ------------------Internal interfaces------------------------- */
2565
2566 /* Return this process's service structure for the
2567  * specified socket and service */
2568 static struct rx_service *
2569 rxi_FindService(osi_socket socket, u_short serviceId)
2570 {
2571     struct rx_service **sp;
2572     for (sp = &rx_services[0]; *sp; sp++) {
2573         if ((*sp)->serviceId == serviceId && (*sp)->socket == socket)
2574             return *sp;
2575     }
2576     return 0;
2577 }
2578
2579 #ifdef RXDEBUG_PACKET
2580 #ifdef KDUMP_RX_LOCK
2581 static struct rx_call_rx_lock *rx_allCallsp = 0;
2582 #else
2583 static struct rx_call *rx_allCallsp = 0;
2584 #endif
2585 #endif /* RXDEBUG_PACKET */
2586
2587 /* Allocate a call structure, for the indicated channel of the
2588  * supplied connection.  The mode and state of the call must be set by
2589  * the caller. Returns the call with mutex locked. */
2590 static struct rx_call *
2591 rxi_NewCall(struct rx_connection *conn, int channel)
2592 {
2593     struct rx_call *call;
2594 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
2595     struct rx_call *cp; /* Call pointer temp */
2596     struct rx_call *nxp;        /* Next call pointer, for queue_Scan */
2597 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
2598
2599     dpf(("rxi_NewCall(conn %"AFS_PTR_FMT", channel %d)\n", conn, channel));
2600
2601     /* Grab an existing call structure, or allocate a new one.
2602      * Existing call structures are assumed to have been left reset by
2603      * rxi_FreeCall */
2604     MUTEX_ENTER(&rx_freeCallQueue_lock);
2605
2606 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
2607     /*
2608      * EXCEPT that the TQ might not yet be cleared out.
2609      * Skip over those with in-use TQs.
2610      */
2611     call = NULL;
2612     for (queue_Scan(&rx_freeCallQueue, cp, nxp, rx_call)) {
2613         if (!(cp->flags & RX_CALL_TQ_BUSY)) {
2614             call = cp;
2615             break;
2616         }
2617     }
2618     if (call) {
2619 #else /* AFS_GLOBAL_RXLOCK_KERNEL */
2620     if (queue_IsNotEmpty(&rx_freeCallQueue)) {
2621         call = queue_First(&rx_freeCallQueue, rx_call);
2622 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
2623         queue_Remove(call);
2624         if (rx_stats_active)
2625             rx_atomic_dec(&rx_stats.nFreeCallStructs);
2626         MUTEX_EXIT(&rx_freeCallQueue_lock);
2627         MUTEX_ENTER(&call->lock);
2628         CLEAR_CALL_QUEUE_LOCK(call);
2629 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
2630         /* Now, if TQ wasn't cleared earlier, do it now. */
2631         rxi_WaitforTQBusy(call);
2632         if (call->flags & RX_CALL_TQ_CLEARME) {
2633             rxi_ClearTransmitQueue(call, 1);
2634             /*queue_Init(&call->tq);*/
2635         }
2636 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
2637         /* Bind the call to its connection structure */
2638         call->conn = conn;
2639         rxi_ResetCall(call, 1);
2640     } else {
2641
2642         call = rxi_Alloc(sizeof(struct rx_call));
2643 #ifdef RXDEBUG_PACKET
2644         call->allNextp = rx_allCallsp;
2645         rx_allCallsp = call;
2646         call->call_id =
2647             rx_atomic_inc_and_read(&rx_stats.nCallStructs);
2648 #else /* RXDEBUG_PACKET */
2649         rx_atomic_inc(&rx_stats.nCallStructs);
2650 #endif /* RXDEBUG_PACKET */
2651
2652         MUTEX_EXIT(&rx_freeCallQueue_lock);
2653         MUTEX_INIT(&call->lock, "call lock", MUTEX_DEFAULT, NULL);
2654         MUTEX_ENTER(&call->lock);
2655         CV_INIT(&call->cv_twind, "call twind", CV_DEFAULT, 0);
2656         CV_INIT(&call->cv_rq, "call rq", CV_DEFAULT, 0);
2657         CV_INIT(&call->cv_tq, "call tq", CV_DEFAULT, 0);
2658
2659         /* Initialize once-only items */
2660         queue_Init(&call->tq);
2661         queue_Init(&call->rq);
2662         queue_Init(&call->iovq);
2663 #ifdef RXDEBUG_PACKET
2664         call->rqc = call->tqc = call->iovqc = 0;
2665 #endif /* RXDEBUG_PACKET */
2666         /* Bind the call to its connection structure (prereq for reset) */
2667         call->conn = conn;
2668         rxi_ResetCall(call, 1);
2669     }
2670     call->channel = channel;
2671     call->callNumber = &conn->callNumber[channel];
2672     call->rwind = conn->rwind[channel];
2673     call->twind = conn->twind[channel];
2674     /* Note that the next expected call number is retained (in
2675      * conn->callNumber[i]), even if we reallocate the call structure
2676      */
2677     conn->call[channel] = call;
2678     /* if the channel's never been used (== 0), we should start at 1, otherwise
2679      * the call number is valid from the last time this channel was used */
2680     if (*call->callNumber == 0)
2681         *call->callNumber = 1;
2682
2683     return call;
2684 }
2685
2686 /* A call has been inactive long enough that so we can throw away
2687  * state, including the call structure, which is placed on the call
2688  * free list.
2689  *
2690  * call->lock amd rx_refcnt_mutex are held upon entry.
2691  * haveCTLock is set when called from rxi_ReapConnections.
2692  */
2693 static void
2694 rxi_FreeCall(struct rx_call *call, int haveCTLock)
2695 {
2696     int channel = call->channel;
2697     struct rx_connection *conn = call->conn;
2698
2699
2700     if (call->state == RX_STATE_DALLY || call->state == RX_STATE_HOLD)
2701         (*call->callNumber)++;
2702     /*
2703      * We are setting the state to RX_STATE_RESET to
2704      * ensure that no one else will attempt to use this
2705      * call once we drop the refcnt lock. We must drop
2706      * the refcnt lock before calling rxi_ResetCall
2707      * because it cannot be held across acquiring the
2708      * freepktQ lock. NewCall does the same.
2709      */
2710     call->state = RX_STATE_RESET;
2711     MUTEX_EXIT(&rx_refcnt_mutex);
2712     rxi_ResetCall(call, 0);
2713
2714     MUTEX_ENTER(&conn->conn_call_lock);
2715     if (call->conn->call[channel] == call)
2716         call->conn->call[channel] = 0;
2717     MUTEX_EXIT(&conn->conn_call_lock);
2718
2719     MUTEX_ENTER(&rx_freeCallQueue_lock);
2720     SET_CALL_QUEUE_LOCK(call, &rx_freeCallQueue_lock);
2721 #ifdef AFS_GLOBAL_RXLOCK_KERNEL
2722     /* A call may be free even though its transmit queue is still in use.
2723      * Since we search the call list from head to tail, put busy calls at
2724      * the head of the list, and idle calls at the tail.
2725      */
2726     if (call->flags & RX_CALL_TQ_BUSY)
2727         queue_Prepend(&rx_freeCallQueue, call);
2728     else
2729         queue_Append(&rx_freeCallQueue, call);
2730 #else /* AFS_GLOBAL_RXLOCK_KERNEL */
2731     queue_Append(&rx_freeCallQueue, call);
2732 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
2733     if (rx_stats_active)
2734         rx_atomic_inc(&rx_stats.nFreeCallStructs);
2735     MUTEX_EXIT(&rx_freeCallQueue_lock);
2736
2737     /* Destroy the connection if it was previously slated for
2738      * destruction, i.e. the Rx client code previously called
2739      * rx_DestroyConnection (client connections), or
2740      * rxi_ReapConnections called the same routine (server
2741      * connections).  Only do this, however, if there are no
2742      * outstanding calls. Note that for fine grain locking, there appears
2743      * to be a deadlock in that rxi_FreeCall has a call locked and
2744      * DestroyConnectionNoLock locks each call in the conn. But note a
2745      * few lines up where we have removed this call from the conn.
2746      * If someone else destroys a connection, they either have no
2747      * call lock held or are going through this section of code.
2748      */
2749     MUTEX_ENTER(&conn->conn_data_lock);
2750     if (conn->flags & RX_CONN_DESTROY_ME && !(conn->flags & RX_CONN_MAKECALL_WAITING)) {
2751         MUTEX_ENTER(&rx_refcnt_mutex);
2752         conn->refCount++;
2753         MUTEX_EXIT(&rx_refcnt_mutex);
2754         MUTEX_EXIT(&conn->conn_data_lock);
2755 #ifdef RX_ENABLE_LOCKS
2756         if (haveCTLock)
2757             rxi_DestroyConnectionNoLock(conn);
2758         else
2759             rxi_DestroyConnection(conn);
2760 #else /* RX_ENABLE_LOCKS */
2761         rxi_DestroyConnection(conn);
2762 #endif /* RX_ENABLE_LOCKS */
2763     } else {
2764         MUTEX_EXIT(&conn->conn_data_lock);
2765     }
2766     MUTEX_ENTER(&rx_refcnt_mutex);
2767 }
2768
2769 rx_atomic_t rxi_Allocsize = RX_ATOMIC_INIT(0);
2770 rx_atomic_t rxi_Alloccnt = RX_ATOMIC_INIT(0);
2771
2772 void *
2773 rxi_Alloc(size_t size)
2774 {
2775     char *p;
2776
2777     if (rx_stats_active) {
2778         rx_atomic_add(&rxi_Allocsize, (int) size);
2779         rx_atomic_inc(&rxi_Alloccnt);
2780     }
2781
2782 p = (char *)
2783 #if defined(KERNEL) && !defined(UKERNEL) && defined(AFS_FBSD80_ENV)
2784   afs_osi_Alloc_NoSleep(size);
2785 #else
2786   osi_Alloc(size);
2787 #endif
2788     if (!p)
2789         osi_Panic("rxi_Alloc error");
2790     memset(p, 0, size);
2791     return p;
2792 }
2793
2794 void
2795 rxi_Free(void *addr, size_t size)
2796 {
2797     if (rx_stats_active) {
2798         rx_atomic_sub(&rxi_Allocsize, (int) size);
2799         rx_atomic_dec(&rxi_Alloccnt);
2800     }
2801     osi_Free(addr, size);
2802 }
2803
2804 void
2805 rxi_SetPeerMtu(struct rx_peer *peer, afs_uint32 host, afs_uint32 port, int mtu)
2806 {
2807     struct rx_peer **peer_ptr = NULL, **peer_end = NULL;
2808     struct rx_peer *next = NULL;
2809     int hashIndex;
2810
2811     if (!peer) {
2812         MUTEX_ENTER(&rx_peerHashTable_lock);
2813         if (port == 0) {
2814             peer_ptr = &rx_peerHashTable[0];
2815             peer_end = &rx_peerHashTable[rx_hashTableSize];
2816             next = NULL;
2817         resume:
2818             for ( ; peer_ptr < peer_end; peer_ptr++) {
2819                 if (!peer)
2820                     peer = *peer_ptr;
2821                 for ( ; peer; peer = next) {
2822                     next = peer->next;
2823                     if (host == peer->host)
2824                         break;
2825                 }
2826             }
2827         } else {
2828             hashIndex = PEER_HASH(host, port);
2829             for (peer = rx_peerHashTable[hashIndex]; peer; peer = peer->next) {
2830                 if ((peer->host == host) && (peer->port == port))
2831                     break;
2832             }
2833         }
2834     } else {
2835         MUTEX_ENTER(&rx_peerHashTable_lock);
2836     }
2837
2838     if (peer) {
2839         peer->refCount++;
2840         MUTEX_EXIT(&rx_peerHashTable_lock);
2841
2842         MUTEX_ENTER(&peer->peer_lock);
2843         /* We don't handle dropping below min, so don't */
2844         mtu = MAX(mtu, RX_MIN_PACKET_SIZE);
2845         peer->ifMTU=MIN(mtu, peer->ifMTU);
2846         peer->natMTU = rxi_AdjustIfMTU(peer->ifMTU);
2847         /* if we tweaked this down, need to tune our peer MTU too */
2848         peer->MTU = MIN(peer->MTU, peer->natMTU);
2849         /* if we discovered a sub-1500 mtu, degrade */
2850         if (peer->ifMTU < OLD_MAX_PACKET_SIZE)
2851             peer->maxDgramPackets = 1;
2852         /* We no longer have valid peer packet information */
2853         if (peer->maxPacketSize-RX_IPUDP_SIZE > peer->ifMTU)
2854             peer->maxPacketSize = 0;
2855         MUTEX_EXIT(&peer->peer_lock);
2856
2857         MUTEX_ENTER(&rx_peerHashTable_lock);
2858         peer->refCount--;
2859         if (host && !port) {
2860             peer = next;
2861             /* pick up where we left off */
2862             goto resume;
2863         }
2864     }
2865     MUTEX_EXIT(&rx_peerHashTable_lock);
2866 }
2867
2868 /* Find the peer process represented by the supplied (host,port)
2869  * combination.  If there is no appropriate active peer structure, a
2870  * new one will be allocated and initialized
2871  * The origPeer, if set, is a pointer to a peer structure on which the
2872  * refcount will be be decremented. This is used to replace the peer
2873  * structure hanging off a connection structure */
2874 struct rx_peer *
2875 rxi_FindPeer(afs_uint32 host, u_short port,
2876              struct rx_peer *origPeer, int create)
2877 {
2878     struct rx_peer *pp;
2879     int hashIndex;
2880     hashIndex = PEER_HASH(host, port);
2881     MUTEX_ENTER(&rx_peerHashTable_lock);
2882     for (pp = rx_peerHashTable[hashIndex]; pp; pp = pp->next) {
2883         if ((pp->host == host) && (pp->port == port))
2884             break;
2885     }
2886     if (!pp) {
2887         if (create) {
2888             pp = rxi_AllocPeer();       /* This bzero's *pp */
2889             pp->host = host;    /* set here or in InitPeerParams is zero */
2890             pp->port = port;
2891             MUTEX_INIT(&pp->peer_lock, "peer_lock", MUTEX_DEFAULT, 0);
2892             queue_Init(&pp->congestionQueue);
2893             queue_Init(&pp->rpcStats);
2894             pp->next = rx_peerHashTable[hashIndex];
2895             rx_peerHashTable[hashIndex] = pp;
2896             rxi_InitPeerParams(pp);
2897             if (rx_stats_active)
2898                 rx_atomic_inc(&rx_stats.nPeerStructs);
2899         }
2900     }
2901     if (pp && create) {
2902         pp->refCount++;
2903     }
2904     if (origPeer)
2905         origPeer->refCount--;
2906     MUTEX_EXIT(&rx_peerHashTable_lock);
2907     return pp;
2908 }
2909
2910
2911 /* Find the connection at (host, port) started at epoch, and with the
2912  * given connection id.  Creates the server connection if necessary.
2913  * The type specifies whether a client connection or a server
2914  * connection is desired.  In both cases, (host, port) specify the
2915  * peer's (host, pair) pair.  Client connections are not made
2916  * automatically by this routine.  The parameter socket gives the
2917  * socket descriptor on which the packet was received.  This is used,
2918  * in the case of server connections, to check that *new* connections
2919  * come via a valid (port, serviceId).  Finally, the securityIndex
2920  * parameter must match the existing index for the connection.  If a
2921  * server connection is created, it will be created using the supplied
2922  * index, if the index is valid for this service */
2923 struct rx_connection *
2924 rxi_FindConnection(osi_socket socket, afs_uint32 host,
2925                    u_short port, u_short serviceId, afs_uint32 cid,
2926                    afs_uint32 epoch, int type, u_int securityIndex)
2927 {
2928     int hashindex, flag, i;
2929     struct rx_connection *conn;
2930     hashindex = CONN_HASH(host, port, cid, epoch, type);
2931     MUTEX_ENTER(&rx_connHashTable_lock);
2932     rxLastConn ? (conn = rxLastConn, flag = 0) : (conn =
2933                                                   rx_connHashTable[hashindex],
2934                                                   flag = 1);
2935     for (; conn;) {
2936         if ((conn->type == type) && ((cid & RX_CIDMASK) == conn->cid)
2937             && (epoch == conn->epoch)) {
2938             struct rx_peer *pp = conn->peer;
2939             if (securityIndex != conn->securityIndex) {
2940                 /* this isn't supposed to happen, but someone could forge a packet
2941                  * like this, and there seems to be some CM bug that makes this
2942                  * happen from time to time -- in which case, the fileserver
2943                  * asserts. */
2944                 MUTEX_EXIT(&rx_connHashTable_lock);
2945                 return (struct rx_connection *)0;
2946             }
2947             if (pp->host == host && pp->port == port)
2948                 break;
2949             if (type == RX_CLIENT_CONNECTION && pp->port == port)
2950                 break;
2951             /* So what happens when it's a callback connection? */
2952             if (                /*type == RX_CLIENT_CONNECTION && */
2953                    (conn->epoch & 0x80000000))
2954                 break;
2955         }
2956         if (!flag) {
2957             /* the connection rxLastConn that was used the last time is not the
2958              ** one we are looking for now. Hence, start searching in the hash */
2959             flag = 1;
2960             conn = rx_connHashTable[hashindex];
2961         } else
2962             conn = conn->next;
2963     }
2964     if (!conn) {
2965         struct rx_service *service;
2966         if (type == RX_CLIENT_CONNECTION) {
2967             MUTEX_EXIT(&rx_connHashTable_lock);
2968             return (struct rx_connection *)0;
2969         }
2970         service = rxi_FindService(socket, serviceId);
2971         if (!service || (securityIndex >= service->nSecurityObjects)
2972             || (service->securityObjects[securityIndex] == 0)) {
2973             MUTEX_EXIT(&rx_connHashTable_lock);
2974             return (struct rx_connection *)0;
2975         }
2976         conn = rxi_AllocConnection();   /* This bzero's the connection */
2977         MUTEX_INIT(&conn->conn_call_lock, "conn call lock", MUTEX_DEFAULT, 0);
2978         MUTEX_INIT(&conn->conn_data_lock, "conn data lock", MUTEX_DEFAULT, 0);
2979         CV_INIT(&conn->conn_call_cv, "conn call cv", CV_DEFAULT, 0);
2980         conn->next = rx_connHashTable[hashindex];
2981         rx_connHashTable[hashindex] = conn;
2982         conn->peer = rxi_FindPeer(host, port, 0, 1);
2983         conn->type = RX_SERVER_CONNECTION;
2984         conn->lastSendTime = clock_Sec();       /* don't GC immediately */
2985         conn->epoch = epoch;
2986         conn->cid = cid & RX_CIDMASK;
2987         /* conn->serial = conn->lastSerial = 0; */
2988         /* conn->timeout = 0; */
2989         conn->ackRate = RX_FAST_ACK_RATE;
2990         conn->service = service;
2991         conn->serviceId = serviceId;
2992         conn->securityIndex = securityIndex;
2993         conn->securityObject = service->securityObjects[securityIndex];
2994         conn->nSpecific = 0;
2995         conn->specific = NULL;
2996         rx_SetConnDeadTime(conn, service->connDeadTime);
2997         rx_SetConnIdleDeadTime(conn, service->idleDeadTime);
2998         rx_SetServerConnIdleDeadErr(conn, service->idleDeadErr);
2999         for (i = 0; i < RX_MAXCALLS; i++) {
3000             conn->twind[i] = rx_initSendWindow;
3001             conn->rwind[i] = rx_initReceiveWindow;
3002         }
3003         /* Notify security object of the new connection */
3004         RXS_NewConnection(conn->securityObject, conn);
3005         /* XXXX Connection timeout? */
3006         if (service->newConnProc)
3007             (*service->newConnProc) (conn);
3008         if (rx_stats_active)
3009             rx_atomic_inc(&rx_stats.nServerConns);
3010     }
3011
3012     MUTEX_ENTER(&rx_refcnt_mutex);
3013     conn->refCount++;
3014     MUTEX_EXIT(&rx_refcnt_mutex);
3015
3016     rxLastConn = conn;          /* store this connection as the last conn used */
3017     MUTEX_EXIT(&rx_connHashTable_lock);
3018     return conn;
3019 }
3020
3021 /**
3022  * Timeout a call on a busy call channel if appropriate.
3023  *
3024  * @param[in] call The busy call.
3025  *
3026  * @pre 'call' is marked as busy (namely,
3027  *      call->conn->lastBusy[call->channel] != 0)
3028  *
3029  * @pre call->lock is held
3030  * @pre rxi_busyChannelError is nonzero
3031  *
3032  * @note call->lock is dropped and reacquired
3033  */
3034 static void
3035 rxi_CheckBusy(struct rx_call *call)
3036 {
3037     struct rx_connection *conn = call->conn;
3038     int channel = call->channel;
3039     int freechannel = 0;
3040     int i;
3041     afs_uint32 callNumber = *call->callNumber;
3042
3043     MUTEX_EXIT(&call->lock);
3044
3045     MUTEX_ENTER(&conn->conn_call_lock);
3046
3047     /* Are there any other call slots on this conn that we should try? Look for
3048      * slots that are empty and are either non-busy, or were marked as busy
3049      * longer than conn->secondsUntilDead seconds before this call started. */
3050
3051     for (i = 0; i < RX_MAXCALLS && !freechannel; i++) {
3052         if (i == channel) {
3053             /* only look at channels that aren't us */
3054             continue;
3055         }
3056
3057         if (conn->lastBusy[i]) {
3058             /* if this channel looked busy too recently, don't look at it */
3059             if (conn->lastBusy[i] >= call->startTime.sec) {
3060                 continue;
3061             }
3062             if (call->startTime.sec - conn->lastBusy[i] < conn->secondsUntilDead) {
3063                 continue;
3064             }
3065         }
3066
3067         if (conn->call[i]) {
3068             struct rx_call *tcall = conn->call[i];
3069             MUTEX_ENTER(&tcall->lock);
3070             if (tcall->state == RX_STATE_DALLY) {
3071                 freechannel = 1;
3072             }
3073             MUTEX_EXIT(&tcall->lock);
3074         } else {
3075             freechannel = 1;
3076         }
3077     }
3078
3079     MUTEX_EXIT(&conn->conn_call_lock);
3080
3081     MUTEX_ENTER(&call->lock);
3082
3083     /* Since the call->lock and conn->conn_call_lock have been released it is
3084      * possible that (1) the call may no longer be busy and/or (2) the call may
3085      * have been reused by another waiting thread. Therefore, we must confirm
3086      * that the call state has not changed when deciding whether or not to
3087      * force this application thread to retry by forcing a Timeout error. */
3088
3089     if (freechannel && *call->callNumber == callNumber &&
3090         (call->flags & RX_CALL_PEER_BUSY)) {
3091         /* Since 'freechannel' is set, there exists another channel in this
3092          * rx_conn that the application thread might be able to use. We know
3093          * that we have the correct call since callNumber is unchanged, and we
3094          * know that the call is still busy. So, set the call error state to
3095          * rxi_busyChannelError so the application can retry the request,
3096          * presumably on a less-busy call channel. */
3097
3098         rxi_CallError(call, rxi_busyChannelError);
3099     }
3100 }
3101
3102 /* There are two packet tracing routines available for testing and monitoring
3103  * Rx.  One is called just after every packet is received and the other is
3104  * called just before every packet is sent.  Received packets, have had their
3105  * headers decoded, and packets to be sent have not yet had their headers
3106  * encoded.  Both take two parameters: a pointer to the packet and a sockaddr
3107  * containing the network address.  Both can be modified.  The return value, if
3108  * non-zero, indicates that the packet should be dropped.  */
3109
3110 int (*rx_justReceived) (struct rx_packet *, struct sockaddr_in *) = 0;
3111 int (*rx_almostSent) (struct rx_packet *, struct sockaddr_in *) = 0;
3112
3113 /* A packet has been received off the interface.  Np is the packet, socket is
3114  * the socket number it was received from (useful in determining which service
3115  * this packet corresponds to), and (host, port) reflect the host,port of the
3116  * sender.  This call returns the packet to the caller if it is finished with
3117  * it, rather than de-allocating it, just as a small performance hack */
3118
3119 struct rx_packet *
3120 rxi_ReceivePacket(struct rx_packet *np, osi_socket socket,
3121                   afs_uint32 host, u_short port, int *tnop,
3122                   struct rx_call **newcallp)
3123 {
3124     struct rx_call *call;
3125     struct rx_connection *conn;
3126     int channel;
3127     afs_uint32 currentCallNumber;
3128     int type;
3129     int skew;
3130 #ifdef RXDEBUG
3131     char *packetType;
3132 #endif
3133     struct rx_packet *tnp;
3134
3135 #ifdef RXDEBUG
3136 /* We don't print out the packet until now because (1) the time may not be
3137  * accurate enough until now in the lwp implementation (rx_Listener only gets
3138  * the time after the packet is read) and (2) from a protocol point of view,
3139  * this is the first time the packet has been seen */
3140     packetType = (np->header.type > 0 && np->header.type < RX_N_PACKET_TYPES)
3141         ? rx_packetTypes[np->header.type - 1] : "*UNKNOWN*";
3142     dpf(("R %d %s: %x.%d.%d.%d.%d.%d.%d flags %d, packet %"AFS_PTR_FMT"\n",
3143          np->header.serial, packetType, ntohl(host), ntohs(port), np->header.serviceId,
3144          np->header.epoch, np->header.cid, np->header.callNumber,
3145          np->header.seq, np->header.flags, np));
3146 #endif
3147
3148     if (np->header.type == RX_PACKET_TYPE_VERSION) {
3149         return rxi_ReceiveVersionPacket(np, socket, host, port, 1);
3150     }
3151
3152     if (np->header.type == RX_PACKET_TYPE_DEBUG) {
3153         return rxi_ReceiveDebugPacket(np, socket, host, port, 1);
3154     }
3155 #ifdef RXDEBUG
3156     /* If an input tracer function is defined, call it with the packet and
3157      * network address.  Note this function may modify its arguments. */
3158     if (rx_justReceived) {
3159         struct sockaddr_in addr;
3160         int drop;
3161         addr.sin_family = AF_INET;
3162         addr.sin_port = port;
3163         addr.sin_addr.s_addr = host;
3164 #ifdef STRUCT_SOCKADDR_HAS_SA_LEN
3165         addr.sin_len = sizeof(addr);
3166 #endif /* AFS_OSF_ENV */
3167         drop = (*rx_justReceived) (np, &addr);
3168         /* drop packet if return value is non-zero */
3169         if (drop)
3170             return np;
3171         port = addr.sin_port;   /* in case fcn changed addr */
3172         host = addr.sin_addr.s_addr;
3173     }
3174 #endif
3175
3176     /* If packet was not sent by the client, then *we* must be the client */
3177     type = ((np->header.flags & RX_CLIENT_INITIATED) != RX_CLIENT_INITIATED)
3178         ? RX_CLIENT_CONNECTION : RX_SERVER_CONNECTION;
3179
3180     /* Find the connection (or fabricate one, if we're the server & if
3181      * necessary) associated with this packet */
3182     conn =
3183         rxi_FindConnection(socket, host, port, np->header.serviceId,
3184                            np->header.cid, np->header.epoch, type,
3185                            np->header.securityIndex);
3186
3187     if (!conn) {
3188         /* If no connection found or fabricated, just ignore the packet.
3189          * (An argument could be made for sending an abort packet for
3190          * the conn) */
3191         return np;
3192     }
3193
3194     /* If the connection is in an error state, send an abort packet and ignore
3195      * the incoming packet */
3196     if (conn->error) {
3197         /* Don't respond to an abort packet--we don't want loops! */
3198         MUTEX_ENTER(&conn->conn_data_lock);
3199         if (np->header.type != RX_PACKET_TYPE_ABORT)
3200             np = rxi_SendConnectionAbort(conn, np, 1, 0);
3201         putConnection(conn);
3202         MUTEX_EXIT(&conn->conn_data_lock);
3203         return np;
3204     }
3205
3206     /* Check for connection-only requests (i.e. not call specific). */
3207     if (np->header.callNumber == 0) {
3208         switch (np->header.type) {
3209         case RX_PACKET_TYPE_ABORT: {
3210             /* What if the supplied error is zero? */
3211             afs_int32 errcode = ntohl(rx_GetInt32(np, 0));
3212             dpf(("rxi_ReceivePacket ABORT rx_GetInt32 = %d\n", errcode));
3213             rxi_ConnectionError(conn, errcode);
3214             putConnection(conn);
3215             return np;
3216         }
3217         case RX_PACKET_TYPE_CHALLENGE:
3218             tnp = rxi_ReceiveChallengePacket(conn, np, 1);
3219             putConnection(conn);
3220             return tnp;
3221         case RX_PACKET_TYPE_RESPONSE:
3222             tnp = rxi_ReceiveResponsePacket(conn, np, 1);
3223             putConnection(conn);
3224             return tnp;
3225         case RX_PACKET_TYPE_PARAMS:
3226         case RX_PACKET_TYPE_PARAMS + 1:
3227         case RX_PACKET_TYPE_PARAMS + 2:
3228             /* ignore these packet types for now */
3229             putConnection(conn);
3230             return np;
3231
3232         default:
3233             /* Should not reach here, unless the peer is broken: send an
3234              * abort packet */
3235             rxi_ConnectionError(conn, RX_PROTOCOL_ERROR);
3236             MUTEX_ENTER(&conn->conn_data_lock);
3237             tnp = rxi_SendConnectionAbort(conn, np, 1, 0);
3238             putConnection(conn);
3239             MUTEX_EXIT(&conn->conn_data_lock);
3240             return tnp;
3241         }
3242     }
3243
3244     channel = np->header.cid & RX_CHANNELMASK;
3245     call = conn->call[channel];
3246
3247     if (call) {
3248         MUTEX_ENTER(&call->lock);
3249         currentCallNumber = conn->callNumber[channel];
3250     } else if (type == RX_SERVER_CONNECTION) {  /* No call allocated */
3251         MUTEX_ENTER(&conn->conn_call_lock);
3252         call = conn->call[channel];
3253         if (call) {
3254             MUTEX_ENTER(&call->lock);
3255             MUTEX_EXIT(&conn->conn_call_lock);
3256             currentCallNumber = conn->callNumber[channel];
3257         } else {
3258             call = rxi_NewCall(conn, channel);  /* returns locked call */
3259             MUTEX_EXIT(&conn->conn_call_lock);
3260             *call->callNumber = currentCallNumber = np->header.callNumber;
3261 #ifdef RXDEBUG
3262             if (np->header.callNumber == 0)
3263                 dpf(("RecPacket call 0 %d %s: %x.%u.%u.%u.%u.%u.%u flags %d, packet %"AFS_PTR_FMT" len %d\n",
3264                      np->header.serial, rx_packetTypes[np->header.type - 1], ntohl(conn->peer->host), ntohs(conn->peer->port),
3265                      np->header.serial, np->header.epoch, np->header.cid, np->header.callNumber, np->header.seq,
3266                      np->header.flags, np, np->length));
3267 #endif
3268             call->state = RX_STATE_PRECALL;
3269             clock_GetTime(&call->queueTime);
3270             hzero(call->bytesSent);
3271             hzero(call->bytesRcvd);
3272             /*
3273              * If the number of queued calls exceeds the overload
3274              * threshold then abort this call.
3275              */
3276             if ((rx_BusyThreshold > 0) &&
3277                 (rx_atomic_read(&rx_nWaiting) > rx_BusyThreshold)) {
3278                 struct rx_packet *tp;
3279
3280                 rxi_CallError(call, rx_BusyError);
3281                 tp = rxi_SendCallAbort(call, np, 1, 0);
3282                 MUTEX_EXIT(&call->lock);
3283                 putConnection(conn);
3284                 if (rx_stats_active)
3285                     rx_atomic_inc(&rx_stats.nBusies);
3286                 return tp;
3287             }
3288             rxi_KeepAliveOn(call);
3289         }
3290     } else {    /* RX_CLIENT_CONNECTION and No call allocated */
3291         /* This packet can't be for this call. If the new call address is
3292          * 0 then no call is running on this channel. If there is a call
3293          * then, since this is a client connection we're getting data for
3294          * it must be for the previous call.
3295          */
3296         if (rx_stats_active)
3297             rx_atomic_inc(&rx_stats.spuriousPacketsRead);
3298         putConnection(conn);
3299         return np;
3300     }
3301
3302     /* There is a non-NULL locked call at this point */
3303     if (type == RX_SERVER_CONNECTION) { /* We're the server */
3304         if (np->header.callNumber < currentCallNumber) {
3305             MUTEX_EXIT(&call->lock);
3306             if (rx_stats_active)
3307                 rx_atomic_inc(&rx_stats.spuriousPacketsRead);
3308             putConnection(conn);
3309             return np;
3310         } else if (np->header.callNumber != currentCallNumber) {
3311             /* Wait until the transmit queue is idle before deciding
3312              * whether to reset the current call. Chances are that the
3313              * call will be in ether DALLY or HOLD state once the TQ_BUSY
3314              * flag is cleared.
3315              */
3316 #ifdef AFS_GLOBAL_RXLOCK_KERNEL
3317             if (call->state == RX_STATE_ACTIVE) {
3318                 rxi_WaitforTQBusy(call);
3319                 /*
3320                  * If we entered error state while waiting,
3321                  * must call rxi_CallError to permit rxi_ResetCall
3322                  * to processed when the tqWaiter count hits zero.
3323                  */
3324                 if (call->error) {
3325                     rxi_CallError(call, call->error);
3326                     MUTEX_EXIT(&call->lock);
3327                     putConnection(conn);
3328                     return np;
3329                 }
3330             }
3331 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
3332             /* If the new call cannot be taken right now send a busy and set
3333              * the error condition in this call, so that it terminates as
3334              * quickly as possible */
3335             if (call->state == RX_STATE_ACTIVE) {
3336                 struct rx_packet *tp;
3337
3338                 rxi_CallError(call, RX_CALL_DEAD);
3339                 tp = rxi_SendSpecial(call, conn, np, RX_PACKET_TYPE_BUSY,
3340                                      NULL, 0, 1);
3341                 MUTEX_EXIT(&call->lock);
3342                 putConnection(conn);
3343                 return tp;
3344             }
3345             rxi_ResetCall(call, 0);
3346             *call->callNumber = np->header.callNumber;
3347 #ifdef RXDEBUG
3348             if (np->header.callNumber == 0)
3349                 dpf(("RecPacket call 0 %d %s: %x.%u.%u.%u.%u.%u.%u flags %d, packet %"AFS_PTR_FMT" len %d\n",
3350                       np->header.serial, rx_packetTypes[np->header.type - 1], ntohl(conn->peer->host), ntohs(conn->peer->port),
3351                       np->header.serial, np->header.epoch, np->header.cid, np->header.callNumber, np->header.seq,
3352                       np->header.flags, np, np->length));
3353 #endif
3354             call->state = RX_STATE_PRECALL;
3355             clock_GetTime(&call->queueTime);
3356             hzero(call->bytesSent);
3357             hzero(call->bytesRcvd);
3358             /*
3359              * If the number of queued calls exceeds the overload
3360              * threshold then abort this call.
3361              */
3362             if ((rx_BusyThreshold > 0) &&
3363                 (rx_atomic_read(&rx_nWaiting) > rx_BusyThreshold)) {
3364                 struct rx_packet *tp;
3365
3366                 rxi_CallError(call, rx_BusyError);
3367                 tp = rxi_SendCallAbort(call, np, 1, 0);
3368                 MUTEX_EXIT(&call->lock);
3369                 putConnection(conn);
3370                 if (rx_stats_active)
3371                     rx_atomic_inc(&rx_stats.nBusies);
3372                 return tp;
3373             }
3374             rxi_KeepAliveOn(call);
3375         } else {
3376             /* Continuing call; do nothing here. */
3377         }
3378     } else {                    /* we're the client */
3379         /* Ignore all incoming acknowledgements for calls in DALLY state */
3380         if ((call->state == RX_STATE_DALLY)
3381             && (np->header.type == RX_PACKET_TYPE_ACK)) {
3382             if (rx_stats_active)
3383                 rx_atomic_inc(&rx_stats.ignorePacketDally);
3384             MUTEX_EXIT(&call->lock);
3385             putConnection(conn);
3386             return np;
3387         }
3388
3389         /* Ignore anything that's not relevant to the current call.  If there
3390          * isn't a current call, then no packet is relevant. */
3391         if (np->header.callNumber != currentCallNumber) {
3392             if (rx_stats_active)
3393                 rx_atomic_inc(&rx_stats.spuriousPacketsRead);
3394             MUTEX_EXIT(&call->lock);
3395             putConnection(conn);
3396             return np;
3397         }
3398         /* If the service security object index stamped in the packet does not
3399          * match the connection's security index, ignore the packet */
3400         if (np->header.securityIndex != conn->securityIndex) {
3401             MUTEX_EXIT(&call->lock);
3402             putConnection(conn);
3403             return np;
3404         }
3405
3406         /* If we're receiving the response, then all transmit packets are
3407          * implicitly acknowledged.  Get rid of them. */
3408         if (np->header.type == RX_PACKET_TYPE_DATA) {
3409 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
3410             /* XXX Hack. Because we must release the global rx lock when
3411              * sending packets (osi_NetSend) we drop all acks while we're
3412              * traversing the tq in rxi_Start sending packets out because
3413              * packets may move to the freePacketQueue as result of being here!
3414              * So we drop these packets until we're safely out of the
3415              * traversing. Really ugly!
3416              * For fine grain RX locking, we set the acked field in the
3417              * packets and let rxi_Start remove them from the transmit queue.
3418              */
3419             if (call->flags & RX_CALL_TQ_BUSY) {
3420 #ifdef  RX_ENABLE_LOCKS
3421                 rxi_SetAcksInTransmitQueue(call);
3422 #else
3423                 putConnection(conn);
3424                 return np;      /* xmitting; drop packet */
3425 #endif
3426             } else {
3427                 rxi_ClearTransmitQueue(call, 0);
3428             }
3429 #else /* AFS_GLOBAL_RXLOCK_KERNEL */
3430             rxi_ClearTransmitQueue(call, 0);
3431 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
3432         } else {
3433             if (np->header.type == RX_PACKET_TYPE_ACK) {
3434                 /* now check to see if this is an ack packet acknowledging that the
3435                  * server actually *lost* some hard-acked data.  If this happens we
3436                  * ignore this packet, as it may indicate that the server restarted in
3437                  * the middle of a call.  It is also possible that this is an old ack
3438                  * packet.  We don't abort the connection in this case, because this
3439                  * *might* just be an old ack packet.  The right way to detect a server
3440                  * restart in the midst of a call is to notice that the server epoch
3441                  * changed, btw.  */
3442                 /* XXX I'm not sure this is exactly right, since tfirst **IS**
3443                  * XXX unacknowledged.  I think that this is off-by-one, but
3444                  * XXX I don't dare change it just yet, since it will
3445                  * XXX interact badly with the server-restart detection
3446                  * XXX code in receiveackpacket.  */
3447                 if (ntohl(rx_GetInt32(np, FIRSTACKOFFSET)) < call->tfirst) {
3448                     if (rx_stats_active)
3449                         rx_atomic_inc(&rx_stats.spuriousPacketsRead);
3450                     MUTEX_EXIT(&call->lock);
3451                     putConnection(conn);
3452                     return np;
3453                 }
3454             }
3455         }                       /* else not a data packet */
3456     }
3457
3458     osirx_AssertMine(&call->lock, "rxi_ReceivePacket middle");
3459     /* Set remote user defined status from packet */
3460     call->remoteStatus = np->header.userStatus;
3461
3462     /* Note the gap between the expected next packet and the actual
3463      * packet that arrived, when the new packet has a smaller serial number
3464      * than expected.  Rioses frequently reorder packets all by themselves,
3465      * so this will be quite important with very large window sizes.
3466      * Skew is checked against 0 here to avoid any dependence on the type of
3467      * inPacketSkew (which may be unsigned).  In C, -1 > (unsigned) 0 is always
3468      * true!
3469      * The inPacketSkew should be a smoothed running value, not just a maximum.  MTUXXX
3470      * see CalculateRoundTripTime for an example of how to keep smoothed values.
3471      * I think using a beta of 1/8 is probably appropriate.  93.04.21
3472      */
3473     MUTEX_ENTER(&conn->conn_data_lock);
3474     skew = conn->lastSerial - np->header.serial;
3475     conn->lastSerial = np->header.serial;
3476     MUTEX_EXIT(&conn->conn_data_lock);
3477     if (skew > 0) {
3478         struct rx_peer *peer;
3479         peer = conn->peer;
3480         if (skew > peer->inPacketSkew) {
3481             dpf(("*** In skew changed from %d to %d\n",
3482                   peer->inPacketSkew, skew));
3483             peer->inPacketSkew = skew;
3484         }
3485     }
3486
3487     /* Now do packet type-specific processing */
3488     switch (np->header.type) {
3489     case RX_PACKET_TYPE_DATA:
3490         np = rxi_ReceiveDataPacket(call, np, 1, socket, host, port, tnop,
3491                                    newcallp);
3492         break;
3493     case RX_PACKET_TYPE_ACK:
3494         /* Respond immediately to ack packets requesting acknowledgement
3495          * (ping packets) */
3496         if (np->header.flags & RX_REQUEST_ACK) {
3497             if (call->error)
3498                 (void)rxi_SendCallAbort(call, 0, 1, 0);
3499             else
3500                 (void)rxi_SendAck(call, 0, np->header.serial,
3501                                   RX_ACK_PING_RESPONSE, 1);
3502         }
3503         np = rxi_ReceiveAckPacket(call, np, 1);
3504         break;
3505     case RX_PACKET_TYPE_ABORT: {
3506         /* An abort packet: reset the call, passing the error up to the user. */
3507         /* What if error is zero? */
3508         /* What if the error is -1? the application will treat it as a timeout. */
3509         afs_int32 errdata = ntohl(*(afs_int32 *) rx_DataOf(np));
3510         dpf(("rxi_ReceivePacket ABORT rx_DataOf = %d\n", errdata));
3511         rxi_CallError(call, errdata);
3512         MUTEX_EXIT(&call->lock);
3513         putConnection(conn);
3514         return np;              /* xmitting; drop packet */
3515     }
3516     case RX_PACKET_TYPE_BUSY: {
3517         struct clock busyTime;
3518         clock_NewTime();
3519         clock_GetTime(&busyTime);
3520
3521         MUTEX_EXIT(&call->lock);
3522
3523         MUTEX_ENTER(&conn->conn_call_lock);
3524         MUTEX_ENTER(&call->lock);
3525         conn->lastBusy[call->channel] = busyTime.sec;
3526         call->flags |= RX_CALL_PEER_BUSY;
3527         MUTEX_EXIT(&call->lock);
3528         MUTEX_EXIT(&conn->conn_call_lock);
3529
3530         putConnection(conn);
3531         return np;
3532     }
3533
3534     case RX_PACKET_TYPE_ACKALL:
3535         /* All packets acknowledged, so we can drop all packets previously
3536          * readied for sending */
3537 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
3538         /* XXX Hack. We because we can't release the global rx lock when
3539          * sending packets (osi_NetSend) we drop all ack pkts while we're
3540          * traversing the tq in rxi_Start sending packets out because
3541          * packets may move to the freePacketQueue as result of being
3542          * here! So we drop these packets until we're safely out of the
3543          * traversing. Really ugly!
3544          * For fine grain RX locking, we set the acked field in the packets
3545          * and let rxi_Start remove the packets from the transmit queue.
3546          */
3547         if (call->flags & RX_CALL_TQ_BUSY) {
3548 #ifdef  RX_ENABLE_LOCKS
3549             rxi_SetAcksInTransmitQueue(call);
3550             break;
3551 #else /* RX_ENABLE_LOCKS */
3552             MUTEX_EXIT(&call->lock);
3553             putConnection(conn);
3554             return np;          /* xmitting; drop packet */
3555 #endif /* RX_ENABLE_LOCKS */
3556         }
3557 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
3558         rxi_ClearTransmitQueue(call, 0);
3559         break;
3560     default:
3561         /* Should not reach here, unless the peer is broken: send an abort
3562          * packet */
3563         rxi_CallError(call, RX_PROTOCOL_ERROR);
3564         np = rxi_SendCallAbort(call, np, 1, 0);
3565         break;
3566     };
3567     /* Note when this last legitimate packet was received, for keep-alive
3568      * processing.  Note, we delay getting the time until now in the hope that
3569      * the packet will be delivered to the user before any get time is required
3570      * (if not, then the time won't actually be re-evaluated here). */
3571     call->lastReceiveTime = clock_Sec();
3572     /* we've received a legit packet, so the channel is not busy */
3573     call->flags &= ~RX_CALL_PEER_BUSY;
3574     MUTEX_EXIT(&call->lock);
3575     putConnection(conn);
3576     return np;
3577 }
3578
3579 /* return true if this is an "interesting" connection from the point of view
3580     of someone trying to debug the system */
3581 int
3582 rxi_IsConnInteresting(struct rx_connection *aconn)
3583 {
3584     int i;
3585     struct rx_call *tcall;
3586
3587     if (aconn->flags & (RX_CONN_MAKECALL_WAITING | RX_CONN_DESTROY_ME))
3588         return 1;
3589
3590     for (i = 0; i < RX_MAXCALLS; i++) {
3591         tcall = aconn->call[i];
3592         if (tcall) {
3593             if ((tcall->state == RX_STATE_PRECALL)
3594                 || (tcall->state == RX_STATE_ACTIVE))
3595                 return 1;
3596             if ((tcall->mode == RX_MODE_SENDING)
3597                 || (tcall->mode == RX_MODE_RECEIVING))
3598                 return 1;
3599         }
3600     }
3601     return 0;
3602 }
3603
3604 #ifdef KERNEL
3605 /* if this is one of the last few packets AND it wouldn't be used by the
3606    receiving call to immediately satisfy a read request, then drop it on
3607    the floor, since accepting it might prevent a lock-holding thread from
3608    making progress in its reading. If a call has been cleared while in
3609    the precall state then ignore all subsequent packets until the call
3610    is assigned to a thread. */
3611
3612 static int
3613 TooLow(struct rx_packet *ap, struct rx_call *acall)
3614 {
3615     int rc = 0;
3616
3617     MUTEX_ENTER(&rx_quota_mutex);
3618     if (((ap->header.seq != 1) && (acall->flags & RX_CALL_CLEARED)
3619          && (acall->state == RX_STATE_PRECALL))
3620         || ((rx_nFreePackets < rxi_dataQuota + 2)
3621             && !((ap->header.seq < acall->rnext + rx_initSendWindow)
3622                  && (acall->flags & RX_CALL_READER_WAIT)))) {
3623         rc = 1;
3624     }
3625     MUTEX_EXIT(&rx_quota_mutex);
3626     return rc;
3627 }
3628 #endif /* KERNEL */
3629
3630 /*!
3631  * Clear the attach wait flag on a connection and proceed.
3632  *
3633  * Any processing waiting for a connection to be attached should be
3634  * unblocked. We clear the flag and do any other needed tasks.
3635  *
3636  * @param[in] conn
3637  *      the conn to unmark waiting for attach
3638  *
3639  * @pre conn's conn_data_lock must be locked before calling this function
3640  *
3641  */
3642 static void
3643 rxi_ConnClearAttachWait(struct rx_connection *conn)
3644 {
3645     /* Indicate that rxi_CheckReachEvent is no longer running by
3646      * clearing the flag.  Must be atomic under conn_data_lock to
3647      * avoid a new call slipping by: rxi_CheckConnReach holds
3648      * conn_data_lock while checking RX_CONN_ATTACHWAIT.
3649      */
3650     conn->flags &= ~RX_CONN_ATTACHWAIT;
3651     if (conn->flags & RX_CONN_NAT_PING) {
3652         conn->flags &= ~RX_CONN_NAT_PING;
3653         rxi_ScheduleNatKeepAliveEvent(conn);
3654     }
3655 }
3656
3657 static void
3658 rxi_CheckReachEvent(struct rxevent *event, void *arg1, void *arg2, int dummy)
3659 {
3660     struct rx_connection *conn = arg1;
3661     struct rx_call *acall = arg2;
3662     struct rx_call *call = acall;
3663     struct clock when, now;
3664     int i, waiting;
3665
3666     MUTEX_ENTER(&conn->conn_data_lock);
3667
3668     if (event) {
3669         rxevent_Put(conn->checkReachEvent);
3670         conn->checkReachEvent = NULL;
3671     }
3672
3673     waiting = conn->flags & RX_CONN_ATTACHWAIT;
3674     if (event) {
3675         putConnection(conn);
3676     }
3677     MUTEX_EXIT(&conn->conn_data_lock);
3678
3679     if (waiting) {
3680         if (!call) {
3681             MUTEX_ENTER(&conn->conn_call_lock);
3682             MUTEX_ENTER(&conn->conn_data_lock);
3683             for (i = 0; i < RX_MAXCALLS; i++) {
3684                 struct rx_call *tc = conn->call[i];
3685                 if (tc && tc->state == RX_STATE_PRECALL) {
3686                     call = tc;
3687                     break;
3688                 }
3689             }
3690             if (!call)
3691                 rxi_ConnClearAttachWait(conn);
3692             MUTEX_EXIT(&conn->conn_data_lock);
3693             MUTEX_EXIT(&conn->conn_call_lock);
3694         }
3695
3696         if (call) {
3697             if (call != acall)
3698                 MUTEX_ENTER(&call->lock);
3699             rxi_SendAck(call, NULL, 0, RX_ACK_PING, 0);
3700             if (call != acall)
3701                 MUTEX_EXIT(&call->lock);
3702
3703             clock_GetTime(&now);
3704             when = now;
3705             when.sec += RX_CHECKREACH_TIMEOUT;
3706             MUTEX_ENTER(&conn->conn_data_lock);
3707             if (!conn->checkReachEvent) {
3708                 MUTEX_ENTER(&rx_refcnt_mutex);
3709                 conn->refCount++;
3710                 MUTEX_EXIT(&rx_refcnt_mutex);
3711                 conn->checkReachEvent = rxevent_Post(&when, &now,
3712                                                      rxi_CheckReachEvent, conn,
3713                                                      NULL, 0);
3714             }
3715             MUTEX_EXIT(&conn->conn_data_lock);
3716         }
3717     }
3718 }
3719
3720 static int
3721 rxi_CheckConnReach(struct rx_connection *conn, struct rx_call *call)
3722 {
3723     struct rx_service *service = conn->service;
3724     struct rx_peer *peer = conn->peer;
3725     afs_uint32 now, lastReach;
3726
3727     if (service->checkReach == 0)
3728         return 0;
3729
3730     now = clock_Sec();
3731     MUTEX_ENTER(&peer->peer_lock);
3732     lastReach = peer->lastReachTime;
3733     MUTEX_EXIT(&peer->peer_lock);
3734     if (now - lastReach < RX_CHECKREACH_TTL)
3735         return 0;
3736
3737     MUTEX_ENTER(&conn->conn_data_lock);
3738     if (conn->flags & RX_CONN_ATTACHWAIT) {
3739         MUTEX_EXIT(&conn->conn_data_lock);
3740         return 1;
3741     }
3742     conn->flags |= RX_CONN_ATTACHWAIT;
3743     MUTEX_EXIT(&conn->conn_data_lock);
3744     if (!conn->checkReachEvent)
3745         rxi_CheckReachEvent(NULL, conn, call, 0);
3746
3747     return 1;
3748 }
3749
3750 /* try to attach call, if authentication is complete */
3751 static void
3752 TryAttach(struct rx_call *acall, osi_socket socket,
3753           int *tnop, struct rx_call **newcallp,
3754           int reachOverride)
3755 {
3756     struct rx_connection *conn = acall->conn;
3757
3758     if (conn->type == RX_SERVER_CONNECTION
3759         && acall->state == RX_STATE_PRECALL) {
3760         /* Don't attach until we have any req'd. authentication. */
3761         if (RXS_CheckAuthentication(conn->securityObject, conn) == 0) {
3762             if (reachOverride || rxi_CheckConnReach(conn, acall) == 0)
3763                 rxi_AttachServerProc(acall, socket, tnop, newcallp);
3764             /* Note:  this does not necessarily succeed; there
3765              * may not any proc available
3766              */
3767         } else {
3768             rxi_ChallengeOn(acall->conn);
3769         }
3770     }
3771 }
3772
3773 /* A data packet has been received off the interface.  This packet is
3774  * appropriate to the call (the call is in the right state, etc.).  This
3775  * routine can return a packet to the caller, for re-use */
3776
3777 struct rx_packet *
3778 rxi_ReceiveDataPacket(struct rx_call *call,
3779                       struct rx_packet *np, int istack,
3780                       osi_socket socket, afs_uint32 host, u_short port,
3781                       int *tnop, struct rx_call **newcallp)
3782 {
3783     int ackNeeded = 0;          /* 0 means no, otherwise ack_reason */
3784     int newPackets = 0;
3785     int didHardAck = 0;
3786     int haveLast = 0;
3787     afs_uint32 seq;
3788     afs_uint32 serial=0, flags=0;
3789     int isFirst;
3790     struct rx_packet *tnp;
3791     if (rx_stats_active)
3792         rx_atomic_inc(&rx_stats.dataPacketsRead);
3793
3794 #ifdef KERNEL
3795     /* If there are no packet buffers, drop this new packet, unless we can find
3796      * packet buffers from inactive calls */
3797     if (!call->error
3798         && (rxi_OverQuota(RX_PACKET_CLASS_RECEIVE) || TooLow(np, call))) {
3799         MUTEX_ENTER(&rx_freePktQ_lock);
3800         rxi_NeedMorePackets = TRUE;
3801         MUTEX_EXIT(&rx_freePktQ_lock);
3802         if (rx_stats_active)
3803             rx_atomic_inc(&rx_stats.noPacketBuffersOnRead);
3804         call->rprev = np->header.serial;
3805         rxi_calltrace(RX_TRACE_DROP, call);
3806         dpf(("packet %"AFS_PTR_FMT" dropped on receipt - quota problems\n", np));
3807         /* We used to clear the receive queue here, in an attempt to free
3808          * packets. However this is unsafe if the queue has received a
3809          * soft ACK for the final packet */
3810         rxi_PostDelayedAckEvent(call, &rx_softAckDelay);
3811
3812         /* we've damaged this call already, might as well do it in. */
3813         return np;
3814     }
3815 #endif /* KERNEL */
3816
3817     /*
3818      * New in AFS 3.5, if the RX_JUMBO_PACKET flag is set then this
3819      * packet is one of several packets transmitted as a single
3820      * datagram. Do not send any soft or hard acks until all packets
3821      * in a jumbogram have been processed. Send negative acks right away.
3822      */
3823     for (isFirst = 1, tnp = NULL; isFirst || tnp; isFirst = 0) {
3824         /* tnp is non-null when there are more packets in the
3825          * current jumbo gram */
3826         if (tnp) {
3827             if (np)
3828                 rxi_FreePacket(np);
3829             np = tnp;
3830         }
3831
3832         seq = np->header.seq;
3833         serial = np->header.serial;
3834         flags = np->header.flags;
3835
3836         /* If the call is in an error state, send an abort message */
3837         if (call->error)
3838             return rxi_SendCallAbort(call, np, istack, 0);
3839
3840         /* The RX_JUMBO_PACKET is set in all but the last packet in each
3841          * AFS 3.5 jumbogram. */
3842         if (flags & RX_JUMBO_PACKET) {
3843             tnp = rxi_SplitJumboPacket(np, host, port, isFirst);
3844         } else {
3845             tnp = NULL;
3846         }
3847
3848         if (np->header.spare != 0) {
3849             MUTEX_ENTER(&call->conn->conn_data_lock);
3850             call->conn->flags |= RX_CONN_USING_PACKET_CKSUM;
3851             MUTEX_EXIT(&call->conn->conn_data_lock);
3852         }
3853
3854         /* The usual case is that this is the expected next packet */
3855         if (seq == call->rnext) {
3856
3857             /* Check to make sure it is not a duplicate of one already queued */
3858             if (queue_IsNotEmpty(&call->rq)
3859                 && queue_First(&call->rq, rx_packet)->header.seq == seq) {
3860                 if (rx_stats_active)
3861                     rx_atomic_inc(&rx_stats.dupPacketsRead);
3862                 dpf(("packet %"AFS_PTR_FMT" dropped on receipt - duplicate\n", np));
3863                 rxevent_Cancel(&call->delayedAckEvent, call,
3864                                RX_CALL_REFCOUNT_DELAY);
3865                 np = rxi_SendAck(call, np, serial, RX_ACK_DUPLICATE, istack);
3866                 ackNeeded = 0;
3867                 call->rprev = seq;
3868                 continue;
3869             }
3870
3871             /* It's the next packet. Stick it on the receive queue
3872              * for this call. Set newPackets to make sure we wake
3873              * the reader once all packets have been processed */
3874 #ifdef RX_TRACK_PACKETS
3875             np->flags |= RX_PKTFLAG_RQ;
3876 #endif
3877             queue_Prepend(&call->rq, np);
3878 #ifdef RXDEBUG_PACKET
3879             call->rqc++;
3880 #endif /* RXDEBUG_PACKET */
3881             call->nSoftAcks++;
3882             np = NULL;          /* We can't use this anymore */
3883             newPackets = 1;
3884
3885             /* If an ack is requested then set a flag to make sure we
3886              * send an acknowledgement for this packet */
3887             if (flags & RX_REQUEST_ACK) {
3888                 ackNeeded = RX_ACK_REQUESTED;
3889             }
3890
3891             /* Keep track of whether we have received the last packet */
3892             if (flags & RX_LAST_PACKET) {
3893                 call->flags |= RX_CALL_HAVE_LAST;
3894                 haveLast = 1;
3895             }
3896
3897             /* Check whether we have all of the packets for this call */
3898             if (call->flags & RX_CALL_HAVE_LAST) {
3899                 afs_uint32 tseq;        /* temporary sequence number */
3900                 struct rx_packet *tp;   /* Temporary packet pointer */
3901                 struct rx_packet *nxp;  /* Next pointer, for queue_Scan */
3902
3903                 for (tseq = seq, queue_Scan(&call->rq, tp, nxp, rx_packet)) {
3904                     if (tseq != tp->header.seq)
3905                         break;
3906                     if (tp->header.flags & RX_LAST_PACKET) {
3907                         call->flags |= RX_CALL_RECEIVE_DONE;
3908                         break;
3909                     }
3910                     tseq++;
3911                 }
3912             }
3913
3914             /* Provide asynchronous notification for those who want it
3915              * (e.g. multi rx) */
3916             if (call->arrivalProc) {
3917                 (*call->arrivalProc) (call, call->arrivalProcHandle,
3918                                       call->arrivalProcArg);
3919                 call->arrivalProc = (void (*)())0;
3920             }
3921
3922             /* Update last packet received */
3923             call->rprev = seq;
3924
3925             /* If there is no server process serving this call, grab
3926              * one, if available. We only need to do this once. If a
3927              * server thread is available, this thread becomes a server
3928              * thread and the server thread becomes a listener thread. */
3929             if (isFirst) {
3930                 TryAttach(call, socket, tnop, newcallp, 0);
3931             }
3932         }
3933         /* This is not the expected next packet. */
3934         else {
3935             /* Determine whether this is a new or old packet, and if it's
3936              * a new one, whether it fits into the current receive window.
3937              * Also figure out whether the packet was delivered in sequence.
3938              * We use the prev variable to determine whether the new packet
3939              * is the successor of its immediate predecessor in the
3940              * receive queue, and the missing flag to determine whether
3941              * any of this packets predecessors are missing.  */
3942
3943             afs_uint32 prev;    /* "Previous packet" sequence number */
3944             struct rx_packet *tp;       /* Temporary packet pointer */
3945             struct rx_packet *nxp;      /* Next pointer, for queue_Scan */
3946             int missing;        /* Are any predecessors missing? */
3947
3948             /* If the new packet's sequence number has been sent to the
3949              * application already, then this is a duplicate */
3950             if (seq < call->rnext) {
3951                 if (rx_stats_active)
3952                     rx_atomic_inc(&rx_stats.dupPacketsRead);
3953                 rxevent_Cancel(&call->delayedAckEvent, call,
3954                                RX_CALL_REFCOUNT_DELAY);
3955                 np = rxi_SendAck(call, np, serial, RX_ACK_DUPLICATE, istack);
3956                 ackNeeded = 0;
3957                 call->rprev = seq;
3958                 continue;
3959             }
3960
3961             /* If the sequence number is greater than what can be
3962              * accomodated by the current window, then send a negative
3963              * acknowledge and drop the packet */
3964             if ((call->rnext + call->rwind) <= seq) {
3965                 rxevent_Cancel(&call->delayedAckEvent, call,
3966                                RX_CALL_REFCOUNT_DELAY);
3967                 np = rxi_SendAck(call, np, serial, RX_ACK_EXCEEDS_WINDOW,
3968                                  istack);
3969                 ackNeeded = 0;
3970                 call->rprev = seq;
3971                 continue;
3972             }
3973
3974             /* Look for the packet in the queue of old received packets */
3975             for (prev = call->rnext - 1, missing =
3976                  0, queue_Scan(&call->rq, tp, nxp, rx_packet)) {
3977                 /*Check for duplicate packet */
3978                 if (seq == tp->header.seq) {
3979                     if (rx_stats_active)
3980                         rx_atomic_inc(&rx_stats.dupPacketsRead);
3981                     rxevent_Cancel(&call->delayedAckEvent, call,
3982                                    RX_CALL_REFCOUNT_DELAY);
3983                     np = rxi_SendAck(call, np, serial, RX_ACK_DUPLICATE,
3984                                      istack);
3985                     ackNeeded = 0;
3986                     call->rprev = seq;
3987                     goto nextloop;
3988                 }
3989                 /* If we find a higher sequence packet, break out and
3990                  * insert the new packet here. */
3991                 if (seq < tp->header.seq)
3992                     break;
3993                 /* Check for missing packet */
3994                 if (tp->header.seq != prev + 1) {
3995                     missing = 1;
3996                 }
3997
3998                 prev = tp->header.seq;
3999             }
4000
4001             /* Keep track of whether we have received the last packet. */
4002             if (flags & RX_LAST_PACKET) {
4003                 call->flags |= RX_CALL_HAVE_LAST;
4004             }
4005
4006             /* It's within the window: add it to the the receive queue.
4007              * tp is left by the previous loop either pointing at the
4008              * packet before which to insert the new packet, or at the
4009              * queue head if the queue is empty or the packet should be
4010              * appended. */
4011 #ifdef RX_TRACK_PACKETS
4012             np->flags |= RX_PKTFLAG_RQ;
4013 #endif
4014 #ifdef RXDEBUG_PACKET
4015             call->rqc++;
4016 #endif /* RXDEBUG_PACKET */
4017             queue_InsertBefore(tp, np);
4018             call->nSoftAcks++;
4019             np = NULL;
4020
4021             /* Check whether we have all of the packets for this call */
4022             if ((call->flags & RX_CALL_HAVE_LAST)
4023                 && !(call->flags & RX_CALL_RECEIVE_DONE)) {
4024                 afs_uint32 tseq;        /* temporary sequence number */
4025
4026                 for (tseq =
4027                      call->rnext, queue_Scan(&call->rq, tp, nxp, rx_packet)) {
4028                     if (tseq != tp->header.seq)
4029                         break;
4030                     if (tp->header.flags & RX_LAST_PACKET) {
4031                         call->flags |= RX_CALL_RECEIVE_DONE;
4032                         break;
4033                     }
4034                     tseq++;
4035                 }
4036             }
4037
4038             /* We need to send an ack of the packet is out of sequence,
4039              * or if an ack was requested by the peer. */
4040             if (seq != prev + 1 || missing) {
4041                 ackNeeded = RX_ACK_OUT_OF_SEQUENCE;
4042             } else if (flags & RX_REQUEST_ACK) {
4043                 ackNeeded = RX_ACK_REQUESTED;
4044             }
4045
4046             /* Acknowledge the last packet for each call */
4047             if (flags & RX_LAST_PACKET) {
4048                 haveLast = 1;
4049             }
4050
4051             call->rprev = seq;
4052         }
4053       nextloop:;
4054     }
4055
4056     if (newPackets) {
4057         /*
4058          * If the receiver is waiting for an iovec, fill the iovec
4059          * using the data from the receive queue */
4060         if (call->flags & RX_CALL_IOVEC_WAIT) {
4061             didHardAck = rxi_FillReadVec(call, serial);
4062             /* the call may have been aborted */
4063             if (call->error) {
4064                 return NULL;
4065             }
4066             if (didHardAck) {
4067                 ackNeeded = 0;
4068             }
4069         }
4070
4071         /* Wakeup the reader if any */
4072         if ((call->flags & RX_CALL_READER_WAIT)
4073             && (!(call->flags & RX_CALL_IOVEC_WAIT) || !(call->iovNBytes)
4074                 || (call->iovNext >= call->iovMax)
4075                 || (call->flags & RX_CALL_RECEIVE_DONE))) {
4076             call->flags &= ~RX_CALL_READER_WAIT;
4077 #ifdef  RX_ENABLE_LOCKS
4078             CV_BROADCAST(&call->cv_rq);
4079 #else
4080             osi_rxWakeup(&call->rq);
4081 #endif
4082         }
4083     }
4084
4085     /*
4086      * Send an ack when requested by the peer, or once every
4087      * rxi_SoftAckRate packets until the last packet has been
4088      * received. Always send a soft ack for the last packet in
4089      * the server's reply. */
4090     if (ackNeeded) {
4091         rxevent_Cancel(&call->delayedAckEvent, call, RX_CALL_REFCOUNT_DELAY);
4092         np = rxi_SendAck(call, np, serial, ackNeeded, istack);
4093     } else if (call->nSoftAcks > (u_short) rxi_SoftAckRate) {
4094         rxevent_Cancel(&call->delayedAckEvent, call, RX_CALL_REFCOUNT_DELAY);
4095         np = rxi_SendAck(call, np, serial, RX_ACK_IDLE, istack);
4096     } else if (call->nSoftAcks) {
4097         if (haveLast && !(flags & RX_CLIENT_INITIATED))
4098             rxi_PostDelayedAckEvent(call, &rx_lastAckDelay);
4099         else
4100             rxi_PostDelayedAckEvent(call, &rx_softAckDelay);
4101     } else if (call->flags & RX_CALL_RECEIVE_DONE) {
4102         rxevent_Cancel(&call->delayedAckEvent, call, RX_CALL_REFCOUNT_DELAY);
4103     }
4104
4105     return np;
4106 }
4107
4108 static void
4109 rxi_UpdatePeerReach(struct rx_connection *conn, struct rx_call *acall)
4110 {
4111     struct rx_peer *peer = conn->peer;
4112
4113     MUTEX_ENTER(&peer->peer_lock);
4114     peer->lastReachTime = clock_Sec();
4115     MUTEX_EXIT(&peer->peer_lock);
4116
4117     MUTEX_ENTER(&conn->conn_data_lock);
4118     if (conn->flags & RX_CONN_ATTACHWAIT) {
4119         int i;
4120
4121         rxi_ConnClearAttachWait(conn);
4122         MUTEX_EXIT(&conn->conn_data_lock);
4123
4124         for (i = 0; i < RX_MAXCALLS; i++) {
4125             struct rx_call *call = conn->call[i];
4126             if (call) {
4127                 if (call != acall)
4128                     MUTEX_ENTER(&call->lock);
4129                 /* tnop can be null if newcallp is null */
4130                 TryAttach(call, (osi_socket) - 1, NULL, NULL, 1);
4131                 if (call != acall)
4132                     MUTEX_EXIT(&call->lock);
4133             }
4134         }
4135     } else
4136         MUTEX_EXIT(&conn->conn_data_lock);
4137 }
4138
4139 #if defined(RXDEBUG) && defined(AFS_NT40_ENV)
4140 static const char *
4141 rx_ack_reason(int reason)
4142 {
4143     switch (reason) {
4144     case RX_ACK_REQUESTED:
4145         return "requested";
4146     case RX_ACK_DUPLICATE:
4147         return "duplicate";
4148     case RX_ACK_OUT_OF_SEQUENCE:
4149         return "sequence";
4150     case RX_ACK_EXCEEDS_WINDOW:
4151         return "window";
4152     case RX_ACK_NOSPACE:
4153         return "nospace";
4154     case RX_ACK_PING:
4155         return "ping";
4156     case RX_ACK_PING_RESPONSE:
4157         return "response";
4158     case RX_ACK_DELAY:
4159         return "delay";
4160     case RX_ACK_IDLE:
4161         return "idle";
4162     default:
4163         return "unknown!!";
4164     }
4165 }
4166 #endif
4167
4168
4169 /* The real smarts of the whole thing.  */
4170 struct rx_packet *
4171 rxi_ReceiveAckPacket(struct rx_call *call, struct rx_packet *np,
4172                      int istack)
4173 {
4174     struct rx_ackPacket *ap;
4175     int nAcks;
4176     struct rx_packet *tp;
4177     struct rx_packet *nxp;      /* Next packet pointer for queue_Scan */
4178     struct rx_connection *conn = call->conn;
4179     struct rx_peer *peer = conn->peer;
4180     struct clock now;           /* Current time, for RTT calculations */
4181     afs_uint32 first;
4182     afs_uint32 prev;
4183     afs_uint32 serial;
4184     /* because there are CM's that are bogus, sending weird values for this. */
4185     afs_uint32 skew = 0;
4186     int nbytes;
4187     int missing;
4188     int acked;
4189     int nNacked = 0;
4190     int newAckCount = 0;
4191     int maxDgramPackets = 0;    /* Set if peer supports AFS 3.5 jumbo datagrams */
4192     int pktsize = 0;            /* Set if we need to update the peer mtu */
4193     int conn_data_locked = 0;
4194
4195     if (rx_stats_active)
4196         rx_atomic_inc(&rx_stats.ackPacketsRead);
4197     ap = (struct rx_ackPacket *)rx_DataOf(np);
4198     nbytes = rx_Contiguous(np) - (int)((ap->acks) - (u_char *) ap);
4199     if (nbytes < 0)
4200         return np;              /* truncated ack packet */
4201
4202     /* depends on ack packet struct */
4203     nAcks = MIN((unsigned)nbytes, (unsigned)ap->nAcks);
4204     first = ntohl(ap->firstPacket);
4205     prev = ntohl(ap->previousPacket);
4206     serial = ntohl(ap->serial);
4207     /* temporarily disabled -- needs to degrade over time
4208      * skew = ntohs(ap->maxSkew); */
4209
4210     /* Ignore ack packets received out of order */
4211     if (first < call->tfirst ||
4212         (first == call->tfirst && prev < call->tprev)) {
4213         return np;
4214     }
4215
4216     call->tprev = prev;
4217
4218     if (np->header.flags & RX_SLOW_START_OK) {
4219         call->flags |= RX_CALL_SLOW_START_OK;
4220     }
4221
4222     if (ap->reason == RX_ACK_PING_RESPONSE)
4223         rxi_UpdatePeerReach(conn, call);
4224
4225     if (conn->lastPacketSizeSeq) {
4226         MUTEX_ENTER(&conn->conn_data_lock);
4227         conn_data_locked = 1;
4228         if ((first > conn->lastPacketSizeSeq) && (conn->lastPacketSize)) {
4229             pktsize = conn->lastPacketSize;
4230             conn->lastPacketSize = conn->lastPacketSizeSeq = 0;
4231         }
4232     }
4233     if ((ap->reason == RX_ACK_PING_RESPONSE) && (conn->lastPingSizeSer)) {
4234         if (!conn_data_locked) {
4235             MUTEX_ENTER(&conn->conn_data_lock);
4236             conn_data_locked = 1;
4237         }
4238         if ((conn->lastPingSizeSer == serial) && (conn->lastPingSize)) {
4239             /* process mtu ping ack */
4240             pktsize = conn->lastPingSize;
4241             conn->lastPingSizeSer = conn->lastPingSize = 0;
4242         }
4243     }
4244
4245     if (conn_data_locked) {
4246         MUTEX_EXIT(&conn->conn_data_lock);
4247         conn_data_locked = 0;
4248     }
4249 #ifdef RXDEBUG
4250 #ifdef AFS_NT40_ENV
4251     if (rxdebug_active) {
4252         char msg[512];
4253         size_t len;
4254
4255         len = _snprintf(msg, sizeof(msg),
4256                         "tid[%d] RACK: reason %s serial %u previous %u seq %u skew %d first %u acks %u space %u ",
4257                          GetCurrentThreadId(), rx_ack_reason(ap->reason),
4258                          ntohl(ap->serial), ntohl(ap->previousPacket),
4259                          (unsigned int)np->header.seq, (unsigned int)skew,
4260                          ntohl(ap->firstPacket), ap->nAcks, ntohs(ap->bufferSpace) );
4261         if (nAcks) {
4262             int offset;
4263
4264             for (offset = 0; offset < nAcks && len < sizeof(msg); offset++)
4265                 msg[len++] = (ap->acks[offset] == RX_ACK_TYPE_NACK ? '-' : '*');
4266         }
4267         msg[len++]='\n';
4268         msg[len] = '\0';
4269         OutputDebugString(msg);
4270     }
4271 #else /* AFS_NT40_ENV */
4272     if (rx_Log) {
4273         fprintf(rx_Log,
4274                 "RACK: reason %x previous %u seq %u serial %u skew %d first %u",
4275                 ap->reason, ntohl(ap->previousPacket),
4276                 (unsigned int)np->header.seq, (unsigned int)serial,
4277                 (unsigned int)skew, ntohl(ap->firstPacket));
4278         if (nAcks) {
4279             int offset;
4280             for (offset = 0; offset < nAcks; offset++)
4281                 putc(ap->acks[offset] == RX_ACK_TYPE_NACK ? '-' : '*',
4282                      rx_Log);
4283         }
4284         putc('\n', rx_Log);
4285     }
4286 #endif /* AFS_NT40_ENV */
4287 #endif
4288
4289     MUTEX_ENTER(&peer->peer_lock);
4290     if (pktsize) {
4291         /*
4292          * Start somewhere. Can't assume we can send what we can receive,
4293          * but we are clearly receiving.
4294          */
4295         if (!peer->maxPacketSize)
4296             peer->maxPacketSize = RX_MIN_PACKET_SIZE+RX_IPUDP_SIZE;
4297
4298         if (pktsize > peer->maxPacketSize) {
4299             peer->maxPacketSize = pktsize;
4300             if ((pktsize-RX_IPUDP_SIZE > peer->ifMTU)) {
4301                 peer->ifMTU=pktsize-RX_IPUDP_SIZE;
4302                 peer->natMTU = rxi_AdjustIfMTU(peer->ifMTU);
4303                 rxi_ScheduleGrowMTUEvent(call, 1);
4304             }
4305         }
4306     }
4307
4308     /* Update the outgoing packet skew value to the latest value of
4309      * the peer's incoming packet skew value.  The ack packet, of
4310      * course, could arrive out of order, but that won't affect things
4311      * much */
4312     peer->outPacketSkew = skew;
4313
4314
4315     clock_GetTime(&now);
4316
4317     /* The transmit queue splits into 4 sections.
4318      *
4319      * The first section is packets which have now been acknowledged
4320      * by a window size change in the ack. These have reached the
4321      * application layer, and may be discarded. These are packets
4322      * with sequence numbers < ap->firstPacket.
4323      *
4324      * The second section is packets which have sequence numbers in
4325      * the range ap->firstPacket to ap->firstPacket + ap->nAcks. The
4326      * contents of the packet's ack array determines whether these
4327      * packets are acknowledged or not.
4328      *
4329      * The third section is packets which fall above the range
4330      * addressed in the ack packet. These have not yet been received
4331      * by the peer.
4332      *
4333      * The four section is packets which have not yet been transmitted.
4334      * These packets will have a header.serial of 0.
4335      */
4336
4337     /* First section - implicitly acknowledged packets that can be
4338      * disposed of
4339      */
4340
4341     tp = queue_First(&call->tq, rx_packet);
4342     while(!queue_IsEnd(&call->tq, tp) && tp->header.seq < first) {
4343         struct rx_packet *next;
4344
4345         next = queue_Next(tp, rx_packet);
4346         call->tfirst = tp->header.seq + 1;
4347
4348         if (!(tp->flags & RX_PKTFLAG_ACKED)) {
4349             newAckCount++;
4350             rxi_ComputeRoundTripTime(tp, ap, call, peer, &now);
4351         }
4352
4353 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
4354         /* XXX Hack. Because we have to release the global rx lock when sending
4355          * packets (osi_NetSend) we drop all acks while we're traversing the tq
4356          * in rxi_Start sending packets out because packets may move to the
4357          * freePacketQueue as result of being here! So we drop these packets until
4358          * we're safely out of the traversing. Really ugly!
4359          * To make it even uglier, if we're using fine grain locking, we can
4360          * set the ack bits in the packets and have rxi_Start remove the packets
4361          * when it's done transmitting.
4362          */
4363         if (call->flags & RX_CALL_TQ_BUSY) {
4364 #ifdef RX_ENABLE_LOCKS
4365             tp->flags |= RX_PKTFLAG_ACKED;
4366             call->flags |= RX_CALL_TQ_SOME_ACKED;
4367 #else /* RX_ENABLE_LOCKS */
4368             break;
4369 #endif /* RX_ENABLE_LOCKS */
4370         } else
4371 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
4372         {
4373             queue_Remove(tp);
4374 #ifdef RX_TRACK_PACKETS
4375             tp->flags &= ~RX_PKTFLAG_TQ;
4376 #endif
4377 #ifdef RXDEBUG_PACKET
4378             call->tqc--;
4379 #endif /* RXDEBUG_PACKET */
4380             rxi_FreePacket(tp); /* rxi_FreePacket mustn't wake up anyone, preemptively. */
4381         }
4382         tp = next;
4383     }
4384
4385     /* N.B. we don't turn off any timers here.  They'll go away by themselves, anyway */
4386
4387     /* Second section of the queue - packets for which we are receiving
4388      * soft ACKs
4389      *
4390      * Go through the explicit acks/nacks and record the results in
4391      * the waiting packets.  These are packets that can't be released
4392      * yet, even with a positive acknowledge.  This positive
4393      * acknowledge only means the packet has been received by the
4394      * peer, not that it will be retained long enough to be sent to
4395      * the peer's upper level.  In addition, reset the transmit timers
4396      * of any missing packets (those packets that must be missing
4397      * because this packet was out of sequence) */
4398
4399     call->nSoftAcked = 0;
4400     missing = 0;
4401     while (!queue_IsEnd(&call->tq, tp) && tp->header.seq < first + nAcks) {
4402         /* Set the acknowledge flag per packet based on the
4403          * information in the ack packet. An acknowlegded packet can
4404          * be downgraded when the server has discarded a packet it
4405          * soacked previously, or when an ack packet is received
4406          * out of sequence. */
4407         if (ap->acks[tp->header.seq - first] == RX_ACK_TYPE_ACK) {
4408             if (!(tp->flags & RX_PKTFLAG_ACKED)) {
4409                 newAckCount++;
4410                 tp->flags |= RX_PKTFLAG_ACKED;
4411                 rxi_ComputeRoundTripTime(tp, ap, call, peer, &now);
4412             }
4413             if (missing) {
4414                 nNacked++;
4415             } else {
4416                 call->nSoftAcked++;
4417             }
4418         } else /* RX_ACK_TYPE_NACK */ {
4419             tp->flags &= ~RX_PKTFLAG_ACKED;
4420             missing = 1;
4421         }
4422
4423         tp = queue_Next(tp, rx_packet);
4424     }
4425
4426     /* We don't need to take any action with the 3rd or 4th section in the
4427      * queue - they're not addressed by the contents of this ACK packet.
4428      */
4429
4430     /* If the window has been extended by this acknowledge packet,
4431      * then wakeup a sender waiting in alloc for window space, or try
4432      * sending packets now, if he's been sitting on packets due to
4433      * lack of window space */
4434     if (call->tnext < (call->tfirst + call->twind)) {
4435 #ifdef  RX_ENABLE_LOCKS
4436         CV_SIGNAL(&call->cv_twind);
4437 #else
4438         if (call->flags & RX_CALL_WAIT_WINDOW_ALLOC) {
4439             call->flags &= ~RX_CALL_WAIT_WINDOW_ALLOC;
4440             osi_rxWakeup(&call->twind);
4441         }
4442 #endif
4443         if (call->flags & RX_CALL_WAIT_WINDOW_SEND) {
4444             call->flags &= ~RX_CALL_WAIT_WINDOW_SEND;
4445         }
4446     }
4447
4448     /* if the ack packet has a receivelen field hanging off it,
4449      * update our state */
4450     if (np->length >= rx_AckDataSize(ap->nAcks) + 2 * sizeof(afs_int32)) {
4451         afs_uint32 tSize;
4452
4453         /* If the ack packet has a "recommended" size that is less than
4454          * what I am using now, reduce my size to match */
4455         rx_packetread(np, rx_AckDataSize(ap->nAcks) + (int)sizeof(afs_int32),
4456                       (int)sizeof(afs_int32), &tSize);
4457         tSize = (afs_uint32) ntohl(tSize);
4458         peer->natMTU = rxi_AdjustIfMTU(MIN(tSize, peer->ifMTU));
4459
4460         /* Get the maximum packet size to send to this peer */
4461         rx_packetread(np, rx_AckDataSize(ap->nAcks), (int)sizeof(afs_int32),
4462                       &tSize);
4463         tSize = (afs_uint32) ntohl(tSize);
4464         tSize = (afs_uint32) MIN(tSize, rx_MyMaxSendSize);
4465         tSize = rxi_AdjustMaxMTU(peer->natMTU, tSize);
4466
4467         /* sanity check - peer might have restarted with different params.
4468          * If peer says "send less", dammit, send less...  Peer should never
4469          * be unable to accept packets of the size that prior AFS versions would
4470          * send without asking.  */
4471         if (peer->maxMTU != tSize) {
4472             if (peer->maxMTU > tSize) /* possible cong., maxMTU decreased */
4473                 peer->congestSeq++;
4474             peer->maxMTU = tSize;
4475             peer->MTU = MIN(tSize, peer->MTU);
4476             call->MTU = MIN(call->MTU, tSize);
4477         }
4478
4479         if (np->length == rx_AckDataSize(ap->nAcks) + 3 * sizeof(afs_int32)) {
4480             /* AFS 3.4a */
4481             rx_packetread(np,
4482                           rx_AckDataSize(ap->nAcks) + 2 * (int)sizeof(afs_int32),
4483                           (int)sizeof(afs_int32), &tSize);
4484             tSize = (afs_uint32) ntohl(tSize);  /* peer's receive window, if it's */
4485             if (tSize < call->twind) {  /* smaller than our send */
4486                 call->twind = tSize;    /* window, we must send less... */
4487                 call->ssthresh = MIN(call->twind, call->ssthresh);
4488                 call->conn->twind[call->channel] = call->twind;
4489             }
4490
4491             /* Only send jumbograms to 3.4a fileservers. 3.3a RX gets the
4492              * network MTU confused with the loopback MTU. Calculate the
4493              * maximum MTU here for use in the slow start code below.
4494              */
4495             /* Did peer restart with older RX version? */
4496             if (peer->maxDgramPackets > 1) {
4497                 peer->maxDgramPackets = 1;
4498             }
4499         } else if (np->length >=
4500                    rx_AckDataSize(ap->nAcks) + 4 * sizeof(afs_int32)) {
4501             /* AFS 3.5 */
4502             rx_packetread(np,
4503                           rx_AckDataSize(ap->nAcks) + 2 * (int)sizeof(afs_int32),
4504                           sizeof(afs_int32), &tSize);
4505             tSize = (afs_uint32) ntohl(tSize);
4506             /*
4507              * As of AFS 3.5 we set the send window to match the receive window.
4508              */
4509             if (tSize < call->twind) {
4510                 call->twind = tSize;
4511                 call->conn->twind[call->channel] = call->twind;
4512                 call->ssthresh = MIN(call->twind, call->ssthresh);
4513             } else if (tSize > call->twind) {
4514                 call->twind = tSize;
4515                 call->conn->twind[call->channel] = call->twind;
4516             }
4517
4518             /*
4519              * As of AFS 3.5, a jumbogram is more than one fixed size
4520              * packet transmitted in a single UDP datagram. If the remote
4521              * MTU is smaller than our local MTU then never send a datagram
4522              * larger than the natural MTU.
4523              */
4524             rx_packetread(np,
4525                           rx_AckDataSize(ap->nAcks) + 3 * (int)sizeof(afs_int32),
4526                           (int)sizeof(afs_int32), &tSize);
4527             maxDgramPackets = (afs_uint32) ntohl(tSize);
4528             maxDgramPackets = MIN(maxDgramPackets, rxi_nDgramPackets);
4529             maxDgramPackets =
4530                 MIN(maxDgramPackets, (int)(peer->ifDgramPackets));
4531             if (maxDgramPackets > 1) {
4532                 peer->maxDgramPackets = maxDgramPackets;
4533                 call->MTU = RX_JUMBOBUFFERSIZE + RX_HEADER_SIZE;
4534             } else {
4535                 peer->maxDgramPackets = 1;
4536                 call->MTU = peer->natMTU;
4537             }
4538         } else if (peer->maxDgramPackets > 1) {
4539             /* Restarted with lower version of RX */
4540             peer->maxDgramPackets = 1;
4541         }
4542     } else if (peer->maxDgramPackets > 1
4543                || peer->maxMTU != OLD_MAX_PACKET_SIZE) {
4544         /* Restarted with lower version of RX */
4545         peer->maxMTU = OLD_MAX_PACKET_SIZE;
4546         peer->natMTU = OLD_MAX_PACKET_SIZE;
4547         peer->MTU = OLD_MAX_PACKET_SIZE;
4548         peer->maxDgramPackets = 1;
4549         peer->nDgramPackets = 1;
4550         peer->congestSeq++;
4551         call->MTU = OLD_MAX_PACKET_SIZE;
4552     }
4553
4554     if (nNacked) {
4555         /*
4556          * Calculate how many datagrams were successfully received after
4557          * the first missing packet and adjust the negative ack counter
4558          * accordingly.
4559          */
4560         call->nAcks = 0;
4561         call->nNacks++;
4562         nNacked = (nNacked + call->nDgramPackets - 1) / call->nDgramPackets;
4563         if (call->nNacks < nNacked) {
4564             call->nNacks = nNacked;
4565         }
4566     } else {
4567         call->nAcks += newAckCount;
4568         call->nNacks = 0;
4569     }
4570
4571     /* If the packet contained new acknowledgements, rather than just
4572      * being a duplicate of one we have previously seen, then we can restart
4573      * the RTT timer
4574      */
4575     if (newAckCount > 0)
4576         rxi_rto_packet_acked(call, istack);
4577
4578     if (call->flags & RX_CALL_FAST_RECOVER) {
4579         if (newAckCount == 0) {
4580             call->cwind = MIN((int)(call->cwind + 1), rx_maxSendWindow);
4581         } else {
4582             call->flags &= ~RX_CALL_FAST_RECOVER;
4583             call->cwind = call->nextCwind;
4584             call->nextCwind = 0;
4585             call->nAcks = 0;
4586         }
4587         call->nCwindAcks = 0;
4588     } else if (nNacked && call->nNacks >= (u_short) rx_nackThreshold) {
4589         /* Three negative acks in a row trigger congestion recovery */
4590         call->flags |= RX_CALL_FAST_RECOVER;
4591         call->ssthresh = MAX(4, MIN((int)call->cwind, (int)call->twind)) >> 1;
4592         call->cwind =
4593             MIN((int)(call->ssthresh + rx_nackThreshold), rx_maxSendWindow);
4594         call->nDgramPackets = MAX(2, (int)call->nDgramPackets) >> 1;
4595         call->nextCwind = call->ssthresh;
4596         call->nAcks = 0;
4597         call->nNacks = 0;
4598         peer->MTU = call->MTU;
4599         peer->cwind = call->nextCwind;
4600         peer->nDgramPackets = call->nDgramPackets;
4601         peer->congestSeq++;
4602         call->congestSeq = peer->congestSeq;
4603
4604         /* Reset the resend times on the packets that were nacked
4605          * so we will retransmit as soon as the window permits
4606          */
4607
4608         for (acked = 0, queue_ScanBackwards(&call->tq, tp, nxp, rx_packet)) {
4609             if (acked) {
4610                 if (!(tp->flags & RX_PKTFLAG_ACKED)) {
4611                     tp->flags &= ~RX_PKTFLAG_SENT;
4612                 }
4613             } else if (tp->flags & RX_PKTFLAG_ACKED) {
4614                 acked = 1;
4615             }
4616         }
4617     } else {
4618         /* If cwind is smaller than ssthresh, then increase
4619          * the window one packet for each ack we receive (exponential
4620          * growth).
4621          * If cwind is greater than or equal to ssthresh then increase
4622          * the congestion window by one packet for each cwind acks we
4623          * receive (linear growth).  */
4624         if (call->cwind < call->ssthresh) {
4625             call->cwind =
4626                 MIN((int)call->ssthresh, (int)(call->cwind + newAckCount));
4627             call->nCwindAcks = 0;
4628         } else {
4629             call->nCwindAcks += newAckCount;
4630             if (call->nCwindAcks >= call->cwind) {
4631                 call->nCwindAcks = 0;
4632                 call->cwind = MIN((int)(call->cwind + 1), rx_maxSendWindow);
4633             }
4634         }
4635         /*
4636          * If we have received several acknowledgements in a row then
4637          * it is time to increase the size of our datagrams
4638          */
4639         if ((int)call->nAcks > rx_nDgramThreshold) {
4640             if (peer->maxDgramPackets > 1) {
4641                 if (call->nDgramPackets < peer->maxDgramPackets) {
4642                     call->nDgramPackets++;
4643                 }
4644                 call->MTU = RX_HEADER_SIZE + RX_JUMBOBUFFERSIZE;
4645             } else if (call->MTU < peer->maxMTU) {
4646                 /* don't upgrade if we can't handle it */
4647                 if ((call->nDgramPackets == 1) && (call->MTU >= peer->ifMTU))
4648                     call->MTU = peer->ifMTU;
4649                 else {
4650                     call->MTU += peer->natMTU;
4651                     call->MTU = MIN(call->MTU, peer->maxMTU);
4652                 }
4653             }
4654             call->nAcks = 0;
4655         }
4656     }
4657
4658     MUTEX_EXIT(&peer->peer_lock);       /* rxi_Start will lock peer. */
4659
4660     /* Servers need to hold the call until all response packets have
4661      * been acknowledged. Soft acks are good enough since clients
4662      * are not allowed to clear their receive queues. */
4663     if (call->state == RX_STATE_HOLD
4664         && call->tfirst + call->nSoftAcked >= call->tnext) {
4665         call->state = RX_STATE_DALLY;
4666         rxi_ClearTransmitQueue(call, 0);
4667         rxevent_Cancel(&call->keepAliveEvent, call, RX_CALL_REFCOUNT_ALIVE);
4668     } else if (!queue_IsEmpty(&call->tq)) {
4669         rxi_Start(call, istack);
4670     }
4671     return np;
4672 }
4673
4674 /* Received a response to a challenge packet */
4675 struct rx_packet *
4676 rxi_ReceiveResponsePacket(struct rx_connection *conn,
4677                           struct rx_packet *np, int istack)
4678 {
4679     int error;
4680
4681     /* Ignore the packet if we're the client */
4682     if (conn->type == RX_CLIENT_CONNECTION)
4683         return np;
4684
4685     /* If already authenticated, ignore the packet (it's probably a retry) */
4686     if (RXS_CheckAuthentication(conn->securityObject, conn) == 0)
4687         return np;
4688
4689     /* Otherwise, have the security object evaluate the response packet */
4690     error = RXS_CheckResponse(conn->securityObject, conn, np);
4691     if (error) {
4692         /* If the response is invalid, reset the connection, sending
4693          * an abort to the peer */
4694 #ifndef KERNEL
4695         rxi_Delay(1);
4696 #endif
4697         rxi_ConnectionError(conn, error);
4698         MUTEX_ENTER(&conn->conn_data_lock);
4699         np = rxi_SendConnectionAbort(conn, np, istack, 0);
4700         MUTEX_EXIT(&conn->conn_data_lock);
4701         return np;
4702     } else {
4703         /* If the response is valid, any calls waiting to attach
4704          * servers can now do so */
4705         int i;
4706
4707         for (i = 0; i < RX_MAXCALLS; i++) {
4708             struct rx_call *call = conn->call[i];
4709             if (call) {
4710                 MUTEX_ENTER(&call->lock);
4711                 if (call->state == RX_STATE_PRECALL)
4712                     rxi_AttachServerProc(call, (osi_socket) - 1, NULL, NULL);
4713                 /* tnop can be null if newcallp is null */
4714                 MUTEX_EXIT(&call->lock);
4715             }
4716         }
4717
4718         /* Update the peer reachability information, just in case
4719          * some calls went into attach-wait while we were waiting
4720          * for authentication..
4721          */
4722         rxi_UpdatePeerReach(conn, NULL);
4723     }
4724     return np;
4725 }
4726
4727 /* A client has received an authentication challenge: the security
4728  * object is asked to cough up a respectable response packet to send
4729  * back to the server.  The server is responsible for retrying the
4730  * challenge if it fails to get a response. */
4731
4732 struct rx_packet *
4733 rxi_ReceiveChallengePacket(struct rx_connection *conn,
4734                            struct rx_packet *np, int istack)
4735 {
4736     int error;
4737
4738     /* Ignore the challenge if we're the server */
4739     if (conn->type == RX_SERVER_CONNECTION)
4740         return np;
4741
4742     /* Ignore the challenge if the connection is otherwise idle; someone's
4743      * trying to use us as an oracle. */
4744     if (!rxi_HasActiveCalls(conn))
4745         return np;
4746
4747     /* Send the security object the challenge packet.  It is expected to fill
4748      * in the response. */
4749     error = RXS_GetResponse(conn->securityObject, conn, np);
4750
4751     /* If the security object is unable to return a valid response, reset the
4752      * connection and send an abort to the peer.  Otherwise send the response
4753      * packet to the peer connection. */
4754     if (error) {
4755         rxi_ConnectionError(conn, error);
4756         MUTEX_ENTER(&conn->conn_data_lock);
4757         np = rxi_SendConnectionAbort(conn, np, istack, 0);
4758         MUTEX_EXIT(&conn->conn_data_lock);
4759     } else {
4760         np = rxi_SendSpecial((struct rx_call *)0, conn, np,
4761                              RX_PACKET_TYPE_RESPONSE, NULL, -1, istack);
4762     }
4763     return np;
4764 }
4765
4766
4767 /* Find an available server process to service the current request in
4768  * the given call structure.  If one isn't available, queue up this
4769  * call so it eventually gets one */
4770 void
4771 rxi_AttachServerProc(struct rx_call *call,
4772                      osi_socket socket, int *tnop,
4773                      struct rx_call **newcallp)
4774 {
4775     struct rx_serverQueueEntry *sq;
4776     struct rx_service *service = call->conn->service;
4777     int haveQuota = 0;
4778
4779     /* May already be attached */
4780     if (call->state == RX_STATE_ACTIVE)
4781         return;
4782
4783     MUTEX_ENTER(&rx_serverPool_lock);
4784
4785     haveQuota = QuotaOK(service);
4786     if ((!haveQuota) || queue_IsEmpty(&rx_idleServerQueue)) {
4787         /* If there are no processes available to service this call,
4788          * put the call on the incoming call queue (unless it's
4789          * already on the queue).
4790          */
4791 #ifdef RX_ENABLE_LOCKS
4792         if (haveQuota)
4793             ReturnToServerPool(service);
4794 #endif /* RX_ENABLE_LOCKS */
4795
4796         if (!(call->flags & RX_CALL_WAIT_PROC)) {
4797             call->flags |= RX_CALL_WAIT_PROC;
4798             rx_atomic_inc(&rx_nWaiting);
4799             rx_atomic_inc(&rx_nWaited);
4800             rxi_calltrace(RX_CALL_ARRIVAL, call);
4801             SET_CALL_QUEUE_LOCK(call, &rx_serverPool_lock);
4802             queue_Append(&rx_incomingCallQueue, call);
4803         }
4804     } else {
4805         sq = queue_Last(&rx_idleServerQueue, rx_serverQueueEntry);
4806
4807         /* If hot threads are enabled, and both newcallp and sq->socketp
4808          * are non-null, then this thread will process the call, and the
4809          * idle server thread will start listening on this threads socket.
4810          */
4811         queue_Remove(sq);
4812         if (rx_enable_hot_thread && newcallp && sq->socketp) {
4813             *newcallp = call;
4814             *tnop = sq->tno;
4815             *sq->socketp = socket;
4816             clock_GetTime(&call->startTime);
4817             MUTEX_ENTER(&rx_refcnt_mutex);
4818             CALL_HOLD(call, RX_CALL_REFCOUNT_BEGIN);
4819             MUTEX_EXIT(&rx_refcnt_mutex);
4820         } else {
4821             sq->newcall = call;
4822         }
4823         if (call->flags & RX_CALL_WAIT_PROC) {
4824             /* Conservative:  I don't think this should happen */
4825             call->flags &= ~RX_CALL_WAIT_PROC;
4826             if (queue_IsOnQueue(call)) {
4827                 queue_Remove(call);
4828
4829                 rx_atomic_dec(&rx_nWaiting);
4830             }
4831         }
4832         call->state = RX_STATE_ACTIVE;
4833         call->mode = RX_MODE_RECEIVING;
4834 #ifdef RX_KERNEL_TRACE
4835         {
4836             int glockOwner = ISAFS_GLOCK();
4837             if (!glockOwner)
4838                 AFS_GLOCK();
4839             afs_Trace3(afs_iclSetp, CM_TRACE_WASHERE, ICL_TYPE_STRING,
4840                        __FILE__, ICL_TYPE_INT32, __LINE__, ICL_TYPE_POINTER,
4841                        call);
4842             if (!glockOwner)
4843                 AFS_GUNLOCK();
4844         }
4845 #endif
4846         if (call->flags & RX_CALL_CLEARED) {
4847             /* send an ack now to start the packet flow up again */
4848             call->flags &= ~RX_CALL_CLEARED;
4849             rxi_SendAck(call, 0, 0, RX_ACK_DELAY, 0);
4850         }
4851 #ifdef  RX_ENABLE_LOCKS
4852         CV_SIGNAL(&sq->cv);
4853 #else
4854         service->nRequestsRunning++;
4855         MUTEX_ENTER(&rx_quota_mutex);
4856         if (service->nRequestsRunning <= service->minProcs)
4857             rxi_minDeficit--;
4858         rxi_availProcs--;
4859         MUTEX_EXIT(&rx_quota_mutex);
4860         osi_rxWakeup(sq);
4861 #endif
4862     }
4863     MUTEX_EXIT(&rx_serverPool_lock);
4864 }
4865
4866 /* Delay the sending of an acknowledge event for a short while, while
4867  * a new call is being prepared (in the case of a client) or a reply
4868  * is being prepared (in the case of a server).  Rather than sending
4869  * an ack packet, an ACKALL packet is sent. */
4870 void
4871 rxi_AckAll(struct rxevent *event, struct rx_call *call, char *dummy)
4872 {
4873 #ifdef RX_ENABLE_LOCKS
4874     if (event) {
4875         MUTEX_ENTER(&call->lock);
4876         rxevent_Put(call->delayedAckEvent);
4877         call->delayedAckEvent = NULL;
4878         MUTEX_ENTER(&rx_refcnt_mutex);
4879         CALL_RELE(call, RX_CALL_REFCOUNT_ACKALL);
4880         MUTEX_EXIT(&rx_refcnt_mutex);
4881     }
4882     rxi_SendSpecial(call, call->conn, (struct rx_packet *)0,
4883                     RX_PACKET_TYPE_ACKALL, NULL, 0, 0);
4884     call->flags |= RX_CALL_ACKALL_SENT;
4885     if (event)
4886         MUTEX_EXIT(&call->lock);
4887 #else /* RX_ENABLE_LOCKS */
4888     if (event) {
4889         rxevent_Put(call->delayedAckEvent);
4890         call->delayedAckEvent = NULL;
4891     }
4892     rxi_SendSpecial(call, call->conn, (struct rx_packet *)0,
4893                     RX_PACKET_TYPE_ACKALL, NULL, 0, 0);
4894     call->flags |= RX_CALL_ACKALL_SENT;
4895 #endif /* RX_ENABLE_LOCKS */
4896 }
4897
4898 void
4899 rxi_SendDelayedAck(struct rxevent *event, void *arg1, void *unused1,
4900                    int unused2)
4901 {
4902     struct rx_call *call = arg1;
4903 #ifdef RX_ENABLE_LOCKS
4904     if (event) {
4905         MUTEX_ENTER(&call->lock);
4906         if (event == call->delayedAckEvent) {
4907             rxevent_Put(call->delayedAckEvent);
4908             call->delayedAckEvent = NULL;
4909         }
4910         MUTEX_ENTER(&rx_refcnt_mutex);
4911         CALL_RELE(call, RX_CALL_REFCOUNT_DELAY);
4912         MUTEX_EXIT(&rx_refcnt_mutex);
4913     }
4914     (void)rxi_SendAck(call, 0, 0, RX_ACK_DELAY, 0);
4915     if (event)
4916         MUTEX_EXIT(&call->lock);
4917 #else /* RX_ENABLE_LOCKS */
4918     if (event) {
4919         rxevent_Put(call->delayedAckEvent);
4920         call->delayedAckEvent = NULL;
4921     }
4922     (void)rxi_SendAck(call, 0, 0, RX_ACK_DELAY, 0);
4923 #endif /* RX_ENABLE_LOCKS */
4924 }
4925
4926
4927 #ifdef RX_ENABLE_LOCKS
4928 /* Set ack in all packets in transmit queue. rxi_Start will deal with
4929  * clearing them out.
4930  */
4931 static void
4932 rxi_SetAcksInTransmitQueue(struct rx_call *call)
4933 {
4934     struct rx_packet *p, *tp;
4935     int someAcked = 0;
4936
4937     for (queue_Scan(&call->tq, p, tp, rx_packet)) {
4938         p->flags |= RX_PKTFLAG_ACKED;
4939         someAcked = 1;
4940     }
4941     if (someAcked) {
4942         call->flags |= RX_CALL_TQ_CLEARME;
4943         call->flags |= RX_CALL_TQ_SOME_ACKED;
4944     }
4945
4946     rxi_rto_cancel(call);
4947
4948     call->tfirst = call->tnext;
4949     call->nSoftAcked = 0;
4950
4951     if (call->flags & RX_CALL_FAST_RECOVER) {
4952         call->flags &= ~RX_CALL_FAST_RECOVER;
4953         call->cwind = call->nextCwind;
4954         call->nextCwind = 0;
4955     }
4956
4957     CV_SIGNAL(&call->cv_twind);
4958 }
4959 #endif /* RX_ENABLE_LOCKS */
4960
4961 /* Clear out the transmit queue for the current call (all packets have
4962  * been received by peer) */
4963 void
4964 rxi_ClearTransmitQueue(struct rx_call *call, int force)
4965 {
4966 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
4967     struct rx_packet *p, *tp;
4968
4969     if (!force && (call->flags & RX_CALL_TQ_BUSY)) {
4970         int someAcked = 0;
4971         for (queue_Scan(&call->tq, p, tp, rx_packet)) {
4972             p->flags |= RX_PKTFLAG_ACKED;
4973             someAcked = 1;
4974         }
4975         if (someAcked) {
4976             call->flags |= RX_CALL_TQ_CLEARME;
4977             call->flags |= RX_CALL_TQ_SOME_ACKED;
4978         }
4979     } else {
4980 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
4981 #ifdef RXDEBUG_PACKET
4982         call->tqc -=
4983 #endif /* RXDEBUG_PACKET */
4984             rxi_FreePackets(0, &call->tq);
4985         rxi_WakeUpTransmitQueue(call);
4986 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
4987         call->flags &= ~RX_CALL_TQ_CLEARME;
4988     }
4989 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
4990
4991     rxi_rto_cancel(call);
4992     call->tfirst = call->tnext; /* implicitly acknowledge all data already sent */
4993     call->nSoftAcked = 0;
4994
4995     if (call->flags & RX_CALL_FAST_RECOVER) {
4996         call->flags &= ~RX_CALL_FAST_RECOVER;
4997         call->cwind = call->nextCwind;
4998     }
4999 #ifdef  RX_ENABLE_LOCKS
5000     CV_SIGNAL(&call->cv_twind);
5001 #else
5002     osi_rxWakeup(&call->twind);
5003 #endif
5004 }
5005
5006 void
5007 rxi_ClearReceiveQueue(struct rx_call *call)
5008 {
5009     if (queue_IsNotEmpty(&call->rq)) {
5010         u_short count;
5011
5012         count = rxi_FreePackets(0, &call->rq);
5013         rx_packetReclaims += count;
5014 #ifdef RXDEBUG_PACKET
5015         call->rqc -= count;
5016         if ( call->rqc != 0 )
5017             dpf(("rxi_ClearReceiveQueue call %"AFS_PTR_FMT" rqc %u != 0\n", call, call->rqc));
5018 #endif
5019         call->flags &= ~(RX_CALL_RECEIVE_DONE | RX_CALL_HAVE_LAST);
5020     }
5021     if (call->state == RX_STATE_PRECALL) {
5022         call->flags |= RX_CALL_CLEARED;
5023     }
5024 }
5025
5026 /* Send an abort packet for the specified call */
5027 struct rx_packet *
5028 rxi_SendCallAbort(struct rx_call *call, struct rx_packet *packet,
5029                   int istack, int force)
5030 {
5031     afs_int32 error;
5032     struct clock when, now;
5033
5034     if (!call->error)
5035         return packet;
5036
5037     /* Clients should never delay abort messages */
5038     if (rx_IsClientConn(call->conn))
5039         force = 1;
5040
5041     if (call->abortCode != call->error) {
5042         call->abortCode = call->error;
5043         call->abortCount = 0;
5044     }
5045
5046     if (force || rxi_callAbortThreshhold == 0
5047         || call->abortCount < rxi_callAbortThreshhold) {
5048         if (call->delayedAbortEvent) {
5049             rxevent_Cancel(&call->delayedAbortEvent, call,
5050                            RX_CALL_REFCOUNT_ABORT);
5051         }
5052         error = htonl(call->error);
5053         call->abortCount++;
5054         packet =
5055             rxi_SendSpecial(call, call->conn, packet, RX_PACKET_TYPE_ABORT,
5056                             (char *)&error, sizeof(error), istack);
5057     } else if (!call->delayedAbortEvent) {
5058         clock_GetTime(&now);
5059         when = now;
5060         clock_Addmsec(&when, rxi_callAbortDelay);
5061         MUTEX_ENTER(&rx_refcnt_mutex);
5062         CALL_HOLD(call, RX_CALL_REFCOUNT_ABORT);
5063         MUTEX_EXIT(&rx_refcnt_mutex);
5064         call->delayedAbortEvent =
5065             rxevent_Post(&when, &now, rxi_SendDelayedCallAbort, call, 0, 0);
5066     }
5067     return packet;
5068 }
5069
5070 /* Send an abort packet for the specified connection.  Packet is an
5071  * optional pointer to a packet that can be used to send the abort.
5072  * Once the number of abort messages reaches the threshhold, an
5073  * event is scheduled to send the abort. Setting the force flag
5074  * overrides sending delayed abort messages.
5075  *
5076  * NOTE: Called with conn_data_lock held. conn_data_lock is dropped
5077  *       to send the abort packet.
5078  */
5079 struct rx_packet *
5080 rxi_SendConnectionAbort(struct rx_connection *conn,
5081                         struct rx_packet *packet, int istack, int force)
5082 {
5083     afs_int32 error;
5084     struct clock when, now;
5085
5086     if (!conn->error)
5087         return packet;
5088
5089     /* Clients should never delay abort messages */
5090     if (rx_IsClientConn(conn))
5091         force = 1;
5092
5093     if (force || rxi_connAbortThreshhold == 0
5094         || conn->abortCount < rxi_connAbortThreshhold) {
5095
5096         rxevent_Cancel(&conn->delayedAbortEvent, NULL, 0);
5097         error = htonl(conn->error);
5098         conn->abortCount++;
5099         MUTEX_EXIT(&conn->conn_data_lock);
5100         packet =
5101             rxi_SendSpecial((struct rx_call *)0, conn, packet,
5102                             RX_PACKET_TYPE_ABORT, (char *)&error,
5103                             sizeof(error), istack);
5104         MUTEX_ENTER(&conn->conn_data_lock);
5105     } else if (!conn->delayedAbortEvent) {
5106         clock_GetTime(&now);
5107         when = now;
5108         clock_Addmsec(&when, rxi_connAbortDelay);
5109         conn->delayedAbortEvent =
5110             rxevent_Post(&when, &now, rxi_SendDelayedConnAbort, conn, NULL, 0);
5111     }
5112     return packet;
5113 }
5114
5115 /* Associate an error all of the calls owned by a connection.  Called
5116  * with error non-zero.  This is only for really fatal things, like
5117  * bad authentication responses.  The connection itself is set in
5118  * error at this point, so that future packets received will be
5119  * rejected. */
5120 void
5121 rxi_ConnectionError(struct rx_connection *conn,
5122                     afs_int32 error)
5123 {
5124     if (error) {
5125         int i;
5126
5127         dpf(("rxi_ConnectionError conn %"AFS_PTR_FMT" error %d\n", conn, error));
5128
5129         MUTEX_ENTER(&conn->conn_data_lock);
5130         rxevent_Cancel(&conn->challengeEvent, NULL, 0);
5131         rxevent_Cancel(&conn->natKeepAliveEvent, NULL, 0);
5132         if (conn->checkReachEvent) {
5133             rxevent_Cancel(&conn->checkReachEvent, NULL, 0);
5134             conn->flags &= ~(RX_CONN_ATTACHWAIT|RX_CONN_NAT_PING);
5135             putConnection(conn);
5136         }
5137         MUTEX_EXIT(&conn->conn_data_lock);
5138         for (i = 0; i < RX_MAXCALLS; i++) {
5139             struct rx_call *call = conn->call[i];
5140             if (call) {
5141                 MUTEX_ENTER(&call->lock);
5142                 rxi_CallError(call, error);
5143                 MUTEX_EXIT(&call->lock);
5144             }
5145         }
5146         conn->error = error;
5147         if (rx_stats_active)
5148             rx_atomic_inc(&rx_stats.fatalErrors);
5149     }
5150 }
5151
5152 /**
5153  * Interrupt an in-progress call with the specified error and wakeup waiters.
5154  *
5155  * @param[in] call  The call to interrupt
5156  * @param[in] error  The error code to send to the peer
5157  */
5158 void
5159 rx_InterruptCall(struct rx_call *call, afs_int32 error)
5160 {
5161     MUTEX_ENTER(&call->lock);
5162     rxi_CallError(call, error);
5163     rxi_SendCallAbort(call, NULL, 0, 1);
5164     MUTEX_EXIT(&call->lock);
5165 }
5166
5167 void
5168 rxi_CallError(struct rx_call *call, afs_int32 error)
5169 {
5170 #ifdef DEBUG
5171     osirx_AssertMine(&call->lock, "rxi_CallError");
5172 #endif
5173     dpf(("rxi_CallError call %"AFS_PTR_FMT" error %d call->error %d\n", call, error, call->error));
5174     if (call->error)
5175         error = call->error;
5176
5177 #ifdef AFS_GLOBAL_RXLOCK_KERNEL
5178     if (!((call->flags & RX_CALL_TQ_BUSY) || (call->tqWaiters > 0))) {
5179         rxi_ResetCall(call, 0);
5180     }
5181 #else
5182     rxi_ResetCall(call, 0);
5183 #endif
5184     call->error = error;
5185 }
5186
5187 /* Reset various fields in a call structure, and wakeup waiting
5188  * processes.  Some fields aren't changed: state & mode are not
5189  * touched (these must be set by the caller), and bufptr, nLeft, and
5190  * nFree are not reset, since these fields are manipulated by
5191  * unprotected macros, and may only be reset by non-interrupting code.
5192  */
5193
5194 void
5195 rxi_ResetCall(struct rx_call *call, int newcall)
5196 {
5197     int flags;
5198     struct rx_peer *peer;
5199     struct rx_packet *packet;
5200 #ifdef DEBUG
5201     osirx_AssertMine(&call->lock, "rxi_ResetCall");
5202 #endif
5203     dpf(("rxi_ResetCall(call %"AFS_PTR_FMT", newcall %d)\n", call, newcall));
5204
5205     /* Notify anyone who is waiting for asynchronous packet arrival */
5206     if (call->arrivalProc) {
5207         (*call->arrivalProc) (call, call->arrivalProcHandle,
5208                               call->arrivalProcArg);
5209         call->arrivalProc = (void (*)())0;
5210     }
5211
5212
5213     rxevent_Cancel(&call->growMTUEvent, call, RX_CALL_REFCOUNT_ALIVE);
5214
5215     if (call->delayedAbortEvent) {
5216         rxevent_Cancel(&call->delayedAbortEvent, call, RX_CALL_REFCOUNT_ABORT);
5217         packet = rxi_AllocPacket(RX_PACKET_CLASS_SPECIAL);
5218         if (packet) {
5219             rxi_SendCallAbort(call, packet, 0, 1);
5220             rxi_FreePacket(packet);
5221         }
5222     }
5223
5224     /*
5225      * Update the peer with the congestion information in this call
5226      * so other calls on this connection can pick up where this call
5227      * left off. If the congestion sequence numbers don't match then
5228      * another call experienced a retransmission.
5229      */
5230     peer = call->conn->peer;
5231     MUTEX_ENTER(&peer->peer_lock);
5232     if (!newcall) {
5233         if (call->congestSeq == peer->congestSeq) {
5234             peer->cwind = MAX(peer->cwind, call->cwind);
5235             peer->MTU = MAX(peer->MTU, call->MTU);
5236             peer->nDgramPackets =
5237                 MAX(peer->nDgramPackets, call->nDgramPackets);
5238         }
5239     } else {
5240         call->abortCode = 0;
5241         call->abortCount = 0;
5242     }
5243     if (peer->maxDgramPackets > 1) {
5244         call->MTU = RX_HEADER_SIZE + RX_JUMBOBUFFERSIZE;
5245     } else {
5246         call->MTU = peer->MTU;
5247     }
5248     call->cwind = MIN((int)peer->cwind, (int)peer->nDgramPackets);
5249     call->ssthresh = rx_maxSendWindow;
5250     call->nDgramPackets = peer->nDgramPackets;
5251     call->congestSeq = peer->congestSeq;
5252     call->rtt = peer->rtt;
5253     call->rtt_dev = peer->rtt_dev;
5254     clock_Zero(&call->rto);
5255     clock_Addmsec(&call->rto,
5256                   MAX(((call->rtt >> 3) + call->rtt_dev), rx_minPeerTimeout) + 200);
5257     MUTEX_EXIT(&peer->peer_lock);
5258
5259     flags = call->flags;
5260 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
5261     rxi_WaitforTQBusy(call);
5262 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
5263
5264     rxi_ClearTransmitQueue(call, 1);
5265     if (call->tqWaiters || (flags & RX_CALL_TQ_WAIT)) {
5266         dpf(("rcall %"AFS_PTR_FMT" has %d waiters and flags %d\n", call, call->tqWaiters, call->flags));
5267     }
5268     call->flags = 0;
5269
5270     if ((flags & RX_CALL_PEER_BUSY)) {
5271         /* The call channel is still busy; resetting the call doesn't change
5272          * that */
5273         call->flags |= RX_CALL_PEER_BUSY;
5274     }
5275
5276     rxi_ClearReceiveQueue(call);
5277     /* why init the queue if you just emptied it? queue_Init(&call->rq); */
5278
5279
5280     call->error = 0;
5281     call->twind = call->conn->twind[call->channel];
5282     call->rwind = call->conn->rwind[call->channel];
5283     call->nSoftAcked = 0;
5284     call->nextCwind = 0;
5285     call->nAcks = 0;
5286     call->nNacks = 0;
5287     call->nCwindAcks = 0;
5288     call->nSoftAcks = 0;
5289     call->nHardAcks = 0;
5290
5291     call->tfirst = call->rnext = call->tnext = 1;
5292     call->tprev = 0;
5293     call->rprev = 0;
5294     call->lastAcked = 0;
5295     call->localStatus = call->remoteStatus = 0;
5296
5297     if (flags & RX_CALL_READER_WAIT) {
5298 #ifdef  RX_ENABLE_LOCKS
5299         CV_BROADCAST(&call->cv_rq);
5300 #else
5301         osi_rxWakeup(&call->rq);
5302 #endif
5303     }
5304     if (flags & RX_CALL_WAIT_PACKETS) {
5305         MUTEX_ENTER(&rx_freePktQ_lock);
5306         rxi_PacketsUnWait();    /* XXX */
5307         MUTEX_EXIT(&rx_freePktQ_lock);
5308     }
5309 #ifdef  RX_ENABLE_LOCKS
5310     CV_SIGNAL(&call->cv_twind);
5311 #else
5312     if (flags & RX_CALL_WAIT_WINDOW_ALLOC)
5313         osi_rxWakeup(&call->twind);
5314 #endif
5315
5316 #ifdef RX_ENABLE_LOCKS
5317     /* The following ensures that we don't mess with any queue while some
5318      * other thread might also be doing so. The call_queue_lock field is
5319      * is only modified under the call lock. If the call is in the process
5320      * of being removed from a queue, the call is not locked until the
5321      * the queue lock is dropped and only then is the call_queue_lock field
5322      * zero'd out. So it's safe to lock the queue if call_queue_lock is set.
5323      * Note that any other routine which removes a call from a queue has to
5324      * obtain the queue lock before examing the queue and removing the call.
5325      */
5326     if (call->call_queue_lock) {
5327         MUTEX_ENTER(call->call_queue_lock);
5328         if (queue_IsOnQueue(call)) {
5329             queue_Remove(call);
5330             if (flags & RX_CALL_WAIT_PROC) {
5331                 rx_atomic_dec(&rx_nWaiting);
5332             }
5333         }
5334         MUTEX_EXIT(call->call_queue_lock);
5335         CLEAR_CALL_QUEUE_LOCK(call);
5336     }
5337 #else /* RX_ENABLE_LOCKS */
5338     if (queue_IsOnQueue(call)) {
5339         queue_Remove(call);
5340         if (flags & RX_CALL_WAIT_PROC)
5341             rx_atomic_dec(&rx_nWaiting);
5342     }
5343 #endif /* RX_ENABLE_LOCKS */
5344
5345     rxi_KeepAliveOff(call);
5346     rxevent_Cancel(&call->delayedAckEvent, call, RX_CALL_REFCOUNT_DELAY);
5347 }
5348
5349 /* Send an acknowledge for the indicated packet (seq,serial) of the
5350  * indicated call, for the indicated reason (reason).  This
5351  * acknowledge will specifically acknowledge receiving the packet, and
5352  * will also specify which other packets for this call have been
5353  * received.  This routine returns the packet that was used to the
5354  * caller.  The caller is responsible for freeing it or re-using it.
5355  * This acknowledgement also returns the highest sequence number
5356  * actually read out by the higher level to the sender; the sender
5357  * promises to keep around packets that have not been read by the
5358  * higher level yet (unless, of course, the sender decides to abort
5359  * the call altogether).  Any of p, seq, serial, pflags, or reason may
5360  * be set to zero without ill effect.  That is, if they are zero, they
5361  * will not convey any information.
5362  * NOW there is a trailer field, after the ack where it will safely be
5363  * ignored by mundanes, which indicates the maximum size packet this
5364  * host can swallow.  */
5365 /*
5366     struct rx_packet *optionalPacket;  use to send ack (or null)
5367     int seq;                     Sequence number of the packet we are acking
5368     int serial;                  Serial number of the packet
5369     int pflags;                  Flags field from packet header
5370     int reason;                  Reason an acknowledge was prompted
5371 */
5372
5373 struct rx_packet *
5374 rxi_SendAck(struct rx_call *call,
5375             struct rx_packet *optionalPacket, int serial, int reason,
5376             int istack)
5377 {
5378     struct rx_ackPacket *ap;
5379     struct rx_packet *rqp;
5380     struct rx_packet *nxp;      /* For queue_Scan */
5381     struct rx_packet *p;
5382     u_char offset = 0;
5383     afs_int32 templ;
5384     afs_uint32 padbytes = 0;
5385 #ifdef RX_ENABLE_TSFPQ
5386     struct rx_ts_info_t * rx_ts_info;
5387 #endif
5388
5389     /*
5390      * Open the receive window once a thread starts reading packets
5391      */
5392     if (call->rnext > 1) {
5393         call->conn->rwind[call->channel] = call->rwind = rx_maxReceiveWindow;
5394     }
5395
5396     /* Don't attempt to grow MTU if this is a critical ping */
5397     if (reason == RX_ACK_MTU) {
5398         /* keep track of per-call attempts, if we're over max, do in small
5399          * otherwise in larger? set a size to increment by, decrease
5400          * on failure, here?
5401          */
5402         if (call->conn->peer->maxPacketSize &&
5403             (call->conn->peer->maxPacketSize < OLD_MAX_PACKET_SIZE
5404              +RX_IPUDP_SIZE))
5405             padbytes = call->conn->peer->maxPacketSize+16;
5406         else
5407             padbytes = call->conn->peer->maxMTU + 128;
5408
5409         /* do always try a minimum size ping */
5410         padbytes = MAX(padbytes, RX_MIN_PACKET_SIZE+RX_IPUDP_SIZE+4);
5411
5412         /* subtract the ack payload */
5413         padbytes -= (rx_AckDataSize(call->rwind) + 4 * sizeof(afs_int32));
5414         reason = RX_ACK_PING;
5415     }
5416
5417     call->nHardAcks = 0;
5418     call->nSoftAcks = 0;
5419     if (call->rnext > call->lastAcked)
5420         call->lastAcked = call->rnext;
5421     p = optionalPacket;
5422
5423     if (p) {
5424         rx_computelen(p, p->length);    /* reset length, you never know */
5425     } /* where that's been...         */
5426 #ifdef RX_ENABLE_TSFPQ
5427     else {
5428         RX_TS_INFO_GET(rx_ts_info);
5429         if ((p = rx_ts_info->local_special_packet)) {
5430             rx_computelen(p, p->length);
5431         } else if ((p = rxi_AllocPacket(RX_PACKET_CLASS_SPECIAL))) {
5432             rx_ts_info->local_special_packet = p;
5433         } else { /* We won't send the ack, but don't panic. */
5434             return optionalPacket;
5435         }
5436     }
5437 #else
5438     else if (!(p = rxi_AllocPacket(RX_PACKET_CLASS_SPECIAL))) {
5439         /* We won't send the ack, but don't panic. */
5440         return optionalPacket;
5441     }
5442 #endif
5443
5444     templ = padbytes +
5445         rx_AckDataSize(call->rwind) + 4 * sizeof(afs_int32) -
5446         rx_GetDataSize(p);
5447     if (templ > 0) {
5448         if (rxi_AllocDataBuf(p, templ, RX_PACKET_CLASS_SPECIAL) > 0) {
5449 #ifndef RX_ENABLE_TSFPQ
5450             if (!optionalPacket)
5451                 rxi_FreePacket(p);
5452 #endif
5453             return optionalPacket;
5454         }
5455         templ = rx_AckDataSize(call->rwind) + 2 * sizeof(afs_int32);
5456         if (rx_Contiguous(p) < templ) {
5457 #ifndef RX_ENABLE_TSFPQ
5458             if (!optionalPacket)
5459                 rxi_FreePacket(p);
5460 #endif
5461             return optionalPacket;
5462         }
5463     }
5464
5465
5466     /* MTUXXX failing to send an ack is very serious.  We should */
5467     /* try as hard as possible to send even a partial ack; it's */
5468     /* better than nothing. */
5469     ap = (struct rx_ackPacket *)rx_DataOf(p);
5470     ap->bufferSpace = htonl(0); /* Something should go here, sometime */
5471     ap->reason = reason;
5472
5473     /* The skew computation used to be bogus, I think it's better now. */
5474     /* We should start paying attention to skew.    XXX  */
5475     ap->serial = htonl(serial);
5476     ap->maxSkew = 0;            /* used to be peer->inPacketSkew */
5477
5478     /*
5479      * First packet not yet forwarded to reader. When ACKALL has been
5480      * sent the peer has been told that all received packets will be
5481      * delivered to the reader.  The value 'rnext' is used internally
5482      * to refer to the next packet in the receive queue that must be
5483      * delivered to the reader.  From the perspective of the peer it
5484      * already has so report the last sequence number plus one if there
5485      * are packets in the receive queue awaiting processing.
5486      */
5487     if ((call->flags & RX_CALL_ACKALL_SENT) &&
5488         !queue_IsEmpty(&call->rq)) {
5489         ap->firstPacket = htonl(queue_Last(&call->rq, rx_packet)->header.seq + 1);
5490     } else {
5491         ap->firstPacket = htonl(call->rnext);
5492
5493         ap->previousPacket = htonl(call->rprev);        /* Previous packet received */
5494
5495         /* No fear of running out of ack packet here because there can only be at most
5496          * one window full of unacknowledged packets.  The window size must be constrained
5497          * to be less than the maximum ack size, of course.  Also, an ack should always
5498          * fit into a single packet -- it should not ever be fragmented.  */
5499         for (offset = 0, queue_Scan(&call->rq, rqp, nxp, rx_packet)) {
5500             if (!rqp || !call->rq.next
5501                 || (rqp->header.seq > (call->rnext + call->rwind))) {
5502 #ifndef RX_ENABLE_TSFPQ
5503                 if (!optionalPacket)
5504                     rxi_FreePacket(p);
5505 #endif
5506                 rxi_CallError(call, RX_CALL_DEAD);
5507                 return optionalPacket;
5508             }
5509
5510             while (rqp->header.seq > call->rnext + offset)
5511                 ap->acks[offset++] = RX_ACK_TYPE_NACK;
5512             ap->acks[offset++] = RX_ACK_TYPE_ACK;
5513
5514             if ((offset > (u_char) rx_maxReceiveWindow) || (offset > call->rwind)) {
5515 #ifndef RX_ENABLE_TSFPQ
5516                 if (!optionalPacket)
5517                     rxi_FreePacket(p);
5518 #endif
5519                 rxi_CallError(call, RX_CALL_DEAD);
5520                 return optionalPacket;
5521             }
5522         }
5523     }
5524
5525     ap->nAcks = offset;
5526     p->length = rx_AckDataSize(offset) + 4 * sizeof(afs_int32);
5527
5528     /* these are new for AFS 3.3 */
5529     templ = rxi_AdjustMaxMTU(call->conn->peer->ifMTU, rx_maxReceiveSize);
5530     templ = htonl(templ);
5531     rx_packetwrite(p, rx_AckDataSize(offset), sizeof(afs_int32), &templ);
5532     templ = htonl(call->conn->peer->ifMTU);
5533     rx_packetwrite(p, rx_AckDataSize(offset) + sizeof(afs_int32),
5534                    sizeof(afs_int32), &templ);
5535
5536     /* new for AFS 3.4 */
5537     templ = htonl(call->rwind);
5538     rx_packetwrite(p, rx_AckDataSize(offset) + 2 * sizeof(afs_int32),
5539                    sizeof(afs_int32), &templ);
5540
5541     /* new for AFS 3.5 */
5542     templ = htonl(call->conn->peer->ifDgramPackets);
5543     rx_packetwrite(p, rx_AckDataSize(offset) + 3 * sizeof(afs_int32),
5544                    sizeof(afs_int32), &templ);
5545
5546     p->header.serviceId = call->conn->serviceId;
5547     p->header.cid = (call->conn->cid | call->channel);
5548     p->header.callNumber = *call->callNumber;
5549     p->header.seq = 0;
5550     p->header.securityIndex = call->conn->securityIndex;
5551     p->header.epoch = call->conn->epoch;
5552     p->header.type = RX_PACKET_TYPE_ACK;
5553     p->header.flags = RX_SLOW_START_OK;
5554     if (reason == RX_ACK_PING) {
5555         p->header.flags |= RX_REQUEST_ACK;
5556         if (padbytes) {
5557             p->length = padbytes +
5558                 rx_AckDataSize(call->rwind) + 4 * sizeof(afs_int32);
5559
5560             while (padbytes--)
5561                 /* not fast but we can potentially use this if truncated
5562                  * fragments are delivered to figure out the mtu.
5563                  */
5564                 rx_packetwrite(p, rx_AckDataSize(offset) + 4 *
5565                                sizeof(afs_int32), sizeof(afs_int32),
5566                                &padbytes);
5567         }
5568     }
5569     if (call->conn->type == RX_CLIENT_CONNECTION)
5570         p->header.flags |= RX_CLIENT_INITIATED;
5571
5572 #ifdef RXDEBUG
5573 #ifdef AFS_NT40_ENV
5574     if (rxdebug_active) {
5575         char msg[512];
5576         size_t len;
5577
5578         len = _snprintf(msg, sizeof(msg),
5579                         "tid[%d] SACK: reason %s serial %u previous %u seq %u first %u acks %u space %u ",
5580                          GetCurrentThreadId(), rx_ack_reason(ap->reason),
5581                          ntohl(ap->serial), ntohl(ap->previousPacket),
5582                          (unsigned int)p->header.seq, ntohl(ap->firstPacket),
5583                          ap->nAcks, ntohs(ap->bufferSpace) );
5584         if (ap->nAcks) {
5585             int offset;
5586
5587             for (offset = 0; offset < ap->nAcks && len < sizeof(msg); offset++)
5588                 msg[len++] = (ap->acks[offset] == RX_ACK_TYPE_NACK ? '-' : '*');
5589         }
5590         msg[len++]='\n';
5591         msg[len] = '\0';
5592         OutputDebugString(msg);
5593     }
5594 #else /* AFS_NT40_ENV */
5595     if (rx_Log) {
5596         fprintf(rx_Log, "SACK: reason %x previous %u seq %u first %u ",
5597                 ap->reason, ntohl(ap->previousPacket),
5598                 (unsigned int)p->header.seq, ntohl(ap->firstPacket));
5599         if (ap->nAcks) {
5600             for (offset = 0; offset < ap->nAcks; offset++)
5601                 putc(ap->acks[offset] == RX_ACK_TYPE_NACK ? '-' : '*',
5602                      rx_Log);
5603         }
5604         putc('\n', rx_Log);
5605     }
5606 #endif /* AFS_NT40_ENV */
5607 #endif
5608     {
5609         int i, nbytes = p->length;
5610
5611         for (i = 1; i < p->niovecs; i++) {      /* vec 0 is ALWAYS header */
5612             if (nbytes <= p->wirevec[i].iov_len) {
5613                 int savelen, saven;
5614
5615                 savelen = p->wirevec[i].iov_len;
5616                 saven = p->niovecs;
5617                 p->wirevec[i].iov_len = nbytes;
5618                 p->niovecs = i + 1;
5619                 rxi_Send(call, p, istack);
5620                 p->wirevec[i].iov_len = savelen;
5621                 p->niovecs = saven;
5622                 break;
5623             } else
5624                 nbytes -= p->wirevec[i].iov_len;
5625         }
5626     }
5627     if (rx_stats_active)
5628         rx_atomic_inc(&rx_stats.ackPacketsSent);
5629 #ifndef RX_ENABLE_TSFPQ
5630     if (!optionalPacket)
5631         rxi_FreePacket(p);
5632 #endif
5633     return optionalPacket;      /* Return packet for re-use by caller */
5634 }
5635
5636 struct xmitlist {
5637    struct rx_packet **list;
5638    int len;
5639    int resending;
5640 };
5641
5642 /* Send all of the packets in the list in single datagram */
5643 static void
5644 rxi_SendList(struct rx_call *call, struct xmitlist *xmit,
5645              int istack, int moreFlag)
5646 {
5647     int i;
5648     int requestAck = 0;
5649     int lastPacket = 0;
5650     struct clock now;
5651     struct rx_connection *conn = call->conn;
5652     struct rx_peer *peer = conn->peer;
5653
5654     MUTEX_ENTER(&peer->peer_lock);
5655     peer->nSent += xmit->len;
5656     if (xmit->resending)
5657         peer->reSends += xmit->len;
5658     MUTEX_EXIT(&peer->peer_lock);
5659
5660     if (rx_stats_active) {
5661         if (xmit->resending)
5662             rx_atomic_add(&rx_stats.dataPacketsReSent, xmit->len);
5663         else
5664             rx_atomic_add(&rx_stats.dataPacketsSent, xmit->len);
5665     }
5666
5667     clock_GetTime(&now);
5668
5669     if (xmit->list[xmit->len - 1]->header.flags & RX_LAST_PACKET) {
5670         lastPacket = 1;
5671     }
5672
5673     /* Set the packet flags and schedule the resend events */
5674     /* Only request an ack for the last packet in the list */
5675     for (i = 0; i < xmit->len; i++) {
5676         struct rx_packet *packet = xmit->list[i];
5677
5678         /* Record the time sent */
5679         packet->timeSent = now;
5680         packet->flags |= RX_PKTFLAG_SENT;
5681
5682         /* Ask for an ack on retransmitted packets,  on every other packet
5683          * if the peer doesn't support slow start. Ask for an ack on every
5684          * packet until the congestion window reaches the ack rate. */
5685         if (packet->header.serial) {
5686             requestAck = 1;
5687         } else {
5688             packet->firstSent = now;
5689             if (!lastPacket && (call->cwind <= (u_short) (conn->ackRate + 1)
5690                                 || (!(call->flags & RX_CALL_SLOW_START_OK)
5691                                     && (packet->header.seq & 1)))) {
5692                 requestAck = 1;
5693             }
5694         }
5695
5696         /* Tag this packet as not being the last in this group,
5697          * for the receiver's benefit */
5698         if (i < xmit->len - 1 || moreFlag) {
5699             packet->header.flags |= RX_MORE_PACKETS;
5700         }
5701     }
5702
5703     if (requestAck) {
5704         xmit->list[xmit->len - 1]->header.flags |= RX_REQUEST_ACK;
5705     }
5706
5707     /* Since we're about to send a data packet to the peer, it's
5708      * safe to nuke any scheduled end-of-packets ack */
5709     rxevent_Cancel(&call->delayedAckEvent, call, RX_CALL_REFCOUNT_DELAY);
5710
5711     MUTEX_EXIT(&call->lock);
5712     MUTEX_ENTER(&rx_refcnt_mutex);
5713     CALL_HOLD(call, RX_CALL_REFCOUNT_SEND);
5714     MUTEX_EXIT(&rx_refcnt_mutex);
5715     if (xmit->len > 1) {
5716         rxi_SendPacketList(call, conn, xmit->list, xmit->len, istack);
5717     } else {
5718         rxi_SendPacket(call, conn, xmit->list[0], istack);
5719     }
5720     MUTEX_ENTER(&call->lock);
5721     MUTEX_ENTER(&rx_refcnt_mutex);
5722     CALL_RELE(call, RX_CALL_REFCOUNT_SEND);
5723     MUTEX_EXIT(&rx_refcnt_mutex);
5724
5725     /* Tell the RTO calculation engine that we have sent a packet, and
5726      * if it was the last one */
5727     rxi_rto_packet_sent(call, lastPacket, istack);
5728
5729     /* Update last send time for this call (for keep-alive
5730      * processing), and for the connection (so that we can discover
5731      * idle connections) */
5732     conn->lastSendTime = call->lastSendTime = clock_Sec();
5733     /* Let a set of retransmits trigger an idle timeout */
5734     if (!xmit->resending)
5735         call->lastSendData = call->lastSendTime;
5736 }
5737
5738 /* When sending packets we need to follow these rules:
5739  * 1. Never send more than maxDgramPackets in a jumbogram.
5740  * 2. Never send a packet with more than two iovecs in a jumbogram.
5741  * 3. Never send a retransmitted packet in a jumbogram.
5742  * 4. Never send more than cwind/4 packets in a jumbogram
5743  * We always keep the last list we should have sent so we
5744  * can set the RX_MORE_PACKETS flags correctly.
5745  */
5746
5747 static void
5748 rxi_SendXmitList(struct rx_call *call, struct rx_packet **list, int len,
5749                  int istack)
5750 {
5751     int i;
5752     int recovery;
5753     struct xmitlist working;
5754     struct xmitlist last;
5755
5756     struct rx_peer *peer = call->conn->peer;
5757     int morePackets = 0;
5758
5759     memset(&last, 0, sizeof(struct xmitlist));
5760     working.list = &list[0];
5761     working.len = 0;
5762     working.resending = 0;
5763
5764     recovery = call->flags & RX_CALL_FAST_RECOVER;
5765
5766     for (i = 0; i < len; i++) {
5767         /* Does the current packet force us to flush the current list? */
5768         if (working.len > 0
5769             && (list[i]->header.serial || (list[i]->flags & RX_PKTFLAG_ACKED)
5770                 || list[i]->length > RX_JUMBOBUFFERSIZE)) {
5771
5772             /* This sends the 'last' list and then rolls the current working
5773              * set into the 'last' one, and resets the working set */
5774
5775             if (last.len > 0) {
5776                 rxi_SendList(call, &last, istack, 1);
5777                 /* If the call enters an error state stop sending, or if
5778                  * we entered congestion recovery mode, stop sending */
5779                 if (call->error
5780                     || (!recovery && (call->flags & RX_CALL_FAST_RECOVER)))
5781                     return;
5782             }
5783             last = working;
5784             working.len = 0;
5785             working.resending = 0;
5786             working.list = &list[i];
5787         }
5788         /* Add the current packet to the list if it hasn't been acked.
5789          * Otherwise adjust the list pointer to skip the current packet.  */
5790         if (!(list[i]->flags & RX_PKTFLAG_ACKED)) {
5791             working.len++;
5792
5793             if (list[i]->header.serial)
5794                 working.resending = 1;
5795
5796             /* Do we need to flush the list? */
5797             if (working.len >= (int)peer->maxDgramPackets
5798                 || working.len >= (int)call->nDgramPackets 
5799                 || working.len >= (int)call->cwind
5800                 || list[i]->header.serial
5801                 || list[i]->length != RX_JUMBOBUFFERSIZE) {
5802                 if (last.len > 0) {
5803                     rxi_SendList(call, &last, istack, 1);
5804                     /* If the call enters an error state stop sending, or if
5805                      * we entered congestion recovery mode, stop sending */
5806                     if (call->error
5807                         || (!recovery && (call->flags & RX_CALL_FAST_RECOVER)))
5808                         return;
5809                 }
5810                 last = working;
5811                 working.len = 0;
5812                 working.resending = 0;
5813                 working.list = &list[i + 1];
5814             }
5815         } else {
5816             if (working.len != 0) {
5817                 osi_Panic("rxi_SendList error");
5818             }
5819             working.list = &list[i + 1];
5820         }
5821     }
5822
5823     /* Send the whole list when the call is in receive mode, when
5824      * the call is in eof mode, when we are in fast recovery mode,
5825      * and when we have the last packet */
5826     if ((list[len - 1]->header.flags & RX_LAST_PACKET)
5827         || call->mode == RX_MODE_RECEIVING || call->mode == RX_MODE_EOF
5828         || (call->flags & RX_CALL_FAST_RECOVER)) {
5829         /* Check for the case where the current list contains
5830          * an acked packet. Since we always send retransmissions
5831          * in a separate packet, we only need to check the first
5832          * packet in the list */
5833         if (working.len > 0 && !(working.list[0]->flags & RX_PKTFLAG_ACKED)) {
5834             morePackets = 1;
5835         }
5836         if (last.len > 0) {
5837             rxi_SendList(call, &last, istack, morePackets);
5838             /* If the call enters an error state stop sending, or if
5839              * we entered congestion recovery mode, stop sending */
5840             if (call->error
5841                 || (!recovery && (call->flags & RX_CALL_FAST_RECOVER)))
5842                 return;
5843         }
5844         if (morePackets) {
5845             rxi_SendList(call, &working, istack, 0);
5846         }
5847     } else if (last.len > 0) {
5848         rxi_SendList(call, &last, istack, 0);
5849         /* Packets which are in 'working' are not sent by this call */
5850     }
5851 }
5852
5853 static void
5854 rxi_Resend(struct rxevent *event, void *arg0, void *arg1, int istack)
5855 {
5856     struct rx_call *call = arg0;
5857     struct rx_peer *peer;
5858     struct rx_packet *p, *nxp;
5859     struct clock maxTimeout = { 60, 0 };
5860
5861     MUTEX_ENTER(&call->lock);
5862
5863     peer = call->conn->peer;
5864
5865     /* Make sure that the event pointer is removed from the call
5866      * structure, since there is no longer a per-call retransmission
5867      * event pending. */
5868     if (event == call->resendEvent) {
5869         MUTEX_ENTER(&rx_refcnt_mutex);
5870         CALL_RELE(call, RX_CALL_REFCOUNT_RESEND);
5871         MUTEX_EXIT(&rx_refcnt_mutex);
5872         rxevent_Put(call->resendEvent);
5873         call->resendEvent = NULL;
5874     }
5875
5876     if (rxi_busyChannelError && (call->flags & RX_CALL_PEER_BUSY)) {
5877         rxi_CheckBusy(call);
5878     }
5879
5880     if (queue_IsEmpty(&call->tq)) {
5881         /* Nothing to do. This means that we've been raced, and that an
5882          * ACK has come in between when we were triggered, and when we
5883          * actually got to run. */
5884         goto out;
5885     }
5886
5887     /* We're in loss recovery */
5888     call->flags |= RX_CALL_FAST_RECOVER;
5889
5890     /* Mark all of the pending packets in the queue as being lost */
5891     for (queue_Scan(&call->tq, p, nxp, rx_packet)) {
5892         if (!(p->flags & RX_PKTFLAG_ACKED))
5893             p->flags &= ~RX_PKTFLAG_SENT;
5894     }
5895
5896     /* We're resending, so we double the timeout of the call. This will be
5897      * dropped back down by the first successful ACK that we receive.
5898      *
5899      * We apply a maximum value here of 60 seconds
5900      */
5901     clock_Add(&call->rto, &call->rto);
5902     if (clock_Gt(&call->rto, &maxTimeout))
5903         call->rto = maxTimeout;
5904
5905     /* Packet loss is most likely due to congestion, so drop our window size
5906      * and start again from the beginning */
5907     if (peer->maxDgramPackets >1) {
5908         call->MTU = RX_JUMBOBUFFERSIZE + RX_HEADER_SIZE;
5909         call->MTU = MIN(peer->natMTU, peer->maxMTU);
5910     }
5911     call->ssthresh = MAX(4, MIN((int)call->cwind, (int)call->twind)) >> 1;
5912     call->nDgramPackets = 1;
5913     call->cwind = 1;
5914     call->nextCwind = 1;
5915     call->nAcks = 0;
5916     call->nNacks = 0;
5917     MUTEX_ENTER(&peer->peer_lock);
5918     peer->MTU = call->MTU;
5919     peer->cwind = call->cwind;
5920     peer->nDgramPackets = 1;
5921     peer->congestSeq++;
5922     call->congestSeq = peer->congestSeq;
5923     MUTEX_EXIT(&peer->peer_lock);
5924
5925     rxi_Start(call, istack);
5926
5927 out:
5928     MUTEX_EXIT(&call->lock);
5929 }
5930
5931 /* This routine is called when new packets are readied for
5932  * transmission and when retransmission may be necessary, or when the
5933  * transmission window or burst count are favourable.  This should be
5934  * better optimized for new packets, the usual case, now that we've
5935  * got rid of queues of send packets. XXXXXXXXXXX */
5936 void
5937 rxi_Start(struct rx_call *call, int istack)
5938 {
5939
5940     struct rx_packet *p;
5941     struct rx_packet *nxp;      /* Next pointer for queue_Scan */
5942     int nXmitPackets;
5943     int maxXmitPackets;
5944
5945     if (call->error) {
5946 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
5947         if (rx_stats_active)
5948             rx_atomic_inc(&rx_tq_debug.rxi_start_in_error);
5949 #endif
5950         return;
5951     }
5952
5953     if (queue_IsNotEmpty(&call->tq)) {  /* If we have anything to send */
5954
5955         /* Send (or resend) any packets that need it, subject to
5956          * window restrictions and congestion burst control
5957          * restrictions.  Ask for an ack on the last packet sent in
5958          * this burst.  For now, we're relying upon the window being
5959          * considerably bigger than the largest number of packets that
5960          * are typically sent at once by one initial call to
5961          * rxi_Start.  This is probably bogus (perhaps we should ask
5962          * for an ack when we're half way through the current
5963          * window?).  Also, for non file transfer applications, this
5964          * may end up asking for an ack for every packet.  Bogus. XXXX
5965          */
5966         /*
5967          * But check whether we're here recursively, and let the other guy
5968          * do the work.
5969          */
5970 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
5971         if (!(call->flags & RX_CALL_TQ_BUSY)) {
5972             call->flags |= RX_CALL_TQ_BUSY;
5973             do {
5974 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
5975             restart:
5976 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
5977                 call->flags &= ~RX_CALL_NEED_START;
5978 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
5979                 nXmitPackets = 0;
5980                 maxXmitPackets = MIN(call->twind, call->cwind);
5981                 for (queue_Scan(&call->tq, p, nxp, rx_packet)) {
5982 #ifdef RX_TRACK_PACKETS
5983                     if ((p->flags & RX_PKTFLAG_FREE)
5984                         || (!queue_IsEnd(&call->tq, nxp)
5985                             && (nxp->flags & RX_PKTFLAG_FREE))
5986                         || (p == (struct rx_packet *)&rx_freePacketQueue)
5987                         || (nxp == (struct rx_packet *)&rx_freePacketQueue)) {
5988                         osi_Panic("rxi_Start: xmit queue clobbered");
5989                     }
5990 #endif
5991                     if (p->flags & RX_PKTFLAG_ACKED) {
5992                         /* Since we may block, don't trust this */
5993                         if (rx_stats_active)
5994                             rx_atomic_inc(&rx_stats.ignoreAckedPacket);
5995                         continue;       /* Ignore this packet if it has been acknowledged */
5996                     }
5997
5998                     /* Turn off all flags except these ones, which are the same
5999                      * on each transmission */
6000                     p->header.flags &= RX_PRESET_FLAGS;
6001
6002                     if (p->header.seq >=
6003                         call->tfirst + MIN((int)call->twind,
6004                                            (int)(call->nSoftAcked +
6005                                                  call->cwind))) {
6006                         call->flags |= RX_CALL_WAIT_WINDOW_SEND;        /* Wait for transmit window */
6007                         /* Note: if we're waiting for more window space, we can
6008                          * still send retransmits; hence we don't return here, but
6009                          * break out to schedule a retransmit event */
6010                         dpf(("call %d waiting for window (seq %d, twind %d, nSoftAcked %d, cwind %d)\n",
6011                              *(call->callNumber), p->header.seq, call->twind, call->nSoftAcked,
6012                              call->cwind));
6013                         break;
6014                     }
6015
6016                     /* Transmit the packet if it needs to be sent. */
6017                     if (!(p->flags & RX_PKTFLAG_SENT)) {
6018                         if (nXmitPackets == maxXmitPackets) {
6019                             rxi_SendXmitList(call, call->xmitList,
6020                                              nXmitPackets, istack);
6021                             goto restart;
6022                         }
6023                         dpf(("call %d xmit packet %"AFS_PTR_FMT"\n",
6024                               *(call->callNumber), p));
6025                         call->xmitList[nXmitPackets++] = p;
6026                     }
6027                 }
6028
6029                 /* xmitList now hold pointers to all of the packets that are
6030                  * ready to send. Now we loop to send the packets */
6031                 if (nXmitPackets > 0) {
6032                     rxi_SendXmitList(call, call->xmitList, nXmitPackets,
6033                                      istack);
6034                 }
6035
6036 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
6037                 if (call->error) {
6038                     /* We went into the error state while sending packets. Now is
6039                      * the time to reset the call. This will also inform the using
6040                      * process that the call is in an error state.
6041                      */
6042                     if (rx_stats_active)
6043                         rx_atomic_inc(&rx_tq_debug.rxi_start_aborted);
6044                     call->flags &= ~RX_CALL_TQ_BUSY;
6045                     rxi_WakeUpTransmitQueue(call);
6046                     rxi_CallError(call, call->error);
6047                     return;
6048                 }
6049 #ifdef RX_ENABLE_LOCKS
6050                 if (call->flags & RX_CALL_TQ_SOME_ACKED) {
6051                     int missing;
6052                     call->flags &= ~RX_CALL_TQ_SOME_ACKED;
6053                     /* Some packets have received acks. If they all have, we can clear
6054                      * the transmit queue.
6055                      */
6056                     for (missing =
6057                          0, queue_Scan(&call->tq, p, nxp, rx_packet)) {
6058                         if (p->header.seq < call->tfirst
6059                             && (p->flags & RX_PKTFLAG_ACKED)) {
6060                             queue_Remove(p);
6061 #ifdef RX_TRACK_PACKETS
6062                             p->flags &= ~RX_PKTFLAG_TQ;
6063 #endif
6064 #ifdef RXDEBUG_PACKET
6065                             call->tqc--;
6066 #endif
6067                             rxi_FreePacket(p);
6068                         } else
6069                             missing = 1;
6070                     }
6071                     if (!missing)
6072                         call->flags |= RX_CALL_TQ_CLEARME;
6073                 }
6074 #endif /* RX_ENABLE_LOCKS */
6075                 if (call->flags & RX_CALL_TQ_CLEARME)
6076                     rxi_ClearTransmitQueue(call, 1);
6077             } while (call->flags & RX_CALL_NEED_START);
6078             /*
6079              * TQ references no longer protected by this flag; they must remain
6080              * protected by the global lock.
6081              */
6082             call->flags &= ~RX_CALL_TQ_BUSY;
6083             rxi_WakeUpTransmitQueue(call);
6084         } else {
6085             call->flags |= RX_CALL_NEED_START;
6086         }
6087 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
6088     } else {
6089         rxi_rto_cancel(call);
6090     }
6091 }
6092
6093 /* Also adjusts the keep alive parameters for the call, to reflect
6094  * that we have just sent a packet (so keep alives aren't sent
6095  * immediately) */
6096 void
6097 rxi_Send(struct rx_call *call, struct rx_packet *p,
6098          int istack)
6099 {
6100     struct rx_connection *conn = call->conn;
6101
6102     /* Stamp each packet with the user supplied status */
6103     p->header.userStatus = call->localStatus;
6104
6105     /* Allow the security object controlling this call's security to
6106      * make any last-minute changes to the packet */
6107     RXS_SendPacket(conn->securityObject, call, p);
6108
6109     /* Since we're about to send SOME sort of packet to the peer, it's
6110      * safe to nuke any scheduled end-of-packets ack */
6111     rxevent_Cancel(&call->delayedAckEvent, call, RX_CALL_REFCOUNT_DELAY);
6112
6113     /* Actually send the packet, filling in more connection-specific fields */
6114     MUTEX_EXIT(&call->lock);
6115     MUTEX_ENTER(&rx_refcnt_mutex);
6116     CALL_HOLD(call, RX_CALL_REFCOUNT_SEND);
6117     MUTEX_EXIT(&rx_refcnt_mutex);
6118     rxi_SendPacket(call, conn, p, istack);
6119     MUTEX_ENTER(&rx_refcnt_mutex);
6120     CALL_RELE(call, RX_CALL_REFCOUNT_SEND);
6121     MUTEX_EXIT(&rx_refcnt_mutex);
6122     MUTEX_ENTER(&call->lock);
6123
6124     /* Update last send time for this call (for keep-alive
6125      * processing), and for the connection (so that we can discover
6126      * idle connections) */
6127     if ((p->header.type != RX_PACKET_TYPE_ACK) ||
6128         (((struct rx_ackPacket *)rx_DataOf(p))->reason == RX_ACK_PING) ||
6129         (p->length <= (rx_AckDataSize(call->rwind) + 4 * sizeof(afs_int32))))
6130     {
6131         conn->lastSendTime = call->lastSendTime = clock_Sec();
6132         /* Don't count keepalive ping/acks here, so idleness can be tracked. */
6133         if ((p->header.type != RX_PACKET_TYPE_ACK) ||
6134             ((((struct rx_ackPacket *)rx_DataOf(p))->reason != RX_ACK_PING) &&
6135              (((struct rx_ackPacket *)rx_DataOf(p))->reason !=
6136               RX_ACK_PING_RESPONSE)))
6137             call->lastSendData = call->lastSendTime;
6138     }
6139 }
6140
6141 /* Check if a call needs to be destroyed.  Called by keep-alive code to ensure
6142  * that things are fine.  Also called periodically to guarantee that nothing
6143  * falls through the cracks (e.g. (error + dally) connections have keepalive
6144  * turned off.  Returns 0 if conn is well, -1 otherwise.  If otherwise, call
6145  *  may be freed!
6146  * haveCTLock Set if calling from rxi_ReapConnections
6147  */
6148 #ifdef RX_ENABLE_LOCKS
6149 int
6150 rxi_CheckCall(struct rx_call *call, int haveCTLock)
6151 #else /* RX_ENABLE_LOCKS */
6152 int
6153 rxi_CheckCall(struct rx_call *call)
6154 #endif                          /* RX_ENABLE_LOCKS */
6155 {
6156     struct rx_connection *conn = call->conn;
6157     afs_uint32 now;
6158     afs_uint32 deadTime, idleDeadTime = 0, hardDeadTime = 0;
6159     afs_uint32 fudgeFactor;
6160     int cerror = 0;
6161     int newmtu = 0;
6162
6163 #ifdef AFS_GLOBAL_RXLOCK_KERNEL
6164     if (call->flags & RX_CALL_TQ_BUSY) {
6165         /* Call is active and will be reset by rxi_Start if it's
6166          * in an error state.
6167          */
6168         return 0;
6169     }
6170 #endif
6171     /* RTT + 8*MDEV, rounded up to the next second. */
6172     fudgeFactor = (((afs_uint32) call->rtt >> 3) +
6173                    ((afs_uint32) call->rtt_dev << 1) + 1023) >> 10;
6174
6175     deadTime = conn->secondsUntilDead + fudgeFactor;
6176     now = clock_Sec();
6177     /* These are computed to the second (+- 1 second).  But that's
6178      * good enough for these values, which should be a significant
6179      * number of seconds. */
6180     if (now > (call->lastReceiveTime + deadTime)) {
6181         if (call->state == RX_STATE_ACTIVE) {
6182 #ifdef ADAPT_PMTU
6183 #if defined(KERNEL) && defined(AFS_SUN5_ENV)
6184             ire_t *ire;
6185 #if defined(AFS_SUN510_ENV) && defined(GLOBAL_NETSTACKID)
6186             netstack_t *ns =  netstack_find_by_stackid(GLOBAL_NETSTACKID);
6187             ip_stack_t *ipst = ns->netstack_ip;
6188 #endif
6189             ire = ire_cache_lookup(conn->peer->host
6190 #if defined(AFS_SUN510_ENV) && defined(ALL_ZONES)
6191                                    , ALL_ZONES
6192 #if defined(AFS_SUN510_ENV) && (defined(ICL_3_ARG) || defined(GLOBAL_NETSTACKID))
6193                                    , NULL
6194 #if defined(AFS_SUN510_ENV) && defined(GLOBAL_NETSTACKID)
6195                                    , ipst
6196 #endif
6197 #endif
6198 #endif
6199                 );
6200
6201             if (ire && ire->ire_max_frag > 0)
6202                 rxi_SetPeerMtu(NULL, conn->peer->host, 0,
6203                                ire->ire_max_frag);
6204 #if defined(GLOBAL_NETSTACKID)
6205             netstack_rele(ns);
6206 #endif
6207 #endif
6208 #endif /* ADAPT_PMTU */
6209             cerror = RX_CALL_DEAD;
6210             goto mtuout;
6211         } else {
6212 #ifdef RX_ENABLE_LOCKS
6213             /* Cancel pending events */
6214             rxevent_Cancel(&call->delayedAckEvent, call,
6215                            RX_CALL_REFCOUNT_DELAY);
6216             rxi_rto_cancel(call);
6217             rxevent_Cancel(&call->keepAliveEvent, call,
6218                            RX_CALL_REFCOUNT_ALIVE);
6219             rxevent_Cancel(&call->growMTUEvent, call,
6220                            RX_CALL_REFCOUNT_ALIVE);
6221             MUTEX_ENTER(&rx_refcnt_mutex);
6222             if (call->refCount == 0) {
6223                 rxi_FreeCall(call, haveCTLock);
6224                 MUTEX_EXIT(&rx_refcnt_mutex);
6225                 return -2;
6226             }
6227             MUTEX_EXIT(&rx_refcnt_mutex);
6228             return -1;
6229 #else /* RX_ENABLE_LOCKS */
6230             rxi_FreeCall(call, 0);
6231             return -2;
6232 #endif /* RX_ENABLE_LOCKS */
6233         }
6234         /* Non-active calls are destroyed if they are not responding
6235          * to pings; active calls are simply flagged in error, so the
6236          * attached process can die reasonably gracefully. */
6237     }
6238
6239     if (conn->idleDeadTime) {
6240         idleDeadTime = conn->idleDeadTime + fudgeFactor;
6241     }
6242
6243     /* see if we have a non-activity timeout */
6244     if (call->startWait && idleDeadTime
6245         && ((call->startWait + idleDeadTime) < now) &&
6246         (call->flags & RX_CALL_READER_WAIT)) {
6247         if (call->state == RX_STATE_ACTIVE) {
6248             cerror = RX_CALL_TIMEOUT;
6249             goto mtuout;
6250         }
6251     }
6252     if (call->lastSendData && idleDeadTime && (conn->idleDeadErr != 0)
6253         && ((call->lastSendData + idleDeadTime) < now)) {
6254         if (call->state == RX_STATE_ACTIVE) {
6255             cerror = conn->idleDeadErr;
6256             goto mtuout;
6257         }
6258     }
6259
6260     if (conn->hardDeadTime) {
6261         hardDeadTime = conn->hardDeadTime + fudgeFactor;
6262     }
6263
6264     /* see if we have a hard timeout */
6265     if (hardDeadTime
6266         && (now > (hardDeadTime + call->startTime.sec))) {
6267         if (call->state == RX_STATE_ACTIVE)
6268             rxi_CallError(call, RX_CALL_TIMEOUT);
6269         return -1;
6270     }
6271     return 0;
6272 mtuout:
6273     if (conn->msgsizeRetryErr && cerror != RX_CALL_TIMEOUT
6274         && call->lastReceiveTime) {
6275         int oldMTU = conn->peer->ifMTU;
6276
6277         /* if we thought we could send more, perhaps things got worse */
6278         if (conn->peer->maxPacketSize > conn->lastPacketSize)
6279             /* maxpacketsize will be cleared in rxi_SetPeerMtu */
6280             newmtu = MAX(conn->peer->maxPacketSize-RX_IPUDP_SIZE,
6281                          conn->lastPacketSize-(128+RX_IPUDP_SIZE));
6282         else
6283             newmtu = conn->lastPacketSize-(128+RX_IPUDP_SIZE);
6284
6285         /* minimum capped in SetPeerMtu */
6286         rxi_SetPeerMtu(conn->peer, 0, 0, newmtu);
6287
6288         /* clean up */
6289         conn->lastPacketSize = 0;
6290
6291         /* needed so ResetCall doesn't clobber us. */
6292         call->MTU = conn->peer->ifMTU;
6293
6294         /* if we never succeeded, let the error pass out as-is */
6295         if (conn->peer->maxPacketSize && oldMTU != conn->peer->ifMTU)
6296             cerror = conn->msgsizeRetryErr;
6297
6298     }
6299     rxi_CallError(call, cerror);
6300     return -1;
6301 }
6302
6303 void
6304 rxi_NatKeepAliveEvent(struct rxevent *event, void *arg1,
6305                       void *dummy, int dummy2)
6306 {
6307     struct rx_connection *conn = arg1;
6308     struct rx_header theader;
6309     char tbuffer[1 + sizeof(struct rx_header)];
6310     struct sockaddr_in taddr;
6311     char *tp;
6312     char a[1] = { 0 };
6313     struct iovec tmpiov[2];
6314     osi_socket socket =
6315         (conn->type ==
6316          RX_CLIENT_CONNECTION ? rx_socket : conn->service->socket);
6317
6318
6319     tp = &tbuffer[sizeof(struct rx_header)];
6320     taddr.sin_family = AF_INET;
6321     taddr.sin_port = rx_PortOf(rx_PeerOf(conn));
6322     taddr.sin_addr.s_addr = rx_HostOf(rx_PeerOf(conn));
6323 #ifdef STRUCT_SOCKADDR_HAS_SA_LEN
6324     taddr.sin_len = sizeof(struct sockaddr_in);
6325 #endif
6326     memset(&theader, 0, sizeof(theader));
6327     theader.epoch = htonl(999);
6328     theader.cid = 0;
6329     theader.callNumber = 0;
6330     theader.seq = 0;
6331     theader.serial = 0;
6332     theader.type = RX_PACKET_TYPE_VERSION;
6333     theader.flags = RX_LAST_PACKET;
6334     theader.serviceId = 0;
6335
6336     memcpy(tbuffer, &theader, sizeof(theader));
6337     memcpy(tp, &a, sizeof(a));
6338     tmpiov[0].iov_base = tbuffer;
6339     tmpiov[0].iov_len = 1 + sizeof(struct rx_header);
6340
6341     osi_NetSend(socket, &taddr, tmpiov, 1, 1 + sizeof(struct rx_header), 1);
6342
6343     MUTEX_ENTER(&conn->conn_data_lock);
6344     MUTEX_ENTER(&rx_refcnt_mutex);
6345     /* Only reschedule ourselves if the connection would not be destroyed */
6346     if (conn->refCount <= 1) {
6347         rxevent_Put(conn->natKeepAliveEvent);
6348         conn->natKeepAliveEvent = NULL;
6349         MUTEX_EXIT(&rx_refcnt_mutex);
6350         MUTEX_EXIT(&conn->conn_data_lock);
6351         rx_DestroyConnection(conn); /* drop the reference for this */
6352     } else {
6353         conn->refCount--; /* drop the reference for this */
6354         MUTEX_EXIT(&rx_refcnt_mutex);
6355         rxevent_Put(conn->natKeepAliveEvent);
6356         conn->natKeepAliveEvent = NULL;
6357         rxi_ScheduleNatKeepAliveEvent(conn);
6358         MUTEX_EXIT(&conn->conn_data_lock);
6359     }
6360 }
6361
6362 void
6363 rxi_ScheduleNatKeepAliveEvent(struct rx_connection *conn)
6364 {
6365     if (!conn->natKeepAliveEvent && conn->secondsUntilNatPing) {
6366         struct clock when, now;
6367         clock_GetTime(&now);
6368         when = now;
6369         when.sec += conn->secondsUntilNatPing;
6370         MUTEX_ENTER(&rx_refcnt_mutex);
6371         conn->refCount++; /* hold a reference for this */
6372         MUTEX_EXIT(&rx_refcnt_mutex);
6373         conn->natKeepAliveEvent =
6374             rxevent_Post(&when, &now, rxi_NatKeepAliveEvent, conn, NULL, 0);
6375     }
6376 }
6377
6378 void
6379 rx_SetConnSecondsUntilNatPing(struct rx_connection *conn, afs_int32 seconds)
6380 {
6381     MUTEX_ENTER(&conn->conn_data_lock);
6382     conn->secondsUntilNatPing = seconds;
6383     if (seconds != 0) {
6384         if (!(conn->flags & RX_CONN_ATTACHWAIT))
6385             rxi_ScheduleNatKeepAliveEvent(conn);
6386         else
6387             conn->flags |= RX_CONN_NAT_PING;
6388     }
6389     MUTEX_EXIT(&conn->conn_data_lock);
6390 }
6391
6392 void
6393 rxi_NatKeepAliveOn(struct rx_connection *conn)
6394 {
6395     MUTEX_ENTER(&conn->conn_data_lock);
6396     /* if it's already attached */
6397     if (!(conn->flags & RX_CONN_ATTACHWAIT))
6398         rxi_ScheduleNatKeepAliveEvent(conn);
6399     else
6400         conn->flags |= RX_CONN_NAT_PING;
6401     MUTEX_EXIT(&conn->conn_data_lock);
6402 }
6403
6404 /* When a call is in progress, this routine is called occasionally to
6405  * make sure that some traffic has arrived (or been sent to) the peer.
6406  * If nothing has arrived in a reasonable amount of time, the call is
6407  * declared dead; if nothing has been sent for a while, we send a
6408  * keep-alive packet (if we're actually trying to keep the call alive)
6409  */
6410 void
6411 rxi_KeepAliveEvent(struct rxevent *event, void *arg1, void *dummy,
6412                    int dummy2)
6413 {
6414     struct rx_call *call = arg1;
6415     struct rx_connection *conn;
6416     afs_uint32 now;
6417
6418     MUTEX_ENTER(&rx_refcnt_mutex);
6419     CALL_RELE(call, RX_CALL_REFCOUNT_ALIVE);
6420     MUTEX_EXIT(&rx_refcnt_mutex);
6421     MUTEX_ENTER(&call->lock);
6422
6423     if (event == call->keepAliveEvent) {
6424         rxevent_Put(call->keepAliveEvent);
6425         call->keepAliveEvent = NULL;
6426     }
6427
6428     now = clock_Sec();
6429
6430 #ifdef RX_ENABLE_LOCKS
6431     if (rxi_CheckCall(call, 0)) {
6432         MUTEX_EXIT(&call->lock);
6433         return;
6434     }
6435 #else /* RX_ENABLE_LOCKS */
6436     if (rxi_CheckCall(call))
6437         return;
6438 #endif /* RX_ENABLE_LOCKS */
6439
6440     /* Don't try to keep alive dallying calls */
6441     if (call->state == RX_STATE_DALLY) {
6442         MUTEX_EXIT(&call->lock);
6443         return;
6444     }
6445
6446     conn = call->conn;
6447     if ((now - call->lastSendTime) > conn->secondsUntilPing) {
6448         /* Don't try to send keepalives if there is unacknowledged data */
6449         /* the rexmit code should be good enough, this little hack
6450          * doesn't quite work XXX */
6451         (void)rxi_SendAck(call, NULL, 0, RX_ACK_PING, 0);
6452     }
6453     rxi_ScheduleKeepAliveEvent(call);
6454     MUTEX_EXIT(&call->lock);
6455 }
6456
6457 /* Does what's on the nameplate. */
6458 void
6459 rxi_GrowMTUEvent(struct rxevent *event, void *arg1, void *dummy, int dummy2)
6460 {
6461     struct rx_call *call = arg1;
6462     struct rx_connection *conn;
6463
6464     MUTEX_ENTER(&rx_refcnt_mutex);
6465     CALL_RELE(call, RX_CALL_REFCOUNT_ALIVE);
6466     MUTEX_EXIT(&rx_refcnt_mutex);
6467     MUTEX_ENTER(&call->lock);
6468
6469     if (event == call->growMTUEvent) {
6470         rxevent_Put(call->growMTUEvent);
6471         call->growMTUEvent = NULL;
6472     }
6473
6474 #ifdef RX_ENABLE_LOCKS
6475     if (rxi_CheckCall(call, 0)) {
6476         MUTEX_EXIT(&call->lock);
6477         return;
6478     }
6479 #else /* RX_ENABLE_LOCKS */
6480     if (rxi_CheckCall(call))
6481         return;
6482 #endif /* RX_ENABLE_LOCKS */
6483
6484     /* Don't bother with dallying calls */
6485     if (call->state == RX_STATE_DALLY) {
6486         MUTEX_EXIT(&call->lock);
6487         return;
6488     }
6489
6490     conn = call->conn;
6491
6492     /*
6493      * keep being scheduled, just don't do anything if we're at peak,
6494      * or we're not set up to be properly handled (idle timeout required)
6495      */
6496     if ((conn->peer->maxPacketSize != 0) &&
6497         (conn->peer->natMTU < RX_MAX_PACKET_SIZE) &&
6498         (conn->idleDeadErr))
6499         (void)rxi_SendAck(call, NULL, 0, RX_ACK_MTU, 0);
6500     rxi_ScheduleGrowMTUEvent(call, 0);
6501     MUTEX_EXIT(&call->lock);
6502 }
6503
6504 void
6505 rxi_ScheduleKeepAliveEvent(struct rx_call *call)
6506 {
6507     if (!call->keepAliveEvent) {
6508         struct clock when, now;
6509         clock_GetTime(&now);
6510         when = now;
6511         when.sec += call->conn->secondsUntilPing;
6512         MUTEX_ENTER(&rx_refcnt_mutex);
6513         CALL_HOLD(call, RX_CALL_REFCOUNT_ALIVE);
6514         MUTEX_EXIT(&rx_refcnt_mutex);
6515         call->keepAliveEvent =
6516             rxevent_Post(&when, &now, rxi_KeepAliveEvent, call, NULL, 0);
6517     }
6518 }
6519
6520 void
6521 rxi_ScheduleGrowMTUEvent(struct rx_call *call, int secs)
6522 {
6523     if (!call->growMTUEvent) {
6524         struct clock when, now;
6525
6526         clock_GetTime(&now);
6527         when = now;
6528         if (!secs) {
6529             if (call->conn->secondsUntilPing)
6530                 secs = (6*call->conn->secondsUntilPing)-1;
6531
6532             if (call->conn->secondsUntilDead)
6533                 secs = MIN(secs, (call->conn->secondsUntilDead-1));
6534         }
6535
6536         when.sec += secs;
6537         MUTEX_ENTER(&rx_refcnt_mutex);
6538         CALL_HOLD(call, RX_CALL_REFCOUNT_ALIVE);
6539         MUTEX_EXIT(&rx_refcnt_mutex);
6540         call->growMTUEvent =
6541             rxevent_Post(&when, &now, rxi_GrowMTUEvent, call, NULL, 0);
6542     }
6543 }
6544
6545 /* N.B. rxi_KeepAliveOff:  is defined earlier as a macro */
6546 void
6547 rxi_KeepAliveOn(struct rx_call *call)
6548 {
6549     /* Pretend last packet received was received now--i.e. if another
6550      * packet isn't received within the keep alive time, then the call
6551      * will die; Initialize last send time to the current time--even
6552      * if a packet hasn't been sent yet.  This will guarantee that a
6553      * keep-alive is sent within the ping time */
6554     call->lastReceiveTime = call->lastSendTime = clock_Sec();
6555     rxi_ScheduleKeepAliveEvent(call);
6556 }
6557
6558 void
6559 rxi_GrowMTUOn(struct rx_call *call)
6560 {
6561     struct rx_connection *conn = call->conn;
6562     MUTEX_ENTER(&conn->conn_data_lock);
6563     conn->lastPingSizeSer = conn->lastPingSize = 0;
6564     MUTEX_EXIT(&conn->conn_data_lock);
6565     rxi_ScheduleGrowMTUEvent(call, 1);
6566 }
6567
6568 /* This routine is called to send connection abort messages
6569  * that have been delayed to throttle looping clients. */
6570 void
6571 rxi_SendDelayedConnAbort(struct rxevent *event, void *arg1, void *unused,
6572                          int unused2)
6573 {
6574     struct rx_connection *conn = arg1;
6575
6576     afs_int32 error;
6577     struct rx_packet *packet;
6578
6579     MUTEX_ENTER(&conn->conn_data_lock);
6580     rxevent_Put(conn->delayedAbortEvent);
6581     conn->delayedAbortEvent = NULL;
6582     error = htonl(conn->error);
6583     conn->abortCount++;
6584     MUTEX_EXIT(&conn->conn_data_lock);
6585     packet = rxi_AllocPacket(RX_PACKET_CLASS_SPECIAL);
6586     if (packet) {
6587         packet =
6588             rxi_SendSpecial((struct rx_call *)0, conn, packet,
6589                             RX_PACKET_TYPE_ABORT, (char *)&error,
6590                             sizeof(error), 0);
6591         rxi_FreePacket(packet);
6592     }
6593 }
6594
6595 /* This routine is called to send call abort messages
6596  * that have been delayed to throttle looping clients. */
6597 static void
6598 rxi_SendDelayedCallAbort(struct rxevent *event, void *arg1, void *dummy,
6599                          int dummy2)
6600 {
6601     struct rx_call *call = arg1;
6602
6603     afs_int32 error;
6604     struct rx_packet *packet;
6605
6606     MUTEX_ENTER(&call->lock);
6607     rxevent_Put(call->delayedAbortEvent);
6608     call->delayedAbortEvent = NULL;
6609     error = htonl(call->error);
6610     call->abortCount++;
6611     packet = rxi_AllocPacket(RX_PACKET_CLASS_SPECIAL);
6612     if (packet) {
6613         packet =
6614             rxi_SendSpecial(call, call->conn, packet, RX_PACKET_TYPE_ABORT,
6615                             (char *)&error, sizeof(error), 0);
6616         rxi_FreePacket(packet);
6617     }
6618     MUTEX_EXIT(&call->lock);
6619     MUTEX_ENTER(&rx_refcnt_mutex);
6620     CALL_RELE(call, RX_CALL_REFCOUNT_ABORT);
6621     MUTEX_EXIT(&rx_refcnt_mutex);
6622 }
6623
6624 /* This routine is called periodically (every RX_AUTH_REQUEST_TIMEOUT
6625  * seconds) to ask the client to authenticate itself.  The routine
6626  * issues a challenge to the client, which is obtained from the
6627  * security object associated with the connection */
6628 void
6629 rxi_ChallengeEvent(struct rxevent *event,
6630                    void *arg0, void *arg1, int tries)
6631 {
6632     struct rx_connection *conn = arg0;
6633
6634     if (event) {
6635         rxevent_Put(conn->challengeEvent);
6636         conn->challengeEvent = NULL;
6637     }
6638
6639     if (RXS_CheckAuthentication(conn->securityObject, conn) != 0) {
6640         struct rx_packet *packet;
6641         struct clock when, now;
6642
6643         if (tries <= 0) {
6644             /* We've failed to authenticate for too long.
6645              * Reset any calls waiting for authentication;
6646              * they are all in RX_STATE_PRECALL.
6647              */
6648             int i;
6649
6650             MUTEX_ENTER(&conn->conn_call_lock);
6651             for (i = 0; i < RX_MAXCALLS; i++) {
6652                 struct rx_call *call = conn->call[i];
6653                 if (call) {
6654                     MUTEX_ENTER(&call->lock);
6655                     if (call->state == RX_STATE_PRECALL) {
6656                         rxi_CallError(call, RX_CALL_DEAD);
6657                         rxi_SendCallAbort(call, NULL, 0, 0);
6658                     }
6659                     MUTEX_EXIT(&call->lock);
6660                 }
6661             }
6662             MUTEX_EXIT(&conn->conn_call_lock);
6663             return;
6664         }
6665
6666         packet = rxi_AllocPacket(RX_PACKET_CLASS_SPECIAL);
6667         if (packet) {
6668             /* If there's no packet available, do this later. */
6669             RXS_GetChallenge(conn->securityObject, conn, packet);
6670             rxi_SendSpecial((struct rx_call *)0, conn, packet,
6671                             RX_PACKET_TYPE_CHALLENGE, NULL, -1, 0);
6672             rxi_FreePacket(packet);
6673         }
6674         clock_GetTime(&now);
6675         when = now;
6676         when.sec += RX_CHALLENGE_TIMEOUT;
6677         conn->challengeEvent =
6678             rxevent_Post(&when, &now, rxi_ChallengeEvent, conn, 0,
6679                          (tries - 1));
6680     }
6681 }
6682
6683 /* Call this routine to start requesting the client to authenticate
6684  * itself.  This will continue until authentication is established,
6685  * the call times out, or an invalid response is returned.  The
6686  * security object associated with the connection is asked to create
6687  * the challenge at this time.  N.B.  rxi_ChallengeOff is a macro,
6688  * defined earlier. */
6689 void
6690 rxi_ChallengeOn(struct rx_connection *conn)
6691 {
6692     if (!conn->challengeEvent) {
6693         RXS_CreateChallenge(conn->securityObject, conn);
6694         rxi_ChallengeEvent(NULL, conn, 0, RX_CHALLENGE_MAXTRIES);
6695     };
6696 }
6697
6698
6699 /* rxi_ComputeRoundTripTime is called with peer locked. */
6700 /* peer may be null */
6701 static void
6702 rxi_ComputeRoundTripTime(struct rx_packet *p,
6703                          struct rx_ackPacket *ack,
6704                          struct rx_call *call,
6705                          struct rx_peer *peer,
6706                          struct clock *now)
6707 {
6708     struct clock thisRtt, *sentp;
6709     int rtt_timeout;
6710     int serial;
6711
6712     /* If the ACK is delayed, then do nothing */
6713     if (ack->reason == RX_ACK_DELAY)
6714         return;
6715
6716     /* On the wire, jumbograms are a single UDP packet. We shouldn't count
6717      * their RTT multiple times, so only include the RTT of the last packet
6718      * in a jumbogram */
6719     if (p->flags & RX_JUMBO_PACKET)
6720         return;
6721
6722     /* Use the serial number to determine which transmission the ACK is for,
6723      * and set the sent time to match this. If we have no serial number, then
6724      * only use the ACK for RTT calculations if the packet has not been
6725      * retransmitted
6726      */
6727
6728     serial = ntohl(ack->serial);
6729     if (serial) {
6730         if (serial == p->header.serial) {
6731             sentp = &p->timeSent;
6732         } else if (serial == p->firstSerial) {
6733             sentp = &p->firstSent;
6734         } else if (clock_Eq(&p->timeSent, &p->firstSent)) {
6735             sentp = &p->firstSent;
6736         } else
6737             return;
6738     } else {
6739         if (clock_Eq(&p->timeSent, &p->firstSent)) {
6740             sentp = &p->firstSent;
6741         } else
6742             return;
6743     }
6744
6745     thisRtt = *now;
6746
6747     if (clock_Lt(&thisRtt, sentp))
6748         return;                 /* somebody set the clock back, don't count this time. */
6749
6750     clock_Sub(&thisRtt, sentp);
6751     dpf(("rxi_ComputeRoundTripTime(call=%d packet=%"AFS_PTR_FMT" rttp=%d.%06d sec)\n",
6752           p->header.callNumber, p, thisRtt.sec, thisRtt.usec));
6753
6754     if (clock_IsZero(&thisRtt)) {
6755         /*
6756          * The actual round trip time is shorter than the
6757          * clock_GetTime resolution.  It is most likely 1ms or 100ns.
6758          * Since we can't tell which at the moment we will assume 1ms.
6759          */
6760         thisRtt.usec = 1000;
6761     }
6762
6763     if (rx_stats_active) {
6764         MUTEX_ENTER(&rx_stats_mutex);
6765         if (clock_Lt(&thisRtt, &rx_stats.minRtt))
6766             rx_stats.minRtt = thisRtt;
6767         if (clock_Gt(&thisRtt, &rx_stats.maxRtt)) {
6768             if (thisRtt.sec > 60) {
6769                 MUTEX_EXIT(&rx_stats_mutex);
6770                 return;         /* somebody set the clock ahead */
6771             }
6772             rx_stats.maxRtt = thisRtt;
6773         }
6774         clock_Add(&rx_stats.totalRtt, &thisRtt);
6775         rx_atomic_inc(&rx_stats.nRttSamples);
6776         MUTEX_EXIT(&rx_stats_mutex);
6777     }
6778
6779     /* better rtt calculation courtesy of UMich crew (dave,larry,peter,?) */
6780
6781     /* Apply VanJacobson round-trip estimations */
6782     if (call->rtt) {
6783         int delta;
6784
6785         /*
6786          * srtt (call->rtt) is in units of one-eighth-milliseconds.
6787          * srtt is stored as fixed point with 3 bits after the binary
6788          * point (i.e., scaled by 8). The following magic is
6789          * equivalent to the smoothing algorithm in rfc793 with an
6790          * alpha of .875 (srtt' = rtt/8 + srtt*7/8 in fixed point).
6791          * srtt'*8 = rtt + srtt*7
6792          * srtt'*8 = srtt*8 + rtt - srtt
6793          * srtt' = srtt + rtt/8 - srtt/8
6794          * srtt' = srtt + (rtt - srtt)/8
6795          */
6796
6797         delta = _8THMSEC(&thisRtt) - call->rtt;
6798         call->rtt += (delta >> 3);
6799
6800         /*
6801          * We accumulate a smoothed rtt variance (actually, a smoothed
6802          * mean difference), then set the retransmit timer to smoothed
6803          * rtt + 4 times the smoothed variance (was 2x in van's original
6804          * paper, but 4x works better for me, and apparently for him as
6805          * well).
6806          * rttvar is stored as
6807          * fixed point with 2 bits after the binary point (scaled by
6808          * 4).  The following is equivalent to rfc793 smoothing with
6809          * an alpha of .75 (rttvar' = rttvar*3/4 + |delta| / 4).
6810          *   rttvar'*4 = rttvar*3 + |delta|
6811          *   rttvar'*4 = rttvar*4 + |delta| - rttvar
6812          *   rttvar' = rttvar + |delta|/4 - rttvar/4
6813          *   rttvar' = rttvar + (|delta| - rttvar)/4
6814          * This replaces rfc793's wired-in beta.
6815          * dev*4 = dev*4 + (|actual - expected| - dev)
6816          */
6817
6818         if (delta < 0)
6819             delta = -delta;
6820
6821         delta -= (call->rtt_dev << 1);
6822         call->rtt_dev += (delta >> 3);
6823     } else {
6824         /* I don't have a stored RTT so I start with this value.  Since I'm
6825          * probably just starting a call, and will be pushing more data down
6826          * this, I expect congestion to increase rapidly.  So I fudge a
6827          * little, and I set deviance to half the rtt.  In practice,
6828          * deviance tends to approach something a little less than
6829          * half the smoothed rtt. */
6830         call->rtt = _8THMSEC(&thisRtt) + 8;
6831         call->rtt_dev = call->rtt >> 2; /* rtt/2: they're scaled differently */
6832     }
6833     /* the smoothed RTT time is RTT + 4*MDEV
6834      *
6835      * We allow a user specified minimum to be set for this, to allow clamping
6836      * at a minimum value in the same way as TCP. In addition, we have to allow
6837      * for the possibility that this packet is answered by a delayed ACK, so we
6838      * add on a fixed 200ms to account for that timer expiring.
6839      */
6840
6841     rtt_timeout = MAX(((call->rtt >> 3) + call->rtt_dev),
6842                       rx_minPeerTimeout) + 200;
6843     clock_Zero(&call->rto);
6844     clock_Addmsec(&call->rto, rtt_timeout);
6845
6846     /* Update the peer, so any new calls start with our values */
6847     peer->rtt_dev = call->rtt_dev;
6848     peer->rtt = call->rtt;
6849
6850     dpf(("rxi_ComputeRoundTripTime(call=%d packet=%"AFS_PTR_FMT" rtt=%d ms, srtt=%d ms, rtt_dev=%d ms, timeout=%d.%06d sec)\n",
6851           p->header.callNumber, p, MSEC(&thisRtt), call->rtt >> 3, call->rtt_dev >> 2, (call->rto.sec), (call->rto.usec)));
6852 }
6853
6854
6855 /* Find all server connections that have not been active for a long time, and
6856  * toss them */
6857 void
6858 rxi_ReapConnections(struct rxevent *unused, void *unused1, void *unused2,
6859                     int unused3)
6860 {
6861     struct clock now, when;
6862     clock_GetTime(&now);
6863
6864     /* Find server connection structures that haven't been used for
6865      * greater than rx_idleConnectionTime */
6866     {
6867         struct rx_connection **conn_ptr, **conn_end;
6868         int i, havecalls = 0;
6869         MUTEX_ENTER(&rx_connHashTable_lock);
6870         for (conn_ptr = &rx_connHashTable[0], conn_end =
6871              &rx_connHashTable[rx_hashTableSize]; conn_ptr < conn_end;
6872              conn_ptr++) {
6873             struct rx_connection *conn, *next;
6874             struct rx_call *call;
6875             int result;
6876
6877           rereap:
6878             for (conn = *conn_ptr; conn; conn = next) {
6879                 /* XXX -- Shouldn't the connection be locked? */
6880                 next = conn->next;
6881                 havecalls = 0;
6882                 for (i = 0; i < RX_MAXCALLS; i++) {
6883                     call = conn->call[i];
6884                     if (call) {
6885                         int code;
6886                         havecalls = 1;
6887                         code = MUTEX_TRYENTER(&call->lock);
6888                         if (!code)
6889                             continue;
6890 #ifdef RX_ENABLE_LOCKS
6891                         result = rxi_CheckCall(call, 1);
6892 #else /* RX_ENABLE_LOCKS */
6893                         result = rxi_CheckCall(call);
6894 #endif /* RX_ENABLE_LOCKS */
6895                         MUTEX_EXIT(&call->lock);
6896                         if (result == -2) {
6897                             /* If CheckCall freed the call, it might
6898                              * have destroyed  the connection as well,
6899                              * which screws up the linked lists.
6900                              */
6901                             goto rereap;
6902                         }
6903                     }
6904                 }
6905                 if (conn->type == RX_SERVER_CONNECTION) {
6906                     /* This only actually destroys the connection if
6907                      * there are no outstanding calls */
6908                     MUTEX_ENTER(&conn->conn_data_lock);
6909                     MUTEX_ENTER(&rx_refcnt_mutex);
6910                     if (!havecalls && !conn->refCount
6911                         && ((conn->lastSendTime + rx_idleConnectionTime) <
6912                             now.sec)) {
6913                         conn->refCount++;       /* it will be decr in rx_DestroyConn */
6914                         MUTEX_EXIT(&rx_refcnt_mutex);
6915                         MUTEX_EXIT(&conn->conn_data_lock);
6916 #ifdef RX_ENABLE_LOCKS
6917                         rxi_DestroyConnectionNoLock(conn);
6918 #else /* RX_ENABLE_LOCKS */
6919                         rxi_DestroyConnection(conn);
6920 #endif /* RX_ENABLE_LOCKS */
6921                     }
6922 #ifdef RX_ENABLE_LOCKS
6923                     else {
6924                         MUTEX_EXIT(&rx_refcnt_mutex);
6925                         MUTEX_EXIT(&conn->conn_data_lock);
6926                     }
6927 #endif /* RX_ENABLE_LOCKS */
6928                 }
6929             }
6930         }
6931 #ifdef RX_ENABLE_LOCKS
6932         while (rx_connCleanup_list) {
6933             struct rx_connection *conn;
6934             conn = rx_connCleanup_list;
6935             rx_connCleanup_list = rx_connCleanup_list->next;
6936             MUTEX_EXIT(&rx_connHashTable_lock);
6937             rxi_CleanupConnection(conn);
6938             MUTEX_ENTER(&rx_connHashTable_lock);
6939         }
6940         MUTEX_EXIT(&rx_connHashTable_lock);
6941 #endif /* RX_ENABLE_LOCKS */
6942     }
6943
6944     /* Find any peer structures that haven't been used (haven't had an
6945      * associated connection) for greater than rx_idlePeerTime */
6946     {
6947         struct rx_peer **peer_ptr, **peer_end;
6948         int code;
6949
6950         /*
6951          * Why do we need to hold the rx_peerHashTable_lock across
6952          * the incrementing of peer_ptr since the rx_peerHashTable
6953          * array is not changing?  We don't.
6954          *
6955          * By dropping the lock periodically we can permit other
6956          * activities to be performed while a rxi_ReapConnections
6957          * call is in progress.  The goal of reap connections
6958          * is to clean up quickly without causing large amounts
6959          * of contention.  Therefore, it is important that global
6960          * mutexes not be held for extended periods of time.
6961          */
6962         for (peer_ptr = &rx_peerHashTable[0], peer_end =
6963              &rx_peerHashTable[rx_hashTableSize]; peer_ptr < peer_end;
6964              peer_ptr++) {
6965             struct rx_peer *peer, *next, *prev;
6966
6967             MUTEX_ENTER(&rx_peerHashTable_lock);
6968             for (prev = peer = *peer_ptr; peer; peer = next) {
6969                 next = peer->next;
6970                 code = MUTEX_TRYENTER(&peer->peer_lock);
6971                 if ((code) && (peer->refCount == 0)
6972                     && ((peer->idleWhen + rx_idlePeerTime) < now.sec)) {
6973                     rx_interface_stat_p rpc_stat, nrpc_stat;
6974                     size_t space;
6975
6976                     /*
6977                      * now know that this peer object is one to be
6978                      * removed from the hash table.  Once it is removed
6979                      * it can't be referenced by other threads.
6980                      * Lets remove it first and decrement the struct
6981                      * nPeerStructs count.
6982                      */
6983                     if (peer == *peer_ptr) {
6984                         *peer_ptr = next;
6985                         prev = next;
6986                     } else
6987                         prev->next = next;
6988
6989                     if (rx_stats_active)
6990                         rx_atomic_dec(&rx_stats.nPeerStructs);
6991
6992                     /*
6993                      * Now if we hold references on 'prev' and 'next'
6994                      * we can safely drop the rx_peerHashTable_lock
6995                      * while we destroy this 'peer' object.
6996                      */
6997                     if (next)
6998                         next->refCount++;
6999                     if (prev)
7000                         prev->refCount++;
7001                     MUTEX_EXIT(&rx_peerHashTable_lock);
7002
7003                     MUTEX_EXIT(&peer->peer_lock);
7004                     MUTEX_DESTROY(&peer->peer_lock);
7005                     for (queue_Scan
7006                          (&peer->rpcStats, rpc_stat, nrpc_stat,
7007                           rx_interface_stat)) {
7008                         unsigned int num_funcs;
7009                         if (!rpc_stat)
7010                             break;
7011                         queue_Remove(&rpc_stat->queue_header);
7012                         queue_Remove(&rpc_stat->all_peers);
7013                         num_funcs = rpc_stat->stats[0].func_total;
7014                         space =
7015                             sizeof(rx_interface_stat_t) +
7016                             rpc_stat->stats[0].func_total *
7017                             sizeof(rx_function_entry_v1_t);
7018
7019                         rxi_Free(rpc_stat, space);
7020
7021                         MUTEX_ENTER(&rx_rpc_stats);
7022                         rxi_rpc_peer_stat_cnt -= num_funcs;
7023                         MUTEX_EXIT(&rx_rpc_stats);
7024                     }
7025                     rxi_FreePeer(peer);
7026
7027                     /*
7028                      * Regain the rx_peerHashTable_lock and
7029                      * decrement the reference count on 'prev'
7030                      * and 'next'.
7031                      */
7032                     MUTEX_ENTER(&rx_peerHashTable_lock);
7033                     if (next)
7034                         next->refCount--;
7035                     if (prev)
7036                         prev->refCount--;
7037                 } else {
7038                     if (code) {
7039                         MUTEX_EXIT(&peer->peer_lock);
7040                     }
7041                     prev = peer;
7042                 }
7043             }
7044             MUTEX_EXIT(&rx_peerHashTable_lock);
7045         }
7046     }
7047
7048     /* THIS HACK IS A TEMPORARY HACK.  The idea is that the race condition in
7049      * rxi_AllocSendPacket, if it hits, will be handled at the next conn
7050      * GC, just below.  Really, we shouldn't have to keep moving packets from
7051      * one place to another, but instead ought to always know if we can
7052      * afford to hold onto a packet in its particular use.  */
7053     MUTEX_ENTER(&rx_freePktQ_lock);
7054     if (rx_waitingForPackets) {
7055         rx_waitingForPackets = 0;
7056 #ifdef  RX_ENABLE_LOCKS
7057         CV_BROADCAST(&rx_waitingForPackets_cv);
7058 #else
7059         osi_rxWakeup(&rx_waitingForPackets);
7060 #endif
7061     }
7062     MUTEX_EXIT(&rx_freePktQ_lock);
7063
7064     when = now;
7065     when.sec += RX_REAP_TIME;   /* Check every RX_REAP_TIME seconds */
7066     rxevent_Put(rxevent_Post(&when, &now, rxi_ReapConnections, 0, NULL, 0));
7067 }
7068
7069
7070 /* rxs_Release - This isn't strictly necessary but, since the macro name from
7071  * rx.h is sort of strange this is better.  This is called with a security
7072  * object before it is discarded.  Each connection using a security object has
7073  * its own refcount to the object so it won't actually be freed until the last
7074  * connection is destroyed.
7075  *
7076  * This is the only rxs module call.  A hold could also be written but no one
7077  * needs it. */
7078
7079 int
7080 rxs_Release(struct rx_securityClass *aobj)
7081 {
7082     return RXS_Close(aobj);
7083 }
7084
7085 void
7086 rxi_DebugInit(void)
7087 {
7088 #ifdef RXDEBUG
7089 #ifdef AFS_NT40_ENV
7090 #define TRACE_OPTION_RX_DEBUG 16
7091     HKEY parmKey;
7092     DWORD dummyLen;
7093     DWORD TraceOption;
7094     long code;
7095
7096     rxdebug_active = 0;
7097
7098     code = RegOpenKeyEx(HKEY_LOCAL_MACHINE, AFSREG_CLT_SVC_PARAM_SUBKEY,
7099                          0, KEY_QUERY_VALUE, &parmKey);
7100     if (code != ERROR_SUCCESS)
7101         return;
7102
7103     dummyLen = sizeof(TraceOption);
7104     code = RegQueryValueEx(parmKey, "TraceOption", NULL, NULL,
7105                            (BYTE *) &TraceOption, &dummyLen);
7106     if (code == ERROR_SUCCESS) {
7107         rxdebug_active = (TraceOption & TRACE_OPTION_RX_DEBUG) ? 1 : 0;
7108     }
7109     RegCloseKey (parmKey);
7110 #endif /* AFS_NT40_ENV */
7111 #endif
7112 }
7113
7114 void
7115 rx_DebugOnOff(int on)
7116 {
7117 #ifdef RXDEBUG
7118 #ifdef AFS_NT40_ENV
7119     rxdebug_active = on;
7120 #endif
7121 #endif
7122 }
7123
7124 void
7125 rx_StatsOnOff(int on)
7126 {
7127     rx_stats_active = on;
7128 }
7129
7130
7131 /* Don't call this debugging routine directly; use dpf */
7132 void
7133 rxi_DebugPrint(char *format, ...)
7134 {
7135 #ifdef RXDEBUG
7136     va_list ap;
7137 #ifdef AFS_NT40_ENV
7138     char msg[512];
7139     char tformat[256];
7140     size_t len;
7141
7142     va_start(ap, format);
7143
7144     len = _snprintf(tformat, sizeof(tformat), "tid[%d] %s", GetCurrentThreadId(), format);
7145
7146     if (len > 0) {
7147         len = _vsnprintf(msg, sizeof(msg)-2, tformat, ap);
7148         if (len > 0)
7149             OutputDebugString(msg);
7150     }
7151     va_end(ap);
7152 #else
7153     struct clock now;
7154
7155     va_start(ap, format);
7156
7157     clock_GetTime(&now);
7158     fprintf(rx_Log, " %d.%06d:", (unsigned int)now.sec,
7159             (unsigned int)now.usec);
7160     vfprintf(rx_Log, format, ap);
7161     va_end(ap);
7162 #endif
7163 #endif
7164 }
7165
7166 #ifndef KERNEL
7167 /*
7168  * This function is used to process the rx_stats structure that is local
7169  * to a process as well as an rx_stats structure received from a remote
7170  * process (via rxdebug).  Therefore, it needs to do minimal version
7171  * checking.
7172  */
7173 void
7174 rx_PrintTheseStats(FILE * file, struct rx_statistics *s, int size,
7175                    afs_int32 freePackets, char version)
7176 {
7177     int i;
7178
7179     if (size != sizeof(struct rx_statistics)) {
7180         fprintf(file,
7181                 "Unexpected size of stats structure: was %d, expected %" AFS_SIZET_FMT "\n",
7182                 size, sizeof(struct rx_statistics));
7183     }
7184
7185     fprintf(file, "rx stats: free packets %d, allocs %d, ", (int)freePackets,
7186             s->packetRequests);
7187
7188     if (version >= RX_DEBUGI_VERSION_W_NEWPACKETTYPES) {
7189         fprintf(file, "alloc-failures(rcv %u/%u,send %u/%u,ack %u)\n",
7190                 s->receivePktAllocFailures, s->receiveCbufPktAllocFailures,
7191                 s->sendPktAllocFailures, s->sendCbufPktAllocFailures,
7192                 s->specialPktAllocFailures);
7193     } else {
7194         fprintf(file, "alloc-failures(rcv %u,send %u,ack %u)\n",
7195                 s->receivePktAllocFailures, s->sendPktAllocFailures,
7196                 s->specialPktAllocFailures);
7197     }
7198
7199     fprintf(file,
7200             "   greedy %u, " "bogusReads %u (last from host %x), "
7201             "noPackets %u, " "noBuffers %u, " "selects %u, "
7202             "sendSelects %u\n", s->socketGreedy, s->bogusPacketOnRead,
7203             s->bogusHost, s->noPacketOnRead, s->noPacketBuffersOnRead,
7204             s->selects, s->sendSelects);
7205
7206     fprintf(file, "   packets read: ");
7207     for (i = 0; i < RX_N_PACKET_TYPES; i++) {
7208         fprintf(file, "%s %u ", rx_packetTypes[i], s->packetsRead[i]);
7209     }
7210     fprintf(file, "\n");
7211
7212     fprintf(file,
7213             "   other read counters: data %u, " "ack %u, " "dup %u "
7214             "spurious %u " "dally %u\n", s->dataPacketsRead,
7215             s->ackPacketsRead, s->dupPacketsRead, s->spuriousPacketsRead,
7216             s->ignorePacketDally);
7217
7218     fprintf(file, "   packets sent: ");
7219     for (i = 0; i < RX_N_PACKET_TYPES; i++) {
7220         fprintf(file, "%s %u ", rx_packetTypes[i], s->packetsSent[i]);
7221     }
7222     fprintf(file, "\n");
7223
7224     fprintf(file,
7225             "   other send counters: ack %u, " "data %u (not resends), "
7226             "resends %u, " "pushed %u, " "acked&ignored %u\n",
7227             s->ackPacketsSent, s->dataPacketsSent, s->dataPacketsReSent,
7228             s->dataPacketsPushed, s->ignoreAckedPacket);
7229
7230     fprintf(file,
7231             "   \t(these should be small) sendFailed %u, " "fatalErrors %u\n",
7232             s->netSendFailures, (int)s->fatalErrors);
7233
7234     if (s->nRttSamples) {
7235         fprintf(file, "   Average rtt is %0.3f, with %d samples\n",
7236                 clock_Float(&s->totalRtt) / s->nRttSamples, s->nRttSamples);
7237
7238         fprintf(file, "   Minimum rtt is %0.3f, maximum is %0.3f\n",
7239                 clock_Float(&s->minRtt), clock_Float(&s->maxRtt));
7240     }
7241
7242     fprintf(file,
7243             "   %d server connections, " "%d client connections, "
7244             "%d peer structs, " "%d call structs, " "%d free call structs\n",
7245             s->nServerConns, s->nClientConns, s->nPeerStructs,
7246             s->nCallStructs, s->nFreeCallStructs);
7247
7248 #if     !defined(AFS_PTHREAD_ENV) && !defined(AFS_USE_GETTIMEOFDAY)
7249     fprintf(file, "   %d clock updates\n", clock_nUpdates);
7250 #endif
7251 }
7252
7253 /* for backward compatibility */
7254 void
7255 rx_PrintStats(FILE * file)
7256 {
7257     MUTEX_ENTER(&rx_stats_mutex);
7258     rx_PrintTheseStats(file, (struct rx_statistics *) &rx_stats,
7259                        sizeof(rx_stats), rx_nFreePackets,
7260                        RX_DEBUGI_VERSION);
7261     MUTEX_EXIT(&rx_stats_mutex);
7262 }
7263
7264 void
7265 rx_PrintPeerStats(FILE * file, struct rx_peer *peer)
7266 {
7267     fprintf(file, "Peer %x.%d.  " "Burst size %d, " "burst wait %d.%06d.\n",
7268             ntohl(peer->host), (int)ntohs(peer->port), (int)peer->burstSize,
7269             (int)peer->burstWait.sec, (int)peer->burstWait.usec);
7270
7271     fprintf(file,
7272             "   Rtt %d, " "total sent %d, " "resent %d\n",
7273             peer->rtt, peer->nSent, peer->reSends);
7274
7275     fprintf(file,
7276             "   Packet size %d, " "max in packet skew %d, "
7277             "max out packet skew %d\n", peer->ifMTU, (int)peer->inPacketSkew,
7278             (int)peer->outPacketSkew);
7279 }
7280 #endif
7281
7282 #if defined(AFS_PTHREAD_ENV) && defined(RXDEBUG)
7283 /*
7284  * This mutex protects the following static variables:
7285  * counter
7286  */
7287
7288 #define LOCK_RX_DEBUG MUTEX_ENTER(&rx_debug_mutex)
7289 #define UNLOCK_RX_DEBUG MUTEX_EXIT(&rx_debug_mutex)
7290 #else
7291 #define LOCK_RX_DEBUG
7292 #define UNLOCK_RX_DEBUG
7293 #endif /* AFS_PTHREAD_ENV */
7294
7295 #if defined(RXDEBUG) || defined(MAKEDEBUGCALL)
7296 static int
7297 MakeDebugCall(osi_socket socket, afs_uint32 remoteAddr, afs_uint16 remotePort,
7298               u_char type, void *inputData, size_t inputLength,
7299               void *outputData, size_t outputLength)
7300 {
7301     static afs_int32 counter = 100;
7302     time_t waitTime, waitCount;
7303     struct rx_header theader;
7304     char tbuffer[1500];
7305     afs_int32 code;
7306     struct timeval tv_now, tv_wake, tv_delta;
7307     struct sockaddr_in taddr, faddr;
7308 #ifdef AFS_NT40_ENV
7309     int faddrLen;
7310 #else
7311     socklen_t faddrLen;
7312 #endif
7313     fd_set imask;
7314     char *tp;
7315
7316     waitTime = 1;
7317     waitCount = 5;
7318     LOCK_RX_DEBUG;
7319     counter++;
7320     UNLOCK_RX_DEBUG;
7321     tp = &tbuffer[sizeof(struct rx_header)];
7322     taddr.sin_family = AF_INET;
7323     taddr.sin_port = remotePort;
7324     taddr.sin_addr.s_addr = remoteAddr;
7325 #ifdef STRUCT_SOCKADDR_HAS_SA_LEN
7326     taddr.sin_len = sizeof(struct sockaddr_in);
7327 #endif
7328     while (1) {
7329         memset(&theader, 0, sizeof(theader));
7330         theader.epoch = htonl(999);
7331         theader.cid = 0;
7332         theader.callNumber = htonl(counter);
7333         theader.seq = 0;
7334         theader.serial = 0;
7335         theader.type = type;
7336         theader.flags = RX_CLIENT_INITIATED | RX_LAST_PACKET;
7337         theader.serviceId = 0;
7338
7339         memcpy(tbuffer, &theader, sizeof(theader));
7340         memcpy(tp, inputData, inputLength);
7341         code =
7342             sendto(socket, tbuffer, inputLength + sizeof(struct rx_header), 0,
7343                    (struct sockaddr *)&taddr, sizeof(struct sockaddr_in));
7344
7345         /* see if there's a packet available */
7346         gettimeofday(&tv_wake, NULL);
7347         tv_wake.tv_sec += waitTime;
7348         for (;;) {
7349             FD_ZERO(&imask);
7350             FD_SET(socket, &imask);
7351             tv_delta.tv_sec = tv_wake.tv_sec;
7352             tv_delta.tv_usec = tv_wake.tv_usec;
7353             gettimeofday(&tv_now, NULL);
7354
7355             if (tv_delta.tv_usec < tv_now.tv_usec) {
7356                 /* borrow */
7357                 tv_delta.tv_usec += 1000000;
7358                 tv_delta.tv_sec--;
7359             }
7360             tv_delta.tv_usec -= tv_now.tv_usec;
7361
7362             if (tv_delta.tv_sec < tv_now.tv_sec) {
7363                 /* time expired */
7364                 break;
7365             }
7366             tv_delta.tv_sec -= tv_now.tv_sec;
7367
7368 #ifdef AFS_NT40_ENV
7369             code = select(0, &imask, 0, 0, &tv_delta);
7370 #else /* AFS_NT40_ENV */
7371             code = select(socket + 1, &imask, 0, 0, &tv_delta);
7372 #endif /* AFS_NT40_ENV */
7373             if (code == 1 && FD_ISSET(socket, &imask)) {
7374                 /* now receive a packet */
7375                 faddrLen = sizeof(struct sockaddr_in);
7376                 code =
7377                     recvfrom(socket, tbuffer, sizeof(tbuffer), 0,
7378                              (struct sockaddr *)&faddr, &faddrLen);
7379
7380                 if (code > 0) {
7381                     memcpy(&theader, tbuffer, sizeof(struct rx_header));
7382                     if (counter == ntohl(theader.callNumber))
7383                         goto success;
7384                     continue;
7385                 }
7386             }
7387             break;
7388         }
7389
7390         /* see if we've timed out */
7391         if (!--waitCount) {
7392             return -1;
7393         }
7394         waitTime <<= 1;
7395     }
7396
7397  success:
7398     code -= sizeof(struct rx_header);
7399     if (code > outputLength)
7400         code = outputLength;
7401     memcpy(outputData, tp, code);
7402     return code;
7403 }
7404 #endif /* RXDEBUG */
7405
7406 afs_int32
7407 rx_GetServerDebug(osi_socket socket, afs_uint32 remoteAddr,
7408                   afs_uint16 remotePort, struct rx_debugStats * stat,
7409                   afs_uint32 * supportedValues)
7410 {
7411 #if defined(RXDEBUG) || defined(MAKEDEBUGCALL)
7412     afs_int32 rc = 0;
7413     struct rx_debugIn in;
7414
7415     *supportedValues = 0;
7416     in.type = htonl(RX_DEBUGI_GETSTATS);
7417     in.index = 0;
7418
7419     rc = MakeDebugCall(socket, remoteAddr, remotePort, RX_PACKET_TYPE_DEBUG,
7420                        &in, sizeof(in), stat, sizeof(*stat));
7421
7422     /*
7423      * If the call was successful, fixup the version and indicate
7424      * what contents of the stat structure are valid.
7425      * Also do net to host conversion of fields here.
7426      */
7427
7428     if (rc >= 0) {
7429         if (stat->version >= RX_DEBUGI_VERSION_W_SECSTATS) {
7430             *supportedValues |= RX_SERVER_DEBUG_SEC_STATS;
7431         }
7432         if (stat->version >= RX_DEBUGI_VERSION_W_GETALLCONN) {
7433             *supportedValues |= RX_SERVER_DEBUG_ALL_CONN;
7434         }
7435         if (stat->version >= RX_DEBUGI_VERSION_W_RXSTATS) {
7436             *supportedValues |= RX_SERVER_DEBUG_RX_STATS;
7437         }
7438         if (stat->version >= RX_DEBUGI_VERSION_W_WAITERS) {
7439             *supportedValues |= RX_SERVER_DEBUG_WAITER_CNT;
7440         }
7441         if (stat->version >= RX_DEBUGI_VERSION_W_IDLETHREADS) {
7442             *supportedValues |= RX_SERVER_DEBUG_IDLE_THREADS;
7443         }
7444         if (stat->version >= RX_DEBUGI_VERSION_W_NEWPACKETTYPES) {
7445             *supportedValues |= RX_SERVER_DEBUG_NEW_PACKETS;
7446         }
7447         if (stat->version >= RX_DEBUGI_VERSION_W_GETPEER) {
7448             *supportedValues |= RX_SERVER_DEBUG_ALL_PEER;
7449         }
7450         if (stat->version >= RX_DEBUGI_VERSION_W_WAITED) {
7451             *supportedValues |= RX_SERVER_DEBUG_WAITED_CNT;
7452         }
7453         if (stat->version >= RX_DEBUGI_VERSION_W_PACKETS) {
7454             *supportedValues |= RX_SERVER_DEBUG_PACKETS_CNT;
7455         }
7456         stat->nFreePackets = ntohl(stat->nFreePackets);
7457         stat->packetReclaims = ntohl(stat->packetReclaims);
7458         stat->callsExecuted = ntohl(stat->callsExecuted);
7459         stat->nWaiting = ntohl(stat->nWaiting);
7460         stat->idleThreads = ntohl(stat->idleThreads);
7461         stat->nWaited = ntohl(stat->nWaited);
7462         stat->nPackets = ntohl(stat->nPackets);
7463     }
7464 #else
7465     afs_int32 rc = -1;
7466 #endif
7467     return rc;
7468 }
7469
7470 afs_int32
7471 rx_GetServerStats(osi_socket socket, afs_uint32 remoteAddr,
7472                   afs_uint16 remotePort, struct rx_statistics * stat,
7473                   afs_uint32 * supportedValues)
7474 {
7475 #if defined(RXDEBUG) || defined(MAKEDEBUGCALL)
7476     afs_int32 rc = 0;
7477     struct rx_debugIn in;
7478     afs_int32 *lp = (afs_int32 *) stat;
7479     int i;
7480
7481     /*
7482      * supportedValues is currently unused, but added to allow future
7483      * versioning of this function.
7484      */
7485
7486     *supportedValues = 0;
7487     in.type = htonl(RX_DEBUGI_RXSTATS);
7488     in.index = 0;
7489     memset(stat, 0, sizeof(*stat));
7490
7491     rc = MakeDebugCall(socket, remoteAddr, remotePort, RX_PACKET_TYPE_DEBUG,
7492                        &in, sizeof(in), stat, sizeof(*stat));
7493
7494     if (rc >= 0) {
7495
7496         /*
7497          * Do net to host conversion here
7498          */
7499
7500         for (i = 0; i < sizeof(*stat) / sizeof(afs_int32); i++, lp++) {
7501             *lp = ntohl(*lp);
7502         }
7503     }
7504 #else
7505     afs_int32 rc = -1;
7506 #endif
7507     return rc;
7508 }
7509
7510 afs_int32
7511 rx_GetServerVersion(osi_socket socket, afs_uint32 remoteAddr,
7512                     afs_uint16 remotePort, size_t version_length,
7513                     char *version)
7514 {
7515 #if defined(RXDEBUG) || defined(MAKEDEBUGCALL)
7516     char a[1] = { 0 };
7517     return MakeDebugCall(socket, remoteAddr, remotePort,
7518                          RX_PACKET_TYPE_VERSION, a, 1, version,
7519                          version_length);
7520 #else
7521     return -1;
7522 #endif
7523 }
7524
7525 afs_int32
7526 rx_GetServerConnections(osi_socket socket, afs_uint32 remoteAddr,
7527                         afs_uint16 remotePort, afs_int32 * nextConnection,
7528                         int allConnections, afs_uint32 debugSupportedValues,
7529                         struct rx_debugConn * conn,
7530                         afs_uint32 * supportedValues)
7531 {
7532 #if defined(RXDEBUG) || defined(MAKEDEBUGCALL)
7533     afs_int32 rc = 0;
7534     struct rx_debugIn in;
7535     int i;
7536
7537     /*
7538      * supportedValues is currently unused, but added to allow future
7539      * versioning of this function.
7540      */
7541
7542     *supportedValues = 0;
7543     if (allConnections) {
7544         in.type = htonl(RX_DEBUGI_GETALLCONN);
7545     } else {
7546         in.type = htonl(RX_DEBUGI_GETCONN);
7547     }
7548     in.index = htonl(*nextConnection);
7549     memset(conn, 0, sizeof(*conn));
7550
7551     rc = MakeDebugCall(socket, remoteAddr, remotePort, RX_PACKET_TYPE_DEBUG,
7552                        &in, sizeof(in), conn, sizeof(*conn));
7553
7554     if (rc >= 0) {
7555         *nextConnection += 1;
7556
7557         /*
7558          * Convert old connection format to new structure.
7559          */
7560
7561         if (debugSupportedValues & RX_SERVER_DEBUG_OLD_CONN) {
7562             struct rx_debugConn_vL *vL = (struct rx_debugConn_vL *)conn;
7563 #define MOVEvL(a) (conn->a = vL->a)
7564
7565             /* any old or unrecognized version... */
7566             for (i = 0; i < RX_MAXCALLS; i++) {
7567                 MOVEvL(callState[i]);
7568                 MOVEvL(callMode[i]);
7569                 MOVEvL(callFlags[i]);
7570                 MOVEvL(callOther[i]);
7571             }
7572             if (debugSupportedValues & RX_SERVER_DEBUG_SEC_STATS) {
7573                 MOVEvL(secStats.type);
7574                 MOVEvL(secStats.level);
7575                 MOVEvL(secStats.flags);
7576                 MOVEvL(secStats.expires);
7577                 MOVEvL(secStats.packetsReceived);
7578                 MOVEvL(secStats.packetsSent);
7579                 MOVEvL(secStats.bytesReceived);
7580                 MOVEvL(secStats.bytesSent);
7581             }
7582         }
7583
7584         /*
7585          * Do net to host conversion here
7586          * NOTE:
7587          *    I don't convert host or port since we are most likely
7588          *    going to want these in NBO.
7589          */
7590         conn->cid = ntohl(conn->cid);
7591         conn->serial = ntohl(conn->serial);
7592         for (i = 0; i < RX_MAXCALLS; i++) {
7593             conn->callNumber[i] = ntohl(conn->callNumber[i]);
7594         }
7595         conn->error = ntohl(conn->error);
7596         conn->secStats.flags = ntohl(conn->secStats.flags);
7597         conn->secStats.expires = ntohl(conn->secStats.expires);
7598         conn->secStats.packetsReceived =
7599             ntohl(conn->secStats.packetsReceived);
7600         conn->secStats.packetsSent = ntohl(conn->secStats.packetsSent);
7601         conn->secStats.bytesReceived = ntohl(conn->secStats.bytesReceived);
7602         conn->secStats.bytesSent = ntohl(conn->secStats.bytesSent);
7603         conn->epoch = ntohl(conn->epoch);
7604         conn->natMTU = ntohl(conn->natMTU);
7605     }
7606 #else
7607     afs_int32 rc = -1;
7608 #endif
7609     return rc;
7610 }
7611
7612 afs_int32
7613 rx_GetServerPeers(osi_socket socket, afs_uint32 remoteAddr,
7614                   afs_uint16 remotePort, afs_int32 * nextPeer,
7615                   afs_uint32 debugSupportedValues, struct rx_debugPeer * peer,
7616                   afs_uint32 * supportedValues)
7617 {
7618 #if defined(RXDEBUG) || defined(MAKEDEBUGCALL)
7619     afs_int32 rc = 0;
7620     struct rx_debugIn in;
7621
7622     /*
7623      * supportedValues is currently unused, but added to allow future
7624      * versioning of this function.
7625      */
7626
7627     *supportedValues = 0;
7628     in.type = htonl(RX_DEBUGI_GETPEER);
7629     in.index = htonl(*nextPeer);
7630     memset(peer, 0, sizeof(*peer));
7631
7632     rc = MakeDebugCall(socket, remoteAddr, remotePort, RX_PACKET_TYPE_DEBUG,
7633                        &in, sizeof(in), peer, sizeof(*peer));
7634
7635     if (rc >= 0) {
7636         *nextPeer += 1;
7637
7638         /*
7639          * Do net to host conversion here
7640          * NOTE:
7641          *    I don't convert host or port since we are most likely
7642          *    going to want these in NBO.
7643          */
7644         peer->ifMTU = ntohs(peer->ifMTU);
7645         peer->idleWhen = ntohl(peer->idleWhen);
7646         peer->refCount = ntohs(peer->refCount);
7647         peer->burstWait.sec = ntohl(peer->burstWait.sec);
7648         peer->burstWait.usec = ntohl(peer->burstWait.usec);
7649         peer->rtt = ntohl(peer->rtt);
7650         peer->rtt_dev = ntohl(peer->rtt_dev);
7651         peer->timeout.sec = 0;
7652         peer->timeout.usec = 0;
7653         peer->nSent = ntohl(peer->nSent);
7654         peer->reSends = ntohl(peer->reSends);
7655         peer->inPacketSkew = ntohl(peer->inPacketSkew);
7656         peer->outPacketSkew = ntohl(peer->outPacketSkew);
7657         peer->natMTU = ntohs(peer->natMTU);
7658         peer->maxMTU = ntohs(peer->maxMTU);
7659         peer->maxDgramPackets = ntohs(peer->maxDgramPackets);
7660         peer->ifDgramPackets = ntohs(peer->ifDgramPackets);
7661         peer->MTU = ntohs(peer->MTU);
7662         peer->cwind = ntohs(peer->cwind);
7663         peer->nDgramPackets = ntohs(peer->nDgramPackets);
7664         peer->congestSeq = ntohs(peer->congestSeq);
7665         peer->bytesSent.high = ntohl(peer->bytesSent.high);
7666         peer->bytesSent.low = ntohl(peer->bytesSent.low);
7667         peer->bytesReceived.high = ntohl(peer->bytesReceived.high);
7668         peer->bytesReceived.low = ntohl(peer->bytesReceived.low);
7669     }
7670 #else
7671     afs_int32 rc = -1;
7672 #endif
7673     return rc;
7674 }
7675
7676 afs_int32
7677 rx_GetLocalPeers(afs_uint32 peerHost, afs_uint16 peerPort,
7678                 struct rx_debugPeer * peerStats)
7679 {
7680         struct rx_peer *tp;
7681         afs_int32 error = 1; /* default to "did not succeed" */
7682         afs_uint32 hashValue = PEER_HASH(peerHost, peerPort);
7683
7684         MUTEX_ENTER(&rx_peerHashTable_lock);
7685         for(tp = rx_peerHashTable[hashValue];
7686               tp != NULL; tp = tp->next) {
7687                 if (tp->host == peerHost)
7688                         break;
7689         }
7690
7691         if (tp) {
7692                 tp->refCount++;
7693                 MUTEX_EXIT(&rx_peerHashTable_lock);
7694
7695                 error = 0;
7696
7697                 MUTEX_ENTER(&tp->peer_lock);
7698                 peerStats->host = tp->host;
7699                 peerStats->port = tp->port;
7700                 peerStats->ifMTU = tp->ifMTU;
7701                 peerStats->idleWhen = tp->idleWhen;
7702                 peerStats->refCount = tp->refCount;
7703                 peerStats->burstSize = tp->burstSize;
7704                 peerStats->burst = tp->burst;
7705                 peerStats->burstWait.sec = tp->burstWait.sec;
7706                 peerStats->burstWait.usec = tp->burstWait.usec;
7707                 peerStats->rtt = tp->rtt;
7708                 peerStats->rtt_dev = tp->rtt_dev;
7709                 peerStats->timeout.sec = 0;
7710                 peerStats->timeout.usec = 0;
7711                 peerStats->nSent = tp->nSent;
7712                 peerStats->reSends = tp->reSends;
7713                 peerStats->inPacketSkew = tp->inPacketSkew;
7714                 peerStats->outPacketSkew = tp->outPacketSkew;
7715                 peerStats->natMTU = tp->natMTU;
7716                 peerStats->maxMTU = tp->maxMTU;
7717                 peerStats->maxDgramPackets = tp->maxDgramPackets;
7718                 peerStats->ifDgramPackets = tp->ifDgramPackets;
7719                 peerStats->MTU = tp->MTU;
7720                 peerStats->cwind = tp->cwind;
7721                 peerStats->nDgramPackets = tp->nDgramPackets;
7722                 peerStats->congestSeq = tp->congestSeq;
7723                 peerStats->bytesSent.high = tp->bytesSent.high;
7724                 peerStats->bytesSent.low = tp->bytesSent.low;
7725                 peerStats->bytesReceived.high = tp->bytesReceived.high;
7726                 peerStats->bytesReceived.low = tp->bytesReceived.low;
7727                 MUTEX_EXIT(&tp->peer_lock);
7728
7729                 MUTEX_ENTER(&rx_peerHashTable_lock);
7730                 tp->refCount--;
7731         }
7732         MUTEX_EXIT(&rx_peerHashTable_lock);
7733
7734         return error;
7735 }
7736
7737 void
7738 shutdown_rx(void)
7739 {
7740     struct rx_serverQueueEntry *np;
7741     int i, j;
7742 #ifndef KERNEL
7743     struct rx_call *call;
7744     struct rx_serverQueueEntry *sq;
7745 #endif /* KERNEL */
7746
7747     LOCK_RX_INIT;
7748     if (rxinit_status == 1) {
7749         UNLOCK_RX_INIT;
7750         return;                 /* Already shutdown. */
7751     }
7752 #ifndef KERNEL
7753     rx_port = 0;
7754 #ifndef AFS_PTHREAD_ENV
7755     FD_ZERO(&rx_selectMask);
7756 #endif /* AFS_PTHREAD_ENV */
7757     rxi_dataQuota = RX_MAX_QUOTA;
7758 #ifndef AFS_PTHREAD_ENV
7759     rxi_StopListener();
7760 #endif /* AFS_PTHREAD_ENV */
7761     shutdown_rxevent();
7762     rx_SetEpoch(0);
7763 #ifndef AFS_PTHREAD_ENV
7764 #ifndef AFS_USE_GETTIMEOFDAY
7765     clock_UnInit();
7766 #endif /* AFS_USE_GETTIMEOFDAY */
7767 #endif /* AFS_PTHREAD_ENV */
7768
7769     while (!queue_IsEmpty(&rx_freeCallQueue)) {
7770         call = queue_First(&rx_freeCallQueue, rx_call);
7771         queue_Remove(call);
7772         rxi_Free(call, sizeof(struct rx_call));
7773     }
7774
7775     while (!queue_IsEmpty(&rx_idleServerQueue)) {
7776         sq = queue_First(&rx_idleServerQueue, rx_serverQueueEntry);
7777         queue_Remove(sq);
7778     }
7779 #endif /* KERNEL */
7780
7781     {
7782         struct rx_peer **peer_ptr, **peer_end;
7783         for (peer_ptr = &rx_peerHashTable[0], peer_end =
7784              &rx_peerHashTable[rx_hashTableSize]; peer_ptr < peer_end;
7785              peer_ptr++) {
7786             struct rx_peer *peer, *next;
7787
7788             MUTEX_ENTER(&rx_peerHashTable_lock);
7789             for (peer = *peer_ptr; peer; peer = next) {
7790                 rx_interface_stat_p rpc_stat, nrpc_stat;
7791                 size_t space;
7792
7793                 MUTEX_ENTER(&rx_rpc_stats);
7794                 MUTEX_ENTER(&peer->peer_lock);
7795                 for (queue_Scan
7796                      (&peer->rpcStats, rpc_stat, nrpc_stat,
7797                       rx_interface_stat)) {
7798                     unsigned int num_funcs;
7799                     if (!rpc_stat)
7800                         break;
7801                     queue_Remove(&rpc_stat->queue_header);
7802                     queue_Remove(&rpc_stat->all_peers);
7803                     num_funcs = rpc_stat->stats[0].func_total;
7804                     space =
7805                         sizeof(rx_interface_stat_t) +
7806                         rpc_stat->stats[0].func_total *
7807                         sizeof(rx_function_entry_v1_t);
7808
7809                     rxi_Free(rpc_stat, space);
7810
7811                     /* rx_rpc_stats must be held */
7812                     rxi_rpc_peer_stat_cnt -= num_funcs;
7813                 }
7814                 MUTEX_EXIT(&peer->peer_lock);
7815                 MUTEX_EXIT(&rx_rpc_stats);
7816
7817                 next = peer->next;
7818                 rxi_FreePeer(peer);
7819                 if (rx_stats_active)
7820                     rx_atomic_dec(&rx_stats.nPeerStructs);
7821             }
7822             MUTEX_EXIT(&rx_peerHashTable_lock);
7823         }
7824     }
7825     for (i = 0; i < RX_MAX_SERVICES; i++) {
7826         if (rx_services[i])
7827             rxi_Free(rx_services[i], sizeof(*rx_services[i]));
7828     }
7829     for (i = 0; i < rx_hashTableSize; i++) {
7830         struct rx_connection *tc, *ntc;
7831         MUTEX_ENTER(&rx_connHashTable_lock);
7832         for (tc = rx_connHashTable[i]; tc; tc = ntc) {
7833             ntc = tc->next;
7834             for (j = 0; j < RX_MAXCALLS; j++) {
7835                 if (tc->call[j]) {
7836                     rxi_Free(tc->call[j], sizeof(*tc->call[j]));
7837                 }
7838             }
7839             rxi_Free(tc, sizeof(*tc));
7840         }
7841         MUTEX_EXIT(&rx_connHashTable_lock);
7842     }
7843
7844     MUTEX_ENTER(&freeSQEList_lock);
7845
7846     while ((np = rx_FreeSQEList)) {
7847         rx_FreeSQEList = *(struct rx_serverQueueEntry **)np;
7848         MUTEX_DESTROY(&np->lock);
7849         rxi_Free(np, sizeof(*np));
7850     }
7851
7852     MUTEX_EXIT(&freeSQEList_lock);
7853     MUTEX_DESTROY(&freeSQEList_lock);
7854     MUTEX_DESTROY(&rx_freeCallQueue_lock);
7855     MUTEX_DESTROY(&rx_connHashTable_lock);
7856     MUTEX_DESTROY(&rx_peerHashTable_lock);
7857     MUTEX_DESTROY(&rx_serverPool_lock);
7858
7859     osi_Free(rx_connHashTable,
7860              rx_hashTableSize * sizeof(struct rx_connection *));
7861     osi_Free(rx_peerHashTable, rx_hashTableSize * sizeof(struct rx_peer *));
7862
7863     UNPIN(rx_connHashTable,
7864           rx_hashTableSize * sizeof(struct rx_connection *));
7865     UNPIN(rx_peerHashTable, rx_hashTableSize * sizeof(struct rx_peer *));
7866
7867     rxi_FreeAllPackets();
7868
7869     MUTEX_ENTER(&rx_quota_mutex);
7870     rxi_dataQuota = RX_MAX_QUOTA;
7871     rxi_availProcs = rxi_totalMin = rxi_minDeficit = 0;
7872     MUTEX_EXIT(&rx_quota_mutex);
7873     rxinit_status = 1;
7874     UNLOCK_RX_INIT;
7875 }
7876
7877 #ifdef RX_ENABLE_LOCKS
7878 void
7879 osirx_AssertMine(afs_kmutex_t * lockaddr, char *msg)
7880 {
7881     if (!MUTEX_ISMINE(lockaddr))
7882         osi_Panic("Lock not held: %s", msg);
7883 }
7884 #endif /* RX_ENABLE_LOCKS */
7885
7886 #ifndef KERNEL
7887
7888 /*
7889  * Routines to implement connection specific data.
7890  */
7891
7892 int
7893 rx_KeyCreate(rx_destructor_t rtn)
7894 {
7895     int key;
7896     MUTEX_ENTER(&rxi_keyCreate_lock);
7897     key = rxi_keyCreate_counter++;
7898     rxi_keyCreate_destructor = (rx_destructor_t *)
7899         realloc((void *)rxi_keyCreate_destructor,
7900                 (key + 1) * sizeof(rx_destructor_t));
7901     rxi_keyCreate_destructor[key] = rtn;
7902     MUTEX_EXIT(&rxi_keyCreate_lock);
7903     return key;
7904 }
7905
7906 void
7907 rx_SetSpecific(struct rx_connection *conn, int key, void *ptr)
7908 {
7909     int i;
7910     MUTEX_ENTER(&conn->conn_data_lock);
7911     if (!conn->specific) {
7912         conn->specific = (void **)malloc((key + 1) * sizeof(void *));
7913         for (i = 0; i < key; i++)
7914             conn->specific[i] = NULL;
7915         conn->nSpecific = key + 1;
7916         conn->specific[key] = ptr;
7917     } else if (key >= conn->nSpecific) {
7918         conn->specific = (void **)
7919             realloc(conn->specific, (key + 1) * sizeof(void *));
7920         for (i = conn->nSpecific; i < key; i++)
7921             conn->specific[i] = NULL;
7922         conn->nSpecific = key + 1;
7923         conn->specific[key] = ptr;
7924     } else {
7925         if (conn->specific[key] && rxi_keyCreate_destructor[key])
7926             (*rxi_keyCreate_destructor[key]) (conn->specific[key]);
7927         conn->specific[key] = ptr;
7928     }
7929     MUTEX_EXIT(&conn->conn_data_lock);
7930 }
7931
7932 void
7933 rx_SetServiceSpecific(struct rx_service *svc, int key, void *ptr)
7934 {
7935     int i;
7936     MUTEX_ENTER(&svc->svc_data_lock);
7937     if (!svc->specific) {
7938         svc->specific = (void **)malloc((key + 1) * sizeof(void *));
7939         for (i = 0; i < key; i++)
7940             svc->specific[i] = NULL;
7941         svc->nSpecific = key + 1;
7942         svc->specific[key] = ptr;
7943     } else if (key >= svc->nSpecific) {
7944         svc->specific = (void **)
7945             realloc(svc->specific, (key + 1) * sizeof(void *));
7946         for (i = svc->nSpecific; i < key; i++)
7947             svc->specific[i] = NULL;
7948         svc->nSpecific = key + 1;
7949         svc->specific[key] = ptr;
7950     } else {
7951         if (svc->specific[key] && rxi_keyCreate_destructor[key])
7952             (*rxi_keyCreate_destructor[key]) (svc->specific[key]);
7953         svc->specific[key] = ptr;
7954     }
7955     MUTEX_EXIT(&svc->svc_data_lock);
7956 }
7957
7958 void *
7959 rx_GetSpecific(struct rx_connection *conn, int key)
7960 {
7961     void *ptr;
7962     MUTEX_ENTER(&conn->conn_data_lock);
7963     if (key >= conn->nSpecific)
7964         ptr = NULL;
7965     else
7966         ptr = conn->specific[key];
7967     MUTEX_EXIT(&conn->conn_data_lock);
7968     return ptr;
7969 }
7970
7971 void *
7972 rx_GetServiceSpecific(struct rx_service *svc, int key)
7973 {
7974     void *ptr;
7975     MUTEX_ENTER(&svc->svc_data_lock);
7976     if (key >= svc->nSpecific)
7977         ptr = NULL;
7978     else
7979         ptr = svc->specific[key];
7980     MUTEX_EXIT(&svc->svc_data_lock);
7981     return ptr;
7982 }
7983
7984
7985 #endif /* !KERNEL */
7986
7987 /*
7988  * processStats is a queue used to store the statistics for the local
7989  * process.  Its contents are similar to the contents of the rpcStats
7990  * queue on a rx_peer structure, but the actual data stored within
7991  * this queue contains totals across the lifetime of the process (assuming
7992  * the stats have not been reset) - unlike the per peer structures
7993  * which can come and go based upon the peer lifetime.
7994  */
7995
7996 static struct rx_queue processStats = { &processStats, &processStats };
7997
7998 /*
7999  * peerStats is a queue used to store the statistics for all peer structs.
8000  * Its contents are the union of all the peer rpcStats queues.
8001  */
8002
8003 static struct rx_queue peerStats = { &peerStats, &peerStats };
8004
8005 /*
8006  * rxi_monitor_processStats is used to turn process wide stat collection
8007  * on and off
8008  */
8009
8010 static int rxi_monitor_processStats = 0;
8011
8012 /*
8013  * rxi_monitor_peerStats is used to turn per peer stat collection on and off
8014  */
8015
8016 static int rxi_monitor_peerStats = 0;
8017
8018 /*
8019  * rxi_AddRpcStat - given all of the information for a particular rpc
8020  * call, create (if needed) and update the stat totals for the rpc.
8021  *
8022  * PARAMETERS
8023  *
8024  * IN stats - the queue of stats that will be updated with the new value
8025  *
8026  * IN rxInterface - a unique number that identifies the rpc interface
8027  *
8028  * IN currentFunc - the index of the function being invoked
8029  *
8030  * IN totalFunc - the total number of functions in this interface
8031  *
8032  * IN queueTime - the amount of time this function waited for a thread
8033  *
8034  * IN execTime - the amount of time this function invocation took to execute
8035  *
8036  * IN bytesSent - the number bytes sent by this invocation
8037  *
8038  * IN bytesRcvd - the number bytes received by this invocation
8039  *
8040  * IN isServer - if true, this invocation was made to a server
8041  *
8042  * IN remoteHost - the ip address of the remote host
8043  *
8044  * IN remotePort - the port of the remote host
8045  *
8046  * IN addToPeerList - if != 0, add newly created stat to the global peer list
8047  *
8048  * INOUT counter - if a new stats structure is allocated, the counter will
8049  * be updated with the new number of allocated stat structures
8050  *
8051  * RETURN CODES
8052  *
8053  * Returns void.
8054  */
8055
8056 static int
8057 rxi_AddRpcStat(struct rx_queue *stats, afs_uint32 rxInterface,
8058                afs_uint32 currentFunc, afs_uint32 totalFunc,
8059                struct clock *queueTime, struct clock *execTime,
8060                afs_hyper_t * bytesSent, afs_hyper_t * bytesRcvd, int isServer,
8061                afs_uint32 remoteHost, afs_uint32 remotePort,
8062                int addToPeerList, unsigned int *counter)
8063 {
8064     int rc = 0;
8065     rx_interface_stat_p rpc_stat, nrpc_stat;
8066
8067     /*
8068      * See if there's already a structure for this interface
8069      */
8070
8071     for (queue_Scan(stats, rpc_stat, nrpc_stat, rx_interface_stat)) {
8072         if ((rpc_stat->stats[0].interfaceId == rxInterface)
8073             && (rpc_stat->stats[0].remote_is_server == isServer))
8074             break;
8075     }
8076
8077     /*
8078      * Didn't find a match so allocate a new structure and add it to the
8079      * queue.
8080      */
8081
8082     if (queue_IsEnd(stats, rpc_stat) || (rpc_stat == NULL)
8083         || (rpc_stat->stats[0].interfaceId != rxInterface)
8084         || (rpc_stat->stats[0].remote_is_server != isServer)) {
8085         int i;
8086         size_t space;
8087
8088         space =
8089             sizeof(rx_interface_stat_t) +
8090             totalFunc * sizeof(rx_function_entry_v1_t);
8091
8092         rpc_stat = rxi_Alloc(space);
8093         if (rpc_stat == NULL) {
8094             rc = 1;
8095             goto fail;
8096         }
8097         *counter += totalFunc;
8098         for (i = 0; i < totalFunc; i++) {
8099             rpc_stat->stats[i].remote_peer = remoteHost;
8100             rpc_stat->stats[i].remote_port = remotePort;
8101             rpc_stat->stats[i].remote_is_server = isServer;
8102             rpc_stat->stats[i].interfaceId = rxInterface;
8103             rpc_stat->stats[i].func_total = totalFunc;
8104             rpc_stat->stats[i].func_index = i;
8105             hzero(rpc_stat->stats[i].invocations);
8106             hzero(rpc_stat->stats[i].bytes_sent);
8107             hzero(rpc_stat->stats[i].bytes_rcvd);
8108             rpc_stat->stats[i].queue_time_sum.sec = 0;
8109             rpc_stat->stats[i].queue_time_sum.usec = 0;
8110             rpc_stat->stats[i].queue_time_sum_sqr.sec = 0;
8111             rpc_stat->stats[i].queue_time_sum_sqr.usec = 0;
8112             rpc_stat->stats[i].queue_time_min.sec = 9999999;
8113             rpc_stat->stats[i].queue_time_min.usec = 9999999;
8114             rpc_stat->stats[i].queue_time_max.sec = 0;
8115             rpc_stat->stats[i].queue_time_max.usec = 0;
8116             rpc_stat->stats[i].execution_time_sum.sec = 0;
8117             rpc_stat->stats[i].execution_time_sum.usec = 0;
8118             rpc_stat->stats[i].execution_time_sum_sqr.sec = 0;
8119             rpc_stat->stats[i].execution_time_sum_sqr.usec = 0;
8120             rpc_stat->stats[i].execution_time_min.sec = 9999999;
8121             rpc_stat->stats[i].execution_time_min.usec = 9999999;
8122             rpc_stat->stats[i].execution_time_max.sec = 0;
8123             rpc_stat->stats[i].execution_time_max.usec = 0;
8124         }
8125         queue_Prepend(stats, rpc_stat);
8126         if (addToPeerList) {
8127             queue_Prepend(&peerStats, &rpc_stat->all_peers);
8128         }
8129     }
8130
8131     /*
8132      * Increment the stats for this function
8133      */
8134
8135     hadd32(rpc_stat->stats[currentFunc].invocations, 1);
8136     hadd(rpc_stat->stats[currentFunc].bytes_sent, *bytesSent);
8137     hadd(rpc_stat->stats[currentFunc].bytes_rcvd, *bytesRcvd);
8138     clock_Add(&rpc_stat->stats[currentFunc].queue_time_sum, queueTime);
8139     clock_AddSq(&rpc_stat->stats[currentFunc].queue_time_sum_sqr, queueTime);
8140     if (clock_Lt(queueTime, &rpc_stat->stats[currentFunc].queue_time_min)) {
8141         rpc_stat->stats[currentFunc].queue_time_min = *queueTime;
8142     }
8143     if (clock_Gt(queueTime, &rpc_stat->stats[currentFunc].queue_time_max)) {
8144         rpc_stat->stats[currentFunc].queue_time_max = *queueTime;
8145     }
8146     clock_Add(&rpc_stat->stats[currentFunc].execution_time_sum, execTime);
8147     clock_AddSq(&rpc_stat->stats[currentFunc].execution_time_sum_sqr,
8148                 execTime);
8149     if (clock_Lt(execTime, &rpc_stat->stats[currentFunc].execution_time_min)) {
8150         rpc_stat->stats[currentFunc].execution_time_min = *execTime;
8151     }
8152     if (clock_Gt(execTime, &rpc_stat->stats[currentFunc].execution_time_max)) {
8153         rpc_stat->stats[currentFunc].execution_time_max = *execTime;
8154     }
8155
8156   fail:
8157     return rc;
8158 }
8159
8160 /*
8161  * rx_IncrementTimeAndCount - increment the times and count for a particular
8162  * rpc function.
8163  *
8164  * PARAMETERS
8165  *
8166  * IN peer - the peer who invoked the rpc
8167  *
8168  * IN rxInterface - a unique number that identifies the rpc interface
8169  *
8170  * IN currentFunc - the index of the function being invoked
8171  *
8172  * IN totalFunc - the total number of functions in this interface
8173  *
8174  * IN queueTime - the amount of time this function waited for a thread
8175  *
8176  * IN execTime - the amount of time this function invocation took to execute
8177  *
8178  * IN bytesSent - the number bytes sent by this invocation
8179  *
8180  * IN bytesRcvd - the number bytes received by this invocation
8181  *
8182  * IN isServer - if true, this invocation was made to a server
8183  *
8184  * RETURN CODES
8185  *
8186  * Returns void.
8187  */
8188
8189 void
8190 rx_IncrementTimeAndCount(struct rx_peer *peer, afs_uint32 rxInterface,
8191                          afs_uint32 currentFunc, afs_uint32 totalFunc,
8192                          struct clock *queueTime, struct clock *execTime,
8193                          afs_hyper_t * bytesSent, afs_hyper_t * bytesRcvd,
8194                          int isServer)
8195 {
8196
8197     if (!(rxi_monitor_peerStats || rxi_monitor_processStats))
8198         return;
8199
8200     MUTEX_ENTER(&rx_rpc_stats);
8201
8202     if (rxi_monitor_peerStats) {
8203         MUTEX_ENTER(&peer->peer_lock);
8204         rxi_AddRpcStat(&peer->rpcStats, rxInterface, currentFunc, totalFunc,
8205                        queueTime, execTime, bytesSent, bytesRcvd, isServer,
8206                        peer->host, peer->port, 1, &rxi_rpc_peer_stat_cnt);
8207         MUTEX_EXIT(&peer->peer_lock);
8208     }
8209
8210     if (rxi_monitor_processStats) {
8211         rxi_AddRpcStat(&processStats, rxInterface, currentFunc, totalFunc,
8212                        queueTime, execTime, bytesSent, bytesRcvd, isServer,
8213                        0xffffffff, 0xffffffff, 0, &rxi_rpc_process_stat_cnt);
8214     }
8215
8216     MUTEX_EXIT(&rx_rpc_stats);
8217
8218 }
8219
8220 /*
8221  * rx_MarshallProcessRPCStats - marshall an array of rpc statistics
8222  *
8223  * PARAMETERS
8224  *
8225  * IN callerVersion - the rpc stat version of the caller.
8226  *
8227  * IN count - the number of entries to marshall.
8228  *
8229  * IN stats - pointer to stats to be marshalled.
8230  *
8231  * OUT ptr - Where to store the marshalled data.
8232  *
8233  * RETURN CODES
8234  *
8235  * Returns void.
8236  */
8237 void
8238 rx_MarshallProcessRPCStats(afs_uint32 callerVersion, int count,
8239                            rx_function_entry_v1_t * stats, afs_uint32 ** ptrP)
8240 {
8241     int i;
8242     afs_uint32 *ptr;
8243
8244     /*
8245      * We only support the first version
8246      */
8247     for (ptr = *ptrP, i = 0; i < count; i++, stats++) {
8248         *(ptr++) = stats->remote_peer;
8249         *(ptr++) = stats->remote_port;
8250         *(ptr++) = stats->remote_is_server;
8251         *(ptr++) = stats->interfaceId;
8252         *(ptr++) = stats->func_total;
8253         *(ptr++) = stats->func_index;
8254         *(ptr++) = hgethi(stats->invocations);
8255         *(ptr++) = hgetlo(stats->invocations);
8256         *(ptr++) = hgethi(stats->bytes_sent);
8257         *(ptr++) = hgetlo(stats->bytes_sent);
8258         *(ptr++) = hgethi(stats->bytes_rcvd);
8259         *(ptr++) = hgetlo(stats->bytes_rcvd);
8260         *(ptr++) = stats->queue_time_sum.sec;
8261         *(ptr++) = stats->queue_time_sum.usec;
8262         *(ptr++) = stats->queue_time_sum_sqr.sec;
8263         *(ptr++) = stats->queue_time_sum_sqr.usec;
8264         *(ptr++) = stats->queue_time_min.sec;
8265         *(ptr++) = stats->queue_time_min.usec;
8266         *(ptr++) = stats->queue_time_max.sec;
8267         *(ptr++) = stats->queue_time_max.usec;
8268         *(ptr++) = stats->execution_time_sum.sec;
8269         *(ptr++) = stats->execution_time_sum.usec;
8270         *(ptr++) = stats->execution_time_sum_sqr.sec;
8271         *(ptr++) = stats->execution_time_sum_sqr.usec;
8272         *(ptr++) = stats->execution_time_min.sec;
8273         *(ptr++) = stats->execution_time_min.usec;
8274         *(ptr++) = stats->execution_time_max.sec;
8275         *(ptr++) = stats->execution_time_max.usec;
8276     }
8277     *ptrP = ptr;
8278 }
8279
8280 /*
8281  * rx_RetrieveProcessRPCStats - retrieve all of the rpc statistics for
8282  * this process
8283  *
8284  * PARAMETERS
8285  *
8286  * IN callerVersion - the rpc stat version of the caller
8287  *
8288  * OUT myVersion - the rpc stat version of this function
8289  *
8290  * OUT clock_sec - local time seconds
8291  *
8292  * OUT clock_usec - local time microseconds
8293  *
8294  * OUT allocSize - the number of bytes allocated to contain stats
8295  *
8296  * OUT statCount - the number stats retrieved from this process.
8297  *
8298  * OUT stats - the actual stats retrieved from this process.
8299  *
8300  * RETURN CODES
8301  *
8302  * Returns void.  If successful, stats will != NULL.
8303  */
8304
8305 int
8306 rx_RetrieveProcessRPCStats(afs_uint32 callerVersion, afs_uint32 * myVersion,
8307                            afs_uint32 * clock_sec, afs_uint32 * clock_usec,
8308                            size_t * allocSize, afs_uint32 * statCount,
8309                            afs_uint32 ** stats)
8310 {
8311     size_t space = 0;
8312     afs_uint32 *ptr;
8313     struct clock now;
8314     int rc = 0;
8315
8316     *stats = 0;
8317     *allocSize = 0;
8318     *statCount = 0;
8319     *myVersion = RX_STATS_RETRIEVAL_VERSION;
8320
8321     /*
8322      * Check to see if stats are enabled
8323      */
8324
8325     MUTEX_ENTER(&rx_rpc_stats);
8326     if (!rxi_monitor_processStats) {
8327         MUTEX_EXIT(&rx_rpc_stats);
8328         return rc;
8329     }
8330
8331     clock_GetTime(&now);
8332     *clock_sec = now.sec;
8333     *clock_usec = now.usec;
8334
8335     /*
8336      * Allocate the space based upon the caller version
8337      *
8338      * If the client is at an older version than we are,
8339      * we return the statistic data in the older data format, but
8340      * we still return our version number so the client knows we
8341      * are maintaining more data than it can retrieve.
8342      */
8343
8344     if (callerVersion >= RX_STATS_RETRIEVAL_FIRST_EDITION) {
8345         space = rxi_rpc_process_stat_cnt * sizeof(rx_function_entry_v1_t);
8346         *statCount = rxi_rpc_process_stat_cnt;
8347     } else {
8348         /*
8349          * This can't happen yet, but in the future version changes
8350          * can be handled by adding additional code here
8351          */
8352     }
8353
8354     if (space > (size_t) 0) {
8355         *allocSize = space;
8356         ptr = *stats = rxi_Alloc(space);
8357
8358         if (ptr != NULL) {
8359             rx_interface_stat_p rpc_stat, nrpc_stat;
8360
8361
8362             for (queue_Scan
8363                  (&processStats, rpc_stat, nrpc_stat, rx_interface_stat)) {
8364                 /*
8365                  * Copy the data based upon the caller version
8366                  */
8367                 rx_MarshallProcessRPCStats(callerVersion,
8368                                            rpc_stat->stats[0].func_total,
8369                                            rpc_stat->stats, &ptr);
8370             }
8371         } else {
8372             rc = ENOMEM;
8373         }
8374     }
8375     MUTEX_EXIT(&rx_rpc_stats);
8376     return rc;
8377 }
8378
8379 /*
8380  * rx_RetrievePeerRPCStats - retrieve all of the rpc statistics for the peers
8381  *
8382  * PARAMETERS
8383  *
8384  * IN callerVersion - the rpc stat version of the caller
8385  *
8386  * OUT myVersion - the rpc stat version of this function
8387  *
8388  * OUT clock_sec - local time seconds
8389  *
8390  * OUT clock_usec - local time microseconds
8391  *
8392  * OUT allocSize - the number of bytes allocated to contain stats
8393  *
8394  * OUT statCount - the number of stats retrieved from the individual
8395  * peer structures.
8396  *
8397  * OUT stats - the actual stats retrieved from the individual peer structures.
8398  *
8399  * RETURN CODES
8400  *
8401  * Returns void.  If successful, stats will != NULL.
8402  */
8403
8404 int
8405 rx_RetrievePeerRPCStats(afs_uint32 callerVersion, afs_uint32 * myVersion,
8406                         afs_uint32 * clock_sec, afs_uint32 * clock_usec,
8407                         size_t * allocSize, afs_uint32 * statCount,
8408                         afs_uint32 ** stats)
8409 {
8410     size_t space = 0;
8411     afs_uint32 *ptr;
8412     struct clock now;
8413     int rc = 0;
8414
8415     *stats = 0;
8416     *statCount = 0;
8417     *allocSize = 0;
8418     *myVersion = RX_STATS_RETRIEVAL_VERSION;
8419
8420     /*
8421      * Check to see if stats are enabled
8422      */
8423
8424     MUTEX_ENTER(&rx_rpc_stats);
8425     if (!rxi_monitor_peerStats) {
8426         MUTEX_EXIT(&rx_rpc_stats);
8427         return rc;
8428     }
8429
8430     clock_GetTime(&now);
8431     *clock_sec = now.sec;
8432     *clock_usec = now.usec;
8433
8434     /*
8435      * Allocate the space based upon the caller version
8436      *
8437      * If the client is at an older version than we are,
8438      * we return the statistic data in the older data format, but
8439      * we still return our version number so the client knows we
8440      * are maintaining more data than it can retrieve.
8441      */
8442
8443     if (callerVersion >= RX_STATS_RETRIEVAL_FIRST_EDITION) {
8444         space = rxi_rpc_peer_stat_cnt * sizeof(rx_function_entry_v1_t);
8445         *statCount = rxi_rpc_peer_stat_cnt;
8446     } else {
8447         /*
8448          * This can't happen yet, but in the future version changes
8449          * can be handled by adding additional code here
8450          */
8451     }
8452
8453     if (space > (size_t) 0) {
8454         *allocSize = space;
8455         ptr = *stats = rxi_Alloc(space);
8456
8457         if (ptr != NULL) {
8458             rx_interface_stat_p rpc_stat, nrpc_stat;
8459             char *fix_offset;
8460
8461             for (queue_Scan
8462                  (&peerStats, rpc_stat, nrpc_stat, rx_interface_stat)) {
8463                 /*
8464                  * We have to fix the offset of rpc_stat since we are
8465                  * keeping this structure on two rx_queues.  The rx_queue
8466                  * package assumes that the rx_queue member is the first
8467                  * member of the structure.  That is, rx_queue assumes that
8468                  * any one item is only on one queue at a time.  We are
8469                  * breaking that assumption and so we have to do a little
8470                  * math to fix our pointers.
8471                  */
8472
8473                 fix_offset = (char *)rpc_stat;
8474                 fix_offset -= offsetof(rx_interface_stat_t, all_peers);
8475                 rpc_stat = (rx_interface_stat_p) fix_offset;
8476
8477                 /*
8478                  * Copy the data based upon the caller version
8479                  */
8480                 rx_MarshallProcessRPCStats(callerVersion,
8481                                            rpc_stat->stats[0].func_total,
8482                                            rpc_stat->stats, &ptr);
8483             }
8484         } else {
8485             rc = ENOMEM;
8486         }
8487     }
8488     MUTEX_EXIT(&rx_rpc_stats);
8489     return rc;
8490 }
8491
8492 /*
8493  * rx_FreeRPCStats - free memory allocated by
8494  *                   rx_RetrieveProcessRPCStats and rx_RetrievePeerRPCStats
8495  *
8496  * PARAMETERS
8497  *
8498  * IN stats - stats previously returned by rx_RetrieveProcessRPCStats or
8499  * rx_RetrievePeerRPCStats
8500  *
8501  * IN allocSize - the number of bytes in stats.
8502  *
8503  * RETURN CODES
8504  *
8505  * Returns void.
8506  */
8507
8508 void
8509 rx_FreeRPCStats(afs_uint32 * stats, size_t allocSize)
8510 {
8511     rxi_Free(stats, allocSize);
8512 }
8513
8514 /*
8515  * rx_queryProcessRPCStats - see if process rpc stat collection is
8516  * currently enabled.
8517  *
8518  * PARAMETERS
8519  *
8520  * RETURN CODES
8521  *
8522  * Returns 0 if stats are not enabled != 0 otherwise
8523  */
8524
8525 int
8526 rx_queryProcessRPCStats(void)
8527 {
8528     int rc;
8529     MUTEX_ENTER(&rx_rpc_stats);
8530     rc = rxi_monitor_processStats;
8531     MUTEX_EXIT(&rx_rpc_stats);
8532     return rc;
8533 }
8534
8535 /*
8536  * rx_queryPeerRPCStats - see if peer stat collection is currently enabled.
8537  *
8538  * PARAMETERS
8539  *
8540  * RETURN CODES
8541  *
8542  * Returns 0 if stats are not enabled != 0 otherwise
8543  */
8544
8545 int
8546 rx_queryPeerRPCStats(void)
8547 {
8548     int rc;
8549     MUTEX_ENTER(&rx_rpc_stats);
8550     rc = rxi_monitor_peerStats;
8551     MUTEX_EXIT(&rx_rpc_stats);
8552     return rc;
8553 }
8554
8555 /*
8556  * rx_enableProcessRPCStats - begin rpc stat collection for entire process
8557  *
8558  * PARAMETERS
8559  *
8560  * RETURN CODES
8561  *
8562  * Returns void.
8563  */
8564
8565 void
8566 rx_enableProcessRPCStats(void)
8567 {
8568     MUTEX_ENTER(&rx_rpc_stats);
8569     rx_enable_stats = 1;
8570     rxi_monitor_processStats = 1;
8571     MUTEX_EXIT(&rx_rpc_stats);
8572 }
8573
8574 /*
8575  * rx_enablePeerRPCStats - begin rpc stat collection per peer structure
8576  *
8577  * PARAMETERS
8578  *
8579  * RETURN CODES
8580  *
8581  * Returns void.
8582  */
8583
8584 void
8585 rx_enablePeerRPCStats(void)
8586 {
8587     MUTEX_ENTER(&rx_rpc_stats);
8588     rx_enable_stats = 1;
8589     rxi_monitor_peerStats = 1;
8590     MUTEX_EXIT(&rx_rpc_stats);
8591 }
8592
8593 /*
8594  * rx_disableProcessRPCStats - stop rpc stat collection for entire process
8595  *
8596  * PARAMETERS
8597  *
8598  * RETURN CODES
8599  *
8600  * Returns void.
8601  */
8602
8603 void
8604 rx_disableProcessRPCStats(void)
8605 {
8606     rx_interface_stat_p rpc_stat, nrpc_stat;
8607     size_t space;
8608
8609     MUTEX_ENTER(&rx_rpc_stats);
8610
8611     /*
8612      * Turn off process statistics and if peer stats is also off, turn
8613      * off everything
8614      */
8615
8616     rxi_monitor_processStats = 0;
8617     if (rxi_monitor_peerStats == 0) {
8618         rx_enable_stats = 0;
8619     }
8620
8621     for (queue_Scan(&processStats, rpc_stat, nrpc_stat, rx_interface_stat)) {
8622         unsigned int num_funcs = 0;
8623         if (!rpc_stat)
8624             break;
8625         queue_Remove(rpc_stat);
8626         num_funcs = rpc_stat->stats[0].func_total;
8627         space =
8628             sizeof(rx_interface_stat_t) +
8629             rpc_stat->stats[0].func_total * sizeof(rx_function_entry_v1_t);
8630
8631         rxi_Free(rpc_stat, space);
8632         rxi_rpc_process_stat_cnt -= num_funcs;
8633     }
8634     MUTEX_EXIT(&rx_rpc_stats);
8635 }
8636
8637 /*
8638  * rx_disablePeerRPCStats - stop rpc stat collection for peers
8639  *
8640  * PARAMETERS
8641  *
8642  * RETURN CODES
8643  *
8644  * Returns void.
8645  */
8646
8647 void
8648 rx_disablePeerRPCStats(void)
8649 {
8650     struct rx_peer **peer_ptr, **peer_end;
8651     int code;
8652
8653     /*
8654      * Turn off peer statistics and if process stats is also off, turn
8655      * off everything
8656      */
8657
8658     rxi_monitor_peerStats = 0;
8659     if (rxi_monitor_processStats == 0) {
8660         rx_enable_stats = 0;
8661     }
8662
8663     for (peer_ptr = &rx_peerHashTable[0], peer_end =
8664          &rx_peerHashTable[rx_hashTableSize]; peer_ptr < peer_end;
8665          peer_ptr++) {
8666         struct rx_peer *peer, *next, *prev;
8667
8668         MUTEX_ENTER(&rx_peerHashTable_lock);
8669         MUTEX_ENTER(&rx_rpc_stats);
8670         for (prev = peer = *peer_ptr; peer; peer = next) {
8671             next = peer->next;
8672             code = MUTEX_TRYENTER(&peer->peer_lock);
8673             if (code) {
8674                 rx_interface_stat_p rpc_stat, nrpc_stat;
8675                 size_t space;
8676
8677                 if (prev == *peer_ptr) {
8678                     *peer_ptr = next;
8679                     prev = next;
8680                 } else
8681                     prev->next = next;
8682
8683                 if (next)
8684                     next->refCount++;
8685                 if (prev)
8686                     prev->refCount++;
8687                 peer->refCount++;
8688                 MUTEX_EXIT(&rx_peerHashTable_lock);
8689
8690                 for (queue_Scan
8691                      (&peer->rpcStats, rpc_stat, nrpc_stat,
8692                       rx_interface_stat)) {
8693                     unsigned int num_funcs = 0;
8694                     if (!rpc_stat)
8695                         break;
8696                     queue_Remove(&rpc_stat->queue_header);
8697                     queue_Remove(&rpc_stat->all_peers);
8698                     num_funcs = rpc_stat->stats[0].func_total;
8699                     space =
8700                         sizeof(rx_interface_stat_t) +
8701                         rpc_stat->stats[0].func_total *
8702                         sizeof(rx_function_entry_v1_t);
8703
8704                     rxi_Free(rpc_stat, space);
8705                     rxi_rpc_peer_stat_cnt -= num_funcs;
8706                 }
8707                 MUTEX_EXIT(&peer->peer_lock);
8708
8709                 MUTEX_ENTER(&rx_peerHashTable_lock);
8710                 if (next)
8711                     next->refCount--;
8712                 if (prev)
8713                     prev->refCount--;
8714                 peer->refCount--;
8715             } else {
8716                 prev = peer;
8717             }
8718         }
8719         MUTEX_EXIT(&rx_rpc_stats);
8720         MUTEX_EXIT(&rx_peerHashTable_lock);
8721     }
8722 }
8723
8724 /*
8725  * rx_clearProcessRPCStats - clear the contents of the rpc stats according
8726  * to clearFlag
8727  *
8728  * PARAMETERS
8729  *
8730  * IN clearFlag - flag indicating which stats to clear
8731  *
8732  * RETURN CODES
8733  *
8734  * Returns void.
8735  */
8736
8737 void
8738 rx_clearProcessRPCStats(afs_uint32 clearFlag)
8739 {
8740     rx_interface_stat_p rpc_stat, nrpc_stat;
8741
8742     MUTEX_ENTER(&rx_rpc_stats);
8743
8744     for (queue_Scan(&processStats, rpc_stat, nrpc_stat, rx_interface_stat)) {
8745         unsigned int num_funcs = 0, i;
8746         num_funcs = rpc_stat->stats[0].func_total;
8747         for (i = 0; i < num_funcs; i++) {
8748             if (clearFlag & AFS_RX_STATS_CLEAR_INVOCATIONS) {
8749                 hzero(rpc_stat->stats[i].invocations);
8750             }
8751             if (clearFlag & AFS_RX_STATS_CLEAR_BYTES_SENT) {
8752                 hzero(rpc_stat->stats[i].bytes_sent);
8753             }
8754             if (clearFlag & AFS_RX_STATS_CLEAR_BYTES_RCVD) {
8755                 hzero(rpc_stat->stats[i].bytes_rcvd);
8756             }
8757             if (clearFlag & AFS_RX_STATS_CLEAR_QUEUE_TIME_SUM) {
8758                 rpc_stat->stats[i].queue_time_sum.sec = 0;
8759                 rpc_stat->stats[i].queue_time_sum.usec = 0;
8760             }
8761             if (clearFlag & AFS_RX_STATS_CLEAR_QUEUE_TIME_SQUARE) {
8762                 rpc_stat->stats[i].queue_time_sum_sqr.sec = 0;
8763                 rpc_stat->stats[i].queue_time_sum_sqr.usec = 0;
8764             }
8765             if (clearFlag & AFS_RX_STATS_CLEAR_QUEUE_TIME_MIN) {
8766                 rpc_stat->stats[i].queue_time_min.sec = 9999999;
8767                 rpc_stat->stats[i].queue_time_min.usec = 9999999;
8768             }
8769             if (clearFlag & AFS_RX_STATS_CLEAR_QUEUE_TIME_MAX) {
8770                 rpc_stat->stats[i].queue_time_max.sec = 0;
8771                 rpc_stat->stats[i].queue_time_max.usec = 0;
8772             }
8773             if (clearFlag & AFS_RX_STATS_CLEAR_EXEC_TIME_SUM) {
8774                 rpc_stat->stats[i].execution_time_sum.sec = 0;
8775                 rpc_stat->stats[i].execution_time_sum.usec = 0;
8776             }
8777             if (clearFlag & AFS_RX_STATS_CLEAR_EXEC_TIME_SQUARE) {
8778                 rpc_stat->stats[i].execution_time_sum_sqr.sec = 0;
8779                 rpc_stat->stats[i].execution_time_sum_sqr.usec = 0;
8780             }
8781             if (clearFlag & AFS_RX_STATS_CLEAR_EXEC_TIME_MIN) {
8782                 rpc_stat->stats[i].execution_time_min.sec = 9999999;
8783                 rpc_stat->stats[i].execution_time_min.usec = 9999999;
8784             }
8785             if (clearFlag & AFS_RX_STATS_CLEAR_EXEC_TIME_MAX) {
8786                 rpc_stat->stats[i].execution_time_max.sec = 0;
8787                 rpc_stat->stats[i].execution_time_max.usec = 0;
8788             }
8789         }
8790     }
8791
8792     MUTEX_EXIT(&rx_rpc_stats);
8793 }
8794
8795 /*
8796  * rx_clearPeerRPCStats - clear the contents of the rpc stats according
8797  * to clearFlag
8798  *
8799  * PARAMETERS
8800  *
8801  * IN clearFlag - flag indicating which stats to clear
8802  *
8803  * RETURN CODES
8804  *
8805  * Returns void.
8806  */
8807
8808 void
8809 rx_clearPeerRPCStats(afs_uint32 clearFlag)
8810 {
8811     rx_interface_stat_p rpc_stat, nrpc_stat;
8812
8813     MUTEX_ENTER(&rx_rpc_stats);
8814
8815     for (queue_Scan(&peerStats, rpc_stat, nrpc_stat, rx_interface_stat)) {
8816         unsigned int num_funcs = 0, i;
8817         char *fix_offset;
8818         /*
8819          * We have to fix the offset of rpc_stat since we are
8820          * keeping this structure on two rx_queues.  The rx_queue
8821          * package assumes that the rx_queue member is the first
8822          * member of the structure.  That is, rx_queue assumes that
8823          * any one item is only on one queue at a time.  We are
8824          * breaking that assumption and so we have to do a little
8825          * math to fix our pointers.
8826          */
8827
8828         fix_offset = (char *)rpc_stat;
8829         fix_offset -= offsetof(rx_interface_stat_t, all_peers);
8830         rpc_stat = (rx_interface_stat_p) fix_offset;
8831
8832         num_funcs = rpc_stat->stats[0].func_total;
8833         for (i = 0; i < num_funcs; i++) {
8834             if (clearFlag & AFS_RX_STATS_CLEAR_INVOCATIONS) {
8835                 hzero(rpc_stat->stats[i].invocations);
8836             }
8837             if (clearFlag & AFS_RX_STATS_CLEAR_BYTES_SENT) {
8838                 hzero(rpc_stat->stats[i].bytes_sent);
8839             }
8840             if (clearFlag & AFS_RX_STATS_CLEAR_BYTES_RCVD) {
8841                 hzero(rpc_stat->stats[i].bytes_rcvd);
8842             }
8843             if (clearFlag & AFS_RX_STATS_CLEAR_QUEUE_TIME_SUM) {
8844                 rpc_stat->stats[i].queue_time_sum.sec = 0;
8845                 rpc_stat->stats[i].queue_time_sum.usec = 0;
8846             }
8847             if (clearFlag & AFS_RX_STATS_CLEAR_QUEUE_TIME_SQUARE) {
8848                 rpc_stat->stats[i].queue_time_sum_sqr.sec = 0;
8849                 rpc_stat->stats[i].queue_time_sum_sqr.usec = 0;
8850             }
8851             if (clearFlag & AFS_RX_STATS_CLEAR_QUEUE_TIME_MIN) {
8852                 rpc_stat->stats[i].queue_time_min.sec = 9999999;
8853                 rpc_stat->stats[i].queue_time_min.usec = 9999999;
8854             }
8855             if (clearFlag & AFS_RX_STATS_CLEAR_QUEUE_TIME_MAX) {
8856                 rpc_stat->stats[i].queue_time_max.sec = 0;
8857                 rpc_stat->stats[i].queue_time_max.usec = 0;
8858             }
8859             if (clearFlag & AFS_RX_STATS_CLEAR_EXEC_TIME_SUM) {
8860                 rpc_stat->stats[i].execution_time_sum.sec = 0;
8861                 rpc_stat->stats[i].execution_time_sum.usec = 0;
8862             }
8863             if (clearFlag & AFS_RX_STATS_CLEAR_EXEC_TIME_SQUARE) {
8864                 rpc_stat->stats[i].execution_time_sum_sqr.sec = 0;
8865                 rpc_stat->stats[i].execution_time_sum_sqr.usec = 0;
8866             }
8867             if (clearFlag & AFS_RX_STATS_CLEAR_EXEC_TIME_MIN) {
8868                 rpc_stat->stats[i].execution_time_min.sec = 9999999;
8869                 rpc_stat->stats[i].execution_time_min.usec = 9999999;
8870             }
8871             if (clearFlag & AFS_RX_STATS_CLEAR_EXEC_TIME_MAX) {
8872                 rpc_stat->stats[i].execution_time_max.sec = 0;
8873                 rpc_stat->stats[i].execution_time_max.usec = 0;
8874             }
8875         }
8876     }
8877
8878     MUTEX_EXIT(&rx_rpc_stats);
8879 }
8880
8881 /*
8882  * rxi_rxstat_userok points to a routine that returns 1 if the caller
8883  * is authorized to enable/disable/clear RX statistics.
8884  */
8885 static int (*rxi_rxstat_userok) (struct rx_call * call) = NULL;
8886
8887 void
8888 rx_SetRxStatUserOk(int (*proc) (struct rx_call * call))
8889 {
8890     rxi_rxstat_userok = proc;
8891 }
8892
8893 int
8894 rx_RxStatUserOk(struct rx_call *call)
8895 {
8896     if (!rxi_rxstat_userok)
8897         return 0;
8898     return rxi_rxstat_userok(call);
8899 }
8900
8901 #ifdef AFS_NT40_ENV
8902 /*
8903  * DllMain() -- Entry-point function called by the DllMainCRTStartup()
8904  *     function in the MSVC runtime DLL (msvcrt.dll).
8905  *
8906  *     Note: the system serializes calls to this function.
8907  */
8908 BOOL WINAPI
8909 DllMain(HINSTANCE dllInstHandle,        /* instance handle for this DLL module */
8910         DWORD reason,                   /* reason function is being called */
8911         LPVOID reserved)                /* reserved for future use */
8912 {
8913     switch (reason) {
8914     case DLL_PROCESS_ATTACH:
8915         /* library is being attached to a process */
8916         INIT_PTHREAD_LOCKS;
8917         return TRUE;
8918
8919     case DLL_PROCESS_DETACH:
8920         return TRUE;
8921
8922     default:
8923         return FALSE;
8924     }
8925 }
8926 #endif /* AFS_NT40_ENV */
8927
8928 #ifndef KERNEL
8929 int rx_DumpCalls(FILE *outputFile, char *cookie)
8930 {
8931 #ifdef RXDEBUG_PACKET
8932 #ifdef KDUMP_RX_LOCK
8933     struct rx_call_rx_lock *c;
8934 #else
8935     struct rx_call *c;
8936 #endif
8937 #ifdef AFS_NT40_ENV
8938     int zilch;
8939     char output[2048];
8940 #define RXDPRINTF sprintf
8941 #define RXDPRINTOUT output
8942 #else
8943 #define RXDPRINTF fprintf
8944 #define RXDPRINTOUT outputFile
8945 #endif
8946
8947     RXDPRINTF(RXDPRINTOUT, "%s - Start dumping all Rx Calls - count=%u\r\n", cookie, rx_stats.nCallStructs);
8948 #ifdef AFS_NT40_ENV
8949     WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);
8950 #endif
8951
8952     for (c = rx_allCallsp; c; c = c->allNextp) {
8953         u_short rqc, tqc, iovqc;
8954         struct rx_packet *p, *np;
8955
8956         MUTEX_ENTER(&c->lock);
8957         queue_Count(&c->rq, p, np, rx_packet, rqc);
8958         queue_Count(&c->tq, p, np, rx_packet, tqc);
8959         queue_Count(&c->iovq, p, np, rx_packet, iovqc);
8960
8961         RXDPRINTF(RXDPRINTOUT, "%s - call=0x%p, id=%u, state=%u, mode=%u, conn=%p, epoch=%u, cid=%u, callNum=%u, connFlags=0x%x, flags=0x%x, "
8962                 "rqc=%u,%u, tqc=%u,%u, iovqc=%u,%u, "
8963                 "lstatus=%u, rstatus=%u, error=%d, timeout=%u, "
8964                 "resendEvent=%d, timeoutEvt=%d, keepAliveEvt=%d, delayedAckEvt=%d, delayedAbortEvt=%d, abortCode=%d, abortCount=%d, "
8965                 "lastSendTime=%u, lastRecvTime=%u, lastSendData=%u"
8966 #ifdef RX_ENABLE_LOCKS
8967                 ", refCount=%u"
8968 #endif
8969 #ifdef RX_REFCOUNT_CHECK
8970                 ", refCountBegin=%u, refCountResend=%u, refCountDelay=%u, "
8971                 "refCountAlive=%u, refCountPacket=%u, refCountSend=%u, refCountAckAll=%u, refCountAbort=%u"
8972 #endif
8973                 "\r\n",
8974                 cookie, c, c->call_id, (afs_uint32)c->state, (afs_uint32)c->mode, c->conn, c->conn?c->conn->epoch:0, c->conn?c->conn->cid:0,
8975                 c->callNumber?*c->callNumber:0, c->conn?c->conn->flags:0, c->flags,
8976                 (afs_uint32)c->rqc, (afs_uint32)rqc, (afs_uint32)c->tqc, (afs_uint32)tqc, (afs_uint32)c->iovqc, (afs_uint32)iovqc,
8977                 (afs_uint32)c->localStatus, (afs_uint32)c->remoteStatus, c->error, c->timeout,
8978                 c->resendEvent?1:0, c->timeoutEvent?1:0, c->keepAliveEvent?1:0, c->delayedAckEvent?1:0, c->delayedAbortEvent?1:0,
8979                 c->abortCode, c->abortCount, c->lastSendTime, c->lastReceiveTime, c->lastSendData
8980 #ifdef RX_ENABLE_LOCKS
8981                 , (afs_uint32)c->refCount
8982 #endif
8983 #ifdef RX_REFCOUNT_CHECK
8984                 , c->refCDebug[0],c->refCDebug[1],c->refCDebug[2],c->refCDebug[3],c->refCDebug[4],c->refCDebug[5],c->refCDebug[6],c->refCDebug[7]
8985 #endif
8986                 );
8987         MUTEX_EXIT(&c->lock);
8988
8989 #ifdef AFS_NT40_ENV
8990         WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);
8991 #endif
8992     }
8993     RXDPRINTF(RXDPRINTOUT, "%s - End dumping all Rx Calls\r\n", cookie);
8994 #ifdef AFS_NT40_ENV
8995     WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);
8996 #endif
8997 #endif /* RXDEBUG_PACKET */
8998     return 0;
8999 }
9000 #endif