rx: Turn the rxevent_Cancel macro into a function
[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
82 #include <afs/rxgen_consts.h>
83
84 #ifndef KERNEL
85 #ifdef AFS_PTHREAD_ENV
86 #ifndef AFS_NT40_ENV
87 int (*registerProgram) (pid_t, char *) = 0;
88 int (*swapNameProgram) (pid_t, const char *, char *) = 0;
89 #endif
90 #else
91 int (*registerProgram) (PROCESS, char *) = 0;
92 int (*swapNameProgram) (PROCESS, const char *, char *) = 0;
93 #endif
94 #endif
95
96 /* Local static routines */
97 static void rxi_DestroyConnectionNoLock(struct rx_connection *conn);
98 static void rxi_ComputeRoundTripTime(struct rx_packet *, struct rx_ackPacket *,
99                                      struct rx_call *, struct rx_peer *,
100                                      struct clock *);
101 static void rxi_Resend(struct rxevent *event, void *arg0, void *arg1,
102                        int istack);
103 static void rxi_SendDelayedAck(struct rxevent *event, void *call,
104                                void *dummy, int dummy2);
105 static void rxi_SendDelayedCallAbort(struct rxevent *event, void *arg1,
106                                      void *dummy, int dummy2);
107 static void rxi_SendDelayedConnAbort(struct rxevent *event, void *arg1,
108                                      void *unused, int unused2);
109 static void rxi_ReapConnections(struct rxevent *unused, void *unused1,
110                                 void *unused2, int unused3);
111
112 #ifdef RX_ENABLE_LOCKS
113 static void rxi_SetAcksInTransmitQueue(struct rx_call *call);
114 #endif
115
116 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
117 struct rx_tq_debug {
118     rx_atomic_t rxi_start_aborted; /* rxi_start awoke after rxi_Send in error.*/
119     rx_atomic_t rxi_start_in_error;
120 } rx_tq_debug;
121 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
122
123 /* Constant delay time before sending an acknowledge of the last packet
124  * received.  This is to avoid sending an extra acknowledge when the
125  * client is about to make another call, anyway, or the server is
126  * about to respond.
127  *
128  * The lastAckDelay may not exceeed 400ms without causing peers to
129  * unecessarily timeout.
130  */
131 struct clock rx_lastAckDelay = {0, 400000};
132
133 /* Constant delay time before sending a soft ack when none was requested.
134  * This is to make sure we send soft acks before the sender times out,
135  * Normally we wait and send a hard ack when the receiver consumes the packet
136  *
137  * This value has been 100ms in all shipping versions of OpenAFS. Changing it
138  * will require changes to the peer's RTT calculations.
139  */
140 struct clock rx_softAckDelay = {0, 100000};
141
142 /*
143  * rxi_rpc_peer_stat_cnt counts the total number of peer stat structures
144  * currently allocated within rx.  This number is used to allocate the
145  * memory required to return the statistics when queried.
146  * Protected by the rx_rpc_stats mutex.
147  */
148
149 static unsigned int rxi_rpc_peer_stat_cnt;
150
151 /*
152  * rxi_rpc_process_stat_cnt counts the total number of local process stat
153  * structures currently allocated within rx.  The number is used to allocate
154  * the memory required to return the statistics when queried.
155  * Protected by the rx_rpc_stats mutex.
156  */
157
158 static unsigned int rxi_rpc_process_stat_cnt;
159
160 /*
161  * rxi_busyChannelError is the error to return to the application when a call
162  * channel appears busy (inferred from the receipt of RX_PACKET_TYPE_BUSY
163  * packets on the channel), and there are other call channels in the
164  * connection that are not busy. If 0, we do not return errors upon receiving
165  * busy packets; we just keep trying on the same call channel until we hit a
166  * timeout.
167  */
168 static afs_int32 rxi_busyChannelError = 0;
169
170 rx_atomic_t rx_nWaiting = RX_ATOMIC_INIT(0);
171 rx_atomic_t rx_nWaited = RX_ATOMIC_INIT(0);
172
173 #if !defined(offsetof)
174 #include <stddef.h>             /* for definition of offsetof() */
175 #endif
176
177 #ifdef RX_ENABLE_LOCKS
178 afs_kmutex_t rx_atomic_mutex;
179 #endif
180
181 /* Forward prototypes */
182 static struct rx_call * rxi_NewCall(struct rx_connection *, int);
183
184 #ifdef AFS_PTHREAD_ENV
185
186 /*
187  * Use procedural initialization of mutexes/condition variables
188  * to ease NT porting
189  */
190
191 extern afs_kmutex_t rx_quota_mutex;
192 extern afs_kmutex_t rx_pthread_mutex;
193 extern afs_kmutex_t rx_packets_mutex;
194 extern afs_kmutex_t rx_refcnt_mutex;
195 extern afs_kmutex_t des_init_mutex;
196 extern afs_kmutex_t des_random_mutex;
197 extern afs_kmutex_t rx_clock_mutex;
198 extern afs_kmutex_t rxi_connCacheMutex;
199 extern afs_kmutex_t rx_event_mutex;
200 extern afs_kmutex_t event_handler_mutex;
201 extern afs_kmutex_t listener_mutex;
202 extern afs_kmutex_t rx_if_init_mutex;
203 extern afs_kmutex_t rx_if_mutex;
204
205 extern afs_kcondvar_t rx_event_handler_cond;
206 extern afs_kcondvar_t rx_listener_cond;
207
208 static afs_kmutex_t epoch_mutex;
209 static afs_kmutex_t rx_init_mutex;
210 static afs_kmutex_t rx_debug_mutex;
211 static afs_kmutex_t rx_rpc_stats;
212
213 static void
214 rxi_InitPthread(void)
215 {
216     MUTEX_INIT(&rx_clock_mutex, "clock", MUTEX_DEFAULT, 0);
217     MUTEX_INIT(&rx_stats_mutex, "stats", MUTEX_DEFAULT, 0);
218     MUTEX_INIT(&rx_atomic_mutex, "atomic", MUTEX_DEFAULT, 0);
219     MUTEX_INIT(&rx_quota_mutex, "quota", MUTEX_DEFAULT, 0);
220     MUTEX_INIT(&rx_pthread_mutex, "pthread", MUTEX_DEFAULT, 0);
221     MUTEX_INIT(&rx_packets_mutex, "packets", MUTEX_DEFAULT, 0);
222     MUTEX_INIT(&rx_refcnt_mutex, "refcnts", MUTEX_DEFAULT, 0);
223     MUTEX_INIT(&epoch_mutex, "epoch", MUTEX_DEFAULT, 0);
224     MUTEX_INIT(&rx_init_mutex, "init", MUTEX_DEFAULT, 0);
225     MUTEX_INIT(&rx_event_mutex, "event", MUTEX_DEFAULT, 0);
226     MUTEX_INIT(&event_handler_mutex, "event handler", MUTEX_DEFAULT, 0);
227     MUTEX_INIT(&rxi_connCacheMutex, "conn cache", MUTEX_DEFAULT, 0);
228     MUTEX_INIT(&listener_mutex, "listener", MUTEX_DEFAULT, 0);
229     MUTEX_INIT(&rx_if_init_mutex, "if init", MUTEX_DEFAULT, 0);
230     MUTEX_INIT(&rx_if_mutex, "if", MUTEX_DEFAULT, 0);
231     MUTEX_INIT(&rx_debug_mutex, "debug", MUTEX_DEFAULT, 0);
232
233     CV_INIT(&rx_event_handler_cond, "evhand", CV_DEFAULT, 0);
234     CV_INIT(&rx_listener_cond, "rxlisten", CV_DEFAULT, 0);
235
236     osi_Assert(pthread_key_create(&rx_thread_id_key, NULL) == 0);
237     osi_Assert(pthread_key_create(&rx_ts_info_key, NULL) == 0);
238
239     MUTEX_INIT(&rx_rpc_stats, "rx_rpc_stats", MUTEX_DEFAULT, 0);
240     MUTEX_INIT(&rx_freePktQ_lock, "rx_freePktQ_lock", MUTEX_DEFAULT, 0);
241 #ifdef  RX_ENABLE_LOCKS
242 #ifdef RX_LOCKS_DB
243     rxdb_init();
244 #endif /* RX_LOCKS_DB */
245     MUTEX_INIT(&freeSQEList_lock, "freeSQEList lock", MUTEX_DEFAULT, 0);
246     MUTEX_INIT(&rx_freeCallQueue_lock, "rx_freeCallQueue_lock", MUTEX_DEFAULT,
247                0);
248     CV_INIT(&rx_waitingForPackets_cv, "rx_waitingForPackets_cv", CV_DEFAULT,
249             0);
250     MUTEX_INIT(&rx_peerHashTable_lock, "rx_peerHashTable_lock", MUTEX_DEFAULT,
251                0);
252     MUTEX_INIT(&rx_connHashTable_lock, "rx_connHashTable_lock", MUTEX_DEFAULT,
253                0);
254     MUTEX_INIT(&rx_serverPool_lock, "rx_serverPool_lock", MUTEX_DEFAULT, 0);
255     MUTEX_INIT(&rxi_keyCreate_lock, "rxi_keyCreate_lock", MUTEX_DEFAULT, 0);
256 #endif /* RX_ENABLE_LOCKS */
257 }
258
259 pthread_once_t rx_once_init = PTHREAD_ONCE_INIT;
260 #define INIT_PTHREAD_LOCKS osi_Assert(pthread_once(&rx_once_init, rxi_InitPthread)==0)
261 /*
262  * The rx_stats_mutex mutex protects the following global variables:
263  * rxi_lowConnRefCount
264  * rxi_lowPeerRefCount
265  * rxi_nCalls
266  * rxi_Alloccnt
267  * rxi_Allocsize
268  * rx_tq_debug
269  * rx_stats
270  */
271
272 /*
273  * The rx_quota_mutex mutex protects the following global variables:
274  * rxi_dataQuota
275  * rxi_minDeficit
276  * rxi_availProcs
277  * rxi_totalMin
278  */
279
280 /*
281  * The rx_freePktQ_lock protects the following global variables:
282  * rx_nFreePackets
283  */
284
285 /*
286  * The rx_packets_mutex mutex protects the following global variables:
287  * rx_nPackets
288  * rx_TSFPQLocalMax
289  * rx_TSFPQGlobSize
290  * rx_TSFPQMaxProcs
291  */
292
293 /*
294  * The rx_pthread_mutex mutex protects the following global variables:
295  * rxi_fcfs_thread_num
296  */
297 #else
298 #define INIT_PTHREAD_LOCKS
299 #endif
300
301
302 /* Variables for handling the minProcs implementation.  availProcs gives the
303  * number of threads available in the pool at this moment (not counting dudes
304  * executing right now).  totalMin gives the total number of procs required
305  * for handling all minProcs requests.  minDeficit is a dynamic variable
306  * tracking the # of procs required to satisfy all of the remaining minProcs
307  * demands.
308  * For fine grain locking to work, the quota check and the reservation of
309  * a server thread has to come while rxi_availProcs and rxi_minDeficit
310  * are locked. To this end, the code has been modified under #ifdef
311  * RX_ENABLE_LOCKS so that quota checks and reservation occur at the
312  * same time. A new function, ReturnToServerPool() returns the allocation.
313  *
314  * A call can be on several queue's (but only one at a time). When
315  * rxi_ResetCall wants to remove the call from a queue, it has to ensure
316  * that no one else is touching the queue. To this end, we store the address
317  * of the queue lock in the call structure (under the call lock) when we
318  * put the call on a queue, and we clear the call_queue_lock when the
319  * call is removed from a queue (once the call lock has been obtained).
320  * This allows rxi_ResetCall to safely synchronize with others wishing
321  * to manipulate the queue.
322  */
323
324 #if defined(RX_ENABLE_LOCKS)
325 static afs_kmutex_t rx_rpc_stats;
326 #endif
327
328 /* We keep a "last conn pointer" in rxi_FindConnection. The odds are
329 ** pretty good that the next packet coming in is from the same connection
330 ** as the last packet, since we're send multiple packets in a transmit window.
331 */
332 struct rx_connection *rxLastConn = 0;
333
334 #ifdef RX_ENABLE_LOCKS
335 /* The locking hierarchy for rx fine grain locking is composed of these
336  * tiers:
337  *
338  * rx_connHashTable_lock - synchronizes conn creation, rx_connHashTable access
339  * conn_call_lock - used to synchonize rx_EndCall and rx_NewCall
340  * call->lock - locks call data fields.
341  * These are independent of each other:
342  *      rx_freeCallQueue_lock
343  *      rxi_keyCreate_lock
344  * rx_serverPool_lock
345  * freeSQEList_lock
346  *
347  * serverQueueEntry->lock
348  * rx_peerHashTable_lock - locked under rx_connHashTable_lock
349  * rx_rpc_stats
350  * peer->lock - locks peer data fields.
351  * conn_data_lock - that more than one thread is not updating a conn data
352  *                  field at the same time.
353  * rx_freePktQ_lock
354  *
355  * lowest level:
356  *      multi_handle->lock
357  *      rxevent_lock
358  *      rx_packets_mutex
359  *      rx_stats_mutex
360  *      rx_refcnt_mutex
361  *      rx_atomic_mutex
362  *
363  * Do we need a lock to protect the peer field in the conn structure?
364  *      conn->peer was previously a constant for all intents and so has no
365  *      lock protecting this field. The multihomed client delta introduced
366  *      a RX code change : change the peer field in the connection structure
367  *      to that remote interface from which the last packet for this
368  *      connection was sent out. This may become an issue if further changes
369  *      are made.
370  */
371 #define SET_CALL_QUEUE_LOCK(C, L) (C)->call_queue_lock = (L)
372 #define CLEAR_CALL_QUEUE_LOCK(C) (C)->call_queue_lock = NULL
373 #ifdef RX_LOCKS_DB
374 /* rxdb_fileID is used to identify the lock location, along with line#. */
375 static int rxdb_fileID = RXDB_FILE_RX;
376 #endif /* RX_LOCKS_DB */
377 #else /* RX_ENABLE_LOCKS */
378 #define SET_CALL_QUEUE_LOCK(C, L)
379 #define CLEAR_CALL_QUEUE_LOCK(C)
380 #endif /* RX_ENABLE_LOCKS */
381 struct rx_serverQueueEntry *rx_waitForPacket = 0;
382 struct rx_serverQueueEntry *rx_waitingForPacket = 0;
383
384 /* ------------Exported Interfaces------------- */
385
386 /* This function allows rxkad to set the epoch to a suitably random number
387  * which rx_NewConnection will use in the future.  The principle purpose is to
388  * get rxnull connections to use the same epoch as the rxkad connections do, at
389  * least once the first rxkad connection is established.  This is important now
390  * that the host/port addresses aren't used in FindConnection: the uniqueness
391  * of epoch/cid matters and the start time won't do. */
392
393 #ifdef AFS_PTHREAD_ENV
394 /*
395  * This mutex protects the following global variables:
396  * rx_epoch
397  */
398
399 #define LOCK_EPOCH MUTEX_ENTER(&epoch_mutex)
400 #define UNLOCK_EPOCH MUTEX_EXIT(&epoch_mutex)
401 #else
402 #define LOCK_EPOCH
403 #define UNLOCK_EPOCH
404 #endif /* AFS_PTHREAD_ENV */
405
406 void
407 rx_SetEpoch(afs_uint32 epoch)
408 {
409     LOCK_EPOCH;
410     rx_epoch = epoch;
411     UNLOCK_EPOCH;
412 }
413
414 /* Initialize rx.  A port number may be mentioned, in which case this
415  * becomes the default port number for any service installed later.
416  * If 0 is provided for the port number, a random port will be chosen
417  * by the kernel.  Whether this will ever overlap anything in
418  * /etc/services is anybody's guess...  Returns 0 on success, -1 on
419  * error. */
420 #ifndef AFS_NT40_ENV
421 static
422 #endif
423 int rxinit_status = 1;
424 #ifdef AFS_PTHREAD_ENV
425 /*
426  * This mutex protects the following global variables:
427  * rxinit_status
428  */
429
430 #define LOCK_RX_INIT MUTEX_ENTER(&rx_init_mutex)
431 #define UNLOCK_RX_INIT MUTEX_EXIT(&rx_init_mutex)
432 #else
433 #define LOCK_RX_INIT
434 #define UNLOCK_RX_INIT
435 #endif
436
437 int
438 rx_InitHost(u_int host, u_int port)
439 {
440 #ifdef KERNEL
441     osi_timeval_t tv;
442 #else /* KERNEL */
443     struct timeval tv;
444 #endif /* KERNEL */
445     char *htable, *ptable;
446     int tmp_status;
447
448     SPLVAR;
449
450     INIT_PTHREAD_LOCKS;
451     LOCK_RX_INIT;
452     if (rxinit_status == 0) {
453         tmp_status = rxinit_status;
454         UNLOCK_RX_INIT;
455         return tmp_status;      /* Already started; return previous error code. */
456     }
457 #ifdef RXDEBUG
458     rxi_DebugInit();
459 #endif
460 #ifdef AFS_NT40_ENV
461     if (afs_winsockInit() < 0)
462         return -1;
463 #endif
464
465 #ifndef KERNEL
466     /*
467      * Initialize anything necessary to provide a non-premptive threading
468      * environment.
469      */
470     rxi_InitializeThreadSupport();
471 #endif
472
473     /* Allocate and initialize a socket for client and perhaps server
474      * connections. */
475
476     rx_socket = rxi_GetHostUDPSocket(host, (u_short) port);
477     if (rx_socket == OSI_NULLSOCKET) {
478         UNLOCK_RX_INIT;
479         return RX_ADDRINUSE;
480     }
481 #if defined(RX_ENABLE_LOCKS) && defined(KERNEL)
482 #ifdef RX_LOCKS_DB
483     rxdb_init();
484 #endif /* RX_LOCKS_DB */
485     MUTEX_INIT(&rx_stats_mutex, "rx_stats_mutex", MUTEX_DEFAULT, 0);
486     MUTEX_INIT(&rx_quota_mutex, "rx_quota_mutex", MUTEX_DEFAULT, 0);
487     MUTEX_INIT(&rx_pthread_mutex, "rx_pthread_mutex", MUTEX_DEFAULT, 0);
488     MUTEX_INIT(&rx_packets_mutex, "rx_packets_mutex", MUTEX_DEFAULT, 0);
489     MUTEX_INIT(&rx_refcnt_mutex, "rx_refcnt_mutex", MUTEX_DEFAULT, 0);
490     MUTEX_INIT(&rx_rpc_stats, "rx_rpc_stats", MUTEX_DEFAULT, 0);
491     MUTEX_INIT(&rx_freePktQ_lock, "rx_freePktQ_lock", MUTEX_DEFAULT, 0);
492     MUTEX_INIT(&freeSQEList_lock, "freeSQEList lock", MUTEX_DEFAULT, 0);
493     MUTEX_INIT(&rx_freeCallQueue_lock, "rx_freeCallQueue_lock", MUTEX_DEFAULT,
494                0);
495     CV_INIT(&rx_waitingForPackets_cv, "rx_waitingForPackets_cv", CV_DEFAULT,
496             0);
497     MUTEX_INIT(&rx_peerHashTable_lock, "rx_peerHashTable_lock", MUTEX_DEFAULT,
498                0);
499     MUTEX_INIT(&rx_connHashTable_lock, "rx_connHashTable_lock", MUTEX_DEFAULT,
500                0);
501     MUTEX_INIT(&rx_serverPool_lock, "rx_serverPool_lock", MUTEX_DEFAULT, 0);
502 #if defined(AFS_HPUX110_ENV)
503     if (!uniprocessor)
504         rx_sleepLock = alloc_spinlock(LAST_HELD_ORDER - 10, "rx_sleepLock");
505 #endif /* AFS_HPUX110_ENV */
506 #endif /* RX_ENABLE_LOCKS && KERNEL */
507
508     rxi_nCalls = 0;
509     rx_connDeadTime = 12;
510     rx_tranquil = 0;            /* reset flag */
511     rxi_ResetStatistics();
512     htable = (char *)
513         osi_Alloc(rx_hashTableSize * sizeof(struct rx_connection *));
514     PIN(htable, rx_hashTableSize * sizeof(struct rx_connection *));     /* XXXXX */
515     memset(htable, 0, rx_hashTableSize * sizeof(struct rx_connection *));
516     ptable = (char *)osi_Alloc(rx_hashTableSize * sizeof(struct rx_peer *));
517     PIN(ptable, rx_hashTableSize * sizeof(struct rx_peer *));   /* XXXXX */
518     memset(ptable, 0, rx_hashTableSize * sizeof(struct rx_peer *));
519
520     /* Malloc up a bunch of packets & buffers */
521     rx_nFreePackets = 0;
522     queue_Init(&rx_freePacketQueue);
523     rxi_NeedMorePackets = FALSE;
524     rx_nPackets = 0;    /* rx_nPackets is managed by rxi_MorePackets* */
525
526     /* enforce a minimum number of allocated packets */
527     if (rx_extraPackets < rxi_nSendFrags * rx_maxSendWindow)
528         rx_extraPackets = rxi_nSendFrags * rx_maxSendWindow;
529
530     /* allocate the initial free packet pool */
531 #ifdef RX_ENABLE_TSFPQ
532     rxi_MorePacketsTSFPQ(rx_extraPackets + RX_MAX_QUOTA + 2, RX_TS_FPQ_FLUSH_GLOBAL, 0);
533 #else /* RX_ENABLE_TSFPQ */
534     rxi_MorePackets(rx_extraPackets + RX_MAX_QUOTA + 2);        /* fudge */
535 #endif /* RX_ENABLE_TSFPQ */
536     rx_CheckPackets();
537
538     NETPRI;
539
540     clock_Init();
541
542 #if defined(AFS_NT40_ENV) && !defined(AFS_PTHREAD_ENV)
543     tv.tv_sec = clock_now.sec;
544     tv.tv_usec = clock_now.usec;
545     srand((unsigned int)tv.tv_usec);
546 #else
547     osi_GetTime(&tv);
548 #endif
549     if (port) {
550         rx_port = port;
551     } else {
552 #if defined(KERNEL) && !defined(UKERNEL)
553         /* Really, this should never happen in a real kernel */
554         rx_port = 0;
555 #else
556         struct sockaddr_in addr;
557 #ifdef AFS_NT40_ENV
558         int addrlen = sizeof(addr);
559 #else
560         socklen_t addrlen = sizeof(addr);
561 #endif
562         if (getsockname((intptr_t)rx_socket, (struct sockaddr *)&addr, &addrlen)) {
563             rx_Finalize();
564             return -1;
565         }
566         rx_port = addr.sin_port;
567 #endif
568     }
569     rx_stats.minRtt.sec = 9999999;
570 #ifdef  KERNEL
571     rx_SetEpoch(tv.tv_sec | 0x80000000);
572 #else
573     rx_SetEpoch(tv.tv_sec);     /* Start time of this package, rxkad
574                                  * will provide a randomer value. */
575 #endif
576     MUTEX_ENTER(&rx_quota_mutex);
577     rxi_dataQuota += rx_extraQuota; /* + extra pkts caller asked to rsrv */
578     MUTEX_EXIT(&rx_quota_mutex);
579     /* *Slightly* random start time for the cid.  This is just to help
580      * out with the hashing function at the peer */
581     rx_nextCid = ((tv.tv_sec ^ tv.tv_usec) << RX_CIDSHIFT);
582     rx_connHashTable = (struct rx_connection **)htable;
583     rx_peerHashTable = (struct rx_peer **)ptable;
584
585     rx_hardAckDelay.sec = 0;
586     rx_hardAckDelay.usec = 100000;      /* 100 milliseconds */
587
588     rxevent_Init(20, rxi_ReScheduleEvents);
589
590     /* Initialize various global queues */
591     queue_Init(&rx_idleServerQueue);
592     queue_Init(&rx_incomingCallQueue);
593     queue_Init(&rx_freeCallQueue);
594
595 #if defined(AFS_NT40_ENV) && !defined(KERNEL)
596     /* Initialize our list of usable IP addresses. */
597     rx_GetIFInfo();
598 #endif
599
600 #if defined(RXK_LISTENER_ENV) || !defined(KERNEL)
601     /* Start listener process (exact function is dependent on the
602      * implementation environment--kernel or user space) */
603     rxi_StartListener();
604 #endif
605
606     USERPRI;
607     tmp_status = rxinit_status = 0;
608     UNLOCK_RX_INIT;
609     return tmp_status;
610 }
611
612 int
613 rx_Init(u_int port)
614 {
615     return rx_InitHost(htonl(INADDR_ANY), port);
616 }
617
618 /* RTT Timer
619  * ---------
620  *
621  * The rxi_rto functions implement a TCP (RFC2988) style algorithm for
622  * maintaing the round trip timer.
623  *
624  */
625
626 /*!
627  * Start a new RTT timer for a given call and packet.
628  *
629  * There must be no resendEvent already listed for this call, otherwise this
630  * will leak events - intended for internal use within the RTO code only
631  *
632  * @param[in] call
633  *      the RX call to start the timer for
634  * @param[in] lastPacket
635  *      a flag indicating whether the last packet has been sent or not
636  *
637  * @pre call must be locked before calling this function
638  *
639  */
640 static_inline void
641 rxi_rto_startTimer(struct rx_call *call, int lastPacket, int istack)
642 {
643     struct clock now, retryTime;
644
645     clock_GetTime(&now);
646     retryTime = now;
647
648     clock_Add(&retryTime, &call->rto);
649
650     /* If we're sending the last packet, and we're the client, then the server
651      * may wait for an additional 400ms before returning the ACK, wait for it
652      * rather than hitting a timeout */
653     if (lastPacket && call->conn->type == RX_CLIENT_CONNECTION)
654         clock_Addmsec(&retryTime, 400);
655
656     MUTEX_ENTER(&rx_refcnt_mutex);
657     CALL_HOLD(call, RX_CALL_REFCOUNT_RESEND);
658     MUTEX_EXIT(&rx_refcnt_mutex);
659     call->resendEvent = rxevent_Post(&retryTime, &now, rxi_Resend,
660                                      call, NULL, istack);
661 }
662
663 /*!
664  * Cancel an RTT timer for a given call.
665  *
666  *
667  * @param[in] call
668  *      the RX call to cancel the timer for
669  *
670  * @pre call must be locked before calling this function
671  *
672  */
673
674 static_inline void
675 rxi_rto_cancel(struct rx_call *call)
676 {
677     rxevent_Cancel(&call->resendEvent, call, RX_CALL_REFCOUNT_RESEND);
678 }
679
680 /*!
681  * Tell the RTO timer that we have sent a packet.
682  *
683  * If the timer isn't already running, then start it. If the timer is running,
684  * then do nothing.
685  *
686  * @param[in] call
687  *      the RX call that the packet has been sent on
688  * @param[in] lastPacket
689  *      A flag which is true if this is the last packet for the call
690  *
691  * @pre The call must be locked before calling this function
692  *
693  */
694
695 static_inline void
696 rxi_rto_packet_sent(struct rx_call *call, int lastPacket, int istack)
697 {
698     if (call->resendEvent)
699         return;
700
701     rxi_rto_startTimer(call, lastPacket, istack);
702 }
703
704 /*!
705  * Tell the RTO timer that we have received an new ACK message
706  *
707  * This function should be called whenever a call receives an ACK that
708  * acknowledges new packets. Whatever happens, we stop the current timer.
709  * If there are unacked packets in the queue which have been sent, then
710  * we restart the timer from now. Otherwise, we leave it stopped.
711  *
712  * @param[in] call
713  *      the RX call that the ACK has been received on
714  */
715
716 static_inline void
717 rxi_rto_packet_acked(struct rx_call *call, int istack)
718 {
719     struct rx_packet *p, *nxp;
720
721     rxi_rto_cancel(call);
722
723     if (queue_IsEmpty(&call->tq))
724         return;
725
726     for (queue_Scan(&call->tq, p, nxp, rx_packet)) {
727         if (p->header.seq > call->tfirst + call->twind)
728             return;
729
730         if (!(p->flags & RX_PKTFLAG_ACKED) && p->flags & RX_PKTFLAG_SENT) {
731             rxi_rto_startTimer(call, p->header.flags & RX_LAST_PACKET, istack);
732             return;
733         }
734     }
735 }
736
737
738 /**
739  * Set an initial round trip timeout for a peer connection
740  *
741  * @param[in] secs The timeout to set in seconds
742  */
743
744 void
745 rx_rto_setPeerTimeoutSecs(struct rx_peer *peer, int secs) {
746     peer->rtt = secs * 8000;
747 }
748
749 /**
750  * Sets the error generated when a busy call channel is detected.
751  *
752  * @param[in] error The error to return for a call on a busy channel.
753  *
754  * @pre Neither rx_Init nor rx_InitHost have been called yet
755  */
756 void
757 rx_SetBusyChannelError(afs_int32 error)
758 {
759     osi_Assert(rxinit_status != 0);
760     rxi_busyChannelError = error;
761 }
762
763 /**
764  * Set a delayed ack event on the specified call for the given time
765  *
766  * @param[in] call - the call on which to set the event
767  * @param[in] offset - the delay from now after which the event fires
768  */
769 void
770 rxi_PostDelayedAckEvent(struct rx_call *call, struct clock *offset)
771 {
772     struct clock now, when;
773
774     clock_GetTime(&now);
775     when = now;
776     clock_Add(&when, offset);
777
778     if (!call->delayedAckEvent
779         || clock_Gt(&call->delayedAckEvent->eventTime, &when)) {
780
781         rxevent_Cancel(&call->delayedAckEvent, call,
782                        RX_CALL_REFCOUNT_DELAY);
783         MUTEX_ENTER(&rx_refcnt_mutex);
784         CALL_HOLD(call, RX_CALL_REFCOUNT_DELAY);
785         MUTEX_EXIT(&rx_refcnt_mutex);
786
787         call->delayedAckEvent = rxevent_Post(&when, &now,
788                                              rxi_SendDelayedAck,
789                                              call, NULL, 0);
790     }
791 }
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     conn->checkReachEvent = NULL;
3702     waiting = conn->flags & RX_CONN_ATTACHWAIT;
3703     if (event) {
3704         MUTEX_ENTER(&rx_refcnt_mutex);
3705         conn->refCount--;
3706         MUTEX_EXIT(&rx_refcnt_mutex);
3707     }
3708     MUTEX_EXIT(&conn->conn_data_lock);
3709
3710     if (waiting) {
3711         if (!call) {
3712             MUTEX_ENTER(&conn->conn_call_lock);
3713             MUTEX_ENTER(&conn->conn_data_lock);
3714             for (i = 0; i < RX_MAXCALLS; i++) {
3715                 struct rx_call *tc = conn->call[i];
3716                 if (tc && tc->state == RX_STATE_PRECALL) {
3717                     call = tc;
3718                     break;
3719                 }
3720             }
3721             if (!call)
3722                 rxi_ConnClearAttachWait(conn);
3723             MUTEX_EXIT(&conn->conn_data_lock);
3724             MUTEX_EXIT(&conn->conn_call_lock);
3725         }
3726
3727         if (call) {
3728             if (call != acall)
3729                 MUTEX_ENTER(&call->lock);
3730             rxi_SendAck(call, NULL, 0, RX_ACK_PING, 0);
3731             if (call != acall)
3732                 MUTEX_EXIT(&call->lock);
3733
3734             clock_GetTime(&now);
3735             when = now;
3736             when.sec += RX_CHECKREACH_TIMEOUT;
3737             MUTEX_ENTER(&conn->conn_data_lock);
3738             if (!conn->checkReachEvent) {
3739                 MUTEX_ENTER(&rx_refcnt_mutex);
3740                 conn->refCount++;
3741                 MUTEX_EXIT(&rx_refcnt_mutex);
3742                 conn->checkReachEvent = rxevent_Post(&when, &now,
3743                                                      rxi_CheckReachEvent, conn,
3744                                                      NULL, 0);
3745             }
3746             MUTEX_EXIT(&conn->conn_data_lock);
3747         }
3748     }
3749 }
3750
3751 static int
3752 rxi_CheckConnReach(struct rx_connection *conn, struct rx_call *call)
3753 {
3754     struct rx_service *service = conn->service;
3755     struct rx_peer *peer = conn->peer;
3756     afs_uint32 now, lastReach;
3757
3758     if (service->checkReach == 0)
3759         return 0;
3760
3761     now = clock_Sec();
3762     MUTEX_ENTER(&peer->peer_lock);
3763     lastReach = peer->lastReachTime;
3764     MUTEX_EXIT(&peer->peer_lock);
3765     if (now - lastReach < RX_CHECKREACH_TTL)
3766         return 0;
3767
3768     MUTEX_ENTER(&conn->conn_data_lock);
3769     if (conn->flags & RX_CONN_ATTACHWAIT) {
3770         MUTEX_EXIT(&conn->conn_data_lock);
3771         return 1;
3772     }
3773     conn->flags |= RX_CONN_ATTACHWAIT;
3774     MUTEX_EXIT(&conn->conn_data_lock);
3775     if (!conn->checkReachEvent)
3776         rxi_CheckReachEvent(NULL, conn, call, 0);
3777
3778     return 1;
3779 }
3780
3781 /* try to attach call, if authentication is complete */
3782 static void
3783 TryAttach(struct rx_call *acall, osi_socket socket,
3784           int *tnop, struct rx_call **newcallp,
3785           int reachOverride)
3786 {
3787     struct rx_connection *conn = acall->conn;
3788
3789     if (conn->type == RX_SERVER_CONNECTION
3790         && acall->state == RX_STATE_PRECALL) {
3791         /* Don't attach until we have any req'd. authentication. */
3792         if (RXS_CheckAuthentication(conn->securityObject, conn) == 0) {
3793             if (reachOverride || rxi_CheckConnReach(conn, acall) == 0)
3794                 rxi_AttachServerProc(acall, socket, tnop, newcallp);
3795             /* Note:  this does not necessarily succeed; there
3796              * may not any proc available
3797              */
3798         } else {
3799             rxi_ChallengeOn(acall->conn);
3800         }
3801     }
3802 }
3803
3804 /* A data packet has been received off the interface.  This packet is
3805  * appropriate to the call (the call is in the right state, etc.).  This
3806  * routine can return a packet to the caller, for re-use */
3807
3808 struct rx_packet *
3809 rxi_ReceiveDataPacket(struct rx_call *call,
3810                       struct rx_packet *np, int istack,
3811                       osi_socket socket, afs_uint32 host, u_short port,
3812                       int *tnop, struct rx_call **newcallp)
3813 {
3814     int ackNeeded = 0;          /* 0 means no, otherwise ack_reason */
3815     int newPackets = 0;
3816     int didHardAck = 0;
3817     int haveLast = 0;
3818     afs_uint32 seq;
3819     afs_uint32 serial=0, flags=0;
3820     int isFirst;
3821     struct rx_packet *tnp;
3822     if (rx_stats_active)
3823         rx_atomic_inc(&rx_stats.dataPacketsRead);
3824
3825 #ifdef KERNEL
3826     /* If there are no packet buffers, drop this new packet, unless we can find
3827      * packet buffers from inactive calls */
3828     if (!call->error
3829         && (rxi_OverQuota(RX_PACKET_CLASS_RECEIVE) || TooLow(np, call))) {
3830         MUTEX_ENTER(&rx_freePktQ_lock);
3831         rxi_NeedMorePackets = TRUE;
3832         MUTEX_EXIT(&rx_freePktQ_lock);
3833         if (rx_stats_active)
3834             rx_atomic_inc(&rx_stats.noPacketBuffersOnRead);
3835         call->rprev = np->header.serial;
3836         rxi_calltrace(RX_TRACE_DROP, call);
3837         dpf(("packet %"AFS_PTR_FMT" dropped on receipt - quota problems\n", np));
3838         /* We used to clear the receive queue here, in an attempt to free
3839          * packets. However this is unsafe if the queue has received a
3840          * soft ACK for the final packet */
3841         rxi_PostDelayedAckEvent(call, &rx_softAckDelay);
3842
3843         /* we've damaged this call already, might as well do it in. */
3844         return np;
3845     }
3846 #endif /* KERNEL */
3847
3848     /*
3849      * New in AFS 3.5, if the RX_JUMBO_PACKET flag is set then this
3850      * packet is one of several packets transmitted as a single
3851      * datagram. Do not send any soft or hard acks until all packets
3852      * in a jumbogram have been processed. Send negative acks right away.
3853      */
3854     for (isFirst = 1, tnp = NULL; isFirst || tnp; isFirst = 0) {
3855         /* tnp is non-null when there are more packets in the
3856          * current jumbo gram */
3857         if (tnp) {
3858             if (np)
3859                 rxi_FreePacket(np);
3860             np = tnp;
3861         }
3862
3863         seq = np->header.seq;
3864         serial = np->header.serial;
3865         flags = np->header.flags;
3866
3867         /* If the call is in an error state, send an abort message */
3868         if (call->error)
3869             return rxi_SendCallAbort(call, np, istack, 0);
3870
3871         /* The RX_JUMBO_PACKET is set in all but the last packet in each
3872          * AFS 3.5 jumbogram. */
3873         if (flags & RX_JUMBO_PACKET) {
3874             tnp = rxi_SplitJumboPacket(np, host, port, isFirst);
3875         } else {
3876             tnp = NULL;
3877         }
3878
3879         if (np->header.spare != 0) {
3880             MUTEX_ENTER(&call->conn->conn_data_lock);
3881             call->conn->flags |= RX_CONN_USING_PACKET_CKSUM;
3882             MUTEX_EXIT(&call->conn->conn_data_lock);
3883         }
3884
3885         /* The usual case is that this is the expected next packet */
3886         if (seq == call->rnext) {
3887
3888             /* Check to make sure it is not a duplicate of one already queued */
3889             if (queue_IsNotEmpty(&call->rq)
3890                 && queue_First(&call->rq, rx_packet)->header.seq == seq) {
3891                 if (rx_stats_active)
3892                     rx_atomic_inc(&rx_stats.dupPacketsRead);
3893                 dpf(("packet %"AFS_PTR_FMT" dropped on receipt - duplicate\n", np));
3894                 rxevent_Cancel(&call->delayedAckEvent, call,
3895                                RX_CALL_REFCOUNT_DELAY);
3896                 np = rxi_SendAck(call, np, serial, RX_ACK_DUPLICATE, istack);
3897                 ackNeeded = 0;
3898                 call->rprev = seq;
3899                 continue;
3900             }
3901
3902             /* It's the next packet. Stick it on the receive queue
3903              * for this call. Set newPackets to make sure we wake
3904              * the reader once all packets have been processed */
3905 #ifdef RX_TRACK_PACKETS
3906             np->flags |= RX_PKTFLAG_RQ;
3907 #endif
3908             queue_Prepend(&call->rq, np);
3909 #ifdef RXDEBUG_PACKET
3910             call->rqc++;
3911 #endif /* RXDEBUG_PACKET */
3912             call->nSoftAcks++;
3913             np = NULL;          /* We can't use this anymore */
3914             newPackets = 1;
3915
3916             /* If an ack is requested then set a flag to make sure we
3917              * send an acknowledgement for this packet */
3918             if (flags & RX_REQUEST_ACK) {
3919                 ackNeeded = RX_ACK_REQUESTED;
3920             }
3921
3922             /* Keep track of whether we have received the last packet */
3923             if (flags & RX_LAST_PACKET) {
3924                 call->flags |= RX_CALL_HAVE_LAST;
3925                 haveLast = 1;
3926             }
3927
3928             /* Check whether we have all of the packets for this call */
3929             if (call->flags & RX_CALL_HAVE_LAST) {
3930                 afs_uint32 tseq;        /* temporary sequence number */
3931                 struct rx_packet *tp;   /* Temporary packet pointer */
3932                 struct rx_packet *nxp;  /* Next pointer, for queue_Scan */
3933
3934                 for (tseq = seq, queue_Scan(&call->rq, tp, nxp, rx_packet)) {
3935                     if (tseq != tp->header.seq)
3936                         break;
3937                     if (tp->header.flags & RX_LAST_PACKET) {
3938                         call->flags |= RX_CALL_RECEIVE_DONE;
3939                         break;
3940                     }
3941                     tseq++;
3942                 }
3943             }
3944
3945             /* Provide asynchronous notification for those who want it
3946              * (e.g. multi rx) */
3947             if (call->arrivalProc) {
3948                 (*call->arrivalProc) (call, call->arrivalProcHandle,
3949                                       call->arrivalProcArg);
3950                 call->arrivalProc = (void (*)())0;
3951             }
3952
3953             /* Update last packet received */
3954             call->rprev = seq;
3955
3956             /* If there is no server process serving this call, grab
3957              * one, if available. We only need to do this once. If a
3958              * server thread is available, this thread becomes a server
3959              * thread and the server thread becomes a listener thread. */
3960             if (isFirst) {
3961                 TryAttach(call, socket, tnop, newcallp, 0);
3962             }
3963         }
3964         /* This is not the expected next packet. */
3965         else {
3966             /* Determine whether this is a new or old packet, and if it's
3967              * a new one, whether it fits into the current receive window.
3968              * Also figure out whether the packet was delivered in sequence.
3969              * We use the prev variable to determine whether the new packet
3970              * is the successor of its immediate predecessor in the
3971              * receive queue, and the missing flag to determine whether
3972              * any of this packets predecessors are missing.  */
3973
3974             afs_uint32 prev;    /* "Previous packet" sequence number */
3975             struct rx_packet *tp;       /* Temporary packet pointer */
3976             struct rx_packet *nxp;      /* Next pointer, for queue_Scan */
3977             int missing;        /* Are any predecessors missing? */
3978
3979             /* If the new packet's sequence number has been sent to the
3980              * application already, then this is a duplicate */
3981             if (seq < call->rnext) {
3982                 if (rx_stats_active)
3983                     rx_atomic_inc(&rx_stats.dupPacketsRead);
3984                 rxevent_Cancel(&call->delayedAckEvent, call,
3985                                RX_CALL_REFCOUNT_DELAY);
3986                 np = rxi_SendAck(call, np, serial, RX_ACK_DUPLICATE, istack);
3987                 ackNeeded = 0;
3988                 call->rprev = seq;
3989                 continue;
3990             }
3991
3992             /* If the sequence number is greater than what can be
3993              * accomodated by the current window, then send a negative
3994              * acknowledge and drop the packet */
3995             if ((call->rnext + call->rwind) <= seq) {
3996                 rxevent_Cancel(&call->delayedAckEvent, call,
3997                                RX_CALL_REFCOUNT_DELAY);
3998                 np = rxi_SendAck(call, np, serial, RX_ACK_EXCEEDS_WINDOW,
3999                                  istack);
4000                 ackNeeded = 0;
4001                 call->rprev = seq;
4002                 continue;
4003             }
4004
4005             /* Look for the packet in the queue of old received packets */
4006             for (prev = call->rnext - 1, missing =
4007                  0, queue_Scan(&call->rq, tp, nxp, rx_packet)) {
4008                 /*Check for duplicate packet */
4009                 if (seq == tp->header.seq) {
4010                     if (rx_stats_active)
4011                         rx_atomic_inc(&rx_stats.dupPacketsRead);
4012                     rxevent_Cancel(&call->delayedAckEvent, call,
4013                                    RX_CALL_REFCOUNT_DELAY);
4014                     np = rxi_SendAck(call, np, serial, RX_ACK_DUPLICATE,
4015                                      istack);
4016                     ackNeeded = 0;
4017                     call->rprev = seq;
4018                     goto nextloop;
4019                 }
4020                 /* If we find a higher sequence packet, break out and
4021                  * insert the new packet here. */
4022                 if (seq < tp->header.seq)
4023                     break;
4024                 /* Check for missing packet */
4025                 if (tp->header.seq != prev + 1) {
4026                     missing = 1;
4027                 }
4028
4029                 prev = tp->header.seq;
4030             }
4031
4032             /* Keep track of whether we have received the last packet. */
4033             if (flags & RX_LAST_PACKET) {
4034                 call->flags |= RX_CALL_HAVE_LAST;
4035             }
4036
4037             /* It's within the window: add it to the the receive queue.
4038              * tp is left by the previous loop either pointing at the
4039              * packet before which to insert the new packet, or at the
4040              * queue head if the queue is empty or the packet should be
4041              * appended. */
4042 #ifdef RX_TRACK_PACKETS
4043             np->flags |= RX_PKTFLAG_RQ;
4044 #endif
4045 #ifdef RXDEBUG_PACKET
4046             call->rqc++;
4047 #endif /* RXDEBUG_PACKET */
4048             queue_InsertBefore(tp, np);
4049             call->nSoftAcks++;
4050             np = NULL;
4051
4052             /* Check whether we have all of the packets for this call */
4053             if ((call->flags & RX_CALL_HAVE_LAST)
4054                 && !(call->flags & RX_CALL_RECEIVE_DONE)) {
4055                 afs_uint32 tseq;        /* temporary sequence number */
4056
4057                 for (tseq =
4058                      call->rnext, queue_Scan(&call->rq, tp, nxp, rx_packet)) {
4059                     if (tseq != tp->header.seq)
4060                         break;
4061                     if (tp->header.flags & RX_LAST_PACKET) {
4062                         call->flags |= RX_CALL_RECEIVE_DONE;
4063                         break;
4064                     }
4065                     tseq++;
4066                 }
4067             }
4068
4069             /* We need to send an ack of the packet is out of sequence,
4070              * or if an ack was requested by the peer. */
4071             if (seq != prev + 1 || missing) {
4072                 ackNeeded = RX_ACK_OUT_OF_SEQUENCE;
4073             } else if (flags & RX_REQUEST_ACK) {
4074                 ackNeeded = RX_ACK_REQUESTED;
4075             }
4076
4077             /* Acknowledge the last packet for each call */
4078             if (flags & RX_LAST_PACKET) {
4079                 haveLast = 1;
4080             }
4081
4082             call->rprev = seq;
4083         }
4084       nextloop:;
4085     }
4086
4087     if (newPackets) {
4088         /*
4089          * If the receiver is waiting for an iovec, fill the iovec
4090          * using the data from the receive queue */
4091         if (call->flags & RX_CALL_IOVEC_WAIT) {
4092             didHardAck = rxi_FillReadVec(call, serial);
4093             /* the call may have been aborted */
4094             if (call->error) {
4095                 return NULL;
4096             }
4097             if (didHardAck) {
4098                 ackNeeded = 0;
4099             }
4100         }
4101
4102         /* Wakeup the reader if any */
4103         if ((call->flags & RX_CALL_READER_WAIT)
4104             && (!(call->flags & RX_CALL_IOVEC_WAIT) || !(call->iovNBytes)
4105                 || (call->iovNext >= call->iovMax)
4106                 || (call->flags & RX_CALL_RECEIVE_DONE))) {
4107             call->flags &= ~RX_CALL_READER_WAIT;
4108 #ifdef  RX_ENABLE_LOCKS
4109             CV_BROADCAST(&call->cv_rq);
4110 #else
4111             osi_rxWakeup(&call->rq);
4112 #endif
4113         }
4114     }
4115
4116     /*
4117      * Send an ack when requested by the peer, or once every
4118      * rxi_SoftAckRate packets until the last packet has been
4119      * received. Always send a soft ack for the last packet in
4120      * the server's reply. */
4121     if (ackNeeded) {
4122         rxevent_Cancel(&call->delayedAckEvent, call, RX_CALL_REFCOUNT_DELAY);
4123         np = rxi_SendAck(call, np, serial, ackNeeded, istack);
4124     } else if (call->nSoftAcks > (u_short) rxi_SoftAckRate) {
4125         rxevent_Cancel(&call->delayedAckEvent, call, RX_CALL_REFCOUNT_DELAY);
4126         np = rxi_SendAck(call, np, serial, RX_ACK_IDLE, istack);
4127     } else if (call->nSoftAcks) {
4128         if (haveLast && !(flags & RX_CLIENT_INITIATED))
4129             rxi_PostDelayedAckEvent(call, &rx_lastAckDelay);
4130         else
4131             rxi_PostDelayedAckEvent(call, &rx_softAckDelay);
4132     } else if (call->flags & RX_CALL_RECEIVE_DONE) {
4133         rxevent_Cancel(&call->delayedAckEvent, call, RX_CALL_REFCOUNT_DELAY);
4134     }
4135
4136     return np;
4137 }
4138
4139 static void
4140 rxi_UpdatePeerReach(struct rx_connection *conn, struct rx_call *acall)
4141 {
4142     struct rx_peer *peer = conn->peer;
4143
4144     MUTEX_ENTER(&peer->peer_lock);
4145     peer->lastReachTime = clock_Sec();
4146     MUTEX_EXIT(&peer->peer_lock);
4147
4148     MUTEX_ENTER(&conn->conn_data_lock);
4149     if (conn->flags & RX_CONN_ATTACHWAIT) {
4150         int i;
4151
4152         rxi_ConnClearAttachWait(conn);
4153         MUTEX_EXIT(&conn->conn_data_lock);
4154
4155         for (i = 0; i < RX_MAXCALLS; i++) {
4156             struct rx_call *call = conn->call[i];
4157             if (call) {
4158                 if (call != acall)
4159                     MUTEX_ENTER(&call->lock);
4160                 /* tnop can be null if newcallp is null */
4161                 TryAttach(call, (osi_socket) - 1, NULL, NULL, 1);
4162                 if (call != acall)
4163                     MUTEX_EXIT(&call->lock);
4164             }
4165         }
4166     } else
4167         MUTEX_EXIT(&conn->conn_data_lock);
4168 }
4169
4170 #if defined(RXDEBUG) && defined(AFS_NT40_ENV)
4171 static const char *
4172 rx_ack_reason(int reason)
4173 {
4174     switch (reason) {
4175     case RX_ACK_REQUESTED:
4176         return "requested";
4177     case RX_ACK_DUPLICATE:
4178         return "duplicate";
4179     case RX_ACK_OUT_OF_SEQUENCE:
4180         return "sequence";
4181     case RX_ACK_EXCEEDS_WINDOW:
4182         return "window";
4183     case RX_ACK_NOSPACE:
4184         return "nospace";
4185     case RX_ACK_PING:
4186         return "ping";
4187     case RX_ACK_PING_RESPONSE:
4188         return "response";
4189     case RX_ACK_DELAY:
4190         return "delay";
4191     case RX_ACK_IDLE:
4192         return "idle";
4193     default:
4194         return "unknown!!";
4195     }
4196 }
4197 #endif
4198
4199
4200 /* The real smarts of the whole thing.  */
4201 struct rx_packet *
4202 rxi_ReceiveAckPacket(struct rx_call *call, struct rx_packet *np,
4203                      int istack)
4204 {
4205     struct rx_ackPacket *ap;
4206     int nAcks;
4207     struct rx_packet *tp;
4208     struct rx_packet *nxp;      /* Next packet pointer for queue_Scan */
4209     struct rx_connection *conn = call->conn;
4210     struct rx_peer *peer = conn->peer;
4211     struct clock now;           /* Current time, for RTT calculations */
4212     afs_uint32 first;
4213     afs_uint32 prev;
4214     afs_uint32 serial;
4215     /* because there are CM's that are bogus, sending weird values for this. */
4216     afs_uint32 skew = 0;
4217     int nbytes;
4218     int missing;
4219     int acked;
4220     int nNacked = 0;
4221     int newAckCount = 0;
4222     int maxDgramPackets = 0;    /* Set if peer supports AFS 3.5 jumbo datagrams */
4223     int pktsize = 0;            /* Set if we need to update the peer mtu */
4224     int conn_data_locked = 0;
4225
4226     if (rx_stats_active)
4227         rx_atomic_inc(&rx_stats.ackPacketsRead);
4228     ap = (struct rx_ackPacket *)rx_DataOf(np);
4229     nbytes = rx_Contiguous(np) - (int)((ap->acks) - (u_char *) ap);
4230     if (nbytes < 0)
4231         return np;              /* truncated ack packet */
4232
4233     /* depends on ack packet struct */
4234     nAcks = MIN((unsigned)nbytes, (unsigned)ap->nAcks);
4235     first = ntohl(ap->firstPacket);
4236     prev = ntohl(ap->previousPacket);
4237     serial = ntohl(ap->serial);
4238     /* temporarily disabled -- needs to degrade over time
4239      * skew = ntohs(ap->maxSkew); */
4240
4241     /* Ignore ack packets received out of order */
4242     if (first < call->tfirst ||
4243         (first == call->tfirst && prev < call->tprev)) {
4244         return np;
4245     }
4246
4247     call->tprev = prev;
4248
4249     if (np->header.flags & RX_SLOW_START_OK) {
4250         call->flags |= RX_CALL_SLOW_START_OK;
4251     }
4252
4253     if (ap->reason == RX_ACK_PING_RESPONSE)
4254         rxi_UpdatePeerReach(conn, call);
4255
4256     if (conn->lastPacketSizeSeq) {
4257         MUTEX_ENTER(&conn->conn_data_lock);
4258         conn_data_locked = 1;
4259         if ((first > conn->lastPacketSizeSeq) && (conn->lastPacketSize)) {
4260             pktsize = conn->lastPacketSize;
4261             conn->lastPacketSize = conn->lastPacketSizeSeq = 0;
4262         }
4263     }
4264     if ((ap->reason == RX_ACK_PING_RESPONSE) && (conn->lastPingSizeSer)) {
4265         if (!conn_data_locked) {
4266             MUTEX_ENTER(&conn->conn_data_lock);
4267             conn_data_locked = 1;
4268         }
4269         if ((conn->lastPingSizeSer == serial) && (conn->lastPingSize)) {
4270             /* process mtu ping ack */
4271             pktsize = conn->lastPingSize;
4272             conn->lastPingSizeSer = conn->lastPingSize = 0;
4273         }
4274     }
4275
4276     if (conn_data_locked) {
4277         MUTEX_EXIT(&conn->conn_data_lock);
4278         conn_data_locked = 0;
4279     }
4280 #ifdef RXDEBUG
4281 #ifdef AFS_NT40_ENV
4282     if (rxdebug_active) {
4283         char msg[512];
4284         size_t len;
4285
4286         len = _snprintf(msg, sizeof(msg),
4287                         "tid[%d] RACK: reason %s serial %u previous %u seq %u skew %d first %u acks %u space %u ",
4288                          GetCurrentThreadId(), rx_ack_reason(ap->reason),
4289                          ntohl(ap->serial), ntohl(ap->previousPacket),
4290                          (unsigned int)np->header.seq, (unsigned int)skew,
4291                          ntohl(ap->firstPacket), ap->nAcks, ntohs(ap->bufferSpace) );
4292         if (nAcks) {
4293             int offset;
4294
4295             for (offset = 0; offset < nAcks && len < sizeof(msg); offset++)
4296                 msg[len++] = (ap->acks[offset] == RX_ACK_TYPE_NACK ? '-' : '*');
4297         }
4298         msg[len++]='\n';
4299         msg[len] = '\0';
4300         OutputDebugString(msg);
4301     }
4302 #else /* AFS_NT40_ENV */
4303     if (rx_Log) {
4304         fprintf(rx_Log,
4305                 "RACK: reason %x previous %u seq %u serial %u skew %d first %u",
4306                 ap->reason, ntohl(ap->previousPacket),
4307                 (unsigned int)np->header.seq, (unsigned int)serial,
4308                 (unsigned int)skew, ntohl(ap->firstPacket));
4309         if (nAcks) {
4310             int offset;
4311             for (offset = 0; offset < nAcks; offset++)
4312                 putc(ap->acks[offset] == RX_ACK_TYPE_NACK ? '-' : '*',
4313                      rx_Log);
4314         }
4315         putc('\n', rx_Log);
4316     }
4317 #endif /* AFS_NT40_ENV */
4318 #endif
4319
4320     MUTEX_ENTER(&peer->peer_lock);
4321     if (pktsize) {
4322         /*
4323          * Start somewhere. Can't assume we can send what we can receive,
4324          * but we are clearly receiving.
4325          */
4326         if (!peer->maxPacketSize)
4327             peer->maxPacketSize = RX_MIN_PACKET_SIZE+RX_IPUDP_SIZE;
4328
4329         if (pktsize > peer->maxPacketSize) {
4330             peer->maxPacketSize = pktsize;
4331             if ((pktsize-RX_IPUDP_SIZE > peer->ifMTU)) {
4332                 peer->ifMTU=pktsize-RX_IPUDP_SIZE;
4333                 peer->natMTU = rxi_AdjustIfMTU(peer->ifMTU);
4334                 rxi_ScheduleGrowMTUEvent(call, 1);
4335             }
4336         }
4337     }
4338
4339     /* Update the outgoing packet skew value to the latest value of
4340      * the peer's incoming packet skew value.  The ack packet, of
4341      * course, could arrive out of order, but that won't affect things
4342      * much */
4343     peer->outPacketSkew = skew;
4344
4345
4346     clock_GetTime(&now);
4347
4348     /* The transmit queue splits into 4 sections.
4349      *
4350      * The first section is packets which have now been acknowledged
4351      * by a window size change in the ack. These have reached the
4352      * application layer, and may be discarded. These are packets
4353      * with sequence numbers < ap->firstPacket.
4354      *
4355      * The second section is packets which have sequence numbers in
4356      * the range ap->firstPacket to ap->firstPacket + ap->nAcks. The
4357      * contents of the packet's ack array determines whether these
4358      * packets are acknowledged or not.
4359      *
4360      * The third section is packets which fall above the range
4361      * addressed in the ack packet. These have not yet been received
4362      * by the peer.
4363      *
4364      * The four section is packets which have not yet been transmitted.
4365      * These packets will have a header.serial of 0.
4366      */
4367
4368     /* First section - implicitly acknowledged packets that can be
4369      * disposed of
4370      */
4371
4372     tp = queue_First(&call->tq, rx_packet);
4373     while(!queue_IsEnd(&call->tq, tp) && tp->header.seq < first) {
4374         struct rx_packet *next;
4375
4376         next = queue_Next(tp, rx_packet);
4377         call->tfirst = tp->header.seq + 1;
4378
4379         if (!(tp->flags & RX_PKTFLAG_ACKED)) {
4380             newAckCount++;
4381             rxi_ComputeRoundTripTime(tp, ap, call, peer, &now);
4382         }
4383
4384 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
4385         /* XXX Hack. Because we have to release the global rx lock when sending
4386          * packets (osi_NetSend) we drop all acks while we're traversing the tq
4387          * in rxi_Start sending packets out because packets may move to the
4388          * freePacketQueue as result of being here! So we drop these packets until
4389          * we're safely out of the traversing. Really ugly!
4390          * To make it even uglier, if we're using fine grain locking, we can
4391          * set the ack bits in the packets and have rxi_Start remove the packets
4392          * when it's done transmitting.
4393          */
4394         if (call->flags & RX_CALL_TQ_BUSY) {
4395 #ifdef RX_ENABLE_LOCKS
4396             tp->flags |= RX_PKTFLAG_ACKED;
4397             call->flags |= RX_CALL_TQ_SOME_ACKED;
4398 #else /* RX_ENABLE_LOCKS */
4399             break;
4400 #endif /* RX_ENABLE_LOCKS */
4401         } else
4402 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
4403         {
4404             queue_Remove(tp);
4405 #ifdef RX_TRACK_PACKETS
4406             tp->flags &= ~RX_PKTFLAG_TQ;
4407 #endif
4408 #ifdef RXDEBUG_PACKET
4409             call->tqc--;
4410 #endif /* RXDEBUG_PACKET */
4411             rxi_FreePacket(tp); /* rxi_FreePacket mustn't wake up anyone, preemptively. */
4412         }
4413         tp = next;
4414     }
4415
4416     /* N.B. we don't turn off any timers here.  They'll go away by themselves, anyway */
4417
4418     /* Second section of the queue - packets for which we are receiving
4419      * soft ACKs
4420      *
4421      * Go through the explicit acks/nacks and record the results in
4422      * the waiting packets.  These are packets that can't be released
4423      * yet, even with a positive acknowledge.  This positive
4424      * acknowledge only means the packet has been received by the
4425      * peer, not that it will be retained long enough to be sent to
4426      * the peer's upper level.  In addition, reset the transmit timers
4427      * of any missing packets (those packets that must be missing
4428      * because this packet was out of sequence) */
4429
4430     call->nSoftAcked = 0;
4431     missing = 0;
4432     while (!queue_IsEnd(&call->tq, tp) && tp->header.seq < first + nAcks) {
4433         /* Set the acknowledge flag per packet based on the
4434          * information in the ack packet. An acknowlegded packet can
4435          * be downgraded when the server has discarded a packet it
4436          * soacked previously, or when an ack packet is received
4437          * out of sequence. */
4438         if (ap->acks[tp->header.seq - first] == RX_ACK_TYPE_ACK) {
4439             if (!(tp->flags & RX_PKTFLAG_ACKED)) {
4440                 newAckCount++;
4441                 tp->flags |= RX_PKTFLAG_ACKED;
4442                 rxi_ComputeRoundTripTime(tp, ap, call, peer, &now);
4443             }
4444             if (missing) {
4445                 nNacked++;
4446             } else {
4447                 call->nSoftAcked++;
4448             }
4449         } else /* RX_ACK_TYPE_NACK */ {
4450             tp->flags &= ~RX_PKTFLAG_ACKED;
4451             missing = 1;
4452         }
4453
4454         tp = queue_Next(tp, rx_packet);
4455     }
4456
4457     /* We don't need to take any action with the 3rd or 4th section in the
4458      * queue - they're not addressed by the contents of this ACK packet.
4459      */
4460
4461     /* If the window has been extended by this acknowledge packet,
4462      * then wakeup a sender waiting in alloc for window space, or try
4463      * sending packets now, if he's been sitting on packets due to
4464      * lack of window space */
4465     if (call->tnext < (call->tfirst + call->twind)) {
4466 #ifdef  RX_ENABLE_LOCKS
4467         CV_SIGNAL(&call->cv_twind);
4468 #else
4469         if (call->flags & RX_CALL_WAIT_WINDOW_ALLOC) {
4470             call->flags &= ~RX_CALL_WAIT_WINDOW_ALLOC;
4471             osi_rxWakeup(&call->twind);
4472         }
4473 #endif
4474         if (call->flags & RX_CALL_WAIT_WINDOW_SEND) {
4475             call->flags &= ~RX_CALL_WAIT_WINDOW_SEND;
4476         }
4477     }
4478
4479     /* if the ack packet has a receivelen field hanging off it,
4480      * update our state */
4481     if (np->length >= rx_AckDataSize(ap->nAcks) + 2 * sizeof(afs_int32)) {
4482         afs_uint32 tSize;
4483
4484         /* If the ack packet has a "recommended" size that is less than
4485          * what I am using now, reduce my size to match */
4486         rx_packetread(np, rx_AckDataSize(ap->nAcks) + (int)sizeof(afs_int32),
4487                       (int)sizeof(afs_int32), &tSize);
4488         tSize = (afs_uint32) ntohl(tSize);
4489         peer->natMTU = rxi_AdjustIfMTU(MIN(tSize, peer->ifMTU));
4490
4491         /* Get the maximum packet size to send to this peer */
4492         rx_packetread(np, rx_AckDataSize(ap->nAcks), (int)sizeof(afs_int32),
4493                       &tSize);
4494         tSize = (afs_uint32) ntohl(tSize);
4495         tSize = (afs_uint32) MIN(tSize, rx_MyMaxSendSize);
4496         tSize = rxi_AdjustMaxMTU(peer->natMTU, tSize);
4497
4498         /* sanity check - peer might have restarted with different params.
4499          * If peer says "send less", dammit, send less...  Peer should never
4500          * be unable to accept packets of the size that prior AFS versions would
4501          * send without asking.  */
4502         if (peer->maxMTU != tSize) {
4503             if (peer->maxMTU > tSize) /* possible cong., maxMTU decreased */
4504                 peer->congestSeq++;
4505             peer->maxMTU = tSize;
4506             peer->MTU = MIN(tSize, peer->MTU);
4507             call->MTU = MIN(call->MTU, tSize);
4508         }
4509
4510         if (np->length == rx_AckDataSize(ap->nAcks) + 3 * sizeof(afs_int32)) {
4511             /* AFS 3.4a */
4512             rx_packetread(np,
4513                           rx_AckDataSize(ap->nAcks) + 2 * (int)sizeof(afs_int32),
4514                           (int)sizeof(afs_int32), &tSize);
4515             tSize = (afs_uint32) ntohl(tSize);  /* peer's receive window, if it's */
4516             if (tSize < call->twind) {  /* smaller than our send */
4517                 call->twind = tSize;    /* window, we must send less... */
4518                 call->ssthresh = MIN(call->twind, call->ssthresh);
4519                 call->conn->twind[call->channel] = call->twind;
4520             }
4521
4522             /* Only send jumbograms to 3.4a fileservers. 3.3a RX gets the
4523              * network MTU confused with the loopback MTU. Calculate the
4524              * maximum MTU here for use in the slow start code below.
4525              */
4526             /* Did peer restart with older RX version? */
4527             if (peer->maxDgramPackets > 1) {
4528                 peer->maxDgramPackets = 1;
4529             }
4530         } else if (np->length >=
4531                    rx_AckDataSize(ap->nAcks) + 4 * sizeof(afs_int32)) {
4532             /* AFS 3.5 */
4533             rx_packetread(np,
4534                           rx_AckDataSize(ap->nAcks) + 2 * (int)sizeof(afs_int32),
4535                           sizeof(afs_int32), &tSize);
4536             tSize = (afs_uint32) ntohl(tSize);
4537             /*
4538              * As of AFS 3.5 we set the send window to match the receive window.
4539              */
4540             if (tSize < call->twind) {
4541                 call->twind = tSize;
4542                 call->conn->twind[call->channel] = call->twind;
4543                 call->ssthresh = MIN(call->twind, call->ssthresh);
4544             } else if (tSize > call->twind) {
4545                 call->twind = tSize;
4546                 call->conn->twind[call->channel] = call->twind;
4547             }
4548
4549             /*
4550              * As of AFS 3.5, a jumbogram is more than one fixed size
4551              * packet transmitted in a single UDP datagram. If the remote
4552              * MTU is smaller than our local MTU then never send a datagram
4553              * larger than the natural MTU.
4554              */
4555             rx_packetread(np,
4556                           rx_AckDataSize(ap->nAcks) + 3 * (int)sizeof(afs_int32),
4557                           (int)sizeof(afs_int32), &tSize);
4558             maxDgramPackets = (afs_uint32) ntohl(tSize);
4559             maxDgramPackets = MIN(maxDgramPackets, rxi_nDgramPackets);
4560             maxDgramPackets =
4561                 MIN(maxDgramPackets, (int)(peer->ifDgramPackets));
4562             if (maxDgramPackets > 1) {
4563                 peer->maxDgramPackets = maxDgramPackets;
4564                 call->MTU = RX_JUMBOBUFFERSIZE + RX_HEADER_SIZE;
4565             } else {
4566                 peer->maxDgramPackets = 1;
4567                 call->MTU = peer->natMTU;
4568             }
4569         } else if (peer->maxDgramPackets > 1) {
4570             /* Restarted with lower version of RX */
4571             peer->maxDgramPackets = 1;
4572         }
4573     } else if (peer->maxDgramPackets > 1
4574                || peer->maxMTU != OLD_MAX_PACKET_SIZE) {
4575         /* Restarted with lower version of RX */
4576         peer->maxMTU = OLD_MAX_PACKET_SIZE;
4577         peer->natMTU = OLD_MAX_PACKET_SIZE;
4578         peer->MTU = OLD_MAX_PACKET_SIZE;
4579         peer->maxDgramPackets = 1;
4580         peer->nDgramPackets = 1;
4581         peer->congestSeq++;
4582         call->MTU = OLD_MAX_PACKET_SIZE;
4583     }
4584
4585     if (nNacked) {
4586         /*
4587          * Calculate how many datagrams were successfully received after
4588          * the first missing packet and adjust the negative ack counter
4589          * accordingly.
4590          */
4591         call->nAcks = 0;
4592         call->nNacks++;
4593         nNacked = (nNacked + call->nDgramPackets - 1) / call->nDgramPackets;
4594         if (call->nNacks < nNacked) {
4595             call->nNacks = nNacked;
4596         }
4597     } else {
4598         call->nAcks += newAckCount;
4599         call->nNacks = 0;
4600     }
4601
4602     /* If the packet contained new acknowledgements, rather than just
4603      * being a duplicate of one we have previously seen, then we can restart
4604      * the RTT timer
4605      */
4606     if (newAckCount > 0)
4607         rxi_rto_packet_acked(call, istack);
4608
4609     if (call->flags & RX_CALL_FAST_RECOVER) {
4610         if (newAckCount == 0) {
4611             call->cwind = MIN((int)(call->cwind + 1), rx_maxSendWindow);
4612         } else {
4613             call->flags &= ~RX_CALL_FAST_RECOVER;
4614             call->cwind = call->nextCwind;
4615             call->nextCwind = 0;
4616             call->nAcks = 0;
4617         }
4618         call->nCwindAcks = 0;
4619     } else if (nNacked && call->nNacks >= (u_short) rx_nackThreshold) {
4620         /* Three negative acks in a row trigger congestion recovery */
4621         call->flags |= RX_CALL_FAST_RECOVER;
4622         call->ssthresh = MAX(4, MIN((int)call->cwind, (int)call->twind)) >> 1;
4623         call->cwind =
4624             MIN((int)(call->ssthresh + rx_nackThreshold), rx_maxSendWindow);
4625         call->nDgramPackets = MAX(2, (int)call->nDgramPackets) >> 1;
4626         call->nextCwind = call->ssthresh;
4627         call->nAcks = 0;
4628         call->nNacks = 0;
4629         peer->MTU = call->MTU;
4630         peer->cwind = call->nextCwind;
4631         peer->nDgramPackets = call->nDgramPackets;
4632         peer->congestSeq++;
4633         call->congestSeq = peer->congestSeq;
4634
4635         /* Reset the resend times on the packets that were nacked
4636          * so we will retransmit as soon as the window permits
4637          */
4638
4639         for (acked = 0, queue_ScanBackwards(&call->tq, tp, nxp, rx_packet)) {
4640             if (acked) {
4641                 if (!(tp->flags & RX_PKTFLAG_ACKED)) {
4642                     tp->flags &= ~RX_PKTFLAG_SENT;
4643                 }
4644             } else if (tp->flags & RX_PKTFLAG_ACKED) {
4645                 acked = 1;
4646             }
4647         }
4648     } else {
4649         /* If cwind is smaller than ssthresh, then increase
4650          * the window one packet for each ack we receive (exponential
4651          * growth).
4652          * If cwind is greater than or equal to ssthresh then increase
4653          * the congestion window by one packet for each cwind acks we
4654          * receive (linear growth).  */
4655         if (call->cwind < call->ssthresh) {
4656             call->cwind =
4657                 MIN((int)call->ssthresh, (int)(call->cwind + newAckCount));
4658             call->nCwindAcks = 0;
4659         } else {
4660             call->nCwindAcks += newAckCount;
4661             if (call->nCwindAcks >= call->cwind) {
4662                 call->nCwindAcks = 0;
4663                 call->cwind = MIN((int)(call->cwind + 1), rx_maxSendWindow);
4664             }
4665         }
4666         /*
4667          * If we have received several acknowledgements in a row then
4668          * it is time to increase the size of our datagrams
4669          */
4670         if ((int)call->nAcks > rx_nDgramThreshold) {
4671             if (peer->maxDgramPackets > 1) {
4672                 if (call->nDgramPackets < peer->maxDgramPackets) {
4673                     call->nDgramPackets++;
4674                 }
4675                 call->MTU = RX_HEADER_SIZE + RX_JUMBOBUFFERSIZE;
4676             } else if (call->MTU < peer->maxMTU) {
4677                 /* don't upgrade if we can't handle it */
4678                 if ((call->nDgramPackets == 1) && (call->MTU >= peer->ifMTU))
4679                     call->MTU = peer->ifMTU;
4680                 else {
4681                     call->MTU += peer->natMTU;
4682                     call->MTU = MIN(call->MTU, peer->maxMTU);
4683                 }
4684             }
4685             call->nAcks = 0;
4686         }
4687     }
4688
4689     MUTEX_EXIT(&peer->peer_lock);       /* rxi_Start will lock peer. */
4690
4691     /* Servers need to hold the call until all response packets have
4692      * been acknowledged. Soft acks are good enough since clients
4693      * are not allowed to clear their receive queues. */
4694     if (call->state == RX_STATE_HOLD
4695         && call->tfirst + call->nSoftAcked >= call->tnext) {
4696         call->state = RX_STATE_DALLY;
4697         rxi_ClearTransmitQueue(call, 0);
4698         rxevent_Cancel(&call->keepAliveEvent, call, RX_CALL_REFCOUNT_ALIVE);
4699     } else if (!queue_IsEmpty(&call->tq)) {
4700         rxi_Start(call, istack);
4701     }
4702     return np;
4703 }
4704
4705 /* Received a response to a challenge packet */
4706 struct rx_packet *
4707 rxi_ReceiveResponsePacket(struct rx_connection *conn,
4708                           struct rx_packet *np, int istack)
4709 {
4710     int error;
4711
4712     /* Ignore the packet if we're the client */
4713     if (conn->type == RX_CLIENT_CONNECTION)
4714         return np;
4715
4716     /* If already authenticated, ignore the packet (it's probably a retry) */
4717     if (RXS_CheckAuthentication(conn->securityObject, conn) == 0)
4718         return np;
4719
4720     /* Otherwise, have the security object evaluate the response packet */
4721     error = RXS_CheckResponse(conn->securityObject, conn, np);
4722     if (error) {
4723         /* If the response is invalid, reset the connection, sending
4724          * an abort to the peer */
4725 #ifndef KERNEL
4726         rxi_Delay(1);
4727 #endif
4728         rxi_ConnectionError(conn, error);
4729         MUTEX_ENTER(&conn->conn_data_lock);
4730         np = rxi_SendConnectionAbort(conn, np, istack, 0);
4731         MUTEX_EXIT(&conn->conn_data_lock);
4732         return np;
4733     } else {
4734         /* If the response is valid, any calls waiting to attach
4735          * servers can now do so */
4736         int i;
4737
4738         for (i = 0; i < RX_MAXCALLS; i++) {
4739             struct rx_call *call = conn->call[i];
4740             if (call) {
4741                 MUTEX_ENTER(&call->lock);
4742                 if (call->state == RX_STATE_PRECALL)
4743                     rxi_AttachServerProc(call, (osi_socket) - 1, NULL, NULL);
4744                 /* tnop can be null if newcallp is null */
4745                 MUTEX_EXIT(&call->lock);
4746             }
4747         }
4748
4749         /* Update the peer reachability information, just in case
4750          * some calls went into attach-wait while we were waiting
4751          * for authentication..
4752          */
4753         rxi_UpdatePeerReach(conn, NULL);
4754     }
4755     return np;
4756 }
4757
4758 /* A client has received an authentication challenge: the security
4759  * object is asked to cough up a respectable response packet to send
4760  * back to the server.  The server is responsible for retrying the
4761  * challenge if it fails to get a response. */
4762
4763 struct rx_packet *
4764 rxi_ReceiveChallengePacket(struct rx_connection *conn,
4765                            struct rx_packet *np, int istack)
4766 {
4767     int error;
4768
4769     /* Ignore the challenge if we're the server */
4770     if (conn->type == RX_SERVER_CONNECTION)
4771         return np;
4772
4773     /* Ignore the challenge if the connection is otherwise idle; someone's
4774      * trying to use us as an oracle. */
4775     if (!rxi_HasActiveCalls(conn))
4776         return np;
4777
4778     /* Send the security object the challenge packet.  It is expected to fill
4779      * in the response. */
4780     error = RXS_GetResponse(conn->securityObject, conn, np);
4781
4782     /* If the security object is unable to return a valid response, reset the
4783      * connection and send an abort to the peer.  Otherwise send the response
4784      * packet to the peer connection. */
4785     if (error) {
4786         rxi_ConnectionError(conn, error);
4787         MUTEX_ENTER(&conn->conn_data_lock);
4788         np = rxi_SendConnectionAbort(conn, np, istack, 0);
4789         MUTEX_EXIT(&conn->conn_data_lock);
4790     } else {
4791         np = rxi_SendSpecial((struct rx_call *)0, conn, np,
4792                              RX_PACKET_TYPE_RESPONSE, NULL, -1, istack);
4793     }
4794     return np;
4795 }
4796
4797
4798 /* Find an available server process to service the current request in
4799  * the given call structure.  If one isn't available, queue up this
4800  * call so it eventually gets one */
4801 void
4802 rxi_AttachServerProc(struct rx_call *call,
4803                      osi_socket socket, int *tnop,
4804                      struct rx_call **newcallp)
4805 {
4806     struct rx_serverQueueEntry *sq;
4807     struct rx_service *service = call->conn->service;
4808     int haveQuota = 0;
4809
4810     /* May already be attached */
4811     if (call->state == RX_STATE_ACTIVE)
4812         return;
4813
4814     MUTEX_ENTER(&rx_serverPool_lock);
4815
4816     haveQuota = QuotaOK(service);
4817     if ((!haveQuota) || queue_IsEmpty(&rx_idleServerQueue)) {
4818         /* If there are no processes available to service this call,
4819          * put the call on the incoming call queue (unless it's
4820          * already on the queue).
4821          */
4822 #ifdef RX_ENABLE_LOCKS
4823         if (haveQuota)
4824             ReturnToServerPool(service);
4825 #endif /* RX_ENABLE_LOCKS */
4826
4827         if (!(call->flags & RX_CALL_WAIT_PROC)) {
4828             call->flags |= RX_CALL_WAIT_PROC;
4829             rx_atomic_inc(&rx_nWaiting);
4830             rx_atomic_inc(&rx_nWaited);
4831             rxi_calltrace(RX_CALL_ARRIVAL, call);
4832             SET_CALL_QUEUE_LOCK(call, &rx_serverPool_lock);
4833             queue_Append(&rx_incomingCallQueue, call);
4834         }
4835     } else {
4836         sq = queue_Last(&rx_idleServerQueue, rx_serverQueueEntry);
4837
4838         /* If hot threads are enabled, and both newcallp and sq->socketp
4839          * are non-null, then this thread will process the call, and the
4840          * idle server thread will start listening on this threads socket.
4841          */
4842         queue_Remove(sq);
4843         if (rx_enable_hot_thread && newcallp && sq->socketp) {
4844             *newcallp = call;
4845             *tnop = sq->tno;
4846             *sq->socketp = socket;
4847             clock_GetTime(&call->startTime);
4848             MUTEX_ENTER(&rx_refcnt_mutex);
4849             CALL_HOLD(call, RX_CALL_REFCOUNT_BEGIN);
4850             MUTEX_EXIT(&rx_refcnt_mutex);
4851         } else {
4852             sq->newcall = call;
4853         }
4854         if (call->flags & RX_CALL_WAIT_PROC) {
4855             /* Conservative:  I don't think this should happen */
4856             call->flags &= ~RX_CALL_WAIT_PROC;
4857             if (queue_IsOnQueue(call)) {
4858                 queue_Remove(call);
4859
4860                 rx_atomic_dec(&rx_nWaiting);
4861             }
4862         }
4863         call->state = RX_STATE_ACTIVE;
4864         call->mode = RX_MODE_RECEIVING;
4865 #ifdef RX_KERNEL_TRACE
4866         {
4867             int glockOwner = ISAFS_GLOCK();
4868             if (!glockOwner)
4869                 AFS_GLOCK();
4870             afs_Trace3(afs_iclSetp, CM_TRACE_WASHERE, ICL_TYPE_STRING,
4871                        __FILE__, ICL_TYPE_INT32, __LINE__, ICL_TYPE_POINTER,
4872                        call);
4873             if (!glockOwner)
4874                 AFS_GUNLOCK();
4875         }
4876 #endif
4877         if (call->flags & RX_CALL_CLEARED) {
4878             /* send an ack now to start the packet flow up again */
4879             call->flags &= ~RX_CALL_CLEARED;
4880             rxi_SendAck(call, 0, 0, RX_ACK_DELAY, 0);
4881         }
4882 #ifdef  RX_ENABLE_LOCKS
4883         CV_SIGNAL(&sq->cv);
4884 #else
4885         service->nRequestsRunning++;
4886         MUTEX_ENTER(&rx_quota_mutex);
4887         if (service->nRequestsRunning <= service->minProcs)
4888             rxi_minDeficit--;
4889         rxi_availProcs--;
4890         MUTEX_EXIT(&rx_quota_mutex);
4891         osi_rxWakeup(sq);
4892 #endif
4893     }
4894     MUTEX_EXIT(&rx_serverPool_lock);
4895 }
4896
4897 /* Delay the sending of an acknowledge event for a short while, while
4898  * a new call is being prepared (in the case of a client) or a reply
4899  * is being prepared (in the case of a server).  Rather than sending
4900  * an ack packet, an ACKALL packet is sent. */
4901 void
4902 rxi_AckAll(struct rxevent *event, struct rx_call *call, char *dummy)
4903 {
4904 #ifdef RX_ENABLE_LOCKS
4905     if (event) {
4906         MUTEX_ENTER(&call->lock);
4907         call->delayedAckEvent = NULL;
4908         MUTEX_ENTER(&rx_refcnt_mutex);
4909         CALL_RELE(call, RX_CALL_REFCOUNT_ACKALL);
4910         MUTEX_EXIT(&rx_refcnt_mutex);
4911     }
4912     rxi_SendSpecial(call, call->conn, (struct rx_packet *)0,
4913                     RX_PACKET_TYPE_ACKALL, NULL, 0, 0);
4914     call->flags |= RX_CALL_ACKALL_SENT;
4915     if (event)
4916         MUTEX_EXIT(&call->lock);
4917 #else /* RX_ENABLE_LOCKS */
4918     if (event)
4919         call->delayedAckEvent = NULL;
4920     rxi_SendSpecial(call, call->conn, (struct rx_packet *)0,
4921                     RX_PACKET_TYPE_ACKALL, NULL, 0, 0);
4922     call->flags |= RX_CALL_ACKALL_SENT;
4923 #endif /* RX_ENABLE_LOCKS */
4924 }
4925
4926 void
4927 rxi_SendDelayedAck(struct rxevent *event, void *arg1, void *unused1,
4928                    int unused2)
4929 {
4930     struct rx_call *call = arg1;
4931 #ifdef RX_ENABLE_LOCKS
4932     if (event) {
4933         MUTEX_ENTER(&call->lock);
4934         if (event == call->delayedAckEvent)
4935             call->delayedAckEvent = NULL;
4936         MUTEX_ENTER(&rx_refcnt_mutex);
4937         CALL_RELE(call, RX_CALL_REFCOUNT_DELAY);
4938         MUTEX_EXIT(&rx_refcnt_mutex);
4939     }
4940     (void)rxi_SendAck(call, 0, 0, RX_ACK_DELAY, 0);
4941     if (event)
4942         MUTEX_EXIT(&call->lock);
4943 #else /* RX_ENABLE_LOCKS */
4944     if (event)
4945         call->delayedAckEvent = NULL;
4946     (void)rxi_SendAck(call, 0, 0, RX_ACK_DELAY, 0);
4947 #endif /* RX_ENABLE_LOCKS */
4948 }
4949
4950
4951 #ifdef RX_ENABLE_LOCKS
4952 /* Set ack in all packets in transmit queue. rxi_Start will deal with
4953  * clearing them out.
4954  */
4955 static void
4956 rxi_SetAcksInTransmitQueue(struct rx_call *call)
4957 {
4958     struct rx_packet *p, *tp;
4959     int someAcked = 0;
4960
4961     for (queue_Scan(&call->tq, p, tp, rx_packet)) {
4962         p->flags |= RX_PKTFLAG_ACKED;
4963         someAcked = 1;
4964     }
4965     if (someAcked) {
4966         call->flags |= RX_CALL_TQ_CLEARME;
4967         call->flags |= RX_CALL_TQ_SOME_ACKED;
4968     }
4969
4970     rxi_rto_cancel(call);
4971
4972     call->tfirst = call->tnext;
4973     call->nSoftAcked = 0;
4974
4975     if (call->flags & RX_CALL_FAST_RECOVER) {
4976         call->flags &= ~RX_CALL_FAST_RECOVER;
4977         call->cwind = call->nextCwind;
4978         call->nextCwind = 0;
4979     }
4980
4981     CV_SIGNAL(&call->cv_twind);
4982 }
4983 #endif /* RX_ENABLE_LOCKS */
4984
4985 /* Clear out the transmit queue for the current call (all packets have
4986  * been received by peer) */
4987 void
4988 rxi_ClearTransmitQueue(struct rx_call *call, int force)
4989 {
4990 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
4991     struct rx_packet *p, *tp;
4992
4993     if (!force && (call->flags & RX_CALL_TQ_BUSY)) {
4994         int someAcked = 0;
4995         for (queue_Scan(&call->tq, p, tp, rx_packet)) {
4996             p->flags |= RX_PKTFLAG_ACKED;
4997             someAcked = 1;
4998         }
4999         if (someAcked) {
5000             call->flags |= RX_CALL_TQ_CLEARME;
5001             call->flags |= RX_CALL_TQ_SOME_ACKED;
5002         }
5003     } else {
5004 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
5005 #ifdef RXDEBUG_PACKET
5006         call->tqc -=
5007 #endif /* RXDEBUG_PACKET */
5008             rxi_FreePackets(0, &call->tq);
5009         rxi_WakeUpTransmitQueue(call);
5010 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
5011         call->flags &= ~RX_CALL_TQ_CLEARME;
5012     }
5013 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
5014
5015     rxi_rto_cancel(call);
5016     call->tfirst = call->tnext; /* implicitly acknowledge all data already sent */
5017     call->nSoftAcked = 0;
5018
5019     if (call->flags & RX_CALL_FAST_RECOVER) {
5020         call->flags &= ~RX_CALL_FAST_RECOVER;
5021         call->cwind = call->nextCwind;
5022     }
5023 #ifdef  RX_ENABLE_LOCKS
5024     CV_SIGNAL(&call->cv_twind);
5025 #else
5026     osi_rxWakeup(&call->twind);
5027 #endif
5028 }
5029
5030 void
5031 rxi_ClearReceiveQueue(struct rx_call *call)
5032 {
5033     if (queue_IsNotEmpty(&call->rq)) {
5034         u_short count;
5035
5036         count = rxi_FreePackets(0, &call->rq);
5037         rx_packetReclaims += count;
5038 #ifdef RXDEBUG_PACKET
5039         call->rqc -= count;
5040         if ( call->rqc != 0 )
5041             dpf(("rxi_ClearReceiveQueue call %"AFS_PTR_FMT" rqc %u != 0\n", call, call->rqc));
5042 #endif
5043         call->flags &= ~(RX_CALL_RECEIVE_DONE | RX_CALL_HAVE_LAST);
5044     }
5045     if (call->state == RX_STATE_PRECALL) {
5046         call->flags |= RX_CALL_CLEARED;
5047     }
5048 }
5049
5050 /* Send an abort packet for the specified call */
5051 struct rx_packet *
5052 rxi_SendCallAbort(struct rx_call *call, struct rx_packet *packet,
5053                   int istack, int force)
5054 {
5055     afs_int32 error;
5056     struct clock when, now;
5057
5058     if (!call->error)
5059         return packet;
5060
5061     /* Clients should never delay abort messages */
5062     if (rx_IsClientConn(call->conn))
5063         force = 1;
5064
5065     if (call->abortCode != call->error) {
5066         call->abortCode = call->error;
5067         call->abortCount = 0;
5068     }
5069
5070     if (force || rxi_callAbortThreshhold == 0
5071         || call->abortCount < rxi_callAbortThreshhold) {
5072         if (call->delayedAbortEvent) {
5073             rxevent_Cancel(&call->delayedAbortEvent, call,
5074                            RX_CALL_REFCOUNT_ABORT);
5075         }
5076         error = htonl(call->error);
5077         call->abortCount++;
5078         packet =
5079             rxi_SendSpecial(call, call->conn, packet, RX_PACKET_TYPE_ABORT,
5080                             (char *)&error, sizeof(error), istack);
5081     } else if (!call->delayedAbortEvent) {
5082         clock_GetTime(&now);
5083         when = now;
5084         clock_Addmsec(&when, rxi_callAbortDelay);
5085         MUTEX_ENTER(&rx_refcnt_mutex);
5086         CALL_HOLD(call, RX_CALL_REFCOUNT_ABORT);
5087         MUTEX_EXIT(&rx_refcnt_mutex);
5088         call->delayedAbortEvent =
5089             rxevent_Post(&when, &now, rxi_SendDelayedCallAbort, call, 0, 0);
5090     }
5091     return packet;
5092 }
5093
5094 /* Send an abort packet for the specified connection.  Packet is an
5095  * optional pointer to a packet that can be used to send the abort.
5096  * Once the number of abort messages reaches the threshhold, an
5097  * event is scheduled to send the abort. Setting the force flag
5098  * overrides sending delayed abort messages.
5099  *
5100  * NOTE: Called with conn_data_lock held. conn_data_lock is dropped
5101  *       to send the abort packet.
5102  */
5103 struct rx_packet *
5104 rxi_SendConnectionAbort(struct rx_connection *conn,
5105                         struct rx_packet *packet, int istack, int force)
5106 {
5107     afs_int32 error;
5108     struct clock when, now;
5109
5110     if (!conn->error)
5111         return packet;
5112
5113     /* Clients should never delay abort messages */
5114     if (rx_IsClientConn(conn))
5115         force = 1;
5116
5117     if (force || rxi_connAbortThreshhold == 0
5118         || conn->abortCount < rxi_connAbortThreshhold) {
5119
5120         rxevent_Cancel(&conn->delayedAbortEvent, NULL, 0);
5121         error = htonl(conn->error);
5122         conn->abortCount++;
5123         MUTEX_EXIT(&conn->conn_data_lock);
5124         packet =
5125             rxi_SendSpecial((struct rx_call *)0, conn, packet,
5126                             RX_PACKET_TYPE_ABORT, (char *)&error,
5127                             sizeof(error), istack);
5128         MUTEX_ENTER(&conn->conn_data_lock);
5129     } else if (!conn->delayedAbortEvent) {
5130         clock_GetTime(&now);
5131         when = now;
5132         clock_Addmsec(&when, rxi_connAbortDelay);
5133         conn->delayedAbortEvent =
5134             rxevent_Post(&when, &now, rxi_SendDelayedConnAbort, conn, NULL, 0);
5135     }
5136     return packet;
5137 }
5138
5139 /* Associate an error all of the calls owned by a connection.  Called
5140  * with error non-zero.  This is only for really fatal things, like
5141  * bad authentication responses.  The connection itself is set in
5142  * error at this point, so that future packets received will be
5143  * rejected. */
5144 void
5145 rxi_ConnectionError(struct rx_connection *conn,
5146                     afs_int32 error)
5147 {
5148     if (error) {
5149         int i;
5150
5151         dpf(("rxi_ConnectionError conn %"AFS_PTR_FMT" error %d\n", conn, error));
5152
5153         MUTEX_ENTER(&conn->conn_data_lock);
5154         rxevent_Cancel(&conn->challengeEvent, NULL, 0);
5155         rxevent_Cancel(&conn->natKeepAliveEvent, NULL, 0);
5156         if (conn->checkReachEvent) {
5157             rxevent_Cancel(&conn->checkReachEvent, NULL, 0);
5158             conn->flags &= ~(RX_CONN_ATTACHWAIT|RX_CONN_NAT_PING);
5159             MUTEX_ENTER(&rx_refcnt_mutex);
5160             conn->refCount--;
5161             MUTEX_EXIT(&rx_refcnt_mutex);
5162         }
5163         MUTEX_EXIT(&conn->conn_data_lock);
5164         for (i = 0; i < RX_MAXCALLS; i++) {
5165             struct rx_call *call = conn->call[i];
5166             if (call) {
5167                 MUTEX_ENTER(&call->lock);
5168                 rxi_CallError(call, error);
5169                 MUTEX_EXIT(&call->lock);
5170             }
5171         }
5172         conn->error = error;
5173         if (rx_stats_active)
5174             rx_atomic_inc(&rx_stats.fatalErrors);
5175     }
5176 }
5177
5178 /**
5179  * Interrupt an in-progress call with the specified error and wakeup waiters.
5180  *
5181  * @param[in] call  The call to interrupt
5182  * @param[in] error  The error code to send to the peer
5183  */
5184 void
5185 rx_InterruptCall(struct rx_call *call, afs_int32 error)
5186 {
5187     MUTEX_ENTER(&call->lock);
5188     rxi_CallError(call, error);
5189     rxi_SendCallAbort(call, NULL, 0, 1);
5190     MUTEX_EXIT(&call->lock);
5191 }
5192
5193 void
5194 rxi_CallError(struct rx_call *call, afs_int32 error)
5195 {
5196 #ifdef DEBUG
5197     osirx_AssertMine(&call->lock, "rxi_CallError");
5198 #endif
5199     dpf(("rxi_CallError call %"AFS_PTR_FMT" error %d call->error %d\n", call, error, call->error));
5200     if (call->error)
5201         error = call->error;
5202
5203 #ifdef AFS_GLOBAL_RXLOCK_KERNEL
5204     if (!((call->flags & RX_CALL_TQ_BUSY) || (call->tqWaiters > 0))) {
5205         rxi_ResetCall(call, 0);
5206     }
5207 #else
5208     rxi_ResetCall(call, 0);
5209 #endif
5210     call->error = error;
5211 }
5212
5213 /* Reset various fields in a call structure, and wakeup waiting
5214  * processes.  Some fields aren't changed: state & mode are not
5215  * touched (these must be set by the caller), and bufptr, nLeft, and
5216  * nFree are not reset, since these fields are manipulated by
5217  * unprotected macros, and may only be reset by non-interrupting code.
5218  */
5219
5220 void
5221 rxi_ResetCall(struct rx_call *call, int newcall)
5222 {
5223     int flags;
5224     struct rx_peer *peer;
5225     struct rx_packet *packet;
5226 #ifdef DEBUG
5227     osirx_AssertMine(&call->lock, "rxi_ResetCall");
5228 #endif
5229     dpf(("rxi_ResetCall(call %"AFS_PTR_FMT", newcall %d)\n", call, newcall));
5230
5231     /* Notify anyone who is waiting for asynchronous packet arrival */
5232     if (call->arrivalProc) {
5233         (*call->arrivalProc) (call, call->arrivalProcHandle,
5234                               call->arrivalProcArg);
5235         call->arrivalProc = (void (*)())0;
5236     }
5237
5238
5239     rxevent_Cancel(&call->growMTUEvent, call, RX_CALL_REFCOUNT_ALIVE);
5240
5241     if (call->delayedAbortEvent) {
5242         rxevent_Cancel(&call->delayedAbortEvent, call, RX_CALL_REFCOUNT_ABORT);
5243         packet = rxi_AllocPacket(RX_PACKET_CLASS_SPECIAL);
5244         if (packet) {
5245             rxi_SendCallAbort(call, packet, 0, 1);
5246             rxi_FreePacket(packet);
5247         }
5248     }
5249
5250     /*
5251      * Update the peer with the congestion information in this call
5252      * so other calls on this connection can pick up where this call
5253      * left off. If the congestion sequence numbers don't match then
5254      * another call experienced a retransmission.
5255      */
5256     peer = call->conn->peer;
5257     MUTEX_ENTER(&peer->peer_lock);
5258     if (!newcall) {
5259         if (call->congestSeq == peer->congestSeq) {
5260             peer->cwind = MAX(peer->cwind, call->cwind);
5261             peer->MTU = MAX(peer->MTU, call->MTU);
5262             peer->nDgramPackets =
5263                 MAX(peer->nDgramPackets, call->nDgramPackets);
5264         }
5265     } else {
5266         call->abortCode = 0;
5267         call->abortCount = 0;
5268     }
5269     if (peer->maxDgramPackets > 1) {
5270         call->MTU = RX_HEADER_SIZE + RX_JUMBOBUFFERSIZE;
5271     } else {
5272         call->MTU = peer->MTU;
5273     }
5274     call->cwind = MIN((int)peer->cwind, (int)peer->nDgramPackets);
5275     call->ssthresh = rx_maxSendWindow;
5276     call->nDgramPackets = peer->nDgramPackets;
5277     call->congestSeq = peer->congestSeq;
5278     call->rtt = peer->rtt;
5279     call->rtt_dev = peer->rtt_dev;
5280     clock_Zero(&call->rto);
5281     clock_Addmsec(&call->rto,
5282                   MAX(((call->rtt >> 3) + call->rtt_dev), rx_minPeerTimeout) + 200);
5283     MUTEX_EXIT(&peer->peer_lock);
5284
5285     flags = call->flags;
5286 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
5287     rxi_WaitforTQBusy(call);
5288 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
5289
5290     rxi_ClearTransmitQueue(call, 1);
5291     if (call->tqWaiters || (flags & RX_CALL_TQ_WAIT)) {
5292         dpf(("rcall %"AFS_PTR_FMT" has %d waiters and flags %d\n", call, call->tqWaiters, call->flags));
5293     }
5294     call->flags = 0;
5295
5296     if ((flags & RX_CALL_PEER_BUSY)) {
5297         /* The call channel is still busy; resetting the call doesn't change
5298          * that */
5299         call->flags |= RX_CALL_PEER_BUSY;
5300     }
5301
5302     rxi_ClearReceiveQueue(call);
5303     /* why init the queue if you just emptied it? queue_Init(&call->rq); */
5304
5305
5306     call->error = 0;
5307     call->twind = call->conn->twind[call->channel];
5308     call->rwind = call->conn->rwind[call->channel];
5309     call->nSoftAcked = 0;
5310     call->nextCwind = 0;
5311     call->nAcks = 0;
5312     call->nNacks = 0;
5313     call->nCwindAcks = 0;
5314     call->nSoftAcks = 0;
5315     call->nHardAcks = 0;
5316
5317     call->tfirst = call->rnext = call->tnext = 1;
5318     call->tprev = 0;
5319     call->rprev = 0;
5320     call->lastAcked = 0;
5321     call->localStatus = call->remoteStatus = 0;
5322
5323     if (flags & RX_CALL_READER_WAIT) {
5324 #ifdef  RX_ENABLE_LOCKS
5325         CV_BROADCAST(&call->cv_rq);
5326 #else
5327         osi_rxWakeup(&call->rq);
5328 #endif
5329     }
5330     if (flags & RX_CALL_WAIT_PACKETS) {
5331         MUTEX_ENTER(&rx_freePktQ_lock);
5332         rxi_PacketsUnWait();    /* XXX */
5333         MUTEX_EXIT(&rx_freePktQ_lock);
5334     }
5335 #ifdef  RX_ENABLE_LOCKS
5336     CV_SIGNAL(&call->cv_twind);
5337 #else
5338     if (flags & RX_CALL_WAIT_WINDOW_ALLOC)
5339         osi_rxWakeup(&call->twind);
5340 #endif
5341
5342 #ifdef RX_ENABLE_LOCKS
5343     /* The following ensures that we don't mess with any queue while some
5344      * other thread might also be doing so. The call_queue_lock field is
5345      * is only modified under the call lock. If the call is in the process
5346      * of being removed from a queue, the call is not locked until the
5347      * the queue lock is dropped and only then is the call_queue_lock field
5348      * zero'd out. So it's safe to lock the queue if call_queue_lock is set.
5349      * Note that any other routine which removes a call from a queue has to
5350      * obtain the queue lock before examing the queue and removing the call.
5351      */
5352     if (call->call_queue_lock) {
5353         MUTEX_ENTER(call->call_queue_lock);
5354         if (queue_IsOnQueue(call)) {
5355             queue_Remove(call);
5356             if (flags & RX_CALL_WAIT_PROC) {
5357                 rx_atomic_dec(&rx_nWaiting);
5358             }
5359         }
5360         MUTEX_EXIT(call->call_queue_lock);
5361         CLEAR_CALL_QUEUE_LOCK(call);
5362     }
5363 #else /* RX_ENABLE_LOCKS */
5364     if (queue_IsOnQueue(call)) {
5365         queue_Remove(call);
5366         if (flags & RX_CALL_WAIT_PROC)
5367             rx_atomic_dec(&rx_nWaiting);
5368     }
5369 #endif /* RX_ENABLE_LOCKS */
5370
5371     rxi_KeepAliveOff(call);
5372     rxevent_Cancel(&call->delayedAckEvent, call, RX_CALL_REFCOUNT_DELAY);
5373 }
5374
5375 /* Send an acknowledge for the indicated packet (seq,serial) of the
5376  * indicated call, for the indicated reason (reason).  This
5377  * acknowledge will specifically acknowledge receiving the packet, and
5378  * will also specify which other packets for this call have been
5379  * received.  This routine returns the packet that was used to the
5380  * caller.  The caller is responsible for freeing it or re-using it.
5381  * This acknowledgement also returns the highest sequence number
5382  * actually read out by the higher level to the sender; the sender
5383  * promises to keep around packets that have not been read by the
5384  * higher level yet (unless, of course, the sender decides to abort
5385  * the call altogether).  Any of p, seq, serial, pflags, or reason may
5386  * be set to zero without ill effect.  That is, if they are zero, they
5387  * will not convey any information.
5388  * NOW there is a trailer field, after the ack where it will safely be
5389  * ignored by mundanes, which indicates the maximum size packet this
5390  * host can swallow.  */
5391 /*
5392     struct rx_packet *optionalPacket;  use to send ack (or null)
5393     int seq;                     Sequence number of the packet we are acking
5394     int serial;                  Serial number of the packet
5395     int pflags;                  Flags field from packet header
5396     int reason;                  Reason an acknowledge was prompted
5397 */
5398
5399 struct rx_packet *
5400 rxi_SendAck(struct rx_call *call,
5401             struct rx_packet *optionalPacket, int serial, int reason,
5402             int istack)
5403 {
5404     struct rx_ackPacket *ap;
5405     struct rx_packet *rqp;
5406     struct rx_packet *nxp;      /* For queue_Scan */
5407     struct rx_packet *p;
5408     u_char offset = 0;
5409     afs_int32 templ;
5410     afs_uint32 padbytes = 0;
5411 #ifdef RX_ENABLE_TSFPQ
5412     struct rx_ts_info_t * rx_ts_info;
5413 #endif
5414
5415     /*
5416      * Open the receive window once a thread starts reading packets
5417      */
5418     if (call->rnext > 1) {
5419         call->conn->rwind[call->channel] = call->rwind = rx_maxReceiveWindow;
5420     }
5421
5422     /* Don't attempt to grow MTU if this is a critical ping */
5423     if (reason == RX_ACK_MTU) {
5424         /* keep track of per-call attempts, if we're over max, do in small
5425          * otherwise in larger? set a size to increment by, decrease
5426          * on failure, here?
5427          */
5428         if (call->conn->peer->maxPacketSize &&
5429             (call->conn->peer->maxPacketSize < OLD_MAX_PACKET_SIZE
5430              +RX_IPUDP_SIZE))
5431             padbytes = call->conn->peer->maxPacketSize+16;
5432         else
5433             padbytes = call->conn->peer->maxMTU + 128;
5434
5435         /* do always try a minimum size ping */
5436         padbytes = MAX(padbytes, RX_MIN_PACKET_SIZE+RX_IPUDP_SIZE+4);
5437
5438         /* subtract the ack payload */
5439         padbytes -= (rx_AckDataSize(call->rwind) + 4 * sizeof(afs_int32));
5440         reason = RX_ACK_PING;
5441     }
5442
5443     call->nHardAcks = 0;
5444     call->nSoftAcks = 0;
5445     if (call->rnext > call->lastAcked)
5446         call->lastAcked = call->rnext;
5447     p = optionalPacket;
5448
5449     if (p) {
5450         rx_computelen(p, p->length);    /* reset length, you never know */
5451     } /* where that's been...         */
5452 #ifdef RX_ENABLE_TSFPQ
5453     else {
5454         RX_TS_INFO_GET(rx_ts_info);
5455         if ((p = rx_ts_info->local_special_packet)) {
5456             rx_computelen(p, p->length);
5457         } else if ((p = rxi_AllocPacket(RX_PACKET_CLASS_SPECIAL))) {
5458             rx_ts_info->local_special_packet = p;
5459         } else { /* We won't send the ack, but don't panic. */
5460             return optionalPacket;
5461         }
5462     }
5463 #else
5464     else if (!(p = rxi_AllocPacket(RX_PACKET_CLASS_SPECIAL))) {
5465         /* We won't send the ack, but don't panic. */
5466         return optionalPacket;
5467     }
5468 #endif
5469
5470     templ = padbytes +
5471         rx_AckDataSize(call->rwind) + 4 * sizeof(afs_int32) -
5472         rx_GetDataSize(p);
5473     if (templ > 0) {
5474         if (rxi_AllocDataBuf(p, templ, RX_PACKET_CLASS_SPECIAL) > 0) {
5475 #ifndef RX_ENABLE_TSFPQ
5476             if (!optionalPacket)
5477                 rxi_FreePacket(p);
5478 #endif
5479             return optionalPacket;
5480         }
5481         templ = rx_AckDataSize(call->rwind) + 2 * sizeof(afs_int32);
5482         if (rx_Contiguous(p) < templ) {
5483 #ifndef RX_ENABLE_TSFPQ
5484             if (!optionalPacket)
5485                 rxi_FreePacket(p);
5486 #endif
5487             return optionalPacket;
5488         }
5489     }
5490
5491
5492     /* MTUXXX failing to send an ack is very serious.  We should */
5493     /* try as hard as possible to send even a partial ack; it's */
5494     /* better than nothing. */
5495     ap = (struct rx_ackPacket *)rx_DataOf(p);
5496     ap->bufferSpace = htonl(0); /* Something should go here, sometime */
5497     ap->reason = reason;
5498
5499     /* The skew computation used to be bogus, I think it's better now. */
5500     /* We should start paying attention to skew.    XXX  */
5501     ap->serial = htonl(serial);
5502     ap->maxSkew = 0;            /* used to be peer->inPacketSkew */
5503
5504     /*
5505      * First packet not yet forwarded to reader. When ACKALL has been
5506      * sent the peer has been told that all received packets will be
5507      * delivered to the reader.  The value 'rnext' is used internally
5508      * to refer to the next packet in the receive queue that must be
5509      * delivered to the reader.  From the perspective of the peer it
5510      * already has so report the last sequence number plus one if there
5511      * are packets in the receive queue awaiting processing.
5512      */
5513     if ((call->flags & RX_CALL_ACKALL_SENT) &&
5514         !queue_IsEmpty(&call->rq)) {
5515         ap->firstPacket = htonl(queue_Last(&call->rq, rx_packet)->header.seq + 1);
5516     } else {
5517         ap->firstPacket = htonl(call->rnext);
5518
5519         ap->previousPacket = htonl(call->rprev);        /* Previous packet received */
5520
5521         /* No fear of running out of ack packet here because there can only be at most
5522          * one window full of unacknowledged packets.  The window size must be constrained
5523          * to be less than the maximum ack size, of course.  Also, an ack should always
5524          * fit into a single packet -- it should not ever be fragmented.  */
5525         for (offset = 0, queue_Scan(&call->rq, rqp, nxp, rx_packet)) {
5526             if (!rqp || !call->rq.next
5527                 || (rqp->header.seq > (call->rnext + call->rwind))) {
5528 #ifndef RX_ENABLE_TSFPQ
5529                 if (!optionalPacket)
5530                     rxi_FreePacket(p);
5531 #endif
5532                 rxi_CallError(call, RX_CALL_DEAD);
5533                 return optionalPacket;
5534             }
5535
5536             while (rqp->header.seq > call->rnext + offset)
5537                 ap->acks[offset++] = RX_ACK_TYPE_NACK;
5538             ap->acks[offset++] = RX_ACK_TYPE_ACK;
5539
5540             if ((offset > (u_char) rx_maxReceiveWindow) || (offset > call->rwind)) {
5541 #ifndef RX_ENABLE_TSFPQ
5542                 if (!optionalPacket)
5543                     rxi_FreePacket(p);
5544 #endif
5545                 rxi_CallError(call, RX_CALL_DEAD);
5546                 return optionalPacket;
5547             }
5548         }
5549     }
5550
5551     ap->nAcks = offset;
5552     p->length = rx_AckDataSize(offset) + 4 * sizeof(afs_int32);
5553
5554     /* these are new for AFS 3.3 */
5555     templ = rxi_AdjustMaxMTU(call->conn->peer->ifMTU, rx_maxReceiveSize);
5556     templ = htonl(templ);
5557     rx_packetwrite(p, rx_AckDataSize(offset), sizeof(afs_int32), &templ);
5558     templ = htonl(call->conn->peer->ifMTU);
5559     rx_packetwrite(p, rx_AckDataSize(offset) + sizeof(afs_int32),
5560                    sizeof(afs_int32), &templ);
5561
5562     /* new for AFS 3.4 */
5563     templ = htonl(call->rwind);
5564     rx_packetwrite(p, rx_AckDataSize(offset) + 2 * sizeof(afs_int32),
5565                    sizeof(afs_int32), &templ);
5566
5567     /* new for AFS 3.5 */
5568     templ = htonl(call->conn->peer->ifDgramPackets);
5569     rx_packetwrite(p, rx_AckDataSize(offset) + 3 * sizeof(afs_int32),
5570                    sizeof(afs_int32), &templ);
5571
5572     p->header.serviceId = call->conn->serviceId;
5573     p->header.cid = (call->conn->cid | call->channel);
5574     p->header.callNumber = *call->callNumber;
5575     p->header.seq = 0;
5576     p->header.securityIndex = call->conn->securityIndex;
5577     p->header.epoch = call->conn->epoch;
5578     p->header.type = RX_PACKET_TYPE_ACK;
5579     p->header.flags = RX_SLOW_START_OK;
5580     if (reason == RX_ACK_PING) {
5581         p->header.flags |= RX_REQUEST_ACK;
5582         if (padbytes) {
5583             p->length = padbytes +
5584                 rx_AckDataSize(call->rwind) + 4 * sizeof(afs_int32);
5585
5586             while (padbytes--)
5587                 /* not fast but we can potentially use this if truncated
5588                  * fragments are delivered to figure out the mtu.
5589                  */
5590                 rx_packetwrite(p, rx_AckDataSize(offset) + 4 *
5591                                sizeof(afs_int32), sizeof(afs_int32),
5592                                &padbytes);
5593         }
5594     }
5595     if (call->conn->type == RX_CLIENT_CONNECTION)
5596         p->header.flags |= RX_CLIENT_INITIATED;
5597
5598 #ifdef RXDEBUG
5599 #ifdef AFS_NT40_ENV
5600     if (rxdebug_active) {
5601         char msg[512];
5602         size_t len;
5603
5604         len = _snprintf(msg, sizeof(msg),
5605                         "tid[%d] SACK: reason %s serial %u previous %u seq %u first %u acks %u space %u ",
5606                          GetCurrentThreadId(), rx_ack_reason(ap->reason),
5607                          ntohl(ap->serial), ntohl(ap->previousPacket),
5608                          (unsigned int)p->header.seq, ntohl(ap->firstPacket),
5609                          ap->nAcks, ntohs(ap->bufferSpace) );
5610         if (ap->nAcks) {
5611             int offset;
5612
5613             for (offset = 0; offset < ap->nAcks && len < sizeof(msg); offset++)
5614                 msg[len++] = (ap->acks[offset] == RX_ACK_TYPE_NACK ? '-' : '*');
5615         }
5616         msg[len++]='\n';
5617         msg[len] = '\0';
5618         OutputDebugString(msg);
5619     }
5620 #else /* AFS_NT40_ENV */
5621     if (rx_Log) {
5622         fprintf(rx_Log, "SACK: reason %x previous %u seq %u first %u ",
5623                 ap->reason, ntohl(ap->previousPacket),
5624                 (unsigned int)p->header.seq, ntohl(ap->firstPacket));
5625         if (ap->nAcks) {
5626             for (offset = 0; offset < ap->nAcks; offset++)
5627                 putc(ap->acks[offset] == RX_ACK_TYPE_NACK ? '-' : '*',
5628                      rx_Log);
5629         }
5630         putc('\n', rx_Log);
5631     }
5632 #endif /* AFS_NT40_ENV */
5633 #endif
5634     {
5635         int i, nbytes = p->length;
5636
5637         for (i = 1; i < p->niovecs; i++) {      /* vec 0 is ALWAYS header */
5638             if (nbytes <= p->wirevec[i].iov_len) {
5639                 int savelen, saven;
5640
5641                 savelen = p->wirevec[i].iov_len;
5642                 saven = p->niovecs;
5643                 p->wirevec[i].iov_len = nbytes;
5644                 p->niovecs = i + 1;
5645                 rxi_Send(call, p, istack);
5646                 p->wirevec[i].iov_len = savelen;
5647                 p->niovecs = saven;
5648                 break;
5649             } else
5650                 nbytes -= p->wirevec[i].iov_len;
5651         }
5652     }
5653     if (rx_stats_active)
5654         rx_atomic_inc(&rx_stats.ackPacketsSent);
5655 #ifndef RX_ENABLE_TSFPQ
5656     if (!optionalPacket)
5657         rxi_FreePacket(p);
5658 #endif
5659     return optionalPacket;      /* Return packet for re-use by caller */
5660 }
5661
5662 struct xmitlist {
5663    struct rx_packet **list;
5664    int len;
5665    int resending;
5666 };
5667
5668 /* Send all of the packets in the list in single datagram */
5669 static void
5670 rxi_SendList(struct rx_call *call, struct xmitlist *xmit,
5671              int istack, int moreFlag)
5672 {
5673     int i;
5674     int requestAck = 0;
5675     int lastPacket = 0;
5676     struct clock now;
5677     struct rx_connection *conn = call->conn;
5678     struct rx_peer *peer = conn->peer;
5679
5680     MUTEX_ENTER(&peer->peer_lock);
5681     peer->nSent += xmit->len;
5682     if (xmit->resending)
5683         peer->reSends += xmit->len;
5684     MUTEX_EXIT(&peer->peer_lock);
5685
5686     if (rx_stats_active) {
5687         if (xmit->resending)
5688             rx_atomic_add(&rx_stats.dataPacketsReSent, xmit->len);
5689         else
5690             rx_atomic_add(&rx_stats.dataPacketsSent, xmit->len);
5691     }
5692
5693     clock_GetTime(&now);
5694
5695     if (xmit->list[xmit->len - 1]->header.flags & RX_LAST_PACKET) {
5696         lastPacket = 1;
5697     }
5698
5699     /* Set the packet flags and schedule the resend events */
5700     /* Only request an ack for the last packet in the list */
5701     for (i = 0; i < xmit->len; i++) {
5702         struct rx_packet *packet = xmit->list[i];
5703
5704         /* Record the time sent */
5705         packet->timeSent = now;
5706         packet->flags |= RX_PKTFLAG_SENT;
5707
5708         /* Ask for an ack on retransmitted packets,  on every other packet
5709          * if the peer doesn't support slow start. Ask for an ack on every
5710          * packet until the congestion window reaches the ack rate. */
5711         if (packet->header.serial) {
5712             requestAck = 1;
5713         } else {
5714             packet->firstSent = now;
5715             if (!lastPacket && (call->cwind <= (u_short) (conn->ackRate + 1)
5716                                 || (!(call->flags & RX_CALL_SLOW_START_OK)
5717                                     && (packet->header.seq & 1)))) {
5718                 requestAck = 1;
5719             }
5720         }
5721
5722         /* Tag this packet as not being the last in this group,
5723          * for the receiver's benefit */
5724         if (i < xmit->len - 1 || moreFlag) {
5725             packet->header.flags |= RX_MORE_PACKETS;
5726         }
5727     }
5728
5729     if (requestAck) {
5730         xmit->list[xmit->len - 1]->header.flags |= RX_REQUEST_ACK;
5731     }
5732
5733     /* Since we're about to send a data packet to the peer, it's
5734      * safe to nuke any scheduled end-of-packets ack */
5735     rxevent_Cancel(&call->delayedAckEvent, call, RX_CALL_REFCOUNT_DELAY);
5736
5737     MUTEX_EXIT(&call->lock);
5738     MUTEX_ENTER(&rx_refcnt_mutex);
5739     CALL_HOLD(call, RX_CALL_REFCOUNT_SEND);
5740     MUTEX_EXIT(&rx_refcnt_mutex);
5741     if (xmit->len > 1) {
5742         rxi_SendPacketList(call, conn, xmit->list, xmit->len, istack);
5743     } else {
5744         rxi_SendPacket(call, conn, xmit->list[0], istack);
5745     }
5746     MUTEX_ENTER(&call->lock);
5747     MUTEX_ENTER(&rx_refcnt_mutex);
5748     CALL_RELE(call, RX_CALL_REFCOUNT_SEND);
5749     MUTEX_EXIT(&rx_refcnt_mutex);
5750
5751     /* Tell the RTO calculation engine that we have sent a packet, and
5752      * if it was the last one */
5753     rxi_rto_packet_sent(call, lastPacket, istack);
5754
5755     /* Update last send time for this call (for keep-alive
5756      * processing), and for the connection (so that we can discover
5757      * idle connections) */
5758     conn->lastSendTime = call->lastSendTime = clock_Sec();
5759     /* Let a set of retransmits trigger an idle timeout */
5760     if (!xmit->resending)
5761         call->lastSendData = call->lastSendTime;
5762 }
5763
5764 /* When sending packets we need to follow these rules:
5765  * 1. Never send more than maxDgramPackets in a jumbogram.
5766  * 2. Never send a packet with more than two iovecs in a jumbogram.
5767  * 3. Never send a retransmitted packet in a jumbogram.
5768  * 4. Never send more than cwind/4 packets in a jumbogram
5769  * We always keep the last list we should have sent so we
5770  * can set the RX_MORE_PACKETS flags correctly.
5771  */
5772
5773 static void
5774 rxi_SendXmitList(struct rx_call *call, struct rx_packet **list, int len,
5775                  int istack)
5776 {
5777     int i;
5778     int recovery;
5779     struct xmitlist working;
5780     struct xmitlist last;
5781
5782     struct rx_peer *peer = call->conn->peer;
5783     int morePackets = 0;
5784
5785     memset(&last, 0, sizeof(struct xmitlist));
5786     working.list = &list[0];
5787     working.len = 0;
5788     working.resending = 0;
5789
5790     recovery = call->flags & RX_CALL_FAST_RECOVER;
5791
5792     for (i = 0; i < len; i++) {
5793         /* Does the current packet force us to flush the current list? */
5794         if (working.len > 0
5795             && (list[i]->header.serial || (list[i]->flags & RX_PKTFLAG_ACKED)
5796                 || list[i]->length > RX_JUMBOBUFFERSIZE)) {
5797
5798             /* This sends the 'last' list and then rolls the current working
5799              * set into the 'last' one, and resets the working set */
5800
5801             if (last.len > 0) {
5802                 rxi_SendList(call, &last, istack, 1);
5803                 /* If the call enters an error state stop sending, or if
5804                  * we entered congestion recovery mode, stop sending */
5805                 if (call->error
5806                     || (!recovery && (call->flags & RX_CALL_FAST_RECOVER)))
5807                     return;
5808             }
5809             last = working;
5810             working.len = 0;
5811             working.resending = 0;
5812             working.list = &list[i];
5813         }
5814         /* Add the current packet to the list if it hasn't been acked.
5815          * Otherwise adjust the list pointer to skip the current packet.  */
5816         if (!(list[i]->flags & RX_PKTFLAG_ACKED)) {
5817             working.len++;
5818
5819             if (list[i]->header.serial)
5820                 working.resending = 1;
5821
5822             /* Do we need to flush the list? */
5823             if (working.len >= (int)peer->maxDgramPackets
5824                 || working.len >= (int)call->nDgramPackets 
5825                 || working.len >= (int)call->cwind
5826                 || list[i]->header.serial
5827                 || list[i]->length != RX_JUMBOBUFFERSIZE) {
5828                 if (last.len > 0) {
5829                     rxi_SendList(call, &last, istack, 1);
5830                     /* If the call enters an error state stop sending, or if
5831                      * we entered congestion recovery mode, stop sending */
5832                     if (call->error
5833                         || (!recovery && (call->flags & RX_CALL_FAST_RECOVER)))
5834                         return;
5835                 }
5836                 last = working;
5837                 working.len = 0;
5838                 working.resending = 0;
5839                 working.list = &list[i + 1];
5840             }
5841         } else {
5842             if (working.len != 0) {
5843                 osi_Panic("rxi_SendList error");
5844             }
5845             working.list = &list[i + 1];
5846         }
5847     }
5848
5849     /* Send the whole list when the call is in receive mode, when
5850      * the call is in eof mode, when we are in fast recovery mode,
5851      * and when we have the last packet */
5852     if ((list[len - 1]->header.flags & RX_LAST_PACKET)
5853         || call->mode == RX_MODE_RECEIVING || call->mode == RX_MODE_EOF
5854         || (call->flags & RX_CALL_FAST_RECOVER)) {
5855         /* Check for the case where the current list contains
5856          * an acked packet. Since we always send retransmissions
5857          * in a separate packet, we only need to check the first
5858          * packet in the list */
5859         if (working.len > 0 && !(working.list[0]->flags & RX_PKTFLAG_ACKED)) {
5860             morePackets = 1;
5861         }
5862         if (last.len > 0) {
5863             rxi_SendList(call, &last, istack, morePackets);
5864             /* If the call enters an error state stop sending, or if
5865              * we entered congestion recovery mode, stop sending */
5866             if (call->error
5867                 || (!recovery && (call->flags & RX_CALL_FAST_RECOVER)))
5868                 return;
5869         }
5870         if (morePackets) {
5871             rxi_SendList(call, &working, istack, 0);
5872         }
5873     } else if (last.len > 0) {
5874         rxi_SendList(call, &last, istack, 0);
5875         /* Packets which are in 'working' are not sent by this call */
5876     }
5877 }
5878
5879 static void
5880 rxi_Resend(struct rxevent *event, void *arg0, void *arg1, int istack)
5881 {
5882     struct rx_call *call = arg0;
5883     struct rx_peer *peer;
5884     struct rx_packet *p, *nxp;
5885     struct clock maxTimeout = { 60, 0 };
5886
5887     MUTEX_ENTER(&call->lock);
5888
5889     peer = call->conn->peer;
5890
5891     /* Make sure that the event pointer is removed from the call
5892      * structure, since there is no longer a per-call retransmission
5893      * event pending. */
5894     if (event == call->resendEvent) {
5895         MUTEX_ENTER(&rx_refcnt_mutex);
5896         CALL_RELE(call, RX_CALL_REFCOUNT_RESEND);
5897         MUTEX_EXIT(&rx_refcnt_mutex);
5898         call->resendEvent = NULL;
5899     }
5900
5901     if (rxi_busyChannelError && (call->flags & RX_CALL_PEER_BUSY)) {
5902         rxi_CheckBusy(call);
5903     }
5904
5905     if (queue_IsEmpty(&call->tq)) {
5906         /* Nothing to do. This means that we've been raced, and that an
5907          * ACK has come in between when we were triggered, and when we
5908          * actually got to run. */
5909         goto out;
5910     }
5911
5912     /* We're in loss recovery */
5913     call->flags |= RX_CALL_FAST_RECOVER;
5914
5915     /* Mark all of the pending packets in the queue as being lost */
5916     for (queue_Scan(&call->tq, p, nxp, rx_packet)) {
5917         if (!(p->flags & RX_PKTFLAG_ACKED))
5918             p->flags &= ~RX_PKTFLAG_SENT;
5919     }
5920
5921     /* We're resending, so we double the timeout of the call. This will be
5922      * dropped back down by the first successful ACK that we receive.
5923      *
5924      * We apply a maximum value here of 60 seconds
5925      */
5926     clock_Add(&call->rto, &call->rto);
5927     if (clock_Gt(&call->rto, &maxTimeout))
5928         call->rto = maxTimeout;
5929
5930     /* Packet loss is most likely due to congestion, so drop our window size
5931      * and start again from the beginning */
5932     if (peer->maxDgramPackets >1) {
5933         call->MTU = RX_JUMBOBUFFERSIZE + RX_HEADER_SIZE;
5934         call->MTU = MIN(peer->natMTU, peer->maxMTU);
5935     }
5936     call->ssthresh = MAX(4, MIN((int)call->cwind, (int)call->twind)) >> 1;
5937     call->nDgramPackets = 1;
5938     call->cwind = 1;
5939     call->nextCwind = 1;
5940     call->nAcks = 0;
5941     call->nNacks = 0;
5942     MUTEX_ENTER(&peer->peer_lock);
5943     peer->MTU = call->MTU;
5944     peer->cwind = call->cwind;
5945     peer->nDgramPackets = 1;
5946     peer->congestSeq++;
5947     call->congestSeq = peer->congestSeq;
5948     MUTEX_EXIT(&peer->peer_lock);
5949
5950     rxi_Start(call, istack);
5951
5952 out:
5953     MUTEX_EXIT(&call->lock);
5954 }
5955
5956 /* This routine is called when new packets are readied for
5957  * transmission and when retransmission may be necessary, or when the
5958  * transmission window or burst count are favourable.  This should be
5959  * better optimized for new packets, the usual case, now that we've
5960  * got rid of queues of send packets. XXXXXXXXXXX */
5961 void
5962 rxi_Start(struct rx_call *call, int istack)
5963 {
5964
5965     struct rx_packet *p;
5966     struct rx_packet *nxp;      /* Next pointer for queue_Scan */
5967     int nXmitPackets;
5968     int maxXmitPackets;
5969
5970     if (call->error) {
5971 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
5972         if (rx_stats_active)
5973             rx_atomic_inc(&rx_tq_debug.rxi_start_in_error);
5974 #endif
5975         return;
5976     }
5977
5978     if (queue_IsNotEmpty(&call->tq)) {  /* If we have anything to send */
5979
5980         /* Send (or resend) any packets that need it, subject to
5981          * window restrictions and congestion burst control
5982          * restrictions.  Ask for an ack on the last packet sent in
5983          * this burst.  For now, we're relying upon the window being
5984          * considerably bigger than the largest number of packets that
5985          * are typically sent at once by one initial call to
5986          * rxi_Start.  This is probably bogus (perhaps we should ask
5987          * for an ack when we're half way through the current
5988          * window?).  Also, for non file transfer applications, this
5989          * may end up asking for an ack for every packet.  Bogus. XXXX
5990          */
5991         /*
5992          * But check whether we're here recursively, and let the other guy
5993          * do the work.
5994          */
5995 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
5996         if (!(call->flags & RX_CALL_TQ_BUSY)) {
5997             call->flags |= RX_CALL_TQ_BUSY;
5998             do {
5999 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
6000             restart:
6001 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
6002                 call->flags &= ~RX_CALL_NEED_START;
6003 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
6004                 nXmitPackets = 0;
6005                 maxXmitPackets = MIN(call->twind, call->cwind);
6006                 for (queue_Scan(&call->tq, p, nxp, rx_packet)) {
6007 #ifdef RX_TRACK_PACKETS
6008                     if ((p->flags & RX_PKTFLAG_FREE)
6009                         || (!queue_IsEnd(&call->tq, nxp)
6010                             && (nxp->flags & RX_PKTFLAG_FREE))
6011                         || (p == (struct rx_packet *)&rx_freePacketQueue)
6012                         || (nxp == (struct rx_packet *)&rx_freePacketQueue)) {
6013                         osi_Panic("rxi_Start: xmit queue clobbered");
6014                     }
6015 #endif
6016                     if (p->flags & RX_PKTFLAG_ACKED) {
6017                         /* Since we may block, don't trust this */
6018                         if (rx_stats_active)
6019                             rx_atomic_inc(&rx_stats.ignoreAckedPacket);
6020                         continue;       /* Ignore this packet if it has been acknowledged */
6021                     }
6022
6023                     /* Turn off all flags except these ones, which are the same
6024                      * on each transmission */
6025                     p->header.flags &= RX_PRESET_FLAGS;
6026
6027                     if (p->header.seq >=
6028                         call->tfirst + MIN((int)call->twind,
6029                                            (int)(call->nSoftAcked +
6030                                                  call->cwind))) {
6031                         call->flags |= RX_CALL_WAIT_WINDOW_SEND;        /* Wait for transmit window */
6032                         /* Note: if we're waiting for more window space, we can
6033                          * still send retransmits; hence we don't return here, but
6034                          * break out to schedule a retransmit event */
6035                         dpf(("call %d waiting for window (seq %d, twind %d, nSoftAcked %d, cwind %d)\n",
6036                              *(call->callNumber), p->header.seq, call->twind, call->nSoftAcked,
6037                              call->cwind));
6038                         break;
6039                     }
6040
6041                     /* Transmit the packet if it needs to be sent. */
6042                     if (!(p->flags & RX_PKTFLAG_SENT)) {
6043                         if (nXmitPackets == maxXmitPackets) {
6044                             rxi_SendXmitList(call, call->xmitList,
6045                                              nXmitPackets, istack);
6046                             goto restart;
6047                         }
6048                         dpf(("call %d xmit packet %"AFS_PTR_FMT"\n",
6049                               *(call->callNumber), p));
6050                         call->xmitList[nXmitPackets++] = p;
6051                     }
6052                 }
6053
6054                 /* xmitList now hold pointers to all of the packets that are
6055                  * ready to send. Now we loop to send the packets */
6056                 if (nXmitPackets > 0) {
6057                     rxi_SendXmitList(call, call->xmitList, nXmitPackets,
6058                                      istack);
6059                 }
6060
6061 #ifdef  AFS_GLOBAL_RXLOCK_KERNEL
6062                 if (call->error) {
6063                     /* We went into the error state while sending packets. Now is
6064                      * the time to reset the call. This will also inform the using
6065                      * process that the call is in an error state.
6066                      */
6067                     if (rx_stats_active)
6068                         rx_atomic_inc(&rx_tq_debug.rxi_start_aborted);
6069                     call->flags &= ~RX_CALL_TQ_BUSY;
6070                     rxi_WakeUpTransmitQueue(call);
6071                     rxi_CallError(call, call->error);
6072                     return;
6073                 }
6074 #ifdef RX_ENABLE_LOCKS
6075                 if (call->flags & RX_CALL_TQ_SOME_ACKED) {
6076                     int missing;
6077                     call->flags &= ~RX_CALL_TQ_SOME_ACKED;
6078                     /* Some packets have received acks. If they all have, we can clear
6079                      * the transmit queue.
6080                      */
6081                     for (missing =
6082                          0, queue_Scan(&call->tq, p, nxp, rx_packet)) {
6083                         if (p->header.seq < call->tfirst
6084                             && (p->flags & RX_PKTFLAG_ACKED)) {
6085                             queue_Remove(p);
6086 #ifdef RX_TRACK_PACKETS
6087                             p->flags &= ~RX_PKTFLAG_TQ;
6088 #endif
6089 #ifdef RXDEBUG_PACKET
6090                             call->tqc--;
6091 #endif
6092                             rxi_FreePacket(p);
6093                         } else
6094                             missing = 1;
6095                     }
6096                     if (!missing)
6097                         call->flags |= RX_CALL_TQ_CLEARME;
6098                 }
6099 #endif /* RX_ENABLE_LOCKS */
6100                 if (call->flags & RX_CALL_TQ_CLEARME)
6101                     rxi_ClearTransmitQueue(call, 1);
6102             } while (call->flags & RX_CALL_NEED_START);
6103             /*
6104              * TQ references no longer protected by this flag; they must remain
6105              * protected by the global lock.
6106              */
6107             call->flags &= ~RX_CALL_TQ_BUSY;
6108             rxi_WakeUpTransmitQueue(call);
6109         } else {
6110             call->flags |= RX_CALL_NEED_START;
6111         }
6112 #endif /* AFS_GLOBAL_RXLOCK_KERNEL */
6113     } else {
6114         rxi_rto_cancel(call);
6115     }
6116 }
6117
6118 /* Also adjusts the keep alive parameters for the call, to reflect
6119  * that we have just sent a packet (so keep alives aren't sent
6120  * immediately) */
6121 void
6122 rxi_Send(struct rx_call *call, struct rx_packet *p,
6123          int istack)
6124 {
6125     struct rx_connection *conn = call->conn;
6126
6127     /* Stamp each packet with the user supplied status */
6128     p->header.userStatus = call->localStatus;
6129
6130     /* Allow the security object controlling this call's security to
6131      * make any last-minute changes to the packet */
6132     RXS_SendPacket(conn->securityObject, call, p);
6133
6134     /* Since we're about to send SOME sort of packet to the peer, it's
6135      * safe to nuke any scheduled end-of-packets ack */
6136     rxevent_Cancel(&call->delayedAckEvent, call, RX_CALL_REFCOUNT_DELAY);
6137
6138     /* Actually send the packet, filling in more connection-specific fields */
6139     MUTEX_EXIT(&call->lock);
6140     MUTEX_ENTER(&rx_refcnt_mutex);
6141     CALL_HOLD(call, RX_CALL_REFCOUNT_SEND);
6142     MUTEX_EXIT(&rx_refcnt_mutex);
6143     rxi_SendPacket(call, conn, p, istack);
6144     MUTEX_ENTER(&rx_refcnt_mutex);
6145     CALL_RELE(call, RX_CALL_REFCOUNT_SEND);
6146     MUTEX_EXIT(&rx_refcnt_mutex);
6147     MUTEX_ENTER(&call->lock);
6148
6149     /* Update last send time for this call (for keep-alive
6150      * processing), and for the connection (so that we can discover
6151      * idle connections) */
6152     if ((p->header.type != RX_PACKET_TYPE_ACK) ||
6153         (((struct rx_ackPacket *)rx_DataOf(p))->reason == RX_ACK_PING) ||
6154         (p->length <= (rx_AckDataSize(call->rwind) + 4 * sizeof(afs_int32))))
6155     {
6156         conn->lastSendTime = call->lastSendTime = clock_Sec();
6157         /* Don't count keepalive ping/acks here, so idleness can be tracked. */
6158         if ((p->header.type != RX_PACKET_TYPE_ACK) ||
6159             ((((struct rx_ackPacket *)rx_DataOf(p))->reason != RX_ACK_PING) &&
6160              (((struct rx_ackPacket *)rx_DataOf(p))->reason !=
6161               RX_ACK_PING_RESPONSE)))
6162             call->lastSendData = call->lastSendTime;
6163     }
6164 }
6165
6166 /* Check if a call needs to be destroyed.  Called by keep-alive code to ensure
6167  * that things are fine.  Also called periodically to guarantee that nothing
6168  * falls through the cracks (e.g. (error + dally) connections have keepalive
6169  * turned off.  Returns 0 if conn is well, -1 otherwise.  If otherwise, call
6170  *  may be freed!
6171  * haveCTLock Set if calling from rxi_ReapConnections
6172  */
6173 #ifdef RX_ENABLE_LOCKS
6174 int
6175 rxi_CheckCall(struct rx_call *call, int haveCTLock)
6176 #else /* RX_ENABLE_LOCKS */
6177 int
6178 rxi_CheckCall(struct rx_call *call)
6179 #endif                          /* RX_ENABLE_LOCKS */
6180 {
6181     struct rx_connection *conn = call->conn;
6182     afs_uint32 now;
6183     afs_uint32 deadTime, idleDeadTime = 0, hardDeadTime = 0;
6184     afs_uint32 fudgeFactor;
6185     int cerror = 0;
6186     int newmtu = 0;
6187
6188 #ifdef AFS_GLOBAL_RXLOCK_KERNEL
6189     if (call->flags & RX_CALL_TQ_BUSY) {
6190         /* Call is active and will be reset by rxi_Start if it's
6191          * in an error state.
6192          */
6193         return 0;
6194     }
6195 #endif
6196     /* RTT + 8*MDEV, rounded up to the next second. */
6197     fudgeFactor = (((afs_uint32) call->rtt >> 3) +
6198                    ((afs_uint32) call->rtt_dev << 1) + 1023) >> 10;
6199
6200     deadTime = conn->secondsUntilDead + fudgeFactor;
6201     now = clock_Sec();
6202     /* These are computed to the second (+- 1 second).  But that's
6203      * good enough for these values, which should be a significant
6204      * number of seconds. */
6205     if (now > (call->lastReceiveTime + deadTime)) {
6206         if (call->state == RX_STATE_ACTIVE) {
6207 #ifdef ADAPT_PMTU
6208 #if defined(KERNEL) && defined(AFS_SUN5_ENV)
6209             ire_t *ire;
6210 #if defined(AFS_SUN510_ENV) && defined(GLOBAL_NETSTACKID)
6211             netstack_t *ns =  netstack_find_by_stackid(GLOBAL_NETSTACKID);
6212             ip_stack_t *ipst = ns->netstack_ip;
6213 #endif
6214             ire = ire_cache_lookup(conn->peer->host
6215 #if defined(AFS_SUN510_ENV) && defined(ALL_ZONES)
6216                                    , ALL_ZONES
6217 #if defined(AFS_SUN510_ENV) && (defined(ICL_3_ARG) || defined(GLOBAL_NETSTACKID))
6218                                    , NULL
6219 #if defined(AFS_SUN510_ENV) && defined(GLOBAL_NETSTACKID)
6220                                    , ipst
6221 #endif
6222 #endif
6223 #endif
6224                 );
6225
6226             if (ire && ire->ire_max_frag > 0)
6227                 rxi_SetPeerMtu(NULL, conn->peer->host, 0,
6228                                ire->ire_max_frag);
6229 #if defined(GLOBAL_NETSTACKID)
6230             netstack_rele(ns);
6231 #endif
6232 #endif
6233 #endif /* ADAPT_PMTU */
6234             cerror = RX_CALL_DEAD;
6235             goto mtuout;
6236         } else {
6237 #ifdef RX_ENABLE_LOCKS
6238             /* Cancel pending events */
6239             rxevent_Cancel(&call->delayedAckEvent, call,
6240                            RX_CALL_REFCOUNT_DELAY);
6241             rxi_rto_cancel(call);
6242             rxevent_Cancel(&call->keepAliveEvent, call,
6243                            RX_CALL_REFCOUNT_ALIVE);
6244             rxevent_Cancel(&call->growMTUEvent, call,
6245                            RX_CALL_REFCOUNT_ALIVE);
6246             MUTEX_ENTER(&rx_refcnt_mutex);
6247             if (call->refCount == 0) {
6248                 rxi_FreeCall(call, haveCTLock);
6249                 MUTEX_EXIT(&rx_refcnt_mutex);
6250                 return -2;
6251             }
6252             MUTEX_EXIT(&rx_refcnt_mutex);
6253             return -1;
6254 #else /* RX_ENABLE_LOCKS */
6255             rxi_FreeCall(call, 0);
6256             return -2;
6257 #endif /* RX_ENABLE_LOCKS */
6258         }
6259         /* Non-active calls are destroyed if they are not responding
6260          * to pings; active calls are simply flagged in error, so the
6261          * attached process can die reasonably gracefully. */
6262     }
6263
6264     if (conn->idleDeadTime) {
6265         idleDeadTime = conn->idleDeadTime + fudgeFactor;
6266     }
6267
6268     /* see if we have a non-activity timeout */
6269     if (call->startWait && idleDeadTime
6270         && ((call->startWait + idleDeadTime) < now) &&
6271         (call->flags & RX_CALL_READER_WAIT)) {
6272         if (call->state == RX_STATE_ACTIVE) {
6273             cerror = RX_CALL_TIMEOUT;
6274             goto mtuout;
6275         }
6276     }
6277     if (call->lastSendData && idleDeadTime && (conn->idleDeadErr != 0)
6278         && ((call->lastSendData + idleDeadTime) < now)) {
6279         if (call->state == RX_STATE_ACTIVE) {
6280             cerror = conn->idleDeadErr;
6281             goto mtuout;
6282         }
6283     }
6284
6285     if (conn->hardDeadTime) {
6286         hardDeadTime = conn->hardDeadTime + fudgeFactor;
6287     }
6288
6289     /* see if we have a hard timeout */
6290     if (hardDeadTime
6291         && (now > (hardDeadTime + call->startTime.sec))) {
6292         if (call->state == RX_STATE_ACTIVE)
6293             rxi_CallError(call, RX_CALL_TIMEOUT);
6294         return -1;
6295     }
6296     return 0;
6297 mtuout:
6298     if (conn->msgsizeRetryErr && cerror != RX_CALL_TIMEOUT
6299         && call->lastReceiveTime) {
6300         int oldMTU = conn->peer->ifMTU;
6301
6302         /* if we thought we could send more, perhaps things got worse */
6303         if (conn->peer->maxPacketSize > conn->lastPacketSize)
6304             /* maxpacketsize will be cleared in rxi_SetPeerMtu */
6305             newmtu = MAX(conn->peer->maxPacketSize-RX_IPUDP_SIZE,
6306                          conn->lastPacketSize-(128+RX_IPUDP_SIZE));
6307         else
6308             newmtu = conn->lastPacketSize-(128+RX_IPUDP_SIZE);
6309
6310         /* minimum capped in SetPeerMtu */
6311         rxi_SetPeerMtu(conn->peer, 0, 0, newmtu);
6312
6313         /* clean up */
6314         conn->lastPacketSize = 0;
6315
6316         /* needed so ResetCall doesn't clobber us. */
6317         call->MTU = conn->peer->ifMTU;
6318
6319         /* if we never succeeded, let the error pass out as-is */
6320         if (conn->peer->maxPacketSize && oldMTU != conn->peer->ifMTU)
6321             cerror = conn->msgsizeRetryErr;
6322
6323     }
6324     rxi_CallError(call, cerror);
6325     return -1;
6326 }
6327
6328 void
6329 rxi_NatKeepAliveEvent(struct rxevent *event, void *arg1,
6330                       void *dummy, int dummy2)
6331 {
6332     struct rx_connection *conn = arg1;
6333     struct rx_header theader;
6334     char tbuffer[1 + sizeof(struct rx_header)];
6335     struct sockaddr_in taddr;
6336     char *tp;
6337     char a[1] = { 0 };
6338     struct iovec tmpiov[2];
6339     osi_socket socket =
6340         (conn->type ==
6341          RX_CLIENT_CONNECTION ? rx_socket : conn->service->socket);
6342
6343
6344     tp = &tbuffer[sizeof(struct rx_header)];
6345     taddr.sin_family = AF_INET;
6346     taddr.sin_port = rx_PortOf(rx_PeerOf(conn));
6347     taddr.sin_addr.s_addr = rx_HostOf(rx_PeerOf(conn));
6348 #ifdef STRUCT_SOCKADDR_HAS_SA_LEN
6349     taddr.sin_len = sizeof(struct sockaddr_in);
6350 #endif
6351     memset(&theader, 0, sizeof(theader));
6352     theader.epoch = htonl(999);
6353     theader.cid = 0;
6354     theader.callNumber = 0;
6355     theader.seq = 0;
6356     theader.serial = 0;
6357     theader.type = RX_PACKET_TYPE_VERSION;
6358     theader.flags = RX_LAST_PACKET;
6359     theader.serviceId = 0;
6360
6361     memcpy(tbuffer, &theader, sizeof(theader));
6362     memcpy(tp, &a, sizeof(a));
6363     tmpiov[0].iov_base = tbuffer;
6364     tmpiov[0].iov_len = 1 + sizeof(struct rx_header);
6365
6366     osi_NetSend(socket, &taddr, tmpiov, 1, 1 + sizeof(struct rx_header), 1);
6367
6368     MUTEX_ENTER(&conn->conn_data_lock);
6369     MUTEX_ENTER(&rx_refcnt_mutex);
6370     /* Only reschedule ourselves if the connection would not be destroyed */
6371     if (conn->refCount <= 1) {
6372         conn->natKeepAliveEvent = NULL;
6373         MUTEX_EXIT(&rx_refcnt_mutex);
6374         MUTEX_EXIT(&conn->conn_data_lock);
6375         rx_DestroyConnection(conn); /* drop the reference for this */
6376     } else {
6377         conn->refCount--; /* drop the reference for this */
6378         MUTEX_EXIT(&rx_refcnt_mutex);
6379         conn->natKeepAliveEvent = NULL;
6380         rxi_ScheduleNatKeepAliveEvent(conn);
6381         MUTEX_EXIT(&conn->conn_data_lock);
6382     }
6383 }
6384
6385 void
6386 rxi_ScheduleNatKeepAliveEvent(struct rx_connection *conn)
6387 {
6388     if (!conn->natKeepAliveEvent && conn->secondsUntilNatPing) {
6389         struct clock when, now;
6390         clock_GetTime(&now);
6391         when = now;
6392         when.sec += conn->secondsUntilNatPing;
6393         MUTEX_ENTER(&rx_refcnt_mutex);
6394         conn->refCount++; /* hold a reference for this */
6395         MUTEX_EXIT(&rx_refcnt_mutex);
6396         conn->natKeepAliveEvent =
6397             rxevent_Post(&when, &now, rxi_NatKeepAliveEvent, conn, NULL, 0);
6398     }
6399 }
6400
6401 void
6402 rx_SetConnSecondsUntilNatPing(struct rx_connection *conn, afs_int32 seconds)
6403 {
6404     MUTEX_ENTER(&conn->conn_data_lock);
6405     conn->secondsUntilNatPing = seconds;
6406     if (seconds != 0) {
6407         if (!(conn->flags & RX_CONN_ATTACHWAIT))
6408             rxi_ScheduleNatKeepAliveEvent(conn);
6409         else
6410             conn->flags |= RX_CONN_NAT_PING;
6411     }
6412     MUTEX_EXIT(&conn->conn_data_lock);
6413 }
6414
6415 void
6416 rxi_NatKeepAliveOn(struct rx_connection *conn)
6417 {
6418     MUTEX_ENTER(&conn->conn_data_lock);
6419     /* if it's already attached */
6420     if (!(conn->flags & RX_CONN_ATTACHWAIT))
6421         rxi_ScheduleNatKeepAliveEvent(conn);
6422     else
6423         conn->flags |= RX_CONN_NAT_PING;
6424     MUTEX_EXIT(&conn->conn_data_lock);
6425 }
6426
6427 /* When a call is in progress, this routine is called occasionally to
6428  * make sure that some traffic has arrived (or been sent to) the peer.
6429  * If nothing has arrived in a reasonable amount of time, the call is
6430  * declared dead; if nothing has been sent for a while, we send a
6431  * keep-alive packet (if we're actually trying to keep the call alive)
6432  */
6433 void
6434 rxi_KeepAliveEvent(struct rxevent *event, void *arg1, void *dummy,
6435                    int dummy2)
6436 {
6437     struct rx_call *call = arg1;
6438     struct rx_connection *conn;
6439     afs_uint32 now;
6440
6441     MUTEX_ENTER(&rx_refcnt_mutex);
6442     CALL_RELE(call, RX_CALL_REFCOUNT_ALIVE);
6443     MUTEX_EXIT(&rx_refcnt_mutex);
6444     MUTEX_ENTER(&call->lock);
6445     if (event == call->keepAliveEvent)
6446         call->keepAliveEvent = NULL;
6447     now = clock_Sec();
6448
6449 #ifdef RX_ENABLE_LOCKS
6450     if (rxi_CheckCall(call, 0)) {
6451         MUTEX_EXIT(&call->lock);
6452         return;
6453     }
6454 #else /* RX_ENABLE_LOCKS */
6455     if (rxi_CheckCall(call))
6456         return;
6457 #endif /* RX_ENABLE_LOCKS */
6458
6459     /* Don't try to keep alive dallying calls */
6460     if (call->state == RX_STATE_DALLY) {
6461         MUTEX_EXIT(&call->lock);
6462         return;
6463     }
6464
6465     conn = call->conn;
6466     if ((now - call->lastSendTime) > conn->secondsUntilPing) {
6467         /* Don't try to send keepalives if there is unacknowledged data */
6468         /* the rexmit code should be good enough, this little hack
6469          * doesn't quite work XXX */
6470         (void)rxi_SendAck(call, NULL, 0, RX_ACK_PING, 0);
6471     }
6472     rxi_ScheduleKeepAliveEvent(call);
6473     MUTEX_EXIT(&call->lock);
6474 }
6475
6476 /* Does what's on the nameplate. */
6477 void
6478 rxi_GrowMTUEvent(struct rxevent *event, void *arg1, void *dummy, int dummy2)
6479 {
6480     struct rx_call *call = arg1;
6481     struct rx_connection *conn;
6482
6483     MUTEX_ENTER(&rx_refcnt_mutex);
6484     CALL_RELE(call, RX_CALL_REFCOUNT_ALIVE);
6485     MUTEX_EXIT(&rx_refcnt_mutex);
6486     MUTEX_ENTER(&call->lock);
6487
6488     if (event == call->growMTUEvent)
6489         call->growMTUEvent = NULL;
6490
6491 #ifdef RX_ENABLE_LOCKS
6492     if (rxi_CheckCall(call, 0)) {
6493         MUTEX_EXIT(&call->lock);
6494         return;
6495     }
6496 #else /* RX_ENABLE_LOCKS */
6497     if (rxi_CheckCall(call))
6498         return;
6499 #endif /* RX_ENABLE_LOCKS */
6500
6501     /* Don't bother with dallying calls */
6502     if (call->state == RX_STATE_DALLY) {
6503         MUTEX_EXIT(&call->lock);
6504         return;
6505     }
6506
6507     conn = call->conn;
6508
6509     /*
6510      * keep being scheduled, just don't do anything if we're at peak,
6511      * or we're not set up to be properly handled (idle timeout required)
6512      */
6513     if ((conn->peer->maxPacketSize != 0) &&
6514         (conn->peer->natMTU < RX_MAX_PACKET_SIZE) &&
6515         (conn->idleDeadErr))
6516         (void)rxi_SendAck(call, NULL, 0, RX_ACK_MTU, 0);
6517     rxi_ScheduleGrowMTUEvent(call, 0);
6518     MUTEX_EXIT(&call->lock);
6519 }
6520
6521 void
6522 rxi_ScheduleKeepAliveEvent(struct rx_call *call)
6523 {
6524     if (!call->keepAliveEvent) {
6525         struct clock when, now;
6526         clock_GetTime(&now);
6527         when = now;
6528         when.sec += call->conn->secondsUntilPing;
6529         MUTEX_ENTER(&rx_refcnt_mutex);
6530         CALL_HOLD(call, RX_CALL_REFCOUNT_ALIVE);
6531         MUTEX_EXIT(&rx_refcnt_mutex);
6532         call->keepAliveEvent =
6533             rxevent_Post(&when, &now, rxi_KeepAliveEvent, call, NULL, 0);
6534     }
6535 }
6536
6537 void
6538 rxi_ScheduleGrowMTUEvent(struct rx_call *call, int secs)
6539 {
6540     if (!call->growMTUEvent) {
6541         struct clock when, now;
6542
6543         clock_GetTime(&now);
6544         when = now;
6545         if (!secs) {
6546             if (call->conn->secondsUntilPing)
6547                 secs = (6*call->conn->secondsUntilPing)-1;
6548
6549             if (call->conn->secondsUntilDead)
6550                 secs = MIN(secs, (call->conn->secondsUntilDead-1));
6551         }
6552
6553         when.sec += secs;
6554         MUTEX_ENTER(&rx_refcnt_mutex);
6555         CALL_HOLD(call, RX_CALL_REFCOUNT_ALIVE);
6556         MUTEX_EXIT(&rx_refcnt_mutex);
6557         call->growMTUEvent =
6558             rxevent_Post(&when, &now, rxi_GrowMTUEvent, call, NULL, 0);
6559     }
6560 }
6561
6562 /* N.B. rxi_KeepAliveOff:  is defined earlier as a macro */
6563 void
6564 rxi_KeepAliveOn(struct rx_call *call)
6565 {
6566     /* Pretend last packet received was received now--i.e. if another
6567      * packet isn't received within the keep alive time, then the call
6568      * will die; Initialize last send time to the current time--even
6569      * if a packet hasn't been sent yet.  This will guarantee that a
6570      * keep-alive is sent within the ping time */
6571     call->lastReceiveTime = call->lastSendTime = clock_Sec();
6572     rxi_ScheduleKeepAliveEvent(call);
6573 }
6574
6575 void
6576 rxi_GrowMTUOn(struct rx_call *call)
6577 {
6578     struct rx_connection *conn = call->conn;
6579     MUTEX_ENTER(&conn->conn_data_lock);
6580     conn->lastPingSizeSer = conn->lastPingSize = 0;
6581     MUTEX_EXIT(&conn->conn_data_lock);
6582     rxi_ScheduleGrowMTUEvent(call, 1);
6583 }
6584
6585 /* This routine is called to send connection abort messages
6586  * that have been delayed to throttle looping clients. */
6587 void
6588 rxi_SendDelayedConnAbort(struct rxevent *event, void *arg1, void *unused,
6589                          int unused2)
6590 {
6591     struct rx_connection *conn = arg1;
6592
6593     afs_int32 error;
6594     struct rx_packet *packet;
6595
6596     MUTEX_ENTER(&conn->conn_data_lock);
6597     conn->delayedAbortEvent = NULL;
6598     error = htonl(conn->error);
6599     conn->abortCount++;
6600     MUTEX_EXIT(&conn->conn_data_lock);
6601     packet = rxi_AllocPacket(RX_PACKET_CLASS_SPECIAL);
6602     if (packet) {
6603         packet =
6604             rxi_SendSpecial((struct rx_call *)0, conn, packet,
6605                             RX_PACKET_TYPE_ABORT, (char *)&error,
6606                             sizeof(error), 0);
6607         rxi_FreePacket(packet);
6608     }
6609 }
6610
6611 /* This routine is called to send call abort messages
6612  * that have been delayed to throttle looping clients. */
6613 static void
6614 rxi_SendDelayedCallAbort(struct rxevent *event, void *arg1, void *dummy,
6615                          int dummy2)
6616 {
6617     struct rx_call *call = arg1;
6618
6619     afs_int32 error;
6620     struct rx_packet *packet;
6621
6622     MUTEX_ENTER(&call->lock);
6623     call->delayedAbortEvent = NULL;
6624     error = htonl(call->error);
6625     call->abortCount++;
6626     packet = rxi_AllocPacket(RX_PACKET_CLASS_SPECIAL);
6627     if (packet) {
6628         packet =
6629             rxi_SendSpecial(call, call->conn, packet, RX_PACKET_TYPE_ABORT,
6630                             (char *)&error, sizeof(error), 0);
6631         rxi_FreePacket(packet);
6632     }
6633     MUTEX_EXIT(&call->lock);
6634     MUTEX_ENTER(&rx_refcnt_mutex);
6635     CALL_RELE(call, RX_CALL_REFCOUNT_ABORT);
6636     MUTEX_EXIT(&rx_refcnt_mutex);
6637 }
6638
6639 /* This routine is called periodically (every RX_AUTH_REQUEST_TIMEOUT
6640  * seconds) to ask the client to authenticate itself.  The routine
6641  * issues a challenge to the client, which is obtained from the
6642  * security object associated with the connection */
6643 void
6644 rxi_ChallengeEvent(struct rxevent *event,
6645                    void *arg0, void *arg1, int tries)
6646 {
6647     struct rx_connection *conn = arg0;
6648
6649     conn->challengeEvent = NULL;
6650     if (RXS_CheckAuthentication(conn->securityObject, conn) != 0) {
6651         struct rx_packet *packet;
6652         struct clock when, now;
6653
6654         if (tries <= 0) {
6655             /* We've failed to authenticate for too long.
6656              * Reset any calls waiting for authentication;
6657              * they are all in RX_STATE_PRECALL.
6658              */
6659             int i;
6660
6661             MUTEX_ENTER(&conn->conn_call_lock);
6662             for (i = 0; i < RX_MAXCALLS; i++) {
6663                 struct rx_call *call = conn->call[i];
6664                 if (call) {
6665                     MUTEX_ENTER(&call->lock);
6666                     if (call->state == RX_STATE_PRECALL) {
6667                         rxi_CallError(call, RX_CALL_DEAD);
6668                         rxi_SendCallAbort(call, NULL, 0, 0);
6669                     }
6670                     MUTEX_EXIT(&call->lock);
6671                 }
6672             }
6673             MUTEX_EXIT(&conn->conn_call_lock);
6674             return;
6675         }
6676
6677         packet = rxi_AllocPacket(RX_PACKET_CLASS_SPECIAL);
6678         if (packet) {
6679             /* If there's no packet available, do this later. */
6680             RXS_GetChallenge(conn->securityObject, conn, packet);
6681             rxi_SendSpecial((struct rx_call *)0, conn, packet,
6682                             RX_PACKET_TYPE_CHALLENGE, NULL, -1, 0);
6683             rxi_FreePacket(packet);
6684         }
6685         clock_GetTime(&now);
6686         when = now;
6687         when.sec += RX_CHALLENGE_TIMEOUT;
6688         conn->challengeEvent =
6689             rxevent_Post(&when, &now, rxi_ChallengeEvent, conn, 0,
6690                          (tries - 1));
6691     }
6692 }
6693
6694 /* Call this routine to start requesting the client to authenticate
6695  * itself.  This will continue until authentication is established,
6696  * the call times out, or an invalid response is returned.  The
6697  * security object associated with the connection is asked to create
6698  * the challenge at this time.  N.B.  rxi_ChallengeOff is a macro,
6699  * defined earlier. */
6700 void
6701 rxi_ChallengeOn(struct rx_connection *conn)
6702 {
6703     if (!conn->challengeEvent) {
6704         RXS_CreateChallenge(conn->securityObject, conn);
6705         rxi_ChallengeEvent(NULL, conn, 0, RX_CHALLENGE_MAXTRIES);
6706     };
6707 }
6708
6709
6710 /* rxi_ComputeRoundTripTime is called with peer locked. */
6711 /* peer may be null */
6712 static void
6713 rxi_ComputeRoundTripTime(struct rx_packet *p,
6714                          struct rx_ackPacket *ack,
6715                          struct rx_call *call,
6716                          struct rx_peer *peer,
6717                          struct clock *now)
6718 {
6719     struct clock thisRtt, *sentp;
6720     int rtt_timeout;
6721     int serial;
6722
6723     /* If the ACK is delayed, then do nothing */
6724     if (ack->reason == RX_ACK_DELAY)
6725         return;
6726
6727     /* On the wire, jumbograms are a single UDP packet. We shouldn't count
6728      * their RTT multiple times, so only include the RTT of the last packet
6729      * in a jumbogram */
6730     if (p->flags & RX_JUMBO_PACKET)
6731         return;
6732
6733     /* Use the serial number to determine which transmission the ACK is for,
6734      * and set the sent time to match this. If we have no serial number, then
6735      * only use the ACK for RTT calculations if the packet has not been
6736      * retransmitted
6737      */
6738
6739     serial = ntohl(ack->serial);
6740     if (serial) {
6741         if (serial == p->header.serial) {
6742             sentp = &p->timeSent;
6743         } else if (serial == p->firstSerial) {
6744             sentp = &p->firstSent;
6745         } else if (clock_Eq(&p->timeSent, &p->firstSent)) {
6746             sentp = &p->firstSent;
6747         } else
6748             return;
6749     } else {
6750         if (clock_Eq(&p->timeSent, &p->firstSent)) {
6751             sentp = &p->firstSent;
6752         } else
6753             return;
6754     }
6755
6756     thisRtt = *now;
6757
6758     if (clock_Lt(&thisRtt, sentp))
6759         return;                 /* somebody set the clock back, don't count this time. */
6760
6761     clock_Sub(&thisRtt, sentp);
6762     dpf(("rxi_ComputeRoundTripTime(call=%d packet=%"AFS_PTR_FMT" rttp=%d.%06d sec)\n",
6763           p->header.callNumber, p, thisRtt.sec, thisRtt.usec));
6764
6765     if (clock_IsZero(&thisRtt)) {
6766         /*
6767          * The actual round trip time is shorter than the
6768          * clock_GetTime resolution.  It is most likely 1ms or 100ns.
6769          * Since we can't tell which at the moment we will assume 1ms.
6770          */
6771         thisRtt.usec = 1000;
6772     }
6773
6774     if (rx_stats_active) {
6775         MUTEX_ENTER(&rx_stats_mutex);
6776         if (clock_Lt(&thisRtt, &rx_stats.minRtt))
6777             rx_stats.minRtt = thisRtt;
6778         if (clock_Gt(&thisRtt, &rx_stats.maxRtt)) {
6779             if (thisRtt.sec > 60) {
6780                 MUTEX_EXIT(&rx_stats_mutex);
6781                 return;         /* somebody set the clock ahead */
6782             }
6783             rx_stats.maxRtt = thisRtt;
6784         }
6785         clock_Add(&rx_stats.totalRtt, &thisRtt);
6786         rx_atomic_inc(&rx_stats.nRttSamples);
6787         MUTEX_EXIT(&rx_stats_mutex);
6788     }
6789
6790     /* better rtt calculation courtesy of UMich crew (dave,larry,peter,?) */
6791
6792     /* Apply VanJacobson round-trip estimations */
6793     if (call->rtt) {
6794         int delta;
6795
6796         /*
6797          * srtt (call->rtt) is in units of one-eighth-milliseconds.
6798          * srtt is stored as fixed point with 3 bits after the binary
6799          * point (i.e., scaled by 8). The following magic is
6800          * equivalent to the smoothing algorithm in rfc793 with an
6801          * alpha of .875 (srtt' = rtt/8 + srtt*7/8 in fixed point).
6802          * srtt'*8 = rtt + srtt*7
6803          * srtt'*8 = srtt*8 + rtt - srtt
6804          * srtt' = srtt + rtt/8 - srtt/8
6805          * srtt' = srtt + (rtt - srtt)/8
6806          */
6807
6808         delta = _8THMSEC(&thisRtt) - call->rtt;
6809         call->rtt += (delta >> 3);
6810
6811         /*
6812          * We accumulate a smoothed rtt variance (actually, a smoothed
6813          * mean difference), then set the retransmit timer to smoothed
6814          * rtt + 4 times the smoothed variance (was 2x in van's original
6815          * paper, but 4x works better for me, and apparently for him as
6816          * well).
6817          * rttvar is stored as
6818          * fixed point with 2 bits after the binary point (scaled by
6819          * 4).  The following is equivalent to rfc793 smoothing with
6820          * an alpha of .75 (rttvar' = rttvar*3/4 + |delta| / 4).
6821          *   rttvar'*4 = rttvar*3 + |delta|
6822          *   rttvar'*4 = rttvar*4 + |delta| - rttvar
6823          *   rttvar' = rttvar + |delta|/4 - rttvar/4
6824          *   rttvar' = rttvar + (|delta| - rttvar)/4
6825          * This replaces rfc793's wired-in beta.
6826          * dev*4 = dev*4 + (|actual - expected| - dev)
6827          */
6828
6829         if (delta < 0)
6830             delta = -delta;
6831
6832         delta -= (call->rtt_dev << 1);
6833         call->rtt_dev += (delta >> 3);
6834     } else {
6835         /* I don't have a stored RTT so I start with this value.  Since I'm
6836          * probably just starting a call, and will be pushing more data down
6837          * this, I expect congestion to increase rapidly.  So I fudge a
6838          * little, and I set deviance to half the rtt.  In practice,
6839          * deviance tends to approach something a little less than
6840          * half the smoothed rtt. */
6841         call->rtt = _8THMSEC(&thisRtt) + 8;
6842         call->rtt_dev = call->rtt >> 2; /* rtt/2: they're scaled differently */
6843     }
6844     /* the smoothed RTT time is RTT + 4*MDEV
6845      *
6846      * We allow a user specified minimum to be set for this, to allow clamping
6847      * at a minimum value in the same way as TCP. In addition, we have to allow
6848      * for the possibility that this packet is answered by a delayed ACK, so we
6849      * add on a fixed 200ms to account for that timer expiring.
6850      */
6851
6852     rtt_timeout = MAX(((call->rtt >> 3) + call->rtt_dev),
6853                       rx_minPeerTimeout) + 200;
6854     clock_Zero(&call->rto);
6855     clock_Addmsec(&call->rto, rtt_timeout);
6856
6857     /* Update the peer, so any new calls start with our values */
6858     peer->rtt_dev = call->rtt_dev;
6859     peer->rtt = call->rtt;
6860
6861     dpf(("rxi_ComputeRoundTripTime(call=%d packet=%"AFS_PTR_FMT" rtt=%d ms, srtt=%d ms, rtt_dev=%d ms, timeout=%d.%06d sec)\n",
6862           p->header.callNumber, p, MSEC(&thisRtt), call->rtt >> 3, call->rtt_dev >> 2, (call->rto.sec), (call->rto.usec)));
6863 }
6864
6865
6866 /* Find all server connections that have not been active for a long time, and
6867  * toss them */
6868 void
6869 rxi_ReapConnections(struct rxevent *unused, void *unused1, void *unused2,
6870                     int unused3)
6871 {
6872     struct clock now, when;
6873     clock_GetTime(&now);
6874
6875     /* Find server connection structures that haven't been used for
6876      * greater than rx_idleConnectionTime */
6877     {
6878         struct rx_connection **conn_ptr, **conn_end;
6879         int i, havecalls = 0;
6880         MUTEX_ENTER(&rx_connHashTable_lock);
6881         for (conn_ptr = &rx_connHashTable[0], conn_end =
6882              &rx_connHashTable[rx_hashTableSize]; conn_ptr < conn_end;
6883              conn_ptr++) {
6884             struct rx_connection *conn, *next;
6885             struct rx_call *call;
6886             int result;
6887
6888           rereap:
6889             for (conn = *conn_ptr; conn; conn = next) {
6890                 /* XXX -- Shouldn't the connection be locked? */
6891                 next = conn->next;
6892                 havecalls = 0;
6893                 for (i = 0; i < RX_MAXCALLS; i++) {
6894                     call = conn->call[i];
6895                     if (call) {
6896                         int code;
6897                         havecalls = 1;
6898                         code = MUTEX_TRYENTER(&call->lock);
6899                         if (!code)
6900                             continue;
6901 #ifdef RX_ENABLE_LOCKS
6902                         result = rxi_CheckCall(call, 1);
6903 #else /* RX_ENABLE_LOCKS */
6904                         result = rxi_CheckCall(call);
6905 #endif /* RX_ENABLE_LOCKS */
6906                         MUTEX_EXIT(&call->lock);
6907                         if (result == -2) {
6908                             /* If CheckCall freed the call, it might
6909                              * have destroyed  the connection as well,
6910                              * which screws up the linked lists.
6911                              */
6912                             goto rereap;
6913                         }
6914                     }
6915                 }
6916                 if (conn->type == RX_SERVER_CONNECTION) {
6917                     /* This only actually destroys the connection if
6918                      * there are no outstanding calls */
6919                     MUTEX_ENTER(&conn->conn_data_lock);
6920                     MUTEX_ENTER(&rx_refcnt_mutex);
6921                     if (!havecalls && !conn->refCount
6922                         && ((conn->lastSendTime + rx_idleConnectionTime) <
6923                             now.sec)) {
6924                         conn->refCount++;       /* it will be decr in rx_DestroyConn */
6925                         MUTEX_EXIT(&rx_refcnt_mutex);
6926                         MUTEX_EXIT(&conn->conn_data_lock);
6927 #ifdef RX_ENABLE_LOCKS
6928                         rxi_DestroyConnectionNoLock(conn);
6929 #else /* RX_ENABLE_LOCKS */
6930                         rxi_DestroyConnection(conn);
6931 #endif /* RX_ENABLE_LOCKS */
6932                     }
6933 #ifdef RX_ENABLE_LOCKS
6934                     else {
6935                         MUTEX_EXIT(&rx_refcnt_mutex);
6936                         MUTEX_EXIT(&conn->conn_data_lock);
6937                     }
6938 #endif /* RX_ENABLE_LOCKS */
6939                 }
6940             }
6941         }
6942 #ifdef RX_ENABLE_LOCKS
6943         while (rx_connCleanup_list) {
6944             struct rx_connection *conn;
6945             conn = rx_connCleanup_list;
6946             rx_connCleanup_list = rx_connCleanup_list->next;
6947             MUTEX_EXIT(&rx_connHashTable_lock);
6948             rxi_CleanupConnection(conn);
6949             MUTEX_ENTER(&rx_connHashTable_lock);
6950         }
6951         MUTEX_EXIT(&rx_connHashTable_lock);
6952 #endif /* RX_ENABLE_LOCKS */
6953     }
6954
6955     /* Find any peer structures that haven't been used (haven't had an
6956      * associated connection) for greater than rx_idlePeerTime */
6957     {
6958         struct rx_peer **peer_ptr, **peer_end;
6959         int code;
6960
6961         /*
6962          * Why do we need to hold the rx_peerHashTable_lock across
6963          * the incrementing of peer_ptr since the rx_peerHashTable
6964          * array is not changing?  We don't.
6965          *
6966          * By dropping the lock periodically we can permit other
6967          * activities to be performed while a rxi_ReapConnections
6968          * call is in progress.  The goal of reap connections
6969          * is to clean up quickly without causing large amounts
6970          * of contention.  Therefore, it is important that global
6971          * mutexes not be held for extended periods of time.
6972          */
6973         for (peer_ptr = &rx_peerHashTable[0], peer_end =
6974              &rx_peerHashTable[rx_hashTableSize]; peer_ptr < peer_end;
6975              peer_ptr++) {
6976             struct rx_peer *peer, *next, *prev;
6977
6978             MUTEX_ENTER(&rx_peerHashTable_lock);
6979             for (prev = peer = *peer_ptr; peer; peer = next) {
6980                 next = peer->next;
6981                 code = MUTEX_TRYENTER(&peer->peer_lock);
6982                 if ((code) && (peer->refCount == 0)
6983                     && ((peer->idleWhen + rx_idlePeerTime) < now.sec)) {
6984                     rx_interface_stat_p rpc_stat, nrpc_stat;
6985                     size_t space;
6986
6987                     /*
6988                      * now know that this peer object is one to be
6989                      * removed from the hash table.  Once it is removed
6990                      * it can't be referenced by other threads.
6991                      * Lets remove it first and decrement the struct
6992                      * nPeerStructs count.
6993                      */
6994                     if (peer == *peer_ptr) {
6995                         *peer_ptr = next;
6996                         prev = next;
6997                     } else
6998                         prev->next = next;
6999
7000                     if (rx_stats_active)
7001                         rx_atomic_dec(&rx_stats.nPeerStructs);
7002
7003                     /*
7004                      * Now if we hold references on 'prev' and 'next'
7005                      * we can safely drop the rx_peerHashTable_lock
7006                      * while we destroy this 'peer' object.
7007                      */
7008                     if (next)
7009                         next->refCount++;
7010                     if (prev)
7011                         prev->refCount++;
7012                     MUTEX_EXIT(&rx_peerHashTable_lock);
7013
7014                     MUTEX_EXIT(&peer->peer_lock);
7015                     MUTEX_DESTROY(&peer->peer_lock);
7016                     for (queue_Scan
7017                          (&peer->rpcStats, rpc_stat, nrpc_stat,
7018                           rx_interface_stat)) {
7019                         unsigned int num_funcs;
7020                         if (!rpc_stat)
7021                             break;
7022                         queue_Remove(&rpc_stat->queue_header);
7023                         queue_Remove(&rpc_stat->all_peers);
7024                         num_funcs = rpc_stat->stats[0].func_total;
7025                         space =
7026                             sizeof(rx_interface_stat_t) +
7027                             rpc_stat->stats[0].func_total *
7028                             sizeof(rx_function_entry_v1_t);
7029
7030                         rxi_Free(rpc_stat, space);
7031
7032                         MUTEX_ENTER(&rx_rpc_stats);
7033                         rxi_rpc_peer_stat_cnt -= num_funcs;
7034                         MUTEX_EXIT(&rx_rpc_stats);
7035                     }
7036                     rxi_FreePeer(peer);
7037
7038                     /*
7039                      * Regain the rx_peerHashTable_lock and
7040                      * decrement the reference count on 'prev'
7041                      * and 'next'.
7042                      */
7043                     MUTEX_ENTER(&rx_peerHashTable_lock);
7044                     if (next)
7045                         next->refCount--;
7046                     if (prev)
7047                         prev->refCount--;
7048                 } else {
7049                     if (code) {
7050                         MUTEX_EXIT(&peer->peer_lock);
7051                     }
7052                     prev = peer;
7053                 }
7054             }
7055             MUTEX_EXIT(&rx_peerHashTable_lock);
7056         }
7057     }
7058
7059     /* THIS HACK IS A TEMPORARY HACK.  The idea is that the race condition in
7060      * rxi_AllocSendPacket, if it hits, will be handled at the next conn
7061      * GC, just below.  Really, we shouldn't have to keep moving packets from
7062      * one place to another, but instead ought to always know if we can
7063      * afford to hold onto a packet in its particular use.  */
7064     MUTEX_ENTER(&rx_freePktQ_lock);
7065     if (rx_waitingForPackets) {
7066         rx_waitingForPackets = 0;
7067 #ifdef  RX_ENABLE_LOCKS
7068         CV_BROADCAST(&rx_waitingForPackets_cv);
7069 #else
7070         osi_rxWakeup(&rx_waitingForPackets);
7071 #endif
7072     }
7073     MUTEX_EXIT(&rx_freePktQ_lock);
7074
7075     when = now;
7076     when.sec += RX_REAP_TIME;   /* Check every RX_REAP_TIME seconds */
7077     rxevent_Post(&when, &now, rxi_ReapConnections, 0, NULL, 0);
7078 }
7079
7080
7081 /* rxs_Release - This isn't strictly necessary but, since the macro name from
7082  * rx.h is sort of strange this is better.  This is called with a security
7083  * object before it is discarded.  Each connection using a security object has
7084  * its own refcount to the object so it won't actually be freed until the last
7085  * connection is destroyed.
7086  *
7087  * This is the only rxs module call.  A hold could also be written but no one
7088  * needs it. */
7089
7090 int
7091 rxs_Release(struct rx_securityClass *aobj)
7092 {
7093     return RXS_Close(aobj);
7094 }
7095
7096 void
7097 rxi_DebugInit(void)
7098 {
7099 #ifdef RXDEBUG
7100 #ifdef AFS_NT40_ENV
7101 #define TRACE_OPTION_RX_DEBUG 16
7102     HKEY parmKey;
7103     DWORD dummyLen;
7104     DWORD TraceOption;
7105     long code;
7106
7107     rxdebug_active = 0;
7108
7109     code = RegOpenKeyEx(HKEY_LOCAL_MACHINE, AFSREG_CLT_SVC_PARAM_SUBKEY,
7110                          0, KEY_QUERY_VALUE, &parmKey);
7111     if (code != ERROR_SUCCESS)
7112         return;
7113
7114     dummyLen = sizeof(TraceOption);
7115     code = RegQueryValueEx(parmKey, "TraceOption", NULL, NULL,
7116                            (BYTE *) &TraceOption, &dummyLen);
7117     if (code == ERROR_SUCCESS) {
7118         rxdebug_active = (TraceOption & TRACE_OPTION_RX_DEBUG) ? 1 : 0;
7119     }
7120     RegCloseKey (parmKey);
7121 #endif /* AFS_NT40_ENV */
7122 #endif
7123 }
7124
7125 void
7126 rx_DebugOnOff(int on)
7127 {
7128 #ifdef RXDEBUG
7129 #ifdef AFS_NT40_ENV
7130     rxdebug_active = on;
7131 #endif
7132 #endif
7133 }
7134
7135 void
7136 rx_StatsOnOff(int on)
7137 {
7138     rx_stats_active = on;
7139 }
7140
7141
7142 /* Don't call this debugging routine directly; use dpf */
7143 void
7144 rxi_DebugPrint(char *format, ...)
7145 {
7146 #ifdef RXDEBUG
7147     va_list ap;
7148 #ifdef AFS_NT40_ENV
7149     char msg[512];
7150     char tformat[256];
7151     size_t len;
7152
7153     va_start(ap, format);
7154
7155     len = _snprintf(tformat, sizeof(tformat), "tid[%d] %s", GetCurrentThreadId(), format);
7156
7157     if (len > 0) {
7158         len = _vsnprintf(msg, sizeof(msg)-2, tformat, ap);
7159         if (len > 0)
7160             OutputDebugString(msg);
7161     }
7162     va_end(ap);
7163 #else
7164     struct clock now;
7165
7166     va_start(ap, format);
7167
7168     clock_GetTime(&now);
7169     fprintf(rx_Log, " %d.%06d:", (unsigned int)now.sec,
7170             (unsigned int)now.usec);
7171     vfprintf(rx_Log, format, ap);
7172     va_end(ap);
7173 #endif
7174 #endif
7175 }
7176
7177 #ifndef KERNEL
7178 /*
7179  * This function is used to process the rx_stats structure that is local
7180  * to a process as well as an rx_stats structure received from a remote
7181  * process (via rxdebug).  Therefore, it needs to do minimal version
7182  * checking.
7183  */
7184 void
7185 rx_PrintTheseStats(FILE * file, struct rx_statistics *s, int size,
7186                    afs_int32 freePackets, char version)
7187 {
7188     int i;
7189
7190     if (size != sizeof(struct rx_statistics)) {
7191         fprintf(file,
7192                 "Unexpected size of stats structure: was %d, expected %" AFS_SIZET_FMT "\n",
7193                 size, sizeof(struct rx_statistics));
7194     }
7195
7196     fprintf(file, "rx stats: free packets %d, allocs %d, ", (int)freePackets,
7197             s->packetRequests);
7198
7199     if (version >= RX_DEBUGI_VERSION_W_NEWPACKETTYPES) {
7200         fprintf(file, "alloc-failures(rcv %u/%u,send %u/%u,ack %u)\n",
7201                 s->receivePktAllocFailures, s->receiveCbufPktAllocFailures,
7202                 s->sendPktAllocFailures, s->sendCbufPktAllocFailures,
7203                 s->specialPktAllocFailures);
7204     } else {
7205         fprintf(file, "alloc-failures(rcv %u,send %u,ack %u)\n",
7206                 s->receivePktAllocFailures, s->sendPktAllocFailures,
7207                 s->specialPktAllocFailures);
7208     }
7209
7210     fprintf(file,
7211             "   greedy %u, " "bogusReads %u (last from host %x), "
7212             "noPackets %u, " "noBuffers %u, " "selects %u, "
7213             "sendSelects %u\n", s->socketGreedy, s->bogusPacketOnRead,
7214             s->bogusHost, s->noPacketOnRead, s->noPacketBuffersOnRead,
7215             s->selects, s->sendSelects);
7216
7217     fprintf(file, "   packets read: ");
7218     for (i = 0; i < RX_N_PACKET_TYPES; i++) {
7219         fprintf(file, "%s %u ", rx_packetTypes[i], s->packetsRead[i]);
7220     }
7221     fprintf(file, "\n");
7222
7223     fprintf(file,
7224             "   other read counters: data %u, " "ack %u, " "dup %u "
7225             "spurious %u " "dally %u\n", s->dataPacketsRead,
7226             s->ackPacketsRead, s->dupPacketsRead, s->spuriousPacketsRead,
7227             s->ignorePacketDally);
7228
7229     fprintf(file, "   packets sent: ");
7230     for (i = 0; i < RX_N_PACKET_TYPES; i++) {
7231         fprintf(file, "%s %u ", rx_packetTypes[i], s->packetsSent[i]);
7232     }
7233     fprintf(file, "\n");
7234
7235     fprintf(file,
7236             "   other send counters: ack %u, " "data %u (not resends), "
7237             "resends %u, " "pushed %u, " "acked&ignored %u\n",
7238             s->ackPacketsSent, s->dataPacketsSent, s->dataPacketsReSent,
7239             s->dataPacketsPushed, s->ignoreAckedPacket);
7240
7241     fprintf(file,
7242             "   \t(these should be small) sendFailed %u, " "fatalErrors %u\n",
7243             s->netSendFailures, (int)s->fatalErrors);
7244
7245     if (s->nRttSamples) {
7246         fprintf(file, "   Average rtt is %0.3f, with %d samples\n",
7247                 clock_Float(&s->totalRtt) / s->nRttSamples, s->nRttSamples);
7248
7249         fprintf(file, "   Minimum rtt is %0.3f, maximum is %0.3f\n",
7250                 clock_Float(&s->minRtt), clock_Float(&s->maxRtt));
7251     }
7252
7253     fprintf(file,
7254             "   %d server connections, " "%d client connections, "
7255             "%d peer structs, " "%d call structs, " "%d free call structs\n",
7256             s->nServerConns, s->nClientConns, s->nPeerStructs,
7257             s->nCallStructs, s->nFreeCallStructs);
7258
7259 #if     !defined(AFS_PTHREAD_ENV) && !defined(AFS_USE_GETTIMEOFDAY)
7260     fprintf(file, "   %d clock updates\n", clock_nUpdates);
7261 #endif
7262 }
7263
7264 /* for backward compatibility */
7265 void
7266 rx_PrintStats(FILE * file)
7267 {
7268     MUTEX_ENTER(&rx_stats_mutex);
7269     rx_PrintTheseStats(file, (struct rx_statistics *) &rx_stats,
7270                        sizeof(rx_stats), rx_nFreePackets,
7271                        RX_DEBUGI_VERSION);
7272     MUTEX_EXIT(&rx_stats_mutex);
7273 }
7274
7275 void
7276 rx_PrintPeerStats(FILE * file, struct rx_peer *peer)
7277 {
7278     fprintf(file, "Peer %x.%d.  " "Burst size %d, " "burst wait %d.%06d.\n",
7279             ntohl(peer->host), (int)ntohs(peer->port), (int)peer->burstSize,
7280             (int)peer->burstWait.sec, (int)peer->burstWait.usec);
7281
7282     fprintf(file,
7283             "   Rtt %d, " "total sent %d, " "resent %d\n",
7284             peer->rtt, peer->nSent, peer->reSends);
7285
7286     fprintf(file,
7287             "   Packet size %d, " "max in packet skew %d, "
7288             "max out packet skew %d\n", peer->ifMTU, (int)peer->inPacketSkew,
7289             (int)peer->outPacketSkew);
7290 }
7291 #endif
7292
7293 #if defined(AFS_PTHREAD_ENV) && defined(RXDEBUG)
7294 /*
7295  * This mutex protects the following static variables:
7296  * counter
7297  */
7298
7299 #define LOCK_RX_DEBUG MUTEX_ENTER(&rx_debug_mutex)
7300 #define UNLOCK_RX_DEBUG MUTEX_EXIT(&rx_debug_mutex)
7301 #else
7302 #define LOCK_RX_DEBUG
7303 #define UNLOCK_RX_DEBUG
7304 #endif /* AFS_PTHREAD_ENV */
7305
7306 #if defined(RXDEBUG) || defined(MAKEDEBUGCALL)
7307 static int
7308 MakeDebugCall(osi_socket socket, afs_uint32 remoteAddr, afs_uint16 remotePort,
7309               u_char type, void *inputData, size_t inputLength,
7310               void *outputData, size_t outputLength)
7311 {
7312     static afs_int32 counter = 100;
7313     time_t waitTime, waitCount;
7314     struct rx_header theader;
7315     char tbuffer[1500];
7316     afs_int32 code;
7317     struct timeval tv_now, tv_wake, tv_delta;
7318     struct sockaddr_in taddr, faddr;
7319 #ifdef AFS_NT40_ENV
7320     int faddrLen;
7321 #else
7322     socklen_t faddrLen;
7323 #endif
7324     fd_set imask;
7325     char *tp;
7326
7327     waitTime = 1;
7328     waitCount = 5;
7329     LOCK_RX_DEBUG;
7330     counter++;
7331     UNLOCK_RX_DEBUG;
7332     tp = &tbuffer[sizeof(struct rx_header)];
7333     taddr.sin_family = AF_INET;
7334     taddr.sin_port = remotePort;
7335     taddr.sin_addr.s_addr = remoteAddr;
7336 #ifdef STRUCT_SOCKADDR_HAS_SA_LEN
7337     taddr.sin_len = sizeof(struct sockaddr_in);
7338 #endif
7339     while (1) {
7340         memset(&theader, 0, sizeof(theader));
7341         theader.epoch = htonl(999);
7342         theader.cid = 0;
7343         theader.callNumber = htonl(counter);
7344         theader.seq = 0;
7345         theader.serial = 0;
7346         theader.type = type;
7347         theader.flags = RX_CLIENT_INITIATED | RX_LAST_PACKET;
7348         theader.serviceId = 0;
7349
7350         memcpy(tbuffer, &theader, sizeof(theader));
7351         memcpy(tp, inputData, inputLength);
7352         code =
7353             sendto(socket, tbuffer, inputLength + sizeof(struct rx_header), 0,
7354                    (struct sockaddr *)&taddr, sizeof(struct sockaddr_in));
7355
7356         /* see if there's a packet available */
7357         gettimeofday(&tv_wake, NULL);
7358         tv_wake.tv_sec += waitTime;
7359         for (;;) {
7360             FD_ZERO(&imask);
7361             FD_SET(socket, &imask);
7362             tv_delta.tv_sec = tv_wake.tv_sec;
7363             tv_delta.tv_usec = tv_wake.tv_usec;
7364             gettimeofday(&tv_now, NULL);
7365
7366             if (tv_delta.tv_usec < tv_now.tv_usec) {
7367                 /* borrow */
7368                 tv_delta.tv_usec += 1000000;
7369                 tv_delta.tv_sec--;
7370             }
7371             tv_delta.tv_usec -= tv_now.tv_usec;
7372
7373             if (tv_delta.tv_sec < tv_now.tv_sec) {
7374                 /* time expired */
7375                 break;
7376             }
7377             tv_delta.tv_sec -= tv_now.tv_sec;
7378
7379 #ifdef AFS_NT40_ENV
7380             code = select(0, &imask, 0, 0, &tv_delta);
7381 #else /* AFS_NT40_ENV */
7382             code = select(socket + 1, &imask, 0, 0, &tv_delta);
7383 #endif /* AFS_NT40_ENV */
7384             if (code == 1 && FD_ISSET(socket, &imask)) {
7385                 /* now receive a packet */
7386                 faddrLen = sizeof(struct sockaddr_in);
7387                 code =
7388                     recvfrom(socket, tbuffer, sizeof(tbuffer), 0,
7389                              (struct sockaddr *)&faddr, &faddrLen);
7390
7391                 if (code > 0) {
7392                     memcpy(&theader, tbuffer, sizeof(struct rx_header));
7393                     if (counter == ntohl(theader.callNumber))
7394                         goto success;
7395                     continue;
7396                 }
7397             }
7398             break;
7399         }
7400
7401         /* see if we've timed out */
7402         if (!--waitCount) {
7403             return -1;
7404         }
7405         waitTime <<= 1;
7406     }
7407
7408  success:
7409     code -= sizeof(struct rx_header);
7410     if (code > outputLength)
7411         code = outputLength;
7412     memcpy(outputData, tp, code);
7413     return code;
7414 }
7415 #endif /* RXDEBUG */
7416
7417 afs_int32
7418 rx_GetServerDebug(osi_socket socket, afs_uint32 remoteAddr,
7419                   afs_uint16 remotePort, struct rx_debugStats * stat,
7420                   afs_uint32 * supportedValues)
7421 {
7422 #if defined(RXDEBUG) || defined(MAKEDEBUGCALL)
7423     afs_int32 rc = 0;
7424     struct rx_debugIn in;
7425
7426     *supportedValues = 0;
7427     in.type = htonl(RX_DEBUGI_GETSTATS);
7428     in.index = 0;
7429
7430     rc = MakeDebugCall(socket, remoteAddr, remotePort, RX_PACKET_TYPE_DEBUG,
7431                        &in, sizeof(in), stat, sizeof(*stat));
7432
7433     /*
7434      * If the call was successful, fixup the version and indicate
7435      * what contents of the stat structure are valid.
7436      * Also do net to host conversion of fields here.
7437      */
7438
7439     if (rc >= 0) {
7440         if (stat->version >= RX_DEBUGI_VERSION_W_SECSTATS) {
7441             *supportedValues |= RX_SERVER_DEBUG_SEC_STATS;
7442         }
7443         if (stat->version >= RX_DEBUGI_VERSION_W_GETALLCONN) {
7444             *supportedValues |= RX_SERVER_DEBUG_ALL_CONN;
7445         }
7446         if (stat->version >= RX_DEBUGI_VERSION_W_RXSTATS) {
7447             *supportedValues |= RX_SERVER_DEBUG_RX_STATS;
7448         }
7449         if (stat->version >= RX_DEBUGI_VERSION_W_WAITERS) {
7450             *supportedValues |= RX_SERVER_DEBUG_WAITER_CNT;
7451         }
7452         if (stat->version >= RX_DEBUGI_VERSION_W_IDLETHREADS) {
7453             *supportedValues |= RX_SERVER_DEBUG_IDLE_THREADS;
7454         }
7455         if (stat->version >= RX_DEBUGI_VERSION_W_NEWPACKETTYPES) {
7456             *supportedValues |= RX_SERVER_DEBUG_NEW_PACKETS;
7457         }
7458         if (stat->version >= RX_DEBUGI_VERSION_W_GETPEER) {
7459             *supportedValues |= RX_SERVER_DEBUG_ALL_PEER;
7460         }
7461         if (stat->version >= RX_DEBUGI_VERSION_W_WAITED) {
7462             *supportedValues |= RX_SERVER_DEBUG_WAITED_CNT;
7463         }
7464         if (stat->version >= RX_DEBUGI_VERSION_W_PACKETS) {
7465             *supportedValues |= RX_SERVER_DEBUG_PACKETS_CNT;
7466         }
7467         stat->nFreePackets = ntohl(stat->nFreePackets);
7468         stat->packetReclaims = ntohl(stat->packetReclaims);
7469         stat->callsExecuted = ntohl(stat->callsExecuted);
7470         stat->nWaiting = ntohl(stat->nWaiting);
7471         stat->idleThreads = ntohl(stat->idleThreads);
7472         stat->nWaited = ntohl(stat->nWaited);
7473         stat->nPackets = ntohl(stat->nPackets);
7474     }
7475 #else
7476     afs_int32 rc = -1;
7477 #endif
7478     return rc;
7479 }
7480
7481 afs_int32
7482 rx_GetServerStats(osi_socket socket, afs_uint32 remoteAddr,
7483                   afs_uint16 remotePort, struct rx_statistics * stat,
7484                   afs_uint32 * supportedValues)
7485 {
7486 #if defined(RXDEBUG) || defined(MAKEDEBUGCALL)
7487     afs_int32 rc = 0;
7488     struct rx_debugIn in;
7489     afs_int32 *lp = (afs_int32 *) stat;
7490     int i;
7491
7492     /*
7493      * supportedValues is currently unused, but added to allow future
7494      * versioning of this function.
7495      */
7496
7497     *supportedValues = 0;
7498     in.type = htonl(RX_DEBUGI_RXSTATS);
7499     in.index = 0;
7500     memset(stat, 0, sizeof(*stat));
7501
7502     rc = MakeDebugCall(socket, remoteAddr, remotePort, RX_PACKET_TYPE_DEBUG,
7503                        &in, sizeof(in), stat, sizeof(*stat));
7504
7505     if (rc >= 0) {
7506
7507         /*
7508          * Do net to host conversion here
7509          */
7510
7511         for (i = 0; i < sizeof(*stat) / sizeof(afs_int32); i++, lp++) {
7512             *lp = ntohl(*lp);
7513         }
7514     }
7515 #else
7516     afs_int32 rc = -1;
7517 #endif
7518     return rc;
7519 }
7520
7521 afs_int32
7522 rx_GetServerVersion(osi_socket socket, afs_uint32 remoteAddr,
7523                     afs_uint16 remotePort, size_t version_length,
7524                     char *version)
7525 {
7526 #if defined(RXDEBUG) || defined(MAKEDEBUGCALL)
7527     char a[1] = { 0 };
7528     return MakeDebugCall(socket, remoteAddr, remotePort,
7529                          RX_PACKET_TYPE_VERSION, a, 1, version,
7530                          version_length);
7531 #else
7532     return -1;
7533 #endif
7534 }
7535
7536 afs_int32
7537 rx_GetServerConnections(osi_socket socket, afs_uint32 remoteAddr,
7538                         afs_uint16 remotePort, afs_int32 * nextConnection,
7539                         int allConnections, afs_uint32 debugSupportedValues,
7540                         struct rx_debugConn * conn,
7541                         afs_uint32 * supportedValues)
7542 {
7543 #if defined(RXDEBUG) || defined(MAKEDEBUGCALL)
7544     afs_int32 rc = 0;
7545     struct rx_debugIn in;
7546     int i;
7547
7548     /*
7549      * supportedValues is currently unused, but added to allow future
7550      * versioning of this function.
7551      */
7552
7553     *supportedValues = 0;
7554     if (allConnections) {
7555         in.type = htonl(RX_DEBUGI_GETALLCONN);
7556     } else {
7557         in.type = htonl(RX_DEBUGI_GETCONN);
7558     }
7559     in.index = htonl(*nextConnection);
7560     memset(conn, 0, sizeof(*conn));
7561
7562     rc = MakeDebugCall(socket, remoteAddr, remotePort, RX_PACKET_TYPE_DEBUG,
7563                        &in, sizeof(in), conn, sizeof(*conn));
7564
7565     if (rc >= 0) {
7566         *nextConnection += 1;
7567
7568         /*
7569          * Convert old connection format to new structure.
7570          */
7571
7572         if (debugSupportedValues & RX_SERVER_DEBUG_OLD_CONN) {
7573             struct rx_debugConn_vL *vL = (struct rx_debugConn_vL *)conn;
7574 #define MOVEvL(a) (conn->a = vL->a)
7575
7576             /* any old or unrecognized version... */
7577             for (i = 0; i < RX_MAXCALLS; i++) {
7578                 MOVEvL(callState[i]);
7579                 MOVEvL(callMode[i]);
7580                 MOVEvL(callFlags[i]);
7581                 MOVEvL(callOther[i]);
7582             }
7583             if (debugSupportedValues & RX_SERVER_DEBUG_SEC_STATS) {
7584                 MOVEvL(secStats.type);
7585                 MOVEvL(secStats.level);
7586                 MOVEvL(secStats.flags);
7587                 MOVEvL(secStats.expires);
7588                 MOVEvL(secStats.packetsReceived);
7589                 MOVEvL(secStats.packetsSent);
7590                 MOVEvL(secStats.bytesReceived);
7591                 MOVEvL(secStats.bytesSent);
7592             }
7593         }
7594
7595         /*
7596          * Do net to host conversion here
7597          * NOTE:
7598          *    I don't convert host or port since we are most likely
7599          *    going to want these in NBO.
7600          */
7601         conn->cid = ntohl(conn->cid);
7602         conn->serial = ntohl(conn->serial);
7603         for (i = 0; i < RX_MAXCALLS; i++) {
7604             conn->callNumber[i] = ntohl(conn->callNumber[i]);
7605         }
7606         conn->error = ntohl(conn->error);
7607         conn->secStats.flags = ntohl(conn->secStats.flags);
7608         conn->secStats.expires = ntohl(conn->secStats.expires);
7609         conn->secStats.packetsReceived =
7610             ntohl(conn->secStats.packetsReceived);
7611         conn->secStats.packetsSent = ntohl(conn->secStats.packetsSent);
7612         conn->secStats.bytesReceived = ntohl(conn->secStats.bytesReceived);
7613         conn->secStats.bytesSent = ntohl(conn->secStats.bytesSent);
7614         conn->epoch = ntohl(conn->epoch);
7615         conn->natMTU = ntohl(conn->natMTU);
7616     }
7617 #else
7618     afs_int32 rc = -1;
7619 #endif
7620     return rc;
7621 }
7622
7623 afs_int32
7624 rx_GetServerPeers(osi_socket socket, afs_uint32 remoteAddr,
7625                   afs_uint16 remotePort, afs_int32 * nextPeer,
7626                   afs_uint32 debugSupportedValues, struct rx_debugPeer * peer,
7627                   afs_uint32 * supportedValues)
7628 {
7629 #if defined(RXDEBUG) || defined(MAKEDEBUGCALL)
7630     afs_int32 rc = 0;
7631     struct rx_debugIn in;
7632
7633     /*
7634      * supportedValues is currently unused, but added to allow future
7635      * versioning of this function.
7636      */
7637
7638     *supportedValues = 0;
7639     in.type = htonl(RX_DEBUGI_GETPEER);
7640     in.index = htonl(*nextPeer);
7641     memset(peer, 0, sizeof(*peer));
7642
7643     rc = MakeDebugCall(socket, remoteAddr, remotePort, RX_PACKET_TYPE_DEBUG,
7644                        &in, sizeof(in), peer, sizeof(*peer));
7645
7646     if (rc >= 0) {
7647         *nextPeer += 1;
7648
7649         /*
7650          * Do net to host conversion here
7651          * NOTE:
7652          *    I don't convert host or port since we are most likely
7653          *    going to want these in NBO.
7654          */
7655         peer->ifMTU = ntohs(peer->ifMTU);
7656         peer->idleWhen = ntohl(peer->idleWhen);
7657         peer->refCount = ntohs(peer->refCount);
7658         peer->burstWait.sec = ntohl(peer->burstWait.sec);
7659         peer->burstWait.usec = ntohl(peer->burstWait.usec);
7660         peer->rtt = ntohl(peer->rtt);
7661         peer->rtt_dev = ntohl(peer->rtt_dev);
7662         peer->timeout.sec = 0;
7663         peer->timeout.usec = 0;
7664         peer->nSent = ntohl(peer->nSent);
7665         peer->reSends = ntohl(peer->reSends);
7666         peer->inPacketSkew = ntohl(peer->inPacketSkew);
7667         peer->outPacketSkew = ntohl(peer->outPacketSkew);
7668         peer->natMTU = ntohs(peer->natMTU);
7669         peer->maxMTU = ntohs(peer->maxMTU);
7670         peer->maxDgramPackets = ntohs(peer->maxDgramPackets);
7671         peer->ifDgramPackets = ntohs(peer->ifDgramPackets);
7672         peer->MTU = ntohs(peer->MTU);
7673         peer->cwind = ntohs(peer->cwind);
7674         peer->nDgramPackets = ntohs(peer->nDgramPackets);
7675         peer->congestSeq = ntohs(peer->congestSeq);
7676         peer->bytesSent.high = ntohl(peer->bytesSent.high);
7677         peer->bytesSent.low = ntohl(peer->bytesSent.low);
7678         peer->bytesReceived.high = ntohl(peer->bytesReceived.high);
7679         peer->bytesReceived.low = ntohl(peer->bytesReceived.low);
7680     }
7681 #else
7682     afs_int32 rc = -1;
7683 #endif
7684     return rc;
7685 }
7686
7687 afs_int32
7688 rx_GetLocalPeers(afs_uint32 peerHost, afs_uint16 peerPort,
7689                 struct rx_debugPeer * peerStats)
7690 {
7691         struct rx_peer *tp;
7692         afs_int32 error = 1; /* default to "did not succeed" */
7693         afs_uint32 hashValue = PEER_HASH(peerHost, peerPort);
7694
7695         MUTEX_ENTER(&rx_peerHashTable_lock);
7696         for(tp = rx_peerHashTable[hashValue];
7697               tp != NULL; tp = tp->next) {
7698                 if (tp->host == peerHost)
7699                         break;
7700         }
7701
7702         if (tp) {
7703                 tp->refCount++;
7704                 MUTEX_EXIT(&rx_peerHashTable_lock);
7705
7706                 error = 0;
7707
7708                 MUTEX_ENTER(&tp->peer_lock);
7709                 peerStats->host = tp->host;
7710                 peerStats->port = tp->port;
7711                 peerStats->ifMTU = tp->ifMTU;
7712                 peerStats->idleWhen = tp->idleWhen;
7713                 peerStats->refCount = tp->refCount;
7714                 peerStats->burstSize = tp->burstSize;
7715                 peerStats->burst = tp->burst;
7716                 peerStats->burstWait.sec = tp->burstWait.sec;
7717                 peerStats->burstWait.usec = tp->burstWait.usec;
7718                 peerStats->rtt = tp->rtt;
7719                 peerStats->rtt_dev = tp->rtt_dev;
7720                 peerStats->timeout.sec = 0;
7721                 peerStats->timeout.usec = 0;
7722                 peerStats->nSent = tp->nSent;
7723                 peerStats->reSends = tp->reSends;
7724                 peerStats->inPacketSkew = tp->inPacketSkew;
7725                 peerStats->outPacketSkew = tp->outPacketSkew;
7726                 peerStats->natMTU = tp->natMTU;
7727                 peerStats->maxMTU = tp->maxMTU;
7728                 peerStats->maxDgramPackets = tp->maxDgramPackets;
7729                 peerStats->ifDgramPackets = tp->ifDgramPackets;
7730                 peerStats->MTU = tp->MTU;
7731                 peerStats->cwind = tp->cwind;
7732                 peerStats->nDgramPackets = tp->nDgramPackets;
7733                 peerStats->congestSeq = tp->congestSeq;
7734                 peerStats->bytesSent.high = tp->bytesSent.high;
7735                 peerStats->bytesSent.low = tp->bytesSent.low;
7736                 peerStats->bytesReceived.high = tp->bytesReceived.high;
7737                 peerStats->bytesReceived.low = tp->bytesReceived.low;
7738                 MUTEX_EXIT(&tp->peer_lock);
7739
7740                 MUTEX_ENTER(&rx_peerHashTable_lock);
7741                 tp->refCount--;
7742         }
7743         MUTEX_EXIT(&rx_peerHashTable_lock);
7744
7745         return error;
7746 }
7747
7748 void
7749 shutdown_rx(void)
7750 {
7751     struct rx_serverQueueEntry *np;
7752     int i, j;
7753 #ifndef KERNEL
7754     struct rx_call *call;
7755     struct rx_serverQueueEntry *sq;
7756 #endif /* KERNEL */
7757
7758     LOCK_RX_INIT;
7759     if (rxinit_status == 1) {
7760         UNLOCK_RX_INIT;
7761         return;                 /* Already shutdown. */
7762     }
7763 #ifndef KERNEL
7764     rx_port = 0;
7765 #ifndef AFS_PTHREAD_ENV
7766     FD_ZERO(&rx_selectMask);
7767 #endif /* AFS_PTHREAD_ENV */
7768     rxi_dataQuota = RX_MAX_QUOTA;
7769 #ifndef AFS_PTHREAD_ENV
7770     rxi_StopListener();
7771 #endif /* AFS_PTHREAD_ENV */
7772     shutdown_rxevent();
7773     rx_SetEpoch(0);
7774 #ifndef AFS_PTHREAD_ENV
7775 #ifndef AFS_USE_GETTIMEOFDAY
7776     clock_UnInit();
7777 #endif /* AFS_USE_GETTIMEOFDAY */
7778 #endif /* AFS_PTHREAD_ENV */
7779
7780     while (!queue_IsEmpty(&rx_freeCallQueue)) {
7781         call = queue_First(&rx_freeCallQueue, rx_call);
7782         queue_Remove(call);
7783         rxi_Free(call, sizeof(struct rx_call));
7784     }
7785
7786     while (!queue_IsEmpty(&rx_idleServerQueue)) {
7787         sq = queue_First(&rx_idleServerQueue, rx_serverQueueEntry);
7788         queue_Remove(sq);
7789     }
7790 #endif /* KERNEL */
7791
7792     {
7793         struct rx_peer **peer_ptr, **peer_end;
7794         for (peer_ptr = &rx_peerHashTable[0], peer_end =
7795              &rx_peerHashTable[rx_hashTableSize]; peer_ptr < peer_end;
7796              peer_ptr++) {
7797             struct rx_peer *peer, *next;
7798
7799             MUTEX_ENTER(&rx_peerHashTable_lock);
7800             for (peer = *peer_ptr; peer; peer = next) {
7801                 rx_interface_stat_p rpc_stat, nrpc_stat;
7802                 size_t space;
7803
7804                 MUTEX_ENTER(&rx_rpc_stats);
7805                 MUTEX_ENTER(&peer->peer_lock);
7806                 for (queue_Scan
7807                      (&peer->rpcStats, rpc_stat, nrpc_stat,
7808                       rx_interface_stat)) {
7809                     unsigned int num_funcs;
7810                     if (!rpc_stat)
7811                         break;
7812                     queue_Remove(&rpc_stat->queue_header);
7813                     queue_Remove(&rpc_stat->all_peers);
7814                     num_funcs = rpc_stat->stats[0].func_total;
7815                     space =
7816                         sizeof(rx_interface_stat_t) +
7817                         rpc_stat->stats[0].func_total *
7818                         sizeof(rx_function_entry_v1_t);
7819
7820                     rxi_Free(rpc_stat, space);
7821
7822                     /* rx_rpc_stats must be held */
7823                     rxi_rpc_peer_stat_cnt -= num_funcs;
7824                 }
7825                 MUTEX_EXIT(&peer->peer_lock);
7826                 MUTEX_EXIT(&rx_rpc_stats);
7827
7828                 next = peer->next;
7829                 rxi_FreePeer(peer);
7830                 if (rx_stats_active)
7831                     rx_atomic_dec(&rx_stats.nPeerStructs);
7832             }
7833             MUTEX_EXIT(&rx_peerHashTable_lock);
7834         }
7835     }
7836     for (i = 0; i < RX_MAX_SERVICES; i++) {
7837         if (rx_services[i])
7838             rxi_Free(rx_services[i], sizeof(*rx_services[i]));
7839     }
7840     for (i = 0; i < rx_hashTableSize; i++) {
7841         struct rx_connection *tc, *ntc;
7842         MUTEX_ENTER(&rx_connHashTable_lock);
7843         for (tc = rx_connHashTable[i]; tc; tc = ntc) {
7844             ntc = tc->next;
7845             for (j = 0; j < RX_MAXCALLS; j++) {
7846                 if (tc->call[j]) {
7847                     rxi_Free(tc->call[j], sizeof(*tc->call[j]));
7848                 }
7849             }
7850             rxi_Free(tc, sizeof(*tc));
7851         }
7852         MUTEX_EXIT(&rx_connHashTable_lock);
7853     }
7854
7855     MUTEX_ENTER(&freeSQEList_lock);
7856
7857     while ((np = rx_FreeSQEList)) {
7858         rx_FreeSQEList = *(struct rx_serverQueueEntry **)np;
7859         MUTEX_DESTROY(&np->lock);
7860         rxi_Free(np, sizeof(*np));
7861     }
7862
7863     MUTEX_EXIT(&freeSQEList_lock);
7864     MUTEX_DESTROY(&freeSQEList_lock);
7865     MUTEX_DESTROY(&rx_freeCallQueue_lock);
7866     MUTEX_DESTROY(&rx_connHashTable_lock);
7867     MUTEX_DESTROY(&rx_peerHashTable_lock);
7868     MUTEX_DESTROY(&rx_serverPool_lock);
7869
7870     osi_Free(rx_connHashTable,
7871              rx_hashTableSize * sizeof(struct rx_connection *));
7872     osi_Free(rx_peerHashTable, rx_hashTableSize * sizeof(struct rx_peer *));
7873
7874     UNPIN(rx_connHashTable,
7875           rx_hashTableSize * sizeof(struct rx_connection *));
7876     UNPIN(rx_peerHashTable, rx_hashTableSize * sizeof(struct rx_peer *));
7877
7878     rxi_FreeAllPackets();
7879
7880     MUTEX_ENTER(&rx_quota_mutex);
7881     rxi_dataQuota = RX_MAX_QUOTA;
7882     rxi_availProcs = rxi_totalMin = rxi_minDeficit = 0;
7883     MUTEX_EXIT(&rx_quota_mutex);
7884     rxinit_status = 1;
7885     UNLOCK_RX_INIT;
7886 }
7887
7888 #ifdef RX_ENABLE_LOCKS
7889 void
7890 osirx_AssertMine(afs_kmutex_t * lockaddr, char *msg)
7891 {
7892     if (!MUTEX_ISMINE(lockaddr))
7893         osi_Panic("Lock not held: %s", msg);
7894 }
7895 #endif /* RX_ENABLE_LOCKS */
7896
7897 #ifndef KERNEL
7898
7899 /*
7900  * Routines to implement connection specific data.
7901  */
7902
7903 int
7904 rx_KeyCreate(rx_destructor_t rtn)
7905 {
7906     int key;
7907     MUTEX_ENTER(&rxi_keyCreate_lock);
7908     key = rxi_keyCreate_counter++;
7909     rxi_keyCreate_destructor = (rx_destructor_t *)
7910         realloc((void *)rxi_keyCreate_destructor,
7911                 (key + 1) * sizeof(rx_destructor_t));
7912     rxi_keyCreate_destructor[key] = rtn;
7913     MUTEX_EXIT(&rxi_keyCreate_lock);
7914     return key;
7915 }
7916
7917 void
7918 rx_SetSpecific(struct rx_connection *conn, int key, void *ptr)
7919 {
7920     int i;
7921     MUTEX_ENTER(&conn->conn_data_lock);
7922     if (!conn->specific) {
7923         conn->specific = (void **)malloc((key + 1) * sizeof(void *));
7924         for (i = 0; i < key; i++)
7925             conn->specific[i] = NULL;
7926         conn->nSpecific = key + 1;
7927         conn->specific[key] = ptr;
7928     } else if (key >= conn->nSpecific) {
7929         conn->specific = (void **)
7930             realloc(conn->specific, (key + 1) * sizeof(void *));
7931         for (i = conn->nSpecific; i < key; i++)
7932             conn->specific[i] = NULL;
7933         conn->nSpecific = key + 1;
7934         conn->specific[key] = ptr;
7935     } else {
7936         if (conn->specific[key] && rxi_keyCreate_destructor[key])
7937             (*rxi_keyCreate_destructor[key]) (conn->specific[key]);
7938         conn->specific[key] = ptr;
7939     }
7940     MUTEX_EXIT(&conn->conn_data_lock);
7941 }
7942
7943 void
7944 rx_SetServiceSpecific(struct rx_service *svc, int key, void *ptr)
7945 {
7946     int i;
7947     MUTEX_ENTER(&svc->svc_data_lock);
7948     if (!svc->specific) {
7949         svc->specific = (void **)malloc((key + 1) * sizeof(void *));
7950         for (i = 0; i < key; i++)
7951             svc->specific[i] = NULL;
7952         svc->nSpecific = key + 1;
7953         svc->specific[key] = ptr;
7954     } else if (key >= svc->nSpecific) {
7955         svc->specific = (void **)
7956             realloc(svc->specific, (key + 1) * sizeof(void *));
7957         for (i = svc->nSpecific; i < key; i++)
7958             svc->specific[i] = NULL;
7959         svc->nSpecific = key + 1;
7960         svc->specific[key] = ptr;
7961     } else {
7962         if (svc->specific[key] && rxi_keyCreate_destructor[key])
7963             (*rxi_keyCreate_destructor[key]) (svc->specific[key]);
7964         svc->specific[key] = ptr;
7965     }
7966     MUTEX_EXIT(&svc->svc_data_lock);
7967 }
7968
7969 void *
7970 rx_GetSpecific(struct rx_connection *conn, int key)
7971 {
7972     void *ptr;
7973     MUTEX_ENTER(&conn->conn_data_lock);
7974     if (key >= conn->nSpecific)
7975         ptr = NULL;
7976     else
7977         ptr = conn->specific[key];
7978     MUTEX_EXIT(&conn->conn_data_lock);
7979     return ptr;
7980 }
7981
7982 void *
7983 rx_GetServiceSpecific(struct rx_service *svc, int key)
7984 {
7985     void *ptr;
7986     MUTEX_ENTER(&svc->svc_data_lock);
7987     if (key >= svc->nSpecific)
7988         ptr = NULL;
7989     else
7990         ptr = svc->specific[key];
7991     MUTEX_EXIT(&svc->svc_data_lock);
7992     return ptr;
7993 }
7994
7995
7996 #endif /* !KERNEL */
7997
7998 /*
7999  * processStats is a queue used to store the statistics for the local
8000  * process.  Its contents are similar to the contents of the rpcStats
8001  * queue on a rx_peer structure, but the actual data stored within
8002  * this queue contains totals across the lifetime of the process (assuming
8003  * the stats have not been reset) - unlike the per peer structures
8004  * which can come and go based upon the peer lifetime.
8005  */
8006
8007 static struct rx_queue processStats = { &processStats, &processStats };
8008
8009 /*
8010  * peerStats is a queue used to store the statistics for all peer structs.
8011  * Its contents are the union of all the peer rpcStats queues.
8012  */
8013
8014 static struct rx_queue peerStats = { &peerStats, &peerStats };
8015
8016 /*
8017  * rxi_monitor_processStats is used to turn process wide stat collection
8018  * on and off
8019  */
8020
8021 static int rxi_monitor_processStats = 0;
8022
8023 /*
8024  * rxi_monitor_peerStats is used to turn per peer stat collection on and off
8025  */
8026
8027 static int rxi_monitor_peerStats = 0;
8028
8029 /*
8030  * rxi_AddRpcStat - given all of the information for a particular rpc
8031  * call, create (if needed) and update the stat totals for the rpc.
8032  *
8033  * PARAMETERS
8034  *
8035  * IN stats - the queue of stats that will be updated with the new value
8036  *
8037  * IN rxInterface - a unique number that identifies the rpc interface
8038  *
8039  * IN currentFunc - the index of the function being invoked
8040  *
8041  * IN totalFunc - the total number of functions in this interface
8042  *
8043  * IN queueTime - the amount of time this function waited for a thread
8044  *
8045  * IN execTime - the amount of time this function invocation took to execute
8046  *
8047  * IN bytesSent - the number bytes sent by this invocation
8048  *
8049  * IN bytesRcvd - the number bytes received by this invocation
8050  *
8051  * IN isServer - if true, this invocation was made to a server
8052  *
8053  * IN remoteHost - the ip address of the remote host
8054  *
8055  * IN remotePort - the port of the remote host
8056  *
8057  * IN addToPeerList - if != 0, add newly created stat to the global peer list
8058  *
8059  * INOUT counter - if a new stats structure is allocated, the counter will
8060  * be updated with the new number of allocated stat structures
8061  *
8062  * RETURN CODES
8063  *
8064  * Returns void.
8065  */
8066
8067 static int
8068 rxi_AddRpcStat(struct rx_queue *stats, afs_uint32 rxInterface,
8069                afs_uint32 currentFunc, afs_uint32 totalFunc,
8070                struct clock *queueTime, struct clock *execTime,
8071                afs_hyper_t * bytesSent, afs_hyper_t * bytesRcvd, int isServer,
8072                afs_uint32 remoteHost, afs_uint32 remotePort,
8073                int addToPeerList, unsigned int *counter)
8074 {
8075     int rc = 0;
8076     rx_interface_stat_p rpc_stat, nrpc_stat;
8077
8078     /*
8079      * See if there's already a structure for this interface
8080      */
8081
8082     for (queue_Scan(stats, rpc_stat, nrpc_stat, rx_interface_stat)) {
8083         if ((rpc_stat->stats[0].interfaceId == rxInterface)
8084             && (rpc_stat->stats[0].remote_is_server == isServer))
8085             break;
8086     }
8087
8088     /*
8089      * Didn't find a match so allocate a new structure and add it to the
8090      * queue.
8091      */
8092
8093     if (queue_IsEnd(stats, rpc_stat) || (rpc_stat == NULL)
8094         || (rpc_stat->stats[0].interfaceId != rxInterface)
8095         || (rpc_stat->stats[0].remote_is_server != isServer)) {
8096         int i;
8097         size_t space;
8098
8099         space =
8100             sizeof(rx_interface_stat_t) +
8101             totalFunc * sizeof(rx_function_entry_v1_t);
8102
8103         rpc_stat = rxi_Alloc(space);
8104         if (rpc_stat == NULL) {
8105             rc = 1;
8106             goto fail;
8107         }
8108         *counter += totalFunc;
8109         for (i = 0; i < totalFunc; i++) {
8110             rpc_stat->stats[i].remote_peer = remoteHost;
8111             rpc_stat->stats[i].remote_port = remotePort;
8112             rpc_stat->stats[i].remote_is_server = isServer;
8113             rpc_stat->stats[i].interfaceId = rxInterface;
8114             rpc_stat->stats[i].func_total = totalFunc;
8115             rpc_stat->stats[i].func_index = i;
8116             hzero(rpc_stat->stats[i].invocations);
8117             hzero(rpc_stat->stats[i].bytes_sent);
8118             hzero(rpc_stat->stats[i].bytes_rcvd);
8119             rpc_stat->stats[i].queue_time_sum.sec = 0;
8120             rpc_stat->stats[i].queue_time_sum.usec = 0;
8121             rpc_stat->stats[i].queue_time_sum_sqr.sec = 0;
8122             rpc_stat->stats[i].queue_time_sum_sqr.usec = 0;
8123             rpc_stat->stats[i].queue_time_min.sec = 9999999;
8124             rpc_stat->stats[i].queue_time_min.usec = 9999999;
8125             rpc_stat->stats[i].queue_time_max.sec = 0;
8126             rpc_stat->stats[i].queue_time_max.usec = 0;
8127             rpc_stat->stats[i].execution_time_sum.sec = 0;
8128             rpc_stat->stats[i].execution_time_sum.usec = 0;
8129             rpc_stat->stats[i].execution_time_sum_sqr.sec = 0;
8130             rpc_stat->stats[i].execution_time_sum_sqr.usec = 0;
8131             rpc_stat->stats[i].execution_time_min.sec = 9999999;
8132             rpc_stat->stats[i].execution_time_min.usec = 9999999;
8133             rpc_stat->stats[i].execution_time_max.sec = 0;
8134             rpc_stat->stats[i].execution_time_max.usec = 0;
8135         }
8136         queue_Prepend(stats, rpc_stat);
8137         if (addToPeerList) {
8138             queue_Prepend(&peerStats, &rpc_stat->all_peers);
8139         }
8140     }
8141
8142     /*
8143      * Increment the stats for this function
8144      */
8145
8146     hadd32(rpc_stat->stats[currentFunc].invocations, 1);
8147     hadd(rpc_stat->stats[currentFunc].bytes_sent, *bytesSent);
8148     hadd(rpc_stat->stats[currentFunc].bytes_rcvd, *bytesRcvd);
8149     clock_Add(&rpc_stat->stats[currentFunc].queue_time_sum, queueTime);
8150     clock_AddSq(&rpc_stat->stats[currentFunc].queue_time_sum_sqr, queueTime);
8151     if (clock_Lt(queueTime, &rpc_stat->stats[currentFunc].queue_time_min)) {
8152         rpc_stat->stats[currentFunc].queue_time_min = *queueTime;
8153     }
8154     if (clock_Gt(queueTime, &rpc_stat->stats[currentFunc].queue_time_max)) {
8155         rpc_stat->stats[currentFunc].queue_time_max = *queueTime;
8156     }
8157     clock_Add(&rpc_stat->stats[currentFunc].execution_time_sum, execTime);
8158     clock_AddSq(&rpc_stat->stats[currentFunc].execution_time_sum_sqr,
8159                 execTime);
8160     if (clock_Lt(execTime, &rpc_stat->stats[currentFunc].execution_time_min)) {
8161         rpc_stat->stats[currentFunc].execution_time_min = *execTime;
8162     }
8163     if (clock_Gt(execTime, &rpc_stat->stats[currentFunc].execution_time_max)) {
8164         rpc_stat->stats[currentFunc].execution_time_max = *execTime;
8165     }
8166
8167   fail:
8168     return rc;
8169 }
8170
8171 /*
8172  * rx_IncrementTimeAndCount - increment the times and count for a particular
8173  * rpc function.
8174  *
8175  * PARAMETERS
8176  *
8177  * IN peer - the peer who invoked the rpc
8178  *
8179  * IN rxInterface - a unique number that identifies the rpc interface
8180  *
8181  * IN currentFunc - the index of the function being invoked
8182  *
8183  * IN totalFunc - the total number of functions in this interface
8184  *
8185  * IN queueTime - the amount of time this function waited for a thread
8186  *
8187  * IN execTime - the amount of time this function invocation took to execute
8188  *
8189  * IN bytesSent - the number bytes sent by this invocation
8190  *
8191  * IN bytesRcvd - the number bytes received by this invocation
8192  *
8193  * IN isServer - if true, this invocation was made to a server
8194  *
8195  * RETURN CODES
8196  *
8197  * Returns void.
8198  */
8199
8200 void
8201 rx_IncrementTimeAndCount(struct rx_peer *peer, afs_uint32 rxInterface,
8202                          afs_uint32 currentFunc, afs_uint32 totalFunc,
8203                          struct clock *queueTime, struct clock *execTime,
8204                          afs_hyper_t * bytesSent, afs_hyper_t * bytesRcvd,
8205                          int isServer)
8206 {
8207
8208     if (!(rxi_monitor_peerStats || rxi_monitor_processStats))
8209         return;
8210
8211     MUTEX_ENTER(&rx_rpc_stats);
8212
8213     if (rxi_monitor_peerStats) {
8214         MUTEX_ENTER(&peer->peer_lock);
8215         rxi_AddRpcStat(&peer->rpcStats, rxInterface, currentFunc, totalFunc,
8216                        queueTime, execTime, bytesSent, bytesRcvd, isServer,
8217                        peer->host, peer->port, 1, &rxi_rpc_peer_stat_cnt);
8218         MUTEX_EXIT(&peer->peer_lock);
8219     }
8220
8221     if (rxi_monitor_processStats) {
8222         rxi_AddRpcStat(&processStats, rxInterface, currentFunc, totalFunc,
8223                        queueTime, execTime, bytesSent, bytesRcvd, isServer,
8224                        0xffffffff, 0xffffffff, 0, &rxi_rpc_process_stat_cnt);
8225     }
8226
8227     MUTEX_EXIT(&rx_rpc_stats);
8228
8229 }
8230
8231 /*
8232  * rx_MarshallProcessRPCStats - marshall an array of rpc statistics
8233  *
8234  * PARAMETERS
8235  *
8236  * IN callerVersion - the rpc stat version of the caller.
8237  *
8238  * IN count - the number of entries to marshall.
8239  *
8240  * IN stats - pointer to stats to be marshalled.
8241  *
8242  * OUT ptr - Where to store the marshalled data.
8243  *
8244  * RETURN CODES
8245  *
8246  * Returns void.
8247  */
8248 void
8249 rx_MarshallProcessRPCStats(afs_uint32 callerVersion, int count,
8250                            rx_function_entry_v1_t * stats, afs_uint32 ** ptrP)
8251 {
8252     int i;
8253     afs_uint32 *ptr;
8254
8255     /*
8256      * We only support the first version
8257      */
8258     for (ptr = *ptrP, i = 0; i < count; i++, stats++) {
8259         *(ptr++) = stats->remote_peer;
8260         *(ptr++) = stats->remote_port;
8261         *(ptr++) = stats->remote_is_server;
8262         *(ptr++) = stats->interfaceId;
8263         *(ptr++) = stats->func_total;
8264         *(ptr++) = stats->func_index;
8265         *(ptr++) = hgethi(stats->invocations);
8266         *(ptr++) = hgetlo(stats->invocations);
8267         *(ptr++) = hgethi(stats->bytes_sent);
8268         *(ptr++) = hgetlo(stats->bytes_sent);
8269         *(ptr++) = hgethi(stats->bytes_rcvd);
8270         *(ptr++) = hgetlo(stats->bytes_rcvd);
8271         *(ptr++) = stats->queue_time_sum.sec;
8272         *(ptr++) = stats->queue_time_sum.usec;
8273         *(ptr++) = stats->queue_time_sum_sqr.sec;
8274         *(ptr++) = stats->queue_time_sum_sqr.usec;
8275         *(ptr++) = stats->queue_time_min.sec;
8276         *(ptr++) = stats->queue_time_min.usec;
8277         *(ptr++) = stats->queue_time_max.sec;
8278         *(ptr++) = stats->queue_time_max.usec;
8279         *(ptr++) = stats->execution_time_sum.sec;
8280         *(ptr++) = stats->execution_time_sum.usec;
8281         *(ptr++) = stats->execution_time_sum_sqr.sec;
8282         *(ptr++) = stats->execution_time_sum_sqr.usec;
8283         *(ptr++) = stats->execution_time_min.sec;
8284         *(ptr++) = stats->execution_time_min.usec;
8285         *(ptr++) = stats->execution_time_max.sec;
8286         *(ptr++) = stats->execution_time_max.usec;
8287     }
8288     *ptrP = ptr;
8289 }
8290
8291 /*
8292  * rx_RetrieveProcessRPCStats - retrieve all of the rpc statistics for
8293  * this process
8294  *
8295  * PARAMETERS
8296  *
8297  * IN callerVersion - the rpc stat version of the caller
8298  *
8299  * OUT myVersion - the rpc stat version of this function
8300  *
8301  * OUT clock_sec - local time seconds
8302  *
8303  * OUT clock_usec - local time microseconds
8304  *
8305  * OUT allocSize - the number of bytes allocated to contain stats
8306  *
8307  * OUT statCount - the number stats retrieved from this process.
8308  *
8309  * OUT stats - the actual stats retrieved from this process.
8310  *
8311  * RETURN CODES
8312  *
8313  * Returns void.  If successful, stats will != NULL.
8314  */
8315
8316 int
8317 rx_RetrieveProcessRPCStats(afs_uint32 callerVersion, afs_uint32 * myVersion,
8318                            afs_uint32 * clock_sec, afs_uint32 * clock_usec,
8319                            size_t * allocSize, afs_uint32 * statCount,
8320                            afs_uint32 ** stats)
8321 {
8322     size_t space = 0;
8323     afs_uint32 *ptr;
8324     struct clock now;
8325     int rc = 0;
8326
8327     *stats = 0;
8328     *allocSize = 0;
8329     *statCount = 0;
8330     *myVersion = RX_STATS_RETRIEVAL_VERSION;
8331
8332     /*
8333      * Check to see if stats are enabled
8334      */
8335
8336     MUTEX_ENTER(&rx_rpc_stats);
8337     if (!rxi_monitor_processStats) {
8338         MUTEX_EXIT(&rx_rpc_stats);
8339         return rc;
8340     }
8341
8342     clock_GetTime(&now);
8343     *clock_sec = now.sec;
8344     *clock_usec = now.usec;
8345
8346     /*
8347      * Allocate the space based upon the caller version
8348      *
8349      * If the client is at an older version than we are,
8350      * we return the statistic data in the older data format, but
8351      * we still return our version number so the client knows we
8352      * are maintaining more data than it can retrieve.
8353      */
8354
8355     if (callerVersion >= RX_STATS_RETRIEVAL_FIRST_EDITION) {
8356         space = rxi_rpc_process_stat_cnt * sizeof(rx_function_entry_v1_t);
8357         *statCount = rxi_rpc_process_stat_cnt;
8358     } else {
8359         /*
8360          * This can't happen yet, but in the future version changes
8361          * can be handled by adding additional code here
8362          */
8363     }
8364
8365     if (space > (size_t) 0) {
8366         *allocSize = space;
8367         ptr = *stats = rxi_Alloc(space);
8368
8369         if (ptr != NULL) {
8370             rx_interface_stat_p rpc_stat, nrpc_stat;
8371
8372
8373             for (queue_Scan
8374                  (&processStats, rpc_stat, nrpc_stat, rx_interface_stat)) {
8375                 /*
8376                  * Copy the data based upon the caller version
8377                  */
8378                 rx_MarshallProcessRPCStats(callerVersion,
8379                                            rpc_stat->stats[0].func_total,
8380                                            rpc_stat->stats, &ptr);
8381             }
8382         } else {
8383             rc = ENOMEM;
8384         }
8385     }
8386     MUTEX_EXIT(&rx_rpc_stats);
8387     return rc;
8388 }
8389
8390 /*
8391  * rx_RetrievePeerRPCStats - retrieve all of the rpc statistics for the peers
8392  *
8393  * PARAMETERS
8394  *
8395  * IN callerVersion - the rpc stat version of the caller
8396  *
8397  * OUT myVersion - the rpc stat version of this function
8398  *
8399  * OUT clock_sec - local time seconds
8400  *
8401  * OUT clock_usec - local time microseconds
8402  *
8403  * OUT allocSize - the number of bytes allocated to contain stats
8404  *
8405  * OUT statCount - the number of stats retrieved from the individual
8406  * peer structures.
8407  *
8408  * OUT stats - the actual stats retrieved from the individual peer structures.
8409  *
8410  * RETURN CODES
8411  *
8412  * Returns void.  If successful, stats will != NULL.
8413  */
8414
8415 int
8416 rx_RetrievePeerRPCStats(afs_uint32 callerVersion, afs_uint32 * myVersion,
8417                         afs_uint32 * clock_sec, afs_uint32 * clock_usec,
8418                         size_t * allocSize, afs_uint32 * statCount,
8419                         afs_uint32 ** stats)
8420 {
8421     size_t space = 0;
8422     afs_uint32 *ptr;
8423     struct clock now;
8424     int rc = 0;
8425
8426     *stats = 0;
8427     *statCount = 0;
8428     *allocSize = 0;
8429     *myVersion = RX_STATS_RETRIEVAL_VERSION;
8430
8431     /*
8432      * Check to see if stats are enabled
8433      */
8434
8435     MUTEX_ENTER(&rx_rpc_stats);
8436     if (!rxi_monitor_peerStats) {
8437         MUTEX_EXIT(&rx_rpc_stats);
8438         return rc;
8439     }
8440
8441     clock_GetTime(&now);
8442     *clock_sec = now.sec;
8443     *clock_usec = now.usec;
8444
8445     /*
8446      * Allocate the space based upon the caller version
8447      *
8448      * If the client is at an older version than we are,
8449      * we return the statistic data in the older data format, but
8450      * we still return our version number so the client knows we
8451      * are maintaining more data than it can retrieve.
8452      */
8453
8454     if (callerVersion >= RX_STATS_RETRIEVAL_FIRST_EDITION) {
8455         space = rxi_rpc_peer_stat_cnt * sizeof(rx_function_entry_v1_t);
8456         *statCount = rxi_rpc_peer_stat_cnt;
8457     } else {
8458         /*
8459          * This can't happen yet, but in the future version changes
8460          * can be handled by adding additional code here
8461          */
8462     }
8463
8464     if (space > (size_t) 0) {
8465         *allocSize = space;
8466         ptr = *stats = rxi_Alloc(space);
8467
8468         if (ptr != NULL) {
8469             rx_interface_stat_p rpc_stat, nrpc_stat;
8470             char *fix_offset;
8471
8472             for (queue_Scan
8473                  (&peerStats, rpc_stat, nrpc_stat, rx_interface_stat)) {
8474                 /*
8475                  * We have to fix the offset of rpc_stat since we are
8476                  * keeping this structure on two rx_queues.  The rx_queue
8477                  * package assumes that the rx_queue member is the first
8478                  * member of the structure.  That is, rx_queue assumes that
8479                  * any one item is only on one queue at a time.  We are
8480                  * breaking that assumption and so we have to do a little
8481                  * math to fix our pointers.
8482                  */
8483
8484                 fix_offset = (char *)rpc_stat;
8485                 fix_offset -= offsetof(rx_interface_stat_t, all_peers);
8486                 rpc_stat = (rx_interface_stat_p) fix_offset;
8487
8488                 /*
8489                  * Copy the data based upon the caller version
8490                  */
8491                 rx_MarshallProcessRPCStats(callerVersion,
8492                                            rpc_stat->stats[0].func_total,
8493                                            rpc_stat->stats, &ptr);
8494             }
8495         } else {
8496             rc = ENOMEM;
8497         }
8498     }
8499     MUTEX_EXIT(&rx_rpc_stats);
8500     return rc;
8501 }
8502
8503 /*
8504  * rx_FreeRPCStats - free memory allocated by
8505  *                   rx_RetrieveProcessRPCStats and rx_RetrievePeerRPCStats
8506  *
8507  * PARAMETERS
8508  *
8509  * IN stats - stats previously returned by rx_RetrieveProcessRPCStats or
8510  * rx_RetrievePeerRPCStats
8511  *
8512  * IN allocSize - the number of bytes in stats.
8513  *
8514  * RETURN CODES
8515  *
8516  * Returns void.
8517  */
8518
8519 void
8520 rx_FreeRPCStats(afs_uint32 * stats, size_t allocSize)
8521 {
8522     rxi_Free(stats, allocSize);
8523 }
8524
8525 /*
8526  * rx_queryProcessRPCStats - see if process rpc stat collection is
8527  * currently enabled.
8528  *
8529  * PARAMETERS
8530  *
8531  * RETURN CODES
8532  *
8533  * Returns 0 if stats are not enabled != 0 otherwise
8534  */
8535
8536 int
8537 rx_queryProcessRPCStats(void)
8538 {
8539     int rc;
8540     MUTEX_ENTER(&rx_rpc_stats);
8541     rc = rxi_monitor_processStats;
8542     MUTEX_EXIT(&rx_rpc_stats);
8543     return rc;
8544 }
8545
8546 /*
8547  * rx_queryPeerRPCStats - see if peer stat collection is currently enabled.
8548  *
8549  * PARAMETERS
8550  *
8551  * RETURN CODES
8552  *
8553  * Returns 0 if stats are not enabled != 0 otherwise
8554  */
8555
8556 int
8557 rx_queryPeerRPCStats(void)
8558 {
8559     int rc;
8560     MUTEX_ENTER(&rx_rpc_stats);
8561     rc = rxi_monitor_peerStats;
8562     MUTEX_EXIT(&rx_rpc_stats);
8563     return rc;
8564 }
8565
8566 /*
8567  * rx_enableProcessRPCStats - begin rpc stat collection for entire process
8568  *
8569  * PARAMETERS
8570  *
8571  * RETURN CODES
8572  *
8573  * Returns void.
8574  */
8575
8576 void
8577 rx_enableProcessRPCStats(void)
8578 {
8579     MUTEX_ENTER(&rx_rpc_stats);
8580     rx_enable_stats = 1;
8581     rxi_monitor_processStats = 1;
8582     MUTEX_EXIT(&rx_rpc_stats);
8583 }
8584
8585 /*
8586  * rx_enablePeerRPCStats - begin rpc stat collection per peer structure
8587  *
8588  * PARAMETERS
8589  *
8590  * RETURN CODES
8591  *
8592  * Returns void.
8593  */
8594
8595 void
8596 rx_enablePeerRPCStats(void)
8597 {
8598     MUTEX_ENTER(&rx_rpc_stats);
8599     rx_enable_stats = 1;
8600     rxi_monitor_peerStats = 1;
8601     MUTEX_EXIT(&rx_rpc_stats);
8602 }
8603
8604 /*
8605  * rx_disableProcessRPCStats - stop rpc stat collection for entire process
8606  *
8607  * PARAMETERS
8608  *
8609  * RETURN CODES
8610  *
8611  * Returns void.
8612  */
8613
8614 void
8615 rx_disableProcessRPCStats(void)
8616 {
8617     rx_interface_stat_p rpc_stat, nrpc_stat;
8618     size_t space;
8619
8620     MUTEX_ENTER(&rx_rpc_stats);
8621
8622     /*
8623      * Turn off process statistics and if peer stats is also off, turn
8624      * off everything
8625      */
8626
8627     rxi_monitor_processStats = 0;
8628     if (rxi_monitor_peerStats == 0) {
8629         rx_enable_stats = 0;
8630     }
8631
8632     for (queue_Scan(&processStats, rpc_stat, nrpc_stat, rx_interface_stat)) {
8633         unsigned int num_funcs = 0;
8634         if (!rpc_stat)
8635             break;
8636         queue_Remove(rpc_stat);
8637         num_funcs = rpc_stat->stats[0].func_total;
8638         space =
8639             sizeof(rx_interface_stat_t) +
8640             rpc_stat->stats[0].func_total * sizeof(rx_function_entry_v1_t);
8641
8642         rxi_Free(rpc_stat, space);
8643         rxi_rpc_process_stat_cnt -= num_funcs;
8644     }
8645     MUTEX_EXIT(&rx_rpc_stats);
8646 }
8647
8648 /*
8649  * rx_disablePeerRPCStats - stop rpc stat collection for peers
8650  *
8651  * PARAMETERS
8652  *
8653  * RETURN CODES
8654  *
8655  * Returns void.
8656  */
8657
8658 void
8659 rx_disablePeerRPCStats(void)
8660 {
8661     struct rx_peer **peer_ptr, **peer_end;
8662     int code;
8663
8664     /*
8665      * Turn off peer statistics and if process stats is also off, turn
8666      * off everything
8667      */
8668
8669     rxi_monitor_peerStats = 0;
8670     if (rxi_monitor_processStats == 0) {
8671         rx_enable_stats = 0;
8672     }
8673
8674     for (peer_ptr = &rx_peerHashTable[0], peer_end =
8675          &rx_peerHashTable[rx_hashTableSize]; peer_ptr < peer_end;
8676          peer_ptr++) {
8677         struct rx_peer *peer, *next, *prev;
8678
8679         MUTEX_ENTER(&rx_peerHashTable_lock);
8680         MUTEX_ENTER(&rx_rpc_stats);
8681         for (prev = peer = *peer_ptr; peer; peer = next) {
8682             next = peer->next;
8683             code = MUTEX_TRYENTER(&peer->peer_lock);
8684             if (code) {
8685                 rx_interface_stat_p rpc_stat, nrpc_stat;
8686                 size_t space;
8687
8688                 if (prev == *peer_ptr) {
8689                     *peer_ptr = next;
8690                     prev = next;
8691                 } else
8692                     prev->next = next;
8693
8694                 if (next)
8695                     next->refCount++;
8696                 if (prev)
8697                     prev->refCount++;
8698                 peer->refCount++;
8699                 MUTEX_EXIT(&rx_peerHashTable_lock);
8700
8701                 for (queue_Scan
8702                      (&peer->rpcStats, rpc_stat, nrpc_stat,
8703                       rx_interface_stat)) {
8704                     unsigned int num_funcs = 0;
8705                     if (!rpc_stat)
8706                         break;
8707                     queue_Remove(&rpc_stat->queue_header);
8708                     queue_Remove(&rpc_stat->all_peers);
8709                     num_funcs = rpc_stat->stats[0].func_total;
8710                     space =
8711                         sizeof(rx_interface_stat_t) +
8712                         rpc_stat->stats[0].func_total *
8713                         sizeof(rx_function_entry_v1_t);
8714
8715                     rxi_Free(rpc_stat, space);
8716                     rxi_rpc_peer_stat_cnt -= num_funcs;
8717                 }
8718                 MUTEX_EXIT(&peer->peer_lock);
8719
8720                 MUTEX_ENTER(&rx_peerHashTable_lock);
8721                 if (next)
8722                     next->refCount--;
8723                 if (prev)
8724                     prev->refCount--;
8725                 peer->refCount--;
8726             } else {
8727                 prev = peer;
8728             }
8729         }
8730         MUTEX_EXIT(&rx_rpc_stats);
8731         MUTEX_EXIT(&rx_peerHashTable_lock);
8732     }
8733 }
8734
8735 /*
8736  * rx_clearProcessRPCStats - clear the contents of the rpc stats according
8737  * to clearFlag
8738  *
8739  * PARAMETERS
8740  *
8741  * IN clearFlag - flag indicating which stats to clear
8742  *
8743  * RETURN CODES
8744  *
8745  * Returns void.
8746  */
8747
8748 void
8749 rx_clearProcessRPCStats(afs_uint32 clearFlag)
8750 {
8751     rx_interface_stat_p rpc_stat, nrpc_stat;
8752
8753     MUTEX_ENTER(&rx_rpc_stats);
8754
8755     for (queue_Scan(&processStats, rpc_stat, nrpc_stat, rx_interface_stat)) {
8756         unsigned int num_funcs = 0, i;
8757         num_funcs = rpc_stat->stats[0].func_total;
8758         for (i = 0; i < num_funcs; i++) {
8759             if (clearFlag & AFS_RX_STATS_CLEAR_INVOCATIONS) {
8760                 hzero(rpc_stat->stats[i].invocations);
8761             }
8762             if (clearFlag & AFS_RX_STATS_CLEAR_BYTES_SENT) {
8763                 hzero(rpc_stat->stats[i].bytes_sent);
8764             }
8765             if (clearFlag & AFS_RX_STATS_CLEAR_BYTES_RCVD) {
8766                 hzero(rpc_stat->stats[i].bytes_rcvd);
8767             }
8768             if (clearFlag & AFS_RX_STATS_CLEAR_QUEUE_TIME_SUM) {
8769                 rpc_stat->stats[i].queue_time_sum.sec = 0;
8770                 rpc_stat->stats[i].queue_time_sum.usec = 0;
8771             }
8772             if (clearFlag & AFS_RX_STATS_CLEAR_QUEUE_TIME_SQUARE) {
8773                 rpc_stat->stats[i].queue_time_sum_sqr.sec = 0;
8774                 rpc_stat->stats[i].queue_time_sum_sqr.usec = 0;
8775             }
8776             if (clearFlag & AFS_RX_STATS_CLEAR_QUEUE_TIME_MIN) {
8777                 rpc_stat->stats[i].queue_time_min.sec = 9999999;
8778                 rpc_stat->stats[i].queue_time_min.usec = 9999999;
8779             }
8780             if (clearFlag & AFS_RX_STATS_CLEAR_QUEUE_TIME_MAX) {
8781                 rpc_stat->stats[i].queue_time_max.sec = 0;
8782                 rpc_stat->stats[i].queue_time_max.usec = 0;
8783             }
8784             if (clearFlag & AFS_RX_STATS_CLEAR_EXEC_TIME_SUM) {
8785                 rpc_stat->stats[i].execution_time_sum.sec = 0;
8786                 rpc_stat->stats[i].execution_time_sum.usec = 0;
8787             }
8788             if (clearFlag & AFS_RX_STATS_CLEAR_EXEC_TIME_SQUARE) {
8789                 rpc_stat->stats[i].execution_time_sum_sqr.sec = 0;
8790                 rpc_stat->stats[i].execution_time_sum_sqr.usec = 0;
8791             }
8792             if (clearFlag & AFS_RX_STATS_CLEAR_EXEC_TIME_MIN) {
8793                 rpc_stat->stats[i].execution_time_min.sec = 9999999;
8794                 rpc_stat->stats[i].execution_time_min.usec = 9999999;
8795             }
8796             if (clearFlag & AFS_RX_STATS_CLEAR_EXEC_TIME_MAX) {
8797                 rpc_stat->stats[i].execution_time_max.sec = 0;
8798                 rpc_stat->stats[i].execution_time_max.usec = 0;
8799             }
8800         }
8801     }
8802
8803     MUTEX_EXIT(&rx_rpc_stats);
8804 }
8805
8806 /*
8807  * rx_clearPeerRPCStats - clear the contents of the rpc stats according
8808  * to clearFlag
8809  *
8810  * PARAMETERS
8811  *
8812  * IN clearFlag - flag indicating which stats to clear
8813  *
8814  * RETURN CODES
8815  *
8816  * Returns void.
8817  */
8818
8819 void
8820 rx_clearPeerRPCStats(afs_uint32 clearFlag)
8821 {
8822     rx_interface_stat_p rpc_stat, nrpc_stat;
8823
8824     MUTEX_ENTER(&rx_rpc_stats);
8825
8826     for (queue_Scan(&peerStats, rpc_stat, nrpc_stat, rx_interface_stat)) {
8827         unsigned int num_funcs = 0, i;
8828         char *fix_offset;
8829         /*
8830          * We have to fix the offset of rpc_stat since we are
8831          * keeping this structure on two rx_queues.  The rx_queue
8832          * package assumes that the rx_queue member is the first
8833          * member of the structure.  That is, rx_queue assumes that
8834          * any one item is only on one queue at a time.  We are
8835          * breaking that assumption and so we have to do a little
8836          * math to fix our pointers.
8837          */
8838
8839         fix_offset = (char *)rpc_stat;
8840         fix_offset -= offsetof(rx_interface_stat_t, all_peers);
8841         rpc_stat = (rx_interface_stat_p) fix_offset;
8842
8843         num_funcs = rpc_stat->stats[0].func_total;
8844         for (i = 0; i < num_funcs; i++) {
8845             if (clearFlag & AFS_RX_STATS_CLEAR_INVOCATIONS) {
8846                 hzero(rpc_stat->stats[i].invocations);
8847             }
8848             if (clearFlag & AFS_RX_STATS_CLEAR_BYTES_SENT) {
8849                 hzero(rpc_stat->stats[i].bytes_sent);
8850             }
8851             if (clearFlag & AFS_RX_STATS_CLEAR_BYTES_RCVD) {
8852                 hzero(rpc_stat->stats[i].bytes_rcvd);
8853             }
8854             if (clearFlag & AFS_RX_STATS_CLEAR_QUEUE_TIME_SUM) {
8855                 rpc_stat->stats[i].queue_time_sum.sec = 0;
8856                 rpc_stat->stats[i].queue_time_sum.usec = 0;
8857             }
8858             if (clearFlag & AFS_RX_STATS_CLEAR_QUEUE_TIME_SQUARE) {
8859                 rpc_stat->stats[i].queue_time_sum_sqr.sec = 0;
8860                 rpc_stat->stats[i].queue_time_sum_sqr.usec = 0;
8861             }
8862             if (clearFlag & AFS_RX_STATS_CLEAR_QUEUE_TIME_MIN) {
8863                 rpc_stat->stats[i].queue_time_min.sec = 9999999;
8864                 rpc_stat->stats[i].queue_time_min.usec = 9999999;
8865             }
8866             if (clearFlag & AFS_RX_STATS_CLEAR_QUEUE_TIME_MAX) {
8867                 rpc_stat->stats[i].queue_time_max.sec = 0;
8868                 rpc_stat->stats[i].queue_time_max.usec = 0;
8869             }
8870             if (clearFlag & AFS_RX_STATS_CLEAR_EXEC_TIME_SUM) {
8871                 rpc_stat->stats[i].execution_time_sum.sec = 0;
8872                 rpc_stat->stats[i].execution_time_sum.usec = 0;
8873             }
8874             if (clearFlag & AFS_RX_STATS_CLEAR_EXEC_TIME_SQUARE) {
8875                 rpc_stat->stats[i].execution_time_sum_sqr.sec = 0;
8876                 rpc_stat->stats[i].execution_time_sum_sqr.usec = 0;
8877             }
8878             if (clearFlag & AFS_RX_STATS_CLEAR_EXEC_TIME_MIN) {
8879                 rpc_stat->stats[i].execution_time_min.sec = 9999999;
8880                 rpc_stat->stats[i].execution_time_min.usec = 9999999;
8881             }
8882             if (clearFlag & AFS_RX_STATS_CLEAR_EXEC_TIME_MAX) {
8883                 rpc_stat->stats[i].execution_time_max.sec = 0;
8884                 rpc_stat->stats[i].execution_time_max.usec = 0;
8885             }
8886         }
8887     }
8888
8889     MUTEX_EXIT(&rx_rpc_stats);
8890 }
8891
8892 /*
8893  * rxi_rxstat_userok points to a routine that returns 1 if the caller
8894  * is authorized to enable/disable/clear RX statistics.
8895  */
8896 static int (*rxi_rxstat_userok) (struct rx_call * call) = NULL;
8897
8898 void
8899 rx_SetRxStatUserOk(int (*proc) (struct rx_call * call))
8900 {
8901     rxi_rxstat_userok = proc;
8902 }
8903
8904 int
8905 rx_RxStatUserOk(struct rx_call *call)
8906 {
8907     if (!rxi_rxstat_userok)
8908         return 0;
8909     return rxi_rxstat_userok(call);
8910 }
8911
8912 #ifdef AFS_NT40_ENV
8913 /*
8914  * DllMain() -- Entry-point function called by the DllMainCRTStartup()
8915  *     function in the MSVC runtime DLL (msvcrt.dll).
8916  *
8917  *     Note: the system serializes calls to this function.
8918  */
8919 BOOL WINAPI
8920 DllMain(HINSTANCE dllInstHandle,        /* instance handle for this DLL module */
8921         DWORD reason,                   /* reason function is being called */
8922         LPVOID reserved)                /* reserved for future use */
8923 {
8924     switch (reason) {
8925     case DLL_PROCESS_ATTACH:
8926         /* library is being attached to a process */
8927         INIT_PTHREAD_LOCKS;
8928         return TRUE;
8929
8930     case DLL_PROCESS_DETACH:
8931         return TRUE;
8932
8933     default:
8934         return FALSE;
8935     }
8936 }
8937 #endif /* AFS_NT40_ENV */
8938
8939 #ifndef KERNEL
8940 int rx_DumpCalls(FILE *outputFile, char *cookie)
8941 {
8942 #ifdef RXDEBUG_PACKET
8943 #ifdef KDUMP_RX_LOCK
8944     struct rx_call_rx_lock *c;
8945 #else
8946     struct rx_call *c;
8947 #endif
8948 #ifdef AFS_NT40_ENV
8949     int zilch;
8950     char output[2048];
8951 #define RXDPRINTF sprintf
8952 #define RXDPRINTOUT output
8953 #else
8954 #define RXDPRINTF fprintf
8955 #define RXDPRINTOUT outputFile
8956 #endif
8957
8958     RXDPRINTF(RXDPRINTOUT, "%s - Start dumping all Rx Calls - count=%u\r\n", cookie, rx_stats.nCallStructs);
8959 #ifdef AFS_NT40_ENV
8960     WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);
8961 #endif
8962
8963     for (c = rx_allCallsp; c; c = c->allNextp) {
8964         u_short rqc, tqc, iovqc;
8965         struct rx_packet *p, *np;
8966
8967         MUTEX_ENTER(&c->lock);
8968         queue_Count(&c->rq, p, np, rx_packet, rqc);
8969         queue_Count(&c->tq, p, np, rx_packet, tqc);
8970         queue_Count(&c->iovq, p, np, rx_packet, iovqc);
8971
8972         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, "
8973                 "rqc=%u,%u, tqc=%u,%u, iovqc=%u,%u, "
8974                 "lstatus=%u, rstatus=%u, error=%d, timeout=%u, "
8975                 "resendEvent=%d, timeoutEvt=%d, keepAliveEvt=%d, delayedAckEvt=%d, delayedAbortEvt=%d, abortCode=%d, abortCount=%d, "
8976                 "lastSendTime=%u, lastRecvTime=%u, lastSendData=%u"
8977 #ifdef RX_ENABLE_LOCKS
8978                 ", refCount=%u"
8979 #endif
8980 #ifdef RX_REFCOUNT_CHECK
8981                 ", refCountBegin=%u, refCountResend=%u, refCountDelay=%u, "
8982                 "refCountAlive=%u, refCountPacket=%u, refCountSend=%u, refCountAckAll=%u, refCountAbort=%u"
8983 #endif
8984                 "\r\n",
8985                 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,
8986                 c->callNumber?*c->callNumber:0, c->conn?c->conn->flags:0, c->flags,
8987                 (afs_uint32)c->rqc, (afs_uint32)rqc, (afs_uint32)c->tqc, (afs_uint32)tqc, (afs_uint32)c->iovqc, (afs_uint32)iovqc,
8988                 (afs_uint32)c->localStatus, (afs_uint32)c->remoteStatus, c->error, c->timeout,
8989                 c->resendEvent?1:0, c->timeoutEvent?1:0, c->keepAliveEvent?1:0, c->delayedAckEvent?1:0, c->delayedAbortEvent?1:0,
8990                 c->abortCode, c->abortCount, c->lastSendTime, c->lastReceiveTime, c->lastSendData
8991 #ifdef RX_ENABLE_LOCKS
8992                 , (afs_uint32)c->refCount
8993 #endif
8994 #ifdef RX_REFCOUNT_CHECK
8995                 , c->refCDebug[0],c->refCDebug[1],c->refCDebug[2],c->refCDebug[3],c->refCDebug[4],c->refCDebug[5],c->refCDebug[6],c->refCDebug[7]
8996 #endif
8997                 );
8998         MUTEX_EXIT(&c->lock);
8999
9000 #ifdef AFS_NT40_ENV
9001         WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);
9002 #endif
9003     }
9004     RXDPRINTF(RXDPRINTOUT, "%s - End dumping all Rx Calls\r\n", cookie);
9005 #ifdef AFS_NT40_ENV
9006     WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);
9007 #endif
9008 #endif /* RXDEBUG_PACKET */
9009     return 0;
9010 }
9011 #endif