Home | History | Annotate | Line # | Download | only in rpc
svc_vc.c revision 1.9.2.1
      1  1.9.2.1       jmc /*	$NetBSD: svc_vc.c,v 1.9.2.1 2003/01/06 04:45:48 jmc 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 #include <sys/cdefs.h>
     33      1.1      fvdl #if defined(LIBC_SCCS) && !defined(lint)
     34      1.1      fvdl #if 0
     35      1.1      fvdl static char *sccsid = "@(#)svc_tcp.c 1.21 87/08/11 Copyr 1984 Sun Micro";
     36      1.1      fvdl static char *sccsid = "@(#)svc_tcp.c	2.2 88/08/01 4.0 RPCSRC";
     37      1.1      fvdl #else
     38  1.9.2.1       jmc __RCSID("$NetBSD: svc_vc.c,v 1.9.2.1 2003/01/06 04:45:48 jmc Exp $");
     39      1.1      fvdl #endif
     40      1.1      fvdl #endif
     41      1.1      fvdl 
     42      1.1      fvdl /*
     43      1.1      fvdl  * svc_vc.c, Server side for Connection Oriented based RPC.
     44      1.1      fvdl  *
     45      1.1      fvdl  * Actually implements two flavors of transporter -
     46      1.1      fvdl  * a tcp rendezvouser (a listner and connection establisher)
     47      1.1      fvdl  * and a record/tcp stream.
     48      1.1      fvdl  */
     49      1.1      fvdl 
     50      1.1      fvdl #include "namespace.h"
     51      1.1      fvdl #include "reentrant.h"
     52      1.1      fvdl #include <sys/types.h>
     53      1.1      fvdl #include <sys/param.h>
     54      1.1      fvdl #include <sys/poll.h>
     55      1.1      fvdl #include <sys/socket.h>
     56      1.1      fvdl #include <sys/un.h>
     57  1.9.2.1       jmc #include <sys/time.h>
     58      1.1      fvdl #include <netinet/in.h>
     59      1.1      fvdl #include <netinet/tcp.h>
     60      1.1      fvdl 
     61      1.1      fvdl #include <assert.h>
     62      1.1      fvdl #include <err.h>
     63      1.1      fvdl #include <errno.h>
     64  1.9.2.1       jmc #include <fcntl.h>
     65      1.1      fvdl #include <stdio.h>
     66      1.1      fvdl #include <stdlib.h>
     67      1.1      fvdl #include <string.h>
     68      1.1      fvdl #include <unistd.h>
     69      1.1      fvdl 
     70      1.1      fvdl #include <rpc/rpc.h>
     71      1.1      fvdl 
     72  1.9.2.1       jmc #include "rpc_internal.h"
     73  1.9.2.1       jmc #include "rpc_internal.h"
     74      1.1      fvdl 
     75      1.1      fvdl #ifdef __weak_alias
     76      1.1      fvdl __weak_alias(svc_fd_create,_svc_fd_create)
     77      1.1      fvdl __weak_alias(svc_vc_create,_svc_vc_create)
     78      1.1      fvdl #endif
     79      1.1      fvdl 
     80      1.1      fvdl static SVCXPRT *makefd_xprt __P((int, u_int, u_int));
     81      1.1      fvdl static bool_t rendezvous_request __P((SVCXPRT *, struct rpc_msg *));
     82      1.1      fvdl static enum xprt_stat rendezvous_stat __P((SVCXPRT *));
     83      1.1      fvdl static void svc_vc_destroy __P((SVCXPRT *));
     84  1.9.2.1       jmc static void __svc_vc_dodestroy __P((SVCXPRT *));
     85      1.1      fvdl static int read_vc __P((caddr_t, caddr_t, int));
     86      1.1      fvdl static int write_vc __P((caddr_t, caddr_t, int));
     87      1.1      fvdl static enum xprt_stat svc_vc_stat __P((SVCXPRT *));
     88      1.1      fvdl static bool_t svc_vc_recv __P((SVCXPRT *, struct rpc_msg *));
     89      1.1      fvdl static bool_t svc_vc_getargs __P((SVCXPRT *, xdrproc_t, caddr_t));
     90      1.1      fvdl static bool_t svc_vc_freeargs __P((SVCXPRT *, xdrproc_t, caddr_t));
     91      1.1      fvdl static bool_t svc_vc_reply __P((SVCXPRT *, struct rpc_msg *));
     92      1.1      fvdl static void svc_vc_rendezvous_ops __P((SVCXPRT *));
     93      1.1      fvdl static void svc_vc_ops __P((SVCXPRT *));
     94      1.1      fvdl static bool_t svc_vc_control __P((SVCXPRT *xprt, const u_int rq, void *in));
     95  1.9.2.1       jmc static bool_t svc_vc_rendezvous_control __P((SVCXPRT *xprt, const u_int rq,
     96  1.9.2.1       jmc 					     void *in));
     97      1.1      fvdl 
     98      1.1      fvdl struct cf_rendezvous { /* kept in xprt->xp_p1 for rendezvouser */
     99      1.1      fvdl 	u_int sendsize;
    100      1.1      fvdl 	u_int recvsize;
    101  1.9.2.1       jmc 	int maxrec;
    102      1.1      fvdl };
    103      1.1      fvdl 
    104      1.1      fvdl struct cf_conn {  /* kept in xprt->xp_p1 for actual connection */
    105      1.1      fvdl 	enum xprt_stat strm_stat;
    106      1.1      fvdl 	u_int32_t x_id;
    107      1.1      fvdl 	XDR xdrs;
    108      1.1      fvdl 	char verf_body[MAX_AUTH_BYTES];
    109  1.9.2.1       jmc 	u_int sendsize;
    110  1.9.2.1       jmc 	u_int recvsize;
    111  1.9.2.1       jmc 	int maxrec;
    112  1.9.2.1       jmc 	bool_t nonblock;
    113  1.9.2.1       jmc 	struct timeval last_recv_time;
    114      1.1      fvdl };
    115      1.1      fvdl 
    116      1.1      fvdl /*
    117      1.1      fvdl  * Usage:
    118      1.1      fvdl  *	xprt = svc_vc_create(sock, send_buf_size, recv_buf_size);
    119      1.1      fvdl  *
    120      1.1      fvdl  * Creates, registers, and returns a (rpc) tcp based transporter.
    121      1.1      fvdl  * Once *xprt is initialized, it is registered as a transporter
    122      1.1      fvdl  * see (svc.h, xprt_register).  This routine returns
    123      1.1      fvdl  * a NULL if a problem occurred.
    124      1.1      fvdl  *
    125      1.1      fvdl  * The filedescriptor passed in is expected to refer to a bound, but
    126      1.1      fvdl  * not yet connected socket.
    127      1.1      fvdl  *
    128      1.1      fvdl  * Since streams do buffered io similar to stdio, the caller can specify
    129      1.1      fvdl  * how big the send and receive buffers are via the second and third parms;
    130      1.1      fvdl  * 0 => use the system default.
    131      1.1      fvdl  */
    132      1.1      fvdl SVCXPRT *
    133      1.1      fvdl svc_vc_create(fd, sendsize, recvsize)
    134      1.1      fvdl 	int fd;
    135      1.1      fvdl 	u_int sendsize;
    136      1.1      fvdl 	u_int recvsize;
    137      1.1      fvdl {
    138      1.1      fvdl 	SVCXPRT *xprt;
    139      1.1      fvdl 	struct cf_rendezvous *r = NULL;
    140      1.1      fvdl 	struct __rpc_sockinfo si;
    141      1.1      fvdl 	struct sockaddr_storage sslocal;
    142      1.1      fvdl 	socklen_t slen;
    143      1.3   thorpej 	int one = 1;
    144      1.1      fvdl 
    145      1.5  christos 	r = mem_alloc(sizeof(*r));
    146      1.1      fvdl 	if (r == NULL) {
    147      1.1      fvdl 		warnx("svc_vc_create: out of memory");
    148      1.1      fvdl 		goto cleanup_svc_vc_create;
    149      1.1      fvdl 	}
    150      1.1      fvdl 	if (!__rpc_fd2sockinfo(fd, &si))
    151      1.1      fvdl 		return NULL;
    152      1.5  christos 	r->sendsize = __rpc_get_t_size(si.si_af, si.si_proto, (int)sendsize);
    153      1.5  christos 	r->recvsize = __rpc_get_t_size(si.si_af, si.si_proto, (int)recvsize);
    154  1.9.2.1       jmc 	r->maxrec = __svc_maxrec;
    155      1.5  christos 	xprt = mem_alloc(sizeof(SVCXPRT));
    156      1.1      fvdl 	if (xprt == NULL) {
    157      1.1      fvdl 		warnx("svc_vc_create: out of memory");
    158      1.1      fvdl 		goto cleanup_svc_vc_create;
    159      1.1      fvdl 	}
    160      1.1      fvdl 	xprt->xp_tp = NULL;
    161      1.1      fvdl 	xprt->xp_p1 = (caddr_t)(void *)r;
    162      1.1      fvdl 	xprt->xp_p2 = NULL;
    163      1.1      fvdl 	xprt->xp_p3 = NULL;
    164      1.1      fvdl 	xprt->xp_verf = _null_auth;
    165      1.6    kleink 	svc_vc_rendezvous_ops(xprt);
    166      1.5  christos 	xprt->xp_port = (u_short)-1;	/* It is the rendezvouser */
    167      1.1      fvdl 	xprt->xp_fd = fd;
    168      1.1      fvdl 
    169      1.1      fvdl 	slen = sizeof (struct sockaddr_storage);
    170      1.5  christos 	if (getsockname(fd, (struct sockaddr *)(void *)&sslocal, &slen) < 0) {
    171      1.1      fvdl 		warnx("svc_vc_create: could not retrieve local addr");
    172      1.1      fvdl 		goto cleanup_svc_vc_create;
    173      1.1      fvdl 	}
    174      1.1      fvdl 
    175      1.1      fvdl 	/*
    176      1.1      fvdl 	 * We want to be able to check credentials on local sockets.
    177      1.1      fvdl 	 */
    178      1.1      fvdl 	if (sslocal.ss_family == AF_LOCAL)
    179      1.1      fvdl 		if (setsockopt(fd, 0, LOCAL_CREDS, &one, sizeof one) < 0)
    180      1.1      fvdl 			goto cleanup_svc_vc_create;
    181      1.1      fvdl 
    182      1.1      fvdl 	xprt->xp_ltaddr.maxlen = xprt->xp_ltaddr.len = sslocal.ss_len;
    183      1.5  christos 	xprt->xp_ltaddr.buf = mem_alloc((size_t)sslocal.ss_len);
    184      1.1      fvdl 	if (xprt->xp_ltaddr.buf == NULL) {
    185      1.1      fvdl 		warnx("svc_vc_create: no mem for local addr");
    186      1.1      fvdl 		goto cleanup_svc_vc_create;
    187      1.1      fvdl 	}
    188      1.5  christos 	memcpy(xprt->xp_ltaddr.buf, &sslocal, (size_t)sslocal.ss_len);
    189      1.1      fvdl 
    190      1.1      fvdl 	xprt->xp_rtaddr.maxlen = sizeof (struct sockaddr_storage);
    191      1.1      fvdl 	xprt_register(xprt);
    192      1.1      fvdl 	return (xprt);
    193      1.1      fvdl cleanup_svc_vc_create:
    194      1.1      fvdl 	if (r != NULL)
    195      1.1      fvdl 		mem_free(r, sizeof(*r));
    196      1.5  christos 	return (NULL);
    197      1.1      fvdl }
    198      1.1      fvdl 
    199      1.1      fvdl /*
    200      1.1      fvdl  * Like svtcp_create(), except the routine takes any *open* UNIX file
    201      1.1      fvdl  * descriptor as its first input.
    202      1.1      fvdl  */
    203      1.1      fvdl SVCXPRT *
    204      1.1      fvdl svc_fd_create(fd, sendsize, recvsize)
    205      1.1      fvdl 	int fd;
    206      1.1      fvdl 	u_int sendsize;
    207      1.1      fvdl 	u_int recvsize;
    208      1.1      fvdl {
    209      1.1      fvdl 	struct sockaddr_storage ss;
    210      1.1      fvdl 	socklen_t slen;
    211      1.1      fvdl 	SVCXPRT *ret;
    212      1.1      fvdl 
    213      1.1      fvdl 	_DIAGASSERT(fd != -1);
    214      1.1      fvdl 
    215      1.1      fvdl 	ret = makefd_xprt(fd, sendsize, recvsize);
    216      1.1      fvdl 	if (ret == NULL)
    217      1.1      fvdl 		return NULL;
    218      1.1      fvdl 
    219      1.1      fvdl 	slen = sizeof (struct sockaddr_storage);
    220      1.5  christos 	if (getsockname(fd, (struct sockaddr *)(void *)&ss, &slen) < 0) {
    221      1.4      fvdl 		warnx("svc_fd_create: could not retrieve local addr");
    222      1.1      fvdl 		goto freedata;
    223      1.1      fvdl 	}
    224      1.1      fvdl 	ret->xp_ltaddr.maxlen = ret->xp_ltaddr.len = ss.ss_len;
    225      1.5  christos 	ret->xp_ltaddr.buf = mem_alloc((size_t)ss.ss_len);
    226      1.1      fvdl 	if (ret->xp_ltaddr.buf == NULL) {
    227      1.1      fvdl 		warnx("svc_fd_create: no mem for local addr");
    228      1.1      fvdl 		goto freedata;
    229      1.1      fvdl 	}
    230      1.5  christos 	memcpy(ret->xp_ltaddr.buf, &ss, (size_t)ss.ss_len);
    231      1.1      fvdl 
    232      1.1      fvdl 	slen = sizeof (struct sockaddr_storage);
    233      1.5  christos 	if (getpeername(fd, (struct sockaddr *)(void *)&ss, &slen) < 0) {
    234      1.4      fvdl 		warnx("svc_fd_create: could not retrieve remote addr");
    235      1.1      fvdl 		goto freedata;
    236      1.1      fvdl 	}
    237      1.1      fvdl 	ret->xp_rtaddr.maxlen = ret->xp_rtaddr.len = ss.ss_len;
    238      1.5  christos 	ret->xp_rtaddr.buf = mem_alloc((size_t)ss.ss_len);
    239      1.1      fvdl 	if (ret->xp_rtaddr.buf == NULL) {
    240      1.1      fvdl 		warnx("svc_fd_create: no mem for local addr");
    241      1.1      fvdl 		goto freedata;
    242      1.1      fvdl 	}
    243      1.5  christos 	memcpy(ret->xp_rtaddr.buf, &ss, (size_t)ss.ss_len);
    244      1.1      fvdl #ifdef PORTMAP
    245      1.1      fvdl 	if (ss.ss_family == AF_INET) {
    246      1.1      fvdl 		ret->xp_raddr = *(struct sockaddr_in *)ret->xp_rtaddr.buf;
    247      1.1      fvdl 		ret->xp_addrlen = sizeof (struct sockaddr_in);
    248      1.1      fvdl 	}
    249      1.1      fvdl #endif
    250      1.1      fvdl 
    251      1.1      fvdl 	return ret;
    252      1.1      fvdl 
    253      1.1      fvdl freedata:
    254      1.1      fvdl 	if (ret->xp_ltaddr.buf != NULL)
    255      1.1      fvdl 		mem_free(ret->xp_ltaddr.buf, rep->xp_ltaddr.maxlen);
    256      1.1      fvdl 
    257      1.1      fvdl 	return NULL;
    258      1.1      fvdl }
    259      1.1      fvdl 
    260      1.1      fvdl static SVCXPRT *
    261      1.1      fvdl makefd_xprt(fd, sendsize, recvsize)
    262      1.1      fvdl 	int fd;
    263      1.1      fvdl 	u_int sendsize;
    264      1.1      fvdl 	u_int recvsize;
    265      1.1      fvdl {
    266      1.1      fvdl 	SVCXPRT *xprt;
    267      1.1      fvdl 	struct cf_conn *cd;
    268      1.7      fvdl 	const char *netid;
    269      1.7      fvdl 	struct __rpc_sockinfo si;
    270      1.1      fvdl 
    271      1.1      fvdl 	_DIAGASSERT(fd != -1);
    272      1.1      fvdl 
    273      1.5  christos 	xprt = mem_alloc(sizeof(SVCXPRT));
    274      1.5  christos 	if (xprt == NULL) {
    275      1.7      fvdl 		warnx("svc_vc: makefd_xprt: out of memory");
    276      1.1      fvdl 		goto done;
    277      1.1      fvdl 	}
    278      1.2      fvdl 	memset(xprt, 0, sizeof *xprt);
    279      1.5  christos 	cd = mem_alloc(sizeof(struct cf_conn));
    280      1.5  christos 	if (cd == NULL) {
    281      1.1      fvdl 		warnx("svc_tcp: makefd_xprt: out of memory");
    282      1.1      fvdl 		mem_free(xprt, sizeof(SVCXPRT));
    283      1.5  christos 		xprt = NULL;
    284      1.1      fvdl 		goto done;
    285      1.1      fvdl 	}
    286      1.1      fvdl 	cd->strm_stat = XPRT_IDLE;
    287      1.1      fvdl 	xdrrec_create(&(cd->xdrs), sendsize, recvsize,
    288      1.1      fvdl 	    (caddr_t)(void *)xprt, read_vc, write_vc);
    289      1.1      fvdl 	xprt->xp_p1 = (caddr_t)(void *)cd;
    290      1.1      fvdl 	xprt->xp_verf.oa_base = cd->verf_body;
    291      1.1      fvdl 	svc_vc_ops(xprt);  /* truely deals with calls */
    292      1.1      fvdl 	xprt->xp_port = 0;  /* this is a connection, not a rendezvouser */
    293      1.1      fvdl 	xprt->xp_fd = fd;
    294      1.8     lukem 	if (__rpc_fd2sockinfo(fd, &si) && __rpc_sockinfo2netid(&si, &netid))
    295      1.7      fvdl 		xprt->xp_netid = strdup(netid);
    296      1.7      fvdl 
    297      1.1      fvdl 	xprt_register(xprt);
    298      1.1      fvdl done:
    299      1.1      fvdl 	return (xprt);
    300      1.1      fvdl }
    301      1.1      fvdl 
    302      1.1      fvdl /*ARGSUSED*/
    303      1.1      fvdl static bool_t
    304      1.1      fvdl rendezvous_request(xprt, msg)
    305      1.1      fvdl 	SVCXPRT *xprt;
    306      1.1      fvdl 	struct rpc_msg *msg;
    307      1.1      fvdl {
    308  1.9.2.1       jmc 	int sock, flags;
    309      1.1      fvdl 	struct cf_rendezvous *r;
    310  1.9.2.1       jmc 	struct cf_conn *cd;
    311      1.1      fvdl 	struct sockaddr_storage addr;
    312      1.1      fvdl 	socklen_t len;
    313      1.1      fvdl 	struct __rpc_sockinfo si;
    314  1.9.2.1       jmc 	SVCXPRT *newxprt;
    315  1.9.2.1       jmc 	fd_set cleanfds;
    316      1.1      fvdl 
    317      1.1      fvdl 	_DIAGASSERT(xprt != NULL);
    318      1.1      fvdl 	_DIAGASSERT(msg != NULL);
    319      1.1      fvdl 
    320      1.1      fvdl 	r = (struct cf_rendezvous *)xprt->xp_p1;
    321      1.1      fvdl again:
    322      1.1      fvdl 	len = sizeof addr;
    323      1.5  christos 	if ((sock = accept(xprt->xp_fd, (struct sockaddr *)(void *)&addr,
    324      1.5  christos 	    &len)) < 0) {
    325      1.1      fvdl 		if (errno == EINTR)
    326      1.1      fvdl 			goto again;
    327  1.9.2.1       jmc 		/*
    328  1.9.2.1       jmc 		 * Clean out the most idle file descriptor when we're
    329  1.9.2.1       jmc 		 * running out.
    330  1.9.2.1       jmc 		 */
    331  1.9.2.1       jmc 		if (errno == EMFILE || errno == ENFILE) {
    332  1.9.2.1       jmc 			cleanfds = svc_fdset;
    333  1.9.2.1       jmc 			__svc_clean_idle(&cleanfds, 0, FALSE);
    334  1.9.2.1       jmc 			goto again;
    335  1.9.2.1       jmc 		}
    336  1.9.2.1       jmc 		return (FALSE);
    337      1.1      fvdl 	}
    338      1.1      fvdl 	/*
    339      1.1      fvdl 	 * make a new transporter (re-uses xprt)
    340      1.1      fvdl 	 */
    341  1.9.2.1       jmc 	newxprt = makefd_xprt(sock, r->sendsize, r->recvsize);
    342  1.9.2.1       jmc 	newxprt->xp_rtaddr.buf = mem_alloc(len);
    343  1.9.2.1       jmc 	if (newxprt->xp_rtaddr.buf == NULL)
    344      1.1      fvdl 		return (FALSE);
    345  1.9.2.1       jmc 	memcpy(newxprt->xp_rtaddr.buf, &addr, len);
    346  1.9.2.1       jmc 	newxprt->xp_rtaddr.len = len;
    347      1.1      fvdl #ifdef PORTMAP
    348      1.1      fvdl 	if (addr.ss_family == AF_INET) {
    349  1.9.2.1       jmc 		newxprt->xp_raddr = *(struct sockaddr_in *)newxprt->xp_rtaddr.buf;
    350  1.9.2.1       jmc 		newxprt->xp_addrlen = sizeof (struct sockaddr_in);
    351      1.1      fvdl 	}
    352      1.1      fvdl #endif
    353      1.1      fvdl 	if (__rpc_fd2sockinfo(sock, &si) && si.si_proto == IPPROTO_TCP) {
    354      1.1      fvdl 		len = 1;
    355      1.1      fvdl 		/* XXX fvdl - is this useful? */
    356      1.1      fvdl 		setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, &len, sizeof (len));
    357      1.1      fvdl 	}
    358  1.9.2.1       jmc 
    359  1.9.2.1       jmc 	cd = (struct cf_conn *)newxprt->xp_p1;
    360  1.9.2.1       jmc 
    361  1.9.2.1       jmc 	cd->recvsize = r->recvsize;
    362  1.9.2.1       jmc 	cd->sendsize = r->sendsize;
    363  1.9.2.1       jmc 	cd->maxrec = r->maxrec;
    364  1.9.2.1       jmc 
    365  1.9.2.1       jmc 	if (cd->maxrec != 0) {
    366  1.9.2.1       jmc 		flags = fcntl(sock, F_GETFL, 0);
    367  1.9.2.1       jmc 		if (flags  == -1)
    368  1.9.2.1       jmc 			return (FALSE);
    369  1.9.2.1       jmc 		if (fcntl(sock, F_SETFL, flags | O_NONBLOCK) == -1)
    370  1.9.2.1       jmc 			return (FALSE);
    371  1.9.2.1       jmc 		if (cd->recvsize > cd->maxrec)
    372  1.9.2.1       jmc 			cd->recvsize = cd->maxrec;
    373  1.9.2.1       jmc 		cd->nonblock = TRUE;
    374  1.9.2.1       jmc 		__xdrrec_setnonblock(&cd->xdrs, cd->maxrec);
    375  1.9.2.1       jmc 	} else
    376  1.9.2.1       jmc 		cd->nonblock = FALSE;
    377  1.9.2.1       jmc 
    378  1.9.2.1       jmc 	gettimeofday(&cd->last_recv_time, NULL);
    379  1.9.2.1       jmc 
    380      1.1      fvdl 	return (FALSE); /* there is never an rpc msg to be processed */
    381      1.1      fvdl }
    382      1.1      fvdl 
    383      1.1      fvdl /*ARGSUSED*/
    384      1.1      fvdl static enum xprt_stat
    385      1.1      fvdl rendezvous_stat(xprt)
    386      1.1      fvdl 	SVCXPRT *xprt;
    387      1.1      fvdl {
    388      1.1      fvdl 
    389      1.1      fvdl 	return (XPRT_IDLE);
    390      1.1      fvdl }
    391      1.1      fvdl 
    392      1.1      fvdl static void
    393      1.1      fvdl svc_vc_destroy(xprt)
    394      1.1      fvdl 	SVCXPRT *xprt;
    395      1.1      fvdl {
    396  1.9.2.1       jmc 	_DIAGASSERT(xprt != NULL);
    397  1.9.2.1       jmc 
    398  1.9.2.1       jmc 	xprt_unregister(xprt);
    399  1.9.2.1       jmc 	__svc_vc_dodestroy(xprt);
    400  1.9.2.1       jmc }
    401  1.9.2.1       jmc 
    402  1.9.2.1       jmc static void
    403  1.9.2.1       jmc __svc_vc_dodestroy(xprt)
    404  1.9.2.1       jmc 	SVCXPRT *xprt;
    405  1.9.2.1       jmc {
    406      1.1      fvdl 	struct cf_conn *cd;
    407      1.1      fvdl 	struct cf_rendezvous *r;
    408      1.1      fvdl 
    409      1.1      fvdl 	cd = (struct cf_conn *)xprt->xp_p1;
    410      1.1      fvdl 
    411      1.1      fvdl 	if (xprt->xp_fd != RPC_ANYFD)
    412      1.1      fvdl 		(void)close(xprt->xp_fd);
    413      1.1      fvdl 	if (xprt->xp_port != 0) {
    414      1.1      fvdl 		/* a rendezvouser socket */
    415      1.1      fvdl 		r = (struct cf_rendezvous *)xprt->xp_p1;
    416      1.1      fvdl 		mem_free(r, sizeof (struct cf_rendezvous));
    417      1.1      fvdl 		xprt->xp_port = 0;
    418      1.1      fvdl 	} else {
    419      1.1      fvdl 		/* an actual connection socket */
    420      1.1      fvdl 		XDR_DESTROY(&(cd->xdrs));
    421      1.1      fvdl 		mem_free(cd, sizeof(struct cf_conn));
    422      1.1      fvdl 	}
    423      1.1      fvdl 	if (xprt->xp_rtaddr.buf)
    424      1.1      fvdl 		mem_free(xprt->xp_rtaddr.buf, xprt->xp_rtaddr.maxlen);
    425      1.1      fvdl 	if (xprt->xp_ltaddr.buf)
    426      1.1      fvdl 		mem_free(xprt->xp_ltaddr.buf, xprt->xp_ltaddr.maxlen);
    427      1.1      fvdl 	if (xprt->xp_tp)
    428      1.1      fvdl 		free(xprt->xp_tp);
    429      1.1      fvdl 	if (xprt->xp_netid)
    430      1.1      fvdl 		free(xprt->xp_netid);
    431      1.1      fvdl 	mem_free(xprt, sizeof(SVCXPRT));
    432      1.1      fvdl }
    433      1.1      fvdl 
    434      1.5  christos /*ARGSUSED*/
    435      1.1      fvdl static bool_t
    436      1.1      fvdl svc_vc_control(xprt, rq, in)
    437      1.1      fvdl 	SVCXPRT *xprt;
    438      1.1      fvdl 	const u_int rq;
    439      1.1      fvdl 	void *in;
    440      1.1      fvdl {
    441      1.1      fvdl 	return (FALSE);
    442      1.1      fvdl }
    443      1.1      fvdl 
    444  1.9.2.1       jmc /*ARGSUSED*/
    445  1.9.2.1       jmc static bool_t
    446  1.9.2.1       jmc svc_vc_rendezvous_control(xprt, rq, in)
    447  1.9.2.1       jmc 	SVCXPRT *xprt;
    448  1.9.2.1       jmc 	const u_int rq;
    449  1.9.2.1       jmc 	void *in;
    450  1.9.2.1       jmc {
    451  1.9.2.1       jmc 	struct cf_rendezvous *cfp;
    452  1.9.2.1       jmc 
    453  1.9.2.1       jmc 	cfp = (struct cf_rendezvous *)xprt->xp_p1;
    454  1.9.2.1       jmc 	if (cfp == NULL)
    455  1.9.2.1       jmc 		return (FALSE);
    456  1.9.2.1       jmc 	switch (rq) {
    457  1.9.2.1       jmc 		case SVCGET_CONNMAXREC:
    458  1.9.2.1       jmc 			*(int *)in = cfp->maxrec;
    459  1.9.2.1       jmc 			break;
    460  1.9.2.1       jmc 		case SVCSET_CONNMAXREC:
    461  1.9.2.1       jmc 			cfp->maxrec = *(int *)in;
    462  1.9.2.1       jmc 			break;
    463  1.9.2.1       jmc 		default:
    464  1.9.2.1       jmc 			return (FALSE);
    465  1.9.2.1       jmc 	}
    466  1.9.2.1       jmc 	return (TRUE);
    467  1.9.2.1       jmc }
    468  1.9.2.1       jmc 
    469      1.1      fvdl /*
    470      1.9      cjep  * reads data from the tcp connection.
    471      1.1      fvdl  * any error is fatal and the connection is closed.
    472      1.1      fvdl  * (And a read of zero bytes is a half closed stream => error.)
    473      1.1      fvdl  * All read operations timeout after 35 seconds.  A timeout is
    474      1.1      fvdl  * fatal for the connection.
    475      1.1      fvdl  */
    476      1.1      fvdl static int
    477      1.1      fvdl read_vc(xprtp, buf, len)
    478      1.1      fvdl 	caddr_t xprtp;
    479      1.1      fvdl 	caddr_t buf;
    480      1.1      fvdl 	int len;
    481      1.1      fvdl {
    482      1.1      fvdl 	SVCXPRT *xprt;
    483      1.1      fvdl 	int sock;
    484      1.1      fvdl 	int milliseconds = 35 * 1000;
    485      1.1      fvdl 	struct pollfd pollfd;
    486      1.1      fvdl 	struct sockaddr *sa;
    487      1.1      fvdl 	struct msghdr msg;
    488      1.1      fvdl 	struct cmsghdr *cmp;
    489      1.3   thorpej 	void *crmsg = NULL;
    490      1.1      fvdl 	struct sockcred *sc;
    491      1.3   thorpej 	socklen_t crmsgsize;
    492  1.9.2.1       jmc 	struct cf_conn *cfp;
    493      1.1      fvdl 
    494      1.1      fvdl 	xprt = (SVCXPRT *)(void *)xprtp;
    495      1.1      fvdl 	_DIAGASSERT(xprt != NULL);
    496      1.1      fvdl 
    497      1.1      fvdl 	sock = xprt->xp_fd;
    498      1.1      fvdl 
    499      1.1      fvdl 	sa = (struct sockaddr *)xprt->xp_rtaddr.buf;
    500      1.1      fvdl 	if (sa->sa_family == AF_LOCAL && xprt->xp_p2 == NULL) {
    501      1.1      fvdl 		memset(&msg, 0, sizeof msg);
    502      1.3   thorpej 		crmsgsize = CMSG_SPACE(SOCKCREDSIZE(NGROUPS));
    503      1.3   thorpej 		crmsg = malloc(crmsgsize);
    504      1.3   thorpej 		if (crmsg == NULL)
    505      1.3   thorpej 			goto fatal_err;
    506      1.3   thorpej 		memset(crmsg, 0, crmsgsize);
    507      1.3   thorpej 
    508      1.3   thorpej 		msg.msg_control = crmsg;
    509      1.3   thorpej 		msg.msg_controllen = crmsgsize;
    510      1.1      fvdl 
    511      1.1      fvdl 		if (recvmsg(sock, &msg, 0) < 0)
    512      1.1      fvdl 			goto fatal_err;
    513      1.1      fvdl 
    514      1.3   thorpej 		if (msg.msg_controllen == 0 ||
    515      1.3   thorpej 		    (msg.msg_flags & MSG_CTRUNC) != 0)
    516      1.3   thorpej 			goto fatal_err;
    517      1.3   thorpej 
    518      1.1      fvdl 		cmp = CMSG_FIRSTHDR(&msg);
    519      1.1      fvdl 		if (cmp->cmsg_level != SOL_SOCKET ||
    520      1.1      fvdl 		    cmp->cmsg_type != SCM_CREDS)
    521      1.1      fvdl 			goto fatal_err;
    522      1.1      fvdl 
    523      1.5  christos 		sc = (struct sockcred *)(void *)CMSG_DATA(cmp);
    524      1.1      fvdl 
    525      1.1      fvdl 		xprt->xp_p2 = mem_alloc(SOCKCREDSIZE(sc->sc_ngroups));
    526      1.1      fvdl 		if (xprt->xp_p2 == NULL)
    527      1.1      fvdl 			goto fatal_err;
    528      1.1      fvdl 
    529      1.1      fvdl 		memcpy(xprt->xp_p2, sc, SOCKCREDSIZE(sc->sc_ngroups));
    530      1.3   thorpej 		free(crmsg);
    531      1.3   thorpej 		crmsg = NULL;
    532      1.1      fvdl 	}
    533  1.9.2.1       jmc 
    534  1.9.2.1       jmc 	cfp = (struct cf_conn *)xprt->xp_p1;
    535  1.9.2.1       jmc 
    536  1.9.2.1       jmc 	if (cfp->nonblock) {
    537  1.9.2.1       jmc 		len = read(sock, buf, (size_t)len);
    538  1.9.2.1       jmc 		if (len < 0) {
    539  1.9.2.1       jmc 			if (errno == EAGAIN)
    540  1.9.2.1       jmc 				len = 0;
    541  1.9.2.1       jmc 			else
    542  1.9.2.1       jmc 				goto fatal_err;
    543  1.9.2.1       jmc 		}
    544  1.9.2.1       jmc 		if (len != 0)
    545  1.9.2.1       jmc 			gettimeofday(&cfp->last_recv_time, NULL);
    546  1.9.2.1       jmc 		return len;
    547  1.9.2.1       jmc 	}
    548  1.9.2.1       jmc 
    549      1.1      fvdl 	do {
    550      1.1      fvdl 		pollfd.fd = sock;
    551      1.1      fvdl 		pollfd.events = POLLIN;
    552      1.1      fvdl 		switch (poll(&pollfd, 1, milliseconds)) {
    553      1.1      fvdl 		case -1:
    554      1.1      fvdl 			if (errno == EINTR) {
    555      1.1      fvdl 				continue;
    556      1.1      fvdl 			}
    557      1.1      fvdl 			/*FALLTHROUGH*/
    558      1.1      fvdl 		case 0:
    559      1.1      fvdl 			goto fatal_err;
    560      1.1      fvdl 
    561      1.1      fvdl 		default:
    562      1.1      fvdl 			break;
    563      1.1      fvdl 		}
    564      1.1      fvdl 	} while ((pollfd.revents & POLLIN) == 0);
    565      1.1      fvdl 
    566  1.9.2.1       jmc 	if ((len = read(sock, buf, (size_t)len)) > 0) {
    567  1.9.2.1       jmc 		gettimeofday(&cfp->last_recv_time, NULL);
    568      1.1      fvdl 		return (len);
    569  1.9.2.1       jmc 	}
    570      1.1      fvdl 
    571      1.1      fvdl fatal_err:
    572      1.3   thorpej 	if (crmsg != NULL)
    573      1.3   thorpej 		free(crmsg);
    574      1.1      fvdl 	((struct cf_conn *)(xprt->xp_p1))->strm_stat = XPRT_DIED;
    575      1.1      fvdl 	return (-1);
    576      1.1      fvdl }
    577      1.1      fvdl 
    578      1.1      fvdl /*
    579      1.1      fvdl  * writes data to the tcp connection.
    580      1.1      fvdl  * Any error is fatal and the connection is closed.
    581      1.1      fvdl  */
    582      1.1      fvdl static int
    583      1.1      fvdl write_vc(xprtp, buf, len)
    584      1.1      fvdl 	caddr_t xprtp;
    585      1.1      fvdl 	caddr_t buf;
    586      1.1      fvdl 	int len;
    587      1.1      fvdl {
    588      1.1      fvdl 	SVCXPRT *xprt;
    589      1.1      fvdl 	int i, cnt;
    590  1.9.2.1       jmc 	struct cf_conn *cd;
    591  1.9.2.1       jmc 	struct timeval tv0, tv1;
    592      1.1      fvdl 
    593      1.1      fvdl 	xprt = (SVCXPRT *)(void *)xprtp;
    594      1.1      fvdl 	_DIAGASSERT(xprt != NULL);
    595      1.1      fvdl 
    596  1.9.2.1       jmc 	cd = (struct cf_conn *)xprt->xp_p1;
    597  1.9.2.1       jmc 
    598  1.9.2.1       jmc 	if (cd->nonblock)
    599  1.9.2.1       jmc 		gettimeofday(&tv0, NULL);
    600  1.9.2.1       jmc 
    601      1.1      fvdl 	for (cnt = len; cnt > 0; cnt -= i, buf += i) {
    602      1.1      fvdl 		if ((i = write(xprt->xp_fd, buf, (size_t)cnt)) < 0) {
    603  1.9.2.1       jmc 			if (errno != EAGAIN || !cd->nonblock) {
    604  1.9.2.1       jmc 				cd->strm_stat = XPRT_DIED;
    605  1.9.2.1       jmc 				return (-1);
    606  1.9.2.1       jmc 			}
    607  1.9.2.1       jmc 			if (cd->nonblock && i != cnt) {
    608  1.9.2.1       jmc 				/*
    609  1.9.2.1       jmc 				 * For non-blocking connections, do not
    610  1.9.2.1       jmc 				 * take more than 2 seconds writing the
    611  1.9.2.1       jmc 				 * data out.
    612  1.9.2.1       jmc 				 *
    613  1.9.2.1       jmc 				 * XXX 2 is an arbitrary amount.
    614  1.9.2.1       jmc 				 */
    615  1.9.2.1       jmc 				gettimeofday(&tv1, NULL);
    616  1.9.2.1       jmc 				if (tv1.tv_sec - tv0.tv_sec >= 2) {
    617  1.9.2.1       jmc 					cd->strm_stat = XPRT_DIED;
    618  1.9.2.1       jmc 					return (-1);
    619  1.9.2.1       jmc 				}
    620  1.9.2.1       jmc 			}
    621      1.1      fvdl 		}
    622      1.1      fvdl 	}
    623      1.1      fvdl 	return (len);
    624      1.1      fvdl }
    625      1.1      fvdl 
    626      1.1      fvdl static enum xprt_stat
    627      1.1      fvdl svc_vc_stat(xprt)
    628      1.1      fvdl 	SVCXPRT *xprt;
    629      1.1      fvdl {
    630      1.1      fvdl 	struct cf_conn *cd;
    631      1.1      fvdl 
    632      1.1      fvdl 	_DIAGASSERT(xprt != NULL);
    633      1.1      fvdl 
    634      1.1      fvdl 	cd = (struct cf_conn *)(xprt->xp_p1);
    635      1.1      fvdl 
    636      1.1      fvdl 	if (cd->strm_stat == XPRT_DIED)
    637      1.1      fvdl 		return (XPRT_DIED);
    638      1.1      fvdl 	if (! xdrrec_eof(&(cd->xdrs)))
    639      1.1      fvdl 		return (XPRT_MOREREQS);
    640      1.1      fvdl 	return (XPRT_IDLE);
    641      1.1      fvdl }
    642      1.1      fvdl 
    643      1.1      fvdl static bool_t
    644      1.1      fvdl svc_vc_recv(xprt, msg)
    645      1.1      fvdl 	SVCXPRT *xprt;
    646      1.1      fvdl 	struct rpc_msg *msg;
    647      1.1      fvdl {
    648      1.1      fvdl 	struct cf_conn *cd;
    649      1.1      fvdl 	XDR *xdrs;
    650      1.1      fvdl 
    651      1.1      fvdl 	_DIAGASSERT(xprt != NULL);
    652      1.1      fvdl 	_DIAGASSERT(msg != NULL);
    653      1.1      fvdl 
    654      1.1      fvdl 	cd = (struct cf_conn *)(xprt->xp_p1);
    655      1.1      fvdl 	xdrs = &(cd->xdrs);
    656      1.1      fvdl 
    657  1.9.2.1       jmc 	if (cd->nonblock) {
    658  1.9.2.1       jmc 		if (!__xdrrec_getrec(xdrs, &cd->strm_stat, TRUE))
    659  1.9.2.1       jmc 			return FALSE;
    660  1.9.2.1       jmc 	}
    661  1.9.2.1       jmc 
    662      1.1      fvdl 	xdrs->x_op = XDR_DECODE;
    663      1.1      fvdl 	(void)xdrrec_skiprecord(xdrs);
    664  1.9.2.1       jmc 
    665      1.1      fvdl 	if (xdr_callmsg(xdrs, msg)) {
    666      1.1      fvdl 		cd->x_id = msg->rm_xid;
    667      1.1      fvdl 		return (TRUE);
    668      1.1      fvdl 	}
    669      1.1      fvdl 	cd->strm_stat = XPRT_DIED;
    670      1.1      fvdl 	return (FALSE);
    671      1.1      fvdl }
    672      1.1      fvdl 
    673      1.1      fvdl static bool_t
    674      1.1      fvdl svc_vc_getargs(xprt, xdr_args, args_ptr)
    675      1.1      fvdl 	SVCXPRT *xprt;
    676      1.1      fvdl 	xdrproc_t xdr_args;
    677      1.1      fvdl 	caddr_t args_ptr;
    678      1.1      fvdl {
    679      1.1      fvdl 
    680      1.1      fvdl 	_DIAGASSERT(xprt != NULL);
    681      1.1      fvdl 	/* args_ptr may be NULL */
    682      1.1      fvdl 
    683      1.1      fvdl 	return ((*xdr_args)(&(((struct cf_conn *)(xprt->xp_p1))->xdrs),
    684      1.1      fvdl 	    args_ptr));
    685      1.1      fvdl }
    686      1.1      fvdl 
    687      1.1      fvdl static bool_t
    688      1.1      fvdl svc_vc_freeargs(xprt, xdr_args, args_ptr)
    689      1.1      fvdl 	SVCXPRT *xprt;
    690      1.1      fvdl 	xdrproc_t xdr_args;
    691      1.1      fvdl 	caddr_t args_ptr;
    692      1.1      fvdl {
    693      1.1      fvdl 	XDR *xdrs;
    694      1.1      fvdl 
    695      1.1      fvdl 	_DIAGASSERT(xprt != NULL);
    696      1.1      fvdl 	/* args_ptr may be NULL */
    697      1.1      fvdl 
    698      1.1      fvdl 	xdrs = &(((struct cf_conn *)(xprt->xp_p1))->xdrs);
    699      1.1      fvdl 
    700      1.1      fvdl 	xdrs->x_op = XDR_FREE;
    701      1.1      fvdl 	return ((*xdr_args)(xdrs, args_ptr));
    702      1.1      fvdl }
    703      1.1      fvdl 
    704      1.1      fvdl static bool_t
    705      1.1      fvdl svc_vc_reply(xprt, msg)
    706      1.1      fvdl 	SVCXPRT *xprt;
    707      1.1      fvdl 	struct rpc_msg *msg;
    708      1.1      fvdl {
    709      1.1      fvdl 	struct cf_conn *cd;
    710      1.1      fvdl 	XDR *xdrs;
    711  1.9.2.1       jmc 	bool_t rstat;
    712      1.1      fvdl 
    713      1.1      fvdl 	_DIAGASSERT(xprt != NULL);
    714      1.1      fvdl 	_DIAGASSERT(msg != NULL);
    715      1.1      fvdl 
    716      1.1      fvdl 	cd = (struct cf_conn *)(xprt->xp_p1);
    717      1.1      fvdl 	xdrs = &(cd->xdrs);
    718      1.1      fvdl 
    719      1.1      fvdl 	xdrs->x_op = XDR_ENCODE;
    720      1.1      fvdl 	msg->rm_xid = cd->x_id;
    721  1.9.2.1       jmc 	rstat = xdr_replymsg(xdrs, msg);
    722      1.1      fvdl 	(void)xdrrec_endofrecord(xdrs, TRUE);
    723  1.9.2.1       jmc 	return (rstat);
    724      1.1      fvdl }
    725      1.1      fvdl 
    726      1.1      fvdl static void
    727      1.1      fvdl svc_vc_ops(xprt)
    728      1.1      fvdl 	SVCXPRT *xprt;
    729      1.1      fvdl {
    730      1.1      fvdl 	static struct xp_ops ops;
    731      1.1      fvdl 	static struct xp_ops2 ops2;
    732      1.1      fvdl #ifdef __REENT
    733      1.1      fvdl 	extern mutex_t ops_lock;
    734      1.1      fvdl #endif
    735      1.1      fvdl 
    736      1.1      fvdl /* VARIABLES PROTECTED BY ops_lock: ops, ops2 */
    737      1.1      fvdl 
    738      1.1      fvdl 	mutex_lock(&ops_lock);
    739      1.1      fvdl 	if (ops.xp_recv == NULL) {
    740      1.1      fvdl 		ops.xp_recv = svc_vc_recv;
    741      1.1      fvdl 		ops.xp_stat = svc_vc_stat;
    742      1.1      fvdl 		ops.xp_getargs = svc_vc_getargs;
    743      1.1      fvdl 		ops.xp_reply = svc_vc_reply;
    744      1.1      fvdl 		ops.xp_freeargs = svc_vc_freeargs;
    745      1.1      fvdl 		ops.xp_destroy = svc_vc_destroy;
    746      1.1      fvdl 		ops2.xp_control = svc_vc_control;
    747      1.1      fvdl 	}
    748      1.1      fvdl 	xprt->xp_ops = &ops;
    749      1.1      fvdl 	xprt->xp_ops2 = &ops2;
    750      1.1      fvdl 	mutex_unlock(&ops_lock);
    751      1.1      fvdl }
    752      1.1      fvdl 
    753      1.1      fvdl static void
    754      1.1      fvdl svc_vc_rendezvous_ops(xprt)
    755      1.1      fvdl 	SVCXPRT *xprt;
    756      1.1      fvdl {
    757      1.1      fvdl 	static struct xp_ops ops;
    758      1.1      fvdl 	static struct xp_ops2 ops2;
    759      1.1      fvdl #ifdef __REENT
    760      1.1      fvdl 	extern mutex_t ops_lock;
    761      1.1      fvdl #endif
    762      1.1      fvdl 
    763      1.1      fvdl 	mutex_lock(&ops_lock);
    764      1.1      fvdl 	if (ops.xp_recv == NULL) {
    765      1.1      fvdl 		ops.xp_recv = rendezvous_request;
    766      1.1      fvdl 		ops.xp_stat = rendezvous_stat;
    767      1.1      fvdl 		ops.xp_getargs =
    768      1.1      fvdl 		    (bool_t (*) __P((SVCXPRT *, xdrproc_t, caddr_t)))abort;
    769      1.1      fvdl 		ops.xp_reply =
    770      1.1      fvdl 		    (bool_t (*) __P((SVCXPRT *, struct rpc_msg *)))abort;
    771      1.1      fvdl 		ops.xp_freeargs =
    772      1.1      fvdl 		    (bool_t (*) __P((SVCXPRT *, xdrproc_t, caddr_t)))abort,
    773      1.1      fvdl 		ops.xp_destroy = svc_vc_destroy;
    774  1.9.2.1       jmc 		ops2.xp_control = svc_vc_rendezvous_control;
    775      1.1      fvdl 	}
    776      1.1      fvdl 	xprt->xp_ops = &ops;
    777      1.1      fvdl 	xprt->xp_ops2 = &ops2;
    778      1.1      fvdl 	mutex_unlock(&ops_lock);
    779  1.9.2.1       jmc }
    780  1.9.2.1       jmc 
    781  1.9.2.1       jmc /*
    782  1.9.2.1       jmc  * Destroy xprts that have not have had any activity in 'timeout' seconds.
    783  1.9.2.1       jmc  * If 'cleanblock' is true, blocking connections (the default) are also
    784  1.9.2.1       jmc  * cleaned. If timeout is 0, the least active connection is picked.
    785  1.9.2.1       jmc  */
    786  1.9.2.1       jmc bool_t
    787  1.9.2.1       jmc __svc_clean_idle(fd_set *fds, int timeout, bool_t cleanblock)
    788  1.9.2.1       jmc {
    789  1.9.2.1       jmc 	int i, ncleaned;
    790  1.9.2.1       jmc 	SVCXPRT *xprt, *least_active;
    791  1.9.2.1       jmc 	struct timeval tv, tdiff, tmax;
    792  1.9.2.1       jmc 	struct cf_conn *cd;
    793  1.9.2.1       jmc 
    794  1.9.2.1       jmc 	gettimeofday(&tv, NULL);
    795  1.9.2.1       jmc 	tmax.tv_sec = tmax.tv_usec = 0;
    796  1.9.2.1       jmc 	least_active = NULL;
    797  1.9.2.1       jmc 	rwlock_wrlock(&svc_fd_lock);
    798  1.9.2.1       jmc 	for (i = ncleaned = 0; i <= svc_maxfd; i++) {
    799  1.9.2.1       jmc 		if (FD_ISSET(i, fds)) {
    800  1.9.2.1       jmc 			xprt = __svc_xports[i];
    801  1.9.2.1       jmc 			if (xprt == NULL || xprt->xp_ops == NULL ||
    802  1.9.2.1       jmc 			    xprt->xp_ops->xp_recv != svc_vc_recv)
    803  1.9.2.1       jmc 				continue;
    804  1.9.2.1       jmc 			cd = (struct cf_conn *)xprt->xp_p1;
    805  1.9.2.1       jmc 			if (!cleanblock && !cd->nonblock)
    806  1.9.2.1       jmc 				continue;
    807  1.9.2.1       jmc 			if (timeout == 0) {
    808  1.9.2.1       jmc 				timersub(&tv, &cd->last_recv_time, &tdiff);
    809  1.9.2.1       jmc 				if (timercmp(&tdiff, &tmax, >)) {
    810  1.9.2.1       jmc 					tmax = tdiff;
    811  1.9.2.1       jmc 					least_active = xprt;
    812  1.9.2.1       jmc 				}
    813  1.9.2.1       jmc 				continue;
    814  1.9.2.1       jmc 			}
    815  1.9.2.1       jmc 			if (tv.tv_sec - cd->last_recv_time.tv_sec > timeout) {
    816  1.9.2.1       jmc 				__xprt_unregister_unlocked(xprt);
    817  1.9.2.1       jmc 				__svc_vc_dodestroy(xprt);
    818  1.9.2.1       jmc 				ncleaned++;
    819  1.9.2.1       jmc 			}
    820  1.9.2.1       jmc 		}
    821  1.9.2.1       jmc 	}
    822  1.9.2.1       jmc 	if (timeout == 0 && least_active != NULL) {
    823  1.9.2.1       jmc 		__xprt_unregister_unlocked(least_active);
    824  1.9.2.1       jmc 		__svc_vc_dodestroy(least_active);
    825  1.9.2.1       jmc 		ncleaned++;
    826  1.9.2.1       jmc 	}
    827  1.9.2.1       jmc 	rwlock_unlock(&svc_fd_lock);
    828  1.9.2.1       jmc 	return ncleaned > 0 ? TRUE : FALSE;
    829      1.1      fvdl }
    830