2 * Copyright 2000, International Business Machines Corporation and others.
5 * This software has been released under the terms of the IBM Public
6 * License. For details, see the LICENSE file in the top-level source
7 * directory or online at http://www.openafs.org/dl/license10.html
11 * xdr_rx.c. XDR using RX.
14 #include <afsconfig.h>
16 #include "afs/param.h"
18 #include <afs/param.h>
23 #include "afs/sysincludes.h"
28 #include <net/net_globals.h>
29 #endif /* AFS_OSF_ENV */
30 #ifdef AFS_LINUX20_ENV
33 #include "rpc/types.h"
41 #endif /* AFS_OSF_ENV */
42 #ifdef AFS_LINUX22_ENV
44 #define quad_t __quad_t
45 #define u_quad_t __u_quad_t
49 #include "netinet/in.h"
51 #include "rpc/types.h"
57 #include <sys/types.h>
60 #include <netinet/in.h>
67 * This section should really go in the param.*.h files.
71 * kernel version needs to agree with <rpc/xdr.h>
72 * except on Linux which does XDR differently from everyone else
74 # if defined(AFS_LINUX20_ENV) && !defined(UKERNEL)
75 # define AFS_XDRS_T void *
77 # define AFS_XDRS_T XDR *
79 # if defined(AFS_SUN57_ENV)
80 # define AFS_RPC_INLINE_T rpc_inline_t
81 # elif defined(AFS_DUX40_ENV)
82 # define AFS_RPC_INLINE_T int
83 # elif defined(AFS_LINUX20_ENV) && !defined(UKERNEL)
84 # define AFS_RPC_INLINE_T afs_int32
85 # elif defined(AFS_LINUX20_ENV)
86 # define AFS_RPC_INLINE_T int32_t *
88 # define AFS_RPC_INLINE_T long
92 * user version needs to agree with "xdr.h", i.e. <rx/xdr.h>
94 # define AFS_XDRS_T void *
95 # define AFS_RPC_INLINE_T afs_int32
98 /* Static prototypes */
99 #if (defined(AFS_SGI61_ENV) && (_MIPS_SZLONG != _MIPS_SZINT)) || defined(AFS_HPUX_64BIT_ENV)
100 static bool_t xdrrx_getint64(AFS_XDRS_T axdrs, long *lp);
101 static bool_t xdrrx_putint64(AFS_XDRS_T axdrs, long *lp);
102 #endif /* (defined(AFS_SGI61_ENV) && (_MIPS_SZLONG != _MIPS_SZINT)) || defined(AFS_HPUX_64BIT_ENV) */
104 static bool_t xdrrx_getint32(AFS_XDRS_T axdrs, afs_int32 * lp);
105 static bool_t xdrrx_putint32(AFS_XDRS_T axdrs, afs_int32 * lp);
106 static bool_t xdrrx_getbytes(AFS_XDRS_T axdrs, caddr_t addr,
108 static bool_t xdrrx_putbytes(AFS_XDRS_T axdrs, caddr_t addr,
110 static AFS_RPC_INLINE_T *xdrrx_inline(AFS_XDRS_T axdrs, u_int len);
114 * Ops vector for stdio type XDR
116 static struct xdr_ops xdrrx_ops = {
117 #if defined(KERNEL) && ((defined(AFS_SGI61_ENV) && (_MIPS_SZLONG != _MIPS_SZINT)) || defined(AFS_HPUX_64BIT_ENV))
118 .x_getint64 = xdrrx_getint64,
119 .x_putint64 = xdrrx_putint64,
120 #endif /* defined(KERNEL) && ((defined(AFS_SGI61_ENV) && (_MIPS_SZLONG != _MIPS_SZINT)) || defined(AFS_HPUX_64BIT_ENV)) */
121 #if !(defined(KERNEL) && defined(AFS_SUN57_ENV))
122 .x_getint32 = xdrrx_getint32, /* deserialize an afs_int32 */
123 .x_putint32 = xdrrx_putint32, /* serialize an afs_int32 */
125 .x_getbytes = xdrrx_getbytes, /* deserialize counted bytes */
126 .x_putbytes = xdrrx_putbytes, /* serialize counted bytes */
127 .x_getpostn = NULL, /* get offset in the stream: not supported. */
128 .x_setpostn = NULL, /* set offset in the stream: not supported. */
129 .x_inline = xdrrx_inline, /* prime stream for inline macros */
130 .x_destroy = NULL, /* destroy stream */
131 #if defined(KERNEL) && defined(AFS_SUN57_ENV)
133 .x_getint32 = xdrrx_getint32, /* deserialize an afs_int32 */
134 .x_putint32 = xdrrx_putint32, /* serialize an afs_int32 */
139 * Initialize an rx xdr handle, for a given rx call. op must be XDR_ENCODE or XDR_DECODE.
140 * Call must have been returned by rx_MakeCall or rx_GetCall.
143 xdrrx_create(XDR * xdrs, struct rx_call *call,
147 xdrs->x_ops = &xdrrx_ops;
148 xdrs->x_private = (caddr_t) call;
151 #if defined(KERNEL) && defined(AFS_AIX32_ENV)
152 #define STACK_TO_PIN 2*PAGESIZE /* 8K */
153 int rx_pin_failed = 0;
156 #if (defined(AFS_SGI61_ENV) && (_MIPS_SZLONG != _MIPS_SZINT)) || defined(AFS_HPUX_64BIT_ENV)
158 xdrrx_getint64(AFS_XDRS_T axdrs, long *lp)
160 XDR * xdrs = (XDR *)axdrs;
161 struct rx_call *call = ((struct rx_call *)(xdrs)->x_private);
164 if (rx_Read32(call, &i) == sizeof(i)) {
172 xdrrx_putint64(AFS_XDRS_T axdrs, long *lp)
174 XDR * xdrs = (XDR *)axdrs;
175 afs_int32 code, i = htonl(*lp);
176 struct rx_call *call = ((struct rx_call *)(xdrs)->x_private);
178 code = (rx_Write32(call, &i) == sizeof(i));
181 #endif /* (defined(AFS_SGI61_ENV) && (_MIPS_SZLONG != _MIPS_SZINT)) || defined(AFS_HPUX_64BIT_ENV) */
184 xdrrx_getint32(AFS_XDRS_T axdrs, afs_int32 * lp)
187 XDR * xdrs = (XDR *)axdrs;
188 struct rx_call *call = ((struct rx_call *)(xdrs)->x_private);
189 #if defined(KERNEL) && defined(AFS_AIX32_ENV)
190 char *saddr = (char *)&l;
191 saddr -= STACK_TO_PIN;
193 * Hack of hacks: Aix3.2 only guarantees that the next 2K of stack in pinned. Under
194 * splnet (disables interrupts), which is set throughout rx, we can't swap in stack
195 * pages if we need so we panic. Since sometimes, under splnet, we'll use more than
196 * 2K stack we could try to bring the next few stack pages in here before we call the rx
197 * layer. Of course this doesn't guarantee that those stack pages won't be swapped
198 * out between here and calling splnet. So we now pin (and unpin) them instead to
199 * guarantee that they remain there.
201 if (pin(saddr, STACK_TO_PIN)) {
202 /* XXX There's little we can do by continue XXX */
207 if (rx_Read32(call, &l) == sizeof(l)) {
209 #if defined(KERNEL) && defined(AFS_AIX32_ENV)
211 unpin(saddr, STACK_TO_PIN);
215 #if defined(KERNEL) && defined(AFS_AIX32_ENV)
217 unpin(saddr, STACK_TO_PIN);
223 xdrrx_putint32(AFS_XDRS_T axdrs, afs_int32 * lp)
225 afs_int32 code, l = htonl(*lp);
226 XDR * xdrs = (XDR *)axdrs;
227 struct rx_call *call = ((struct rx_call *)(xdrs)->x_private);
228 #if defined(KERNEL) && defined(AFS_AIX32_ENV)
229 char *saddr = (char *)&code;
230 saddr -= STACK_TO_PIN;
232 * Hack of hacks: Aix3.2 only guarantees that the next 2K of stack in pinned. Under
233 * splnet (disables interrupts), which is set throughout rx, we can't swap in stack
234 * pages if we need so we panic. Since sometimes, under splnet, we'll use more than
235 * 2K stack we could try to bring the next few stack pages in here before we call the rx
236 * layer. Of course this doesn't guarantee that those stack pages won't be swapped
237 * out between here and calling splnet. So we now pin (and unpin) them instead to
238 * guarantee that they remain there.
240 if (pin(saddr, STACK_TO_PIN)) {
245 code = (rx_Write32(call, &l) == sizeof(l));
246 #if defined(KERNEL) && defined(AFS_AIX32_ENV)
248 unpin(saddr, STACK_TO_PIN);
254 xdrrx_getbytes(AFS_XDRS_T axdrs, caddr_t addr, u_int len)
257 XDR * xdrs = (XDR *)axdrs;
258 struct rx_call *call = ((struct rx_call *)(xdrs)->x_private);
259 #if defined(KERNEL) && defined(AFS_AIX32_ENV)
260 char *saddr = (char *)&code;
261 saddr -= STACK_TO_PIN;
263 * Hack of hacks: Aix3.2 only guarantees that the next 2K of stack in pinned. Under
264 * splnet (disables interrupts), which is set throughout rx, we can't swap in stack
265 * pages if we need so we panic. Since sometimes, under splnet, we'll use more than
266 * 2K stack we could try to bring the next few stack pages in here before we call the rx
267 * layer. Of course this doesn't guarantee that those stack pages won't be swapped
268 * out between here and calling splnet. So we now pin (and unpin) them instead to
269 * guarantee that they remain there.
271 if (pin(saddr, STACK_TO_PIN)) {
272 /* XXX There's little we can do by continue XXX */
277 code = (rx_Read(call, addr, len) == len);
278 #if defined(KERNEL) && defined(AFS_AIX32_ENV)
280 unpin(saddr, STACK_TO_PIN);
286 xdrrx_putbytes(AFS_XDRS_T axdrs, caddr_t addr, u_int len)
289 XDR * xdrs = (XDR *)axdrs;
290 struct rx_call *call = ((struct rx_call *)(xdrs)->x_private);
291 #if defined(KERNEL) && defined(AFS_AIX32_ENV)
292 char *saddr = (char *)&code;
293 saddr -= STACK_TO_PIN;
295 * Hack of hacks: Aix3.2 only guarantees that the next 2K of stack in pinned. Under
296 * splnet (disables interrupts), which is set throughout rx, we can't swap in stack
297 * pages if we need so we panic. Since sometimes, under splnet, we'll use more than
298 * 2K stack we could try to bring the next few stack pages in here before we call the rx
299 * layer. Of course this doesn't guarantee that those stack pages won't be swapped
300 * out between here and calling splnet. So we now pin (and unpin) them instead to
301 * guarantee that they remain there.
303 if (pin(saddr, STACK_TO_PIN)) {
304 /* XXX There's little we can do by continue XXX */
309 code = (rx_Write(call, addr, len) == len);
310 #if defined(KERNEL) && defined(AFS_AIX32_ENV)
312 unpin(saddr, STACK_TO_PIN);
317 #ifdef undef /* not used */
319 xdrrx_getpos(XDR * xdrs)
321 /* Not supported. What error code should we return? (It doesn't matter: it will never be called, anyway!) */
326 xdrrx_setpos(XDR * xdrs, u_int pos)
333 static AFS_RPC_INLINE_T *
334 xdrrx_inline(AFS_XDRS_T axdrs, u_int len)
336 /* I don't know what this routine is supposed to do, but the stdio module returns null, so we will, too */