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