14415cd19SGarrett Wollman /* 24415cd19SGarrett Wollman * Copyright (c) 1992/3 Theo de Raadt <deraadt@fsa.ca> 34415cd19SGarrett Wollman * All rights reserved. 44415cd19SGarrett Wollman * 54415cd19SGarrett Wollman * Redistribution and use in source and binary forms, with or without 64415cd19SGarrett Wollman * modification, are permitted provided that the following conditions 74415cd19SGarrett Wollman * are met: 84415cd19SGarrett Wollman * 1. Redistributions of source code must retain the above copyright 94415cd19SGarrett Wollman * notice, this list of conditions and the following disclaimer. 104415cd19SGarrett Wollman * 2. Redistributions in binary form must reproduce the above copyright 114415cd19SGarrett Wollman * notice, this list of conditions and the following disclaimer in the 124415cd19SGarrett Wollman * documentation and/or other materials provided with the distribution. 134415cd19SGarrett Wollman * 3. The name of the author may not be used to endorse or promote 144415cd19SGarrett Wollman * products derived from this software without specific prior written 154415cd19SGarrett Wollman * permission. 164415cd19SGarrett Wollman * 174415cd19SGarrett Wollman * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS 184415cd19SGarrett Wollman * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 194415cd19SGarrett Wollman * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 204415cd19SGarrett Wollman * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 214415cd19SGarrett Wollman * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 224415cd19SGarrett Wollman * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 234415cd19SGarrett Wollman * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 244415cd19SGarrett Wollman * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 254415cd19SGarrett Wollman * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 264415cd19SGarrett Wollman * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 274415cd19SGarrett Wollman * SUCH DAMAGE. 284415cd19SGarrett Wollman */ 294415cd19SGarrett Wollman 304415cd19SGarrett Wollman #ifndef LINT 3164416168SBill Paul static char *rcsid = "$Id: yplib.c,v 1.6 1995/04/09 21:52:31 wpaul Exp $"; 324415cd19SGarrett Wollman #endif 334415cd19SGarrett Wollman 344415cd19SGarrett Wollman #include <sys/param.h> 354415cd19SGarrett Wollman #include <sys/types.h> 364415cd19SGarrett Wollman #include <sys/socket.h> 374415cd19SGarrett Wollman #include <sys/file.h> 384415cd19SGarrett Wollman #include <sys/uio.h> 394415cd19SGarrett Wollman #include <errno.h> 404415cd19SGarrett Wollman #include <stdio.h> 414415cd19SGarrett Wollman #include <string.h> 42b9729ac2SBill Paul #include <stdlib.h> 43b9729ac2SBill Paul #include <unistd.h> 444415cd19SGarrett Wollman #include <rpc/rpc.h> 454415cd19SGarrett Wollman #include <rpc/xdr.h> 464415cd19SGarrett Wollman #include <rpcsvc/yp_prot.h> 474415cd19SGarrett Wollman #include <rpcsvc/ypclnt.h> 484415cd19SGarrett Wollman 494415cd19SGarrett Wollman #ifndef BINDINGDIR 504415cd19SGarrett Wollman #define BINDINGDIR "/var/yp/binding" 514415cd19SGarrett Wollman #endif 524415cd19SGarrett Wollman #define YPMATCHCACHE 534415cd19SGarrett Wollman 544415cd19SGarrett Wollman extern bool_t xdr_domainname(), xdr_ypbind_resp(); 554415cd19SGarrett Wollman extern bool_t xdr_ypreq_key(), xdr_ypresp_val(); 564415cd19SGarrett Wollman extern bool_t xdr_ypreq_nokey(), xdr_ypresp_key_val(); 574415cd19SGarrett Wollman extern bool_t xdr_ypresp_all(), xdr_ypresp_all_seq(); 584415cd19SGarrett Wollman extern bool_t xdr_ypresp_master(); 594415cd19SGarrett Wollman 604415cd19SGarrett Wollman int (*ypresp_allfn)(); 614415cd19SGarrett Wollman void *ypresp_data; 624415cd19SGarrett Wollman 634415cd19SGarrett Wollman struct dom_binding *_ypbindlist; 644415cd19SGarrett Wollman static char _yp_domain[MAXHOSTNAMELEN]; 654415cd19SGarrett Wollman int _yplib_timeout = 10; 664415cd19SGarrett Wollman 674415cd19SGarrett Wollman #ifdef YPMATCHCACHE 684415cd19SGarrett Wollman int _yplib_cache = 5; 694415cd19SGarrett Wollman 704415cd19SGarrett Wollman static struct ypmatch_ent { 714415cd19SGarrett Wollman struct ypmatch_ent *next; 724415cd19SGarrett Wollman char *map, *key, *val; 734415cd19SGarrett Wollman int keylen, vallen; 744415cd19SGarrett Wollman time_t expire_t; 754415cd19SGarrett Wollman } *ypmc; 764415cd19SGarrett Wollman 774415cd19SGarrett Wollman static void 784415cd19SGarrett Wollman ypmatch_add(map, key, keylen, val, vallen) 794415cd19SGarrett Wollman char *map; 804415cd19SGarrett Wollman char *key; 814415cd19SGarrett Wollman int keylen; 824415cd19SGarrett Wollman char *val; 834415cd19SGarrett Wollman int vallen; 844415cd19SGarrett Wollman { 854415cd19SGarrett Wollman struct ypmatch_ent *ep; 864415cd19SGarrett Wollman time_t t; 874415cd19SGarrett Wollman 884415cd19SGarrett Wollman time(&t); 894415cd19SGarrett Wollman 904415cd19SGarrett Wollman for(ep=ypmc; ep; ep=ep->next) 914415cd19SGarrett Wollman if(ep->expire_t < t) 924415cd19SGarrett Wollman break; 934415cd19SGarrett Wollman if(ep==NULL) { 944415cd19SGarrett Wollman ep = (struct ypmatch_ent *)malloc(sizeof *ep); 954415cd19SGarrett Wollman bzero((char *)ep, sizeof *ep); 964415cd19SGarrett Wollman if(ypmc) 974415cd19SGarrett Wollman ep->next = ypmc; 984415cd19SGarrett Wollman ypmc = ep; 994415cd19SGarrett Wollman } 1004415cd19SGarrett Wollman 1014415cd19SGarrett Wollman if(ep->key) 1024415cd19SGarrett Wollman free(ep->key); 1034415cd19SGarrett Wollman if(ep->val) 1044415cd19SGarrett Wollman free(ep->val); 1054415cd19SGarrett Wollman 1064415cd19SGarrett Wollman ep->key = NULL; 1074415cd19SGarrett Wollman ep->val = NULL; 1084415cd19SGarrett Wollman 1094415cd19SGarrett Wollman ep->key = (char *)malloc(keylen); 1104415cd19SGarrett Wollman if(ep->key==NULL) 1114415cd19SGarrett Wollman return; 1124415cd19SGarrett Wollman 1134415cd19SGarrett Wollman ep->val = (char *)malloc(vallen); 1144415cd19SGarrett Wollman if(ep->key==NULL) { 1154415cd19SGarrett Wollman free(ep->key); 1164415cd19SGarrett Wollman ep->key = NULL; 1174415cd19SGarrett Wollman return; 1184415cd19SGarrett Wollman } 1194415cd19SGarrett Wollman ep->keylen = keylen; 1204415cd19SGarrett Wollman ep->vallen = vallen; 1214415cd19SGarrett Wollman 1224415cd19SGarrett Wollman bcopy(key, ep->key, ep->keylen); 1234415cd19SGarrett Wollman bcopy(val, ep->val, ep->vallen); 1244415cd19SGarrett Wollman 1254415cd19SGarrett Wollman if(ep->map) { 1264415cd19SGarrett Wollman if( strcmp(ep->map, map) ) { 1274415cd19SGarrett Wollman free(ep->map); 1284415cd19SGarrett Wollman ep->map = strdup(map); 1294415cd19SGarrett Wollman } 1304415cd19SGarrett Wollman } else { 1314415cd19SGarrett Wollman ep->map = strdup(map); 1324415cd19SGarrett Wollman } 1334415cd19SGarrett Wollman 1344415cd19SGarrett Wollman ep->expire_t = t + _yplib_cache; 1354415cd19SGarrett Wollman } 1364415cd19SGarrett Wollman 1374415cd19SGarrett Wollman static bool_t 1384415cd19SGarrett Wollman ypmatch_find(map, key, keylen, val, vallen) 1394415cd19SGarrett Wollman char *map; 1404415cd19SGarrett Wollman char *key; 1414415cd19SGarrett Wollman int keylen; 1424415cd19SGarrett Wollman char **val; 1434415cd19SGarrett Wollman int *vallen; 1444415cd19SGarrett Wollman { 1454415cd19SGarrett Wollman struct ypmatch_ent *ep; 1464415cd19SGarrett Wollman time_t t; 1474415cd19SGarrett Wollman 1484415cd19SGarrett Wollman if(ypmc==NULL) 1494415cd19SGarrett Wollman return 0; 1504415cd19SGarrett Wollman 1514415cd19SGarrett Wollman time(&t); 1524415cd19SGarrett Wollman 1534415cd19SGarrett Wollman for(ep=ypmc; ep; ep=ep->next) { 1544415cd19SGarrett Wollman if(ep->keylen != keylen) 1554415cd19SGarrett Wollman continue; 1564415cd19SGarrett Wollman if(strcmp(ep->map, map)) 1574415cd19SGarrett Wollman continue; 1584415cd19SGarrett Wollman if(bcmp(ep->key, key, keylen)) 1594415cd19SGarrett Wollman continue; 1604415cd19SGarrett Wollman if(t > ep->expire_t) 1614415cd19SGarrett Wollman continue; 1624415cd19SGarrett Wollman 1634415cd19SGarrett Wollman *val = ep->val; 1644415cd19SGarrett Wollman *vallen = ep->vallen; 1654415cd19SGarrett Wollman return 1; 1664415cd19SGarrett Wollman } 1674415cd19SGarrett Wollman return 0; 1684415cd19SGarrett Wollman } 1694415cd19SGarrett Wollman #endif 1704415cd19SGarrett Wollman 17164416168SBill Paul char * 17264416168SBill Paul ypbinderr_string(incode) 17364416168SBill Paul int incode; 17464416168SBill Paul { 17564416168SBill Paul static char err[80]; 17664416168SBill Paul switch(incode) { 17764416168SBill Paul case 0: 17864416168SBill Paul return "Success"; 17964416168SBill Paul case 1: 18064416168SBill Paul return "Internal ypbind error"; 18164416168SBill Paul case 2: 18264416168SBill Paul return "Domain not bound"; 18364416168SBill Paul case 3: 18464416168SBill Paul return "System resource allocation failure"; 18564416168SBill Paul } 18664416168SBill Paul sprintf(err, "Unknown ypbind error %d\n", incode); 18764416168SBill Paul return err; 18864416168SBill Paul } 18964416168SBill Paul 1904415cd19SGarrett Wollman int 1914415cd19SGarrett Wollman _yp_dobind(dom, ypdb) 1924415cd19SGarrett Wollman char *dom; 1934415cd19SGarrett Wollman struct dom_binding **ypdb; 1944415cd19SGarrett Wollman { 1954415cd19SGarrett Wollman static int pid = -1; 1964415cd19SGarrett Wollman char path[MAXPATHLEN]; 1974415cd19SGarrett Wollman struct dom_binding *ysd, *ysd2; 1984415cd19SGarrett Wollman struct ypbind_resp ypbr; 1994415cd19SGarrett Wollman struct timeval tv; 2004415cd19SGarrett Wollman struct sockaddr_in clnt_sin; 2014415cd19SGarrett Wollman int clnt_sock, fd, gpid; 2024415cd19SGarrett Wollman CLIENT *client; 2034415cd19SGarrett Wollman int new=0, r; 2044415cd19SGarrett Wollman 2054415cd19SGarrett Wollman gpid = getpid(); 2064415cd19SGarrett Wollman if( !(pid==-1 || pid==gpid) ) { 2074415cd19SGarrett Wollman ysd = _ypbindlist; 2084415cd19SGarrett Wollman while(ysd) { 2094415cd19SGarrett Wollman if(ysd->dom_client) 2104415cd19SGarrett Wollman clnt_destroy(ysd->dom_client); 2114415cd19SGarrett Wollman ysd2 = ysd->dom_pnext; 2124415cd19SGarrett Wollman free(ysd); 2134415cd19SGarrett Wollman ysd = ysd2; 2144415cd19SGarrett Wollman } 2154415cd19SGarrett Wollman _ypbindlist = NULL; 2164415cd19SGarrett Wollman } 2174415cd19SGarrett Wollman pid = gpid; 2184415cd19SGarrett Wollman 2194415cd19SGarrett Wollman if(ypdb!=NULL) 2204415cd19SGarrett Wollman *ypdb = NULL; 2214415cd19SGarrett Wollman 2224415cd19SGarrett Wollman if(dom==NULL || strlen(dom)==0) 2234415cd19SGarrett Wollman return YPERR_BADARGS; 2244415cd19SGarrett Wollman 2254415cd19SGarrett Wollman for(ysd = _ypbindlist; ysd; ysd = ysd->dom_pnext) 2264415cd19SGarrett Wollman if( strcmp(dom, ysd->dom_domain) == 0) 2274415cd19SGarrett Wollman break; 2284415cd19SGarrett Wollman if(ysd==NULL) { 2294415cd19SGarrett Wollman ysd = (struct dom_binding *)malloc(sizeof *ysd); 2304415cd19SGarrett Wollman bzero((char *)ysd, sizeof *ysd); 2314415cd19SGarrett Wollman ysd->dom_socket = -1; 2324415cd19SGarrett Wollman ysd->dom_vers = 0; 2334415cd19SGarrett Wollman new = 1; 2344415cd19SGarrett Wollman } 2354415cd19SGarrett Wollman again: 2364415cd19SGarrett Wollman #ifdef BINDINGDIR 2374415cd19SGarrett Wollman if(ysd->dom_vers==0) { 2384415cd19SGarrett Wollman sprintf(path, "%s/%s.%d", BINDINGDIR, dom, 2); 2394415cd19SGarrett Wollman if( (fd=open(path, O_RDONLY)) == -1) { 2404415cd19SGarrett Wollman /* no binding file, YP is dead. */ 241b9729ac2SBill Paul /* 242b9729ac2SBill Paul * XXX Not necessarily: the caller might be asking 243b9729ac2SBill Paul * for a domain that we simply aren't bound to yet. 244b9729ac2SBill Paul * Check that the binding file for the default domain 245b9729ac2SBill Paul * is also unlocked before giving up. 246b9729ac2SBill Paul */ 247b9729ac2SBill Paul close(fd); 248b9729ac2SBill Paul if (new) { 249b9729ac2SBill Paul char *_defaultdom; 250b9729ac2SBill Paul 251b9729ac2SBill Paul if (yp_get_default_domain(&_defaultdom)) 252b9729ac2SBill Paul return YPERR_NODOM; 253b9729ac2SBill Paul if (!strcmp(dom, _defaultdom)) 254b9729ac2SBill Paul goto bail; 255b9729ac2SBill Paul sprintf(path, "%s/%s.%d", BINDINGDIR, _defaultdom, 2); 256b9729ac2SBill Paul if((fd=open(path, O_RDONLY)) > 0 && 257b9729ac2SBill Paul (flock(fd, LOCK_EX|LOCK_NB)) == -1 && 258b9729ac2SBill Paul errno==EWOULDBLOCK) { 259b9729ac2SBill Paul close(fd); 260b9729ac2SBill Paul goto skipit; 261b9729ac2SBill Paul } else { 262b9729ac2SBill Paul goto bail; 263b9729ac2SBill Paul } 264b9729ac2SBill Paul } 2654415cd19SGarrett Wollman } 2664415cd19SGarrett Wollman if( flock(fd, LOCK_EX|LOCK_NB) == -1 && errno==EWOULDBLOCK) { 2674415cd19SGarrett Wollman struct iovec iov[2]; 2684415cd19SGarrett Wollman struct ypbind_resp ybr; 2694415cd19SGarrett Wollman u_short ypb_port; 2704415cd19SGarrett Wollman 2714415cd19SGarrett Wollman iov[0].iov_base = (caddr_t)&ypb_port; 2724415cd19SGarrett Wollman iov[0].iov_len = sizeof ypb_port; 2734415cd19SGarrett Wollman iov[1].iov_base = (caddr_t)&ybr; 2744415cd19SGarrett Wollman iov[1].iov_len = sizeof ybr; 2754415cd19SGarrett Wollman 2764415cd19SGarrett Wollman r = readv(fd, iov, 2); 2774415cd19SGarrett Wollman if(r != iov[0].iov_len + iov[1].iov_len) { 2784415cd19SGarrett Wollman close(fd); 2794415cd19SGarrett Wollman ysd->dom_vers = -1; 2804415cd19SGarrett Wollman goto again; 2814415cd19SGarrett Wollman } 2824415cd19SGarrett Wollman 2834415cd19SGarrett Wollman bzero(&ysd->dom_server_addr, sizeof ysd->dom_server_addr); 2844415cd19SGarrett Wollman ysd->dom_server_addr.sin_family = AF_INET; 2854415cd19SGarrett Wollman ysd->dom_server_addr.sin_len = sizeof(struct sockaddr_in); 2864415cd19SGarrett Wollman ysd->dom_server_addr.sin_addr = 2874415cd19SGarrett Wollman ybr.ypbind_respbody.ypbind_bindinfo.ypbind_binding_addr; 2884415cd19SGarrett Wollman ysd->dom_server_addr.sin_port = 2894415cd19SGarrett Wollman ybr.ypbind_respbody.ypbind_bindinfo.ypbind_binding_port; 2904415cd19SGarrett Wollman 2914415cd19SGarrett Wollman ysd->dom_server_port = ysd->dom_server_addr.sin_port; 2924415cd19SGarrett Wollman close(fd); 2934415cd19SGarrett Wollman goto gotit; 2944415cd19SGarrett Wollman } else { 2954415cd19SGarrett Wollman /* no lock on binding file, YP is dead. */ 296f067dfeaSBill Paul /* 297f067dfeaSBill Paul * XXX Not necessarily: the caller might be asking 298f067dfeaSBill Paul * for a domain that we simply aren't bound to yet. 299f067dfeaSBill Paul * Check that the binding file for the default domain 300f067dfeaSBill Paul * is also unlocked before giving up. 301f067dfeaSBill Paul */ 3024415cd19SGarrett Wollman close(fd); 303f067dfeaSBill Paul if (new) { 304b9729ac2SBill Paul char *_defaultdom; 305b9729ac2SBill Paul 306f067dfeaSBill Paul if (yp_get_default_domain(&_defaultdom)) 307f067dfeaSBill Paul return YPERR_NODOM; 308f067dfeaSBill Paul sprintf(path, "%s/%s.%d", BINDINGDIR, _defaultdom, 2); 309b9729ac2SBill Paul if (!strcmp(dom, _defaultdom)) 310b9729ac2SBill Paul goto bail; 311f067dfeaSBill Paul if((fd=open(path, O_RDONLY)) > 0 && 312f067dfeaSBill Paul (flock(fd, LOCK_EX|LOCK_NB)) == -1 && 313f067dfeaSBill Paul errno==EWOULDBLOCK) { 314f067dfeaSBill Paul close(fd); 315f067dfeaSBill Paul } else { 316b9729ac2SBill Paul bail: 317f067dfeaSBill Paul close(fd); /* for paranoia's sake */ 3184415cd19SGarrett Wollman free(ysd); 3194415cd19SGarrett Wollman return YPERR_YPBIND; 3204415cd19SGarrett Wollman } 3214415cd19SGarrett Wollman } 322f067dfeaSBill Paul } 323f067dfeaSBill Paul } 324b9729ac2SBill Paul skipit: 3254415cd19SGarrett Wollman #endif 3264415cd19SGarrett Wollman if(ysd->dom_vers==-1 || ysd->dom_vers==0) { 3274415cd19SGarrett Wollman bzero((char *)&clnt_sin, sizeof clnt_sin); 3284415cd19SGarrett Wollman clnt_sin.sin_family = AF_INET; 3294415cd19SGarrett Wollman clnt_sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK); 3304415cd19SGarrett Wollman 3314415cd19SGarrett Wollman clnt_sock = RPC_ANYSOCK; 3324415cd19SGarrett Wollman client = clnttcp_create(&clnt_sin, YPBINDPROG, YPBINDVERS, &clnt_sock, 3334415cd19SGarrett Wollman 0, 0); 3344415cd19SGarrett Wollman if(client==NULL) { 3354415cd19SGarrett Wollman clnt_pcreateerror("clnttcp_create"); 3364415cd19SGarrett Wollman if(new) 3374415cd19SGarrett Wollman free(ysd); 3384415cd19SGarrett Wollman return YPERR_YPBIND; 3394415cd19SGarrett Wollman } 3404415cd19SGarrett Wollman 3414415cd19SGarrett Wollman tv.tv_sec = _yplib_timeout; 3424415cd19SGarrett Wollman tv.tv_usec = 0; 3434415cd19SGarrett Wollman r = clnt_call(client, YPBINDPROC_DOMAIN, 3444415cd19SGarrett Wollman xdr_domainname, dom, xdr_ypbind_resp, &ypbr, tv); 3454415cd19SGarrett Wollman if(r != RPC_SUCCESS) { 3464415cd19SGarrett Wollman fprintf(stderr, 347f067dfeaSBill Paul "YP: server for domain %s not responding, retrying\n", dom); 3484415cd19SGarrett Wollman clnt_destroy(client); 3494415cd19SGarrett Wollman ysd->dom_vers = -1; 3504415cd19SGarrett Wollman goto again; 35164416168SBill Paul } else { 35264416168SBill Paul if (ypbr.ypbind_status != YPBIND_SUCC_VAL) { 35364416168SBill Paul fprintf(stderr, "yp_bind: %s\n", 35464416168SBill Paul ypbinderr_string(ypbr.ypbind_status)); 35564416168SBill Paul return YPERR_YPBIND; 35664416168SBill Paul } 3574415cd19SGarrett Wollman } 3584415cd19SGarrett Wollman clnt_destroy(client); 3594415cd19SGarrett Wollman 3604415cd19SGarrett Wollman bzero((char *)&ysd->dom_server_addr, sizeof ysd->dom_server_addr); 3614415cd19SGarrett Wollman ysd->dom_server_addr.sin_family = AF_INET; 3624415cd19SGarrett Wollman ysd->dom_server_addr.sin_port = 3634415cd19SGarrett Wollman ypbr.ypbind_respbody.ypbind_bindinfo.ypbind_binding_port; 3644415cd19SGarrett Wollman ysd->dom_server_addr.sin_addr.s_addr = 3654415cd19SGarrett Wollman ypbr.ypbind_respbody.ypbind_bindinfo.ypbind_binding_addr.s_addr; 3664415cd19SGarrett Wollman ysd->dom_server_port = 3674415cd19SGarrett Wollman ypbr.ypbind_respbody.ypbind_bindinfo.ypbind_binding_port; 3684415cd19SGarrett Wollman gotit: 3694415cd19SGarrett Wollman ysd->dom_vers = YPVERS; 3704415cd19SGarrett Wollman strcpy(ysd->dom_domain, dom); 3714415cd19SGarrett Wollman } 3724415cd19SGarrett Wollman 3734415cd19SGarrett Wollman tv.tv_sec = _yplib_timeout/2; 3744415cd19SGarrett Wollman tv.tv_usec = 0; 3754415cd19SGarrett Wollman if(ysd->dom_client) 3764415cd19SGarrett Wollman clnt_destroy(ysd->dom_client); 3774415cd19SGarrett Wollman ysd->dom_socket = RPC_ANYSOCK; 3784415cd19SGarrett Wollman ysd->dom_client = clntudp_create(&ysd->dom_server_addr, 3794415cd19SGarrett Wollman YPPROG, YPVERS, tv, &ysd->dom_socket); 3804415cd19SGarrett Wollman if(ysd->dom_client==NULL) { 3814415cd19SGarrett Wollman clnt_pcreateerror("clntudp_create"); 3824415cd19SGarrett Wollman ysd->dom_vers = -1; 3834415cd19SGarrett Wollman goto again; 3844415cd19SGarrett Wollman } 3854415cd19SGarrett Wollman if( fcntl(ysd->dom_socket, F_SETFD, 1) == -1) 3864415cd19SGarrett Wollman perror("fcntl: F_SETFD"); 3874415cd19SGarrett Wollman 3884415cd19SGarrett Wollman if(new) { 3894415cd19SGarrett Wollman ysd->dom_pnext = _ypbindlist; 3904415cd19SGarrett Wollman _ypbindlist = ysd; 3914415cd19SGarrett Wollman } 3924415cd19SGarrett Wollman 3934415cd19SGarrett Wollman if(ypdb!=NULL) 3944415cd19SGarrett Wollman *ypdb = ysd; 3954415cd19SGarrett Wollman return 0; 3964415cd19SGarrett Wollman } 3974415cd19SGarrett Wollman 3984415cd19SGarrett Wollman static void 3994415cd19SGarrett Wollman _yp_unbind(ypb) 4004415cd19SGarrett Wollman struct dom_binding *ypb; 4014415cd19SGarrett Wollman { 4024415cd19SGarrett Wollman clnt_destroy(ypb->dom_client); 4034415cd19SGarrett Wollman ypb->dom_client = NULL; 4044415cd19SGarrett Wollman ypb->dom_socket = -1; 4054415cd19SGarrett Wollman } 4064415cd19SGarrett Wollman 4074415cd19SGarrett Wollman int 4084415cd19SGarrett Wollman yp_bind(dom) 4094415cd19SGarrett Wollman char *dom; 4104415cd19SGarrett Wollman { 4114415cd19SGarrett Wollman return _yp_dobind(dom, NULL); 4124415cd19SGarrett Wollman } 4134415cd19SGarrett Wollman 4144415cd19SGarrett Wollman void 4154415cd19SGarrett Wollman yp_unbind(dom) 4164415cd19SGarrett Wollman char *dom; 4174415cd19SGarrett Wollman { 4184415cd19SGarrett Wollman struct dom_binding *ypb, *ypbp; 4194415cd19SGarrett Wollman 4204415cd19SGarrett Wollman ypbp = NULL; 4214415cd19SGarrett Wollman for(ypb=_ypbindlist; ypb; ypb=ypb->dom_pnext) { 4224415cd19SGarrett Wollman if( strcmp(dom, ypb->dom_domain) == 0) { 4234415cd19SGarrett Wollman clnt_destroy(ypb->dom_client); 4244415cd19SGarrett Wollman if(ypbp) 4254415cd19SGarrett Wollman ypbp->dom_pnext = ypb->dom_pnext; 4264415cd19SGarrett Wollman else 4274415cd19SGarrett Wollman _ypbindlist = ypb->dom_pnext; 4284415cd19SGarrett Wollman free(ypb); 4294415cd19SGarrett Wollman return; 4304415cd19SGarrett Wollman } 4314415cd19SGarrett Wollman ypbp = ypb; 4324415cd19SGarrett Wollman } 4334415cd19SGarrett Wollman return; 4344415cd19SGarrett Wollman } 4354415cd19SGarrett Wollman 4364415cd19SGarrett Wollman int 4374415cd19SGarrett Wollman yp_match(indomain, inmap, inkey, inkeylen, outval, outvallen) 4384415cd19SGarrett Wollman char *indomain; 4394415cd19SGarrett Wollman char *inmap; 4404415cd19SGarrett Wollman const char *inkey; 4414415cd19SGarrett Wollman int inkeylen; 4424415cd19SGarrett Wollman char **outval; 4434415cd19SGarrett Wollman int *outvallen; 4444415cd19SGarrett Wollman { 4454415cd19SGarrett Wollman struct dom_binding *ysd; 4464415cd19SGarrett Wollman struct ypresp_val yprv; 4474415cd19SGarrett Wollman struct timeval tv; 4484415cd19SGarrett Wollman struct ypreq_key yprk; 4494415cd19SGarrett Wollman int r; 4504415cd19SGarrett Wollman 4514415cd19SGarrett Wollman *outval = NULL; 4524415cd19SGarrett Wollman *outvallen = 0; 4534415cd19SGarrett Wollman 45406643071SBill Paul /* Sanity check */ 455e17334c3SBill Paul 45606643071SBill Paul if (inkey == NULL || !strlen(inkey) || inkeylen <= 0 || 45706643071SBill Paul inmap == NULL || !strlen(inmap) || 45806643071SBill Paul indomain == NULL || !strlen(indomain)) 45906643071SBill Paul return YPERR_BADARGS; 460e17334c3SBill Paul 4614415cd19SGarrett Wollman again: 4624415cd19SGarrett Wollman if( _yp_dobind(indomain, &ysd) != 0) 4634415cd19SGarrett Wollman return YPERR_DOMAIN; 4644415cd19SGarrett Wollman 4654415cd19SGarrett Wollman #ifdef YPMATCHCACHE 4664415cd19SGarrett Wollman if( !strcmp(_yp_domain, indomain) && ypmatch_find(inmap, inkey, 4674415cd19SGarrett Wollman inkeylen, &yprv.valdat.dptr, &yprv.valdat.dsize)) { 4684415cd19SGarrett Wollman *outvallen = yprv.valdat.dsize; 4694415cd19SGarrett Wollman *outval = (char *)malloc(*outvallen+1); 4704415cd19SGarrett Wollman bcopy(yprv.valdat.dptr, *outval, *outvallen); 4714415cd19SGarrett Wollman (*outval)[*outvallen] = '\0'; 4724415cd19SGarrett Wollman return 0; 4734415cd19SGarrett Wollman } 4744415cd19SGarrett Wollman #endif 4754415cd19SGarrett Wollman 4764415cd19SGarrett Wollman tv.tv_sec = _yplib_timeout; 4774415cd19SGarrett Wollman tv.tv_usec = 0; 4784415cd19SGarrett Wollman 4794415cd19SGarrett Wollman yprk.domain = indomain; 4804415cd19SGarrett Wollman yprk.map = inmap; 4814415cd19SGarrett Wollman yprk.keydat.dptr = (char *)inkey; 4824415cd19SGarrett Wollman yprk.keydat.dsize = inkeylen; 4834415cd19SGarrett Wollman 4844415cd19SGarrett Wollman bzero((char *)&yprv, sizeof yprv); 4854415cd19SGarrett Wollman 4864415cd19SGarrett Wollman r = clnt_call(ysd->dom_client, YPPROC_MATCH, 4874415cd19SGarrett Wollman xdr_ypreq_key, &yprk, xdr_ypresp_val, &yprv, tv); 4884415cd19SGarrett Wollman if(r != RPC_SUCCESS) { 4894415cd19SGarrett Wollman clnt_perror(ysd->dom_client, "yp_match: clnt_call"); 4904415cd19SGarrett Wollman ysd->dom_vers = -1; 4914415cd19SGarrett Wollman goto again; 4924415cd19SGarrett Wollman } 4934415cd19SGarrett Wollman if( !(r=ypprot_err(yprv.status)) ) { 4944415cd19SGarrett Wollman *outvallen = yprv.valdat.dsize; 4954415cd19SGarrett Wollman *outval = (char *)malloc(*outvallen+1); 4964415cd19SGarrett Wollman bcopy(yprv.valdat.dptr, *outval, *outvallen); 4974415cd19SGarrett Wollman (*outval)[*outvallen] = '\0'; 4984415cd19SGarrett Wollman #ifdef YPMATCHCACHE 4994415cd19SGarrett Wollman if( strcmp(_yp_domain, indomain)==0 ) 5004415cd19SGarrett Wollman ypmatch_add(inmap, inkey, inkeylen, *outval, *outvallen); 5014415cd19SGarrett Wollman #endif 5024415cd19SGarrett Wollman } 5034415cd19SGarrett Wollman xdr_free(xdr_ypresp_val, (char *)&yprv); 5044415cd19SGarrett Wollman _yp_unbind(ysd); 5054415cd19SGarrett Wollman return r; 5064415cd19SGarrett Wollman } 5074415cd19SGarrett Wollman 5084415cd19SGarrett Wollman int 5094415cd19SGarrett Wollman yp_get_default_domain(domp) 5104415cd19SGarrett Wollman char **domp; 5114415cd19SGarrett Wollman { 5124415cd19SGarrett Wollman *domp = NULL; 5134415cd19SGarrett Wollman if(_yp_domain[0] == '\0') 5144415cd19SGarrett Wollman if( getdomainname(_yp_domain, sizeof _yp_domain)) 5154415cd19SGarrett Wollman return YPERR_NODOM; 5164415cd19SGarrett Wollman *domp = _yp_domain; 5174415cd19SGarrett Wollman return 0; 5184415cd19SGarrett Wollman } 5194415cd19SGarrett Wollman 5204415cd19SGarrett Wollman int 5214415cd19SGarrett Wollman yp_first(indomain, inmap, outkey, outkeylen, outval, outvallen) 5224415cd19SGarrett Wollman char *indomain; 5234415cd19SGarrett Wollman char *inmap; 5244415cd19SGarrett Wollman char **outkey; 5254415cd19SGarrett Wollman int *outkeylen; 5264415cd19SGarrett Wollman char **outval; 5274415cd19SGarrett Wollman int *outvallen; 5284415cd19SGarrett Wollman { 5294415cd19SGarrett Wollman struct ypresp_key_val yprkv; 5304415cd19SGarrett Wollman struct ypreq_nokey yprnk; 5314415cd19SGarrett Wollman struct dom_binding *ysd; 5324415cd19SGarrett Wollman struct timeval tv; 5334415cd19SGarrett Wollman int r; 5344415cd19SGarrett Wollman 53506643071SBill Paul /* Sanity check */ 53606643071SBill Paul 53706643071SBill Paul if (indomain == NULL || !strlen(indomain) || 53806643071SBill Paul inmap == NULL || !strlen(inmap)) 53906643071SBill Paul return YPERR_BADARGS; 54006643071SBill Paul 5414415cd19SGarrett Wollman *outkey = *outval = NULL; 5424415cd19SGarrett Wollman *outkeylen = *outvallen = 0; 5434415cd19SGarrett Wollman 5444415cd19SGarrett Wollman again: 5454415cd19SGarrett Wollman if( _yp_dobind(indomain, &ysd) != 0) 5464415cd19SGarrett Wollman return YPERR_DOMAIN; 5474415cd19SGarrett Wollman 5484415cd19SGarrett Wollman tv.tv_sec = _yplib_timeout; 5494415cd19SGarrett Wollman tv.tv_usec = 0; 5504415cd19SGarrett Wollman 5514415cd19SGarrett Wollman yprnk.domain = indomain; 5524415cd19SGarrett Wollman yprnk.map = inmap; 5534415cd19SGarrett Wollman bzero((char *)&yprkv, sizeof yprkv); 5544415cd19SGarrett Wollman 5554415cd19SGarrett Wollman r = clnt_call(ysd->dom_client, YPPROC_FIRST, 5564415cd19SGarrett Wollman xdr_ypreq_nokey, &yprnk, xdr_ypresp_key_val, &yprkv, tv); 5574415cd19SGarrett Wollman if(r != RPC_SUCCESS) { 5584415cd19SGarrett Wollman clnt_perror(ysd->dom_client, "yp_first: clnt_call"); 5592943bd1cSBill Paul ysd->dom_vers = 0; 5604415cd19SGarrett Wollman goto again; 5614415cd19SGarrett Wollman } 5624415cd19SGarrett Wollman if( !(r=ypprot_err(yprkv.status)) ) { 5634415cd19SGarrett Wollman *outkeylen = yprkv.keydat.dsize; 5644415cd19SGarrett Wollman *outkey = (char *)malloc(*outkeylen+1); 5654415cd19SGarrett Wollman bcopy(yprkv.keydat.dptr, *outkey, *outkeylen); 5664415cd19SGarrett Wollman (*outkey)[*outkeylen] = '\0'; 5674415cd19SGarrett Wollman *outvallen = yprkv.valdat.dsize; 5684415cd19SGarrett Wollman *outval = (char *)malloc(*outvallen+1); 5694415cd19SGarrett Wollman bcopy(yprkv.valdat.dptr, *outval, *outvallen); 5704415cd19SGarrett Wollman (*outval)[*outvallen] = '\0'; 5714415cd19SGarrett Wollman } 5724415cd19SGarrett Wollman xdr_free(xdr_ypresp_key_val, (char *)&yprkv); 5734415cd19SGarrett Wollman _yp_unbind(ysd); 5744415cd19SGarrett Wollman return r; 5754415cd19SGarrett Wollman } 5764415cd19SGarrett Wollman 5774415cd19SGarrett Wollman int 5784415cd19SGarrett Wollman yp_next(indomain, inmap, inkey, inkeylen, outkey, outkeylen, outval, outvallen) 5794415cd19SGarrett Wollman char *indomain; 5804415cd19SGarrett Wollman char *inmap; 5814415cd19SGarrett Wollman char *inkey; 5824415cd19SGarrett Wollman int inkeylen; 5834415cd19SGarrett Wollman char **outkey; 5844415cd19SGarrett Wollman int *outkeylen; 5854415cd19SGarrett Wollman char **outval; 5864415cd19SGarrett Wollman int *outvallen; 5874415cd19SGarrett Wollman { 5884415cd19SGarrett Wollman struct ypresp_key_val yprkv; 5894415cd19SGarrett Wollman struct ypreq_key yprk; 5904415cd19SGarrett Wollman struct dom_binding *ysd; 5914415cd19SGarrett Wollman struct timeval tv; 5924415cd19SGarrett Wollman int r; 5934415cd19SGarrett Wollman 59406643071SBill Paul /* Sanity check */ 59506643071SBill Paul 59606643071SBill Paul if (inkey == NULL || !strlen(inkey) || inkeylen <= 0 || 59706643071SBill Paul inmap == NULL || !strlen(inmap) || 59806643071SBill Paul indomain == NULL || !strlen(indomain)) 59906643071SBill Paul return YPERR_BADARGS; 60006643071SBill Paul 6014415cd19SGarrett Wollman *outkey = *outval = NULL; 6024415cd19SGarrett Wollman *outkeylen = *outvallen = 0; 6034415cd19SGarrett Wollman 6044415cd19SGarrett Wollman again: 6054415cd19SGarrett Wollman if( _yp_dobind(indomain, &ysd) != 0) 6064415cd19SGarrett Wollman return YPERR_DOMAIN; 6074415cd19SGarrett Wollman 6084415cd19SGarrett Wollman tv.tv_sec = _yplib_timeout; 6094415cd19SGarrett Wollman tv.tv_usec = 0; 6104415cd19SGarrett Wollman 6114415cd19SGarrett Wollman yprk.domain = indomain; 6124415cd19SGarrett Wollman yprk.map = inmap; 6134415cd19SGarrett Wollman yprk.keydat.dptr = inkey; 6144415cd19SGarrett Wollman yprk.keydat.dsize = inkeylen; 6154415cd19SGarrett Wollman bzero((char *)&yprkv, sizeof yprkv); 6164415cd19SGarrett Wollman 6174415cd19SGarrett Wollman r = clnt_call(ysd->dom_client, YPPROC_NEXT, 6184415cd19SGarrett Wollman xdr_ypreq_key, &yprk, xdr_ypresp_key_val, &yprkv, tv); 6194415cd19SGarrett Wollman if(r != RPC_SUCCESS) { 6204415cd19SGarrett Wollman clnt_perror(ysd->dom_client, "yp_next: clnt_call"); 6214415cd19SGarrett Wollman ysd->dom_vers = -1; 6224415cd19SGarrett Wollman goto again; 6234415cd19SGarrett Wollman } 6244415cd19SGarrett Wollman if( !(r=ypprot_err(yprkv.status)) ) { 6254415cd19SGarrett Wollman *outkeylen = yprkv.keydat.dsize; 6264415cd19SGarrett Wollman *outkey = (char *)malloc(*outkeylen+1); 6274415cd19SGarrett Wollman bcopy(yprkv.keydat.dptr, *outkey, *outkeylen); 6284415cd19SGarrett Wollman (*outkey)[*outkeylen] = '\0'; 6294415cd19SGarrett Wollman *outvallen = yprkv.valdat.dsize; 6304415cd19SGarrett Wollman *outval = (char *)malloc(*outvallen+1); 6314415cd19SGarrett Wollman bcopy(yprkv.valdat.dptr, *outval, *outvallen); 6324415cd19SGarrett Wollman (*outval)[*outvallen] = '\0'; 6334415cd19SGarrett Wollman } 6344415cd19SGarrett Wollman xdr_free(xdr_ypresp_key_val, (char *)&yprkv); 6354415cd19SGarrett Wollman _yp_unbind(ysd); 6364415cd19SGarrett Wollman return r; 6374415cd19SGarrett Wollman } 6384415cd19SGarrett Wollman 6394415cd19SGarrett Wollman int 6404415cd19SGarrett Wollman yp_all(indomain, inmap, incallback) 6414415cd19SGarrett Wollman char *indomain; 6424415cd19SGarrett Wollman char *inmap; 6434415cd19SGarrett Wollman struct ypall_callback *incallback; 6444415cd19SGarrett Wollman { 6454415cd19SGarrett Wollman struct ypreq_nokey yprnk; 6464415cd19SGarrett Wollman struct dom_binding *ysd; 6474415cd19SGarrett Wollman struct timeval tv; 6484415cd19SGarrett Wollman struct sockaddr_in clnt_sin; 6494415cd19SGarrett Wollman CLIENT *clnt; 6504415cd19SGarrett Wollman u_long status; 6514415cd19SGarrett Wollman int clnt_sock; 6524415cd19SGarrett Wollman 65306643071SBill Paul /* Sanity check */ 65406643071SBill Paul 65506643071SBill Paul if (indomain == NULL || !strlen(indomain) || 65606643071SBill Paul inmap == NULL || !strlen(inmap)) 65706643071SBill Paul return YPERR_BADARGS; 65806643071SBill Paul 6594415cd19SGarrett Wollman if( _yp_dobind(indomain, &ysd) != 0) 6604415cd19SGarrett Wollman return YPERR_DOMAIN; 6614415cd19SGarrett Wollman 6624415cd19SGarrett Wollman tv.tv_sec = _yplib_timeout; 6634415cd19SGarrett Wollman tv.tv_usec = 0; 6644415cd19SGarrett Wollman clnt_sock = RPC_ANYSOCK; 6654415cd19SGarrett Wollman clnt_sin = ysd->dom_server_addr; 6664415cd19SGarrett Wollman clnt_sin.sin_port = 0; 6674415cd19SGarrett Wollman clnt = clnttcp_create(&clnt_sin, YPPROG, YPVERS, &clnt_sock, 0, 0); 6684415cd19SGarrett Wollman if(clnt==NULL) { 6694415cd19SGarrett Wollman printf("clnttcp_create failed\n"); 6704415cd19SGarrett Wollman return YPERR_PMAP; 6714415cd19SGarrett Wollman } 6724415cd19SGarrett Wollman 6734415cd19SGarrett Wollman yprnk.domain = indomain; 6744415cd19SGarrett Wollman yprnk.map = inmap; 6754415cd19SGarrett Wollman ypresp_allfn = incallback->foreach; 6764415cd19SGarrett Wollman ypresp_data = (void *)incallback->data; 6774415cd19SGarrett Wollman 6784415cd19SGarrett Wollman (void) clnt_call(clnt, YPPROC_ALL, 6794415cd19SGarrett Wollman xdr_ypreq_nokey, &yprnk, xdr_ypresp_all_seq, &status, tv); 6804415cd19SGarrett Wollman clnt_destroy(clnt); 6814415cd19SGarrett Wollman xdr_free(xdr_ypresp_all_seq, (char *)&status); /* not really needed... */ 6824415cd19SGarrett Wollman _yp_unbind(ysd); 6834415cd19SGarrett Wollman 6844415cd19SGarrett Wollman if(status != YP_FALSE) 6854415cd19SGarrett Wollman return ypprot_err(status); 6864415cd19SGarrett Wollman return 0; 6874415cd19SGarrett Wollman } 6884415cd19SGarrett Wollman 6894415cd19SGarrett Wollman int 6904415cd19SGarrett Wollman yp_order(indomain, inmap, outorder) 6914415cd19SGarrett Wollman char *indomain; 6924415cd19SGarrett Wollman char *inmap; 6934415cd19SGarrett Wollman int *outorder; 6944415cd19SGarrett Wollman { 6954415cd19SGarrett Wollman struct dom_binding *ysd; 6964415cd19SGarrett Wollman struct ypresp_order ypro; 6974415cd19SGarrett Wollman struct ypreq_nokey yprnk; 6984415cd19SGarrett Wollman struct timeval tv; 6994415cd19SGarrett Wollman int r; 7004415cd19SGarrett Wollman 70106643071SBill Paul /* Sanity check */ 70206643071SBill Paul 70306643071SBill Paul if (indomain == NULL || !strlen(indomain) || 70406643071SBill Paul inmap == NULL || !strlen(inmap)) 70506643071SBill Paul return YPERR_BADARGS; 70606643071SBill Paul 7074415cd19SGarrett Wollman again: 7084415cd19SGarrett Wollman if( _yp_dobind(indomain, &ysd) != 0) 7094415cd19SGarrett Wollman return YPERR_DOMAIN; 7104415cd19SGarrett Wollman 7114415cd19SGarrett Wollman tv.tv_sec = _yplib_timeout; 7124415cd19SGarrett Wollman tv.tv_usec = 0; 7134415cd19SGarrett Wollman 7144415cd19SGarrett Wollman yprnk.domain = indomain; 7154415cd19SGarrett Wollman yprnk.map = inmap; 7164415cd19SGarrett Wollman 7174415cd19SGarrett Wollman bzero((char *)(char *)&ypro, sizeof ypro); 7184415cd19SGarrett Wollman 7194415cd19SGarrett Wollman r = clnt_call(ysd->dom_client, YPPROC_ORDER, 7204415cd19SGarrett Wollman xdr_ypreq_nokey, &yprnk, xdr_ypresp_order, &ypro, tv); 7214415cd19SGarrett Wollman if(r != RPC_SUCCESS) { 7224415cd19SGarrett Wollman clnt_perror(ysd->dom_client, "yp_order: clnt_call"); 7234415cd19SGarrett Wollman ysd->dom_vers = -1; 7244415cd19SGarrett Wollman goto again; 7254415cd19SGarrett Wollman } 7264415cd19SGarrett Wollman 7274415cd19SGarrett Wollman *outorder = ypro.ordernum; 7284415cd19SGarrett Wollman xdr_free(xdr_ypresp_order, (char *)&ypro); 7294415cd19SGarrett Wollman _yp_unbind(ysd); 7304415cd19SGarrett Wollman return ypprot_err(ypro.status); 7314415cd19SGarrett Wollman } 7324415cd19SGarrett Wollman 7334415cd19SGarrett Wollman int 7344415cd19SGarrett Wollman yp_master(indomain, inmap, outname) 7354415cd19SGarrett Wollman char *indomain; 7364415cd19SGarrett Wollman char *inmap; 7374415cd19SGarrett Wollman char **outname; 7384415cd19SGarrett Wollman { 7394415cd19SGarrett Wollman struct dom_binding *ysd; 7404415cd19SGarrett Wollman struct ypresp_master yprm; 7414415cd19SGarrett Wollman struct ypreq_nokey yprnk; 7424415cd19SGarrett Wollman struct timeval tv; 7434415cd19SGarrett Wollman int r; 7444415cd19SGarrett Wollman 74506643071SBill Paul /* Sanity check */ 74606643071SBill Paul 74706643071SBill Paul if (indomain == NULL || !strlen(indomain) || 74806643071SBill Paul inmap == NULL || !strlen(inmap)) 74906643071SBill Paul return YPERR_BADARGS; 7504415cd19SGarrett Wollman again: 7514415cd19SGarrett Wollman if( _yp_dobind(indomain, &ysd) != 0) 7524415cd19SGarrett Wollman return YPERR_DOMAIN; 7534415cd19SGarrett Wollman 7544415cd19SGarrett Wollman tv.tv_sec = _yplib_timeout; 7554415cd19SGarrett Wollman tv.tv_usec = 0; 7564415cd19SGarrett Wollman 7574415cd19SGarrett Wollman yprnk.domain = indomain; 7584415cd19SGarrett Wollman yprnk.map = inmap; 7594415cd19SGarrett Wollman 7604415cd19SGarrett Wollman bzero((char *)&yprm, sizeof yprm); 7614415cd19SGarrett Wollman 7624415cd19SGarrett Wollman r = clnt_call(ysd->dom_client, YPPROC_MASTER, 7634415cd19SGarrett Wollman xdr_ypreq_nokey, &yprnk, xdr_ypresp_master, &yprm, tv); 7644415cd19SGarrett Wollman if(r != RPC_SUCCESS) { 7654415cd19SGarrett Wollman clnt_perror(ysd->dom_client, "yp_master: clnt_call"); 7664415cd19SGarrett Wollman ysd->dom_vers = -1; 7674415cd19SGarrett Wollman goto again; 7684415cd19SGarrett Wollman } 7694415cd19SGarrett Wollman if( !(r=ypprot_err(yprm.status)) ) { 7704415cd19SGarrett Wollman *outname = (char *)strdup(yprm.master); 7714415cd19SGarrett Wollman } 7724415cd19SGarrett Wollman xdr_free(xdr_ypresp_master, (char *)&yprm); 7734415cd19SGarrett Wollman _yp_unbind(ysd); 7744415cd19SGarrett Wollman return r; 7754415cd19SGarrett Wollman } 776b9729ac2SBill Paul int 7774415cd19SGarrett Wollman yp_maplist(indomain, outmaplist) 7784415cd19SGarrett Wollman char *indomain; 7794415cd19SGarrett Wollman struct ypmaplist **outmaplist; 7804415cd19SGarrett Wollman { 7814415cd19SGarrett Wollman struct dom_binding *ysd; 7824415cd19SGarrett Wollman struct ypresp_maplist ypml; 7834415cd19SGarrett Wollman struct timeval tv; 7844415cd19SGarrett Wollman int r; 7854415cd19SGarrett Wollman 78606643071SBill Paul /* Sanity check */ 78706643071SBill Paul 78806643071SBill Paul if (indomain == NULL || !strlen(indomain)) 78906643071SBill Paul return YPERR_BADARGS; 79006643071SBill Paul 7914415cd19SGarrett Wollman again: 7924415cd19SGarrett Wollman if( _yp_dobind(indomain, &ysd) != 0) 7934415cd19SGarrett Wollman return YPERR_DOMAIN; 7944415cd19SGarrett Wollman 7954415cd19SGarrett Wollman tv.tv_sec = _yplib_timeout; 7964415cd19SGarrett Wollman tv.tv_usec = 0; 7974415cd19SGarrett Wollman 7984415cd19SGarrett Wollman bzero((char *)&ypml, sizeof ypml); 7994415cd19SGarrett Wollman 8004415cd19SGarrett Wollman r = clnt_call(ysd->dom_client, YPPROC_MAPLIST, 8014415cd19SGarrett Wollman xdr_domainname, indomain, xdr_ypresp_maplist, &ypml, tv); 8024415cd19SGarrett Wollman if (r != RPC_SUCCESS) { 8034415cd19SGarrett Wollman clnt_perror(ysd->dom_client, "yp_maplist: clnt_call"); 8044415cd19SGarrett Wollman ysd->dom_vers = -1; 8054415cd19SGarrett Wollman goto again; 8064415cd19SGarrett Wollman } 8074415cd19SGarrett Wollman *outmaplist = ypml.list; 8084415cd19SGarrett Wollman /* NO: xdr_free(xdr_ypresp_maplist, &ypml);*/ 8094415cd19SGarrett Wollman _yp_unbind(ysd); 8104415cd19SGarrett Wollman return ypprot_err(ypml.status); 8114415cd19SGarrett Wollman } 8124415cd19SGarrett Wollman 8134415cd19SGarrett Wollman char * 8144415cd19SGarrett Wollman yperr_string(incode) 8154415cd19SGarrett Wollman int incode; 8164415cd19SGarrett Wollman { 8174415cd19SGarrett Wollman static char err[80]; 8184415cd19SGarrett Wollman 8194415cd19SGarrett Wollman switch(incode) { 8204415cd19SGarrett Wollman case 0: 8214415cd19SGarrett Wollman return "Success"; 8224415cd19SGarrett Wollman case YPERR_BADARGS: 8234415cd19SGarrett Wollman return "Request arguments bad"; 8244415cd19SGarrett Wollman case YPERR_RPC: 8254415cd19SGarrett Wollman return "RPC failure"; 8264415cd19SGarrett Wollman case YPERR_DOMAIN: 8274415cd19SGarrett Wollman return "Can't bind to server which serves this domain"; 8284415cd19SGarrett Wollman case YPERR_MAP: 8294415cd19SGarrett Wollman return "No such map in server's domain"; 8304415cd19SGarrett Wollman case YPERR_KEY: 8314415cd19SGarrett Wollman return "No such key in map"; 8324415cd19SGarrett Wollman case YPERR_YPERR: 8334415cd19SGarrett Wollman return "YP server error"; 8344415cd19SGarrett Wollman case YPERR_RESRC: 8354415cd19SGarrett Wollman return "Local resource allocation failure"; 8364415cd19SGarrett Wollman case YPERR_NOMORE: 8374415cd19SGarrett Wollman return "No more records in map database"; 8384415cd19SGarrett Wollman case YPERR_PMAP: 8394415cd19SGarrett Wollman return "Can't communicate with portmapper"; 8404415cd19SGarrett Wollman case YPERR_YPBIND: 8414415cd19SGarrett Wollman return "Can't communicate with ypbind"; 8424415cd19SGarrett Wollman case YPERR_YPSERV: 8434415cd19SGarrett Wollman return "Can't communicate with ypserv"; 8444415cd19SGarrett Wollman case YPERR_NODOM: 8454415cd19SGarrett Wollman return "Local domain name not set"; 8464415cd19SGarrett Wollman case YPERR_BADDB: 8474415cd19SGarrett Wollman return "Server data base is bad"; 8484415cd19SGarrett Wollman case YPERR_VERS: 8494415cd19SGarrett Wollman return "YP server version mismatch - server can't supply service."; 8504415cd19SGarrett Wollman case YPERR_ACCESS: 8514415cd19SGarrett Wollman return "Access violation"; 8524415cd19SGarrett Wollman case YPERR_BUSY: 8534415cd19SGarrett Wollman return "Database is busy"; 8544415cd19SGarrett Wollman } 8554415cd19SGarrett Wollman sprintf(err, "YP unknown error %d\n", incode); 8564415cd19SGarrett Wollman return err; 8574415cd19SGarrett Wollman } 8584415cd19SGarrett Wollman 8594415cd19SGarrett Wollman int 8604415cd19SGarrett Wollman ypprot_err(incode) 8614415cd19SGarrett Wollman unsigned int incode; 8624415cd19SGarrett Wollman { 8634415cd19SGarrett Wollman switch(incode) { 8644415cd19SGarrett Wollman case YP_TRUE: 8654415cd19SGarrett Wollman return 0; 8664415cd19SGarrett Wollman case YP_FALSE: 8674415cd19SGarrett Wollman return YPERR_YPBIND; 8684415cd19SGarrett Wollman case YP_NOMORE: 8694415cd19SGarrett Wollman return YPERR_NOMORE; 8704415cd19SGarrett Wollman case YP_NOMAP: 8714415cd19SGarrett Wollman return YPERR_MAP; 8724415cd19SGarrett Wollman case YP_NODOM: 8734415cd19SGarrett Wollman return YPERR_NODOM; 8744415cd19SGarrett Wollman case YP_NOKEY: 8754415cd19SGarrett Wollman return YPERR_KEY; 8764415cd19SGarrett Wollman case YP_BADOP: 8774415cd19SGarrett Wollman return YPERR_YPERR; 8784415cd19SGarrett Wollman case YP_BADDB: 8794415cd19SGarrett Wollman return YPERR_BADDB; 8804415cd19SGarrett Wollman case YP_YPERR: 8814415cd19SGarrett Wollman return YPERR_YPERR; 8824415cd19SGarrett Wollman case YP_BADARGS: 8834415cd19SGarrett Wollman return YPERR_BADARGS; 8844415cd19SGarrett Wollman case YP_VERS: 8854415cd19SGarrett Wollman return YPERR_VERS; 8864415cd19SGarrett Wollman } 8874415cd19SGarrett Wollman return YPERR_YPERR; 8884415cd19SGarrett Wollman } 8894415cd19SGarrett Wollman 8904415cd19SGarrett Wollman int 8914415cd19SGarrett Wollman _yp_check(dom) 8924415cd19SGarrett Wollman char **dom; 8934415cd19SGarrett Wollman { 8944415cd19SGarrett Wollman char *unused; 8954415cd19SGarrett Wollman 8964415cd19SGarrett Wollman if( _yp_domain[0]=='\0' ) 8974415cd19SGarrett Wollman if( yp_get_default_domain(&unused) ) 8984415cd19SGarrett Wollman return 0; 8994415cd19SGarrett Wollman 9004415cd19SGarrett Wollman if(dom) 9014415cd19SGarrett Wollman *dom = _yp_domain; 9024415cd19SGarrett Wollman 9034415cd19SGarrett Wollman if( yp_bind(_yp_domain)==0 ) 9044415cd19SGarrett Wollman return 1; 9054415cd19SGarrett Wollman return 0; 9064415cd19SGarrett Wollman } 907