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