Imported Upstream version 0.2.5
[platform/upstream/libtirpc.git] / src / xdr_stdio.c
1 /*
2  * Copyright (c) 2009, Sun Microsystems, Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * - Redistributions of source code must retain the above copyright notice,
8  *   this list of conditions and the following disclaimer.
9  * - Redistributions in binary form must reproduce the above copyright notice,
10  *   this list of conditions and the following disclaimer in the documentation
11  *   and/or other materials provided with the distribution.
12  * - Neither the name of Sun Microsystems, Inc. nor the names of its
13  *   contributors may be used to endorse or promote products derived
14  *   from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26  * POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 #include <sys/cdefs.h>
30
31 /*
32  * xdr_stdio.c, XDR implementation on standard i/o file.
33  *
34  * Copyright (C) 1984, Sun Microsystems, Inc.
35  *
36  * This set of routines implements a XDR on a stdio stream.
37  * XDR_ENCODE serializes onto the stream, XDR_DECODE de-serializes
38  * from the stream.
39  */
40
41 #include <stdio.h>
42
43 #include <arpa/inet.h>
44 #include <rpc/types.h>
45 #include <rpc/xdr.h>
46 #include "un-namespace.h"
47
48 static void xdrstdio_destroy(XDR *);
49 static bool_t xdrstdio_getlong(XDR *, long *);
50 static bool_t xdrstdio_putlong(XDR *, const long *);
51 static bool_t xdrstdio_getbytes(XDR *, char *, u_int);
52 static bool_t xdrstdio_putbytes(XDR *, const char *, u_int);
53 static u_int xdrstdio_getpos(XDR *);
54 static bool_t xdrstdio_setpos(XDR *, u_int);
55 static int32_t *xdrstdio_inline(XDR *, u_int);
56
57 /*
58  * Ops vector for stdio type XDR
59  */
60 static const struct xdr_ops     xdrstdio_ops = {
61         xdrstdio_getlong,       /* deseraialize a long int */
62         xdrstdio_putlong,       /* seraialize a long int */
63         xdrstdio_getbytes,      /* deserialize counted bytes */
64         xdrstdio_putbytes,      /* serialize counted bytes */
65         xdrstdio_getpos,        /* get offset in the stream */
66         xdrstdio_setpos,        /* set offset in the stream */
67         xdrstdio_inline,        /* prime stream for inline macros */
68         xdrstdio_destroy        /* destroy stream */
69 };
70
71 /*
72  * Initialize a stdio xdr stream.
73  * Sets the xdr stream handle xdrs for use on the stream file.
74  * Operation flag is set to op.
75  */
76 void
77 xdrstdio_create(xdrs, file, op)
78         XDR *xdrs;
79         FILE *file;
80         enum xdr_op op;
81 {
82
83         xdrs->x_op = op;
84         xdrs->x_ops = &xdrstdio_ops;
85         xdrs->x_private = file;
86         xdrs->x_handy = 0;
87         xdrs->x_base = 0;
88 }
89
90 /*
91  * Destroy a stdio xdr stream.
92  * Cleans up the xdr stream handle xdrs previously set up by xdrstdio_create.
93  */
94 static void
95 xdrstdio_destroy(xdrs)
96         XDR *xdrs;
97 {
98         (void)fflush((FILE *)xdrs->x_private);
99                 /* XXX: should we close the file ?? */
100 }
101
102 static bool_t
103 xdrstdio_getlong(xdrs, lp)
104         XDR *xdrs;
105         long *lp;
106 {
107
108         if (fread(lp, sizeof(int32_t), 1, (FILE *)xdrs->x_private) != 1)
109                 return (FALSE);
110         *lp = (long)ntohl((u_int32_t)*lp);
111         return (TRUE);
112 }
113
114 static bool_t
115 xdrstdio_putlong(xdrs, lp)
116         XDR *xdrs;
117         const long *lp;
118 {
119         long mycopy = (long)htonl((u_int32_t)*lp);
120
121         if (fwrite(&mycopy, sizeof(int32_t), 1, (FILE *)xdrs->x_private) != 1)
122                 return (FALSE);
123         return (TRUE);
124 }
125
126 static bool_t
127 xdrstdio_getbytes(xdrs, addr, len)
128         XDR *xdrs;
129         char *addr;
130         u_int len;
131 {
132
133         if ((len != 0) && (fread(addr, (size_t)len, 1, (FILE *)xdrs->x_private) != 1))
134                 return (FALSE);
135         return (TRUE);
136 }
137
138 static bool_t
139 xdrstdio_putbytes(xdrs, addr, len)
140         XDR *xdrs;
141         const char *addr;
142         u_int len;
143 {
144
145         if ((len != 0) && (fwrite(addr, (size_t)len, 1,
146             (FILE *)xdrs->x_private) != 1))
147                 return (FALSE);
148         return (TRUE);
149 }
150
151 static u_int
152 xdrstdio_getpos(xdrs)
153         XDR *xdrs;
154 {
155
156         return ((u_int) ftell((FILE *)xdrs->x_private));
157 }
158
159 static bool_t
160 xdrstdio_setpos(xdrs, pos) 
161         XDR *xdrs;
162         u_int pos;
163
164
165         return ((fseek((FILE *)xdrs->x_private, (long)pos, 0) < 0) ?
166                 FALSE : TRUE);
167 }
168
169 /* ARGSUSED */
170 static int32_t *
171 xdrstdio_inline(xdrs, len)
172         XDR *xdrs;
173         u_int len;
174 {
175
176         /*
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.
184          */
185         return (NULL);
186 }