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