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

VxWorks

开发平台:

C/C++

  1. /* rpc_callmsg.c - the rpc call message definition */
  2. /* Copyright 1984-2001 Wind River Systems, Inc. */
  3. #include "copyright_wrs.h"
  4. /* @(#)rpc_callmsg.c 2.1 88/07/29 4.0 RPCSRC */
  5. /*
  6.  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  7.  * unrestricted use provided that this legend is included on all tape
  8.  * media and as a part of the software program in whole or part.  Users
  9.  * may copy or modify Sun RPC without charge, but are not authorized
  10.  * to license or distribute it to anyone else except as part of a product or
  11.  * program developed by the user.
  12.  *
  13.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  14.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  16.  *
  17.  * Sun RPC is provided with no support and without any obligation on the
  18.  * part of Sun Microsystems, Inc. to assist in its use, correction,
  19.  * modification or enhancement.
  20.  *
  21.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  22.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  23.  * OR ANY PART THEREOF.
  24.  *
  25.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  26.  * or profits or other special, indirect and consequential damages, even if
  27.  * Sun has been advised of the possibility of such damages.
  28.  *
  29.  * Sun Microsystems, Inc.
  30.  * 2550 Garcia Avenue
  31.  * Mountain View, California  94043
  32.  */
  33. #if !defined(lint) && defined(SCCSIDS)
  34. /* static char sccsid[] = "@(#)rpc_callmsg.c 1.4 87/08/11 Copyr 1984 Sun Micro"; */
  35. #endif
  36. /*
  37. modification history
  38. --------------------
  39. 01h,05nov01,vvv  cleaned up register definitions; unconditionally import 
  40.  ixdr_get_long 
  41. 01g,26oct01,vvv  fixed compilation errors/warnings (SPR #70760)
  42. 01f,18apr00,ham  fixed compilation warnings.
  43. 01e,26may92,rrr  the tree shuffle
  44. 01d,04oct91,rrr  passed through the ansification filter
  45.   -changed includes to have absolute path from h/
  46.   -fixed #else and #endif
  47.   -changed copyright notice
  48. 01c,05aug91,del   made ulong *buf non-register for I960 version.
  49. 01b,19apr90,hjb   de-linted.
  50. 01a,21jul89,hjb   first VxWorks version - 4.0
  51. */
  52. /*
  53.  * rpc_callmsg.c
  54.  *
  55.  * Copyright (C) 1984, Sun Microsystems, Inc.
  56.  *
  57.  */
  58. #include "vxWorks.h"
  59. #include "rpc/rpc.h"
  60. #include "memLib.h"
  61. #include "stdlib.h"
  62. IMPORT bool_t xdr_opaque_auth ();
  63. IMPORT u_long ixdr_get_long ();
  64. /*
  65.  * XDR a call message
  66.  */
  67. bool_t
  68. xdr_callmsg(xdrs, cmsg)
  69. XDR *xdrs;
  70. struct rpc_msg *cmsg;
  71. {
  72. long *buf;
  73. struct opaque_auth *oa;
  74. if (xdrs->x_op == XDR_ENCODE) {
  75. if (cmsg->rm_call.cb_cred.oa_length > MAX_AUTH_BYTES) {
  76. return (FALSE);
  77. }
  78. if (cmsg->rm_call.cb_verf.oa_length > MAX_AUTH_BYTES) {
  79. return (FALSE);
  80. }
  81. buf = XDR_INLINE(xdrs, 8 * BYTES_PER_XDR_UNIT
  82. + RNDUP(cmsg->rm_call.cb_cred.oa_length)
  83. + 2 * BYTES_PER_XDR_UNIT
  84. + RNDUP(cmsg->rm_call.cb_verf.oa_length));
  85. if (buf != NULL) {
  86. IXDR_PUT_LONG(buf, cmsg->rm_xid);
  87. IXDR_PUT_ENUM(buf, cmsg->rm_direction);
  88. if (cmsg->rm_direction != CALL) {
  89. return (FALSE);
  90. }
  91. IXDR_PUT_LONG(buf, cmsg->rm_call.cb_rpcvers);
  92. if (cmsg->rm_call.cb_rpcvers != RPC_MSG_VERSION) {
  93. return (FALSE);
  94. }
  95. IXDR_PUT_LONG(buf, cmsg->rm_call.cb_prog);
  96. IXDR_PUT_LONG(buf, cmsg->rm_call.cb_vers);
  97. IXDR_PUT_LONG(buf, cmsg->rm_call.cb_proc);
  98. oa = &cmsg->rm_call.cb_cred;
  99. IXDR_PUT_ENUM(buf, oa->oa_flavor);
  100. IXDR_PUT_LONG(buf, oa->oa_length);
  101. if (oa->oa_length) {
  102. bcopy(oa->oa_base, (caddr_t)buf,
  103.       (int) oa->oa_length);
  104. buf += RNDUP(oa->oa_length) / sizeof (long);
  105. }
  106. oa = &cmsg->rm_call.cb_verf;
  107. IXDR_PUT_ENUM(buf, oa->oa_flavor);
  108. IXDR_PUT_LONG(buf, oa->oa_length);
  109. if (oa->oa_length) {
  110. bcopy(oa->oa_base, (caddr_t)buf,
  111.       (int) oa->oa_length);
  112. /* no real need....
  113. buf += RNDUP(oa->oa_length) / sizeof (long);
  114. */
  115. }
  116. return (TRUE);
  117. }
  118. }
  119. if (xdrs->x_op == XDR_DECODE) {
  120. buf = XDR_INLINE(xdrs, 8 * BYTES_PER_XDR_UNIT);
  121. if (buf != NULL) {
  122. cmsg->rm_xid = IXDR_GET_LONG(buf);
  123. cmsg->rm_direction = IXDR_GET_ENUM(buf, enum msg_type);
  124. if (cmsg->rm_direction != CALL) {
  125. return (FALSE);
  126. }
  127. cmsg->rm_call.cb_rpcvers = IXDR_GET_LONG(buf);
  128. if (cmsg->rm_call.cb_rpcvers != RPC_MSG_VERSION) {
  129. return (FALSE);
  130. }
  131. cmsg->rm_call.cb_prog = IXDR_GET_LONG(buf);
  132. cmsg->rm_call.cb_vers = IXDR_GET_LONG(buf);
  133. cmsg->rm_call.cb_proc = IXDR_GET_LONG(buf);
  134. oa = &cmsg->rm_call.cb_cred;
  135. oa->oa_flavor = IXDR_GET_ENUM(buf, enum_t);
  136. oa->oa_length = IXDR_GET_LONG(buf);
  137. if (oa->oa_length) {
  138. if (oa->oa_length > MAX_AUTH_BYTES) {
  139. return (FALSE);
  140. }
  141. if (oa->oa_base == NULL) {
  142. oa->oa_base = (caddr_t)
  143. mem_alloc(oa->oa_length);
  144. }
  145. buf = XDR_INLINE(xdrs, RNDUP(oa->oa_length));
  146. if (buf == NULL) {
  147. if (xdr_opaque(xdrs, oa->oa_base,
  148.     oa->oa_length) == FALSE) {
  149. return (FALSE);
  150. }
  151. } else {
  152. bcopy((caddr_t)buf, oa->oa_base,
  153.       (int) oa->oa_length);
  154. /* no real need....
  155. buf += RNDUP(oa->oa_length) /
  156. sizeof (long);
  157. */
  158. }
  159. }
  160. oa = &cmsg->rm_call.cb_verf;
  161. buf = XDR_INLINE(xdrs, 2 * BYTES_PER_XDR_UNIT);
  162. if (buf == NULL) {
  163. if (xdr_enum(xdrs, &oa->oa_flavor) == FALSE ||
  164.     xdr_u_int(xdrs, &oa->oa_length) == FALSE) {
  165. return (FALSE);
  166. }
  167. } else {
  168. oa->oa_flavor = IXDR_GET_ENUM(buf, enum_t);
  169. oa->oa_length = IXDR_GET_LONG(buf);
  170. }
  171. if (oa->oa_length) {
  172. if (oa->oa_length > MAX_AUTH_BYTES) {
  173. return (FALSE);
  174. }
  175. if (oa->oa_base == NULL) {
  176. oa->oa_base = (caddr_t)
  177. mem_alloc(oa->oa_length);
  178. }
  179. buf = XDR_INLINE(xdrs, RNDUP(oa->oa_length));
  180. if (buf == NULL) {
  181. if (xdr_opaque(xdrs, oa->oa_base,
  182.     oa->oa_length) == FALSE) {
  183. return (FALSE);
  184. }
  185. } else {
  186. bcopy((caddr_t)buf, oa->oa_base,
  187.       (int) oa->oa_length);
  188. /* no real need...
  189. buf += RNDUP(oa->oa_length) /
  190. sizeof (long);
  191. */
  192. }
  193. }
  194. return (TRUE);
  195. }
  196. }
  197. if (
  198.     xdr_u_long(xdrs, &(cmsg->rm_xid)) &&
  199.     xdr_enum(xdrs, (enum_t *)&(cmsg->rm_direction)) &&
  200.     (cmsg->rm_direction == CALL) &&
  201.     xdr_u_long(xdrs, &(cmsg->rm_call.cb_rpcvers)) &&
  202.     (cmsg->rm_call.cb_rpcvers == RPC_MSG_VERSION) &&
  203.     xdr_u_long(xdrs, &(cmsg->rm_call.cb_prog)) &&
  204.     xdr_u_long(xdrs, &(cmsg->rm_call.cb_vers)) &&
  205.     xdr_u_long(xdrs, &(cmsg->rm_call.cb_proc)) &&
  206.     xdr_opaque_auth(xdrs, &(cmsg->rm_call.cb_cred)) )
  207.     return (xdr_opaque_auth(xdrs, &(cmsg->rm_call.cb_verf)));
  208. return (FALSE);
  209. }