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.
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.
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.
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.
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.
25 * Sun Microsystems, Inc.
27 * Mountain View, California 94043
29 * @(#)clnt_raw.c 1.22 87/08/11 Copyr 1984 Sun Micro
30 * @(#)clnt_raw.c 2.2 88/08/01 4.0 RPCSRC
31 * $FreeBSD: src/lib/libc/rpc/clnt_raw.c,v 1.10 1999/08/28 00:00:36 peter Exp $
32 * $DragonFly: src/lib/libc/rpc/clnt_raw.c,v 1.4 2005/11/13 12:27:04 swildner Exp $
38 * Copyright (C) 1984, Sun Microsystems, Inc.
40 * Memory based rpc for simple testing and timing.
41 * Interface to create an rpc client and server in the same process.
42 * This lets us similate rpc and get round trip overhead, without
43 * any interference from the kernal.
50 #define MCALL_MSG_SIZE 24
53 * This is the "network" we will be moving stuff over.
55 static struct clntraw_private
{
58 char _raw_buf
[UDPMSGSIZE
];
59 char mashl_callmsg
[MCALL_MSG_SIZE
];
63 static enum clnt_stat
clntraw_call();
64 static void clntraw_abort();
65 static void clntraw_geterr();
66 static bool_t
clntraw_freeres();
67 static bool_t
clntraw_control();
68 static void clntraw_destroy();
70 static struct clnt_ops client_ops
= {
82 * Create a client handle for memory based rpc.
85 clntraw_create(u_long prog
, u_long vers
)
87 struct clntraw_private
*clp
= clntraw_private
;
88 struct rpc_msg call_msg
;
89 XDR
*xdrs
= &clp
->xdr_stream
;
90 CLIENT
*client
= &clp
->client_object
;
93 clp
= (struct clntraw_private
*)calloc(1, sizeof (*clp
));
96 clntraw_private
= clp
;
99 * pre-serialize the static part of the call msg and stash it away
101 call_msg
.rm_direction
= CALL
;
102 call_msg
.rm_call
.cb_rpcvers
= RPC_MSG_VERSION
;
103 call_msg
.rm_call
.cb_prog
= prog
;
104 call_msg
.rm_call
.cb_vers
= vers
;
105 xdrmem_create(xdrs
, clp
->mashl_callmsg
, MCALL_MSG_SIZE
, XDR_ENCODE
);
106 if (! xdr_callhdr(xdrs
, &call_msg
)) {
107 perror("clnt_raw.c - Fatal header serialization error.");
109 clp
->mcnt
= XDR_GETPOS(xdrs
);
113 * Set xdrmem for client/server shared buffer
115 xdrmem_create(xdrs
, clp
->_raw_buf
, UDPMSGSIZE
, XDR_FREE
);
118 * create client handle
120 client
->cl_ops
= &client_ops
;
121 client
->cl_auth
= authnone_create();
125 static enum clnt_stat
126 clntraw_call(CLIENT
*h
, u_long proc
, xdrproc_t xargs
, caddr_t argsp
,
127 xdrproc_t xresults
, caddr_t resultsp
, struct timeval timeout
)
129 struct clntraw_private
*clp
= clntraw_private
;
130 XDR
*xdrs
= &clp
->xdr_stream
;
132 enum clnt_stat status
;
133 struct rpc_err error
;
141 xdrs
->x_op
= XDR_ENCODE
;
143 ((struct rpc_msg
*)clp
->mashl_callmsg
)->rm_xid
++ ;
144 if ((! XDR_PUTBYTES(xdrs
, clp
->mashl_callmsg
, clp
->mcnt
)) ||
145 (! XDR_PUTLONG(xdrs
, (long *)&proc
)) ||
146 (! AUTH_MARSHALL(h
->cl_auth
, xdrs
)) ||
147 (! (*xargs
)(xdrs
, argsp
))) {
148 return (RPC_CANTENCODEARGS
);
150 XDR_GETPOS(xdrs
); /* called just to cause overhead */
153 * We have to call server input routine here because this is
154 * all going on in one process. Yuk.
161 xdrs
->x_op
= XDR_DECODE
;
163 msg
.acpted_rply
.ar_verf
= _null_auth
;
164 msg
.acpted_rply
.ar_results
.where
= resultsp
;
165 msg
.acpted_rply
.ar_results
.proc
= xresults
;
166 if (! xdr_replymsg(xdrs
, &msg
))
167 return (RPC_CANTDECODERES
);
168 _seterr_reply(&msg
, &error
);
169 status
= error
.re_status
;
171 if (status
== RPC_SUCCESS
) {
172 if (! AUTH_VALIDATE(h
->cl_auth
, &msg
.acpted_rply
.ar_verf
)) {
173 status
= RPC_AUTHERROR
;
175 } /* end successful completion */
177 if (AUTH_REFRESH(h
->cl_auth
))
179 } /* end of unsuccessful completion */
181 if (status
== RPC_SUCCESS
) {
182 if (! AUTH_VALIDATE(h
->cl_auth
, &msg
.acpted_rply
.ar_verf
)) {
183 status
= RPC_AUTHERROR
;
185 if (msg
.acpted_rply
.ar_verf
.oa_base
!= NULL
) {
186 xdrs
->x_op
= XDR_FREE
;
187 xdr_opaque_auth(xdrs
, &(msg
.acpted_rply
.ar_verf
));
201 clntraw_freeres(CLIENT
*cl
, xdrproc_t xdr_res
, caddr_t res_ptr
)
203 struct clntraw_private
*clp
= clntraw_private
;
204 XDR
*xdrs
= &clp
->xdr_stream
;
209 rval
= (bool_t
) RPC_FAILED
;
212 xdrs
->x_op
= XDR_FREE
;
213 return ((*xdr_res
)(xdrs
, res_ptr
));
222 clntraw_control(void)
228 clntraw_destroy(void)