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