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