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