From: John Carr Date: Sun, 23 Feb 1992 12:18:19 +0000 (+0000) Subject: Use connect() and send() instead of sendto() for better X-Git-Tag: krb5-1.0-beta2~234 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=91230ebce80145dfd1620a75170f1b5b9c61eea6;p=krb5.git Use connect() and send() instead of sendto() for better error detection. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@2228 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/krb5/os/sendto_kdc.c b/src/lib/krb5/os/sendto_kdc.c index 87a0c6f38..53ed86247 100644 --- a/src/lib/krb5/os/sendto_kdc.c +++ b/src/lib/krb5/os/sendto_kdc.c @@ -41,6 +41,10 @@ static char rcsid_sendto_kdc_c[] = #include #include "os-proto.h" +#ifdef _AIX +#include +#endif + /* * send the formatted request 'message' to a KDC for realm 'realm' and * return the response (if any) in 'reply'. @@ -118,20 +122,22 @@ OLDDECLARG(krb5_data *, reply) continue; /* try other hosts */ } /* have a socket to send/recv from */ - if (sendto(socklist[addr[host].sa_family], - message->data, - message->length, - 0, - &addr[host], - sizeof(addr[host])) != message->length) - continue; - else - sent = 1; + /* On BSD systems, a connected UDP socket will get connection + refused and net unreachable errors while an unconnected + socket will time out, so use connect, send, recv instead of + sendto, recvfrom. The connect here may return an error if + the destination host is known to be unreachable. */ + if (connect(socklist[addr[host].sa_family], + &addr[host], sizeof(addr[host])) == -1) + continue; + if (send(socklist[addr[host].sa_family], + message->data, message->length, 0) != message->length) + continue; waitlen.tv_usec = 0; waitlen.tv_sec = timeout; FD_ZERO(&readable); FD_SET(socklist[addr[host].sa_family], &readable); - if (nready = select(1<data, - reply->length, - 0, - &fromaddr, - &fromlen)) == -1) + if ((cc = recv(socklist[addr[host].sa_family], + reply->data, reply->length, 0)) == -1) + { /* man page says error could be: EBADF: won't happen ENOTSOCK: it's a socket. @@ -155,9 +158,16 @@ OLDDECLARG(krb5_data *, reply) EINTR: could happen EFAULT: we allocated the reply packet. - so we continue on an EINTR. + In addition, net related errors like ECONNREFUSED + are possble (but undocumented). Assume anything + other than EINTR is a permanent error for the + server (i.e. don't set sent = 1). */ + + if (errno == EINTR) + sent = 1; continue; + } /* We might consider here verifying that the reply came from one of the KDC's listed for that address type, @@ -169,6 +179,9 @@ OLDDECLARG(krb5_data *, reply) reply->length = cc; retval = 0; goto out; + } else if (nready == 0) { + /* timeout */ + sent = 1; } /* not ready, go on to next server */ }