17c478bd9Sstevel@tonic-gate /*
29525b14bSRao Shoaib  * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
37c478bd9Sstevel@tonic-gate  * Copyright (c) 1996,1999 by Internet Software Consortium.
47c478bd9Sstevel@tonic-gate  *
57c478bd9Sstevel@tonic-gate  * Permission to use, copy, modify, and distribute this software for any
67c478bd9Sstevel@tonic-gate  * purpose with or without fee is hereby granted, provided that the above
77c478bd9Sstevel@tonic-gate  * copyright notice and this permission notice appear in all copies.
87c478bd9Sstevel@tonic-gate  *
99525b14bSRao Shoaib  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
109525b14bSRao Shoaib  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
119525b14bSRao Shoaib  * MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR
129525b14bSRao Shoaib  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
139525b14bSRao Shoaib  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
149525b14bSRao Shoaib  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
159525b14bSRao Shoaib  * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
167c478bd9Sstevel@tonic-gate  */
177c478bd9Sstevel@tonic-gate 
187c478bd9Sstevel@tonic-gate /* Imports */
197c478bd9Sstevel@tonic-gate 
207c478bd9Sstevel@tonic-gate #include "port_before.h"
217c478bd9Sstevel@tonic-gate 
227c478bd9Sstevel@tonic-gate #include <sys/types.h>
237c478bd9Sstevel@tonic-gate #include <netinet/in.h>
247c478bd9Sstevel@tonic-gate 
257c478bd9Sstevel@tonic-gate #include <stdio.h>
267c478bd9Sstevel@tonic-gate #include <string.h>
277c478bd9Sstevel@tonic-gate #include <netdb.h>
287c478bd9Sstevel@tonic-gate #include <ctype.h>
297c478bd9Sstevel@tonic-gate #include <stdlib.h>
307c478bd9Sstevel@tonic-gate #include <errno.h>
317c478bd9Sstevel@tonic-gate 
327c478bd9Sstevel@tonic-gate #include <sys/types.h>
337c478bd9Sstevel@tonic-gate #include <netinet/in.h>
347c478bd9Sstevel@tonic-gate #include <arpa/nameser.h>
357c478bd9Sstevel@tonic-gate #include <resolv.h>
367c478bd9Sstevel@tonic-gate 
377c478bd9Sstevel@tonic-gate #include <isc/memcluster.h>
387c478bd9Sstevel@tonic-gate #include <irs.h>
397c478bd9Sstevel@tonic-gate 
407c478bd9Sstevel@tonic-gate #include "port_after.h"
417c478bd9Sstevel@tonic-gate 
427c478bd9Sstevel@tonic-gate #include "irs_p.h"
437c478bd9Sstevel@tonic-gate #include "hesiod.h"
447c478bd9Sstevel@tonic-gate #include "dns_p.h"
457c478bd9Sstevel@tonic-gate 
467c478bd9Sstevel@tonic-gate /* Definitions */
477c478bd9Sstevel@tonic-gate 
487c478bd9Sstevel@tonic-gate struct pvt {
497c478bd9Sstevel@tonic-gate 	struct dns_p *		dns;
507c478bd9Sstevel@tonic-gate 	struct servent		serv;
517c478bd9Sstevel@tonic-gate 	char *			svbuf;
527c478bd9Sstevel@tonic-gate 	struct __res_state *	res;
537c478bd9Sstevel@tonic-gate 	void			(*free_res)(void *);
547c478bd9Sstevel@tonic-gate };
557c478bd9Sstevel@tonic-gate 
567c478bd9Sstevel@tonic-gate /* Forward. */
577c478bd9Sstevel@tonic-gate 
587c478bd9Sstevel@tonic-gate static void 			sv_close(struct irs_sv *);
597c478bd9Sstevel@tonic-gate static struct servent *		sv_byname(struct irs_sv *,
607c478bd9Sstevel@tonic-gate 					  const char *, const char *);
617c478bd9Sstevel@tonic-gate static struct servent *		sv_byport(struct irs_sv *, int, const char *);
627c478bd9Sstevel@tonic-gate static struct servent *		sv_next(struct irs_sv *);
637c478bd9Sstevel@tonic-gate static void			sv_rewind(struct irs_sv *);
647c478bd9Sstevel@tonic-gate static void			sv_minimize(struct irs_sv *);
657c478bd9Sstevel@tonic-gate #ifdef SV_RES_SETGET
667c478bd9Sstevel@tonic-gate static struct __res_state *	sv_res_get(struct irs_sv *);
677c478bd9Sstevel@tonic-gate static void			sv_res_set(struct irs_sv *,
687c478bd9Sstevel@tonic-gate 					   struct __res_state *,
697c478bd9Sstevel@tonic-gate 					   void (*)(void *));
707c478bd9Sstevel@tonic-gate #endif
717c478bd9Sstevel@tonic-gate 
727c478bd9Sstevel@tonic-gate static struct servent *		parse_hes_list(struct irs_sv *,
737c478bd9Sstevel@tonic-gate 					       char **, const char *);
747c478bd9Sstevel@tonic-gate 
757c478bd9Sstevel@tonic-gate /* Public */
767c478bd9Sstevel@tonic-gate 
777c478bd9Sstevel@tonic-gate struct irs_sv *
irs_dns_sv(struct irs_acc * this)787c478bd9Sstevel@tonic-gate irs_dns_sv(struct irs_acc *this) {
797c478bd9Sstevel@tonic-gate 	struct dns_p *dns = (struct dns_p *)this->private;
807c478bd9Sstevel@tonic-gate 	struct irs_sv *sv;
817c478bd9Sstevel@tonic-gate 	struct pvt *pvt;
827c478bd9Sstevel@tonic-gate 
837c478bd9Sstevel@tonic-gate 	if (!dns || !dns->hes_ctx) {
847c478bd9Sstevel@tonic-gate 		errno = ENODEV;
857c478bd9Sstevel@tonic-gate 		return (NULL);
867c478bd9Sstevel@tonic-gate 	}
877c478bd9Sstevel@tonic-gate 	if (!(pvt = memget(sizeof *pvt))) {
887c478bd9Sstevel@tonic-gate 		errno = ENOMEM;
897c478bd9Sstevel@tonic-gate 		return (NULL);
907c478bd9Sstevel@tonic-gate 	}
917c478bd9Sstevel@tonic-gate 	memset(pvt, 0, sizeof *pvt);
927c478bd9Sstevel@tonic-gate 	pvt->dns = dns;
937c478bd9Sstevel@tonic-gate 	if (!(sv = memget(sizeof *sv))) {
947c478bd9Sstevel@tonic-gate 		memput(pvt, sizeof *pvt);
957c478bd9Sstevel@tonic-gate 		errno = ENOMEM;
967c478bd9Sstevel@tonic-gate 		return (NULL);
977c478bd9Sstevel@tonic-gate 	}
987c478bd9Sstevel@tonic-gate 	memset(sv, 0x5e, sizeof *sv);
997c478bd9Sstevel@tonic-gate 	sv->private = pvt;
1007c478bd9Sstevel@tonic-gate 	sv->byname = sv_byname;
1017c478bd9Sstevel@tonic-gate 	sv->byport = sv_byport;
1027c478bd9Sstevel@tonic-gate 	sv->next = sv_next;
1037c478bd9Sstevel@tonic-gate 	sv->rewind = sv_rewind;
1047c478bd9Sstevel@tonic-gate 	sv->close = sv_close;
1057c478bd9Sstevel@tonic-gate 	sv->minimize = sv_minimize;
1067c478bd9Sstevel@tonic-gate #ifdef SV_RES_SETGET
1077c478bd9Sstevel@tonic-gate 	sv->res_get = sv_res_get;
1087c478bd9Sstevel@tonic-gate 	sv->res_set = sv_res_set;
1097c478bd9Sstevel@tonic-gate #else
1109525b14bSRao Shoaib 	sv->res_get = NULL; /*%< sv_res_get; */
1119525b14bSRao Shoaib 	sv->res_set = NULL; /*%< sv_res_set; */
1127c478bd9Sstevel@tonic-gate #endif
1137c478bd9Sstevel@tonic-gate 	return (sv);
1147c478bd9Sstevel@tonic-gate }
1157c478bd9Sstevel@tonic-gate 
1167c478bd9Sstevel@tonic-gate /* Methods */
1177c478bd9Sstevel@tonic-gate 
1187c478bd9Sstevel@tonic-gate static void
sv_close(struct irs_sv * this)1197c478bd9Sstevel@tonic-gate sv_close(struct irs_sv *this) {
1207c478bd9Sstevel@tonic-gate 	struct pvt *pvt = (struct pvt *)this->private;
1217c478bd9Sstevel@tonic-gate 
1227c478bd9Sstevel@tonic-gate 	if (pvt->serv.s_aliases)
1237c478bd9Sstevel@tonic-gate 		free(pvt->serv.s_aliases);
1247c478bd9Sstevel@tonic-gate 	if (pvt->svbuf)
1257c478bd9Sstevel@tonic-gate 		free(pvt->svbuf);
1267c478bd9Sstevel@tonic-gate 
1277c478bd9Sstevel@tonic-gate 	if (pvt->res && pvt->free_res)
1287c478bd9Sstevel@tonic-gate 		(*pvt->free_res)(pvt->res);
1297c478bd9Sstevel@tonic-gate 	memput(pvt, sizeof *pvt);
1307c478bd9Sstevel@tonic-gate 	memput(this, sizeof *this);
1317c478bd9Sstevel@tonic-gate }
1327c478bd9Sstevel@tonic-gate 
1337c478bd9Sstevel@tonic-gate static struct servent *
sv_byname(struct irs_sv * this,const char * name,const char * proto)1347c478bd9Sstevel@tonic-gate sv_byname(struct irs_sv *this, const char *name, const char *proto) {
1357c478bd9Sstevel@tonic-gate 	struct pvt *pvt = (struct pvt *)this->private;
1367c478bd9Sstevel@tonic-gate 	struct dns_p *dns = pvt->dns;
1377c478bd9Sstevel@tonic-gate 	struct servent *s;
1387c478bd9Sstevel@tonic-gate 	char **hes_list;
1397c478bd9Sstevel@tonic-gate 
1407c478bd9Sstevel@tonic-gate 	if (!(hes_list = hesiod_resolve(dns->hes_ctx, name, "service")))
1417c478bd9Sstevel@tonic-gate 		return (NULL);
1427c478bd9Sstevel@tonic-gate 
1437c478bd9Sstevel@tonic-gate 	s = parse_hes_list(this, hes_list, proto);
1447c478bd9Sstevel@tonic-gate 	hesiod_free_list(dns->hes_ctx, hes_list);
1457c478bd9Sstevel@tonic-gate 	return (s);
1467c478bd9Sstevel@tonic-gate }
1477c478bd9Sstevel@tonic-gate 
1487c478bd9Sstevel@tonic-gate static struct servent *
sv_byport(struct irs_sv * this,int port,const char * proto)1497c478bd9Sstevel@tonic-gate sv_byport(struct irs_sv *this, int port, const char *proto) {
1507c478bd9Sstevel@tonic-gate 	struct pvt *pvt = (struct pvt *)this->private;
1517c478bd9Sstevel@tonic-gate 	struct dns_p *dns = pvt->dns;
1527c478bd9Sstevel@tonic-gate 	struct servent *s;
1537c478bd9Sstevel@tonic-gate 	char portstr[16];
1547c478bd9Sstevel@tonic-gate 	char **hes_list;
1557c478bd9Sstevel@tonic-gate 
1567c478bd9Sstevel@tonic-gate 	sprintf(portstr, "%d", ntohs(port));
1577c478bd9Sstevel@tonic-gate 	if (!(hes_list = hesiod_resolve(dns->hes_ctx, portstr, "port")))
1587c478bd9Sstevel@tonic-gate 		return (NULL);
159*55fea89dSDan Cross 
1607c478bd9Sstevel@tonic-gate 	s = parse_hes_list(this, hes_list, proto);
1617c478bd9Sstevel@tonic-gate 	hesiod_free_list(dns->hes_ctx, hes_list);
1627c478bd9Sstevel@tonic-gate 	return (s);
1637c478bd9Sstevel@tonic-gate }
1647c478bd9Sstevel@tonic-gate 
1657c478bd9Sstevel@tonic-gate static struct servent *
sv_next(struct irs_sv * this)1667c478bd9Sstevel@tonic-gate sv_next(struct irs_sv *this) {
1677c478bd9Sstevel@tonic-gate 	UNUSED(this);
1687c478bd9Sstevel@tonic-gate 	errno = ENODEV;
1697c478bd9Sstevel@tonic-gate 	return (NULL);
1707c478bd9Sstevel@tonic-gate }
1717c478bd9Sstevel@tonic-gate 
1727c478bd9Sstevel@tonic-gate static void
sv_rewind(struct irs_sv * this)1737c478bd9Sstevel@tonic-gate sv_rewind(struct irs_sv *this) {
1747c478bd9Sstevel@tonic-gate 	UNUSED(this);
1757c478bd9Sstevel@tonic-gate 	/* NOOP */
1767c478bd9Sstevel@tonic-gate }
1777c478bd9Sstevel@tonic-gate 
1787c478bd9Sstevel@tonic-gate /* Private */
1797c478bd9Sstevel@tonic-gate 
1807c478bd9Sstevel@tonic-gate static struct servent *
parse_hes_list(struct irs_sv * this,char ** hes_list,const char * proto)1817c478bd9Sstevel@tonic-gate parse_hes_list(struct irs_sv *this, char **hes_list, const char *proto) {
1827c478bd9Sstevel@tonic-gate 	struct pvt *pvt = (struct pvt *)this->private;
1837c478bd9Sstevel@tonic-gate 	char *p, *cp, **cpp, **new;
1847c478bd9Sstevel@tonic-gate 	int proto_len;
1857c478bd9Sstevel@tonic-gate 	int num = 0;
1867c478bd9Sstevel@tonic-gate 	int max = 0;
187*55fea89dSDan Cross 
1887c478bd9Sstevel@tonic-gate 	for (cpp = hes_list; *cpp; cpp++) {
1897c478bd9Sstevel@tonic-gate 		cp = *cpp;
1907c478bd9Sstevel@tonic-gate 
1917c478bd9Sstevel@tonic-gate 		/* Strip away comments, if any. */
1927c478bd9Sstevel@tonic-gate 		if ((p = strchr(cp, '#')))
1937c478bd9Sstevel@tonic-gate 			*p = 0;
1947c478bd9Sstevel@tonic-gate 
1957c478bd9Sstevel@tonic-gate 		/* Check to make sure the protocol matches. */
1967c478bd9Sstevel@tonic-gate 		p = cp;
1977c478bd9Sstevel@tonic-gate 		while (*p && !isspace((unsigned char)*p))
1987c478bd9Sstevel@tonic-gate 			p++;
1997c478bd9Sstevel@tonic-gate 		if (!*p)
2007c478bd9Sstevel@tonic-gate 			continue;
2017c478bd9Sstevel@tonic-gate 		if (proto) {
2027c478bd9Sstevel@tonic-gate 		     proto_len = strlen(proto);
2037c478bd9Sstevel@tonic-gate 		     if (strncasecmp(++p, proto, proto_len) != 0)
2047c478bd9Sstevel@tonic-gate 			  continue;
2057c478bd9Sstevel@tonic-gate 		     if (p[proto_len] && !isspace(p[proto_len]&0xff))
2067c478bd9Sstevel@tonic-gate 			  continue;
2077c478bd9Sstevel@tonic-gate 		}
2087c478bd9Sstevel@tonic-gate 		/* OK, we've got a live one.  Let's parse it for real. */
2097c478bd9Sstevel@tonic-gate 		if (pvt->svbuf)
2107c478bd9Sstevel@tonic-gate 			free(pvt->svbuf);
2117c478bd9Sstevel@tonic-gate 		pvt->svbuf = strdup(cp);
2127c478bd9Sstevel@tonic-gate 
2137c478bd9Sstevel@tonic-gate 		p = pvt->svbuf;
2147c478bd9Sstevel@tonic-gate 		pvt->serv.s_name = p;
2157c478bd9Sstevel@tonic-gate 		while (*p && !isspace(*p&0xff))
2167c478bd9Sstevel@tonic-gate 			p++;
2177c478bd9Sstevel@tonic-gate 		if (!*p)
2187c478bd9Sstevel@tonic-gate 			continue;
2197c478bd9Sstevel@tonic-gate 		*p++ = '\0';
2207c478bd9Sstevel@tonic-gate 
2217c478bd9Sstevel@tonic-gate 		pvt->serv.s_proto = p;
2227c478bd9Sstevel@tonic-gate 		while (*p && !isspace(*p&0xff))
2237c478bd9Sstevel@tonic-gate 			p++;
2247c478bd9Sstevel@tonic-gate 		if (!*p)
2257c478bd9Sstevel@tonic-gate 			continue;
2267c478bd9Sstevel@tonic-gate 		*p++ = '\0';
2277c478bd9Sstevel@tonic-gate 
2287c478bd9Sstevel@tonic-gate 		pvt->serv.s_port = htons((u_short) atoi(p));
2297c478bd9Sstevel@tonic-gate 		while (*p && !isspace(*p&0xff))
2307c478bd9Sstevel@tonic-gate 			p++;
2317c478bd9Sstevel@tonic-gate 		if (*p)
2327c478bd9Sstevel@tonic-gate 			*p++ = '\0';
2337c478bd9Sstevel@tonic-gate 
2347c478bd9Sstevel@tonic-gate 		while (*p) {
2357c478bd9Sstevel@tonic-gate 			if ((num + 1) >= max || !pvt->serv.s_aliases) {
2367c478bd9Sstevel@tonic-gate 				max += 10;
2377c478bd9Sstevel@tonic-gate 				new = realloc(pvt->serv.s_aliases,
2387c478bd9Sstevel@tonic-gate 					      max * sizeof(char *));
2397c478bd9Sstevel@tonic-gate 				if (!new) {
2407c478bd9Sstevel@tonic-gate 					errno = ENOMEM;
2417c478bd9Sstevel@tonic-gate 					goto cleanup;
2427c478bd9Sstevel@tonic-gate 				}
2437c478bd9Sstevel@tonic-gate 				pvt->serv.s_aliases = new;
2447c478bd9Sstevel@tonic-gate 			}
2457c478bd9Sstevel@tonic-gate 			pvt->serv.s_aliases[num++] = p;
2467c478bd9Sstevel@tonic-gate 			while (*p && !isspace(*p&0xff))
2477c478bd9Sstevel@tonic-gate 				p++;
2487c478bd9Sstevel@tonic-gate 			if (*p)
2497c478bd9Sstevel@tonic-gate 				*p++ = '\0';
2507c478bd9Sstevel@tonic-gate 		}
2517c478bd9Sstevel@tonic-gate 		if (!pvt->serv.s_aliases)
2527c478bd9Sstevel@tonic-gate 			pvt->serv.s_aliases = malloc(sizeof(char *));
2537c478bd9Sstevel@tonic-gate 		if (!pvt->serv.s_aliases)
2547c478bd9Sstevel@tonic-gate 			goto cleanup;
2557c478bd9Sstevel@tonic-gate 		pvt->serv.s_aliases[num] = NULL;
2567c478bd9Sstevel@tonic-gate 		return (&pvt->serv);
2577c478bd9Sstevel@tonic-gate 	}
258*55fea89dSDan Cross 
2597c478bd9Sstevel@tonic-gate  cleanup:
2607c478bd9Sstevel@tonic-gate 	if (pvt->serv.s_aliases) {
2617c478bd9Sstevel@tonic-gate 		free(pvt->serv.s_aliases);
2627c478bd9Sstevel@tonic-gate 		pvt->serv.s_aliases = NULL;
2637c478bd9Sstevel@tonic-gate 	}
2647c478bd9Sstevel@tonic-gate 	if (pvt->svbuf) {
2657c478bd9Sstevel@tonic-gate 		free(pvt->svbuf);
2667c478bd9Sstevel@tonic-gate 		pvt->svbuf = NULL;
2677c478bd9Sstevel@tonic-gate 	}
2687c478bd9Sstevel@tonic-gate 	return (NULL);
2697c478bd9Sstevel@tonic-gate }
2707c478bd9Sstevel@tonic-gate 
2717c478bd9Sstevel@tonic-gate static void
sv_minimize(struct irs_sv * this)2727c478bd9Sstevel@tonic-gate sv_minimize(struct irs_sv *this) {
2737c478bd9Sstevel@tonic-gate 	UNUSED(this);
2747c478bd9Sstevel@tonic-gate 	/* NOOP */
2757c478bd9Sstevel@tonic-gate }
2767c478bd9Sstevel@tonic-gate 
2777c478bd9Sstevel@tonic-gate #ifdef SV_RES_SETGET
2787c478bd9Sstevel@tonic-gate static struct __res_state *
sv_res_get(struct irs_sv * this)2797c478bd9Sstevel@tonic-gate sv_res_get(struct irs_sv *this) {
2807c478bd9Sstevel@tonic-gate 	struct pvt *pvt = (struct pvt *)this->private;
2817c478bd9Sstevel@tonic-gate 	struct dns_p *dns = pvt->dns;
2827c478bd9Sstevel@tonic-gate 
2837c478bd9Sstevel@tonic-gate 	return (__hesiod_res_get(dns->hes_ctx));
2847c478bd9Sstevel@tonic-gate }
2857c478bd9Sstevel@tonic-gate 
2867c478bd9Sstevel@tonic-gate static void
sv_res_set(struct irs_sv * this,struct __res_state * res,void (* free_res)(void *))2877c478bd9Sstevel@tonic-gate sv_res_set(struct irs_sv *this, struct __res_state * res,
2887c478bd9Sstevel@tonic-gate 	   void (*free_res)(void *)) {
2897c478bd9Sstevel@tonic-gate 	struct pvt *pvt = (struct pvt *)this->private;
2907c478bd9Sstevel@tonic-gate 	struct dns_p *dns = pvt->dns;
2917c478bd9Sstevel@tonic-gate 
2927c478bd9Sstevel@tonic-gate 	__hesiod_res_set(dns->hes_ctx, res, free_res);
2937c478bd9Sstevel@tonic-gate }
2947c478bd9Sstevel@tonic-gate #endif
2959525b14bSRao Shoaib 
2969525b14bSRao Shoaib /*! \file */
297