OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [uClibc/] [libc/] [inet/] [rpc/] [xdr_array.c] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1325 phoenix
/* @(#)xdr_array.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.
13
 *
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.
17
 *
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.
21
 *
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.
25
 *
26
 * Sun Microsystems, Inc.
27
 * 2550 Garcia Avenue
28
 * Mountain View, California  94043
29
 */
30
#if 0
31
static char sccsid[] = "@(#)xdr_array.c 1.10 87/08/11 Copyr 1984 Sun Micro";
32
#endif
33
 
34
/*
35
 * xdr_array.c, Generic XDR routines implementation.
36
 *
37
 * Copyright (C) 1984, Sun Microsystems, Inc.
38
 *
39
 * These are the "non-trivial" xdr primitives used to serialize and de-serialize
40
 * arrays.  See xdr.h for more info on the interface to xdr.
41
 */
42
 
43
#define __FORCE_GLIBC
44
#define _GNU_SOURCE
45
#include <features.h>
46
 
47
#include <stdio.h>
48
#include <string.h>
49
#include <rpc/types.h>
50
#include <rpc/xdr.h>
51
#include <limits.h>
52
 
53
#ifdef USE_IN_LIBIO
54
# include <wchar.h>
55
#endif
56
 
57
#define LASTUNSIGNED    ((u_int)0-1)
58
 
59
 
60
/*
61
 * XDR an array of arbitrary elements
62
 * *addrp is a pointer to the array, *sizep is the number of elements.
63
 * If addrp is NULL (*sizep * elsize) bytes are allocated.
64
 * elsize is the size (in bytes) of each element, and elproc is the
65
 * xdr procedure to call to handle each element of the array.
66
 */
67
bool_t
68
xdr_array (xdrs, addrp, sizep, maxsize, elsize, elproc)
69
     XDR *xdrs;
70
     caddr_t *addrp;            /* array pointer */
71
     u_int *sizep;              /* number of elements */
72
     u_int maxsize;             /* max numberof elements */
73
     u_int elsize;              /* size in bytes of each element */
74
     xdrproc_t elproc;          /* xdr routine to handle each element */
75
{
76
  u_int i;
77
  caddr_t target = *addrp;
78
  u_int c;              /* the actual element count */
79
  bool_t stat = TRUE;
80
  u_int nodesize;
81
 
82
  /* like strings, arrays are really counted arrays */
83
  if (!xdr_u_int (xdrs, sizep))
84
    {
85
      return FALSE;
86
    }
87
  c = *sizep;
88
  /*
89
   * XXX: Let the overflow possibly happen with XDR_FREE because mem_free()
90
   * doesn't actually use its second argument anyway.
91
   */
92
  if ((c > maxsize || c > UINT_MAX / elsize) && (xdrs->x_op != XDR_FREE))
93
    {
94
      return FALSE;
95
    }
96
  nodesize = c * elsize;
97
 
98
  /*
99
   * if we are deserializing, we may need to allocate an array.
100
   * We also save time by checking for a null array if we are freeing.
101
   */
102
  if (target == NULL)
103
    switch (xdrs->x_op)
104
      {
105
      case XDR_DECODE:
106
        if (c == 0)
107
          return TRUE;
108
        *addrp = target = mem_alloc (nodesize);
109
        if (target == NULL)
110
          {
111
#ifdef USE_IN_LIBIO
112
            if (_IO_fwide (stderr, 0) > 0)
113
              (void) __fwprintf (stderr, L"%s",
114
                                 _("xdr_array: out of memory\n"));
115
            else
116
#endif
117
              (void) fputs (_("xdr_array: out of memory\n"), stderr);
118
            return FALSE;
119
          }
120
        bzero (target, nodesize);
121
        break;
122
 
123
      case XDR_FREE:
124
        return TRUE;
125
      default:
126
        break;
127
      }
128
 
129
  /*
130
   * now we xdr each element of array
131
   */
132
  for (i = 0; (i < c) && stat; i++)
133
    {
134
      stat = (*elproc) (xdrs, target, LASTUNSIGNED);
135
      target += elsize;
136
    }
137
 
138
  /*
139
   * the array may need freeing
140
   */
141
  if (xdrs->x_op == XDR_FREE)
142
    {
143
      mem_free (*addrp, nodesize);
144
      *addrp = NULL;
145
    }
146
  return stat;
147
}
148
 
149
/*
150
 * xdr_vector():
151
 *
152
 * XDR a fixed length array. Unlike variable-length arrays,
153
 * the storage of fixed length arrays is static and unfreeable.
154
 * > basep: base of the array
155
 * > size: size of the array
156
 * > elemsize: size of each element
157
 * > xdr_elem: routine to XDR each element
158
 */
159
bool_t
160
xdr_vector (xdrs, basep, nelem, elemsize, xdr_elem)
161
     XDR *xdrs;
162
     char *basep;
163
     u_int nelem;
164
     u_int elemsize;
165
     xdrproc_t xdr_elem;
166
{
167
  u_int i;
168
  char *elptr;
169
 
170
  elptr = basep;
171
  for (i = 0; i < nelem; i++)
172
    {
173
      if (!(*xdr_elem) (xdrs, elptr, LASTUNSIGNED))
174
        {
175
          return FALSE;
176
        }
177
      elptr += elemsize;
178
    }
179
  return TRUE;
180
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.