rx-warning-cleanup-and-afsconfig-20010605
[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 <afs/param.h>
30 #ifndef NeXT
31 #ifndef lint
32 static char sccsid[] = "@(#)xdr_array.c 1.1 86/02/03 Copyr 1984 Sun Micro";
33 #endif
34
35 /*
36  * xdr_array.c, Generic XDR routines impelmentation.
37  *
38  * Copyright (C) 1984, Sun Microsystems, Inc.
39  *
40  * These are the "non-trivial" xdr primitives used to serialize and de-serialize
41  * arrays.  See xdr.h for more info on the interface to xdr.
42  */
43
44 #ifdef  KERNEL
45 #include <sys/param.h>
46 #ifdef AFS_LINUX20_ENV
47 #include "../h/string.h"
48 #define bzero(A,C) memset((A), 0, (C))
49 #else
50 #include <sys/systm.h>
51 #endif /* AFS_LINUX20_ENV */
52 #else
53 #include <stdio.h>
54 #endif
55 #include "xdr.h"
56
57 #ifndef osi_alloc
58 char *osi_alloc();
59 #endif
60
61 #define LASTUNSIGNED    ((u_int)0-1)
62
63
64 /*
65  * XDR an array of arbitrary elements
66  * *addrp is a pointer to the array, *sizep is the number of elements.
67  * If addrp is NULL (*sizep * elsize) bytes are allocated.
68  * elsize is the size (in bytes) of each element, and elproc is the
69  * xdr procedure to call to handle each element of the array.
70  */
71 bool_t
72 xdr_array(xdrs, addrp, sizep, maxsize, elsize, elproc)
73         register XDR *xdrs;
74         caddr_t *addrp;         /* array pointer */
75         u_int *sizep;           /* number of elements */
76         u_int maxsize;          /* max numberof elements */
77         u_int elsize;           /* size in bytes of each element */
78         xdrproc_t elproc;       /* xdr routine to handle each element */
79 {
80         register u_int i;
81         register caddr_t target = *addrp;
82         register u_int c;  /* the actual element count */
83         register bool_t stat = TRUE;
84         register int nodesize;
85
86         /* like strings, arrays are really counted arrays */
87         if (! xdr_u_int(xdrs, sizep)) {
88                 return (FALSE);
89         }
90         c = *sizep;
91         if ((c > maxsize) && (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 = osi_alloc(nodesize);
106                         if (target == NULL) {
107                                 return (FALSE);
108                         }
109                         bzero(target, (u_int)nodesize);
110                         break;
111
112                 case XDR_FREE:
113                         return (TRUE);
114         }
115         
116         /*
117          * now we xdr each element of array
118          */
119         for (i = 0; (i < c) && stat; i++) {
120                 stat = (*elproc)(xdrs, target, LASTUNSIGNED);
121                 target += elsize;
122         }
123
124         /*
125          * the array may need freeing
126          */
127         if (xdrs->x_op == XDR_FREE) {
128                 osi_free(*addrp, nodesize);
129                 *addrp = NULL;
130         }
131         return (stat);
132 }
133 #endif /* NeXT */