602a7e5c66a79567e7ef5e3c8173e8277d5af0bf
[openafs.git] / src / rx / rx_globals.h
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:  Globals for internal use, basically */
11
12 #ifndef AFS_RX_GLOBALS_H
13 #define AFS_RX_GLOBALS_H
14
15
16 #ifdef  KERNEL
17 #include "rx/rx.h"
18 #else /* KERNEL */
19 # include "rx.h"
20 #endif /* KERNEL */
21
22 #ifndef GLOBALSINIT
23 #define GLOBALSINIT(x)
24 #define POSTAMBLE
25 #if defined(AFS_NT40_ENV)
26 #define RX_STATS_INTERLOCKED 1
27 #if defined(AFS_PTHREAD_ENV)
28 #define EXT __declspec(dllimport) extern
29 #else /* AFS_PTHREAD_ENV */
30 #define EXT extern
31 #endif /* AFS_PTHREAD_ENV */
32 #else /* AFS_NT40_ENV */
33 #define EXT extern
34 #endif /* AFS_NT40_ENV */
35 #endif /* !GLOBALSINIT */
36
37 /* Basic socket for client requests; other sockets (for receiving server requests) are in the service structures */
38 EXT osi_socket rx_socket;
39
40 /* The array of installed services.  Null terminated. */
41 EXT struct rx_service *rx_services[RX_MAX_SERVICES + 1];
42 #ifdef RX_ENABLE_LOCKS
43 /* Protects nRequestsRunning as well as pool allocation variables. */
44 EXT afs_kmutex_t rx_serverPool_lock;
45 #endif /* RX_ENABLE_LOCKS */
46
47 /* Constant delay time before sending a hard ack if the receiver consumes
48  * a packet while no delayed ack event is scheduled. Ensures that the
49  * sender is able to advance its window when the receiver consumes a packet
50  * after the sender has exhausted its transmit window.
51  */
52 EXT struct clock rx_hardAckDelay;
53
54 #if defined(RXDEBUG) || defined(AFS_NT40_ENV)
55 /* Variable to allow introduction of network unreliability; exported from libafsrpc */
56 EXT int rx_intentionallyDroppedPacketsPer100 GLOBALSINIT(0);    /* Dropped on Send */
57 EXT int rx_intentionallyDroppedOnReadPer100  GLOBALSINIT(0);    /* Dropped on Read */
58 #endif
59
60 /* extra packets to add to the quota */
61 EXT int rx_extraQuota GLOBALSINIT(0);
62 /* extra packets to alloc (2 * maxWindowSize by default) */
63 EXT int rx_extraPackets GLOBALSINIT(256);
64
65 EXT int rx_stackSize GLOBALSINIT(RX_DEFAULT_STACK_SIZE);
66
67 /* Time until an unresponsive connection is declared dead */
68 EXT int rx_connDeadTime GLOBALSINIT(12);
69
70 /* Set rx default connection dead time; set on both services and connections at creation time */
71 #ifdef AFS_NT40_ENV
72 void rx_SetRxDeadTime(int seconds);
73 #else
74 #define rx_SetRxDeadTime(seconds)   (rx_connDeadTime = (seconds))
75 #endif
76
77 /* Time until we toss an idle connection */
78 EXT int rx_idleConnectionTime GLOBALSINIT(700);
79 /* Time until we toss a peer structure, after all connections using are gone */
80 EXT int rx_idlePeerTime GLOBALSINIT(60);
81
82 /* The file server is temporarily salvaging */
83 EXT int rx_tranquil GLOBALSINIT(0);
84
85 /* UDP rcv buffer size */
86 EXT int rx_UdpBufSize GLOBALSINIT(64 * 1024);
87 #ifdef AFS_NT40_ENV
88 int   rx_GetMinUdpBufSize(void);
89 void  rx_SetUdpBufSize(int x);
90 #else
91 #define rx_GetMinUdpBufSize()   (64*1024)
92 #define rx_SetUdpBufSize(x)     (((x)>rx_GetMinUdpBufSize()) ? (rx_UdpBufSize = (x)):0)
93 #endif
94 /*
95  * Variables to control RX overload management. When the number of calls
96  * waiting for a thread exceed the threshold, new calls are aborted
97  * with the busy error.
98  */
99 EXT int rx_BusyThreshold GLOBALSINIT(-1);       /* default is disabled */
100 EXT int rx_BusyError GLOBALSINIT(-1);
101
102 /* These definitions should be in one place */
103 #ifdef  AFS_SUN5_ENV
104 #define RX_CBUF_TIME    180     /* Check for packet deficit */
105 #define RX_REAP_TIME    90      /* Check for tossable connections every 90 seconds */
106 #else
107 #define RX_CBUF_TIME    120     /* Check for packet deficit */
108 #define RX_REAP_TIME    60      /* Check for tossable connections every 60 seconds */
109 #endif
110
111 #define RX_FAST_ACK_RATE 1      /* as of 3.4, ask for an ack every
112                                  * other packet. */
113
114 EXT int rx_minPeerTimeout GLOBALSINIT(20);      /* in milliseconds */
115 EXT int rx_minWindow GLOBALSINIT(1);
116 EXT int rx_maxWindow GLOBALSINIT(RX_MAXACKS);   /* must ack what we receive */
117 EXT int rx_initReceiveWindow GLOBALSINIT(16);   /* how much to accept */
118 EXT int rx_maxReceiveWindow GLOBALSINIT(32);    /* how much to accept */
119 EXT int rx_initSendWindow GLOBALSINIT(16);
120 EXT int rx_maxSendWindow GLOBALSINIT(32);
121 EXT int rx_nackThreshold GLOBALSINIT(3);        /* Number NACKS to trigger congestion recovery */
122 EXT int rx_nDgramThreshold GLOBALSINIT(4);      /* Number of packets before increasing
123                                                  * packets per datagram */
124 #define RX_MAX_FRAGS 4
125 EXT int rxi_nSendFrags GLOBALSINIT(RX_MAX_FRAGS);       /* max fragments in a datagram */
126 EXT int rxi_nRecvFrags GLOBALSINIT(RX_MAX_FRAGS);
127 EXT int rxi_OrphanFragSize GLOBALSINIT(512);
128
129 #define RX_MAX_DGRAM_PACKETS 6  /* max packets per jumbogram */
130
131 EXT int rxi_nDgramPackets GLOBALSINIT(RX_MAX_DGRAM_PACKETS);
132 /* allow n packets between soft acks */
133 EXT int rxi_SoftAckRate GLOBALSINIT(RX_FAST_ACK_RATE);
134 /* consume n packets before sending hard ack, should be larger than above,
135    but not absolutely necessary.  If it's smaller, than fast receivers will
136    send a soft ack, immediately followed by a hard ack. */
137 EXT int rxi_HardAckRate GLOBALSINIT(RX_FAST_ACK_RATE + 1);
138
139 EXT int rx_nPackets GLOBALSINIT(0);     /* preallocate packets with rx_extraPackets */
140
141 /*
142  * pthreads thread-specific rx info support
143  * the rx_ts_info_t struct is meant to support all kinds of
144  * thread-specific rx data:
145  *
146  *  _FPQ member contains a thread-specific free packet queue
147  */
148 #ifdef AFS_PTHREAD_ENV
149 EXT pthread_key_t rx_ts_info_key;
150 typedef struct rx_ts_info_t {
151     struct {
152         struct opr_queue queue;
153         int len;                /* local queue length */
154         int delta;              /* number of new packets alloc'd locally since last sync w/ global queue */
155
156         /* FPQ stats */
157         int checkin_ops;
158         int checkin_xfer;
159         int checkout_ops;
160         int checkout_xfer;
161         int gtol_ops;
162         int gtol_xfer;
163         int ltog_ops;
164         int ltog_xfer;
165         int lalloc_ops;
166         int lalloc_xfer;
167         int galloc_ops;
168         int galloc_xfer;
169     } _FPQ;
170     struct rx_packet * local_special_packet;
171 } rx_ts_info_t;
172 EXT struct rx_ts_info_t * rx_ts_info_init(void);   /* init function for thread-specific data struct */
173 #define RX_TS_INFO_GET(ts_info_p) \
174     do { \
175         ts_info_p = (struct rx_ts_info_t*)pthread_getspecific(rx_ts_info_key); \
176         if (ts_info_p == NULL) { \
177             opr_Verify((ts_info_p = rx_ts_info_init()) != NULL); \
178         } \
179     } while(0)
180 #endif /* AFS_PTHREAD_ENV */
181
182
183 /* List of free packets */
184 /* in pthreads rx, free packet queue is now a two-tiered queueing system
185  * in which the first tier is thread-specific, and the second tier is
186  * a global free packet queue */
187 EXT struct opr_queue rx_freePacketQueue;
188 #ifdef RX_TRACK_PACKETS
189 #define RX_FPQ_MARK_FREE(p) \
190     do { \
191         if ((p)->flags & RX_PKTFLAG_FREE) \
192             osi_Panic("rx packet already free\n"); \
193         (p)->flags |= RX_PKTFLAG_FREE; \
194         (p)->flags &= ~(RX_PKTFLAG_TQ|RX_PKTFLAG_IOVQ|RX_PKTFLAG_RQ|RX_PKTFLAG_CP); \
195         (p)->length = 0; \
196         (p)->niovecs = 0; \
197     } while(0)
198 #define RX_FPQ_MARK_USED(p) \
199     do { \
200         if (!((p)->flags & RX_PKTFLAG_FREE)) \
201             osi_Panic("rx packet not free\n"); \
202         (p)->flags = 0;         /* clear RX_PKTFLAG_FREE, initialize the rest */ \
203         (p)->header.flags = 0; \
204     } while(0)
205 #else
206 #define RX_FPQ_MARK_FREE(p) \
207     do { \
208         (p)->length = 0; \
209         (p)->niovecs = 0; \
210     } while(0)
211 #define RX_FPQ_MARK_USED(p) \
212     do { \
213         (p)->flags = 0;         /* clear RX_PKTFLAG_FREE, initialize the rest */ \
214         (p)->header.flags = 0; \
215     } while(0)
216 #endif
217 #define RX_PACKET_IOV_INIT(p) \
218     do { \
219         (p)->wirevec[0].iov_base = (char *)((p)->wirehead); \
220         (p)->wirevec[0].iov_len = RX_HEADER_SIZE; \
221         (p)->wirevec[1].iov_base = (char *)((p)->localdata); \
222         (p)->wirevec[1].iov_len = RX_FIRSTBUFFERSIZE; \
223     } while(0)
224 #define RX_PACKET_IOV_FULLINIT(p) \
225     do { \
226         (p)->wirevec[0].iov_base = (char *)((p)->wirehead); \
227         (p)->wirevec[0].iov_len = RX_HEADER_SIZE; \
228         (p)->wirevec[1].iov_base = (char *)((p)->localdata); \
229         (p)->wirevec[1].iov_len = RX_FIRSTBUFFERSIZE; \
230         (p)->niovecs = 2; \
231         (p)->length = RX_FIRSTBUFFERSIZE; \
232     } while(0)
233
234 #ifdef RX_ENABLE_LOCKS
235 EXT afs_kmutex_t rx_freePktQ_lock;
236 #endif /* RX_ENABLE_LOCKS */
237
238 #if defined(AFS_PTHREAD_ENV)
239 #define RX_ENABLE_TSFPQ
240 EXT int rx_TSFPQGlobSize GLOBALSINIT(3); /* number of packets to transfer between global and local queues in one op */
241 EXT int rx_TSFPQLocalMax GLOBALSINIT(15); /* max number of packets on local FPQ before returning a glob to the global pool */
242 EXT int rx_TSFPQMaxProcs GLOBALSINIT(0); /* max number of threads expected */
243 #define RX_TS_FPQ_FLUSH_GLOBAL 1
244 #define RX_TS_FPQ_PULL_GLOBAL 1
245 #define RX_TS_FPQ_ALLOW_OVERCOMMIT 1
246 /*
247  * compute the localmax and globsize values from rx_TSFPQMaxProcs and rx_nPackets.
248  * arbitarily set local max so that all threads consume 90% of packets, if all local queues are full.
249  * arbitarily set transfer glob size to 20% of max local packet queue length.
250  * also set minimum values of 15 and 3.  Given the algorithms, the number of buffers allocated
251  * by each call to AllocPacketBufs() will increase indefinitely without a cap on the transfer
252  * glob size.  A cap of 64 is selected because that will produce an allocation of greater than
253  * three times that amount which is greater than half of ncalls * maxReceiveWindow.
254  * Must be called under rx_packets_mutex.
255  */
256 #define RX_TS_FPQ_COMPUTE_LIMITS \
257     do { \
258         int newmax, newglob; \
259         newmax = (rx_nPackets * 9) / (10 * rx_TSFPQMaxProcs); \
260         newmax = (newmax >= 15) ? newmax : 15; \
261         newglob = newmax / 5; \
262         newglob = (newglob >= 3) ? (newglob < 64 ? newglob : 64) : 3; \
263         rx_TSFPQLocalMax = newmax; \
264         rx_TSFPQGlobSize = newglob; \
265     } while(0)
266 /* record the number of packets allocated by this thread
267  * and stored in the thread local queue */
268 #define RX_TS_FPQ_LOCAL_ALLOC(rx_ts_info_p,num_alloc) \
269     do { \
270         (rx_ts_info_p)->_FPQ.lalloc_ops++; \
271         (rx_ts_info_p)->_FPQ.lalloc_xfer += num_alloc; \
272     } while (0)
273 /* record the number of packets allocated by this thread
274  * and stored in the global queue */
275 #define RX_TS_FPQ_GLOBAL_ALLOC(rx_ts_info_p,num_alloc) \
276     do { \
277         (rx_ts_info_p)->_FPQ.galloc_ops++; \
278         (rx_ts_info_p)->_FPQ.galloc_xfer += num_alloc; \
279     } while (0)
280 /* move packets from local (thread-specific) to global free packet queue.
281    rx_freePktQ_lock must be held. default is to reduce the queue size to 40% ofmax */
282 #define RX_TS_FPQ_LTOG(rx_ts_info_p) \
283     do { \
284         int i; \
285         struct rx_packet * p; \
286         int tsize = MIN((rx_ts_info_p)->_FPQ.len, (rx_ts_info_p)->_FPQ.len - rx_TSFPQLocalMax + 3 *  rx_TSFPQGlobSize); \
287         if (tsize <= 0) break; \
288         for (i=0,p=opr_queue_Last(&((rx_ts_info_p)->_FPQ.queue), \
289                                  struct rx_packet, entry); \
290              i < tsize; i++,p=opr_queue_Prev(&p->entry, \
291                                             struct rx_packet, entry )); \
292         opr_queue_SplitAfterPrepend(&((rx_ts_info_p)->_FPQ.queue), \
293                                    &rx_freePacketQueue, &p->entry); \
294         (rx_ts_info_p)->_FPQ.len -= tsize; \
295         rx_nFreePackets += tsize; \
296         (rx_ts_info_p)->_FPQ.ltog_ops++; \
297         (rx_ts_info_p)->_FPQ.ltog_xfer += tsize; \
298         if ((rx_ts_info_p)->_FPQ.delta) { \
299             MUTEX_ENTER(&rx_packets_mutex); \
300             RX_TS_FPQ_COMPUTE_LIMITS; \
301             MUTEX_EXIT(&rx_packets_mutex); \
302            (rx_ts_info_p)->_FPQ.delta = 0; \
303         } \
304     } while(0)
305 /* same as above, except user has direct control over number to transfer */
306 #define RX_TS_FPQ_LTOG2(rx_ts_info_p,num_transfer) \
307     do { \
308         int i; \
309         struct rx_packet * p; \
310         if (num_transfer <= 0) break; \
311         for (i=0,p=opr_queue_Last(&((rx_ts_info_p)->_FPQ.queue), \
312                                  struct rx_packet, entry ); \
313              i < (num_transfer); \
314              i++,p=opr_queue_Prev(&p->entry, struct rx_packet, entry )); \
315         opr_queue_SplitAfterPrepend(&((rx_ts_info_p)->_FPQ.queue), \
316                                    &rx_freePacketQueue, &p->entry); \
317         (rx_ts_info_p)->_FPQ.len -= (num_transfer); \
318         rx_nFreePackets += (num_transfer); \
319         (rx_ts_info_p)->_FPQ.ltog_ops++; \
320         (rx_ts_info_p)->_FPQ.ltog_xfer += (num_transfer); \
321         if ((rx_ts_info_p)->_FPQ.delta) { \
322             MUTEX_ENTER(&rx_packets_mutex); \
323             RX_TS_FPQ_COMPUTE_LIMITS; \
324             MUTEX_EXIT(&rx_packets_mutex); \
325             (rx_ts_info_p)->_FPQ.delta = 0; \
326         } \
327     } while(0)
328 /* move packets from global to local (thread-specific) free packet queue.
329    rx_freePktQ_lock must be held. */
330 #define RX_TS_FPQ_GTOL(rx_ts_info_p) \
331     do { \
332         int i, tsize; \
333         struct rx_packet * p; \
334         tsize = (rx_TSFPQGlobSize <= rx_nFreePackets) ? \
335                  rx_TSFPQGlobSize : rx_nFreePackets; \
336         for (i=0, \
337                p=opr_queue_First(&rx_freePacketQueue, struct rx_packet, entry); \
338              i < tsize; \
339              i++,p=opr_queue_Next(&p->entry, struct rx_packet, entry)); \
340         opr_queue_SplitBeforeAppend(&rx_freePacketQueue, \
341                                    &((rx_ts_info_p)->_FPQ.queue), &p->entry); \
342         (rx_ts_info_p)->_FPQ.len += i; \
343         rx_nFreePackets -= i; \
344         (rx_ts_info_p)->_FPQ.gtol_ops++; \
345         (rx_ts_info_p)->_FPQ.gtol_xfer += i; \
346     } while(0)
347 /* same as above, except user has direct control over number to transfer */
348 #define RX_TS_FPQ_GTOL2(rx_ts_info_p,num_transfer) \
349     do { \
350         int i, tsize; \
351         struct rx_packet * p; \
352         tsize = (num_transfer); \
353         if (tsize > rx_nFreePackets) tsize = rx_nFreePackets; \
354         for (i=0, \
355                p=opr_queue_First(&rx_freePacketQueue, struct rx_packet, entry); \
356              i < tsize; \
357              i++, p=opr_queue_Next(&p->entry, struct rx_packet, entry)); \
358         opr_queue_SplitBeforeAppend(&rx_freePacketQueue, \
359                                    &((rx_ts_info_p)->_FPQ.queue), &p->entry); \
360         (rx_ts_info_p)->_FPQ.len += i; \
361         rx_nFreePackets -= i; \
362         (rx_ts_info_p)->_FPQ.gtol_ops++; \
363         (rx_ts_info_p)->_FPQ.gtol_xfer += i; \
364     } while(0)
365 /* checkout a packet from the thread-specific free packet queue */
366 #define RX_TS_FPQ_CHECKOUT(rx_ts_info_p,p) \
367     do { \
368         (p) = opr_queue_First(&((rx_ts_info_p)->_FPQ.queue), \
369                              struct rx_packet, entry); \
370         opr_queue_Remove(&p->entry); \
371         RX_FPQ_MARK_USED(p); \
372         (rx_ts_info_p)->_FPQ.len--; \
373         (rx_ts_info_p)->_FPQ.checkout_ops++; \
374         (rx_ts_info_p)->_FPQ.checkout_xfer++; \
375     } while(0)
376 /* checkout multiple packets from the thread-specific free packet queue.
377  * num_transfer must be a variable.
378  */
379 #define RX_TS_FPQ_QCHECKOUT(rx_ts_info_p,num_transfer,q) \
380     do { \
381         int i; \
382         struct rx_packet *p; \
383         if (num_transfer > (rx_ts_info_p)->_FPQ.len) num_transfer = (rx_ts_info_p)->_FPQ.len; \
384         for (i=0, p=opr_queue_First(&((rx_ts_info_p)->_FPQ.queue), \
385                                    struct rx_packet, entry); \
386              i < num_transfer; \
387              i++, p=opr_queue_Next(&p->entry, struct rx_packet, entry)) { \
388             RX_FPQ_MARK_USED(p); \
389         } \
390         opr_queue_SplitBeforeAppend(&((rx_ts_info_p)->_FPQ.queue),(q), \
391                                    &((p)->entry)); \
392         (rx_ts_info_p)->_FPQ.len -= num_transfer; \
393         (rx_ts_info_p)->_FPQ.checkout_ops++; \
394         (rx_ts_info_p)->_FPQ.checkout_xfer += num_transfer; \
395     } while(0)
396 /* check a packet into the thread-specific free packet queue */
397 #define RX_TS_FPQ_CHECKIN(rx_ts_info_p,p) \
398     do { \
399         opr_queue_Prepend(&((rx_ts_info_p)->_FPQ.queue), &((p)->entry)); \
400         RX_FPQ_MARK_FREE(p); \
401         (rx_ts_info_p)->_FPQ.len++; \
402         (rx_ts_info_p)->_FPQ.checkin_ops++; \
403         (rx_ts_info_p)->_FPQ.checkin_xfer++; \
404     } while(0)
405 /* check multiple packets into the thread-specific free packet queue */
406 /* num_transfer must equal length of (q); it is not a means of checking
407  * in part of (q).  passing num_transfer just saves us instructions
408  * since caller already knows length of (q) for other reasons */
409 #define RX_TS_FPQ_QCHECKIN(rx_ts_info_p,num_transfer,q) \
410     do { \
411         struct opr_queue *cur; \
412         for (opr_queue_Scan((q), cur)) { \
413             RX_FPQ_MARK_FREE(opr_queue_Entry(cur, struct rx_packet, entry)); \
414         } \
415         opr_queue_SplicePrepend(&((rx_ts_info_p)->_FPQ.queue),(q)); \
416         (rx_ts_info_p)->_FPQ.len += (num_transfer); \
417         (rx_ts_info_p)->_FPQ.checkin_ops++; \
418         (rx_ts_info_p)->_FPQ.checkin_xfer += (num_transfer); \
419     } while(0)
420 #endif /* AFS_PTHREAD_ENV */
421
422 /* Number of free packets */
423 EXT int rx_nFreePackets GLOBALSINIT(0);
424 EXT int rxi_NeedMorePackets GLOBALSINIT(0);
425 EXT int rx_packetReclaims GLOBALSINIT(0);
426
427 /* largest packet which we can safely receive, initialized to AFS 3.2 value
428  * This is provided for backward compatibility with peers which may be unable
429  * to swallow anything larger. THIS MUST NEVER DECREASE WHILE AN APPLICATION
430  * IS RUNNING! */
431 EXT afs_uint32 rx_maxReceiveSize GLOBALSINIT(_OLD_MAX_PACKET_SIZE * RX_MAX_FRAGS +
432                                       UDP_HDR_SIZE * (RX_MAX_FRAGS - 1));
433
434 /* this is the maximum packet size that the user wants us to receive */
435 /* this is set by rxTune if required */
436 EXT afs_uint32 rx_maxReceiveSizeUser GLOBALSINIT(0xffffffff);
437
438 /* rx_MyMaxSendSize is the size of the largest packet we will send,
439  * including the RX header. Just as rx_maxReceiveSize is the
440  * max we will receive, including the rx header.
441  */
442 EXT afs_uint32 rx_MyMaxSendSize GLOBALSINIT(8588);
443
444 /* Maximum size of a jumbo datagram we can receive */
445 EXT afs_uint32 rx_maxJumboRecvSize GLOBALSINIT(RX_MAX_PACKET_SIZE);
446
447 /* need this to permit progs to run on AIX systems */
448 EXT int (*rxi_syscallp) (afs_uint32 a3, afs_uint32 a4, void *a5)GLOBALSINIT(0);
449
450 /* List of free queue entries */
451 EXT struct rx_serverQueueEntry *rx_FreeSQEList GLOBALSINIT(0);
452 #ifdef  RX_ENABLE_LOCKS
453 EXT afs_kmutex_t freeSQEList_lock;
454 #endif
455
456 /* List of free call structures */
457 EXT struct opr_queue rx_freeCallQueue;
458 #ifdef  RX_ENABLE_LOCKS
459 EXT afs_kmutex_t rx_freeCallQueue_lock;
460 #endif
461 EXT afs_int32 rxi_nCalls GLOBALSINIT(0);
462
463 /* Port requested at rx_Init.  If this is zero, the actual port used will be different--but it will only be used for client operations.  If non-zero, server provided services may use the same port. */
464 EXT u_short rx_port;
465
466 #if !defined(KERNEL) && !defined(AFS_PTHREAD_ENV)
467 /* 32-bit select Mask for rx_Listener. */
468 EXT fd_set rx_selectMask;
469 EXT osi_socket rx_maxSocketNumber;      /* Maximum socket number in the select mask. */
470 /* Minumum socket number in the select mask. */
471 EXT osi_socket rx_minSocketNumber GLOBALSINIT(0x7fffffff);
472 #endif
473
474 /* This is actually the minimum number of packets that must remain free,
475     overall, immediately after a packet of the requested class has been
476     allocated.  *WARNING* These must be assigned with a great deal of care.
477     In order, these are receive quota, send quota, special quota, receive
478     continuation quota, and send continuation quota. */
479 #define RX_PACKET_QUOTAS {1, 10, 0, 1, 10}
480 /* value large enough to guarantee that no allocation fails due to RX_PACKET_QUOTAS.
481    Make it a little bigger, just for fun */
482 #define RX_MAX_QUOTA    15      /* part of min packet computation */
483 EXT int rx_packetQuota[RX_N_PACKET_CLASSES] GLOBALSINIT(RX_PACKET_QUOTAS);
484 EXT int meltdown_1pkt GLOBALSINIT(1);   /* prefer to schedule single-packet calls */
485 EXT int rxi_md2cnt GLOBALSINIT(0);      /* counter of skipped calls */
486 EXT int rxi_2dchoice GLOBALSINIT(1);    /* keep track of another call to schedule */
487
488 /* quota system: each attached server process must be able to make
489     progress to avoid system deadlock, so we ensure that we can always
490     handle the arrival of the next unacknowledged data packet for an
491     attached call.  rxi_dataQuota gives the max # of packets that must be
492     reserved for active calls for them to be able to make progress, which is
493     essentially enough to queue up a window-full of packets (the first packet
494     may be missing, so these may not get read) + the # of packets the thread
495     may use before reading all of its input (# free must be one more than send
496     packet quota).  Thus, each thread allocates rx_maxReceiveWindow+1 (max
497     queued packets) + an extra for sending data.  The system also reserves
498     RX_MAX_QUOTA (must be more than RX_PACKET_QUOTA[i], which is 10), so that
499     the extra packet can be sent (must be under the system-wide send packet
500     quota to send any packets) */
501 /* # to reserve so that thread with input can still make calls (send packets)
502    without blocking */
503 EXT int rxi_dataQuota GLOBALSINIT(RX_MAX_QUOTA);        /* packets to reserve for active threads */
504
505 EXT afs_int32 rxi_availProcs GLOBALSINIT(0);    /* number of threads in the pool */
506 EXT afs_int32 rxi_totalMin GLOBALSINIT(0);      /* Sum(minProcs) forall services */
507 EXT afs_int32 rxi_minDeficit GLOBALSINIT(0);    /* number of procs needed to handle all minProcs */
508
509 EXT int rx_nextCid;             /* Next connection call id */
510 EXT int rx_epoch;               /* Initialization time of rx */
511 #ifdef  RX_ENABLE_LOCKS
512 EXT afs_kcondvar_t rx_waitingForPackets_cv;
513 #endif
514 EXT char rx_waitingForPackets;  /* Processes set and wait on this variable when waiting for packet buffers */
515
516 EXT struct rx_peer **rx_peerHashTable;
517 EXT struct rx_connection **rx_connHashTable;
518 EXT struct rx_connection *rx_connCleanup_list GLOBALSINIT(0);
519 EXT afs_uint32 rx_hashTableSize GLOBALSINIT(257);       /* Prime number */
520 #ifdef RX_ENABLE_LOCKS
521 EXT afs_kmutex_t rx_peerHashTable_lock;
522 EXT afs_kmutex_t rx_connHashTable_lock;
523 #endif /* RX_ENABLE_LOCKS */
524
525 #define CONN_HASH(host, port, cid, epoch, type) ((((cid)>>RX_CIDSHIFT)%rx_hashTableSize))
526
527 #define PEER_HASH(host, port)  ((host ^ port) % rx_hashTableSize)
528
529 /* Forward definitions of internal procedures */
530 #define rxi_ChallengeOff(conn)  \
531         rxevent_Cancel(&(conn)->challengeEvent)
532 #define rxi_NatKeepAliveOff(conn) \
533         rxevent_Cancel(&(conn)->natKeepAliveEvent)
534
535 #define rxi_AllocSecurityObject() rxi_Alloc(sizeof(struct rx_securityClass))
536 #define rxi_FreeSecurityObject(obj) rxi_Free(obj, sizeof(struct rx_securityClass))
537 #define rxi_AllocService()      rxi_Alloc(sizeof(struct rx_service))
538 #define rxi_FreeService(obj) \
539 do { \
540     MUTEX_DESTROY(&(obj)->svc_data_lock);  \
541     rxi_Free((obj), sizeof(struct rx_service)); \
542 } while (0)
543 #define rxi_AllocPeer()         rxi_Alloc(sizeof(struct rx_peer))
544 #define rxi_FreePeer(peer)      rxi_Free(peer, sizeof(struct rx_peer))
545 #define rxi_AllocConnection()   rxi_Alloc(sizeof(struct rx_connection))
546 #define rxi_FreeConnection(conn) (rxi_Free(conn, sizeof(struct rx_connection)))
547
548 EXT afs_int32 rx_stats_active GLOBALSINIT(1);   /* boolean - rx statistics gathering */
549
550 #ifndef KERNEL
551 /* Some debugging stuff */
552 EXT FILE *rx_debugFile;         /* Set by the user to a stdio file for debugging output */
553 EXT FILE *rxevent_debugFile;    /* Set to an stdio descriptor for event logging to that file */
554 #endif
555
556 #ifdef RXDEBUG
557 # define rx_Log rx_debugFile
558 # ifdef AFS_NT40_ENV
559 EXT int rxdebug_active;
560 #  define dpf(args) do { if (rxdebug_active) rxi_DebugPrint args; } while (0)
561 # else
562 #  ifdef DPF_FSLOG
563 #   include <afs/afsutil.h>
564 #   define dpf(args) FSLog args
565 #  else
566 #   define dpf(args) do { if (rx_debugFile) rxi_DebugPrint args; } while (0)
567 #  endif
568 # endif
569 # define rx_Log_event rxevent_debugFile
570 #else
571 # define dpf(args)
572 #endif /* RXDEBUG */
573
574 EXT char *rx_packetTypes[RX_N_PACKET_TYPES] GLOBALSINIT(RX_PACKET_TYPES);       /* Strings defined in rx.h */
575
576 #ifndef KERNEL
577 /*
578  * Counter used to implement connection specific data
579  */
580 EXT int rxi_keyCreate_counter GLOBALSINIT(0);
581 /*
582  * Array of function pointers used to destory connection specific data
583  */
584 EXT rx_destructor_t *rxi_keyCreate_destructor GLOBALSINIT(NULL);
585 #ifdef RX_ENABLE_LOCKS
586 EXT afs_kmutex_t rxi_keyCreate_lock;
587 #endif /* RX_ENABLE_LOCKS */
588 #endif /* !KERNEL */
589
590 /*
591  * SERVER ONLY: Threshholds used to throttle error replies to looping
592  * clients. When consecutive calls are aborting with the same error, the
593  * server throttles the client by waiting before sending error messages.
594  * Disabled if abort thresholds are zero.
595  */
596 EXT int rxi_connAbortThreshhold GLOBALSINIT(0);
597 EXT int rxi_connAbortDelay GLOBALSINIT(3000);
598 EXT int rxi_callAbortThreshhold GLOBALSINIT(0);
599 EXT int rxi_callAbortDelay GLOBALSINIT(3000);
600
601 /*
602  * Thread specific thread ID used to implement LWP_Index().
603  */
604
605 #if defined(AFS_PTHREAD_ENV)
606 EXT int rxi_fcfs_thread_num GLOBALSINIT(0);
607 EXT pthread_key_t rx_thread_id_key;
608 #else
609 #define rxi_fcfs_thread_num (0)
610 #endif
611
612 #if defined(RX_ENABLE_LOCKS)
613 EXT afs_kmutex_t rx_waiting_mutex POSTAMBLE;    /* used to protect waiting counters */
614 EXT afs_kmutex_t rx_quota_mutex POSTAMBLE;      /* used to protect quota counters */
615 EXT afs_kmutex_t rx_pthread_mutex POSTAMBLE;    /* used to protect pthread counters */
616 EXT afs_kmutex_t rx_packets_mutex POSTAMBLE;    /* used to protect packet counters */
617 EXT afs_kmutex_t rx_refcnt_mutex POSTAMBLE;       /* used to protect conn/call ref counts */
618 #endif
619
620 EXT int rx_enable_stats GLOBALSINIT(0);
621
622 /*
623  * Set this flag to enable the listener thread to trade places with an idle
624  * worker thread to move the context switch from listener to worker out of
625  * the request path.
626  */
627 EXT int rx_enable_hot_thread GLOBALSINIT(0);
628
629 EXT int RX_IPUDP_SIZE GLOBALSINIT(_RX_IPUDP_SIZE);
630 #endif /* AFS_RX_GLOBALS_H */