1 /* $NetBSD: xdr_stdio.c,v 1.19 2013/03/11 20:19:30 tron Exp $ */
4 * Copyright (c) 2010, Oracle America, Inc.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following
14 * disclaimer in the documentation and/or other materials
15 * provided with the distribution.
16 * * Neither the name of the "Oracle America, Inc." nor the names of its
17 * contributors may be used to endorse or promote products derived
18 * from this software without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
27 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 #include <sys/cdefs.h>
35 #if defined(LIBC_SCCS) && !defined(lint)
37 static char *sccsid
= "@(#)xdr_stdio.c 1.16 87/08/11 Copyr 1984 Sun Micro";
38 static char *sccsid
= "@(#)xdr_stdio.c 2.1 88/07/29 4.0 RPCSRC";
40 __RCSID("$NetBSD: xdr_stdio.c,v 1.19 2013/03/11 20:19:30 tron Exp $");
45 * xdr_stdio.c, XDR implementation on standard i/o file.
47 * Copyright (C) 1984, Sun Microsystems, Inc.
49 * This set of routines implements a XDR on a stdio stream.
50 * XDR_ENCODE serializes onto the stream, XDR_DECODE de-serializes
54 #include "namespace.h"
58 #include <rpc/types.h>
62 __weak_alias(xdrstdio_create
,_xdrstdio_create
)
65 static void xdrstdio_destroy(XDR
*);
66 static bool_t
xdrstdio_getlong(XDR
*, long *);
67 static bool_t
xdrstdio_putlong(XDR
*, const long *);
68 static bool_t
xdrstdio_getbytes(XDR
*, char *, u_int
);
69 static bool_t
xdrstdio_putbytes(XDR
*, const char *, u_int
);
70 static u_int
xdrstdio_getpos(XDR
*);
71 static bool_t
xdrstdio_setpos(XDR
*, u_int
);
72 static int32_t *xdrstdio_inline(XDR
*, u_int
);
75 * Ops vector for stdio type XDR
77 static const struct xdr_ops xdrstdio_ops
= {
78 xdrstdio_getlong
, /* deseraialize a long int */
79 xdrstdio_putlong
, /* seraialize a long int */
80 xdrstdio_getbytes
, /* deserialize counted bytes */
81 xdrstdio_putbytes
, /* serialize counted bytes */
82 xdrstdio_getpos
, /* get offset in the stream */
83 xdrstdio_setpos
, /* set offset in the stream */
84 xdrstdio_inline
, /* prime stream for inline macros */
85 xdrstdio_destroy
, /* destroy stream */
86 NULL
, /* xdrstdio_control */
90 * Initialize a stdio xdr stream.
91 * Sets the xdr stream handle xdrs for use on the stream file.
92 * Operation flag is set to op.
95 xdrstdio_create(XDR
*xdrs
, FILE *file
, enum xdr_op op
)
99 xdrs
->x_ops
= &xdrstdio_ops
;
100 xdrs
->x_private
= file
;
106 * Destroy a stdio xdr stream.
107 * Cleans up the xdr stream handle xdrs previously set up by xdrstdio_create.
110 xdrstdio_destroy(XDR
*xdrs
)
112 (void)fflush((FILE *)xdrs
->x_private
);
113 /* XXX: should we close the file ?? */
117 xdrstdio_getlong(XDR
*xdrs
, long *lp
)
121 if (fread(&temp
, sizeof(int32_t), 1, (FILE *)xdrs
->x_private
) != 1)
123 *lp
= (long)ntohl(temp
);
128 xdrstdio_putlong(XDR
*xdrs
, const long *lp
)
130 int32_t mycopy
= htonl((u_int32_t
)*lp
);
132 if (fwrite(&mycopy
, sizeof(int32_t), 1, (FILE *)xdrs
->x_private
) != 1)
138 xdrstdio_getbytes(XDR
*xdrs
, char *addr
, u_int len
)
141 if ((len
!= 0) && (fread(addr
, (size_t)len
, 1, (FILE *)xdrs
->x_private
) != 1))
147 xdrstdio_putbytes(XDR
*xdrs
, const char *addr
, u_int len
)
150 if ((len
!= 0) && (fwrite(addr
, (size_t)len
, 1,
151 (FILE *)xdrs
->x_private
) != 1))
157 xdrstdio_getpos(XDR
*xdrs
)
160 return ((u_int
) ftell((FILE *)xdrs
->x_private
));
164 xdrstdio_setpos(XDR
*xdrs
, u_int pos
)
167 return ((fseek((FILE *)xdrs
->x_private
, (long)pos
, 0) < 0) ?
173 xdrstdio_inline(XDR
*xdrs
, u_int len
)
177 * Must do some work to implement this: must insure
178 * enough data in the underlying stdio buffer,
179 * that the buffer is aligned so that we can indirect through a
180 * long *, and stuff this pointer in xdrs->x_buf. Doing
181 * a fread or fwrite to a scratch buffer would defeat
182 * most of the gains to be had here and require storage
183 * management on this buffer, so we don't do this.