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