1996-02-05 02:26:21 +03:00
|
|
|
/* $NetBSD: yplib.c,v 1.17 1996/02/04 23:26:26 jtc Exp $ */
|
1995-02-27 15:54:33 +03:00
|
|
|
|
1993-05-16 06:47:20 +04:00
|
|
|
/*
|
1994-05-25 13:52:05 +04:00
|
|
|
* Copyright (c) 1992, 1993 Theo de Raadt <deraadt@fsa.ca>
|
1993-05-16 06:47:20 +04:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
1994-05-25 13:52:05 +04:00
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by Theo de Raadt.
|
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
1993-05-16 06:47:20 +04:00
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
|
|
|
|
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1996-02-05 02:26:21 +03:00
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
|
|
|
static char rcsid[] = "$NetBSD: yplib.c,v 1.17 1996/02/04 23:26:26 jtc Exp $";
|
1993-05-16 06:47:20 +04:00
|
|
|
#endif
|
|
|
|
|
1993-04-26 12:23:39 +04:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/file.h>
|
1993-12-03 13:10:21 +03:00
|
|
|
#include <sys/uio.h>
|
1993-04-26 12:23:39 +04:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
1994-08-07 03:07:47 +04:00
|
|
|
#include <stdlib.h>
|
1993-04-26 12:23:39 +04:00
|
|
|
#include <string.h>
|
1994-08-07 03:07:47 +04:00
|
|
|
#include <unistd.h>
|
1993-04-26 12:23:39 +04:00
|
|
|
#include <rpc/rpc.h>
|
|
|
|
#include <rpc/xdr.h>
|
|
|
|
#include <rpcsvc/yp_prot.h>
|
|
|
|
#include <rpcsvc/ypclnt.h>
|
|
|
|
|
1994-09-28 04:38:06 +03:00
|
|
|
#define BINDINGDIR "/var/yp/binding"
|
|
|
|
#define YPBINDLOCK "/var/run/ypbind.lock"
|
1993-04-26 12:23:39 +04:00
|
|
|
#define YPMATCHCACHE
|
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
int (*ypresp_allfn) __P((u_long, char *, int, char *, int, void *));
|
1993-04-26 12:23:39 +04:00
|
|
|
void *ypresp_data;
|
|
|
|
|
|
|
|
struct dom_binding *_ypbindlist;
|
|
|
|
static char _yp_domain[MAXHOSTNAMELEN];
|
|
|
|
int _yplib_timeout = 10;
|
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
static bool_t ypmatch_add __P((const char *, const char *, int, char *, int));
|
|
|
|
static bool_t ypmatch_find __P((const char *, const char *, int, const char **,
|
|
|
|
int *));
|
|
|
|
static void _yp_unbind __P((struct dom_binding *));
|
|
|
|
|
1993-04-26 12:23:39 +04:00
|
|
|
#ifdef YPMATCHCACHE
|
|
|
|
int _yplib_cache = 5;
|
|
|
|
|
|
|
|
static struct ypmatch_ent {
|
1995-07-15 01:04:17 +04:00
|
|
|
struct ypmatch_ent *next;
|
|
|
|
char *map, *key;
|
|
|
|
char *val;
|
|
|
|
int keylen, vallen;
|
|
|
|
time_t expire_t;
|
1993-04-26 12:23:39 +04:00
|
|
|
} *ypmc;
|
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
static bool_t
|
1993-04-26 12:23:39 +04:00
|
|
|
ypmatch_add(map, key, keylen, val, vallen)
|
1995-07-15 01:04:17 +04:00
|
|
|
const char *map;
|
|
|
|
const char *key;
|
|
|
|
int keylen;
|
|
|
|
char *val;
|
|
|
|
int vallen;
|
1993-04-26 12:23:39 +04:00
|
|
|
{
|
|
|
|
struct ypmatch_ent *ep;
|
|
|
|
time_t t;
|
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
(void)time(&t);
|
1993-04-26 12:23:39 +04:00
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
for (ep = ypmc; ep; ep = ep->next)
|
|
|
|
if (ep->expire_t < t)
|
1993-04-26 12:23:39 +04:00
|
|
|
break;
|
1995-07-15 01:04:17 +04:00
|
|
|
if (ep == NULL) {
|
|
|
|
if ((ep = malloc(sizeof *ep)) == NULL)
|
|
|
|
return 0;
|
|
|
|
(void)memset(ep, 0, sizeof *ep);
|
|
|
|
if (ypmc)
|
1993-04-26 12:23:39 +04:00
|
|
|
ep->next = ypmc;
|
|
|
|
ypmc = ep;
|
|
|
|
}
|
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
if (ep->key) {
|
1993-04-26 12:23:39 +04:00
|
|
|
free(ep->key);
|
1995-07-15 01:04:17 +04:00
|
|
|
ep->key = NULL;
|
|
|
|
}
|
|
|
|
if (ep->val) {
|
1993-04-26 12:23:39 +04:00
|
|
|
free(ep->val);
|
1995-07-15 01:04:17 +04:00
|
|
|
ep->val = NULL;
|
|
|
|
}
|
1993-04-26 12:23:39 +04:00
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
if ((ep->key = malloc(keylen)) == NULL)
|
|
|
|
return 0;
|
1993-04-26 12:23:39 +04:00
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
if ((ep->val = malloc(vallen)) == NULL) {
|
1993-04-26 12:23:39 +04:00
|
|
|
free(ep->key);
|
|
|
|
ep->key = NULL;
|
1995-07-15 01:04:17 +04:00
|
|
|
return 0;
|
1993-04-26 12:23:39 +04:00
|
|
|
}
|
1995-07-15 01:04:17 +04:00
|
|
|
|
1993-04-26 12:23:39 +04:00
|
|
|
ep->keylen = keylen;
|
|
|
|
ep->vallen = vallen;
|
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
(void)memcpy(ep->key, key, ep->keylen);
|
|
|
|
(void)memcpy(ep->val, val, ep->vallen);
|
1993-04-26 12:23:39 +04:00
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
if (ep->map) {
|
|
|
|
if (strcmp(ep->map, map)) {
|
1993-04-26 12:23:39 +04:00
|
|
|
free(ep->map);
|
1995-07-15 01:04:17 +04:00
|
|
|
if ((ep->map = strdup(map)) == NULL)
|
|
|
|
return 0;
|
1993-04-26 12:23:39 +04:00
|
|
|
}
|
|
|
|
} else {
|
1995-07-15 01:04:17 +04:00
|
|
|
if ((ep->map = strdup(map)) == NULL)
|
|
|
|
return 0;
|
1993-04-26 12:23:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
ep->expire_t = t + _yplib_cache;
|
1995-07-15 01:04:17 +04:00
|
|
|
return 1;
|
1993-04-26 12:23:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool_t
|
|
|
|
ypmatch_find(map, key, keylen, val, vallen)
|
1995-07-15 01:04:17 +04:00
|
|
|
const char *map;
|
|
|
|
const char *key;
|
|
|
|
int keylen;
|
|
|
|
const char **val;
|
|
|
|
int *vallen;
|
1993-04-26 12:23:39 +04:00
|
|
|
{
|
|
|
|
struct ypmatch_ent *ep;
|
1995-07-15 01:04:17 +04:00
|
|
|
time_t t;
|
1993-04-26 12:23:39 +04:00
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
if (ypmc == NULL)
|
1993-04-26 12:23:39 +04:00
|
|
|
return 0;
|
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
(void) time(&t);
|
1993-04-26 12:23:39 +04:00
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
for (ep = ypmc; ep; ep = ep->next) {
|
|
|
|
if (ep->keylen != keylen)
|
1993-04-26 12:23:39 +04:00
|
|
|
continue;
|
1995-07-15 01:04:17 +04:00
|
|
|
if (strcmp(ep->map, map))
|
1993-04-26 12:23:39 +04:00
|
|
|
continue;
|
1995-07-15 01:04:17 +04:00
|
|
|
if (memcmp(ep->key, key, keylen))
|
1993-04-26 12:23:39 +04:00
|
|
|
continue;
|
1995-07-15 01:04:17 +04:00
|
|
|
if (t > ep->expire_t)
|
1993-04-26 12:23:39 +04:00
|
|
|
continue;
|
|
|
|
|
|
|
|
*val = ep->val;
|
|
|
|
*vallen = ep->vallen;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int
|
|
|
|
_yp_dobind(dom, ypdb)
|
1995-07-15 01:04:17 +04:00
|
|
|
const char *dom;
|
|
|
|
struct dom_binding **ypdb;
|
1993-04-26 12:23:39 +04:00
|
|
|
{
|
1995-07-15 01:04:17 +04:00
|
|
|
static int pid = -1;
|
|
|
|
char path[MAXPATHLEN];
|
1993-04-26 12:23:39 +04:00
|
|
|
struct dom_binding *ysd, *ysd2;
|
|
|
|
struct ypbind_resp ypbr;
|
1995-07-15 01:04:17 +04:00
|
|
|
struct timeval tv;
|
1993-04-26 12:23:39 +04:00
|
|
|
struct sockaddr_in clnt_sin;
|
1995-07-15 01:04:17 +04:00
|
|
|
int clnt_sock, fd, gpid;
|
|
|
|
CLIENT *client;
|
|
|
|
int new = 0, r;
|
|
|
|
int count = 0;
|
1993-04-26 12:23:39 +04:00
|
|
|
|
1994-09-28 04:38:06 +03:00
|
|
|
/*
|
|
|
|
* test if YP is running or not
|
|
|
|
*/
|
1995-07-15 01:04:17 +04:00
|
|
|
if ((fd = open(YPBINDLOCK, O_RDONLY)) == -1)
|
1994-09-28 04:38:06 +03:00
|
|
|
return YPERR_YPBIND;
|
1995-07-15 01:04:17 +04:00
|
|
|
if (!(flock(fd, LOCK_EX | LOCK_NB) == -1 && errno == EWOULDBLOCK)) {
|
|
|
|
(void)close(fd);
|
1994-09-28 04:38:06 +03:00
|
|
|
return YPERR_YPBIND;
|
|
|
|
}
|
1995-07-15 01:04:17 +04:00
|
|
|
(void)close(fd);
|
1994-09-28 04:38:06 +03:00
|
|
|
|
1993-04-26 12:23:39 +04:00
|
|
|
gpid = getpid();
|
1995-07-15 01:04:17 +04:00
|
|
|
if (!(pid == -1 || pid == gpid)) {
|
1993-04-26 12:23:39 +04:00
|
|
|
ysd = _ypbindlist;
|
1995-07-15 01:04:17 +04:00
|
|
|
while (ysd) {
|
|
|
|
if (ysd->dom_client)
|
1993-04-26 12:23:39 +04:00
|
|
|
clnt_destroy(ysd->dom_client);
|
|
|
|
ysd2 = ysd->dom_pnext;
|
|
|
|
free(ysd);
|
|
|
|
ysd = ysd2;
|
|
|
|
}
|
|
|
|
_ypbindlist = NULL;
|
|
|
|
}
|
|
|
|
pid = gpid;
|
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
if (ypdb != NULL)
|
1993-04-26 12:23:39 +04:00
|
|
|
*ypdb = NULL;
|
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
if (dom == NULL || strlen(dom) == 0)
|
1993-04-26 12:23:39 +04:00
|
|
|
return YPERR_BADARGS;
|
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
for (ysd = _ypbindlist; ysd; ysd = ysd->dom_pnext)
|
|
|
|
if (strcmp(dom, ysd->dom_domain) == 0)
|
1993-04-26 12:23:39 +04:00
|
|
|
break;
|
1995-07-15 01:04:17 +04:00
|
|
|
if (ysd == NULL) {
|
|
|
|
if ((ysd = malloc(sizeof *ysd)) == NULL)
|
|
|
|
return YPERR_YPERR;
|
|
|
|
(void)memset(ysd, 0, sizeof *ysd);
|
1993-04-26 12:23:39 +04:00
|
|
|
ysd->dom_socket = -1;
|
|
|
|
ysd->dom_vers = 0;
|
|
|
|
new = 1;
|
|
|
|
}
|
|
|
|
again:
|
1995-07-15 01:04:17 +04:00
|
|
|
if (ysd->dom_vers == 0) {
|
|
|
|
(void) snprintf(path, sizeof(path), "%s/%s.%d",
|
|
|
|
BINDINGDIR, dom, 2);
|
|
|
|
if ((fd = open(path, O_RDONLY)) == -1) {
|
|
|
|
/*
|
|
|
|
* no binding file, YP is dead, or not yet fully
|
|
|
|
* alive.
|
|
|
|
*/
|
1994-09-18 06:56:00 +04:00
|
|
|
goto trynet;
|
1993-04-26 12:23:39 +04:00
|
|
|
}
|
1995-07-15 01:04:17 +04:00
|
|
|
if (flock(fd, LOCK_EX | LOCK_NB) == -1 &&
|
|
|
|
errno == EWOULDBLOCK) {
|
|
|
|
struct iovec iov[2];
|
1993-12-03 13:10:21 +03:00
|
|
|
struct ypbind_resp ybr;
|
1995-07-15 01:04:17 +04:00
|
|
|
u_short ypb_port;
|
|
|
|
struct ypbind_binding *bn;
|
1993-12-03 13:10:21 +03:00
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
iov[0].iov_base = (caddr_t) & ypb_port;
|
1993-12-03 13:10:21 +03:00
|
|
|
iov[0].iov_len = sizeof ypb_port;
|
1995-07-15 01:04:17 +04:00
|
|
|
iov[1].iov_base = (caddr_t) & ybr;
|
1993-12-03 13:10:21 +03:00
|
|
|
iov[1].iov_len = sizeof ybr;
|
|
|
|
|
|
|
|
r = readv(fd, iov, 2);
|
1995-07-15 01:04:17 +04:00
|
|
|
if (r != iov[0].iov_len + iov[1].iov_len) {
|
|
|
|
(void)close(fd);
|
1993-04-26 12:23:39 +04:00
|
|
|
ysd->dom_vers = -1;
|
|
|
|
goto again;
|
|
|
|
}
|
1995-07-15 01:04:17 +04:00
|
|
|
(void)memset(&ysd->dom_server_addr, 0,
|
|
|
|
sizeof ysd->dom_server_addr);
|
|
|
|
ysd->dom_server_addr.sin_len =
|
|
|
|
sizeof(struct sockaddr_in);
|
1995-06-04 02:37:19 +04:00
|
|
|
ysd->dom_server_addr.sin_family = AF_INET;
|
1995-07-15 01:04:17 +04:00
|
|
|
bn = &ybr.ypbind_respbody.ypbind_bindinfo;
|
1993-12-03 13:10:21 +03:00
|
|
|
ysd->dom_server_addr.sin_port =
|
1995-07-15 01:04:17 +04:00
|
|
|
bn->ypbind_binding_port;
|
|
|
|
|
1995-06-04 02:37:19 +04:00
|
|
|
ysd->dom_server_addr.sin_addr =
|
1995-07-15 01:04:17 +04:00
|
|
|
bn->ypbind_binding_addr;
|
1993-12-03 13:10:21 +03:00
|
|
|
|
1993-04-26 12:23:39 +04:00
|
|
|
ysd->dom_server_port = ysd->dom_server_addr.sin_port;
|
1995-07-15 01:04:17 +04:00
|
|
|
(void)close(fd);
|
1993-04-26 12:23:39 +04:00
|
|
|
goto gotit;
|
|
|
|
} else {
|
|
|
|
/* no lock on binding file, YP is dead. */
|
1995-07-15 01:04:17 +04:00
|
|
|
(void)close(fd);
|
|
|
|
if (new)
|
1993-04-26 12:23:39 +04:00
|
|
|
free(ysd);
|
|
|
|
return YPERR_YPBIND;
|
|
|
|
}
|
|
|
|
}
|
1994-09-18 06:56:00 +04:00
|
|
|
trynet:
|
1995-07-15 01:04:17 +04:00
|
|
|
if (ysd->dom_vers == -1 || ysd->dom_vers == 0) {
|
|
|
|
struct ypbind_binding *bn;
|
|
|
|
(void)memset(&clnt_sin, 0, sizeof clnt_sin);
|
1995-06-04 02:37:19 +04:00
|
|
|
clnt_sin.sin_len = sizeof(struct sockaddr_in);
|
1993-04-26 12:23:39 +04:00
|
|
|
clnt_sin.sin_family = AF_INET;
|
|
|
|
clnt_sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
|
|
|
|
|
|
|
|
clnt_sock = RPC_ANYSOCK;
|
1995-07-15 01:04:17 +04:00
|
|
|
client = clnttcp_create(&clnt_sin, YPBINDPROG, YPBINDVERS,
|
|
|
|
&clnt_sock, 0, 0);
|
|
|
|
if (client == NULL) {
|
1993-04-26 12:23:39 +04:00
|
|
|
clnt_pcreateerror("clnttcp_create");
|
1995-07-15 01:04:17 +04:00
|
|
|
if (new)
|
1993-04-26 12:23:39 +04:00
|
|
|
free(ysd);
|
|
|
|
return YPERR_YPBIND;
|
|
|
|
}
|
|
|
|
tv.tv_sec = _yplib_timeout;
|
|
|
|
tv.tv_usec = 0;
|
1995-07-15 01:04:17 +04:00
|
|
|
r = clnt_call(client, YPBINDPROC_DOMAIN, xdr_domainname,
|
|
|
|
dom, xdr_ypbind_resp, &ypbr, tv);
|
|
|
|
if (r != RPC_SUCCESS) {
|
|
|
|
if (new == 0 || count)
|
1994-09-20 11:20:36 +04:00
|
|
|
fprintf(stderr,
|
1995-07-15 01:04:17 +04:00
|
|
|
"YP server for domain %s not responding, still trying\n",
|
|
|
|
dom);
|
1994-09-20 11:20:36 +04:00
|
|
|
count++;
|
1993-04-26 12:23:39 +04:00
|
|
|
clnt_destroy(client);
|
|
|
|
ysd->dom_vers = -1;
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
clnt_destroy(client);
|
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
(void)memset(&ysd->dom_server_addr, 0,
|
|
|
|
sizeof ysd->dom_server_addr);
|
1995-06-04 02:37:19 +04:00
|
|
|
ysd->dom_server_addr.sin_len = sizeof(struct sockaddr_in);
|
1993-04-26 12:23:39 +04:00
|
|
|
ysd->dom_server_addr.sin_family = AF_INET;
|
1995-07-15 01:04:17 +04:00
|
|
|
bn = &ypbr.ypbind_respbody.ypbind_bindinfo;
|
1993-04-26 12:23:39 +04:00
|
|
|
ysd->dom_server_addr.sin_port =
|
1995-07-15 01:04:17 +04:00
|
|
|
bn->ypbind_binding_port;
|
1993-04-26 12:23:39 +04:00
|
|
|
ysd->dom_server_addr.sin_addr.s_addr =
|
1995-07-15 01:04:17 +04:00
|
|
|
bn->ypbind_binding_addr.s_addr;
|
1993-04-26 12:23:39 +04:00
|
|
|
ysd->dom_server_port =
|
1995-07-15 01:04:17 +04:00
|
|
|
bn->ypbind_binding_port;
|
1993-04-26 12:23:39 +04:00
|
|
|
gotit:
|
|
|
|
ysd->dom_vers = YPVERS;
|
1995-07-15 01:04:17 +04:00
|
|
|
(void)strcpy(ysd->dom_domain, dom);
|
1993-04-26 12:23:39 +04:00
|
|
|
}
|
1995-07-15 01:04:17 +04:00
|
|
|
tv.tv_sec = _yplib_timeout / 2;
|
1993-04-26 12:23:39 +04:00
|
|
|
tv.tv_usec = 0;
|
1995-07-15 01:04:17 +04:00
|
|
|
if (ysd->dom_client)
|
1993-04-26 12:23:39 +04:00
|
|
|
clnt_destroy(ysd->dom_client);
|
|
|
|
ysd->dom_socket = RPC_ANYSOCK;
|
|
|
|
ysd->dom_client = clntudp_create(&ysd->dom_server_addr,
|
1995-07-15 01:04:17 +04:00
|
|
|
YPPROG, YPVERS, tv, &ysd->dom_socket);
|
|
|
|
if (ysd->dom_client == NULL) {
|
1993-04-26 12:23:39 +04:00
|
|
|
clnt_pcreateerror("clntudp_create");
|
|
|
|
ysd->dom_vers = -1;
|
|
|
|
goto again;
|
|
|
|
}
|
1995-07-15 01:04:17 +04:00
|
|
|
if (fcntl(ysd->dom_socket, F_SETFD, 1) == -1)
|
1993-04-26 12:23:39 +04:00
|
|
|
perror("fcntl: F_SETFD");
|
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
if (new) {
|
1993-04-26 12:23:39 +04:00
|
|
|
ysd->dom_pnext = _ypbindlist;
|
|
|
|
_ypbindlist = ysd;
|
|
|
|
}
|
1995-07-15 01:04:17 +04:00
|
|
|
if (ypdb != NULL)
|
1993-04-26 12:23:39 +04:00
|
|
|
*ypdb = ysd;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_yp_unbind(ypb)
|
1995-07-15 01:04:17 +04:00
|
|
|
struct dom_binding *ypb;
|
1993-04-26 12:23:39 +04:00
|
|
|
{
|
|
|
|
clnt_destroy(ypb->dom_client);
|
|
|
|
ypb->dom_client = NULL;
|
|
|
|
ypb->dom_socket = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
yp_bind(dom)
|
1995-07-15 01:04:17 +04:00
|
|
|
const char *dom;
|
1993-04-26 12:23:39 +04:00
|
|
|
{
|
|
|
|
return _yp_dobind(dom, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
yp_unbind(dom)
|
1995-07-15 01:04:17 +04:00
|
|
|
const char *dom;
|
1993-04-26 12:23:39 +04:00
|
|
|
{
|
|
|
|
struct dom_binding *ypb, *ypbp;
|
|
|
|
|
|
|
|
ypbp = NULL;
|
1995-07-15 01:04:17 +04:00
|
|
|
for (ypb = _ypbindlist; ypb; ypb = ypb->dom_pnext) {
|
|
|
|
if (strcmp(dom, ypb->dom_domain) == 0) {
|
1993-04-26 12:23:39 +04:00
|
|
|
clnt_destroy(ypb->dom_client);
|
1995-07-15 01:04:17 +04:00
|
|
|
if (ypbp)
|
1993-04-26 12:23:39 +04:00
|
|
|
ypbp->dom_pnext = ypb->dom_pnext;
|
|
|
|
else
|
|
|
|
_ypbindlist = ypb->dom_pnext;
|
|
|
|
free(ypb);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ypbp = ypb;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
yp_match(indomain, inmap, inkey, inkeylen, outval, outvallen)
|
1995-07-15 01:04:17 +04:00
|
|
|
const char *indomain;
|
|
|
|
const char *inmap;
|
|
|
|
const char *inkey;
|
|
|
|
int inkeylen;
|
|
|
|
char **outval;
|
|
|
|
int *outvallen;
|
1993-04-26 12:23:39 +04:00
|
|
|
{
|
|
|
|
struct dom_binding *ysd;
|
|
|
|
struct ypresp_val yprv;
|
1995-07-15 01:04:17 +04:00
|
|
|
struct timeval tv;
|
1993-04-26 12:23:39 +04:00
|
|
|
struct ypreq_key yprk;
|
1995-07-15 01:04:17 +04:00
|
|
|
int r;
|
1993-04-26 12:23:39 +04:00
|
|
|
|
|
|
|
*outval = NULL;
|
|
|
|
*outvallen = 0;
|
|
|
|
|
|
|
|
again:
|
1995-07-15 01:04:17 +04:00
|
|
|
if (_yp_dobind(indomain, &ysd) != 0)
|
1993-04-26 12:23:39 +04:00
|
|
|
return YPERR_DOMAIN;
|
|
|
|
|
|
|
|
#ifdef YPMATCHCACHE
|
1995-07-15 01:04:17 +04:00
|
|
|
if (!strcmp(_yp_domain, indomain) && ypmatch_find(inmap, inkey,
|
|
|
|
inkeylen, &yprv.valdat.dptr, &yprv.valdat.dsize)) {
|
1993-04-26 12:23:39 +04:00
|
|
|
*outvallen = yprv.valdat.dsize;
|
1995-07-15 01:04:17 +04:00
|
|
|
if ((*outval = malloc(*outvallen + 1)) == NULL)
|
|
|
|
return YPERR_YPERR;
|
|
|
|
(void)memcpy(*outval, yprv.valdat.dptr, *outvallen);
|
1993-04-26 12:23:39 +04:00
|
|
|
(*outval)[*outvallen] = '\0';
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
tv.tv_sec = _yplib_timeout;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
|
|
|
|
yprk.domain = indomain;
|
|
|
|
yprk.map = inmap;
|
1995-07-15 01:04:17 +04:00
|
|
|
yprk.keydat.dptr = (char *) inkey;
|
1993-04-26 12:23:39 +04:00
|
|
|
yprk.keydat.dsize = inkeylen;
|
|
|
|
|
1994-08-07 03:07:47 +04:00
|
|
|
memset(&yprv, 0, sizeof yprv);
|
1993-04-26 12:23:39 +04:00
|
|
|
|
|
|
|
r = clnt_call(ysd->dom_client, YPPROC_MATCH,
|
1995-07-15 01:04:17 +04:00
|
|
|
xdr_ypreq_key, &yprk, xdr_ypresp_val, &yprv, tv);
|
|
|
|
if (r != RPC_SUCCESS) {
|
1993-04-26 12:23:39 +04:00
|
|
|
clnt_perror(ysd->dom_client, "yp_match: clnt_call");
|
|
|
|
ysd->dom_vers = -1;
|
|
|
|
goto again;
|
|
|
|
}
|
1995-07-15 01:04:17 +04:00
|
|
|
if (!(r = ypprot_err(yprv.status))) {
|
1993-04-26 12:23:39 +04:00
|
|
|
*outvallen = yprv.valdat.dsize;
|
1995-07-15 01:04:17 +04:00
|
|
|
if ((*outval = malloc(*outvallen + 1)) == NULL)
|
|
|
|
return YPERR_YPERR;
|
|
|
|
(void)memcpy(*outval, yprv.valdat.dptr, *outvallen);
|
1993-04-26 12:23:39 +04:00
|
|
|
(*outval)[*outvallen] = '\0';
|
|
|
|
#ifdef YPMATCHCACHE
|
1995-07-15 01:04:17 +04:00
|
|
|
if (strcmp(_yp_domain, indomain) == 0)
|
|
|
|
if (!ypmatch_add(inmap, inkey, inkeylen,
|
|
|
|
*outval, *outvallen))
|
|
|
|
r = RPC_SYSTEMERROR;
|
1993-04-26 12:23:39 +04:00
|
|
|
#endif
|
|
|
|
}
|
1995-07-15 01:04:17 +04:00
|
|
|
xdr_free(xdr_ypresp_val, (char *) &yprv);
|
1993-04-26 12:23:39 +04:00
|
|
|
_yp_unbind(ysd);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
yp_get_default_domain(domp)
|
1995-07-15 01:04:17 +04:00
|
|
|
char **domp;
|
1993-04-26 12:23:39 +04:00
|
|
|
{
|
|
|
|
*domp = NULL;
|
1995-07-15 01:04:17 +04:00
|
|
|
if (_yp_domain[0] == '\0')
|
|
|
|
if (getdomainname(_yp_domain, sizeof _yp_domain))
|
1993-04-26 12:23:39 +04:00
|
|
|
return YPERR_NODOM;
|
|
|
|
*domp = _yp_domain;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
yp_first(indomain, inmap, outkey, outkeylen, outval, outvallen)
|
1995-07-15 01:04:17 +04:00
|
|
|
const char *indomain;
|
|
|
|
const char *inmap;
|
|
|
|
char **outkey;
|
|
|
|
int *outkeylen;
|
|
|
|
char **outval;
|
|
|
|
int *outvallen;
|
1993-04-26 12:23:39 +04:00
|
|
|
{
|
|
|
|
struct ypresp_key_val yprkv;
|
|
|
|
struct ypreq_nokey yprnk;
|
|
|
|
struct dom_binding *ysd;
|
1995-07-15 01:04:17 +04:00
|
|
|
struct timeval tv;
|
|
|
|
int r;
|
1993-04-26 12:23:39 +04:00
|
|
|
|
|
|
|
*outkey = *outval = NULL;
|
|
|
|
*outkeylen = *outvallen = 0;
|
|
|
|
|
|
|
|
again:
|
1995-07-15 01:04:17 +04:00
|
|
|
if (_yp_dobind(indomain, &ysd) != 0)
|
1993-04-26 12:23:39 +04:00
|
|
|
return YPERR_DOMAIN;
|
|
|
|
|
|
|
|
tv.tv_sec = _yplib_timeout;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
|
|
|
|
yprnk.domain = indomain;
|
|
|
|
yprnk.map = inmap;
|
1995-07-15 01:04:17 +04:00
|
|
|
(void)memset(&yprkv, 0, sizeof yprkv);
|
1993-04-26 12:23:39 +04:00
|
|
|
|
|
|
|
r = clnt_call(ysd->dom_client, YPPROC_FIRST,
|
1995-07-15 01:04:17 +04:00
|
|
|
xdr_ypreq_nokey, &yprnk, xdr_ypresp_key_val, &yprkv, tv);
|
|
|
|
if (r != RPC_SUCCESS) {
|
1993-04-26 12:23:39 +04:00
|
|
|
clnt_perror(ysd->dom_client, "yp_first: clnt_call");
|
|
|
|
ysd->dom_vers = -1;
|
|
|
|
goto again;
|
|
|
|
}
|
1995-07-15 01:04:17 +04:00
|
|
|
if (!(r = ypprot_err(yprkv.status))) {
|
1993-04-26 12:23:39 +04:00
|
|
|
*outkeylen = yprkv.keydat.dsize;
|
1995-07-15 01:04:17 +04:00
|
|
|
if ((*outkey = malloc(*outkeylen + 1)) == NULL)
|
|
|
|
r = RPC_SYSTEMERROR;
|
|
|
|
else {
|
|
|
|
(void)memcpy(*outkey, yprkv.keydat.dptr, *outkeylen);
|
|
|
|
(*outkey)[*outkeylen] = '\0';
|
|
|
|
}
|
1993-04-26 12:23:39 +04:00
|
|
|
*outvallen = yprkv.valdat.dsize;
|
1995-07-15 01:04:17 +04:00
|
|
|
if ((*outval = malloc(*outvallen + 1)) == NULL)
|
|
|
|
r = RPC_SYSTEMERROR;
|
|
|
|
else {
|
|
|
|
(void)memcpy(*outval, yprkv.valdat.dptr, *outvallen);
|
|
|
|
(*outval)[*outvallen] = '\0';
|
|
|
|
}
|
1993-04-26 12:23:39 +04:00
|
|
|
}
|
1995-07-15 01:04:17 +04:00
|
|
|
xdr_free(xdr_ypresp_key_val, (char *) &yprkv);
|
1993-04-26 12:23:39 +04:00
|
|
|
_yp_unbind(ysd);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
yp_next(indomain, inmap, inkey, inkeylen, outkey, outkeylen, outval, outvallen)
|
1995-07-15 01:04:17 +04:00
|
|
|
const char *indomain;
|
|
|
|
const char *inmap;
|
|
|
|
const char *inkey;
|
|
|
|
int inkeylen;
|
|
|
|
char **outkey;
|
|
|
|
int *outkeylen;
|
|
|
|
char **outval;
|
|
|
|
int *outvallen;
|
1993-04-26 12:23:39 +04:00
|
|
|
{
|
|
|
|
struct ypresp_key_val yprkv;
|
|
|
|
struct ypreq_key yprk;
|
|
|
|
struct dom_binding *ysd;
|
1995-07-15 01:04:17 +04:00
|
|
|
struct timeval tv;
|
|
|
|
int r;
|
1993-04-26 12:23:39 +04:00
|
|
|
|
|
|
|
*outkey = *outval = NULL;
|
|
|
|
*outkeylen = *outvallen = 0;
|
|
|
|
|
|
|
|
again:
|
1995-07-15 01:04:17 +04:00
|
|
|
if (_yp_dobind(indomain, &ysd) != 0)
|
1993-04-26 12:23:39 +04:00
|
|
|
return YPERR_DOMAIN;
|
|
|
|
|
|
|
|
tv.tv_sec = _yplib_timeout;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
|
|
|
|
yprk.domain = indomain;
|
|
|
|
yprk.map = inmap;
|
|
|
|
yprk.keydat.dptr = inkey;
|
|
|
|
yprk.keydat.dsize = inkeylen;
|
1995-07-15 01:04:17 +04:00
|
|
|
(void)memset(&yprkv, 0, sizeof yprkv);
|
1993-04-26 12:23:39 +04:00
|
|
|
|
|
|
|
r = clnt_call(ysd->dom_client, YPPROC_NEXT,
|
1995-07-15 01:04:17 +04:00
|
|
|
xdr_ypreq_key, &yprk, xdr_ypresp_key_val, &yprkv, tv);
|
|
|
|
if (r != RPC_SUCCESS) {
|
1993-04-26 12:23:39 +04:00
|
|
|
clnt_perror(ysd->dom_client, "yp_next: clnt_call");
|
|
|
|
ysd->dom_vers = -1;
|
|
|
|
goto again;
|
|
|
|
}
|
1995-07-15 01:04:17 +04:00
|
|
|
if (!(r = ypprot_err(yprkv.status))) {
|
1993-04-26 12:23:39 +04:00
|
|
|
*outkeylen = yprkv.keydat.dsize;
|
1995-07-15 01:04:17 +04:00
|
|
|
if ((*outkey = malloc(*outkeylen + 1)) == NULL)
|
|
|
|
r = RPC_SYSTEMERROR;
|
|
|
|
else {
|
|
|
|
(void)memcpy(*outkey, yprkv.keydat.dptr, *outkeylen);
|
|
|
|
(*outkey)[*outkeylen] = '\0';
|
|
|
|
}
|
1993-04-26 12:23:39 +04:00
|
|
|
*outvallen = yprkv.valdat.dsize;
|
1995-07-15 01:04:17 +04:00
|
|
|
if ((*outval = malloc(*outvallen + 1)) == NULL)
|
|
|
|
r = RPC_SYSTEMERROR;
|
|
|
|
else {
|
|
|
|
(void)memcpy(*outval, yprkv.valdat.dptr, *outvallen);
|
|
|
|
(*outval)[*outvallen] = '\0';
|
|
|
|
}
|
1993-04-26 12:23:39 +04:00
|
|
|
}
|
1995-07-15 01:04:17 +04:00
|
|
|
xdr_free(xdr_ypresp_key_val, (char *) &yprkv);
|
1993-04-26 12:23:39 +04:00
|
|
|
_yp_unbind(ysd);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
yp_all(indomain, inmap, incallback)
|
1995-07-15 01:04:17 +04:00
|
|
|
const char *indomain;
|
|
|
|
const char *inmap;
|
|
|
|
struct ypall_callback *incallback;
|
1993-04-26 12:23:39 +04:00
|
|
|
{
|
|
|
|
struct ypreq_nokey yprnk;
|
|
|
|
struct dom_binding *ysd;
|
1995-07-15 01:04:17 +04:00
|
|
|
struct timeval tv;
|
1993-04-26 12:23:39 +04:00
|
|
|
struct sockaddr_in clnt_sin;
|
1995-07-15 01:04:17 +04:00
|
|
|
CLIENT *clnt;
|
|
|
|
u_long status;
|
|
|
|
int clnt_sock;
|
1993-04-26 12:23:39 +04:00
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
if (_yp_dobind(indomain, &ysd) != 0)
|
1993-04-26 12:23:39 +04:00
|
|
|
return YPERR_DOMAIN;
|
|
|
|
|
|
|
|
tv.tv_sec = _yplib_timeout;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
clnt_sock = RPC_ANYSOCK;
|
|
|
|
clnt_sin = ysd->dom_server_addr;
|
|
|
|
clnt_sin.sin_port = 0;
|
|
|
|
clnt = clnttcp_create(&clnt_sin, YPPROG, YPVERS, &clnt_sock, 0, 0);
|
1995-07-15 01:04:17 +04:00
|
|
|
if (clnt == NULL) {
|
1993-04-26 12:23:39 +04:00
|
|
|
printf("clnttcp_create failed\n");
|
|
|
|
return YPERR_PMAP;
|
|
|
|
}
|
|
|
|
yprnk.domain = indomain;
|
|
|
|
yprnk.map = inmap;
|
|
|
|
ypresp_allfn = incallback->foreach;
|
1995-07-15 01:04:17 +04:00
|
|
|
ypresp_data = (void *) incallback->data;
|
1993-04-26 12:23:39 +04:00
|
|
|
|
|
|
|
(void) clnt_call(clnt, YPPROC_ALL,
|
1995-07-15 01:04:17 +04:00
|
|
|
xdr_ypreq_nokey, &yprnk, xdr_ypresp_all_seq, &status, tv);
|
1993-04-26 12:23:39 +04:00
|
|
|
clnt_destroy(clnt);
|
1995-07-15 01:04:17 +04:00
|
|
|
/* not really needed... */
|
|
|
|
xdr_free(xdr_ypresp_all_seq, (char *) &status);
|
1993-04-26 12:23:39 +04:00
|
|
|
_yp_unbind(ysd);
|
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
if (status != YP_FALSE)
|
1993-04-26 12:23:39 +04:00
|
|
|
return ypprot_err(status);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
yp_order(indomain, inmap, outorder)
|
1995-07-15 01:04:17 +04:00
|
|
|
const char *indomain;
|
|
|
|
const char *inmap;
|
|
|
|
int *outorder;
|
1993-04-26 12:23:39 +04:00
|
|
|
{
|
1995-07-15 01:04:17 +04:00
|
|
|
struct dom_binding *ysd;
|
1993-04-26 12:23:39 +04:00
|
|
|
struct ypresp_order ypro;
|
|
|
|
struct ypreq_nokey yprnk;
|
1995-07-15 01:04:17 +04:00
|
|
|
struct timeval tv;
|
|
|
|
int r;
|
1993-04-26 12:23:39 +04:00
|
|
|
|
|
|
|
again:
|
1995-07-15 01:04:17 +04:00
|
|
|
if (_yp_dobind(indomain, &ysd) != 0)
|
1993-04-26 12:23:39 +04:00
|
|
|
return YPERR_DOMAIN;
|
|
|
|
|
|
|
|
tv.tv_sec = _yplib_timeout;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
|
|
|
|
yprnk.domain = indomain;
|
|
|
|
yprnk.map = inmap;
|
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
(void)memset(&ypro, 0, sizeof ypro);
|
1993-04-26 12:23:39 +04:00
|
|
|
|
|
|
|
r = clnt_call(ysd->dom_client, YPPROC_ORDER,
|
1995-07-15 01:04:17 +04:00
|
|
|
xdr_ypreq_nokey, &yprnk, xdr_ypresp_order, &ypro, tv);
|
|
|
|
if (r != RPC_SUCCESS) {
|
1993-04-26 12:23:39 +04:00
|
|
|
clnt_perror(ysd->dom_client, "yp_order: clnt_call");
|
|
|
|
ysd->dom_vers = -1;
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
*outorder = ypro.ordernum;
|
1995-07-15 01:04:17 +04:00
|
|
|
xdr_free(xdr_ypresp_order, (char *) &ypro);
|
1993-04-26 12:23:39 +04:00
|
|
|
_yp_unbind(ysd);
|
|
|
|
return ypprot_err(ypro.status);
|
|
|
|
}
|
|
|
|
|
1993-07-24 22:29:16 +04:00
|
|
|
int
|
1993-04-26 12:23:39 +04:00
|
|
|
yp_master(indomain, inmap, outname)
|
1995-07-15 01:04:17 +04:00
|
|
|
const char *indomain;
|
|
|
|
const char *inmap;
|
|
|
|
char **outname;
|
1993-04-26 12:23:39 +04:00
|
|
|
{
|
|
|
|
struct dom_binding *ysd;
|
|
|
|
struct ypresp_master yprm;
|
|
|
|
struct ypreq_nokey yprnk;
|
1995-07-15 01:04:17 +04:00
|
|
|
struct timeval tv;
|
|
|
|
int r;
|
1993-04-26 12:23:39 +04:00
|
|
|
|
|
|
|
again:
|
1995-07-15 01:04:17 +04:00
|
|
|
if (_yp_dobind(indomain, &ysd) != 0)
|
1993-04-26 12:23:39 +04:00
|
|
|
return YPERR_DOMAIN;
|
|
|
|
|
|
|
|
tv.tv_sec = _yplib_timeout;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
|
|
|
|
yprnk.domain = indomain;
|
|
|
|
yprnk.map = inmap;
|
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
(void)memset(&yprm, 0, sizeof yprm);
|
1993-04-26 12:23:39 +04:00
|
|
|
|
|
|
|
r = clnt_call(ysd->dom_client, YPPROC_MASTER,
|
1995-07-15 01:04:17 +04:00
|
|
|
xdr_ypreq_nokey, &yprnk, xdr_ypresp_master, &yprm, tv);
|
|
|
|
if (r != RPC_SUCCESS) {
|
1993-04-26 12:23:39 +04:00
|
|
|
clnt_perror(ysd->dom_client, "yp_master: clnt_call");
|
|
|
|
ysd->dom_vers = -1;
|
|
|
|
goto again;
|
|
|
|
}
|
1995-07-15 01:04:17 +04:00
|
|
|
if (!(r = ypprot_err(yprm.status))) {
|
|
|
|
if ((*outname = strdup(yprm.master)) == NULL)
|
|
|
|
r = RPC_SYSTEMERROR;
|
1993-04-26 12:23:39 +04:00
|
|
|
}
|
1995-07-15 01:04:17 +04:00
|
|
|
xdr_free(xdr_ypresp_master, (char *) &yprm);
|
1993-04-26 12:23:39 +04:00
|
|
|
_yp_unbind(ysd);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
int
|
1993-04-26 12:23:39 +04:00
|
|
|
yp_maplist(indomain, outmaplist)
|
1995-07-15 01:04:17 +04:00
|
|
|
const char *indomain;
|
|
|
|
struct ypmaplist **outmaplist;
|
1993-04-26 12:23:39 +04:00
|
|
|
{
|
|
|
|
struct dom_binding *ysd;
|
|
|
|
struct ypresp_maplist ypml;
|
1995-07-15 01:04:17 +04:00
|
|
|
struct timeval tv;
|
|
|
|
int r;
|
1993-04-26 12:23:39 +04:00
|
|
|
|
|
|
|
again:
|
1995-07-15 01:04:17 +04:00
|
|
|
if (_yp_dobind(indomain, &ysd) != 0)
|
1993-04-26 12:23:39 +04:00
|
|
|
return YPERR_DOMAIN;
|
|
|
|
|
|
|
|
tv.tv_sec = _yplib_timeout;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
|
1994-08-07 03:07:47 +04:00
|
|
|
memset(&ypml, 0, sizeof ypml);
|
1993-04-26 12:23:39 +04:00
|
|
|
|
|
|
|
r = clnt_call(ysd->dom_client, YPPROC_MAPLIST,
|
1995-07-15 01:04:17 +04:00
|
|
|
xdr_domainname, indomain, xdr_ypresp_maplist, &ypml, tv);
|
1993-04-26 12:23:39 +04:00
|
|
|
if (r != RPC_SUCCESS) {
|
|
|
|
clnt_perror(ysd->dom_client, "yp_maplist: clnt_call");
|
|
|
|
ysd->dom_vers = -1;
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
*outmaplist = ypml.list;
|
1995-07-15 01:04:17 +04:00
|
|
|
/* NO: xdr_free(xdr_ypresp_maplist, &ypml); */
|
1993-04-26 12:23:39 +04:00
|
|
|
_yp_unbind(ysd);
|
|
|
|
return ypprot_err(ypml.status);
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
yperr_string(incode)
|
1995-07-15 01:04:17 +04:00
|
|
|
int incode;
|
1993-04-26 12:23:39 +04:00
|
|
|
{
|
1995-07-15 01:04:17 +04:00
|
|
|
static char err[80];
|
1993-04-26 12:23:39 +04:00
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
switch (incode) {
|
1993-04-26 12:23:39 +04:00
|
|
|
case 0:
|
|
|
|
return "Success";
|
|
|
|
case YPERR_BADARGS:
|
|
|
|
return "Request arguments bad";
|
|
|
|
case YPERR_RPC:
|
|
|
|
return "RPC failure";
|
|
|
|
case YPERR_DOMAIN:
|
|
|
|
return "Can't bind to server which serves this domain";
|
|
|
|
case YPERR_MAP:
|
|
|
|
return "No such map in server's domain";
|
|
|
|
case YPERR_KEY:
|
|
|
|
return "No such key in map";
|
|
|
|
case YPERR_YPERR:
|
|
|
|
return "YP server error";
|
|
|
|
case YPERR_RESRC:
|
|
|
|
return "Local resource allocation failure";
|
|
|
|
case YPERR_NOMORE:
|
|
|
|
return "No more records in map database";
|
|
|
|
case YPERR_PMAP:
|
|
|
|
return "Can't communicate with portmapper";
|
|
|
|
case YPERR_YPBIND:
|
|
|
|
return "Can't communicate with ypbind";
|
|
|
|
case YPERR_YPSERV:
|
|
|
|
return "Can't communicate with ypserv";
|
|
|
|
case YPERR_NODOM:
|
|
|
|
return "Local domain name not set";
|
|
|
|
case YPERR_BADDB:
|
|
|
|
return "Server data base is bad";
|
|
|
|
case YPERR_VERS:
|
|
|
|
return "YP server version mismatch - server can't supply service.";
|
|
|
|
case YPERR_ACCESS:
|
|
|
|
return "Access violation";
|
|
|
|
case YPERR_BUSY:
|
|
|
|
return "Database is busy";
|
|
|
|
}
|
1995-07-15 01:04:17 +04:00
|
|
|
(void) snprintf(err, sizeof(err), "YP unknown error %d\n", incode);
|
1993-04-26 12:23:39 +04:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ypprot_err(incode)
|
1995-07-15 01:04:17 +04:00
|
|
|
unsigned int incode;
|
1993-04-26 12:23:39 +04:00
|
|
|
{
|
1995-07-15 01:04:17 +04:00
|
|
|
switch (incode) {
|
1993-04-26 12:23:39 +04:00
|
|
|
case YP_TRUE:
|
|
|
|
return 0;
|
|
|
|
case YP_FALSE:
|
|
|
|
return YPERR_YPBIND;
|
|
|
|
case YP_NOMORE:
|
|
|
|
return YPERR_NOMORE;
|
|
|
|
case YP_NOMAP:
|
|
|
|
return YPERR_MAP;
|
|
|
|
case YP_NODOM:
|
|
|
|
return YPERR_NODOM;
|
|
|
|
case YP_NOKEY:
|
|
|
|
return YPERR_KEY;
|
|
|
|
case YP_BADOP:
|
|
|
|
return YPERR_YPERR;
|
|
|
|
case YP_BADDB:
|
|
|
|
return YPERR_BADDB;
|
|
|
|
case YP_YPERR:
|
|
|
|
return YPERR_YPERR;
|
|
|
|
case YP_BADARGS:
|
|
|
|
return YPERR_BADARGS;
|
|
|
|
case YP_VERS:
|
|
|
|
return YPERR_VERS;
|
|
|
|
}
|
|
|
|
return YPERR_YPERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_yp_check(dom)
|
1995-07-15 01:04:17 +04:00
|
|
|
char **dom;
|
1993-04-26 12:23:39 +04:00
|
|
|
{
|
1995-07-15 01:04:17 +04:00
|
|
|
char *unused;
|
1993-04-26 12:23:39 +04:00
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
if (_yp_domain[0] == '\0')
|
|
|
|
if (yp_get_default_domain(&unused))
|
1993-04-26 12:23:39 +04:00
|
|
|
return 0;
|
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
if (dom)
|
1993-04-26 12:23:39 +04:00
|
|
|
*dom = _yp_domain;
|
|
|
|
|
1995-07-15 01:04:17 +04:00
|
|
|
if (yp_bind(_yp_domain) == 0)
|
1993-04-26 12:23:39 +04:00
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|