Home | History | Annotate | Line # | Download | only in rpcbind
rpcbind.c revision 1.8
      1  1.8  christos /*	$NetBSD: rpcbind.c,v 1.8 2006/05/25 02:35:32 christos Exp $	*/
      2  1.1      fvdl 
      3  1.1      fvdl /*
      4  1.1      fvdl  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
      5  1.1      fvdl  * unrestricted use provided that this legend is included on all tape
      6  1.1      fvdl  * media and as a part of the software program in whole or part.  Users
      7  1.1      fvdl  * may copy or modify Sun RPC without charge, but are not authorized
      8  1.1      fvdl  * to license or distribute it to anyone else except as part of a product or
      9  1.1      fvdl  * program developed by the user.
     10  1.1      fvdl  *
     11  1.1      fvdl  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
     12  1.1      fvdl  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
     13  1.1      fvdl  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
     14  1.1      fvdl  *
     15  1.1      fvdl  * Sun RPC is provided with no support and without any obligation on the
     16  1.1      fvdl  * part of Sun Microsystems, Inc. to assist in its use, correction,
     17  1.1      fvdl  * modification or enhancement.
     18  1.1      fvdl  *
     19  1.1      fvdl  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
     20  1.1      fvdl  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
     21  1.1      fvdl  * OR ANY PART THEREOF.
     22  1.1      fvdl  *
     23  1.1      fvdl  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
     24  1.1      fvdl  * or profits or other special, indirect and consequential damages, even if
     25  1.1      fvdl  * Sun has been advised of the possibility of such damages.
     26  1.1      fvdl  *
     27  1.1      fvdl  * Sun Microsystems, Inc.
     28  1.1      fvdl  * 2550 Garcia Avenue
     29  1.1      fvdl  * Mountain View, California  94043
     30  1.1      fvdl  */
     31  1.1      fvdl /*
     32  1.1      fvdl  * Copyright (c) 1984 - 1991 by Sun Microsystems, Inc.
     33  1.1      fvdl  */
     34  1.1      fvdl 
     35  1.1      fvdl /* #ident	"@(#)rpcbind.c	1.19	94/04/25 SMI" */
     36  1.1      fvdl 
     37  1.1      fvdl #if 0
     38  1.1      fvdl #ifndef lint
     39  1.1      fvdl static	char sccsid[] = "@(#)rpcbind.c 1.35 89/04/21 Copyr 1984 Sun Micro";
     40  1.1      fvdl #endif
     41  1.1      fvdl #endif
     42  1.1      fvdl 
     43  1.1      fvdl /*
     44  1.1      fvdl  * rpcbind.c
     45  1.1      fvdl  * Implements the program, version to address mapping for rpc.
     46  1.1      fvdl  *
     47  1.1      fvdl  */
     48  1.1      fvdl 
     49  1.1      fvdl #include <sys/types.h>
     50  1.1      fvdl #include <sys/stat.h>
     51  1.1      fvdl #include <sys/errno.h>
     52  1.1      fvdl #include <sys/time.h>
     53  1.1      fvdl #include <sys/resource.h>
     54  1.1      fvdl #include <sys/wait.h>
     55  1.1      fvdl #include <sys/signal.h>
     56  1.1      fvdl #include <sys/socket.h>
     57  1.1      fvdl #include <sys/un.h>
     58  1.1      fvdl #include <rpc/rpc.h>
     59  1.1      fvdl #ifdef PORTMAP
     60  1.1      fvdl #include <netinet/in.h>
     61  1.1      fvdl #endif
     62  1.1      fvdl #include <netdb.h>
     63  1.1      fvdl #include <stdio.h>
     64  1.1      fvdl #include <netconfig.h>
     65  1.1      fvdl #include <stdlib.h>
     66  1.1      fvdl #include <unistd.h>
     67  1.1      fvdl #include <syslog.h>
     68  1.1      fvdl #include <err.h>
     69  1.1      fvdl #include <util.h>
     70  1.1      fvdl #include <pwd.h>
     71  1.1      fvdl #include <string.h>
     72  1.1      fvdl #include <errno.h>
     73  1.1      fvdl #include "rpcbind.h"
     74  1.1      fvdl 
     75  1.1      fvdl /* Global variables */
     76  1.1      fvdl int debugging = 0;	/* Tell me what's going on */
     77  1.1      fvdl int doabort = 0;	/* When debugging, do an abort on errors */
     78  1.1      fvdl rpcblist_ptr list_rbl;	/* A list of version 3/4 rpcbind services */
     79  1.1      fvdl 
     80  1.1      fvdl /* who to suid to if -s is given */
     81  1.1      fvdl #define RUN_AS  "daemon"
     82  1.1      fvdl 
     83  1.1      fvdl int runasdaemon = 0;
     84  1.1      fvdl int insecure = 0;
     85  1.1      fvdl int oldstyle_local = 0;
     86  1.1      fvdl int verboselog = 0;
     87  1.1      fvdl 
     88  1.1      fvdl #ifdef WARMSTART
     89  1.1      fvdl /* Local Variable */
     90  1.1      fvdl static int warmstart = 0;	/* Grab a old copy of registrations */
     91  1.1      fvdl #endif
     92  1.1      fvdl 
     93  1.1      fvdl #ifdef PORTMAP
     94  1.1      fvdl struct pmaplist *list_pml;	/* A list of version 2 rpcbind services */
     95  1.1      fvdl char *udptrans;		/* Name of UDP transport */
     96  1.1      fvdl char *tcptrans;		/* Name of TCP transport */
     97  1.1      fvdl char *udp_uaddr;	/* Universal UDP address */
     98  1.1      fvdl char *tcp_uaddr;	/* Universal TCP address */
     99  1.1      fvdl #endif
    100  1.1      fvdl static char servname[] = "rpcbind";
    101  1.1      fvdl static char superuser[] = "superuser";
    102  1.1      fvdl 
    103  1.1      fvdl int main __P((int, char *[]));
    104  1.1      fvdl 
    105  1.1      fvdl static int init_transport __P((struct netconfig *));
    106  1.1      fvdl static void rbllist_add __P((rpcprog_t, rpcvers_t, struct netconfig *,
    107  1.1      fvdl 			     struct netbuf *));
    108  1.1      fvdl static void terminate __P((int));
    109  1.1      fvdl static void parseargs __P((int, char *[]));
    110  1.1      fvdl 
    111  1.1      fvdl int
    112  1.1      fvdl main(int argc, char *argv[])
    113  1.1      fvdl {
    114  1.1      fvdl 	struct netconfig *nconf;
    115  1.1      fvdl 	void *nc_handle;	/* Net config handle */
    116  1.1      fvdl 	struct rlimit rl;
    117  1.3      fvdl 	int maxrec = RPC_MAXDATASIZE;
    118  1.1      fvdl 
    119  1.1      fvdl 	parseargs(argc, argv);
    120  1.1      fvdl 
    121  1.1      fvdl 	getrlimit(RLIMIT_NOFILE, &rl);
    122  1.1      fvdl 	if (rl.rlim_cur < 128) {
    123  1.1      fvdl 		if (rl.rlim_max <= 128)
    124  1.1      fvdl 			rl.rlim_cur = rl.rlim_max;
    125  1.1      fvdl 		else
    126  1.1      fvdl 			rl.rlim_cur = 128;
    127  1.1      fvdl 		setrlimit(RLIMIT_NOFILE, &rl);
    128  1.1      fvdl 	}
    129  1.2     lukem 	openlog("rpcbind", 0, LOG_DAEMON);
    130  1.1      fvdl 	if (geteuid()) { /* This command allowed only to root */
    131  1.1      fvdl 		fprintf(stderr, "Sorry. You are not superuser\n");
    132  1.1      fvdl 		exit(1);
    133  1.1      fvdl 	}
    134  1.1      fvdl 	nc_handle = setnetconfig(); 	/* open netconfig file */
    135  1.1      fvdl 	if (nc_handle == NULL) {
    136  1.1      fvdl 		syslog(LOG_ERR, "could not read /etc/netconfig");
    137  1.1      fvdl 		exit(1);
    138  1.1      fvdl 	}
    139  1.1      fvdl #ifdef PORTMAP
    140  1.1      fvdl 	udptrans = "";
    141  1.1      fvdl 	tcptrans = "";
    142  1.1      fvdl #endif
    143  1.1      fvdl 
    144  1.1      fvdl 	nconf = getnetconfigent("local");
    145  1.1      fvdl 	if (nconf == NULL) {
    146  1.1      fvdl 		syslog(LOG_ERR, "%s: can't find local transport\n", argv[0]);
    147  1.1      fvdl 		exit(1);
    148  1.1      fvdl 	}
    149  1.3      fvdl 
    150  1.3      fvdl 	rpc_control(RPC_SVC_CONNMAXREC_SET, &maxrec);
    151  1.3      fvdl 
    152  1.1      fvdl 	init_transport(nconf);
    153  1.1      fvdl 
    154  1.1      fvdl 	while ((nconf = getnetconfig(nc_handle))) {
    155  1.1      fvdl 		if (nconf->nc_flag & NC_VISIBLE)
    156  1.1      fvdl 			init_transport(nconf);
    157  1.1      fvdl 	}
    158  1.1      fvdl 	endnetconfig(nc_handle);
    159  1.1      fvdl 
    160  1.1      fvdl 	/* catch the usual termination signals for graceful exit */
    161  1.1      fvdl 	(void) signal(SIGCHLD, reap);
    162  1.1      fvdl 	(void) signal(SIGINT, terminate);
    163  1.1      fvdl 	(void) signal(SIGTERM, terminate);
    164  1.1      fvdl 	(void) signal(SIGQUIT, terminate);
    165  1.1      fvdl 	/* ignore others that could get sent */
    166  1.1      fvdl 	(void) signal(SIGPIPE, SIG_IGN);
    167  1.1      fvdl 	(void) signal(SIGHUP, SIG_IGN);
    168  1.1      fvdl 	(void) signal(SIGUSR1, SIG_IGN);
    169  1.1      fvdl 	(void) signal(SIGUSR2, SIG_IGN);
    170  1.1      fvdl #ifdef WARMSTART
    171  1.1      fvdl 	if (warmstart) {
    172  1.1      fvdl 		read_warmstart();
    173  1.1      fvdl 	}
    174  1.1      fvdl #endif
    175  1.1      fvdl 	if (debugging) {
    176  1.1      fvdl 		printf("rpcbind debugging enabled.");
    177  1.1      fvdl 		if (doabort) {
    178  1.1      fvdl 			printf("  Will abort on errors!\n");
    179  1.1      fvdl 		} else {
    180  1.1      fvdl 			printf("\n");
    181  1.1      fvdl 		}
    182  1.1      fvdl 	} else {
    183  1.1      fvdl 		if (daemon(0, 0))
    184  1.1      fvdl 			err(1, "fork failed");
    185  1.1      fvdl 	}
    186  1.1      fvdl 	pidfile(NULL);
    187  1.1      fvdl 
    188  1.1      fvdl 	if (runasdaemon) {
    189  1.1      fvdl 		struct passwd *p;
    190  1.1      fvdl 
    191  1.1      fvdl 		if((p = getpwnam(RUN_AS)) == NULL) {
    192  1.1      fvdl 			syslog(LOG_ERR, "cannot get uid of daemon: %m");
    193  1.1      fvdl 			exit(1);
    194  1.1      fvdl 		}
    195  1.1      fvdl 		if (setuid(p->pw_uid) == -1) {
    196  1.1      fvdl 			syslog(LOG_ERR, "setuid to daemon failed: %m");
    197  1.1      fvdl 			exit(1);
    198  1.1      fvdl 		}
    199  1.1      fvdl 	}
    200  1.1      fvdl 
    201  1.1      fvdl 	network_init();
    202  1.1      fvdl 
    203  1.1      fvdl 	my_svc_run();
    204  1.1      fvdl 	syslog(LOG_ERR, "svc_run returned unexpectedly");
    205  1.1      fvdl 	rpcbind_abort();
    206  1.1      fvdl 	/* NOTREACHED */
    207  1.1      fvdl 
    208  1.1      fvdl 	return 0;
    209  1.1      fvdl }
    210  1.1      fvdl 
    211  1.1      fvdl /*
    212  1.1      fvdl  * Adds the entry into the rpcbind database.
    213  1.1      fvdl  * If PORTMAP, then for UDP and TCP, it adds the entries for version 2 also
    214  1.1      fvdl  * Returns 0 if succeeds, else fails
    215  1.1      fvdl  */
    216  1.1      fvdl static int
    217  1.1      fvdl init_transport(struct netconfig *nconf)
    218  1.1      fvdl {
    219  1.1      fvdl 	int fd;
    220  1.1      fvdl 	struct t_bind taddr;
    221  1.1      fvdl 	struct addrinfo hints, *res = NULL;
    222  1.1      fvdl 	struct __rpc_sockinfo si;
    223  1.1      fvdl 	SVCXPRT	*my_xprt;
    224  1.1      fvdl 	int status;	/* bound checking ? */
    225  1.1      fvdl 	int aicode;
    226  1.1      fvdl 	int addrlen;
    227  1.1      fvdl 	struct sockaddr *sa;
    228  1.1      fvdl 	struct sockaddr_un sun;
    229  1.6      fvdl 	const int one = 1;
    230  1.1      fvdl 
    231  1.1      fvdl 	if ((nconf->nc_semantics != NC_TPI_CLTS) &&
    232  1.1      fvdl 		(nconf->nc_semantics != NC_TPI_COTS) &&
    233  1.1      fvdl 		(nconf->nc_semantics != NC_TPI_COTS_ORD))
    234  1.1      fvdl 		return (1);	/* not my type */
    235  1.1      fvdl #ifdef ND_DEBUG
    236  1.1      fvdl 	if (debugging) {
    237  1.1      fvdl 		int i;
    238  1.1      fvdl 		char **s;
    239  1.1      fvdl 
    240  1.1      fvdl 		(void) fprintf(stderr, "%s: %ld lookup routines :\n",
    241  1.1      fvdl 			nconf->nc_netid, nconf->nc_nlookups);
    242  1.1      fvdl 		for (i = 0, s = nconf->nc_lookups; i < nconf->nc_nlookups;
    243  1.1      fvdl 		     i++, s++)
    244  1.1      fvdl 			fprintf(stderr, "[%d] - %s\n", i, *s);
    245  1.1      fvdl 	}
    246  1.1      fvdl #endif
    247  1.1      fvdl 
    248  1.1      fvdl 	/*
    249  1.1      fvdl 	 * XXX - using RPC library internal functions.
    250  1.1      fvdl 	 */
    251  1.1      fvdl 	if ((fd = __rpc_nconf2fd(nconf)) < 0) {
    252  1.7    martin 		int non_fatal = errno == EPROTONOSUPPORT;
    253  1.7    martin 		syslog(non_fatal?LOG_DEBUG:LOG_ERR, "cannot create socket for %s", nconf->nc_netid);
    254  1.1      fvdl 		return (1);
    255  1.1      fvdl 	}
    256  1.1      fvdl 
    257  1.1      fvdl 	if (!__rpc_nconf2sockinfo(nconf, &si)) {
    258  1.1      fvdl 		syslog(LOG_ERR, "cannot get information for %s",
    259  1.1      fvdl 		    nconf->nc_netid);
    260  1.1      fvdl 		return (1);
    261  1.1      fvdl 	}
    262  1.6      fvdl 
    263  1.6      fvdl 	if (si.si_af == AF_INET6) {
    264  1.6      fvdl 		/*
    265  1.6      fvdl 		 * We're doing host-based access checks here, so don't allow
    266  1.6      fvdl 		 * v4-in-v6 to confuse things.
    267  1.6      fvdl 		 */
    268  1.6      fvdl 		if (setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &one,
    269  1.6      fvdl 		    sizeof one) < 0) {
    270  1.6      fvdl 			syslog(LOG_ERR, "can't make socket ipv6 only");
    271  1.6      fvdl 			return (1);
    272  1.6      fvdl 		}
    273  1.6      fvdl 	}
    274  1.6      fvdl 
    275  1.1      fvdl 
    276  1.1      fvdl 	if (!strcmp(nconf->nc_netid, "local")) {
    277  1.1      fvdl 		memset(&sun, 0, sizeof sun);
    278  1.1      fvdl 		sun.sun_family = AF_LOCAL;
    279  1.1      fvdl 		unlink(_PATH_RPCBINDSOCK);
    280  1.4    itojun 		strlcpy(sun.sun_path, _PATH_RPCBINDSOCK, sizeof(sun.sun_path));
    281  1.1      fvdl 		sun.sun_len = SUN_LEN(&sun);
    282  1.1      fvdl 		addrlen = sizeof (struct sockaddr_un);
    283  1.1      fvdl 		sa = (struct sockaddr *)&sun;
    284  1.1      fvdl 	} else {
    285  1.1      fvdl 		/* Get rpcbind's address on this transport */
    286  1.1      fvdl 
    287  1.1      fvdl 		memset(&hints, 0, sizeof hints);
    288  1.1      fvdl 		hints.ai_flags = AI_PASSIVE;
    289  1.1      fvdl 		hints.ai_family = si.si_af;
    290  1.1      fvdl 		hints.ai_socktype = si.si_socktype;
    291  1.1      fvdl 		hints.ai_protocol = si.si_proto;
    292  1.1      fvdl 		if ((aicode = getaddrinfo(NULL, servname, &hints, &res)) != 0) {
    293  1.1      fvdl 			syslog(LOG_ERR, "cannot get local address for %s: %s",
    294  1.1      fvdl 			    nconf->nc_netid, gai_strerror(aicode));
    295  1.1      fvdl 			return 1;
    296  1.1      fvdl 		}
    297  1.1      fvdl 		addrlen = res->ai_addrlen;
    298  1.1      fvdl 		sa = (struct sockaddr *)res->ai_addr;
    299  1.1      fvdl 	}
    300  1.1      fvdl 
    301  1.1      fvdl 	if (bind(fd, sa, addrlen) < 0) {
    302  1.1      fvdl 		syslog(LOG_ERR, "cannot bind %s: %m", nconf->nc_netid);
    303  1.1      fvdl 		if (res != NULL)
    304  1.1      fvdl 			freeaddrinfo(res);
    305  1.1      fvdl 		return 1;
    306  1.1      fvdl 	}
    307  1.1      fvdl 
    308  1.1      fvdl 	/* Copy the address */
    309  1.1      fvdl 	taddr.addr.len = taddr.addr.maxlen = addrlen;
    310  1.1      fvdl 	taddr.addr.buf = malloc(addrlen);
    311  1.1      fvdl 	if (taddr.addr.buf == NULL) {
    312  1.1      fvdl 		syslog(LOG_ERR, "cannot allocate memory for %s address",
    313  1.1      fvdl 		    nconf->nc_netid);
    314  1.1      fvdl 		if (res != NULL)
    315  1.1      fvdl 			freeaddrinfo(res);
    316  1.1      fvdl 		return 1;
    317  1.1      fvdl 	}
    318  1.1      fvdl 	memcpy(taddr.addr.buf, sa, addrlen);
    319  1.1      fvdl #ifdef ND_DEBUG
    320  1.1      fvdl 	if (debugging) {
    321  1.1      fvdl 		/* for debugging print out our universal address */
    322  1.1      fvdl 		char *uaddr;
    323  1.1      fvdl 		struct netbuf nb;
    324  1.1      fvdl 
    325  1.1      fvdl 		nb.buf = sa;
    326  1.1      fvdl 		nb.len = nb.maxlen = sa->sa_len;
    327  1.1      fvdl 		uaddr = taddr2uaddr(nconf, &nb);
    328  1.1      fvdl 		(void) fprintf(stderr, "rpcbind : my address is %s\n", uaddr);
    329  1.1      fvdl 		(void) free(uaddr);
    330  1.1      fvdl 	}
    331  1.1      fvdl #endif
    332  1.1      fvdl 
    333  1.1      fvdl 	if (res != NULL)
    334  1.1      fvdl 		freeaddrinfo(res);
    335  1.1      fvdl 
    336  1.1      fvdl 	if (nconf->nc_semantics != NC_TPI_CLTS)
    337  1.1      fvdl 		listen(fd, SOMAXCONN);
    338  1.3      fvdl 
    339  1.3      fvdl 	my_xprt = (SVCXPRT *)svc_tli_create(fd, nconf, &taddr, RPC_MAXDATASIZE,
    340  1.3      fvdl 	    RPC_MAXDATASIZE);
    341  1.1      fvdl 	if (my_xprt == (SVCXPRT *)NULL) {
    342  1.1      fvdl 		syslog(LOG_ERR, "%s: could not create service",
    343  1.1      fvdl 				nconf->nc_netid);
    344  1.1      fvdl 		goto error;
    345  1.1      fvdl 	}
    346  1.1      fvdl 
    347  1.1      fvdl #ifdef PORTMAP
    348  1.1      fvdl 	/*
    349  1.1      fvdl 	 * Register both the versions for tcp/ip, udp/ip and local.
    350  1.1      fvdl 	 */
    351  1.1      fvdl 	if ((strcmp(nconf->nc_protofmly, NC_INET) == 0 &&
    352  1.1      fvdl 		(strcmp(nconf->nc_proto, NC_TCP) == 0 ||
    353  1.1      fvdl 		strcmp(nconf->nc_proto, NC_UDP) == 0)) ||
    354  1.1      fvdl 		strcmp(nconf->nc_netid, "local") == 0) {
    355  1.1      fvdl 		struct pmaplist *pml;
    356  1.1      fvdl 
    357  1.1      fvdl 		if (!svc_register(my_xprt, PMAPPROG, PMAPVERS,
    358  1.5      fvdl 			pmap_service, 0)) {
    359  1.1      fvdl 			syslog(LOG_ERR, "could not register on %s",
    360  1.1      fvdl 					nconf->nc_netid);
    361  1.1      fvdl 			goto error;
    362  1.1      fvdl 		}
    363  1.8  christos 		pml = malloc(sizeof (struct pmaplist));
    364  1.8  christos 		if (pml == NULL) {
    365  1.1      fvdl 			syslog(LOG_ERR, "no memory!");
    366  1.1      fvdl 			exit(1);
    367  1.1      fvdl 		}
    368  1.1      fvdl 		pml->pml_map.pm_prog = PMAPPROG;
    369  1.1      fvdl 		pml->pml_map.pm_vers = PMAPVERS;
    370  1.1      fvdl 		pml->pml_map.pm_port = PMAPPORT;
    371  1.1      fvdl 		if (strcmp(nconf->nc_proto, NC_TCP) == 0) {
    372  1.1      fvdl 			if (tcptrans[0]) {
    373  1.1      fvdl 				syslog(LOG_ERR,
    374  1.1      fvdl 				"cannot have more than one TCP transport");
    375  1.8  christos 				free(pml);
    376  1.1      fvdl 				goto error;
    377  1.1      fvdl 			}
    378  1.1      fvdl 			tcptrans = strdup(nconf->nc_netid);
    379  1.1      fvdl 			pml->pml_map.pm_prot = IPPROTO_TCP;
    380  1.1      fvdl 
    381  1.1      fvdl 			/* Let's snarf the universal address */
    382  1.1      fvdl 			/* "h1.h2.h3.h4.p1.p2" */
    383  1.1      fvdl 			tcp_uaddr = taddr2uaddr(nconf, &taddr.addr);
    384  1.1      fvdl 		} else if (strcmp(nconf->nc_proto, NC_UDP) == 0) {
    385  1.1      fvdl 			if (udptrans[0]) {
    386  1.1      fvdl 				syslog(LOG_ERR,
    387  1.1      fvdl 				"cannot have more than one UDP transport");
    388  1.1      fvdl 				goto error;
    389  1.1      fvdl 			}
    390  1.1      fvdl 			udptrans = strdup(nconf->nc_netid);
    391  1.1      fvdl 			pml->pml_map.pm_prot = IPPROTO_UDP;
    392  1.1      fvdl 
    393  1.1      fvdl 			/* Let's snarf the universal address */
    394  1.1      fvdl 			/* "h1.h2.h3.h4.p1.p2" */
    395  1.1      fvdl 			udp_uaddr = taddr2uaddr(nconf, &taddr.addr);
    396  1.1      fvdl 		}
    397  1.1      fvdl 		pml->pml_next = list_pml;
    398  1.1      fvdl 		list_pml = pml;
    399  1.1      fvdl 
    400  1.1      fvdl 		/* Add version 3 information */
    401  1.8  christos 		pml = malloc(sizeof (struct pmaplist));
    402  1.8  christos 		if (pml == NULL) {
    403  1.1      fvdl 			syslog(LOG_ERR, "no memory!");
    404  1.1      fvdl 			exit(1);
    405  1.1      fvdl 		}
    406  1.1      fvdl 		pml->pml_map = list_pml->pml_map;
    407  1.1      fvdl 		pml->pml_map.pm_vers = RPCBVERS;
    408  1.1      fvdl 		pml->pml_next = list_pml;
    409  1.1      fvdl 		list_pml = pml;
    410  1.1      fvdl 
    411  1.1      fvdl 		/* Add version 4 information */
    412  1.8  christos 		pml = malloc(sizeof (struct pmaplist));
    413  1.8  christos 		if (pml == NULL) {
    414  1.1      fvdl 			syslog(LOG_ERR, "no memory!");
    415  1.1      fvdl 			exit(1);
    416  1.1      fvdl 		}
    417  1.1      fvdl 		pml->pml_map = list_pml->pml_map;
    418  1.1      fvdl 		pml->pml_map.pm_vers = RPCBVERS4;
    419  1.1      fvdl 		pml->pml_next = list_pml;
    420  1.1      fvdl 		list_pml = pml;
    421  1.1      fvdl 
    422  1.1      fvdl 		/* Also add version 2 stuff to rpcbind list */
    423  1.1      fvdl 		rbllist_add(PMAPPROG, PMAPVERS, nconf, &taddr.addr);
    424  1.1      fvdl 	}
    425  1.1      fvdl #endif
    426  1.1      fvdl 
    427  1.1      fvdl 	/* version 3 registration */
    428  1.1      fvdl 	if (!svc_reg(my_xprt, RPCBPROG, RPCBVERS, rpcb_service_3, NULL)) {
    429  1.1      fvdl 		syslog(LOG_ERR, "could not register %s version 3",
    430  1.1      fvdl 				nconf->nc_netid);
    431  1.1      fvdl 		goto error;
    432  1.1      fvdl 	}
    433  1.1      fvdl 	rbllist_add(RPCBPROG, RPCBVERS, nconf, &taddr.addr);
    434  1.1      fvdl 
    435  1.1      fvdl 	/* version 4 registration */
    436  1.1      fvdl 	if (!svc_reg(my_xprt, RPCBPROG, RPCBVERS4, rpcb_service_4, NULL)) {
    437  1.1      fvdl 		syslog(LOG_ERR, "could not register %s version 4",
    438  1.1      fvdl 				nconf->nc_netid);
    439  1.1      fvdl 		goto error;
    440  1.1      fvdl 	}
    441  1.1      fvdl 	rbllist_add(RPCBPROG, RPCBVERS4, nconf, &taddr.addr);
    442  1.1      fvdl 
    443  1.1      fvdl 	/* decide if bound checking works for this transport */
    444  1.1      fvdl 	status = add_bndlist(nconf, &taddr.addr);
    445  1.1      fvdl #ifdef BIND_DEBUG
    446  1.1      fvdl 	if (debugging) {
    447  1.1      fvdl 		if (status < 0) {
    448  1.1      fvdl 			fprintf(stderr, "Error in finding bind status for %s\n",
    449  1.1      fvdl 				nconf->nc_netid);
    450  1.1      fvdl 		} else if (status == 0) {
    451  1.1      fvdl 			fprintf(stderr, "check binding for %s\n",
    452  1.1      fvdl 				nconf->nc_netid);
    453  1.1      fvdl 		} else if (status > 0) {
    454  1.1      fvdl 			fprintf(stderr, "No check binding for %s\n",
    455  1.1      fvdl 				nconf->nc_netid);
    456  1.1      fvdl 		}
    457  1.1      fvdl 	}
    458  1.1      fvdl #endif
    459  1.1      fvdl 	/*
    460  1.1      fvdl 	 * rmtcall only supported on CLTS transports for now.
    461  1.1      fvdl 	 */
    462  1.1      fvdl 	if (nconf->nc_semantics == NC_TPI_CLTS) {
    463  1.1      fvdl 		status = create_rmtcall_fd(nconf);
    464  1.1      fvdl 
    465  1.1      fvdl #ifdef BIND_DEBUG
    466  1.1      fvdl 		if (debugging) {
    467  1.1      fvdl 			if (status < 0) {
    468  1.1      fvdl 				fprintf(stderr,
    469  1.1      fvdl 				    "Could not create rmtcall fd for %s\n",
    470  1.1      fvdl 					nconf->nc_netid);
    471  1.1      fvdl 			} else {
    472  1.1      fvdl 				fprintf(stderr, "rmtcall fd for %s is %d\n",
    473  1.1      fvdl 					nconf->nc_netid, status);
    474  1.1      fvdl 			}
    475  1.1      fvdl 		}
    476  1.1      fvdl #endif
    477  1.1      fvdl 	}
    478  1.1      fvdl 	return (0);
    479  1.1      fvdl error:
    480  1.1      fvdl 	close(fd);
    481  1.1      fvdl 	return (1);
    482  1.1      fvdl }
    483  1.1      fvdl 
    484  1.1      fvdl static void
    485  1.1      fvdl rbllist_add(rpcprog_t prog, rpcvers_t vers, struct netconfig *nconf,
    486  1.1      fvdl 	    struct netbuf *addr)
    487  1.1      fvdl {
    488  1.1      fvdl 	rpcblist_ptr rbl;
    489  1.1      fvdl 
    490  1.8  christos 	rbl = malloc(sizeof(rpcblist));
    491  1.8  christos 	if (rbl == NULL) {
    492  1.1      fvdl 		syslog(LOG_ERR, "no memory!");
    493  1.1      fvdl 		exit(1);
    494  1.1      fvdl 	}
    495  1.1      fvdl 
    496  1.1      fvdl 	rbl->rpcb_map.r_prog = prog;
    497  1.1      fvdl 	rbl->rpcb_map.r_vers = vers;
    498  1.1      fvdl 	rbl->rpcb_map.r_netid = strdup(nconf->nc_netid);
    499  1.1      fvdl 	rbl->rpcb_map.r_addr = taddr2uaddr(nconf, addr);
    500  1.1      fvdl 	rbl->rpcb_map.r_owner = strdup(superuser);
    501  1.1      fvdl 	rbl->rpcb_next = list_rbl;	/* Attach to global list */
    502  1.1      fvdl 	list_rbl = rbl;
    503  1.1      fvdl }
    504  1.1      fvdl 
    505  1.1      fvdl /*
    506  1.1      fvdl  * Catch the signal and die
    507  1.1      fvdl  */
    508  1.1      fvdl static void
    509  1.1      fvdl terminate(int dummy)
    510  1.1      fvdl {
    511  1.1      fvdl #ifdef WARMSTART
    512  1.1      fvdl 	syslog(LOG_ERR,
    513  1.1      fvdl 		"rpcbind terminating on signal. Restart with \"rpcbind -w\"");
    514  1.1      fvdl 	write_warmstart();	/* Dump yourself */
    515  1.1      fvdl #endif
    516  1.1      fvdl 	exit(2);
    517  1.1      fvdl }
    518  1.1      fvdl 
    519  1.1      fvdl void
    520  1.1      fvdl rpcbind_abort()
    521  1.1      fvdl {
    522  1.1      fvdl #ifdef WARMSTART
    523  1.1      fvdl 	write_warmstart();	/* Dump yourself */
    524  1.1      fvdl #endif
    525  1.1      fvdl 	abort();
    526  1.1      fvdl }
    527  1.1      fvdl 
    528  1.1      fvdl /* get command line options */
    529  1.1      fvdl static void
    530  1.1      fvdl parseargs(int argc, char *argv[])
    531  1.1      fvdl {
    532  1.1      fvdl 	int c;
    533  1.1      fvdl 
    534  1.1      fvdl 	while ((c = getopt(argc, argv, "dwailLs")) != -1) {
    535  1.1      fvdl 		switch (c) {
    536  1.1      fvdl 		case 'a':
    537  1.1      fvdl 			doabort = 1;	/* when debugging, do an abort on */
    538  1.1      fvdl 			break;		/* errors; for rpcbind developers */
    539  1.1      fvdl 					/* only! */
    540  1.1      fvdl 		case 'd':
    541  1.1      fvdl 			debugging = 1;
    542  1.1      fvdl 			break;
    543  1.1      fvdl 		case 'i':
    544  1.1      fvdl 			insecure = 1;
    545  1.1      fvdl 			break;
    546  1.1      fvdl 		case 'L':
    547  1.1      fvdl 			oldstyle_local = 1;
    548  1.1      fvdl 			break;
    549  1.1      fvdl 		case 'l':
    550  1.1      fvdl 			verboselog = 1;
    551  1.1      fvdl 			break;
    552  1.1      fvdl 		case 's':
    553  1.1      fvdl 			runasdaemon = 1;
    554  1.1      fvdl 			break;
    555  1.1      fvdl #ifdef WARMSTART
    556  1.1      fvdl 		case 'w':
    557  1.1      fvdl 			warmstart = 1;
    558  1.1      fvdl 			break;
    559  1.1      fvdl #endif
    560  1.1      fvdl 		default:	/* error */
    561  1.1      fvdl 			fprintf(stderr,	"usage: rpcbind [-Idwils]\n");
    562  1.1      fvdl 			exit (1);
    563  1.1      fvdl 		}
    564  1.1      fvdl 	}
    565  1.1      fvdl 	if (doabort && !debugging) {
    566  1.1      fvdl 	    fprintf(stderr,
    567  1.1      fvdl 		"-a (abort) specified without -d (debugging) -- ignored.\n");
    568  1.1      fvdl 	    doabort = 0;
    569  1.1      fvdl 	}
    570  1.1      fvdl }
    571  1.1      fvdl 
    572  1.1      fvdl void
    573  1.1      fvdl reap(int dummy)
    574  1.1      fvdl {
    575  1.1      fvdl 	int save_errno = errno;
    576  1.1      fvdl 
    577  1.1      fvdl 	while (wait3(NULL, WNOHANG, NULL) > 0)
    578  1.1      fvdl 		;
    579  1.1      fvdl 	errno = save_errno;
    580  1.1      fvdl }
    581  1.1      fvdl 
    582  1.1      fvdl void
    583  1.1      fvdl toggle_verboselog(int dummy)
    584  1.1      fvdl {
    585  1.1      fvdl 	verboselog = !verboselog;
    586  1.1      fvdl }
    587