]>
git.saurik.com Git - apple/libinfo.git/blob - rpc.subproj/clnt_raw.c
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Portions Copyright (c) 1999 Apple Computer, Inc. All Rights
7 * Reserved. This file contains Original Code and/or Modifications of
8 * Original Code as defined in and that are subject to the Apple Public
9 * Source License Version 1.1 (the "License"). You may not use this file
10 * except in compliance with the License. Please obtain a copy of the
11 * License at http://www.apple.com/publicsource and read it before using
14 * The Original Code and all software distributed under the License are
15 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the
19 * License for the specific language governing rights and limitations
22 * @APPLE_LICENSE_HEADER_END@
25 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
26 * unrestricted use provided that this legend is included on all tape
27 * media and as a part of the software program in whole or part. Users
28 * may copy or modify Sun RPC without charge, but are not authorized
29 * to license or distribute it to anyone else except as part of a product or
30 * program developed by the user.
32 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
33 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
34 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
36 * Sun RPC is provided with no support and without any obligation on the
37 * part of Sun Microsystems, Inc. to assist in its use, correction,
38 * modification or enhancement.
40 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
41 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
42 * OR ANY PART THEREOF.
44 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
45 * or profits or other special, indirect and consequential damages, even if
46 * Sun has been advised of the possibility of such damages.
48 * Sun Microsystems, Inc.
50 * Mountain View, California 94043
53 #if defined(LIBC_SCCS) && !defined(lint)
54 /*static char *sccsid = "from: @(#)clnt_raw.c 1.22 87/08/11 Copyr 1984 Sun Micro";*/
55 /*static char *sccsid = "from: @(#)clnt_raw.c 2.2 88/08/01 4.0 RPCSRC";*/
56 static char *rcsid
= "$Id: clnt_raw.c,v 1.3 2002/02/19 20:36:22 epeyton Exp $";
62 * Copyright (C) 1984, Sun Microsystems, Inc.
64 * Memory based rpc for simple testing and timing.
65 * Interface to create an rpc client and server in the same process.
66 * This lets us similate rpc and get round trip overhead, without
67 * any interference from the kernal.
74 extern bool_t
xdr_opaque_auth();
76 #define MCALL_MSG_SIZE 24
79 * This is the "network" we will be moving stuff over.
81 static struct clntraw_private
{
84 char _raw_buf
[UDPMSGSIZE
];
85 char mashl_callmsg
[MCALL_MSG_SIZE
];
89 static enum clnt_stat
clntraw_call();
90 static void clntraw_abort();
91 static void clntraw_geterr();
92 static bool_t
clntraw_freeres();
93 static bool_t
clntraw_control();
94 static void clntraw_destroy();
96 static struct clnt_ops client_ops
= {
108 * Create a client handle for memory based rpc.
111 clntraw_create(prog
, vers
)
115 register struct clntraw_private
*clp
= clntraw_private
;
116 struct rpc_msg call_msg
;
117 XDR
*xdrs
= &clp
->xdr_stream
;
118 CLIENT
*client
= &clp
->client_object
;
121 clp
= (struct clntraw_private
*)calloc(1, sizeof (*clp
));
124 clntraw_private
= clp
;
127 * pre-serialize the staic part of the call msg and stash it away
129 call_msg
.rm_direction
= CALL
;
130 call_msg
.rm_call
.cb_rpcvers
= RPC_MSG_VERSION
;
131 call_msg
.rm_call
.cb_prog
= prog
;
132 call_msg
.rm_call
.cb_vers
= vers
;
133 xdrmem_create(xdrs
, clp
->mashl_callmsg
, MCALL_MSG_SIZE
, XDR_ENCODE
);
134 if (! xdr_callhdr(xdrs
, &call_msg
)) {
135 perror("clnt_raw.c - Fatal header serialization error.");
137 clp
->mcnt
= XDR_GETPOS(xdrs
);
141 * Set xdrmem for client/server shared buffer
143 xdrmem_create(xdrs
, clp
->_raw_buf
, UDPMSGSIZE
, XDR_FREE
);
146 * create client handle
148 client
->cl_ops
= &client_ops
;
149 client
->cl_auth
= authnone_create();
153 static enum clnt_stat
154 clntraw_call(h
, proc
, xargs
, argsp
, xresults
, resultsp
, timeout
)
161 struct timeval timeout
;
163 register struct clntraw_private
*clp
= clntraw_private
;
164 register XDR
*xdrs
= &clp
->xdr_stream
;
166 enum clnt_stat status
;
167 struct rpc_err error
;
175 xdrs
->x_op
= XDR_ENCODE
;
177 ((struct rpc_msg
*)clp
->mashl_callmsg
)->rm_xid
++ ;
178 if ((! XDR_PUTBYTES(xdrs
, clp
->mashl_callmsg
, clp
->mcnt
)) ||
179 (! XDR_PUTLONG(xdrs
, (long *)&proc
)) ||
180 (! AUTH_MARSHALL(h
->cl_auth
, xdrs
)) ||
181 (! (*xargs
)(xdrs
, argsp
))) {
182 return (RPC_CANTENCODEARGS
);
184 (void)XDR_GETPOS(xdrs
); /* called just to cause overhead */
187 * We have to call server input routine here because this is
188 * all going on in one process. Yuk.
195 xdrs
->x_op
= XDR_DECODE
;
197 msg
.acpted_rply
.ar_verf
= _null_auth
;
198 msg
.acpted_rply
.ar_results
.where
= resultsp
;
199 msg
.acpted_rply
.ar_results
.proc
= xresults
;
200 if (! xdr_replymsg(xdrs
, &msg
))
201 return (RPC_CANTDECODERES
);
202 _seterr_reply(&msg
, &error
);
203 status
= error
.re_status
;
205 if (status
== RPC_SUCCESS
) {
206 if (! AUTH_VALIDATE(h
->cl_auth
, &msg
.acpted_rply
.ar_verf
)) {
207 status
= RPC_AUTHERROR
;
209 } /* end successful completion */
211 if (AUTH_REFRESH(h
->cl_auth
))
213 } /* end of unsuccessful completion */
215 if (status
== RPC_SUCCESS
) {
216 if (! AUTH_VALIDATE(h
->cl_auth
, &msg
.acpted_rply
.ar_verf
)) {
217 status
= RPC_AUTHERROR
;
219 if (msg
.acpted_rply
.ar_verf
.oa_base
!= NULL
) {
220 xdrs
->x_op
= XDR_FREE
;
221 (void)xdr_opaque_auth(xdrs
, &(msg
.acpted_rply
.ar_verf
));
235 clntraw_freeres(cl
, xdr_res
, res_ptr
)
240 register struct clntraw_private
*clp
= clntraw_private
;
241 register XDR
*xdrs
= &clp
->xdr_stream
;
246 rval
= (bool_t
) RPC_FAILED
;
249 xdrs
->x_op
= XDR_FREE
;
250 return ((*xdr_res
)(xdrs
, res_ptr
));