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