obsd44-pass1-20090123
[openafs.git] / src / rx / xdr_arrayn.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
32 RCSID
33     ("$Header$");
34
35 #if defined(AFS_OBSD44_ENV) && defined(KERNEL) && !defined(UKERNEL)
36 /* XXX osi_alloc, please find and fix */
37 #include "osi_machdep.h"
38 #endif
39
40 #if !defined(NeXT)
41
42 /*
43  * xdr_array.c, Generic XDR routines impelmentation.
44  *
45  * Copyright (C) 1984, Sun Microsystems, Inc.
46  *
47  * These are the "non-trivial" xdr primitives used to serialize and de-serialize
48  * arrays.  See xdr.h for more info on the interface to xdr.
49  */
50
51 #if defined(KERNEL) && !defined(UKERNEL)
52
53 #include <sys/param.h>
54 #ifdef AFS_LINUX20_ENV
55 #include "h/string.h"
56 #if 0
57 #define bzero(A,C) memset((A), 0, (C))
58 #endif
59 #else
60 #include <sys/systm.h>
61 #endif
62 #else
63 #include <stdio.h>
64 #endif
65 #include "xdr.h"
66
67 #define LASTUNSIGNED    ((u_int)0-1)
68
69
70 /*
71  * XDR an array of arbitrary elements
72  * *addrp is a pointer to the array, *sizep is the number of elements.
73  * If addrp is NULL (*sizep * elsize) bytes are allocated.
74  * elsize is the size (in bytes) of each element, and elproc is the
75  * xdr procedure to call to handle each element of the array.
76  */
77 /*
78         caddr_t *addrp;         * array pointer *
79         u_int *sizep;           * number of elements *
80         u_int maxsize;          * max numberof elements *
81         u_int elsize;           * size in bytes of each element *
82         xdrproc_t elproc;       * xdr routine to handle each element *
83 */
84 #ifdef  KERNEL
85 bool_t
86 xdr_arrayN(register XDR * xdrs, caddr_t * addrp, u_int * sizep, u_int maxsize,
87            u_int elsize, xdrproc_t elproc)
88 {
89     register u_int i;
90     register caddr_t target = *addrp;
91     register u_int c;           /* the actual element count */
92     register bool_t stat = TRUE;
93     register u_int nodesize;
94
95     i = ((~0) >> 1) / elsize;
96     if (maxsize > i)
97         maxsize = i;
98
99     /* like strings, arrays are really counted arrays */
100     if (!xdr_u_int(xdrs, sizep)) {
101         return (FALSE);
102     }
103     c = *sizep;
104     if ((c > maxsize) && (xdrs->x_op != XDR_FREE)) {
105         return (FALSE);
106     }
107     nodesize = c * elsize;
108
109     /*
110      * if we are deserializing, we may need to allocate an array.
111      * We also save time by checking for a null array if we are freeing.
112      */
113     if (target == NULL)
114         switch (xdrs->x_op) {
115         case XDR_DECODE:
116             if (c == 0)
117                 return (TRUE);
118             *addrp = target = (caddr_t) osi_alloc(nodesize);
119             if (target == NULL) {
120                 return (FALSE);
121             }
122             memset(target, 0, (u_int) nodesize);
123             break;
124
125         case XDR_FREE:
126             return (TRUE);
127
128         case XDR_ENCODE:
129             break;
130         }
131
132     /*
133      * now we xdr each element of array
134      */
135     for (i = 0; (i < c) && stat; i++) {
136         stat = (*elproc) (xdrs, target, LASTUNSIGNED);
137         target += elsize;
138     }
139
140     /*
141      * the array may need freeing
142      */
143     if (xdrs->x_op == XDR_FREE) {
144         osi_free(*addrp, nodesize);
145         *addrp = NULL;
146     }
147     return (stat);
148 }
149 #endif
150 #endif /* NeXT */