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