fix eglibc compatibility
[project/librpc-uclibc.git] / xdr_mem.c
1 /*
2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3 * unrestricted use provided that this legend is included on all tape
4 * media and as a part of the software program in whole or part. Users
5 * may copy or modify Sun RPC without charge, but are not authorized
6 * to license or distribute it to anyone else except as part of a product or
7 * program developed by the user.
8 *
9 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
10 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
11 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
12 *
13 * Sun RPC is provided with no support and without any obligation on the
14 * part of Sun Microsystems, Inc. to assist in its use, correction,
15 * modification or enhancement.
16 *
17 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
18 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
19 * OR ANY PART THEREOF.
20 *
21 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
22 * or profits or other special, indirect and consequential damages, even if
23 * Sun has been advised of the possibility of such damages.
24 *
25 * Sun Microsystems, Inc.
26 * 2550 Garcia Avenue
27 * Mountain View, California 94043
28 */
29
30 /*
31 * xdr_mem.h, XDR implementation using memory buffers.
32 *
33 * Copyright (C) 1984, Sun Microsystems, Inc.
34 *
35 * If you have some data to be interpreted as external data representation
36 * or to be converted to external data representation in a memory buffer,
37 * then this is the package for you.
38 *
39 */
40
41 #include <features.h>
42 #include <string.h>
43 #include <limits.h>
44 #include <rpc/rpc.h>
45
46
47 static bool_t xdrmem_getlong (XDR *, long *);
48 static bool_t xdrmem_putlong (XDR *, const long *);
49 static bool_t xdrmem_getbytes (XDR *, caddr_t, u_int);
50 static bool_t xdrmem_putbytes (XDR *, const char *, u_int);
51 static u_int xdrmem_getpos (const XDR *);
52 static bool_t xdrmem_setpos (XDR *, u_int);
53 static int32_t *xdrmem_inline (XDR *, u_int);
54 static void xdrmem_destroy (XDR *);
55 static bool_t xdrmem_getint32 (XDR *, int32_t *);
56 static bool_t xdrmem_putint32 (XDR *, const int32_t *);
57
58 static const struct xdr_ops xdrmem_ops =
59 {
60 xdrmem_getlong,
61 xdrmem_putlong,
62 xdrmem_getbytes,
63 xdrmem_putbytes,
64 xdrmem_getpos,
65 xdrmem_setpos,
66 xdrmem_inline,
67 xdrmem_destroy,
68 xdrmem_getint32,
69 xdrmem_putint32
70 };
71
72 /*
73 * The procedure xdrmem_create initializes a stream descriptor for a
74 * memory buffer.
75 */
76 void
77 xdrmem_create (XDR *xdrs, const caddr_t addr, u_int size, enum xdr_op op)
78 {
79 xdrs->x_op = op;
80 /* We have to add the const since the `struct xdr_ops' in `struct XDR'
81 is not `const'. */
82 xdrs->x_ops = (struct xdr_ops *) &xdrmem_ops;
83 xdrs->x_private = xdrs->x_base = addr;
84 xdrs->x_handy = size;
85 }
86 libc_hidden_def(xdrmem_create)
87
88 /*
89 * Nothing needs to be done for the memory case. The argument is clearly
90 * const.
91 */
92
93 static void
94 xdrmem_destroy (XDR *xdrs attribute_unused)
95 {
96 }
97
98 /*
99 * Gets the next word from the memory referenced by xdrs and places it
100 * in the long pointed to by lp. It then increments the private word to
101 * point at the next element. Neither object pointed to is const
102 */
103 static bool_t
104 xdrmem_getlong (XDR *xdrs, long *lp)
105 {
106 if (xdrs->x_handy < 4)
107 return FALSE;
108 xdrs->x_handy -= 4;
109 *lp = (int32_t) ntohl ((*((int32_t *) (xdrs->x_private))));
110 xdrs->x_private += 4;
111 return TRUE;
112 }
113
114 /*
115 * Puts the long pointed to by lp in the memory referenced by xdrs. It
116 * then increments the private word to point at the next element. The
117 * long pointed at is const
118 */
119 static bool_t
120 xdrmem_putlong (XDR *xdrs, const long *lp)
121 {
122 if (xdrs->x_handy < 4)
123 return FALSE;
124 xdrs->x_handy -= 4;
125 *(int32_t *) xdrs->x_private = htonl (*lp);
126 xdrs->x_private += 4;
127 return TRUE;
128 }
129
130 /*
131 * Gets an unaligned number of bytes from the xdrs structure and writes them
132 * to the address passed in addr. Be very careful when calling this routine
133 * as it could leave the xdrs pointing to an unaligned structure which is not
134 * a good idea. None of the things pointed to are const.
135 */
136 static bool_t
137 xdrmem_getbytes (XDR *xdrs, caddr_t addr, u_int len)
138 {
139 if (xdrs->x_handy < len)
140 return FALSE;
141 xdrs->x_handy -= len;
142 memcpy (addr, xdrs->x_private, len);
143 xdrs->x_private += len;
144 return TRUE;
145 }
146
147 /*
148 * The complementary function to the above. The same warnings apply about
149 * unaligned data. The source address is const.
150 */
151 static bool_t
152 xdrmem_putbytes (XDR *xdrs, const char *addr, u_int len)
153 {
154 if (xdrs->x_handy < len)
155 return FALSE;
156 xdrs->x_handy -= len;
157 memcpy (xdrs->x_private, addr, len);
158 xdrs->x_private += len;
159 return TRUE;
160 }
161
162 /*
163 * Not sure what this one does. But it clearly doesn't modify the contents
164 * of xdrs. **FIXME** does this not assume u_int == u_long?
165 */
166 static u_int
167 xdrmem_getpos (const XDR *xdrs)
168 {
169 return (u_long) xdrs->x_private - (u_long) xdrs->x_base;
170 }
171
172 /*
173 * xdrs modified
174 */
175 static bool_t
176 xdrmem_setpos (XDR *xdrs, u_int pos)
177 {
178 caddr_t newaddr = xdrs->x_base + pos;
179 caddr_t lastaddr = xdrs->x_private + xdrs->x_handy;
180
181 if ((long) newaddr > (long) lastaddr
182 || (UINT_MAX < LONG_MAX
183 && (long) UINT_MAX < (long) lastaddr - (long) newaddr))
184 return FALSE;
185 xdrs->x_private = newaddr;
186 xdrs->x_handy = (long) lastaddr - (long) newaddr;
187 return TRUE;
188 }
189
190 /*
191 * xdrs modified
192 */
193 static int32_t *
194 xdrmem_inline (XDR *xdrs, u_int len)
195 {
196 int32_t *buf = 0;
197
198 if (xdrs->x_handy >= len)
199 {
200 xdrs->x_handy -= len;
201 buf = (int32_t *) xdrs->x_private;
202 xdrs->x_private += len;
203 }
204 return buf;
205 }
206
207 /*
208 * Gets the next word from the memory referenced by xdrs and places it
209 * in the int pointed to by ip. It then increments the private word to
210 * point at the next element. Neither object pointed to is const
211 */
212 static bool_t
213 xdrmem_getint32 (XDR *xdrs, int32_t *ip)
214 {
215 if (xdrs->x_handy < 4)
216 return FALSE;
217 xdrs->x_handy -= 4;
218 *ip = ntohl ((*((int32_t *) (xdrs->x_private))));
219 xdrs->x_private += 4;
220 return TRUE;
221 }
222
223 /*
224 * Puts the long pointed to by lp in the memory referenced by xdrs. It
225 * then increments the private word to point at the next element. The
226 * long pointed at is const
227 */
228 static bool_t
229 xdrmem_putint32 (XDR *xdrs, const int32_t *ip)
230 {
231 if (xdrs->x_handy < 4)
232 return FALSE;
233 xdrs->x_handy -= 4;
234 *(int32_t *) xdrs->x_private = htonl (*ip);
235 xdrs->x_private += 4;
236 return TRUE;
237 }