Home | History | Annotate | Line # | Download | only in rpc
xdr_rec.c revision 1.16
      1  1.16     lukem /*	$NetBSD: xdr_rec.c,v 1.16 1999/03/04 05:26:48 lukem Exp $	*/
      2   1.5       cgd 
      3   1.1       cgd /*
      4   1.1       cgd  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
      5   1.1       cgd  * unrestricted use provided that this legend is included on all tape
      6   1.1       cgd  * media and as a part of the software program in whole or part.  Users
      7   1.1       cgd  * may copy or modify Sun RPC without charge, but are not authorized
      8   1.1       cgd  * to license or distribute it to anyone else except as part of a product or
      9   1.1       cgd  * program developed by the user.
     10   1.1       cgd  *
     11   1.1       cgd  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
     12   1.1       cgd  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
     13   1.1       cgd  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
     14   1.1       cgd  *
     15   1.1       cgd  * Sun RPC is provided with no support and without any obligation on the
     16   1.1       cgd  * part of Sun Microsystems, Inc. to assist in its use, correction,
     17   1.1       cgd  * modification or enhancement.
     18   1.1       cgd  *
     19   1.1       cgd  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
     20   1.1       cgd  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
     21   1.1       cgd  * OR ANY PART THEREOF.
     22   1.1       cgd  *
     23   1.1       cgd  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
     24   1.1       cgd  * or profits or other special, indirect and consequential damages, even if
     25   1.1       cgd  * Sun has been advised of the possibility of such damages.
     26   1.1       cgd  *
     27   1.1       cgd  * Sun Microsystems, Inc.
     28   1.1       cgd  * 2550 Garcia Avenue
     29   1.1       cgd  * Mountain View, California  94043
     30   1.1       cgd  */
     31   1.7  christos 
     32   1.7  christos #include <sys/cdefs.h>
     33   1.1       cgd #if defined(LIBC_SCCS) && !defined(lint)
     34   1.7  christos #if 0
     35   1.7  christos static char *sccsid = "@(#)xdr_rec.c 1.21 87/08/11 Copyr 1984 Sun Micro";
     36   1.7  christos static char *sccsid = "@(#)xdr_rec.c	2.2 88/08/01 4.0 RPCSRC";
     37   1.7  christos #else
     38  1.16     lukem __RCSID("$NetBSD: xdr_rec.c,v 1.16 1999/03/04 05:26:48 lukem Exp $");
     39   1.7  christos #endif
     40   1.1       cgd #endif
     41   1.1       cgd 
     42   1.1       cgd /*
     43   1.1       cgd  * xdr_rec.c, Implements TCP/IP based XDR streams with a "record marking"
     44   1.1       cgd  * layer above tcp (for rpc's use).
     45   1.1       cgd  *
     46   1.1       cgd  * Copyright (C) 1984, Sun Microsystems, Inc.
     47   1.1       cgd  *
     48   1.1       cgd  * These routines interface XDRSTREAMS to a tcp/ip connection.
     49   1.1       cgd  * There is a record marking layer between the xdr stream
     50   1.1       cgd  * and the tcp transport level.  A record is composed on one or more
     51   1.1       cgd  * record fragments.  A record fragment is a thirty-two bit header followed
     52   1.1       cgd  * by n bytes of data, where n is contained in the header.  The header
     53  1.11     lukem  * is represented as a htonl(u_long).  Thegh order bit encodes
     54   1.1       cgd  * whether or not the fragment is the last fragment of the record
     55   1.1       cgd  * (1 => fragment is last, 0 => more fragments to follow.
     56   1.1       cgd  * The other 31 bits encode the byte length of the fragment.
     57   1.1       cgd  */
     58   1.1       cgd 
     59   1.8       jtc #include "namespace.h"
     60  1.12     lukem 
     61  1.12     lukem #include <sys/types.h>
     62  1.12     lukem 
     63  1.12     lukem #include <netinet/in.h>
     64  1.12     lukem 
     65  1.12     lukem #include <err.h>
     66   1.1       cgd #include <stdio.h>
     67   1.1       cgd #include <stdlib.h>
     68   1.6       cgd #include <string.h>
     69  1.12     lukem 
     70   1.1       cgd #include <rpc/types.h>
     71   1.1       cgd #include <rpc/xdr.h>
     72   1.8       jtc 
     73   1.8       jtc #ifdef __weak_alias
     74   1.8       jtc __weak_alias(xdrrec_create,_xdrrec_create);
     75   1.8       jtc __weak_alias(xdrrec_endofrecord,_xdrrec_endofrecord);
     76   1.8       jtc __weak_alias(xdrrec_eof,_xdrrec_eof);
     77   1.8       jtc __weak_alias(xdrrec_skiprecord,_xdrrec_skiprecord);
     78   1.8       jtc #endif
     79   1.1       cgd 
     80  1.11     lukem static bool_t	xdrrec_getlong __P((XDR *, long *));
     81  1.14   mycroft static bool_t	xdrrec_putlong __P((XDR *, const long *));
     82  1.14   mycroft static bool_t	xdrrec_getbytes __P((XDR *, char *, u_int));
     83  1.11     lukem 
     84  1.14   mycroft static bool_t	xdrrec_putbytes __P((XDR *, const char *, u_int));
     85  1.11     lukem static u_int	xdrrec_getpos __P((XDR *));
     86  1.11     lukem static bool_t	xdrrec_setpos __P((XDR *, u_int));
     87  1.11     lukem static int32_t *xdrrec_inline __P((XDR *, u_int));
     88   1.6       cgd static void	xdrrec_destroy __P((XDR *));
     89   1.1       cgd 
     90  1.13   mycroft static const struct  xdr_ops xdrrec_ops = {
     91   1.1       cgd 	xdrrec_getlong,
     92   1.1       cgd 	xdrrec_putlong,
     93   1.1       cgd 	xdrrec_getbytes,
     94   1.1       cgd 	xdrrec_putbytes,
     95   1.1       cgd 	xdrrec_getpos,
     96   1.1       cgd 	xdrrec_setpos,
     97   1.1       cgd 	xdrrec_inline,
     98   1.1       cgd 	xdrrec_destroy
     99   1.1       cgd };
    100   1.1       cgd 
    101   1.1       cgd /*
    102   1.1       cgd  * A record is composed of one or more record fragments.
    103   1.1       cgd  * A record fragment is a two-byte header followed by zero to
    104   1.1       cgd  * 2**32-1 bytes.  The header is treated as a long unsigned and is
    105   1.1       cgd  * encode/decoded to the network via htonl/ntohl.  The low order 31 bits
    106   1.1       cgd  * are a byte count of the fragment.  The highest order bit is a boolean:
    107   1.1       cgd  * 1 => this fragment is the last fragment of the record,
    108   1.1       cgd  * 0 => this fragment is followed by more fragment(s).
    109   1.1       cgd  *
    110   1.1       cgd  * The fragment/record machinery is not general;  it is constructed to
    111   1.1       cgd  * meet the needs of xdr and rpc based on tcp.
    112   1.1       cgd  */
    113   1.1       cgd 
    114   1.4       cgd #define LAST_FRAG ((u_int32_t)(1 << 31))
    115   1.1       cgd 
    116   1.1       cgd typedef struct rec_strm {
    117  1.14   mycroft 	char *tcp_handle;
    118  1.14   mycroft 	char *the_buffer;
    119   1.1       cgd 	/*
    120   1.1       cgd 	 * out-goung bits
    121   1.1       cgd 	 */
    122  1.14   mycroft 	int (*writeit) __P((char *, char *, int));
    123  1.14   mycroft 	char *out_base;	/* output buffer (points to frag header) */
    124  1.14   mycroft 	char *out_finger;	/* next output position */
    125  1.14   mycroft 	char *out_boundry;	/* data cannot up to this address */
    126  1.11     lukem 	u_int32_t *frag_header;	/* beginning of curren fragment */
    127   1.1       cgd 	bool_t frag_sent;	/* true if buffer sent in middle of record */
    128   1.1       cgd 	/*
    129   1.1       cgd 	 * in-coming bits
    130   1.1       cgd 	 */
    131  1.14   mycroft 	int (*readit) __P((char *, char *, int));
    132  1.11     lukem 	u_long in_size;	/* fixed size of the input buffer */
    133  1.14   mycroft 	char *in_base;
    134  1.14   mycroft 	char *in_finger;	/* location of next byte to be had */
    135  1.14   mycroft 	char *in_boundry;	/* can read up to this location */
    136  1.11     lukem 	long fbtbc;		/* fragment bytes to be consumed */
    137   1.1       cgd 	bool_t last_frag;
    138  1.11     lukem 	u_int sendsize;
    139  1.11     lukem 	u_int recvsize;
    140   1.1       cgd } RECSTREAM;
    141   1.1       cgd 
    142  1.11     lukem static u_int	fix_buf_size __P((u_int));
    143   1.6       cgd static bool_t	flush_out __P((RECSTREAM *, bool_t));
    144   1.7  christos static bool_t	fill_input_buf __P((RECSTREAM *));
    145  1.14   mycroft static bool_t	get_input_bytes __P((RECSTREAM *, char *, int));
    146   1.6       cgd static bool_t	set_input_fragment __P((RECSTREAM *));
    147  1.11     lukem static bool_t	skip_input_bytes __P((RECSTREAM *, long));
    148   1.6       cgd 
    149   1.1       cgd 
    150   1.1       cgd /*
    151   1.1       cgd  * Create an xdr handle for xdrrec
    152   1.1       cgd  * xdrrec_create fills in xdrs.  Sendsize and recvsize are
    153   1.1       cgd  * send and recv buffer sizes (0 => use default).
    154   1.1       cgd  * tcp_handle is an opaque handle that is passed as the first parameter to
    155   1.1       cgd  * the procedures readit and writeit.  Readit and writeit are read and
    156   1.1       cgd  * write respectively.   They are like the system
    157   1.1       cgd  * calls expect that they take an opaque handle rather than an fd.
    158   1.1       cgd  */
    159   1.1       cgd void
    160   1.1       cgd xdrrec_create(xdrs, sendsize, recvsize, tcp_handle, readit, writeit)
    161  1.12     lukem 	XDR *xdrs;
    162  1.12     lukem 	u_int sendsize;
    163  1.12     lukem 	u_int recvsize;
    164  1.14   mycroft 	char *tcp_handle;
    165  1.11     lukem 	/* like read, but pass it a tcp_handle, not sock */
    166  1.14   mycroft 	int (*readit) __P((char *, char *, int));
    167  1.11     lukem 	/* like write, but pass it a tcp_handle, not sock */
    168  1.14   mycroft 	int (*writeit) __P((char *, char *, int));
    169   1.1       cgd {
    170  1.12     lukem 	RECSTREAM *rstrm =
    171   1.1       cgd 		(RECSTREAM *)mem_alloc(sizeof(RECSTREAM));
    172   1.1       cgd 
    173   1.1       cgd 	if (rstrm == NULL) {
    174  1.12     lukem 		warnx("xdrrec_create: out of memory");
    175   1.1       cgd 		/*
    176   1.1       cgd 		 *  This is bad.  Should rework xdrrec_create to
    177   1.1       cgd 		 *  return a handle, and in this case return NULL
    178   1.1       cgd 		 */
    179   1.1       cgd 		return;
    180   1.1       cgd 	}
    181   1.1       cgd 	/*
    182   1.1       cgd 	 * adjust sizes and allocate buffer quad byte aligned
    183   1.1       cgd 	 */
    184   1.1       cgd 	rstrm->sendsize = sendsize = fix_buf_size(sendsize);
    185   1.1       cgd 	rstrm->recvsize = recvsize = fix_buf_size(recvsize);
    186  1.11     lukem 	rstrm->the_buffer = mem_alloc(sendsize + recvsize + BYTES_PER_XDR_UNIT);
    187   1.1       cgd 	if (rstrm->the_buffer == NULL) {
    188  1.12     lukem 		warnx("xdrrec_create: out of memory");
    189   1.1       cgd 		return;
    190   1.1       cgd 	}
    191   1.1       cgd 	for (rstrm->out_base = rstrm->the_buffer;
    192  1.11     lukem 		(u_long)rstrm->out_base % BYTES_PER_XDR_UNIT != 0;
    193   1.1       cgd 		rstrm->out_base++);
    194   1.1       cgd 	rstrm->in_base = rstrm->out_base + sendsize;
    195   1.1       cgd 	/*
    196   1.1       cgd 	 * now the rest ...
    197   1.1       cgd 	 */
    198   1.1       cgd 	xdrs->x_ops = &xdrrec_ops;
    199  1.15  christos 	xdrs->x_private = rstrm;
    200   1.1       cgd 	rstrm->tcp_handle = tcp_handle;
    201   1.1       cgd 	rstrm->readit = readit;
    202   1.1       cgd 	rstrm->writeit = writeit;
    203   1.1       cgd 	rstrm->out_finger = rstrm->out_boundry = rstrm->out_base;
    204  1.15  christos 	rstrm->frag_header = (u_int32_t *)(void *)rstrm->out_base;
    205   1.4       cgd 	rstrm->out_finger += sizeof(u_int32_t);
    206   1.1       cgd 	rstrm->out_boundry += sendsize;
    207   1.1       cgd 	rstrm->frag_sent = FALSE;
    208   1.1       cgd 	rstrm->in_size = recvsize;
    209   1.1       cgd 	rstrm->in_boundry = rstrm->in_base;
    210   1.1       cgd 	rstrm->in_finger = (rstrm->in_boundry += recvsize);
    211   1.1       cgd 	rstrm->fbtbc = 0;
    212   1.1       cgd 	rstrm->last_frag = TRUE;
    213   1.1       cgd }
    214   1.1       cgd 
    215   1.1       cgd 
    216   1.1       cgd /*
    217  1.11     lukem  * The reoutines defined below are the xdr ops which will go into the
    218   1.1       cgd  * xdr handle filled in by xdrrec_create.
    219   1.1       cgd  */
    220   1.1       cgd 
    221   1.1       cgd static bool_t
    222   1.1       cgd xdrrec_getlong(xdrs, lp)
    223   1.1       cgd 	XDR *xdrs;
    224  1.11     lukem 	long *lp;
    225   1.1       cgd {
    226  1.12     lukem 	RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private);
    227  1.15  christos 	int32_t *buflp = (int32_t *)(void *)(rstrm->in_finger);
    228   1.4       cgd 	int32_t mylong;
    229   1.1       cgd 
    230   1.1       cgd 	/* first try the inline, fast case */
    231  1.11     lukem 	if ((rstrm->fbtbc >= sizeof(int32_t)) &&
    232  1.11     lukem 		(((long)rstrm->in_boundry - (long)buflp) >= sizeof(int32_t))) {
    233  1.11     lukem 		*lp = (long)ntohl((u_int32_t)(*buflp));
    234   1.4       cgd 		rstrm->fbtbc -= sizeof(int32_t);
    235   1.4       cgd 		rstrm->in_finger += sizeof(int32_t);
    236   1.1       cgd 	} else {
    237  1.15  christos 		if (! xdrrec_getbytes(xdrs, (char *)(void *)&mylong,
    238  1.15  christos 		    sizeof(int32_t)))
    239   1.1       cgd 			return (FALSE);
    240  1.11     lukem 		*lp = (long)ntohl((u_int32_t)mylong);
    241   1.1       cgd 	}
    242   1.1       cgd 	return (TRUE);
    243   1.1       cgd }
    244   1.1       cgd 
    245   1.1       cgd static bool_t
    246   1.1       cgd xdrrec_putlong(xdrs, lp)
    247   1.1       cgd 	XDR *xdrs;
    248  1.14   mycroft 	const long *lp;
    249   1.1       cgd {
    250  1.12     lukem 	RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private);
    251  1.15  christos 	int32_t *dest_lp = ((int32_t *)(void *)(rstrm->out_finger));
    252   1.1       cgd 
    253   1.4       cgd 	if ((rstrm->out_finger += sizeof(int32_t)) > rstrm->out_boundry) {
    254   1.1       cgd 		/*
    255   1.1       cgd 		 * this case should almost never happen so the code is
    256   1.1       cgd 		 * inefficient
    257   1.1       cgd 		 */
    258   1.4       cgd 		rstrm->out_finger -= sizeof(int32_t);
    259   1.1       cgd 		rstrm->frag_sent = TRUE;
    260   1.1       cgd 		if (! flush_out(rstrm, FALSE))
    261   1.1       cgd 			return (FALSE);
    262  1.15  christos 		dest_lp = ((int32_t *)(void *)(rstrm->out_finger));
    263   1.4       cgd 		rstrm->out_finger += sizeof(int32_t);
    264   1.1       cgd 	}
    265   1.4       cgd 	*dest_lp = (int32_t)htonl((u_int32_t)(*lp));
    266   1.1       cgd 	return (TRUE);
    267   1.1       cgd }
    268   1.1       cgd 
    269   1.1       cgd static bool_t  /* must manage buffers, fragments, and records */
    270   1.1       cgd xdrrec_getbytes(xdrs, addr, len)
    271   1.1       cgd 	XDR *xdrs;
    272  1.14   mycroft 	char *addr;
    273  1.12     lukem 	u_int len;
    274   1.1       cgd {
    275  1.12     lukem 	RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private);
    276  1.12     lukem 	int current;
    277   1.1       cgd 
    278   1.1       cgd 	while (len > 0) {
    279  1.15  christos 		current = (int)rstrm->fbtbc;
    280   1.1       cgd 		if (current == 0) {
    281   1.1       cgd 			if (rstrm->last_frag)
    282   1.1       cgd 				return (FALSE);
    283   1.1       cgd 			if (! set_input_fragment(rstrm))
    284   1.1       cgd 				return (FALSE);
    285   1.1       cgd 			continue;
    286   1.1       cgd 		}
    287   1.1       cgd 		current = (len < current) ? len : current;
    288   1.1       cgd 		if (! get_input_bytes(rstrm, addr, current))
    289   1.1       cgd 			return (FALSE);
    290   1.1       cgd 		addr += current;
    291   1.1       cgd 		rstrm->fbtbc -= current;
    292   1.1       cgd 		len -= current;
    293   1.1       cgd 	}
    294   1.1       cgd 	return (TRUE);
    295   1.1       cgd }
    296   1.1       cgd 
    297   1.1       cgd static bool_t
    298   1.1       cgd xdrrec_putbytes(xdrs, addr, len)
    299   1.1       cgd 	XDR *xdrs;
    300  1.14   mycroft 	const char *addr;
    301  1.12     lukem 	u_int len;
    302   1.1       cgd {
    303  1.12     lukem 	RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private);
    304  1.15  christos 	size_t current;
    305   1.1       cgd 
    306   1.1       cgd 	while (len > 0) {
    307  1.15  christos 		current = (size_t)((u_long)rstrm->out_boundry -
    308  1.15  christos 		    (u_long)rstrm->out_finger);
    309   1.1       cgd 		current = (len < current) ? len : current;
    310  1.12     lukem 		memmove(rstrm->out_finger, addr, current);
    311   1.1       cgd 		rstrm->out_finger += current;
    312   1.1       cgd 		addr += current;
    313   1.1       cgd 		len -= current;
    314   1.1       cgd 		if (rstrm->out_finger == rstrm->out_boundry) {
    315   1.1       cgd 			rstrm->frag_sent = TRUE;
    316   1.1       cgd 			if (! flush_out(rstrm, FALSE))
    317   1.1       cgd 				return (FALSE);
    318   1.1       cgd 		}
    319   1.1       cgd 	}
    320   1.1       cgd 	return (TRUE);
    321   1.1       cgd }
    322   1.1       cgd 
    323  1.11     lukem static u_int
    324   1.1       cgd xdrrec_getpos(xdrs)
    325  1.12     lukem 	XDR *xdrs;
    326   1.1       cgd {
    327  1.12     lukem 	RECSTREAM *rstrm = (RECSTREAM *)xdrs->x_private;
    328  1.15  christos 	off_t pos;
    329   1.1       cgd 
    330  1.15  christos 	pos = lseek((int)(u_long)rstrm->tcp_handle, (off_t)0, 1);
    331   1.1       cgd 	if (pos != -1)
    332   1.1       cgd 		switch (xdrs->x_op) {
    333   1.1       cgd 
    334   1.1       cgd 		case XDR_ENCODE:
    335   1.1       cgd 			pos += rstrm->out_finger - rstrm->out_base;
    336   1.1       cgd 			break;
    337   1.1       cgd 
    338   1.1       cgd 		case XDR_DECODE:
    339   1.1       cgd 			pos -= rstrm->in_boundry - rstrm->in_finger;
    340   1.1       cgd 			break;
    341   1.1       cgd 
    342   1.1       cgd 		default:
    343  1.15  christos 			pos = (off_t) -1;
    344   1.1       cgd 			break;
    345   1.1       cgd 		}
    346  1.11     lukem 	return ((u_int) pos);
    347   1.1       cgd }
    348   1.1       cgd 
    349   1.1       cgd static bool_t
    350   1.1       cgd xdrrec_setpos(xdrs, pos)
    351  1.12     lukem 	XDR *xdrs;
    352  1.11     lukem 	u_int pos;
    353   1.1       cgd {
    354  1.12     lukem 	RECSTREAM *rstrm = (RECSTREAM *)xdrs->x_private;
    355  1.11     lukem 	u_int currpos = xdrrec_getpos(xdrs);
    356   1.1       cgd 	int delta = currpos - pos;
    357  1.14   mycroft 	char *newpos;
    358   1.1       cgd 
    359   1.1       cgd 	if ((int)currpos != -1)
    360   1.1       cgd 		switch (xdrs->x_op) {
    361   1.1       cgd 
    362   1.1       cgd 		case XDR_ENCODE:
    363   1.1       cgd 			newpos = rstrm->out_finger - delta;
    364  1.15  christos 			if ((newpos > (char *)(void *)(rstrm->frag_header)) &&
    365   1.1       cgd 				(newpos < rstrm->out_boundry)) {
    366   1.1       cgd 				rstrm->out_finger = newpos;
    367   1.1       cgd 				return (TRUE);
    368   1.1       cgd 			}
    369   1.1       cgd 			break;
    370   1.1       cgd 
    371   1.1       cgd 		case XDR_DECODE:
    372   1.1       cgd 			newpos = rstrm->in_finger - delta;
    373   1.1       cgd 			if ((delta < (int)(rstrm->fbtbc)) &&
    374   1.1       cgd 				(newpos <= rstrm->in_boundry) &&
    375   1.1       cgd 				(newpos >= rstrm->in_base)) {
    376   1.1       cgd 				rstrm->in_finger = newpos;
    377   1.1       cgd 				rstrm->fbtbc -= delta;
    378   1.1       cgd 				return (TRUE);
    379   1.1       cgd 			}
    380   1.1       cgd 			break;
    381   1.7  christos 
    382   1.7  christos 		case XDR_FREE:
    383   1.7  christos 			break;
    384   1.1       cgd 		}
    385   1.1       cgd 	return (FALSE);
    386   1.1       cgd }
    387   1.1       cgd 
    388   1.4       cgd static int32_t *
    389   1.1       cgd xdrrec_inline(xdrs, len)
    390  1.12     lukem 	XDR *xdrs;
    391  1.11     lukem 	u_int len;
    392   1.1       cgd {
    393  1.12     lukem 	RECSTREAM *rstrm = (RECSTREAM *)xdrs->x_private;
    394   1.4       cgd 	int32_t *buf = NULL;
    395   1.1       cgd 
    396   1.1       cgd 	switch (xdrs->x_op) {
    397   1.1       cgd 
    398   1.1       cgd 	case XDR_ENCODE:
    399   1.1       cgd 		if ((rstrm->out_finger + len) <= rstrm->out_boundry) {
    400  1.15  christos 			buf = (int32_t *)(void *)rstrm->out_finger;
    401   1.1       cgd 			rstrm->out_finger += len;
    402   1.1       cgd 		}
    403   1.1       cgd 		break;
    404   1.1       cgd 
    405   1.1       cgd 	case XDR_DECODE:
    406   1.1       cgd 		if ((len <= rstrm->fbtbc) &&
    407   1.1       cgd 			((rstrm->in_finger + len) <= rstrm->in_boundry)) {
    408  1.15  christos 			buf = (int32_t *)(void *)rstrm->in_finger;
    409   1.1       cgd 			rstrm->fbtbc -= len;
    410   1.1       cgd 			rstrm->in_finger += len;
    411   1.1       cgd 		}
    412   1.7  christos 		break;
    413   1.7  christos 
    414   1.7  christos 	case XDR_FREE:
    415   1.1       cgd 		break;
    416   1.1       cgd 	}
    417   1.1       cgd 	return (buf);
    418   1.1       cgd }
    419   1.1       cgd 
    420   1.1       cgd static void
    421   1.1       cgd xdrrec_destroy(xdrs)
    422  1.12     lukem 	XDR *xdrs;
    423   1.1       cgd {
    424  1.12     lukem 	RECSTREAM *rstrm = (RECSTREAM *)xdrs->x_private;
    425   1.1       cgd 
    426   1.1       cgd 	mem_free(rstrm->the_buffer,
    427   1.1       cgd 		rstrm->sendsize + rstrm->recvsize + BYTES_PER_XDR_UNIT);
    428  1.15  christos 	mem_free(rstrm, sizeof(RECSTREAM));
    429   1.1       cgd }
    430   1.1       cgd 
    431   1.1       cgd 
    432   1.1       cgd /*
    433   1.1       cgd  * Exported routines to manage xdr records
    434   1.1       cgd  */
    435   1.1       cgd 
    436   1.1       cgd /*
    437   1.1       cgd  * Before reading (deserializing from the stream, one should always call
    438   1.1       cgd  * this procedure to guarantee proper record alignment.
    439   1.1       cgd  */
    440   1.1       cgd bool_t
    441   1.1       cgd xdrrec_skiprecord(xdrs)
    442   1.1       cgd 	XDR *xdrs;
    443   1.1       cgd {
    444  1.12     lukem 	RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private);
    445   1.1       cgd 
    446   1.1       cgd 	while (rstrm->fbtbc > 0 || (! rstrm->last_frag)) {
    447   1.1       cgd 		if (! skip_input_bytes(rstrm, rstrm->fbtbc))
    448   1.1       cgd 			return (FALSE);
    449   1.1       cgd 		rstrm->fbtbc = 0;
    450   1.1       cgd 		if ((! rstrm->last_frag) && (! set_input_fragment(rstrm)))
    451   1.1       cgd 			return (FALSE);
    452   1.1       cgd 	}
    453   1.1       cgd 	rstrm->last_frag = FALSE;
    454   1.1       cgd 	return (TRUE);
    455   1.1       cgd }
    456   1.1       cgd 
    457   1.1       cgd /*
    458   1.1       cgd  * Look ahead fuction.
    459   1.1       cgd  * Returns TRUE iff there is no more input in the buffer
    460   1.1       cgd  * after consuming the rest of the current record.
    461   1.1       cgd  */
    462   1.1       cgd bool_t
    463   1.1       cgd xdrrec_eof(xdrs)
    464   1.1       cgd 	XDR *xdrs;
    465   1.1       cgd {
    466  1.12     lukem 	RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private);
    467   1.1       cgd 
    468   1.1       cgd 	while (rstrm->fbtbc > 0 || (! rstrm->last_frag)) {
    469   1.1       cgd 		if (! skip_input_bytes(rstrm, rstrm->fbtbc))
    470   1.1       cgd 			return (TRUE);
    471   1.1       cgd 		rstrm->fbtbc = 0;
    472   1.1       cgd 		if ((! rstrm->last_frag) && (! set_input_fragment(rstrm)))
    473   1.1       cgd 			return (TRUE);
    474   1.1       cgd 	}
    475   1.1       cgd 	if (rstrm->in_finger == rstrm->in_boundry)
    476   1.1       cgd 		return (TRUE);
    477   1.1       cgd 	return (FALSE);
    478   1.1       cgd }
    479   1.1       cgd 
    480   1.1       cgd /*
    481   1.1       cgd  * The client must tell the package when an end-of-record has occurred.
    482   1.1       cgd  * The second paraemters tells whether the record should be flushed to the
    483   1.1       cgd  * (output) tcp stream.  (This let's the package support batched or
    484   1.1       cgd  * pipelined procedure calls.)  TRUE => immmediate flush to tcp connection.
    485   1.1       cgd  */
    486   1.1       cgd bool_t
    487   1.1       cgd xdrrec_endofrecord(xdrs, sendnow)
    488   1.1       cgd 	XDR *xdrs;
    489   1.1       cgd 	bool_t sendnow;
    490   1.1       cgd {
    491  1.12     lukem 	RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private);
    492  1.12     lukem 	u_long len;  /* fragment length */
    493   1.1       cgd 
    494   1.1       cgd 	if (sendnow || rstrm->frag_sent ||
    495  1.11     lukem 		((u_long)rstrm->out_finger + sizeof(u_int32_t) >=
    496  1.11     lukem 		(u_long)rstrm->out_boundry)) {
    497   1.1       cgd 		rstrm->frag_sent = FALSE;
    498   1.1       cgd 		return (flush_out(rstrm, TRUE));
    499   1.1       cgd 	}
    500  1.11     lukem 	len = (u_long)(rstrm->out_finger) - (u_long)(rstrm->frag_header) -
    501   1.4       cgd 	   sizeof(u_int32_t);
    502  1.15  christos 	*(rstrm->frag_header) = htonl((u_int32_t)len | LAST_FRAG);
    503  1.15  christos 	rstrm->frag_header = (u_int32_t *)(void *)rstrm->out_finger;
    504   1.4       cgd 	rstrm->out_finger += sizeof(u_int32_t);
    505   1.1       cgd 	return (TRUE);
    506   1.1       cgd }
    507   1.1       cgd 
    508   1.1       cgd 
    509   1.1       cgd /*
    510   1.1       cgd  * Internal useful routines
    511   1.1       cgd  */
    512   1.1       cgd static bool_t
    513   1.1       cgd flush_out(rstrm, eor)
    514  1.12     lukem 	RECSTREAM *rstrm;
    515   1.1       cgd 	bool_t eor;
    516   1.1       cgd {
    517  1.15  christos 	u_int32_t eormask = (eor == TRUE) ? LAST_FRAG : 0;
    518  1.15  christos 	u_int32_t len = (u_int32_t)((u_long)(rstrm->out_finger) -
    519  1.15  christos 		(u_long)(rstrm->frag_header) - sizeof(u_int32_t));
    520   1.1       cgd 
    521   1.1       cgd 	*(rstrm->frag_header) = htonl(len | eormask);
    522  1.15  christos 	len = (u_int32_t)((u_long)(rstrm->out_finger) -
    523  1.15  christos 	    (u_long)(rstrm->out_base));
    524   1.1       cgd 	if ((*(rstrm->writeit))(rstrm->tcp_handle, rstrm->out_base, (int)len)
    525   1.1       cgd 		!= (int)len)
    526   1.1       cgd 		return (FALSE);
    527  1.15  christos 	rstrm->frag_header = (u_int32_t *)(void *)rstrm->out_base;
    528  1.14   mycroft 	rstrm->out_finger = (char *)rstrm->out_base + sizeof(u_int32_t);
    529   1.1       cgd 	return (TRUE);
    530   1.1       cgd }
    531   1.1       cgd 
    532   1.1       cgd static bool_t  /* knows nothing about records!  Only about input buffers */
    533   1.1       cgd fill_input_buf(rstrm)
    534  1.12     lukem 	RECSTREAM *rstrm;
    535   1.1       cgd {
    536  1.14   mycroft 	char *where;
    537  1.15  christos 	u_int32_t i;
    538  1.15  christos 	int len;
    539   1.1       cgd 
    540   1.1       cgd 	where = rstrm->in_base;
    541  1.15  christos 	i = (u_int32_t)((u_long)rstrm->in_boundry % BYTES_PER_XDR_UNIT);
    542   1.1       cgd 	where += i;
    543  1.15  christos 	len = (u_int32_t)(rstrm->in_size - i);
    544   1.1       cgd 	if ((len = (*(rstrm->readit))(rstrm->tcp_handle, where, len)) == -1)
    545   1.1       cgd 		return (FALSE);
    546   1.1       cgd 	rstrm->in_finger = where;
    547   1.1       cgd 	where += len;
    548   1.1       cgd 	rstrm->in_boundry = where;
    549   1.1       cgd 	return (TRUE);
    550   1.1       cgd }
    551   1.1       cgd 
    552   1.1       cgd static bool_t  /* knows nothing about records!  Only about input buffers */
    553   1.1       cgd get_input_bytes(rstrm, addr, len)
    554  1.12     lukem 	RECSTREAM *rstrm;
    555  1.14   mycroft 	char *addr;
    556  1.12     lukem 	int len;
    557   1.1       cgd {
    558  1.15  christos 	size_t current;
    559   1.1       cgd 
    560   1.1       cgd 	while (len > 0) {
    561  1.15  christos 		current = (size_t)((long)rstrm->in_boundry -
    562  1.15  christos 		    (long)rstrm->in_finger);
    563   1.1       cgd 		if (current == 0) {
    564   1.1       cgd 			if (! fill_input_buf(rstrm))
    565   1.1       cgd 				return (FALSE);
    566   1.1       cgd 			continue;
    567   1.1       cgd 		}
    568   1.1       cgd 		current = (len < current) ? len : current;
    569  1.12     lukem 		memmove(addr, rstrm->in_finger, current);
    570   1.1       cgd 		rstrm->in_finger += current;
    571   1.1       cgd 		addr += current;
    572   1.1       cgd 		len -= current;
    573   1.1       cgd 	}
    574   1.1       cgd 	return (TRUE);
    575   1.1       cgd }
    576   1.1       cgd 
    577   1.1       cgd static bool_t  /* next two bytes of the input stream are treated as a header */
    578   1.1       cgd set_input_fragment(rstrm)
    579  1.12     lukem 	RECSTREAM *rstrm;
    580   1.1       cgd {
    581   1.4       cgd 	u_int32_t header;
    582   1.1       cgd 
    583  1.15  christos 	if (! get_input_bytes(rstrm, (char *)(void *)&header, sizeof(header)))
    584   1.1       cgd 		return (FALSE);
    585  1.15  christos 	header = ntohl(header);
    586   1.1       cgd 	rstrm->last_frag = ((header & LAST_FRAG) == 0) ? FALSE : TRUE;
    587  1.16     lukem 	/*
    588  1.16     lukem 	 * Sanity check. Try not to accept wildly incorrect
    589  1.16     lukem 	 * record sizes. Unfortunately, the only record size
    590  1.16     lukem 	 * we can positively identify as being 'wildly incorrect'
    591  1.16     lukem 	 * is zero. Ridiculously large record sizes may look wrong,
    592  1.16     lukem 	 * but we don't have any way to be certain that they aren't
    593  1.16     lukem 	 * what the client actually intended to send us.
    594  1.16     lukem 	 */
    595  1.16     lukem 	if ((header & (~LAST_FRAG)) == 0)
    596  1.16     lukem 		return(FALSE);
    597   1.1       cgd 	rstrm->fbtbc = header & (~LAST_FRAG);
    598   1.1       cgd 	return (TRUE);
    599   1.1       cgd }
    600   1.1       cgd 
    601   1.1       cgd static bool_t  /* consumes input bytes; knows nothing about records! */
    602   1.1       cgd skip_input_bytes(rstrm, cnt)
    603  1.12     lukem 	RECSTREAM *rstrm;
    604  1.11     lukem 	long cnt;
    605   1.1       cgd {
    606  1.15  christos 	u_int32_t current;
    607   1.1       cgd 
    608   1.1       cgd 	while (cnt > 0) {
    609  1.15  christos 		current = (size_t)((long)rstrm->in_boundry -
    610  1.15  christos 		    (long)rstrm->in_finger);
    611   1.1       cgd 		if (current == 0) {
    612   1.1       cgd 			if (! fill_input_buf(rstrm))
    613   1.1       cgd 				return (FALSE);
    614   1.1       cgd 			continue;
    615   1.1       cgd 		}
    616  1.15  christos 		current = (u_int32_t)((cnt < current) ? cnt : current);
    617   1.1       cgd 		rstrm->in_finger += current;
    618   1.1       cgd 		cnt -= current;
    619   1.1       cgd 	}
    620   1.1       cgd 	return (TRUE);
    621   1.1       cgd }
    622   1.1       cgd 
    623  1.11     lukem static u_int
    624   1.1       cgd fix_buf_size(s)
    625  1.12     lukem 	u_int s;
    626   1.1       cgd {
    627   1.1       cgd 
    628   1.1       cgd 	if (s < 100)
    629   1.1       cgd 		s = 4000;
    630   1.1       cgd 	return (RNDUP(s));
    631   1.1       cgd }
    632