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