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