xref: /freebsd/include/netdb.h (revision 928268064f1ccaf8d4a4c249dfc35eb8c59dce96)
159deaec5SRodney W. Grimes /*-
259deaec5SRodney W. Grimes  * Copyright (c) 1980, 1983, 1988, 1993
359deaec5SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
459deaec5SRodney W. Grimes  *
559deaec5SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
659deaec5SRodney W. Grimes  * modification, are permitted provided that the following conditions
759deaec5SRodney W. Grimes  * are met:
859deaec5SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
959deaec5SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
1059deaec5SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
1159deaec5SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
1259deaec5SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
1359deaec5SRodney W. Grimes  * 3. All advertising materials mentioning features or use of this software
1459deaec5SRodney W. Grimes  *    must display the following acknowledgement:
1559deaec5SRodney W. Grimes  *	This product includes software developed by the University of
1659deaec5SRodney W. Grimes  *	California, Berkeley and its contributors.
1759deaec5SRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
1859deaec5SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
1959deaec5SRodney W. Grimes  *    without specific prior written permission.
2059deaec5SRodney W. Grimes  *
2159deaec5SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2259deaec5SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2359deaec5SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2459deaec5SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2559deaec5SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2659deaec5SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2759deaec5SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2859deaec5SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2959deaec5SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3059deaec5SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3159deaec5SRodney W. Grimes  * SUCH DAMAGE.
3259deaec5SRodney W. Grimes  *
3359deaec5SRodney W. Grimes  * -
3459deaec5SRodney W. Grimes  * Portions Copyright (c) 1993 by Digital Equipment Corporation.
3559deaec5SRodney W. Grimes  *
3659deaec5SRodney W. Grimes  * Permission to use, copy, modify, and distribute this software for any
3759deaec5SRodney W. Grimes  * purpose with or without fee is hereby granted, provided that the above
3859deaec5SRodney W. Grimes  * copyright notice and this permission notice appear in all copies, and that
3959deaec5SRodney W. Grimes  * the name of Digital Equipment Corporation not be used in advertising or
4059deaec5SRodney W. Grimes  * publicity pertaining to distribution of the document or software without
4159deaec5SRodney W. Grimes  * specific, written prior permission.
4259deaec5SRodney W. Grimes  *
4359deaec5SRodney W. Grimes  * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
4459deaec5SRodney W. Grimes  * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
4559deaec5SRodney W. Grimes  * OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT
4659deaec5SRodney W. Grimes  * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
4759deaec5SRodney W. Grimes  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
4859deaec5SRodney W. Grimes  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
4959deaec5SRodney W. Grimes  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
5059deaec5SRodney W. Grimes  * SOFTWARE.
5159deaec5SRodney W. Grimes  * -
5259deaec5SRodney W. Grimes  * --Copyright--
5359deaec5SRodney W. Grimes  */
5459deaec5SRodney W. Grimes 
550160f9c0SPeter Wemm /*
560160f9c0SPeter Wemm  *      @(#)netdb.h	8.1 (Berkeley) 6/2/93
570160f9c0SPeter Wemm  *      From: Id: netdb.h,v 8.9 1996/11/19 08:39:29 vixie Exp $
58a4add9a9SPeter Wemm  * $FreeBSD$
590160f9c0SPeter Wemm  */
600160f9c0SPeter Wemm 
6159deaec5SRodney W. Grimes #ifndef _NETDB_H_
6259deaec5SRodney W. Grimes #define _NETDB_H_
6359deaec5SRodney W. Grimes 
64ad9fdc8fSHajimu UMEMOTO #include <machine/ansi.h>
65315d6d9cSPeter Wemm #include <sys/cdefs.h>
66ad9fdc8fSHajimu UMEMOTO 
67ad9fdc8fSHajimu UMEMOTO #ifdef	_BSD_SIZE_T_
68ad9fdc8fSHajimu UMEMOTO typedef	_BSD_SIZE_T_	size_t;
69ad9fdc8fSHajimu UMEMOTO #undef	_BSD_SIZE_T_
70ad9fdc8fSHajimu UMEMOTO #endif
71315d6d9cSPeter Wemm 
720160f9c0SPeter Wemm #ifndef _PATH_HEQUIV
7359deaec5SRodney W. Grimes # define	_PATH_HEQUIV	"/etc/hosts.equiv"
740160f9c0SPeter Wemm #endif
7559deaec5SRodney W. Grimes #define	_PATH_HOSTS	"/etc/hosts"
7659deaec5SRodney W. Grimes #define	_PATH_NETWORKS	"/etc/networks"
7759deaec5SRodney W. Grimes #define	_PATH_PROTOCOLS	"/etc/protocols"
7859deaec5SRodney W. Grimes #define	_PATH_SERVICES	"/etc/services"
7959deaec5SRodney W. Grimes 
80d58a9efdSPeter Wemm extern int h_errno;
81d58a9efdSPeter Wemm 
8259deaec5SRodney W. Grimes /*
8359deaec5SRodney W. Grimes  * Structures returned by network data base library.  All addresses are
8459deaec5SRodney W. Grimes  * supplied in host order, and returned in network order (suitable for
8559deaec5SRodney W. Grimes  * use in system calls).
8659deaec5SRodney W. Grimes  */
8759deaec5SRodney W. Grimes struct	hostent {
8859deaec5SRodney W. Grimes 	char	*h_name;	/* official name of host */
8959deaec5SRodney W. Grimes 	char	**h_aliases;	/* alias list */
9059deaec5SRodney W. Grimes 	int	h_addrtype;	/* host address type */
9159deaec5SRodney W. Grimes 	int	h_length;	/* length of address */
9259deaec5SRodney W. Grimes 	char	**h_addr_list;	/* list of addresses from name server */
9371d9c781SMike Pritchard #define	h_addr	h_addr_list[0]	/* address, for backward compatibility */
9459deaec5SRodney W. Grimes };
9559deaec5SRodney W. Grimes 
9659deaec5SRodney W. Grimes /*
9759deaec5SRodney W. Grimes  * Assumption here is that a network number
9859deaec5SRodney W. Grimes  * fits in an unsigned long -- probably a poor one.
9959deaec5SRodney W. Grimes  */
10059deaec5SRodney W. Grimes struct	netent {
10159deaec5SRodney W. Grimes 	char		*n_name;	/* official name of net */
10259deaec5SRodney W. Grimes 	char		**n_aliases;	/* alias list */
10359deaec5SRodney W. Grimes 	int		n_addrtype;	/* net address type */
10459deaec5SRodney W. Grimes 	unsigned long	n_net;		/* network # */
10559deaec5SRodney W. Grimes };
10659deaec5SRodney W. Grimes 
10759deaec5SRodney W. Grimes struct	servent {
10859deaec5SRodney W. Grimes 	char	*s_name;	/* official service name */
10959deaec5SRodney W. Grimes 	char	**s_aliases;	/* alias list */
11059deaec5SRodney W. Grimes 	int	s_port;		/* port # */
11159deaec5SRodney W. Grimes 	char	*s_proto;	/* protocol to use */
11259deaec5SRodney W. Grimes };
11359deaec5SRodney W. Grimes 
11459deaec5SRodney W. Grimes struct	protoent {
11559deaec5SRodney W. Grimes 	char	*p_name;	/* official protocol name */
11659deaec5SRodney W. Grimes 	char	**p_aliases;	/* alias list */
11759deaec5SRodney W. Grimes 	int	p_proto;	/* protocol # */
11859deaec5SRodney W. Grimes };
11959deaec5SRodney W. Grimes 
1207d56d374SYoshinobu Inoue struct addrinfo {
1217d56d374SYoshinobu Inoue 	int	ai_flags;	/* AI_PASSIVE, AI_CANONNAME, AI_NUMERICHOST */
1227d56d374SYoshinobu Inoue 	int	ai_family;	/* PF_xxx */
1237d56d374SYoshinobu Inoue 	int	ai_socktype;	/* SOCK_xxx */
1247d56d374SYoshinobu Inoue 	int	ai_protocol;	/* 0 or IPPROTO_xxx for IPv4 and IPv6 */
1257d56d374SYoshinobu Inoue 	size_t	ai_addrlen;	/* length of ai_addr */
1267d56d374SYoshinobu Inoue 	char	*ai_canonname;	/* canonical name for hostname */
1277d56d374SYoshinobu Inoue 	struct	sockaddr *ai_addr;	/* binary address */
1287d56d374SYoshinobu Inoue 	struct	addrinfo *ai_next;	/* next structure in linked list */
1297d56d374SYoshinobu Inoue };
1307d56d374SYoshinobu Inoue 
13159deaec5SRodney W. Grimes /*
13259deaec5SRodney W. Grimes  * Error return codes from gethostbyname() and gethostbyaddr()
13359deaec5SRodney W. Grimes  * (left in extern int h_errno).
13459deaec5SRodney W. Grimes  */
13559deaec5SRodney W. Grimes 
136d58a9efdSPeter Wemm #define	NETDB_INTERNAL	-1	/* see errno */
137d58a9efdSPeter Wemm #define	NETDB_SUCCESS	0	/* no problem */
13859deaec5SRodney W. Grimes #define	HOST_NOT_FOUND	1 /* Authoritative Answer Host not found */
13971d9c781SMike Pritchard #define	TRY_AGAIN	2 /* Non-Authoritative Host not found, or SERVERFAIL */
14059deaec5SRodney W. Grimes #define	NO_RECOVERY	3 /* Non recoverable errors, FORMERR, REFUSED, NOTIMP */
14159deaec5SRodney W. Grimes #define	NO_DATA		4 /* Valid name, no data record of requested type */
14259deaec5SRodney W. Grimes #define	NO_ADDRESS	NO_DATA		/* no address, look for MX record */
14359deaec5SRodney W. Grimes 
1447d56d374SYoshinobu Inoue /*
1457d56d374SYoshinobu Inoue  * Error return codes from getaddrinfo()
1467d56d374SYoshinobu Inoue  */
1477d56d374SYoshinobu Inoue #define	EAI_ADDRFAMILY	 1	/* address family for hostname not supported */
1487d56d374SYoshinobu Inoue #define	EAI_AGAIN	 2	/* temporary failure in name resolution */
1497d56d374SYoshinobu Inoue #define	EAI_BADFLAGS	 3	/* invalid value for ai_flags */
1507d56d374SYoshinobu Inoue #define	EAI_FAIL	 4	/* non-recoverable failure in name resolution */
1517d56d374SYoshinobu Inoue #define	EAI_FAMILY	 5	/* ai_family not supported */
1527d56d374SYoshinobu Inoue #define	EAI_MEMORY	 6	/* memory allocation failure */
1537d56d374SYoshinobu Inoue #define	EAI_NODATA	 7	/* no address associated with hostname */
1547d56d374SYoshinobu Inoue #define	EAI_NONAME	 8	/* hostname nor servname provided, or not known */
1557d56d374SYoshinobu Inoue #define	EAI_SERVICE	 9	/* servname not supported for ai_socktype */
1567d56d374SYoshinobu Inoue #define	EAI_SOCKTYPE	10	/* ai_socktype not supported */
1577d56d374SYoshinobu Inoue #define	EAI_SYSTEM	11	/* system error returned in errno */
1587d56d374SYoshinobu Inoue #define	EAI_BADHINTS	12
1597d56d374SYoshinobu Inoue #define	EAI_PROTOCOL	13
1607d56d374SYoshinobu Inoue #define	EAI_RESNULL	14
1617d56d374SYoshinobu Inoue #define	EAI_MAX		15
1627d56d374SYoshinobu Inoue 
1637d56d374SYoshinobu Inoue /*
1647d56d374SYoshinobu Inoue  * Flag values for getaddrinfo()
1657d56d374SYoshinobu Inoue  */
1667d56d374SYoshinobu Inoue #define	AI_PASSIVE	0x00000001 /* get address to use bind() */
1677d56d374SYoshinobu Inoue #define	AI_CANONNAME	0x00000002 /* fill ai_canonname */
1687d56d374SYoshinobu Inoue #define	AI_NUMERICHOST	0x00000004 /* prevent name resolution */
1697d56d374SYoshinobu Inoue /* valid flags for addrinfo */
17092826806SHajimu UMEMOTO #define AI_MASK \
17192826806SHajimu UMEMOTO     (AI_PASSIVE | AI_CANONNAME | AI_NUMERICHOST | AI_ADDRCONFIG)
1727d56d374SYoshinobu Inoue 
1737d56d374SYoshinobu Inoue #define	AI_ALL		0x00000100 /* IPv6 and IPv4-mapped (with AI_V4MAPPED) */
1747d56d374SYoshinobu Inoue #define	AI_V4MAPPED_CFG	0x00000200 /* accept IPv4-mapped if kernel supports */
1757d56d374SYoshinobu Inoue #define	AI_ADDRCONFIG	0x00000400 /* only if any address is assigned */
1767d56d374SYoshinobu Inoue #define	AI_V4MAPPED	0x00000800 /* accept IPv4-mapped IPv6 address */
1777d56d374SYoshinobu Inoue /* special recommended flags for getipnodebyname */
1787d56d374SYoshinobu Inoue #define	AI_DEFAULT	(AI_V4MAPPED_CFG | AI_ADDRCONFIG)
1797d56d374SYoshinobu Inoue 
1807d56d374SYoshinobu Inoue /*
1817d56d374SYoshinobu Inoue  * Constants for getnameinfo()
1827d56d374SYoshinobu Inoue  */
1837d56d374SYoshinobu Inoue #define	NI_MAXHOST	1025
1847d56d374SYoshinobu Inoue #define	NI_MAXSERV	32
1857d56d374SYoshinobu Inoue 
1867d56d374SYoshinobu Inoue /*
1877d56d374SYoshinobu Inoue  * Flag values for getnameinfo()
1887d56d374SYoshinobu Inoue  */
1897d56d374SYoshinobu Inoue #define	NI_NOFQDN	0x00000001
1907d56d374SYoshinobu Inoue #define	NI_NUMERICHOST	0x00000002
1917d56d374SYoshinobu Inoue #define	NI_NAMEREQD	0x00000004
1927d56d374SYoshinobu Inoue #define	NI_NUMERICSERV	0x00000008
1937d56d374SYoshinobu Inoue #define	NI_DGRAM	0x00000010
1947d56d374SYoshinobu Inoue #define NI_WITHSCOPEID	0x00000020
1957d56d374SYoshinobu Inoue 
1967d56d374SYoshinobu Inoue /*
1977d56d374SYoshinobu Inoue  * Scope delimit character
1987d56d374SYoshinobu Inoue  */
19912cefbccSYoshinobu Inoue #define	SCOPE_DELIMITER	'%'
2007d56d374SYoshinobu Inoue 
201ad9fdc8fSHajimu UMEMOTO /*
202ad9fdc8fSHajimu UMEMOTO  * data types - basically forward decl for getnameinfo()
203ad9fdc8fSHajimu UMEMOTO  */
204ad9fdc8fSHajimu UMEMOTO #ifdef	_BSD_SOCKLEN_T_
205ad9fdc8fSHajimu UMEMOTO typedef	_BSD_SOCKLEN_T_	socklen_t;
206ad9fdc8fSHajimu UMEMOTO #undef	_BSD_SOCKLEN_T_
207ad9fdc8fSHajimu UMEMOTO #endif
208ad9fdc8fSHajimu UMEMOTO 
20959deaec5SRodney W. Grimes __BEGIN_DECLS
21059deaec5SRodney W. Grimes void		endhostent __P((void));
21159deaec5SRodney W. Grimes void		endnetent __P((void));
21259deaec5SRodney W. Grimes void		endprotoent __P((void));
21359deaec5SRodney W. Grimes void		endservent __P((void));
2147d56d374SYoshinobu Inoue void		freehostent __P((struct hostent *));
21559deaec5SRodney W. Grimes struct hostent	*gethostbyaddr __P((const char *, int, int));
21659deaec5SRodney W. Grimes struct hostent	*gethostbyname __P((const char *));
21774b3fad6SPeter Wemm struct hostent	*gethostbyname2 __P((const char *, int));
21859deaec5SRodney W. Grimes struct hostent	*gethostent __P((void));
2197d56d374SYoshinobu Inoue struct hostent	*getipnodebyaddr __P((const void *, size_t, int, int *));
2207d56d374SYoshinobu Inoue struct hostent	*getipnodebyname __P((const char *, int, int, int *));
221315d6d9cSPeter Wemm struct netent	*getnetbyaddr __P((unsigned long, int));
22259deaec5SRodney W. Grimes struct netent	*getnetbyname __P((const char *));
22359deaec5SRodney W. Grimes struct netent	*getnetent __P((void));
22459deaec5SRodney W. Grimes struct protoent	*getprotobyname __P((const char *));
22559deaec5SRodney W. Grimes struct protoent	*getprotobynumber __P((int));
22659deaec5SRodney W. Grimes struct protoent	*getprotoent __P((void));
22759deaec5SRodney W. Grimes struct servent	*getservbyname __P((const char *, const char *));
22859deaec5SRodney W. Grimes struct servent	*getservbyport __P((int, const char *));
22959deaec5SRodney W. Grimes struct servent	*getservent __P((void));
23059deaec5SRodney W. Grimes void		herror __P((const char *));
231fcd57f5cSSteve Price __const char	*hstrerror __P((int));
23259deaec5SRodney W. Grimes void		sethostent __P((int));
23359deaec5SRodney W. Grimes /* void		sethostfile __P((const char *)); */
23459deaec5SRodney W. Grimes void		setnetent __P((int));
23559deaec5SRodney W. Grimes void		setprotoent __P((int));
2367d56d374SYoshinobu Inoue int		getaddrinfo __P((const char *, const char *,
2377d56d374SYoshinobu Inoue 				 const struct addrinfo *, struct addrinfo **));
238ad9fdc8fSHajimu UMEMOTO int		getnameinfo __P((const struct sockaddr *, socklen_t, char *,
2397d56d374SYoshinobu Inoue 				 size_t, char *, size_t, int));
2407d56d374SYoshinobu Inoue void		freeaddrinfo __P((struct addrinfo *));
2417d56d374SYoshinobu Inoue char		*gai_strerror __P((int));
24259deaec5SRodney W. Grimes void		setservent __P((int));
24374b3fad6SPeter Wemm 
24474b3fad6SPeter Wemm /*
24574b3fad6SPeter Wemm  * PRIVATE functions specific to the FreeBSD implementation
24674b3fad6SPeter Wemm  */
24774b3fad6SPeter Wemm 
24874b3fad6SPeter Wemm /* DO NOT USE THESE, THEY ARE SUBJECT TO CHANGE AND ARE NOT PORTABLE!!! */
24974b3fad6SPeter Wemm void	_sethosthtent __P((int));
25074b3fad6SPeter Wemm void	_endhosthtent __P((void));
25174b3fad6SPeter Wemm void	_sethostdnsent __P((int));
25274b3fad6SPeter Wemm void	_endhostdnsent __P((void));
25374b3fad6SPeter Wemm void	_setnethtent __P((int));
25474b3fad6SPeter Wemm void	_endnethtent __P((void));
25574b3fad6SPeter Wemm void	_setnetdnsent __P((int));
25674b3fad6SPeter Wemm void	_endnetdnsent __P((void));
25774b3fad6SPeter Wemm struct hostent * _gethostbynisname __P((const char *, int));
25874b3fad6SPeter Wemm struct hostent * _gethostbynisaddr __P((const char *, int, int));
25974b3fad6SPeter Wemm void _map_v4v6_address __P((const char *src, char *dst));
26074b3fad6SPeter Wemm void _map_v4v6_hostent __P((struct hostent *hp, char **bp, int *len));
26159deaec5SRodney W. Grimes __END_DECLS
26259deaec5SRodney W. Grimes 
26359deaec5SRodney W. Grimes #endif /* !_NETDB_H_ */
264