res_query.c revision 2
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
/* All Rights Reserved */
/*
* University Copyright- Copyright (c) 1982, 1986, 1988
* The Regents of the University of California
* All Rights Reserved
*
* University Acknowledgment- Portions of this document are derived from
* software developed by the University of California, Berkeley, and its
* contributors.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <ctype.h>
#include <netdb.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <resolv.h>
#if PACKETSZ > 1024
#else
#define MAXPACKET 1024
#endif
int h_errno;
/*
* Formulate a normal query, send, and await answer.
* Returned answer is placed in supplied buffer "answer".
* Perform preliminary check of answer, returning success only
* if no error is indicated and the answer count is nonzero.
* Return the size of the response on success, -1 on error.
* Error number is left in h_errno.
* Caller must parse answer and determine whether it answers the question.
*/
int
char *name; /* domain name */
int anslen; /* size of answer buffer */
{
int n;
return (-1);
#ifdef DEBUG
#endif
if (n <= 0) {
#ifdef DEBUG
printf("res_query: mkquery failed\n");
#endif
return (n);
}
if (n < 0) {
#ifdef DEBUG
printf("res_query: send error\n");
#endif
return (n);
}
#ifdef DEBUG
#endif
case NXDOMAIN:
break;
case SERVFAIL:
break;
case NOERROR:
break;
case FORMERR:
case NOTIMP:
case REFUSED:
default:
break;
}
return (-1);
}
h_errno = 0;
return (n);
}
/*
* Formulate a normal query, send, and retrieve answer in supplied buffer.
* Return the size of the response on success, -1 on error.
* If enabled, implement search rules until answer or unrecoverable failure
* is detected. Error number is left in h_errno.
* Only useful for queries in the same name hierarchy as the local host
* (not, for example, for host address-to-name lookups in domain in-addr.arpa).
*/
int
char *name; /* domain name */
int anslen; /* size of answer */
{
int n, ret, got_nodata = 0;
char *hostalias();
return (-1);
errno = 0;
if (*cp == '.')
n++;
/*
* We do at least one level of search if
* - there is no dot and RES_DEFNAME is set, or
* - there is at least one dot, there is no trailing dot,
* and RES_DNSRCH is set.
*/
if (ret > 0)
return (ret);
/*
* If no server present, give up.
* If name isn't found in this domain,
* keep trying higher domains in the search list
* (if that's enabled).
* On a NO_DATA error, keep trying, otherwise
* a wildcard entry of another type could keep us
* from finding this entry higher in the domain.
* If we get some other error (negative answer or
* server failure), then stop searching up,
* but try the input name below in case it's fully-qualified.
*/
if (errno == ECONNREFUSED) {
return (-1);
}
got_nodata++;
break;
}
}
/*
* but only if it contained at least one dot (even trailing).
* This is purely a heuristic; we assume that any reasonable query
* about a top-level domain (for servers, SOA, etc) will not use
* res_search.
*/
return (ret);
if (got_nodata)
return (-1);
}
/*
* Perform a call on res_query on the concatenation of name and domain,
* removing a trailing dot from name if domain is NULL.
*/
int
int anslen; /* size of answer */
{
int n;
#ifdef DEBUG
printf("res_querydomain(%s, NULL, %d, %d)\n",
else
printf("res_querydomain(%s, %s, %d, %d)\n",
}
#endif
/*
* Check for trailing '.';
* copy without '.' if present.
*/
#ifdef SYSV
#else
#endif
nbuf[n] = '\0';
} else
} else
}
char *
register char *name;
{
return (NULL);
if (!*C1)
break;
*C1 = '\0';
if (!*C1)
break;
return (abuf);
}
}
return (NULL);
}