xref: /illumos-gate/usr/src/lib/libnsl/rpc/xdr_rec.c (revision 1da57d55)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
57c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
67c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
77c478bd9Sstevel@tonic-gate  * with the License.
87c478bd9Sstevel@tonic-gate  *
97c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
107c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
117c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
127c478bd9Sstevel@tonic-gate  * and limitations under the License.
137c478bd9Sstevel@tonic-gate  *
147c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
157c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
167c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
177c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
187c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
197c478bd9Sstevel@tonic-gate  *
207c478bd9Sstevel@tonic-gate  * CDDL HEADER END
217c478bd9Sstevel@tonic-gate  */
22*61961e0fSrobinson 
237c478bd9Sstevel@tonic-gate /*
24*61961e0fSrobinson  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
257c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
267c478bd9Sstevel@tonic-gate  */
277c478bd9Sstevel@tonic-gate /* Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T */
287c478bd9Sstevel@tonic-gate /* All Rights Reserved */
297c478bd9Sstevel@tonic-gate /*
307c478bd9Sstevel@tonic-gate  * Portions of this source code were derived from Berkeley
317c478bd9Sstevel@tonic-gate  * 4.3 BSD under license from the Regents of the University of
327c478bd9Sstevel@tonic-gate  * California.
337c478bd9Sstevel@tonic-gate  */
347c478bd9Sstevel@tonic-gate 
357c478bd9Sstevel@tonic-gate /*
367c478bd9Sstevel@tonic-gate  * xdr_rec.c, Implements (TCP/IP based) XDR streams with a "record marking"
377c478bd9Sstevel@tonic-gate  * layer above connection oriented transport layer (e.g. tcp) (for rpc's use).
387c478bd9Sstevel@tonic-gate  *
397c478bd9Sstevel@tonic-gate  *
407c478bd9Sstevel@tonic-gate  * These routines interface XDRSTREAMS to a (tcp/ip) connection transport.
417c478bd9Sstevel@tonic-gate  * There is a record marking layer between the xdr stream
427c478bd9Sstevel@tonic-gate  * and the (tcp) cv transport level.  A record is composed on one or more
437c478bd9Sstevel@tonic-gate  * record fragments.  A record fragment is a thirty-two bit header followed
447c478bd9Sstevel@tonic-gate  * by n bytes of data, where n is contained in the header.  The header
457c478bd9Sstevel@tonic-gate  * is represented as a htonl(ulong_t).  The order bit encodes
467c478bd9Sstevel@tonic-gate  * whether or not the fragment is the last fragment of the record
477c478bd9Sstevel@tonic-gate  * (1 => fragment is last, 0 => more fragments to follow.
487c478bd9Sstevel@tonic-gate  * The other 31 bits encode the byte length of the fragment.
497c478bd9Sstevel@tonic-gate  */
507c478bd9Sstevel@tonic-gate 
517c478bd9Sstevel@tonic-gate #include "mt.h"
527c478bd9Sstevel@tonic-gate #include "rpc_mt.h"
537c478bd9Sstevel@tonic-gate #include <stdio.h>
547c478bd9Sstevel@tonic-gate #include <rpc/types.h>
557c478bd9Sstevel@tonic-gate #include <rpc/rpc.h>
567c478bd9Sstevel@tonic-gate #include <sys/types.h>
577c478bd9Sstevel@tonic-gate #include <syslog.h>
587c478bd9Sstevel@tonic-gate #include <memory.h>
597c478bd9Sstevel@tonic-gate #include <stdlib.h>
607c478bd9Sstevel@tonic-gate #include <unistd.h>
617c478bd9Sstevel@tonic-gate #include <inttypes.h>
627c478bd9Sstevel@tonic-gate #include <string.h>
637c478bd9Sstevel@tonic-gate 
647c478bd9Sstevel@tonic-gate /*
657c478bd9Sstevel@tonic-gate  * A record is composed of one or more record fragments.
667c478bd9Sstevel@tonic-gate  * A record fragment is a four-byte header followed by zero to
677c478bd9Sstevel@tonic-gate  * 2**32-1 bytes.  The header is treated as a long unsigned and is
687c478bd9Sstevel@tonic-gate  * encode/decoded to the network via htonl/ntohl.  The low order 31 bits
697c478bd9Sstevel@tonic-gate  * are a byte count of the fragment.  The highest order bit is a boolean:
707c478bd9Sstevel@tonic-gate  * 1 => this fragment is the last fragment of the record,
717c478bd9Sstevel@tonic-gate  * 0 => this fragment is followed by more fragment(s).
727c478bd9Sstevel@tonic-gate  *
737c478bd9Sstevel@tonic-gate  * The fragment/record machinery is not general;  it is constructed to
747c478bd9Sstevel@tonic-gate  * meet the needs of xdr and rpc based on tcp.
757c478bd9Sstevel@tonic-gate  */
767c478bd9Sstevel@tonic-gate 
777c478bd9Sstevel@tonic-gate #define	LAST_FRAG (((uint32_t)1 << 31))
787c478bd9Sstevel@tonic-gate 
797c478bd9Sstevel@tonic-gate /*
807c478bd9Sstevel@tonic-gate  * Minimum fragment size is size of rpc callmsg over TCP:
817c478bd9Sstevel@tonic-gate  * xid direction vers prog vers proc
827c478bd9Sstevel@tonic-gate  *   cred flavor, cred length, cred
837c478bd9Sstevel@tonic-gate  *   verf flavor, verf length, verf
847c478bd9Sstevel@tonic-gate  *   (with no cred or verf allocated)
857c478bd9Sstevel@tonic-gate  */
867c478bd9Sstevel@tonic-gate #define	MIN_FRAG	(10 * BYTES_PER_XDR_UNIT)
877c478bd9Sstevel@tonic-gate 
887c478bd9Sstevel@tonic-gate typedef struct rec_strm {
897c478bd9Sstevel@tonic-gate 	caddr_t tcp_handle;
907c478bd9Sstevel@tonic-gate 	/*
917c478bd9Sstevel@tonic-gate 	 * out-going bits
927c478bd9Sstevel@tonic-gate 	 */
937c478bd9Sstevel@tonic-gate 	int (*writeit)();
947c478bd9Sstevel@tonic-gate 	caddr_t out_base;	/* output buffer (points to frag header) */
957c478bd9Sstevel@tonic-gate 	caddr_t out_finger;	/* next output position */
967c478bd9Sstevel@tonic-gate 	caddr_t out_boundry;	/* data cannot up to this address */
977c478bd9Sstevel@tonic-gate 	uint32_t *frag_header;	/* beginning of current fragment */
987c478bd9Sstevel@tonic-gate 	bool_t frag_sent;	/* true if buffer sent in middle of record */
997c478bd9Sstevel@tonic-gate 	/*
1007c478bd9Sstevel@tonic-gate 	 * in-coming bits
1017c478bd9Sstevel@tonic-gate 	 */
1027c478bd9Sstevel@tonic-gate 	int (*readit)();
1037c478bd9Sstevel@tonic-gate 	caddr_t in_base;	/* input buffer */
1047c478bd9Sstevel@tonic-gate 	caddr_t in_finger;	/* location of next byte to be had */
1057c478bd9Sstevel@tonic-gate 	caddr_t in_boundry;	/* can read up to this location */
1067c478bd9Sstevel@tonic-gate 	int fbtbc;		/* fragment bytes to be consumed */
1077c478bd9Sstevel@tonic-gate 	bool_t last_frag;
1087c478bd9Sstevel@tonic-gate 	uint_t sendsize;
1097c478bd9Sstevel@tonic-gate 	uint_t recvsize;
1107c478bd9Sstevel@tonic-gate 	/*
1117c478bd9Sstevel@tonic-gate 	 * Is this the first time that the
1127c478bd9Sstevel@tonic-gate 	 * getbytes routine has been called ?
1137c478bd9Sstevel@tonic-gate 	 */
1147c478bd9Sstevel@tonic-gate 	uint_t firsttime;
1157c478bd9Sstevel@tonic-gate 	/*
1167c478bd9Sstevel@tonic-gate 	 * Is this non-blocked?
1177c478bd9Sstevel@tonic-gate 	 */
1187c478bd9Sstevel@tonic-gate 	uint_t in_nonblock;	/* non-blocked input */
1197c478bd9Sstevel@tonic-gate 	uint_t in_needpoll;	/* need to poll to get more data ? */
1207c478bd9Sstevel@tonic-gate 	uint32_t in_maxrecsz;	/* maximum record size */
1217c478bd9Sstevel@tonic-gate 	caddr_t in_nextrec;	/* start of next record */
1227c478bd9Sstevel@tonic-gate 	uint32_t in_nextrecsz;	/* part of next record in buffer */
1237c478bd9Sstevel@tonic-gate } RECSTREAM;
1247c478bd9Sstevel@tonic-gate 
125*61961e0fSrobinson static uint_t	fix_buf_size(uint_t);
126*61961e0fSrobinson static struct	xdr_ops *xdrrec_ops(void);
127*61961e0fSrobinson static bool_t	xdrrec_getbytes(XDR *, caddr_t, int);
128*61961e0fSrobinson static bool_t	flush_out(RECSTREAM *, bool_t);
129*61961e0fSrobinson static bool_t	get_input_bytes(RECSTREAM *, caddr_t, int, bool_t);
130*61961e0fSrobinson static bool_t	set_input_fragment(RECSTREAM *);
131*61961e0fSrobinson static bool_t	skip_input_bytes(RECSTREAM *, int32_t);
132*61961e0fSrobinson 
133*61961e0fSrobinson bool_t		__xdrrec_getbytes_nonblock(XDR *, enum xprt_stat *);
134*61961e0fSrobinson 
1357c478bd9Sstevel@tonic-gate /*
1367c478bd9Sstevel@tonic-gate  * Create an xdr handle for xdrrec
1377c478bd9Sstevel@tonic-gate  * xdrrec_create fills in xdrs.  Sendsize and recvsize are
1387c478bd9Sstevel@tonic-gate  * send and recv buffer sizes (0 => use default).
1397c478bd9Sstevel@tonic-gate  * vc_handle is an opaque handle that is passed as the first parameter to
1407c478bd9Sstevel@tonic-gate  * the procedures readit and writeit.  Readit and writeit are read and
1417c478bd9Sstevel@tonic-gate  * write respectively. They are like the system calls expect that they
1427c478bd9Sstevel@tonic-gate  * take an opaque handle rather than an fd.
1437c478bd9Sstevel@tonic-gate  */
1447c478bd9Sstevel@tonic-gate 
1457c478bd9Sstevel@tonic-gate static const char mem_err_msg_rec[] = "xdrrec_create: out of memory";
1467c478bd9Sstevel@tonic-gate 
1477c478bd9Sstevel@tonic-gate void
xdrrec_create(XDR * xdrs,const uint_t sendsize,const uint_t recvsize,const caddr_t tcp_handle,int (* readit)(),int (* writeit)())148*61961e0fSrobinson xdrrec_create(XDR *xdrs, const uint_t sendsize, const uint_t recvsize,
149*61961e0fSrobinson     const caddr_t tcp_handle, int (*readit)(), int (*writeit)())
1507c478bd9Sstevel@tonic-gate {
151*61961e0fSrobinson 	RECSTREAM *rstrm = malloc(sizeof (RECSTREAM));
1527c478bd9Sstevel@tonic-gate 
1537c478bd9Sstevel@tonic-gate 	/*
1547c478bd9Sstevel@tonic-gate 	 * XXX: Should still rework xdrrec_create to return a handle,
1557c478bd9Sstevel@tonic-gate 	 * and in any malloc-failure case return NULL.
1567c478bd9Sstevel@tonic-gate 	 */
1577c478bd9Sstevel@tonic-gate 	if (rstrm == NULL) {
1587c478bd9Sstevel@tonic-gate 		(void) syslog(LOG_ERR, mem_err_msg_rec);
1597c478bd9Sstevel@tonic-gate 		return;
1607c478bd9Sstevel@tonic-gate 	}
1617c478bd9Sstevel@tonic-gate 	/*
162*61961e0fSrobinson 	 * Adjust sizes and allocate buffers; malloc(3C)
163*61961e0fSrobinson 	 * provides a buffer suitably aligned for any use, so
1647c478bd9Sstevel@tonic-gate 	 * there's no need for us to mess around with alignment.
1657c478bd9Sstevel@tonic-gate 	 *
1667c478bd9Sstevel@tonic-gate 	 * Since non-blocking connections may need to reallocate the input
167*61961e0fSrobinson 	 * buffer, we use separate malloc()s for input and output.
1687c478bd9Sstevel@tonic-gate 	 */
169*61961e0fSrobinson 	rstrm->sendsize = fix_buf_size(sendsize);
170*61961e0fSrobinson 	rstrm->recvsize = fix_buf_size(recvsize);
171*61961e0fSrobinson 	rstrm->out_base = malloc(rstrm->sendsize);
1727c478bd9Sstevel@tonic-gate 	if (rstrm->out_base == NULL) {
1737c478bd9Sstevel@tonic-gate 		(void) syslog(LOG_ERR, mem_err_msg_rec);
174*61961e0fSrobinson 		free(rstrm);
1757c478bd9Sstevel@tonic-gate 		return;
1767c478bd9Sstevel@tonic-gate 	}
177*61961e0fSrobinson 	rstrm->in_base = malloc(rstrm->recvsize);
1787c478bd9Sstevel@tonic-gate 	if (rstrm->in_base == NULL) {
1797c478bd9Sstevel@tonic-gate 		(void) syslog(LOG_ERR, mem_err_msg_rec);
180*61961e0fSrobinson 		free(rstrm->out_base);
181*61961e0fSrobinson 		free(rstrm);
1827c478bd9Sstevel@tonic-gate 		return;
1837c478bd9Sstevel@tonic-gate 	}
1847c478bd9Sstevel@tonic-gate 
1857c478bd9Sstevel@tonic-gate 	/*
1867c478bd9Sstevel@tonic-gate 	 * now the rest ...
1877c478bd9Sstevel@tonic-gate 	 */
1887c478bd9Sstevel@tonic-gate 
1897c478bd9Sstevel@tonic-gate 	xdrs->x_ops = xdrrec_ops();
1907c478bd9Sstevel@tonic-gate 	xdrs->x_private = (caddr_t)rstrm;
1917c478bd9Sstevel@tonic-gate 	rstrm->tcp_handle = tcp_handle;
1927c478bd9Sstevel@tonic-gate 	rstrm->readit = readit;
1937c478bd9Sstevel@tonic-gate 	rstrm->writeit = writeit;
1947c478bd9Sstevel@tonic-gate 	rstrm->out_finger = rstrm->out_boundry = rstrm->out_base;
195*61961e0fSrobinson 	/* LINTED pointer cast */
1967c478bd9Sstevel@tonic-gate 	rstrm->frag_header = (uint32_t *)rstrm->out_base;
1977c478bd9Sstevel@tonic-gate 	rstrm->out_finger += sizeof (uint_t);
198*61961e0fSrobinson 	rstrm->out_boundry += rstrm->sendsize;
1997c478bd9Sstevel@tonic-gate 	rstrm->frag_sent = FALSE;
2007c478bd9Sstevel@tonic-gate 	rstrm->in_boundry = rstrm->in_base;
201*61961e0fSrobinson 	rstrm->in_finger = (rstrm->in_boundry += rstrm->recvsize);
2027c478bd9Sstevel@tonic-gate 	rstrm->fbtbc = 0;
2037c478bd9Sstevel@tonic-gate 	rstrm->last_frag = TRUE;
2047c478bd9Sstevel@tonic-gate 	rstrm->firsttime = 0;
2057c478bd9Sstevel@tonic-gate 	rstrm->in_nonblock = 0;
2067c478bd9Sstevel@tonic-gate 	rstrm->in_needpoll = 1;
2077c478bd9Sstevel@tonic-gate 	rstrm->in_maxrecsz = 0;
2087c478bd9Sstevel@tonic-gate 	rstrm->in_nextrec = rstrm->in_base;
2097c478bd9Sstevel@tonic-gate 	rstrm->in_nextrecsz = 0;
2107c478bd9Sstevel@tonic-gate }
2117c478bd9Sstevel@tonic-gate 
2127c478bd9Sstevel@tonic-gate /*
2137c478bd9Sstevel@tonic-gate  * Align input stream.  If all applications behaved correctly, this
2147c478bd9Sstevel@tonic-gate  * defensive procedure will not be necessary, since received data will be
2157c478bd9Sstevel@tonic-gate  * aligned correctly.
2167c478bd9Sstevel@tonic-gate  */
2177c478bd9Sstevel@tonic-gate static void
align_instream(RECSTREAM * rstrm)2187c478bd9Sstevel@tonic-gate align_instream(RECSTREAM *rstrm)
2197c478bd9Sstevel@tonic-gate {
2207c478bd9Sstevel@tonic-gate 	int current = rstrm->in_boundry - rstrm->in_finger;
2217c478bd9Sstevel@tonic-gate 
2227c478bd9Sstevel@tonic-gate 	(void) memcpy(rstrm->in_base, rstrm->in_finger, current);
2237c478bd9Sstevel@tonic-gate 	rstrm->in_finger = rstrm->in_base;
2247c478bd9Sstevel@tonic-gate 	rstrm->in_boundry = rstrm->in_finger + current;
2257c478bd9Sstevel@tonic-gate }
2267c478bd9Sstevel@tonic-gate 
2277c478bd9Sstevel@tonic-gate /*
2287c478bd9Sstevel@tonic-gate  * The routines defined below are the xdr ops which will go into the
2297c478bd9Sstevel@tonic-gate  * xdr handle filled in by xdrrec_create.
2307c478bd9Sstevel@tonic-gate  */
2317c478bd9Sstevel@tonic-gate static bool_t
xdrrec_getint32(XDR * xdrs,int32_t * ip)2327c478bd9Sstevel@tonic-gate xdrrec_getint32(XDR *xdrs, int32_t *ip)
2337c478bd9Sstevel@tonic-gate {
234*61961e0fSrobinson 	/* LINTED pointer cast */
2357c478bd9Sstevel@tonic-gate 	RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private);
236*61961e0fSrobinson 	/* LINTED pointer cast */
2377c478bd9Sstevel@tonic-gate 	int32_t *buflp = (int32_t *)(rstrm->in_finger);
2387c478bd9Sstevel@tonic-gate 	int32_t mylong;
2397c478bd9Sstevel@tonic-gate 
2407c478bd9Sstevel@tonic-gate 	/* first try the inline, fast case */
2417c478bd9Sstevel@tonic-gate 	if ((rstrm->fbtbc >= (int)sizeof (int32_t)) &&
2427c478bd9Sstevel@tonic-gate 		((uint_t)(rstrm->in_boundry - (caddr_t)buflp) >=
2437c478bd9Sstevel@tonic-gate 					(uint_t)sizeof (int32_t))) {
2447c478bd9Sstevel@tonic-gate 		/*
2457c478bd9Sstevel@tonic-gate 		 * Check if buflp is longword aligned.  If not, align it.
2467c478bd9Sstevel@tonic-gate 		 */
2477c478bd9Sstevel@tonic-gate 		if (((uintptr_t)buflp) & ((int)sizeof (int32_t) - 1)) {
2487c478bd9Sstevel@tonic-gate 			align_instream(rstrm);
249*61961e0fSrobinson 			/* LINTED pointer cast */
2507c478bd9Sstevel@tonic-gate 			buflp = (int32_t *)(rstrm->in_finger);
2517c478bd9Sstevel@tonic-gate 		}
2527c478bd9Sstevel@tonic-gate 		*ip = (int32_t)ntohl((uint32_t)(*buflp));
2537c478bd9Sstevel@tonic-gate 		rstrm->fbtbc -= (int)sizeof (int32_t);
2547c478bd9Sstevel@tonic-gate 		rstrm->in_finger += sizeof (int32_t);
2557c478bd9Sstevel@tonic-gate 	} else {
256*61961e0fSrobinson 		if (!xdrrec_getbytes(xdrs, (caddr_t)&mylong, sizeof (int32_t)))
2577c478bd9Sstevel@tonic-gate 			return (FALSE);
2587c478bd9Sstevel@tonic-gate 		*ip = (int32_t)ntohl((uint32_t)mylong);
2597c478bd9Sstevel@tonic-gate 	}
2607c478bd9Sstevel@tonic-gate 	return (TRUE);
2617c478bd9Sstevel@tonic-gate }
2627c478bd9Sstevel@tonic-gate 
2637c478bd9Sstevel@tonic-gate static bool_t
xdrrec_putint32(XDR * xdrs,int32_t * ip)2647c478bd9Sstevel@tonic-gate xdrrec_putint32(XDR *xdrs, int32_t *ip)
2657c478bd9Sstevel@tonic-gate {
266*61961e0fSrobinson 	/* LINTED pointer cast */
2677c478bd9Sstevel@tonic-gate 	RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private);
268*61961e0fSrobinson 	/* LINTED pointer cast */
2697c478bd9Sstevel@tonic-gate 	int32_t *dest_lp = ((int32_t *)(rstrm->out_finger));
2707c478bd9Sstevel@tonic-gate 
2717c478bd9Sstevel@tonic-gate 	if ((rstrm->out_finger += sizeof (int32_t)) > rstrm->out_boundry) {
2727c478bd9Sstevel@tonic-gate 		/*
2737c478bd9Sstevel@tonic-gate 		 * this case should almost never happen so the code is
2747c478bd9Sstevel@tonic-gate 		 * inefficient
2757c478bd9Sstevel@tonic-gate 		 */
2767c478bd9Sstevel@tonic-gate 		rstrm->out_finger -= sizeof (int32_t);
2777c478bd9Sstevel@tonic-gate 		rstrm->frag_sent = TRUE;
278*61961e0fSrobinson 		if (!flush_out(rstrm, FALSE))
2797c478bd9Sstevel@tonic-gate 			return (FALSE);
280*61961e0fSrobinson 		/* LINTED pointer cast */
2817c478bd9Sstevel@tonic-gate 		dest_lp = ((int32_t *)(rstrm->out_finger));
2827c478bd9Sstevel@tonic-gate 		rstrm->out_finger += sizeof (int32_t);
2837c478bd9Sstevel@tonic-gate 	}
2847c478bd9Sstevel@tonic-gate 	*dest_lp = (int32_t)htonl((uint32_t)(*ip));
2857c478bd9Sstevel@tonic-gate 	return (TRUE);
2867c478bd9Sstevel@tonic-gate }
2877c478bd9Sstevel@tonic-gate 
2887c478bd9Sstevel@tonic-gate static bool_t
xdrrec_getlong(XDR * xdrs,long * lp)2897c478bd9Sstevel@tonic-gate xdrrec_getlong(XDR *xdrs, long *lp)
2907c478bd9Sstevel@tonic-gate {
2917c478bd9Sstevel@tonic-gate 	int32_t i;
2927c478bd9Sstevel@tonic-gate 
2937c478bd9Sstevel@tonic-gate 	if (!xdrrec_getint32(xdrs, &i))
2947c478bd9Sstevel@tonic-gate 		return (FALSE);
2957c478bd9Sstevel@tonic-gate 	*lp = (long)i;
2967c478bd9Sstevel@tonic-gate 	return (TRUE);
2977c478bd9Sstevel@tonic-gate }
2987c478bd9Sstevel@tonic-gate 
2997c478bd9Sstevel@tonic-gate static bool_t
xdrrec_putlong(XDR * xdrs,long * lp)3007c478bd9Sstevel@tonic-gate xdrrec_putlong(XDR *xdrs, long *lp)
3017c478bd9Sstevel@tonic-gate {
3027c478bd9Sstevel@tonic-gate 	int32_t i;
3037c478bd9Sstevel@tonic-gate 
3047c478bd9Sstevel@tonic-gate #if defined(_LP64)
305*61961e0fSrobinson 	if ((*lp > INT32_MAX) || (*lp < INT32_MIN))
3067c478bd9Sstevel@tonic-gate 		return (FALSE);
3077c478bd9Sstevel@tonic-gate #endif
3087c478bd9Sstevel@tonic-gate 
3097c478bd9Sstevel@tonic-gate 	i = (int32_t)*lp;
3107c478bd9Sstevel@tonic-gate 
3117c478bd9Sstevel@tonic-gate 	return (xdrrec_putint32(xdrs, &i));
3127c478bd9Sstevel@tonic-gate }
3137c478bd9Sstevel@tonic-gate 
3147c478bd9Sstevel@tonic-gate static bool_t	/* must manage buffers, fragments, and records */
xdrrec_getbytes(XDR * xdrs,caddr_t addr,int len)3157c478bd9Sstevel@tonic-gate xdrrec_getbytes(XDR *xdrs, caddr_t addr, int len)
3167c478bd9Sstevel@tonic-gate {
317*61961e0fSrobinson 	/* LINTED pointer cast */
3187c478bd9Sstevel@tonic-gate 	RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private);
3197c478bd9Sstevel@tonic-gate 	int current;
3207c478bd9Sstevel@tonic-gate 
3217c478bd9Sstevel@tonic-gate 	while (len > 0) {
3227c478bd9Sstevel@tonic-gate 		current = rstrm->fbtbc;
3237c478bd9Sstevel@tonic-gate 		if (current == 0) {
324*61961e0fSrobinson 			if (rstrm->last_frag)
3257c478bd9Sstevel@tonic-gate 				return (FALSE);
326*61961e0fSrobinson 			if (!set_input_fragment(rstrm))
3277c478bd9Sstevel@tonic-gate 				return (FALSE);
3287c478bd9Sstevel@tonic-gate 			continue;
3297c478bd9Sstevel@tonic-gate 		}
3307c478bd9Sstevel@tonic-gate 		current = (len < current) ? len : current;
331*61961e0fSrobinson 		if (!get_input_bytes(rstrm, addr, current, FALSE))
3327c478bd9Sstevel@tonic-gate 			return (FALSE);
3337c478bd9Sstevel@tonic-gate 		addr += current;
3347c478bd9Sstevel@tonic-gate 		rstrm->fbtbc -= current;
3357c478bd9Sstevel@tonic-gate 		len -= current;
3367c478bd9Sstevel@tonic-gate 	}
3377c478bd9Sstevel@tonic-gate 	return (TRUE);
3387c478bd9Sstevel@tonic-gate }
3397c478bd9Sstevel@tonic-gate 
3407c478bd9Sstevel@tonic-gate static bool_t
xdrrec_putbytes(XDR * xdrs,caddr_t addr,int len)3417c478bd9Sstevel@tonic-gate xdrrec_putbytes(XDR *xdrs, caddr_t addr, int len)
3427c478bd9Sstevel@tonic-gate {
343*61961e0fSrobinson 	/* LINTED pointer cast */
3447c478bd9Sstevel@tonic-gate 	RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private);
3457c478bd9Sstevel@tonic-gate 	int current;
3467c478bd9Sstevel@tonic-gate 
3477c478bd9Sstevel@tonic-gate 	while (len > 0) {
3487c478bd9Sstevel@tonic-gate 
3497c478bd9Sstevel@tonic-gate 		current = (uintptr_t)rstrm->out_boundry -
3507c478bd9Sstevel@tonic-gate 			(uintptr_t)rstrm->out_finger;
3517c478bd9Sstevel@tonic-gate 		current = (len < current) ? len : current;
3527c478bd9Sstevel@tonic-gate 		(void) memcpy(rstrm->out_finger, addr, current);
3537c478bd9Sstevel@tonic-gate 		rstrm->out_finger += current;
3547c478bd9Sstevel@tonic-gate 		addr += current;
3557c478bd9Sstevel@tonic-gate 		len -= current;
3567c478bd9Sstevel@tonic-gate 		if (rstrm->out_finger == rstrm->out_boundry) {
3577c478bd9Sstevel@tonic-gate 			rstrm->frag_sent = TRUE;
358*61961e0fSrobinson 			if (!flush_out(rstrm, FALSE))
3597c478bd9Sstevel@tonic-gate 				return (FALSE);
3607c478bd9Sstevel@tonic-gate 		}
3617c478bd9Sstevel@tonic-gate 	}
3627c478bd9Sstevel@tonic-gate 	return (TRUE);
3637c478bd9Sstevel@tonic-gate }
3647c478bd9Sstevel@tonic-gate /*
3657c478bd9Sstevel@tonic-gate  * This is just like the ops vector x_getbytes(), except that
3667c478bd9Sstevel@tonic-gate  * instead of returning success or failure on getting a certain number
3677c478bd9Sstevel@tonic-gate  * of bytes, it behaves much more like the read() system call against a
3687c478bd9Sstevel@tonic-gate  * pipe -- it returns up to the number of bytes requested and a return of
3697c478bd9Sstevel@tonic-gate  * zero indicates end-of-record.  A -1 means something very bad happened.
3707c478bd9Sstevel@tonic-gate  */
3717c478bd9Sstevel@tonic-gate uint_t /* must manage buffers, fragments, and records */
xdrrec_readbytes(XDR * xdrs,caddr_t addr,uint_t l)3727c478bd9Sstevel@tonic-gate xdrrec_readbytes(XDR *xdrs, caddr_t addr, uint_t l)
3737c478bd9Sstevel@tonic-gate {
374*61961e0fSrobinson 	/* LINTED pointer cast */
3757c478bd9Sstevel@tonic-gate 	RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private);
3767c478bd9Sstevel@tonic-gate 	int current, len;
3777c478bd9Sstevel@tonic-gate 
3787c478bd9Sstevel@tonic-gate 	len = l;
3797c478bd9Sstevel@tonic-gate 	while (len > 0) {
3807c478bd9Sstevel@tonic-gate 		current = rstrm->fbtbc;
3817c478bd9Sstevel@tonic-gate 		if (current == 0) {
3827c478bd9Sstevel@tonic-gate 			if (rstrm->last_frag)
3837c478bd9Sstevel@tonic-gate 				return (l - len);
384*61961e0fSrobinson 			if (!set_input_fragment(rstrm))
3857c478bd9Sstevel@tonic-gate 				return ((uint_t)-1);
3867c478bd9Sstevel@tonic-gate 			continue;
3877c478bd9Sstevel@tonic-gate 		}
3887c478bd9Sstevel@tonic-gate 		current = (len < current) ? len : current;
389*61961e0fSrobinson 		if (!get_input_bytes(rstrm, addr, current, FALSE))
3907c478bd9Sstevel@tonic-gate 			return ((uint_t)-1);
3917c478bd9Sstevel@tonic-gate 		addr += current;
3927c478bd9Sstevel@tonic-gate 		rstrm->fbtbc -= current;
3937c478bd9Sstevel@tonic-gate 		len -= current;
3947c478bd9Sstevel@tonic-gate 	}
3957c478bd9Sstevel@tonic-gate 	return (l - len);
3967c478bd9Sstevel@tonic-gate }
3977c478bd9Sstevel@tonic-gate 
3987c478bd9Sstevel@tonic-gate static uint_t
xdrrec_getpos(XDR * xdrs)3997c478bd9Sstevel@tonic-gate xdrrec_getpos(XDR *xdrs)
4007c478bd9Sstevel@tonic-gate {
401*61961e0fSrobinson 	/* LINTED pointer cast */
4027c478bd9Sstevel@tonic-gate 	RECSTREAM *rstrm = (RECSTREAM *)xdrs->x_private;
4037c478bd9Sstevel@tonic-gate 	int32_t pos;
4047c478bd9Sstevel@tonic-gate 
4057c478bd9Sstevel@tonic-gate 	pos = lseek((intptr_t)rstrm->tcp_handle, 0, 1);
4067c478bd9Sstevel@tonic-gate 	if (pos != -1)
4077c478bd9Sstevel@tonic-gate 		switch (xdrs->x_op) {
4087c478bd9Sstevel@tonic-gate 
4097c478bd9Sstevel@tonic-gate 		case XDR_ENCODE:
4107c478bd9Sstevel@tonic-gate 			pos += rstrm->out_finger - rstrm->out_base;
4117c478bd9Sstevel@tonic-gate 			break;
4127c478bd9Sstevel@tonic-gate 
4137c478bd9Sstevel@tonic-gate 		case XDR_DECODE:
4147c478bd9Sstevel@tonic-gate 			pos -= rstrm->in_boundry - rstrm->in_finger;
4157c478bd9Sstevel@tonic-gate 			break;
4167c478bd9Sstevel@tonic-gate 
4177c478bd9Sstevel@tonic-gate 		default:
4187c478bd9Sstevel@tonic-gate 			pos = (uint_t)-1;
4197c478bd9Sstevel@tonic-gate 			break;
4207c478bd9Sstevel@tonic-gate 		}
4217c478bd9Sstevel@tonic-gate 	return ((uint_t)pos);
4227c478bd9Sstevel@tonic-gate }
4237c478bd9Sstevel@tonic-gate 
4247c478bd9Sstevel@tonic-gate static bool_t
xdrrec_setpos(XDR * xdrs,uint_t pos)4257c478bd9Sstevel@tonic-gate xdrrec_setpos(XDR *xdrs, uint_t pos)
4267c478bd9Sstevel@tonic-gate {
427*61961e0fSrobinson 	/* LINTED pointer cast */
4287c478bd9Sstevel@tonic-gate 	RECSTREAM *rstrm = (RECSTREAM *)xdrs->x_private;
4297c478bd9Sstevel@tonic-gate 	uint_t currpos = xdrrec_getpos(xdrs);
4307c478bd9Sstevel@tonic-gate 	int delta = currpos - pos;
4317c478bd9Sstevel@tonic-gate 	caddr_t newpos;
4327c478bd9Sstevel@tonic-gate 
4337c478bd9Sstevel@tonic-gate 	if ((int)currpos != -1)
4347c478bd9Sstevel@tonic-gate 		switch (xdrs->x_op) {
4357c478bd9Sstevel@tonic-gate 
4367c478bd9Sstevel@tonic-gate 		case XDR_ENCODE:
4377c478bd9Sstevel@tonic-gate 			newpos = rstrm->out_finger - delta;
4387c478bd9Sstevel@tonic-gate 			if ((newpos > (caddr_t)(rstrm->frag_header)) &&
4397c478bd9Sstevel@tonic-gate 				(newpos < rstrm->out_boundry)) {
4407c478bd9Sstevel@tonic-gate 				rstrm->out_finger = newpos;
4417c478bd9Sstevel@tonic-gate 				return (TRUE);
4427c478bd9Sstevel@tonic-gate 			}
4437c478bd9Sstevel@tonic-gate 			break;
4447c478bd9Sstevel@tonic-gate 
4457c478bd9Sstevel@tonic-gate 		case XDR_DECODE:
4467c478bd9Sstevel@tonic-gate 			newpos = rstrm->in_finger - delta;
4477c478bd9Sstevel@tonic-gate 			if ((delta < (int)(rstrm->fbtbc)) &&
4487c478bd9Sstevel@tonic-gate 				(newpos <= rstrm->in_boundry) &&
4497c478bd9Sstevel@tonic-gate 				(newpos >= rstrm->in_base)) {
4507c478bd9Sstevel@tonic-gate 				rstrm->in_finger = newpos;
4517c478bd9Sstevel@tonic-gate 				rstrm->fbtbc -= delta;
4527c478bd9Sstevel@tonic-gate 				return (TRUE);
4537c478bd9Sstevel@tonic-gate 			}
4547c478bd9Sstevel@tonic-gate 			break;
4557c478bd9Sstevel@tonic-gate 		}
4567c478bd9Sstevel@tonic-gate 	return (FALSE);
4577c478bd9Sstevel@tonic-gate }
4587c478bd9Sstevel@tonic-gate 
4597c478bd9Sstevel@tonic-gate static rpc_inline_t *
xdrrec_inline(XDR * xdrs,int len)4607c478bd9Sstevel@tonic-gate xdrrec_inline(XDR *xdrs, int len)
4617c478bd9Sstevel@tonic-gate {
462*61961e0fSrobinson 	/* LINTED pointer cast */
4637c478bd9Sstevel@tonic-gate 	RECSTREAM *rstrm = (RECSTREAM *)xdrs->x_private;
4647c478bd9Sstevel@tonic-gate 	rpc_inline_t *buf = NULL;
4657c478bd9Sstevel@tonic-gate 
4667c478bd9Sstevel@tonic-gate 	switch (xdrs->x_op) {
4677c478bd9Sstevel@tonic-gate 
4687c478bd9Sstevel@tonic-gate 	case XDR_ENCODE:
4697c478bd9Sstevel@tonic-gate 		if ((rstrm->out_finger + len) <= rstrm->out_boundry) {
470*61961e0fSrobinson 			/* LINTED pointer cast */
4717c478bd9Sstevel@tonic-gate 			buf = (rpc_inline_t *)rstrm->out_finger;
4727c478bd9Sstevel@tonic-gate 			rstrm->out_finger += len;
4737c478bd9Sstevel@tonic-gate 		}
4747c478bd9Sstevel@tonic-gate 		break;
4757c478bd9Sstevel@tonic-gate 
4767c478bd9Sstevel@tonic-gate 	case XDR_DECODE:
4777c478bd9Sstevel@tonic-gate 		if ((len <= rstrm->fbtbc) &&
4787c478bd9Sstevel@tonic-gate 			((rstrm->in_finger + len) <= rstrm->in_boundry)) {
4797c478bd9Sstevel@tonic-gate 			/*
4807c478bd9Sstevel@tonic-gate 			 * Check if rstrm->in_finger is longword aligned;
4817c478bd9Sstevel@tonic-gate 			 * if not, align it.
4827c478bd9Sstevel@tonic-gate 			 */
4837c478bd9Sstevel@tonic-gate 			if (((intptr_t)rstrm->in_finger) &
4847c478bd9Sstevel@tonic-gate 			    (sizeof (int32_t) - 1))
4857c478bd9Sstevel@tonic-gate 				align_instream(rstrm);
486*61961e0fSrobinson 			/* LINTED pointer cast */
4877c478bd9Sstevel@tonic-gate 			buf = (rpc_inline_t *)rstrm->in_finger;
4887c478bd9Sstevel@tonic-gate 			rstrm->fbtbc -= len;
4897c478bd9Sstevel@tonic-gate 			rstrm->in_finger += len;
4907c478bd9Sstevel@tonic-gate 		}
4917c478bd9Sstevel@tonic-gate 		break;
4927c478bd9Sstevel@tonic-gate 	}
4937c478bd9Sstevel@tonic-gate 	return (buf);
4947c478bd9Sstevel@tonic-gate }
4957c478bd9Sstevel@tonic-gate 
4967c478bd9Sstevel@tonic-gate static void
xdrrec_destroy(XDR * xdrs)4977c478bd9Sstevel@tonic-gate xdrrec_destroy(XDR *xdrs)
4987c478bd9Sstevel@tonic-gate {
499*61961e0fSrobinson 	/* LINTED pointer cast */
5007c478bd9Sstevel@tonic-gate 	RECSTREAM *rstrm = (RECSTREAM *)xdrs->x_private;
5017c478bd9Sstevel@tonic-gate 
502*61961e0fSrobinson 	free(rstrm->out_base);
503*61961e0fSrobinson 	free(rstrm->in_base);
504*61961e0fSrobinson 	free(rstrm);
5057c478bd9Sstevel@tonic-gate }
5067c478bd9Sstevel@tonic-gate 
5077c478bd9Sstevel@tonic-gate 
5087c478bd9Sstevel@tonic-gate /*
5097c478bd9Sstevel@tonic-gate  * Exported routines to manage xdr records
5107c478bd9Sstevel@tonic-gate  */
5117c478bd9Sstevel@tonic-gate 
5127c478bd9Sstevel@tonic-gate /*
5137c478bd9Sstevel@tonic-gate  * Before reading (deserializing) from the stream, one should always call
5147c478bd9Sstevel@tonic-gate  * this procedure to guarantee proper record alignment.
5157c478bd9Sstevel@tonic-gate  */
5167c478bd9Sstevel@tonic-gate bool_t
xdrrec_skiprecord(XDR * xdrs)5177c478bd9Sstevel@tonic-gate xdrrec_skiprecord(XDR *xdrs)
5187c478bd9Sstevel@tonic-gate {
519*61961e0fSrobinson 	/* LINTED pointer cast */
5207c478bd9Sstevel@tonic-gate 	RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private);
5217c478bd9Sstevel@tonic-gate 
5227c478bd9Sstevel@tonic-gate 	if (rstrm->in_nonblock) {
5237c478bd9Sstevel@tonic-gate 		enum xprt_stat pstat;
5247c478bd9Sstevel@tonic-gate 		/*
5257c478bd9Sstevel@tonic-gate 		 * Read and discard a record from the non-blocking
5267c478bd9Sstevel@tonic-gate 		 * buffer. Return succes only if a complete record can
5277c478bd9Sstevel@tonic-gate 		 * be retrieved without blocking, or if the buffer was
5287c478bd9Sstevel@tonic-gate 		 * empty and there was no data to fetch.
5297c478bd9Sstevel@tonic-gate 		 */
5307c478bd9Sstevel@tonic-gate 		if (__xdrrec_getbytes_nonblock(xdrs, &pstat) ||
5317c478bd9Sstevel@tonic-gate 			(pstat == XPRT_MOREREQS &&
5327c478bd9Sstevel@tonic-gate 				rstrm->in_finger == rstrm->in_boundry)) {
5337c478bd9Sstevel@tonic-gate 			rstrm->fbtbc = 0;
5347c478bd9Sstevel@tonic-gate 			return (TRUE);
5357c478bd9Sstevel@tonic-gate 		}
536*61961e0fSrobinson 		return (FALSE);
5377c478bd9Sstevel@tonic-gate 	}
538*61961e0fSrobinson 	while (rstrm->fbtbc > 0 || (!rstrm->last_frag)) {
539*61961e0fSrobinson 		if (!skip_input_bytes(rstrm, rstrm->fbtbc))
5407c478bd9Sstevel@tonic-gate 			return (FALSE);
5417c478bd9Sstevel@tonic-gate 		rstrm->fbtbc = 0;
542*61961e0fSrobinson 		if ((!rstrm->last_frag) && (!set_input_fragment(rstrm)))
5437c478bd9Sstevel@tonic-gate 			return (FALSE);
5447c478bd9Sstevel@tonic-gate 	}
5457c478bd9Sstevel@tonic-gate 	rstrm->last_frag = FALSE;
5467c478bd9Sstevel@tonic-gate 	return (TRUE);
5477c478bd9Sstevel@tonic-gate }
5487c478bd9Sstevel@tonic-gate 
5497c478bd9Sstevel@tonic-gate /*
5507c478bd9Sstevel@tonic-gate  * Look ahead fuction.
5517c478bd9Sstevel@tonic-gate  * Returns TRUE iff there is no more input in the buffer
5527c478bd9Sstevel@tonic-gate  * after consuming the rest of the current record.
5537c478bd9Sstevel@tonic-gate  */
5547c478bd9Sstevel@tonic-gate bool_t
xdrrec_eof(XDR * xdrs)5557c478bd9Sstevel@tonic-gate xdrrec_eof(XDR *xdrs)
5567c478bd9Sstevel@tonic-gate {
557*61961e0fSrobinson 	/* LINTED pointer cast */
5587c478bd9Sstevel@tonic-gate 	RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private);
5597c478bd9Sstevel@tonic-gate 
5607c478bd9Sstevel@tonic-gate 	if (rstrm->in_nonblock) {
5617c478bd9Sstevel@tonic-gate 		/*
5627c478bd9Sstevel@tonic-gate 		 * If in_needpoll is true, the non-blocking XDR stream
5637c478bd9Sstevel@tonic-gate 		 * does not have a complete record.
5647c478bd9Sstevel@tonic-gate 		 */
5657c478bd9Sstevel@tonic-gate 		return (rstrm->in_needpoll);
5667c478bd9Sstevel@tonic-gate 	}
567*61961e0fSrobinson 	while (rstrm->fbtbc > 0 || (!rstrm->last_frag)) {
568*61961e0fSrobinson 		if (!skip_input_bytes(rstrm, rstrm->fbtbc))
5697c478bd9Sstevel@tonic-gate 			return (TRUE);
5707c478bd9Sstevel@tonic-gate 		rstrm->fbtbc = 0;
571*61961e0fSrobinson 		if ((!rstrm->last_frag) && (!set_input_fragment(rstrm)))
5727c478bd9Sstevel@tonic-gate 			return (TRUE);
5737c478bd9Sstevel@tonic-gate 	}
574*61961e0fSrobinson 	if (rstrm->in_finger == rstrm->in_boundry)
5757c478bd9Sstevel@tonic-gate 		return (TRUE);
5767c478bd9Sstevel@tonic-gate 	return (FALSE);
5777c478bd9Sstevel@tonic-gate }
5787c478bd9Sstevel@tonic-gate 
5797c478bd9Sstevel@tonic-gate /*
5807c478bd9Sstevel@tonic-gate  * The client must tell the package when an end-of-record has occurred.
5817c478bd9Sstevel@tonic-gate  * The second parameters tells whether the record should be flushed to the
5827c478bd9Sstevel@tonic-gate  * (output) tcp stream.  (This let's the package support batched or
5837c478bd9Sstevel@tonic-gate  * pipelined procedure calls.)  TRUE => immmediate flush to tcp connection.
5847c478bd9Sstevel@tonic-gate  */
5857c478bd9Sstevel@tonic-gate bool_t
xdrrec_endofrecord(XDR * xdrs,bool_t sendnow)5867c478bd9Sstevel@tonic-gate xdrrec_endofrecord(XDR *xdrs, bool_t sendnow)
5877c478bd9Sstevel@tonic-gate {
588*61961e0fSrobinson 	/* LINTED pointer cast */
5897c478bd9Sstevel@tonic-gate 	RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private);
5907c478bd9Sstevel@tonic-gate 	uint32_t len;	/* fragment length */
5917c478bd9Sstevel@tonic-gate 
5927c478bd9Sstevel@tonic-gate 	if (sendnow || rstrm->frag_sent ||
5937c478bd9Sstevel@tonic-gate 		((uintptr_t)rstrm->out_finger + sizeof (uint32_t) >=
5947c478bd9Sstevel@tonic-gate 		(uintptr_t)rstrm->out_boundry)) {
5957c478bd9Sstevel@tonic-gate 		rstrm->frag_sent = FALSE;
596*61961e0fSrobinson 		return (flush_out(rstrm, TRUE));
5977c478bd9Sstevel@tonic-gate 	}
5987c478bd9Sstevel@tonic-gate 	len = (uintptr_t)(rstrm->out_finger) - (uintptr_t)(rstrm->frag_header) -
5997c478bd9Sstevel@tonic-gate 		sizeof (uint32_t);
6007c478bd9Sstevel@tonic-gate 	*(rstrm->frag_header) = htonl((uint32_t)len | LAST_FRAG);
601*61961e0fSrobinson 	/* LINTED pointer cast */
6027c478bd9Sstevel@tonic-gate 	rstrm->frag_header = (uint32_t *)rstrm->out_finger;
6037c478bd9Sstevel@tonic-gate 	rstrm->out_finger += sizeof (uint32_t);
6047c478bd9Sstevel@tonic-gate 	return (TRUE);
6057c478bd9Sstevel@tonic-gate }
6067c478bd9Sstevel@tonic-gate 
6077c478bd9Sstevel@tonic-gate 
6087c478bd9Sstevel@tonic-gate /*
6097c478bd9Sstevel@tonic-gate  * Internal useful routines
6107c478bd9Sstevel@tonic-gate  */
6117c478bd9Sstevel@tonic-gate static bool_t
flush_out(RECSTREAM * rstrm,bool_t eor)6127c478bd9Sstevel@tonic-gate flush_out(RECSTREAM *rstrm, bool_t eor)
6137c478bd9Sstevel@tonic-gate {
6147c478bd9Sstevel@tonic-gate 	uint32_t eormask = (eor == TRUE) ? LAST_FRAG : 0;
6157c478bd9Sstevel@tonic-gate 	uint32_t len = (uintptr_t)(rstrm->out_finger) -
6167c478bd9Sstevel@tonic-gate 		(uintptr_t)(rstrm->frag_header) - sizeof (uint32_t);
6177c478bd9Sstevel@tonic-gate 	int written;
6187c478bd9Sstevel@tonic-gate 
6197c478bd9Sstevel@tonic-gate 	*(rstrm->frag_header) = htonl(len | eormask);
6207c478bd9Sstevel@tonic-gate 	len = (uintptr_t)(rstrm->out_finger) - (uintptr_t)(rstrm->out_base);
6217c478bd9Sstevel@tonic-gate 
6227c478bd9Sstevel@tonic-gate 	written = (*(rstrm->writeit))
6237c478bd9Sstevel@tonic-gate 	    (rstrm->tcp_handle, rstrm->out_base, (int)len);
6247c478bd9Sstevel@tonic-gate 	/*
6257c478bd9Sstevel@tonic-gate 	 * Handle the specific 'CANT_STORE' error. In this case, the
6267c478bd9Sstevel@tonic-gate 	 * fragment must be cleared.
6277c478bd9Sstevel@tonic-gate 	 */
628*61961e0fSrobinson 	if ((written != (int)len) && (written != -2))
6297c478bd9Sstevel@tonic-gate 		return (FALSE);
630*61961e0fSrobinson 	/* LINTED pointer cast */
6317c478bd9Sstevel@tonic-gate 	rstrm->frag_header = (uint32_t *)rstrm->out_base;
6327c478bd9Sstevel@tonic-gate 	rstrm->out_finger = (caddr_t)rstrm->out_base + sizeof (uint32_t);
6337c478bd9Sstevel@tonic-gate 
6347c478bd9Sstevel@tonic-gate 	return (TRUE);
6357c478bd9Sstevel@tonic-gate }
6367c478bd9Sstevel@tonic-gate 
6377c478bd9Sstevel@tonic-gate /* knows nothing about records!  Only about input buffers */
6387c478bd9Sstevel@tonic-gate static bool_t
fill_input_buf(RECSTREAM * rstrm,bool_t do_align)6397c478bd9Sstevel@tonic-gate fill_input_buf(RECSTREAM *rstrm, bool_t do_align)
6407c478bd9Sstevel@tonic-gate {
6417c478bd9Sstevel@tonic-gate 	caddr_t where;
6427c478bd9Sstevel@tonic-gate 	int len;
6437c478bd9Sstevel@tonic-gate 
6447c478bd9Sstevel@tonic-gate 	if (rstrm->in_nonblock) {
6457c478bd9Sstevel@tonic-gate 		/* Should never get here in the non-blocking case */
6467c478bd9Sstevel@tonic-gate 		return (FALSE);
6477c478bd9Sstevel@tonic-gate 	}
6487c478bd9Sstevel@tonic-gate 	where = rstrm->in_base;
6497c478bd9Sstevel@tonic-gate 	if (do_align) {
6507c478bd9Sstevel@tonic-gate 		len = rstrm->recvsize;
6517c478bd9Sstevel@tonic-gate 	} else {
6527c478bd9Sstevel@tonic-gate 		uint_t i = (uintptr_t)rstrm->in_boundry % BYTES_PER_XDR_UNIT;
6537c478bd9Sstevel@tonic-gate 
6547c478bd9Sstevel@tonic-gate 		where += i;
6557c478bd9Sstevel@tonic-gate 		len = rstrm->recvsize - i;
6567c478bd9Sstevel@tonic-gate 	}
657*61961e0fSrobinson 	if ((len = (*(rstrm->readit))(rstrm->tcp_handle, where, len)) == -1)
6587c478bd9Sstevel@tonic-gate 		return (FALSE);
6597c478bd9Sstevel@tonic-gate 	rstrm->in_finger = where;
6607c478bd9Sstevel@tonic-gate 	where += len;
6617c478bd9Sstevel@tonic-gate 	rstrm->in_boundry = where;
6627c478bd9Sstevel@tonic-gate 	return (TRUE);
6637c478bd9Sstevel@tonic-gate }
6647c478bd9Sstevel@tonic-gate 
6657c478bd9Sstevel@tonic-gate /* knows nothing about records!  Only about input buffers */
6667c478bd9Sstevel@tonic-gate static bool_t
get_input_bytes(RECSTREAM * rstrm,caddr_t addr,int len,bool_t do_align)6677c478bd9Sstevel@tonic-gate get_input_bytes(RECSTREAM *rstrm, caddr_t addr,
6687c478bd9Sstevel@tonic-gate 		int len, bool_t do_align)
6697c478bd9Sstevel@tonic-gate {
6707c478bd9Sstevel@tonic-gate 	int current;
6717c478bd9Sstevel@tonic-gate 
6727c478bd9Sstevel@tonic-gate 	if (rstrm->in_nonblock) {
6737c478bd9Sstevel@tonic-gate 		/*
6747c478bd9Sstevel@tonic-gate 		 * Data should already be in the rstrm buffer, so we just
6757c478bd9Sstevel@tonic-gate 		 * need to copy it to 'addr'.
6767c478bd9Sstevel@tonic-gate 		 */
6777c478bd9Sstevel@tonic-gate 		current = (int)(rstrm->in_boundry - rstrm->in_finger);
678*61961e0fSrobinson 		if (len > current)
6797c478bd9Sstevel@tonic-gate 			return (FALSE);
6807c478bd9Sstevel@tonic-gate 		(void) memcpy(addr, rstrm->in_finger, len);
6817c478bd9Sstevel@tonic-gate 		rstrm->in_finger += len;
6827c478bd9Sstevel@tonic-gate 		addr += len;
6837c478bd9Sstevel@tonic-gate 		return (TRUE);
6847c478bd9Sstevel@tonic-gate 	}
6857c478bd9Sstevel@tonic-gate 
6867c478bd9Sstevel@tonic-gate 	while (len > 0) {
6877c478bd9Sstevel@tonic-gate 		current = (intptr_t)rstrm->in_boundry -
6887c478bd9Sstevel@tonic-gate 			(intptr_t)rstrm->in_finger;
6897c478bd9Sstevel@tonic-gate 		if (current == 0) {
690*61961e0fSrobinson 			if (!fill_input_buf(rstrm, do_align))
6917c478bd9Sstevel@tonic-gate 				return (FALSE);
6927c478bd9Sstevel@tonic-gate 			continue;
6937c478bd9Sstevel@tonic-gate 		}
6947c478bd9Sstevel@tonic-gate 		current = (len < current) ? len : current;
6957c478bd9Sstevel@tonic-gate 		(void) memcpy(addr, rstrm->in_finger, current);
6967c478bd9Sstevel@tonic-gate 		rstrm->in_finger += current;
6977c478bd9Sstevel@tonic-gate 		addr += current;
6987c478bd9Sstevel@tonic-gate 		len -= current;
6997c478bd9Sstevel@tonic-gate 		do_align = FALSE;
7007c478bd9Sstevel@tonic-gate 	}
7017c478bd9Sstevel@tonic-gate 	return (TRUE);
7027c478bd9Sstevel@tonic-gate }
7037c478bd9Sstevel@tonic-gate 
7047c478bd9Sstevel@tonic-gate /* next four bytes of the input stream are treated as a header */
7057c478bd9Sstevel@tonic-gate static bool_t
set_input_fragment(RECSTREAM * rstrm)7067c478bd9Sstevel@tonic-gate set_input_fragment(RECSTREAM *rstrm)
7077c478bd9Sstevel@tonic-gate {
7087c478bd9Sstevel@tonic-gate 	uint32_t header;
7097c478bd9Sstevel@tonic-gate 
7107c478bd9Sstevel@tonic-gate 	if (rstrm->in_nonblock) {
7117c478bd9Sstevel@tonic-gate 		/*
7127c478bd9Sstevel@tonic-gate 		 * In the non-blocking case, the fragment headers should
7137c478bd9Sstevel@tonic-gate 		 * already have been consumed, so we should never get
7147c478bd9Sstevel@tonic-gate 		 * here. Might as well return failure right away.
7157c478bd9Sstevel@tonic-gate 		 */
7167c478bd9Sstevel@tonic-gate 		return (FALSE);
7177c478bd9Sstevel@tonic-gate 	}
718*61961e0fSrobinson 	if (!get_input_bytes(rstrm, (caddr_t)&header, (int)sizeof (header),
719*61961e0fSrobinson 							rstrm->last_frag))
7207c478bd9Sstevel@tonic-gate 		return (FALSE);
7217c478bd9Sstevel@tonic-gate 	header = (uint32_t)ntohl(header);
7227c478bd9Sstevel@tonic-gate 	rstrm->last_frag = ((header & LAST_FRAG) == 0) ? FALSE : TRUE;
7237c478bd9Sstevel@tonic-gate 	rstrm->fbtbc = header & (~LAST_FRAG);
7247c478bd9Sstevel@tonic-gate 	return (TRUE);
7257c478bd9Sstevel@tonic-gate }
7267c478bd9Sstevel@tonic-gate 
7277c478bd9Sstevel@tonic-gate /* consumes input bytes; knows nothing about records! */
7287c478bd9Sstevel@tonic-gate static bool_t
skip_input_bytes(RECSTREAM * rstrm,int32_t cnt)7297c478bd9Sstevel@tonic-gate skip_input_bytes(RECSTREAM *rstrm, int32_t cnt)
7307c478bd9Sstevel@tonic-gate {
7317c478bd9Sstevel@tonic-gate 	int current;
7327c478bd9Sstevel@tonic-gate 
7337c478bd9Sstevel@tonic-gate 	while (cnt > 0) {
7347c478bd9Sstevel@tonic-gate 		current = (intptr_t)rstrm->in_boundry -
7357c478bd9Sstevel@tonic-gate 			(intptr_t)rstrm->in_finger;
7367c478bd9Sstevel@tonic-gate 		if (current == 0) {
737*61961e0fSrobinson 			if (!fill_input_buf(rstrm, FALSE))
7387c478bd9Sstevel@tonic-gate 				return (FALSE);
7397c478bd9Sstevel@tonic-gate 			continue;
7407c478bd9Sstevel@tonic-gate 		}
7417c478bd9Sstevel@tonic-gate 		current = (cnt < current) ? cnt : current;
7427c478bd9Sstevel@tonic-gate 		rstrm->in_finger += current;
7437c478bd9Sstevel@tonic-gate 		cnt -= current;
7447c478bd9Sstevel@tonic-gate 	}
7457c478bd9Sstevel@tonic-gate 	return (TRUE);
7467c478bd9Sstevel@tonic-gate }
7477c478bd9Sstevel@tonic-gate 
7487c478bd9Sstevel@tonic-gate 
7497c478bd9Sstevel@tonic-gate static bool_t
__xdrrec_nonblock_realloc(RECSTREAM * rstrm,uint32_t newsize)7507c478bd9Sstevel@tonic-gate __xdrrec_nonblock_realloc(RECSTREAM *rstrm, uint32_t newsize)
7517c478bd9Sstevel@tonic-gate {
7527c478bd9Sstevel@tonic-gate 	caddr_t newbuf = rstrm->in_base;
7537c478bd9Sstevel@tonic-gate 	ptrdiff_t offset;
7547c478bd9Sstevel@tonic-gate 	bool_t ret = TRUE;
7557c478bd9Sstevel@tonic-gate 
7567c478bd9Sstevel@tonic-gate 	if (newsize > rstrm->recvsize) {
7577c478bd9Sstevel@tonic-gate 		newbuf = (caddr_t)realloc(newbuf, newsize);
7587c478bd9Sstevel@tonic-gate 		if (newbuf == 0) {
7597c478bd9Sstevel@tonic-gate 			ret = FALSE;
7607c478bd9Sstevel@tonic-gate 		} else {
7617c478bd9Sstevel@tonic-gate 			/* Make pointers valid for the new buffer */
7627c478bd9Sstevel@tonic-gate 			offset = newbuf - rstrm->in_base;
7637c478bd9Sstevel@tonic-gate 			rstrm->in_finger += offset;
7647c478bd9Sstevel@tonic-gate 			rstrm->in_boundry += offset;
7657c478bd9Sstevel@tonic-gate 			rstrm->in_nextrec += offset;
7667c478bd9Sstevel@tonic-gate 			rstrm->in_base = newbuf;
7677c478bd9Sstevel@tonic-gate 			rstrm->recvsize = newsize;
7687c478bd9Sstevel@tonic-gate 		}
7697c478bd9Sstevel@tonic-gate 	}
7707c478bd9Sstevel@tonic-gate 
7717c478bd9Sstevel@tonic-gate 	return (ret);
7727c478bd9Sstevel@tonic-gate }
7737c478bd9Sstevel@tonic-gate 
7747c478bd9Sstevel@tonic-gate /*
7757c478bd9Sstevel@tonic-gate  * adjust sizes and allocate buffer quad byte aligned
7767c478bd9Sstevel@tonic-gate  */
7777c478bd9Sstevel@tonic-gate bool_t
__xdrrec_set_conn_nonblock(XDR * xdrs,uint32_t tcp_maxrecsz)7787c478bd9Sstevel@tonic-gate __xdrrec_set_conn_nonblock(XDR *xdrs, uint32_t tcp_maxrecsz)
7797c478bd9Sstevel@tonic-gate {
780*61961e0fSrobinson 	/* LINTED pointer cast */
7817c478bd9Sstevel@tonic-gate 	RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private);
7827c478bd9Sstevel@tonic-gate 	size_t newsize;
7837c478bd9Sstevel@tonic-gate 
7847c478bd9Sstevel@tonic-gate 	rstrm->in_nonblock = TRUE;
7857c478bd9Sstevel@tonic-gate 	if (tcp_maxrecsz == 0) {
7867c478bd9Sstevel@tonic-gate 		/*
7877c478bd9Sstevel@tonic-gate 		 * If maxrecsz has not been set, use the default
7887c478bd9Sstevel@tonic-gate 		 * that was set from xdrrec_create() and
7897c478bd9Sstevel@tonic-gate 		 * fix_buf_size()
7907c478bd9Sstevel@tonic-gate 		 */
7917c478bd9Sstevel@tonic-gate 		rstrm->in_maxrecsz = rstrm->recvsize;
7927c478bd9Sstevel@tonic-gate 		return (TRUE);
7937c478bd9Sstevel@tonic-gate 	}
7947c478bd9Sstevel@tonic-gate 	rstrm->in_maxrecsz = tcp_maxrecsz;
7957c478bd9Sstevel@tonic-gate 	if (tcp_maxrecsz <= rstrm->recvsize)
7967c478bd9Sstevel@tonic-gate 		return (TRUE);
7977c478bd9Sstevel@tonic-gate 
7987c478bd9Sstevel@tonic-gate 	/*
7997c478bd9Sstevel@tonic-gate 	 * For nonblocked connection, the entire record is read into the
8007c478bd9Sstevel@tonic-gate 	 * buffer before any xdr processing. This implies that the record
8017c478bd9Sstevel@tonic-gate 	 * size must allow for the maximum expected message size of the
8027c478bd9Sstevel@tonic-gate 	 * service. However, it's inconvenient to allocate very large
8037c478bd9Sstevel@tonic-gate 	 * buffers up front, so we limit ourselves to a reasonable
8047c478bd9Sstevel@tonic-gate 	 * default size here, and reallocate (up to the maximum record
8057c478bd9Sstevel@tonic-gate 	 * size allowed for the connection) as necessary.
8067c478bd9Sstevel@tonic-gate 	 */
8077c478bd9Sstevel@tonic-gate 	if ((newsize = tcp_maxrecsz) > RPC_MAXDATASIZE) {
8087c478bd9Sstevel@tonic-gate 		newsize = RPC_MAXDATASIZE;
8097c478bd9Sstevel@tonic-gate 	}
810*61961e0fSrobinson 	if (!__xdrrec_nonblock_realloc(rstrm, newsize)) {
8117c478bd9Sstevel@tonic-gate 		(void) syslog(LOG_ERR, mem_err_msg_rec);
812*61961e0fSrobinson 		free(rstrm->out_base);
813*61961e0fSrobinson 		free(rstrm->in_base);
814*61961e0fSrobinson 		free(rstrm);
8157c478bd9Sstevel@tonic-gate 		return (FALSE);
8167c478bd9Sstevel@tonic-gate 	}
8177c478bd9Sstevel@tonic-gate 
8187c478bd9Sstevel@tonic-gate 	return (TRUE);
8197c478bd9Sstevel@tonic-gate }
8207c478bd9Sstevel@tonic-gate 
8217c478bd9Sstevel@tonic-gate /*
8227c478bd9Sstevel@tonic-gate  * Retrieve input data from the non-blocking connection, increase
8237c478bd9Sstevel@tonic-gate  * the size of the read buffer if necessary, and check that the
8247c478bd9Sstevel@tonic-gate  * record size stays below the allowed maximum for the connection.
8257c478bd9Sstevel@tonic-gate  */
8267c478bd9Sstevel@tonic-gate bool_t
__xdrrec_getbytes_nonblock(XDR * xdrs,enum xprt_stat * pstat)8277c478bd9Sstevel@tonic-gate __xdrrec_getbytes_nonblock(XDR *xdrs, enum xprt_stat *pstat)
8287c478bd9Sstevel@tonic-gate {
829*61961e0fSrobinson 	/* LINTED pointer cast */
8307c478bd9Sstevel@tonic-gate 	RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private);
8317c478bd9Sstevel@tonic-gate 	uint32_t prevbytes_thisrec, minreqrecsize;
8327c478bd9Sstevel@tonic-gate 	uint32_t *header;
833*61961e0fSrobinson 	int32_t len_received = 0;
834*61961e0fSrobinson 	uint32_t unprocessed = 0;
8357c478bd9Sstevel@tonic-gate 
8367c478bd9Sstevel@tonic-gate 	/*
8377c478bd9Sstevel@tonic-gate 	 * For connection oriented protocols, there's no guarantee that
8387c478bd9Sstevel@tonic-gate 	 * we will receive the data nicely chopped into records, no
8397c478bd9Sstevel@tonic-gate 	 * matter how it was sent. We use the in_nextrec pointer to
8407c478bd9Sstevel@tonic-gate 	 * indicate where in the buffer the next record starts. If
8417c478bd9Sstevel@tonic-gate 	 * in_nextrec != in_base, there's data in the buffer from
8427c478bd9Sstevel@tonic-gate 	 * previous reads, and if in_nextrecsz > 0, we need to copy
8437c478bd9Sstevel@tonic-gate 	 * the portion of the next record already read to the start of
8447c478bd9Sstevel@tonic-gate 	 * the input buffer
8457c478bd9Sstevel@tonic-gate 	 */
8467c478bd9Sstevel@tonic-gate 	if (rstrm->in_nextrecsz > 0) {
8477c478bd9Sstevel@tonic-gate 		/* Starting on new record with data already in the buffer */
8487c478bd9Sstevel@tonic-gate 		(void) memmove(rstrm->in_base, rstrm->in_nextrec,
8497c478bd9Sstevel@tonic-gate 			rstrm->in_nextrecsz);
8507c478bd9Sstevel@tonic-gate 		rstrm->in_nextrec = rstrm->in_finger = rstrm->in_base;
8517c478bd9Sstevel@tonic-gate 		rstrm->in_boundry = rstrm->in_nextrec + rstrm->in_nextrecsz;
8527c478bd9Sstevel@tonic-gate 		unprocessed = rstrm->in_nextrecsz;
8537c478bd9Sstevel@tonic-gate 		rstrm->in_nextrecsz = 0;
8547c478bd9Sstevel@tonic-gate 	} else if (rstrm->in_nextrec == rstrm->in_base) {
8557c478bd9Sstevel@tonic-gate 		/* Starting on new record with empty buffer */
8567c478bd9Sstevel@tonic-gate 		rstrm->in_boundry = rstrm->in_finger = rstrm->in_base;
8577c478bd9Sstevel@tonic-gate 		rstrm->last_frag = FALSE;
8587c478bd9Sstevel@tonic-gate 		rstrm->in_needpoll = TRUE;
8597c478bd9Sstevel@tonic-gate 	}
8607c478bd9Sstevel@tonic-gate 
8617c478bd9Sstevel@tonic-gate 	prevbytes_thisrec = (uint32_t)(rstrm->in_boundry - rstrm->in_base);
8627c478bd9Sstevel@tonic-gate 
8637c478bd9Sstevel@tonic-gate 	/* Do we need to retrieve data ? */
8647c478bd9Sstevel@tonic-gate 	if (rstrm->in_needpoll) {
8657c478bd9Sstevel@tonic-gate 		int len_requested, len_total_received;
8667c478bd9Sstevel@tonic-gate 
8677c478bd9Sstevel@tonic-gate 		rstrm->in_needpoll = FALSE;
8687c478bd9Sstevel@tonic-gate 		len_total_received =
8697c478bd9Sstevel@tonic-gate 			(int)(rstrm->in_boundry - rstrm->in_base);
8707c478bd9Sstevel@tonic-gate 		len_requested = rstrm->recvsize - len_total_received;
8717c478bd9Sstevel@tonic-gate 		/*
8727c478bd9Sstevel@tonic-gate 		 * if len_requested is 0, this means that the input
8737c478bd9Sstevel@tonic-gate 		 * buffer is full and need to be increased.
8747c478bd9Sstevel@tonic-gate 		 * The minimum record size we will need is whatever's
8757c478bd9Sstevel@tonic-gate 		 * already in the buffer, plus what's yet to be
8767c478bd9Sstevel@tonic-gate 		 * consumed in the current fragment, plus space for at
8777c478bd9Sstevel@tonic-gate 		 * least one more fragment header, if this is not the
8787c478bd9Sstevel@tonic-gate 		 * last fragment. We use the RNDUP() macro to
8797c478bd9Sstevel@tonic-gate 		 * account for possible realignment of the next
8807c478bd9Sstevel@tonic-gate 		 * fragment header.
8817c478bd9Sstevel@tonic-gate 		 */
8827c478bd9Sstevel@tonic-gate 		if (len_requested == 0) {
8837c478bd9Sstevel@tonic-gate 			minreqrecsize = rstrm->recvsize +
8847c478bd9Sstevel@tonic-gate 			    rstrm->fbtbc +
8857c478bd9Sstevel@tonic-gate 			    (rstrm->last_frag ? 0 : sizeof (*header));
8867c478bd9Sstevel@tonic-gate 			minreqrecsize = RNDUP(minreqrecsize);
8877c478bd9Sstevel@tonic-gate 			if (minreqrecsize == rstrm->recvsize) {
8887c478bd9Sstevel@tonic-gate 				/*
8897c478bd9Sstevel@tonic-gate 				 * no more bytes to be consumed and
8907c478bd9Sstevel@tonic-gate 				 * last fragment. We should never end up
8917c478bd9Sstevel@tonic-gate 				 * here. Might as well return failure
8927c478bd9Sstevel@tonic-gate 				 * right away.
8937c478bd9Sstevel@tonic-gate 				 */
8947c478bd9Sstevel@tonic-gate 				*pstat = XPRT_DIED;
8957c478bd9Sstevel@tonic-gate 				return (FALSE);
896*61961e0fSrobinson 			}
897*61961e0fSrobinson 			if (minreqrecsize > rstrm->in_maxrecsz)
8987c478bd9Sstevel@tonic-gate 				goto recsz_invalid;
899*61961e0fSrobinson 			else
9007c478bd9Sstevel@tonic-gate 				goto needpoll;
9017c478bd9Sstevel@tonic-gate 		}
9027c478bd9Sstevel@tonic-gate 		if ((len_received = (*(rstrm->readit))(rstrm->tcp_handle,
9037c478bd9Sstevel@tonic-gate 				rstrm->in_boundry, len_requested)) == -1) {
9047c478bd9Sstevel@tonic-gate 			*pstat = XPRT_DIED;
9057c478bd9Sstevel@tonic-gate 			return (FALSE);
9067c478bd9Sstevel@tonic-gate 		}
9077c478bd9Sstevel@tonic-gate 		rstrm->in_boundry += len_received;
9087c478bd9Sstevel@tonic-gate 		rstrm->in_nextrec = rstrm->in_boundry;
9097c478bd9Sstevel@tonic-gate 	}
9107c478bd9Sstevel@tonic-gate 
9117c478bd9Sstevel@tonic-gate 	/* Account for any left over data from previous processing */
9127c478bd9Sstevel@tonic-gate 	len_received += unprocessed;
9137c478bd9Sstevel@tonic-gate 
9147c478bd9Sstevel@tonic-gate 	/* Set a lower limit on the buffer space we'll need */
9157c478bd9Sstevel@tonic-gate 	minreqrecsize = prevbytes_thisrec + rstrm->fbtbc;
9167c478bd9Sstevel@tonic-gate 
9177c478bd9Sstevel@tonic-gate 	/*
9187c478bd9Sstevel@tonic-gate 	 * Consume bytes for this record until it's either complete,
9197c478bd9Sstevel@tonic-gate 	 * rejected, or we need to poll for more bytes.
9207c478bd9Sstevel@tonic-gate 	 *
9217c478bd9Sstevel@tonic-gate 	 * If fbtbc == 0, in_finger points to the start of the fragment
9227c478bd9Sstevel@tonic-gate 	 * header. Otherwise, it points to the start of the fragment data.
9237c478bd9Sstevel@tonic-gate 	 */
9247c478bd9Sstevel@tonic-gate 	while (len_received > 0) {
9257c478bd9Sstevel@tonic-gate 		if (rstrm->fbtbc == 0) {
9267c478bd9Sstevel@tonic-gate 			uint32_t hdrlen, minfraglen = 0;
9277c478bd9Sstevel@tonic-gate 			uint32_t len_recvd_thisfrag;
9287c478bd9Sstevel@tonic-gate 			bool_t last_frag;
9297c478bd9Sstevel@tonic-gate 
9307c478bd9Sstevel@tonic-gate 			len_recvd_thisfrag = (uint32_t)(rstrm->in_boundry -
9317c478bd9Sstevel@tonic-gate 						rstrm->in_finger);
932*61961e0fSrobinson 			/* LINTED pointer cast */
9337c478bd9Sstevel@tonic-gate 			header = (uint32_t *)rstrm->in_finger;
9347c478bd9Sstevel@tonic-gate 			hdrlen = (len_recvd_thisfrag < sizeof (*header)) ?
9357c478bd9Sstevel@tonic-gate 				len_recvd_thisfrag : sizeof (*header);
936*61961e0fSrobinson 			(void) memcpy(&minfraglen, header, hdrlen);
9377c478bd9Sstevel@tonic-gate 			last_frag = (ntohl(minfraglen) & LAST_FRAG) != 0;
9387c478bd9Sstevel@tonic-gate 			minfraglen = ntohl(minfraglen) & (~LAST_FRAG);
9397c478bd9Sstevel@tonic-gate 			/*
9407c478bd9Sstevel@tonic-gate 			 * The minimum record size we will need is whatever's
9417c478bd9Sstevel@tonic-gate 			 * already in the buffer, plus the size of this
9427c478bd9Sstevel@tonic-gate 			 * fragment, plus (if this isn't the last fragment)
9437c478bd9Sstevel@tonic-gate 			 * space for at least one more fragment header. We
9447c478bd9Sstevel@tonic-gate 			 * use the RNDUP() macro to account for possible
9457c478bd9Sstevel@tonic-gate 			 * realignment of the next fragment header.
9467c478bd9Sstevel@tonic-gate 			 */
9477c478bd9Sstevel@tonic-gate 			minreqrecsize += minfraglen +
9487c478bd9Sstevel@tonic-gate 					(last_frag?0:sizeof (*header));
9497c478bd9Sstevel@tonic-gate 			minreqrecsize = RNDUP(minreqrecsize);
9507c478bd9Sstevel@tonic-gate 
9517c478bd9Sstevel@tonic-gate 			if (hdrlen < sizeof (*header)) {
9527c478bd9Sstevel@tonic-gate 				/*
9537c478bd9Sstevel@tonic-gate 				 * We only have a partial fragment header,
9547c478bd9Sstevel@tonic-gate 				 * but we can still put a lower limit on the
9557c478bd9Sstevel@tonic-gate 				 * final fragment size, and check against the
9567c478bd9Sstevel@tonic-gate 				 * maximum allowed.
9577c478bd9Sstevel@tonic-gate 				 */
9587c478bd9Sstevel@tonic-gate 				if (len_recvd_thisfrag > 0 &&
9597c478bd9Sstevel@tonic-gate 					(minreqrecsize > rstrm->in_maxrecsz)) {
9607c478bd9Sstevel@tonic-gate 					goto recsz_invalid;
9617c478bd9Sstevel@tonic-gate 				}
9627c478bd9Sstevel@tonic-gate 				/* Need more bytes to obtain fbtbc value */
9637c478bd9Sstevel@tonic-gate 				goto needpoll;
9647c478bd9Sstevel@tonic-gate 			}
9657c478bd9Sstevel@tonic-gate 			/*
9667c478bd9Sstevel@tonic-gate 			 * We've got a complete fragment header, so
9677c478bd9Sstevel@tonic-gate 			 * 'minfraglen' is the actual fragment length, and
9687c478bd9Sstevel@tonic-gate 			 * 'minreqrecsize' the requested record size.
9697c478bd9Sstevel@tonic-gate 			 */
9707c478bd9Sstevel@tonic-gate 			rstrm->last_frag = last_frag;
9717c478bd9Sstevel@tonic-gate 			rstrm->fbtbc = minfraglen;
9727c478bd9Sstevel@tonic-gate 			/*
9737c478bd9Sstevel@tonic-gate 			 * Check that the sum of the total number of bytes read
9747c478bd9Sstevel@tonic-gate 			 * so far (for the record) and the size of the incoming
9757c478bd9Sstevel@tonic-gate 			 * fragment is less than the maximum allowed.
9767c478bd9Sstevel@tonic-gate 			 *
9777c478bd9Sstevel@tonic-gate 			 * If this is the last fragment, also check that the
9787c478bd9Sstevel@tonic-gate 			 * record (message) meets the minimum length
9797c478bd9Sstevel@tonic-gate 			 * requirement.
9807c478bd9Sstevel@tonic-gate 			 *
9817c478bd9Sstevel@tonic-gate 			 * If this isn't the last fragment, check for a zero
9827c478bd9Sstevel@tonic-gate 			 * fragment length. Accepting such fragments would
9837c478bd9Sstevel@tonic-gate 			 * leave us open to an attack where the sender keeps
9847c478bd9Sstevel@tonic-gate 			 * the connection open indefinitely, without any
9857c478bd9Sstevel@tonic-gate 			 * progress, by occasionally sending a zero length
9867c478bd9Sstevel@tonic-gate 			 * fragment.
9877c478bd9Sstevel@tonic-gate 			 */
9887c478bd9Sstevel@tonic-gate 			if ((minreqrecsize > rstrm->in_maxrecsz) ||
9897c478bd9Sstevel@tonic-gate 			(rstrm->last_frag && minreqrecsize < MIN_FRAG) ||
9907c478bd9Sstevel@tonic-gate 			(!rstrm->last_frag && minfraglen == 0)) {
9917c478bd9Sstevel@tonic-gate recsz_invalid:
9927c478bd9Sstevel@tonic-gate 				rstrm->fbtbc = 0;
9937c478bd9Sstevel@tonic-gate 				rstrm->last_frag = 1;
9947c478bd9Sstevel@tonic-gate 				*pstat = XPRT_DIED;
9957c478bd9Sstevel@tonic-gate 				return (FALSE);
9967c478bd9Sstevel@tonic-gate 			}
9977c478bd9Sstevel@tonic-gate 			/*
9987c478bd9Sstevel@tonic-gate 			 * Make this fragment abut the previous one. If it's
9997c478bd9Sstevel@tonic-gate 			 * the first fragment, just advance in_finger past
10007c478bd9Sstevel@tonic-gate 			 * the header. This avoids buffer copying for the
10017c478bd9Sstevel@tonic-gate 			 * usual case where there's one fragment per record.
10027c478bd9Sstevel@tonic-gate 			 */
10037c478bd9Sstevel@tonic-gate 			if (rstrm->in_finger == rstrm->in_base) {
10047c478bd9Sstevel@tonic-gate 				rstrm->in_finger += sizeof (*header);
10057c478bd9Sstevel@tonic-gate 			} else {
10067c478bd9Sstevel@tonic-gate 				rstrm->in_boundry -= sizeof (*header);
10077c478bd9Sstevel@tonic-gate 				(void) memmove(rstrm->in_finger,
10087c478bd9Sstevel@tonic-gate 					rstrm->in_finger + sizeof (*header),
10097c478bd9Sstevel@tonic-gate 					rstrm->in_boundry - rstrm->in_finger);
10107c478bd9Sstevel@tonic-gate 			}
10117c478bd9Sstevel@tonic-gate 			/* Consume the fragment header */
10127c478bd9Sstevel@tonic-gate 			if (len_received > sizeof (*header)) {
10137c478bd9Sstevel@tonic-gate 				len_received -= sizeof (*header);
10147c478bd9Sstevel@tonic-gate 			} else {
10157c478bd9Sstevel@tonic-gate 				len_received = 0;
10167c478bd9Sstevel@tonic-gate 			}
10177c478bd9Sstevel@tonic-gate 		}
10187c478bd9Sstevel@tonic-gate 		/*
10197c478bd9Sstevel@tonic-gate 		 * Consume whatever fragment bytes we have.
10207c478bd9Sstevel@tonic-gate 		 * If we've received all bytes for this fragment, advance
10217c478bd9Sstevel@tonic-gate 		 * in_finger to point to the start of the next fragment
10227c478bd9Sstevel@tonic-gate 		 * header. Otherwise, make fbtbc tell how much is left in
10237c478bd9Sstevel@tonic-gate 		 * in this fragment and advance finger to point to end of
10247c478bd9Sstevel@tonic-gate 		 * fragment data.
10257c478bd9Sstevel@tonic-gate 		 */
10267c478bd9Sstevel@tonic-gate 		if (len_received >= rstrm->fbtbc) {
10277c478bd9Sstevel@tonic-gate 			len_received -= rstrm->fbtbc;
10287c478bd9Sstevel@tonic-gate 			rstrm->in_finger += rstrm->fbtbc;
10297c478bd9Sstevel@tonic-gate 			rstrm->fbtbc = 0;
10307c478bd9Sstevel@tonic-gate 		} else {
10317c478bd9Sstevel@tonic-gate 			rstrm->fbtbc -= len_received;
10327c478bd9Sstevel@tonic-gate 			rstrm->in_finger += len_received;
10337c478bd9Sstevel@tonic-gate 			len_received = 0;
10347c478bd9Sstevel@tonic-gate 		}
10357c478bd9Sstevel@tonic-gate 		/*
10367c478bd9Sstevel@tonic-gate 		 * If there's more data in the buffer, there are two
10377c478bd9Sstevel@tonic-gate 		 * possibilities:
10387c478bd9Sstevel@tonic-gate 		 *
10397c478bd9Sstevel@tonic-gate 		 * (1)	This is the last fragment, so the extra data
10407c478bd9Sstevel@tonic-gate 		 *	presumably belongs to the next record.
10417c478bd9Sstevel@tonic-gate 		 *
10427c478bd9Sstevel@tonic-gate 		 * (2)	Not the last fragment, so we'll start over
10437c478bd9Sstevel@tonic-gate 		 *	from the top of the loop.
10447c478bd9Sstevel@tonic-gate 		 */
10457c478bd9Sstevel@tonic-gate 		if (len_received > 0 && rstrm->last_frag) {
10467c478bd9Sstevel@tonic-gate 			rstrm->in_nextrec = rstrm->in_finger;
10477c478bd9Sstevel@tonic-gate 			rstrm->in_nextrecsz = (uint32_t)(rstrm->in_boundry -
10487c478bd9Sstevel@tonic-gate 							rstrm->in_nextrec);
10497c478bd9Sstevel@tonic-gate 			len_received = 0;
10507c478bd9Sstevel@tonic-gate 		}
10517c478bd9Sstevel@tonic-gate 	}
10527c478bd9Sstevel@tonic-gate 
10537c478bd9Sstevel@tonic-gate 	/* Was this the last fragment, and have we read the entire record ? */
10547c478bd9Sstevel@tonic-gate 	if (rstrm->last_frag && rstrm->fbtbc == 0) {
10557c478bd9Sstevel@tonic-gate 		*pstat = XPRT_MOREREQS;
10567c478bd9Sstevel@tonic-gate 		/*
10577c478bd9Sstevel@tonic-gate 		 * We've been using both in_finger and fbtbc for our own
10587c478bd9Sstevel@tonic-gate 		 * purposes. Now's the time to update them to be what
10597c478bd9Sstevel@tonic-gate 		 * xdrrec_inline() expects. Set in_finger to point to the
10607c478bd9Sstevel@tonic-gate 		 * start of data for this record, and fbtbc to the number
10617c478bd9Sstevel@tonic-gate 		 * of bytes in the record.
10627c478bd9Sstevel@tonic-gate 		 */
10637c478bd9Sstevel@tonic-gate 		rstrm->fbtbc = (int)(rstrm->in_finger -
10647c478bd9Sstevel@tonic-gate 				rstrm->in_base - sizeof (*header));
10657c478bd9Sstevel@tonic-gate 		rstrm->in_finger = rstrm->in_base + sizeof (*header);
10667c478bd9Sstevel@tonic-gate 		if (rstrm->in_nextrecsz == 0)
10677c478bd9Sstevel@tonic-gate 			rstrm->in_nextrec = rstrm->in_base;
10687c478bd9Sstevel@tonic-gate 		return (TRUE);
10697c478bd9Sstevel@tonic-gate 	}
10707c478bd9Sstevel@tonic-gate needpoll:
10717c478bd9Sstevel@tonic-gate 	/*
10727c478bd9Sstevel@tonic-gate 	 * Need more bytes, so we set the needpoll flag, and go back to
10737c478bd9Sstevel@tonic-gate 	 * the main RPC request loop. However, first we reallocate the
10747c478bd9Sstevel@tonic-gate 	 * input buffer, if necessary.
10757c478bd9Sstevel@tonic-gate 	 */
10767c478bd9Sstevel@tonic-gate 	if (minreqrecsize > rstrm->recvsize) {
1077*61961e0fSrobinson 		if (!__xdrrec_nonblock_realloc(rstrm, minreqrecsize)) {
10787c478bd9Sstevel@tonic-gate 			rstrm->fbtbc = 0;
10797c478bd9Sstevel@tonic-gate 			rstrm->last_frag = 1;
10807c478bd9Sstevel@tonic-gate 			*pstat = XPRT_DIED;
10817c478bd9Sstevel@tonic-gate 			return (FALSE);
10827c478bd9Sstevel@tonic-gate 		}
10837c478bd9Sstevel@tonic-gate 	}
10847c478bd9Sstevel@tonic-gate 
10857c478bd9Sstevel@tonic-gate 	rstrm->in_needpoll = TRUE;
10867c478bd9Sstevel@tonic-gate 	*pstat = XPRT_MOREREQS;
10877c478bd9Sstevel@tonic-gate 	return (FALSE);
10887c478bd9Sstevel@tonic-gate }
10897c478bd9Sstevel@tonic-gate 
10907c478bd9Sstevel@tonic-gate int
__is_xdrrec_first(XDR * xdrs)10917c478bd9Sstevel@tonic-gate __is_xdrrec_first(XDR *xdrs)
10927c478bd9Sstevel@tonic-gate {
1093*61961e0fSrobinson 	/* LINTED pointer cast */
10947c478bd9Sstevel@tonic-gate 	RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private);
1095*61961e0fSrobinson 	return ((rstrm->firsttime == TRUE) ? 1 : 0);
10967c478bd9Sstevel@tonic-gate }
10977c478bd9Sstevel@tonic-gate 
10987c478bd9Sstevel@tonic-gate int
__xdrrec_setfirst(XDR * xdrs)10997c478bd9Sstevel@tonic-gate __xdrrec_setfirst(XDR *xdrs)
11007c478bd9Sstevel@tonic-gate {
1101*61961e0fSrobinson 	/* LINTED pointer cast */
11027c478bd9Sstevel@tonic-gate 	RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private);
11037c478bd9Sstevel@tonic-gate 
11047c478bd9Sstevel@tonic-gate 	/*
11057c478bd9Sstevel@tonic-gate 	 * Set rstrm->firsttime only if the input buffer is empty.
11067c478bd9Sstevel@tonic-gate 	 * Otherwise, the first read from the network could skip
11077c478bd9Sstevel@tonic-gate 	 * a poll.
11087c478bd9Sstevel@tonic-gate 	 */
11097c478bd9Sstevel@tonic-gate 	if (rstrm->in_finger == rstrm->in_boundry)
11107c478bd9Sstevel@tonic-gate 		rstrm->firsttime = TRUE;
11117c478bd9Sstevel@tonic-gate 	else
11127c478bd9Sstevel@tonic-gate 		rstrm->firsttime = FALSE;
11137c478bd9Sstevel@tonic-gate 	return (1);
11147c478bd9Sstevel@tonic-gate }
11157c478bd9Sstevel@tonic-gate 
11167c478bd9Sstevel@tonic-gate int
__xdrrec_resetfirst(XDR * xdrs)11177c478bd9Sstevel@tonic-gate __xdrrec_resetfirst(XDR *xdrs)
11187c478bd9Sstevel@tonic-gate {
1119*61961e0fSrobinson 	/* LINTED pointer cast */
11207c478bd9Sstevel@tonic-gate 	RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private);
11217c478bd9Sstevel@tonic-gate 
11227c478bd9Sstevel@tonic-gate 	rstrm->firsttime = FALSE;
11237c478bd9Sstevel@tonic-gate 	return (1);
11247c478bd9Sstevel@tonic-gate }
11257c478bd9Sstevel@tonic-gate 
11267c478bd9Sstevel@tonic-gate 
11277c478bd9Sstevel@tonic-gate static uint_t
fix_buf_size(uint_t s)11287c478bd9Sstevel@tonic-gate fix_buf_size(uint_t s)
11297c478bd9Sstevel@tonic-gate {
11307c478bd9Sstevel@tonic-gate 	if (s < 100)
11317c478bd9Sstevel@tonic-gate 		s = 4000;
1132*61961e0fSrobinson 	return (RNDUP(s));
11337c478bd9Sstevel@tonic-gate }
11347c478bd9Sstevel@tonic-gate 
11357c478bd9Sstevel@tonic-gate 
11367c478bd9Sstevel@tonic-gate 
11377c478bd9Sstevel@tonic-gate static bool_t
xdrrec_control(XDR * xdrs,int request,void * info)11387c478bd9Sstevel@tonic-gate xdrrec_control(XDR *xdrs, int request, void *info)
11397c478bd9Sstevel@tonic-gate {
1140*61961e0fSrobinson 	/* LINTED pointer cast */
11417c478bd9Sstevel@tonic-gate 	RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private);
11427c478bd9Sstevel@tonic-gate 	xdr_bytesrec *xptr;
11437c478bd9Sstevel@tonic-gate 
11447c478bd9Sstevel@tonic-gate 	switch (request) {
11457c478bd9Sstevel@tonic-gate 
11467c478bd9Sstevel@tonic-gate 	case XDR_GET_BYTES_AVAIL:
11477c478bd9Sstevel@tonic-gate 		/* Check if at end of fragment and not last fragment */
11487c478bd9Sstevel@tonic-gate 		if ((rstrm->fbtbc == 0)	&& (!rstrm->last_frag))
11497c478bd9Sstevel@tonic-gate 			if (!set_input_fragment(rstrm)) {
11507c478bd9Sstevel@tonic-gate 				return (FALSE);
11517c478bd9Sstevel@tonic-gate 			};
11527c478bd9Sstevel@tonic-gate 
11537c478bd9Sstevel@tonic-gate 		xptr = (xdr_bytesrec *)info;
11547c478bd9Sstevel@tonic-gate 		xptr->xc_is_last_record = rstrm->last_frag;
11557c478bd9Sstevel@tonic-gate 		xptr->xc_num_avail = rstrm->fbtbc;
11567c478bd9Sstevel@tonic-gate 
11577c478bd9Sstevel@tonic-gate 		return (TRUE);
11587c478bd9Sstevel@tonic-gate 	default:
11597c478bd9Sstevel@tonic-gate 		return (FALSE);
11607c478bd9Sstevel@tonic-gate 
11617c478bd9Sstevel@tonic-gate 	}
11627c478bd9Sstevel@tonic-gate 
11637c478bd9Sstevel@tonic-gate }
11647c478bd9Sstevel@tonic-gate 
11657c478bd9Sstevel@tonic-gate static struct xdr_ops *
xdrrec_ops(void)1166*61961e0fSrobinson xdrrec_ops(void)
11677c478bd9Sstevel@tonic-gate {
11687c478bd9Sstevel@tonic-gate 	static struct xdr_ops ops;
11697c478bd9Sstevel@tonic-gate 	extern mutex_t	ops_lock;
11707c478bd9Sstevel@tonic-gate 
11717c478bd9Sstevel@tonic-gate /* VARIABLES PROTECTED BY ops_lock: ops */
11727c478bd9Sstevel@tonic-gate 
1173*61961e0fSrobinson 	(void) mutex_lock(&ops_lock);
11747c478bd9Sstevel@tonic-gate 	if (ops.x_getlong == NULL) {
11757c478bd9Sstevel@tonic-gate 		ops.x_getlong = xdrrec_getlong;
11767c478bd9Sstevel@tonic-gate 		ops.x_putlong = xdrrec_putlong;
11777c478bd9Sstevel@tonic-gate 		ops.x_getbytes = xdrrec_getbytes;
11787c478bd9Sstevel@tonic-gate 		ops.x_putbytes = xdrrec_putbytes;
11797c478bd9Sstevel@tonic-gate 		ops.x_getpostn = xdrrec_getpos;
11807c478bd9Sstevel@tonic-gate 		ops.x_setpostn = xdrrec_setpos;
11817c478bd9Sstevel@tonic-gate 		ops.x_inline = xdrrec_inline;
11827c478bd9Sstevel@tonic-gate 		ops.x_destroy = xdrrec_destroy;
11837c478bd9Sstevel@tonic-gate 		ops.x_control = xdrrec_control;
11847c478bd9Sstevel@tonic-gate #if defined(_LP64)
11857c478bd9Sstevel@tonic-gate 		ops.x_getint32 = xdrrec_getint32;
11867c478bd9Sstevel@tonic-gate 		ops.x_putint32 = xdrrec_putint32;
11877c478bd9Sstevel@tonic-gate #endif
11887c478bd9Sstevel@tonic-gate 	}
1189*61961e0fSrobinson 	(void) mutex_unlock(&ops_lock);
11907c478bd9Sstevel@tonic-gate 	return (&ops);
11917c478bd9Sstevel@tonic-gate }
1192