7d8cbe3e3df0cc87993c69ec4468e00133d2e65e
[openafs.git] / src / rx / rx_user.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_user.c contains routines specific to the user space UNIX implementation of rx */
11
12 #include <afsconfig.h>
13 #include <afs/param.h>
14
15 RCSID
16     ("$Header$");
17
18 # include <sys/types.h>
19 # include <errno.h>
20 # include <signal.h>
21 #ifdef AFS_NT40_ENV
22 # include <WINNT/syscfg.h>
23 #else
24 # include <sys/socket.h>
25 # include <sys/file.h>
26 # include <netdb.h>
27 # include <sys/stat.h>
28 # include <netinet/in.h>
29 # include <sys/time.h>
30 # include <net/if.h>
31 # include <sys/ioctl.h>
32 #endif
33 # include <fcntl.h>
34 #if !defined(AFS_AIX_ENV) && !defined(AFS_NT40_ENV) && !defined(AFS_DJGPP_ENV)
35 # include <sys/syscall.h>
36 #endif
37 #include <afs/afs_args.h>
38 #include <afs/afsutil.h>
39 #ifdef HAVE_STRING_H
40 #include <string.h>
41 #else
42 #ifdef HAVE_STRINGS_H
43 #include <strings.h>
44 #endif
45 #endif
46
47 #ifndef IPPORT_USERRESERVED
48 /* If in.h doesn't define this, define it anyway.  Unfortunately, defining
49    this doesn't put the code into the kernel to restrict kernel assigned
50    port numbers to numbers below IPPORT_USERRESERVED...  */
51 #define IPPORT_USERRESERVED 5000
52 # endif
53
54 #ifndef AFS_NT40_ENV
55 # include <sys/time.h>
56 #endif
57 # include "rx.h"
58 # include "rx_globals.h"
59
60 #ifdef AFS_PTHREAD_ENV
61 #include <assert.h>
62
63 /*
64  * The rx_if_init_mutex mutex protects the following global variables:
65  * Inited
66  */
67
68 pthread_mutex_t rx_if_init_mutex;
69 #define LOCK_IF_INIT assert(pthread_mutex_lock(&rx_if_init_mutex)==0);
70 #define UNLOCK_IF_INIT assert(pthread_mutex_unlock(&rx_if_init_mutex)==0);
71
72 /*
73  * The rx_if_mutex mutex protects the following global variables:
74  * myNetFlags
75  * myNetMTUs
76  * myNetMasks
77  */
78
79 pthread_mutex_t rx_if_mutex;
80 #define LOCK_IF assert(pthread_mutex_lock(&rx_if_mutex)==0);
81 #define UNLOCK_IF assert(pthread_mutex_unlock(&rx_if_mutex)==0);
82 #else
83 #define LOCK_IF_INIT
84 #define UNLOCK_IF_INIT
85 #define LOCK_IF
86 #define UNLOCK_IF
87 #endif /* AFS_PTHREAD_ENV */
88
89
90 /*
91  * Make a socket for receiving/sending IP packets.  Set it into non-blocking
92  * and large buffering modes.  If port isn't specified, the kernel will pick
93  * one.  Returns the socket (>= 0) on success.  Returns OSI_NULLSOCKET on
94  * failure. Port must be in network byte order. 
95  */
96 osi_socket
97 rxi_GetUDPSocket(u_short port)
98 {
99     int binds, code = 0;
100     osi_socket socketFd = OSI_NULLSOCKET;
101     struct sockaddr_in taddr;
102     char *name = "rxi_GetUDPSocket: ";
103     int greedy = 0;
104
105 #if !defined(AFS_NT40_ENV) && !defined(AFS_DJGPP_ENV)
106     if (ntohs(port) >= IPPORT_RESERVED && ntohs(port) < IPPORT_USERRESERVED) {
107 /*      (osi_Msg "%s*WARNING* port number %d is not a reserved port number.  Use port numbers above %d\n", name, port, IPPORT_USERRESERVED);
108 */ ;
109     }
110     if (ntohs(port) > 0 && ntohs(port) < IPPORT_RESERVED && geteuid() != 0) {
111         (osi_Msg
112          "%sport number %d is a reserved port number which may only be used by root.  Use port numbers above %d\n",
113          name, ntohs(port), IPPORT_USERRESERVED);
114         goto error;
115     }
116 #endif
117     socketFd = socket(AF_INET, SOCK_DGRAM, 0);
118
119     if (socketFd < 0) {
120         perror("socket");
121         goto error;
122     }
123
124     taddr.sin_addr.s_addr = INADDR_ANY;
125     taddr.sin_family = AF_INET;
126     taddr.sin_port = (u_short) port;
127 #ifdef STRUCT_SOCKADDR_HAS_SA_LEN
128     taddr.sin_len = sizeof(struct sockaddr_in);
129 #endif
130 #define MAX_RX_BINDS 10
131     for (binds = 0; binds < MAX_RX_BINDS; binds++) {
132         if (binds)
133             rxi_Delay(10);
134         code = bind(socketFd, (struct sockaddr *)&taddr, sizeof(taddr));
135         if (!code)
136             break;
137     }
138     if (code) {
139         perror("bind");
140         (osi_Msg "%sbind failed\n", name);
141         goto error;
142     }
143 #if !defined(AFS_NT40_ENV) && !defined(AFS_DJGPP_ENV)
144     /*
145      * Set close-on-exec on rx socket 
146      */
147     fcntl(socketFd, F_SETFD, 1);
148 #endif
149
150     /* Use one of three different ways of getting a socket buffer expanded to
151      * a reasonable size.
152      */
153     {
154         int len1, len2;
155
156         len1 = 32766;
157         len2 = rx_UdpBufSize;
158 #ifndef AFS_DJGPP_ENV
159         greedy =
160             (setsockopt
161              (socketFd, SOL_SOCKET, SO_RCVBUF, (char *)&len2,
162               sizeof(len2)) >= 0);
163         if (!greedy) {
164             len2 = 32766;       /* fall back to old size... uh-oh! */
165         }
166
167         greedy =
168             (setsockopt
169              (socketFd, SOL_SOCKET, SO_SNDBUF, (char *)&len1,
170               sizeof(len1)) >= 0)
171             &&
172             (setsockopt
173              (socketFd, SOL_SOCKET, SO_RCVBUF, (char *)&len2,
174               sizeof(len2)) >= 0);
175 #endif /* AFS_DJGPP_ENV */
176     }
177
178 #ifndef AFS_DJGPP_ENV
179     if (!greedy)
180         (osi_Msg "%s*WARNING* Unable to increase buffering on socket\n",
181          name);
182 #endif /* AFS_DJGPP_ENV */
183     if (rxi_Listen(socketFd) < 0) {
184         goto error;
185     }
186
187     return socketFd;
188
189   error:
190 #ifdef AFS_NT40_ENV
191     if (socketFd >= 0)
192         closesocket(socketFd);
193 #else
194     if (socketFd >= 0)
195         close(socketFd);
196 #endif
197
198     MUTEX_ENTER(&rx_stats_mutex);
199     rx_stats.socketGreedy = greedy;
200     MUTEX_EXIT(&rx_stats_mutex);
201     return OSI_NULLSOCKET;
202 }
203
204 void
205 osi_Panic(char *msg, int a1, int a2, int a3)
206 {
207     (osi_Msg "Fatal Rx error: ");
208     (osi_Msg msg, a1, a2, a3);
209     fflush(stderr);
210     fflush(stdout);
211     afs_abort();
212 }
213
214 /*
215  * osi_AssertFailU() -- used by the osi_Assert() macro.
216  */
217
218 void
219 osi_AssertFailU(const char *expr, const char *file, int line)
220 {
221     osi_Panic("assertion failed: %s, file: %s, line: %d\n", (int)expr,
222               (int)file, line);
223 }
224
225 #ifdef  AFS_AIX32_ENV
226 #ifndef osi_Alloc
227 static const char memZero;
228 char *
229 osi_Alloc(afs_int32 x)
230 {
231     /* 
232      * 0-length allocs may return NULL ptr from osi_kalloc, so we special-case
233      * things so that NULL returned iff an error occurred 
234      */
235     if (x == 0)
236         return &memZero;
237     return ((char *)malloc(x));
238 }
239
240 void
241 osi_Free(char *x, afs_int32 size)
242 {
243     if (x == &memZero)
244         return;
245     free((char *)x);
246 }
247 #endif
248 #endif /* AFS_AIX32_ENV */
249
250 #define ADDRSPERSITE    16
251
252
253 afs_uint32 rxi_NetAddrs[ADDRSPERSITE];  /* host order */
254 static int myNetMTUs[ADDRSPERSITE];
255 static int myNetMasks[ADDRSPERSITE];
256 static int myNetFlags[ADDRSPERSITE];
257 u_int rxi_numNetAddrs;
258 static int Inited = 0;
259
260 #if defined(AFS_NT40_ENV) || defined(AFS_DJGPP_ENV)
261 int
262 rxi_getaddr(void)
263 {
264     if (rxi_numNetAddrs > 0)
265         return htonl(rxi_NetAddrs[0]);
266     else
267         return 0;
268 }
269
270 /* 
271 ** return number of addresses 
272 ** and the addresses themselves in the buffer
273 ** maxSize - max number of interfaces to return.
274 */
275 int
276 rx_getAllAddr(afs_int32 * buffer, int maxSize)
277 {
278     int count = 0;
279     for (count = 0; count < rxi_numNetAddrs && maxSize > 0;
280          count++, maxSize--)
281         buffer[count] = htonl(rxi_NetAddrs[count]);
282
283     return count;
284 }
285
286 #endif
287
288 #ifdef AFS_NT40_ENV
289
290 void
291 rx_GetIFInfo(void)
292 {
293     LOCK_IF_INIT if (Inited) {
294         UNLOCK_IF_INIT return;
295     } else {
296         u_int maxsize;
297         u_int rxsize;
298         int npackets, ncbufs;
299         afs_uint32 i;
300
301         Inited = 1;
302         UNLOCK_IF_INIT rxi_numNetAddrs = ADDRSPERSITE;
303
304         LOCK_IF(void) syscfg_GetIFInfo(&rxi_numNetAddrs, rxi_NetAddrs,
305                                        myNetMasks, myNetMTUs, myNetFlags);
306
307         for (i = 0; i < rxi_numNetAddrs; i++) {
308             rxsize = rxi_AdjustIfMTU(myNetMTUs[i] - RX_IPUDP_SIZE);
309             maxsize =
310                 rxi_nRecvFrags * rxsize + (rxi_nRecvFrags - 1) * UDP_HDR_SIZE;
311             maxsize = rxi_AdjustMaxMTU(rxsize, maxsize);
312             if (rx_maxReceiveSize < maxsize) {
313                 rx_maxReceiveSize = MIN(RX_MAX_PACKET_SIZE, maxsize);
314                 rx_maxReceiveSize =
315                     MIN(rx_maxReceiveSize, rx_maxReceiveSizeUser);
316             }
317
318         }
319         UNLOCK_IF ncbufs = (rx_maxJumboRecvSize - RX_FIRSTBUFFERSIZE);
320         if (ncbufs > 0) {
321             ncbufs = ncbufs / RX_CBUFFERSIZE;
322             npackets = rx_initSendWindow - 1;
323             rxi_MorePackets(npackets * (ncbufs + 1));
324         }
325     }
326 }
327
328 #endif
329
330 static afs_uint32
331 fudge_netmask(afs_uint32 addr)
332 {
333     afs_uint32 msk;
334
335     if (IN_CLASSA(addr))
336         msk = IN_CLASSA_NET;
337     else if (IN_CLASSB(addr))
338         msk = IN_CLASSB_NET;
339     else if (IN_CLASSC(addr))
340         msk = IN_CLASSC_NET;
341     else
342         msk = 0;
343
344     return msk;
345 }
346
347
348
349 #if !defined(AFS_AIX_ENV) && !defined(AFS_NT40_ENV) && !defined(AFS_LINUX20_ENV) && !defined(AFS_DJGPP_ENV)
350 int
351 rxi_syscall(a3, a4, a5)
352      afs_uint32 a3, a4;
353      void *a5;
354 {
355     afs_uint32 rcode;
356     void (*old) ();
357
358     old = (void (*)())signal(SIGSYS, SIG_IGN);
359
360 #if defined(AFS_SGI_ENV)
361     rcode = afs_syscall(a3, a4, a5);
362 #else
363     rcode = syscall(AFS_SYSCALL, 28 /* AFSCALL_CALL */ , a3, a4, a5);
364 #endif /* AFS_SGI_ENV */
365
366     signal(SIGSYS, old);
367
368     return rcode;
369 }
370 #endif /* AFS_AIX_ENV */
371
372 #ifndef AFS_NT40_ENV
373 void
374 rx_GetIFInfo(void)
375 {
376     int s;
377     int i, j, len, res;
378 #ifndef AFS_DJGPP_ENV
379     struct ifconf ifc;
380     struct ifreq ifs[ADDRSPERSITE];
381     struct ifreq *ifr;
382 #ifdef  AFS_AIX41_ENV
383     char buf[BUFSIZ], *cp, *cplim;
384 #endif
385     struct sockaddr_in *a;
386 #endif /* AFS_DJGPP_ENV */
387
388     LOCK_IF_INIT if (Inited) {
389         UNLOCK_IF_INIT return;
390     }
391     Inited = 1;
392     UNLOCK_IF_INIT LOCK_IF rxi_numNetAddrs = 0;
393     memset(rxi_NetAddrs, 0, sizeof(rxi_NetAddrs));
394     memset(myNetFlags, 0, sizeof(myNetFlags));
395     memset(myNetMTUs, 0, sizeof(myNetMTUs));
396     memset(myNetMasks, 0, sizeof(myNetMasks));
397     UNLOCK_IF s = socket(AF_INET, SOCK_DGRAM, 0);
398     if (s < 0)
399         return;
400
401 #ifndef AFS_DJGPP_ENV
402 #ifdef  AFS_AIX41_ENV
403     ifc.ifc_len = sizeof(buf);
404     ifc.ifc_buf = buf;
405     ifr = ifc.ifc_req;
406 #else
407     ifc.ifc_len = sizeof(ifs);
408     ifc.ifc_buf = (caddr_t) & ifs[0];
409     memset(&ifs[0], 0, sizeof(ifs));
410 #endif
411     res = ioctl(s, SIOCGIFCONF, &ifc);
412     if (res < 0) {
413         /* fputs(stderr, "ioctl error IFCONF\n"); */
414         close(s);
415         return;
416     }
417
418     LOCK_IF
419 #ifdef  AFS_AIX41_ENV
420 #define size(p) MAX((p).sa_len, sizeof(p))
421         cplim = buf + ifc.ifc_len;      /*skip over if's with big ifr_addr's */
422     for (cp = buf; cp < cplim;
423          cp += sizeof(ifr->ifr_name) + MAX(a->sin_len, sizeof(*a))) {
424         if (rxi_numNetAddrs >= ADDRSPERSITE)
425             break;
426
427         ifr = (struct ifreq *)cp;
428 #else
429         len = ifc.ifc_len / sizeof(struct ifreq);
430     if (len > ADDRSPERSITE)
431         len = ADDRSPERSITE;
432
433     for (i = 0; i < len; ++i) {
434         ifr = &ifs[i];
435         res = ioctl(s, SIOCGIFADDR, ifr);
436 #endif
437         if (res < 0) {
438             /* fputs(stderr, "ioctl error IFADDR\n");
439              * perror(ifr->ifr_name);   */
440             continue;
441         }
442         a = (struct sockaddr_in *)&ifr->ifr_addr;
443         if (a->sin_family != AF_INET)
444             continue;
445         rxi_NetAddrs[rxi_numNetAddrs] = ntohl(a->sin_addr.s_addr);
446         if (rxi_NetAddrs[rxi_numNetAddrs] == 0x7f000001) {
447             /* we don't really care about "localhost" */
448             continue;
449         }
450         for (j = 0; j < rxi_numNetAddrs; j++) {
451             if (rxi_NetAddrs[j] == rxi_NetAddrs[rxi_numNetAddrs])
452                 break;
453         }
454         if (j < rxi_numNetAddrs)
455             continue;
456
457         /* fprintf(stderr, "if %s addr=%x\n", ifr->ifr_name,
458          * rxi_NetAddrs[rxi_numNetAddrs]); */
459
460 #ifdef SIOCGIFFLAGS
461         res = ioctl(s, SIOCGIFFLAGS, ifr);
462         if (res == 0) {
463             myNetFlags[rxi_numNetAddrs] = ifr->ifr_flags;
464 #ifdef IFF_LOOPBACK
465             /* Handle aliased loopbacks as well. */
466             if (ifr->ifr_flags & IFF_LOOPBACK)
467                 continue;
468 #endif
469             /* fprintf(stderr, "if %s flags=%x\n", 
470              * ifr->ifr_name, ifr->ifr_flags); */
471         } else {                /*
472                                  * fputs(stderr, "ioctl error IFFLAGS\n");
473                                  * perror(ifr->ifr_name); */
474         }
475 #endif /* SIOCGIFFLAGS */
476
477 #if !defined(AFS_AIX_ENV)  && !defined(AFS_LINUX20_ENV)
478         /* this won't run on an AIX system w/o a cache manager */
479         rxi_syscallp = rxi_syscall;
480 #endif
481
482         /* If I refer to kernel extensions that aren't loaded on AIX, the 
483          * program refuses to load and run, so I simply can't include the 
484          * following code.  Fortunately, AIX is the one operating system in
485          * which the subsequent ioctl works reliably. */
486         if (rxi_syscallp) {
487             if ((*rxi_syscallp) (20 /*AFSOP_GETMTU */ ,
488                                  htonl(rxi_NetAddrs[rxi_numNetAddrs]),
489                                  &(myNetMTUs[rxi_numNetAddrs]))) {
490                 /* fputs(stderr, "syscall error GETMTU\n");
491                  * perror(ifr->ifr_name); */
492                 myNetMTUs[rxi_numNetAddrs] = 0;
493             }
494             if ((*rxi_syscallp) (42 /*AFSOP_GETMASK */ ,
495                                  htonl(rxi_NetAddrs[rxi_numNetAddrs]),
496                                  &(myNetMasks[rxi_numNetAddrs]))) {
497                 /* fputs(stderr, "syscall error GETMASK\n");
498                  * perror(ifr->ifr_name); */
499                 myNetMasks[rxi_numNetAddrs] = 0;
500             } else
501                 myNetMasks[rxi_numNetAddrs] =
502                     ntohl(myNetMasks[rxi_numNetAddrs]);
503             /* fprintf(stderr, "if %s mask=0x%x\n", 
504              * ifr->ifr_name, myNetMasks[rxi_numNetAddrs]); */
505         }
506
507         if (myNetMTUs[rxi_numNetAddrs] == 0) {
508             myNetMTUs[rxi_numNetAddrs] = OLD_MAX_PACKET_SIZE + RX_IPUDP_SIZE;
509 #ifdef SIOCGIFMTU
510             res = ioctl(s, SIOCGIFMTU, ifr);
511             if ((res == 0) && (ifr->ifr_metric > 128)) {        /* sanity check */
512                 myNetMTUs[rxi_numNetAddrs] = ifr->ifr_metric;
513                 /* fprintf(stderr, "if %s mtu=%d\n", 
514                  * ifr->ifr_name, ifr->ifr_metric); */
515             } else {
516                 /* fputs(stderr, "ioctl error IFMTU\n");
517                  * perror(ifr->ifr_name); */
518             }
519 #endif
520         }
521
522         if (myNetMasks[rxi_numNetAddrs] == 0) {
523             myNetMasks[rxi_numNetAddrs] =
524                 fudge_netmask(rxi_NetAddrs[rxi_numNetAddrs]);
525 #ifdef SIOCGIFNETMASK
526             res = ioctl(s, SIOCGIFNETMASK, ifr);
527             if ((res == 0)) {
528                 a = (struct sockaddr_in *)&ifr->ifr_addr;
529                 myNetMasks[rxi_numNetAddrs] = ntohl(a->sin_addr.s_addr);
530                 /* fprintf(stderr, "if %s subnetmask=0x%x\n", 
531                  * ifr->ifr_name, myNetMasks[rxi_numNetAddrs]); */
532             } else {
533                 /* fputs(stderr, "ioctl error IFMASK\n");
534                  * perror(ifr->ifr_name); */
535             }
536 #endif
537         }
538
539         if (rxi_NetAddrs[rxi_numNetAddrs] != 0x7f000001) {      /* ignore lo0 */
540             int maxsize;
541             maxsize =
542                 rxi_nRecvFrags * (myNetMTUs[rxi_numNetAddrs] - RX_IP_SIZE);
543             maxsize -= UDP_HDR_SIZE;    /* only the first frag has a UDP hdr */
544             if (rx_maxReceiveSize < maxsize)
545                 rx_maxReceiveSize = MIN(RX_MAX_PACKET_SIZE, maxsize);
546             ++rxi_numNetAddrs;
547         }
548     }
549     UNLOCK_IF close(s);
550
551     /* have to allocate at least enough to allow a single packet to reach its
552      * maximum size, so ReadPacket will work.  Allocate enough for a couple
553      * of packets to do so, for good measure */
554     {
555         int npackets, ncbufs;
556
557         rx_maxJumboRecvSize =
558             RX_HEADER_SIZE + rxi_nDgramPackets * RX_JUMBOBUFFERSIZE +
559             (rxi_nDgramPackets - 1) * RX_JUMBOHEADERSIZE;
560         rx_maxJumboRecvSize = MAX(rx_maxJumboRecvSize, rx_maxReceiveSize);
561         ncbufs = (rx_maxJumboRecvSize - RX_FIRSTBUFFERSIZE);
562         if (ncbufs > 0) {
563             ncbufs = ncbufs / RX_CBUFFERSIZE;
564             npackets = rx_initSendWindow - 1;
565             rxi_MorePackets(npackets * (ncbufs + 1));
566         }
567     }
568 #else /* AFS_DJGPP_ENV */
569     close(s);
570     return;
571 #endif /* AFS_DJGPP_ENV */
572 }
573 #endif /* AFS_NT40_ENV */
574
575 /* Called from rxi_FindPeer, when initializing a clear rx_peer structure,
576  * to get interesting information.
577  * Curiously enough, the rx_peerHashTable_lock currently protects the
578  * Inited variable (and hence rx_GetIFInfo). When the fs suite uses
579  * pthreads, this issue will need to be revisited.
580  */
581
582 void
583 rxi_InitPeerParams(struct rx_peer *pp)
584 {
585     afs_uint32 ppaddr;
586     u_short rxmtu;
587     int ix;
588
589
590
591     LOCK_IF_INIT if (!Inited) {
592         UNLOCK_IF_INIT
593             /*
594              * there's a race here since more than one thread could call
595              * rx_GetIFInfo.  The race stops in rx_GetIFInfo.
596              */
597             rx_GetIFInfo();
598     } else {
599     UNLOCK_IF_INIT}
600
601 #ifdef ADAPT_MTU
602     /* try to second-guess IP, and identify which link is most likely to
603      * be used for traffic to/from this host. */
604     ppaddr = ntohl(pp->host);
605
606     pp->ifMTU = 0;
607     pp->timeout.sec = 2;
608     pp->rateFlag = 2;           /* start timing after two full packets */
609     /* I don't initialize these, because I presume they are bzero'd... 
610      * pp->burstSize pp->burst pp->burstWait.sec pp->burstWait.usec
611      * pp->timeout.usec */
612
613     LOCK_IF for (ix = 0; ix < rxi_numNetAddrs; ++ix) {
614         if ((rxi_NetAddrs[ix] & myNetMasks[ix]) == (ppaddr & myNetMasks[ix])) {
615 #ifdef IFF_POINTOPOINT
616             if (myNetFlags[ix] & IFF_POINTOPOINT)
617                 pp->timeout.sec = 4;
618 #endif /* IFF_POINTOPOINT */
619             rxmtu = myNetMTUs[ix] - RX_IPUDP_SIZE;
620             if (rxmtu < RX_MIN_PACKET_SIZE)
621                 rxmtu = RX_MIN_PACKET_SIZE;
622             if (pp->ifMTU < rxmtu)
623                 pp->ifMTU = MIN(rx_MyMaxSendSize, rxmtu);
624         }
625     }
626     UNLOCK_IF if (!pp->ifMTU) { /* not local */
627         pp->timeout.sec = 3;
628         pp->ifMTU = MIN(rx_MyMaxSendSize, RX_REMOTE_PACKET_SIZE);
629     }
630 #else /* ADAPT_MTU */
631     pp->rateFlag = 2;           /* start timing after two full packets */
632     pp->timeout.sec = 2;
633     pp->ifMTU = MIN(rx_MyMaxSendSize, OLD_MAX_PACKET_SIZE);
634 #endif /* ADAPT_MTU */
635     pp->ifMTU = rxi_AdjustIfMTU(pp->ifMTU);
636     pp->maxMTU = OLD_MAX_PACKET_SIZE;   /* for compatibility with old guys */
637     pp->natMTU = MIN((int)pp->ifMTU, OLD_MAX_PACKET_SIZE);
638     pp->maxDgramPackets =
639         MIN(rxi_nDgramPackets,
640             rxi_AdjustDgramPackets(RX_MAX_FRAGS, pp->ifMTU));
641     pp->ifDgramPackets =
642         MIN(rxi_nDgramPackets,
643             rxi_AdjustDgramPackets(RX_MAX_FRAGS, pp->ifMTU));
644     pp->maxDgramPackets = 1;
645     /* Initialize slow start parameters */
646     pp->MTU = MIN(pp->natMTU, pp->maxMTU);
647     pp->cwind = 1;
648     pp->nDgramPackets = 1;
649     pp->congestSeq = 0;
650 }
651
652 /* Don't expose jumobgram internals. */
653 void
654 rx_SetNoJumbo(void)
655 {
656     rx_maxReceiveSize = OLD_MAX_PACKET_SIZE;
657     rxi_nSendFrags = rxi_nRecvFrags = 1;
658 }
659
660 /* Override max MTU.  If rx_SetNoJumbo is called, it must be 
661    called before calling rx_SetMaxMTU since SetNoJumbo clobbers rx_maxReceiveSize */
662 void rx_SetMaxMTU(int mtu)
663 {
664         rx_MyMaxSendSize = rx_maxReceiveSizeUser = rx_maxReceiveSize = mtu;
665 }
666