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