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