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