Home | History | Annotate | Line # | Download | only in rpcbind
rpcb_svc_com.c revision 1.20
      1  1.20  christos /*	$NetBSD: rpcb_svc_com.c,v 1.20 2017/08/16 08:44:40 christos Exp $	*/
      2  1.20  christos /*	$FreeBSD: head/usr.sbin/rpcbind/rpcb_svc_com.c 301770 2016-06-09 22:25:00Z pfg $ */
      3   1.1      fvdl 
      4  1.20  christos /*-
      5  1.20  christos  * Copyright (c) 2009, Sun Microsystems, Inc.
      6  1.20  christos  * All rights reserved.
      7  1.20  christos  *
      8  1.20  christos  * Redistribution and use in source and binary forms, with or without
      9  1.20  christos  * modification, are permitted provided that the following conditions are met:
     10  1.20  christos  * - Redistributions of source code must retain the above copyright notice,
     11  1.20  christos  *   this list of conditions and the following disclaimer.
     12  1.20  christos  * - Redistributions in binary form must reproduce the above copyright notice,
     13  1.20  christos  *   this list of conditions and the following disclaimer in the documentation
     14  1.20  christos  *   and/or other materials provided with the distribution.
     15  1.20  christos  * - Neither the name of Sun Microsystems, Inc. nor the names of its
     16  1.20  christos  *   contributors may be used to endorse or promote products derived
     17  1.20  christos  *   from this software without specific prior written permission.
     18  1.20  christos  *
     19  1.20  christos  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
     20  1.20  christos  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21  1.20  christos  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22  1.20  christos  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
     23  1.20  christos  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  1.20  christos  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  1.20  christos  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  1.20  christos  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  1.20  christos  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  1.20  christos  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  1.20  christos  * POSSIBILITY OF SUCH DAMAGE.
     30   1.1      fvdl  */
     31   1.1      fvdl /*
     32   1.1      fvdl  * Copyright (c) 1986 - 1991 by Sun Microsystems, Inc.
     33   1.1      fvdl  */
     34   1.1      fvdl 
     35   1.1      fvdl /* #ident	"@(#)rpcb_svc_com.c	1.18	94/05/02 SMI" */
     36   1.1      fvdl 
     37   1.1      fvdl /*
     38   1.1      fvdl  * rpcb_svc_com.c
     39   1.1      fvdl  * The commom server procedure for the rpcbind.
     40   1.1      fvdl  */
     41   1.1      fvdl 
     42   1.1      fvdl #include <sys/types.h>
     43   1.1      fvdl #include <sys/stat.h>
     44   1.1      fvdl #include <sys/param.h>
     45   1.1      fvdl #include <sys/socket.h>
     46   1.1      fvdl #include <rpc/rpc.h>
     47   1.1      fvdl #include <rpc/rpcb_prot.h>
     48  1.19  christos #include <rpc/rpc_com.h>
     49  1.20  christos #include <assert.h>
     50   1.1      fvdl #include <netconfig.h>
     51   1.1      fvdl #include <errno.h>
     52   1.1      fvdl #include <syslog.h>
     53   1.1      fvdl #include <unistd.h>
     54   1.1      fvdl #include <stdio.h>
     55   1.7    itojun #include <poll.h>
     56   1.1      fvdl #ifdef PORTMAP
     57   1.1      fvdl #include <netinet/in.h>
     58   1.1      fvdl #include <rpc/pmap_prot.h>
     59   1.1      fvdl #endif /* PORTMAP */
     60   1.1      fvdl #include <string.h>
     61   1.1      fvdl #include <stdlib.h>
     62   1.1      fvdl 
     63  1.17  christos #ifdef RPCBIND_RUMP
     64  1.17  christos #include <rump/rump.h>
     65  1.17  christos #include <rump/rump_syscalls.h>
     66  1.17  christos #endif
     67  1.17  christos 
     68  1.20  christos #include "svc_dg.h"
     69   1.1      fvdl #include "rpcbind.h"
     70  1.17  christos #ifdef RPCBIND_RUMP
     71  1.17  christos #include "svc_fdset.h"
     72  1.17  christos #endif
     73   1.1      fvdl 
     74   1.1      fvdl #define RPC_BUF_MAX	65536	/* can be raised if required */
     75   1.1      fvdl 
     76  1.20  christos static char nullstring[] = "";
     77   1.1      fvdl static int rpcb_rmtcalls;
     78   1.1      fvdl 
     79   1.1      fvdl struct rmtcallfd_list {
     80   1.1      fvdl 	int fd;
     81   1.1      fvdl 	SVCXPRT *xprt;
     82   1.1      fvdl 	char *netid;
     83   1.1      fvdl 	struct rmtcallfd_list *next;
     84   1.1      fvdl };
     85   1.1      fvdl 
     86   1.1      fvdl #define NFORWARD        64
     87   1.1      fvdl #define MAXTIME_OFF     300     /* 5 minutes */
     88   1.1      fvdl 
     89   1.1      fvdl struct finfo {
     90   1.1      fvdl 	int             flag;
     91   1.1      fvdl #define FINFO_ACTIVE    0x1
     92   1.1      fvdl 	u_int32_t       caller_xid;
     93   1.1      fvdl         struct netbuf   *caller_addr;
     94   1.1      fvdl 	u_int32_t       forward_xid;
     95   1.1      fvdl 	int             forward_fd;
     96   1.1      fvdl 	char            *uaddr;
     97   1.1      fvdl 	rpcproc_t       reply_type;
     98   1.1      fvdl 	rpcvers_t       versnum;
     99   1.1      fvdl 	time_t          time;
    100   1.1      fvdl };
    101   1.1      fvdl static struct finfo     FINFO[NFORWARD];
    102   1.1      fvdl 
    103   1.1      fvdl 
    104  1.11  christos static bool_t xdr_encap_parms(XDR *, struct encap_parms *);
    105  1.11  christos static bool_t xdr_rmtcall_args(XDR *, struct r_rmtcall_args *);
    106  1.11  christos static bool_t xdr_rmtcall_result(XDR *, struct r_rmtcall_args *);
    107  1.11  christos static bool_t xdr_opaque_parms(XDR *, struct r_rmtcall_args *);
    108  1.11  christos static int find_rmtcallfd_by_netid(char *);
    109  1.11  christos static SVCXPRT *find_rmtcallxprt_by_fd(int);
    110  1.20  christos static int forward_register(u_int32_t, struct netbuf *, int, char *,
    111  1.20  christos     rpcproc_t, rpcvers_t, u_int32_t *);
    112  1.11  christos static struct finfo *forward_find(u_int32_t);
    113  1.11  christos static int free_slot_by_xid(u_int32_t);
    114  1.11  christos static int free_slot_by_index(int);
    115  1.11  christos static int netbufcmp(struct netbuf *, struct netbuf *);
    116  1.11  christos static struct netbuf *netbufdup(struct netbuf *);
    117  1.11  christos static void netbuffree(struct netbuf *);
    118  1.11  christos static int check_rmtcalls(struct pollfd *, int);
    119  1.11  christos static void xprt_set_caller(SVCXPRT *, struct finfo *);
    120  1.11  christos static void send_svcsyserr(SVCXPRT *, struct finfo *);
    121  1.11  christos static void handle_reply(int, SVCXPRT *);
    122  1.11  christos static void find_versions(rpcprog_t, char *, rpcvers_t *, rpcvers_t *);
    123  1.11  christos static rpcblist_ptr find_service(rpcprog_t, rpcvers_t, char *);
    124  1.11  christos static char *getowner(SVCXPRT *, char *, size_t);
    125  1.11  christos static int add_pmaplist(RPCB *);
    126  1.11  christos static int del_pmaplist(RPCB *);
    127   1.1      fvdl 
    128   1.1      fvdl /*
    129   1.1      fvdl  * Set a mapping of program, version, netid
    130   1.1      fvdl  */
    131   1.1      fvdl /* ARGSUSED */
    132   1.1      fvdl void *
    133  1.20  christos rpcbproc_set_com(void *arg, struct svc_req *rqstp __unused, SVCXPRT *transp,
    134   1.1      fvdl 		 rpcvers_t rpcbversnum)
    135   1.1      fvdl {
    136  1.20  christos 	RPCB *regp = arg;
    137   1.1      fvdl 	static bool_t ans;
    138   1.1      fvdl 	char owner[64];
    139   1.1      fvdl 
    140   1.1      fvdl #ifdef RPCBIND_DEBUG
    141   1.1      fvdl 	if (debugging)
    142   1.1      fvdl 		fprintf(stderr, "RPCB_SET request for (%lu, %lu, %s, %s) : ",
    143   1.1      fvdl 		    (unsigned long)regp->r_prog, (unsigned long)regp->r_vers,
    144   1.1      fvdl 		    regp->r_netid, regp->r_addr);
    145   1.1      fvdl #endif
    146   1.1      fvdl 	ans = map_set(regp, getowner(transp, owner, sizeof owner));
    147   1.1      fvdl #ifdef RPCBIND_DEBUG
    148   1.1      fvdl 	if (debugging)
    149   1.1      fvdl 		fprintf(stderr, "%s\n", ans == TRUE ? "succeeded" : "failed");
    150   1.1      fvdl #endif
    151   1.1      fvdl 	/* XXX: should have used some defined constant here */
    152   1.1      fvdl 	rpcbs_set(rpcbversnum - 2, ans);
    153   1.1      fvdl 	return (void *)&ans;
    154   1.1      fvdl }
    155   1.1      fvdl 
    156   1.1      fvdl bool_t
    157   1.1      fvdl map_set(RPCB *regp, char *owner)
    158   1.1      fvdl {
    159   1.1      fvdl 	RPCB reg, *a;
    160   1.1      fvdl 	rpcblist_ptr rbl, fnd;
    161   1.1      fvdl 
    162   1.1      fvdl 	reg = *regp;
    163   1.1      fvdl 	/*
    164   1.1      fvdl 	 * check to see if already used
    165   1.1      fvdl 	 * find_service returns a hit even if
    166   1.1      fvdl 	 * the versions don't match, so check for it
    167   1.1      fvdl 	 */
    168   1.1      fvdl 	fnd = find_service(reg.r_prog, reg.r_vers, reg.r_netid);
    169   1.1      fvdl 	if (fnd && (fnd->rpcb_map.r_vers == reg.r_vers)) {
    170   1.1      fvdl 		if (!strcmp(fnd->rpcb_map.r_addr, reg.r_addr))
    171   1.1      fvdl 			/*
    172   1.1      fvdl 			 * if these match then it is already
    173   1.1      fvdl 			 * registered so just say "OK".
    174   1.1      fvdl 			 */
    175   1.1      fvdl 			return (TRUE);
    176   1.1      fvdl 		else
    177   1.1      fvdl 			return (FALSE);
    178   1.1      fvdl 	}
    179   1.1      fvdl 	/*
    180   1.1      fvdl 	 * add to the end of the list
    181   1.1      fvdl 	 */
    182  1.20  christos 	rbl = malloc(sizeof(RPCBLIST));
    183  1.20  christos 	if (rbl == NULL)
    184   1.1      fvdl 		return (FALSE);
    185   1.1      fvdl 	a = &(rbl->rpcb_map);
    186   1.1      fvdl 	a->r_prog = reg.r_prog;
    187   1.1      fvdl 	a->r_vers = reg.r_vers;
    188   1.1      fvdl 	a->r_netid = strdup(reg.r_netid);
    189   1.1      fvdl 	a->r_addr = strdup(reg.r_addr);
    190   1.1      fvdl 	a->r_owner = strdup(owner);
    191   1.1      fvdl 	if (!a->r_addr || !a->r_netid || !a->r_owner) {
    192   1.1      fvdl 		if (a->r_netid)
    193  1.20  christos 			free(a->r_netid);
    194   1.1      fvdl 		if (a->r_addr)
    195  1.20  christos 			free(a->r_addr);
    196   1.1      fvdl 		if (a->r_owner)
    197  1.20  christos 			free(a->r_owner);
    198  1.20  christos 		free(rbl);
    199   1.1      fvdl 		return (FALSE);
    200   1.1      fvdl 	}
    201  1.16    plunky 	rbl->rpcb_next = NULL;
    202   1.1      fvdl 	if (list_rbl == NULL) {
    203   1.1      fvdl 		list_rbl = rbl;
    204   1.1      fvdl 	} else {
    205   1.1      fvdl 		for (fnd = list_rbl; fnd->rpcb_next;
    206   1.1      fvdl 			fnd = fnd->rpcb_next)
    207   1.1      fvdl 			;
    208   1.1      fvdl 		fnd->rpcb_next = rbl;
    209   1.1      fvdl 	}
    210   1.1      fvdl #ifdef PORTMAP
    211   1.1      fvdl 	(void) add_pmaplist(regp);
    212   1.1      fvdl #endif
    213   1.1      fvdl 	return (TRUE);
    214   1.1      fvdl }
    215   1.1      fvdl 
    216   1.1      fvdl /*
    217   1.1      fvdl  * Unset a mapping of program, version, netid
    218   1.1      fvdl  */
    219   1.1      fvdl /* ARGSUSED */
    220   1.1      fvdl void *
    221  1.20  christos rpcbproc_unset_com(void *arg, struct svc_req *rqstp __unused, SVCXPRT *transp,
    222   1.1      fvdl 		   rpcvers_t rpcbversnum)
    223   1.1      fvdl {
    224  1.20  christos 	RPCB *regp = arg;
    225   1.1      fvdl 	static bool_t ans;
    226   1.1      fvdl 	char owner[64];
    227   1.1      fvdl 
    228   1.1      fvdl #ifdef RPCBIND_DEBUG
    229   1.1      fvdl 	if (debugging)
    230   1.1      fvdl 		fprintf(stderr, "RPCB_UNSET request for (%lu, %lu, %s) : ",
    231   1.1      fvdl 		    (unsigned long)regp->r_prog, (unsigned long)regp->r_vers,
    232   1.1      fvdl 		    regp->r_netid);
    233   1.1      fvdl #endif
    234   1.1      fvdl 	ans = map_unset(regp, getowner(transp, owner, sizeof owner));
    235   1.1      fvdl #ifdef RPCBIND_DEBUG
    236   1.1      fvdl 	if (debugging)
    237   1.1      fvdl 		fprintf(stderr, "%s\n", ans == TRUE ? "succeeded" : "failed");
    238   1.1      fvdl #endif
    239   1.1      fvdl 	/* XXX: should have used some defined constant here */
    240   1.1      fvdl 	rpcbs_unset(rpcbversnum - 2, ans);
    241   1.1      fvdl 	return (void *)&ans;
    242   1.1      fvdl }
    243   1.1      fvdl 
    244   1.1      fvdl bool_t
    245  1.11  christos map_unset(RPCB *regp, const char *owner)
    246   1.1      fvdl {
    247   1.1      fvdl 	int ans = 0;
    248   1.1      fvdl 	rpcblist_ptr rbl, prev, tmp;
    249   1.1      fvdl 
    250   1.1      fvdl 	if (owner == NULL)
    251   1.1      fvdl 		return (0);
    252   1.1      fvdl 
    253   1.1      fvdl 	for (prev = NULL, rbl = list_rbl; rbl; /* cstyle */) {
    254   1.1      fvdl 		if ((rbl->rpcb_map.r_prog != regp->r_prog) ||
    255   1.1      fvdl 			(rbl->rpcb_map.r_vers != regp->r_vers) ||
    256   1.1      fvdl 			(regp->r_netid[0] && strcasecmp(regp->r_netid,
    257   1.1      fvdl 				rbl->rpcb_map.r_netid))) {
    258   1.1      fvdl 			/* both rbl & prev move forwards */
    259   1.1      fvdl 			prev = rbl;
    260   1.1      fvdl 			rbl = rbl->rpcb_next;
    261   1.1      fvdl 			continue;
    262   1.1      fvdl 		}
    263   1.1      fvdl 		/*
    264   1.1      fvdl 		 * Check whether appropriate uid. Unset only
    265   1.1      fvdl 		 * if superuser or the owner itself.
    266   1.1      fvdl 		 */
    267  1.12  christos 		if (strcmp(owner, rpcbind_superuser) &&
    268   1.1      fvdl 			strcmp(rbl->rpcb_map.r_owner, owner))
    269   1.1      fvdl 			return (0);
    270   1.1      fvdl 		/* found it; rbl moves forward, prev stays */
    271   1.1      fvdl 		ans = 1;
    272   1.1      fvdl 		tmp = rbl;
    273   1.1      fvdl 		rbl = rbl->rpcb_next;
    274   1.1      fvdl 		if (prev == NULL)
    275   1.1      fvdl 			list_rbl = rbl;
    276   1.1      fvdl 		else
    277   1.1      fvdl 			prev->rpcb_next = rbl;
    278  1.20  christos 		free(tmp->rpcb_map.r_addr);
    279  1.20  christos 		free(tmp->rpcb_map.r_netid);
    280  1.20  christos 		free(tmp->rpcb_map.r_owner);
    281  1.20  christos 		free(tmp);
    282   1.1      fvdl 	}
    283   1.1      fvdl #ifdef PORTMAP
    284   1.1      fvdl 	if (ans)
    285   1.1      fvdl 		(void) del_pmaplist(regp);
    286   1.1      fvdl #endif
    287   1.1      fvdl 	/*
    288   1.1      fvdl 	 * We return 1 either when the entry was not there or it
    289   1.1      fvdl 	 * was able to unset it.  It can come to this point only if
    290   1.1      fvdl 	 * atleast one of the conditions is true.
    291   1.1      fvdl 	 */
    292   1.1      fvdl 	return (1);
    293   1.1      fvdl }
    294   1.1      fvdl 
    295   1.1      fvdl void
    296  1.14     lukem delete_prog(rpcprog_t prog)
    297   1.1      fvdl {
    298   1.1      fvdl 	RPCB reg;
    299  1.17  christos 	rpcblist_ptr rbl;
    300   1.1      fvdl 
    301   1.1      fvdl 	for (rbl = list_rbl; rbl != NULL; rbl = rbl->rpcb_next) {
    302   1.1      fvdl 		if ((rbl->rpcb_map.r_prog != prog))
    303   1.1      fvdl 			continue;
    304   1.1      fvdl 		if (is_bound(rbl->rpcb_map.r_netid, rbl->rpcb_map.r_addr))
    305   1.1      fvdl 			continue;
    306   1.1      fvdl 		reg.r_prog = rbl->rpcb_map.r_prog;
    307   1.1      fvdl 		reg.r_vers = rbl->rpcb_map.r_vers;
    308   1.1      fvdl 		reg.r_netid = strdup(rbl->rpcb_map.r_netid);
    309  1.12  christos 		(void)map_unset(&reg, rpcbind_superuser);
    310   1.1      fvdl 		free(reg.r_netid);
    311   1.1      fvdl 	}
    312   1.1      fvdl }
    313   1.1      fvdl 
    314   1.1      fvdl void *
    315  1.20  christos rpcbproc_getaddr_com(RPCB *regp, struct svc_req *rqstp __unused,
    316  1.20  christos     SVCXPRT *transp, rpcvers_t rpcbversnum, rpcvers_t verstype)
    317   1.1      fvdl {
    318   1.1      fvdl 	static char *uaddr;
    319   1.1      fvdl 	char *saddr = NULL;
    320   1.1      fvdl 	rpcblist_ptr fnd;
    321   1.1      fvdl 
    322  1.20  christos 	if (uaddr != NULL && uaddr != nullstring) {
    323  1.20  christos 		free(uaddr);
    324  1.20  christos 		uaddr = NULL;
    325  1.20  christos 	}
    326   1.1      fvdl 	fnd = find_service(regp->r_prog, regp->r_vers, transp->xp_netid);
    327   1.1      fvdl 	if (fnd && ((verstype == RPCB_ALLVERS) ||
    328   1.1      fvdl 		    (regp->r_vers == fnd->rpcb_map.r_vers))) {
    329   1.1      fvdl 		if (*(regp->r_addr) != '\0') {  /* may contain a hint about */
    330   1.1      fvdl 			saddr = regp->r_addr;   /* the interface that we    */
    331   1.1      fvdl 		}				/* should use */
    332   1.1      fvdl 		if (!(uaddr = mergeaddr(transp, transp->xp_netid,
    333   1.1      fvdl 				fnd->rpcb_map.r_addr, saddr))) {
    334   1.1      fvdl 			/* Try whatever we have */
    335   1.1      fvdl 			uaddr = strdup(fnd->rpcb_map.r_addr);
    336   1.1      fvdl 		} else if (!uaddr[0]) {
    337   1.1      fvdl 			/*
    338   1.1      fvdl 			 * The server died.  Unset all versions of this prog.
    339   1.1      fvdl 			 */
    340   1.1      fvdl 			delete_prog(regp->r_prog);
    341  1.20  christos 			uaddr = nullstring;
    342   1.1      fvdl 		}
    343   1.1      fvdl 	} else {
    344  1.20  christos 		uaddr = nullstring;
    345   1.1      fvdl 	}
    346   1.1      fvdl #ifdef RPCBIND_DEBUG
    347   1.1      fvdl 	if (debugging)
    348   1.1      fvdl 		fprintf(stderr, "getaddr: %s\n", uaddr);
    349   1.1      fvdl #endif
    350   1.1      fvdl 	/* XXX: should have used some defined constant here */
    351   1.1      fvdl 	rpcbs_getaddr(rpcbversnum - 2, regp->r_prog, regp->r_vers,
    352   1.1      fvdl 		transp->xp_netid, uaddr);
    353   1.1      fvdl 	return (void *)&uaddr;
    354   1.1      fvdl }
    355   1.1      fvdl 
    356   1.1      fvdl /* ARGSUSED */
    357   1.1      fvdl void *
    358  1.20  christos rpcbproc_gettime_com(void *arg __unused, struct svc_req *rqstp __unused,
    359  1.20  christos     SVCXPRT *transp __unused, rpcvers_t rpcbversnum __unused)
    360   1.1      fvdl {
    361   1.1      fvdl 	static time_t curtime;
    362   1.1      fvdl 
    363   1.1      fvdl 	(void) time(&curtime);
    364  1.20  christos 	return &curtime;
    365   1.1      fvdl }
    366   1.1      fvdl 
    367   1.1      fvdl /*
    368   1.1      fvdl  * Convert uaddr to taddr. Should be used only by
    369   1.1      fvdl  * local servers/clients. (kernel level stuff only)
    370   1.1      fvdl  */
    371   1.1      fvdl /* ARGSUSED */
    372   1.1      fvdl void *
    373  1.20  christos rpcbproc_uaddr2taddr_com(void *arg, struct svc_req *rqstp __unused,
    374  1.20  christos     SVCXPRT *transp, rpcvers_t rpcbversnum __unused)
    375   1.1      fvdl {
    376  1.20  christos 	char **uaddrp = arg;
    377   1.1      fvdl 	struct netconfig *nconf;
    378   1.1      fvdl 	static struct netbuf nbuf;
    379   1.1      fvdl 	static struct netbuf *taddr;
    380   1.1      fvdl 
    381   1.1      fvdl 	if (taddr) {
    382  1.20  christos 		free(taddr->buf);
    383  1.20  christos 		free(taddr);
    384  1.20  christos 		taddr = NULL;
    385   1.1      fvdl 	}
    386   1.1      fvdl 	if (((nconf = rpcbind_get_conf(transp->xp_netid)) == NULL) ||
    387   1.1      fvdl 	    ((taddr = uaddr2taddr(nconf, *uaddrp)) == NULL)) {
    388  1.20  christos 		(void) memset(&nbuf, 0, sizeof (struct netbuf));
    389  1.20  christos 		return &nbuf;
    390   1.1      fvdl 	}
    391  1.20  christos 	return taddr;
    392   1.1      fvdl }
    393   1.1      fvdl 
    394   1.1      fvdl /*
    395   1.1      fvdl  * Convert taddr to uaddr. Should be used only by
    396   1.1      fvdl  * local servers/clients. (kernel level stuff only)
    397   1.1      fvdl  */
    398   1.1      fvdl /* ARGSUSED */
    399   1.1      fvdl void *
    400  1.20  christos rpcbproc_taddr2uaddr_com(void *arg, struct svc_req *rqstp __unused,
    401  1.20  christos     SVCXPRT *transp, rpcvers_t rpcbversnum __unused)
    402   1.1      fvdl {
    403  1.20  christos 	struct netbuf *taddr = arg;
    404   1.1      fvdl 	static char *uaddr;
    405   1.1      fvdl 	struct netconfig *nconf;
    406   1.1      fvdl 
    407   1.1      fvdl #ifdef CHEW_FDS
    408   1.1      fvdl 	int fd;
    409   1.1      fvdl 
    410   1.1      fvdl 	if ((fd = open("/dev/null", O_RDONLY)) == -1) {
    411  1.11  christos 		uaddr = strerror(errno);
    412   1.1      fvdl 		return (&uaddr);
    413   1.1      fvdl 	}
    414   1.1      fvdl #endif /* CHEW_FDS */
    415  1.20  christos 	if (uaddr != NULL && uaddr != nullstring) {
    416  1.20  christos 		free(uaddr);
    417  1.20  christos 		uaddr = NULL;
    418  1.20  christos 	}
    419   1.1      fvdl 	if (((nconf = rpcbind_get_conf(transp->xp_netid)) == NULL) ||
    420   1.1      fvdl 		((uaddr = taddr2uaddr(nconf, taddr)) == NULL)) {
    421  1.20  christos 		uaddr = nullstring;
    422   1.1      fvdl 	}
    423   1.1      fvdl 	return (void *)&uaddr;
    424   1.1      fvdl }
    425   1.1      fvdl 
    426   1.1      fvdl 
    427   1.1      fvdl static bool_t
    428   1.1      fvdl xdr_encap_parms(XDR *xdrs, struct encap_parms *epp)
    429   1.1      fvdl {
    430  1.19  christos 	return (xdr_bytes(xdrs, &(epp->args), (u_int *) &(epp->arglen),
    431  1.19  christos 	    RPC_MAXDATASIZE));
    432   1.1      fvdl }
    433   1.1      fvdl 
    434   1.1      fvdl /*
    435   1.1      fvdl  * XDR remote call arguments.  It ignores the address part.
    436   1.1      fvdl  * written for XDR_DECODE direction only
    437   1.1      fvdl  */
    438   1.1      fvdl static bool_t
    439   1.1      fvdl xdr_rmtcall_args(XDR *xdrs, struct r_rmtcall_args *cap)
    440   1.1      fvdl {
    441   1.1      fvdl 	/* does not get the address or the arguments */
    442  1.20  christos 	if (xdr_rpcprog(xdrs, &(cap->rmt_prog)) &&
    443  1.20  christos 	    xdr_rpcvers(xdrs, &(cap->rmt_vers)) &&
    444  1.20  christos 	    xdr_rpcproc(xdrs, &(cap->rmt_proc))) {
    445   1.1      fvdl 		return (xdr_encap_parms(xdrs, &(cap->rmt_args)));
    446   1.1      fvdl 	}
    447   1.1      fvdl 	return (FALSE);
    448   1.1      fvdl }
    449   1.1      fvdl 
    450   1.1      fvdl /*
    451   1.1      fvdl  * XDR remote call results along with the address.  Ignore
    452   1.1      fvdl  * program number, version  number and proc number.
    453   1.1      fvdl  * Written for XDR_ENCODE direction only.
    454   1.1      fvdl  */
    455   1.1      fvdl static bool_t
    456   1.1      fvdl xdr_rmtcall_result(XDR *xdrs, struct r_rmtcall_args *cap)
    457   1.1      fvdl {
    458   1.1      fvdl 	bool_t result;
    459   1.1      fvdl 
    460   1.1      fvdl #ifdef PORTMAP
    461   1.1      fvdl 	if (cap->rmt_localvers == PMAPVERS) {
    462   1.1      fvdl 		int h1, h2, h3, h4, p1, p2;
    463   1.1      fvdl 		u_long port;
    464   1.1      fvdl 
    465   1.1      fvdl 		/* interpret the universal address for TCP/IP */
    466   1.1      fvdl 		if (sscanf(cap->rmt_uaddr, "%d.%d.%d.%d.%d.%d",
    467   1.1      fvdl 			&h1, &h2, &h3, &h4, &p1, &p2) != 6)
    468   1.1      fvdl 			return (FALSE);
    469   1.1      fvdl 		port = ((p1 & 0xff) << 8) + (p2 & 0xff);
    470   1.1      fvdl 		result = xdr_u_long(xdrs, &port);
    471   1.1      fvdl 	} else
    472   1.1      fvdl #endif
    473   1.1      fvdl 		if ((cap->rmt_localvers == RPCBVERS) ||
    474   1.1      fvdl 		    (cap->rmt_localvers == RPCBVERS4)) {
    475   1.1      fvdl 		result = xdr_wrapstring(xdrs, &(cap->rmt_uaddr));
    476   1.1      fvdl 	} else {
    477   1.1      fvdl 		return (FALSE);
    478   1.1      fvdl 	}
    479   1.1      fvdl 	if (result == TRUE)
    480   1.1      fvdl 		return (xdr_encap_parms(xdrs, &(cap->rmt_args)));
    481   1.1      fvdl 	return (FALSE);
    482   1.1      fvdl }
    483   1.1      fvdl 
    484   1.1      fvdl /*
    485   1.1      fvdl  * only worries about the struct encap_parms part of struct r_rmtcall_args.
    486   1.1      fvdl  * The arglen must already be set!!
    487   1.1      fvdl  */
    488   1.1      fvdl static bool_t
    489   1.1      fvdl xdr_opaque_parms(XDR *xdrs, struct r_rmtcall_args *cap)
    490   1.1      fvdl {
    491   1.1      fvdl 	return (xdr_opaque(xdrs, cap->rmt_args.args, cap->rmt_args.arglen));
    492   1.1      fvdl }
    493   1.1      fvdl 
    494   1.1      fvdl static struct rmtcallfd_list *rmthead;
    495   1.1      fvdl static struct rmtcallfd_list *rmttail;
    496   1.1      fvdl 
    497   1.1      fvdl int
    498   1.1      fvdl create_rmtcall_fd(struct netconfig *nconf)
    499   1.1      fvdl {
    500   1.1      fvdl 	int fd;
    501   1.1      fvdl 	struct rmtcallfd_list *rmt;
    502   1.1      fvdl 	SVCXPRT *xprt;
    503   1.1      fvdl 
    504   1.1      fvdl 	if ((fd = __rpc_nconf2fd(nconf)) == -1) {
    505   1.1      fvdl 		if (debugging)
    506   1.1      fvdl 			fprintf(stderr,
    507   1.1      fvdl 	"create_rmtcall_fd: couldn't open \"%s\" (errno %d)\n",
    508   1.1      fvdl 			nconf->nc_device, errno);
    509   1.1      fvdl 		return (-1);
    510   1.1      fvdl 	}
    511   1.1      fvdl 	xprt = svc_tli_create(fd, 0, (struct t_bind *) 0, 0, 0);
    512   1.1      fvdl 	if (xprt == NULL) {
    513   1.1      fvdl 		if (debugging)
    514   1.1      fvdl 			fprintf(stderr,
    515   1.1      fvdl 				"create_rmtcall_fd: svc_tli_create failed\n");
    516   1.1      fvdl 		return (-1);
    517   1.1      fvdl 	}
    518  1.20  christos 	rmt = malloc(sizeof(struct rmtcallfd_list));
    519   1.1      fvdl 	if (rmt == NULL) {
    520   1.1      fvdl 		syslog(LOG_ERR, "create_rmtcall_fd: no memory!");
    521   1.1      fvdl 		return (-1);
    522   1.1      fvdl 	}
    523   1.1      fvdl 	rmt->xprt = xprt;
    524   1.1      fvdl 	rmt->netid = strdup(nconf->nc_netid);
    525   1.1      fvdl 	xprt->xp_netid = rmt->netid;
    526   1.1      fvdl 	rmt->fd = fd;
    527   1.1      fvdl 	rmt->next = NULL;
    528   1.1      fvdl 	if (rmthead == NULL) {
    529   1.1      fvdl 		rmthead = rmt;
    530   1.1      fvdl 		rmttail = rmt;
    531   1.1      fvdl 	} else {
    532   1.1      fvdl 		rmttail->next = rmt;
    533   1.1      fvdl 		rmttail = rmt;
    534   1.1      fvdl 	}
    535  1.17  christos 	svc_fdset_set(fd);
    536   1.1      fvdl 	return (fd);
    537   1.1      fvdl }
    538   1.1      fvdl 
    539   1.1      fvdl static int
    540   1.1      fvdl find_rmtcallfd_by_netid(char *netid)
    541   1.1      fvdl {
    542   1.1      fvdl 	struct rmtcallfd_list *rmt;
    543   1.1      fvdl 
    544   1.1      fvdl 	for (rmt = rmthead; rmt != NULL; rmt = rmt->next) {
    545   1.1      fvdl 		if (strcmp(netid, rmt->netid) == 0) {
    546   1.1      fvdl 			return (rmt->fd);
    547   1.1      fvdl 		}
    548   1.1      fvdl 	}
    549   1.1      fvdl 	return (-1);
    550   1.1      fvdl }
    551   1.1      fvdl 
    552   1.1      fvdl static SVCXPRT *
    553   1.1      fvdl find_rmtcallxprt_by_fd(int fd)
    554   1.1      fvdl {
    555   1.1      fvdl 	struct rmtcallfd_list *rmt;
    556   1.1      fvdl 
    557   1.1      fvdl 	for (rmt = rmthead; rmt != NULL; rmt = rmt->next) {
    558   1.1      fvdl 		if (fd == rmt->fd) {
    559   1.1      fvdl 			return (rmt->xprt);
    560   1.1      fvdl 		}
    561   1.1      fvdl 	}
    562   1.1      fvdl 	return (NULL);
    563   1.1      fvdl }
    564   1.1      fvdl 
    565   1.1      fvdl 
    566   1.1      fvdl /*
    567   1.1      fvdl  * Call a remote procedure service.  This procedure is very quiet when things
    568   1.1      fvdl  * go wrong.  The proc is written to support broadcast rpc.  In the broadcast
    569   1.1      fvdl  * case, a machine should shut-up instead of complain, lest the requestor be
    570   1.1      fvdl  * overrun with complaints at the expense of not hearing a valid reply.
    571   1.1      fvdl  * When receiving a request and verifying that the service exists, we
    572   1.1      fvdl  *
    573   1.1      fvdl  *	receive the request
    574   1.1      fvdl  *
    575   1.1      fvdl  *	open a new TLI endpoint on the same transport on which we received
    576   1.1      fvdl  *	the original request
    577   1.1      fvdl  *
    578   1.1      fvdl  *	remember the original request's XID (which requires knowing the format
    579   1.1      fvdl  *	of the svc_dg_data structure)
    580   1.1      fvdl  *
    581   1.1      fvdl  *	forward the request, with a new XID, to the requested service,
    582   1.1      fvdl  *	remembering the XID used to send this request (for later use in
    583   1.1      fvdl  *	reassociating the answer with the original request), the requestor's
    584   1.1      fvdl  *	address, the file descriptor on which the forwarded request is
    585   1.1      fvdl  *	made and the service's address.
    586   1.1      fvdl  *
    587   1.1      fvdl  *	mark the file descriptor on which we anticipate receiving a reply from
    588   1.1      fvdl  *	the service and one to select for in our private svc_run procedure
    589   1.1      fvdl  *
    590   1.1      fvdl  * At some time in the future, a reply will be received from the service to
    591   1.1      fvdl  * which we forwarded the request.  At that time, we detect that the socket
    592   1.1      fvdl  * used was for forwarding (by looking through the finfo structures to see
    593   1.1      fvdl  * whether the fd corresponds to one of those) and call handle_reply() to
    594   1.1      fvdl  *
    595   1.1      fvdl  *	receive the reply
    596   1.1      fvdl  *
    597   1.1      fvdl  *	bundle the reply, along with the service's universal address
    598   1.1      fvdl  *
    599   1.1      fvdl  *	create a SVCXPRT structure and use a version of svc_sendreply
    600   1.1      fvdl  *	that allows us to specify the reply XID and destination, send the reply
    601   1.1      fvdl  *	to the original requestor.
    602   1.1      fvdl  */
    603   1.1      fvdl 
    604   1.1      fvdl void
    605   1.1      fvdl rpcbproc_callit_com(struct svc_req *rqstp, SVCXPRT *transp,
    606   1.1      fvdl 		    rpcproc_t reply_type, rpcvers_t versnum)
    607   1.1      fvdl {
    608  1.17  christos 	rpcblist_ptr rbl;
    609   1.1      fvdl 	struct netconfig *nconf;
    610   1.1      fvdl 	struct netbuf *caller;
    611   1.1      fvdl 	struct r_rmtcall_args a;
    612   1.1      fvdl 	char *buf_alloc = NULL, *outbufp;
    613   1.1      fvdl 	char *outbuf_alloc = NULL;
    614   1.1      fvdl 	char buf[RPC_BUF_MAX], outbuf[RPC_BUF_MAX];
    615  1.16    plunky 	struct netbuf *na = NULL;
    616   1.1      fvdl 	struct rpc_msg call_msg;
    617   1.1      fvdl 	int outlen;
    618   1.1      fvdl 	u_int sendsz;
    619   1.1      fvdl 	XDR outxdr;
    620   1.1      fvdl 	AUTH *auth;
    621   1.1      fvdl 	int fd = -1;
    622  1.20  christos 	char *uaddr, *m_uaddr = NULL, *local_uaddr = NULL;
    623   1.1      fvdl 	u_int32_t *xidp;
    624   1.1      fvdl 	struct __rpc_sockinfo si;
    625   1.1      fvdl 	struct sockaddr *localsa;
    626   1.1      fvdl 	struct netbuf tbuf;
    627   1.1      fvdl 
    628   1.1      fvdl 	if (!__rpc_fd2sockinfo(transp->xp_fd, &si)) {
    629   1.1      fvdl 		if (reply_type == RPCBPROC_INDIRECT)
    630   1.1      fvdl 			svcerr_systemerr(transp);
    631   1.1      fvdl 		return;
    632   1.1      fvdl 	}
    633   1.1      fvdl 	if (si.si_socktype != SOCK_DGRAM)
    634   1.1      fvdl 		return;	/* Only datagram type accepted */
    635   1.1      fvdl 	sendsz = __rpc_get_t_size(si.si_af, si.si_proto, UDPMSGSIZE);
    636   1.1      fvdl 	if (sendsz == 0) {	/* data transfer not supported */
    637   1.1      fvdl 		if (reply_type == RPCBPROC_INDIRECT)
    638   1.1      fvdl 			svcerr_systemerr(transp);
    639   1.1      fvdl 		return;
    640   1.1      fvdl 	}
    641   1.1      fvdl 	/*
    642   1.1      fvdl 	 * Should be multiple of 4 for XDR.
    643   1.1      fvdl 	 */
    644  1.20  christos 	sendsz = roundup(sendsz, 4);
    645   1.1      fvdl 	if (sendsz > RPC_BUF_MAX) {
    646   1.1      fvdl #ifdef	notyet
    647   1.1      fvdl 		buf_alloc = alloca(sendsz);		/* not in IDR2? */
    648   1.1      fvdl #else
    649   1.1      fvdl 		buf_alloc = malloc(sendsz);
    650   1.1      fvdl #endif	/* notyet */
    651   1.1      fvdl 		if (buf_alloc == NULL) {
    652   1.1      fvdl 			if (debugging)
    653   1.1      fvdl 				fprintf(stderr,
    654   1.1      fvdl 					"rpcbproc_callit_com:  No Memory!\n");
    655   1.1      fvdl 			if (reply_type == RPCBPROC_INDIRECT)
    656   1.1      fvdl 				svcerr_systemerr(transp);
    657   1.1      fvdl 			return;
    658   1.1      fvdl 		}
    659   1.1      fvdl 		a.rmt_args.args = buf_alloc;
    660   1.1      fvdl 	} else {
    661   1.1      fvdl 		a.rmt_args.args = buf;
    662   1.1      fvdl 	}
    663   1.1      fvdl 
    664   1.1      fvdl 	call_msg.rm_xid = 0;	/* For error checking purposes */
    665   1.1      fvdl 	if (!svc_getargs(transp, (xdrproc_t) xdr_rmtcall_args, (char *) &a)) {
    666   1.1      fvdl 		if (reply_type == RPCBPROC_INDIRECT)
    667   1.1      fvdl 			svcerr_decode(transp);
    668   1.1      fvdl 		if (debugging)
    669   1.1      fvdl 			fprintf(stderr,
    670   1.1      fvdl 			"rpcbproc_callit_com:  svc_getargs failed\n");
    671   1.1      fvdl 		goto error;
    672   1.1      fvdl 	}
    673   1.1      fvdl 
    674   1.1      fvdl 	if (!check_callit(transp, &a, versnum)) {
    675   1.1      fvdl 		svcerr_weakauth(transp);
    676   1.1      fvdl 		goto error;
    677   1.1      fvdl 	}
    678   1.1      fvdl 
    679   1.1      fvdl 	caller = svc_getrpccaller(transp);
    680   1.1      fvdl #ifdef RPCBIND_DEBUG
    681   1.1      fvdl 	if (debugging) {
    682   1.1      fvdl 		uaddr = taddr2uaddr(rpcbind_get_conf(transp->xp_netid), caller);
    683   1.1      fvdl 		fprintf(stderr, "%s %s req for (%lu, %lu, %lu, %s) from %s : ",
    684   1.1      fvdl 			versnum == PMAPVERS ? "pmap_rmtcall" :
    685   1.1      fvdl 			versnum == RPCBVERS ? "rpcb_rmtcall" :
    686  1.12  christos 			versnum == RPCBVERS4 ? "rpcb_indirect" :
    687  1.12  christos 			rpcbind_unknown,
    688   1.1      fvdl 			reply_type == RPCBPROC_INDIRECT ? "indirect" : "callit",
    689   1.1      fvdl 			(unsigned long)a.rmt_prog, (unsigned long)a.rmt_vers,
    690   1.1      fvdl 			(unsigned long)a.rmt_proc, transp->xp_netid,
    691  1.12  christos 			uaddr ? uaddr : rpcbind_unknown);
    692   1.1      fvdl 		if (uaddr)
    693  1.20  christos 			free(uaddr);
    694   1.1      fvdl 	}
    695   1.1      fvdl #endif
    696   1.1      fvdl 
    697   1.1      fvdl 	rbl = find_service(a.rmt_prog, a.rmt_vers, transp->xp_netid);
    698   1.1      fvdl 
    699   1.1      fvdl 	rpcbs_rmtcall(versnum - 2, reply_type, a.rmt_prog, a.rmt_vers,
    700   1.1      fvdl 			a.rmt_proc, transp->xp_netid, rbl);
    701   1.1      fvdl 
    702  1.16    plunky 	if (rbl == NULL) {
    703   1.1      fvdl #ifdef RPCBIND_DEBUG
    704   1.1      fvdl 		if (debugging)
    705   1.1      fvdl 			fprintf(stderr, "not found\n");
    706   1.1      fvdl #endif
    707   1.1      fvdl 		if (reply_type == RPCBPROC_INDIRECT)
    708   1.1      fvdl 			svcerr_noprog(transp);
    709   1.1      fvdl 		goto error;
    710   1.1      fvdl 	}
    711   1.1      fvdl 	if (rbl->rpcb_map.r_vers != a.rmt_vers) {
    712   1.1      fvdl 		if (reply_type == RPCBPROC_INDIRECT) {
    713   1.1      fvdl 			rpcvers_t vers_low, vers_high;
    714   1.1      fvdl 
    715   1.1      fvdl 			find_versions(a.rmt_prog, transp->xp_netid,
    716   1.1      fvdl 				&vers_low, &vers_high);
    717   1.1      fvdl 			svcerr_progvers(transp, vers_low, vers_high);
    718   1.1      fvdl 		}
    719   1.1      fvdl 		goto error;
    720   1.1      fvdl 	}
    721   1.1      fvdl 
    722   1.1      fvdl #ifdef RPCBIND_DEBUG
    723   1.1      fvdl 	if (debugging)
    724   1.1      fvdl 		fprintf(stderr, "found at uaddr %s\n", rbl->rpcb_map.r_addr);
    725   1.1      fvdl #endif
    726   1.1      fvdl 	/*
    727   1.1      fvdl 	 *	Check whether this entry is valid and a server is present
    728   1.1      fvdl 	 *	Mergeaddr() returns NULL if no such entry is present, and
    729   1.1      fvdl 	 *	returns "" if the entry was present but the server is not
    730   1.1      fvdl 	 *	present (i.e., it crashed).
    731   1.1      fvdl 	 */
    732   1.1      fvdl 	if (reply_type == RPCBPROC_INDIRECT) {
    733   1.1      fvdl 		uaddr = mergeaddr(transp, transp->xp_netid,
    734   1.1      fvdl 			rbl->rpcb_map.r_addr, NULL);
    735  1.20  christos 		if (uaddr == NULL || uaddr[0] == '\0') {
    736   1.1      fvdl 			svcerr_noprog(transp);
    737  1.20  christos 			free(uaddr);
    738   1.1      fvdl 			goto error;
    739   1.1      fvdl 		}
    740  1.20  christos 		free(uaddr);
    741   1.1      fvdl 	}
    742   1.1      fvdl 	nconf = rpcbind_get_conf(transp->xp_netid);
    743  1.16    plunky 	if (nconf == NULL) {
    744   1.1      fvdl 		if (reply_type == RPCBPROC_INDIRECT)
    745   1.1      fvdl 			svcerr_systemerr(transp);
    746   1.1      fvdl 		if (debugging)
    747   1.1      fvdl 			fprintf(stderr,
    748   1.1      fvdl 			"rpcbproc_callit_com:  rpcbind_get_conf failed\n");
    749   1.1      fvdl 		goto error;
    750   1.1      fvdl 	}
    751   1.1      fvdl 	localsa = local_sa(((struct sockaddr *)caller->buf)->sa_family);
    752   1.1      fvdl 	if (localsa == NULL) {
    753   1.1      fvdl 		if (debugging)
    754   1.1      fvdl 			fprintf(stderr,
    755   1.1      fvdl 			"rpcbproc_callit_com: no local address\n");
    756   1.1      fvdl 		goto error;
    757   1.1      fvdl 	}
    758   1.1      fvdl 	tbuf.len = tbuf.maxlen = localsa->sa_len;
    759   1.1      fvdl 	tbuf.buf = localsa;
    760   1.1      fvdl 	local_uaddr =
    761   1.1      fvdl 	    addrmerge(&tbuf, rbl->rpcb_map.r_addr, NULL, nconf->nc_netid);
    762   1.1      fvdl 	m_uaddr = addrmerge(caller, rbl->rpcb_map.r_addr, NULL,
    763   1.1      fvdl 			nconf->nc_netid);
    764   1.1      fvdl #ifdef RPCBIND_DEBUG
    765   1.1      fvdl 	if (debugging)
    766   1.1      fvdl 		fprintf(stderr, "merged uaddr %s\n", m_uaddr);
    767   1.1      fvdl #endif
    768   1.1      fvdl 	if ((fd = find_rmtcallfd_by_netid(nconf->nc_netid)) == -1) {
    769   1.1      fvdl 		if (reply_type == RPCBPROC_INDIRECT)
    770   1.1      fvdl 			svcerr_systemerr(transp);
    771   1.1      fvdl 		goto error;
    772   1.1      fvdl 	}
    773   1.1      fvdl 	xidp = __rpcb_get_dg_xidp(transp);
    774  1.20  christos 	switch (forward_register(*xidp, caller, fd, m_uaddr, reply_type,
    775  1.20  christos 	    versnum, &call_msg.rm_xid)) {
    776  1.20  christos 	case 1:
    777  1.20  christos 		/* Success; forward_register() will free m_uaddr for us. */
    778  1.20  christos 		m_uaddr = NULL;
    779  1.20  christos 		break;
    780  1.20  christos 	case 0:
    781   1.1      fvdl 		/*
    782   1.1      fvdl 		 * A duplicate request for the slow server.  Let's not
    783   1.1      fvdl 		 * beat on it any more.
    784   1.1      fvdl 		 */
    785   1.1      fvdl 		if (debugging)
    786   1.1      fvdl 			fprintf(stderr,
    787   1.1      fvdl 			"rpcbproc_callit_com:  duplicate request\n");
    788   1.1      fvdl 		goto error;
    789  1.20  christos 	case -1:
    790   1.1      fvdl 		/*  forward_register failed.  Perhaps no memory. */
    791   1.1      fvdl 		if (debugging)
    792   1.1      fvdl 			fprintf(stderr,
    793   1.1      fvdl 			"rpcbproc_callit_com:  forward_register failed\n");
    794   1.1      fvdl 		goto error;
    795   1.1      fvdl 	}
    796   1.1      fvdl 
    797   1.1      fvdl #ifdef DEBUG_RMTCALL
    798   1.1      fvdl 	if (debugging)
    799   1.1      fvdl 		fprintf(stderr,
    800   1.1      fvdl 			"rpcbproc_callit_com:  original XID %x, new XID %x\n",
    801   1.1      fvdl 				*xidp, call_msg.rm_xid);
    802   1.1      fvdl #endif
    803   1.1      fvdl 	call_msg.rm_direction = CALL;
    804   1.1      fvdl 	call_msg.rm_call.cb_rpcvers = RPC_MSG_VERSION;
    805   1.1      fvdl 	call_msg.rm_call.cb_prog = a.rmt_prog;
    806   1.1      fvdl 	call_msg.rm_call.cb_vers = a.rmt_vers;
    807   1.1      fvdl 	if (sendsz > RPC_BUF_MAX) {
    808   1.1      fvdl #ifdef	notyet
    809   1.1      fvdl 		outbuf_alloc = alloca(sendsz);	/* not in IDR2? */
    810   1.1      fvdl #else
    811   1.1      fvdl 		outbuf_alloc = malloc(sendsz);
    812   1.1      fvdl #endif	/* notyet */
    813   1.1      fvdl 		if (outbuf_alloc == NULL) {
    814   1.1      fvdl 			if (reply_type == RPCBPROC_INDIRECT)
    815   1.1      fvdl 				svcerr_systemerr(transp);
    816   1.1      fvdl 			if (debugging)
    817   1.1      fvdl 				fprintf(stderr,
    818   1.1      fvdl 				"rpcbproc_callit_com:  No memory!\n");
    819   1.1      fvdl 			goto error;
    820   1.1      fvdl 		}
    821   1.1      fvdl 		xdrmem_create(&outxdr, outbuf_alloc, sendsz, XDR_ENCODE);
    822   1.1      fvdl 	} else {
    823   1.1      fvdl 		xdrmem_create(&outxdr, outbuf, sendsz, XDR_ENCODE);
    824   1.1      fvdl 	}
    825   1.1      fvdl 	if (!xdr_callhdr(&outxdr, &call_msg)) {
    826   1.1      fvdl 		if (reply_type == RPCBPROC_INDIRECT)
    827   1.1      fvdl 			svcerr_systemerr(transp);
    828   1.1      fvdl 		if (debugging)
    829   1.1      fvdl 			fprintf(stderr,
    830   1.1      fvdl 			"rpcbproc_callit_com:  xdr_callhdr failed\n");
    831   1.1      fvdl 		goto error;
    832   1.1      fvdl 	}
    833   1.1      fvdl 	if (!xdr_u_int32_t(&outxdr, &(a.rmt_proc))) {
    834   1.1      fvdl 		if (reply_type == RPCBPROC_INDIRECT)
    835   1.1      fvdl 			svcerr_systemerr(transp);
    836   1.1      fvdl 		if (debugging)
    837   1.1      fvdl 			fprintf(stderr,
    838   1.1      fvdl 			"rpcbproc_callit_com:  xdr_u_long failed\n");
    839   1.1      fvdl 		goto error;
    840   1.1      fvdl 	}
    841   1.1      fvdl 
    842   1.1      fvdl 	if (rqstp->rq_cred.oa_flavor == AUTH_NULL) {
    843   1.1      fvdl 		auth = authnone_create();
    844   1.1      fvdl 	} else if (rqstp->rq_cred.oa_flavor == AUTH_SYS) {
    845   1.1      fvdl 		struct authunix_parms *au;
    846   1.1      fvdl 
    847   1.1      fvdl 		au = (struct authunix_parms *)rqstp->rq_clntcred;
    848   1.1      fvdl 		auth = authunix_create(au->aup_machname,
    849   1.1      fvdl 				au->aup_uid, au->aup_gid,
    850   1.1      fvdl 				au->aup_len, au->aup_gids);
    851   1.1      fvdl 		if (auth == NULL) /* fall back */
    852   1.1      fvdl 			auth = authnone_create();
    853   1.1      fvdl 	} else {
    854   1.1      fvdl 		/* we do not support any other authentication scheme */
    855   1.1      fvdl 		if (debugging)
    856   1.1      fvdl 			fprintf(stderr,
    857   1.1      fvdl "rpcbproc_callit_com:  oa_flavor != AUTH_NONE and oa_flavor != AUTH_SYS\n");
    858   1.1      fvdl 		if (reply_type == RPCBPROC_INDIRECT)
    859   1.1      fvdl 			svcerr_weakauth(transp); /* XXX too strong.. */
    860   1.1      fvdl 		goto error;
    861   1.1      fvdl 	}
    862   1.1      fvdl 	if (auth == NULL) {
    863   1.1      fvdl 		if (reply_type == RPCBPROC_INDIRECT)
    864   1.1      fvdl 			svcerr_systemerr(transp);
    865   1.1      fvdl 		if (debugging)
    866   1.1      fvdl 			fprintf(stderr,
    867   1.1      fvdl 		"rpcbproc_callit_com:  authwhatever_create returned NULL\n");
    868   1.1      fvdl 		goto error;
    869   1.1      fvdl 	}
    870   1.1      fvdl 	if (!AUTH_MARSHALL(auth, &outxdr)) {
    871   1.1      fvdl 		if (reply_type == RPCBPROC_INDIRECT)
    872   1.1      fvdl 			svcerr_systemerr(transp);
    873   1.1      fvdl 		AUTH_DESTROY(auth);
    874   1.1      fvdl 		if (debugging)
    875   1.1      fvdl 			fprintf(stderr,
    876   1.1      fvdl 		"rpcbproc_callit_com:  AUTH_MARSHALL failed\n");
    877   1.1      fvdl 		goto error;
    878   1.1      fvdl 	}
    879   1.1      fvdl 	AUTH_DESTROY(auth);
    880   1.1      fvdl 	if (!xdr_opaque_parms(&outxdr, &a)) {
    881   1.1      fvdl 		if (reply_type == RPCBPROC_INDIRECT)
    882   1.1      fvdl 			svcerr_systemerr(transp);
    883   1.1      fvdl 		if (debugging)
    884   1.1      fvdl 			fprintf(stderr,
    885   1.1      fvdl 		"rpcbproc_callit_com:  xdr_opaque_parms failed\n");
    886   1.1      fvdl 		goto error;
    887   1.1      fvdl 	}
    888   1.1      fvdl 	outlen = (int) XDR_GETPOS(&outxdr);
    889   1.1      fvdl 	if (outbuf_alloc)
    890   1.1      fvdl 		outbufp = outbuf_alloc;
    891   1.1      fvdl 	else
    892   1.1      fvdl 		outbufp = outbuf;
    893   1.1      fvdl 
    894   1.1      fvdl 	na = uaddr2taddr(nconf, local_uaddr);
    895   1.1      fvdl 	if (!na) {
    896   1.1      fvdl 		if (reply_type == RPCBPROC_INDIRECT)
    897   1.1      fvdl 			svcerr_systemerr(transp);
    898   1.1      fvdl 		goto error;
    899   1.1      fvdl 	}
    900   1.1      fvdl 
    901   1.1      fvdl 	if (sendto(fd, outbufp, outlen, 0, (struct sockaddr *)na->buf, na->len)
    902   1.1      fvdl 	    != outlen) {
    903   1.1      fvdl 		if (debugging)
    904   1.1      fvdl 			fprintf(stderr,
    905   1.1      fvdl 	"rpcbproc_callit_com:  sendto failed:  errno %d\n", errno);
    906   1.1      fvdl 		if (reply_type == RPCBPROC_INDIRECT)
    907   1.1      fvdl 			svcerr_systemerr(transp);
    908   1.1      fvdl 		goto error;
    909   1.1      fvdl 	}
    910   1.1      fvdl 	goto out;
    911   1.1      fvdl 
    912   1.1      fvdl error:
    913   1.1      fvdl 	if (call_msg.rm_xid != 0)
    914   1.1      fvdl 		(void) free_slot_by_xid(call_msg.rm_xid);
    915   1.1      fvdl out:
    916   1.5      fvdl 	if (local_uaddr)
    917   1.5      fvdl 		free(local_uaddr);
    918   1.1      fvdl 	if (buf_alloc)
    919  1.20  christos 		free(buf_alloc);
    920   1.1      fvdl 	if (outbuf_alloc)
    921  1.20  christos 		free(outbuf_alloc);
    922   1.3      fvdl 	if (na) {
    923   1.3      fvdl 		free(na->buf);
    924   1.3      fvdl 		free(na);
    925   1.3      fvdl 	}
    926  1.20  christos 	if (m_uaddr != NULL)
    927  1.20  christos 		free(m_uaddr);
    928   1.1      fvdl }
    929   1.1      fvdl 
    930   1.1      fvdl /*
    931   1.1      fvdl  * Makes an entry into the FIFO for the given request.
    932  1.20  christos  * Returns 1 on success, 0 if this is a duplicate request, or -1 on error.
    933  1.20  christos  * *callxidp is set to the xid of the call.
    934   1.1      fvdl  */
    935  1.20  christos static int
    936   1.1      fvdl forward_register(u_int32_t caller_xid, struct netbuf *caller_addr,
    937  1.20  christos     int forward_fd, char *uaddr, rpcproc_t reply_type,
    938  1.20  christos      rpcvers_t versnum, u_int32_t *callxidp)
    939   1.1      fvdl {
    940   1.1      fvdl 	int		i;
    941   1.1      fvdl 	int		j = 0;
    942   1.1      fvdl 	time_t		min_time, time_now;
    943   1.1      fvdl 	static u_int32_t	lastxid;
    944   1.1      fvdl 	int		entry = -1;
    945   1.1      fvdl 
    946   1.1      fvdl 	min_time = FINFO[0].time;
    947   1.1      fvdl 	time_now = time((time_t *)0);
    948   1.1      fvdl 	/* initialization */
    949   1.1      fvdl 	if (lastxid == 0)
    950   1.1      fvdl 		lastxid = time_now * NFORWARD;
    951   1.1      fvdl 
    952   1.1      fvdl 	/*
    953  1.20  christos 	 * Check if it is a duplicate entry. Then,
    954   1.1      fvdl 	 * try to find an empty slot.  If not available, then
    955   1.1      fvdl 	 * use the slot with the earliest time.
    956   1.1      fvdl 	 */
    957   1.1      fvdl 	for (i = 0; i < NFORWARD; i++) {
    958   1.1      fvdl 		if (FINFO[i].flag & FINFO_ACTIVE) {
    959   1.1      fvdl 			if ((FINFO[i].caller_xid == caller_xid) &&
    960   1.1      fvdl 			    (FINFO[i].reply_type == reply_type) &&
    961   1.1      fvdl 			    (FINFO[i].versnum == versnum) &&
    962   1.1      fvdl 			    (!netbufcmp(FINFO[i].caller_addr,
    963   1.1      fvdl 					    caller_addr))) {
    964   1.1      fvdl 				FINFO[i].time = time((time_t *)0);
    965   1.1      fvdl 				return (0);	/* Duplicate entry */
    966   1.1      fvdl 			} else {
    967   1.1      fvdl 				/* Should we wait any longer */
    968   1.1      fvdl 				if ((time_now - FINFO[i].time) > MAXTIME_OFF)
    969   1.1      fvdl 					(void) free_slot_by_index(i);
    970   1.1      fvdl 			}
    971   1.1      fvdl 		}
    972   1.1      fvdl 		if (entry == -1) {
    973   1.1      fvdl 			if ((FINFO[i].flag & FINFO_ACTIVE) == 0) {
    974   1.1      fvdl 				entry = i;
    975   1.1      fvdl 			} else if (FINFO[i].time < min_time) {
    976   1.1      fvdl 				j = i;
    977   1.1      fvdl 				min_time = FINFO[i].time;
    978   1.1      fvdl 			}
    979   1.1      fvdl 		}
    980   1.1      fvdl 	}
    981   1.1      fvdl 	if (entry != -1) {
    982   1.1      fvdl 		/* use this empty slot */
    983   1.1      fvdl 		j = entry;
    984   1.1      fvdl 	} else {
    985   1.1      fvdl 		(void) free_slot_by_index(j);
    986   1.1      fvdl 	}
    987   1.1      fvdl 	if ((FINFO[j].caller_addr = netbufdup(caller_addr)) == NULL) {
    988   1.1      fvdl 		return (-1);
    989   1.1      fvdl 	}
    990   1.1      fvdl 	rpcb_rmtcalls++;	/* no of pending calls */
    991   1.1      fvdl 	FINFO[j].flag = FINFO_ACTIVE;
    992   1.1      fvdl 	FINFO[j].reply_type = reply_type;
    993   1.1      fvdl 	FINFO[j].versnum = versnum;
    994   1.1      fvdl 	FINFO[j].time = time_now;
    995   1.1      fvdl 	FINFO[j].caller_xid = caller_xid;
    996   1.1      fvdl 	FINFO[j].forward_fd = forward_fd;
    997   1.1      fvdl 	/*
    998   1.1      fvdl 	 * Though uaddr is not allocated here, it will still be freed
    999   1.1      fvdl 	 * from free_slot_*().
   1000   1.1      fvdl 	 */
   1001   1.1      fvdl 	FINFO[j].uaddr = uaddr;
   1002   1.1      fvdl 	lastxid = lastxid + NFORWARD;
   1003  1.20  christos 	/* Don't allow a zero xid below. */
   1004  1.20  christos 	if ((u_int32_t)(lastxid + NFORWARD) <= NFORWARD)
   1005  1.20  christos 		lastxid = NFORWARD;
   1006   1.1      fvdl 	FINFO[j].forward_xid = lastxid + j;	/* encode slot */
   1007  1.20  christos 	*callxidp = FINFO[j].forward_xid;	/* forward on this xid */
   1008  1.20  christos 	return (1);
   1009   1.1      fvdl }
   1010   1.1      fvdl 
   1011   1.1      fvdl static struct finfo *
   1012   1.1      fvdl forward_find(u_int32_t reply_xid)
   1013   1.1      fvdl {
   1014   1.1      fvdl 	int		i;
   1015   1.1      fvdl 
   1016   1.1      fvdl 	i = reply_xid % NFORWARD;
   1017   1.1      fvdl 	if (i < 0)
   1018   1.1      fvdl 		i += NFORWARD;
   1019   1.1      fvdl 	if ((FINFO[i].flag & FINFO_ACTIVE) &&
   1020   1.1      fvdl 	    (FINFO[i].forward_xid == reply_xid)) {
   1021   1.1      fvdl 		return (&FINFO[i]);
   1022   1.1      fvdl 	}
   1023   1.1      fvdl 	return (NULL);
   1024   1.1      fvdl }
   1025   1.1      fvdl 
   1026   1.1      fvdl static int
   1027   1.1      fvdl free_slot_by_xid(u_int32_t xid)
   1028   1.1      fvdl {
   1029   1.1      fvdl 	int entry;
   1030   1.1      fvdl 
   1031   1.1      fvdl 	entry = xid % NFORWARD;
   1032   1.1      fvdl 	if (entry < 0)
   1033   1.1      fvdl 		entry += NFORWARD;
   1034   1.1      fvdl 	return (free_slot_by_index(entry));
   1035   1.1      fvdl }
   1036   1.1      fvdl 
   1037   1.1      fvdl static int
   1038  1.11  christos free_slot_by_index(int idx)
   1039   1.1      fvdl {
   1040   1.1      fvdl 	struct finfo	*fi;
   1041   1.1      fvdl 
   1042  1.11  christos 	fi = &FINFO[idx];
   1043   1.1      fvdl 	if (fi->flag & FINFO_ACTIVE) {
   1044   1.1      fvdl 		netbuffree(fi->caller_addr);
   1045   1.1      fvdl 		/* XXX may be too big, but can't access xprt array here */
   1046  1.17  christos 		if (fi->forward_fd >= *svc_fdset_getmax())
   1047  1.17  christos 			(*svc_fdset_getmax())--;
   1048  1.20  christos 		free(fi->uaddr);
   1049   1.1      fvdl 		fi->flag &= ~FINFO_ACTIVE;
   1050   1.1      fvdl 		rpcb_rmtcalls--;
   1051   1.1      fvdl 		return (1);
   1052   1.1      fvdl 	}
   1053   1.1      fvdl 	return (0);
   1054   1.1      fvdl }
   1055   1.1      fvdl 
   1056   1.1      fvdl static int
   1057   1.1      fvdl netbufcmp(struct netbuf *n1, struct netbuf *n2)
   1058   1.1      fvdl {
   1059   1.1      fvdl 	return ((n1->len != n2->len) || memcmp(n1->buf, n2->buf, n1->len));
   1060   1.1      fvdl }
   1061   1.1      fvdl 
   1062  1.20  christos static bool_t
   1063  1.20  christos netbuf_copybuf(struct netbuf *dst, const struct netbuf *src)
   1064  1.20  christos {
   1065  1.20  christos 	assert(src->len <= src->maxlen);
   1066  1.20  christos 
   1067  1.20  christos 	if (dst->maxlen < src->len || dst->buf == NULL) {
   1068  1.20  christos 		if (dst->buf != NULL)
   1069  1.20  christos 			free(dst->buf);
   1070  1.20  christos 		if ((dst->buf = calloc(1, src->maxlen)) == NULL)
   1071  1.20  christos 			return (FALSE);
   1072  1.20  christos 		dst->maxlen = src->maxlen;
   1073  1.20  christos 	}
   1074  1.20  christos 
   1075  1.20  christos 	dst->len = src->len;
   1076  1.20  christos 	memcpy(dst->buf, src->buf, src->len);
   1077  1.20  christos 
   1078  1.20  christos 	return (TRUE);
   1079  1.20  christos }
   1080  1.20  christos 
   1081   1.1      fvdl static struct netbuf *
   1082   1.1      fvdl netbufdup(struct netbuf *ap)
   1083   1.1      fvdl {
   1084   1.1      fvdl 	struct netbuf  *np;
   1085   1.1      fvdl 
   1086  1.20  christos 	if ((np = calloc(1, sizeof(struct netbuf))) == NULL)
   1087  1.20  christos 		return (NULL);
   1088  1.20  christos 	if (netbuf_copybuf(np, ap) == FALSE) {
   1089  1.20  christos 		free(np);
   1090  1.20  christos 		return (NULL);
   1091   1.1      fvdl 	}
   1092   1.1      fvdl 	return (np);
   1093   1.1      fvdl }
   1094   1.1      fvdl 
   1095   1.1      fvdl static void
   1096   1.1      fvdl netbuffree(struct netbuf *ap)
   1097   1.1      fvdl {
   1098  1.20  christos 	free(ap->buf);
   1099  1.20  christos 	ap->buf = NULL;
   1100  1.20  christos 	free(ap);
   1101   1.1      fvdl }
   1102   1.1      fvdl 
   1103   1.1      fvdl 
   1104   1.1      fvdl #define	MASKVAL	(POLLIN | POLLPRI | POLLRDNORM | POLLRDBAND)
   1105   1.9      fvdl extern bool_t __svc_clean_idle(fd_set *, int, bool_t);
   1106   1.1      fvdl 
   1107   1.1      fvdl void
   1108  1.15     joerg my_svc_run(void)
   1109   1.1      fvdl {
   1110   1.1      fvdl 	size_t nfds;
   1111  1.17  christos 	struct pollfd *pollfds;
   1112  1.17  christos 	int npollfds;
   1113   1.1      fvdl 	int poll_ret, check_ret;
   1114  1.18  christos 	int n, *m;
   1115   1.1      fvdl #ifdef SVC_RUN_DEBUG
   1116   1.1      fvdl 	int i;
   1117   1.1      fvdl #endif
   1118  1.17  christos 	struct pollfd	*p;
   1119  1.17  christos 
   1120  1.17  christos 	pollfds = NULL;
   1121  1.17  christos 	npollfds = 0;
   1122   1.1      fvdl 
   1123   1.1      fvdl 	for (;;) {
   1124  1.17  christos 		if (svc_fdset_getsize(0) != npollfds) {
   1125  1.17  christos 			npollfds = svc_fdset_getsize(0);
   1126  1.17  christos 			pollfds = realloc(pollfds, npollfds * sizeof(*pollfds));
   1127  1.17  christos 		}
   1128   1.1      fvdl 		p = pollfds;
   1129  1.18  christos 		if (p == NULL) {
   1130  1.18  christos out:
   1131  1.18  christos 			syslog(LOG_ERR, "Cannot allocate pollfds");
   1132  1.18  christos 			sleep(1);
   1133  1.18  christos 			continue;
   1134  1.18  christos 		}
   1135  1.18  christos 		if ((m = svc_fdset_getmax()) == NULL)
   1136  1.18  christos 			goto out;
   1137  1.18  christos 		for (n = 0; n <= *m; n++) {
   1138  1.17  christos 			if (svc_fdset_isset(n)) {
   1139   1.1      fvdl 				p->fd = n;
   1140   1.1      fvdl 				p->events = MASKVAL;
   1141   1.1      fvdl 				p++;
   1142   1.1      fvdl 			}
   1143   1.1      fvdl 		}
   1144   1.1      fvdl 		nfds = p - pollfds;
   1145   1.1      fvdl 		poll_ret = 0;
   1146   1.1      fvdl #ifdef SVC_RUN_DEBUG
   1147   1.1      fvdl 		if (debugging) {
   1148   1.1      fvdl 			fprintf(stderr, "polling for read on fd < ");
   1149   1.1      fvdl 			for (i = 0, p = pollfds; i < nfds; i++, p++)
   1150   1.1      fvdl 				if (p->events)
   1151   1.1      fvdl 					fprintf(stderr, "%d ", p->fd);
   1152   1.1      fvdl 			fprintf(stderr, ">\n");
   1153   1.1      fvdl 		}
   1154   1.1      fvdl #endif
   1155  1.17  christos #ifdef RPCBIND_RUMP
   1156  1.17  christos 		poll_ret = rump_sys_poll(pollfds, nfds, 30 * 1000);
   1157  1.17  christos #else
   1158  1.17  christos 		poll_ret = poll(pollfds, nfds, 30 * 1000);
   1159  1.17  christos #endif
   1160  1.17  christos 		switch (poll_ret) {
   1161   1.1      fvdl 		case -1:
   1162   1.1      fvdl 			/*
   1163   1.1      fvdl 			 * We ignore all errors, continuing with the assumption
   1164   1.1      fvdl 			 * that it was set by the signal handlers (or any
   1165   1.1      fvdl 			 * other outside event) and not caused by poll().
   1166   1.1      fvdl 			 */
   1167  1.17  christos #ifdef SVC_RUN_DEBUG
   1168  1.17  christos 			if (debugging) {
   1169  1.17  christos 				fprintf(stderr, "poll returned %d (%s)\n",
   1170  1.17  christos 				    poll_ret, strerror(errno));
   1171  1.17  christos 			}
   1172  1.17  christos #endif
   1173   1.1      fvdl 		case 0:
   1174  1.17  christos 			__svc_clean_idle(NULL, 30, FALSE);
   1175   1.1      fvdl 			continue;
   1176   1.1      fvdl 		default:
   1177   1.1      fvdl #ifdef SVC_RUN_DEBUG
   1178   1.1      fvdl 			if (debugging) {
   1179   1.1      fvdl 				fprintf(stderr, "poll returned read fds < ");
   1180   1.1      fvdl 				for (i = 0, p = pollfds; i < nfds; i++, p++)
   1181   1.1      fvdl 					if (p->revents)
   1182  1.20  christos 						fprintf(stderr, "%d (%#x)",
   1183  1.17  christos 						    p->fd, p->revents);
   1184   1.1      fvdl 				fprintf(stderr, ">\n");
   1185   1.1      fvdl 			}
   1186   1.1      fvdl #endif
   1187   1.1      fvdl 			/*
   1188   1.1      fvdl 			 * If we found as many replies on callback fds
   1189   1.1      fvdl 			 * as the number of descriptors selectable which
   1190   1.1      fvdl 			 * poll() returned, there can be no more so we
   1191   1.1      fvdl 			 * don't call svc_getreq_poll.  Otherwise, there
   1192   1.1      fvdl 			 * must be another so we must call svc_getreq_poll.
   1193   1.1      fvdl 			 */
   1194   1.1      fvdl 			if ((check_ret = check_rmtcalls(pollfds, nfds)) ==
   1195   1.1      fvdl 			    poll_ret)
   1196   1.1      fvdl 				continue;
   1197   1.1      fvdl 			svc_getreq_poll(pollfds, poll_ret-check_ret);
   1198   1.1      fvdl 		}
   1199   1.1      fvdl #ifdef SVC_RUN_DEBUG
   1200   1.1      fvdl 		if (debugging) {
   1201  1.17  christos 			fprintf(stderr, "svc_maxfd now %u\n",
   1202  1.17  christos 			    *svc_fdset_getmax());
   1203   1.1      fvdl 		}
   1204   1.1      fvdl #endif
   1205   1.1      fvdl 	}
   1206   1.1      fvdl }
   1207   1.1      fvdl 
   1208   1.1      fvdl static int
   1209   1.1      fvdl check_rmtcalls(struct pollfd *pfds, int nfds)
   1210   1.1      fvdl {
   1211   1.1      fvdl 	int j, ncallbacks_found = 0, rmtcalls_pending;
   1212   1.1      fvdl 	SVCXPRT *xprt;
   1213   1.1      fvdl 
   1214   1.1      fvdl 	if (rpcb_rmtcalls == 0)
   1215   1.1      fvdl 		return (0);
   1216   1.1      fvdl 
   1217   1.1      fvdl 	rmtcalls_pending = rpcb_rmtcalls;
   1218   1.1      fvdl 	for (j = 0; j < nfds; j++) {
   1219   1.1      fvdl 		if ((xprt = find_rmtcallxprt_by_fd(pfds[j].fd)) != NULL) {
   1220   1.1      fvdl 			if (pfds[j].revents) {
   1221   1.1      fvdl 				ncallbacks_found++;
   1222   1.1      fvdl #ifdef DEBUG_RMTCALL
   1223   1.1      fvdl 			if (debugging)
   1224   1.1      fvdl 				fprintf(stderr,
   1225   1.1      fvdl "my_svc_run:  polled on forwarding fd %d, netid %s - calling handle_reply\n",
   1226   1.1      fvdl 		pfds[j].fd, xprt->xp_netid);
   1227   1.1      fvdl #endif
   1228   1.1      fvdl 				handle_reply(pfds[j].fd, xprt);
   1229   1.1      fvdl 				pfds[j].revents = 0;
   1230   1.1      fvdl 				if (ncallbacks_found >= rmtcalls_pending) {
   1231   1.1      fvdl 					break;
   1232   1.1      fvdl 				}
   1233   1.1      fvdl 			}
   1234   1.1      fvdl 		}
   1235   1.1      fvdl 	}
   1236   1.1      fvdl 	return (ncallbacks_found);
   1237   1.1      fvdl }
   1238   1.1      fvdl 
   1239   1.1      fvdl static void
   1240   1.1      fvdl xprt_set_caller(SVCXPRT *xprt, struct finfo *fi)
   1241   1.1      fvdl {
   1242   1.1      fvdl 	u_int32_t *xidp;
   1243   1.1      fvdl 
   1244  1.20  christos 	netbuf_copybuf(svc_getrpccaller(xprt), fi->caller_addr);
   1245   1.1      fvdl 	xidp = __rpcb_get_dg_xidp(xprt);
   1246   1.1      fvdl 	*xidp = fi->caller_xid;
   1247   1.1      fvdl }
   1248   1.1      fvdl 
   1249   1.1      fvdl /*
   1250   1.1      fvdl  * Call svcerr_systemerr() only if RPCBVERS4
   1251   1.1      fvdl  */
   1252   1.1      fvdl static void
   1253   1.1      fvdl send_svcsyserr(SVCXPRT *xprt, struct finfo *fi)
   1254   1.1      fvdl {
   1255   1.1      fvdl 	if (fi->reply_type == RPCBPROC_INDIRECT) {
   1256   1.1      fvdl 		xprt_set_caller(xprt, fi);
   1257   1.1      fvdl 		svcerr_systemerr(xprt);
   1258   1.1      fvdl 	}
   1259   1.1      fvdl 	return;
   1260   1.1      fvdl }
   1261   1.1      fvdl 
   1262   1.1      fvdl static void
   1263   1.1      fvdl handle_reply(int fd, SVCXPRT *xprt)
   1264   1.1      fvdl {
   1265   1.1      fvdl 	XDR		reply_xdrs;
   1266   1.1      fvdl 	struct rpc_msg	reply_msg;
   1267   1.1      fvdl 	struct rpc_err	reply_error;
   1268   1.1      fvdl 	char		*buffer;
   1269   1.1      fvdl 	struct finfo	*fi;
   1270   1.6      fvdl 	int		inlen, pos, len;
   1271   1.1      fvdl 	struct r_rmtcall_args a;
   1272   1.1      fvdl 	struct sockaddr_storage ss;
   1273   1.1      fvdl 	socklen_t fromlen;
   1274   1.1      fvdl #ifdef SVC_RUN_DEBUG
   1275   1.1      fvdl 	char *uaddr;
   1276   1.1      fvdl #endif
   1277   1.1      fvdl 
   1278   1.1      fvdl 	buffer = malloc(RPC_BUF_MAX);
   1279   1.1      fvdl 	if (buffer == NULL)
   1280   1.1      fvdl 		goto done;
   1281   1.1      fvdl 
   1282   1.1      fvdl 	do {
   1283  1.20  christos 		fromlen = sizeof(ss);
   1284   1.1      fvdl 		inlen = recvfrom(fd, buffer, RPC_BUF_MAX, 0,
   1285   1.1      fvdl 			    (struct sockaddr *)&ss, &fromlen);
   1286   1.1      fvdl 	} while (inlen < 0 && errno == EINTR);
   1287   1.6      fvdl 	if (inlen < 0) {
   1288   1.1      fvdl 		if (debugging)
   1289   1.1      fvdl 			fprintf(stderr,
   1290   1.6      fvdl 	"handle_reply:  recvfrom returned %d, errno %d\n", inlen, errno);
   1291   1.1      fvdl 		goto done;
   1292   1.1      fvdl 	}
   1293   1.1      fvdl 
   1294   1.1      fvdl 	reply_msg.acpted_rply.ar_verf = _null_auth;
   1295   1.1      fvdl 	reply_msg.acpted_rply.ar_results.where = 0;
   1296   1.1      fvdl 	reply_msg.acpted_rply.ar_results.proc = (xdrproc_t) xdr_void;
   1297   1.1      fvdl 
   1298   1.1      fvdl 	xdrmem_create(&reply_xdrs, buffer, (u_int)inlen, XDR_DECODE);
   1299   1.1      fvdl 	if (!xdr_replymsg(&reply_xdrs, &reply_msg)) {
   1300   1.1      fvdl 		if (debugging)
   1301   1.1      fvdl 			(void) fprintf(stderr,
   1302   1.1      fvdl 				"handle_reply:  xdr_replymsg failed\n");
   1303   1.1      fvdl 		goto done;
   1304   1.1      fvdl 	}
   1305   1.1      fvdl 	fi = forward_find(reply_msg.rm_xid);
   1306   1.1      fvdl #ifdef	SVC_RUN_DEBUG
   1307   1.1      fvdl 	if (debugging) {
   1308   1.1      fvdl 		fprintf(stderr, "handle_reply:  reply xid: %d fi addr: %p\n",
   1309   1.1      fvdl 			reply_msg.rm_xid, fi);
   1310   1.1      fvdl 	}
   1311   1.1      fvdl #endif
   1312   1.1      fvdl 	if (fi == NULL) {
   1313   1.1      fvdl 		goto done;
   1314   1.1      fvdl 	}
   1315   1.1      fvdl 	_seterr_reply(&reply_msg, &reply_error);
   1316   1.1      fvdl 	if (reply_error.re_status != RPC_SUCCESS) {
   1317   1.1      fvdl 		if (debugging)
   1318   1.1      fvdl 			(void) fprintf(stderr, "handle_reply:  %s\n",
   1319   1.1      fvdl 				clnt_sperrno(reply_error.re_status));
   1320   1.1      fvdl 		send_svcsyserr(xprt, fi);
   1321   1.1      fvdl 		goto done;
   1322   1.1      fvdl 	}
   1323   1.1      fvdl 	pos = XDR_GETPOS(&reply_xdrs);
   1324   1.1      fvdl 	len = inlen - pos;
   1325   1.1      fvdl 	a.rmt_args.args = &buffer[pos];
   1326   1.1      fvdl 	a.rmt_args.arglen = len;
   1327   1.1      fvdl 	a.rmt_uaddr = fi->uaddr;
   1328   1.1      fvdl 	a.rmt_localvers = fi->versnum;
   1329   1.1      fvdl 
   1330   1.1      fvdl 	xprt_set_caller(xprt, fi);
   1331   1.1      fvdl #ifdef	SVC_RUN_DEBUG
   1332   1.1      fvdl 	uaddr =	taddr2uaddr(rpcbind_get_conf("udp"),
   1333   1.1      fvdl 				    svc_getrpccaller(xprt));
   1334   1.1      fvdl 	if (debugging) {
   1335   1.1      fvdl 		fprintf(stderr, "handle_reply:  forwarding address %s to %s\n",
   1336  1.12  christos 			a.rmt_uaddr, uaddr ? uaddr : rpcbind_unknown);
   1337   1.1      fvdl 	}
   1338   1.1      fvdl 	if (uaddr)
   1339  1.20  christos 		free(uaddr);
   1340   1.1      fvdl #endif
   1341   1.1      fvdl 	svc_sendreply(xprt, (xdrproc_t) xdr_rmtcall_result, (char *) &a);
   1342   1.1      fvdl done:
   1343   1.4      fvdl 	if (buffer)
   1344   1.4      fvdl 		free(buffer);
   1345   1.4      fvdl 
   1346   1.1      fvdl 	if (reply_msg.rm_xid == 0) {
   1347   1.1      fvdl #ifdef	SVC_RUN_DEBUG
   1348   1.1      fvdl 	if (debugging) {
   1349   1.1      fvdl 		fprintf(stderr, "handle_reply:  NULL xid on exit!\n");
   1350   1.1      fvdl 	}
   1351   1.1      fvdl #endif
   1352   1.1      fvdl 	} else
   1353   1.1      fvdl 		(void) free_slot_by_xid(reply_msg.rm_xid);
   1354   1.1      fvdl 	return;
   1355   1.1      fvdl }
   1356   1.1      fvdl 
   1357   1.1      fvdl static void
   1358   1.1      fvdl find_versions(rpcprog_t prog, char *netid, rpcvers_t *lowvp, rpcvers_t *highvp)
   1359   1.1      fvdl {
   1360  1.17  christos 	rpcblist_ptr rbl;
   1361  1.14     lukem 	rpcvers_t lowv = 0;
   1362  1.14     lukem 	rpcvers_t highv = 0;
   1363   1.1      fvdl 
   1364   1.1      fvdl 	for (rbl = list_rbl; rbl != NULL; rbl = rbl->rpcb_next) {
   1365   1.1      fvdl 		if ((rbl->rpcb_map.r_prog != prog) ||
   1366   1.1      fvdl 		    ((rbl->rpcb_map.r_netid != NULL) &&
   1367   1.1      fvdl 			(strcasecmp(rbl->rpcb_map.r_netid, netid) != 0)))
   1368   1.1      fvdl 			continue;
   1369   1.1      fvdl 		if (lowv == 0) {
   1370   1.1      fvdl 			highv = rbl->rpcb_map.r_vers;
   1371   1.1      fvdl 			lowv = highv;
   1372   1.1      fvdl 		} else if (rbl->rpcb_map.r_vers < lowv) {
   1373   1.1      fvdl 			lowv = rbl->rpcb_map.r_vers;
   1374   1.1      fvdl 		} else if (rbl->rpcb_map.r_vers > highv) {
   1375   1.1      fvdl 			highv = rbl->rpcb_map.r_vers;
   1376   1.1      fvdl 		}
   1377   1.1      fvdl 	}
   1378   1.1      fvdl 	*lowvp = lowv;
   1379   1.1      fvdl 	*highvp = highv;
   1380   1.1      fvdl 	return;
   1381   1.1      fvdl }
   1382   1.1      fvdl 
   1383   1.1      fvdl /*
   1384   1.1      fvdl  * returns the item with the given program, version number and netid.
   1385   1.1      fvdl  * If that version number is not found, it returns the item with that
   1386   1.1      fvdl  * program number, so that address is now returned to the caller. The
   1387   1.1      fvdl  * caller when makes a call to this program, version number, the call
   1388   1.1      fvdl  * will fail and it will return with PROGVERS_MISMATCH. The user can
   1389   1.1      fvdl  * then determine the highest and the lowest version number for this
   1390   1.1      fvdl  * program using clnt_geterr() and use those program version numbers.
   1391   1.1      fvdl  *
   1392   1.1      fvdl  * Returns the RPCBLIST for the given prog, vers and netid
   1393   1.1      fvdl  */
   1394   1.1      fvdl static rpcblist_ptr
   1395   1.1      fvdl find_service(rpcprog_t prog, rpcvers_t vers, char *netid)
   1396   1.1      fvdl {
   1397  1.17  christos 	rpcblist_ptr hit = NULL;
   1398  1.17  christos 	rpcblist_ptr rbl;
   1399   1.1      fvdl 
   1400   1.1      fvdl 	for (rbl = list_rbl; rbl != NULL; rbl = rbl->rpcb_next) {
   1401   1.1      fvdl 		if ((rbl->rpcb_map.r_prog != prog) ||
   1402   1.1      fvdl 		    ((rbl->rpcb_map.r_netid != NULL) &&
   1403   1.1      fvdl 			(strcasecmp(rbl->rpcb_map.r_netid, netid) != 0)))
   1404   1.1      fvdl 			continue;
   1405   1.1      fvdl 		hit = rbl;
   1406   1.1      fvdl 		if (rbl->rpcb_map.r_vers == vers)
   1407   1.1      fvdl 			break;
   1408   1.1      fvdl 	}
   1409   1.1      fvdl 	return (hit);
   1410   1.1      fvdl }
   1411   1.1      fvdl 
   1412   1.1      fvdl /*
   1413   1.1      fvdl  * Copies the name associated with the uid of the caller and returns
   1414   1.1      fvdl  * a pointer to it.  Similar to getwd().
   1415   1.1      fvdl  */
   1416   1.1      fvdl static char *
   1417   1.1      fvdl getowner(SVCXPRT *transp, char *owner, size_t ownersize)
   1418   1.1      fvdl {
   1419   1.1      fvdl 	struct sockcred *sc;
   1420   1.1      fvdl 
   1421   1.1      fvdl 	sc = __svc_getcallercreds(transp);
   1422   1.1      fvdl 	if (sc == NULL)
   1423  1.12  christos 		strlcpy(owner, rpcbind_unknown, ownersize);
   1424   1.1      fvdl 	else if (sc->sc_uid == 0)
   1425  1.12  christos 		strlcpy(owner, rpcbind_superuser, ownersize);
   1426   1.1      fvdl 	else
   1427   1.1      fvdl 		snprintf(owner, ownersize, "%d", sc->sc_uid);
   1428   1.1      fvdl 
   1429   1.1      fvdl 	return owner;
   1430   1.1      fvdl }
   1431   1.1      fvdl 
   1432   1.1      fvdl #ifdef PORTMAP
   1433   1.1      fvdl /*
   1434   1.1      fvdl  * Add this to the pmap list only if it is UDP or TCP.
   1435   1.1      fvdl  */
   1436   1.1      fvdl static int
   1437   1.1      fvdl add_pmaplist(RPCB *arg)
   1438   1.1      fvdl {
   1439   1.1      fvdl 	struct pmap pmap;
   1440   1.1      fvdl 	struct pmaplist *pml;
   1441   1.1      fvdl 	int h1, h2, h3, h4, p1, p2;
   1442   1.1      fvdl 
   1443   1.1      fvdl 	if (strcmp(arg->r_netid, udptrans) == 0) {
   1444   1.1      fvdl 		/* It is UDP! */
   1445   1.1      fvdl 		pmap.pm_prot = IPPROTO_UDP;
   1446   1.1      fvdl 	} else if (strcmp(arg->r_netid, tcptrans) == 0) {
   1447   1.1      fvdl 		/* It is TCP */
   1448   1.1      fvdl 		pmap.pm_prot = IPPROTO_TCP;
   1449   1.1      fvdl 	} else
   1450  1.20  christos 		/* Not an IP protocol */
   1451   1.1      fvdl 		return (0);
   1452   1.1      fvdl 
   1453   1.1      fvdl 	/* interpret the universal address for TCP/IP */
   1454   1.1      fvdl 	if (sscanf(arg->r_addr, "%d.%d.%d.%d.%d.%d",
   1455   1.1      fvdl 		&h1, &h2, &h3, &h4, &p1, &p2) != 6)
   1456   1.1      fvdl 		return (0);
   1457   1.1      fvdl 	pmap.pm_port = ((p1 & 0xff) << 8) + (p2 & 0xff);
   1458   1.1      fvdl 	pmap.pm_prog = arg->r_prog;
   1459   1.1      fvdl 	pmap.pm_vers = arg->r_vers;
   1460   1.1      fvdl 	/*
   1461   1.1      fvdl 	 * add to END of list
   1462   1.1      fvdl 	 */
   1463  1.20  christos 	pml = malloc(sizeof(struct pmaplist));
   1464   1.1      fvdl 	if (pml == NULL) {
   1465   1.1      fvdl 		(void) syslog(LOG_ERR, "rpcbind: no memory!\n");
   1466   1.1      fvdl 		return (1);
   1467   1.1      fvdl 	}
   1468   1.1      fvdl 	pml->pml_map = pmap;
   1469   1.1      fvdl 	pml->pml_next = NULL;
   1470   1.1      fvdl 	if (list_pml == NULL) {
   1471   1.1      fvdl 		list_pml = pml;
   1472   1.1      fvdl 	} else {
   1473   1.1      fvdl 		struct pmaplist *fnd;
   1474   1.1      fvdl 
   1475   1.1      fvdl 		/* Attach to the end of the list */
   1476   1.1      fvdl 		for (fnd = list_pml; fnd->pml_next; fnd = fnd->pml_next)
   1477   1.1      fvdl 			;
   1478   1.1      fvdl 		fnd->pml_next = pml;
   1479   1.1      fvdl 	}
   1480   1.1      fvdl 	return (0);
   1481   1.1      fvdl }
   1482   1.1      fvdl 
   1483   1.1      fvdl /*
   1484   1.1      fvdl  * Delete this from the pmap list only if it is UDP or TCP.
   1485   1.1      fvdl  */
   1486   1.1      fvdl static int
   1487   1.1      fvdl del_pmaplist(RPCB *arg)
   1488   1.1      fvdl {
   1489   1.1      fvdl 	struct pmaplist *pml;
   1490   1.1      fvdl 	struct pmaplist *prevpml, *fnd;
   1491  1.14     lukem 	unsigned long prot;
   1492   1.1      fvdl 
   1493   1.1      fvdl 	if (strcmp(arg->r_netid, udptrans) == 0) {
   1494   1.1      fvdl 		/* It is UDP! */
   1495   1.1      fvdl 		prot = IPPROTO_UDP;
   1496   1.1      fvdl 	} else if (strcmp(arg->r_netid, tcptrans) == 0) {
   1497   1.1      fvdl 		/* It is TCP */
   1498   1.1      fvdl 		prot = IPPROTO_TCP;
   1499  1.10      fvdl 	} else if (arg->r_netid[0] == 0) {
   1500   1.1      fvdl 		prot = 0;	/* Remove all occurrences */
   1501   1.1      fvdl 	} else {
   1502  1.20  christos 		/* Not an IP protocol */
   1503   1.1      fvdl 		return (0);
   1504   1.1      fvdl 	}
   1505   1.1      fvdl 	for (prevpml = NULL, pml = list_pml; pml; /* cstyle */) {
   1506   1.1      fvdl 		if ((pml->pml_map.pm_prog != arg->r_prog) ||
   1507   1.1      fvdl 			(pml->pml_map.pm_vers != arg->r_vers) ||
   1508   1.1      fvdl 			(prot && (pml->pml_map.pm_prot != prot))) {
   1509   1.1      fvdl 			/* both pml & prevpml move forwards */
   1510   1.1      fvdl 			prevpml = pml;
   1511   1.1      fvdl 			pml = pml->pml_next;
   1512   1.1      fvdl 			continue;
   1513   1.1      fvdl 		}
   1514   1.1      fvdl 		/* found it; pml moves forward, prevpml stays */
   1515   1.1      fvdl 		fnd = pml;
   1516   1.1      fvdl 		pml = pml->pml_next;
   1517   1.1      fvdl 		if (prevpml == NULL)
   1518   1.1      fvdl 			list_pml = pml;
   1519   1.1      fvdl 		else
   1520   1.1      fvdl 			prevpml->pml_next = pml;
   1521  1.20  christos 		free(fnd);
   1522   1.1      fvdl 	}
   1523   1.1      fvdl 	return (0);
   1524   1.1      fvdl }
   1525   1.1      fvdl #endif /* PORTMAP */
   1526