clnt_raw.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:8k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* clnt_raw.c - memory based rpc for simple testing and timing */
  2. /* Copyright 1984-2001 Wind River Systems, Inc. */
  3. #include "copyright_wrs.h"
  4. /*
  5.  * Copyright (C) 1984, Sun Microsystems, Inc.
  6.  *
  7.  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  8.  * unrestricted use provided that this legend is included on all tape
  9.  * media and as a part of the software program in whole or part.  Users
  10.  * may copy or modify Sun RPC without charge, but are not authorized
  11.  * to license or distribute it to anyone else except as part of a product or
  12.  * program developed by the user.
  13.  *
  14.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  15.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  16.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  17.  *
  18.  * Sun RPC is provided with no support and without any obligation on the
  19.  * part of Sun Microsystems, Inc. to assist in its use, correction,
  20.  * modification or enhancement.
  21.  *
  22.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  23.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  24.  * OR ANY PART THEREOF.
  25.  *
  26.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  27.  * or profits or other special, indirect and consequential damages, even if
  28.  * Sun has been advised of the possibility of such damages.
  29.  *
  30.  * Sun Microsystems, Inc.
  31.  * 2550 Garcia Avenue
  32.  * Mountain View, California  94043
  33.  */
  34. /*
  35. modification history
  36. --------------------
  37. 01l,15oct01,rae  merge from truestack ver 01m, base 01k (AE /5_X)
  38. 01k,26may92,rrr  the tree shuffle
  39.   -changed includes to have absolute path from h/
  40. 01j,04oct91,rrr  passed through the ansification filter
  41.   -changed includes to have absolute path from h/
  42.   -changed VOID to void
  43.   -changed copyright notice
  44. 01i,01apr91,elh   added clnt_rawInclude.
  45. 01h,25oct90,dnw   removed include of utime.h.
  46. 01g,08oct90,hjb   de-linted.
  47. 01f,02oct90,hjb   made raw rpc cleanup after itself properly just for the
  48.     hell of it.
  49. 01e,10may90,dnw   removed _raw_buf back to rpcGbl: it must be shared w/svc_raw.
  50.   changed clnt_rawInit to alloc raw_buf if necessary
  51.   changed to call clnt_rawInit at start of every routine (not
  52.     in rpcTaskInit anymore)
  53. 01d,27oct89,hjb   upgraded to 4.0
  54. 01c,19apr89,gae   added clnt_rawExit to do tidy cleanup for tasks.
  55.   changed clnt_rawInit to return pointer to moduleStatics.
  56. 01b,11nov87,jlf   added wrs copyright, title, mod history, etc.
  57. 01a,01nov87,rdc   first VxWorks version
  58. */
  59. #ifndef lint
  60. /* static char sccsid[] = "@(#)clnt_raw.c 1.1 86/02/03 Copyr 1984 Sun Micro"; */
  61. #endif
  62. /*
  63.  * clnt_raw.c
  64.  *
  65.  * Copyright (C) 1984, Sun Microsystems, Inc.
  66.  *
  67.  * Memory based rpc for simple testing and timing.
  68.  * Interface to create an rpc client and server in the same process.
  69.  * This lets us similate rpc and get round trip overhead, without
  70.  * any interference from the kernal.
  71.  */
  72. #include "rpc/rpctypes.h"
  73. #include "netinet/in.h"
  74. #include "rpc/xdr.h"
  75. #include "rpc/auth.h"
  76. #include "rpc/clnt.h"
  77. #include "rpc/rpc_msg.h"
  78. #include "vxWorks.h"
  79. #include "memLib.h"
  80. #include "rpc/rpcGbl.h"
  81. #include "memPartLib.h"
  82. #include "stdio.h"
  83. #define MCALL_MSG_SIZE 24
  84. struct moduleStatics
  85.     {
  86.     CLIENT client_object;
  87.     XDR xdr_stream;
  88.     char mashl_callmsg[MCALL_MSG_SIZE];
  89.     u_int mcnt;
  90.     };
  91. LOCAL void clnt_rawExit ();
  92. LOCAL struct moduleStatics *clnt_rawInit ();
  93. LOCAL enum clnt_stat clntraw_call(); /* 4.0 */
  94. LOCAL void clntraw_abort(); /* 4.0 */
  95. LOCAL void clntraw_geterr(); /* 4.0 */
  96. LOCAL bool_t clntraw_freeres(); /* 4.0 */
  97. LOCAL void clntraw_destroy(); /* 4.0 */
  98. LOCAL bool_t clntraw_control(); /* 4.0 */
  99. LOCAL struct clnt_ops client_ops = { /* 4.0 */
  100. clntraw_call,
  101. clntraw_abort,
  102. clntraw_geterr,
  103. clntraw_freeres,
  104. clntraw_destroy,
  105. clntraw_control /* 4.0 */
  106. };
  107. IMPORT bool_t xdr_opaque_auth ();
  108. void svc_getreq();
  109. void clnt_rawInclude ()
  110.      {
  111.      }
  112. LOCAL struct moduleStatics *clnt_rawInit ()
  113.     {
  114.     FAST struct moduleStatics *pClnt_raw;
  115.     /* check if already initialized */
  116.     if (taskRpcStatics->clnt_raw != NULL)
  117. return (taskRpcStatics->clnt_raw);
  118.     /* allocate clnt/svc buffer if necessary */
  119.     if (taskRpcStatics->_raw_buf == NULL)
  120. {
  121. taskRpcStatics->_raw_buf = (char *) KHEAP_ALLOC(UDPMSGSIZE);
  122. if (taskRpcStatics->_raw_buf == NULL)
  123.     {
  124.     printErr ("clnt_rawInit: out of memory!n");
  125.     return (NULL);
  126.     }
  127. }
  128.     /* allocate module statics */
  129.     pClnt_raw =
  130.  (struct moduleStatics *) KHEAP_ALLOC(sizeof (struct moduleStatics));
  131.     bzero ((char *)pClnt_raw, sizeof(struct moduleStatics));
  132.     if (pClnt_raw == NULL)
  133. printErr ("clnt_rawInit: out of memory!n");
  134.     taskRpcStatics->clnt_raw = pClnt_raw;
  135.     taskRpcStatics->clnt_rawExit = (void (*) ()) clnt_rawExit;
  136.     return (pClnt_raw);
  137.     }
  138. LOCAL void clnt_rawExit ()
  139.     {
  140.     if (taskRpcStatics->_raw_buf != NULL)
  141. {
  142.         KHEAP_FREE(taskRpcStatics->_raw_buf);
  143. taskRpcStatics->_raw_buf = NULL;
  144. }
  145.     KHEAP_FREE((char *) taskRpcStatics->clnt_raw);
  146.     }
  147. /*
  148.  * Create a client handle for memory based rpc.
  149.  */
  150. CLIENT *
  151. clntraw_create(prog, vers)
  152. u_long prog;
  153. u_long vers;
  154. {
  155. struct rpc_msg call_msg;
  156. FAST struct moduleStatics *ms = clnt_rawInit ();
  157. CLIENT *client = &ms->client_object;
  158. XDR *xdrs = &ms->xdr_stream;
  159. /*
  160.  * pre-serialize the staic part of the call msg and stash it away
  161.  */
  162. call_msg.rm_direction = CALL;
  163. call_msg.rm_call.cb_rpcvers = RPC_MSG_VERSION;
  164. call_msg.rm_call.cb_prog = prog;
  165. call_msg.rm_call.cb_vers = vers;
  166. xdrmem_create(xdrs, ms->mashl_callmsg, MCALL_MSG_SIZE, XDR_ENCODE);
  167. if (! xdr_callhdr(xdrs, &call_msg)) {
  168. perror("clnt_raw.c - Fatal header serialization error.");
  169. }
  170. ms->mcnt = XDR_GETPOS(xdrs);
  171. XDR_DESTROY(xdrs);
  172. /*
  173.  * Set xdrmem for client/server shared buffer
  174.  */
  175. xdrmem_create(xdrs, taskRpcStatics->_raw_buf, UDPMSGSIZE, XDR_FREE);
  176. /*
  177.  * create client handle
  178.  */
  179. client->cl_ops = &client_ops;
  180. client->cl_auth = authnone_create();
  181. return (client);
  182. }
  183. LOCAL enum clnt_stat  /* 4.0 */
  184. clntraw_call(h, proc, xargs, argsp, xresults, resultsp /*, timeout LINT */)
  185. CLIENT *h;
  186. u_long proc;
  187. xdrproc_t xargs;
  188. caddr_t argsp;
  189. xdrproc_t xresults;
  190. caddr_t resultsp;
  191. {
  192. struct rpc_msg msg;
  193. enum clnt_stat status;
  194. struct rpc_err error;
  195. FAST struct moduleStatics *ms = clnt_rawInit ();
  196. register XDR *xdrs = &ms->xdr_stream;
  197. call_again:
  198. /*
  199.  * send request
  200.  */
  201. xdrs->x_op = XDR_ENCODE;
  202. XDR_SETPOS(xdrs, 0);
  203. ((struct rpc_msg *)ms->mashl_callmsg)->rm_xid ++ ;
  204. if ((! XDR_PUTBYTES(xdrs, ms->mashl_callmsg, ms->mcnt)) ||
  205.     (! XDR_PUTLONG(xdrs, (long *)&proc)) ||
  206.     (! AUTH_MARSHALL(h->cl_auth, xdrs)) ||
  207.     (! (*xargs)(xdrs, argsp))) {
  208. return (RPC_CANTENCODEARGS);
  209. }
  210. (void)XDR_GETPOS(xdrs);  /* called just to cause overhead */
  211. /*
  212.  * We have to call server input routine here because this is
  213.  * all going on in one process. Yuk.
  214.  */
  215. svc_getreq(1);
  216. /*
  217.  * get results
  218.  */
  219. xdrs->x_op = XDR_DECODE;
  220. XDR_SETPOS(xdrs, 0);
  221. msg.acpted_rply.ar_verf = _null_auth;
  222. msg.acpted_rply.ar_results.where = resultsp;
  223. msg.acpted_rply.ar_results.proc = xresults;
  224. if (! xdr_replymsg(xdrs, &msg))
  225. return (RPC_CANTDECODERES);
  226. _seterr_reply(&msg, &error);
  227. status = error.re_status;
  228. if (status == RPC_SUCCESS) {
  229. if (! AUTH_VALIDATE(h->cl_auth, &msg.acpted_rply.ar_verf)) {
  230. status = RPC_AUTHERROR;
  231. }
  232. }  /* end successful completion */
  233. else {
  234. if (AUTH_REFRESH(h->cl_auth))
  235. goto call_again;
  236. }  /* end of unsuccessful completion */
  237. if (status == RPC_SUCCESS) {
  238. if (! AUTH_VALIDATE(h->cl_auth, &msg.acpted_rply.ar_verf)) {
  239. status = RPC_AUTHERROR;
  240. }
  241. if (msg.acpted_rply.ar_verf.oa_base != NULL) {
  242. xdrs->x_op = XDR_FREE;
  243. (void)xdr_opaque_auth(xdrs, &(msg.acpted_rply.ar_verf));
  244. }
  245. }
  246. return (status);
  247. }
  248. LOCAL void /* 4.0 */
  249. clntraw_geterr()
  250. {
  251. }
  252. /* ARGSUSED */
  253. LOCAL bool_t /* 4.0 */
  254. clntraw_freeres(cl, xdr_res, res_ptr)
  255. CLIENT *cl;
  256. xdrproc_t xdr_res;
  257. caddr_t res_ptr;
  258. {
  259. FAST struct moduleStatics *ms = clnt_rawInit ();
  260. register XDR *xdrs = &ms->xdr_stream;
  261. xdrs->x_op = XDR_FREE;
  262. return ((*xdr_res)(xdrs, res_ptr));
  263. }
  264. LOCAL void /* 4.0 */
  265. clntraw_abort()
  266. {
  267. }
  268. LOCAL bool_t /* 4.0 */
  269. clntraw_control() /* 4.0 */
  270. { /* 4.0 */
  271. return (FALSE); /* 4.0 */
  272. } /* 4.0 */
  273. LOCAL void /* 4.0 */
  274. clntraw_destroy()
  275. {
  276. }