xref: /titanic_52/usr/src/head/netdir.h (revision ba3594ba9b5dd4c846c472a8d657edcb7c8109ac)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
57c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
67c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
77c478bd9Sstevel@tonic-gate  * with the License.
87c478bd9Sstevel@tonic-gate  *
97c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
107c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
117c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
127c478bd9Sstevel@tonic-gate  * and limitations under the License.
137c478bd9Sstevel@tonic-gate  *
147c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
157c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
167c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
177c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
187c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
197c478bd9Sstevel@tonic-gate  *
207c478bd9Sstevel@tonic-gate  * CDDL HEADER END
217c478bd9Sstevel@tonic-gate  */
22*ba3594baSGarrett D'Amore /*
23*ba3594baSGarrett D'Amore  * Copyright 2014 Garrett D'Amore <garrett@damore.org>
24*ba3594baSGarrett D'Amore  */
257c478bd9Sstevel@tonic-gate /*	Copyright (c) 1992 Sun Microsystems, Inc.	*/
267c478bd9Sstevel@tonic-gate /*	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T	*/
277c478bd9Sstevel@tonic-gate /*	  All Rights Reserved  	*/
287c478bd9Sstevel@tonic-gate 
297c478bd9Sstevel@tonic-gate /*
307c478bd9Sstevel@tonic-gate  * netdir.h
317c478bd9Sstevel@tonic-gate  *
327c478bd9Sstevel@tonic-gate  * This is the include file that defines various structures and
337c478bd9Sstevel@tonic-gate  * constants used by the netdir routines.
347c478bd9Sstevel@tonic-gate  */
357c478bd9Sstevel@tonic-gate 
367c478bd9Sstevel@tonic-gate #ifndef _NETDIR_H
377c478bd9Sstevel@tonic-gate #define	_NETDIR_H
387c478bd9Sstevel@tonic-gate 
397c478bd9Sstevel@tonic-gate /*
407c478bd9Sstevel@tonic-gate  * This files uses struct netconfig, and netconfig.h must be included
417c478bd9Sstevel@tonic-gate  * before this to avoid warnings.
427c478bd9Sstevel@tonic-gate  */
437c478bd9Sstevel@tonic-gate 
447c478bd9Sstevel@tonic-gate #include <netconfig.h>
457c478bd9Sstevel@tonic-gate 
467c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
477c478bd9Sstevel@tonic-gate extern "C" {
487c478bd9Sstevel@tonic-gate #endif
497c478bd9Sstevel@tonic-gate 
507c478bd9Sstevel@tonic-gate struct nd_addrlist {
517c478bd9Sstevel@tonic-gate 	int 		n_cnt;		/* number of netbufs */
527c478bd9Sstevel@tonic-gate 	struct netbuf 	*n_addrs;	/* the netbufs */
537c478bd9Sstevel@tonic-gate };
547c478bd9Sstevel@tonic-gate 
557c478bd9Sstevel@tonic-gate struct nd_hostservlist {
567c478bd9Sstevel@tonic-gate 	int			h_cnt;		/* number of nd_hostservs */
577c478bd9Sstevel@tonic-gate 	struct nd_hostserv	*h_hostservs;	/* the entries */
587c478bd9Sstevel@tonic-gate };
597c478bd9Sstevel@tonic-gate 
607c478bd9Sstevel@tonic-gate struct nd_hostserv {
617c478bd9Sstevel@tonic-gate 	char		*h_host;	/* the host name */
627c478bd9Sstevel@tonic-gate 	char		*h_serv;	/* the service name */
637c478bd9Sstevel@tonic-gate };
647c478bd9Sstevel@tonic-gate 
657c478bd9Sstevel@tonic-gate struct nd_mergearg {
667c478bd9Sstevel@tonic-gate 	char		*s_uaddr;	/* servers universal address */
677c478bd9Sstevel@tonic-gate 	char		*c_uaddr;	/* clients universal address */
687c478bd9Sstevel@tonic-gate 	char		*m_uaddr;	/* merged universal address */
697c478bd9Sstevel@tonic-gate };
707c478bd9Sstevel@tonic-gate 
717c478bd9Sstevel@tonic-gate /*
727c478bd9Sstevel@tonic-gate  * _nderror is a private variable to the netdir system.
737c478bd9Sstevel@tonic-gate  */
747c478bd9Sstevel@tonic-gate #ifdef _REENTRANT
757c478bd9Sstevel@tonic-gate extern int	*__nderror();
767c478bd9Sstevel@tonic-gate #define	_nderror	(*(__nderror()))
777c478bd9Sstevel@tonic-gate #else
787c478bd9Sstevel@tonic-gate extern int _nderror;
797c478bd9Sstevel@tonic-gate #endif  /* _REENTRANT */
807c478bd9Sstevel@tonic-gate 
817c478bd9Sstevel@tonic-gate 
827c478bd9Sstevel@tonic-gate int netdir_options(struct netconfig *, int option, int fd, char *par);
837c478bd9Sstevel@tonic-gate int netdir_getbyname(struct netconfig *, struct nd_hostserv *,
847c478bd9Sstevel@tonic-gate     struct nd_addrlist **);
857c478bd9Sstevel@tonic-gate int netdir_getbyaddr(struct netconfig *, struct nd_hostservlist **,
867c478bd9Sstevel@tonic-gate     struct netbuf *);
877c478bd9Sstevel@tonic-gate int __netdir_getbyaddr_nosrv(struct netconfig *, struct nd_hostservlist **,
887c478bd9Sstevel@tonic-gate     struct netbuf *);
897c478bd9Sstevel@tonic-gate int netdir_mergeaddr(struct netconfig *, char **muaddr, char *uaddr,
907c478bd9Sstevel@tonic-gate     char *ruaddr);
917c478bd9Sstevel@tonic-gate void netdir_free(void *, int);
927c478bd9Sstevel@tonic-gate struct netbuf *uaddr2taddr(struct netconfig *, char *);
937c478bd9Sstevel@tonic-gate char *taddr2uaddr(struct netconfig *, struct netbuf *);
947c478bd9Sstevel@tonic-gate void netdir_perror(char *);
957c478bd9Sstevel@tonic-gate char *netdir_sperror();
967c478bd9Sstevel@tonic-gate struct nd_addrlist *_netdir_getbyname(struct netconfig *, struct nd_hostserv *);
977c478bd9Sstevel@tonic-gate struct nd_hostservlist *_netdir_getbyaddr(struct netconfig *, struct netbuf *);
987c478bd9Sstevel@tonic-gate struct netbuf *_uaddr2taddr(struct netconfig *, char *);
997c478bd9Sstevel@tonic-gate char *_taddr2uaddr(struct netconfig *, struct netbuf *);
1007c478bd9Sstevel@tonic-gate char *_netdir_mergeaddr(struct netconfig *, char *uaddr, char *ruaddr);
1017c478bd9Sstevel@tonic-gate 
1027c478bd9Sstevel@tonic-gate /*
1037c478bd9Sstevel@tonic-gate  * These are all objects that can be freed by netdir_free
1047c478bd9Sstevel@tonic-gate  */
1057c478bd9Sstevel@tonic-gate #define	ND_HOSTSERV	0
1067c478bd9Sstevel@tonic-gate #define	ND_HOSTSERVLIST	1
1077c478bd9Sstevel@tonic-gate #define	ND_ADDR		2
1087c478bd9Sstevel@tonic-gate #define	ND_ADDRLIST	3
1097c478bd9Sstevel@tonic-gate 
1107c478bd9Sstevel@tonic-gate /*
1117c478bd9Sstevel@tonic-gate  * These are the various errors that can be encountered while attempting
1127c478bd9Sstevel@tonic-gate  * to translate names to addresses. Note that none of them (except maybe
1137c478bd9Sstevel@tonic-gate  * no memory) are truely fatal unless the ntoa deamon is on its last attempt
1147c478bd9Sstevel@tonic-gate  * to translate the name. First four errors are to failitate return values
1157c478bd9Sstevel@tonic-gate  * from DNS, that are used by mail and others.
1167c478bd9Sstevel@tonic-gate  *
1177c478bd9Sstevel@tonic-gate  * Negative errors terminate the search resolution process, positive errors
1187c478bd9Sstevel@tonic-gate  * are treated as warnings.
1197c478bd9Sstevel@tonic-gate  */
1207c478bd9Sstevel@tonic-gate 
1217c478bd9Sstevel@tonic-gate #define	ND_TRY_AGAIN	-5	/* Non-Authoritive Host not found, or */
1227c478bd9Sstevel@tonic-gate 				/* SERVERFAIL */
1237c478bd9Sstevel@tonic-gate #define	ND_NO_RECOVERY	-4	/* Non recoverable errors, FORMERR, REFUSED, */
1247c478bd9Sstevel@tonic-gate 				/* NOTIMP */
1257c478bd9Sstevel@tonic-gate #define	ND_NO_DATA	-3	/* Valid name, no data record of requested */
1267c478bd9Sstevel@tonic-gate 				/* type */
1277c478bd9Sstevel@tonic-gate #define	ND_NO_ADDRESS ND_NO_DATA /* no address, look for MX record */
1287c478bd9Sstevel@tonic-gate #define	ND_BADARG	-2	/* Bad arguments passed 	*/
1297c478bd9Sstevel@tonic-gate #define	ND_NOMEM 	-1	/* No virtual memory left	*/
1307c478bd9Sstevel@tonic-gate #define	ND_OK		0	/* Translation successful	*/
1317c478bd9Sstevel@tonic-gate #define	ND_NOHOST	1	/* Hostname was not resolvable	*/
1327c478bd9Sstevel@tonic-gate #define	ND_NOSERV	2	/* Service was unknown		*/
1337c478bd9Sstevel@tonic-gate #define	ND_NOSYM	3	/* Couldn't resolve symbol	*/
1347c478bd9Sstevel@tonic-gate #define	ND_OPEN		4	/* File couldn't be opened	*/
1357c478bd9Sstevel@tonic-gate #define	ND_ACCESS	5	/* File is not accessable	*/
1367c478bd9Sstevel@tonic-gate #define	ND_UKNWN	6	/* Unknown object to be freed	*/
1377c478bd9Sstevel@tonic-gate #define	ND_NOCTRL	7	/* Unknown option passed to netdir_options */
1387c478bd9Sstevel@tonic-gate #define	ND_FAILCTRL	8	/* Option failed in netdir_options */
1397c478bd9Sstevel@tonic-gate #define	ND_SYSTEM	9	/* Other System error		*/
1407c478bd9Sstevel@tonic-gate 
1417c478bd9Sstevel@tonic-gate /*
1427c478bd9Sstevel@tonic-gate  * The following netdir_options commands can be given to the fd. These is
1437c478bd9Sstevel@tonic-gate  * a way of providing for any transport specific action which the caller
1447c478bd9Sstevel@tonic-gate  * may want to initiate on his transport. It is up to the trasport provider
1457c478bd9Sstevel@tonic-gate  * to support the netdir_options he wants to support.
1467c478bd9Sstevel@tonic-gate  */
1477c478bd9Sstevel@tonic-gate 
1487c478bd9Sstevel@tonic-gate #define	ND_SET_BROADCAST	1	/* Do t_optmgmt to support broadcast */
1497c478bd9Sstevel@tonic-gate #define	ND_SET_RESERVEDPORT	2	/* bind it to reserve address */
1507c478bd9Sstevel@tonic-gate #define	ND_CHECK_RESERVEDPORT	3	/* check if address is reserved */
1517c478bd9Sstevel@tonic-gate #define	ND_MERGEADDR		4	/* Merge universal address */
1527c478bd9Sstevel@tonic-gate 
1537c478bd9Sstevel@tonic-gate /*
1547c478bd9Sstevel@tonic-gate  *	The following special case host names are used to give the underlying
1557c478bd9Sstevel@tonic-gate  *	transport provides a clue as to the intent of the request.
1567c478bd9Sstevel@tonic-gate  */
1577c478bd9Sstevel@tonic-gate 
1587c478bd9Sstevel@tonic-gate #define	HOST_SELF	"\\1"
1597c478bd9Sstevel@tonic-gate #define	HOST_ANY	"\\2"
1607c478bd9Sstevel@tonic-gate #define	HOST_BROADCAST	"\\3"
1617c478bd9Sstevel@tonic-gate #define	HOST_SELF_BIND	HOST_SELF
1627c478bd9Sstevel@tonic-gate #define	HOST_SELF_CONNECT	"\\4"
1637c478bd9Sstevel@tonic-gate 
1647c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
1657c478bd9Sstevel@tonic-gate }
1667c478bd9Sstevel@tonic-gate #endif
1677c478bd9Sstevel@tonic-gate 
1687c478bd9Sstevel@tonic-gate #endif	/* _NETDIR_H */
169