OSDN Git Service

b7410c404e4f916e072526811515ff30c80cca32
[uclinux-h8/uClibc.git] / libc / inet / rpc / 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 /* Experimentally off - libc_hidden_proto(memcpy) */
47
48 static bool_t xdrmem_getlong (XDR *, long *);
49 static bool_t xdrmem_putlong (XDR *, const long *);
50 static bool_t xdrmem_getbytes (XDR *, caddr_t, u_int);
51 static bool_t xdrmem_putbytes (XDR *, const char *, u_int);
52 static u_int xdrmem_getpos (const XDR *);
53 static bool_t xdrmem_setpos (XDR *, u_int);
54 static int32_t *xdrmem_inline (XDR *, u_int);
55 static void xdrmem_destroy (XDR *);
56 static bool_t xdrmem_getint32 (XDR *, int32_t *);
57 static bool_t xdrmem_putint32 (XDR *, const int32_t *);
58
59 static const struct xdr_ops xdrmem_ops =
60 {
61   xdrmem_getlong,
62   xdrmem_putlong,
63   xdrmem_getbytes,
64   xdrmem_putbytes,
65   xdrmem_getpos,
66   xdrmem_setpos,
67   xdrmem_inline,
68   xdrmem_destroy,
69   xdrmem_getint32,
70   xdrmem_putint32
71 };
72
73 /*
74  * The procedure xdrmem_create initializes a stream descriptor for a
75  * memory buffer.
76  */
77 libc_hidden_proto(xdrmem_create)
78 void
79 xdrmem_create (XDR *xdrs, const caddr_t addr, u_int size, enum xdr_op op)
80 {
81   xdrs->x_op = op;
82   /* We have to add the const since the `struct xdr_ops' in `struct XDR'
83      is not `const'.  */
84   xdrs->x_ops = (struct xdr_ops *) &xdrmem_ops;
85   xdrs->x_private = xdrs->x_base = addr;
86   xdrs->x_handy = size;
87 }
88 libc_hidden_def(xdrmem_create)
89
90 /*
91  * Nothing needs to be done for the memory case.  The argument is clearly
92  * const.
93  */
94
95 static void
96 xdrmem_destroy (XDR *xdrs attribute_unused)
97 {
98 }
99
100 /*
101  * Gets the next word from the memory referenced by xdrs and places it
102  * in the long pointed to by lp.  It then increments the private word to
103  * point at the next element.  Neither object pointed to is const
104  */
105 static bool_t
106 xdrmem_getlong (XDR *xdrs, long *lp)
107 {
108   if (xdrs->x_handy < 4)
109     return FALSE;
110   xdrs->x_handy -= 4;
111   *lp = (int32_t) ntohl ((*((int32_t *) (xdrs->x_private))));
112   xdrs->x_private += 4;
113   return TRUE;
114 }
115
116 /*
117  * Puts the long pointed to by lp in the memory referenced by xdrs.  It
118  * then increments the private word to point at the next element.  The
119  * long pointed at is const
120  */
121 static bool_t
122 xdrmem_putlong (XDR *xdrs, const long *lp)
123 {
124   if (xdrs->x_handy < 4)
125     return FALSE;
126   xdrs->x_handy -= 4;
127   *(int32_t *) xdrs->x_private = htonl (*lp);
128   xdrs->x_private += 4;
129   return TRUE;
130 }
131
132 /*
133  * Gets an unaligned number of bytes from the xdrs structure and writes them
134  * to the address passed in addr.  Be very careful when calling this routine
135  * as it could leave the xdrs pointing to an unaligned structure which is not
136  * a good idea.  None of the things pointed to are const.
137  */
138 static bool_t
139 xdrmem_getbytes (XDR *xdrs, caddr_t addr, u_int len)
140 {
141   if (xdrs->x_handy < len)
142     return FALSE;
143   xdrs->x_handy -= len;
144   memcpy (addr, xdrs->x_private, len);
145   xdrs->x_private += len;
146   return TRUE;
147 }
148
149 /*
150  * The complementary function to the above.  The same warnings apply about
151  * unaligned data.  The source address is const.
152  */
153 static bool_t
154 xdrmem_putbytes (XDR *xdrs, const char *addr, u_int len)
155 {
156   if (xdrs->x_handy < len)
157     return FALSE;
158   xdrs->x_handy -= len;
159   memcpy (xdrs->x_private, addr, len);
160   xdrs->x_private += len;
161   return TRUE;
162 }
163
164 /*
165  * Not sure what this one does.  But it clearly doesn't modify the contents
166  * of xdrs.  **FIXME** does this not assume u_int == u_long?
167  */
168 static u_int
169 xdrmem_getpos (const XDR *xdrs)
170 {
171   return (u_long) xdrs->x_private - (u_long) xdrs->x_base;
172 }
173
174 /*
175  * xdrs modified
176  */
177 static bool_t
178 xdrmem_setpos (xdrs, pos)
179      XDR *xdrs;
180      u_int pos;
181 {
182   caddr_t newaddr = xdrs->x_base + pos;
183   caddr_t lastaddr = xdrs->x_private + xdrs->x_handy;
184
185   if ((long) newaddr > (long) lastaddr
186       || (UINT_MAX < LONG_MAX
187           && (long) UINT_MAX < (long) lastaddr - (long) newaddr))
188     return FALSE;
189   xdrs->x_private = newaddr;
190   xdrs->x_handy = (long) lastaddr - (long) newaddr;
191   return TRUE;
192 }
193
194 /*
195  * xdrs modified
196  */
197 static int32_t *
198 xdrmem_inline (XDR *xdrs, u_int len)
199 {
200   int32_t *buf = 0;
201
202   if (xdrs->x_handy >= len)
203     {
204       xdrs->x_handy -= len;
205       buf = (int32_t *) xdrs->x_private;
206       xdrs->x_private += len;
207     }
208   return buf;
209 }
210
211 /*
212  * Gets the next word from the memory referenced by xdrs and places it
213  * in the int pointed to by ip.  It then increments the private word to
214  * point at the next element.  Neither object pointed to is const
215  */
216 static bool_t
217 xdrmem_getint32 (XDR *xdrs, int32_t *ip)
218 {
219   if (xdrs->x_handy < 4)
220     return FALSE;
221   xdrs->x_handy -= 4;
222   *ip = ntohl ((*((int32_t *) (xdrs->x_private))));
223   xdrs->x_private += 4;
224   return TRUE;
225 }
226
227 /*
228  * Puts the long pointed to by lp in the memory referenced by xdrs.  It
229  * then increments the private word to point at the next element.  The
230  * long pointed at is const
231  */
232 static bool_t
233 xdrmem_putint32 (XDR *xdrs, const int32_t *ip)
234 {
235   if (xdrs->x_handy < 4)
236     return FALSE;
237   xdrs->x_handy -= 4;
238   *(int32_t *) xdrs->x_private = htonl (*ip);
239   xdrs->x_private += 4;
240   return TRUE;
241 }