Thu Jun 13 17:25:11 1996 David Mosberger-Tang <davidm@azstarnet.com>
[glibc.git] / sunrpc / xdr.c
blobfccc2a5fe5924ae6669ab5d8033e6d27e4e003e8
1 /* @(#)xdr.c 2.1 88/07/29 4.0 RPCSRC */
2 /*
3 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
4 * unrestricted use provided that this legend is included on all tape
5 * media and as a part of the software program in whole or part. Users
6 * may copy or modify Sun RPC without charge, but are not authorized
7 * to license or distribute it to anyone else except as part of a product or
8 * program developed by the user.
9 *
10 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
11 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
12 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
14 * Sun RPC is provided with no support and without any obligation on the
15 * part of Sun Microsystems, Inc. to assist in its use, correction,
16 * modification or enhancement.
18 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
19 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
20 * OR ANY PART THEREOF.
22 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
23 * or profits or other special, indirect and consequential damages, even if
24 * Sun has been advised of the possibility of such damages.
26 * Sun Microsystems, Inc.
27 * 2550 Garcia Avenue
28 * Mountain View, California 94043
30 #if !defined(lint) && defined(SCCSIDS)
31 static char sccsid[] = "@(#)xdr.c 1.35 87/08/12";
32 #endif
35 * xdr.c, Generic XDR routines implementation.
37 * Copyright (C) 1986, Sun Microsystems, Inc.
39 * These are the "generic" xdr routines used to serialize and de-serialize
40 * most common data items. See xdr.h for more info on the interface to
41 * xdr.
44 #include <stdio.h>
45 char *malloc();
47 #include <rpc/types.h>
48 #include <rpc/xdr.h>
51 * constants specific to the xdr "protocol"
53 #define XDR_FALSE ((long) 0)
54 #define XDR_TRUE ((long) 1)
55 #define LASTUNSIGNED ((u_int) 0-1)
58 * for unit alignment
60 static char xdr_zero[BYTES_PER_XDR_UNIT] = { 0, 0, 0, 0 };
63 * Free a data structure using XDR
64 * Not a filter, but a convenient utility nonetheless
66 void
67 xdr_free(proc, objp)
68 xdrproc_t proc;
69 char *objp;
71 XDR x;
73 x.x_op = XDR_FREE;
74 (*proc)(&x, objp);
78 * XDR nothing
80 bool_t
81 xdr_void(/* xdrs, addr */)
82 /* XDR *xdrs; */
83 /* caddr_t addr; */
86 return (TRUE);
90 * XDR integers
92 bool_t
93 xdr_int(xdrs, ip)
94 XDR *xdrs;
95 int *ip;
98 #ifdef lint
99 (void) (xdr_short(xdrs, (short *)ip));
100 return (xdr_long(xdrs, (long *)ip));
101 #else
102 if (sizeof (int) < sizeof (long)) {
103 long l;
105 switch (xdrs->x_op) {
106 case XDR_ENCODE:
107 l = (long) *ip;
108 return XDR_PUTLONG(xdrs, &l);
110 case XDR_DECODE:
111 if (!XDR_GETLONG(xdrs, &l)) {
112 return FALSE;
114 *ip = (int) l;
115 return TRUE;
117 } else if (sizeof (int) == sizeof (long)) {
118 return (xdr_long(xdrs, (long *)ip));
119 } else if (sizeof (int) == sizeof (short)) {
120 return (xdr_short(xdrs, (short *)ip));
121 } else {
122 /* force unresolved reference (link-time error): */
123 extern unexpected_sizes_in_xdr_int ();
125 unexpected_sizes_in_xdr_int();
127 #endif
131 * XDR unsigned integers
133 bool_t
134 xdr_u_int(xdrs, up)
135 XDR *xdrs;
136 u_int *up;
138 #ifdef lint
139 (void) (xdr_short(xdrs, (short *)up));
140 return (xdr_u_long(xdrs, (u_long *)up));
141 #else
142 if (sizeof (u_int) < sizeof (u_long)) {
143 u_long l;
145 switch (xdrs->x_op) {
146 case XDR_ENCODE:
147 l = (u_long) *up;
148 return XDR_PUTLONG(xdrs, &l);
150 case XDR_DECODE:
151 if (!XDR_GETLONG(xdrs, &l)) {
152 return FALSE;
154 *up = (u_int) l;
155 return TRUE;
157 } else if (sizeof (u_int) == sizeof (u_long)) {
158 return (xdr_u_long(xdrs, (u_long *)up));
159 } else if (sizeof (u_int) == sizeof (u_short)) {
160 return (xdr_short(xdrs, (short *)up));
161 } else {
162 /* force unresolved reference (link-time error): */
163 extern unexpected_sizes_in_xdr_u_int ();
165 unexpected_sizes_in_xdr_u_int();
167 #endif
171 * XDR long integers
172 * same as xdr_u_long - open coded to save a proc call!
174 bool_t
175 xdr_long(xdrs, lp)
176 register XDR *xdrs;
177 long *lp;
180 if (xdrs->x_op == XDR_ENCODE)
181 return (XDR_PUTLONG(xdrs, lp));
183 if (xdrs->x_op == XDR_DECODE)
184 return (XDR_GETLONG(xdrs, lp));
186 if (xdrs->x_op == XDR_FREE)
187 return (TRUE);
189 return (FALSE);
193 * XDR unsigned long integers
194 * same as xdr_long - open coded to save a proc call!
196 bool_t
197 xdr_u_long(xdrs, ulp)
198 register XDR *xdrs;
199 u_long *ulp;
202 if (xdrs->x_op == XDR_DECODE)
203 return (XDR_GETLONG(xdrs, (long *)ulp));
204 if (xdrs->x_op == XDR_ENCODE)
205 return (XDR_PUTLONG(xdrs, (long *)ulp));
206 if (xdrs->x_op == XDR_FREE)
207 return (TRUE);
208 return (FALSE);
212 * XDR short integers
214 bool_t
215 xdr_short(xdrs, sp)
216 register XDR *xdrs;
217 short *sp;
219 long l;
221 switch (xdrs->x_op) {
223 case XDR_ENCODE:
224 l = (long) *sp;
225 return (XDR_PUTLONG(xdrs, &l));
227 case XDR_DECODE:
228 if (!XDR_GETLONG(xdrs, &l)) {
229 return (FALSE);
231 *sp = (short) l;
232 return (TRUE);
234 case XDR_FREE:
235 return (TRUE);
237 return (FALSE);
241 * XDR unsigned short integers
243 bool_t
244 xdr_u_short(xdrs, usp)
245 register XDR *xdrs;
246 u_short *usp;
248 u_long l;
250 switch (xdrs->x_op) {
252 case XDR_ENCODE:
253 l = (u_long) *usp;
254 return (XDR_PUTLONG(xdrs, &l));
256 case XDR_DECODE:
257 if (!XDR_GETLONG(xdrs, &l)) {
258 return (FALSE);
260 *usp = (u_short) l;
261 return (TRUE);
263 case XDR_FREE:
264 return (TRUE);
266 return (FALSE);
271 * XDR a char
273 bool_t
274 xdr_char(xdrs, cp)
275 XDR *xdrs;
276 char *cp;
278 int i;
280 i = (*cp);
281 if (!xdr_int(xdrs, &i)) {
282 return (FALSE);
284 *cp = i;
285 return (TRUE);
289 * XDR an unsigned char
291 bool_t
292 xdr_u_char(xdrs, cp)
293 XDR *xdrs;
294 char *cp;
296 u_int u;
298 u = (*cp);
299 if (!xdr_u_int(xdrs, &u)) {
300 return (FALSE);
302 *cp = u;
303 return (TRUE);
307 * XDR booleans
309 bool_t
310 xdr_bool(xdrs, bp)
311 register XDR *xdrs;
312 bool_t *bp;
314 long lb;
316 switch (xdrs->x_op) {
318 case XDR_ENCODE:
319 lb = *bp ? XDR_TRUE : XDR_FALSE;
320 return (XDR_PUTLONG(xdrs, &lb));
322 case XDR_DECODE:
323 if (!XDR_GETLONG(xdrs, &lb)) {
324 return (FALSE);
326 *bp = (lb == XDR_FALSE) ? FALSE : TRUE;
327 return (TRUE);
329 case XDR_FREE:
330 return (TRUE);
332 return (FALSE);
336 * XDR enumerations
338 bool_t
339 xdr_enum(xdrs, ep)
340 XDR *xdrs;
341 enum_t *ep;
343 #ifndef lint
344 enum sizecheck { SIZEVAL }; /* used to find the size of an enum */
347 * enums are treated as ints
349 if (sizeof (enum sizecheck) == 4) {
350 return (xdr_long(xdrs, (long *)ep));
351 } else if (sizeof (enum sizecheck) == sizeof (short)) {
352 return (xdr_short(xdrs, (short *)ep));
353 } else {
354 return (FALSE);
356 #else
357 (void) (xdr_short(xdrs, (short *)ep));
358 return (xdr_long(xdrs, (long *)ep));
359 #endif
363 * XDR opaque data
364 * Allows the specification of a fixed size sequence of opaque bytes.
365 * cp points to the opaque object and cnt gives the byte length.
367 bool_t
368 xdr_opaque(xdrs, cp, cnt)
369 register XDR *xdrs;
370 caddr_t cp;
371 register u_int cnt;
373 register u_int rndup;
374 static crud[BYTES_PER_XDR_UNIT];
377 * if no data we are done
379 if (cnt == 0)
380 return (TRUE);
383 * round byte count to full xdr units
385 rndup = cnt % BYTES_PER_XDR_UNIT;
386 if (rndup > 0)
387 rndup = BYTES_PER_XDR_UNIT - rndup;
389 if (xdrs->x_op == XDR_DECODE) {
390 if (!XDR_GETBYTES(xdrs, cp, cnt)) {
391 return (FALSE);
393 if (rndup == 0)
394 return (TRUE);
395 return (XDR_GETBYTES(xdrs, crud, rndup));
398 if (xdrs->x_op == XDR_ENCODE) {
399 if (!XDR_PUTBYTES(xdrs, cp, cnt)) {
400 return (FALSE);
402 if (rndup == 0)
403 return (TRUE);
404 return (XDR_PUTBYTES(xdrs, xdr_zero, rndup));
407 if (xdrs->x_op == XDR_FREE) {
408 return (TRUE);
411 return (FALSE);
415 * XDR counted bytes
416 * *cpp is a pointer to the bytes, *sizep is the count.
417 * If *cpp is NULL maxsize bytes are allocated
419 bool_t
420 xdr_bytes(xdrs, cpp, sizep, maxsize)
421 register XDR *xdrs;
422 char **cpp;
423 register u_int *sizep;
424 u_int maxsize;
426 register char *sp = *cpp; /* sp is the actual string pointer */
427 register u_int nodesize;
430 * first deal with the length since xdr bytes are counted
432 if (! xdr_u_int(xdrs, sizep)) {
433 return (FALSE);
435 nodesize = *sizep;
436 if ((nodesize > maxsize) && (xdrs->x_op != XDR_FREE)) {
437 return (FALSE);
441 * now deal with the actual bytes
443 switch (xdrs->x_op) {
445 case XDR_DECODE:
446 if (nodesize == 0) {
447 return (TRUE);
449 if (sp == NULL) {
450 *cpp = sp = (char *)mem_alloc(nodesize);
452 if (sp == NULL) {
453 (void) fprintf(stderr, "xdr_bytes: out of memory\n");
454 return (FALSE);
456 /* fall into ... */
458 case XDR_ENCODE:
459 return (xdr_opaque(xdrs, sp, nodesize));
461 case XDR_FREE:
462 if (sp != NULL) {
463 mem_free(sp, nodesize);
464 *cpp = NULL;
466 return (TRUE);
468 return (FALSE);
472 * Implemented here due to commonality of the object.
474 bool_t
475 xdr_netobj(xdrs, np)
476 XDR *xdrs;
477 struct netobj *np;
480 return (xdr_bytes(xdrs, &np->n_bytes, &np->n_len, MAX_NETOBJ_SZ));
484 * XDR a descriminated union
485 * Support routine for discriminated unions.
486 * You create an array of xdrdiscrim structures, terminated with
487 * an entry with a null procedure pointer. The routine gets
488 * the discriminant value and then searches the array of xdrdiscrims
489 * looking for that value. It calls the procedure given in the xdrdiscrim
490 * to handle the discriminant. If there is no specific routine a default
491 * routine may be called.
492 * If there is no specific or default routine an error is returned.
494 bool_t
495 xdr_union(xdrs, dscmp, unp, choices, dfault)
496 register XDR *xdrs;
497 enum_t *dscmp; /* enum to decide which arm to work on */
498 char *unp; /* the union itself */
499 struct xdr_discrim *choices; /* [value, xdr proc] for each arm */
500 xdrproc_t dfault; /* default xdr routine */
502 register enum_t dscm;
505 * we deal with the discriminator; it's an enum
507 if (! xdr_enum(xdrs, dscmp)) {
508 return (FALSE);
510 dscm = *dscmp;
513 * search choices for a value that matches the discriminator.
514 * if we find one, execute the xdr routine for that value.
516 for (; choices->proc != NULL_xdrproc_t; choices++) {
517 if (choices->value == dscm)
518 return ((*(choices->proc))(xdrs, unp, LASTUNSIGNED));
522 * no match - execute the default xdr routine if there is one
524 return ((dfault == NULL_xdrproc_t) ? FALSE :
525 (*dfault)(xdrs, unp, LASTUNSIGNED));
530 * Non-portable xdr primitives.
531 * Care should be taken when moving these routines to new architectures.
536 * XDR null terminated ASCII strings
537 * xdr_string deals with "C strings" - arrays of bytes that are
538 * terminated by a NULL character. The parameter cpp references a
539 * pointer to storage; If the pointer is null, then the necessary
540 * storage is allocated. The last parameter is the max allowed length
541 * of the string as specified by a protocol.
543 bool_t
544 xdr_string(xdrs, cpp, maxsize)
545 register XDR *xdrs;
546 char **cpp;
547 u_int maxsize;
549 register char *sp = *cpp; /* sp is the actual string pointer */
550 u_int size;
551 u_int nodesize;
554 * first deal with the length since xdr strings are counted-strings
556 switch (xdrs->x_op) {
557 case XDR_FREE:
558 if (sp == NULL) {
559 return(TRUE); /* already free */
561 /* fall through... */
562 case XDR_ENCODE:
563 size = strlen(sp);
564 break;
566 if (! xdr_u_int(xdrs, &size)) {
567 return (FALSE);
569 if (size > maxsize) {
570 return (FALSE);
572 nodesize = size + 1;
575 * now deal with the actual bytes
577 switch (xdrs->x_op) {
579 case XDR_DECODE:
580 if (nodesize == 0) {
581 return (TRUE);
583 if (sp == NULL)
584 *cpp = sp = (char *)mem_alloc(nodesize);
585 if (sp == NULL) {
586 (void) fprintf(stderr, "xdr_string: out of memory\n");
587 return (FALSE);
589 sp[size] = 0;
590 /* fall into ... */
592 case XDR_ENCODE:
593 return (xdr_opaque(xdrs, sp, size));
595 case XDR_FREE:
596 mem_free(sp, nodesize);
597 *cpp = NULL;
598 return (TRUE);
600 return (FALSE);
604 * Wrapper for xdr_string that can be called directly from
605 * routines like clnt_call
607 bool_t
608 xdr_wrapstring(xdrs, cpp)
609 XDR *xdrs;
610 char **cpp;
612 if (xdr_string(xdrs, cpp, LASTUNSIGNED)) {
613 return (TRUE);
615 return (FALSE);