master
1/* $NetBSD: rpc_msg.h,v 1.11 2000/06/02 22:57:56 fvdl Exp $ */
2
3/*-
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 * Copyright (c) 2009, Sun Microsystems, Inc.
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met:
11 * - Redistributions of source code must retain the above copyright notice,
12 * this list of conditions and the following disclaimer.
13 * - Redistributions in binary form must reproduce the above copyright notice,
14 * this list of conditions and the following disclaimer in the documentation
15 * and/or other materials provided with the distribution.
16 * - Neither the name of Sun Microsystems, Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived
18 * from this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
24 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
31 *
32 * from: @(#)rpc_msg.h 1.7 86/07/16 SMI
33 * from: @(#)rpc_msg.h 2.1 88/07/29 4.0 RPCSRC
34 */
35
36/*
37 * rpc_msg.h
38 * rpc message definition
39 *
40 * Copyright (C) 1984, Sun Microsystems, Inc.
41 */
42
43#ifndef _RPC_RPC_MSG_H
44#define _RPC_RPC_MSG_H
45
46#define RPC_MSG_VERSION ((u_int32_t) 2)
47#define RPC_SERVICE_PORT ((u_short) 2048)
48
49/*
50 * Bottom up definition of an rpc message.
51 * NOTE: call and reply use the same overall struct but
52 * different parts of unions within it.
53 */
54
55enum msg_type {
56 CALL=0,
57 REPLY=1
58};
59
60enum reply_stat {
61 MSG_ACCEPTED=0,
62 MSG_DENIED=1
63};
64
65enum accept_stat {
66 SUCCESS=0,
67 PROG_UNAVAIL=1,
68 PROG_MISMATCH=2,
69 PROC_UNAVAIL=3,
70 GARBAGE_ARGS=4,
71 SYSTEM_ERR=5
72};
73
74enum reject_stat {
75 RPC_MISMATCH=0,
76 AUTH_ERROR=1
77};
78
79/*
80 * Reply part of an rpc exchange
81 */
82
83/*
84 * Reply to an rpc request that was accepted by the server.
85 * Note: there could be an error even though the request was
86 * accepted.
87 */
88struct accepted_reply {
89 struct opaque_auth ar_verf;
90 enum accept_stat ar_stat;
91 union {
92 struct {
93 rpcvers_t low;
94 rpcvers_t high;
95 } AR_versions;
96 struct {
97 caddr_t where;
98 xdrproc_t proc;
99 } AR_results;
100 /* and many other null cases */
101 } ru;
102#define ar_results ru.AR_results
103#define ar_vers ru.AR_versions
104};
105
106/*
107 * Reply to an rpc request that was rejected by the server.
108 */
109struct rejected_reply {
110 enum reject_stat rj_stat;
111 union {
112 struct {
113 rpcvers_t low;
114 rpcvers_t high;
115 } RJ_versions;
116 enum auth_stat RJ_why; /* why authentication did not work */
117 } ru;
118#define rj_vers ru.RJ_versions
119#define rj_why ru.RJ_why
120};
121
122/*
123 * Body of a reply to an rpc request.
124 */
125struct reply_body {
126 enum reply_stat rp_stat;
127 union {
128 struct accepted_reply RP_ar;
129 struct rejected_reply RP_dr;
130 } ru;
131#define rp_acpt ru.RP_ar
132#define rp_rjct ru.RP_dr
133};
134
135/*
136 * Body of an rpc request call.
137 */
138struct call_body {
139 rpcvers_t cb_rpcvers; /* must be equal to two */
140 rpcprog_t cb_prog;
141 rpcvers_t cb_vers;
142 rpcproc_t cb_proc;
143 struct opaque_auth cb_cred;
144 struct opaque_auth cb_verf; /* protocol specific - provided by client */
145};
146
147/*
148 * The rpc message
149 */
150struct rpc_msg {
151 u_int32_t rm_xid;
152 enum msg_type rm_direction;
153 union {
154 struct call_body RM_cmb;
155 struct reply_body RM_rmb;
156 } ru;
157#define rm_call ru.RM_cmb
158#define rm_reply ru.RM_rmb
159};
160#define acpted_rply ru.RM_rmb.ru.RP_ar
161#define rjcted_rply ru.RM_rmb.ru.RP_dr
162
163__BEGIN_DECLS
164/*
165 * XDR routine to handle a rpc message.
166 * xdr_callmsg(xdrs, cmsg)
167 * XDR *xdrs;
168 * struct rpc_msg *cmsg;
169 */
170extern bool_t xdr_callmsg(XDR *, struct rpc_msg *);
171
172/*
173 * XDR routine to pre-serialize the static part of a rpc message.
174 * xdr_callhdr(xdrs, cmsg)
175 * XDR *xdrs;
176 * struct rpc_msg *cmsg;
177 */
178extern bool_t xdr_callhdr(XDR *, struct rpc_msg *);
179
180/*
181 * XDR routine to handle a rpc reply.
182 * xdr_replymsg(xdrs, rmsg)
183 * XDR *xdrs;
184 * struct rpc_msg *rmsg;
185 */
186extern bool_t xdr_replymsg(XDR *, struct rpc_msg *);
187
188
189/*
190 * XDR routine to handle an accepted rpc reply.
191 * xdr_accepted_reply(xdrs, rej)
192 * XDR *xdrs;
193 * struct accepted_reply *rej;
194 */
195extern bool_t xdr_accepted_reply(XDR *, struct accepted_reply *);
196
197/*
198 * XDR routine to handle a rejected rpc reply.
199 * xdr_rejected_reply(xdrs, rej)
200 * XDR *xdrs;
201 * struct rejected_reply *rej;
202 */
203extern bool_t xdr_rejected_reply(XDR *, struct rejected_reply *);
204
205/*
206 * Fills in the error part of a reply message.
207 * _seterr_reply(msg, error)
208 * struct rpc_msg *msg;
209 * struct rpc_err *error;
210 */
211extern void _seterr_reply(struct rpc_msg *, struct rpc_err *);
212__END_DECLS
213
214#endif /* !_RPC_RPC_MSG_H */