Re-port RPC library to Solaris
[shibboleth/cpp-sp.git] / oncrpc / xdr_arra.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_array.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_array.c 1.10 87/08/11 Copyr 1984 Sun Micro";
43 #endif
44
45 /*
46  * xdr_array.c, Generic XDR routines impelmentation.
47  *
48  * Copyright (C) 1984, Sun Microsystems, Inc.
49  *
50  * These are the "non-trivial" xdr primitives used to serialize and de-serialize
51  * arrays.  See xdr.h for more info on the interface to xdr.
52  */
53
54 #include <stdio.h>
55
56 #include <rpc/types.h>
57 #include <rpc/xdr.h>
58
59 #define LASTUNSIGNED    ((u_int)0-1)
60
61
62 /*
63  * XDR an array of arbitrary elements
64  * *addrp is a pointer to the array, *sizep is the number of elements.
65  * If addrp is NULL (*sizep * elsize) bytes are allocated.
66  * elsize is the size (in bytes) of each element, and elproc is the
67  * xdr procedure to call to handle each element of the array.
68  */
69 bool_t
70 xdr_array(xdrs, addrp, sizep, maxsize, elsize, elproc)
71         register XDR *xdrs;
72         caddr_t *addrp;         /* array pointer */
73         u_int *sizep;           /* number of elements */
74         u_int maxsize;          /* max numberof elements */
75         u_int elsize;           /* size in bytes of each element */
76         xdrproc_t elproc;       /* xdr routine to handle each element */
77 {
78         register u_int i;
79         register caddr_t target = *addrp;
80         register u_int c;  /* the actual element count */
81         register bool_t stat = TRUE;
82         register u_int nodesize;
83
84         /* like strings, arrays are really counted arrays */
85         if (! xdr_u_int(xdrs, sizep)) {
86                 return (FALSE);
87         }
88         c = *sizep;
89         if ((c > maxsize || c > LASTUNSIGNED / elsize) &&
90             (xdrs->x_op != XDR_FREE)) {
91                 return (FALSE);
92         }
93         nodesize = c * elsize;
94
95         /*
96          * if we are deserializing, we may need to allocate an array.
97          * We also save time by checking for a null array if we are freeing.
98          */
99         if (target == NULL)
100                 switch (xdrs->x_op) {
101                 case XDR_DECODE:
102                         if (c == 0)
103                                 return (TRUE);
104                         *addrp = target = mem_alloc(nodesize);
105                         if (target == NULL) {
106 #ifdef WIN32
107                                 nt_rpc_report(
108 #else
109                                 (void) fprintf(stderr, 
110 #endif
111                                         "xdr_array: out of memory\n");
112                                 return (FALSE);
113                         }
114                         bzero(target, nodesize);
115                         break;
116
117                 case XDR_FREE:
118                         return (TRUE);
119         }
120
121         /*
122          * now we xdr each element of array
123          */
124         for (i = 0; (i < c) && stat; i++) {
125                 stat = (*elproc)(xdrs, target, LASTUNSIGNED);
126                 target += elsize;
127         }
128
129         /*
130          * the array may need freeing
131          */
132         if (xdrs->x_op == XDR_FREE) {
133                 mem_free(*addrp, nodesize);
134                 *addrp = NULL;
135         }
136         return (stat);
137 }
138
139 /*
140  * xdr_vector():
141  *
142  * XDR a fixed length array. Unlike variable-length arrays,
143  * the storage of fixed length arrays is static and unfreeable.
144  * > basep: base of the array
145  * > size: size of the array
146  * > elemsize: size of each element
147  * > xdr_elem: routine to XDR each element
148  */
149 bool_t
150 xdr_vector(xdrs, basep, nelem, elemsize, xdr_elem)
151         register XDR *xdrs;
152         register char *basep;
153         register u_int nelem;
154         register u_int elemsize;
155         register xdrproc_t xdr_elem;
156 {
157         register u_int i;
158         register char *elptr;
159
160         elptr = basep;
161         for (i = 0; i < nelem; i++) {
162                 if (! (*xdr_elem)(xdrs, elptr, LASTUNSIGNED)) {
163                         return(FALSE);
164                 }
165                 elptr += elemsize;
166         }
167         return(TRUE);
168 }
169