03d8947d672fb18388036135a311d6dae38f767c
[openafs.git] / src / rx / xdr_array.c
1 /*
2  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3  * unrestricted use provided that this legend is included on all tape
4  * media and as a part of the software program in whole or part.  Users
5  * may copy or modify Sun RPC without charge, but are not authorized
6  * to license or distribute it to anyone else except as part of a product or
7  * program developed by the user.
8  * 
9  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
10  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
11  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
12  * 
13  * Sun RPC is provided with no support and without any obligation on the
14  * part of Sun Microsystems, Inc. to assist in its use, correction,
15  * modification or enhancement.
16  * 
17  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
18  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
19  * OR ANY PART THEREOF.
20  * 
21  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
22  * or profits or other special, indirect and consequential damages, even if
23  * Sun has been advised of the possibility of such damages.
24  * 
25  * Sun Microsystems, Inc.
26  * 2550 Garcia Avenue
27  * Mountain View, California  94043
28  */
29 #include <afsconfig.h>
30 #include <afs/param.h>
31 #include "rx.h"
32
33 RCSID
34     ("$Header$");
35
36 #ifndef NeXT
37
38 /*
39  * xdr_array.c, Generic XDR routines impelmentation.
40  *
41  * Copyright (C) 1984, Sun Microsystems, Inc.
42  *
43  * These are the "non-trivial" xdr primitives used to serialize and de-serialize
44  * arrays.  See xdr.h for more info on the interface to xdr.
45  */
46
47 #ifdef  KERNEL
48 #include <sys/param.h>
49 #ifdef AFS_LINUX20_ENV
50 #include "h/string.h"
51 #if 0
52 #define bzero(A,C) memset((A), 0, (C))
53 #endif
54 #else
55 #ifndef AFS_DARWIN90_ENV
56 #include <sys/systm.h>
57 #endif
58 #endif /* AFS_LINUX20_ENV */
59 #else
60 #include <stdio.h>
61 #include <string.h>
62 #endif
63 #include "xdr.h"
64
65 #define LASTUNSIGNED    ((u_int)0-1)
66
67
68 /*
69  * XDR an array of arbitrary elements
70  * *addrp is a pointer to the array, *sizep is the number of elements.
71  * If addrp is NULL (*sizep * elsize) bytes are allocated.
72  * elsize is the size (in bytes) of each element, and elproc is the
73  * xdr procedure to call to handle each element of the array.
74  */
75 /* 
76         caddr_t *addrp;         * array pointer *
77         u_int *sizep;           * number of elements *
78         u_int maxsize;          * max numberof elements *
79         u_int elsize;           * size in bytes of each element *
80         xdrproc_t elproc;       * xdr routine to handle each element *
81 */
82
83 bool_t
84 xdr_array(register XDR * xdrs, caddr_t * addrp, u_int * sizep, u_int maxsize,
85           u_int elsize, xdrproc_t elproc)
86 {
87     register u_int i;
88     register caddr_t target = *addrp;
89     register u_int c;           /* the actual element count */
90     register bool_t stat = TRUE;
91     register u_int nodesize;
92
93     /* FIXME: this does not look correct: MSVC 6 computes -1 / elsize here */
94     i = ((~0) >> 1) / elsize;
95     if (maxsize > i)
96         maxsize = i;
97
98     /* like strings, arrays are really counted arrays */
99     if (!xdr_u_int(xdrs, sizep)) {
100         return (FALSE);
101     }
102     c = *sizep;
103     if ((c > maxsize) && (xdrs->x_op != XDR_FREE)) {
104         return (FALSE);
105     }
106     nodesize = c * elsize;
107
108     /*
109      * if we are deserializing, we may need to allocate an array.
110      * We also save time by checking for a null array if we are freeing.
111      */
112     if (target == NULL)
113         switch (xdrs->x_op) {
114         case XDR_DECODE:
115             if (c == 0)
116                 return (TRUE);
117             *addrp = target = (caddr_t)osi_alloc(nodesize);
118             if (target == NULL) {
119                 return (FALSE);
120             }
121             memset(target, 0, (u_int) nodesize);
122             break;
123
124         case XDR_FREE:
125             return (TRUE);
126
127         case XDR_ENCODE:
128             break;
129         }
130
131     /*
132      * now we xdr each element of array
133      */
134     for (i = 0; (i < c) && stat; i++) {
135         stat = (*elproc) (xdrs, target, LASTUNSIGNED);
136         target += elsize;
137     }
138
139     /*
140      * the array may need freeing
141      */
142     if (xdrs->x_op == XDR_FREE) {
143         osi_free(*addrp, nodesize);
144         *addrp = NULL;
145     }
146     return (stat);
147 }
148 #endif /* NeXT */