]>
git.saurik.com Git - apple/libinfo.git/blob - rpc.subproj/rpc_prot.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: @(#)rpc_prot.c 1.36 87/08/11 Copyr 1984 Sun Micro";*/
55 static char *rcsid
= "$Id: rpc_prot.c,v 1.3 2003/06/23 17:24:59 majka Exp $";
61 * Copyright (C) 1984, Sun Microsystems, Inc.
63 * This set of routines implements the rpc message definition,
64 * its serializer and some common rpc utility routines.
65 * The routines are meant for various implementations of rpc -
66 * they are NOT for the rpc client or rpc service implementations!
67 * Because authentication stuff is easy and is part of rpc, the opaque
68 * routines are also in this program.
71 #include <sys/param.h>
75 /* * * * * * * * * * * * * * XDR Authentication * * * * * * * * * * * */
77 #if defined(__APPLE__)
80 struct opaque_auth _null_auth
;
83 * XDR an opaque authentication struct
87 xdr_opaque_auth(xdrs
, ap
)
89 register struct opaque_auth
*ap
;
92 if (xdr_enum(xdrs
, &(ap
->oa_flavor
)))
93 return (xdr_bytes(xdrs
, &ap
->oa_base
,
94 &ap
->oa_length
, MAX_AUTH_BYTES
));
102 xdr_des_block(xdrs
, blkp
)
104 register des_block
*blkp
;
106 return (xdr_opaque(xdrs
, (caddr_t
)blkp
, sizeof(des_block
)));
109 /* * * * * * * * * * * * * * XDR RPC MESSAGE * * * * * * * * * * * * * * * */
112 * XDR the MSG_ACCEPTED part of a reply message union
115 xdr_accepted_reply(xdrs
, ar
)
117 register struct accepted_reply
*ar
;
120 /* personalized union, rather than calling xdr_union */
121 if (! xdr_opaque_auth(xdrs
, &(ar
->ar_verf
)))
123 if (! xdr_enum(xdrs
, (enum_t
*)&(ar
->ar_stat
)))
125 switch (ar
->ar_stat
) {
128 return ((*(ar
->ar_results
.proc
))(xdrs
, ar
->ar_results
.where
));
131 if (! xdr_u_long(xdrs
, &(ar
->ar_vers
.low
)))
133 return (xdr_u_long(xdrs
, &(ar
->ar_vers
.high
)));
136 return (TRUE
); /* TRUE => open ended set of problems */
140 * XDR the MSG_DENIED part of a reply message union
143 xdr_rejected_reply(xdrs
, rr
)
145 register struct rejected_reply
*rr
;
148 /* personalized union, rather than calling xdr_union */
149 if (! xdr_enum(xdrs
, (enum_t
*)&(rr
->rj_stat
)))
151 switch (rr
->rj_stat
) {
154 if (! xdr_u_long(xdrs
, &(rr
->rj_vers
.low
)))
156 return (xdr_u_long(xdrs
, &(rr
->rj_vers
.high
)));
159 return (xdr_enum(xdrs
, (enum_t
*)&(rr
->rj_why
)));
164 static struct xdr_discrim reply_dscrm
[3] = {
165 { (int)MSG_ACCEPTED
, (xdrproc_t
)xdr_accepted_reply
},
166 { (int)MSG_DENIED
, (xdrproc_t
)xdr_rejected_reply
},
167 { __dontcare__
, NULL_xdrproc_t
} };
170 * XDR a reply message
173 xdr_replymsg(xdrs
, rmsg
)
175 register struct rpc_msg
*rmsg
;
178 xdr_u_long(xdrs
, &(rmsg
->rm_xid
)) &&
179 xdr_enum(xdrs
, (enum_t
*)&(rmsg
->rm_direction
)) &&
180 (rmsg
->rm_direction
== REPLY
) )
181 return (xdr_union(xdrs
, (enum_t
*)&(rmsg
->rm_reply
.rp_stat
),
182 (caddr_t
)&(rmsg
->rm_reply
.ru
), reply_dscrm
, NULL_xdrproc_t
));
188 * Serializes the "static part" of a call message header.
189 * The fields include: rm_xid, rm_direction, rpcvers, prog, and vers.
190 * The rm_xid is not really static, but the user can easily munge on the fly.
193 xdr_callhdr(xdrs
, cmsg
)
195 register struct rpc_msg
*cmsg
;
198 cmsg
->rm_direction
= CALL
;
199 cmsg
->rm_call
.cb_rpcvers
= RPC_MSG_VERSION
;
201 (xdrs
->x_op
== XDR_ENCODE
) &&
202 xdr_u_long(xdrs
, &(cmsg
->rm_xid
)) &&
203 xdr_enum(xdrs
, (enum_t
*)&(cmsg
->rm_direction
)) &&
204 xdr_u_long(xdrs
, &(cmsg
->rm_call
.cb_rpcvers
)) &&
205 xdr_u_long(xdrs
, &(cmsg
->rm_call
.cb_prog
)) )
206 return (xdr_u_long(xdrs
, &(cmsg
->rm_call
.cb_vers
)));
210 /* ************************** Client utility routine ************* */
213 accepted(acpt_stat
, error
)
214 register enum accept_stat acpt_stat
;
215 register struct rpc_err
*error
;
221 error
->re_status
= RPC_PROGUNAVAIL
;
225 error
->re_status
= RPC_PROGVERSMISMATCH
;
229 error
->re_status
= RPC_PROCUNAVAIL
;
233 error
->re_status
= RPC_CANTDECODEARGS
;
237 error
->re_status
= RPC_SYSTEMERROR
;
241 error
->re_status
= RPC_SUCCESS
;
244 /* something's wrong, but we don't know what ... */
245 error
->re_status
= RPC_FAILED
;
247 error
->re_lb
.s1
= (int)MSG_ACCEPTED
;
248 error
->re_lb
.s2
= (int)acpt_stat
;
250 error
->re_lb
.s1
= (long)MSG_ACCEPTED
;
251 error
->re_lb
.s2
= (long)acpt_stat
;
256 rejected(rjct_stat
, error
)
257 register enum reject_stat rjct_stat
;
258 register struct rpc_err
*error
;
264 error
->re_status
= RPC_VERSMISMATCH
;
268 error
->re_status
= RPC_AUTHERROR
;
272 /* something's wrong, but we don't know what ... */
273 error
->re_status
= RPC_FAILED
;
275 error
->re_lb
.s1
= (int)MSG_DENIED
;
276 error
->re_lb
.s2
= (int)rjct_stat
;
278 error
->re_lb
.s1
= (long)MSG_DENIED
;
279 error
->re_lb
.s2
= (long)rjct_stat
;
284 * given a reply message, fills in the error
287 _seterr_reply(msg
, error
)
288 register struct rpc_msg
*msg
;
289 register struct rpc_err
*error
;
292 /* optimized for normal, SUCCESSful case */
293 switch (msg
->rm_reply
.rp_stat
) {
296 if (msg
->acpted_rply
.ar_stat
== SUCCESS
) {
297 error
->re_status
= RPC_SUCCESS
;
300 accepted(msg
->acpted_rply
.ar_stat
, error
);
304 rejected(msg
->rjcted_rply
.rj_stat
, error
);
308 error
->re_status
= RPC_FAILED
;
310 error
->re_lb
.s1
= (int)(msg
->rm_reply
.rp_stat
);
312 error
->re_lb
.s1
= (long)(msg
->rm_reply
.rp_stat
);
316 switch (error
->re_status
) {
318 case RPC_VERSMISMATCH
:
319 error
->re_vers
.low
= msg
->rjcted_rply
.rj_vers
.low
;
320 error
->re_vers
.high
= msg
->rjcted_rply
.rj_vers
.high
;
324 error
->re_why
= msg
->rjcted_rply
.rj_why
;
327 case RPC_PROGVERSMISMATCH
:
328 error
->re_vers
.low
= msg
->acpted_rply
.ar_vers
.low
;
329 error
->re_vers
.high
= msg
->acpted_rply
.ar_vers
.high
;