8abc5053cb0f63d5cc900cdbca319459fd0c1c33
[shibboleth/cpp-sp.git] / oncrpc / xdr_stdi.c
1 /*********************************************************************
2  * RPC for the Windows NT Operating System
3  * 1993 by Martin F. Gergeleit
4  * Users may use, copy or modify Sun RPC for the Windows NT Operating 
5  * System according to the Sun copyright below.
6  *
7  * RPC for the Windows NT Operating System COMES WITH ABSOLUTELY NO 
8  * WARRANTY, NOR WILL I BE LIABLE FOR ANY DAMAGES INCURRED FROM THE 
9  * USE OF. USE ENTIRELY AT YOUR OWN RISK!!!
10  *********************************************************************/
11
12 /* @(#)xdr_stdio.c      2.1 88/07/29 4.0 RPCSRC */
13 /*
14  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
15  * unrestricted use provided that this legend is included on all tape
16  * media and as a part of the software program in whole or part.  Users
17  * may copy or modify Sun RPC without charge, but are not authorized
18  * to license or distribute it to anyone else except as part of a product or
19  * program developed by the user.
20  * 
21  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
22  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
24  * 
25  * Sun RPC is provided with no support and without any obligation on the
26  * part of Sun Microsystems, Inc. to assist in its use, correction,
27  * modification or enhancement.
28  * 
29  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
30  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
31  * OR ANY PART THEREOF.
32  * 
33  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
34  * or profits or other special, indirect and consequential damages, even if
35  * Sun has been advised of the possibility of such damages.
36  * 
37  * Sun Microsystems, Inc.
38  * 2550 Garcia Avenue
39  * Mountain View, California  94043
40  */
41 #if !defined(lint) && defined(SCCSIDS)
42 static char sccsid[] = "@(#)xdr_stdio.c 1.16 87/08/11 Copyr 1984 Sun Micro";
43 #endif
44
45 /*
46  * xdr_stdio.c, XDR implementation on standard i/o file.
47  *
48  * Copyright (C) 1984, Sun Microsystems, Inc.
49  *
50  * This set of routines implements a XDR on a stdio stream.
51  * XDR_ENCODE serializes onto the stream, XDR_DECODE de-serializes
52  * from the stream.
53  */
54
55 #ifdef WIN32
56 #include <rpc/rpc.h>
57 #else
58 #include <rpc/types.h>
59 #endif
60 #include <stdio.h>
61 #include <rpc/xdr.h>
62
63 static bool_t   xdrstdio_getlong();
64 static bool_t   xdrstdio_putlong();
65 static bool_t   xdrstdio_getbytes();
66 static bool_t   xdrstdio_putbytes();
67 static u_int    xdrstdio_getpos();
68 static bool_t   xdrstdio_setpos();
69 static long *   xdrstdio_inline();
70 static void     xdrstdio_destroy();
71
72 /*
73  * Ops vector for stdio type XDR
74  */
75 static struct xdr_ops   xdrstdio_ops = {
76         xdrstdio_getlong,       /* deseraialize a long int */
77         xdrstdio_putlong,       /* seraialize a long int */
78         xdrstdio_getbytes,      /* deserialize counted bytes */
79         xdrstdio_putbytes,      /* serialize counted bytes */
80         xdrstdio_getpos,        /* get offset in the stream */
81         xdrstdio_setpos,        /* set offset in the stream */
82         xdrstdio_inline,        /* prime stream for inline macros */
83         xdrstdio_destroy        /* destroy stream */
84 };
85
86 /*
87  * Initialize a stdio xdr stream.
88  * Sets the xdr stream handle xdrs for use on the stream file.
89  * Operation flag is set to op.
90  */
91 void
92 xdrstdio_create(xdrs, file, op)
93         register XDR *xdrs;
94         FILE *file;
95         enum xdr_op op;
96 {
97
98         xdrs->x_op = op;
99         xdrs->x_ops = &xdrstdio_ops;
100         xdrs->x_private = (caddr_t)file;
101         xdrs->x_handy = 0;
102         xdrs->x_base = 0;
103 }
104
105 /*
106  * Destroy a stdio xdr stream.
107  * Cleans up the xdr stream handle xdrs previously set up by xdrstdio_create.
108  */
109 static void
110 xdrstdio_destroy(xdrs)
111         register XDR *xdrs;
112 {
113         (void)fflush((FILE *)xdrs->x_private);
114         /* xx should we close the file ?? */
115 };
116
117 static bool_t
118 xdrstdio_getlong(xdrs, lp)
119         XDR *xdrs;
120         register long *lp;
121 {
122
123         if (fread((caddr_t)lp, sizeof(long), 1, (FILE *)xdrs->x_private) != 1)
124                 return (FALSE);
125 #ifndef mc68000
126         *lp = ntohl(*lp);
127 #endif
128         return (TRUE);
129 }
130
131 static bool_t
132 xdrstdio_putlong(xdrs, lp)
133         XDR *xdrs;
134         long *lp;
135 {
136
137 #ifndef mc68000
138         long mycopy = htonl(*lp);
139         lp = &mycopy;
140 #endif
141         if (fwrite((caddr_t)lp, sizeof(long), 1, (FILE *)xdrs->x_private) != 1)
142                 return (FALSE);
143         return (TRUE);
144 }
145
146 static bool_t
147 xdrstdio_getbytes(xdrs, addr, len)
148         XDR *xdrs;
149         caddr_t addr;
150         u_int len;
151 {
152
153         if ((len != 0) && (fread(addr, (int)len, 1, (FILE *)xdrs->x_private) != 1))
154                 return (FALSE);
155         return (TRUE);
156 }
157
158 static bool_t
159 xdrstdio_putbytes(xdrs, addr, len)
160         XDR *xdrs;
161         caddr_t addr;
162         u_int len;
163 {
164
165         if ((len != 0) && (fwrite(addr, (int)len, 1, (FILE *)xdrs->x_private) != 1))
166                 return (FALSE);
167         return (TRUE);
168 }
169
170 static u_int
171 xdrstdio_getpos(xdrs)
172         XDR *xdrs;
173 {
174
175         return ((u_int) ftell((FILE *)xdrs->x_private));
176 }
177
178 static bool_t
179 xdrstdio_setpos(xdrs, pos) 
180         XDR *xdrs;
181         u_int pos;
182
183
184         return ((fseek((FILE *)xdrs->x_private, (long)pos, 0) < 0) ?
185                 FALSE : TRUE);
186 }
187
188 static long *
189 xdrstdio_inline(xdrs, len)
190         XDR *xdrs;
191         u_int len;
192 {
193
194         /*
195          * Must do some work to implement this: must insure
196          * enough data in the underlying stdio buffer,
197          * that the buffer is aligned so that we can indirect through a
198          * long *, and stuff this pointer in xdrs->x_buf.  Doing
199          * a fread or fwrite to a scratch buffer would defeat
200          * most of the gains to be had here and require storage
201          * management on this buffer, so we don't do this.
202          */
203         return (NULL);
204 }