rpcb_clnt.c revision 1.4 1 /* $NetBSD: rpcb_clnt.c,v 1.4 2000/07/06 03:10:35 christos Exp $ */
2
3 /*
4 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
5 * unrestricted use provided that this legend is included on all tape
6 * media and as a part of the software program in whole or part. Users
7 * may copy or modify Sun RPC without charge, but are not authorized
8 * to license or distribute it to anyone else except as part of a product or
9 * program developed by the user.
10 *
11 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
12 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
13 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
14 *
15 * Sun RPC is provided with no support and without any obligation on the
16 * part of Sun Microsystems, Inc. to assist in its use, correction,
17 * modification or enhancement.
18 *
19 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
20 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
21 * OR ANY PART THEREOF.
22 *
23 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
24 * or profits or other special, indirect and consequential damages, even if
25 * Sun has been advised of the possibility of such damages.
26 *
27 * Sun Microsystems, Inc.
28 * 2550 Garcia Avenue
29 * Mountain View, California 94043
30 */
31 /*
32 * Copyright (c) 1986-1991 by Sun Microsystems Inc.
33 */
34
35 /* #ident "@(#)rpcb_clnt.c 1.27 94/04/24 SMI" */
36
37
38 #if 0
39 #if !defined(lint) && defined(SCCSIDS)
40 static char sccsid[] = "@(#)rpcb_clnt.c 1.30 89/06/21 Copyr 1988 Sun Micro";
41 #endif
42 #endif
43
44 /*
45 * rpcb_clnt.c
46 * interface to rpcbind rpc service.
47 *
48 * Copyright (C) 1988, Sun Microsystems, Inc.
49 */
50
51 #include "namespace.h"
52 #include "reentrant.h"
53 #include <sys/types.h>
54 #include <sys/socket.h>
55 #include <sys/un.h>
56 #include <sys/utsname.h>
57 #include <rpc/rpc.h>
58 #include <rpc/rpcb_prot.h>
59 #include <rpc/nettype.h>
60 #include <netconfig.h>
61 #ifdef PORTMAP
62 #include <netinet/in.h> /* FOR IPPROTO_TCP/UDP definitions */
63 #include <rpc/pmap_prot.h>
64 #endif
65 #include <stdio.h>
66 #include <errno.h>
67 #include <stdlib.h>
68 #include <string.h>
69 #include <unistd.h>
70 #include <netdb.h>
71 #include <syslog.h>
72
73 #include "rpc_com.h"
74
75 #ifdef __weak_alias
76 __weak_alias(rpcb_set,_rpcb_set)
77 __weak_alias(rpcb_unset,_rpcb_unset)
78 __weak_alias(rpcb_getmaps,_rpcb_getmaps)
79 __weak_alias(rpcb_rmtcall,_rpcb_rmtcall)
80 __weak_alias(rpcb_gettime,_rpcb_gettime)
81 __weak_alias(rpcb_taddr2uaddr,_rpcb_taddr2uaddr)
82 __weak_alias(rpcb_uaddr2taddr,_rpcb_uaddr2taddr)
83 #endif
84
85 static struct timeval tottimeout = { 60, 0 };
86 static const struct timeval rmttimeout = { 3, 0 };
87
88 extern bool_t xdr_wrapstring __P((XDR *, char **));
89
90 static const char nullstring[] = "\000";
91
92 #define CACHESIZE 6
93
94 struct address_cache {
95 char *ac_host;
96 char *ac_netid;
97 char *ac_uaddr;
98 struct netbuf *ac_taddr;
99 struct address_cache *ac_next;
100 };
101
102 static struct address_cache *front;
103 static int cachesize;
104
105 #define CLCR_GET_RPCB_TIMEOUT 1
106 #define CLCR_SET_RPCB_TIMEOUT 2
107
108
109 extern int __rpc_lowvers;
110
111 static struct address_cache *check_cache __P((const char *, const char *));
112 static void delete_cache __P((struct netbuf *));
113 static void add_cache __P((const char *, const char *, struct netbuf *,
114 char *));
115 static CLIENT *getclnthandle __P((const char *, const struct netconfig *,
116 char **));
117 static CLIENT *local_rpcb __P((void));
118 static struct netbuf *got_entry __P((rpcb_entry_list_ptr,
119 const struct netconfig *));
120
121 /*
122 * This routine adjusts the timeout used for calls to the remote rpcbind.
123 * Also, this routine can be used to set the use of portmapper version 2
124 * only when doing rpc_broadcasts
125 * These are private routines that may not be provided in future releases.
126 */
127 bool_t
128 __rpc_control(request, info)
129 int request;
130 void *info;
131 {
132 switch (request) {
133 case CLCR_GET_RPCB_TIMEOUT:
134 *(struct timeval *)info = tottimeout;
135 break;
136 case CLCR_SET_RPCB_TIMEOUT:
137 tottimeout = *(struct timeval *)info;
138 break;
139 case CLCR_SET_LOWVERS:
140 __rpc_lowvers = *(int *)info;
141 break;
142 case CLCR_GET_LOWVERS:
143 *(int *)info = __rpc_lowvers;
144 break;
145 default:
146 return (FALSE);
147 }
148 return (TRUE);
149 }
150
151 /*
152 * It might seem that a reader/writer lock would be more reasonable here.
153 * However because getclnthandle(), the only user of the cache functions,
154 * may do a delete_cache() operation if a check_cache() fails to return an
155 * address useful to clnt_tli_create(), we may as well use a mutex.
156 */
157 /*
158 * As it turns out, if the cache lock is *not* a reader/writer lock, we will
159 * block all clnt_create's if we are trying to connect to a host that's down,
160 * since the lock will be held all during that time.
161 */
162 #ifdef __REENT
163 extern rwlock_t rpcbaddr_cache_lock;
164 #endif
165
166 /*
167 * The routines check_cache(), add_cache(), delete_cache() manage the
168 * cache of rpcbind addresses for (host, netid).
169 */
170
171 static struct address_cache *
172 check_cache(host, netid)
173 const char *host, *netid;
174 {
175 struct address_cache *cptr;
176
177 /* READ LOCK HELD ON ENTRY: rpcbaddr_cache_lock */
178
179 for (cptr = front; cptr != NULL; cptr = cptr->ac_next) {
180 if (!strcmp(cptr->ac_host, host) &&
181 !strcmp(cptr->ac_netid, netid)) {
182 #ifdef ND_DEBUG
183 fprintf(stderr, "Found cache entry for %s: %s\n",
184 host, netid);
185 #endif
186 return (cptr);
187 }
188 }
189 return ((struct address_cache *) NULL);
190 }
191
192 static void
193 delete_cache(addr)
194 struct netbuf *addr;
195 {
196 struct address_cache *cptr, *prevptr = NULL;
197
198 /* WRITE LOCK HELD ON ENTRY: rpcbaddr_cache_lock */
199 for (cptr = front; cptr != NULL; cptr = cptr->ac_next) {
200 if (!memcmp(cptr->ac_taddr->buf, addr->buf, addr->len)) {
201 free(cptr->ac_host);
202 free(cptr->ac_netid);
203 free(cptr->ac_taddr->buf);
204 free(cptr->ac_taddr);
205 if (cptr->ac_uaddr)
206 free(cptr->ac_uaddr);
207 if (prevptr)
208 prevptr->ac_next = cptr->ac_next;
209 else
210 front = cptr->ac_next;
211 free(cptr);
212 cachesize--;
213 break;
214 }
215 prevptr = cptr;
216 }
217 }
218
219 static void
220 add_cache(host, netid, taddr, uaddr)
221 const char *host, *netid;
222 char *uaddr;
223 struct netbuf *taddr;
224 {
225 struct address_cache *ad_cache, *cptr, *prevptr;
226
227 ad_cache = (struct address_cache *)
228 malloc(sizeof (struct address_cache));
229 if (!ad_cache) {
230 return;
231 }
232 ad_cache->ac_host = strdup(host);
233 ad_cache->ac_netid = strdup(netid);
234 ad_cache->ac_uaddr = uaddr ? strdup(uaddr) : NULL;
235 ad_cache->ac_taddr = (struct netbuf *)malloc(sizeof (struct netbuf));
236 if (!ad_cache->ac_host || !ad_cache->ac_netid || !ad_cache->ac_taddr ||
237 (uaddr && !ad_cache->ac_uaddr)) {
238 return;
239 }
240 ad_cache->ac_taddr->len = ad_cache->ac_taddr->maxlen = taddr->len;
241 ad_cache->ac_taddr->buf = (char *) malloc(taddr->len);
242 if (ad_cache->ac_taddr->buf == NULL) {
243 return;
244 }
245 memcpy(ad_cache->ac_taddr->buf, taddr->buf, taddr->len);
246 #ifdef ND_DEBUG
247 fprintf(stderr, "Added to cache: %s : %s\n", host, netid);
248 #endif
249
250 /* VARIABLES PROTECTED BY rpcbaddr_cache_lock: cptr */
251
252 rwlock_wrlock(&rpcbaddr_cache_lock);
253 if (cachesize < CACHESIZE) {
254 ad_cache->ac_next = front;
255 front = ad_cache;
256 cachesize++;
257 } else {
258 /* Free the last entry */
259 cptr = front;
260 prevptr = NULL;
261 while (cptr->ac_next) {
262 prevptr = cptr;
263 cptr = cptr->ac_next;
264 }
265
266 #ifdef ND_DEBUG
267 fprintf(stderr, "Deleted from cache: %s : %s\n",
268 cptr->ac_host, cptr->ac_netid);
269 #endif
270 free(cptr->ac_host);
271 free(cptr->ac_netid);
272 free(cptr->ac_taddr->buf);
273 free(cptr->ac_taddr);
274 if (cptr->ac_uaddr)
275 free(cptr->ac_uaddr);
276
277 if (prevptr) {
278 prevptr->ac_next = NULL;
279 ad_cache->ac_next = front;
280 front = ad_cache;
281 } else {
282 front = ad_cache;
283 ad_cache->ac_next = NULL;
284 }
285 free(cptr);
286 }
287 rwlock_unlock(&rpcbaddr_cache_lock);
288 }
289
290 /*
291 * This routine will return a client handle that is connected to the
292 * rpcbind. Returns NULL on error and free's everything.
293 */
294 static CLIENT *
295 getclnthandle(host, nconf, targaddr)
296 const char *host;
297 const struct netconfig *nconf;
298 char **targaddr;
299 {
300 CLIENT *client;
301 struct netbuf *addr, taddr;
302 struct netbuf addr_to_delete;
303 struct __rpc_sockinfo si;
304 struct addrinfo hints, *res, *tres;
305 struct address_cache *ad_cache;
306 char *tmpaddr;
307
308 /* VARIABLES PROTECTED BY rpcbaddr_cache_lock: ad_cache */
309
310 /* Get the address of the rpcbind. Check cache first */
311 addr_to_delete.len = 0;
312 rwlock_rdlock(&rpcbaddr_cache_lock);
313 ad_cache = check_cache(host, nconf->nc_netid);
314 if (ad_cache != NULL) {
315 addr = ad_cache->ac_taddr;
316 client = clnt_tli_create(RPC_ANYFD, nconf, addr,
317 (rpcprog_t)RPCBPROG, (rpcvers_t)RPCBVERS4, 0, 0);
318 if (client != NULL) {
319 if (targaddr)
320 *targaddr = ad_cache->ac_uaddr;
321 rwlock_unlock(&rpcbaddr_cache_lock);
322 return (client);
323 }
324 addr_to_delete.len = addr->len;
325 addr_to_delete.buf = (char *)malloc(addr->len);
326 if (addr_to_delete.buf == NULL) {
327 addr_to_delete.len = 0;
328 } else {
329 memcpy(addr_to_delete.buf, addr->buf, addr->len);
330 }
331 }
332 rwlock_unlock(&rpcbaddr_cache_lock);
333 if (addr_to_delete.len != 0) {
334 /*
335 * Assume this may be due to cache data being
336 * outdated
337 */
338 rwlock_wrlock(&rpcbaddr_cache_lock);
339 delete_cache(&addr_to_delete);
340 rwlock_unlock(&rpcbaddr_cache_lock);
341 free(addr_to_delete.buf);
342 }
343 if (!__rpc_nconf2sockinfo(nconf, &si)) {
344 rpc_createerr.cf_stat = RPC_UNKNOWNPROTO;
345 return NULL;
346 }
347
348 memset(&hints, 0, sizeof hints);
349 hints.ai_family = si.si_af;
350 hints.ai_socktype = si.si_socktype;
351 hints.ai_protocol = si.si_proto;
352
353 #ifdef CLNT_DEBUG
354 printf("trying netid %s family %d proto %d socktype %d\n",
355 nconf->nc_netid, si.si_af, si.si_proto, si.si_socktype);
356 #endif
357
358 if (getaddrinfo(host, "sunrpc", &hints, &res) != 0) {
359 rpc_createerr.cf_stat = RPC_UNKNOWNHOST;
360 return NULL;
361 }
362
363 for (tres = res; tres != NULL; tres = tres->ai_next) {
364 taddr.buf = tres->ai_addr;
365 taddr.len = taddr.maxlen = tres->ai_addrlen;
366
367 #ifdef ND_DEBUG
368 {
369 char *ua;
370
371 ua = taddr2uaddr(nconf, &taddr);
372 fprintf(stderr, "Got it [%s]\n", ua);
373 free(ua);
374 }
375 #endif
376
377 #ifdef ND_DEBUG
378 {
379 int i;
380
381 fprintf(stderr, "\tnetbuf len = %d, maxlen = %d\n",
382 taddr.len, taddr.maxlen);
383 fprintf(stderr, "\tAddress is ");
384 for (i = 0; i < taddr.len; i++)
385 fprintf(stderr, "%u.", ((char *)(taddr.buf))[i]);
386 fprintf(stderr, "\n");
387 }
388 #endif
389 client = clnt_tli_create(RPC_ANYFD, nconf, &taddr,
390 (rpcprog_t)RPCBPROG, (rpcvers_t)RPCBVERS4, 0, 0);
391 #ifdef ND_DEBUG
392 if (! client) {
393 clnt_pcreateerror("rpcbind clnt interface");
394 }
395 #endif
396
397 if (client) {
398 tmpaddr = targaddr ? taddr2uaddr(nconf, &taddr) : NULL;
399 add_cache(host, nconf->nc_netid, &taddr, tmpaddr);
400 if (targaddr)
401 *targaddr = tmpaddr;
402 break;
403 }
404 }
405 freeaddrinfo(res);
406 return (client);
407 }
408
409 /* XXX */
410 #define IN4_LOCALHOST_STRING "127.0.0.1"
411 #define IN6_LOCALHOST_STRING "::1"
412
413 /*
414 * This routine will return a client handle that is connected to the local
415 * rpcbind. Returns NULL on error and free's everything.
416 */
417 static CLIENT *
418 local_rpcb()
419 {
420 CLIENT *client;
421 static struct netconfig *loopnconf;
422 static char *hostname;
423 #ifdef __REENT
424 extern mutex_t loopnconf_lock;
425 #endif
426 int sock;
427 size_t tsize;
428 struct netbuf nbuf;
429 struct sockaddr_un sun;
430
431 /*
432 * Try connecting to the local rpcbind through a local socket
433 * first. If this doesn't work, try all transports defined in
434 * the netconfig file.
435 */
436 memset(&sun, 0, sizeof sun);
437 sock = socket(AF_LOCAL, SOCK_STREAM, 0);
438 if (sock < 0)
439 goto try_nconf;
440 sun.sun_family = AF_LOCAL;
441 strcpy(sun.sun_path, _PATH_RPCBINDSOCK);
442 nbuf.len = sun.sun_len = SUN_LEN(&sun);
443 nbuf.maxlen = sizeof (struct sockaddr_un);
444 nbuf.buf = &sun;
445
446 tsize = __rpc_get_t_size(AF_LOCAL, 0, 0);
447 client = clnt_vc_create(sock, &nbuf, (rpcprog_t)RPCBPROG,
448 (rpcvers_t)RPCBVERS, tsize, tsize);
449
450 if (client != NULL)
451 return client;
452
453 try_nconf:
454
455 /* VARIABLES PROTECTED BY loopnconf_lock: loopnconf */
456 mutex_lock(&loopnconf_lock);
457 if (loopnconf == NULL) {
458 struct netconfig *nconf, *tmpnconf = NULL;
459 void *nc_handle;
460 int fd;
461
462 nc_handle = setnetconfig();
463 if (nc_handle == NULL) {
464 /* fails to open netconfig file */
465 syslog (LOG_ERR, "rpc: failed to open " NETCONFIG);
466 rpc_createerr.cf_stat = RPC_UNKNOWNPROTO;
467 mutex_unlock(&loopnconf_lock);
468 return (NULL);
469 }
470 while ((nconf = getnetconfig(nc_handle)) != NULL) {
471 #ifdef INET6
472 if ((strcmp(nconf->nc_protofmly, NC_INET6) == 0 ||
473 #else
474 if (
475 #endif
476 strcmp(nconf->nc_protofmly, NC_INET) == 0) &&
477 (nconf->nc_semantics == NC_TPI_COTS ||
478 nconf->nc_semantics == NC_TPI_COTS_ORD)) {
479 fd = __rpc_nconf2fd(nconf);
480 /*
481 * Can't create a socket, assume that
482 * this family isn't configured in the kernel.
483 */
484 if (fd < 0)
485 continue;
486 close(fd);
487 tmpnconf = nconf;
488 if (!strcmp(nconf->nc_protofmly, NC_INET))
489 hostname = IN4_LOCALHOST_STRING;
490 else
491 hostname = IN6_LOCALHOST_STRING;
492 }
493 }
494 if (tmpnconf == NULL) {
495 rpc_createerr.cf_stat = RPC_UNKNOWNPROTO;
496 mutex_unlock(&loopnconf_lock);
497 return (NULL);
498 }
499 loopnconf = getnetconfigent(tmpnconf->nc_netid);
500 /* loopnconf is never freed */
501 endnetconfig(nc_handle);
502 }
503 mutex_unlock(&loopnconf_lock);
504 client = getclnthandle(hostname, loopnconf, NULL);
505 return (client);
506 }
507
508 /*
509 * Set a mapping between program, version and address.
510 * Calls the rpcbind service to do the mapping.
511 */
512 bool_t
513 rpcb_set(program, version, nconf, address)
514 rpcprog_t program;
515 rpcvers_t version;
516 const struct netconfig *nconf; /* Network structure of transport */
517 const struct netbuf *address; /* Services netconfig address */
518 {
519 CLIENT *client;
520 bool_t rslt = FALSE;
521 RPCB parms;
522 char uidbuf[32];
523
524 /* parameter checking */
525 if (nconf == NULL) {
526 rpc_createerr.cf_stat = RPC_UNKNOWNPROTO;
527 return (FALSE);
528 }
529 if (address == NULL) {
530 rpc_createerr.cf_stat = RPC_UNKNOWNADDR;
531 return (FALSE);
532 }
533 client = local_rpcb();
534 if (! client) {
535 return (FALSE);
536 }
537
538 /* convert to universal */
539 /*LINTED const castaway*/
540 parms.r_addr = taddr2uaddr((struct netconfig *) nconf,
541 (struct netbuf *)address);
542 if (!parms.r_addr) {
543 rpc_createerr.cf_stat = RPC_N2AXLATEFAILURE;
544 return (FALSE); /* no universal address */
545 }
546 parms.r_prog = program;
547 parms.r_vers = version;
548 parms.r_netid = nconf->nc_netid;
549 /*
550 * Though uid is not being used directly, we still send it for
551 * completeness. For non-unix platforms, perhaps some other
552 * string or an empty string can be sent.
553 */
554 (void) snprintf(uidbuf, sizeof uidbuf, "%d", geteuid());
555 parms.r_owner = uidbuf;
556
557 CLNT_CALL(client, (rpcproc_t)RPCBPROC_SET, (xdrproc_t) xdr_rpcb,
558 (char *)(void *)&parms, (xdrproc_t) xdr_bool,
559 (char *)(void *)&rslt, tottimeout);
560
561 CLNT_DESTROY(client);
562 free(parms.r_addr);
563 return (rslt);
564 }
565
566 /*
567 * Remove the mapping between program, version and netbuf address.
568 * Calls the rpcbind service to do the un-mapping.
569 * If netbuf is NULL, unset for all the transports, otherwise unset
570 * only for the given transport.
571 */
572 bool_t
573 rpcb_unset(program, version, nconf)
574 rpcprog_t program;
575 rpcvers_t version;
576 const struct netconfig *nconf;
577 {
578 CLIENT *client;
579 bool_t rslt = FALSE;
580 RPCB parms;
581 char uidbuf[32];
582
583 client = local_rpcb();
584 if (! client) {
585 return (FALSE);
586 }
587
588 parms.r_prog = program;
589 parms.r_vers = version;
590 if (nconf)
591 parms.r_netid = nconf->nc_netid;
592 else {
593 /*LINTED const castaway*/
594 parms.r_netid = (char *) &nullstring[0]; /* unsets all */
595 }
596 /*LINTED const castaway*/
597 parms.r_addr = (char *) &nullstring[0];
598 (void) snprintf(uidbuf, sizeof uidbuf, "%d", geteuid());
599 parms.r_owner = uidbuf;
600
601 CLNT_CALL(client, (rpcproc_t)RPCBPROC_UNSET, (xdrproc_t) xdr_rpcb,
602 (char *)(void *)&parms, (xdrproc_t) xdr_bool,
603 (char *)(void *)&rslt, tottimeout);
604
605 CLNT_DESTROY(client);
606 return (rslt);
607 }
608
609 /*
610 * From the merged list, find the appropriate entry
611 */
612 static struct netbuf *
613 got_entry(relp, nconf)
614 rpcb_entry_list_ptr relp;
615 const struct netconfig *nconf;
616 {
617 struct netbuf *na = NULL;
618 rpcb_entry_list_ptr sp;
619 rpcb_entry *rmap;
620
621 for (sp = relp; sp != NULL; sp = sp->rpcb_entry_next) {
622 rmap = &sp->rpcb_entry_map;
623 if ((strcmp(nconf->nc_proto, rmap->r_nc_proto) == 0) &&
624 (strcmp(nconf->nc_protofmly, rmap->r_nc_protofmly) == 0) &&
625 (nconf->nc_semantics == rmap->r_nc_semantics) &&
626 (rmap->r_maddr != NULL) && (rmap->r_maddr[0] != NULL)) {
627 na = uaddr2taddr(nconf, rmap->r_maddr);
628 #ifdef ND_DEBUG
629 fprintf(stderr, "\tRemote address is [%s].\n",
630 rmap->r_maddr);
631 if (!na)
632 fprintf(stderr,
633 "\tCouldn't resolve remote address!\n");
634 #endif
635 break;
636 }
637 }
638 return (na);
639 }
640
641 /*
642 * An internal function which optimizes rpcb_getaddr function. It also
643 * returns the client handle that it uses to contact the remote rpcbind.
644 *
645 * The algorithm used: If the transports is TCP or UDP, it first tries
646 * version 2 (portmap), 4 and then 3 (svr4). This order should be
647 * changed in the next OS release to 4, 2 and 3. We are assuming that by
648 * that time, version 4 would be available on many machines on the network.
649 * With this algorithm, we get performance as well as a plan for
650 * obsoleting version 2.
651 *
652 * For all other transports, the algorithm remains as 4 and then 3.
653 *
654 * XXX: Due to some problems with t_connect(), we do not reuse the same client
655 * handle for COTS cases and hence in these cases we do not return the
656 * client handle. This code will change if t_connect() ever
657 * starts working properly. Also look under clnt_vc.c.
658 */
659 struct netbuf *
660 __rpcb_findaddr(program, version, nconf, host, clpp)
661 rpcprog_t program;
662 rpcvers_t version;
663 const struct netconfig *nconf;
664 const char *host;
665 CLIENT **clpp;
666 {
667 CLIENT *client = NULL;
668 RPCB parms;
669 enum clnt_stat clnt_st;
670 char *ua = NULL;
671 rpcvers_t vers;
672 struct netbuf *address = NULL;
673 rpcvers_t start_vers = RPCBVERS4;
674 struct netbuf servaddr;
675
676 /* parameter checking */
677 if (nconf == NULL) {
678 rpc_createerr.cf_stat = RPC_UNKNOWNPROTO;
679 return (NULL);
680 }
681
682 parms.r_addr = NULL;
683
684 #ifdef PORTMAP
685 /* Try version 2 for TCP or UDP */
686 if (strcmp(nconf->nc_protofmly, NC_INET) == 0) {
687 u_short port = 0;
688 struct netbuf remote;
689 u_long pmapvers = 2;
690 struct pmap pmapparms;
691
692 /*
693 * Try UDP only - there are some portmappers out
694 * there that use UDP only.
695 */
696 if (strcmp(nconf->nc_proto, NC_TCP) == 0) {
697 struct netconfig *newnconf;
698
699 if ((newnconf = getnetconfigent("udp")) == NULL) {
700 rpc_createerr.cf_stat = RPC_UNKNOWNPROTO;
701 return (NULL);
702 }
703 client = getclnthandle(host, newnconf, &parms.r_addr);
704 freenetconfigent(newnconf);
705 } else {
706 client = getclnthandle(host, nconf, &parms.r_addr);
707 }
708 if (client == NULL) {
709 return (NULL);
710 }
711
712 /* Set the version */
713 CLNT_CONTROL(client, CLSET_VERS, (char *)(void *)&pmapvers);
714 pmapparms.pm_prog = program;
715 pmapparms.pm_vers = version;
716 pmapparms.pm_prot = strcmp(nconf->nc_proto, NC_TCP) ?
717 IPPROTO_UDP : IPPROTO_TCP;
718 pmapparms.pm_port = 0; /* not needed */
719 clnt_st = CLNT_CALL(client, (rpcproc_t)PMAPPROC_GETPORT,
720 (xdrproc_t) xdr_pmap, (caddr_t)(void *)&pmapparms,
721 (xdrproc_t) xdr_u_short, (caddr_t)(void *)&port,
722 tottimeout);
723 if (clnt_st != RPC_SUCCESS) {
724 if ((clnt_st == RPC_PROGVERSMISMATCH) ||
725 (clnt_st == RPC_PROGUNAVAIL))
726 goto try_rpcbind; /* Try different versions */
727 rpc_createerr.cf_stat = RPC_PMAPFAILURE;
728 clnt_geterr(client, &rpc_createerr.cf_error);
729 goto error;
730 } else if (port == 0) {
731 address = NULL;
732 rpc_createerr.cf_stat = RPC_PROGNOTREGISTERED;
733 goto error;
734 }
735 port = htons(port);
736 CLNT_CONTROL(client, CLGET_SVC_ADDR, (char *)(void *)&remote);
737 if (((address = (struct netbuf *)
738 malloc(sizeof (struct netbuf))) == NULL) ||
739 ((address->buf = (char *)
740 malloc(remote.len)) == NULL)) {
741 rpc_createerr.cf_stat = RPC_SYSTEMERROR;
742 clnt_geterr(client, &rpc_createerr.cf_error);
743 if (address) {
744 free(address);
745 address = NULL;
746 }
747 goto error;
748 }
749 memcpy(address->buf, remote.buf, remote.len);
750 memcpy(&((char *)address->buf)[sizeof (short)],
751 (char *)(void *)&port, sizeof (short));
752 address->len = address->maxlen = remote.len;
753 goto done;
754 }
755 #endif
756
757 try_rpcbind:
758 /*
759 * Now we try version 4 and then 3.
760 * We also send the remote system the address we used to
761 * contact it in case it can help to connect back with us
762 */
763 parms.r_prog = program;
764 parms.r_vers = version;
765 /*LINTED const castaway*/
766 parms.r_owner = (char *) &nullstring[0]; /* not needed; */
767 /* just for xdring */
768 parms.r_netid = nconf->nc_netid; /* not really needed */
769
770 /*
771 * If a COTS transport is being used, try getting address via CLTS
772 * transport. This works only with version 4.
773 * NOTE: This is being done for all transports EXCEPT LOOPBACK
774 * because with loopback the cost to go to a COTS is same as
775 * the cost to go through CLTS, plus you get the advantage of
776 * finding out immediately if the local rpcbind process is dead.
777 */
778 #if 1
779 if ((nconf->nc_semantics == NC_TPI_COTS_ORD ||
780 nconf->nc_semantics == NC_TPI_COTS) &&
781 (strcmp(nconf->nc_protofmly, NC_LOOPBACK) != 0)) {
782 #else
783 if (client != NULL) {
784 CLNT_DESTROY(client);
785 client = NULL;
786 }
787 if (nconf->nc_semantics == NC_TPI_CLTS) {
788 #endif
789 void *handle;
790 struct netconfig *nconf_clts;
791 rpcb_entry_list_ptr relp = NULL;
792
793 if (client == NULL) {
794 /* This did not go through the above PORTMAP/TCP code */
795 #if 1
796 if ((handle = __rpc_setconf("datagram_v")) != NULL) {
797 #else
798 if ((handle = __rpc_setconf("circuit_v")) != NULL) {
799 #endif
800 while ((nconf_clts = __rpc_getconf(handle))
801 != NULL) {
802 if (strcmp(nconf_clts->nc_protofmly,
803 nconf->nc_protofmly) != 0) {
804 continue;
805 }
806 client = getclnthandle(host, nconf_clts,
807 &parms.r_addr);
808 break;
809 }
810 __rpc_endconf(handle);
811 }
812 if (client == NULL)
813 goto regular_rpcbind; /* Go the regular way */
814 } else {
815 /* This is a UDP PORTMAP handle. Change to version 4 */
816 vers = RPCBVERS4;
817 CLNT_CONTROL(client, CLSET_VERS, (char *)(void *)&vers);
818 }
819 /*
820 * We also send the remote system the address we used to
821 * contact it in case it can help it connect back with us
822 */
823 if (parms.r_addr == NULL) {
824 /*LINTED const castaway*/
825 parms.r_addr = (char *) &nullstring[0]; /* for XDRing */
826 }
827 clnt_st = CLNT_CALL(client, (rpcproc_t)RPCBPROC_GETADDRLIST,
828 (xdrproc_t) xdr_rpcb, (char *)(void *)&parms,
829 (xdrproc_t) xdr_rpcb_entry_list_ptr,
830 (char *)(void *)&relp, tottimeout);
831 if (clnt_st == RPC_SUCCESS) {
832 if ((address = got_entry(relp, nconf)) != NULL) {
833 xdr_free((xdrproc_t) xdr_rpcb_entry_list_ptr,
834 (char *)(void *)&relp);
835 goto done;
836 }
837 /* Entry not found for this transport */
838 xdr_free((xdrproc_t) xdr_rpcb_entry_list_ptr,
839 (char *)(void *)&relp);
840 /*
841 * XXX: should have perhaps returned with error but
842 * since the remote machine might not always be able
843 * to send the address on all transports, we try the
844 * regular way with regular_rpcbind
845 */
846 goto regular_rpcbind;
847 } else if ((clnt_st == RPC_PROGVERSMISMATCH) ||
848 (clnt_st == RPC_PROGUNAVAIL)) {
849 start_vers = RPCBVERS; /* Try version 3 now */
850 goto regular_rpcbind; /* Try different versions */
851 } else {
852 rpc_createerr.cf_stat = RPC_PMAPFAILURE;
853 clnt_geterr(client, &rpc_createerr.cf_error);
854 goto error;
855 }
856 }
857
858 regular_rpcbind:
859
860 /* Now the same transport is to be used to get the address */
861 #if 1
862 if (client && ((nconf->nc_semantics == NC_TPI_COTS_ORD) ||
863 (nconf->nc_semantics == NC_TPI_COTS))) {
864 #else
865 if (client && nconf->nc_semantics == NC_TPI_CLTS) {
866 #endif
867 /* A CLTS type of client - destroy it */
868 CLNT_DESTROY(client);
869 client = NULL;
870 }
871
872 if (client == NULL) {
873 client = getclnthandle(host, nconf, &parms.r_addr);
874 if (client == NULL) {
875 goto error;
876 }
877 }
878 if (parms.r_addr == NULL) {
879 /*LINTED const castaway*/
880 parms.r_addr = (char *) &nullstring[0];
881 }
882
883 /* First try from start_vers and then version 3 (RPCBVERS) */
884 for (vers = start_vers; vers >= RPCBVERS; vers--) {
885 /* Set the version */
886 CLNT_CONTROL(client, CLSET_VERS, (char *)(void *)&vers);
887 clnt_st = CLNT_CALL(client, (rpcproc_t)RPCBPROC_GETADDR,
888 (xdrproc_t) xdr_rpcb, (char *)(void *)&parms,
889 (xdrproc_t) xdr_wrapstring, (char *)(void *) ua, tottimeout);
890 if (clnt_st == RPC_SUCCESS) {
891 if ((ua == NULL) || (ua[0] == NULL)) {
892 /* address unknown */
893 rpc_createerr.cf_stat = RPC_PROGNOTREGISTERED;
894 goto error;
895 }
896 address = uaddr2taddr(nconf, ua);
897 #ifdef ND_DEBUG
898 fprintf(stderr, "\tRemote address is [%s]\n", ua);
899 if (!address)
900 fprintf(stderr,
901 "\tCouldn't resolve remote address!\n");
902 #endif
903 xdr_free((xdrproc_t)xdr_wrapstring,
904 (char *)(void *)&ua);
905
906 if (! address) {
907 /* We don't know about your universal address */
908 rpc_createerr.cf_stat = RPC_N2AXLATEFAILURE;
909 goto error;
910 }
911 CLNT_CONTROL(client, CLGET_SVC_ADDR,
912 (char *)(void *)&servaddr);
913 __rpc_fixup_addr(address, &servaddr);
914 goto done;
915 } else if (clnt_st == RPC_PROGVERSMISMATCH) {
916 struct rpc_err rpcerr;
917
918 clnt_geterr(client, &rpcerr);
919 if (rpcerr.re_vers.low > RPCBVERS4)
920 goto error; /* a new version, can't handle */
921 } else if (clnt_st != RPC_PROGUNAVAIL) {
922 /* Cant handle this error */
923 rpc_createerr.cf_stat = clnt_st;
924 clnt_geterr(client, &rpc_createerr.cf_error);
925 goto error;
926 }
927 }
928
929 if ((address == NULL) || (address->len == 0)) {
930 rpc_createerr.cf_stat = RPC_PROGNOTREGISTERED;
931 clnt_geterr(client, &rpc_createerr.cf_error);
932 }
933
934 error:
935 if (client) {
936 CLNT_DESTROY(client);
937 client = NULL;
938 }
939 done:
940 if (nconf->nc_semantics != NC_TPI_CLTS) {
941 /* This client is the connectionless one */
942 if (client) {
943 CLNT_DESTROY(client);
944 client = NULL;
945 }
946 }
947 if (clpp) {
948 *clpp = client;
949 } else if (client) {
950 CLNT_DESTROY(client);
951 }
952 return (address);
953 }
954
955
956 /*
957 * Find the mapped address for program, version.
958 * Calls the rpcbind service remotely to do the lookup.
959 * Uses the transport specified in nconf.
960 * Returns FALSE (0) if no map exists, else returns 1.
961 *
962 * Assuming that the address is all properly allocated
963 */
964 int
965 rpcb_getaddr(program, version, nconf, address, host)
966 rpcprog_t program;
967 rpcvers_t version;
968 const struct netconfig *nconf;
969 struct netbuf *address;
970 const char *host;
971 {
972 struct netbuf *na;
973
974 if ((na = __rpcb_findaddr(program, version, nconf,
975 host, (CLIENT **) NULL)) == NULL)
976 return (FALSE);
977
978 if (na->len > address->maxlen) {
979 /* Too long address */
980 free(na->buf);
981 free(na);
982 rpc_createerr.cf_stat = RPC_FAILED;
983 return (FALSE);
984 }
985 memcpy(address->buf, na->buf, (size_t)na->len);
986 address->len = na->len;
987 free(na->buf);
988 free(na);
989 return (TRUE);
990 }
991
992 /*
993 * Get a copy of the current maps.
994 * Calls the rpcbind service remotely to get the maps.
995 *
996 * It returns only a list of the services
997 * It returns NULL on failure.
998 */
999 rpcblist *
1000 rpcb_getmaps(nconf, host)
1001 const struct netconfig *nconf;
1002 const char *host;
1003 {
1004 rpcblist_ptr head = NULL;
1005 CLIENT *client;
1006 enum clnt_stat clnt_st;
1007 long vers = 0;
1008
1009 client = getclnthandle(host, nconf, NULL);
1010 if (client == NULL) {
1011 return (head);
1012 }
1013 clnt_st = CLNT_CALL(client, (rpcproc_t)RPCBPROC_DUMP,
1014 (xdrproc_t) xdr_void, NULL, (xdrproc_t) xdr_rpcblist_ptr,
1015 (char *)(void *)&head, tottimeout);
1016 if (clnt_st == RPC_SUCCESS)
1017 goto done;
1018
1019 if ((clnt_st != RPC_PROGVERSMISMATCH) &&
1020 (clnt_st != RPC_PROGUNAVAIL)) {
1021 rpc_createerr.cf_stat = RPC_RPCBFAILURE;
1022 clnt_geterr(client, &rpc_createerr.cf_error);
1023 goto done;
1024 }
1025
1026 /* fall back to earlier version */
1027 CLNT_CONTROL(client, CLGET_VERS, (char *)(void *)&vers);
1028 if (vers == RPCBVERS4) {
1029 vers = RPCBVERS;
1030 CLNT_CONTROL(client, CLSET_VERS, (char *)(void *)&vers);
1031 if (CLNT_CALL(client, (rpcproc_t)RPCBPROC_DUMP,
1032 (xdrproc_t) xdr_void, NULL, (xdrproc_t) xdr_rpcblist_ptr,
1033 (char *)(void *)&head, tottimeout) == RPC_SUCCESS)
1034 goto done;
1035 }
1036 rpc_createerr.cf_stat = RPC_RPCBFAILURE;
1037 clnt_geterr(client, &rpc_createerr.cf_error);
1038
1039 done:
1040 CLNT_DESTROY(client);
1041 return (head);
1042 }
1043
1044 /*
1045 * rpcbinder remote-call-service interface.
1046 * This routine is used to call the rpcbind remote call service
1047 * which will look up a service program in the address maps, and then
1048 * remotely call that routine with the given parameters. This allows
1049 * programs to do a lookup and call in one step.
1050 */
1051 enum clnt_stat
1052 rpcb_rmtcall(nconf, host, prog, vers, proc, xdrargs, argsp,
1053 xdrres, resp, tout, addr_ptr)
1054 const struct netconfig *nconf; /* Netconfig structure */
1055 const char *host; /* Remote host name */
1056 rpcprog_t prog;
1057 rpcvers_t vers;
1058 rpcproc_t proc; /* Remote proc identifiers */
1059 xdrproc_t xdrargs, xdrres; /* XDR routines */
1060 caddr_t argsp, resp; /* Argument and Result */
1061 struct timeval tout; /* Timeout value for this call */
1062 const struct netbuf *addr_ptr; /* Preallocated netbuf address */
1063 {
1064 CLIENT *client;
1065 enum clnt_stat stat;
1066 struct r_rpcb_rmtcallargs a;
1067 struct r_rpcb_rmtcallres r;
1068 long rpcb_vers;
1069
1070
1071 client = getclnthandle(host, nconf, NULL);
1072 if (client == NULL) {
1073 return (RPC_FAILED);
1074 }
1075 /*LINTED const castaway*/
1076 CLNT_CONTROL(client, CLSET_RETRY_TIMEOUT, (char *)(void *)&rmttimeout);
1077 a.prog = prog;
1078 a.vers = vers;
1079 a.proc = proc;
1080 a.args.args_val = argsp;
1081 a.xdr_args = xdrargs;
1082 r.addr = NULL;
1083 r.results.results_val = resp;
1084 r.xdr_res = xdrres;
1085
1086 for (rpcb_vers = RPCBVERS4; rpcb_vers >= RPCBVERS; rpcb_vers--) {
1087 CLNT_CONTROL(client, CLSET_VERS, (char *)(void *)&rpcb_vers);
1088 stat = CLNT_CALL(client, (rpcproc_t)RPCBPROC_CALLIT,
1089 (xdrproc_t) xdr_rpcb_rmtcallargs, (char *)(void *)&a,
1090 (xdrproc_t) xdr_rpcb_rmtcallres, (char *)(void *)&r, tout);
1091 if ((stat == RPC_SUCCESS) && (addr_ptr != NULL)) {
1092 struct netbuf *na;
1093 /*LINTED const castaway*/
1094 na = uaddr2taddr((struct netconfig *) nconf, r.addr);
1095 if (!na) {
1096 stat = RPC_N2AXLATEFAILURE;
1097 /*LINTED const castaway*/
1098 ((struct netbuf *) addr_ptr)->len = 0;
1099 goto error;
1100 }
1101 if (na->len > addr_ptr->maxlen) {
1102 /* Too long address */
1103 stat = RPC_FAILED; /* XXX A better error no */
1104 free(na->buf);
1105 free(na);
1106 /*LINTED const castaway*/
1107 ((struct netbuf *) addr_ptr)->len = 0;
1108 goto error;
1109 }
1110 memcpy(addr_ptr->buf, na->buf, (size_t)na->len);
1111 /*LINTED const castaway*/
1112 ((struct netbuf *)addr_ptr)->len = na->len;
1113 free(na->buf);
1114 free(na);
1115 break;
1116 } else if ((stat != RPC_PROGVERSMISMATCH) &&
1117 (stat != RPC_PROGUNAVAIL)) {
1118 goto error;
1119 }
1120 }
1121 error:
1122 CLNT_DESTROY(client);
1123 if (r.addr)
1124 xdr_free((xdrproc_t) xdr_wrapstring, (char *)(void *)&r.addr);
1125 return (stat);
1126 }
1127
1128 /*
1129 * Gets the time on the remote host.
1130 * Returns 1 if succeeds else 0.
1131 */
1132 bool_t
1133 rpcb_gettime(host, timep)
1134 const char *host;
1135 time_t *timep;
1136 {
1137 CLIENT *client = NULL;
1138 void *handle;
1139 struct netconfig *nconf;
1140 long vers;
1141 enum clnt_stat st;
1142
1143
1144 if ((host == NULL) || (host[0] == NULL)) {
1145 time(timep);
1146 return (TRUE);
1147 }
1148
1149 if ((handle = __rpc_setconf("netpath")) == NULL) {
1150 rpc_createerr.cf_stat = RPC_UNKNOWNPROTO;
1151 return (FALSE);
1152 }
1153 rpc_createerr.cf_stat = RPC_SUCCESS;
1154 while (client == NULL) {
1155 if ((nconf = __rpc_getconf(handle)) == NULL) {
1156 if (rpc_createerr.cf_stat == RPC_SUCCESS)
1157 rpc_createerr.cf_stat = RPC_UNKNOWNPROTO;
1158 break;
1159 }
1160 client = getclnthandle(host, nconf, NULL);
1161 if (client)
1162 break;
1163 }
1164 __rpc_endconf(handle);
1165 if (client == (CLIENT *) NULL) {
1166 return (FALSE);
1167 }
1168
1169 st = CLNT_CALL(client, (rpcproc_t)RPCBPROC_GETTIME,
1170 (xdrproc_t) xdr_void, NULL,
1171 (xdrproc_t) xdr_int, (char *)(void *)timep, tottimeout);
1172
1173 if ((st == RPC_PROGVERSMISMATCH) || (st == RPC_PROGUNAVAIL)) {
1174 CLNT_CONTROL(client, CLGET_VERS, (char *)(void *)&vers);
1175 if (vers == RPCBVERS4) {
1176 /* fall back to earlier version */
1177 vers = RPCBVERS;
1178 CLNT_CONTROL(client, CLSET_VERS, (char *)(void *)&vers);
1179 st = CLNT_CALL(client, (rpcproc_t)RPCBPROC_GETTIME,
1180 (xdrproc_t) xdr_void, NULL,
1181 (xdrproc_t) xdr_int, (char *)(void *)timep,
1182 tottimeout);
1183 }
1184 }
1185 CLNT_DESTROY(client);
1186 return (st == RPC_SUCCESS? TRUE: FALSE);
1187 }
1188
1189 /*
1190 * Converts taddr to universal address. This routine should never
1191 * really be called because local n2a libraries are always provided.
1192 */
1193 char *
1194 rpcb_taddr2uaddr(nconf, taddr)
1195 struct netconfig *nconf;
1196 struct netbuf *taddr;
1197 {
1198 CLIENT *client;
1199 char *uaddr = NULL;
1200
1201
1202 /* parameter checking */
1203 if (nconf == NULL) {
1204 rpc_createerr.cf_stat = RPC_UNKNOWNPROTO;
1205 return (NULL);
1206 }
1207 if (taddr == NULL) {
1208 rpc_createerr.cf_stat = RPC_UNKNOWNADDR;
1209 return (NULL);
1210 }
1211 client = local_rpcb();
1212 if (! client) {
1213 return (NULL);
1214 }
1215
1216 CLNT_CALL(client, (rpcproc_t)RPCBPROC_TADDR2UADDR,
1217 (xdrproc_t) xdr_netbuf, (char *)(void *)taddr,
1218 (xdrproc_t) xdr_wrapstring, (char *)(void *)&uaddr, tottimeout);
1219 CLNT_DESTROY(client);
1220 return (uaddr);
1221 }
1222
1223 /*
1224 * Converts universal address to netbuf. This routine should never
1225 * really be called because local n2a libraries are always provided.
1226 */
1227 struct netbuf *
1228 rpcb_uaddr2taddr(nconf, uaddr)
1229 struct netconfig *nconf;
1230 char *uaddr;
1231 {
1232 CLIENT *client;
1233 struct netbuf *taddr;
1234
1235
1236 /* parameter checking */
1237 if (nconf == NULL) {
1238 rpc_createerr.cf_stat = RPC_UNKNOWNPROTO;
1239 return (NULL);
1240 }
1241 if (uaddr == NULL) {
1242 rpc_createerr.cf_stat = RPC_UNKNOWNADDR;
1243 return (NULL);
1244 }
1245 client = local_rpcb();
1246 if (! client) {
1247 return (NULL);
1248 }
1249
1250 taddr = (struct netbuf *)calloc(1, sizeof (struct netbuf));
1251 if (taddr == NULL) {
1252 CLNT_DESTROY(client);
1253 return (NULL);
1254 }
1255 if (CLNT_CALL(client, (rpcproc_t)RPCBPROC_UADDR2TADDR,
1256 (xdrproc_t) xdr_wrapstring, (char *)(void *)&uaddr,
1257 (xdrproc_t) xdr_netbuf, (char *)(void *)taddr,
1258 tottimeout) != RPC_SUCCESS) {
1259 free(taddr);
1260 taddr = NULL;
1261 }
1262 CLNT_DESTROY(client);
1263 return (taddr);
1264 }
1265