diff options
author | Jakob Schlyter <jakob@cvs.openbsd.org> | 2007-12-09 13:39:46 +0000 |
---|---|---|
committer | Jakob Schlyter <jakob@cvs.openbsd.org> | 2007-12-09 13:39:46 +0000 |
commit | 1173d5eff8dc423c129f442023419436ee94db23 (patch) | |
tree | 57c2bcdc1429b2e80b91a387cd1dc561dab988eb /usr.sbin/bind/lib/lwres | |
parent | e4a92ccc5f8c866478b32a346c71150a2cdf5001 (diff) |
resolve conflicts
Diffstat (limited to 'usr.sbin/bind/lib/lwres')
33 files changed, 3748 insertions, 3369 deletions
diff --git a/usr.sbin/bind/lib/lwres/context.c b/usr.sbin/bind/lib/lwres/context.c index 23143b0b57d..2145be31805 100644 --- a/usr.sbin/bind/lib/lwres/context.c +++ b/usr.sbin/bind/lib/lwres/context.c @@ -1,8 +1,8 @@ /* - * Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 2000, 2001, 2003 Internet Software Consortium. * - * Permission to use, copy, modify, and distribute this software for any + * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * @@ -15,8 +15,76 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $ISC: context.c,v 1.41.2.1.2.4 2004/09/17 05:50:31 marka Exp $ */ - +/* $ISC: context.c,v 1.45.18.7 2007/08/28 07:20:06 tbox Exp $ */ + +/*! \file context.c + lwres_context_create() creates a #lwres_context_t structure for use in + lightweight resolver operations. It holds a socket and other data + needed for communicating with a resolver daemon. The new + lwres_context_t is returned through contextp, a pointer to a + lwres_context_t pointer. This lwres_context_t pointer must initially + be NULL, and is modified to point to the newly created + lwres_context_t. + + When the lightweight resolver needs to perform dynamic memory + allocation, it will call malloc_function to allocate memory and + free_function to free it. If malloc_function and free_function are + NULL, memory is allocated using malloc and free. It is not + permitted to have a NULL malloc_function and a non-NULL free_function + or vice versa. arg is passed as the first parameter to the memory + allocation functions. If malloc_function and free_function are NULL, + arg is unused and should be passed as NULL. + + Once memory for the structure has been allocated, it is initialized + using lwres_conf_init() and returned via *contextp. + + lwres_context_destroy() destroys a #lwres_context_t, closing its + socket. contextp is a pointer to a pointer to the context that is to + be destroyed. The pointer will be set to NULL when the context has + been destroyed. + + The context holds a serial number that is used to identify resolver + request packets and associate responses with the corresponding + requests. This serial number is controlled using + lwres_context_initserial() and lwres_context_nextserial(). + lwres_context_initserial() sets the serial number for context *ctx to + serial. lwres_context_nextserial() increments the serial number and + returns the previous value. + + Memory for a lightweight resolver context is allocated and freed using + lwres_context_allocmem() and lwres_context_freemem(). These use + whatever allocations were defined when the context was created with + lwres_context_create(). lwres_context_allocmem() allocates len bytes + of memory and if successful returns a pointer to the allocated + storage. lwres_context_freemem() frees len bytes of space starting at + location mem. + + lwres_context_sendrecv() performs I/O for the context ctx. Data are + read and written from the context's socket. It writes data from + sendbase -- typically a lightweight resolver query packet -- and waits + for a reply which is copied to the receive buffer at recvbase. The + number of bytes that were written to this receive buffer is returned + in *recvd_len. + +\section context_return Return Values + + lwres_context_create() returns #LWRES_R_NOMEMORY if memory for the + struct lwres_context could not be allocated, #LWRES_R_SUCCESS + otherwise. + + Successful calls to the memory allocator lwres_context_allocmem() + return a pointer to the start of the allocated space. It returns NULL + if memory could not be allocated. + + #LWRES_R_SUCCESS is returned when lwres_context_sendrecv() completes + successfully. #LWRES_R_IOERROR is returned if an I/O error occurs and + #LWRES_R_TIMEOUT is returned if lwres_context_sendrecv() times out + waiting for a response. + +\section context_see See Also + + lwres_conf_init(), malloc, free. + */ #include <config.h> #include <fcntl.h> @@ -37,7 +105,7 @@ #include "context_p.h" #include "assert_p.h" -/* +/*! * Some systems define the socket length argument as an int, some as size_t, * some as socklen_t. The last is what the current POSIX standard mandates. * This definition is here so it can be portable but easily changed if needed. @@ -46,7 +114,7 @@ #define LWRES_SOCKADDR_LEN_T unsigned int #endif -/* +/*! * Make a socket nonblocking. */ #ifndef MAKE_NONBLOCKING @@ -69,9 +137,16 @@ lwres_malloc(void *, size_t); static void lwres_free(void *, void *, size_t); +/*! + * lwres_result_t + */ static lwres_result_t context_connect(lwres_context_t *); +/*% + * Creates a #lwres_context_t structure for use in + * lightweight resolver operations. + */ lwres_result_t lwres_context_create(lwres_context_t **contextp, void *arg, lwres_malloc_t malloc_function, @@ -118,6 +193,12 @@ lwres_context_create(lwres_context_t **contextp, void *arg, return (LWRES_R_SUCCESS); } +/*% +Destroys a #lwres_context_t, closing its socket. +contextp is a pointer to a pointer to the context that is +to be destroyed. The pointer will be set to NULL +when the context has been destroyed. + */ void lwres_context_destroy(lwres_context_t **contextp) { lwres_context_t *ctx; @@ -128,13 +209,16 @@ lwres_context_destroy(lwres_context_t **contextp) { *contextp = NULL; if (ctx->sock != -1) { +#ifdef WIN32 + DestroySockets(); +#endif (void)close(ctx->sock); ctx->sock = -1; } CTXFREE(ctx, sizeof(lwres_context_t)); } - +/*% Increments the serial number and returns the previous value. */ lwres_uint32_t lwres_context_nextserial(lwres_context_t *ctx) { REQUIRE(ctx != NULL); @@ -142,6 +226,7 @@ lwres_context_nextserial(lwres_context_t *ctx) { return (ctx->serial++); } +/*% Sets the serial number for context *ctx to serial. */ void lwres_context_initserial(lwres_context_t *ctx, lwres_uint32_t serial) { REQUIRE(ctx != NULL); @@ -149,6 +234,7 @@ lwres_context_initserial(lwres_context_t *ctx, lwres_uint32_t serial) { ctx->serial = serial; } +/*% Frees len bytes of space starting at location mem. */ void lwres_context_freemem(lwres_context_t *ctx, void *mem, size_t len) { REQUIRE(mem != NULL); @@ -157,6 +243,7 @@ lwres_context_freemem(lwres_context_t *ctx, void *mem, size_t len) { CTXFREE(mem, len); } +/*% Allocates len bytes of memory and if successful returns a pointer to the allocated storage. */ void * lwres_context_allocmem(lwres_context_t *ctx, size_t len) { REQUIRE(len != 0U); @@ -231,19 +318,34 @@ context_connect(lwres_context_t *ctx) { } else return (LWRES_R_IOERROR); +#ifdef WIN32 + InitSockets(); +#endif s = socket(domain, SOCK_DGRAM, IPPROTO_UDP); - if (s < 0) + if (s < 0) { +#ifdef WIN32 + DestroySockets(); +#endif return (LWRES_R_IOERROR); + } ret = connect(s, sa, salen); if (ret != 0) { +#ifdef WIN32 + DestroySockets(); +#endif (void)close(s); return (LWRES_R_IOERROR); } MAKE_NONBLOCKING(s, ret); - if (ret < 0) + if (ret < 0) { +#ifdef WIN32 + DestroySockets(); +#endif + (void)close(s); return (LWRES_R_IOERROR); + } ctx->sock = s; @@ -334,6 +436,7 @@ lwres_context_recv(lwres_context_t *ctx, return (LWRES_R_SUCCESS); } +/*% performs I/O for the context ctx. */ lwres_result_t lwres_context_sendrecv(lwres_context_t *ctx, void *sendbase, int sendlen, diff --git a/usr.sbin/bind/lib/lwres/getaddrinfo.c b/usr.sbin/bind/lib/lwres/getaddrinfo.c index b7f78f984c3..691288665e0 100644 --- a/usr.sbin/bind/lib/lwres/getaddrinfo.c +++ b/usr.sbin/bind/lib/lwres/getaddrinfo.c @@ -1,11 +1,11 @@ /* - * Copyright (C) 2004-2006 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004-2007 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 1999-2001 Internet Software Consortium. * * This code is derived from software contributed to ISC by * Berkeley Software Design, Inc. * - * Permission to use, copy, modify, and distribute this software for any + * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * @@ -18,13 +18,125 @@ * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $ISC: getaddrinfo.c,v 1.41.206.6 2006/11/13 11:57:41 marka Exp $ */ +/* $ISC: getaddrinfo.c,v 1.43.18.8 2007/09/13 23:46:26 tbox Exp $ */ + +/*! \file */ + +/** + * lwres_getaddrinfo() is used to get a list of IP addresses and port + * numbers for host hostname and service servname. The function is the + * lightweight resolver's implementation of getaddrinfo() as defined in + * RFC2133. hostname and servname are pointers to null-terminated strings + * or NULL. hostname is either a host name or a numeric host address + * string: a dotted decimal IPv4 address or an IPv6 address. servname is + * either a decimal port number or a service name as listed in + * /etc/services. + * + * If the operating system does not provide a struct addrinfo, the + * following structure is used: + * + * \code + * struct addrinfo { + * int ai_flags; // AI_PASSIVE, AI_CANONNAME + * int ai_family; // PF_xxx + * int ai_socktype; // SOCK_xxx + * int ai_protocol; // 0 or IPPROTO_xxx for IPv4 and IPv6 + * size_t ai_addrlen; // length of ai_addr + * char *ai_canonname; // canonical name for hostname + * struct sockaddr *ai_addr; // binary address + * struct addrinfo *ai_next; // next structure in linked list + * }; + * \endcode + * + * + * hints is an optional pointer to a struct addrinfo. This structure can + * be used to provide hints concerning the type of socket that the caller + * supports or wishes to use. The caller can supply the following + * structure elements in *hints: + * + * <ul> + * <li>ai_family: + * The protocol family that should be used. When ai_family is set + * to PF_UNSPEC, it means the caller will accept any protocol + * family supported by the operating system.</li> + * + * <li>ai_socktype: + * denotes the type of socket -- SOCK_STREAM, SOCK_DGRAM or + * SOCK_RAW -- that is wanted. When ai_socktype is zero the caller + * will accept any socket type.</li> + * + * <li>ai_protocol: + * indicates which transport protocol is wanted: IPPROTO_UDP or + * IPPROTO_TCP. If ai_protocol is zero the caller will accept any + * protocol.</li> + * + * <li>ai_flags: + * Flag bits. If the AI_CANONNAME bit is set, a successful call to + * lwres_getaddrinfo() will return a null-terminated string + * containing the canonical name of the specified hostname in + * ai_canonname of the first addrinfo structure returned. Setting + * the AI_PASSIVE bit indicates that the returned socket address + * structure is intended for used in a call to bind(2). In this + * case, if the hostname argument is a NULL pointer, then the IP + * address portion of the socket address structure will be set to + * INADDR_ANY for an IPv4 address or IN6ADDR_ANY_INIT for an IPv6 + * address.<br /><br /> + * + * When ai_flags does not set the AI_PASSIVE bit, the returned + * socket address structure will be ready for use in a call to + * connect(2) for a connection-oriented protocol or connect(2), + * sendto(2), or sendmsg(2) if a connectionless protocol was + * chosen. The IP address portion of the socket address structure + * will be set to the loopback address if hostname is a NULL + * pointer and AI_PASSIVE is not set in ai_flags.<br /><br /> + * + * If ai_flags is set to AI_NUMERICHOST it indicates that hostname + * should be treated as a numeric string defining an IPv4 or IPv6 + * address and no name resolution should be attempted. + * </li></ul> + * + * All other elements of the struct addrinfo passed via hints must be + * zero. + * + * A hints of NULL is treated as if the caller provided a struct addrinfo + * initialized to zero with ai_familyset to PF_UNSPEC. + * + * After a successful call to lwres_getaddrinfo(), *res is a pointer to a + * linked list of one or more addrinfo structures. Each struct addrinfo + * in this list cn be processed by following the ai_next pointer, until a + * NULL pointer is encountered. The three members ai_family, ai_socktype, + * and ai_protocol in each returned addrinfo structure contain the + * corresponding arguments for a call to socket(2). For each addrinfo + * structure in the list, the ai_addr member points to a filled-in socket + * address structure of length ai_addrlen. + * + * All of the information returned by lwres_getaddrinfo() is dynamically + * allocated: the addrinfo structures, and the socket address structures + * and canonical host name strings pointed to by the addrinfostructures. + * Memory allocated for the dynamically allocated structures created by a + * successful call to lwres_getaddrinfo() is released by + * lwres_freeaddrinfo(). ai is a pointer to a struct addrinfo created by + * a call to lwres_getaddrinfo(). + * + * \section lwresreturn RETURN VALUES + * + * lwres_getaddrinfo() returns zero on success or one of the error codes + * listed in gai_strerror() if an error occurs. If both hostname and + * servname are NULL lwres_getaddrinfo() returns #EAI_NONAME. + * + * \section lwressee SEE ALSO + * + * lwres(3), lwres_getaddrinfo(), lwres_freeaddrinfo(), + * lwres_gai_strerror(), RFC2133, getservbyname(3), connect(2), + * sendto(2), sendmsg(2), socket(2). + */ #include <config.h> -#include <string.h> #include <errno.h> +#include <isc/string.h> + #include <lwres/lwres.h> #include <lwres/net.h> #include <lwres/netdb.h> @@ -35,6 +147,8 @@ #define SIN6(addr) ((struct sockaddr_in6 *)(addr)) #define SUN(addr) ((struct sockaddr_un *)(addr)) +/*! \struct addrinfo + */ static struct addrinfo *ai_reverse(struct addrinfo *oai), *ai_clone(struct addrinfo *oai, int family), @@ -55,7 +169,7 @@ static void set_order(int, int (**)(const char *, int, struct addrinfo **, #define FOUND_MAX 2 #define ISC_AI_MASK (AI_PASSIVE|AI_CANONNAME|AI_NUMERICHOST) - +/*% Get a list of IP addresses and port numbers for host hostname and service servname. */ int lwres_getaddrinfo(const char *hostname, const char *servname, const struct addrinfo *hints, struct addrinfo **res) @@ -137,7 +251,7 @@ lwres_getaddrinfo(const char *hostname, const char *servname, } #ifdef AF_LOCAL - /* + /*! * First, deal with AF_LOCAL. If the family was not set, * then assume AF_LOCAL if the first character of the * hostname/servname is '/'. @@ -574,6 +688,7 @@ add_ipv6(const char *hostname, int flags, struct addrinfo **aip, return (result); } +/*% Free address info. */ void lwres_freeaddrinfo(struct addrinfo *ai) { struct addrinfo *ai_next; @@ -616,7 +731,7 @@ get_local(const char *name, int socktype, struct addrinfo **res) { } #endif -/* +/*! * Allocate an addrinfo structure, and a sockaddr structure * of the specificed length. We initialize: * ai_addrlen diff --git a/usr.sbin/bind/lib/lwres/gethost.c b/usr.sbin/bind/lib/lwres/gethost.c index cfb3160369b..f06ee54ff9b 100644 --- a/usr.sbin/bind/lib/lwres/gethost.c +++ b/usr.sbin/bind/lib/lwres/gethost.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 2000, 2001 Internet Software Consortium. * * Permission to use, copy, modify, and distribute this software for any @@ -15,7 +15,139 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $ISC: gethost.c,v 1.29.206.1 2004/03/06 08:15:30 marka Exp $ */ +/* $ISC: gethost.c,v 1.30.18.2 2005/04/29 00:17:17 marka Exp $ */ + +/*! \file */ + +/** + * These functions provide hostname-to-address and address-to-hostname + * lookups by means of the lightweight resolver. They are similar to the + * standard gethostent(3) functions provided by most operating systems. + * They use a struct hostent which is usually defined in <namedb.h>. + * + * \code + * struct hostent { + * char *h_name; // official name of host + * char **h_aliases; // alias list + * int h_addrtype; // host address type + * int h_length; // length of address + * char **h_addr_list; // list of addresses from name server + * }; + * #define h_addr h_addr_list[0] // address, for backward compatibility + * \endcode + * + * The members of this structure are: + * + * \li h_name: + * The official (canonical) name of the host. + * + * \li h_aliases: + * A NULL-terminated array of alternate names (nicknames) for the + * host. + * + * \li h_addrtype: + * The type of address being returned -- PF_INET or PF_INET6. + * + * \li h_length: + * The length of the address in bytes. + * + * \li h_addr_list: + * A NULL terminated array of network addresses for the host. Host + * addresses are returned in network byte order. + * + * For backward compatibility with very old software, h_addr is the first + * address in h_addr_list. + * + * lwres_gethostent(), lwres_sethostent(), lwres_endhostent(), + * lwres_gethostent_r(), lwres_sethostent_r() and lwres_endhostent_r() + * provide iteration over the known host entries on systems that provide + * such functionality through facilities like /etc/hosts or NIS. The + * lightweight resolver does not currently implement these functions; it + * only provides them as stub functions that always return failure. + * + * lwres_gethostbyname() and lwres_gethostbyname2() look up the hostname + * name. lwres_gethostbyname() always looks for an IPv4 address while + * lwres_gethostbyname2() looks for an address of protocol family af: + * either PF_INET or PF_INET6 -- IPv4 or IPV6 addresses respectively. + * Successful calls of the functions return a struct hostent for the name + * that was looked up. NULL is returned if the lookups by + * lwres_gethostbyname() or lwres_gethostbyname2() fail. + * + * Reverse lookups of addresses are performed by lwres_gethostbyaddr(). + * addr is an address of length len bytes and protocol family type -- + * PF_INET or PF_INET6. lwres_gethostbyname_r() is a thread-safe function + * for forward lookups. If an error occurs, an error code is returned in + * *error. resbuf is a pointer to a struct hostent which is initialised + * by a successful call to lwres_gethostbyname_r() . buf is a buffer of + * length len bytes which is used to store the h_name, h_aliases, and + * h_addr_list elements of the struct hostent returned in resbuf. + * Successful calls to lwres_gethostbyname_r() return resbuf, which is a + * pointer to the struct hostent it created. + * + * lwres_gethostbyaddr_r() is a thread-safe function that performs a + * reverse lookup of address addr which is len bytes long and is of + * protocol family type -- PF_INET or PF_INET6. If an error occurs, the + * error code is returned in *error. The other function parameters are + * identical to those in lwres_gethostbyname_r(). resbuf is a pointer to + * a struct hostent which is initialised by a successful call to + * lwres_gethostbyaddr_r(). buf is a buffer of length len bytes which is + * used to store the h_name, h_aliases, and h_addr_list elements of the + * struct hostent returned in resbuf. Successful calls to + * lwres_gethostbyaddr_r() return resbuf, which is a pointer to the + * struct hostent it created. + * + * \section gethost_return Return Values + * + * The functions lwres_gethostbyname(), lwres_gethostbyname2(), + * lwres_gethostbyaddr(), and lwres_gethostent() return NULL to indicate + * an error. In this case the global variable lwres_h_errno will contain + * one of the following error codes defined in \link netdb.h <lwres/netdb.h>:\endlink + * + * \li #HOST_NOT_FOUND: + * The host or address was not found. + * + * \li #TRY_AGAIN: + * A recoverable error occurred, e.g., a timeout. Retrying the + * lookup may succeed. + * + * \li #NO_RECOVERY: + * A non-recoverable error occurred. + * + * \li #NO_DATA: + * The name exists, but has no address information associated with + * it (or vice versa in the case of a reverse lookup). The code + * NO_ADDRESS is accepted as a synonym for NO_DATA for backwards + * compatibility. + * + * lwres_hstrerror() translates these error codes to suitable error + * messages. + * + * lwres_gethostent() and lwres_gethostent_r() always return NULL. + * + * Successful calls to lwres_gethostbyname_r() and + * lwres_gethostbyaddr_r() return resbuf, a pointer to the struct hostent + * that was initialised by these functions. They return NULL if the + * lookups fail or if buf was too small to hold the list of addresses and + * names referenced by the h_name, h_aliases, and h_addr_list elements of + * the struct hostent. If buf was too small, both lwres_gethostbyname_r() + * and lwres_gethostbyaddr_r() set the global variable errno to ERANGE. + * + * \section gethost_see See Also + * + * gethostent(), \link getipnode.c getipnode\endlink, lwres_hstrerror() + * + * \section gethost_bugs Bugs + * + * lwres_gethostbyname(), lwres_gethostbyname2(), lwres_gethostbyaddr() + * and lwres_endhostent() are not thread safe; they return pointers to + * static data and provide error codes through a global variable. + * Thread-safe versions for name and address lookup are provided by + * lwres_gethostbyname_r(), and lwres_gethostbyaddr_r() respectively. + * + * The resolver daemon does not currently support any non-DNS name + * services such as /etc/hosts or NIS, consequently the above functions + * don't, either. + */ #include <config.h> @@ -34,6 +166,7 @@ static struct hostent *he = NULL; static int copytobuf(struct hostent *, struct hostent *, char *, int); +/*% Always looks for an IPv4 address. */ struct hostent * lwres_gethostbyname(const char *name) { @@ -44,6 +177,7 @@ lwres_gethostbyname(const char *name) { return (he); } +/*% Looks for either an IPv4 or IPv6 address. */ struct hostent * lwres_gethostbyname2(const char *name, int af) { if (he != NULL) @@ -53,6 +187,7 @@ lwres_gethostbyname2(const char *name, int af) { return (he); } +/*% Reverse lookup of addresses. */ struct hostent * lwres_gethostbyaddr(const char *addr, int len, int type) { @@ -63,6 +198,7 @@ lwres_gethostbyaddr(const char *addr, int len, int type) { return (he); } +/*% Stub function. Always returns failure. */ struct hostent * lwres_gethostent(void) { if (he != NULL) @@ -71,6 +207,7 @@ lwres_gethostent(void) { return (NULL); } +/*% Stub function. Always returns failure. */ void lwres_sethostent(int stayopen) { /* @@ -79,6 +216,7 @@ lwres_sethostent(int stayopen) { UNUSED(stayopen); } +/*% Stub function. Always returns failure. */ void lwres_endhostent(void) { /* @@ -86,6 +224,7 @@ lwres_endhostent(void) { */ } +/*% Thread-safe function for forward lookups. */ struct hostent * lwres_gethostbyname_r(const char *name, struct hostent *resbuf, char *buf, int buflen, int *error) @@ -105,6 +244,7 @@ lwres_gethostbyname_r(const char *name, struct hostent *resbuf, return (resbuf); } +/*% Thread-safe reverse lookup. */ struct hostent * lwres_gethostbyaddr_r(const char *addr, int len, int type, struct hostent *resbuf, char *buf, int buflen, @@ -125,6 +265,7 @@ lwres_gethostbyaddr_r(const char *addr, int len, int type, return (resbuf); } +/*% Stub function. Always returns failure. */ struct hostent * lwres_gethostent_r(struct hostent *resbuf, char *buf, int buflen, int *error) { UNUSED(resbuf); @@ -134,6 +275,7 @@ lwres_gethostent_r(struct hostent *resbuf, char *buf, int buflen, int *error) { return (NULL); } +/*% Stub function. Always returns failure. */ void lwres_sethostent_r(int stayopen) { /* @@ -142,6 +284,7 @@ lwres_sethostent_r(int stayopen) { UNUSED(stayopen); } +/*% Stub function. Always returns failure. */ void lwres_endhostent_r(void) { /* diff --git a/usr.sbin/bind/lib/lwres/getipnode.c b/usr.sbin/bind/lib/lwres/getipnode.c index 5f13502da2d..829a07e1849 100644 --- a/usr.sbin/bind/lib/lwres/getipnode.c +++ b/usr.sbin/bind/lib/lwres/getipnode.c @@ -1,8 +1,8 @@ /* - * Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 1999-2003 Internet Software Consortium. * - * Permission to use, copy, modify, and distribute this software for any + * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * @@ -15,7 +15,110 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $ISC: getipnode.c,v 1.30.2.4.2.6 2005/04/29 00:03:32 marka Exp $ */ +/* $ISC: getipnode.c,v 1.37.18.7 2007/08/28 07:20:06 tbox Exp $ */ + +/*! \file */ + +/** + * These functions perform thread safe, protocol independent + * nodename-to-address and address-to-nodename translation as defined in + * RFC2553. This use a struct hostent which is defined in namedb.h: + * + * \code + * struct hostent { + * char *h_name; // official name of host + * char **h_aliases; // alias list + * int h_addrtype; // host address type + * int h_length; // length of address + * char **h_addr_list; // list of addresses from name server + * }; + * #define h_addr h_addr_list[0] // address, for backward compatibility + * \endcode + * + * The members of this structure are: + * + * \li h_name: + * The official (canonical) name of the host. + * + * \li h_aliases: + * A NULL-terminated array of alternate names (nicknames) for the + * host. + * + * \li h_addrtype: + * The type of address being returned - usually PF_INET or + * PF_INET6. + * + * \li h_length: + * The length of the address in bytes. + * + * \li h_addr_list: + * A NULL terminated array of network addresses for the host. Host + * addresses are returned in network byte order. + * + * lwres_getipnodebyname() looks up addresses of protocol family af for + * the hostname name. The flags parameter contains ORed flag bits to + * specify the types of addresses that are searched for, and the types of + * addresses that are returned. The flag bits are: + * + * \li #AI_V4MAPPED: + * This is used with an af of #AF_INET6, and causes IPv4 addresses + * to be returned as IPv4-mapped IPv6 addresses. + * + * \li #AI_ALL: + * This is used with an af of #AF_INET6, and causes all known + * addresses (IPv6 and IPv4) to be returned. If #AI_V4MAPPED is + * also set, the IPv4 addresses are return as mapped IPv6 + * addresses. + * + * \li #AI_ADDRCONFIG: + * Only return an IPv6 or IPv4 address if here is an active + * network interface of that type. This is not currently + * implemented in the BIND 9 lightweight resolver, and the flag is + * ignored. + * + * \li #AI_DEFAULT: + * This default sets the #AI_V4MAPPED and #AI_ADDRCONFIG flag bits. + * + * lwres_getipnodebyaddr() performs a reverse lookup of address src which + * is len bytes long. af denotes the protocol family, typically PF_INET + * or PF_INET6. + * + * lwres_freehostent() releases all the memory associated with the struct + * hostent pointer. Any memory allocated for the h_name, h_addr_list + * and h_aliases is freed, as is the memory for the hostent structure + * itself. + * + * \section getipnode_return Return Values + * + * If an error occurs, lwres_getipnodebyname() and + * lwres_getipnodebyaddr() set *error_num to an appropriate error code + * and the function returns a NULL pointer. The error codes and their + * meanings are defined in \link netdb.h <lwres/netdb.h>\endlink: + * + * \li #HOST_NOT_FOUND: + * No such host is known. + * + * \li #NO_ADDRESS: + * The server recognised the request and the name but no address + * is available. Another type of request to the name server for + * the domain might return an answer. + * + * \li #TRY_AGAIN: + * A temporary and possibly transient error occurred, such as a + * failure of a server to respond. The request may succeed if + * retried. + * + * \li #NO_RECOVERY: + * An unexpected failure occurred, and retrying the request is + * pointless. + * + * lwres_hstrerror() translates these error codes to suitable error + * messages. + * + * \section getipnode_see See Also + * + * getaddrinfo.c, gethost.c, getnameinfo.c, herror.c, RFC2553 + */ #include <config.h> @@ -80,7 +183,7 @@ hostfromname(lwres_gabnresponse_t *name, int af); *** Public functions. ***/ -/* +/*! * AI_V4MAPPED + AF_INET6 * If no IPv6 address then a query for IPv4 and map returned values. * @@ -222,6 +325,7 @@ lwres_getipnodebyname(const char *name, int af, int flags, int *error_num) { return (he3); } +/*% performs a reverse lookup of address src which is len bytes long. af denotes the protocol family, typically #PF_INET or PF_INET6. */ struct hostent * lwres_getipnodebyaddr(const void *src, size_t len, int af, int *error_num) { struct hostent *he1, *he2; @@ -345,6 +449,7 @@ lwres_getipnodebyaddr(const void *src, size_t len, int af, int *error_num) { return (he1); } +/*% releases all the memory associated with the struct hostent pointer */ void lwres_freehostent(struct hostent *he) { char **cpp; @@ -566,13 +671,20 @@ scan_interfaces(int *have_v4, int *have_v6) { int s, n; size_t cpsize; +#ifdef WIN32 + InitSockets(); +#endif #if defined(SIOCGLIFCONF) && defined(SIOCGLIFADDR) && \ !defined(IRIX_EMUL_IOCTL_SIOCGIFCONF) /* * Try to scan the interfaces using IPv6 ioctls(). */ - if (!scan_interfaces6(have_v4, have_v6)) + if (!scan_interfaces6(have_v4, have_v6)) { +#ifdef WIN32 + DestroySockets(); +#endif return (0); + } #endif /* @@ -697,13 +809,20 @@ scan_interfaces(int *have_v4, int *have_v6) { } if (buf != NULL) free(buf); +#ifdef WIN32 + DestroySockets(); +#endif close(s); return (0); + err_ret: if (buf != NULL) free(buf); if (s != -1) close(s); +#ifdef WIN32 + DestroySockets(); +#endif return (-1); #endif } diff --git a/usr.sbin/bind/lib/lwres/getnameinfo.c b/usr.sbin/bind/lib/lwres/getnameinfo.c index 8b33cd883d7..6cd58629c95 100644 --- a/usr.sbin/bind/lib/lwres/getnameinfo.c +++ b/usr.sbin/bind/lib/lwres/getnameinfo.c @@ -1,5 +1,5 @@ /* - * Portions Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC") + * Portions Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") * Portions Copyright (C) 1999-2001, 2003 Internet Software Consortium. * * Permission to use, copy, modify, and distribute this software for any @@ -15,7 +15,9 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $ISC: getnameinfo.c,v 1.30.2.3.2.4 2004/08/28 06:25:24 marka Exp $ */ +/* $ISC: getnameinfo.c,v 1.34.18.3 2005/04/29 00:17:18 marka Exp $ */ + +/*! \file */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -53,6 +55,62 @@ * but INRIA implementation returns EAI_xxx defined for getaddrinfo(). */ + +/** + * This function is equivalent to the getnameinfo(3) function defined in + * RFC2133. lwres_getnameinfo() returns the hostname for the struct + * sockaddr sa which is salen bytes long. The hostname is of length + * hostlen and is returned via *host. The maximum length of the hostname + * is 1025 bytes: #NI_MAXHOST. + * + * The name of the service associated with the port number in sa is + * returned in *serv. It is servlen bytes long. The maximum length of the + * service name is #NI_MAXSERV - 32 bytes. + * + * The flags argument sets the following bits: + * + * \li #NI_NOFQDN: + * A fully qualified domain name is not required for local hosts. + * The local part of the fully qualified domain name is returned + * instead. + * + * \li #NI_NUMERICHOST + * Return the address in numeric form, as if calling inet_ntop(), + * instead of a host name. + * + * \li #NI_NAMEREQD + * A name is required. If the hostname cannot be found in the DNS + * and this flag is set, a non-zero error code is returned. If the + * hostname is not found and the flag is not set, the address is + * returned in numeric form. + * + * \li #NI_NUMERICSERV + * The service name is returned as a digit string representing the + * port number. + * + * \li #NI_DGRAM + * Specifies that the service being looked up is a datagram + * service, and causes getservbyport() to be called with a second + * argument of "udp" instead of its default of "tcp". This is + * required for the few ports (512-514) that have different + * services for UDP and TCP. + * + * \section getnameinfo_return Return Values + * + * lwres_getnameinfo() returns 0 on success or a non-zero error code if + * an error occurs. + * + * \section getname_see See Also + * + * RFC2133, getservbyport(), + * lwres_getnamebyaddr(). lwres_net_ntop(). + * + * \section getnameinfo_bugs Bugs + * + * RFC2133 fails to define what the nonzero return values of + * getnameinfo() are. + */ + #include <config.h> #include <stdio.h> @@ -67,12 +125,13 @@ #define SUCCESS 0 +/*% afd structure definition */ static struct afd { int a_af; size_t a_addrlen; size_t a_socklen; } afdl [] = { - /* + /*! * First entry is linked last... */ { AF_INET, sizeof(struct in_addr), sizeof(struct sockaddr_in) }, @@ -88,7 +147,7 @@ static struct afd { #define ENI_SALEN 6 #define ENI_NOSOCKET 7 -/* +/*! * The test against 0 is there to keep the Solaris compiler * from complaining about "end-of-loop code not reached". */ @@ -97,6 +156,7 @@ static struct afd { if (result != 0) goto cleanup; \ } while (0) +/*% lightweight resolver socket address structure to hostname and service name */ int lwres_getnameinfo(const struct sockaddr *sa, size_t salen, char *host, size_t hostlen, char *serv, size_t servlen, int flags) diff --git a/usr.sbin/bind/lib/lwres/getrrset.c b/usr.sbin/bind/lib/lwres/getrrset.c index 74f4697f87e..73326f602eb 100644 --- a/usr.sbin/bind/lib/lwres/getrrset.c +++ b/usr.sbin/bind/lib/lwres/getrrset.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 2000-2003 Internet Software Consortium. * * Permission to use, copy, modify, and distribute this software for any @@ -15,7 +15,77 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $ISC: getrrset.c,v 1.11.2.3.2.2 2004/03/06 08:15:31 marka Exp $ */ +/* $ISC: getrrset.c,v 1.14.18.2 2005/04/29 00:17:18 marka Exp $ */ + +/*! \file */ + +/** + * DESCRIPTION + * + * lwres_getrrsetbyname() gets a set of resource records associated with + * a hostname, class, and type. hostname is a pointer a to + * null-terminated string. The flags field is currently unused and must + * be zero. + * + * After a successful call to lwres_getrrsetbyname(), *res is a pointer + * to an #rrsetinfo structure, containing a list of one or more #rdatainfo + * structures containing resource records and potentially another list of + * rdatainfo structures containing SIG resource records associated with + * those records. The members #rri_rdclass and #rri_rdtype are copied from + * the parameters. #rri_ttl and #rri_name are properties of the obtained + * rrset. The resource records contained in #rri_rdatas and #rri_sigs are + * in uncompressed DNS wire format. Properties of the rdataset are + * represented in the #rri_flags bitfield. If the #RRSET_VALIDATED bit is + * set, the data has been DNSSEC validated and the signatures verified. + * + * All of the information returned by lwres_getrrsetbyname() is + * dynamically allocated: the rrsetinfo and rdatainfo structures, and the + * canonical host name strings pointed to by the rrsetinfostructure. + * Memory allocated for the dynamically allocated structures created by a + * successful call to lwres_getrrsetbyname() is released by + * lwres_freerrset(). rrset is a pointer to a struct rrset created by a + * call to lwres_getrrsetbyname(). + * + * The following structures are used: + * + * \code + * struct rdatainfo { + * unsigned int rdi_length; // length of data + * unsigned char *rdi_data; // record data + * }; + * + * struct rrsetinfo { + * unsigned int rri_flags; // RRSET_VALIDATED... + * unsigned int rri_rdclass; // class number + * unsigned int rri_rdtype; // RR type number + * unsigned int rri_ttl; // time to live + * unsigned int rri_nrdatas; // size of rdatas array + * unsigned int rri_nsigs; // size of sigs array + * char *rri_name; // canonical name + * struct rdatainfo *rri_rdatas; // individual records + * struct rdatainfo *rri_sigs; // individual signatures + * }; + * \endcode + * + * \section getrrset_return Return Values + * + * lwres_getrrsetbyname() returns zero on success, and one of the + * following error codes if an error occurred: + * + * \li #ERRSET_NONAME: the name does not exist + * + * \li #ERRSET_NODATA: + * the name exists, but does not have data of the desired type + * + * \li #ERRSET_NOMEMORY: + * memory could not be allocated + * + * \li #ERRSET_INVAL: + * a parameter is invalid + * + * \li #ERRSET_FAIL: + * other failure + */ #include <config.h> @@ -29,6 +99,9 @@ #include "assert_p.h" +/*! + * Structure to map results + */ static unsigned int lwresult_to_result(lwres_result_t lwresult) { switch (lwresult) { @@ -40,7 +113,8 @@ lwresult_to_result(lwres_result_t lwresult) { } } -/* +/*@{*/ +/*! * malloc / calloc functions that guarantee to only * return NULL if there is an error, like they used * to before the ANSI C committee broke them. @@ -61,7 +135,9 @@ sane_calloc(size_t number, size_t size) { memset(mem, 0, len); return (mem); } +/*@}*/ +/*% Returns a set of resource records associated with a hostname, class, and type. hostname is a pointer a to null-terminated string. */ int lwres_getrrsetbyname(const char *hostname, unsigned int rdclass, unsigned int rdtype, unsigned int flags, @@ -190,6 +266,7 @@ lwres_getrrsetbyname(const char *hostname, unsigned int rdclass, return (result); } +/*% Releases memory allocated for the dynamically allocated structures created by a successful call to lwres_getrrsetbyname(). */ void lwres_freerrset(struct rrsetinfo *rrset) { unsigned int i; diff --git a/usr.sbin/bind/lib/lwres/herror.c b/usr.sbin/bind/lib/lwres/herror.c index f138408d49e..e837b01a3ba 100644 --- a/usr.sbin/bind/lib/lwres/herror.c +++ b/usr.sbin/bind/lib/lwres/herror.c @@ -1,5 +1,5 @@ /* - * Portions Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC") + * Portions Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") * Portions Copyright (C) 2000, 2001, 2003 Internet Software Consortium. * * Permission to use, copy, modify, and distribute this software for any @@ -48,10 +48,31 @@ * SUCH DAMAGE. */ +/*! \file herror.c + lwres_herror() prints the string s on stderr followed by the string + generated by lwres_hstrerror() for the error code stored in the global + variable lwres_h_errno. + + lwres_hstrerror() returns an appropriate string for the error code + gievn by err. The values of the error codes and messages are as + follows: + +\li #NETDB_SUCCESS: Resolver Error 0 (no error) + +\li #HOST_NOT_FOUND: Unknown host + +\li #TRY_AGAIN: Host name lookup failure + +\li #NO_RECOVERY: Unknown server error + +\li #NO_DATA: No address associated with name + + */ + #if defined(LIBC_SCCS) && !defined(lint) static const char sccsid[] = "@(#)herror.c 8.1 (Berkeley) 6/4/93"; static const char rcsid[] = - "$ISC: herror.c,v 1.10.12.2 2004/03/06 08:15:31 marka Exp $"; + "$ISC: herror.c,v 1.13.18.2 2005/04/29 00:17:18 marka Exp $"; #endif /* LIBC_SCCS and not lint */ #include <config.h> @@ -63,22 +84,22 @@ static const char rcsid[] = LIBLWRES_EXTERNAL_DATA int lwres_h_errno; -/* +/*! * these have never been declared in any header file so make them static */ static const char *h_errlist[] = { - "Resolver Error 0 (no error)", - "Unknown host", /* 1 HOST_NOT_FOUND */ - "Host name lookup failure", /* 2 TRY_AGAIN */ - "Unknown server error", /* 3 NO_RECOVERY */ - "No address associated with name", /* 4 NO_ADDRESS */ + "Resolver Error 0 (no error)", /*%< 0 no error */ + "Unknown host", /*%< 1 HOST_NOT_FOUND */ + "Host name lookup failure", /*%< 2 TRY_AGAIN */ + "Unknown server error", /*%< 3 NO_RECOVERY */ + "No address associated with name", /*%< 4 NO_ADDRESS */ }; static int h_nerr = { sizeof(h_errlist) / sizeof(h_errlist[0]) }; -/* +/*! * herror -- * print the error indicated by the h_errno value. */ @@ -87,7 +108,7 @@ lwres_herror(const char *s) { fprintf(stderr, "%s: %s\n", s, lwres_hstrerror(lwres_h_errno)); } -/* +/*! * hstrerror -- * return the string associated with a given "host" errno value. */ diff --git a/usr.sbin/bind/lib/lwres/lwconfig.c b/usr.sbin/bind/lib/lwres/lwconfig.c index 7c10e18fef5..e231d4b6506 100644 --- a/usr.sbin/bind/lib/lwres/lwconfig.c +++ b/usr.sbin/bind/lib/lwres/lwconfig.c @@ -15,26 +15,43 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $ISC: lwconfig.c,v 1.33.2.1.2.10 2006/10/03 23:50:50 marka Exp $ */ - -/*** - *** Module for parsing resolv.conf files. - *** - *** entry points are: - *** lwres_conf_init(lwres_context_t *ctx) - *** initializes data structure for subsequent config parsing. - *** - *** lwres_conf_parse(lwres_context_t *ctx, const char *filename) - *** parses a file and fills in the data structure. - *** - *** lwres_conf_print(lwres_context_t *ctx, FILE *fp) - *** prints the config data structure to the FILE. - *** - *** lwres_conf_clear(lwres_context_t *ctx) - *** frees up all the internal memory used by the config data - *** structure, returning it to the lwres_context_t. - *** - ***/ +/* $ISC: lwconfig.c,v 1.38.18.5 2006/10/03 23:50:51 marka Exp $ */ + +/*! \file */ + +/** + * Module for parsing resolv.conf files. + * + * lwres_conf_init() creates an empty lwres_conf_t structure for + * lightweight resolver context ctx. + * + * lwres_conf_clear() frees up all the internal memory used by that + * lwres_conf_t structure in resolver context ctx. + * + * lwres_conf_parse() opens the file filename and parses it to initialise + * the resolver context ctx's lwres_conf_t structure. + * + * lwres_conf_print() prints the lwres_conf_t structure for resolver + * context ctx to the FILE fp. + * + * \section lwconfig_return Return Values + * + * lwres_conf_parse() returns #LWRES_R_SUCCESS if it successfully read and + * parsed filename. It returns #LWRES_R_FAILURE if filename could not be + * opened or contained incorrect resolver statements. + * + * lwres_conf_print() returns #LWRES_R_SUCCESS unless an error occurred + * when converting the network addresses to a numeric host address + * string. If this happens, the function returns #LWRES_R_FAILURE. + * + * \section lwconfig_see See Also + * + * stdio(3), \link resolver resolver \endlink + * + * \section files Files + * + * /etc/resolv.conf + */ #include <config.h> @@ -109,7 +126,7 @@ lwresaddr2af(int lwresaddrtype) } -/* +/*! * Eat characters from FP until EOL or EOF. Returns EOF or '\n' */ static int @@ -124,7 +141,7 @@ eatline(FILE *fp) { } -/* +/*! * Eats white space up to next newline or non-whitespace character (of * EOF). Returns the last character read. Comments are considered white * space. @@ -144,7 +161,7 @@ eatwhite(FILE *fp) { } -/* +/*! * Skip over any leading whitespace and then read in the next sequence of * non-whitespace characters. In this context newline is not considered * whitespace. Returns EOF on end-of-file, or the character @@ -205,6 +222,7 @@ lwres_strdup(lwres_context_t *ctx, const char *str) { return (p); } +/*% intializes data structure for subsequent config parsing. */ void lwres_conf_init(lwres_context_t *ctx) { int i; @@ -234,6 +252,7 @@ lwres_conf_init(lwres_context_t *ctx) { } } +/*% Frees up all the internal memory used by the config data structure, returning it to the lwres_context_t. */ void lwres_conf_clear(lwres_context_t *ctx) { int i; @@ -544,6 +563,7 @@ lwres_conf_parseoption(lwres_context_t *ctx, FILE *fp) { return (LWRES_R_SUCCESS); } +/*% parses a file and fills in the data structure. */ lwres_result_t lwres_conf_parse(lwres_context_t *ctx, const char *filename) { FILE *fp = NULL; @@ -602,6 +622,7 @@ lwres_conf_parse(lwres_context_t *ctx, const char *filename) { return (ret); } +/*% Prints the config data structure to the FILE. */ lwres_result_t lwres_conf_print(lwres_context_t *ctx, FILE *fp) { int i; @@ -697,6 +718,7 @@ lwres_conf_print(lwres_context_t *ctx, FILE *fp) { return (LWRES_R_SUCCESS); } +/*% Returns a pointer to the current config structure. */ lwres_conf_t * lwres_conf_get(lwres_context_t *ctx) { REQUIRE(ctx != NULL); diff --git a/usr.sbin/bind/lib/lwres/lwinetaton.c b/usr.sbin/bind/lib/lwres/lwinetaton.c index 923034986da..3a95a10bd4a 100644 --- a/usr.sbin/bind/lib/lwres/lwinetaton.c +++ b/usr.sbin/bind/lib/lwres/lwinetaton.c @@ -1,5 +1,5 @@ /* - * Portions Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC") + * Portions Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") * Portions Copyright (C) 1996-2001, 2003 Internet Software Consortium. * * Permission to use, copy, modify, and distribute this software for any @@ -68,9 +68,11 @@ * SOFTWARE. */ +/*! \file lwinetaton.c + */ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)inet_addr.c 8.1 (Berkeley) 6/17/93"; -static char rcsid[] = "$ISC: lwinetaton.c,v 1.10.2.1.2.1 2004/03/06 08:15:32 marka Exp $"; +static char rcsid[] = "$ISC: lwinetaton.c,v 1.12.18.2 2005/04/29 00:17:19 marka Exp $"; #endif /* LIBC_SCCS and not lint */ #include <config.h> @@ -84,7 +86,7 @@ static char rcsid[] = "$ISC: lwinetaton.c,v 1.10.2.1.2.1 2004/03/06 08:15:32 mar #include "assert_p.h" -/* +/*! * Check whether "cp" is a valid ascii representation * of an Internet address and convert to a binary address. * Returns 1 if the address is valid, 0 if not. diff --git a/usr.sbin/bind/lib/lwres/lwinetntop.c b/usr.sbin/bind/lib/lwres/lwinetntop.c index 97aa462a19c..08f7d1945cd 100644 --- a/usr.sbin/bind/lib/lwres/lwinetntop.c +++ b/usr.sbin/bind/lib/lwres/lwinetntop.c @@ -15,9 +15,11 @@ * PERFORMANCE OF THIS SOFTWARE. */ +/*! \file lwinetntop.c + */ #if defined(LIBC_SCCS) && !defined(lint) static char rcsid[] = - "$ISC: lwinetntop.c,v 1.9.12.5 2005/11/04 00:16:34 marka Exp $"; + "$ISC: lwinetntop.c,v 1.12.18.4 2005/11/03 23:02:24 marka Exp $"; #endif /* LIBC_SCCS and not lint */ #include <config.h> @@ -45,7 +47,7 @@ static const char *inet_ntop6(const unsigned char *src, char *dst, size_t size); #endif -/* char * +/*! char * * lwres_net_ntop(af, src, dst, size) * convert a network format address to presentation format. * return: @@ -69,7 +71,7 @@ lwres_net_ntop(int af, const void *src, char *dst, size_t size) { /* NOTREACHED */ } -/* const char * +/*! const char * * inet_ntop4(src, dst, size) * format an IPv4 address * return: @@ -98,7 +100,7 @@ inet_ntop4(const unsigned char *src, char *dst, size_t size) { return (dst); } -/* const char * +/*! const char * * inet_ntop6(src, dst, size) * convert IPv6 binary address into presentation (printable) format * author: @@ -107,7 +109,7 @@ inet_ntop4(const unsigned char *src, char *dst, size_t size) { #ifdef AF_INET6 static const char * inet_ntop6(const unsigned char *src, char *dst, size_t size) { - /* + /*! * Note that int32_t and int16_t need only be "at least" large enough * to contain a value of the specified size. On some systems, like * Crays, there is no such thing as an integer variable with 16 bits. diff --git a/usr.sbin/bind/lib/lwres/lwresutil.c b/usr.sbin/bind/lib/lwres/lwresutil.c index deebc6e3617..b127f620078 100644 --- a/usr.sbin/bind/lib/lwres/lwresutil.c +++ b/usr.sbin/bind/lib/lwres/lwresutil.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 2000, 2001 Internet Software Consortium. * * Permission to use, copy, modify, and distribute this software for any @@ -15,7 +15,86 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $ISC: lwresutil.c,v 1.29.206.1 2004/03/06 08:15:33 marka Exp $ */ +/* $ISC: lwresutil.c,v 1.30.18.2 2005/04/29 00:17:20 marka Exp $ */ + +/*! \file */ + +/** + * lwres_string_parse() retrieves a DNS-encoded string starting the + * current pointer of lightweight resolver buffer b: i.e. b->current. + * When the function returns, the address of the first byte of the + * encoded string is returned via *c and the length of that string is + * given by *len. The buffer's current pointer is advanced to point at + * the character following the string length, the encoded string, and + * the trailing NULL character. + * + * lwres_addr_parse() extracts an address from the buffer b. The + * buffer's current pointer b->current is presumed to point at an + * encoded address: the address preceded by a 32-bit protocol family + * identifier and a 16-bit length field. The encoded address is copied + * to addr->address and addr->length indicates the size in bytes of + * the address that was copied. b->current is advanced to point at the + * next byte of available data in the buffer following the encoded + * address. + * + * lwres_getaddrsbyname() and lwres_getnamebyaddr() use the + * lwres_gnbaresponse_t structure defined below: + * + * \code + * typedef struct { + * lwres_uint32_t flags; + * lwres_uint16_t naliases; + * lwres_uint16_t naddrs; + * char *realname; + * char **aliases; + * lwres_uint16_t realnamelen; + * lwres_uint16_t *aliaslen; + * lwres_addrlist_t addrs; + * void *base; + * size_t baselen; + * } lwres_gabnresponse_t; + * \endcode + * + * The contents of this structure are not manipulated directly but + * they are controlled through the \link lwres_gabn.c lwres_gabn*\endlink functions. + * + * The lightweight resolver uses lwres_getaddrsbyname() to perform + * foward lookups. Hostname name is looked up using the resolver + * context ctx for memory allocation. addrtypes is a bitmask + * indicating which type of addresses are to be looked up. Current + * values for this bitmask are #LWRES_ADDRTYPE_V4 for IPv4 addresses + * and #LWRES_ADDRTYPE_V6 for IPv6 addresses. Results of the lookup are + * returned in *structp. + * + * lwres_getnamebyaddr() performs reverse lookups. Resolver context + * ctx is used for memory allocation. The address type is indicated by + * addrtype: #LWRES_ADDRTYPE_V4 or #LWRES_ADDRTYPE_V6. The address to be + * looked up is given by addr and its length is addrlen bytes. The + * result of the function call is made available through *structp. + * + * \section lwresutil_return Return Values + * + * Successful calls to lwres_string_parse() and lwres_addr_parse() + * return #LWRES_R_SUCCESS. Both functions return #LWRES_R_FAILURE if + * the buffer is corrupt or #LWRES_R_UNEXPECTEDEND if the buffer has + * less space than expected for the components of the encoded string + * or address. + * + * lwres_getaddrsbyname() returns #LWRES_R_SUCCESS on success and it + * returns #LWRES_R_NOTFOUND if the hostname name could not be found. + * + * #LWRES_R_SUCCESS is returned by a successful call to + * lwres_getnamebyaddr(). + * + * Both lwres_getaddrsbyname() and lwres_getnamebyaddr() return + * #LWRES_R_NOMEMORY when memory allocation requests fail and + * #LWRES_R_UNEXPECTEDEND if the buffers used for sending queries and + * receiving replies are too small. + * + * \section lwresutil_see See Also + * + * lwbuffer.c, lwres_gabn.c + */ #include <config.h> @@ -31,7 +110,8 @@ #include "assert_p.h" #include "context_p.h" -/* +/*% Parse data. */ +/*! * Requires: * * The "current" pointer in "b" points to encoded raw data. @@ -78,7 +158,8 @@ lwres_data_parse(lwres_buffer_t *b, unsigned char **p, lwres_uint16_t *len) return (LWRES_R_SUCCESS); } -/* +/*% Retrieves a DNS-encoded string. */ +/*! * Requires: * * The "current" pointer in "b" point to an encoded string. @@ -133,6 +214,7 @@ lwres_string_parse(lwres_buffer_t *b, char **c, lwres_uint16_t *len) return (LWRES_R_SUCCESS); } +/*% Extracts an address from the buffer b. */ lwres_result_t lwres_addr_parse(lwres_buffer_t *b, lwres_addr_t *addr) { @@ -154,6 +236,7 @@ lwres_addr_parse(lwres_buffer_t *b, lwres_addr_t *addr) return (LWRES_R_SUCCESS); } +/*% Used to perform forward lookups. */ lwres_result_t lwres_getaddrsbyname(lwres_context_t *ctx, const char *name, lwres_uint32_t addrtypes, lwres_gabnresponse_t **structp) @@ -268,6 +351,7 @@ lwres_getaddrsbyname(lwres_context_t *ctx, const char *name, } +/*% Used to perform reverse lookups. */ lwres_result_t lwres_getnamebyaddr(lwres_context_t *ctx, lwres_uint32_t addrtype, lwres_uint16_t addrlen, const unsigned char *addr, @@ -376,6 +460,7 @@ lwres_getnamebyaddr(lwres_context_t *ctx, lwres_uint32_t addrtype, return (ret); } +/*% Get rdata by name. */ lwres_result_t lwres_getrdatabyname(lwres_context_t *ctx, const char *name, lwres_uint16_t rdclass, lwres_uint16_t rdtype, diff --git a/usr.sbin/bind/lib/lwres/man/lwres.html b/usr.sbin/bind/lib/lwres/man/lwres.html index 030d57a01c9..280ae625dbd 100644 --- a/usr.sbin/bind/lib/lwres/man/lwres.html +++ b/usr.sbin/bind/lib/lwres/man/lwres.html @@ -1,5 +1,5 @@ <!-- - - Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") + - Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") - Copyright (C) 2000, 2001 Internet Software Consortium. - - Permission to use, copy, modify, and distribute this software for any @@ -14,15 +14,15 @@ - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. --> -<!-- $ISC: lwres.html,v 1.4.2.1.4.12 2006/06/29 13:02:31 marka Exp $ --> +<!-- $ISC: lwres.html,v 1.5.18.18 2007/01/30 00:23:45 marka Exp $ --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>lwres</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.70.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.71.1"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en"> -<a name="id2482688"></a><div class="titlepage"></div> +<a name="id2476275"></a><div class="titlepage"></div> <div class="refnamediv"> <h2>Name</h2> <p>lwres — introduction to the lightweight resolver library</p> @@ -32,185 +32,187 @@ <div class="funcsynopsis"><pre class="funcsynopsisinfo">#include <lwres/lwres.h></pre></div> </div> <div class="refsect1" lang="en"> -<a name="id2549397"></a><h2>DESCRIPTION</h2> -<p> -The BIND 9 lightweight resolver library is a simple, name service -independent stub resolver library. It provides hostname-to-address -and address-to-hostname lookup services to applications by -transmitting lookup requests to a resolver daemon -<span><strong class="command">lwresd</strong></span> -running on the local host. The resover daemon performs the -lookup using the DNS or possibly other name service protocols, -and returns the results to the application through the library. -The library and resolver daemon communicate using a simple -UDP-based protocol. -</p> +<a name="id2543348"></a><h2>DESCRIPTION</h2> +<p> + The BIND 9 lightweight resolver library is a simple, name service + independent stub resolver library. It provides hostname-to-address + and address-to-hostname lookup services to applications by + transmitting lookup requests to a resolver daemon + <span><strong class="command">lwresd</strong></span> + running on the local host. The resover daemon performs the + lookup using the DNS or possibly other name service protocols, + and returns the results to the application through the library. + The library and resolver daemon communicate using a simple + UDP-based protocol. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549410"></a><h2>OVERVIEW</h2> -<p> -The lwresd library implements multiple name service APIs. -The standard -<code class="function">gethostbyname()</code>, -<code class="function">gethostbyaddr()</code>, -<code class="function">gethostbyname_r()</code>, -<code class="function">gethostbyaddr_r()</code>, -<code class="function">getaddrinfo()</code>, -<code class="function">getipnodebyname()</code>, -and -<code class="function">getipnodebyaddr()</code> -functions are all supported. To allow the lwres library to coexist -with system libraries that define functions of the same name, -the library defines these functions with names prefixed by -<code class="literal">lwres_</code>. -To define the standard names, applications must include the -header file -<code class="filename"><lwres/netdb.h></code> -which contains macro definitions mapping the standard function names -into -<code class="literal">lwres_</code> -prefixed ones. Operating system vendors who integrate the lwres -library into their base distributions should rename the functions -in the library proper so that the renaming macros are not needed. -</p> -<p> -The library also provides a native API consisting of the functions -<code class="function">lwres_getaddrsbyname()</code> -and -<code class="function">lwres_getnamebyaddr()</code>. -These may be called by applications that require more detailed -control over the lookup process than the standard functions -provide. -</p> -<p> -In addition to these name service independent address lookup -functions, the library implements a new, experimental API -for looking up arbitrary DNS resource records, using the -<code class="function">lwres_getaddrsbyname()</code> -function. -</p> -<p> -Finally, there is a low-level API for converting lookup -requests and responses to and from raw lwres protocol packets. -This API can be used by clients requiring nonblocking operation, -and is also used when implementing the server side of the lwres -protocol, for example in the -<span><strong class="command">lwresd</strong></span> -resolver daemon. The use of this low-level API in clients -and servers is outlined in the following sections. -</p> +<a name="id2543361"></a><h2>OVERVIEW</h2> +<p> + The lwresd library implements multiple name service APIs. + The standard + <code class="function">gethostbyname()</code>, + <code class="function">gethostbyaddr()</code>, + <code class="function">gethostbyname_r()</code>, + <code class="function">gethostbyaddr_r()</code>, + <code class="function">getaddrinfo()</code>, + <code class="function">getipnodebyname()</code>, + and + <code class="function">getipnodebyaddr()</code> + functions are all supported. To allow the lwres library to coexist + with system libraries that define functions of the same name, + the library defines these functions with names prefixed by + <code class="literal">lwres_</code>. + To define the standard names, applications must include the + header file + <code class="filename"><lwres/netdb.h></code> + which contains macro definitions mapping the standard function names + into + <code class="literal">lwres_</code> + prefixed ones. Operating system vendors who integrate the lwres + library into their base distributions should rename the functions + in the library proper so that the renaming macros are not needed. + </p> +<p> + The library also provides a native API consisting of the functions + <code class="function">lwres_getaddrsbyname()</code> + and + <code class="function">lwres_getnamebyaddr()</code>. + These may be called by applications that require more detailed + control over the lookup process than the standard functions + provide. + </p> +<p> + In addition to these name service independent address lookup + functions, the library implements a new, experimental API + for looking up arbitrary DNS resource records, using the + <code class="function">lwres_getaddrsbyname()</code> + function. + </p> +<p> + Finally, there is a low-level API for converting lookup + requests and responses to and from raw lwres protocol packets. + This API can be used by clients requiring nonblocking operation, + and is also used when implementing the server side of the lwres + protocol, for example in the + <span><strong class="command">lwresd</strong></span> + resolver daemon. The use of this low-level API in clients + and servers is outlined in the following sections. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549474"></a><h2>CLIENT-SIDE LOW-LEVEL API CALL FLOW</h2> -<p> -When a client program wishes to make an lwres request using the -native low-level API, it typically performs the following -sequence of actions. -</p> -<p> -(1) Allocate or use an existing <span class="type">lwres_packet_t</span>, -called <code class="varname">pkt</code> below. -</p> -<p> -(2) Set <em class="structfield"><code>pkt.recvlength</code></em> to the maximum length we will accept. -This is done so the receiver of our packets knows how large our receive -buffer is. The "default" is a constant in -<code class="filename">lwres.h</code>: <code class="constant">LWRES_RECVLENGTH = 4096</code>. -</p> -<p> -(3) Set <em class="structfield"><code>pkt.serial</code></em> -to a unique serial number. This value is echoed -back to the application by the remote server. -</p> -<p> -(4) Set <em class="structfield"><code>pkt.pktflags</code></em>. Usually this is set to 0. -</p> -<p> -(5) Set <em class="structfield"><code>pkt.result</code></em> to 0. -</p> -<p> -(6) Call <code class="function">lwres_*request_render()</code>, -or marshall in the data using the primitives -such as <code class="function">lwres_packet_render()</code> -and storing the packet data. -</p> -<p> -(7) Transmit the resulting buffer. -</p> -<p> -(8) Call <code class="function">lwres_*response_parse()</code> -to parse any packets received. -</p> -<p> -(9) Verify that the opcode and serial match a request, and process the -packet specific information contained in the body. -</p> +<a name="id2543425"></a><h2>CLIENT-SIDE LOW-LEVEL API CALL FLOW</h2> +<p> + When a client program wishes to make an lwres request using the + native low-level API, it typically performs the following + sequence of actions. + </p> +<p> + (1) Allocate or use an existing <span class="type">lwres_packet_t</span>, + called <code class="varname">pkt</code> below. + </p> +<p> + (2) Set <em class="structfield"><code>pkt.recvlength</code></em> to the maximum length + we will accept. + This is done so the receiver of our packets knows how large our receive + buffer is. The "default" is a constant in + <code class="filename">lwres.h</code>: <code class="constant">LWRES_RECVLENGTH = 4096</code>. + </p> +<p> + (3) Set <em class="structfield"><code>pkt.serial</code></em> + to a unique serial number. This value is echoed + back to the application by the remote server. + </p> +<p> + (4) Set <em class="structfield"><code>pkt.pktflags</code></em>. Usually this is set to + 0. + </p> +<p> + (5) Set <em class="structfield"><code>pkt.result</code></em> to 0. + </p> +<p> + (6) Call <code class="function">lwres_*request_render()</code>, + or marshall in the data using the primitives + such as <code class="function">lwres_packet_render()</code> + and storing the packet data. + </p> +<p> + (7) Transmit the resulting buffer. + </p> +<p> + (8) Call <code class="function">lwres_*response_parse()</code> + to parse any packets received. + </p> +<p> + (9) Verify that the opcode and serial match a request, and process the + packet specific information contained in the body. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549689"></a><h2>SERVER-SIDE LOW-LEVEL API CALL FLOW</h2> -<p> -When implementing the server side of the lightweight resolver -protocol using the lwres library, a sequence of actions like the -following is typically involved in processing each request packet. -</p> -<p> -Note that the same <span class="type">lwres_packet_t</span> is used -in both the <code class="function">_parse()</code> and <code class="function">_render()</code> calls, -with only a few modifications made -to the packet header's contents between uses. This method is recommended -as it keeps the serial, opcode, and other fields correct. -</p> -<p> -(1) When a packet is received, call <code class="function">lwres_*request_parse()</code> to -unmarshall it. This returns a <span class="type">lwres_packet_t</span> (also called <code class="varname">pkt</code>, below) -as well as a data specific type, such as <span class="type">lwres_gabnrequest_t</span>. -</p> -<p> -(2) Process the request in the data specific type. -</p> -<p> -(3) Set the <em class="structfield"><code>pkt.result</code></em>, -<em class="structfield"><code>pkt.recvlength</code></em> as above. All other fields can -be left untouched since they were filled in by the <code class="function">*_parse()</code> call -above. If using <code class="function">lwres_*response_render()</code>, -<em class="structfield"><code>pkt.pktflags</code></em> will be set up -properly. Otherwise, the <code class="constant">LWRES_LWPACKETFLAG_RESPONSE</code> bit should be -set. -</p> -<p> -(4) Call the data specific rendering function, such as -<code class="function">lwres_gabnresponse_render()</code>. -</p> -<p> -(5) Send the resulting packet to the client. -</p> -<p> -</p> +<a name="id2543573"></a><h2>SERVER-SIDE LOW-LEVEL API CALL FLOW</h2> +<p> + When implementing the server side of the lightweight resolver + protocol using the lwres library, a sequence of actions like the + following is typically involved in processing each request packet. + </p> +<p> + Note that the same <span class="type">lwres_packet_t</span> is used + in both the <code class="function">_parse()</code> and <code class="function">_render()</code> calls, + with only a few modifications made + to the packet header's contents between uses. This method is + recommended + as it keeps the serial, opcode, and other fields correct. + </p> +<p> + (1) When a packet is received, call <code class="function">lwres_*request_parse()</code> to + unmarshall it. This returns a <span class="type">lwres_packet_t</span> (also called <code class="varname">pkt</code>, below) + as well as a data specific type, such as <span class="type">lwres_gabnrequest_t</span>. + </p> +<p> + (2) Process the request in the data specific type. + </p> +<p> + (3) Set the <em class="structfield"><code>pkt.result</code></em>, + <em class="structfield"><code>pkt.recvlength</code></em> as above. All other fields + can + be left untouched since they were filled in by the <code class="function">*_parse()</code> call + above. If using <code class="function">lwres_*response_render()</code>, + <em class="structfield"><code>pkt.pktflags</code></em> will be set up + properly. Otherwise, the <code class="constant">LWRES_LWPACKETFLAG_RESPONSE</code> bit should be + set. + </p> +<p> + (4) Call the data specific rendering function, such as + <code class="function">lwres_gabnresponse_render()</code>. + </p> +<p> + (5) Send the resulting packet to the client. + </p> +<p></p> </div> <div class="refsect1" lang="en"> -<a name="id2549774"></a><h2>SEE ALSO</h2> -<p> -<span class="citerefentry"><span class="refentrytitle">lwres_gethostent</span>(3)</span>, +<a name="id2543656"></a><h2>SEE ALSO</h2> +<p><span class="citerefentry"><span class="refentrytitle">lwres_gethostent</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres_getipnode</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">lwres_getipnode</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres_getnameinfo</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">lwres_getnameinfo</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres_noop</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">lwres_noop</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres_gabn</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">lwres_gabn</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres_gnba</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">lwres_gnba</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres_context</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">lwres_context</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres_config</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">lwres_config</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">resolver</span>(5)</span>, + <span class="citerefentry"><span class="refentrytitle">resolver</span>(5)</span>, -<span class="citerefentry"><span class="refentrytitle">lwresd</span>(8)</span>. + <span class="citerefentry"><span class="refentrytitle">lwresd</span>(8)</span>. -</p> + </p> </div> </div></body> </html> diff --git a/usr.sbin/bind/lib/lwres/man/lwres_buffer.html b/usr.sbin/bind/lib/lwres/man/lwres_buffer.html index c899b643b25..203c4a103b4 100644 --- a/usr.sbin/bind/lib/lwres/man/lwres_buffer.html +++ b/usr.sbin/bind/lib/lwres/man/lwres_buffer.html @@ -1,5 +1,5 @@ <!-- - - Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") + - Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") - Copyright (C) 2000, 2001 Internet Software Consortium. - - Permission to use, copy, modify, and distribute this software for any @@ -14,15 +14,15 @@ - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. --> -<!-- $ISC: lwres_buffer.html,v 1.4.2.1.4.10 2006/06/29 13:02:31 marka Exp $ --> +<!-- $ISC: lwres_buffer.html,v 1.5.18.16 2007/01/30 00:23:45 marka Exp $ --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>lwres_buffer</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.70.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.71.1"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en"> -<a name="id2482688"></a><div class="titlepage"></div> +<a name="id2476275"></a><div class="titlepage"></div> <div class="refnamediv"> <h2>Name</h2> <p>lwres_buffer_init, lwres_buffer_invalidate, lwres_buffer_add, lwres_buffer_subtract, lwres_buffer_clear, lwres_buffer_first, lwres_buffer_forward, lwres_buffer_back, lwres_buffer_getuint8, lwres_buffer_putuint8, lwres_buffer_getuint16, lwres_buffer_putuint16, lwres_buffer_getuint32, lwres_buffer_putuint32, lwres_buffer_putmem, lwres_buffer_getmem — lightweight resolver buffer management</p> @@ -38,60 +38,45 @@ <td><code class="funcdef"> void <b class="fsfunc">lwres_buffer_init</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_buffer_t * </td> +<td> +<var class="pdparam">b</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>void * </td> +<td> +<var class="pdparam">base</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>unsigned int </td> <td> -<code>)</code>;</td> +<var class="pdparam">length</var><code>)</code>;</td> </tr> </table> -<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> -<tr> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"><tr> <td><code class="funcdef"> void <b class="fsfunc">lwres_buffer_invalidate</b>(</code></td> -<td> </td> +<td>lwres_buffer_t * </td> <td> -<code>)</code>;</td> -</tr> -<tr> -<td> </td> -<td> </td> -<td> -<code>)</code>;</td> -</tr> -</table> +<var class="pdparam">b</var><code>)</code>;</td> +</tr></table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> <tr> <td><code class="funcdef"> void <b class="fsfunc">lwres_buffer_add</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_buffer_t * </td> +<td> +<var class="pdparam">b</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>unsigned int </td> <td> -<code>)</code>;</td> +<var class="pdparam">n</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -99,71 +84,47 @@ void <td><code class="funcdef"> void <b class="fsfunc">lwres_buffer_subtract</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_buffer_t * </td> +<td> +<var class="pdparam">b</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>unsigned int </td> <td> -<code>)</code>;</td> +<var class="pdparam">n</var><code>)</code>;</td> </tr> </table> -<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> -<tr> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"><tr> <td><code class="funcdef"> void <b class="fsfunc">lwres_buffer_clear</b>(</code></td> -<td> </td> -<td> -<code>)</code>;</td> -</tr> -<tr> -<td> </td> -<td> </td> +<td>lwres_buffer_t * </td> <td> -<code>)</code>;</td> -</tr> -</table> -<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> -<tr> +<var class="pdparam">b</var><code>)</code>;</td> +</tr></table> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"><tr> <td><code class="funcdef"> void <b class="fsfunc">lwres_buffer_first</b>(</code></td> -<td> </td> +<td>lwres_buffer_t * </td> <td> -<code>)</code>;</td> -</tr> -<tr> -<td> </td> -<td> </td> -<td> -<code>)</code>;</td> -</tr> -</table> +<var class="pdparam">b</var><code>)</code>;</td> +</tr></table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> <tr> <td><code class="funcdef"> void <b class="fsfunc">lwres_buffer_forward</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_buffer_t * </td> +<td> +<var class="pdparam">b</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>unsigned int </td> <td> -<code>)</code>;</td> +<var class="pdparam">n</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -171,127 +132,87 @@ void <td><code class="funcdef"> void <b class="fsfunc">lwres_buffer_back</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_buffer_t * </td> +<td> +<var class="pdparam">b</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>unsigned int </td> <td> -<code>)</code>;</td> +<var class="pdparam">n</var><code>)</code>;</td> </tr> </table> -<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> -<tr> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"><tr> <td><code class="funcdef"> lwres_uint8_t <b class="fsfunc">lwres_buffer_getuint8</b>(</code></td> -<td> </td> +<td>lwres_buffer_t * </td> <td> -<code>)</code>;</td> -</tr> -<tr> -<td> </td> -<td> </td> -<td> -<code>)</code>;</td> -</tr> -</table> +<var class="pdparam">b</var><code>)</code>;</td> +</tr></table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> <tr> <td><code class="funcdef"> void <b class="fsfunc">lwres_buffer_putuint8</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_buffer_t * </td> +<td> +<var class="pdparam">b</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_uint8_t </td> <td> -<code>)</code>;</td> +<var class="pdparam">val</var><code>)</code>;</td> </tr> </table> -<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> -<tr> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"><tr> <td><code class="funcdef"> lwres_uint16_t <b class="fsfunc">lwres_buffer_getuint16</b>(</code></td> -<td> </td> +<td>lwres_buffer_t * </td> <td> -<code>)</code>;</td> -</tr> -<tr> -<td> </td> -<td> </td> -<td> -<code>)</code>;</td> -</tr> -</table> +<var class="pdparam">b</var><code>)</code>;</td> +</tr></table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> <tr> <td><code class="funcdef"> void <b class="fsfunc">lwres_buffer_putuint16</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_buffer_t * </td> +<td> +<var class="pdparam">b</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_uint16_t </td> <td> -<code>)</code>;</td> +<var class="pdparam">val</var><code>)</code>;</td> </tr> </table> -<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> -<tr> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"><tr> <td><code class="funcdef"> lwres_uint32_t <b class="fsfunc">lwres_buffer_getuint32</b>(</code></td> -<td> </td> +<td>lwres_buffer_t * </td> <td> -<code>)</code>;</td> -</tr> -<tr> -<td> </td> -<td> </td> -<td> -<code>)</code>;</td> -</tr> -</table> +<var class="pdparam">b</var><code>)</code>;</td> +</tr></table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> <tr> <td><code class="funcdef"> void <b class="fsfunc">lwres_buffer_putuint32</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_buffer_t * </td> +<td> +<var class="pdparam">b</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_uint32_t </td> <td> -<code>)</code>;</td> +<var class="pdparam">val</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -299,24 +220,21 @@ void <td><code class="funcdef"> void <b class="fsfunc">lwres_buffer_putmem</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_buffer_t * </td> +<td> +<var class="pdparam">b</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>const unsigned char * </td> +<td> +<var class="pdparam">base</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>unsigned int </td> <td> -<code>)</code>;</td> +<var class="pdparam">length</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0"> @@ -324,89 +242,91 @@ void <td><code class="funcdef"> void <b class="fsfunc">lwres_buffer_getmem</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_buffer_t * </td> +<td> +<var class="pdparam">b</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>unsigned char * </td> +<td> +<var class="pdparam">base</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>unsigned int </td> <td> -<code>)</code>;</td> +<var class="pdparam">length</var><code>)</code>;</td> </tr> </table> </div> </div> <div class="refsect1" lang="en"> -<a name="id2549674"></a><h2>DESCRIPTION</h2> +<a name="id2543892"></a><h2>DESCRIPTION</h2> <p> -These functions provide bounds checked access to a region of memory -where data is being read or written. -They are based on, and similar to, the -<code class="literal">isc_buffer_</code> -functions in the ISC library. -</p> + These functions provide bounds checked access to a region of memory + where data is being read or written. + They are based on, and similar to, the + <code class="literal">isc_buffer_</code> + functions in the ISC library. + </p> <p> -A buffer is a region of memory, together with a set of related -subregions. -The <span class="emphasis"><em>used region</em></span> and the -<span class="emphasis"><em>available</em></span> region are disjoint, and -their union is the buffer's region. -The used region extends from the beginning of the buffer region to the -last used byte. -The available region extends from one byte greater than the last used -byte to the end of the buffer's region. -The size of the used region can be changed using various -buffer commands. -Initially, the used region is empty. -</p> + A buffer is a region of memory, together with a set of related + subregions. + The <span class="emphasis"><em>used region</em></span> and the + <span class="emphasis"><em>available</em></span> region are disjoint, and + their union is the buffer's region. + The used region extends from the beginning of the buffer region to the + last used byte. + The available region extends from one byte greater than the last used + byte to the end of the buffer's region. + The size of the used region can be changed using various + buffer commands. + Initially, the used region is empty. + </p> <p> -The used region is further subdivided into two disjoint regions: the -<span class="emphasis"><em>consumed region</em></span> and the <span class="emphasis"><em>remaining region</em></span>. -The union of these two regions is the used region. -The consumed region extends from the beginning of the used region to -the byte before the <span class="emphasis"><em>current</em></span> offset (if any). -The <span class="emphasis"><em>remaining</em></span> region the current pointer to the end of the used -region. -The size of the consumed region can be changed using various -buffer commands. -Initially, the consumed region is empty. -</p> + The used region is further subdivided into two disjoint regions: the + <span class="emphasis"><em>consumed region</em></span> and the <span class="emphasis"><em>remaining region</em></span>. + The union of these two regions is the used region. + The consumed region extends from the beginning of the used region to + the byte before the <span class="emphasis"><em>current</em></span> offset (if any). + The <span class="emphasis"><em>remaining</em></span> region the current pointer to the end + of the used + region. + The size of the consumed region can be changed using various + buffer commands. + Initially, the consumed region is empty. + </p> <p> -The <span class="emphasis"><em>active region</em></span> is an (optional) subregion of the remaining -region. -It extends from the current offset to an offset in the -remaining region. -Initially, the active region is empty. -If the current offset advances beyond the chosen offset, -the active region will also be empty. -</p> -<p> -</p> + The <span class="emphasis"><em>active region</em></span> is an (optional) subregion of the + remaining + region. + It extends from the current offset to an offset in the + remaining region. + Initially, the active region is empty. + If the current offset advances beyond the chosen offset, + the active region will also be empty. + </p> <pre class="programlisting"> - /------------entire length---------------\\ /----- used region -----\\/-- available --\\ +----------------------------------------+ | consumed | remaining | | +----------------------------------------+ a b c d e - + </pre> +<p> + </p> +<pre class="programlisting"> a == base of buffer. b == current pointer. Can be anywhere between a and d. c == active pointer. Meaningful between b and d. d == used pointer. e == length of buffer. - + </pre> +<p> + </p> +<pre class="programlisting"> a-e == entire length of buffer. a-d == used region. a-b == consumed region. @@ -414,129 +334,122 @@ the active region will also be empty. b-c == optional active region. </pre> <p> -</p> -<p> -<code class="function">lwres_buffer_init()</code> -initializes the -<span class="type">lwres_buffer_t</span> -<em class="parameter"><code>*b</code></em> -and assocates it with the memory region of size -<em class="parameter"><code>length</code></em> -bytes starting at location -<em class="parameter"><code>base.</code></em> -</p> -<p> -<code class="function">lwres_buffer_invalidate()</code> -marks the buffer -<em class="parameter"><code>*b</code></em> -as invalid. Invalidating a buffer after use is not required, -but makes it possible to catch its possible accidental use. -</p> -<p> -The functions -<code class="function">lwres_buffer_add()</code> -and -<code class="function">lwres_buffer_subtract()</code> -respectively increase and decrease the used space in -buffer -<em class="parameter"><code>*b</code></em> -by -<em class="parameter"><code>n</code></em> -bytes. -<code class="function">lwres_buffer_add()</code> -checks for buffer overflow and -<code class="function">lwres_buffer_subtract()</code> -checks for underflow. -These functions do not allocate or deallocate memory. -They just change the value of -<em class="structfield"><code>used</code></em>. -</p> -<p> -A buffer is re-initialised by -<code class="function">lwres_buffer_clear()</code>. -The function sets -<em class="structfield"><code>used</code></em> , -<em class="structfield"><code>current</code></em> -and -<em class="structfield"><code>active</code></em> -to zero. -</p> -<p> -<code class="function">lwres_buffer_first</code> -makes the consumed region of buffer -<em class="parameter"><code>*p</code></em> -empty by setting -<em class="structfield"><code>current</code></em> -to zero (the start of the buffer). -</p> -<p> -<code class="function">lwres_buffer_forward()</code> -increases the consumed region of buffer -<em class="parameter"><code>*b</code></em> -by -<em class="parameter"><code>n</code></em> -bytes, checking for overflow. -Similarly, -<code class="function">lwres_buffer_back()</code> -decreases buffer -<em class="parameter"><code>b</code></em>'s -consumed region by -<em class="parameter"><code>n</code></em> -bytes and checks for underflow. -</p> + </p> +<p><code class="function">lwres_buffer_init()</code> + initializes the + <span class="type">lwres_buffer_t</span> + <em class="parameter"><code>*b</code></em> + and assocates it with the memory region of size + <em class="parameter"><code>length</code></em> + bytes starting at location + <em class="parameter"><code>base.</code></em> + </p> +<p><code class="function">lwres_buffer_invalidate()</code> + marks the buffer <em class="parameter"><code>*b</code></em> + as invalid. Invalidating a buffer after use is not required, + but makes it possible to catch its possible accidental use. + </p> <p> -<code class="function">lwres_buffer_getuint8()</code> -reads an unsigned 8-bit integer from -<em class="parameter"><code>*b</code></em> -and returns it. -<code class="function">lwres_buffer_putuint8()</code> -writes the unsigned 8-bit integer -<em class="parameter"><code>val</code></em> -to buffer -<em class="parameter"><code>*b</code></em>. -</p> + The functions + <code class="function">lwres_buffer_add()</code> + and + <code class="function">lwres_buffer_subtract()</code> + respectively increase and decrease the used space in + buffer + <em class="parameter"><code>*b</code></em> + by + <em class="parameter"><code>n</code></em> + bytes. + <code class="function">lwres_buffer_add()</code> + checks for buffer overflow and + <code class="function">lwres_buffer_subtract()</code> + checks for underflow. + These functions do not allocate or deallocate memory. + They just change the value of + <em class="structfield"><code>used</code></em>. + </p> <p> -<code class="function">lwres_buffer_getuint16()</code> -and -<code class="function">lwres_buffer_getuint32()</code> -are identical to -<code class="function">lwres_buffer_putuint8()</code> -except that they respectively read an unsigned 16-bit or 32-bit integer -in network byte order from -<em class="parameter"><code>b</code></em>. -Similarly, -<code class="function">lwres_buffer_putuint16()</code> -and -<code class="function">lwres_buffer_putuint32()</code> -writes the unsigned 16-bit or 32-bit integer -<em class="parameter"><code>val</code></em> -to buffer -<em class="parameter"><code>b</code></em>, -in network byte order. -</p> + A buffer is re-initialised by + <code class="function">lwres_buffer_clear()</code>. + The function sets + <em class="structfield"><code>used</code></em>, + <em class="structfield"><code>current</code></em> + and + <em class="structfield"><code>active</code></em> + to zero. + </p> +<p><code class="function">lwres_buffer_first</code> + makes the consumed region of buffer + <em class="parameter"><code>*p</code></em> + empty by setting + <em class="structfield"><code>current</code></em> + to zero (the start of the buffer). + </p> +<p><code class="function">lwres_buffer_forward()</code> + increases the consumed region of buffer + <em class="parameter"><code>*b</code></em> + by + <em class="parameter"><code>n</code></em> + bytes, checking for overflow. + Similarly, + <code class="function">lwres_buffer_back()</code> + decreases buffer + <em class="parameter"><code>b</code></em>'s + consumed region by + <em class="parameter"><code>n</code></em> + bytes and checks for underflow. + </p> +<p><code class="function">lwres_buffer_getuint8()</code> + reads an unsigned 8-bit integer from + <em class="parameter"><code>*b</code></em> + and returns it. + <code class="function">lwres_buffer_putuint8()</code> + writes the unsigned 8-bit integer + <em class="parameter"><code>val</code></em> + to buffer + <em class="parameter"><code>*b</code></em>. + </p> +<p><code class="function">lwres_buffer_getuint16()</code> + and + <code class="function">lwres_buffer_getuint32()</code> + are identical to + <code class="function">lwres_buffer_putuint8()</code> + except that they respectively read an unsigned 16-bit or 32-bit integer + in network byte order from + <em class="parameter"><code>b</code></em>. + Similarly, + <code class="function">lwres_buffer_putuint16()</code> + and + <code class="function">lwres_buffer_putuint32()</code> + writes the unsigned 16-bit or 32-bit integer + <em class="parameter"><code>val</code></em> + to buffer + <em class="parameter"><code>b</code></em>, + in network byte order. + </p> <p> -Arbitrary amounts of data are read or written from a lightweight -resolver buffer with -<code class="function">lwres_buffer_getmem()</code> -and -<code class="function">lwres_buffer_putmem()</code> -respectively. -<code class="function">lwres_buffer_putmem()</code> -copies -<em class="parameter"><code>length</code></em> -bytes of memory at -<em class="parameter"><code>base</code></em> -to -<em class="parameter"><code>b</code></em>. -Conversely, -<code class="function">lwres_buffer_getmem()</code> -copies -<em class="parameter"><code>length</code></em> -bytes of memory from -<em class="parameter"><code>b</code></em> -to -<em class="parameter"><code>base</code></em>. -</p> + Arbitrary amounts of data are read or written from a lightweight + resolver buffer with + <code class="function">lwres_buffer_getmem()</code> + and + <code class="function">lwres_buffer_putmem()</code> + respectively. + <code class="function">lwres_buffer_putmem()</code> + copies + <em class="parameter"><code>length</code></em> + bytes of memory at + <em class="parameter"><code>base</code></em> + to + <em class="parameter"><code>b</code></em>. + Conversely, + <code class="function">lwres_buffer_getmem()</code> + copies + <em class="parameter"><code>length</code></em> + bytes of memory from + <em class="parameter"><code>b</code></em> + to + <em class="parameter"><code>base</code></em>. + </p> </div> </div></body> </html> diff --git a/usr.sbin/bind/lib/lwres/man/lwres_config.html b/usr.sbin/bind/lib/lwres/man/lwres_config.html index f2c66c0b387..5c52a8f8a2a 100644 --- a/usr.sbin/bind/lib/lwres/man/lwres_config.html +++ b/usr.sbin/bind/lib/lwres/man/lwres_config.html @@ -1,5 +1,5 @@ <!-- - - Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") + - Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") - Copyright (C) 2000, 2001 Internet Software Consortium. - - Permission to use, copy, modify, and distribute this software for any @@ -14,15 +14,15 @@ - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. --> -<!-- $ISC: lwres_config.html,v 1.4.2.1.4.11 2006/06/29 13:02:31 marka Exp $ --> +<!-- $ISC: lwres_config.html,v 1.5.18.17 2007/01/30 00:23:45 marka Exp $ --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>lwres_config</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.70.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.71.1"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en"> -<a name="id2482688"></a><div class="titlepage"></div> +<a name="id2476275"></a><div class="titlepage"></div> <div class="refnamediv"> <h2>Name</h2> <p>lwres_conf_init, lwres_conf_clear, lwres_conf_parse, lwres_conf_print, lwres_conf_get — lightweight resolver configuration</p> @@ -31,56 +31,36 @@ <h2>Synopsis</h2> <div class="funcsynopsis"> <pre class="funcsynopsisinfo">#include <lwres/lwres.h></pre> -<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> -<tr> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"><tr> <td><code class="funcdef"> void <b class="fsfunc">lwres_conf_init</b>(</code></td> -<td> </td> +<td>lwres_context_t * </td> <td> -<code>)</code>;</td> -</tr> -<tr> -<td> </td> -<td> </td> -<td> -<code>)</code>;</td> -</tr> -</table> -<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> -<tr> +<var class="pdparam">ctx</var><code>)</code>;</td> +</tr></table> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"><tr> <td><code class="funcdef"> void <b class="fsfunc">lwres_conf_clear</b>(</code></td> -<td> </td> +<td>lwres_context_t * </td> <td> -<code>)</code>;</td> -</tr> -<tr> -<td> </td> -<td> </td> -<td> -<code>)</code>;</td> -</tr> -</table> +<var class="pdparam">ctx</var><code>)</code>;</td> +</tr></table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> <tr> <td><code class="funcdef"> lwres_result_t <b class="fsfunc">lwres_conf_parse</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>const char * </td> <td> -<code>)</code>;</td> +<var class="pdparam">filename</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -88,113 +68,89 @@ lwres_result_t <td><code class="funcdef"> lwres_result_t <b class="fsfunc">lwres_conf_print</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>FILE * </td> <td> -<code>)</code>;</td> +<var class="pdparam">fp</var><code>)</code>;</td> </tr> </table> -<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0"> -<tr> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0"><tr> <td><code class="funcdef"> lwres_conf_t * <b class="fsfunc">lwres_conf_get</b>(</code></td> -<td> </td> -<td> -<code>)</code>;</td> -</tr> -<tr> -<td> </td> -<td> </td> +<td>lwres_context_t * </td> <td> -<code>)</code>;</td> -</tr> -</table> +<var class="pdparam">ctx</var><code>)</code>;</td> +</tr></table> </div> </div> <div class="refsect1" lang="en"> -<a name="id2549475"></a><h2>DESCRIPTION</h2> -<p> -<code class="function">lwres_conf_init()</code> -creates an empty -<span class="type">lwres_conf_t</span> -structure for lightweight resolver context -<em class="parameter"><code>ctx</code></em>. -</p> -<p> -<code class="function">lwres_conf_clear()</code> -frees up all the internal memory used by -that -<span class="type">lwres_conf_t</span> -structure in resolver context -<em class="parameter"><code>ctx</code></em>. -</p> -<p> -<code class="function">lwres_conf_parse()</code> -opens the file -<em class="parameter"><code>filename</code></em> -and parses it to initialise the resolver context -<em class="parameter"><code>ctx</code></em>'s -<span class="type">lwres_conf_t</span> -structure. -</p> -<p> -<code class="function">lwres_conf_print()</code> -prints the -<span class="type">lwres_conf_t</span> -structure for resolver context -<em class="parameter"><code>ctx</code></em> -to the -<span class="type">FILE</span> -<em class="parameter"><code>fp</code></em>. -</p> +<a name="id2543441"></a><h2>DESCRIPTION</h2> +<p><code class="function">lwres_conf_init()</code> + creates an empty + <span class="type">lwres_conf_t</span> + structure for lightweight resolver context + <em class="parameter"><code>ctx</code></em>. + </p> +<p><code class="function">lwres_conf_clear()</code> + frees up all the internal memory used by + that + <span class="type">lwres_conf_t</span> + structure in resolver context + <em class="parameter"><code>ctx</code></em>. + </p> +<p><code class="function">lwres_conf_parse()</code> + opens the file + <em class="parameter"><code>filename</code></em> + and parses it to initialise the resolver context + <em class="parameter"><code>ctx</code></em>'s + <span class="type">lwres_conf_t</span> + structure. + </p> +<p><code class="function">lwres_conf_print()</code> + prints the + <span class="type">lwres_conf_t</span> + structure for resolver context + <em class="parameter"><code>ctx</code></em> + to the + <span class="type">FILE</span> + <em class="parameter"><code>fp</code></em>. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549546"></a><h2>RETURN VALUES</h2> -<p> -<code class="function">lwres_conf_parse()</code> -returns -<span class="errorcode">LWRES_R_SUCCESS</span> -if it successfully read and parsed -<em class="parameter"><code>filename</code></em>. -It returns -<span class="errorcode">LWRES_R_FAILURE</span> -if -<em class="parameter"><code>filename</code></em> -could not be opened or contained incorrect -resolver statements. -</p> -<p> -<code class="function">lwres_conf_print()</code> -returns -<span class="errorcode">LWRES_R_SUCCESS</span> -unless an error occurred when converting the network addresses to a -numeric host address string. -If this happens, the function returns -<span class="errorcode">LWRES_R_FAILURE</span>. -</p> +<a name="id2543508"></a><h2>RETURN VALUES</h2> +<p><code class="function">lwres_conf_parse()</code> + returns <span class="errorcode">LWRES_R_SUCCESS</span> + if it successfully read and parsed + <em class="parameter"><code>filename</code></em>. + It returns <span class="errorcode">LWRES_R_FAILURE</span> + if <em class="parameter"><code>filename</code></em> + could not be opened or contained incorrect + resolver statements. + </p> +<p><code class="function">lwres_conf_print()</code> + returns <span class="errorcode">LWRES_R_SUCCESS</span> + unless an error occurred when converting the network addresses to a + numeric host address string. + If this happens, the function returns + <span class="errorcode">LWRES_R_FAILURE</span>. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549586"></a><h2>SEE ALSO</h2> -<p> -<span class="citerefentry"><span class="refentrytitle">stdio</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">resolver</span>(5)</span>. -</p> +<a name="id2543545"></a><h2>SEE ALSO</h2> +<p><span class="citerefentry"><span class="refentrytitle">stdio</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">resolver</span>(5)</span>. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549612"></a><h2>FILES</h2> -<p> -<code class="filename">/etc/resolv.conf</code> -</p> +<a name="id2543571"></a><h2>FILES</h2> +<p><code class="filename">/etc/resolv.conf</code> + </p> </div> </div></body> </html> diff --git a/usr.sbin/bind/lib/lwres/man/lwres_context.3 b/usr.sbin/bind/lib/lwres/man/lwres_context.3 index 9efe5175e82..9c91adb4d23 100644 --- a/usr.sbin/bind/lib/lwres/man/lwres_context.3 +++ b/usr.sbin/bind/lib/lwres/man/lwres_context.3 @@ -1,4 +1,4 @@ -.\" Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") +.\" Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") .\" Copyright (C) 2000, 2001, 2003 Internet Software Consortium. .\" .\" Permission to use, copy, modify, and distribute this software for any @@ -13,13 +13,13 @@ .\" OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR .\" PERFORMANCE OF THIS SOFTWARE. .\" -.\" $ISC: lwres_context.3,v 1.13.2.2.2.7 2006/06/29 13:02:31 marka Exp $ +.\" $ISC: lwres_context.3,v 1.17.18.11 2007/01/30 00:23:45 marka Exp $ .\" .hy 0 .ad l .\" Title: lwres_context .\" Author: -.\" Generator: DocBook XSL Stylesheets v1.70.1 <http://docbook.sf.net/> +.\" Generator: DocBook XSL Stylesheets v1.71.1 <http://docbook.sf.net/> .\" Date: Jun 30, 2000 .\" Manual: BIND9 .\" Source: BIND9 @@ -36,19 +36,19 @@ lwres_context_create, lwres_context_destroy, lwres_context_nextserial, lwres_con #include <lwres/lwres.h> .fi .HP 36 -.BI "lwres_result_t lwres_context_create(lwres_context_t\ **contextp, void\ *arg, lwres_malloc_t\ malloc_function, lwres_free_t\ free_function);" +.BI "lwres_result_t lwres_context_create(lwres_context_t\ **" "contextp" ", void\ *" "arg" ", lwres_malloc_t\ " "malloc_function" ", lwres_free_t\ " "free_function" ");" .HP 37 -.BI "lwres_result_t lwres_context_destroy(lwres_context_t\ **contextp);" +.BI "lwres_result_t lwres_context_destroy(lwres_context_t\ **" "contextp" ");" .HP 30 -.BI "void lwres_context_initserial(lwres_context_t\ *ctx, lwres_uint32_t\ serial);" +.BI "void lwres_context_initserial(lwres_context_t\ *" "ctx" ", lwres_uint32_t\ " "serial" ");" .HP 40 -.BI "lwres_uint32_t lwres_context_nextserial(lwres_context_t\ *ctx);" +.BI "lwres_uint32_t lwres_context_nextserial(lwres_context_t\ *" "ctx" ");" .HP 27 -.BI "void lwres_context_freemem(lwres_context_t\ *ctx, void\ *mem, size_t\ len);" +.BI "void lwres_context_freemem(lwres_context_t\ *" "ctx" ", void\ *" "mem" ", size_t\ " "len" ");" .HP 28 -.BI "void lwres_context_allocmem(lwres_context_t\ *ctx, size_t\ len);" +.BI "void lwres_context_allocmem(lwres_context_t\ *" "ctx" ", size_t\ " "len" ");" .HP 30 -.BI "void * lwres_context_sendrecv(lwres_context_t\ *ctx, void\ *sendbase, int\ sendlen, void\ *recvbase, int\ recvlen, int\ *recvd_len);" +.BI "void * lwres_context_sendrecv(lwres_context_t\ *" "ctx" ", void\ *" "sendbase" ", int\ " "sendlen" ", void\ *" "recvbase" ", int\ " "recvlen" ", int\ *" "recvd_len" ");" .SH "DESCRIPTION" .PP \fBlwres_context_create()\fR @@ -72,7 +72,8 @@ to free it. If \fImalloc_function\fR and \fIfree_function\fR -are NULL, memory is allocated using .Xr malloc 3 and +are NULL, memory is allocated using +\fBmalloc\fR(3). and \fBfree\fR(3). It is not permitted to have a NULL \fImalloc_function\fR and a non\-NULL @@ -161,6 +162,9 @@ times out waiting for a response. .PP \fBlwres_conf_init\fR(3), \fBmalloc\fR(3), -\fBfree\fR(3 ). +\fBfree\fR(3). .SH "COPYRIGHT" -Copyright \(co 2004, 2005 Internet Systems Consortium, Inc. ("ISC") +Copyright \(co 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") +.br +Copyright \(co 2000, 2001, 2003 Internet Software Consortium. +.br diff --git a/usr.sbin/bind/lib/lwres/man/lwres_context.docbook b/usr.sbin/bind/lib/lwres/man/lwres_context.docbook index 2a12c223bcf..2746e401292 100644 --- a/usr.sbin/bind/lib/lwres/man/lwres_context.docbook +++ b/usr.sbin/bind/lib/lwres/man/lwres_context.docbook @@ -1,11 +1,11 @@ -<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.0//EN" - "http://www.oasis-open.org/docbook/xml/4.0/docbookx.dtd" +<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" + "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [<!ENTITY mdash "—">]> <!-- - - Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") + - Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") - Copyright (C) 2000, 2001, 2003 Internet Software Consortium. - - - Permission to use, copy, modify, and distribute this software for any + - Permission to use, copy, modify, and/or distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - @@ -18,24 +18,24 @@ - PERFORMANCE OF THIS SOFTWARE. --> -<!-- $ISC: lwres_context.docbook,v 1.3.2.2.2.3 2005/05/12 21:36:12 sra Exp $ --> - +<!-- $ISC: lwres_context.docbook,v 1.5.18.6 2007/08/28 07:20:06 tbox Exp $ --> <refentry> -<refentryinfo> + <refentryinfo> + <date>Jun 30, 2000</date> + </refentryinfo> -<date>Jun 30, 2000</date> -</refentryinfo> -<refmeta> -<refentrytitle>lwres_context</refentrytitle> -<manvolnum>3</manvolnum> -<refmiscinfo>BIND9</refmiscinfo> -</refmeta> + <refmeta> + <refentrytitle>lwres_context</refentrytitle> + <manvolnum>3</manvolnum> + <refmiscinfo>BIND9</refmiscinfo> + </refmeta> <docinfo> <copyright> <year>2004</year> <year>2005</year> + <year>2007</year> <holder>Internet Systems Consortium, Inc. ("ISC")</holder> </copyright> <copyright> @@ -46,255 +46,217 @@ </copyright> </docinfo> -<refnamediv> -<refname>lwres_context_create</refname> -<refname>lwres_context_destroy</refname> -<refname>lwres_context_nextserial</refname> -<refname>lwres_context_initserial</refname> -<refname>lwres_context_freemem</refname> -<refname>lwres_context_allocmem</refname> -<refname>lwres_context_sendrecv</refname> -<refpurpose>lightweight resolver context management</refpurpose> -</refnamediv> -<refsynopsisdiv> -<funcsynopsis> + <refnamediv> + <refname>lwres_context_create</refname> + <refname>lwres_context_destroy</refname> + <refname>lwres_context_nextserial</refname> + <refname>lwres_context_initserial</refname> + <refname>lwres_context_freemem</refname> + <refname>lwres_context_allocmem</refname> + <refname>lwres_context_sendrecv</refname> + <refpurpose>lightweight resolver context management</refpurpose> + </refnamediv> + <refsynopsisdiv> + <funcsynopsis> <funcsynopsisinfo>#include <lwres/lwres.h></funcsynopsisinfo> <funcprototype> -<funcdef> + <funcdef> lwres_result_t <function>lwres_context_create</function></funcdef> -<paramdef>lwres_context_t **contextp</paramdef> -<paramdef>void *arg</paramdef> -<paramdef>lwres_malloc_t malloc_function</paramdef> -<paramdef>lwres_free_t free_function</paramdef> -</funcprototype> + <paramdef>lwres_context_t **<parameter>contextp</parameter></paramdef> + <paramdef>void *<parameter>arg</parameter></paramdef> + <paramdef>lwres_malloc_t <parameter>malloc_function</parameter></paramdef> + <paramdef>lwres_free_t <parameter>free_function</parameter></paramdef> + </funcprototype> <funcprototype> -<funcdef> + <funcdef> lwres_result_t <function>lwres_context_destroy</function></funcdef> -<paramdef>lwres_context_t **contextp</paramdef> -</funcprototype> + <paramdef>lwres_context_t **<parameter>contextp</parameter></paramdef> + </funcprototype> <funcprototype> -<funcdef> + <funcdef> void <function>lwres_context_initserial</function></funcdef> -<paramdef>lwres_context_t *ctx</paramdef> -<paramdef>lwres_uint32_t serial</paramdef> -</funcprototype> + <paramdef>lwres_context_t *<parameter>ctx</parameter></paramdef> + <paramdef>lwres_uint32_t <parameter>serial</parameter></paramdef> + </funcprototype> <funcprototype> -<funcdef> + <funcdef> lwres_uint32_t <function>lwres_context_nextserial</function></funcdef> -<paramdef>lwres_context_t *ctx</paramdef> -</funcprototype> + <paramdef>lwres_context_t *<parameter>ctx</parameter></paramdef> + </funcprototype> <funcprototype> -<funcdef> + <funcdef> void <function>lwres_context_freemem</function></funcdef> -<paramdef>lwres_context_t *ctx</paramdef> -<paramdef>void *mem</paramdef> -<paramdef>size_t len</paramdef> -</funcprototype> + <paramdef>lwres_context_t *<parameter>ctx</parameter></paramdef> + <paramdef>void *<parameter>mem</parameter></paramdef> + <paramdef>size_t <parameter>len</parameter></paramdef> + </funcprototype> <funcprototype> -<funcdef> + <funcdef> void <function>lwres_context_allocmem</function></funcdef> -<paramdef>lwres_context_t *ctx</paramdef> -<paramdef>size_t len</paramdef> -</funcprototype> + <paramdef>lwres_context_t *<parameter>ctx</parameter></paramdef> + <paramdef>size_t <parameter>len</parameter></paramdef> + </funcprototype> <funcprototype> -<funcdef> + <funcdef> void * <function>lwres_context_sendrecv</function></funcdef> -<paramdef>lwres_context_t *ctx</paramdef> -<paramdef>void *sendbase</paramdef> -<paramdef>int sendlen</paramdef> -<paramdef>void *recvbase</paramdef> -<paramdef>int recvlen</paramdef> -<paramdef>int *recvd_len</paramdef> -</funcprototype> + <paramdef>lwres_context_t *<parameter>ctx</parameter></paramdef> + <paramdef>void *<parameter>sendbase</parameter></paramdef> + <paramdef>int <parameter>sendlen</parameter></paramdef> + <paramdef>void *<parameter>recvbase</parameter></paramdef> + <paramdef>int <parameter>recvlen</parameter></paramdef> + <paramdef>int *<parameter>recvd_len</parameter></paramdef> + </funcprototype> </funcsynopsis> -</refsynopsisdiv> -<refsect1> -<title>DESCRIPTION</title> -<para> -<function>lwres_context_create()</function> -creates a -<type>lwres_context_t</type> -structure for use in lightweight resolver operations. -It holds a socket and other data needed for communicating -with a resolver daemon. -The new -<type>lwres_context_t</type> -is returned through -<parameter>contextp</parameter>, - -a pointer to a -<type>lwres_context_t</type> -pointer. This -<type>lwres_context_t</type> -pointer must initially be NULL, and is modified -to point to the newly created -<type>lwres_context_t</type>. - -</para> -<para> -When the lightweight resolver needs to perform dynamic memory -allocation, it will call -<parameter>malloc_function</parameter> -to allocate memory and -<parameter>free_function</parameter> - -to free it. If -<parameter>malloc_function</parameter> -and -<parameter>free_function</parameter> + </refsynopsisdiv> + <refsect1> + <title>DESCRIPTION</title> -are NULL, memory is allocated using -.Xr malloc 3 -and -<citerefentry> -<refentrytitle>free</refentrytitle><manvolnum>3</manvolnum> -</citerefentry>. + <para><function>lwres_context_create()</function> + creates a <type>lwres_context_t</type> structure for use in + lightweight resolver operations. It holds a socket and other + data needed for communicating with a resolver daemon. The new + <type>lwres_context_t</type> is returned through + <parameter>contextp</parameter>, a pointer to a + <type>lwres_context_t</type> pointer. This + <type>lwres_context_t</type> pointer must initially be NULL, and + is modified to point to the newly created + <type>lwres_context_t</type>. + </para> + <para> + When the lightweight resolver needs to perform dynamic memory + allocation, it will call + <parameter>malloc_function</parameter> + to allocate memory and + <parameter>free_function</parameter> + to free it. If + <parameter>malloc_function</parameter> + and + <parameter>free_function</parameter> + are NULL, memory is allocated using + <citerefentry> + <refentrytitle>malloc</refentrytitle><manvolnum>3</manvolnum> + </citerefentry>. + and + <citerefentry> + <refentrytitle>free</refentrytitle><manvolnum>3</manvolnum> + </citerefentry>. -It is not permitted to have a NULL -<parameter>malloc_function</parameter> -and a non-NULL -<parameter>free_function</parameter> -or vice versa. -<parameter>arg</parameter> -is passed as the first parameter to the memory -allocation functions. -If -<parameter>malloc_function</parameter> -and -<parameter>free_function</parameter> -are NULL, -<parameter>arg</parameter> + It is not permitted to have a NULL + <parameter>malloc_function</parameter> and a non-NULL + <parameter>free_function</parameter> or vice versa. + <parameter>arg</parameter> is passed as the first parameter to + the memory allocation functions. If + <parameter>malloc_function</parameter> and + <parameter>free_function</parameter> are NULL, + <parameter>arg</parameter> is unused and should be passed as + NULL. + </para> -is unused and should be passed as NULL. -</para> -<para> -Once memory for the structure has been allocated, -it is initialized using -<citerefentry> -<refentrytitle>lwres_conf_init</refentrytitle><manvolnum>3</manvolnum> -</citerefentry> + <para> + Once memory for the structure has been allocated, + it is initialized using + <citerefentry> + <refentrytitle>lwres_conf_init</refentrytitle><manvolnum>3</manvolnum> + </citerefentry> + and returned via <parameter>*contextp</parameter>. + </para> -and returned via -<parameter>*contextp</parameter>. + <para><function>lwres_context_destroy()</function> + destroys a <type>lwres_context_t</type>, closing its socket. + <parameter>contextp</parameter> is a pointer to a pointer to the + context that is to be destroyed. The pointer will be set to + NULL when the context has been destroyed. + </para> -</para> -<para> -<function>lwres_context_destroy()</function> -destroys a -<type>lwres_context_t</type>, + <para> + The context holds a serial number that is used to identify + resolver request packets and associate responses with the + corresponding requests. This serial number is controlled using + <function>lwres_context_initserial()</function> and + <function>lwres_context_nextserial()</function>. + <function>lwres_context_initserial()</function> sets the serial + number for context <parameter>*ctx</parameter> to + <parameter>serial</parameter>. + <function>lwres_context_nextserial()</function> increments the + serial number and returns the previous value. + </para> -closing its socket. -<parameter>contextp</parameter> -is a pointer to a pointer to the context that is to be destroyed. -The pointer will be set to NULL when the context has been destroyed. -</para> -<para> -The context holds a serial number that is used to identify resolver -request packets and associate responses with the corresponding requests. -This serial number is controlled using -<function>lwres_context_initserial()</function> -and -<function>lwres_context_nextserial()</function>. -<function>lwres_context_initserial()</function> -sets the serial number for context -<parameter>*ctx</parameter> -to -<parameter>serial</parameter>. + <para> + Memory for a lightweight resolver context is allocated and freed + using <function>lwres_context_allocmem()</function> and + <function>lwres_context_freemem()</function>. These use + whatever allocations were defined when the context was created + with <function>lwres_context_create()</function>. + <function>lwres_context_allocmem()</function> allocates + <parameter>len</parameter> bytes of memory and if successful + returns a pointer to the allocated storage. + <function>lwres_context_freemem()</function> frees + <parameter>len</parameter> bytes of space starting at location + <parameter>mem</parameter>. + </para> -<function>lwres_context_nextserial()</function> -increments the serial number and returns the previous value. -</para> -<para> -Memory for a lightweight resolver context is allocated and freed using -<function>lwres_context_allocmem()</function> -and -<function>lwres_context_freemem()</function>. -These use whatever allocations were defined when the context was -created with -<function>lwres_context_create()</function>. -<function>lwres_context_allocmem()</function> -allocates -<parameter>len</parameter> -bytes of memory and if successful returns a pointer to the allocated -storage. -<function>lwres_context_freemem()</function> -frees -<parameter>len</parameter> -bytes of space starting at location -<parameter>mem</parameter>. + <para><function>lwres_context_sendrecv()</function> + performs I/O for the context <parameter>ctx</parameter>. Data + are read and written from the context's socket. It writes data + from <parameter>sendbase</parameter> — typically a + lightweight resolver query packet — and waits for a reply + which is copied to the receive buffer at + <parameter>recvbase</parameter>. The number of bytes that were + written to this receive buffer is returned in + <parameter>*recvd_len</parameter>. + </para> + </refsect1> -</para> -<para> -<function>lwres_context_sendrecv()</function> -performs I/O for the context -<parameter>ctx</parameter>. + <refsect1> + <title>RETURN VALUES</title> -Data are read and written from the context's socket. -It writes data from -<parameter>sendbase</parameter> -— typically a lightweight resolver query packet — -and waits for a reply which is copied to the receive buffer at -<parameter>recvbase</parameter>. + <para><function>lwres_context_create()</function> + returns <errorcode>LWRES_R_NOMEMORY</errorcode> if memory for + the <type>struct lwres_context</type> could not be allocated, + <errorcode>LWRES_R_SUCCESS</errorcode> otherwise. + </para> + <para> + Successful calls to the memory allocator + <function>lwres_context_allocmem()</function> + return a pointer to the start of the allocated space. + It returns NULL if memory could not be allocated. + </para> + <para><errorcode>LWRES_R_SUCCESS</errorcode> + is returned when + <function>lwres_context_sendrecv()</function> + completes successfully. + <errorcode>LWRES_R_IOERROR</errorcode> + is returned if an I/O error occurs and + <errorcode>LWRES_R_TIMEOUT</errorcode> + is returned if + <function>lwres_context_sendrecv()</function> + times out waiting for a response. + </para> + </refsect1> + <refsect1> + <title>SEE ALSO</title> + <para><citerefentry> + <refentrytitle>lwres_conf_init</refentrytitle><manvolnum>3</manvolnum> + </citerefentry>, -The number of bytes that were written to this receive buffer is -returned in -<parameter>*recvd_len</parameter>. + <citerefentry> + <refentrytitle>malloc</refentrytitle><manvolnum>3</manvolnum> + </citerefentry>, -</para> -</refsect1> -<refsect1> -<title>RETURN VALUES</title> -<para> -<function>lwres_context_create()</function> -returns -<errorcode>LWRES_R_NOMEMORY</errorcode> -if memory for the -<type>struct lwres_context</type> -could not be allocated, -<errorcode>LWRES_R_SUCCESS</errorcode> -otherwise. -</para> -<para> -Successful calls to the memory allocator -<function>lwres_context_allocmem()</function> -return a pointer to the start of the allocated space. -It returns NULL if memory could not be allocated. -</para> -<para> -<errorcode>LWRES_R_SUCCESS</errorcode> -is returned when -<function>lwres_context_sendrecv()</function> -completes successfully. -<errorcode>LWRES_R_IOERROR</errorcode> -is returned if an I/O error occurs and -<errorcode>LWRES_R_TIMEOUT</errorcode> -is returned if -<function>lwres_context_sendrecv()</function> -times out waiting for a response. -</para> -</refsect1> -<refsect1> -<title>SEE ALSO</title> -<para> -<citerefentry> -<refentrytitle>lwres_conf_init</refentrytitle><manvolnum>3</manvolnum> -</citerefentry>, - -<citerefentry> -<refentrytitle>malloc</refentrytitle><manvolnum>3</manvolnum> -</citerefentry>, - -<citerefentry> -<refentrytitle>free</refentrytitle><manvolnum>3 -</manvolnum> -</citerefentry>. -</para> -</refsect1> -</refentry> + <citerefentry> + <refentrytitle>free</refentrytitle><manvolnum>3</manvolnum> + </citerefentry>. + </para> + </refsect1> +</refentry><!-- + - Local variables: + - mode: sgml + - End: +--> diff --git a/usr.sbin/bind/lib/lwres/man/lwres_context.html b/usr.sbin/bind/lib/lwres/man/lwres_context.html index 7efc75def8e..efc549d672b 100644 --- a/usr.sbin/bind/lib/lwres/man/lwres_context.html +++ b/usr.sbin/bind/lib/lwres/man/lwres_context.html @@ -1,5 +1,5 @@ <!-- - - Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") + - Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") - Copyright (C) 2000, 2001, 2003 Internet Software Consortium. - - Permission to use, copy, modify, and distribute this software for any @@ -14,15 +14,15 @@ - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. --> -<!-- $ISC: lwres_context.html,v 1.5.2.2.2.12 2006/06/29 13:02:31 marka Exp $ --> +<!-- $ISC: lwres_context.html,v 1.7.18.16 2007/01/30 00:23:45 marka Exp $ --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>lwres_context</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.70.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.71.1"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en"> -<a name="id2482688"></a><div class="titlepage"></div> +<a name="id2476275"></a><div class="titlepage"></div> <div class="refnamediv"> <h2>Name</h2> <p>lwres_context_create, lwres_context_destroy, lwres_context_nextserial, lwres_context_initserial, lwres_context_freemem, lwres_context_allocmem, lwres_context_sendrecv — lightweight resolver context management</p> @@ -36,106 +36,81 @@ <td><code class="funcdef"> lwres_result_t <b class="fsfunc">lwres_context_create</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t ** </td> +<td> +<var class="pdparam">contextp</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>void * </td> +<td> +<var class="pdparam">arg</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_malloc_t </td> +<td> +<var class="pdparam">malloc_function</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_free_t </td> <td> -<code>)</code>;</td> +<var class="pdparam">free_function</var><code>)</code>;</td> </tr> </table> -<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> -<tr> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"><tr> <td><code class="funcdef"> lwres_result_t <b class="fsfunc">lwres_context_destroy</b>(</code></td> -<td> </td> +<td>lwres_context_t ** </td> <td> -<code>)</code>;</td> -</tr> -<tr> -<td> </td> -<td> </td> -<td> -<code>)</code>;</td> -</tr> -</table> +<var class="pdparam">contextp</var><code>)</code>;</td> +</tr></table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> <tr> <td><code class="funcdef"> void <b class="fsfunc">lwres_context_initserial</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_uint32_t </td> <td> -<code>)</code>;</td> +<var class="pdparam">serial</var><code>)</code>;</td> </tr> </table> -<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> -<tr> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"><tr> <td><code class="funcdef"> lwres_uint32_t <b class="fsfunc">lwres_context_nextserial</b>(</code></td> -<td> </td> -<td> -<code>)</code>;</td> -</tr> -<tr> -<td> </td> -<td> </td> +<td>lwres_context_t * </td> <td> -<code>)</code>;</td> -</tr> -</table> +<var class="pdparam">ctx</var><code>)</code>;</td> +</tr></table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> <tr> <td><code class="funcdef"> void <b class="fsfunc">lwres_context_freemem</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>void * </td> +<td> +<var class="pdparam">mem</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>size_t </td> <td> -<code>)</code>;</td> +<var class="pdparam">len</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -143,19 +118,15 @@ void <td><code class="funcdef"> void <b class="fsfunc">lwres_context_allocmem</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>size_t </td> <td> -<code>)</code>;</td> +<var class="pdparam">len</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0"> @@ -163,214 +134,162 @@ void <td><code class="funcdef"> void * <b class="fsfunc">lwres_context_sendrecv</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>void * </td> +<td> +<var class="pdparam">sendbase</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>int </td> +<td> +<var class="pdparam">sendlen</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>void * </td> +<td> +<var class="pdparam">recvbase</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>int </td> +<td> +<var class="pdparam">recvlen</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>int * </td> <td> -<code>)</code>;</td> +<var class="pdparam">recvd_len</var><code>)</code>;</td> </tr> </table> </div> </div> <div class="refsect1" lang="en"> -<a name="id2549540"></a><h2>DESCRIPTION</h2> -<p> -<code class="function">lwres_context_create()</code> -creates a -<span class="type">lwres_context_t</span> -structure for use in lightweight resolver operations. -It holds a socket and other data needed for communicating -with a resolver daemon. -The new -<span class="type">lwres_context_t</span> -is returned through -<em class="parameter"><code>contextp</code></em>, - -a pointer to a -<span class="type">lwres_context_t</span> -pointer. This -<span class="type">lwres_context_t</span> -pointer must initially be NULL, and is modified -to point to the newly created -<span class="type">lwres_context_t</span>. - -</p> -<p> -When the lightweight resolver needs to perform dynamic memory -allocation, it will call -<em class="parameter"><code>malloc_function</code></em> -to allocate memory and -<em class="parameter"><code>free_function</code></em> - -to free it. If -<em class="parameter"><code>malloc_function</code></em> -and -<em class="parameter"><code>free_function</code></em> - -are NULL, memory is allocated using -.Xr malloc 3 -and -<span class="citerefentry"><span class="refentrytitle">free</span>(3)</span>. - -It is not permitted to have a NULL -<em class="parameter"><code>malloc_function</code></em> -and a non-NULL -<em class="parameter"><code>free_function</code></em> -or vice versa. -<em class="parameter"><code>arg</code></em> -is passed as the first parameter to the memory -allocation functions. -If -<em class="parameter"><code>malloc_function</code></em> -and -<em class="parameter"><code>free_function</code></em> -are NULL, -<em class="parameter"><code>arg</code></em> - -is unused and should be passed as NULL. -</p> +<a name="id2543531"></a><h2>DESCRIPTION</h2> +<p><code class="function">lwres_context_create()</code> + creates a <span class="type">lwres_context_t</span> structure for use in + lightweight resolver operations. It holds a socket and other + data needed for communicating with a resolver daemon. The new + <span class="type">lwres_context_t</span> is returned through + <em class="parameter"><code>contextp</code></em>, a pointer to a + <span class="type">lwres_context_t</span> pointer. This + <span class="type">lwres_context_t</span> pointer must initially be NULL, and + is modified to point to the newly created + <span class="type">lwres_context_t</span>. + </p> <p> -Once memory for the structure has been allocated, -it is initialized using -<span class="citerefentry"><span class="refentrytitle">lwres_conf_init</span>(3)</span> + When the lightweight resolver needs to perform dynamic memory + allocation, it will call + <em class="parameter"><code>malloc_function</code></em> + to allocate memory and + <em class="parameter"><code>free_function</code></em> + to free it. If + <em class="parameter"><code>malloc_function</code></em> + and + <em class="parameter"><code>free_function</code></em> + are NULL, memory is allocated using + <span class="citerefentry"><span class="refentrytitle">malloc</span>(3)</span>. + and + <span class="citerefentry"><span class="refentrytitle">free</span>(3)</span>. -and returned via -<em class="parameter"><code>*contextp</code></em>. - -</p> -<p> -<code class="function">lwres_context_destroy()</code> -destroys a -<span class="type">lwres_context_t</span>, - -closing its socket. -<em class="parameter"><code>contextp</code></em> -is a pointer to a pointer to the context that is to be destroyed. -The pointer will be set to NULL when the context has been destroyed. -</p> + It is not permitted to have a NULL + <em class="parameter"><code>malloc_function</code></em> and a non-NULL + <em class="parameter"><code>free_function</code></em> or vice versa. + <em class="parameter"><code>arg</code></em> is passed as the first parameter to + the memory allocation functions. If + <em class="parameter"><code>malloc_function</code></em> and + <em class="parameter"><code>free_function</code></em> are NULL, + <em class="parameter"><code>arg</code></em> is unused and should be passed as + NULL. + </p> <p> -The context holds a serial number that is used to identify resolver -request packets and associate responses with the corresponding requests. -This serial number is controlled using -<code class="function">lwres_context_initserial()</code> -and -<code class="function">lwres_context_nextserial()</code>. -<code class="function">lwres_context_initserial()</code> -sets the serial number for context -<em class="parameter"><code>*ctx</code></em> -to -<em class="parameter"><code>serial</code></em>. - -<code class="function">lwres_context_nextserial()</code> -increments the serial number and returns the previous value. -</p> + Once memory for the structure has been allocated, + it is initialized using + <span class="citerefentry"><span class="refentrytitle">lwres_conf_init</span>(3)</span> + and returned via <em class="parameter"><code>*contextp</code></em>. + </p> +<p><code class="function">lwres_context_destroy()</code> + destroys a <span class="type">lwres_context_t</span>, closing its socket. + <em class="parameter"><code>contextp</code></em> is a pointer to a pointer to the + context that is to be destroyed. The pointer will be set to + NULL when the context has been destroyed. + </p> <p> -Memory for a lightweight resolver context is allocated and freed using -<code class="function">lwres_context_allocmem()</code> -and -<code class="function">lwres_context_freemem()</code>. -These use whatever allocations were defined when the context was -created with -<code class="function">lwres_context_create()</code>. -<code class="function">lwres_context_allocmem()</code> -allocates -<em class="parameter"><code>len</code></em> -bytes of memory and if successful returns a pointer to the allocated -storage. -<code class="function">lwres_context_freemem()</code> -frees -<em class="parameter"><code>len</code></em> -bytes of space starting at location -<em class="parameter"><code>mem</code></em>. - -</p> + The context holds a serial number that is used to identify + resolver request packets and associate responses with the + corresponding requests. This serial number is controlled using + <code class="function">lwres_context_initserial()</code> and + <code class="function">lwres_context_nextserial()</code>. + <code class="function">lwres_context_initserial()</code> sets the serial + number for context <em class="parameter"><code>*ctx</code></em> to + <em class="parameter"><code>serial</code></em>. + <code class="function">lwres_context_nextserial()</code> increments the + serial number and returns the previous value. + </p> <p> -<code class="function">lwres_context_sendrecv()</code> -performs I/O for the context -<em class="parameter"><code>ctx</code></em>. - -Data are read and written from the context's socket. -It writes data from -<em class="parameter"><code>sendbase</code></em> -— typically a lightweight resolver query packet — -and waits for a reply which is copied to the receive buffer at -<em class="parameter"><code>recvbase</code></em>. - -The number of bytes that were written to this receive buffer is -returned in -<em class="parameter"><code>*recvd_len</code></em>. - -</p> + Memory for a lightweight resolver context is allocated and freed + using <code class="function">lwres_context_allocmem()</code> and + <code class="function">lwres_context_freemem()</code>. These use + whatever allocations were defined when the context was created + with <code class="function">lwres_context_create()</code>. + <code class="function">lwres_context_allocmem()</code> allocates + <em class="parameter"><code>len</code></em> bytes of memory and if successful + returns a pointer to the allocated storage. + <code class="function">lwres_context_freemem()</code> frees + <em class="parameter"><code>len</code></em> bytes of space starting at location + <em class="parameter"><code>mem</code></em>. + </p> +<p><code class="function">lwres_context_sendrecv()</code> + performs I/O for the context <em class="parameter"><code>ctx</code></em>. Data + are read and written from the context's socket. It writes data + from <em class="parameter"><code>sendbase</code></em> — typically a + lightweight resolver query packet — and waits for a reply + which is copied to the receive buffer at + <em class="parameter"><code>recvbase</code></em>. The number of bytes that were + written to this receive buffer is returned in + <em class="parameter"><code>*recvd_len</code></em>. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549789"></a><h2>RETURN VALUES</h2> -<p> -<code class="function">lwres_context_create()</code> -returns -<span class="errorcode">LWRES_R_NOMEMORY</span> -if memory for the -<span class="type">struct lwres_context</span> -could not be allocated, -<span class="errorcode">LWRES_R_SUCCESS</span> -otherwise. -</p> +<a name="id2543719"></a><h2>RETURN VALUES</h2> +<p><code class="function">lwres_context_create()</code> + returns <span class="errorcode">LWRES_R_NOMEMORY</span> if memory for + the <span class="type">struct lwres_context</span> could not be allocated, + <span class="errorcode">LWRES_R_SUCCESS</span> otherwise. + </p> <p> -Successful calls to the memory allocator -<code class="function">lwres_context_allocmem()</code> -return a pointer to the start of the allocated space. -It returns NULL if memory could not be allocated. -</p> -<p> -<span class="errorcode">LWRES_R_SUCCESS</span> -is returned when -<code class="function">lwres_context_sendrecv()</code> -completes successfully. -<span class="errorcode">LWRES_R_IOERROR</span> -is returned if an I/O error occurs and -<span class="errorcode">LWRES_R_TIMEOUT</span> -is returned if -<code class="function">lwres_context_sendrecv()</code> -times out waiting for a response. -</p> + Successful calls to the memory allocator + <code class="function">lwres_context_allocmem()</code> + return a pointer to the start of the allocated space. + It returns NULL if memory could not be allocated. + </p> +<p><span class="errorcode">LWRES_R_SUCCESS</span> + is returned when + <code class="function">lwres_context_sendrecv()</code> + completes successfully. + <span class="errorcode">LWRES_R_IOERROR</span> + is returned if an I/O error occurs and + <span class="errorcode">LWRES_R_TIMEOUT</span> + is returned if + <code class="function">lwres_context_sendrecv()</code> + times out waiting for a response. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549841"></a><h2>SEE ALSO</h2> -<p> -<span class="citerefentry"><span class="refentrytitle">lwres_conf_init</span>(3)</span>, +<a name="id2543769"></a><h2>SEE ALSO</h2> +<p><span class="citerefentry"><span class="refentrytitle">lwres_conf_init</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">malloc</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">malloc</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">free</span>(3 -)</span>. -</p> + <span class="citerefentry"><span class="refentrytitle">free</span>(3)</span>. + </p> </div> </div></body> </html> diff --git a/usr.sbin/bind/lib/lwres/man/lwres_gabn.html b/usr.sbin/bind/lib/lwres/man/lwres_gabn.html index 41ab93f9130..a6f2ffcd427 100644 --- a/usr.sbin/bind/lib/lwres/man/lwres_gabn.html +++ b/usr.sbin/bind/lib/lwres/man/lwres_gabn.html @@ -1,5 +1,5 @@ <!-- - - Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") + - Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") - Copyright (C) 2000, 2001 Internet Software Consortium. - - Permission to use, copy, modify, and distribute this software for any @@ -14,15 +14,15 @@ - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. --> -<!-- $ISC: lwres_gabn.html,v 1.6.2.1.4.11 2006/06/29 13:02:31 marka Exp $ --> +<!-- $ISC: lwres_gabn.html,v 1.7.18.17 2007/01/30 00:23:45 marka Exp $ --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>lwres_gabn</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.70.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.71.1"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en"> -<a name="id2482688"></a><div class="titlepage"></div> +<a name="id2476275"></a><div class="titlepage"></div> <div class="refnamediv"> <h2>Name</h2> <p>lwres_gabnrequest_render, lwres_gabnresponse_render, lwres_gabnrequest_parse, lwres_gabnresponse_parse, lwres_gabnresponse_free, lwres_gabnrequest_free — lightweight resolver getaddrbyname message handling</p> @@ -36,29 +36,27 @@ <td><code class="funcdef"> lwres_result_t <b class="fsfunc">lwres_gabnrequest_render</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_gabnrequest_t * </td> +<td> +<var class="pdparam">req</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_lwpacket_t * </td> +<td> +<var class="pdparam">pkt</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_buffer_t * </td> <td> -<code>)</code>;</td> +<var class="pdparam">b</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -66,29 +64,27 @@ lwres_result_t <td><code class="funcdef"> lwres_result_t <b class="fsfunc">lwres_gabnresponse_render</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_gabnresponse_t * </td> +<td> +<var class="pdparam">req</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_lwpacket_t * </td> +<td> +<var class="pdparam">pkt</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_buffer_t * </td> <td> -<code>)</code>;</td> +<var class="pdparam">b</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -96,29 +92,27 @@ lwres_result_t <td><code class="funcdef"> lwres_result_t <b class="fsfunc">lwres_gabnrequest_parse</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_buffer_t * </td> +<td> +<var class="pdparam">b</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_lwpacket_t * </td> +<td> +<var class="pdparam">pkt</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_gabnrequest_t ** </td> <td> -<code>)</code>;</td> +<var class="pdparam">structp</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -126,29 +120,27 @@ lwres_result_t <td><code class="funcdef"> lwres_result_t <b class="fsfunc">lwres_gabnresponse_parse</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_buffer_t * </td> +<td> +<var class="pdparam">b</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_lwpacket_t * </td> +<td> +<var class="pdparam">pkt</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_gabnresponse_t ** </td> <td> -<code>)</code>;</td> +<var class="pdparam">structp</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -156,19 +148,15 @@ lwres_result_t <td><code class="funcdef"> void <b class="fsfunc">lwres_gabnresponse_free</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_gabnresponse_t ** </td> <td> -<code>)</code>;</td> +<var class="pdparam">structp</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0"> @@ -176,61 +164,66 @@ void <td><code class="funcdef"> void <b class="fsfunc">lwres_gabnrequest_free</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_gabnrequest_t ** </td> <td> -<code>)</code>;</td> +<var class="pdparam">structp</var><code>)</code>;</td> </tr> </table> </div> </div> <div class="refsect1" lang="en"> -<a name="id2549528"></a><h2>DESCRIPTION</h2> +<a name="id2543522"></a><h2>DESCRIPTION</h2> <p> -These are low-level routines for creating and parsing -lightweight resolver name-to-address lookup request and -response messages. -</p> + These are low-level routines for creating and parsing + lightweight resolver name-to-address lookup request and + response messages. + </p> <p> -There are four main functions for the getaddrbyname opcode. -One render function converts a getaddrbyname request structure — -<span class="type">lwres_gabnrequest_t</span> — -to the lighweight resolver's canonical format. -It is complemented by a parse function that converts a packet in this -canonical format to a getaddrbyname request structure. -Another render function converts the getaddrbyname response structure — -<span class="type">lwres_gabnresponse_t</span> — -to the canonical format. -This is complemented by a parse function which converts a packet in -canonical format to a getaddrbyname response structure. -</p> + There are four main functions for the getaddrbyname opcode. + One render function converts a getaddrbyname request structure — + <span class="type">lwres_gabnrequest_t</span> — + to the lighweight resolver's canonical format. + It is complemented by a parse function that converts a packet in this + canonical format to a getaddrbyname request structure. + Another render function converts the getaddrbyname response structure + — <span class="type">lwres_gabnresponse_t</span> — + to the canonical format. + This is complemented by a parse function which converts a packet in + canonical format to a getaddrbyname response structure. + </p> <p> -These structures are defined in -<code class="filename"><lwres/lwres.h></code>. -They are shown below. -</p> + These structures are defined in + <code class="filename"><lwres/lwres.h></code>. + They are shown below. + </p> <pre class="programlisting"> #define LWRES_OPCODE_GETADDRSBYNAME 0x00010001U - +</pre> +<p> + </p> +<pre class="programlisting"> typedef struct lwres_addr lwres_addr_t; typedef LWRES_LIST(lwres_addr_t) lwres_addrlist_t; - +</pre> +<p> + </p> +<pre class="programlisting"> typedef struct { lwres_uint32_t flags; lwres_uint32_t addrtypes; lwres_uint16_t namelen; char *name; } lwres_gabnrequest_t; - +</pre> +<p> + </p> +<pre class="programlisting"> typedef struct { lwres_uint32_t flags; lwres_uint16_t naliases; @@ -245,113 +238,87 @@ typedef struct { } lwres_gabnresponse_t; </pre> <p> -</p> -<p> -<code class="function">lwres_gabnrequest_render()</code> -uses resolver context -<em class="parameter"><code>ctx</code></em> -to convert getaddrbyname request structure -<em class="parameter"><code>req</code></em> -to canonical format. -The packet header structure -<em class="parameter"><code>pkt</code></em> -is initialised and transferred to -buffer -<em class="parameter"><code>b</code></em>. + </p> +<p><code class="function">lwres_gabnrequest_render()</code> + uses resolver context <em class="parameter"><code>ctx</code></em> to convert + getaddrbyname request structure <em class="parameter"><code>req</code></em> to + canonical format. The packet header structure + <em class="parameter"><code>pkt</code></em> is initialised and transferred to + buffer <em class="parameter"><code>b</code></em>. -The contents of -<em class="parameter"><code>*req</code></em> -are then appended to the buffer in canonical format. -<code class="function">lwres_gabnresponse_render()</code> -performs the same task, except it converts a getaddrbyname response structure -<span class="type">lwres_gabnresponse_t</span> -to the lightweight resolver's canonical format. -</p> -<p> -<code class="function">lwres_gabnrequest_parse()</code> -uses context -<em class="parameter"><code>ctx</code></em> -to convert the contents of packet -<em class="parameter"><code>pkt</code></em> -to a -<span class="type">lwres_gabnrequest_t</span> -structure. -Buffer -<em class="parameter"><code>b</code></em> -provides space to be used for storing this structure. -When the function succeeds, the resulting -<span class="type">lwres_gabnrequest_t</span> -is made available through -<em class="parameter"><code>*structp</code></em>. + The contents of <em class="parameter"><code>*req</code></em> are then appended to + the buffer in canonical format. + <code class="function">lwres_gabnresponse_render()</code> performs the + same task, except it converts a getaddrbyname response structure + <span class="type">lwres_gabnresponse_t</span> to the lightweight resolver's + canonical format. + </p> +<p><code class="function">lwres_gabnrequest_parse()</code> + uses context <em class="parameter"><code>ctx</code></em> to convert the contents + of packet <em class="parameter"><code>pkt</code></em> to a + <span class="type">lwres_gabnrequest_t</span> structure. Buffer + <em class="parameter"><code>b</code></em> provides space to be used for storing + this structure. When the function succeeds, the resulting + <span class="type">lwres_gabnrequest_t</span> is made available through + <em class="parameter"><code>*structp</code></em>. -<code class="function">lwres_gabnresponse_parse()</code> -offers the same semantics as -<code class="function">lwres_gabnrequest_parse()</code> -except it yields a -<span class="type">lwres_gabnresponse_t</span> -structure. -</p> -<p> -<code class="function">lwres_gabnresponse_free()</code> -and -<code class="function">lwres_gabnrequest_free()</code> -release the memory in resolver context -<em class="parameter"><code>ctx</code></em> -that was allocated to the -<span class="type">lwres_gabnresponse_t</span> -or -<span class="type">lwres_gabnrequest_t</span> -structures referenced via -<em class="parameter"><code>structp</code></em>. + <code class="function">lwres_gabnresponse_parse()</code> offers the same + semantics as <code class="function">lwres_gabnrequest_parse()</code> + except it yields a <span class="type">lwres_gabnresponse_t</span> structure. + </p> +<p><code class="function">lwres_gabnresponse_free()</code> + and <code class="function">lwres_gabnrequest_free()</code> release the + memory in resolver context <em class="parameter"><code>ctx</code></em> that was + allocated to the <span class="type">lwres_gabnresponse_t</span> or + <span class="type">lwres_gabnrequest_t</span> structures referenced via + <em class="parameter"><code>structp</code></em>. -Any memory associated with ancillary buffers and strings for those -structures is also discarded. -</p> + Any memory associated with ancillary buffers and strings for + those structures is also discarded. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549720"></a><h2>RETURN VALUES</h2> +<a name="id2543667"></a><h2>RETURN VALUES</h2> <p> -The getaddrbyname opcode functions -<code class="function">lwres_gabnrequest_render()</code>, -<code class="function">lwres_gabnresponse_render()</code> -<code class="function">lwres_gabnrequest_parse()</code> -and -<code class="function">lwres_gabnresponse_parse()</code> -all return -<span class="errorcode">LWRES_R_SUCCESS</span> -on success. -They return -<span class="errorcode">LWRES_R_NOMEMORY</span> -if memory allocation fails. -<span class="errorcode">LWRES_R_UNEXPECTEDEND</span> -is returned if the available space in the buffer -<em class="parameter"><code>b</code></em> -is too small to accommodate the packet header or the -<span class="type">lwres_gabnrequest_t</span> -and -<span class="type">lwres_gabnresponse_t</span> -structures. -<code class="function">lwres_gabnrequest_parse()</code> -and -<code class="function">lwres_gabnresponse_parse()</code> -will return -<span class="errorcode">LWRES_R_UNEXPECTEDEND</span> -if the buffer is not empty after decoding the received packet. -These functions will return -<span class="errorcode">LWRES_R_FAILURE</span> -if -<em class="structfield"><code>pktflags</code></em> -in the packet header structure -<span class="type">lwres_lwpacket_t</span> -indicate that the packet is not a response to an earlier query. -</p> + The getaddrbyname opcode functions + <code class="function">lwres_gabnrequest_render()</code>, + <code class="function">lwres_gabnresponse_render()</code> + <code class="function">lwres_gabnrequest_parse()</code> + and + <code class="function">lwres_gabnresponse_parse()</code> + all return + <span class="errorcode">LWRES_R_SUCCESS</span> + on success. + They return + <span class="errorcode">LWRES_R_NOMEMORY</span> + if memory allocation fails. + <span class="errorcode">LWRES_R_UNEXPECTEDEND</span> + is returned if the available space in the buffer + <em class="parameter"><code>b</code></em> + is too small to accommodate the packet header or the + <span class="type">lwres_gabnrequest_t</span> + and + <span class="type">lwres_gabnresponse_t</span> + structures. + <code class="function">lwres_gabnrequest_parse()</code> + and + <code class="function">lwres_gabnresponse_parse()</code> + will return + <span class="errorcode">LWRES_R_UNEXPECTEDEND</span> + if the buffer is not empty after decoding the received packet. + These functions will return + <span class="errorcode">LWRES_R_FAILURE</span> + if + <em class="structfield"><code>pktflags</code></em> + in the packet header structure + <span class="type">lwres_lwpacket_t</span> + indicate that the packet is not a response to an earlier query. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549853"></a><h2>SEE ALSO</h2> -<p> -<span class="citerefentry"><span class="refentrytitle">lwres_packet</span>(3 -)</span> -</p> +<a name="id2543733"></a><h2>SEE ALSO</h2> +<p><span class="citerefentry"><span class="refentrytitle">lwres_packet</span>(3)</span> + </p> </div> </div></body> </html> diff --git a/usr.sbin/bind/lib/lwres/man/lwres_gai_strerror.html b/usr.sbin/bind/lib/lwres/man/lwres_gai_strerror.html index c31fd7c409c..468a93ff12f 100644 --- a/usr.sbin/bind/lib/lwres/man/lwres_gai_strerror.html +++ b/usr.sbin/bind/lib/lwres/man/lwres_gai_strerror.html @@ -1,5 +1,5 @@ <!-- - - Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") + - Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") - Copyright (C) 2000, 2001 Internet Software Consortium. - - Permission to use, copy, modify, and distribute this software for any @@ -14,111 +14,111 @@ - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. --> -<!-- $ISC: lwres_gai_strerror.html,v 1.5.2.1.4.12 2006/06/29 13:02:31 marka Exp $ --> +<!-- $ISC: lwres_gai_strerror.html,v 1.6.18.18 2007/01/30 00:23:45 marka Exp $ --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>lwres_gai_strerror</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.70.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.71.1"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en"> -<a name="id2482688"></a><div class="titlepage"></div> +<a name="id2476275"></a><div class="titlepage"></div> <div class="refnamediv"> <h2>Name</h2> -<p>gai_strerror — print suitable error string</p> +<p>lwres_gai_strerror — print suitable error string</p> </div> <div class="refsynopsisdiv"> <h2>Synopsis</h2> <div class="funcsynopsis"> <pre class="funcsynopsisinfo">#include <lwres/netdb.h></pre> -<p><code class="funcdef"> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0"><tr> +<td><code class="funcdef"> char * -<b class="fsfunc">gai_strerror</b>(</code>int ecode<code>)</code>;</p> +<b class="fsfunc">gai_strerror</b>(</code></td> +<td>int </td> +<td> +<var class="pdparam">ecode</var><code>)</code>;</td> +</tr></table> </div> </div> <div class="refsect1" lang="en"> -<a name="id2549408"></a><h2>DESCRIPTION</h2> -<p> -<code class="function">lwres_gai_strerror()</code> -returns an error message corresponding to an error code returned by -<code class="function">getaddrinfo()</code>. -The following error codes and their meaning are defined in -<code class="filename">include/lwres/netdb.h</code>. -</p> +<a name="id2543361"></a><h2>DESCRIPTION</h2> +<p><code class="function">lwres_gai_strerror()</code> + returns an error message corresponding to an error code returned by + <code class="function">getaddrinfo()</code>. + The following error codes and their meaning are defined in + <code class="filename">include/lwres/netdb.h</code>. + </p> <div class="variablelist"><dl> <dt><span class="term"><span class="errorcode">EAI_ADDRFAMILY</span></span></dt> <dd><p> -address family for hostname not supported -</p></dd> + address family for hostname not supported + </p></dd> <dt><span class="term"><span class="errorcode">EAI_AGAIN</span></span></dt> <dd><p> -temporary failure in name resolution -</p></dd> + temporary failure in name resolution + </p></dd> <dt><span class="term"><span class="errorcode">EAI_BADFLAGS</span></span></dt> <dd><p> -invalid value for -<code class="constant">ai_flags</code> -</p></dd> + invalid value for + <code class="constant">ai_flags</code> + </p></dd> <dt><span class="term"><span class="errorcode">EAI_FAIL</span></span></dt> <dd><p> -non-recoverable failure in name resolution -</p></dd> + non-recoverable failure in name resolution + </p></dd> <dt><span class="term"><span class="errorcode">EAI_FAMILY</span></span></dt> -<dd><p> -<code class="constant">ai_family</code> not supported -</p></dd> +<dd><p><code class="constant">ai_family</code> not supported + </p></dd> <dt><span class="term"><span class="errorcode">EAI_MEMORY</span></span></dt> <dd><p> -memory allocation failure -</p></dd> + memory allocation failure + </p></dd> <dt><span class="term"><span class="errorcode">EAI_NODATA</span></span></dt> <dd><p> -no address associated with hostname -</p></dd> + no address associated with hostname + </p></dd> <dt><span class="term"><span class="errorcode">EAI_NONAME</span></span></dt> <dd><p> -hostname or servname not provided, or not known -</p></dd> + hostname or servname not provided, or not known + </p></dd> <dt><span class="term"><span class="errorcode">EAI_SERVICE</span></span></dt> <dd><p> -servname not supported for <code class="constant">ai_socktype</code> -</p></dd> + servname not supported for <code class="constant">ai_socktype</code> + </p></dd> <dt><span class="term"><span class="errorcode">EAI_SOCKTYPE</span></span></dt> -<dd><p> -<code class="constant">ai_socktype</code> not supported -</p></dd> +<dd><p><code class="constant">ai_socktype</code> not supported + </p></dd> <dt><span class="term"><span class="errorcode">EAI_SYSTEM</span></span></dt> <dd><p> -system error returned in errno -</p></dd> + system error returned in errno + </p></dd> </dl></div> <p> -The message <span class="errorname">invalid error code</span> is returned if -<em class="parameter"><code>ecode</code></em> -is out of range. -</p> -<p> -<code class="constant">ai_flags</code>, -<code class="constant">ai_family</code> -and -<code class="constant">ai_socktype</code> -are elements of the -<span class="type">struct addrinfo</span> -used by -<code class="function">lwres_getaddrinfo()</code>. -</p> + The message <span class="errorname">invalid error code</span> is returned if + <em class="parameter"><code>ecode</code></em> + is out of range. + </p> +<p><code class="constant">ai_flags</code>, + <code class="constant">ai_family</code> + and + <code class="constant">ai_socktype</code> + are elements of the + <span class="type">struct addrinfo</span> + used by + <code class="function">lwres_getaddrinfo()</code>. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549605"></a><h2>SEE ALSO</h2> -<p> -<span class="citerefentry"><span class="refentrytitle">strerror</span>(3)</span>, +<a name="id2543576"></a><h2>SEE ALSO</h2> +<p><span class="citerefentry"><span class="refentrytitle">strerror</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres_getaddrinfo</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">lwres_getaddrinfo</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">getaddrinfo</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">getaddrinfo</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">RFC2133</span></span>. -</p> + <span class="citerefentry"><span class="refentrytitle">RFC2133</span></span>. + </p> </div> </div></body> </html> diff --git a/usr.sbin/bind/lib/lwres/man/lwres_getaddrinfo.html b/usr.sbin/bind/lib/lwres/man/lwres_getaddrinfo.html index e9d2f0c5c7a..054dbfca014 100644 --- a/usr.sbin/bind/lib/lwres/man/lwres_getaddrinfo.html +++ b/usr.sbin/bind/lib/lwres/man/lwres_getaddrinfo.html @@ -1,5 +1,5 @@ <!-- - - Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") + - Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") - Copyright (C) 2000, 2001, 2003 Internet Software Consortium. - - Permission to use, copy, modify, and distribute this software for any @@ -14,15 +14,15 @@ - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. --> -<!-- $ISC: lwres_getaddrinfo.html,v 1.8.2.1.4.12 2006/06/29 13:02:31 marka Exp $ --> +<!-- $ISC: lwres_getaddrinfo.html,v 1.10.18.17 2007/01/30 00:23:45 marka Exp $ --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>lwres_getaddrinfo</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.70.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.71.1"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en"> -<a name="id2482688"></a><div class="titlepage"></div> +<a name="id2476275"></a><div class="titlepage"></div> <div class="refnamediv"> <h2>Name</h2> <p>lwres_getaddrinfo, lwres_freeaddrinfo — socket address structure to host and service name</p> @@ -36,54 +36,43 @@ <td><code class="funcdef"> int <b class="fsfunc">lwres_getaddrinfo</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>const char * </td> +<td> +<var class="pdparam">hostname</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>const char * </td> +<td> +<var class="pdparam">servname</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>const struct addrinfo * </td> +<td> +<var class="pdparam">hints</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>struct addrinfo ** </td> <td> -<code>)</code>;</td> +<var class="pdparam">res</var><code>)</code>;</td> </tr> </table> -<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0"> -<tr> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0"><tr> <td><code class="funcdef"> void <b class="fsfunc">lwres_freeaddrinfo</b>(</code></td> -<td> </td> +<td>struct addrinfo * </td> <td> -<code>)</code>;</td> -</tr> -<tr> -<td> </td> -<td> </td> -<td> -<code>)</code>;</td> -</tr> -</table> +<var class="pdparam">ai</var><code>)</code>;</td> +</tr></table> </div> <p> -If the operating system does not provide a -<span class="type">struct addrinfo</span>, -the following structure is used: - -</p> + If the operating system does not provide a + <span class="type">struct addrinfo</span>, + the following structure is used: + </p> <pre class="programlisting"> struct addrinfo { int ai_flags; /* AI_PASSIVE, AI_CANONNAME */ @@ -97,250 +86,237 @@ struct addrinfo { }; </pre> <p> -</p> + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549448"></a><h2>DESCRIPTION</h2> -<p> -<code class="function">lwres_getaddrinfo()</code> -is used to get a list of IP addresses and port numbers for host -<em class="parameter"><code>hostname</code></em> -and service -<em class="parameter"><code>servname</code></em>. +<a name="id2543412"></a><h2>DESCRIPTION</h2> +<p><code class="function">lwres_getaddrinfo()</code> + is used to get a list of IP addresses and port numbers for host + <em class="parameter"><code>hostname</code></em> and service + <em class="parameter"><code>servname</code></em>. -The function is the lightweight resolver's implementation of -<code class="function">getaddrinfo()</code> -as defined in RFC2133. -<em class="parameter"><code>hostname</code></em> -and -<em class="parameter"><code>servname</code></em> -are pointers to null-terminated -strings or -<span class="type">NULL</span>. + The function is the lightweight resolver's implementation of + <code class="function">getaddrinfo()</code> as defined in RFC2133. + <em class="parameter"><code>hostname</code></em> and + <em class="parameter"><code>servname</code></em> are pointers to null-terminated + strings or <span class="type">NULL</span>. -<em class="parameter"><code>hostname</code></em> -is either a host name or a numeric host address string: a dotted decimal -IPv4 address or an IPv6 address. -<em class="parameter"><code>servname</code></em> -is either a decimal port number or a service name as listed in -<code class="filename">/etc/services</code>. -</p> -<p> -<em class="parameter"><code>hints</code></em> -is an optional pointer to a -<span class="type">struct addrinfo</span>. -This structure can be used to provide hints concerning the type of socket -that the caller supports or wishes to use. -The caller can supply the following structure elements in -<em class="parameter"><code>*hints</code></em>: + <em class="parameter"><code>hostname</code></em> is either a host name or a + numeric host address string: a dotted decimal IPv4 address or an + IPv6 address. <em class="parameter"><code>servname</code></em> is either a + decimal port number or a service name as listed in + <code class="filename">/etc/services</code>. + </p> +<p><em class="parameter"><code>hints</code></em> + is an optional pointer to a + <span class="type">struct addrinfo</span>. + This structure can be used to provide hints concerning the type of + socket + that the caller supports or wishes to use. + The caller can supply the following structure elements in + <em class="parameter"><code>*hints</code></em>: -</p> + </p> <div class="variablelist"><dl> <dt><span class="term"><code class="constant">ai_family</code></span></dt> -<dd><p>The protocol family that should be used. -When -<code class="constant">ai_family</code> -is set to -<span class="type">PF_UNSPEC</span>, -it means the caller will accept any protocol family supported by the -operating system. -</p></dd> +<dd><p> + The protocol family that should be used. + When + <code class="constant">ai_family</code> + is set to + <span class="type">PF_UNSPEC</span>, + it means the caller will accept any protocol family supported by + the + operating system. + </p></dd> <dt><span class="term"><code class="constant">ai_socktype</code></span></dt> <dd><p> -denotes the type of socket — -<span class="type">SOCK_STREAM</span>, -<span class="type">SOCK_DGRAM</span> -or -<span class="type">SOCK_RAW</span> -— that is wanted. -When -<code class="constant">ai_socktype</code> -is zero the caller will accept any socket type. -</p></dd> + denotes the type of socket — + <span class="type">SOCK_STREAM</span>, + <span class="type">SOCK_DGRAM</span> + or + <span class="type">SOCK_RAW</span> + — that is wanted. + When + <code class="constant">ai_socktype</code> + is zero the caller will accept any socket type. + </p></dd> <dt><span class="term"><code class="constant">ai_protocol</code></span></dt> <dd><p> -indicates which transport protocol is wanted: IPPROTO_UDP or -IPPROTO_TCP. -If -<code class="constant">ai_protocol</code> -is zero the caller will accept any protocol. -</p></dd> + indicates which transport protocol is wanted: IPPROTO_UDP or + IPPROTO_TCP. + If + <code class="constant">ai_protocol</code> + is zero the caller will accept any protocol. + </p></dd> <dt><span class="term"><code class="constant">ai_flags</code></span></dt> <dd> <p> -Flag bits. -If the -<span class="type">AI_CANONNAME</span> -bit is set, a successful call to -<code class="function">lwres_getaddrinfo()</code> -will return a null-terminated string containing the canonical name -of the specified hostname in -<code class="constant">ai_canonname</code> -of the first -<span class="type">addrinfo</span> -structure returned. -Setting the -<span class="type">AI_PASSIVE</span> -bit indicates that the returned socket address structure is intended -for used in a call to -<span class="citerefentry"><span class="refentrytitle">bind</span>(2)</span>. + Flag bits. + If the + <span class="type">AI_CANONNAME</span> + bit is set, a successful call to + <code class="function">lwres_getaddrinfo()</code> + will return a null-terminated string containing the canonical + name + of the specified hostname in + <code class="constant">ai_canonname</code> + of the first + <span class="type">addrinfo</span> + structure returned. + Setting the + <span class="type">AI_PASSIVE</span> + bit indicates that the returned socket address structure is + intended + for used in a call to + <span class="citerefentry"><span class="refentrytitle">bind</span>(2)</span>. -In this case, if the hostname argument is a -<span class="type">NULL</span> -pointer, then the IP address portion of the socket -address structure will be set to -<span class="type">INADDR_ANY</span> -for an IPv4 address or -<span class="type">IN6ADDR_ANY_INIT</span> -for an IPv6 address. -</p> + In this case, if the hostname argument is a + <span class="type">NULL</span> + pointer, then the IP address portion of the socket + address structure will be set to + <span class="type">INADDR_ANY</span> + for an IPv4 address or + <span class="type">IN6ADDR_ANY_INIT</span> + for an IPv6 address. + </p> <p> -When -<code class="constant">ai_flags</code> -does not set the -<span class="type">AI_PASSIVE</span> -bit, the returned socket address structure will be ready -for use in a call to -<span class="citerefentry"><span class="refentrytitle">connect</span>(2 -)</span> -for a connection-oriented protocol or -<span class="citerefentry"><span class="refentrytitle">connect</span>(2)</span>, + When + <code class="constant">ai_flags</code> + does not set the + <span class="type">AI_PASSIVE</span> + bit, the returned socket address structure will be ready + for use in a call to + <span class="citerefentry"><span class="refentrytitle">connect</span>(2)</span> + for a connection-oriented protocol or + <span class="citerefentry"><span class="refentrytitle">connect</span>(2)</span>, -<span class="citerefentry"><span class="refentrytitle">sendto</span>(2)</span>, + <span class="citerefentry"><span class="refentrytitle">sendto</span>(2)</span>, -or -<span class="citerefentry"><span class="refentrytitle">sendmsg</span>(2 -)</span> -if a connectionless protocol was chosen. -The IP address portion of the socket address structure will be -set to the loopback address if -<em class="parameter"><code>hostname</code></em> -is a -<span class="type">NULL</span> -pointer and -<span class="type">AI_PASSIVE</span> -is not set in -<code class="constant">ai_flags</code>. -</p> + or + <span class="citerefentry"><span class="refentrytitle">sendmsg</span>(2)</span> + if a connectionless protocol was chosen. + The IP address portion of the socket address structure will be + set to the loopback address if + <em class="parameter"><code>hostname</code></em> + is a + <span class="type">NULL</span> + pointer and + <span class="type">AI_PASSIVE</span> + is not set in + <code class="constant">ai_flags</code>. + </p> <p> -If -<code class="constant">ai_flags</code> -is set to -<span class="type">AI_NUMERICHOST</span> -it indicates that -<em class="parameter"><code>hostname</code></em> -should be treated as a numeric string defining an IPv4 or IPv6 address -and no name resolution should be attempted. -</p> + If + <code class="constant">ai_flags</code> + is set to + <span class="type">AI_NUMERICHOST</span> + it indicates that + <em class="parameter"><code>hostname</code></em> + should be treated as a numeric string defining an IPv4 or IPv6 + address + and no name resolution should be attempted. + </p> </dd> </dl></div> <p> -</p> + </p> <p> -All other elements of the <span class="type">struct addrinfo</span> passed -via <em class="parameter"><code>hints</code></em> must be zero. -</p> + All other elements of the <span class="type">struct addrinfo</span> passed + via <em class="parameter"><code>hints</code></em> must be zero. + </p> <p> -A <em class="parameter"><code>hints</code></em> of <span class="type">NULL</span> is treated as if -the caller provided a <span class="type">struct addrinfo</span> initialized to zero -with <code class="constant">ai_family</code>set to -<code class="constant">PF_UNSPEC</code>. -</p> + A <em class="parameter"><code>hints</code></em> of <span class="type">NULL</span> is + treated as if + the caller provided a <span class="type">struct addrinfo</span> initialized to zero + with <code class="constant">ai_family</code>set to + <code class="constant">PF_UNSPEC</code>. + </p> <p> -After a successful call to -<code class="function">lwres_getaddrinfo()</code>, -<em class="parameter"><code>*res</code></em> -is a pointer to a linked list of one or more -<span class="type">addrinfo</span> -structures. -Each -<span class="type">struct addrinfo</span> -in this list cn be processed by following -the -<code class="constant">ai_next</code> -pointer, until a -<span class="type">NULL</span> -pointer is encountered. -The three members -<code class="constant">ai_family</code>, -<code class="constant">ai_socktype</code>, -and -<code class="constant">ai_protocol</code> -in each -returned -<span class="type">addrinfo</span> -structure contain the corresponding arguments for a call to -<span class="citerefentry"><span class="refentrytitle">socket</span>(2)</span>. -For each -<span class="type">addrinfo</span> -structure in the list, the -<code class="constant">ai_addr</code> -member points to a filled-in socket address structure of length -<code class="constant">ai_addrlen</code>. -</p> + After a successful call to + <code class="function">lwres_getaddrinfo()</code>, + <em class="parameter"><code>*res</code></em> + is a pointer to a linked list of one or more + <span class="type">addrinfo</span> + structures. + Each + <span class="type">struct addrinfo</span> + in this list cn be processed by following + the + <code class="constant">ai_next</code> + pointer, until a + <span class="type">NULL</span> + pointer is encountered. + The three members + <code class="constant">ai_family</code>, + <code class="constant">ai_socktype</code>, + and + <code class="constant">ai_protocol</code> + in each + returned + <span class="type">addrinfo</span> + structure contain the corresponding arguments for a call to + <span class="citerefentry"><span class="refentrytitle">socket</span>(2)</span>. + For each + <span class="type">addrinfo</span> + structure in the list, the + <code class="constant">ai_addr</code> + member points to a filled-in socket address structure of length + <code class="constant">ai_addrlen</code>. + </p> <p> -All of the information returned by -<code class="function">lwres_getaddrinfo()</code> -is dynamically allocated: the addrinfo structures, and the socket -address structures and canonical host name strings pointed to by the -<code class="constant">addrinfo</code>structures. -Memory allocated for the dynamically allocated structures created by -a successful call to -<code class="function">lwres_getaddrinfo()</code> -is released by -<code class="function">lwres_freeaddrinfo()</code>. -<em class="parameter"><code>ai</code></em> -is a pointer to a -<span class="type">struct addrinfo</span> -created by a call to -<code class="function">lwres_getaddrinfo()</code>. -</p> + All of the information returned by + <code class="function">lwres_getaddrinfo()</code> + is dynamically allocated: the addrinfo structures, and the socket + address structures and canonical host name strings pointed to by the + <code class="constant">addrinfo</code>structures. + Memory allocated for the dynamically allocated structures created by + a successful call to + <code class="function">lwres_getaddrinfo()</code> + is released by + <code class="function">lwres_freeaddrinfo()</code>. + <em class="parameter"><code>ai</code></em> + is a pointer to a + <span class="type">struct addrinfo</span> + created by a call to + <code class="function">lwres_getaddrinfo()</code>. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549874"></a><h2>RETURN VALUES</h2> -<p> -<code class="function">lwres_getaddrinfo()</code> -returns zero on success or one of the error codes listed in -<span class="citerefentry"><span class="refentrytitle">gai_strerror</span>(3 -)</span> -if an error occurs. -If both -<em class="parameter"><code>hostname</code></em> -and -<em class="parameter"><code>servname</code></em> -are -<span class="type">NULL</span> -<code class="function">lwres_getaddrinfo()</code> -returns -<span class="errorcode">EAI_NONAME</span>. - -</p> +<a name="id2543789"></a><h2>RETURN VALUES</h2> +<p><code class="function">lwres_getaddrinfo()</code> + returns zero on success or one of the error codes listed in + <span class="citerefentry"><span class="refentrytitle">gai_strerror</span>(3)</span> + if an error occurs. If both <em class="parameter"><code>hostname</code></em> and + <em class="parameter"><code>servname</code></em> are <span class="type">NULL</span> + <code class="function">lwres_getaddrinfo()</code> returns + <span class="errorcode">EAI_NONAME</span>. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549912"></a><h2>SEE ALSO</h2> -<p> -<span class="citerefentry"><span class="refentrytitle">lwres</span>(3)</span>, +<a name="id2543827"></a><h2>SEE ALSO</h2> +<p><span class="citerefentry"><span class="refentrytitle">lwres</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres_getaddrinfo</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">lwres_getaddrinfo</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres_freeaddrinfo</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">lwres_freeaddrinfo</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres_gai_strerror</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">lwres_gai_strerror</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">RFC2133</span></span>, + <span class="citerefentry"><span class="refentrytitle">RFC2133</span></span>, -<span class="citerefentry"><span class="refentrytitle">getservbyname</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">getservbyname</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">bind</span>(2)</span>, + <span class="citerefentry"><span class="refentrytitle">bind</span>(2)</span>, -<span class="citerefentry"><span class="refentrytitle">connect</span>(2)</span>, + <span class="citerefentry"><span class="refentrytitle">connect</span>(2)</span>, -<span class="citerefentry"><span class="refentrytitle">sendto</span>(2)</span>, + <span class="citerefentry"><span class="refentrytitle">sendto</span>(2)</span>, -<span class="citerefentry"><span class="refentrytitle">sendmsg</span>(2)</span>, + <span class="citerefentry"><span class="refentrytitle">sendmsg</span>(2)</span>, -<span class="citerefentry"><span class="refentrytitle">socket</span>(2)</span>. -</p> + <span class="citerefentry"><span class="refentrytitle">socket</span>(2)</span>. + </p> </div> </div></body> </html> diff --git a/usr.sbin/bind/lib/lwres/man/lwres_gethostent.html b/usr.sbin/bind/lib/lwres/man/lwres_gethostent.html index 0413d459fb0..1f72dfede83 100644 --- a/usr.sbin/bind/lib/lwres/man/lwres_gethostent.html +++ b/usr.sbin/bind/lib/lwres/man/lwres_gethostent.html @@ -1,5 +1,5 @@ <!-- - - Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") + - Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") - Copyright (C) 2001 Internet Software Consortium. - - Permission to use, copy, modify, and distribute this software for any @@ -14,15 +14,15 @@ - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. --> -<!-- $ISC: lwres_gethostent.html,v 1.8.2.1.4.10 2006/06/29 13:02:31 marka Exp $ --> +<!-- $ISC: lwres_gethostent.html,v 1.9.18.15 2007/01/30 00:23:45 marka Exp $ --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>lwres_gethostent</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.70.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.71.1"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en"> -<a name="id2482688"></a><div class="titlepage"></div> +<a name="id2476275"></a><div class="titlepage"></div> <div class="refnamediv"> <h2>Name</h2> <p>lwres_gethostbyname, lwres_gethostbyname2, lwres_gethostbyaddr, lwres_gethostent, lwres_sethostent, lwres_endhostent, lwres_gethostbyname_r, lwres_gethostbyaddr_r, lwres_gethostent_r, lwres_sethostent_r, lwres_endhostent_r — lightweight resolver get network host entry</p> @@ -31,40 +31,28 @@ <h2>Synopsis</h2> <div class="funcsynopsis"> <pre class="funcsynopsisinfo">#include <lwres/netdb.h></pre> -<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> -<tr> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"><tr> <td><code class="funcdef"> struct hostent * <b class="fsfunc">lwres_gethostbyname</b>(</code></td> -<td> </td> +<td>const char * </td> <td> -<code>)</code>;</td> -</tr> -<tr> -<td> </td> -<td> </td> -<td> -<code>)</code>;</td> -</tr> -</table> +<var class="pdparam">name</var><code>)</code>;</td> +</tr></table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> <tr> <td><code class="funcdef"> struct hostent * <b class="fsfunc">lwres_gethostbyname2</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>const char * </td> +<td> +<var class="pdparam">name</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>int </td> <td> -<code>)</code>;</td> +<var class="pdparam">af</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -72,68 +60,79 @@ struct hostent * <td><code class="funcdef"> struct hostent * <b class="fsfunc">lwres_gethostbyaddr</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>const char * </td> +<td> +<var class="pdparam">addr</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>int </td> +<td> +<var class="pdparam">len</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>int </td> <td> -<code>)</code>;</td> +<var class="pdparam">type</var><code>)</code>;</td> </tr> </table> -<p><code class="funcdef"> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"><tr> +<td><code class="funcdef"> struct hostent * -<b class="fsfunc">lwres_gethostent</b>(</code>void<code>)</code>;</p> -<p><code class="funcdef"> +<b class="fsfunc">lwres_gethostent</b>(</code></td> +<td> </td> +<td> +<code>)</code>;</td> +</tr></table> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"><tr> +<td><code class="funcdef"> void -<b class="fsfunc">lwres_sethostent</b>(</code>int stayopen<code>)</code>;</p> -<p><code class="funcdef"> +<b class="fsfunc">lwres_sethostent</b>(</code></td> +<td>int </td> +<td> +<var class="pdparam">stayopen</var><code>)</code>;</td> +</tr></table> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"><tr> +<td><code class="funcdef"> void -<b class="fsfunc">lwres_endhostent</b>(</code>void<code>)</code>;</p> +<b class="fsfunc">lwres_endhostent</b>(</code></td> +<td> </td> +<td> +<code>)</code>;</td> +</tr></table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> <tr> <td><code class="funcdef"> struct hostent * <b class="fsfunc">lwres_gethostbyname_r</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>const char * </td> +<td> +<var class="pdparam">name</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>struct hostent * </td> +<td> +<var class="pdparam">resbuf</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>char * </td> +<td> +<var class="pdparam">buf</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>int </td> +<td> +<var class="pdparam">buflen</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>int * </td> <td> -<code>)</code>;</td> +<var class="pdparam">error</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -141,44 +140,45 @@ struct hostent * <td><code class="funcdef"> struct hostent * <b class="fsfunc">lwres_gethostbyaddr_r</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>const char * </td> +<td> +<var class="pdparam">addr</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>int </td> +<td> +<var class="pdparam">len</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>int </td> +<td> +<var class="pdparam">type</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>struct hostent * </td> +<td> +<var class="pdparam">resbuf</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>char * </td> +<td> +<var class="pdparam">buf</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>int </td> +<td> +<var class="pdparam">buflen</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>int * </td> <td> -<code>)</code>;</td> +<var class="pdparam">error</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -186,54 +186,60 @@ struct hostent * <td><code class="funcdef"> struct hostent * <b class="fsfunc">lwres_gethostent_r</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>struct hostent * </td> +<td> +<var class="pdparam">resbuf</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>char * </td> +<td> +<var class="pdparam">buf</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>int </td> +<td> +<var class="pdparam">buflen</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>int * </td> <td> -<code>)</code>;</td> +<var class="pdparam">error</var><code>)</code>;</td> </tr> </table> -<p><code class="funcdef"> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"><tr> +<td><code class="funcdef"> void -<b class="fsfunc">lwres_sethostent_r</b>(</code>int stayopen<code>)</code>;</p> -<p><code class="funcdef"> +<b class="fsfunc">lwres_sethostent_r</b>(</code></td> +<td>int </td> +<td> +<var class="pdparam">stayopen</var><code>)</code>;</td> +</tr></table> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0"><tr> +<td><code class="funcdef"> void -<b class="fsfunc">lwres_endhostent_r</b>(</code>void<code>)</code>;</p> +<b class="fsfunc">lwres_endhostent_r</b>(</code></td> +<td> </td> +<td> +<code>)</code>;</td> +</tr></table> </div> </div> <div class="refsect1" lang="en"> -<a name="id2549606"></a><h2>DESCRIPTION</h2> +<a name="id2543608"></a><h2>DESCRIPTION</h2> <p> -These functions provide hostname-to-address and -address-to-hostname lookups by means of the lightweight resolver. -They are similar to the standard -<span class="citerefentry"><span class="refentrytitle">gethostent</span>(3 -)</span> -functions provided by most operating systems. -They use a -<span class="type">struct hostent</span> -which is usually defined in -<code class="filename"><namedb.h></code>. - -</p> + These functions provide hostname-to-address and + address-to-hostname lookups by means of the lightweight resolver. + They are similar to the standard + <span class="citerefentry"><span class="refentrytitle">gethostent</span>(3)</span> + functions provided by most operating systems. + They use a + <span class="type">struct hostent</span> + which is usually defined in + <code class="filename"><namedb.h></code>. + </p> <pre class="programlisting"> struct hostent { char *h_name; /* official name of host */ @@ -245,219 +251,216 @@ struct hostent { #define h_addr h_addr_list[0] /* address, for backward compatibility */ </pre> <p> -</p> + </p> <p> -The members of this structure are: -</p> + The members of this structure are: + </p> <div class="variablelist"><dl> <dt><span class="term"><code class="constant">h_name</code></span></dt> <dd><p> -The official (canonical) name of the host. -</p></dd> + The official (canonical) name of the host. + </p></dd> <dt><span class="term"><code class="constant">h_aliases</code></span></dt> <dd><p> -A NULL-terminated array of alternate names (nicknames) for the host. -</p></dd> + A NULL-terminated array of alternate names (nicknames) for the + host. + </p></dd> <dt><span class="term"><code class="constant">h_addrtype</code></span></dt> <dd><p> -The type of address being returned — -<span class="type">PF_INET</span> -or -<span class="type">PF_INET6</span>. -</p></dd> + The type of address being returned — + <span class="type">PF_INET</span> + or + <span class="type">PF_INET6</span>. + </p></dd> <dt><span class="term"><code class="constant">h_length</code></span></dt> <dd><p> -The length of the address in bytes. -</p></dd> + The length of the address in bytes. + </p></dd> <dt><span class="term"><code class="constant">h_addr_list</code></span></dt> <dd><p> -A <span class="type">NULL</span> -terminated array of network addresses for the host. -Host addresses are returned in network byte order. -</p></dd> + A <span class="type">NULL</span> + terminated array of network addresses for the host. + Host addresses are returned in network byte order. + </p></dd> </dl></div> <p> -</p> -<p> -For backward compatibility with very old software, -<code class="constant">h_addr</code> -is the first address in -<code class="constant">h_addr_list.</code> -</p> + </p> <p> -<code class="function">lwres_gethostent()</code>, -<code class="function">lwres_sethostent()</code>, -<code class="function">lwres_endhostent()</code>, -<code class="function">lwres_gethostent_r()</code>, -<code class="function">lwres_sethostent_r()</code> -and -<code class="function">lwres_endhostent_r()</code> -provide iteration over the known host entries on systems that -provide such functionality through facilities like -<code class="filename">/etc/hosts</code> -or NIS. The lightweight resolver does not currently implement -these functions; it only provides them as stub functions that always -return failure. -</p> + For backward compatibility with very old software, + <code class="constant">h_addr</code> + is the first address in + <code class="constant">h_addr_list.</code> + </p> +<p><code class="function">lwres_gethostent()</code>, + <code class="function">lwres_sethostent()</code>, + <code class="function">lwres_endhostent()</code>, + <code class="function">lwres_gethostent_r()</code>, + <code class="function">lwres_sethostent_r()</code> + and + <code class="function">lwres_endhostent_r()</code> + provide iteration over the known host entries on systems that + provide such functionality through facilities like + <code class="filename">/etc/hosts</code> + or NIS. The lightweight resolver does not currently implement + these functions; it only provides them as stub functions that always + return failure. + </p> +<p><code class="function">lwres_gethostbyname()</code> + and <code class="function">lwres_gethostbyname2()</code> look up the + hostname <em class="parameter"><code>name</code></em>. + <code class="function">lwres_gethostbyname()</code> always looks for an + IPv4 address while <code class="function">lwres_gethostbyname2()</code> + looks for an address of protocol family + <em class="parameter"><code>af</code></em>: either <span class="type">PF_INET</span> or + <span class="type">PF_INET6</span> — IPv4 or IPV6 addresses + respectively. Successful calls of the functions return a + <span class="type">struct hostent</span>for the name that was looked up. + <span class="type">NULL</span> is returned if the lookups by + <code class="function">lwres_gethostbyname()</code> or + <code class="function">lwres_gethostbyname2()</code> fail. + </p> <p> -<code class="function">lwres_gethostbyname()</code> and -<code class="function">lwres_gethostbyname2()</code> look up the hostname -<em class="parameter"><code>name</code></em>. -<code class="function">lwres_gethostbyname()</code> always looks for an IPv4 -address while <code class="function">lwres_gethostbyname2()</code> looks for an -address of protocol family <em class="parameter"><code>af</code></em>: either -<span class="type">PF_INET</span> or <span class="type">PF_INET6</span> — IPv4 or IPV6 -addresses respectively. Successful calls of the functions return a -<span class="type">struct hostent</span>for the name that was looked up. -<span class="type">NULL</span> is returned if the lookups by -<code class="function">lwres_gethostbyname()</code> or -<code class="function">lwres_gethostbyname2()</code> fail. -</p> -<p> -Reverse lookups of addresses are performed by -<code class="function">lwres_gethostbyaddr()</code>. -<em class="parameter"><code>addr</code></em> is an address of length -<em class="parameter"><code>len</code></em> bytes and protocol family -<em class="parameter"><code>type</code></em> — <span class="type">PF_INET</span> or -<span class="type">PF_INET6</span>. -<code class="function">lwres_gethostbyname_r()</code> is a thread-safe function -for forward lookups. If an error occurs, an error code is returned in -<em class="parameter"><code>*error</code></em>. -<em class="parameter"><code>resbuf</code></em> is a pointer to a <span class="type">struct -hostent</span> which is initialised by a successful call to -<code class="function">lwres_gethostbyname_r()</code> . -<em class="parameter"><code>buf</code></em> is a buffer of length -<em class="parameter"><code>len</code></em> bytes which is used to store the -<code class="constant">h_name</code>, <code class="constant">h_aliases</code>, and -<code class="constant">h_addr_list</code> elements of the <span class="type">struct -hostent</span> returned in <em class="parameter"><code>resbuf</code></em>. -Successful calls to <code class="function">lwres_gethostbyname_r()</code> -return <em class="parameter"><code>resbuf</code></em>, -which is a pointer to the <span class="type">struct hostent</span> it created. -</p> -<p> -<code class="function">lwres_gethostbyaddr_r()</code> is a thread-safe function -that performs a reverse lookup of address <em class="parameter"><code>addr</code></em> -which is <em class="parameter"><code>len</code></em> bytes long and is of protocol -family <em class="parameter"><code>type</code></em> — <span class="type">PF_INET</span> or -<span class="type">PF_INET6</span>. If an error occurs, the error code is returned -in <em class="parameter"><code>*error</code></em>. The other function parameters are -identical to those in <code class="function">lwres_gethostbyname_r()</code>. -<em class="parameter"><code>resbuf</code></em> is a pointer to a <span class="type">struct -hostent</span> which is initialised by a successful call to -<code class="function">lwres_gethostbyaddr_r()</code>. -<em class="parameter"><code>buf</code></em> is a buffer of length -<em class="parameter"><code>len</code></em> bytes which is used to store the -<code class="constant">h_name</code>, <code class="constant">h_aliases</code>, and -<code class="constant">h_addr_list</code> elements of the <span class="type">struct -hostent</span> returned in <em class="parameter"><code>resbuf</code></em>. Successful -calls to <code class="function">lwres_gethostbyaddr_r()</code> return -<em class="parameter"><code>resbuf</code></em>, which is a pointer to the -<code class="function">struct hostent()</code> it created. -</p> + Reverse lookups of addresses are performed by + <code class="function">lwres_gethostbyaddr()</code>. + <em class="parameter"><code>addr</code></em> is an address of length + <em class="parameter"><code>len</code></em> bytes and protocol family + <em class="parameter"><code>type</code></em> — <span class="type">PF_INET</span> or + <span class="type">PF_INET6</span>. + <code class="function">lwres_gethostbyname_r()</code> is a + thread-safe function + for forward lookups. If an error occurs, an error code is returned in + <em class="parameter"><code>*error</code></em>. + <em class="parameter"><code>resbuf</code></em> is a pointer to a + <span class="type">struct hostent</span> which is initialised by a successful call to + <code class="function">lwres_gethostbyname_r()</code>. + <em class="parameter"><code>buf</code></em> is a buffer of length + <em class="parameter"><code>len</code></em> bytes which is used to store the + <code class="constant">h_name</code>, <code class="constant">h_aliases</code>, and + <code class="constant">h_addr_list</code> elements of the + <span class="type">struct hostent</span> returned in <em class="parameter"><code>resbuf</code></em>. + Successful calls to <code class="function">lwres_gethostbyname_r()</code> + return <em class="parameter"><code>resbuf</code></em>, + which is a pointer to the <span class="type">struct hostent</span> it created. + </p> +<p><code class="function">lwres_gethostbyaddr_r()</code> + is a thread-safe function + that performs a reverse lookup of address <em class="parameter"><code>addr</code></em> + which is <em class="parameter"><code>len</code></em> bytes long and is of + protocol + family <em class="parameter"><code>type</code></em> — <span class="type">PF_INET</span> or + <span class="type">PF_INET6</span>. If an error occurs, the error code is returned + in <em class="parameter"><code>*error</code></em>. The other function + parameters are + identical to those in <code class="function">lwres_gethostbyname_r()</code>. + <em class="parameter"><code>resbuf</code></em> is a pointer to a + <span class="type">struct hostent</span> which is initialised by a successful call to + <code class="function">lwres_gethostbyaddr_r()</code>. + <em class="parameter"><code>buf</code></em> is a buffer of length + <em class="parameter"><code>len</code></em> bytes which is used to store the + <code class="constant">h_name</code>, <code class="constant">h_aliases</code>, and + <code class="constant">h_addr_list</code> elements of the + <span class="type">struct hostent</span> returned in <em class="parameter"><code>resbuf</code></em>. + Successful calls to <code class="function">lwres_gethostbyaddr_r()</code> return + <em class="parameter"><code>resbuf</code></em>, which is a pointer to the + <code class="function">struct hostent()</code> it created. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2550013"></a><h2>RETURN VALUES</h2> +<a name="id2543959"></a><h2>RETURN VALUES</h2> <p> -The functions -<code class="function">lwres_gethostbyname()</code>, -<code class="function">lwres_gethostbyname2()</code>, -<code class="function">lwres_gethostbyaddr()</code>, -and -<code class="function">lwres_gethostent()</code> -return NULL to indicate an error. In this case the global variable -<span class="type">lwres_h_errno</span> -will contain one of the following error codes defined in -<code class="filename"><lwres/netdb.h></code>: + The functions + <code class="function">lwres_gethostbyname()</code>, + <code class="function">lwres_gethostbyname2()</code>, + <code class="function">lwres_gethostbyaddr()</code>, + and + <code class="function">lwres_gethostent()</code> + return NULL to indicate an error. In this case the global variable + <span class="type">lwres_h_errno</span> + will contain one of the following error codes defined in + <code class="filename"><lwres/netdb.h></code>: -</p> + </p> <div class="variablelist"><dl> <dt><span class="term"><code class="constant">HOST_NOT_FOUND</code></span></dt> <dd><p> -The host or address was not found. -</p></dd> + The host or address was not found. + </p></dd> <dt><span class="term"><code class="constant">TRY_AGAIN</code></span></dt> <dd><p> -A recoverable error occurred, e.g., a timeout. -Retrying the lookup may succeed. -</p></dd> + A recoverable error occurred, e.g., a timeout. + Retrying the lookup may succeed. + </p></dd> <dt><span class="term"><code class="constant">NO_RECOVERY</code></span></dt> <dd><p> -A non-recoverable error occurred. -</p></dd> + A non-recoverable error occurred. + </p></dd> <dt><span class="term"><code class="constant">NO_DATA</code></span></dt> <dd><p> -The name exists, but has no address information -associated with it (or vice versa in the case -of a reverse lookup). The code NO_ADDRESS -is accepted as a synonym for NO_DATA for backwards -compatibility. -</p></dd> + The name exists, but has no address information + associated with it (or vice versa in the case + of a reverse lookup). The code NO_ADDRESS + is accepted as a synonym for NO_DATA for backwards + compatibility. + </p></dd> </dl></div> <p> -</p> -<p> -<span class="citerefentry"><span class="refentrytitle">lwres_hstrerror</span>(3 -)</span> -translates these error codes to suitable error messages. -</p> + </p> +<p><span class="citerefentry"><span class="refentrytitle">lwres_hstrerror</span>(3)</span> + translates these error codes to suitable error messages. + </p> +<p><code class="function">lwres_gethostent()</code> + and <code class="function">lwres_gethostent_r()</code> + always return <span class="type">NULL</span>. + </p> <p> -<code class="function">lwres_gethostent()</code> -and -<code class="function">lwres_gethostent_r()</code> -always return -<span class="type">NULL</span>. -</p> -<p> -Successful calls to <code class="function">lwres_gethostbyname_r()</code> and -<code class="function">lwres_gethostbyaddr_r()</code> return -<em class="parameter"><code>resbuf</code></em>, a pointer to the <span class="type">struct -hostent</span> that was initialised by these functions. They return -<span class="type">NULL</span> if the lookups fail or if <em class="parameter"><code>buf</code></em> -was too small to hold the list of addresses and names referenced by -the <code class="constant">h_name</code>, <code class="constant">h_aliases</code>, and -<code class="constant">h_addr_list</code> elements of the <span class="type">struct -hostent</span>. If <em class="parameter"><code>buf</code></em> was too small, both -<code class="function">lwres_gethostbyname_r()</code> and -<code class="function">lwres_gethostbyaddr_r()</code> set the global variable -<span class="type">errno</span> to <span class="errorcode">ERANGE</span>. -</p> + Successful calls to <code class="function">lwres_gethostbyname_r()</code> and + <code class="function">lwres_gethostbyaddr_r()</code> return + <em class="parameter"><code>resbuf</code></em>, a pointer to the + <span class="type">struct hostent</span> that was initialised by these functions. They return + <span class="type">NULL</span> if the lookups fail or if <em class="parameter"><code>buf</code></em> + was too small to hold the list of addresses and names referenced by + the <code class="constant">h_name</code>, <code class="constant">h_aliases</code>, and + <code class="constant">h_addr_list</code> elements of the + <span class="type">struct hostent</span>. + If <em class="parameter"><code>buf</code></em> was too small, both + <code class="function">lwres_gethostbyname_r()</code> and + <code class="function">lwres_gethostbyaddr_r()</code> set the global + variable + <span class="type">errno</span> to <span class="errorcode">ERANGE</span>. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2550173"></a><h2>SEE ALSO</h2> -<p> -<span class="citerefentry"><span class="refentrytitle">gethostent</span>(3)</span>, +<a name="id2544193"></a><h2>SEE ALSO</h2> +<p><span class="citerefentry"><span class="refentrytitle">gethostent</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres_getipnode</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">lwres_getipnode</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres_hstrerror</span>(3 -)</span> -</p> + <span class="citerefentry"><span class="refentrytitle">lwres_hstrerror</span>(3)</span> + </p> </div> <div class="refsect1" lang="en"> -<a name="id2550209"></a><h2>BUGS</h2> -<p> -<code class="function">lwres_gethostbyname()</code>, -<code class="function">lwres_gethostbyname2()</code>, -<code class="function">lwres_gethostbyaddr()</code> -and -<code class="function">lwres_endhostent()</code> -are not thread safe; they return pointers to static data and -provide error codes through a global variable. -Thread-safe versions for name and address lookup are provided by -<code class="function">lwres_gethostbyname_r()</code>, -and -<code class="function">lwres_gethostbyaddr_r()</code> -respectively. -</p> +<a name="id2544227"></a><h2>BUGS</h2> +<p><code class="function">lwres_gethostbyname()</code>, + <code class="function">lwres_gethostbyname2()</code>, + <code class="function">lwres_gethostbyaddr()</code> + and + <code class="function">lwres_endhostent()</code> + are not thread safe; they return pointers to static data and + provide error codes through a global variable. + Thread-safe versions for name and address lookup are provided by + <code class="function">lwres_gethostbyname_r()</code>, + and + <code class="function">lwres_gethostbyaddr_r()</code> + respectively. + </p> <p> -The resolver daemon does not currently support any non-DNS -name services such as -<code class="filename">/etc/hosts</code> -or -<span class="type">NIS</span>, -consequently the above functions don't, either. -</p> + The resolver daemon does not currently support any non-DNS + name services such as + <code class="filename">/etc/hosts</code> + or + <span class="type">NIS</span>, + consequently the above functions don't, either. + </p> </div> </div></body> </html> diff --git a/usr.sbin/bind/lib/lwres/man/lwres_getipnode.3 b/usr.sbin/bind/lib/lwres/man/lwres_getipnode.3 index f044c1cc4c3..58d49f782fd 100644 --- a/usr.sbin/bind/lib/lwres/man/lwres_getipnode.3 +++ b/usr.sbin/bind/lib/lwres/man/lwres_getipnode.3 @@ -1,4 +1,4 @@ -.\" Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") +.\" Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") .\" Copyright (C) 2000, 2001, 2003 Internet Software Consortium. .\" .\" Permission to use, copy, modify, and distribute this software for any @@ -13,13 +13,13 @@ .\" OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR .\" PERFORMANCE OF THIS SOFTWARE. .\" -.\" $ISC: lwres_getipnode.3,v 1.13.2.2.4.7 2006/06/29 13:02:31 marka Exp $ +.\" $ISC: lwres_getipnode.3,v 1.17.18.11 2007/01/30 00:23:45 marka Exp $ .\" .hy 0 .ad l .\" Title: lwres_getipnode .\" Author: -.\" Generator: DocBook XSL Stylesheets v1.70.1 <http://docbook.sf.net/> +.\" Generator: DocBook XSL Stylesheets v1.71.1 <http://docbook.sf.net/> .\" Date: Jun 30, 2000 .\" Manual: BIND9 .\" Source: BIND9 @@ -36,11 +36,11 @@ lwres_getipnodebyname, lwres_getipnodebyaddr, lwres_freehostent \- lightweight r #include <lwres/netdb.h> .fi .HP 39 -.BI "struct hostent * lwres_getipnodebyname(const\ char\ *name, int\ af, int\ flags, int\ *error_num);" +.BI "struct hostent * lwres_getipnodebyname(const\ char\ *" "name" ", int\ " "af" ", int\ " "flags" ", int\ *" "error_num" ");" .HP 39 -.BI "struct hostent * lwres_getipnodebyaddr(const\ void\ *src, size_t\ len, int\ af, int\ *error_num);" +.BI "struct hostent * lwres_getipnodebyaddr(const\ void\ *" "src" ", size_t\ " "len" ", int\ " "af" ", int\ *" "error_num" ");" .HP 23 -.BI "void lwres_freehostent(struct\ hostent\ *he);" +.BI "void lwres_freehostent(struct\ hostent\ *" "he" ");" .SH "DESCRIPTION" .PP These functions perform thread safe, protocol independent nodename\-to\-address and address\-to\-nodename translation as defined in RFC2553. @@ -49,8 +49,8 @@ They use a \fBstruct hostent\fR which is defined in \fInamedb.h\fR: -.sp -.RS 3n +.PP +.RS 4 .nf struct hostent { char *h_name; /* official name of host */ @@ -65,26 +65,36 @@ struct hostent { .sp .PP The members of this structure are: -.TP 3n +.PP \fBh_name\fR +.RS 4 The official (canonical) name of the host. -.TP 3n +.RE +.PP \fBh_aliases\fR +.RS 4 A NULL\-terminated array of alternate names (nicknames) for the host. -.TP 3n +.RE +.PP \fBh_addrtype\fR +.RS 4 The type of address being returned \- usually \fBPF_INET\fR or \fBPF_INET6\fR. -.TP 3n +.RE +.PP \fBh_length\fR +.RS 4 The length of the address in bytes. -.TP 3n +.RE +.PP \fBh_addr_list\fR +.RS 4 A \fBNULL\fR terminated array of network addresses for the host. Host addresses are returned in network byte order. +.RE .PP \fBlwres_getipnodebyname()\fR looks up addresses of protocol family @@ -93,26 +103,34 @@ for the hostname \fIname\fR. The \fIflags\fR parameter contains ORed flag bits to specify the types of addresses that are searched for, and the types of addresses that are returned. The flag bits are: -.TP 3n +.PP \fBAI_V4MAPPED\fR +.RS 4 This is used with an \fIaf\fR of AF_INET6, and causes IPv4 addresses to be returned as IPv4\-mapped IPv6 addresses. -.TP 3n +.RE +.PP \fBAI_ALL\fR +.RS 4 This is used with an \fIaf\fR of AF_INET6, and causes all known addresses (IPv6 and IPv4) to be returned. If AI_V4MAPPED is also set, the IPv4 addresses are return as mapped IPv6 addresses. -.TP 3n +.RE +.PP \fBAI_ADDRCONFIG\fR +.RS 4 Only return an IPv6 or IPv4 address if here is an active network interface of that type. This is not currently implemented in the BIND 9 lightweight resolver, and the flag is ignored. -.TP 3n +.RE +.PP \fBAI_DEFAULT\fR +.RS 4 This default sets the \fBAI_V4MAPPED\fR and \fBAI_ADDRCONFIG\fR flag bits. +.RE .PP \fBlwres_getipnodebyaddr()\fR performs a reverse lookup of address @@ -150,20 +168,28 @@ to an appropriate error code and the function returns a \fBNULL\fR pointer. The error codes and their meanings are defined in \fI<lwres/netdb.h>\fR: -.TP 3n +.PP \fBHOST_NOT_FOUND\fR +.RS 4 No such host is known. -.TP 3n +.RE +.PP \fBNO_ADDRESS\fR +.RS 4 The server recognised the request and the name but no address is available. Another type of request to the name server for the domain might return an answer. -.TP 3n +.RE +.PP \fBTRY_AGAIN\fR +.RS 4 A temporary and possibly transient error occurred, such as a failure of a server to respond. The request may succeed if retried. -.TP 3n +.RE +.PP \fBNO_RECOVERY\fR +.RS 4 An unexpected failure occurred, and retrying the request is pointless. +.RE .PP -\fBlwres_hstrerror\fR(3 ) +\fBlwres_hstrerror\fR(3) translates these error codes to suitable error messages. .SH "SEE ALSO" .PP @@ -174,4 +200,7 @@ translates these error codes to suitable error messages. \fBlwres_getnameinfo\fR(3), \fBlwres_hstrerror\fR(3). .SH "COPYRIGHT" -Copyright \(co 2004, 2005 Internet Systems Consortium, Inc. ("ISC") +Copyright \(co 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") +.br +Copyright \(co 2000, 2001, 2003 Internet Software Consortium. +.br diff --git a/usr.sbin/bind/lib/lwres/man/lwres_getipnode.docbook b/usr.sbin/bind/lib/lwres/man/lwres_getipnode.docbook index 32cce201996..db8ff7afaee 100644 --- a/usr.sbin/bind/lib/lwres/man/lwres_getipnode.docbook +++ b/usr.sbin/bind/lib/lwres/man/lwres_getipnode.docbook @@ -1,11 +1,11 @@ -<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.0//EN" - "http://www.oasis-open.org/docbook/xml/4.0/docbookx.dtd" +<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" + "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [<!ENTITY mdash "—">]> <!-- - - Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") + - Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") - Copyright (C) 2000, 2001, 2003 Internet Software Consortium. - - - Permission to use, copy, modify, and distribute this software for any + - Permission to use, copy, modify, and/or distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - @@ -18,24 +18,24 @@ - PERFORMANCE OF THIS SOFTWARE. --> -<!-- $ISC: lwres_getipnode.docbook,v 1.4.2.2.4.3 2005/05/12 21:36:14 sra Exp $ --> - +<!-- $ISC: lwres_getipnode.docbook,v 1.6.18.6 2007/08/28 07:20:06 tbox Exp $ --> <refentry> -<refentryinfo> -<date>Jun 30, 2000</date> -</refentryinfo> + <refentryinfo> + <date>Jun 30, 2000</date> + </refentryinfo> -<refmeta> -<refentrytitle>lwres_getipnode</refentrytitle> -<manvolnum>3</manvolnum> -<refmiscinfo>BIND9</refmiscinfo> -</refmeta> + <refmeta> + <refentrytitle>lwres_getipnode</refentrytitle> + <manvolnum>3</manvolnum> + <refmiscinfo>BIND9</refmiscinfo> + </refmeta> <docinfo> <copyright> <year>2004</year> <year>2005</year> + <year>2007</year> <holder>Internet Systems Consortium, Inc. ("ISC")</holder> </copyright> <copyright> @@ -46,57 +46,58 @@ </copyright> </docinfo> -<refnamediv> -<refname>lwres_getipnodebyname</refname> -<refname>lwres_getipnodebyaddr</refname> -<refname>lwres_freehostent</refname> -<refpurpose>lightweight resolver nodename / address translation API</refpurpose> -</refnamediv> -<refsynopsisdiv> -<funcsynopsis> + <refnamediv> + <refname>lwres_getipnodebyname</refname> + <refname>lwres_getipnodebyaddr</refname> + <refname>lwres_freehostent</refname> + <refpurpose>lightweight resolver nodename / address translation API</refpurpose> + </refnamediv> + <refsynopsisdiv> + <funcsynopsis> <funcsynopsisinfo>#include <lwres/netdb.h></funcsynopsisinfo> <funcprototype> -<funcdef> + <funcdef> struct hostent * <function>lwres_getipnodebyname</function></funcdef> -<paramdef>const char *name</paramdef> -<paramdef>int af</paramdef> -<paramdef>int flags</paramdef> -<paramdef>int *error_num</paramdef> -</funcprototype> + <paramdef>const char *<parameter>name</parameter></paramdef> + <paramdef>int <parameter>af</parameter></paramdef> + <paramdef>int <parameter>flags</parameter></paramdef> + <paramdef>int *<parameter>error_num</parameter></paramdef> + </funcprototype> <funcprototype> -<funcdef> + <funcdef> struct hostent * <function>lwres_getipnodebyaddr</function></funcdef> -<paramdef>const void *src</paramdef> -<paramdef>size_t len</paramdef> -<paramdef>int af</paramdef> -<paramdef>int *error_num</paramdef> -</funcprototype> + <paramdef>const void *<parameter>src</parameter></paramdef> + <paramdef>size_t <parameter>len</parameter></paramdef> + <paramdef>int <parameter>af</parameter></paramdef> + <paramdef>int *<parameter>error_num</parameter></paramdef> + </funcprototype> <funcprototype> -<funcdef> + <funcdef> void <function>lwres_freehostent</function></funcdef> -<paramdef>struct hostent *he</paramdef> -</funcprototype> + <paramdef>struct hostent *<parameter>he</parameter></paramdef> + </funcprototype> </funcsynopsis> -</refsynopsisdiv> + </refsynopsisdiv> -<refsect1> -<title>DESCRIPTION</title> + <refsect1> + <title>DESCRIPTION</title> -<para> -These functions perform thread safe, protocol independent -nodename-to-address and address-to-nodename -translation as defined in RFC2553. -</para> + <para> + These functions perform thread safe, protocol independent + nodename-to-address and address-to-nodename + translation as defined in RFC2553. + </para> -<para> -They use a -<type>struct hostent</type> -which is defined in -<filename>namedb.h</filename>: -<programlisting> + <para> + They use a + <type>struct hostent</type> + which is defined in + <filename>namedb.h</filename>: + </para> + <para><programlisting> struct hostent { char *h_name; /* official name of host */ char **h_aliases; /* alias list */ @@ -106,218 +107,225 @@ struct hostent { }; #define h_addr h_addr_list[0] /* address, for backward compatibility */ </programlisting> -</para> - -<para> -The members of this structure are: -<variablelist> -<varlistentry><term><constant>h_name</constant></term> -<listitem> -<para> -The official (canonical) name of the host. -</para> -</listitem></varlistentry> -<varlistentry><term><constant>h_aliases</constant></term> -<listitem> -<para> -A NULL-terminated array of alternate names (nicknames) for the host. -</para> -</listitem></varlistentry> -<varlistentry><term><constant>h_addrtype</constant></term> -<listitem> -<para> -The type of address being returned - usually -<type>PF_INET</type> -or -<type>PF_INET6</type>. + </para> -</para> -</listitem></varlistentry> -<varlistentry><term><constant>h_length</constant></term> -<listitem> -<para> -The length of the address in bytes. -</para> -</listitem></varlistentry> -<varlistentry><term><constant>h_addr_list</constant></term> -<listitem> -<para> -A -<type>NULL</type> -terminated array of network addresses for the host. -Host addresses are returned in network byte order. -</para> -</listitem></varlistentry> -</variablelist> -</para> -<para> -<function>lwres_getipnodebyname()</function> -looks up addresses of protocol family -<parameter>af</parameter> + <para> + The members of this structure are: + <variablelist> + <varlistentry> + <term><constant>h_name</constant></term> + <listitem> + <para> + The official (canonical) name of the host. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term><constant>h_aliases</constant></term> + <listitem> + <para> + A NULL-terminated array of alternate names (nicknames) for the + host. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term><constant>h_addrtype</constant></term> + <listitem> + <para> + The type of address being returned - usually + <type>PF_INET</type> + or + <type>PF_INET6</type>. -for the hostname -<parameter>name</parameter>. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term><constant>h_length</constant></term> + <listitem> + <para> + The length of the address in bytes. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term><constant>h_addr_list</constant></term> + <listitem> + <para> + A + <type>NULL</type> + terminated array of network addresses for the host. + Host addresses are returned in network byte order. + </para> + </listitem> + </varlistentry> + </variablelist> + </para> -The -<parameter>flags</parameter> -parameter contains ORed flag bits to -specify the types of addresses that are searched -for, and the types of addresses that are returned. -The flag bits are: -<variablelist> -<varlistentry><term><constant>AI_V4MAPPED</constant></term> -<listitem> -<para> -This is used with an -<parameter>af</parameter> -of AF_INET6, and causes IPv4 addresses to be returned as IPv4-mapped -IPv6 addresses. -</para> -</listitem></varlistentry> -<varlistentry><term><constant>AI_ALL</constant></term> -<listitem> -<para> -This is used with an -<parameter>af</parameter> -of AF_INET6, and causes all known addresses (IPv6 and IPv4) to be returned. -If AI_V4MAPPED is also set, the IPv4 addresses are return as mapped -IPv6 addresses. -</para> -</listitem></varlistentry> -<varlistentry><term><constant>AI_ADDRCONFIG</constant></term> -<listitem> -<para> -Only return an IPv6 or IPv4 address if here is an active network -interface of that type. This is not currently implemented -in the BIND 9 lightweight resolver, and the flag is ignored. -</para> -</listitem></varlistentry> -<varlistentry><term><constant>AI_DEFAULT</constant></term> -<listitem> -<para> -This default sets the -<constant>AI_V4MAPPED</constant> -and -<constant>AI_ADDRCONFIG</constant> -flag bits. -</para> -</listitem></varlistentry> -</variablelist> -</para> -<para> -<function>lwres_getipnodebyaddr()</function> -performs a reverse lookup -of address -<parameter>src</parameter> -which is -<parameter>len</parameter> -bytes long. -<parameter>af</parameter> -denotes the protocol family, typically -<type>PF_INET</type> -or -<type>PF_INET6</type>. + <para><function>lwres_getipnodebyname()</function> + looks up addresses of protocol family <parameter>af</parameter> + for the hostname <parameter>name</parameter>. The + <parameter>flags</parameter> parameter contains ORed flag bits + to specify the types of addresses that are searched for, and the + types of addresses that are returned. The flag bits are: -</para> -<para> -<function>lwres_freehostent()</function> -releases all the memory associated with -the -<type>struct hostent</type> -pointer -<parameter>he</parameter>. + <variablelist> + <varlistentry> + <term><constant>AI_V4MAPPED</constant></term> + <listitem> + <para> + This is used with an + <parameter>af</parameter> + of AF_INET6, and causes IPv4 addresses to be returned as + IPv4-mapped + IPv6 addresses. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term><constant>AI_ALL</constant></term> + <listitem> + <para> + This is used with an + <parameter>af</parameter> + of AF_INET6, and causes all known addresses (IPv6 and IPv4) to + be returned. + If AI_V4MAPPED is also set, the IPv4 addresses are return as + mapped + IPv6 addresses. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term><constant>AI_ADDRCONFIG</constant></term> + <listitem> + <para> + Only return an IPv6 or IPv4 address if here is an active network + interface of that type. This is not currently implemented + in the BIND 9 lightweight resolver, and the flag is ignored. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term><constant>AI_DEFAULT</constant></term> + <listitem> + <para> + This default sets the + <constant>AI_V4MAPPED</constant> + and + <constant>AI_ADDRCONFIG</constant> + flag bits. + </para> + </listitem> + </varlistentry> + </variablelist> + </para> -Any memory allocated for the -<constant>h_name</constant>, + <para><function>lwres_getipnodebyaddr()</function> + performs a reverse lookup of address <parameter>src</parameter> + which is <parameter>len</parameter> bytes long. + <parameter>af</parameter> denotes the protocol family, typically + <type>PF_INET</type> or <type>PF_INET6</type>. + </para> + <para><function>lwres_freehostent()</function> + releases all the memory associated with the <type>struct + hostent</type> pointer <parameter>he</parameter>. Any memory + allocated for the <constant>h_name</constant>, + <constant>h_addr_list</constant> and + <constant>h_aliases</constant> is freed, as is the memory for + the <type>hostent</type> structure itself. + </para> + </refsect1> + <refsect1> + <title>RETURN VALUES</title> + <para> + If an error occurs, + <function>lwres_getipnodebyname()</function> + and + <function>lwres_getipnodebyaddr()</function> + set + <parameter>*error_num</parameter> + to an appropriate error code and the function returns a + <type>NULL</type> + pointer. + The error codes and their meanings are defined in + <filename><lwres/netdb.h></filename>: + <variablelist> + <varlistentry> + <term><constant>HOST_NOT_FOUND</constant></term> + <listitem> + <para> + No such host is known. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term><constant>NO_ADDRESS</constant></term> + <listitem> + <para> + The server recognised the request and the name but no address is + available. Another type of request to the name server for the + domain might return an answer. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term><constant>TRY_AGAIN</constant></term> + <listitem> + <para> + A temporary and possibly transient error occurred, such as a + failure of a server to respond. The request may succeed if + retried. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term><constant>NO_RECOVERY</constant></term> + <listitem> + <para> + An unexpected failure occurred, and retrying the request + is pointless. + </para> + </listitem> + </varlistentry> + </variablelist> + </para> + <para><citerefentry> + <refentrytitle>lwres_hstrerror</refentrytitle><manvolnum>3</manvolnum> + </citerefentry> + translates these error codes to suitable error messages. + </para> + </refsect1> + <refsect1> + <title>SEE ALSO</title> + <para><citerefentry> + <refentrytitle>RFC2553</refentrytitle> + </citerefentry>, -<constant>h_addr_list</constant> -and -<constant>h_aliases</constant> -is freed, as is the memory for the -<type>hostent</type> -structure itself. -</para> -</refsect1> -<refsect1> -<title>RETURN VALUES</title> -<para> -If an error occurs, -<function>lwres_getipnodebyname()</function> -and -<function>lwres_getipnodebyaddr()</function> -set -<parameter>*error_num</parameter> -to an appropriate error code and the function returns a -<type>NULL</type> -pointer. -The error codes and their meanings are defined in -<filename><lwres/netdb.h></filename>: -<variablelist> -<varlistentry><term><constant>HOST_NOT_FOUND</constant></term> -<listitem> -<para> -No such host is known. -</para> -</listitem></varlistentry> -<varlistentry><term><constant>NO_ADDRESS</constant></term> -<listitem> -<para> -The server recognised the request and the name but no address is -available. Another type of request to the name server for the -domain might return an answer. -</para> -</listitem></varlistentry> -<varlistentry><term><constant>TRY_AGAIN</constant></term> -<listitem> -<para> -A temporary and possibly transient error occurred, such as a -failure of a server to respond. The request may succeed if -retried. -</para> -</listitem></varlistentry> -<varlistentry><term><constant>NO_RECOVERY</constant></term> -<listitem> -<para> -An unexpected failure occurred, and retrying the request -is pointless. -</para> -</listitem></varlistentry> -</variablelist> -</para> -<para> -<citerefentry> -<refentrytitle>lwres_hstrerror</refentrytitle><manvolnum>3 -</manvolnum> -</citerefentry> -translates these error codes to suitable error messages. -</para> -</refsect1> -<refsect1> -<title>SEE ALSO</title> -<para> -<citerefentry> -<refentrytitle>RFC2553</refentrytitle> -</citerefentry>, + <citerefentry> + <refentrytitle>lwres</refentrytitle><manvolnum>3</manvolnum> + </citerefentry>, -<citerefentry> -<refentrytitle>lwres</refentrytitle><manvolnum>3</manvolnum> -</citerefentry>, + <citerefentry> + <refentrytitle>lwres_gethostent</refentrytitle><manvolnum>3</manvolnum> + </citerefentry>, -<citerefentry> -<refentrytitle>lwres_gethostent</refentrytitle><manvolnum>3</manvolnum> -</citerefentry>, + <citerefentry> + <refentrytitle>lwres_getaddrinfo</refentrytitle><manvolnum>3</manvolnum> + </citerefentry>, -<citerefentry> -<refentrytitle>lwres_getaddrinfo</refentrytitle><manvolnum>3</manvolnum> -</citerefentry>, + <citerefentry> + <refentrytitle>lwres_getnameinfo</refentrytitle><manvolnum>3</manvolnum> + </citerefentry>, -<citerefentry> -<refentrytitle>lwres_getnameinfo</refentrytitle><manvolnum>3</manvolnum> -</citerefentry>, - -<citerefentry> -<refentrytitle>lwres_hstrerror</refentrytitle><manvolnum>3</manvolnum> -</citerefentry>. -</para> -</refsect1> -</refentry> + <citerefentry> + <refentrytitle>lwres_hstrerror</refentrytitle><manvolnum>3</manvolnum> + </citerefentry>. + </para> + </refsect1> +</refentry><!-- + - Local variables: + - mode: sgml + - End: +--> diff --git a/usr.sbin/bind/lib/lwres/man/lwres_getipnode.html b/usr.sbin/bind/lib/lwres/man/lwres_getipnode.html index d38c835eb0d..e080b935d8b 100644 --- a/usr.sbin/bind/lib/lwres/man/lwres_getipnode.html +++ b/usr.sbin/bind/lib/lwres/man/lwres_getipnode.html @@ -1,5 +1,5 @@ <!-- - - Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") + - Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") - Copyright (C) 2000, 2001, 2003 Internet Software Consortium. - - Permission to use, copy, modify, and distribute this software for any @@ -14,15 +14,15 @@ - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. --> -<!-- $ISC: lwres_getipnode.html,v 1.7.2.1.4.11 2006/06/29 13:02:31 marka Exp $ --> +<!-- $ISC: lwres_getipnode.html,v 1.9.18.16 2007/01/30 00:23:45 marka Exp $ --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>lwres_getipnode</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.70.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.71.1"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en"> -<a name="id2482688"></a><div class="titlepage"></div> +<a name="id2476275"></a><div class="titlepage"></div> <div class="refnamediv"> <h2>Name</h2> <p>lwres_getipnodebyname, lwres_getipnodebyaddr, lwres_freehostent — lightweight resolver nodename / address translation API</p> @@ -36,29 +36,27 @@ <td><code class="funcdef"> struct hostent * <b class="fsfunc">lwres_getipnodebyname</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>const char * </td> +<td> +<var class="pdparam">name</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>int </td> +<td> +<var class="pdparam">af</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>int </td> +<td> +<var class="pdparam">flags</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>int * </td> <td> -<code>)</code>;</td> +<var class="pdparam">error_num</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -66,62 +64,52 @@ struct hostent * <td><code class="funcdef"> struct hostent * <b class="fsfunc">lwres_getipnodebyaddr</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>const void * </td> +<td> +<var class="pdparam">src</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>size_t </td> +<td> +<var class="pdparam">len</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>int </td> +<td> +<var class="pdparam">af</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>int * </td> <td> -<code>)</code>;</td> +<var class="pdparam">error_num</var><code>)</code>;</td> </tr> </table> -<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0"> -<tr> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0"><tr> <td><code class="funcdef"> void <b class="fsfunc">lwres_freehostent</b>(</code></td> -<td> </td> -<td> -<code>)</code>;</td> -</tr> -<tr> -<td> </td> -<td> </td> +<td>struct hostent * </td> <td> -<code>)</code>;</td> -</tr> -</table> +<var class="pdparam">he</var><code>)</code>;</td> +</tr></table> </div> </div> <div class="refsect1" lang="en"> -<a name="id2549461"></a><h2>DESCRIPTION</h2> +<a name="id2543431"></a><h2>DESCRIPTION</h2> <p> -These functions perform thread safe, protocol independent -nodename-to-address and address-to-nodename -translation as defined in RFC2553. -</p> + These functions perform thread safe, protocol independent + nodename-to-address and address-to-nodename + translation as defined in RFC2553. + </p> <p> -They use a -<span class="type">struct hostent</span> -which is defined in -<code class="filename">namedb.h</code>: -</p> + They use a + <span class="type">struct hostent</span> + which is defined in + <code class="filename">namedb.h</code>: + </p> <pre class="programlisting"> struct hostent { char *h_name; /* official name of host */ @@ -133,184 +121,159 @@ struct hostent { #define h_addr h_addr_list[0] /* address, for backward compatibility */ </pre> <p> -</p> + </p> <p> -The members of this structure are: -</p> + The members of this structure are: + </p> <div class="variablelist"><dl> <dt><span class="term"><code class="constant">h_name</code></span></dt> <dd><p> -The official (canonical) name of the host. -</p></dd> + The official (canonical) name of the host. + </p></dd> <dt><span class="term"><code class="constant">h_aliases</code></span></dt> <dd><p> -A NULL-terminated array of alternate names (nicknames) for the host. -</p></dd> + A NULL-terminated array of alternate names (nicknames) for the + host. + </p></dd> <dt><span class="term"><code class="constant">h_addrtype</code></span></dt> <dd><p> -The type of address being returned - usually -<span class="type">PF_INET</span> -or -<span class="type">PF_INET6</span>. + The type of address being returned - usually + <span class="type">PF_INET</span> + or + <span class="type">PF_INET6</span>. -</p></dd> + </p></dd> <dt><span class="term"><code class="constant">h_length</code></span></dt> <dd><p> -The length of the address in bytes. -</p></dd> + The length of the address in bytes. + </p></dd> <dt><span class="term"><code class="constant">h_addr_list</code></span></dt> <dd><p> -A -<span class="type">NULL</span> -terminated array of network addresses for the host. -Host addresses are returned in network byte order. -</p></dd> + A + <span class="type">NULL</span> + terminated array of network addresses for the host. + Host addresses are returned in network byte order. + </p></dd> </dl></div> <p> -</p> -<p> -<code class="function">lwres_getipnodebyname()</code> -looks up addresses of protocol family -<em class="parameter"><code>af</code></em> - -for the hostname -<em class="parameter"><code>name</code></em>. + </p> +<p><code class="function">lwres_getipnodebyname()</code> + looks up addresses of protocol family <em class="parameter"><code>af</code></em> + for the hostname <em class="parameter"><code>name</code></em>. The + <em class="parameter"><code>flags</code></em> parameter contains ORed flag bits + to specify the types of addresses that are searched for, and the + types of addresses that are returned. The flag bits are: -The -<em class="parameter"><code>flags</code></em> -parameter contains ORed flag bits to -specify the types of addresses that are searched -for, and the types of addresses that are returned. -The flag bits are: -</p> + </p> <div class="variablelist"><dl> <dt><span class="term"><code class="constant">AI_V4MAPPED</code></span></dt> <dd><p> -This is used with an -<em class="parameter"><code>af</code></em> -of AF_INET6, and causes IPv4 addresses to be returned as IPv4-mapped -IPv6 addresses. -</p></dd> + This is used with an + <em class="parameter"><code>af</code></em> + of AF_INET6, and causes IPv4 addresses to be returned as + IPv4-mapped + IPv6 addresses. + </p></dd> <dt><span class="term"><code class="constant">AI_ALL</code></span></dt> <dd><p> -This is used with an -<em class="parameter"><code>af</code></em> -of AF_INET6, and causes all known addresses (IPv6 and IPv4) to be returned. -If AI_V4MAPPED is also set, the IPv4 addresses are return as mapped -IPv6 addresses. -</p></dd> + This is used with an + <em class="parameter"><code>af</code></em> + of AF_INET6, and causes all known addresses (IPv6 and IPv4) to + be returned. + If AI_V4MAPPED is also set, the IPv4 addresses are return as + mapped + IPv6 addresses. + </p></dd> <dt><span class="term"><code class="constant">AI_ADDRCONFIG</code></span></dt> <dd><p> -Only return an IPv6 or IPv4 address if here is an active network -interface of that type. This is not currently implemented -in the BIND 9 lightweight resolver, and the flag is ignored. -</p></dd> + Only return an IPv6 or IPv4 address if here is an active network + interface of that type. This is not currently implemented + in the BIND 9 lightweight resolver, and the flag is ignored. + </p></dd> <dt><span class="term"><code class="constant">AI_DEFAULT</code></span></dt> <dd><p> -This default sets the -<code class="constant">AI_V4MAPPED</code> -and -<code class="constant">AI_ADDRCONFIG</code> -flag bits. -</p></dd> + This default sets the + <code class="constant">AI_V4MAPPED</code> + and + <code class="constant">AI_ADDRCONFIG</code> + flag bits. + </p></dd> </dl></div> <p> -</p> -<p> -<code class="function">lwres_getipnodebyaddr()</code> -performs a reverse lookup -of address -<em class="parameter"><code>src</code></em> -which is -<em class="parameter"><code>len</code></em> -bytes long. -<em class="parameter"><code>af</code></em> -denotes the protocol family, typically -<span class="type">PF_INET</span> -or -<span class="type">PF_INET6</span>. - -</p> -<p> -<code class="function">lwres_freehostent()</code> -releases all the memory associated with -the -<span class="type">struct hostent</span> -pointer -<em class="parameter"><code>he</code></em>. - -Any memory allocated for the -<code class="constant">h_name</code>, - -<code class="constant">h_addr_list</code> -and -<code class="constant">h_aliases</code> -is freed, as is the memory for the -<span class="type">hostent</span> -structure itself. -</p> + </p> +<p><code class="function">lwres_getipnodebyaddr()</code> + performs a reverse lookup of address <em class="parameter"><code>src</code></em> + which is <em class="parameter"><code>len</code></em> bytes long. + <em class="parameter"><code>af</code></em> denotes the protocol family, typically + <span class="type">PF_INET</span> or <span class="type">PF_INET6</span>. + </p> +<p><code class="function">lwres_freehostent()</code> + releases all the memory associated with the <span class="type">struct + hostent</span> pointer <em class="parameter"><code>he</code></em>. Any memory + allocated for the <code class="constant">h_name</code>, + <code class="constant">h_addr_list</code> and + <code class="constant">h_aliases</code> is freed, as is the memory for + the <span class="type">hostent</span> structure itself. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549832"></a><h2>RETURN VALUES</h2> +<a name="id2543689"></a><h2>RETURN VALUES</h2> <p> -If an error occurs, -<code class="function">lwres_getipnodebyname()</code> -and -<code class="function">lwres_getipnodebyaddr()</code> -set -<em class="parameter"><code>*error_num</code></em> -to an appropriate error code and the function returns a -<span class="type">NULL</span> -pointer. -The error codes and their meanings are defined in -<code class="filename"><lwres/netdb.h></code>: -</p> + If an error occurs, + <code class="function">lwres_getipnodebyname()</code> + and + <code class="function">lwres_getipnodebyaddr()</code> + set + <em class="parameter"><code>*error_num</code></em> + to an appropriate error code and the function returns a + <span class="type">NULL</span> + pointer. + The error codes and their meanings are defined in + <code class="filename"><lwres/netdb.h></code>: + </p> <div class="variablelist"><dl> <dt><span class="term"><code class="constant">HOST_NOT_FOUND</code></span></dt> <dd><p> -No such host is known. -</p></dd> + No such host is known. + </p></dd> <dt><span class="term"><code class="constant">NO_ADDRESS</code></span></dt> <dd><p> -The server recognised the request and the name but no address is -available. Another type of request to the name server for the -domain might return an answer. -</p></dd> + The server recognised the request and the name but no address is + available. Another type of request to the name server for the + domain might return an answer. + </p></dd> <dt><span class="term"><code class="constant">TRY_AGAIN</code></span></dt> <dd><p> -A temporary and possibly transient error occurred, such as a -failure of a server to respond. The request may succeed if -retried. -</p></dd> + A temporary and possibly transient error occurred, such as a + failure of a server to respond. The request may succeed if + retried. + </p></dd> <dt><span class="term"><code class="constant">NO_RECOVERY</code></span></dt> <dd><p> -An unexpected failure occurred, and retrying the request -is pointless. -</p></dd> + An unexpected failure occurred, and retrying the request + is pointless. + </p></dd> </dl></div> <p> -</p> -<p> -<span class="citerefentry"><span class="refentrytitle">lwres_hstrerror</span>(3 -)</span> -translates these error codes to suitable error messages. -</p> + </p> +<p><span class="citerefentry"><span class="refentrytitle">lwres_hstrerror</span>(3)</span> + translates these error codes to suitable error messages. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549923"></a><h2>SEE ALSO</h2> -<p> -<span class="citerefentry"><span class="refentrytitle">RFC2553</span></span>, +<a name="id2543786"></a><h2>SEE ALSO</h2> +<p><span class="citerefentry"><span class="refentrytitle">RFC2553</span></span>, -<span class="citerefentry"><span class="refentrytitle">lwres</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">lwres</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres_gethostent</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">lwres_gethostent</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres_getaddrinfo</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">lwres_getaddrinfo</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres_getnameinfo</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">lwres_getnameinfo</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres_hstrerror</span>(3)</span>. -</p> + <span class="citerefentry"><span class="refentrytitle">lwres_hstrerror</span>(3)</span>. + </p> </div> </div></body> </html> diff --git a/usr.sbin/bind/lib/lwres/man/lwres_getnameinfo.html b/usr.sbin/bind/lib/lwres/man/lwres_getnameinfo.html index 32cfef61d5f..6a3784b47f2 100644 --- a/usr.sbin/bind/lib/lwres/man/lwres_getnameinfo.html +++ b/usr.sbin/bind/lib/lwres/man/lwres_getnameinfo.html @@ -1,5 +1,5 @@ <!-- - - Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") + - Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") - Copyright (C) 2000, 2001 Internet Software Consortium. - - Permission to use, copy, modify, and distribute this software for any @@ -14,18 +14,20 @@ - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. --> -<!-- $ISC: lwres_getnameinfo.html,v 1.5.2.1.4.12 2006/06/29 13:02:31 marka Exp $ --> +<!-- $ISC: lwres_getnameinfo.html,v 1.6.18.17 2007/01/30 00:23:45 marka Exp $ --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>lwres_getnameinfo</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.70.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.71.1"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en"> -<a name="id2482688"></a><div class="titlepage"></div> +<a name="id2476275"></a><div class="titlepage"></div> <div class="refnamediv"> <h2>Name</h2> -<p>lwres_getnameinfo — lightweight resolver socket address structure to hostname and service name</p> +<p>lwres_getnameinfo — lightweight resolver socket address structure to hostname and + service name + </p> </div> <div class="refsynopsisdiv"> <h2>Synopsis</h2> @@ -36,124 +38,139 @@ <td><code class="funcdef"> int <b class="fsfunc">lwres_getnameinfo</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>const struct sockaddr * </td> +<td> +<var class="pdparam">sa</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>size_t </td> +<td> +<var class="pdparam">salen</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>char * </td> +<td> +<var class="pdparam">host</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>size_t </td> +<td> +<var class="pdparam">hostlen</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>char * </td> +<td> +<var class="pdparam">serv</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>size_t </td> +<td> +<var class="pdparam">servlen</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>int </td> <td> -<code>)</code>;</td> +<var class="pdparam">flags</var><code>)</code>;</td> </tr> </table> </div> </div> <div class="refsect1" lang="en"> -<a name="id2549427"></a><h2>DESCRIPTION</h2> -<p> This function is equivalent to the <span class="citerefentry"><span class="refentrytitle">getnameinfo</span>(3)</span> function defined in RFC2133. -<code class="function">lwres_getnameinfo()</code> returns the hostname for the -<span class="type">struct sockaddr</span> <em class="parameter"><code>sa</code></em> which is -<em class="parameter"><code>salen</code></em> bytes long. The hostname is of length -<em class="parameter"><code>hostlen</code></em> and is returned via -<em class="parameter"><code>*host.</code></em> The maximum length of the hostname is -1025 bytes: <code class="constant">NI_MAXHOST</code>.</p> +<a name="id2543393"></a><h2>DESCRIPTION</h2> +<p> + This function is equivalent to the + <span class="citerefentry"><span class="refentrytitle">getnameinfo</span>(3)</span> function defined in RFC2133. + <code class="function">lwres_getnameinfo()</code> returns the + hostname for the + <span class="type">struct sockaddr</span> <em class="parameter"><code>sa</code></em> which + is + <em class="parameter"><code>salen</code></em> bytes long. The hostname is of + length + <em class="parameter"><code>hostlen</code></em> and is returned via + <em class="parameter"><code>*host.</code></em> The maximum length of the + hostname is + 1025 bytes: <code class="constant">NI_MAXHOST</code>. + </p> <p> The name of the service associated with the port number in -<em class="parameter"><code>sa</code></em> is returned in <em class="parameter"><code>*serv.</code></em> -It is <em class="parameter"><code>servlen</code></em> bytes long. The maximum length -of the service name is <code class="constant">NI_MAXSERV</code> - 32 bytes. -</p> -<p> The <em class="parameter"><code>flags</code></em> argument sets the following -bits: -</p> + <em class="parameter"><code>sa</code></em> is returned in <em class="parameter"><code>*serv.</code></em> + It is <em class="parameter"><code>servlen</code></em> bytes long. The + maximum length + of the service name is <code class="constant">NI_MAXSERV</code> - 32 + bytes. + </p> +<p> + The <em class="parameter"><code>flags</code></em> argument sets the + following + bits: + </p> <div class="variablelist"><dl> <dt><span class="term"><code class="constant">NI_NOFQDN</code></span></dt> <dd><p> -A fully qualified domain name is not required for local hosts. -The local part of the fully qualified domain name is returned instead. -</p></dd> + A fully qualified domain name is not required for local hosts. + The local part of the fully qualified domain name is returned + instead. + </p></dd> <dt><span class="term"><code class="constant">NI_NUMERICHOST</code></span></dt> <dd><p> -Return the address in numeric form, as if calling inet_ntop(), -instead of a host name. -</p></dd> + Return the address in numeric form, as if calling inet_ntop(), + instead of a host name. + </p></dd> <dt><span class="term"><code class="constant">NI_NAMEREQD</code></span></dt> <dd><p> -A name is required. If the hostname cannot be found in the DNS and -this flag is set, a non-zero error code is returned. -If the hostname is not found and the flag is not set, the -address is returned in numeric form. -</p></dd> + A name is required. If the hostname cannot be found in the DNS + and + this flag is set, a non-zero error code is returned. + If the hostname is not found and the flag is not set, the + address is returned in numeric form. + </p></dd> <dt><span class="term"><code class="constant">NI_NUMERICSERV</code></span></dt> <dd><p> -The service name is returned as a digit string representing the port number. -</p></dd> + The service name is returned as a digit string representing the + port number. + </p></dd> <dt><span class="term"><code class="constant">NI_DGRAM</code></span></dt> <dd><p> -Specifies that the service being looked up is a datagram -service, and causes getservbyport() to be called with a second -argument of "udp" instead of its default of "tcp". This is required -for the few ports (512-514) that have different services for UDP and -TCP. -</p></dd> + Specifies that the service being looked up is a datagram + service, and causes getservbyport() to be called with a second + argument of "udp" instead of its default of "tcp". This is + required + for the few ports (512-514) that have different services for UDP + and + TCP. + </p></dd> </dl></div> <p> -</p> + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549553"></a><h2>RETURN VALUES</h2> -<p> -<code class="function">lwres_getnameinfo()</code> -returns 0 on success or a non-zero error code if an error occurs. -</p> +<a name="id2543534"></a><h2>RETURN VALUES</h2> +<p><code class="function">lwres_getnameinfo()</code> + returns 0 on success or a non-zero error code if an error occurs. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549634"></a><h2>SEE ALSO</h2> -<p> -<span class="citerefentry"><span class="refentrytitle">RFC2133</span></span>, -<span class="citerefentry"><span class="refentrytitle">getservbyport</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres_getnameinfo</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres_getnamebyaddr</span>(3)</span>. -<span class="citerefentry"><span class="refentrytitle">lwres_net_ntop</span>(3)</span>. -</p> +<a name="id2543546"></a><h2>SEE ALSO</h2> +<p><span class="citerefentry"><span class="refentrytitle">RFC2133</span></span>, + <span class="citerefentry"><span class="refentrytitle">getservbyport</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">lwres</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">lwres_getnameinfo</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">lwres_getnamebyaddr</span>(3)</span>. + <span class="citerefentry"><span class="refentrytitle">lwres_net_ntop</span>(3)</span>. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549692"></a><h2>BUGS</h2> +<a name="id2543604"></a><h2>BUGS</h2> <p> -RFC2133 fails to define what the nonzero return values of -<span class="citerefentry"><span class="refentrytitle">getnameinfo</span>(3)</span> -are. -</p> + RFC2133 fails to define what the nonzero return values of + <span class="citerefentry"><span class="refentrytitle">getnameinfo</span>(3)</span> + are. + </p> </div> </div></body> </html> diff --git a/usr.sbin/bind/lib/lwres/man/lwres_getrrsetbyname.html b/usr.sbin/bind/lib/lwres/man/lwres_getrrsetbyname.html index 75b4f5b5ede..76d5736f5a7 100644 --- a/usr.sbin/bind/lib/lwres/man/lwres_getrrsetbyname.html +++ b/usr.sbin/bind/lib/lwres/man/lwres_getrrsetbyname.html @@ -1,5 +1,5 @@ <!-- - - Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") + - Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") - Copyright (C) 2000, 2001 Internet Software Consortium. - - Permission to use, copy, modify, and distribute this software for any @@ -14,15 +14,15 @@ - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. --> -<!-- $ISC: lwres_getrrsetbyname.html,v 1.5.2.1.4.11 2006/06/29 13:02:31 marka Exp $ --> +<!-- $ISC: lwres_getrrsetbyname.html,v 1.6.18.17 2007/01/30 00:23:45 marka Exp $ --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>lwres_getrrsetbyname</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.70.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.71.1"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en"> -<a name="id2482688"></a><div class="titlepage"></div> +<a name="id2476275"></a><div class="titlepage"></div> <div class="refnamediv"> <h2>Name</h2> <p>lwres_getrrsetbyname, lwres_freerrset — retrieve DNS records</p> @@ -36,62 +36,56 @@ <td><code class="funcdef"> int <b class="fsfunc">lwres_getrrsetbyname</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>const char * </td> +<td> +<var class="pdparam">hostname</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>unsigned int </td> +<td> +<var class="pdparam">rdclass</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>unsigned int </td> +<td> +<var class="pdparam">rdtype</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>unsigned int </td> +<td> +<var class="pdparam">flags</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>struct rrsetinfo ** </td> <td> -<code>)</code>;</td> +<var class="pdparam">res</var><code>)</code>;</td> </tr> </table> -<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0"> -<tr> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0"><tr> <td><code class="funcdef"> void <b class="fsfunc">lwres_freerrset</b>(</code></td> -<td> </td> -<td> -<code>)</code>;</td> -</tr> -<tr> -<td> </td> -<td> </td> +<td>struct rrsetinfo * </td> <td> -<code>)</code>;</td> -</tr> -</table> +<var class="pdparam">rrset</var><code>)</code>;</td> +</tr></table> </div> <p> -The following structures are used: -</p> + The following structures are used: + </p> <pre class="programlisting"> struct rdatainfo { unsigned int rdi_length; /* length of data */ unsigned char *rdi_data; /* record data */ }; - +</pre> +<p> + </p> +<pre class="programlisting"> struct rrsetinfo { unsigned int rri_flags; /* RRSET_VALIDATED... */ unsigned int rri_rdclass; /* class number */ @@ -105,126 +99,94 @@ struct rrsetinfo { }; </pre> <p> -</p> + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549443"></a><h2>DESCRIPTION</h2> -<p> -<code class="function">lwres_getrrsetbyname()</code> -gets a set of resource records associated with a -<em class="parameter"><code>hostname</code></em>, - -<em class="parameter"><code>class</code></em>, - -and -<em class="parameter"><code>type</code></em>. - -<em class="parameter"><code>hostname</code></em> -is -a pointer a to null-terminated string. The -<em class="parameter"><code>flags</code></em> -field is currently unused and must be zero. -</p> +<a name="id2543414"></a><h2>DESCRIPTION</h2> +<p><code class="function">lwres_getrrsetbyname()</code> + gets a set of resource records associated with a + <em class="parameter"><code>hostname</code></em>, <em class="parameter"><code>class</code></em>, + and <em class="parameter"><code>type</code></em>. + <em class="parameter"><code>hostname</code></em> is a pointer a to + null-terminated string. The <em class="parameter"><code>flags</code></em> field + is currently unused and must be zero. + </p> <p> -After a successful call to -<code class="function">lwres_getrrsetbyname()</code>, - -<em class="parameter"><code>*res</code></em> -is a pointer to an -<span class="type">rrsetinfo</span> -structure, containing a list of one or more -<span class="type">rdatainfo</span> -structures containing resource records and potentially another list of -<span class="type">rdatainfo</span> -structures containing SIG resource records -associated with those records. -The members -<code class="constant">rri_rdclass</code> -and -<code class="constant">rri_rdtype</code> -are copied from the parameters. -<code class="constant">rri_ttl</code> -and -<code class="constant">rri_name</code> -are properties of the obtained rrset. -The resource records contained in -<code class="constant">rri_rdatas</code> -and -<code class="constant">rri_sigs</code> -are in uncompressed DNS wire format. -Properties of the rdataset are represented in the -<code class="constant">rri_flags</code> -bitfield. If the RRSET_VALIDATED bit is set, the data has been DNSSEC -validated and the signatures verified. -</p> + After a successful call to + <code class="function">lwres_getrrsetbyname()</code>, + <em class="parameter"><code>*res</code></em> is a pointer to an + <span class="type">rrsetinfo</span> structure, containing a list of one or + more <span class="type">rdatainfo</span> structures containing resource + records and potentially another list of <span class="type">rdatainfo</span> + structures containing SIG resource records associated with those + records. The members <code class="constant">rri_rdclass</code> and + <code class="constant">rri_rdtype</code> are copied from the parameters. + <code class="constant">rri_ttl</code> and <code class="constant">rri_name</code> + are properties of the obtained rrset. The resource records + contained in <code class="constant">rri_rdatas</code> and + <code class="constant">rri_sigs</code> are in uncompressed DNS wire + format. Properties of the rdataset are represented in the + <code class="constant">rri_flags</code> bitfield. If the RRSET_VALIDATED + bit is set, the data has been DNSSEC validated and the + signatures verified. + </p> <p> -All of the information returned by -<code class="function">lwres_getrrsetbyname()</code> -is dynamically allocated: the -<code class="constant">rrsetinfo</code> -and -<code class="constant">rdatainfo</code> -structures, -and the canonical host name strings pointed to by the -<code class="constant">rrsetinfo</code>structure. - -Memory allocated for the dynamically allocated structures created by -a successful call to -<code class="function">lwres_getrrsetbyname()</code> -is released by -<code class="function">lwres_freerrset()</code>. + All of the information returned by + <code class="function">lwres_getrrsetbyname()</code> is dynamically + allocated: the <code class="constant">rrsetinfo</code> and + <code class="constant">rdatainfo</code> structures, and the canonical + host name strings pointed to by the + <code class="constant">rrsetinfo</code>structure. -<em class="parameter"><code>rrset</code></em> -is a pointer to a -<span class="type">struct rrset</span> -created by a call to -<code class="function">lwres_getrrsetbyname()</code>. + Memory allocated for the dynamically allocated structures + created by a successful call to + <code class="function">lwres_getrrsetbyname()</code> is released by + <code class="function">lwres_freerrset()</code>. -</p> -<p> -</p> + <em class="parameter"><code>rrset</code></em> is a pointer to a <span class="type">struct + rrset</span> created by a call to + <code class="function">lwres_getrrsetbyname()</code>. + </p> +<p></p> </div> <div class="refsect1" lang="en"> -<a name="id2549623"></a><h2>RETURN VALUES</h2> -<p> -<code class="function">lwres_getrrsetbyname()</code> -returns zero on success, and one of the following error -codes if an error occurred: -</p> +<a name="id2543526"></a><h2>RETURN VALUES</h2> +<p><code class="function">lwres_getrrsetbyname()</code> + returns zero on success, and one of the following error codes if + an error occurred: + </p> <div class="variablelist"><dl> <dt><span class="term"><code class="constant">ERRSET_NONAME</code></span></dt> <dd><p> -the name does not exist -</p></dd> + the name does not exist + </p></dd> <dt><span class="term"><code class="constant">ERRSET_NODATA</code></span></dt> <dd><p> -the name exists, but does not have data of the desired type -</p></dd> + the name exists, but does not have data of the desired type + </p></dd> <dt><span class="term"><code class="constant">ERRSET_NOMEMORY</code></span></dt> <dd><p> -memory could not be allocated -</p></dd> + memory could not be allocated + </p></dd> <dt><span class="term"><code class="constant">ERRSET_INVAL</code></span></dt> <dd><p> -a parameter is invalid -</p></dd> + a parameter is invalid + </p></dd> <dt><span class="term"><code class="constant">ERRSET_FAIL</code></span></dt> <dd><p> -other failure -</p></dd> + other failure + </p></dd> <dt><span class="term"><code class="constant"></code></span></dt> -<dd><p> -</p></dd> +<dd><p></p></dd> </dl></div> <p> -</p> + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549697"></a><h2>SEE ALSO</h2> -<p> -<span class="citerefentry"><span class="refentrytitle">lwres</span>(3)</span>. -</p> +<a name="id2543626"></a><h2>SEE ALSO</h2> +<p><span class="citerefentry"><span class="refentrytitle">lwres</span>(3)</span>. + </p> </div> </div></body> </html> diff --git a/usr.sbin/bind/lib/lwres/man/lwres_gnba.html b/usr.sbin/bind/lib/lwres/man/lwres_gnba.html index 3d898597e4c..8883db6cb96 100644 --- a/usr.sbin/bind/lib/lwres/man/lwres_gnba.html +++ b/usr.sbin/bind/lib/lwres/man/lwres_gnba.html @@ -1,5 +1,5 @@ <!-- - - Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") + - Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") - Copyright (C) 2000, 2001 Internet Software Consortium. - - Permission to use, copy, modify, and distribute this software for any @@ -14,15 +14,15 @@ - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. --> -<!-- $ISC: lwres_gnba.html,v 1.6.2.1.4.11 2006/06/29 13:02:31 marka Exp $ --> +<!-- $ISC: lwres_gnba.html,v 1.7.18.17 2007/01/30 00:23:45 marka Exp $ --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>lwres_gnba</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.70.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.71.1"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en"> -<a name="id2482688"></a><div class="titlepage"></div> +<a name="id2476275"></a><div class="titlepage"></div> <div class="refnamediv"> <h2>Name</h2> <p>lwres_gnbarequest_render, lwres_gnbaresponse_render, lwres_gnbarequest_parse, lwres_gnbaresponse_parse, lwres_gnbaresponse_free, lwres_gnbarequest_free — lightweight resolver getnamebyaddress message handling</p> @@ -39,31 +39,25 @@ lwres_result_t <b class="fsfunc">lwres_gnbarequest_render</b> (</code></td> -<td> </td> -<td> -<var class="pdparam">ctx</var>, </td> -</tr> -<tr> -<td> </td> -<td> </td> +<td>lwres_context_t * </td> <td> <var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_gnbarequest_t * </td> <td> <var class="pdparam">req</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_lwpacket_t * </td> <td> <var class="pdparam">pkt</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_buffer_t * </td> <td> <var class="pdparam">b</var><code>)</code>;</td> </tr> @@ -74,29 +68,27 @@ lwres_result_t lwres_result_t <b class="fsfunc">lwres_gnbaresponse_render</b> (</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_gnbaresponse_t * </td> +<td> +<var class="pdparam">req</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_lwpacket_t * </td> +<td> +<var class="pdparam">pkt</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_buffer_t * </td> <td> -<code>)</code>;</td> +<var class="pdparam">b</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -104,29 +96,27 @@ lwres_result_t <td><code class="funcdef"> lwres_result_t <b class="fsfunc">lwres_gnbarequest_parse</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_buffer_t * </td> +<td> +<var class="pdparam">b</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_lwpacket_t * </td> +<td> +<var class="pdparam">pkt</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_gnbarequest_t ** </td> <td> -<code>)</code>;</td> +<var class="pdparam">structp</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -134,29 +124,27 @@ lwres_result_t <td><code class="funcdef"> lwres_result_t <b class="fsfunc">lwres_gnbaresponse_parse</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_buffer_t * </td> +<td> +<var class="pdparam">b</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_lwpacket_t * </td> +<td> +<var class="pdparam">pkt</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_gnbaresponse_t ** </td> <td> -<code>)</code>;</td> +<var class="pdparam">structp</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -165,19 +153,15 @@ lwres_result_t void <b class="fsfunc">lwres_gnbaresponse_free</b> (</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_gnbaresponse_t ** </td> <td> -<code>)</code>;</td> +<var class="pdparam">structp</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0"> @@ -185,56 +169,59 @@ void <td><code class="funcdef"> void <b class="fsfunc">lwres_gnbarequest_free</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_gnbarequest_t ** </td> <td> -<code>)</code>;</td> +<var class="pdparam">structp</var><code>)</code>;</td> </tr> </table> </div> </div> <div class="refsect1" lang="en"> -<a name="id2549540"></a><h2>DESCRIPTION</h2> +<a name="id2543525"></a><h2>DESCRIPTION</h2> <p> -These are low-level routines for creating and parsing -lightweight resolver address-to-name lookup request and -response messages. -</p> + These are low-level routines for creating and parsing + lightweight resolver address-to-name lookup request and + response messages. + </p> <p> -There are four main functions for the getnamebyaddr opcode. -One render function converts a getnamebyaddr request structure — -<span class="type">lwres_gnbarequest_t</span> — -to the lightweight resolver's canonical format. -It is complemented by a parse function that converts a packet in this -canonical format to a getnamebyaddr request structure. -Another render function converts the getnamebyaddr response structure — -<span class="type">lwres_gnbaresponse_t</span> -to the canonical format. -This is complemented by a parse function which converts a packet in -canonical format to a getnamebyaddr response structure. -</p> + There are four main functions for the getnamebyaddr opcode. + One render function converts a getnamebyaddr request structure — + <span class="type">lwres_gnbarequest_t</span> — + to the lightweight resolver's canonical format. + It is complemented by a parse function that converts a packet in this + canonical format to a getnamebyaddr request structure. + Another render function converts the getnamebyaddr response structure + — + <span class="type">lwres_gnbaresponse_t</span> + to the canonical format. + This is complemented by a parse function which converts a packet in + canonical format to a getnamebyaddr response structure. + </p> <p> -These structures are defined in -<code class="filename">lwres/lwres.h</code>. -They are shown below. -</p> + These structures are defined in + <code class="filename">lwres/lwres.h</code>. + They are shown below. + </p> <pre class="programlisting"> #define LWRES_OPCODE_GETNAMEBYADDR 0x00010002U - +</pre> +<p> + </p> +<pre class="programlisting"> typedef struct { lwres_uint32_t flags; lwres_addr_t addr; } lwres_gnbarequest_t; - +</pre> +<p> + </p> +<pre class="programlisting"> typedef struct { lwres_uint32_t flags; lwres_uint16_t naliases; @@ -247,109 +234,83 @@ typedef struct { } lwres_gnbaresponse_t; </pre> <p> -</p> -<p> -<code class="function">lwres_gnbarequest_render()</code> -uses resolver context -<code class="varname">ctx</code> -to convert getnamebyaddr request structure -<code class="varname">req</code> -to canonical format. -The packet header structure -<code class="varname">pkt</code> -is initialised and transferred to -buffer -<code class="varname">b</code>. -The contents of -<code class="varname">*req</code> -are then appended to the buffer in canonical format. -<code class="function">lwres_gnbaresponse_render()</code> -performs the same task, except it converts a getnamebyaddr response structure -<span class="type">lwres_gnbaresponse_t</span> -to the lightweight resolver's canonical format. -</p> -<p> -<code class="function">lwres_gnbarequest_parse()</code> -uses context -<code class="varname">ctx</code> -to convert the contents of packet -<code class="varname">pkt</code> -to a -<span class="type">lwres_gnbarequest_t</span> -structure. -Buffer -<code class="varname">b</code> -provides space to be used for storing this structure. -When the function succeeds, the resulting -<span class="type">lwres_gnbarequest_t</span> -is made available through -<code class="varname">*structp</code>. -<code class="function">lwres_gnbaresponse_parse()</code> -offers the same semantics as -<code class="function">lwres_gnbarequest_parse()</code> -except it yields a -<span class="type">lwres_gnbaresponse_t</span> -structure. -</p> -<p> -<code class="function">lwres_gnbaresponse_free()</code> -and -<code class="function">lwres_gnbarequest_free()</code> -release the memory in resolver context -<code class="varname">ctx</code> -that was allocated to the -<span class="type">lwres_gnbaresponse_t</span> -or -<span class="type">lwres_gnbarequest_t</span> -structures referenced via -<code class="varname">structp</code>. -Any memory associated with ancillary buffers and strings for those -structures is also discarded. -</p> + </p> +<p><code class="function">lwres_gnbarequest_render()</code> + uses resolver context <code class="varname">ctx</code> to convert + getnamebyaddr request structure <code class="varname">req</code> to + canonical format. The packet header structure + <code class="varname">pkt</code> is initialised and transferred to buffer + <code class="varname">b</code>. The contents of <code class="varname">*req</code> + are then appended to the buffer in canonical format. + <code class="function">lwres_gnbaresponse_render()</code> performs the + same task, except it converts a getnamebyaddr response structure + <span class="type">lwres_gnbaresponse_t</span> to the lightweight resolver's + canonical format. + </p> +<p><code class="function">lwres_gnbarequest_parse()</code> + uses context <code class="varname">ctx</code> to convert the contents of + packet <code class="varname">pkt</code> to a + <span class="type">lwres_gnbarequest_t</span> structure. Buffer + <code class="varname">b</code> provides space to be used for storing this + structure. When the function succeeds, the resulting + <span class="type">lwres_gnbarequest_t</span> is made available through + <code class="varname">*structp</code>. + <code class="function">lwres_gnbaresponse_parse()</code> offers the same + semantics as <code class="function">lwres_gnbarequest_parse()</code> + except it yields a <span class="type">lwres_gnbaresponse_t</span> structure. + </p> +<p><code class="function">lwres_gnbaresponse_free()</code> + and <code class="function">lwres_gnbarequest_free()</code> release the + memory in resolver context <code class="varname">ctx</code> that was + allocated to the <span class="type">lwres_gnbaresponse_t</span> or + <span class="type">lwres_gnbarequest_t</span> structures referenced via + <code class="varname">structp</code>. Any memory associated with + ancillary buffers and strings for those structures is also + discarded. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549733"></a><h2>RETURN VALUES</h2> +<a name="id2543665"></a><h2>RETURN VALUES</h2> <p> -The getnamebyaddr opcode functions -<code class="function">lwres_gnbarequest_render()</code>, -<code class="function">lwres_gnbaresponse_render()</code> -<code class="function">lwres_gnbarequest_parse()</code> -and -<code class="function">lwres_gnbaresponse_parse()</code> -all return -<span class="errorcode">LWRES_R_SUCCESS</span> -on success. -They return -<span class="errorcode">LWRES_R_NOMEMORY</span> -if memory allocation fails. -<span class="errorcode">LWRES_R_UNEXPECTEDEND</span> -is returned if the available space in the buffer -<code class="varname">b</code> -is too small to accommodate the packet header or the -<span class="type">lwres_gnbarequest_t</span> -and -<span class="type">lwres_gnbaresponse_t</span> -structures. -<code class="function">lwres_gnbarequest_parse()</code> -and -<code class="function">lwres_gnbaresponse_parse()</code> -will return -<span class="errorcode">LWRES_R_UNEXPECTEDEND</span> -if the buffer is not empty after decoding the received packet. -These functions will return -<span class="errorcode">LWRES_R_FAILURE</span> -if -<em class="structfield"><code>pktflags</code></em> -in the packet header structure -<span class="type">lwres_lwpacket_t</span> -indicate that the packet is not a response to an earlier query. -</p> + The getnamebyaddr opcode functions + <code class="function">lwres_gnbarequest_render()</code>, + <code class="function">lwres_gnbaresponse_render()</code> + <code class="function">lwres_gnbarequest_parse()</code> + and + <code class="function">lwres_gnbaresponse_parse()</code> + all return + <span class="errorcode">LWRES_R_SUCCESS</span> + on success. + They return + <span class="errorcode">LWRES_R_NOMEMORY</span> + if memory allocation fails. + <span class="errorcode">LWRES_R_UNEXPECTEDEND</span> + is returned if the available space in the buffer + <code class="varname">b</code> + is too small to accommodate the packet header or the + <span class="type">lwres_gnbarequest_t</span> + and + <span class="type">lwres_gnbaresponse_t</span> + structures. + <code class="function">lwres_gnbarequest_parse()</code> + and + <code class="function">lwres_gnbaresponse_parse()</code> + will return + <span class="errorcode">LWRES_R_UNEXPECTEDEND</span> + if the buffer is not empty after decoding the received packet. + These functions will return + <span class="errorcode">LWRES_R_FAILURE</span> + if + <em class="structfield"><code>pktflags</code></em> + in the packet header structure + <span class="type">lwres_lwpacket_t</span> + indicate that the packet is not a response to an earlier query. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549866"></a><h2>SEE ALSO</h2> -<p> -<span class="citerefentry"><span class="refentrytitle">lwres_packet</span>(3)</span>. -</p> +<a name="id2543731"></a><h2>SEE ALSO</h2> +<p><span class="citerefentry"><span class="refentrytitle">lwres_packet</span>(3)</span>. + </p> </div> </div></body> </html> diff --git a/usr.sbin/bind/lib/lwres/man/lwres_hstrerror.html b/usr.sbin/bind/lib/lwres/man/lwres_hstrerror.html index 6e7c5ba70b2..a6af72b86e5 100644 --- a/usr.sbin/bind/lib/lwres/man/lwres_hstrerror.html +++ b/usr.sbin/bind/lib/lwres/man/lwres_hstrerror.html @@ -1,5 +1,5 @@ <!-- - - Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") + - Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") - Copyright (C) 2000, 2001 Internet Software Consortium. - - Permission to use, copy, modify, and distribute this software for any @@ -14,15 +14,15 @@ - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. --> -<!-- $ISC: lwres_hstrerror.html,v 1.5.2.1.4.12 2006/06/29 13:02:31 marka Exp $ --> +<!-- $ISC: lwres_hstrerror.html,v 1.6.18.17 2007/01/30 00:23:45 marka Exp $ --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>lwres_hstrerror</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.70.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.71.1"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en"> -<a name="id2482688"></a><div class="titlepage"></div> +<a name="id2476275"></a><div class="titlepage"></div> <div class="refnamediv"> <h2>Name</h2> <p>lwres_herror, lwres_hstrerror — lightweight resolver error message generation</p> @@ -31,70 +31,74 @@ <h2>Synopsis</h2> <div class="funcsynopsis"> <pre class="funcsynopsisinfo">#include <lwres/netdb.h></pre> -<p><code class="funcdef"> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"><tr> +<td><code class="funcdef"> void -<b class="fsfunc">lwres_herror</b>(</code>const char *s<code>)</code>;</p> -<p><code class="funcdef"> +<b class="fsfunc">lwres_herror</b>(</code></td> +<td>const char * </td> +<td> +<var class="pdparam">s</var><code>)</code>;</td> +</tr></table> +<table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0"><tr> +<td><code class="funcdef"> const char * -<b class="fsfunc">lwres_hstrerror</b>(</code>int err<code>)</code>;</p> +<b class="fsfunc">lwres_hstrerror</b>(</code></td> +<td>int </td> +<td> +<var class="pdparam">err</var><code>)</code>;</td> +</tr></table> </div> </div> <div class="refsect1" lang="en"> -<a name="id2549424"></a><h2>DESCRIPTION</h2> -<p> -<code class="function">lwres_herror()</code> prints the string -<em class="parameter"><code>s</code></em> on <span class="type">stderr</span> followed by the string -generated by <code class="function">lwres_hstrerror()</code> for the error code -stored in the global variable <code class="constant">lwres_h_errno</code>. -</p> -<p> -<code class="function">lwres_hstrerror()</code> returns an appropriate string -for the error code gievn by <em class="parameter"><code>err</code></em>. The values of -the error codes and messages are as follows: +<a name="id2543379"></a><h2>DESCRIPTION</h2> +<p><code class="function">lwres_herror()</code> + prints the string <em class="parameter"><code>s</code></em> on + <span class="type">stderr</span> followed by the string generated by + <code class="function">lwres_hstrerror()</code> for the error code stored + in the global variable <code class="constant">lwres_h_errno</code>. + </p> +<p><code class="function">lwres_hstrerror()</code> + returns an appropriate string for the error code gievn by + <em class="parameter"><code>err</code></em>. The values of the error codes and + messages are as follows: -</p> + </p> <div class="variablelist"><dl> <dt><span class="term"><span class="errorcode">NETDB_SUCCESS</span></span></dt> -<dd><p> -<span class="errorname">Resolver Error 0 (no error)</span> -</p></dd> +<dd><p><span class="errorname">Resolver Error 0 (no error)</span> + </p></dd> <dt><span class="term"><span class="errorcode">HOST_NOT_FOUND</span></span></dt> -<dd><p> -<span class="errorname">Unknown host</span> -</p></dd> +<dd><p><span class="errorname">Unknown host</span> + </p></dd> <dt><span class="term"><span class="errorcode">TRY_AGAIN</span></span></dt> -<dd><p> -<span class="errorname">Host name lookup failure</span> -</p></dd> +<dd><p><span class="errorname">Host name lookup failure</span> + </p></dd> <dt><span class="term"><span class="errorcode">NO_RECOVERY</span></span></dt> -<dd><p> -<span class="errorname">Unknown server error</span> -</p></dd> +<dd><p><span class="errorname">Unknown server error</span> + </p></dd> <dt><span class="term"><span class="errorcode">NO_DATA</span></span></dt> -<dd><p> -<span class="errorname">No address associated with name</span> -</p></dd> +<dd><p><span class="errorname">No address associated with name</span> + </p></dd> </dl></div> <p> -</p> + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549536"></a><h2>RETURN VALUES</h2> +<a name="id2543497"></a><h2>RETURN VALUES</h2> <p> -The string <span class="errorname">Unknown resolver error</span> is returned by -<code class="function">lwres_hstrerror()</code> -when the value of -<code class="constant">lwres_h_errno</code> -is not a valid error code. -</p> + The string <span class="errorname">Unknown resolver error</span> is returned by + <code class="function">lwres_hstrerror()</code> + when the value of + <code class="constant">lwres_h_errno</code> + is not a valid error code. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549555"></a><h2>SEE ALSO</h2> -<p> -<span class="citerefentry"><span class="refentrytitle">herror</span>(3)</span>, +<a name="id2543517"></a><h2>SEE ALSO</h2> +<p><span class="citerefentry"><span class="refentrytitle">herror</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres_hstrerror</span>(3)</span>. -</p> + <span class="citerefentry"><span class="refentrytitle">lwres_hstrerror</span>(3)</span>. + </p> </div> </div></body> </html> diff --git a/usr.sbin/bind/lib/lwres/man/lwres_inetntop.html b/usr.sbin/bind/lib/lwres/man/lwres_inetntop.html index e4dda3765e3..1cf90daf0d0 100644 --- a/usr.sbin/bind/lib/lwres/man/lwres_inetntop.html +++ b/usr.sbin/bind/lib/lwres/man/lwres_inetntop.html @@ -1,5 +1,5 @@ <!-- - - Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") + - Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") - Copyright (C) 2000, 2001 Internet Software Consortium. - - Permission to use, copy, modify, and distribute this software for any @@ -14,15 +14,15 @@ - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. --> -<!-- $ISC: lwres_inetntop.html,v 1.5.2.1.4.12 2006/06/29 13:02:31 marka Exp $ --> +<!-- $ISC: lwres_inetntop.html,v 1.6.18.17 2007/01/30 00:23:45 marka Exp $ --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>lwres_inetntop</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.70.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.71.1"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en"> -<a name="id2482688"></a><div class="titlepage"></div> +<a name="id2476275"></a><div class="titlepage"></div> <div class="refnamediv"> <h2>Name</h2> <p>lwres_net_ntop — lightweight resolver IP address presentation</p> @@ -36,68 +36,68 @@ <td><code class="funcdef"> const char * <b class="fsfunc">lwres_net_ntop</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>int </td> +<td> +<var class="pdparam">af</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>const void * </td> +<td> +<var class="pdparam">src</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>char * </td> +<td> +<var class="pdparam">dst</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>size_t </td> <td> -<code>)</code>;</td> +<var class="pdparam">size</var><code>)</code>;</td> </tr> </table> </div> </div> <div class="refsect1" lang="en"> -<a name="id2549419"></a><h2>DESCRIPTION</h2> -<p> -<code class="function">lwres_net_ntop()</code> converts an IP address of -protocol family <em class="parameter"><code>af</code></em> — IPv4 or IPv6 — -at location <em class="parameter"><code>src</code></em> from network format to its -conventional representation as a string. For IPv4 addresses, that -string would be a dotted-decimal. An IPv6 address would be -represented in colon notation as described in RFC1884. -</p> +<a name="id2543379"></a><h2>DESCRIPTION</h2> +<p><code class="function">lwres_net_ntop()</code> + converts an IP address of protocol family + <em class="parameter"><code>af</code></em> — IPv4 or IPv6 — at + location <em class="parameter"><code>src</code></em> from network format to its + conventional representation as a string. For IPv4 addresses, + that string would be a dotted-decimal. An IPv6 address would be + represented in colon notation as described in RFC1884. + </p> <p> -The generated string is copied to <em class="parameter"><code>dst</code></em> provided -<em class="parameter"><code>size</code></em> indicates it is long enough to store the -ASCII representation of the address. -</p> + The generated string is copied to <em class="parameter"><code>dst</code></em> + provided + <em class="parameter"><code>size</code></em> indicates it is long enough to + store the + ASCII representation of the address. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549452"></a><h2>RETURN VALUES</h2> +<a name="id2543411"></a><h2>RETURN VALUES</h2> <p> -If successful, the function returns <em class="parameter"><code>dst</code></em>: -a pointer to a string containing the presentation format of the -address. <code class="function">lwres_net_ntop()</code> returns -<span class="type">NULL</span> and sets the global variable -<code class="constant">errno</code> to <span class="errorcode">EAFNOSUPPORT</span> if -the protocol family given in <em class="parameter"><code>af</code></em> is not -supported. -</p> + If successful, the function returns <em class="parameter"><code>dst</code></em>: + a pointer to a string containing the presentation format of the + address. <code class="function">lwres_net_ntop()</code> returns + <span class="type">NULL</span> and sets the global variable + <code class="constant">errno</code> to <span class="errorcode">EAFNOSUPPORT</span> if + the protocol family given in <em class="parameter"><code>af</code></em> is + not + supported. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549483"></a><h2>SEE ALSO</h2> -<p> -<span class="citerefentry"><span class="refentrytitle">RFC1884</span></span>, -<span class="citerefentry"><span class="refentrytitle">inet_ntop</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">errno</span>(3)</span>. -</p> +<a name="id2543444"></a><h2>SEE ALSO</h2> +<p><span class="citerefentry"><span class="refentrytitle">RFC1884</span></span>, + <span class="citerefentry"><span class="refentrytitle">inet_ntop</span>(3)</span>, + <span class="citerefentry"><span class="refentrytitle">errno</span>(3)</span>. + </p> </div> </div></body> </html> diff --git a/usr.sbin/bind/lib/lwres/man/lwres_noop.html b/usr.sbin/bind/lib/lwres/man/lwres_noop.html index d47af0cb2b5..b83dc29c79a 100644 --- a/usr.sbin/bind/lib/lwres/man/lwres_noop.html +++ b/usr.sbin/bind/lib/lwres/man/lwres_noop.html @@ -1,5 +1,5 @@ <!-- - - Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") + - Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") - Copyright (C) 2000, 2001 Internet Software Consortium. - - Permission to use, copy, modify, and distribute this software for any @@ -14,15 +14,15 @@ - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. --> -<!-- $ISC: lwres_noop.html,v 1.7.2.1.4.11 2006/06/29 13:02:31 marka Exp $ --> +<!-- $ISC: lwres_noop.html,v 1.8.18.17 2007/01/30 00:23:45 marka Exp $ --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>lwres_noop</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.70.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.71.1"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en"> -<a name="id2482688"></a><div class="titlepage"></div> +<a name="id2476275"></a><div class="titlepage"></div> <div class="refnamediv"> <h2>Name</h2> <p>lwres_nooprequest_render, lwres_noopresponse_render, lwres_nooprequest_parse, lwres_noopresponse_parse, lwres_noopresponse_free, lwres_nooprequest_free — lightweight resolver no-op message handling</p> @@ -37,29 +37,27 @@ <td><code class="funcdef"> lwres_result_t <b class="fsfunc">lwres_nooprequest_render</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_nooprequest_t * </td> +<td> +<var class="pdparam">req</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_lwpacket_t * </td> +<td> +<var class="pdparam">pkt</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_buffer_t * </td> <td> -<code>)</code>;</td> +<var class="pdparam">b</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -67,29 +65,27 @@ lwres_result_t <td><code class="funcdef"> lwres_result_t <b class="fsfunc">lwres_noopresponse_render</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_noopresponse_t * </td> +<td> +<var class="pdparam">req</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_lwpacket_t * </td> +<td> +<var class="pdparam">pkt</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_buffer_t * </td> <td> -<code>)</code>;</td> +<var class="pdparam">b</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -97,29 +93,27 @@ lwres_result_t <td><code class="funcdef"> lwres_result_t <b class="fsfunc">lwres_nooprequest_parse</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_buffer_t * </td> +<td> +<var class="pdparam">b</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_lwpacket_t * </td> +<td> +<var class="pdparam">pkt</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_nooprequest_t ** </td> <td> -<code>)</code>;</td> +<var class="pdparam">structp</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -127,29 +121,27 @@ lwres_result_t <td><code class="funcdef"> lwres_result_t <b class="fsfunc">lwres_noopresponse_parse</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_buffer_t * </td> +<td> +<var class="pdparam">b</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_lwpacket_t * </td> +<td> +<var class="pdparam">pkt</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_noopresponse_t ** </td> <td> -<code>)</code>;</td> +<var class="pdparam">structp</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -157,19 +149,15 @@ lwres_result_t <td><code class="funcdef"> void <b class="fsfunc">lwres_noopresponse_free</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_noopresponse_t ** </td> <td> -<code>)</code>;</td> +<var class="pdparam">structp</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0"> @@ -177,149 +165,153 @@ void <td><code class="funcdef"> void <b class="fsfunc">lwres_nooprequest_free</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_nooprequest_t ** </td> <td> -<code>)</code>;</td> +<var class="pdparam">structp</var><code>)</code>;</td> </tr> </table> </div> </div> <div class="refsect1" lang="en"> -<a name="id2549528"></a><h2>DESCRIPTION</h2> +<a name="id2543522"></a><h2>DESCRIPTION</h2> <p> -These are low-level routines for creating and parsing -lightweight resolver no-op request and response messages. -</p> + These are low-level routines for creating and parsing + lightweight resolver no-op request and response messages. + </p> <p> -The no-op message is analogous to a <span><strong class="command">ping</strong></span> packet: -a packet is sent to the resolver daemon and is simply echoed back. -The opcode is intended to allow a client to determine if the server is -operational or not. -</p> + The no-op message is analogous to a <span><strong class="command">ping</strong></span> + packet: + a packet is sent to the resolver daemon and is simply echoed back. + The opcode is intended to allow a client to determine if the server is + operational or not. + </p> <p> -There are four main functions for the no-op opcode. -One render function converts a no-op request structure — -<span class="type">lwres_nooprequest_t</span> — -to the lighweight resolver's canonical format. -It is complemented by a parse function that converts a packet in this -canonical format to a no-op request structure. -Another render function converts the no-op response structure — -<span class="type">lwres_noopresponse_t</span> -to the canonical format. -This is complemented by a parse function which converts a packet in -canonical format to a no-op response structure. -</p> + There are four main functions for the no-op opcode. + One render function converts a no-op request structure — + <span class="type">lwres_nooprequest_t</span> — + to the lighweight resolver's canonical format. + It is complemented by a parse function that converts a packet in this + canonical format to a no-op request structure. + Another render function converts the no-op response structure — + <span class="type">lwres_noopresponse_t</span> + to the canonical format. + This is complemented by a parse function which converts a packet in + canonical format to a no-op response structure. + </p> <p> -These structures are defined in -<code class="filename">lwres/lwres.h</code>. + These structures are defined in + <code class="filename">lwres/lwres.h</code>. -They are shown below. -</p> + They are shown below. + </p> <pre class="programlisting"> #define LWRES_OPCODE_NOOP 0x00000000U - +</pre> +<p> + </p> +<pre class="programlisting"> typedef struct { lwres_uint16_t datalength; unsigned char *data; } lwres_nooprequest_t; - +</pre> +<p> + </p> +<pre class="programlisting"> typedef struct { lwres_uint16_t datalength; unsigned char *data; } lwres_noopresponse_t; </pre> <p> -Although the structures have different types, they are identical. -This is because the no-op opcode simply echos whatever data was sent: -the response is therefore identical to the request. -</p> -<p> -<code class="function">lwres_nooprequest_render()</code> uses resolver -context <em class="parameter"><code>ctx</code></em> to convert no-op request structure -<em class="parameter"><code>req</code></em> to canonical format. The packet header -structure <em class="parameter"><code>pkt</code></em> is initialised and transferred to -buffer <em class="parameter"><code>b</code></em>. The contents of -<em class="parameter"><code>*req</code></em> are then appended to the buffer in -canonical format. <code class="function">lwres_noopresponse_render()</code> -performs the same task, except it converts a no-op response structure -<span class="type">lwres_noopresponse_t</span> to the lightweight resolver's -canonical format. -</p> + </p> <p> -<code class="function">lwres_nooprequest_parse()</code> uses context -<em class="parameter"><code>ctx</code></em> to convert the contents of packet -<em class="parameter"><code>pkt</code></em> to a <span class="type">lwres_nooprequest_t</span> -structure. Buffer <em class="parameter"><code>b</code></em> provides space to be used -for storing this structure. When the function succeeds, the resulting -<span class="type">lwres_nooprequest_t</span> is made available through -<em class="parameter"><code>*structp</code></em>. -<code class="function">lwres_noopresponse_parse()</code> offers the same -semantics as <code class="function">lwres_nooprequest_parse()</code> except it -yields a <span class="type">lwres_noopresponse_t</span> structure. -</p> -<p> -<code class="function">lwres_noopresponse_free()</code> and -<code class="function">lwres_nooprequest_free()</code> release the memory in -resolver context <em class="parameter"><code>ctx</code></em> that was allocated to the -<span class="type">lwres_noopresponse_t</span> or <span class="type">lwres_nooprequest_t</span> -structures referenced via <em class="parameter"><code>structp</code></em>. -</p> + Although the structures have different types, they are identical. + This is because the no-op opcode simply echos whatever data was sent: + the response is therefore identical to the request. + </p> +<p><code class="function">lwres_nooprequest_render()</code> + uses resolver context <em class="parameter"><code>ctx</code></em> to convert + no-op request structure <em class="parameter"><code>req</code></em> to canonical + format. The packet header structure <em class="parameter"><code>pkt</code></em> + is initialised and transferred to buffer + <em class="parameter"><code>b</code></em>. The contents of + <em class="parameter"><code>*req</code></em> are then appended to the buffer in + canonical format. + <code class="function">lwres_noopresponse_render()</code> performs the + same task, except it converts a no-op response structure + <span class="type">lwres_noopresponse_t</span> to the lightweight resolver's + canonical format. + </p> +<p><code class="function">lwres_nooprequest_parse()</code> + uses context <em class="parameter"><code>ctx</code></em> to convert the contents + of packet <em class="parameter"><code>pkt</code></em> to a + <span class="type">lwres_nooprequest_t</span> structure. Buffer + <em class="parameter"><code>b</code></em> provides space to be used for storing + this structure. When the function succeeds, the resulting + <span class="type">lwres_nooprequest_t</span> is made available through + <em class="parameter"><code>*structp</code></em>. + <code class="function">lwres_noopresponse_parse()</code> offers the same + semantics as <code class="function">lwres_nooprequest_parse()</code> + except it yields a <span class="type">lwres_noopresponse_t</span> structure. + </p> +<p><code class="function">lwres_noopresponse_free()</code> + and <code class="function">lwres_nooprequest_free()</code> release the + memory in resolver context <em class="parameter"><code>ctx</code></em> that was + allocated to the <span class="type">lwres_noopresponse_t</span> or + <span class="type">lwres_nooprequest_t</span> structures referenced via + <em class="parameter"><code>structp</code></em>. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549797"></a><h2>RETURN VALUES</h2> +<a name="id2543672"></a><h2>RETURN VALUES</h2> <p> -The no-op opcode functions -<code class="function">lwres_nooprequest_render()</code>, + The no-op opcode functions + <code class="function">lwres_nooprequest_render()</code>, -<code class="function">lwres_noopresponse_render()</code> -<code class="function">lwres_nooprequest_parse()</code> -and -<code class="function">lwres_noopresponse_parse()</code> -all return -<span class="errorcode">LWRES_R_SUCCESS</span> -on success. -They return -<span class="errorcode">LWRES_R_NOMEMORY</span> -if memory allocation fails. -<span class="errorcode">LWRES_R_UNEXPECTEDEND</span> -is returned if the available space in the buffer -<em class="parameter"><code>b</code></em> -is too small to accommodate the packet header or the -<span class="type">lwres_nooprequest_t</span> -and -<span class="type">lwres_noopresponse_t</span> -structures. -<code class="function">lwres_nooprequest_parse()</code> -and -<code class="function">lwres_noopresponse_parse()</code> -will return -<span class="errorcode">LWRES_R_UNEXPECTEDEND</span> -if the buffer is not empty after decoding the received packet. -These functions will return -<span class="errorcode">LWRES_R_FAILURE</span> -if -<code class="constant">pktflags</code> -in the packet header structure -<span class="type">lwres_lwpacket_t</span> -indicate that the packet is not a response to an earlier query. -</p> + <code class="function">lwres_noopresponse_render()</code> + <code class="function">lwres_nooprequest_parse()</code> + and + <code class="function">lwres_noopresponse_parse()</code> + all return + <span class="errorcode">LWRES_R_SUCCESS</span> + on success. + They return + <span class="errorcode">LWRES_R_NOMEMORY</span> + if memory allocation fails. + <span class="errorcode">LWRES_R_UNEXPECTEDEND</span> + is returned if the available space in the buffer + <em class="parameter"><code>b</code></em> + is too small to accommodate the packet header or the + <span class="type">lwres_nooprequest_t</span> + and + <span class="type">lwres_noopresponse_t</span> + structures. + <code class="function">lwres_nooprequest_parse()</code> + and + <code class="function">lwres_noopresponse_parse()</code> + will return + <span class="errorcode">LWRES_R_UNEXPECTEDEND</span> + if the buffer is not empty after decoding the received packet. + These functions will return + <span class="errorcode">LWRES_R_FAILURE</span> + if + <code class="constant">pktflags</code> + in the packet header structure + <span class="type">lwres_lwpacket_t</span> + indicate that the packet is not a response to an earlier query. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549861"></a><h2>SEE ALSO</h2> -<p> -<span class="citerefentry"><span class="refentrytitle">lwres_packet</span>(3 -)</span> -</p> +<a name="id2543738"></a><h2>SEE ALSO</h2> +<p><span class="citerefentry"><span class="refentrytitle">lwres_packet</span>(3)</span> + </p> </div> </div></body> </html> diff --git a/usr.sbin/bind/lib/lwres/man/lwres_packet.html b/usr.sbin/bind/lib/lwres/man/lwres_packet.html index 1c650db7469..2c2700548ca 100644 --- a/usr.sbin/bind/lib/lwres/man/lwres_packet.html +++ b/usr.sbin/bind/lib/lwres/man/lwres_packet.html @@ -1,5 +1,5 @@ <!-- - - Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") + - Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") - Copyright (C) 2000, 2001 Internet Software Consortium. - - Permission to use, copy, modify, and distribute this software for any @@ -14,15 +14,15 @@ - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. --> -<!-- $ISC: lwres_packet.html,v 1.8.2.1.4.12 2006/06/29 13:02:31 marka Exp $ --> +<!-- $ISC: lwres_packet.html,v 1.9.18.17 2007/01/30 00:23:45 marka Exp $ --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>lwres_packet</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.70.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.71.1"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en"> -<a name="id2482688"></a><div class="titlepage"></div> +<a name="id2476275"></a><div class="titlepage"></div> <div class="refnamediv"> <h2>Name</h2> <p>lwres_lwpacket_renderheader, lwres_lwpacket_parseheader — lightweight resolver packet handling functions</p> @@ -36,19 +36,15 @@ <td><code class="funcdef"> lwres_result_t <b class="fsfunc">lwres_lwpacket_renderheader</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_buffer_t * </td> +<td> +<var class="pdparam">b</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_lwpacket_t * </td> <td> -<code>)</code>;</td> +<var class="pdparam">pkt</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0"> @@ -56,35 +52,33 @@ lwres_result_t <td><code class="funcdef"> lwres_result_t <b class="fsfunc">lwres_lwpacket_parseheader</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_buffer_t * </td> +<td> +<var class="pdparam">b</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_lwpacket_t * </td> <td> -<code>)</code>;</td> +<var class="pdparam">pkt</var><code>)</code>;</td> </tr> </table> </div> </div> <div class="refsect1" lang="en"> -<a name="id2549430"></a><h2>DESCRIPTION</h2> +<a name="id2543389"></a><h2>DESCRIPTION</h2> <p> -These functions rely on a -<span class="type">struct lwres_lwpacket</span> -which is defined in -<code class="filename">lwres/lwpacket.h</code>. - -</p> + These functions rely on a + <span class="type">struct lwres_lwpacket</span> + which is defined in + <code class="filename">lwres/lwpacket.h</code>. + </p> <pre class="programlisting"> typedef struct lwres_lwpacket lwres_lwpacket_t; - + </pre> +<p> + </p> +<pre class="programlisting"> struct lwres_lwpacket { lwres_uint32_t length; lwres_uint16_t version; @@ -98,129 +92,144 @@ struct lwres_lwpacket { }; </pre> <p> -</p> + </p> <p> -The elements of this structure are: -</p> + The elements of this structure are: + </p> <div class="variablelist"><dl> <dt><span class="term"><code class="constant">length</code></span></dt> <dd><p> -the overall packet length, including the entire packet header. -This field is filled in by the lwres_gabn_*() and lwres_gnba_*() -calls. -</p></dd> + the overall packet length, including the entire packet header. + This field is filled in by the lwres_gabn_*() and lwres_gnba_*() + calls. + </p></dd> <dt><span class="term"><code class="constant">version</code></span></dt> <dd><p> -the header format. There is currently only one format, -<span class="type">LWRES_LWPACKETVERSION_0</span>. + the header format. There is currently only one format, + <span class="type">LWRES_LWPACKETVERSION_0</span>. -This field is filled in by the lwres_gabn_*() and lwres_gnba_*() -calls. -</p></dd> + This field is filled in by the lwres_gabn_*() and lwres_gnba_*() + calls. + </p></dd> <dt><span class="term"><code class="constant">pktflags</code></span></dt> <dd><p> -library-defined flags for this packet: for instance whether the packet -is a request or a reply. Flag values can be set, but not defined by -the caller. -This field is filled in by the application wit the exception of the -LWRES_LWPACKETFLAG_RESPONSE bit, which is set by the library in the -lwres_gabn_*() and lwres_gnba_*() calls. -</p></dd> + library-defined flags for this packet: for instance whether the + packet + is a request or a reply. Flag values can be set, but not defined + by + the caller. + This field is filled in by the application wit the exception of + the + LWRES_LWPACKETFLAG_RESPONSE bit, which is set by the library in + the + lwres_gabn_*() and lwres_gnba_*() calls. + </p></dd> <dt><span class="term"><code class="constant">serial</code></span></dt> <dd><p> -is set by the requestor and is returned in all replies. If two or more -packets from the same source have the same serial number and are from -the same source, they are assumed to be duplicates and the latter ones -may be dropped. -This field must be set by the application. -</p></dd> + is set by the requestor and is returned in all replies. If two + or more + packets from the same source have the same serial number and are + from + the same source, they are assumed to be duplicates and the + latter ones + may be dropped. + This field must be set by the application. + </p></dd> <dt><span class="term"><code class="constant">opcode</code></span></dt> <dd><p> -indicates the operation. -Opcodes between 0x00000000 and 0x03ffffff are -reserved for use by the lightweight resolver library. Opcodes between -0x04000000 and 0xffffffff are application defined. -This field is filled in by the lwres_gabn_*() and lwres_gnba_*() -calls. -</p></dd> + indicates the operation. + Opcodes between 0x00000000 and 0x03ffffff are + reserved for use by the lightweight resolver library. Opcodes + between + 0x04000000 and 0xffffffff are application defined. + This field is filled in by the lwres_gabn_*() and lwres_gnba_*() + calls. + </p></dd> <dt><span class="term"><code class="constant">result</code></span></dt> <dd><p> -is only valid for replies. -Results between 0x04000000 and 0xffffffff are application defined. -Results between 0x00000000 and 0x03ffffff are reserved for library use. -This field is filled in by the lwres_gabn_*() and lwres_gnba_*() -calls. -</p></dd> + is only valid for replies. + Results between 0x04000000 and 0xffffffff are application + defined. + Results between 0x00000000 and 0x03ffffff are reserved for + library use. + This field is filled in by the lwres_gabn_*() and lwres_gnba_*() + calls. + </p></dd> <dt><span class="term"><code class="constant">recvlength</code></span></dt> <dd><p> -is the maximum buffer size that the receiver can handle on requests -and the size of the buffer needed to satisfy a request when the buffer -is too large for replies. -This field is supplied by the application. -</p></dd> + is the maximum buffer size that the receiver can handle on + requests + and the size of the buffer needed to satisfy a request when the + buffer + is too large for replies. + This field is supplied by the application. + </p></dd> <dt><span class="term"><code class="constant">authtype</code></span></dt> <dd><p> -defines the packet level authentication that is used. -Authorisation types between 0x1000 and 0xffff are application defined -and types between 0x0000 and 0x0fff are reserved for library use. -Currently these are not used and must be zero. -</p></dd> + defines the packet level authentication that is used. + Authorisation types between 0x1000 and 0xffff are application + defined + and types between 0x0000 and 0x0fff are reserved for library + use. + Currently these are not used and must be zero. + </p></dd> <dt><span class="term"><code class="constant">authlen</code></span></dt> <dd><p> -gives the length of the authentication data. -Since packet authentication is currently not used, this must be zero. -</p></dd> + gives the length of the authentication data. + Since packet authentication is currently not used, this must be + zero. + </p></dd> </dl></div> <p> -</p> + </p> <p> -The following opcodes are currently defined: -</p> + The following opcodes are currently defined: + </p> <div class="variablelist"><dl> <dt><span class="term"><code class="constant">NOOP</code></span></dt> <dd><p> -Success is always returned and the packet contents are echoed. -The lwres_noop_*() functions should be used for this type. -</p></dd> + Success is always returned and the packet contents are echoed. + The lwres_noop_*() functions should be used for this type. + </p></dd> <dt><span class="term"><code class="constant">GETADDRSBYNAME</code></span></dt> <dd><p> -returns all known addresses for a given name. -The lwres_gabn_*() functions should be used for this type. -</p></dd> + returns all known addresses for a given name. + The lwres_gabn_*() functions should be used for this type. + </p></dd> <dt><span class="term"><code class="constant">GETNAMEBYADDR</code></span></dt> <dd><p> -return the hostname for the given address. -The lwres_gnba_*() functions should be used for this type. -</p></dd> + return the hostname for the given address. + The lwres_gnba_*() functions should be used for this type. + </p></dd> </dl></div> <p> -</p> -<p> -<code class="function">lwres_lwpacket_renderheader()</code> transfers the -contents of lightweight resolver packet structure -<span class="type">lwres_lwpacket_t</span> <em class="parameter"><code>*pkt</code></em> in network -byte order to the lightweight resolver buffer, -<em class="parameter"><code>*b</code></em>. -</p> -<p> -<code class="function">lwres_lwpacket_parseheader()</code> performs the -converse operation. It transfers data in network byte order from -buffer <em class="parameter"><code>*b</code></em> to resolver packet -<em class="parameter"><code>*pkt</code></em>. The contents of the buffer -<em class="parameter"><code>b</code></em> should correspond to a -<span class="type">lwres_lwpacket_t</span>. -</p> + </p> +<p><code class="function">lwres_lwpacket_renderheader()</code> + transfers the contents of lightweight resolver packet structure + <span class="type">lwres_lwpacket_t</span> <em class="parameter"><code>*pkt</code></em> in + network byte order to the lightweight resolver buffer, + <em class="parameter"><code>*b</code></em>. + </p> +<p><code class="function">lwres_lwpacket_parseheader()</code> + performs the converse operation. It transfers data in network + byte order from buffer <em class="parameter"><code>*b</code></em> to resolver + packet <em class="parameter"><code>*pkt</code></em>. The contents of the buffer + <em class="parameter"><code>b</code></em> should correspond to a + <span class="type">lwres_lwpacket_t</span>. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549769"></a><h2>RETURN VALUES</h2> -<p> Successful calls to -<code class="function">lwres_lwpacket_renderheader()</code> and -<code class="function">lwres_lwpacket_parseheader()</code> return -<span class="errorcode">LWRES_R_SUCCESS</span>. If there is insufficient -space to copy data between the buffer <em class="parameter"><code>*b</code></em> and -lightweight resolver packet <em class="parameter"><code>*pkt</code></em> both functions -return <span class="errorcode">LWRES_R_UNEXPECTEDEND</span>. -</p> +<a name="id2543706"></a><h2>RETURN VALUES</h2> +<p> + Successful calls to + <code class="function">lwres_lwpacket_renderheader()</code> and + <code class="function">lwres_lwpacket_parseheader()</code> return + <span class="errorcode">LWRES_R_SUCCESS</span>. If there is insufficient + space to copy data between the buffer <em class="parameter"><code>*b</code></em> and + lightweight resolver packet <em class="parameter"><code>*pkt</code></em> both + functions + return <span class="errorcode">LWRES_R_UNEXPECTEDEND</span>. + </p> </div> </div></body> </html> diff --git a/usr.sbin/bind/lib/lwres/man/lwres_resutil.html b/usr.sbin/bind/lib/lwres/man/lwres_resutil.html index a4cd0a7c57d..d468bcd1b31 100644 --- a/usr.sbin/bind/lib/lwres/man/lwres_resutil.html +++ b/usr.sbin/bind/lib/lwres/man/lwres_resutil.html @@ -1,5 +1,5 @@ <!-- - - Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") + - Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") - Copyright (C) 2000, 2001 Internet Software Consortium. - - Permission to use, copy, modify, and distribute this software for any @@ -14,15 +14,15 @@ - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. --> -<!-- $ISC: lwres_resutil.html,v 1.8.2.1.4.11 2006/06/29 13:02:31 marka Exp $ --> +<!-- $ISC: lwres_resutil.html,v 1.9.18.16 2007/01/30 00:23:45 marka Exp $ --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>lwres_resutil</title> -<meta name="generator" content="DocBook XSL Stylesheets V1.70.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.71.1"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en"> -<a name="id2482688"></a><div class="titlepage"></div> +<a name="id2476275"></a><div class="titlepage"></div> <div class="refnamediv"> <h2>Name</h2> <p>lwres_string_parse, lwres_addr_parse, lwres_getaddrsbyname, lwres_getnamebyaddr — lightweight resolver utility functions</p> @@ -36,24 +36,21 @@ <td><code class="funcdef"> lwres_result_t <b class="fsfunc">lwres_string_parse</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_buffer_t * </td> +<td> +<var class="pdparam">b</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>char ** </td> +<td> +<var class="pdparam">c</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_uint16_t * </td> <td> -<code>)</code>;</td> +<var class="pdparam">len</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -61,19 +58,15 @@ lwres_result_t <td><code class="funcdef"> lwres_result_t <b class="fsfunc">lwres_addr_parse</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_buffer_t * </td> +<td> +<var class="pdparam">b</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_addr_t * </td> <td> -<code>)</code>;</td> +<var class="pdparam">addr</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" style="padding-bottom: 1em"> @@ -81,29 +74,27 @@ lwres_result_t <td><code class="funcdef"> lwres_result_t <b class="fsfunc">lwres_getaddrsbyname</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>const char * </td> +<td> +<var class="pdparam">name</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_uint32_t </td> +<td> +<var class="pdparam">addrtypes</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_gabnresponse_t ** </td> <td> -<code>)</code>;</td> +<var class="pdparam">structp</var><code>)</code>;</td> </tr> </table> <table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0"> @@ -111,71 +102,67 @@ lwres_result_t <td><code class="funcdef"> lwres_result_t <b class="fsfunc">lwres_getnamebyaddr</b>(</code></td> -<td> </td> -<td>, </td> -</tr> -<tr> -<td> </td> -<td> </td> -<td>, </td> +<td>lwres_context_t * </td> +<td> +<var class="pdparam">ctx</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_uint32_t </td> +<td> +<var class="pdparam">addrtype</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>lwres_uint16_t </td> +<td> +<var class="pdparam">addrlen</var>, </td> </tr> <tr> <td> </td> -<td> </td> -<td>, </td> +<td>const unsigned char * </td> +<td> +<var class="pdparam">addr</var>, </td> </tr> <tr> <td> </td> -<td> </td> +<td>lwres_gnbaresponse_t ** </td> <td> -<code>)</code>;</td> +<var class="pdparam">structp</var><code>)</code>;</td> </tr> </table> </div> </div> <div class="refsect1" lang="en"> -<a name="id2549485"></a><h2>DESCRIPTION</h2> -<p> -<code class="function">lwres_string_parse()</code> retrieves a DNS-encoded -string starting the current pointer of lightweight resolver buffer -<em class="parameter"><code>b</code></em>: i.e. <code class="constant">b->current</code>. -When the function returns, the address of the first byte of the -encoded string is returned via <em class="parameter"><code>*c</code></em> and the -length of that string is given by <em class="parameter"><code>*len</code></em>. The -buffer's current pointer is advanced to point at the character -following the string length, the encoded string, and the trailing -<span class="type">NULL</span> character. -</p> -<p> -<code class="function">lwres_addr_parse()</code> extracts an address from the -buffer <em class="parameter"><code>b</code></em>. The buffer's current pointer -<code class="constant">b->current</code> is presumed to point at an encoded -address: the address preceded by a 32-bit protocol family identifier -and a 16-bit length field. The encoded address is copied to -<code class="constant">addr->address</code> and -<code class="constant">addr->length</code> indicates the size in bytes of -the address that was copied. <code class="constant">b->current</code> is -advanced to point at the next byte of available data in the buffer -following the encoded address. -</p> -<p> -<code class="function">lwres_getaddrsbyname()</code> -and -<code class="function">lwres_getnamebyaddr()</code> -use the -<span class="type">lwres_gnbaresponse_t</span> -structure defined below: -</p> +<a name="id2543466"></a><h2>DESCRIPTION</h2> +<p><code class="function">lwres_string_parse()</code> + retrieves a DNS-encoded string starting the current pointer of + lightweight resolver buffer <em class="parameter"><code>b</code></em>: i.e. + <code class="constant">b->current</code>. When the function returns, + the address of the first byte of the encoded string is returned + via <em class="parameter"><code>*c</code></em> and the length of that string is + given by <em class="parameter"><code>*len</code></em>. The buffer's current + pointer is advanced to point at the character following the + string length, the encoded string, and the trailing + <span class="type">NULL</span> character. + </p> +<p><code class="function">lwres_addr_parse()</code> + extracts an address from the buffer <em class="parameter"><code>b</code></em>. + The buffer's current pointer <code class="constant">b->current</code> + is presumed to point at an encoded address: the address preceded + by a 32-bit protocol family identifier and a 16-bit length + field. The encoded address is copied to + <code class="constant">addr->address</code> and + <code class="constant">addr->length</code> indicates the size in bytes + of the address that was copied. + <code class="constant">b->current</code> is advanced to point at the + next byte of available data in the buffer following the encoded + address. + </p> +<p><code class="function">lwres_getaddrsbyname()</code> + and <code class="function">lwres_getnamebyaddr()</code> use the + <span class="type">lwres_gnbaresponse_t</span> structure defined below: + </p> <pre class="programlisting"> typedef struct { lwres_uint32_t flags; @@ -191,85 +178,81 @@ typedef struct { } lwres_gabnresponse_t; </pre> <p> -The contents of this structure are not manipulated directly but -they are controlled through the -<span class="citerefentry"><span class="refentrytitle">lwres_gabn</span>(3 -)</span> -functions. -</p> -<p> -The lightweight resolver uses -<code class="function">lwres_getaddrsbyname()</code> to perform foward lookups. -Hostname <em class="parameter"><code>name</code></em> is looked up using the resolver -context <em class="parameter"><code>ctx</code></em> for memory allocation. -<em class="parameter"><code>addrtypes</code></em> is a bitmask indicating which type of -addresses are to be looked up. Current values for this bitmask are -<span class="type">LWRES_ADDRTYPE_V4</span> for IPv4 addresses and -<span class="type">LWRES_ADDRTYPE_V6</span> for IPv6 addresses. Results of the -lookup are returned in <em class="parameter"><code>*structp</code></em>. -</p> + The contents of this structure are not manipulated directly but + they are controlled through the + <span class="citerefentry"><span class="refentrytitle">lwres_gabn</span>(3)</span> + functions. + </p> <p> -<code class="function">lwres_getnamebyaddr()</code> performs reverse lookups. -Resolver context <em class="parameter"><code>ctx</code></em> is used for memory -allocation. The address type is indicated by -<em class="parameter"><code>addrtype</code></em>: <span class="type">LWRES_ADDRTYPE_V4</span> or -<span class="type">LWRES_ADDRTYPE_V6</span>. The address to be looked up is given -by <em class="parameter"><code>addr</code></em> and its length is -<em class="parameter"><code>addrlen</code></em> bytes. The result of the function call -is made available through <em class="parameter"><code>*structp</code></em>. -</p> + The lightweight resolver uses + <code class="function">lwres_getaddrsbyname()</code> to perform + foward lookups. + Hostname <em class="parameter"><code>name</code></em> is looked up using the + resolver + context <em class="parameter"><code>ctx</code></em> for memory allocation. + <em class="parameter"><code>addrtypes</code></em> is a bitmask indicating + which type of + addresses are to be looked up. Current values for this bitmask are + <span class="type">LWRES_ADDRTYPE_V4</span> for IPv4 addresses and + <span class="type">LWRES_ADDRTYPE_V6</span> for IPv6 addresses. Results of the + lookup are returned in <em class="parameter"><code>*structp</code></em>. + </p> +<p><code class="function">lwres_getnamebyaddr()</code> + performs reverse lookups. Resolver context + <em class="parameter"><code>ctx</code></em> is used for memory allocation. The + address type is indicated by <em class="parameter"><code>addrtype</code></em>: + <span class="type">LWRES_ADDRTYPE_V4</span> or + <span class="type">LWRES_ADDRTYPE_V6</span>. The address to be looked up is + given by <em class="parameter"><code>addr</code></em> and its length is + <em class="parameter"><code>addrlen</code></em> bytes. The result of the + function call is made available through + <em class="parameter"><code>*structp</code></em>. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549693"></a><h2>RETURN VALUES</h2> -<p> -Successful calls to -<code class="function">lwres_string_parse()</code> -and -<code class="function">lwres_addr_parse()</code> -return -<span class="errorcode">LWRES_R_SUCCESS.</span> -Both functions return -<span class="errorcode">LWRES_R_FAILURE</span> -if the buffer is corrupt or -<span class="errorcode">LWRES_R_UNEXPECTEDEND</span> -if the buffer has less space than expected for the components of the -encoded string or address. -</p> +<a name="id2543605"></a><h2>RETURN VALUES</h2> <p> -<code class="function">lwres_getaddrsbyname()</code> -returns -<span class="errorcode">LWRES_R_SUCCESS</span> -on success and it returns -<span class="errorcode">LWRES_R_NOTFOUND</span> -if the hostname -<em class="parameter"><code>name</code></em> -could not be found. -</p> + Successful calls to + <code class="function">lwres_string_parse()</code> + and + <code class="function">lwres_addr_parse()</code> + return + <span class="errorcode">LWRES_R_SUCCESS.</span> + Both functions return + <span class="errorcode">LWRES_R_FAILURE</span> + if the buffer is corrupt or + <span class="errorcode">LWRES_R_UNEXPECTEDEND</span> + if the buffer has less space than expected for the components of the + encoded string or address. + </p> +<p><code class="function">lwres_getaddrsbyname()</code> + returns <span class="errorcode">LWRES_R_SUCCESS</span> on success and it + returns <span class="errorcode">LWRES_R_NOTFOUND</span> if the hostname + <em class="parameter"><code>name</code></em> could not be found. + </p> +<p><span class="errorcode">LWRES_R_SUCCESS</span> + is returned by a successful call to + <code class="function">lwres_getnamebyaddr()</code>. + </p> <p> -<span class="errorcode">LWRES_R_SUCCESS</span> -is returned by a successful call to -<code class="function">lwres_getnamebyaddr()</code>. -</p> -<p> -Both -<code class="function">lwres_getaddrsbyname()</code> -and -<code class="function">lwres_getnamebyaddr()</code> -return -<span class="errorcode">LWRES_R_NOMEMORY</span> -when memory allocation requests fail and -<span class="errorcode">LWRES_R_UNEXPECTEDEND</span> -if the buffers used for sending queries and receiving replies are too -small. -</p> + Both + <code class="function">lwres_getaddrsbyname()</code> + and + <code class="function">lwres_getnamebyaddr()</code> + return + <span class="errorcode">LWRES_R_NOMEMORY</span> + when memory allocation requests fail and + <span class="errorcode">LWRES_R_UNEXPECTEDEND</span> + if the buffers used for sending queries and receiving replies are too + small. + </p> </div> <div class="refsect1" lang="en"> -<a name="id2549763"></a><h2>SEE ALSO</h2> -<p> -<span class="citerefentry"><span class="refentrytitle">lwres_buffer</span>(3)</span>, +<a name="id2543676"></a><h2>SEE ALSO</h2> +<p><span class="citerefentry"><span class="refentrytitle">lwres_buffer</span>(3)</span>, -<span class="citerefentry"><span class="refentrytitle">lwres_gabn</span>(3)</span>. -</p> + <span class="citerefentry"><span class="refentrytitle">lwres_gabn</span>(3)</span>. + </p> </div> </div></body> </html> diff --git a/usr.sbin/bind/lib/lwres/print.c b/usr.sbin/bind/lib/lwres/print.c index 9e6e5fa69e0..87cec5b47a5 100644 --- a/usr.sbin/bind/lib/lwres/print.c +++ b/usr.sbin/bind/lib/lwres/print.c @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $ISC: print.c,v 1.2.4.7 2005/10/14 01:38:51 marka Exp $ */ +/* $ISC: print.c,v 1.2.2.7 2005/10/14 01:28:30 marka Exp $ */ #include <config.h> |