fd51554796e9f516f4a6ee53faff71a230ea174a
[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) && (xdrs->x_op != XDR_FREE)) {
90                 return (FALSE);
91         }
92         nodesize = c * elsize;
93
94         /*
95          * if we are deserializing, we may need to allocate an array.
96          * We also save time by checking for a null array if we are freeing.
97          */
98         if (target == NULL)
99                 switch (xdrs->x_op) {
100                 case XDR_DECODE:
101                         if (c == 0)
102                                 return (TRUE);
103                         *addrp = target = mem_alloc(nodesize);
104                         if (target == NULL) {
105 #ifdef WIN32
106                                 nt_rpc_report(
107 #else
108                                 (void) fprintf(stderr, 
109 #endif
110                                         "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         }
119
120         /*
121          * now we xdr each element of array
122          */
123         for (i = 0; (i < c) && stat; i++) {
124                 stat = (*elproc)(xdrs, target, LASTUNSIGNED);
125                 target += elsize;
126         }
127
128         /*
129          * the array may need freeing
130          */
131         if (xdrs->x_op == XDR_FREE) {
132                 mem_free(*addrp, nodesize);
133                 *addrp = NULL;
134         }
135         return (stat);
136 }
137
138 /*
139  * xdr_vector():
140  *
141  * XDR a fixed length array. Unlike variable-length arrays,
142  * the storage of fixed length arrays is static and unfreeable.
143  * > basep: base of the array
144  * > size: size of the array
145  * > elemsize: size of each element
146  * > xdr_elem: routine to XDR each element
147  */
148 bool_t
149 xdr_vector(xdrs, basep, nelem, elemsize, xdr_elem)
150         register XDR *xdrs;
151         register char *basep;
152         register u_int nelem;
153         register u_int elemsize;
154         register xdrproc_t xdr_elem;
155 {
156         register u_int i;
157         register char *elptr;
158
159         elptr = basep;
160         for (i = 0; i < nelem; i++) {
161                 if (! (*xdr_elem)(xdrs, elptr, LASTUNSIGNED)) {
162                         return(FALSE);
163                 }
164                 elptr += elemsize;
165         }
166         return(TRUE);
167 }
168