added source code
[unres.git] / source / unres / src_MD-M / xdrf_em64 / xdr_array.c
1 # define INTUSE(name) name
2 # define INTDEF(name)
3 /* @(#)xdr_array.c      2.1 88/07/29 4.0 RPCSRC */
4 /*
5  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
6  * unrestricted use provided that this legend is included on all tape
7  * media and as a part of the software program in whole or part.  Users
8  * may copy or modify Sun RPC without charge, but are not authorized
9  * to license or distribute it to anyone else except as part of a product or
10  * program developed by the user.
11  *
12  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
13  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
14  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
15  *
16  * Sun RPC is provided with no support and without any obligation on the
17  * part of Sun Microsystems, Inc. to assist in its use, correction,
18  * modification or enhancement.
19  *
20  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
21  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
22  * OR ANY PART THEREOF.
23  *
24  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
25  * or profits or other special, indirect and consequential damages, even if
26  * Sun has been advised of the possibility of such damages.
27  *
28  * Sun Microsystems, Inc.
29  * 2550 Garcia Avenue
30  * Mountain View, California  94043
31  */
32 #if !defined(lint) && defined(SCCSIDS)
33 static char sccsid[] = "@(#)xdr_array.c 1.10 87/08/11 Copyr 1984 Sun Micro";
34 #endif
35
36 /*
37  * xdr_array.c, Generic XDR routines implementation.
38  *
39  * Copyright (C) 1984, Sun Microsystems, Inc.
40  *
41  * These are the "non-trivial" xdr primitives used to serialize and de-serialize
42  * arrays.  See xdr.h for more info on the interface to xdr.
43  */
44
45 #include <stdio.h>
46 #include <string.h>
47 #include "types.h"
48 #include "xdr.h"
49 #include <libintl.h>
50 #include <limits.h>
51
52 #ifdef USE_IN_LIBIO
53 # include <wchar.h>
54 #endif
55
56 #define LASTUNSIGNED    ((u_int)0-1)
57
58
59 /*
60  * XDR an array of arbitrary elements
61  * *addrp is a pointer to the array, *sizep is the number of elements.
62  * If addrp is NULL (*sizep * elsize) bytes are allocated.
63  * elsize is the size (in bytes) of each element, and elproc is the
64  * xdr procedure to call to handle each element of the array.
65  */
66 bool_t
67 xdr_array (xdrs, addrp, sizep, maxsize, elsize, elproc)
68      XDR *xdrs;
69      caddr_t *addrp;            /* array pointer */
70      u_int *sizep;              /* number of elements */
71      u_int maxsize;             /* max numberof elements */
72      u_int elsize;              /* size in bytes of each element */
73      xdrproc_t elproc;          /* xdr routine to handle each element */
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 (!INTUSE(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             fprintf (stderr, "%s", "xdr_array: out of memory\n");
111             return FALSE;
112           }
113         __bzero (target, nodesize);
114         break;
115
116       case XDR_FREE:
117         return TRUE;
118       default:
119         break;
120       }
121
122   /*
123    * now we xdr each element of array
124    */
125   for (i = 0; (i < c) && stat; i++)
126     {
127       stat = (*elproc) (xdrs, target, LASTUNSIGNED);
128       target += elsize;
129     }
130
131   /*
132    * the array may need freeing
133    */
134   if (xdrs->x_op == XDR_FREE)
135     {
136       mem_free (*addrp, nodesize);
137       *addrp = NULL;
138     }
139   return stat;
140 }
141 INTDEF(xdr_array)
142
143 /*
144  * xdr_vector():
145  *
146  * XDR a fixed length array. Unlike variable-length arrays,
147  * the storage of fixed length arrays is static and unfreeable.
148  * > basep: base of the array
149  * > size: size of the array
150  * > elemsize: size of each element
151  * > xdr_elem: routine to XDR each element
152  */
153 bool_t
154 xdr_vector (xdrs, basep, nelem, elemsize, xdr_elem)
155      XDR *xdrs;
156      char *basep;
157      u_int nelem;
158      u_int elemsize;
159      xdrproc_t xdr_elem;
160 {
161   u_int i;
162   char *elptr;
163
164   elptr = basep;
165   for (i = 0; i < nelem; i++)
166     {
167       if (!(*xdr_elem) (xdrs, elptr, LASTUNSIGNED))
168         {
169           return FALSE;
170         }
171       elptr += elemsize;
172     }
173   return TRUE;
174 }