OSDN Git Service

Last portion of libc_hidden_proto removal.
[uclinux-h8/uClibc.git] / libc / inet / rpc / xdr_array.c
1 /* @(#)xdr_array.c      2.1 88/07/29 4.0 RPCSRC */
2 /*
3  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
4  * unrestricted use provided that this legend is included on all tape
5  * media and as a part of the software program in whole or part.  Users
6  * may copy or modify Sun RPC without charge, but are not authorized
7  * to license or distribute it to anyone else except as part of a product or
8  * program developed by the user.
9  *
10  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
11  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
12  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
13  *
14  * Sun RPC is provided with no support and without any obligation on the
15  * part of Sun Microsystems, Inc. to assist in its use, correction,
16  * modification or enhancement.
17  *
18  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
19  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
20  * OR ANY PART THEREOF.
21  *
22  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
23  * or profits or other special, indirect and consequential damages, even if
24  * Sun has been advised of the possibility of such damages.
25  *
26  * Sun Microsystems, Inc.
27  * 2550 Garcia Avenue
28  * Mountain View, California  94043
29  */
30 #if 0
31 static char sccsid[] = "@(#)xdr_array.c 1.10 87/08/11 Copyr 1984 Sun Micro";
32 #endif
33
34 /*
35  * xdr_array.c, Generic XDR routines implementation.
36  *
37  * Copyright (C) 1984, Sun Microsystems, Inc.
38  *
39  * These are the "non-trivial" xdr primitives used to serialize and de-serialize
40  * arrays.  See xdr.h for more info on the interface to xdr.
41  */
42
43 #define __FORCE_GLIBC
44 #include <features.h>
45
46 #include <stdio.h>
47 #include <string.h>
48 #include <rpc/types.h>
49 #include <rpc/xdr.h>
50 #include <limits.h>
51
52 #ifdef USE_IN_LIBIO
53 # include <wchar.h>
54 /* libc_hidden_proto(fwprintf) */
55 #endif
56
57 /* Experimentally off - libc_hidden_proto(memset) */
58 /* libc_hidden_proto(fputs) */
59 /* libc_hidden_proto(xdr_u_int) */
60
61 #define LASTUNSIGNED    ((u_int)0-1)
62
63
64 /*
65  * XDR an array of arbitrary elements
66  * *addrp is a pointer to the array, *sizep is the number of elements.
67  * If addrp is NULL (*sizep * elsize) bytes are allocated.
68  * elsize is the size (in bytes) of each element, and elproc is the
69  * xdr procedure to call to handle each element of the array.
70  */
71 /* libc_hidden_proto(xdr_array) */
72 bool_t
73 xdr_array (XDR *xdrs, caddr_t *addrp, u_int *sizep, u_int maxsize, u_int elsize, xdrproc_t elproc)
74 {
75   u_int i;
76   caddr_t target = *addrp;
77   u_int c;              /* the actual element count */
78   bool_t stat = TRUE;
79   u_int nodesize;
80
81   /* like strings, arrays are really counted arrays */
82   if (!xdr_u_int (xdrs, sizep))
83     {
84       return FALSE;
85     }
86   c = *sizep;
87   /*
88    * XXX: Let the overflow possibly happen with XDR_FREE because mem_free()
89    * doesn't actually use its second argument anyway.
90    */
91   if ((c > maxsize || c > UINT_MAX / elsize) && (xdrs->x_op != XDR_FREE))
92     {
93       return FALSE;
94     }
95   nodesize = c * elsize;
96
97   /*
98    * if we are deserializing, we may need to allocate an array.
99    * We also save time by checking for a null array if we are freeing.
100    */
101   if (target == NULL)
102     switch (xdrs->x_op)
103       {
104       case XDR_DECODE:
105         if (c == 0)
106           return TRUE;
107         *addrp = target = mem_alloc (nodesize);
108         if (target == NULL)
109           {
110 #ifdef USE_IN_LIBIO
111             if (_IO_fwide (stderr, 0) > 0)
112               (void) fwprintf (stderr, L"%s",
113                                  _("xdr_array: out of memory\n"));
114             else
115 #endif
116               (void) fputs (_("xdr_array: out of memory\n"), stderr);
117             return FALSE;
118           }
119         memset (target, 0, nodesize);
120         break;
121
122       case XDR_FREE:
123         return TRUE;
124       default:
125         break;
126       }
127
128   /*
129    * now we xdr each element of array
130    */
131   for (i = 0; (i < c) && stat; i++)
132     {
133       stat = (*elproc) (xdrs, target, LASTUNSIGNED);
134       target += elsize;
135     }
136
137   /*
138    * the array may need freeing
139    */
140   if (xdrs->x_op == XDR_FREE)
141     {
142       mem_free (*addrp, nodesize);
143       *addrp = NULL;
144     }
145   return stat;
146 }
147 libc_hidden_def(xdr_array)
148
149 /*
150  * xdr_vector():
151  *
152  * XDR a fixed length array. Unlike variable-length arrays,
153  * the storage of fixed length arrays is static and unfreeable.
154  * > basep: base of the array
155  * > size: size of the array
156  * > elemsize: size of each element
157  * > xdr_elem: routine to XDR each element
158  */
159 bool_t
160 xdr_vector (xdrs, basep, nelem, elemsize, xdr_elem)
161      XDR *xdrs;
162      char *basep;
163      u_int nelem;
164      u_int elemsize;
165      xdrproc_t xdr_elem;
166 {
167   u_int i;
168   char *elptr;
169
170   elptr = basep;
171   for (i = 0; i < nelem; i++)
172     {
173       if (!(*xdr_elem) (xdrs, elptr, LASTUNSIGNED))
174         {
175           return FALSE;
176         }
177       elptr += elemsize;
178     }
179   return TRUE;
180 }