Oh GACK! src-clean doesn't quite work that easily since cleandist rebuilds the
[unix-history] / lib / librpc / rpc / getrpcent.c
CommitLineData
15637ed4
RG
1/*
2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3 * unrestricted use provided that this legend is included on all tape
4 * media and as a part of the software program in whole or part. Users
5 * may copy or modify Sun RPC without charge, but are not authorized
6 * to license or distribute it to anyone else except as part of a product or
d2bc008e
C
7 * program developed by the user or with the express written consent of
8 * Sun Microsystems, Inc.
9 *
15637ed4
RG
10 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
11 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
12 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
d2bc008e 13 *
15637ed4
RG
14 * Sun RPC is provided with no support and without any obligation on the
15 * part of Sun Microsystems, Inc. to assist in its use, correction,
16 * modification or enhancement.
d2bc008e 17 *
15637ed4
RG
18 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
19 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
20 * OR ANY PART THEREOF.
d2bc008e 21 *
15637ed4
RG
22 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
23 * or profits or other special, indirect and consequential damages, even if
24 * Sun has been advised of the possibility of such damages.
d2bc008e 25 *
15637ed4
RG
26 * Sun Microsystems, Inc.
27 * 2550 Garcia Avenue
28 * Mountain View, California 94043
29 */
30
d2bc008e
C
31#if defined(LIBC_SCCS) && !defined(lint)
32/*static char *sccsid = "from: @(#)getrpcent.c 1.14 91/03/11 Copyr 1984 Sun Micro";*/
33static char *rcsid = "$Id: getrpcent.c,v 1.7 1993/08/26 00:53:23 jtc Exp $";
34#endif
35
15637ed4 36/*
d2bc008e 37 * Copyright (c) 1984 by Sun Microsystems, Inc.
15637ed4
RG
38 */
39
40#include <stdio.h>
41#include <sys/types.h>
d2bc008e 42#include <string.h>
15637ed4 43#include <rpc/rpc.h>
d2bc008e
C
44#ifdef YP
45#include <rpcsvc/yp_prot.h>
46#include <rpcsvc/ypclnt.h>
47#endif
15637ed4
RG
48
49/*
50 * Internet version.
51 */
52struct rpcdata {
53 FILE *rpcf;
15637ed4
RG
54 int stayopen;
55#define MAXALIASES 35
56 char *rpc_aliases[MAXALIASES];
57 struct rpcent rpc;
58 char line[BUFSIZ+1];
d2bc008e 59#ifdef YP
15637ed4 60 char *domain;
d2bc008e
C
61 char *current;
62 int currentlen;
63#endif
64} *rpcdata;
65
66#ifdef YP
67static int __yp_nomap = 0;
68#endif /* YP */
15637ed4
RG
69
70static struct rpcent *interpret();
71struct hostent *gethostent();
72char *inet_ntoa();
15637ed4
RG
73
74static char RPCDB[] = "/etc/rpc";
75
76static struct rpcdata *
77_rpcdata()
78{
79 register struct rpcdata *d = rpcdata;
80
81 if (d == 0) {
82 d = (struct rpcdata *)calloc(1, sizeof (struct rpcdata));
83 rpcdata = d;
84 }
85 return (d);
86}
87
88struct rpcent *
89getrpcbynumber(number)
90 register int number;
91{
92 register struct rpcdata *d = _rpcdata();
93 register struct rpcent *p;
d2bc008e 94#ifdef YP
15637ed4 95 int reason;
d2bc008e
C
96 char adrstr[16];
97#endif
15637ed4
RG
98
99 if (d == 0)
100 return (0);
d2bc008e
C
101#ifdef YP
102 if (!__yp_nomap && _yp_check(&d->domain)) {
103 sprintf(adrstr, "%d", number);
104 reason = yp_match(d->domain, "rpc.bynumber", adrstr, strlen(adrstr),
105 &d->current, &d->currentlen);
106 switch(reason) {
107 case 0:
108 break;
109 case YPERR_MAP:
110 __yp_nomap = 1;
111 goto no_yp;
112 break;
113 default:
114 return(0);
115 break;
116 }
117 d->current[d->currentlen] = '\0';
118 p = interpret(d->current, d->currentlen);
119 (void) free(d->current);
120 return p;
121 }
122no_yp:
123#endif /* YP */
15637ed4
RG
124 setrpcent(0);
125 while (p = getrpcent()) {
126 if (p->r_number == number)
127 break;
128 }
129 endrpcent();
130 return (p);
131}
132
133struct rpcent *
134getrpcbyname(name)
135 char *name;
136{
137 struct rpcent *rpc;
138 char **rp;
139
140 setrpcent(0);
d2bc008e 141 while (rpc = getrpcent()) {
15637ed4
RG
142 if (strcmp(rpc->r_name, name) == 0)
143 return (rpc);
144 for (rp = rpc->r_aliases; *rp != NULL; rp++) {
145 if (strcmp(*rp, name) == 0)
146 return (rpc);
147 }
148 }
149 endrpcent();
150 return (NULL);
151}
152
d2bc008e 153void
15637ed4
RG
154setrpcent(f)
155 int f;
156{
157 register struct rpcdata *d = _rpcdata();
158
159 if (d == 0)
160 return;
d2bc008e
C
161#ifdef YP
162 if (!__yp_nomap && _yp_check(NULL)) {
163 if (d->current)
164 free(d->current);
165 d->current = NULL;
166 d->currentlen = 0;
167 return;
168 }
169 __yp_nomap = 0;
170#endif /* YP */
15637ed4
RG
171 if (d->rpcf == NULL)
172 d->rpcf = fopen(RPCDB, "r");
173 else
174 rewind(d->rpcf);
15637ed4
RG
175 d->stayopen |= f;
176}
177
d2bc008e 178void
15637ed4
RG
179endrpcent()
180{
181 register struct rpcdata *d = _rpcdata();
182
183 if (d == 0)
184 return;
d2bc008e
C
185#ifdef YP
186 if (!__yp_nomap && _yp_check(NULL)) {
187 if (d->current && !d->stayopen)
188 free(d->current);
189 d->current = NULL;
190 d->currentlen = 0;
191 return;
192 }
193 __yp_nomap = 0;
194#endif /* YP */
15637ed4
RG
195 if (d->rpcf && !d->stayopen) {
196 fclose(d->rpcf);
197 d->rpcf = NULL;
198 }
199}
200
201struct rpcent *
202getrpcent()
203{
204 struct rpcent *hp;
205 int reason;
d2bc008e
C
206 register struct rpcdata *d = _rpcdata();
207#ifdef YP
15637ed4
RG
208 char *key = NULL, *val = NULL;
209 int keylen, vallen;
d2bc008e 210#endif
15637ed4
RG
211
212 if (d == 0)
213 return(NULL);
d2bc008e
C
214#ifdef YP
215 if (!__yp_nomap && _yp_check(&d->domain)) {
216 if (d->current == NULL && d->currentlen == 0) {
217 reason = yp_first(d->domain, "rpc.bynumber",
218 &d->current, &d->currentlen,
219 &val, &vallen);
220 } else {
221 reason = yp_next(d->domain, "rpc.bynumber",
222 d->current, d->currentlen,
223 &d->current, &d->currentlen,
224 &val, &vallen);
225 }
226 switch(reason) {
227 case 0:
228 break;
229 case YPERR_MAP:
230 __yp_nomap = 1;
231 goto no_yp;
232 break;
233 default:
234 return(0);
235 break;
236 }
237 val[vallen] = '\0';
238 hp = interpret(val, vallen);
239 (void) free(val);
240 return hp;
241 }
242no_yp:
243#endif /* YP */
15637ed4
RG
244 if (d->rpcf == NULL && (d->rpcf = fopen(RPCDB, "r")) == NULL)
245 return (NULL);
d2bc008e 246 if (fgets(d->line, BUFSIZ, d->rpcf) == NULL)
15637ed4 247 return (NULL);
d2bc008e 248 return (interpret(d->line, strlen(d->line)));
15637ed4
RG
249}
250
251static struct rpcent *
252interpret(val, len)
d2bc008e
C
253 char *val;
254 int len;
15637ed4
RG
255{
256 register struct rpcdata *d = _rpcdata();
257 char *p;
258 register char *cp, **q;
259
260 if (d == 0)
d2bc008e
C
261 return (0);
262 (void) strncpy(d->line, val, len);
15637ed4
RG
263 p = d->line;
264 d->line[len] = '\n';
265 if (*p == '#')
266 return (getrpcent());
d2bc008e 267 cp = strpbrk(p, "#\n");
15637ed4 268 if (cp == NULL)
d2bc008e 269 return (getrpcent());
15637ed4 270 *cp = '\0';
d2bc008e 271 cp = strpbrk(p, " \t");
15637ed4 272 if (cp == NULL)
d2bc008e 273 return (getrpcent());
15637ed4
RG
274 *cp++ = '\0';
275 /* THIS STUFF IS INTERNET SPECIFIC */
276 d->rpc.r_name = d->line;
277 while (*cp == ' ' || *cp == '\t')
278 cp++;
279 d->rpc.r_number = atoi(cp);
280 q = d->rpc.r_aliases = d->rpc_aliases;
d2bc008e
C
281 cp = strpbrk(cp, " \t");
282 if (cp != NULL)
15637ed4 283 *cp++ = '\0';
15637ed4
RG
284 while (cp && *cp) {
285 if (*cp == ' ' || *cp == '\t') {
286 cp++;
287 continue;
288 }
289 if (q < &(d->rpc_aliases[MAXALIASES - 1]))
290 *q++ = cp;
d2bc008e 291 cp = strpbrk(cp, " \t");
15637ed4
RG
292 if (cp != NULL)
293 *cp++ = '\0';
15637ed4
RG
294 }
295 *q = NULL;
296 return (&d->rpc);
297}
d2bc008e 298