17c478bd9Sstevel@tonic-gate /*
2*9525b14bSRao Shoaib  * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
37c478bd9Sstevel@tonic-gate  * Copyright (c) 1996, 1998 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  *
9*9525b14bSRao Shoaib  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
10*9525b14bSRao Shoaib  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11*9525b14bSRao Shoaib  * MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR
12*9525b14bSRao Shoaib  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13*9525b14bSRao Shoaib  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14*9525b14bSRao Shoaib  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
15*9525b14bSRao 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 <errno.h>
237c478bd9Sstevel@tonic-gate #include <stdio.h>
247c478bd9Sstevel@tonic-gate #include <stdlib.h>
257c478bd9Sstevel@tonic-gate #include <string.h>
267c478bd9Sstevel@tonic-gate #include <unistd.h>
277c478bd9Sstevel@tonic-gate #include <syslog.h>
287c478bd9Sstevel@tonic-gate 
297c478bd9Sstevel@tonic-gate #include <irs.h>
307c478bd9Sstevel@tonic-gate #include <irp.h>
317c478bd9Sstevel@tonic-gate #include <isc/memcluster.h>
327c478bd9Sstevel@tonic-gate #include <isc/irpmarshall.h>
337c478bd9Sstevel@tonic-gate 
347c478bd9Sstevel@tonic-gate #include "irs_p.h"
357c478bd9Sstevel@tonic-gate #include "irp_p.h"
367c478bd9Sstevel@tonic-gate 
377c478bd9Sstevel@tonic-gate #include "port_after.h"
387c478bd9Sstevel@tonic-gate 
397c478bd9Sstevel@tonic-gate /* Definitions */
407c478bd9Sstevel@tonic-gate 
417c478bd9Sstevel@tonic-gate struct pvt {
427c478bd9Sstevel@tonic-gate 	struct irp_p	       *girpdata;
437c478bd9Sstevel@tonic-gate 	int			warned;
447c478bd9Sstevel@tonic-gate };
457c478bd9Sstevel@tonic-gate 
467c478bd9Sstevel@tonic-gate 
477c478bd9Sstevel@tonic-gate /* Forward */
487c478bd9Sstevel@tonic-gate 
497c478bd9Sstevel@tonic-gate static void		ng_rewind(struct irs_ng *, const char*);
507c478bd9Sstevel@tonic-gate static void		ng_close(struct irs_ng *);
517c478bd9Sstevel@tonic-gate static int		ng_next(struct irs_ng *, const char **, const char **,
527c478bd9Sstevel@tonic-gate 				const char **);
537c478bd9Sstevel@tonic-gate static int		ng_test(struct irs_ng *, const char *,
547c478bd9Sstevel@tonic-gate 				const char *, const char *,
557c478bd9Sstevel@tonic-gate 				const char *);
567c478bd9Sstevel@tonic-gate static void		ng_minimize(struct irs_ng *);
577c478bd9Sstevel@tonic-gate 
587c478bd9Sstevel@tonic-gate 
597c478bd9Sstevel@tonic-gate /* Public */
607c478bd9Sstevel@tonic-gate 
61*9525b14bSRao Shoaib /*%
627c478bd9Sstevel@tonic-gate  *	Intialize the irp netgroup module.
637c478bd9Sstevel@tonic-gate  *
647c478bd9Sstevel@tonic-gate  */
657c478bd9Sstevel@tonic-gate 
667c478bd9Sstevel@tonic-gate struct irs_ng *
irs_irp_ng(struct irs_acc * this)677c478bd9Sstevel@tonic-gate irs_irp_ng(struct irs_acc *this) {
687c478bd9Sstevel@tonic-gate 	struct irs_ng *ng;
697c478bd9Sstevel@tonic-gate 	struct pvt *pvt;
707c478bd9Sstevel@tonic-gate 
717c478bd9Sstevel@tonic-gate 	if (!(ng = memget(sizeof *ng))) {
727c478bd9Sstevel@tonic-gate 		errno = ENOMEM;
737c478bd9Sstevel@tonic-gate 		return (NULL);
747c478bd9Sstevel@tonic-gate 	}
757c478bd9Sstevel@tonic-gate 	memset(ng, 0x5e, sizeof *ng);
767c478bd9Sstevel@tonic-gate 
777c478bd9Sstevel@tonic-gate 	if (!(pvt = memget(sizeof *pvt))) {
787c478bd9Sstevel@tonic-gate 		memput(ng, sizeof *ng);
797c478bd9Sstevel@tonic-gate 		errno = ENOMEM;
807c478bd9Sstevel@tonic-gate 		return (NULL);
817c478bd9Sstevel@tonic-gate 	}
827c478bd9Sstevel@tonic-gate 	memset(pvt, 0, sizeof *pvt);
837c478bd9Sstevel@tonic-gate 	pvt->girpdata = this->private;
847c478bd9Sstevel@tonic-gate 
857c478bd9Sstevel@tonic-gate 	ng->private = pvt;
867c478bd9Sstevel@tonic-gate 	ng->close = ng_close;
877c478bd9Sstevel@tonic-gate 	ng->next = ng_next;
887c478bd9Sstevel@tonic-gate 	ng->test = ng_test;
897c478bd9Sstevel@tonic-gate 	ng->rewind = ng_rewind;
907c478bd9Sstevel@tonic-gate 	ng->minimize = ng_minimize;
917c478bd9Sstevel@tonic-gate 	return (ng);
927c478bd9Sstevel@tonic-gate }
937c478bd9Sstevel@tonic-gate 
947c478bd9Sstevel@tonic-gate /* Methods */
957c478bd9Sstevel@tonic-gate 
967c478bd9Sstevel@tonic-gate 
977c478bd9Sstevel@tonic-gate 
987c478bd9Sstevel@tonic-gate /*
997c478bd9Sstevel@tonic-gate  * void ng_close(struct irs_ng *this)
1007c478bd9Sstevel@tonic-gate  *
1017c478bd9Sstevel@tonic-gate  */
1027c478bd9Sstevel@tonic-gate 
1037c478bd9Sstevel@tonic-gate static void
ng_close(struct irs_ng * this)1047c478bd9Sstevel@tonic-gate ng_close(struct irs_ng *this) {
1057c478bd9Sstevel@tonic-gate 	struct pvt *pvt = (struct pvt *)this->private;
1067c478bd9Sstevel@tonic-gate 
1077c478bd9Sstevel@tonic-gate 	ng_minimize(this);
1087c478bd9Sstevel@tonic-gate 
1097c478bd9Sstevel@tonic-gate 	memput(pvt, sizeof *pvt);
1107c478bd9Sstevel@tonic-gate 	memput(this, sizeof *this);
1117c478bd9Sstevel@tonic-gate }
1127c478bd9Sstevel@tonic-gate 
1137c478bd9Sstevel@tonic-gate 
1147c478bd9Sstevel@tonic-gate 
1157c478bd9Sstevel@tonic-gate 
1167c478bd9Sstevel@tonic-gate /*
1177c478bd9Sstevel@tonic-gate  * void ng_rewind(struct irs_ng *this, const char *group)
1187c478bd9Sstevel@tonic-gate  *
1197c478bd9Sstevel@tonic-gate  *
1207c478bd9Sstevel@tonic-gate  */
1217c478bd9Sstevel@tonic-gate 
1227c478bd9Sstevel@tonic-gate static void
ng_rewind(struct irs_ng * this,const char * group)1237c478bd9Sstevel@tonic-gate ng_rewind(struct irs_ng *this, const char *group) {
1247c478bd9Sstevel@tonic-gate 	struct pvt *pvt = (struct pvt *)this->private;
1257c478bd9Sstevel@tonic-gate 	char text[256];
1267c478bd9Sstevel@tonic-gate 	int code;
1277c478bd9Sstevel@tonic-gate 
1287c478bd9Sstevel@tonic-gate 	if (irs_irp_connection_setup(pvt->girpdata, &pvt->warned) != 0) {
1297c478bd9Sstevel@tonic-gate 		return;
1307c478bd9Sstevel@tonic-gate 	}
1317c478bd9Sstevel@tonic-gate 
1327c478bd9Sstevel@tonic-gate 	if (irs_irp_send_command(pvt->girpdata,
1337c478bd9Sstevel@tonic-gate 				 "setnetgrent %s", group) != 0) {
1347c478bd9Sstevel@tonic-gate 		return;
1357c478bd9Sstevel@tonic-gate 	}
1367c478bd9Sstevel@tonic-gate 
1377c478bd9Sstevel@tonic-gate 	code = irs_irp_read_response(pvt->girpdata, text, sizeof text);
1387c478bd9Sstevel@tonic-gate 	if (code != IRPD_GETNETGR_SETOK) {
1397c478bd9Sstevel@tonic-gate 		if (irp_log_errors) {
1407c478bd9Sstevel@tonic-gate 			syslog(LOG_WARNING, "setnetgrent(%s) failed: %s",
1417c478bd9Sstevel@tonic-gate 			       group, text);
1427c478bd9Sstevel@tonic-gate 		}
1437c478bd9Sstevel@tonic-gate 	}
1447c478bd9Sstevel@tonic-gate 
1457c478bd9Sstevel@tonic-gate 	return;
1467c478bd9Sstevel@tonic-gate }
1477c478bd9Sstevel@tonic-gate 
1487c478bd9Sstevel@tonic-gate /*
1497c478bd9Sstevel@tonic-gate  *	Get the next netgroup item from the cache.
1507c478bd9Sstevel@tonic-gate  *
1517c478bd9Sstevel@tonic-gate  */
1527c478bd9Sstevel@tonic-gate 
1537c478bd9Sstevel@tonic-gate static int
ng_next(struct irs_ng * this,const char ** host,const char ** user,const char ** domain)1547c478bd9Sstevel@tonic-gate ng_next(struct irs_ng *this, const char **host, const char **user,
1557c478bd9Sstevel@tonic-gate         const char **domain)
1567c478bd9Sstevel@tonic-gate {
1577c478bd9Sstevel@tonic-gate 	struct pvt *pvt = (struct pvt *)this->private;
1587c478bd9Sstevel@tonic-gate 	int code;
1597c478bd9Sstevel@tonic-gate 	char *body = NULL;
1607c478bd9Sstevel@tonic-gate 	size_t bodylen;
1617c478bd9Sstevel@tonic-gate 	int rval = 0;
1627c478bd9Sstevel@tonic-gate 	char text[256];
1637c478bd9Sstevel@tonic-gate 
1647c478bd9Sstevel@tonic-gate 	if (irs_irp_connection_setup(pvt->girpdata, &pvt->warned) != 0) {
1657c478bd9Sstevel@tonic-gate 		return (0);
1667c478bd9Sstevel@tonic-gate 	}
1677c478bd9Sstevel@tonic-gate 
1687c478bd9Sstevel@tonic-gate 	if (irs_irp_send_command(pvt->girpdata, "getnetgrent") != 0)
1697c478bd9Sstevel@tonic-gate 		return (0);
1707c478bd9Sstevel@tonic-gate 
1717c478bd9Sstevel@tonic-gate 	if (irs_irp_get_full_response(pvt->girpdata, &code,
1727c478bd9Sstevel@tonic-gate 				      text, sizeof text,
1737c478bd9Sstevel@tonic-gate 				      &body, &bodylen) != 0) {
1747c478bd9Sstevel@tonic-gate 		return (0);
1757c478bd9Sstevel@tonic-gate 	}
1767c478bd9Sstevel@tonic-gate 
1777c478bd9Sstevel@tonic-gate 	if (code == IRPD_GETNETGR_OK) {
1787c478bd9Sstevel@tonic-gate 		if (irp_unmarshall_ng(host, user, domain, body) == 0) {
1797c478bd9Sstevel@tonic-gate 			rval = 1;
1807c478bd9Sstevel@tonic-gate 		}
1817c478bd9Sstevel@tonic-gate 	}
1827c478bd9Sstevel@tonic-gate 
1837c478bd9Sstevel@tonic-gate 	if (body != NULL) {
1847c478bd9Sstevel@tonic-gate 		memput(body, bodylen);
1857c478bd9Sstevel@tonic-gate 	}
1867c478bd9Sstevel@tonic-gate 
1877c478bd9Sstevel@tonic-gate 	return (rval);
1887c478bd9Sstevel@tonic-gate }
1897c478bd9Sstevel@tonic-gate 
1907c478bd9Sstevel@tonic-gate /*
1917c478bd9Sstevel@tonic-gate  *	Search for a match in a netgroup.
1927c478bd9Sstevel@tonic-gate  *
1937c478bd9Sstevel@tonic-gate  */
1947c478bd9Sstevel@tonic-gate 
1957c478bd9Sstevel@tonic-gate static int
ng_test(struct irs_ng * this,const char * name,const char * host,const char * user,const char * domain)1967c478bd9Sstevel@tonic-gate ng_test(struct irs_ng *this, const char *name,
1977c478bd9Sstevel@tonic-gate 	const char *host, const char *user, const char *domain)
1987c478bd9Sstevel@tonic-gate {
1997c478bd9Sstevel@tonic-gate 	struct pvt *pvt = (struct pvt *)this->private;
2007c478bd9Sstevel@tonic-gate 	char *body = NULL;
2017c478bd9Sstevel@tonic-gate 	size_t bodylen = 0;
2027c478bd9Sstevel@tonic-gate 	int code;
2037c478bd9Sstevel@tonic-gate 	char text[256];
2047c478bd9Sstevel@tonic-gate 	int rval = 0;
2057c478bd9Sstevel@tonic-gate 
2067c478bd9Sstevel@tonic-gate 	UNUSED(name);
2077c478bd9Sstevel@tonic-gate 
2087c478bd9Sstevel@tonic-gate 	if (irs_irp_connection_setup(pvt->girpdata, &pvt->warned) != 0) {
2097c478bd9Sstevel@tonic-gate 		return (0);
2107c478bd9Sstevel@tonic-gate 	}
2117c478bd9Sstevel@tonic-gate 
2127c478bd9Sstevel@tonic-gate 	if (irp_marshall_ng(host, user, domain, &body, &bodylen) != 0) {
2137c478bd9Sstevel@tonic-gate 		return (0);
2147c478bd9Sstevel@tonic-gate 	}
2157c478bd9Sstevel@tonic-gate 
2167c478bd9Sstevel@tonic-gate 	if (irs_irp_send_command(pvt->girpdata, "innetgr %s", body) == 0) {
2177c478bd9Sstevel@tonic-gate 		code = irs_irp_read_response(pvt->girpdata, text, sizeof text);
2187c478bd9Sstevel@tonic-gate 		if (code == IRPD_GETNETGR_MATCHES) {
2197c478bd9Sstevel@tonic-gate 			rval = 1;
2207c478bd9Sstevel@tonic-gate 		}
2217c478bd9Sstevel@tonic-gate 	}
2227c478bd9Sstevel@tonic-gate 
223*9525b14bSRao Shoaib 	memput(body, bodylen);
224*9525b14bSRao Shoaib 
2257c478bd9Sstevel@tonic-gate 	return (rval);
2267c478bd9Sstevel@tonic-gate }
2277c478bd9Sstevel@tonic-gate 
2287c478bd9Sstevel@tonic-gate 
2297c478bd9Sstevel@tonic-gate 
2307c478bd9Sstevel@tonic-gate 
2317c478bd9Sstevel@tonic-gate /*
2327c478bd9Sstevel@tonic-gate  * void ng_minimize(struct irs_ng *this)
2337c478bd9Sstevel@tonic-gate  *
2347c478bd9Sstevel@tonic-gate  */
2357c478bd9Sstevel@tonic-gate 
2367c478bd9Sstevel@tonic-gate static void
ng_minimize(struct irs_ng * this)2377c478bd9Sstevel@tonic-gate ng_minimize(struct irs_ng *this) {
2387c478bd9Sstevel@tonic-gate 	struct pvt *pvt = (struct pvt *)this->private;
2397c478bd9Sstevel@tonic-gate 
2407c478bd9Sstevel@tonic-gate 	irs_irp_disconnect(pvt->girpdata);
2417c478bd9Sstevel@tonic-gate }
2427c478bd9Sstevel@tonic-gate 
2437c478bd9Sstevel@tonic-gate 
2447c478bd9Sstevel@tonic-gate 
2457c478bd9Sstevel@tonic-gate 
2467c478bd9Sstevel@tonic-gate /* Private */
2477c478bd9Sstevel@tonic-gate 
248*9525b14bSRao Shoaib 
249*9525b14bSRao Shoaib /*! \file */
250